403Webshell
Server IP : 14.225.204.176  /  Your IP : 216.73.216.6
Web Server : nginx/1.24.0
System : Linux nodejs-ybgk 6.8.0-40-generic #40-Ubuntu SMP PREEMPT_DYNAMIC Fri Jul 5 10:34:03 UTC 2024 x86_64
User : root ( 0)
PHP Version : 8.1.34
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : OFF
Directory :  /var/www/html/db/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/html/db/chat-fe-home-tutor.sql
-- MySQL dump 10.19  Distrib 10.3.39-MariaDB, for debian-linux-gnu (x86_64)
--
-- Host: localhost    Database: chat_db
-- ------------------------------------------------------
-- Server version	10.3.39-MariaDB-0ubuntu0.20.04.2

/*!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 */;

--
-- Current Database: `chat_db`
--

CREATE DATABASE /*!32312 IF NOT EXISTS*/ `chat_db` /*!40100 DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci */;

USE `chat_db`;

--
-- Table structure for table `sb_conversations`
--

DROP TABLE IF EXISTS `sb_conversations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sb_conversations` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(11) NOT NULL,
  `title` varchar(255) DEFAULT NULL,
  `creation_time` datetime NOT NULL,
  `status_code` tinyint(4) DEFAULT 0,
  `department` tinyint(4) DEFAULT NULL,
  `agent_id` int(11) DEFAULT NULL,
  `source` varchar(2) DEFAULT NULL,
  `extra` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `agent_id` (`agent_id`),
  KEY `user_id` (`user_id`),
  CONSTRAINT `sb_conversations_ibfk_1` FOREIGN KEY (`agent_id`) REFERENCES `sb_users` (`id`) ON DELETE CASCADE,
  CONSTRAINT `sb_conversations_ibfk_2` FOREIGN KEY (`user_id`) REFERENCES `sb_users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sb_conversations`
--

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

--
-- Table structure for table `sb_messages`
--

DROP TABLE IF EXISTS `sb_messages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sb_messages` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(11) NOT NULL,
  `message` text NOT NULL,
  `creation_time` datetime NOT NULL,
  `status_code` tinyint(4) DEFAULT 0,
  `attachments` text DEFAULT NULL,
  `payload` text DEFAULT NULL,
  `conversation_id` int(11) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `user_id` (`user_id`),
  KEY `conversation_id` (`conversation_id`),
  CONSTRAINT `sb_messages_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `sb_users` (`id`) ON DELETE CASCADE,
  CONSTRAINT `sb_messages_ibfk_2` FOREIGN KEY (`conversation_id`) REFERENCES `sb_conversations` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sb_messages`
--

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

--
-- Table structure for table `sb_reports`
--

DROP TABLE IF EXISTS `sb_reports`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sb_reports` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `value` varchar(255) NOT NULL,
  `creation_time` date NOT NULL,
  `external_id` int(11) DEFAULT NULL,
  `extra` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sb_reports`
--

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

--
-- Table structure for table `sb_settings`
--

DROP TABLE IF EXISTS `sb_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sb_settings` (
  `name` varchar(255) NOT NULL,
  `value` longtext DEFAULT NULL,
  PRIMARY KEY (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sb_settings`
--

LOCK TABLES `sb_settings` WRITE;
/*!40000 ALTER TABLE `sb_settings` DISABLE KEYS */;
INSERT INTO `sb_settings` VALUES ('active_agents_conversations','{\"1\":[0,1732457089]}'),('cron','\"12\"');
/*!40000 ALTER TABLE `sb_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sb_users`
--

DROP TABLE IF EXISTS `sb_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sb_users` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `first_name` varchar(100) NOT NULL,
  `last_name` varchar(100) NOT NULL,
  `password` varchar(100) DEFAULT NULL,
  `email` varchar(255) DEFAULT NULL,
  `profile_image` varchar(255) DEFAULT NULL,
  `user_type` varchar(10) NOT NULL,
  `creation_time` datetime NOT NULL,
  `token` varchar(50) NOT NULL,
  `last_activity` datetime DEFAULT NULL,
  `typing` int(11) DEFAULT -1,
  `department` tinyint(4) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `token` (`token`),
  UNIQUE KEY `email` (`email`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sb_users`
--

LOCK TABLES `sb_users` WRITE;
/*!40000 ALTER TABLE `sb_users` DISABLE KEYS */;
INSERT INTO `sb_users` VALUES (1,'Admin','Admin','$2y$10$jVVGhQ/I0VsLJx5N4BKzL.b8Ly9VqpnuWPmg3dry.A71E1HPnh7XO','admin@gmail.com','http://chat-api.demo.zinisoft.net/media/user.svg','admin','2024-11-11 08:28:51','a93f0a8523db67db5a40700e90528fd1ddf6de64','2024-11-24 14:04:48',-1,NULL),(2,'Bot','','',NULL,'http://chat-api.demo.zinisoft.net/media/user.svg','bot','2024-11-11 08:31:09','8e189efbe7415ed0c3c9d08d66f0ebfbf73d6a65','2024-11-11 08:31:09',-1,NULL);
/*!40000 ALTER TABLE `sb_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sb_users_data`
--

DROP TABLE IF EXISTS `sb_users_data`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sb_users_data` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(11) NOT NULL,
  `slug` varchar(255) NOT NULL,
  `name` varchar(255) NOT NULL,
  `value` text NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `sb_users_data_index` (`user_id`,`slug`),
  CONSTRAINT `sb_users_data_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `sb_users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sb_users_data`
--

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

--
-- Current Database: `fe2tech_db`
--

CREATE DATABASE /*!32312 IF NOT EXISTS*/ `fe2tech_db` /*!40100 DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci */;

USE `fe2tech_db`;

--
-- Table structure for table `wp_actionscheduler_actions`
--

DROP TABLE IF EXISTS `wp_actionscheduler_actions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_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_status_scheduled_date_gmt` (`hook`(163),`status`,`scheduled_date_gmt`),
  KEY `status_scheduled_date_gmt` (`status`,`scheduled_date_gmt`),
  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=273 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_actionscheduler_actions`
--

LOCK TABLES `wp_actionscheduler_actions` WRITE;
/*!40000 ALTER TABLE `wp_actionscheduler_actions` DISABLE KEYS */;
INSERT INTO `wp_actionscheduler_actions` VALUES (15,'woocommerce_admin/stored_state_setup_for_products/async/run_remote_notifications','failed','2024-10-19 15:35:47','2024-10-19 15:35:47',10,'[]','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,1,'2024-10-19 15:35:53','2024-10-19 15:35:53',0,NULL),(37,'woocommerce_cleanup_draft_orders','failed','2024-10-22 02:24:07','2024-10-22 02:24:07',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1729563847;s:18:\"\0*\0first_timestamp\";i:1729264746;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1729563847;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2024-10-28 09:47:33','2024-10-28 09:47:33',0,NULL),(39,'woocommerce_cleanup_draft_orders','failed','2024-10-29 09:47:33','2024-10-29 09:47:33',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730195253;s:18:\"\0*\0first_timestamp\";i:1729264746;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730195253;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2024-11-05 02:14:06','2024-11-05 02:14:06',0,NULL),(51,'woocommerce_cleanup_draft_orders','failed','2024-11-06 02:14:06','2024-11-06 02:14:06',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730859246;s:18:\"\0*\0first_timestamp\";i:1729264746;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730859246;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2024-11-22 02:54:54','2024-11-22 02:54:54',0,NULL),(56,'woocommerce_cleanup_draft_orders','failed','2024-11-23 02:54:54','2024-11-23 02:54:54',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1732330494;s:18:\"\0*\0first_timestamp\";i:1729264746;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1732330494;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2024-11-25 03:10:30','2024-11-25 03:10:30',0,NULL),(62,'woocommerce_cleanup_draft_orders','failed','2024-11-26 03:10:30','2024-11-26 03:10:30',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1732590630;s:18:\"\0*\0first_timestamp\";i:1729264746;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1732590630;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2024-11-26 03:10:48','2024-11-26 03:10:48',0,NULL),(147,'wpforms_email_summaries_fetch_info_blocks','complete','2025-04-07 02:19:23','2025-04-07 02:19:23',10,'{\"tasks_meta_id\":null}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1743992363;s:18:\"\0*\0first_timestamp\";i:1729521836;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1743992363;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',5,1,'2025-04-07 02:21:44','2025-04-07 02:21:44',0,NULL),(148,'wp_mail_smtp_summary_report_email','complete','2025-04-07 02:19:24','2025-04-07 02:19:24',10,'[null]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1743992364;s:18:\"\0*\0first_timestamp\";i:1734357600;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1743992364;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',4,1,'2025-04-07 02:21:45','2025-04-07 02:21:45',0,NULL),(149,'wpforms_admin_addons_cache_update','complete','2025-04-07 02:19:24','2025-04-07 02:19:24',10,'{\"tasks_meta_id\":11}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1743992364;s:18:\"\0*\0first_timestamp\";i:1734401501;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1743992364;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',5,1,'2025-04-07 02:21:45','2025-04-07 02:21:45',0,NULL),(165,'wpforms_process_forms_locator_scan','complete','2025-04-06 07:54:42','2025-04-06 07:54:42',10,'{\"tasks_meta_id\":1}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1743926082;s:18:\"\0*\0first_timestamp\";i:1730109115;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1743926082;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2025-04-06 07:56:38','2025-04-06 07:56:38',0,NULL),(166,'wpforms_process_purge_spam','complete','2025-04-06 07:54:42','2025-04-06 07:54:42',10,'{\"tasks_meta_id\":2}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1743926082;s:18:\"\0*\0first_timestamp\";i:1730109115;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1743926082;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2025-04-06 07:56:38','2025-04-06 07:56:38',0,NULL),(167,'wp_mail_smtp_admin_notifications_update','complete','2025-04-06 07:54:42','2025-04-06 07:54:42',10,'[2]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1743926082;s:18:\"\0*\0first_timestamp\";i:1733811849;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1743926082;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',4,1,'2025-04-06 07:56:38','2025-04-06 07:56:38',0,NULL),(168,'wpforms_process_forms_locator_scan','complete','2025-04-07 07:56:38','2025-04-07 07:56:38',10,'{\"tasks_meta_id\":1}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1744012598;s:18:\"\0*\0first_timestamp\";i:1730109115;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1744012598;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2025-04-07 08:08:15','2025-04-07 08:08:15',0,NULL),(169,'wpforms_process_purge_spam','complete','2025-04-07 07:56:38','2025-04-07 07:56:38',10,'{\"tasks_meta_id\":2}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1744012598;s:18:\"\0*\0first_timestamp\";i:1730109115;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1744012598;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2025-04-07 08:08:15','2025-04-07 08:08:15',0,NULL),(170,'wp_mail_smtp_admin_notifications_update','complete','2025-04-07 07:56:38','2025-04-07 07:56:38',10,'[2]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1744012598;s:18:\"\0*\0first_timestamp\";i:1733811849;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1744012598;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',4,1,'2025-04-07 08:08:15','2025-04-07 08:08:15',0,NULL),(171,'wpforms_email_summaries_fetch_info_blocks','complete','2025-04-14 02:21:44','2025-04-14 02:21:44',10,'{\"tasks_meta_id\":null}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1744597304;s:18:\"\0*\0first_timestamp\";i:1729521836;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1744597304;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',5,1,'2025-04-14 02:22:13','2025-04-14 02:22:13',0,NULL),(172,'wp_mail_smtp_summary_report_email','complete','2025-04-14 02:21:45','2025-04-14 02:21:45',10,'[null]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1744597305;s:18:\"\0*\0first_timestamp\";i:1734357600;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1744597305;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',4,1,'2025-04-14 02:22:14','2025-04-14 02:22:14',0,NULL),(173,'wpforms_admin_addons_cache_update','complete','2025-04-14 02:21:45','2025-04-14 02:21:45',10,'{\"tasks_meta_id\":11}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1744597305;s:18:\"\0*\0first_timestamp\";i:1734401501;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1744597305;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',5,1,'2025-04-14 02:22:15','2025-04-14 02:22:15',0,NULL),(174,'wpforms_process_forms_locator_scan','complete','2025-04-08 08:08:15','2025-04-08 08:08:15',10,'{\"tasks_meta_id\":1}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1744099695;s:18:\"\0*\0first_timestamp\";i:1730109115;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1744099695;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2025-04-08 08:11:02','2025-04-08 08:11:02',0,NULL),(175,'wpforms_process_purge_spam','complete','2025-04-08 08:08:15','2025-04-08 08:08:15',10,'{\"tasks_meta_id\":2}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1744099695;s:18:\"\0*\0first_timestamp\";i:1730109115;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1744099695;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2025-04-08 08:11:02','2025-04-08 08:11:02',0,NULL),(176,'wp_mail_smtp_admin_notifications_update','complete','2025-04-08 08:08:15','2025-04-08 08:08:15',10,'[2]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1744099695;s:18:\"\0*\0first_timestamp\";i:1733811849;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1744099695;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',4,1,'2025-04-08 08:11:03','2025-04-08 08:11:03',0,NULL),(177,'wpforms_process_forms_locator_scan','complete','2025-04-09 08:11:02','2025-04-09 08:11:02',10,'{\"tasks_meta_id\":1}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1744186262;s:18:\"\0*\0first_timestamp\";i:1730109115;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1744186262;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2025-04-09 08:16:12','2025-04-09 08:16:12',0,NULL),(178,'wpforms_process_purge_spam','complete','2025-04-09 08:11:02','2025-04-09 08:11:02',10,'{\"tasks_meta_id\":2}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1744186262;s:18:\"\0*\0first_timestamp\";i:1730109115;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1744186262;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2025-04-09 08:16:12','2025-04-09 08:16:12',0,NULL),(179,'wp_mail_smtp_admin_notifications_update','complete','2025-04-09 08:11:03','2025-04-09 08:11:03',10,'[2]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1744186263;s:18:\"\0*\0first_timestamp\";i:1733811849;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1744186263;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',4,1,'2025-04-09 08:16:12','2025-04-09 08:16:12',0,NULL),(180,'wpforms_process_forms_locator_scan','complete','2025-04-10 08:16:12','2025-04-10 08:16:12',10,'{\"tasks_meta_id\":1}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1744272972;s:18:\"\0*\0first_timestamp\";i:1730109115;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1744272972;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2025-04-10 08:16:35','2025-04-10 08:16:35',0,NULL),(181,'wpforms_process_purge_spam','complete','2025-04-10 08:16:12','2025-04-10 08:16:12',10,'{\"tasks_meta_id\":2}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1744272972;s:18:\"\0*\0first_timestamp\";i:1730109115;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1744272972;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2025-04-10 08:16:35','2025-04-10 08:16:35',0,NULL),(182,'wp_mail_smtp_admin_notifications_update','complete','2025-04-10 08:16:12','2025-04-10 08:16:12',10,'[2]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1744272972;s:18:\"\0*\0first_timestamp\";i:1733811849;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1744272972;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',4,1,'2025-04-10 08:16:35','2025-04-10 08:16:35',0,NULL),(183,'wpforms_process_forms_locator_scan','complete','2025-04-11 08:16:35','2025-04-11 08:16:35',10,'{\"tasks_meta_id\":1}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1744359395;s:18:\"\0*\0first_timestamp\";i:1730109115;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1744359395;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2025-04-11 08:17:33','2025-04-11 08:17:33',0,NULL),(184,'wpforms_process_purge_spam','complete','2025-04-11 08:16:35','2025-04-11 08:16:35',10,'{\"tasks_meta_id\":2}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1744359395;s:18:\"\0*\0first_timestamp\";i:1730109115;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1744359395;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2025-04-11 08:17:33','2025-04-11 08:17:33',0,NULL),(185,'wp_mail_smtp_admin_notifications_update','complete','2025-04-11 08:16:35','2025-04-11 08:16:35',10,'[2]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1744359395;s:18:\"\0*\0first_timestamp\";i:1733811849;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1744359395;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',4,1,'2025-04-11 08:17:34','2025-04-11 08:17:34',0,NULL),(186,'wpforms_process_forms_locator_scan','complete','2025-04-12 08:17:33','2025-04-12 08:17:33',10,'{\"tasks_meta_id\":1}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1744445853;s:18:\"\0*\0first_timestamp\";i:1730109115;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1744445853;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2025-04-12 08:34:46','2025-04-12 08:34:46',0,NULL),(187,'wpforms_process_purge_spam','complete','2025-04-12 08:17:33','2025-04-12 08:17:33',10,'{\"tasks_meta_id\":2}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1744445853;s:18:\"\0*\0first_timestamp\";i:1730109115;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1744445853;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2025-04-12 08:34:46','2025-04-12 08:34:46',0,NULL),(188,'wp_mail_smtp_admin_notifications_update','complete','2025-04-12 08:17:34','2025-04-12 08:17:34',10,'[2]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1744445854;s:18:\"\0*\0first_timestamp\";i:1733811849;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1744445854;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',4,1,'2025-04-12 08:34:47','2025-04-12 08:34:47',0,NULL),(189,'wpforms_process_forms_locator_scan','complete','2025-04-13 08:34:46','2025-04-13 08:34:46',10,'{\"tasks_meta_id\":1}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1744533286;s:18:\"\0*\0first_timestamp\";i:1730109115;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1744533286;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2025-04-13 08:37:56','2025-04-13 08:37:56',0,NULL),(190,'wpforms_process_purge_spam','complete','2025-04-13 08:34:46','2025-04-13 08:34:46',10,'{\"tasks_meta_id\":2}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1744533286;s:18:\"\0*\0first_timestamp\";i:1730109115;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1744533286;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2025-04-13 08:37:56','2025-04-13 08:37:56',0,NULL),(191,'wp_mail_smtp_admin_notifications_update','complete','2025-04-13 08:34:47','2025-04-13 08:34:47',10,'[2]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1744533287;s:18:\"\0*\0first_timestamp\";i:1733811849;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1744533287;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',4,1,'2025-04-13 08:37:56','2025-04-13 08:37:56',0,NULL),(192,'wpforms_process_forms_locator_scan','complete','2025-04-14 08:37:56','2025-04-14 08:37:56',10,'{\"tasks_meta_id\":1}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1744619876;s:18:\"\0*\0first_timestamp\";i:1730109115;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1744619876;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2025-04-14 08:41:22','2025-04-14 08:41:22',0,NULL),(193,'wpforms_process_purge_spam','complete','2025-04-14 08:37:56','2025-04-14 08:37:56',10,'{\"tasks_meta_id\":2}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1744619876;s:18:\"\0*\0first_timestamp\";i:1730109115;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1744619876;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2025-04-14 08:41:22','2025-04-14 08:41:22',0,NULL),(194,'wp_mail_smtp_admin_notifications_update','complete','2025-04-14 08:37:56','2025-04-14 08:37:56',10,'[2]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1744619876;s:18:\"\0*\0first_timestamp\";i:1733811849;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1744619876;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',4,1,'2025-04-14 08:41:22','2025-04-14 08:41:22',0,NULL),(195,'wpforms_email_summaries_fetch_info_blocks','complete','2025-04-21 02:22:13','2025-04-21 02:22:13',10,'{\"tasks_meta_id\":null}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1745202133;s:18:\"\0*\0first_timestamp\";i:1729521836;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1745202133;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',5,1,'2025-04-21 02:27:38','2025-04-21 02:27:38',0,NULL),(196,'wp_mail_smtp_summary_report_email','complete','2025-04-21 02:22:14','2025-04-21 02:22:14',10,'[null]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1745202134;s:18:\"\0*\0first_timestamp\";i:1734357600;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1745202134;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',4,1,'2025-04-21 02:27:39','2025-04-21 02:27:39',0,NULL),(197,'wpforms_admin_addons_cache_update','complete','2025-04-21 02:22:15','2025-04-21 02:22:15',10,'{\"tasks_meta_id\":11}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1745202135;s:18:\"\0*\0first_timestamp\";i:1734401501;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1745202135;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',5,1,'2025-04-21 02:27:39','2025-04-21 02:27:39',0,NULL),(198,'wpforms_process_forms_locator_scan','complete','2025-04-15 08:41:22','2025-04-15 08:41:22',10,'{\"tasks_meta_id\":1}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1744706482;s:18:\"\0*\0first_timestamp\";i:1730109115;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1744706482;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2025-04-15 08:43:48','2025-04-15 08:43:48',0,NULL),(199,'wpforms_process_purge_spam','complete','2025-04-15 08:41:22','2025-04-15 08:41:22',10,'{\"tasks_meta_id\":2}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1744706482;s:18:\"\0*\0first_timestamp\";i:1730109115;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1744706482;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2025-04-15 08:43:48','2025-04-15 08:43:48',0,NULL),(200,'wp_mail_smtp_admin_notifications_update','complete','2025-04-15 08:41:22','2025-04-15 08:41:22',10,'[2]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1744706482;s:18:\"\0*\0first_timestamp\";i:1733811849;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1744706482;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',4,1,'2025-04-15 08:43:48','2025-04-15 08:43:48',0,NULL),(201,'wpforms_process_forms_locator_scan','complete','2025-04-16 08:43:48','2025-04-16 08:43:48',10,'{\"tasks_meta_id\":1}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1744793028;s:18:\"\0*\0first_timestamp\";i:1730109115;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1744793028;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2025-04-16 08:50:10','2025-04-16 08:50:10',0,NULL),(202,'wpforms_process_purge_spam','complete','2025-04-16 08:43:48','2025-04-16 08:43:48',10,'{\"tasks_meta_id\":2}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1744793028;s:18:\"\0*\0first_timestamp\";i:1730109115;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1744793028;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2025-04-16 08:50:10','2025-04-16 08:50:10',0,NULL),(203,'wp_mail_smtp_admin_notifications_update','complete','2025-04-16 08:43:48','2025-04-16 08:43:48',10,'[2]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1744793028;s:18:\"\0*\0first_timestamp\";i:1733811849;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1744793028;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',4,1,'2025-04-16 08:50:11','2025-04-16 08:50:11',0,NULL),(204,'wpforms_process_forms_locator_scan','complete','2025-04-17 08:50:10','2025-04-17 08:50:10',10,'{\"tasks_meta_id\":1}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1744879810;s:18:\"\0*\0first_timestamp\";i:1730109115;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1744879810;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2025-04-17 08:52:21','2025-04-17 08:52:21',0,NULL),(205,'wpforms_process_purge_spam','complete','2025-04-17 08:50:10','2025-04-17 08:50:10',10,'{\"tasks_meta_id\":2}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1744879810;s:18:\"\0*\0first_timestamp\";i:1730109115;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1744879810;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2025-04-17 08:52:21','2025-04-17 08:52:21',0,NULL),(206,'wp_mail_smtp_admin_notifications_update','complete','2025-04-17 08:50:11','2025-04-17 08:50:11',10,'[2]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1744879811;s:18:\"\0*\0first_timestamp\";i:1733811849;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1744879811;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',4,1,'2025-04-17 08:52:21','2025-04-17 08:52:21',0,NULL),(207,'wpforms_process_forms_locator_scan','complete','2025-04-18 08:52:21','2025-04-18 08:52:21',10,'{\"tasks_meta_id\":1}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1744966341;s:18:\"\0*\0first_timestamp\";i:1730109115;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1744966341;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2025-04-18 09:12:08','2025-04-18 09:12:08',0,NULL),(208,'wpforms_process_purge_spam','complete','2025-04-18 08:52:21','2025-04-18 08:52:21',10,'{\"tasks_meta_id\":2}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1744966341;s:18:\"\0*\0first_timestamp\";i:1730109115;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1744966341;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2025-04-18 09:12:08','2025-04-18 09:12:08',0,NULL),(209,'wp_mail_smtp_admin_notifications_update','complete','2025-04-18 08:52:21','2025-04-18 08:52:21',10,'[2]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1744966341;s:18:\"\0*\0first_timestamp\";i:1733811849;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1744966341;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',4,1,'2025-04-18 09:12:08','2025-04-18 09:12:08',0,NULL),(210,'wpforms_process_forms_locator_scan','complete','2025-04-19 09:12:08','2025-04-19 09:12:08',10,'{\"tasks_meta_id\":1}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1745053928;s:18:\"\0*\0first_timestamp\";i:1730109115;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1745053928;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2025-04-19 09:19:57','2025-04-19 09:19:57',0,NULL),(211,'wpforms_process_purge_spam','complete','2025-04-19 09:12:08','2025-04-19 09:12:08',10,'{\"tasks_meta_id\":2}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1745053928;s:18:\"\0*\0first_timestamp\";i:1730109115;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1745053928;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2025-04-19 09:19:57','2025-04-19 09:19:57',0,NULL),(212,'wp_mail_smtp_admin_notifications_update','complete','2025-04-19 09:12:08','2025-04-19 09:12:08',10,'[2]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1745053928;s:18:\"\0*\0first_timestamp\";i:1733811849;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1745053928;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',4,1,'2025-04-19 09:20:02','2025-04-19 09:20:02',0,NULL),(213,'wpforms_process_forms_locator_scan','complete','2025-04-20 09:19:57','2025-04-20 09:19:57',10,'{\"tasks_meta_id\":1}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1745140797;s:18:\"\0*\0first_timestamp\";i:1730109115;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1745140797;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2025-04-20 09:20:30','2025-04-20 09:20:30',0,NULL),(214,'wpforms_process_purge_spam','complete','2025-04-20 09:19:57','2025-04-20 09:19:57',10,'{\"tasks_meta_id\":2}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1745140797;s:18:\"\0*\0first_timestamp\";i:1730109115;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1745140797;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2025-04-20 09:20:30','2025-04-20 09:20:30',0,NULL),(215,'wp_mail_smtp_admin_notifications_update','complete','2025-04-20 09:20:02','2025-04-20 09:20:02',10,'[2]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1745140802;s:18:\"\0*\0first_timestamp\";i:1733811849;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1745140802;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',4,1,'2025-04-20 09:20:30','2025-04-20 09:20:30',0,NULL),(216,'wpforms_process_forms_locator_scan','complete','2025-04-21 09:20:30','2025-04-21 09:20:30',10,'{\"tasks_meta_id\":1}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1745227230;s:18:\"\0*\0first_timestamp\";i:1730109115;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1745227230;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2025-04-21 09:22:35','2025-04-21 09:22:35',0,NULL),(217,'wpforms_process_purge_spam','complete','2025-04-21 09:20:30','2025-04-21 09:20:30',10,'{\"tasks_meta_id\":2}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1745227230;s:18:\"\0*\0first_timestamp\";i:1730109115;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1745227230;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2025-04-21 09:22:35','2025-04-21 09:22:35',0,NULL),(218,'wp_mail_smtp_admin_notifications_update','complete','2025-04-21 09:20:30','2025-04-21 09:20:30',10,'[2]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1745227230;s:18:\"\0*\0first_timestamp\";i:1733811849;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1745227230;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',4,1,'2025-04-21 09:22:35','2025-04-21 09:22:35',0,NULL),(219,'wpforms_email_summaries_fetch_info_blocks','complete','2025-04-28 02:27:38','2025-04-28 02:27:38',10,'{\"tasks_meta_id\":null}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1745807258;s:18:\"\0*\0first_timestamp\";i:1729521836;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1745807258;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',5,1,'2025-04-28 02:32:25','2025-04-28 02:32:25',0,NULL),(220,'wp_mail_smtp_summary_report_email','complete','2025-04-28 02:27:39','2025-04-28 02:27:39',10,'[null]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1745807259;s:18:\"\0*\0first_timestamp\";i:1734357600;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1745807259;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',4,1,'2025-04-28 02:32:26','2025-04-28 02:32:26',0,NULL),(221,'wpforms_admin_addons_cache_update','complete','2025-04-28 02:27:39','2025-04-28 02:27:39',10,'{\"tasks_meta_id\":11}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1745807259;s:18:\"\0*\0first_timestamp\";i:1734401501;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1745807259;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',5,1,'2025-04-28 02:32:26','2025-04-28 02:32:26',0,NULL),(222,'wpforms_process_forms_locator_scan','complete','2025-04-22 09:22:35','2025-04-22 09:22:35',10,'{\"tasks_meta_id\":1}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1745313755;s:18:\"\0*\0first_timestamp\";i:1730109115;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1745313755;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2025-04-22 09:24:24','2025-04-22 09:24:24',0,NULL),(223,'wpforms_process_purge_spam','complete','2025-04-22 09:22:35','2025-04-22 09:22:35',10,'{\"tasks_meta_id\":2}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1745313755;s:18:\"\0*\0first_timestamp\";i:1730109115;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1745313755;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2025-04-22 09:24:24','2025-04-22 09:24:24',0,NULL),(224,'wp_mail_smtp_admin_notifications_update','complete','2025-04-22 09:22:35','2025-04-22 09:22:35',10,'[2]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1745313755;s:18:\"\0*\0first_timestamp\";i:1733811849;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1745313755;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',4,1,'2025-04-22 09:24:24','2025-04-22 09:24:24',0,NULL),(225,'wpforms_process_forms_locator_scan','complete','2025-04-23 09:24:24','2025-04-23 09:24:24',10,'{\"tasks_meta_id\":1}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1745400264;s:18:\"\0*\0first_timestamp\";i:1730109115;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1745400264;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2025-04-23 09:28:55','2025-04-23 09:28:55',0,NULL),(226,'wpforms_process_purge_spam','complete','2025-04-23 09:24:24','2025-04-23 09:24:24',10,'{\"tasks_meta_id\":2}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1745400264;s:18:\"\0*\0first_timestamp\";i:1730109115;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1745400264;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2025-04-23 09:28:55','2025-04-23 09:28:55',0,NULL),(227,'wp_mail_smtp_admin_notifications_update','complete','2025-04-23 09:24:24','2025-04-23 09:24:24',10,'[2]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1745400264;s:18:\"\0*\0first_timestamp\";i:1733811849;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1745400264;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',4,1,'2025-04-23 09:28:55','2025-04-23 09:28:55',0,NULL),(228,'wpforms_process_forms_locator_scan','complete','2025-04-24 09:28:55','2025-04-24 09:28:55',10,'{\"tasks_meta_id\":1}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1745486935;s:18:\"\0*\0first_timestamp\";i:1730109115;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1745486935;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2025-04-24 09:29:09','2025-04-24 09:29:09',0,NULL),(229,'wpforms_process_purge_spam','complete','2025-04-24 09:28:55','2025-04-24 09:28:55',10,'{\"tasks_meta_id\":2}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1745486935;s:18:\"\0*\0first_timestamp\";i:1730109115;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1745486935;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2025-04-24 09:29:09','2025-04-24 09:29:09',0,NULL),(230,'wp_mail_smtp_admin_notifications_update','complete','2025-04-24 09:28:55','2025-04-24 09:28:55',10,'[2]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1745486935;s:18:\"\0*\0first_timestamp\";i:1733811849;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1745486935;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',4,1,'2025-04-24 09:29:12','2025-04-24 09:29:12',0,NULL),(231,'wpforms_process_forms_locator_scan','complete','2025-04-25 09:29:09','2025-04-25 09:29:09',10,'{\"tasks_meta_id\":1}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1745573349;s:18:\"\0*\0first_timestamp\";i:1730109115;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1745573349;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2025-04-25 09:36:06','2025-04-25 09:36:06',0,NULL),(232,'wpforms_process_purge_spam','complete','2025-04-25 09:29:09','2025-04-25 09:29:09',10,'{\"tasks_meta_id\":2}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1745573349;s:18:\"\0*\0first_timestamp\";i:1730109115;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1745573349;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2025-04-25 09:36:06','2025-04-25 09:36:06',0,NULL),(233,'wp_mail_smtp_admin_notifications_update','complete','2025-04-25 09:29:12','2025-04-25 09:29:12',10,'[2]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1745573352;s:18:\"\0*\0first_timestamp\";i:1733811849;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1745573352;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',4,1,'2025-04-25 09:36:06','2025-04-25 09:36:06',0,NULL),(234,'wpforms_process_forms_locator_scan','complete','2025-04-26 09:36:06','2025-04-26 09:36:06',10,'{\"tasks_meta_id\":1}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1745660166;s:18:\"\0*\0first_timestamp\";i:1730109115;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1745660166;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2025-04-26 09:37:55','2025-04-26 09:37:55',0,NULL),(235,'wpforms_process_purge_spam','complete','2025-04-26 09:36:06','2025-04-26 09:36:06',10,'{\"tasks_meta_id\":2}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1745660166;s:18:\"\0*\0first_timestamp\";i:1730109115;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1745660166;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2025-04-26 09:37:55','2025-04-26 09:37:55',0,NULL),(236,'wp_mail_smtp_admin_notifications_update','complete','2025-04-26 09:36:06','2025-04-26 09:36:06',10,'[2]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1745660166;s:18:\"\0*\0first_timestamp\";i:1733811849;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1745660166;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',4,1,'2025-04-26 09:37:55','2025-04-26 09:37:55',0,NULL),(237,'wpforms_process_forms_locator_scan','complete','2025-04-27 09:37:55','2025-04-27 09:37:55',10,'{\"tasks_meta_id\":1}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1745746675;s:18:\"\0*\0first_timestamp\";i:1730109115;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1745746675;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2025-04-27 09:40:22','2025-04-27 09:40:22',0,NULL),(238,'wpforms_process_purge_spam','complete','2025-04-27 09:37:55','2025-04-27 09:37:55',10,'{\"tasks_meta_id\":2}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1745746675;s:18:\"\0*\0first_timestamp\";i:1730109115;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1745746675;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2025-04-27 09:40:22','2025-04-27 09:40:22',0,NULL),(239,'wp_mail_smtp_admin_notifications_update','complete','2025-04-27 09:37:55','2025-04-27 09:37:55',10,'[2]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1745746675;s:18:\"\0*\0first_timestamp\";i:1733811849;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1745746675;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',4,1,'2025-04-27 09:40:22','2025-04-27 09:40:22',0,NULL),(240,'wpforms_process_forms_locator_scan','complete','2025-04-28 09:40:22','2025-04-28 09:40:22',10,'{\"tasks_meta_id\":1}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1745833222;s:18:\"\0*\0first_timestamp\";i:1730109115;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1745833222;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2025-04-28 09:41:32','2025-04-28 09:41:32',0,NULL),(241,'wpforms_process_purge_spam','complete','2025-04-28 09:40:22','2025-04-28 09:40:22',10,'{\"tasks_meta_id\":2}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1745833222;s:18:\"\0*\0first_timestamp\";i:1730109115;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1745833222;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2025-04-28 09:41:32','2025-04-28 09:41:32',0,NULL),(242,'wp_mail_smtp_admin_notifications_update','complete','2025-04-28 09:40:22','2025-04-28 09:40:22',10,'[2]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1745833222;s:18:\"\0*\0first_timestamp\";i:1733811849;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1745833222;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',4,1,'2025-04-28 09:41:32','2025-04-28 09:41:32',0,NULL),(243,'wpforms_email_summaries_fetch_info_blocks','complete','2025-05-05 02:32:25','2025-05-05 02:32:25',10,'{\"tasks_meta_id\":null}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1746412345;s:18:\"\0*\0first_timestamp\";i:1729521836;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1746412345;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',5,1,'2025-05-05 02:52:46','2025-05-05 02:52:46',0,NULL),(244,'wp_mail_smtp_summary_report_email','complete','2025-05-05 02:32:26','2025-05-05 02:32:26',10,'[null]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1746412346;s:18:\"\0*\0first_timestamp\";i:1734357600;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1746412346;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',4,1,'2025-05-05 02:52:48','2025-05-05 02:52:48',0,NULL),(245,'wpforms_admin_addons_cache_update','complete','2025-05-05 02:32:26','2025-05-05 02:32:26',10,'{\"tasks_meta_id\":11}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1746412346;s:18:\"\0*\0first_timestamp\";i:1734401501;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1746412346;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',5,1,'2025-05-05 02:52:48','2025-05-05 02:52:48',0,NULL),(246,'wpforms_process_forms_locator_scan','complete','2025-04-29 09:41:32','2025-04-29 09:41:32',10,'{\"tasks_meta_id\":1}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1745919692;s:18:\"\0*\0first_timestamp\";i:1730109115;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1745919692;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2025-04-29 09:45:27','2025-04-29 09:45:27',0,NULL),(247,'wpforms_process_purge_spam','complete','2025-04-29 09:41:32','2025-04-29 09:41:32',10,'{\"tasks_meta_id\":2}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1745919692;s:18:\"\0*\0first_timestamp\";i:1730109115;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1745919692;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2025-04-29 09:45:27','2025-04-29 09:45:27',0,NULL),(248,'wp_mail_smtp_admin_notifications_update','complete','2025-04-29 09:41:32','2025-04-29 09:41:32',10,'[2]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1745919692;s:18:\"\0*\0first_timestamp\";i:1733811849;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1745919692;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',4,1,'2025-04-29 09:45:32','2025-04-29 09:45:32',0,NULL),(249,'wpforms_process_forms_locator_scan','complete','2025-04-30 09:45:27','2025-04-30 09:45:27',10,'{\"tasks_meta_id\":1}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1746006327;s:18:\"\0*\0first_timestamp\";i:1730109115;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1746006327;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2025-04-30 09:48:26','2025-04-30 09:48:26',0,NULL),(250,'wpforms_process_purge_spam','complete','2025-04-30 09:45:27','2025-04-30 09:45:27',10,'{\"tasks_meta_id\":2}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1746006327;s:18:\"\0*\0first_timestamp\";i:1730109115;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1746006327;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2025-04-30 09:48:26','2025-04-30 09:48:26',0,NULL),(251,'wp_mail_smtp_admin_notifications_update','complete','2025-04-30 09:45:32','2025-04-30 09:45:32',10,'[2]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1746006332;s:18:\"\0*\0first_timestamp\";i:1733811849;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1746006332;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',4,1,'2025-04-30 09:48:26','2025-04-30 09:48:26',0,NULL),(252,'wpforms_process_forms_locator_scan','complete','2025-05-01 09:48:26','2025-05-01 09:48:26',10,'{\"tasks_meta_id\":1}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1746092906;s:18:\"\0*\0first_timestamp\";i:1730109115;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1746092906;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2025-05-01 10:01:17','2025-05-01 10:01:17',0,NULL),(253,'wpforms_process_purge_spam','complete','2025-05-01 09:48:26','2025-05-01 09:48:26',10,'{\"tasks_meta_id\":2}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1746092906;s:18:\"\0*\0first_timestamp\";i:1730109115;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1746092906;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2025-05-01 10:01:17','2025-05-01 10:01:17',0,NULL),(254,'wp_mail_smtp_admin_notifications_update','complete','2025-05-01 09:48:26','2025-05-01 09:48:26',10,'[2]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1746092906;s:18:\"\0*\0first_timestamp\";i:1733811849;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1746092906;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',4,1,'2025-05-01 10:01:17','2025-05-01 10:01:17',0,NULL),(255,'wpforms_process_forms_locator_scan','complete','2025-05-02 10:01:17','2025-05-02 10:01:17',10,'{\"tasks_meta_id\":1}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1746180077;s:18:\"\0*\0first_timestamp\";i:1730109115;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1746180077;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2025-05-02 10:18:20','2025-05-02 10:18:20',0,NULL),(256,'wpforms_process_purge_spam','complete','2025-05-02 10:01:17','2025-05-02 10:01:17',10,'{\"tasks_meta_id\":2}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1746180077;s:18:\"\0*\0first_timestamp\";i:1730109115;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1746180077;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2025-05-02 10:18:20','2025-05-02 10:18:20',0,NULL),(257,'wp_mail_smtp_admin_notifications_update','complete','2025-05-02 10:01:17','2025-05-02 10:01:17',10,'[2]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1746180077;s:18:\"\0*\0first_timestamp\";i:1733811849;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1746180077;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',4,1,'2025-05-02 10:18:26','2025-05-02 10:18:26',0,NULL),(258,'wpforms_process_forms_locator_scan','complete','2025-05-03 10:18:20','2025-05-03 10:18:20',10,'{\"tasks_meta_id\":1}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1746267500;s:18:\"\0*\0first_timestamp\";i:1730109115;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1746267500;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2025-05-03 10:54:20','2025-05-03 10:54:20',0,NULL),(259,'wpforms_process_purge_spam','complete','2025-05-03 10:18:20','2025-05-03 10:18:20',10,'{\"tasks_meta_id\":2}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1746267500;s:18:\"\0*\0first_timestamp\";i:1730109115;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1746267500;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2025-05-03 10:54:20','2025-05-03 10:54:20',0,NULL),(260,'wp_mail_smtp_admin_notifications_update','complete','2025-05-03 10:18:26','2025-05-03 10:18:26',10,'[2]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1746267506;s:18:\"\0*\0first_timestamp\";i:1733811849;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1746267506;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',4,1,'2025-05-03 10:54:20','2025-05-03 10:54:20',0,NULL),(261,'wpforms_process_forms_locator_scan','complete','2025-05-04 10:54:20','2025-05-04 10:54:20',10,'{\"tasks_meta_id\":1}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1746356060;s:18:\"\0*\0first_timestamp\";i:1730109115;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1746356060;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2025-05-04 10:55:13','2025-05-04 10:55:13',0,NULL),(262,'wpforms_process_purge_spam','complete','2025-05-04 10:54:20','2025-05-04 10:54:20',10,'{\"tasks_meta_id\":2}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1746356060;s:18:\"\0*\0first_timestamp\";i:1730109115;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1746356060;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2025-05-04 10:55:13','2025-05-04 10:55:13',0,NULL),(263,'wp_mail_smtp_admin_notifications_update','complete','2025-05-04 10:54:20','2025-05-04 10:54:20',10,'[2]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1746356060;s:18:\"\0*\0first_timestamp\";i:1733811849;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1746356060;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',4,1,'2025-05-04 10:55:13','2025-05-04 10:55:13',0,NULL),(264,'wpforms_process_forms_locator_scan','complete','2025-05-05 10:55:13','2025-05-05 10:55:13',10,'{\"tasks_meta_id\":1}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1746442513;s:18:\"\0*\0first_timestamp\";i:1730109115;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1746442513;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2025-05-05 11:10:12','2025-05-05 11:10:12',0,NULL),(265,'wpforms_process_purge_spam','complete','2025-05-05 10:55:13','2025-05-05 10:55:13',10,'{\"tasks_meta_id\":2}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1746442513;s:18:\"\0*\0first_timestamp\";i:1730109115;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1746442513;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,1,'2025-05-05 11:10:12','2025-05-05 11:10:12',0,NULL),(266,'wp_mail_smtp_admin_notifications_update','complete','2025-05-05 10:55:13','2025-05-05 10:55:13',10,'[2]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1746442513;s:18:\"\0*\0first_timestamp\";i:1733811849;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1746442513;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',4,1,'2025-05-05 11:10:13','2025-05-05 11:10:13',0,NULL),(267,'wpforms_email_summaries_fetch_info_blocks','pending','2025-05-12 02:52:46','2025-05-12 02:52:46',10,'{\"tasks_meta_id\":null}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1747018366;s:18:\"\0*\0first_timestamp\";i:1729521836;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1747018366;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',5,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL),(268,'wp_mail_smtp_summary_report_email','pending','2025-05-12 02:52:48','2025-05-12 02:52:48',10,'[null]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1747018368;s:18:\"\0*\0first_timestamp\";i:1734357600;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1747018368;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',4,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL),(269,'wpforms_admin_addons_cache_update','pending','2025-05-12 02:52:48','2025-05-12 02:52:48',10,'{\"tasks_meta_id\":11}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1747018368;s:18:\"\0*\0first_timestamp\";i:1734401501;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1747018368;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',5,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL),(270,'wpforms_process_forms_locator_scan','pending','2025-05-06 11:10:12','2025-05-06 11:10:12',10,'{\"tasks_meta_id\":1}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1746529812;s:18:\"\0*\0first_timestamp\";i:1730109115;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1746529812;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL),(271,'wpforms_process_purge_spam','pending','2025-05-06 11:10:12','2025-05-06 11:10:12',10,'{\"tasks_meta_id\":2}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1746529812;s:18:\"\0*\0first_timestamp\";i:1730109115;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1746529812;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',5,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL),(272,'wp_mail_smtp_admin_notifications_update','pending','2025-05-06 11:10:13','2025-05-06 11:10:13',10,'[2]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1746529813;s:18:\"\0*\0first_timestamp\";i:1733811849;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1746529813;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',4,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL);
/*!40000 ALTER TABLE `wp_actionscheduler_actions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_actionscheduler_claims`
--

DROP TABLE IF EXISTS `wp_actionscheduler_claims`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_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=13729 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_actionscheduler_claims`
--

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

--
-- Table structure for table `wp_actionscheduler_groups`
--

DROP TABLE IF EXISTS `wp_actionscheduler_groups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_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=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_actionscheduler_groups`
--

LOCK TABLES `wp_actionscheduler_groups` WRITE;
/*!40000 ALTER TABLE `wp_actionscheduler_groups` DISABLE KEYS */;
INSERT INTO `wp_actionscheduler_groups` VALUES (1,'action-scheduler-migration'),(2,''),(3,'woocommerce-db-updates'),(4,'wp_mail_smtp'),(5,'wpforms');
/*!40000 ALTER TABLE `wp_actionscheduler_groups` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_actionscheduler_logs`
--

DROP TABLE IF EXISTS `wp_actionscheduler_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_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=777 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_actionscheduler_logs`
--

LOCK TABLES `wp_actionscheduler_logs` WRITE;
/*!40000 ALTER TABLE `wp_actionscheduler_logs` DISABLE KEYS */;
INSERT INTO `wp_actionscheduler_logs` VALUES (14,15,'action created','2024-10-19 15:35:47','2024-10-19 15:35:47'),(16,15,'action started via WP Cron','2024-10-19 15:35:53','2024-10-19 15:35:53'),(17,15,'action failed via WP Cron: Scheduled action for woocommerce_admin/stored_state_setup_for_products/async/run_remote_notifications will not be executed as no callbacks are registered.','2024-10-19 15:35:53','2024-10-19 15:35:53'),(82,37,'action created','2024-10-21 02:24:07','2024-10-21 02:24:07'),(84,37,'action started via WP Cron','2024-10-28 09:47:33','2024-10-28 09:47:33'),(85,37,'action failed via WP Cron: Scheduled action for woocommerce_cleanup_draft_orders will not be executed as no callbacks are registered.','2024-10-28 09:47:33','2024-10-28 09:47:33'),(86,39,'action created','2024-10-28 09:47:33','2024-10-28 09:47:33'),(114,39,'action started via WP Cron','2024-11-05 02:14:06','2024-11-05 02:14:06'),(115,39,'action failed via WP Cron: Scheduled action for woocommerce_cleanup_draft_orders will not be executed as no callbacks are registered.','2024-11-05 02:14:06','2024-11-05 02:14:06'),(116,51,'action created','2024-11-05 02:14:06','2024-11-05 02:14:06'),(129,51,'action started via WP Cron','2024-11-22 02:54:54','2024-11-22 02:54:54'),(130,51,'action failed via WP Cron: Scheduled action for woocommerce_cleanup_draft_orders will not be executed as no callbacks are registered.','2024-11-22 02:54:54','2024-11-22 02:54:54'),(131,56,'action created','2024-11-22 02:54:54','2024-11-22 02:54:54'),(147,56,'action started via WP Cron','2024-11-25 03:10:30','2024-11-25 03:10:30'),(148,56,'action failed via WP Cron: Scheduled action for woocommerce_cleanup_draft_orders will not be executed as no callbacks are registered.','2024-11-25 03:10:30','2024-11-25 03:10:30'),(149,62,'action created','2024-11-25 03:10:30','2024-11-25 03:10:30'),(159,62,'action started via WP Cron','2024-11-26 03:10:48','2024-11-26 03:10:48'),(160,62,'action failed via WP Cron: Scheduled action for woocommerce_cleanup_draft_orders will not be executed as no callbacks are registered.','2024-11-26 03:10:48','2024-11-26 03:10:48'),(161,62,'This action appears to be consistently failing. A new instance will not be scheduled.','2024-11-26 03:10:48','2024-11-26 03:10:48'),(401,147,'action created','2025-03-31 02:19:23','2025-03-31 02:19:23'),(404,148,'action created','2025-03-31 02:19:24','2025-03-31 02:19:24'),(407,149,'action created','2025-03-31 02:19:24','2025-03-31 02:19:24'),(455,165,'action created','2025-04-05 07:54:42','2025-04-05 07:54:42'),(458,166,'action created','2025-04-05 07:54:42','2025-04-05 07:54:42'),(461,167,'action created','2025-04-05 07:54:42','2025-04-05 07:54:42'),(462,165,'action started via WP Cron','2025-04-06 07:56:38','2025-04-06 07:56:38'),(463,165,'action complete via WP Cron','2025-04-06 07:56:38','2025-04-06 07:56:38'),(464,168,'action created','2025-04-06 07:56:38','2025-04-06 07:56:38'),(465,166,'action started via WP Cron','2025-04-06 07:56:38','2025-04-06 07:56:38'),(466,166,'action complete via WP Cron','2025-04-06 07:56:38','2025-04-06 07:56:38'),(467,169,'action created','2025-04-06 07:56:38','2025-04-06 07:56:38'),(468,167,'action started via WP Cron','2025-04-06 07:56:38','2025-04-06 07:56:38'),(469,167,'action complete via WP Cron','2025-04-06 07:56:38','2025-04-06 07:56:38'),(470,170,'action created','2025-04-06 07:56:38','2025-04-06 07:56:38'),(471,147,'action started via WP Cron','2025-04-07 02:21:44','2025-04-07 02:21:44'),(472,147,'action complete via WP Cron','2025-04-07 02:21:44','2025-04-07 02:21:44'),(473,171,'action created','2025-04-07 02:21:44','2025-04-07 02:21:44'),(474,148,'action started via WP Cron','2025-04-07 02:21:44','2025-04-07 02:21:44'),(475,148,'action complete via WP Cron','2025-04-07 02:21:45','2025-04-07 02:21:45'),(476,172,'action created','2025-04-07 02:21:45','2025-04-07 02:21:45'),(477,149,'action started via WP Cron','2025-04-07 02:21:45','2025-04-07 02:21:45'),(478,149,'action complete via WP Cron','2025-04-07 02:21:45','2025-04-07 02:21:45'),(479,173,'action created','2025-04-07 02:21:45','2025-04-07 02:21:45'),(480,168,'action started via WP Cron','2025-04-07 08:08:15','2025-04-07 08:08:15'),(481,168,'action complete via WP Cron','2025-04-07 08:08:15','2025-04-07 08:08:15'),(482,174,'action created','2025-04-07 08:08:15','2025-04-07 08:08:15'),(483,169,'action started via WP Cron','2025-04-07 08:08:15','2025-04-07 08:08:15'),(484,169,'action complete via WP Cron','2025-04-07 08:08:15','2025-04-07 08:08:15'),(485,175,'action created','2025-04-07 08:08:15','2025-04-07 08:08:15'),(486,170,'action started via WP Cron','2025-04-07 08:08:15','2025-04-07 08:08:15'),(487,170,'action complete via WP Cron','2025-04-07 08:08:15','2025-04-07 08:08:15'),(488,176,'action created','2025-04-07 08:08:15','2025-04-07 08:08:15'),(489,174,'action started via WP Cron','2025-04-08 08:11:02','2025-04-08 08:11:02'),(490,174,'action complete via WP Cron','2025-04-08 08:11:02','2025-04-08 08:11:02'),(491,177,'action created','2025-04-08 08:11:02','2025-04-08 08:11:02'),(492,175,'action started via WP Cron','2025-04-08 08:11:02','2025-04-08 08:11:02'),(493,175,'action complete via WP Cron','2025-04-08 08:11:02','2025-04-08 08:11:02'),(494,178,'action created','2025-04-08 08:11:02','2025-04-08 08:11:02'),(495,176,'action started via WP Cron','2025-04-08 08:11:02','2025-04-08 08:11:02'),(496,176,'action complete via WP Cron','2025-04-08 08:11:03','2025-04-08 08:11:03'),(497,179,'action created','2025-04-08 08:11:03','2025-04-08 08:11:03'),(498,177,'action started via WP Cron','2025-04-09 08:16:12','2025-04-09 08:16:12'),(499,177,'action complete via WP Cron','2025-04-09 08:16:12','2025-04-09 08:16:12'),(500,180,'action created','2025-04-09 08:16:12','2025-04-09 08:16:12'),(501,178,'action started via WP Cron','2025-04-09 08:16:12','2025-04-09 08:16:12'),(502,178,'action complete via WP Cron','2025-04-09 08:16:12','2025-04-09 08:16:12'),(503,181,'action created','2025-04-09 08:16:12','2025-04-09 08:16:12'),(504,179,'action started via WP Cron','2025-04-09 08:16:12','2025-04-09 08:16:12'),(505,179,'action complete via WP Cron','2025-04-09 08:16:12','2025-04-09 08:16:12'),(506,182,'action created','2025-04-09 08:16:12','2025-04-09 08:16:12'),(507,180,'action started via WP Cron','2025-04-10 08:16:35','2025-04-10 08:16:35'),(508,180,'action complete via WP Cron','2025-04-10 08:16:35','2025-04-10 08:16:35'),(509,183,'action created','2025-04-10 08:16:35','2025-04-10 08:16:35'),(510,181,'action started via WP Cron','2025-04-10 08:16:35','2025-04-10 08:16:35'),(511,181,'action complete via WP Cron','2025-04-10 08:16:35','2025-04-10 08:16:35'),(512,184,'action created','2025-04-10 08:16:35','2025-04-10 08:16:35'),(513,182,'action started via WP Cron','2025-04-10 08:16:35','2025-04-10 08:16:35'),(514,182,'action complete via WP Cron','2025-04-10 08:16:35','2025-04-10 08:16:35'),(515,185,'action created','2025-04-10 08:16:35','2025-04-10 08:16:35'),(516,183,'action started via WP Cron','2025-04-11 08:17:33','2025-04-11 08:17:33'),(517,183,'action complete via WP Cron','2025-04-11 08:17:33','2025-04-11 08:17:33'),(518,186,'action created','2025-04-11 08:17:33','2025-04-11 08:17:33'),(519,184,'action started via WP Cron','2025-04-11 08:17:33','2025-04-11 08:17:33'),(520,184,'action complete via WP Cron','2025-04-11 08:17:33','2025-04-11 08:17:33'),(521,187,'action created','2025-04-11 08:17:33','2025-04-11 08:17:33'),(522,185,'action started via WP Cron','2025-04-11 08:17:33','2025-04-11 08:17:33'),(523,185,'action complete via WP Cron','2025-04-11 08:17:34','2025-04-11 08:17:34'),(524,188,'action created','2025-04-11 08:17:34','2025-04-11 08:17:34'),(525,186,'action started via WP Cron','2025-04-12 08:34:46','2025-04-12 08:34:46'),(526,186,'action complete via WP Cron','2025-04-12 08:34:46','2025-04-12 08:34:46'),(527,189,'action created','2025-04-12 08:34:46','2025-04-12 08:34:46'),(528,187,'action started via WP Cron','2025-04-12 08:34:46','2025-04-12 08:34:46'),(529,187,'action complete via WP Cron','2025-04-12 08:34:46','2025-04-12 08:34:46'),(530,190,'action created','2025-04-12 08:34:46','2025-04-12 08:34:46'),(531,188,'action started via WP Cron','2025-04-12 08:34:46','2025-04-12 08:34:46'),(532,188,'action complete via WP Cron','2025-04-12 08:34:47','2025-04-12 08:34:47'),(533,191,'action created','2025-04-12 08:34:47','2025-04-12 08:34:47'),(534,189,'action started via WP Cron','2025-04-13 08:37:56','2025-04-13 08:37:56'),(535,189,'action complete via WP Cron','2025-04-13 08:37:56','2025-04-13 08:37:56'),(536,192,'action created','2025-04-13 08:37:56','2025-04-13 08:37:56'),(537,190,'action started via WP Cron','2025-04-13 08:37:56','2025-04-13 08:37:56'),(538,190,'action complete via WP Cron','2025-04-13 08:37:56','2025-04-13 08:37:56'),(539,193,'action created','2025-04-13 08:37:56','2025-04-13 08:37:56'),(540,191,'action started via WP Cron','2025-04-13 08:37:56','2025-04-13 08:37:56'),(541,191,'action complete via WP Cron','2025-04-13 08:37:56','2025-04-13 08:37:56'),(542,194,'action created','2025-04-13 08:37:56','2025-04-13 08:37:56'),(543,171,'action started via WP Cron','2025-04-14 02:22:13','2025-04-14 02:22:13'),(544,171,'action complete via WP Cron','2025-04-14 02:22:13','2025-04-14 02:22:13'),(545,195,'action created','2025-04-14 02:22:13','2025-04-14 02:22:13'),(546,172,'action started via WP Cron','2025-04-14 02:22:13','2025-04-14 02:22:13'),(547,172,'action complete via WP Cron','2025-04-14 02:22:14','2025-04-14 02:22:14'),(548,196,'action created','2025-04-14 02:22:14','2025-04-14 02:22:14'),(549,173,'action started via WP Cron','2025-04-14 02:22:14','2025-04-14 02:22:14'),(550,173,'action complete via WP Cron','2025-04-14 02:22:15','2025-04-14 02:22:15'),(551,197,'action created','2025-04-14 02:22:15','2025-04-14 02:22:15'),(552,192,'action started via WP Cron','2025-04-14 08:41:22','2025-04-14 08:41:22'),(553,192,'action complete via WP Cron','2025-04-14 08:41:22','2025-04-14 08:41:22'),(554,198,'action created','2025-04-14 08:41:22','2025-04-14 08:41:22'),(555,193,'action started via WP Cron','2025-04-14 08:41:22','2025-04-14 08:41:22'),(556,193,'action complete via WP Cron','2025-04-14 08:41:22','2025-04-14 08:41:22'),(557,199,'action created','2025-04-14 08:41:22','2025-04-14 08:41:22'),(558,194,'action started via WP Cron','2025-04-14 08:41:22','2025-04-14 08:41:22'),(559,194,'action complete via WP Cron','2025-04-14 08:41:22','2025-04-14 08:41:22'),(560,200,'action created','2025-04-14 08:41:22','2025-04-14 08:41:22'),(561,198,'action started via WP Cron','2025-04-15 08:43:48','2025-04-15 08:43:48'),(562,198,'action complete via WP Cron','2025-04-15 08:43:48','2025-04-15 08:43:48'),(563,201,'action created','2025-04-15 08:43:48','2025-04-15 08:43:48'),(564,199,'action started via WP Cron','2025-04-15 08:43:48','2025-04-15 08:43:48'),(565,199,'action complete via WP Cron','2025-04-15 08:43:48','2025-04-15 08:43:48'),(566,202,'action created','2025-04-15 08:43:48','2025-04-15 08:43:48'),(567,200,'action started via WP Cron','2025-04-15 08:43:48','2025-04-15 08:43:48'),(568,200,'action complete via WP Cron','2025-04-15 08:43:48','2025-04-15 08:43:48'),(569,203,'action created','2025-04-15 08:43:48','2025-04-15 08:43:48'),(570,201,'action started via WP Cron','2025-04-16 08:50:10','2025-04-16 08:50:10'),(571,201,'action complete via WP Cron','2025-04-16 08:50:10','2025-04-16 08:50:10'),(572,204,'action created','2025-04-16 08:50:10','2025-04-16 08:50:10'),(573,202,'action started via WP Cron','2025-04-16 08:50:10','2025-04-16 08:50:10'),(574,202,'action complete via WP Cron','2025-04-16 08:50:10','2025-04-16 08:50:10'),(575,205,'action created','2025-04-16 08:50:10','2025-04-16 08:50:10'),(576,203,'action started via WP Cron','2025-04-16 08:50:10','2025-04-16 08:50:10'),(577,203,'action complete via WP Cron','2025-04-16 08:50:11','2025-04-16 08:50:11'),(578,206,'action created','2025-04-16 08:50:11','2025-04-16 08:50:11'),(579,204,'action started via WP Cron','2025-04-17 08:52:21','2025-04-17 08:52:21'),(580,204,'action complete via WP Cron','2025-04-17 08:52:21','2025-04-17 08:52:21'),(581,207,'action created','2025-04-17 08:52:21','2025-04-17 08:52:21'),(582,205,'action started via WP Cron','2025-04-17 08:52:21','2025-04-17 08:52:21'),(583,205,'action complete via WP Cron','2025-04-17 08:52:21','2025-04-17 08:52:21'),(584,208,'action created','2025-04-17 08:52:21','2025-04-17 08:52:21'),(585,206,'action started via WP Cron','2025-04-17 08:52:21','2025-04-17 08:52:21'),(586,206,'action complete via WP Cron','2025-04-17 08:52:21','2025-04-17 08:52:21'),(587,209,'action created','2025-04-17 08:52:21','2025-04-17 08:52:21'),(588,207,'action started via WP Cron','2025-04-18 09:12:08','2025-04-18 09:12:08'),(589,207,'action complete via WP Cron','2025-04-18 09:12:08','2025-04-18 09:12:08'),(590,210,'action created','2025-04-18 09:12:08','2025-04-18 09:12:08'),(591,208,'action started via WP Cron','2025-04-18 09:12:08','2025-04-18 09:12:08'),(592,208,'action complete via WP Cron','2025-04-18 09:12:08','2025-04-18 09:12:08'),(593,211,'action created','2025-04-18 09:12:08','2025-04-18 09:12:08'),(594,209,'action started via WP Cron','2025-04-18 09:12:08','2025-04-18 09:12:08'),(595,209,'action complete via WP Cron','2025-04-18 09:12:08','2025-04-18 09:12:08'),(596,212,'action created','2025-04-18 09:12:08','2025-04-18 09:12:08'),(597,210,'action started via WP Cron','2025-04-19 09:19:57','2025-04-19 09:19:57'),(598,210,'action complete via WP Cron','2025-04-19 09:19:57','2025-04-19 09:19:57'),(599,213,'action created','2025-04-19 09:19:57','2025-04-19 09:19:57'),(600,211,'action started via WP Cron','2025-04-19 09:19:57','2025-04-19 09:19:57'),(601,211,'action complete via WP Cron','2025-04-19 09:19:57','2025-04-19 09:19:57'),(602,214,'action created','2025-04-19 09:19:57','2025-04-19 09:19:57'),(603,212,'action started via WP Cron','2025-04-19 09:19:57','2025-04-19 09:19:57'),(604,212,'action complete via WP Cron','2025-04-19 09:20:02','2025-04-19 09:20:02'),(605,215,'action created','2025-04-19 09:20:02','2025-04-19 09:20:02'),(606,213,'action started via WP Cron','2025-04-20 09:20:30','2025-04-20 09:20:30'),(607,213,'action complete via WP Cron','2025-04-20 09:20:30','2025-04-20 09:20:30'),(608,216,'action created','2025-04-20 09:20:30','2025-04-20 09:20:30'),(609,214,'action started via WP Cron','2025-04-20 09:20:30','2025-04-20 09:20:30'),(610,214,'action complete via WP Cron','2025-04-20 09:20:30','2025-04-20 09:20:30'),(611,217,'action created','2025-04-20 09:20:30','2025-04-20 09:20:30'),(612,215,'action started via WP Cron','2025-04-20 09:20:30','2025-04-20 09:20:30'),(613,215,'action complete via WP Cron','2025-04-20 09:20:30','2025-04-20 09:20:30'),(614,218,'action created','2025-04-20 09:20:30','2025-04-20 09:20:30'),(615,195,'action started via WP Cron','2025-04-21 02:27:38','2025-04-21 02:27:38'),(616,195,'action complete via WP Cron','2025-04-21 02:27:38','2025-04-21 02:27:38'),(617,219,'action created','2025-04-21 02:27:38','2025-04-21 02:27:38'),(618,196,'action started via WP Cron','2025-04-21 02:27:38','2025-04-21 02:27:38'),(619,196,'action complete via WP Cron','2025-04-21 02:27:39','2025-04-21 02:27:39'),(620,220,'action created','2025-04-21 02:27:39','2025-04-21 02:27:39'),(621,197,'action started via WP Cron','2025-04-21 02:27:39','2025-04-21 02:27:39'),(622,197,'action complete via WP Cron','2025-04-21 02:27:39','2025-04-21 02:27:39'),(623,221,'action created','2025-04-21 02:27:39','2025-04-21 02:27:39'),(624,216,'action started via WP Cron','2025-04-21 09:22:35','2025-04-21 09:22:35'),(625,216,'action complete via WP Cron','2025-04-21 09:22:35','2025-04-21 09:22:35'),(626,222,'action created','2025-04-21 09:22:35','2025-04-21 09:22:35'),(627,217,'action started via WP Cron','2025-04-21 09:22:35','2025-04-21 09:22:35'),(628,217,'action complete via WP Cron','2025-04-21 09:22:35','2025-04-21 09:22:35'),(629,223,'action created','2025-04-21 09:22:35','2025-04-21 09:22:35'),(630,218,'action started via WP Cron','2025-04-21 09:22:35','2025-04-21 09:22:35'),(631,218,'action complete via WP Cron','2025-04-21 09:22:35','2025-04-21 09:22:35'),(632,224,'action created','2025-04-21 09:22:35','2025-04-21 09:22:35'),(633,222,'action started via WP Cron','2025-04-22 09:24:24','2025-04-22 09:24:24'),(634,222,'action complete via WP Cron','2025-04-22 09:24:24','2025-04-22 09:24:24'),(635,225,'action created','2025-04-22 09:24:24','2025-04-22 09:24:24'),(636,223,'action started via WP Cron','2025-04-22 09:24:24','2025-04-22 09:24:24'),(637,223,'action complete via WP Cron','2025-04-22 09:24:24','2025-04-22 09:24:24'),(638,226,'action created','2025-04-22 09:24:24','2025-04-22 09:24:24'),(639,224,'action started via WP Cron','2025-04-22 09:24:24','2025-04-22 09:24:24'),(640,224,'action complete via WP Cron','2025-04-22 09:24:24','2025-04-22 09:24:24'),(641,227,'action created','2025-04-22 09:24:24','2025-04-22 09:24:24'),(642,225,'action started via WP Cron','2025-04-23 09:28:55','2025-04-23 09:28:55'),(643,225,'action complete via WP Cron','2025-04-23 09:28:55','2025-04-23 09:28:55'),(644,228,'action created','2025-04-23 09:28:55','2025-04-23 09:28:55'),(645,226,'action started via WP Cron','2025-04-23 09:28:55','2025-04-23 09:28:55'),(646,226,'action complete via WP Cron','2025-04-23 09:28:55','2025-04-23 09:28:55'),(647,229,'action created','2025-04-23 09:28:55','2025-04-23 09:28:55'),(648,227,'action started via WP Cron','2025-04-23 09:28:55','2025-04-23 09:28:55'),(649,227,'action complete via WP Cron','2025-04-23 09:28:55','2025-04-23 09:28:55'),(650,230,'action created','2025-04-23 09:28:55','2025-04-23 09:28:55'),(651,228,'action started via WP Cron','2025-04-24 09:29:09','2025-04-24 09:29:09'),(652,228,'action complete via WP Cron','2025-04-24 09:29:09','2025-04-24 09:29:09'),(653,231,'action created','2025-04-24 09:29:09','2025-04-24 09:29:09'),(654,229,'action started via WP Cron','2025-04-24 09:29:09','2025-04-24 09:29:09'),(655,229,'action complete via WP Cron','2025-04-24 09:29:09','2025-04-24 09:29:09'),(656,232,'action created','2025-04-24 09:29:09','2025-04-24 09:29:09'),(657,230,'action started via WP Cron','2025-04-24 09:29:09','2025-04-24 09:29:09'),(658,230,'action complete via WP Cron','2025-04-24 09:29:12','2025-04-24 09:29:12'),(659,233,'action created','2025-04-24 09:29:12','2025-04-24 09:29:12'),(660,231,'action started via WP Cron','2025-04-25 09:36:06','2025-04-25 09:36:06'),(661,231,'action complete via WP Cron','2025-04-25 09:36:06','2025-04-25 09:36:06'),(662,234,'action created','2025-04-25 09:36:06','2025-04-25 09:36:06'),(663,232,'action started via WP Cron','2025-04-25 09:36:06','2025-04-25 09:36:06'),(664,232,'action complete via WP Cron','2025-04-25 09:36:06','2025-04-25 09:36:06'),(665,235,'action created','2025-04-25 09:36:06','2025-04-25 09:36:06'),(666,233,'action started via WP Cron','2025-04-25 09:36:06','2025-04-25 09:36:06'),(667,233,'action complete via WP Cron','2025-04-25 09:36:06','2025-04-25 09:36:06'),(668,236,'action created','2025-04-25 09:36:06','2025-04-25 09:36:06'),(669,234,'action started via WP Cron','2025-04-26 09:37:55','2025-04-26 09:37:55'),(670,234,'action complete via WP Cron','2025-04-26 09:37:55','2025-04-26 09:37:55'),(671,237,'action created','2025-04-26 09:37:55','2025-04-26 09:37:55'),(672,235,'action started via WP Cron','2025-04-26 09:37:55','2025-04-26 09:37:55'),(673,235,'action complete via WP Cron','2025-04-26 09:37:55','2025-04-26 09:37:55'),(674,238,'action created','2025-04-26 09:37:55','2025-04-26 09:37:55'),(675,236,'action started via WP Cron','2025-04-26 09:37:55','2025-04-26 09:37:55'),(676,236,'action complete via WP Cron','2025-04-26 09:37:55','2025-04-26 09:37:55'),(677,239,'action created','2025-04-26 09:37:55','2025-04-26 09:37:55'),(678,237,'action started via WP Cron','2025-04-27 09:40:22','2025-04-27 09:40:22'),(679,237,'action complete via WP Cron','2025-04-27 09:40:22','2025-04-27 09:40:22'),(680,240,'action created','2025-04-27 09:40:22','2025-04-27 09:40:22'),(681,238,'action started via WP Cron','2025-04-27 09:40:22','2025-04-27 09:40:22'),(682,238,'action complete via WP Cron','2025-04-27 09:40:22','2025-04-27 09:40:22'),(683,241,'action created','2025-04-27 09:40:22','2025-04-27 09:40:22'),(684,239,'action started via WP Cron','2025-04-27 09:40:22','2025-04-27 09:40:22'),(685,239,'action complete via WP Cron','2025-04-27 09:40:22','2025-04-27 09:40:22'),(686,242,'action created','2025-04-27 09:40:22','2025-04-27 09:40:22'),(687,219,'action started via WP Cron','2025-04-28 02:32:25','2025-04-28 02:32:25'),(688,219,'action complete via WP Cron','2025-04-28 02:32:25','2025-04-28 02:32:25'),(689,243,'action created','2025-04-28 02:32:25','2025-04-28 02:32:25'),(690,220,'action started via WP Cron','2025-04-28 02:32:25','2025-04-28 02:32:25'),(691,220,'action complete via WP Cron','2025-04-28 02:32:26','2025-04-28 02:32:26'),(692,244,'action created','2025-04-28 02:32:26','2025-04-28 02:32:26'),(693,221,'action started via WP Cron','2025-04-28 02:32:26','2025-04-28 02:32:26'),(694,221,'action complete via WP Cron','2025-04-28 02:32:26','2025-04-28 02:32:26'),(695,245,'action created','2025-04-28 02:32:26','2025-04-28 02:32:26'),(696,240,'action started via WP Cron','2025-04-28 09:41:32','2025-04-28 09:41:32'),(697,240,'action complete via WP Cron','2025-04-28 09:41:32','2025-04-28 09:41:32'),(698,246,'action created','2025-04-28 09:41:32','2025-04-28 09:41:32'),(699,241,'action started via WP Cron','2025-04-28 09:41:32','2025-04-28 09:41:32'),(700,241,'action complete via WP Cron','2025-04-28 09:41:32','2025-04-28 09:41:32'),(701,247,'action created','2025-04-28 09:41:32','2025-04-28 09:41:32'),(702,242,'action started via WP Cron','2025-04-28 09:41:32','2025-04-28 09:41:32'),(703,242,'action complete via WP Cron','2025-04-28 09:41:32','2025-04-28 09:41:32'),(704,248,'action created','2025-04-28 09:41:32','2025-04-28 09:41:32'),(705,246,'action started via WP Cron','2025-04-29 09:45:27','2025-04-29 09:45:27'),(706,246,'action complete via WP Cron','2025-04-29 09:45:27','2025-04-29 09:45:27'),(707,249,'action created','2025-04-29 09:45:27','2025-04-29 09:45:27'),(708,247,'action started via WP Cron','2025-04-29 09:45:27','2025-04-29 09:45:27'),(709,247,'action complete via WP Cron','2025-04-29 09:45:27','2025-04-29 09:45:27'),(710,250,'action created','2025-04-29 09:45:27','2025-04-29 09:45:27'),(711,248,'action started via WP Cron','2025-04-29 09:45:27','2025-04-29 09:45:27'),(712,248,'action complete via WP Cron','2025-04-29 09:45:32','2025-04-29 09:45:32'),(713,251,'action created','2025-04-29 09:45:32','2025-04-29 09:45:32'),(714,249,'action started via WP Cron','2025-04-30 09:48:25','2025-04-30 09:48:25'),(715,249,'action complete via WP Cron','2025-04-30 09:48:26','2025-04-30 09:48:26'),(716,252,'action created','2025-04-30 09:48:26','2025-04-30 09:48:26'),(717,250,'action started via WP Cron','2025-04-30 09:48:26','2025-04-30 09:48:26'),(718,250,'action complete via WP Cron','2025-04-30 09:48:26','2025-04-30 09:48:26'),(719,253,'action created','2025-04-30 09:48:26','2025-04-30 09:48:26'),(720,251,'action started via WP Cron','2025-04-30 09:48:26','2025-04-30 09:48:26'),(721,251,'action complete via WP Cron','2025-04-30 09:48:26','2025-04-30 09:48:26'),(722,254,'action created','2025-04-30 09:48:26','2025-04-30 09:48:26'),(723,252,'action started via WP Cron','2025-05-01 10:01:17','2025-05-01 10:01:17'),(724,252,'action complete via WP Cron','2025-05-01 10:01:17','2025-05-01 10:01:17'),(725,255,'action created','2025-05-01 10:01:17','2025-05-01 10:01:17'),(726,253,'action started via WP Cron','2025-05-01 10:01:17','2025-05-01 10:01:17'),(727,253,'action complete via WP Cron','2025-05-01 10:01:17','2025-05-01 10:01:17'),(728,256,'action created','2025-05-01 10:01:17','2025-05-01 10:01:17'),(729,254,'action started via WP Cron','2025-05-01 10:01:17','2025-05-01 10:01:17'),(730,254,'action complete via WP Cron','2025-05-01 10:01:17','2025-05-01 10:01:17'),(731,257,'action created','2025-05-01 10:01:17','2025-05-01 10:01:17'),(732,255,'action started via WP Cron','2025-05-02 10:18:20','2025-05-02 10:18:20'),(733,255,'action complete via WP Cron','2025-05-02 10:18:20','2025-05-02 10:18:20'),(734,258,'action created','2025-05-02 10:18:20','2025-05-02 10:18:20'),(735,256,'action started via WP Cron','2025-05-02 10:18:20','2025-05-02 10:18:20'),(736,256,'action complete via WP Cron','2025-05-02 10:18:20','2025-05-02 10:18:20'),(737,259,'action created','2025-05-02 10:18:20','2025-05-02 10:18:20'),(738,257,'action started via WP Cron','2025-05-02 10:18:20','2025-05-02 10:18:20'),(739,257,'action complete via WP Cron','2025-05-02 10:18:26','2025-05-02 10:18:26'),(740,260,'action created','2025-05-02 10:18:26','2025-05-02 10:18:26'),(741,258,'action started via WP Cron','2025-05-03 10:54:20','2025-05-03 10:54:20'),(742,258,'action complete via WP Cron','2025-05-03 10:54:20','2025-05-03 10:54:20'),(743,261,'action created','2025-05-03 10:54:20','2025-05-03 10:54:20'),(744,259,'action started via WP Cron','2025-05-03 10:54:20','2025-05-03 10:54:20'),(745,259,'action complete via WP Cron','2025-05-03 10:54:20','2025-05-03 10:54:20'),(746,262,'action created','2025-05-03 10:54:20','2025-05-03 10:54:20'),(747,260,'action started via WP Cron','2025-05-03 10:54:20','2025-05-03 10:54:20'),(748,260,'action complete via WP Cron','2025-05-03 10:54:20','2025-05-03 10:54:20'),(749,263,'action created','2025-05-03 10:54:20','2025-05-03 10:54:20'),(750,261,'action started via WP Cron','2025-05-04 10:55:13','2025-05-04 10:55:13'),(751,261,'action complete via WP Cron','2025-05-04 10:55:13','2025-05-04 10:55:13'),(752,264,'action created','2025-05-04 10:55:13','2025-05-04 10:55:13'),(753,262,'action started via WP Cron','2025-05-04 10:55:13','2025-05-04 10:55:13'),(754,262,'action complete via WP Cron','2025-05-04 10:55:13','2025-05-04 10:55:13'),(755,265,'action created','2025-05-04 10:55:13','2025-05-04 10:55:13'),(756,263,'action started via WP Cron','2025-05-04 10:55:13','2025-05-04 10:55:13'),(757,263,'action complete via WP Cron','2025-05-04 10:55:13','2025-05-04 10:55:13'),(758,266,'action created','2025-05-04 10:55:13','2025-05-04 10:55:13'),(759,243,'action started via WP Cron','2025-05-05 02:52:46','2025-05-05 02:52:46'),(760,243,'action complete via WP Cron','2025-05-05 02:52:46','2025-05-05 02:52:46'),(761,267,'action created','2025-05-05 02:52:46','2025-05-05 02:52:46'),(762,244,'action started via WP Cron','2025-05-05 02:52:46','2025-05-05 02:52:46'),(763,244,'action complete via WP Cron','2025-05-05 02:52:48','2025-05-05 02:52:48'),(764,268,'action created','2025-05-05 02:52:48','2025-05-05 02:52:48'),(765,245,'action started via WP Cron','2025-05-05 02:52:48','2025-05-05 02:52:48'),(766,245,'action complete via WP Cron','2025-05-05 02:52:48','2025-05-05 02:52:48'),(767,269,'action created','2025-05-05 02:52:48','2025-05-05 02:52:48'),(768,264,'action started via WP Cron','2025-05-05 11:10:12','2025-05-05 11:10:12'),(769,264,'action complete via WP Cron','2025-05-05 11:10:12','2025-05-05 11:10:12'),(770,270,'action created','2025-05-05 11:10:12','2025-05-05 11:10:12'),(771,265,'action started via WP Cron','2025-05-05 11:10:12','2025-05-05 11:10:12'),(772,265,'action complete via WP Cron','2025-05-05 11:10:12','2025-05-05 11:10:12'),(773,271,'action created','2025-05-05 11:10:12','2025-05-05 11:10:12'),(774,266,'action started via WP Cron','2025-05-05 11:10:12','2025-05-05 11:10:12'),(775,266,'action complete via WP Cron','2025-05-05 11:10:13','2025-05-05 11:10:13'),(776,272,'action created','2025-05-05 11:10:13','2025-05-05 11:10:13');
/*!40000 ALTER TABLE `wp_actionscheduler_logs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_commentmeta`
--

DROP TABLE IF EXISTS `wp_commentmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_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 AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_commentmeta`
--

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

--
-- Table structure for table `wp_comments`
--

DROP TABLE IF EXISTS `wp_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_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)),
  KEY `woo_idx_comment_type` (`comment_type`)
) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_comments`
--

LOCK TABLES `wp_comments` WRITE;
/*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */;
INSERT INTO `wp_comments` VALUES (1,1,'A WordPress Commenter','wapuu@wordpress.example','https://wordpress.org/','','2024-10-18 15:16:20','2024-10-18 15:16:20','Hi, this is a comment.\nTo get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\nCommenter avatars come from <a href=\"https://en.gravatar.com/\">Gravatar</a>.',0,'1','','comment',0,0);
/*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_e_events`
--

DROP TABLE IF EXISTS `wp_e_events`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_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 AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_e_events`
--

LOCK TABLES `wp_e_events` WRITE;
/*!40000 ALTER TABLE `wp_e_events` DISABLE KEYS */;
INSERT INTO `wp_e_events` VALUES (1,'{\"event\":\"modal load\",\"version\":\"\",\"details\":\"{\\\"placement\\\":\\\"Onboarding wizard\\\",\\\"step\\\":\\\"account\\\",\\\"user_state\\\":\\\"anon\\\"}\",\"ts\":\"2024-10-18T22:19:08.912-07:00\"}','2024-10-18 22:19:08'),(2,'{\"event\":\"modal load\",\"version\":\"\",\"details\":\"{\\\"placement\\\":\\\"Onboarding wizard\\\",\\\"step\\\":\\\"hello\\\",\\\"user_state\\\":\\\"anon\\\"}\",\"ts\":\"2024-10-18T22:19:11.846-07:00\"}','2024-10-18 22:19:11'),(3,'{\"event\":\"skip\",\"version\":\"\",\"details\":\"{\\\"placement\\\":\\\"Onboarding wizard\\\",\\\"step\\\":\\\"hello\\\"}\",\"ts\":\"2024-10-18T22:19:12.574-07:00\"}','2024-10-18 22:19:12'),(4,'{\"event\":\"modal load\",\"version\":\"\",\"details\":\"{\\\"placement\\\":\\\"Onboarding wizard\\\",\\\"step\\\":\\\"chooseFeatures\\\",\\\"user_state\\\":\\\"anon\\\"}\",\"ts\":\"2024-10-18T22:19:12.582-07:00\"}','2024-10-18 22:19:12'),(5,'{\"event\":\"skip\",\"version\":\"\",\"details\":\"{\\\"placement\\\":\\\"Onboarding wizard\\\",\\\"step\\\":\\\"account\\\"}\",\"ts\":\"2024-10-18T22:19:11.838-07:00\"}','2024-10-18 22:19:11'),(6,'{\"event\":\"skip\",\"version\":\"\",\"details\":\"{\\\"placement\\\":\\\"Onboarding wizard\\\",\\\"step\\\":\\\"chooseFeatures\\\"}\",\"ts\":\"2024-10-18T22:19:13.856-07:00\"}','2024-10-18 22:19:13'),(7,'{\"event\":\"modal load\",\"version\":\"\",\"details\":\"{\\\"placement\\\":\\\"Onboarding wizard\\\",\\\"step\\\":\\\"goodToGo\\\",\\\"user_state\\\":\\\"anon\\\"}\",\"ts\":\"2024-10-18T22:19:13.866-07:00\"}','2024-10-18 22:19:13'),(8,'{\"event\":\"skip\",\"version\":\"\",\"details\":\"{\\\"placement\\\":\\\"Onboarding wizard\\\",\\\"step\\\":\\\"goodToGo\\\"}\",\"ts\":\"2024-10-18T22:19:15.715-07:00\"}','2024-10-18 22:19:15');
/*!40000 ALTER TABLE `wp_e_events` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_links`
--

DROP TABLE IF EXISTS `wp_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_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_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_links`
--

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

--
-- Table structure for table `wp_newsletter`
--

DROP TABLE IF EXISTS `wp_newsletter`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_newsletter` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `email` varchar(100) NOT NULL DEFAULT '',
  `name` varchar(100) NOT NULL DEFAULT '',
  `token` varchar(50) NOT NULL DEFAULT '',
  `language` varchar(10) NOT NULL DEFAULT '',
  `status` varchar(1) NOT NULL DEFAULT 'S',
  `created` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated` int(11) NOT NULL DEFAULT 0,
  `last_activity` int(11) NOT NULL DEFAULT 0,
  `surname` varchar(100) NOT NULL DEFAULT '',
  `sex` char(1) NOT NULL DEFAULT 'n',
  `feed_time` bigint(20) NOT NULL DEFAULT 0,
  `feed` tinyint(4) NOT NULL DEFAULT 0,
  `referrer` varchar(50) NOT NULL DEFAULT '',
  `ip` varchar(50) NOT NULL DEFAULT '',
  `wp_user_id` int(11) NOT NULL DEFAULT 0,
  `source` varchar(50) NOT NULL DEFAULT '',
  `http_referer` varchar(255) NOT NULL DEFAULT '',
  `geo` tinyint(4) NOT NULL DEFAULT 0,
  `country` varchar(4) NOT NULL DEFAULT '',
  `region` varchar(100) NOT NULL DEFAULT '',
  `city` varchar(100) NOT NULL DEFAULT '',
  `bounce_type` varchar(50) NOT NULL DEFAULT '',
  `bounce_time` int(11) NOT NULL DEFAULT 0,
  `unsub_email_id` int(11) NOT NULL DEFAULT 0,
  `unsub_time` int(11) NOT NULL DEFAULT 0,
  `list_1` tinyint(4) NOT NULL DEFAULT 0,
  `list_2` tinyint(4) NOT NULL DEFAULT 0,
  `list_3` tinyint(4) NOT NULL DEFAULT 0,
  `list_4` tinyint(4) NOT NULL DEFAULT 0,
  `list_5` tinyint(4) NOT NULL DEFAULT 0,
  `list_6` tinyint(4) NOT NULL DEFAULT 0,
  `list_7` tinyint(4) NOT NULL DEFAULT 0,
  `list_8` tinyint(4) NOT NULL DEFAULT 0,
  `list_9` tinyint(4) NOT NULL DEFAULT 0,
  `list_10` tinyint(4) NOT NULL DEFAULT 0,
  `list_11` tinyint(4) NOT NULL DEFAULT 0,
  `list_12` tinyint(4) NOT NULL DEFAULT 0,
  `list_13` tinyint(4) NOT NULL DEFAULT 0,
  `list_14` tinyint(4) NOT NULL DEFAULT 0,
  `list_15` tinyint(4) NOT NULL DEFAULT 0,
  `list_16` tinyint(4) NOT NULL DEFAULT 0,
  `list_17` tinyint(4) NOT NULL DEFAULT 0,
  `list_18` tinyint(4) NOT NULL DEFAULT 0,
  `list_19` tinyint(4) NOT NULL DEFAULT 0,
  `list_20` tinyint(4) NOT NULL DEFAULT 0,
  `list_21` tinyint(4) NOT NULL DEFAULT 0,
  `list_22` tinyint(4) NOT NULL DEFAULT 0,
  `list_23` tinyint(4) NOT NULL DEFAULT 0,
  `list_24` tinyint(4) NOT NULL DEFAULT 0,
  `list_25` tinyint(4) NOT NULL DEFAULT 0,
  `list_26` tinyint(4) NOT NULL DEFAULT 0,
  `list_27` tinyint(4) NOT NULL DEFAULT 0,
  `list_28` tinyint(4) NOT NULL DEFAULT 0,
  `list_29` tinyint(4) NOT NULL DEFAULT 0,
  `list_30` tinyint(4) NOT NULL DEFAULT 0,
  `list_31` tinyint(4) NOT NULL DEFAULT 0,
  `list_32` tinyint(4) NOT NULL DEFAULT 0,
  `list_33` tinyint(4) NOT NULL DEFAULT 0,
  `list_34` tinyint(4) NOT NULL DEFAULT 0,
  `list_35` tinyint(4) NOT NULL DEFAULT 0,
  `list_36` tinyint(4) NOT NULL DEFAULT 0,
  `list_37` tinyint(4) NOT NULL DEFAULT 0,
  `list_38` tinyint(4) NOT NULL DEFAULT 0,
  `list_39` tinyint(4) NOT NULL DEFAULT 0,
  `list_40` tinyint(4) NOT NULL DEFAULT 0,
  `profile_1` varchar(255) NOT NULL DEFAULT '',
  `profile_2` varchar(255) NOT NULL DEFAULT '',
  `profile_3` varchar(255) NOT NULL DEFAULT '',
  `profile_4` varchar(255) NOT NULL DEFAULT '',
  `profile_5` varchar(255) NOT NULL DEFAULT '',
  `profile_6` varchar(255) NOT NULL DEFAULT '',
  `profile_7` varchar(255) NOT NULL DEFAULT '',
  `profile_8` varchar(255) NOT NULL DEFAULT '',
  `profile_9` varchar(255) NOT NULL DEFAULT '',
  `profile_10` varchar(255) NOT NULL DEFAULT '',
  `profile_11` varchar(255) NOT NULL DEFAULT '',
  `profile_12` varchar(255) NOT NULL DEFAULT '',
  `profile_13` varchar(255) NOT NULL DEFAULT '',
  `profile_14` varchar(255) NOT NULL DEFAULT '',
  `profile_15` varchar(255) NOT NULL DEFAULT '',
  `profile_16` varchar(255) NOT NULL DEFAULT '',
  `profile_17` varchar(255) NOT NULL DEFAULT '',
  `profile_18` varchar(255) NOT NULL DEFAULT '',
  `profile_19` varchar(255) NOT NULL DEFAULT '',
  `profile_20` varchar(255) NOT NULL DEFAULT '',
  `test` tinyint(4) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  UNIQUE KEY `email` (`email`),
  KEY `wp_user_id` (`wp_user_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 `wp_newsletter`
--

LOCK TABLES `wp_newsletter` WRITE;
/*!40000 ALTER TABLE `wp_newsletter` DISABLE KEYS */;
INSERT INTO `wp_newsletter` VALUES (1,'testing@example.com','','938c3f696e','en','C','2025-04-11 08:54:16',1744361656,0,'','n',0,0,'','122.136.188.132',0,'','',0,'','','','',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'','','','','','','','','','','','','','','','','','','','',0);
/*!40000 ALTER TABLE `wp_newsletter` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_newsletter_emails`
--

DROP TABLE IF EXISTS `wp_newsletter_emails`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_newsletter_emails` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `language` varchar(10) NOT NULL DEFAULT '',
  `subject` varchar(255) NOT NULL DEFAULT '',
  `message` longtext DEFAULT NULL,
  `created` timestamp NOT NULL DEFAULT current_timestamp(),
  `status` enum('new','sending','sent','paused','error') NOT NULL DEFAULT 'new',
  `total` int(11) NOT NULL DEFAULT 0,
  `last_id` int(11) NOT NULL DEFAULT 0,
  `sent` int(11) NOT NULL DEFAULT 0,
  `track` int(11) NOT NULL DEFAULT 1,
  `list` int(11) NOT NULL DEFAULT 0,
  `type` varchar(50) NOT NULL DEFAULT '',
  `query` longtext DEFAULT NULL,
  `editor` tinyint(4) NOT NULL DEFAULT 0,
  `sex` varchar(20) NOT NULL DEFAULT '',
  `theme` varchar(50) NOT NULL DEFAULT '',
  `message_text` longtext DEFAULT NULL,
  `preferences` longtext DEFAULT NULL,
  `send_on` int(11) NOT NULL DEFAULT 0,
  `token` varchar(10) NOT NULL DEFAULT '',
  `options` longtext DEFAULT NULL,
  `private` tinyint(1) NOT NULL DEFAULT 0,
  `click_count` int(10) unsigned NOT NULL DEFAULT 0,
  `version` varchar(10) NOT NULL DEFAULT '',
  `open_count` int(10) unsigned NOT NULL DEFAULT 0,
  `unsub_count` int(10) unsigned NOT NULL DEFAULT 0,
  `error_count` int(10) unsigned NOT NULL DEFAULT 0,
  `stats_time` int(10) unsigned NOT NULL DEFAULT 0,
  `updated` int(10) unsigned NOT NULL DEFAULT 0,
  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 `wp_newsletter_emails`
--

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

--
-- Table structure for table `wp_newsletter_logs`
--

DROP TABLE IF EXISTS `wp_newsletter_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_newsletter_logs` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `status` int(11) NOT NULL DEFAULT 0,
  `source` varchar(100) NOT NULL DEFAULT '',
  `description` varchar(255) NOT NULL DEFAULT '',
  `data` longtext DEFAULT NULL,
  `created` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_newsletter_logs`
--

LOCK TABLES `wp_newsletter_logs` WRITE;
/*!40000 ALTER TABLE `wp_newsletter_logs` DISABLE KEYS */;
INSERT INTO `wp_newsletter_logs` VALUES (3,0,'antispam','flood - Flood detected for: 122.136.188.132 or testing@example.com','',1744361658);
/*!40000 ALTER TABLE `wp_newsletter_logs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_newsletter_sent`
--

DROP TABLE IF EXISTS `wp_newsletter_sent`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_newsletter_sent` (
  `email_id` int(10) unsigned NOT NULL DEFAULT 0,
  `user_id` int(10) unsigned NOT NULL DEFAULT 0,
  `status` tinyint(1) unsigned NOT NULL DEFAULT 0,
  `open` tinyint(1) unsigned NOT NULL DEFAULT 0,
  `time` int(10) unsigned NOT NULL DEFAULT 0,
  `error` varchar(255) NOT NULL DEFAULT '',
  `ip` varchar(100) NOT NULL DEFAULT '',
  PRIMARY KEY (`email_id`,`user_id`),
  KEY `user_id` (`user_id`),
  KEY `email_id` (`email_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_newsletter_sent`
--

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

--
-- Table structure for table `wp_newsletter_stats`
--

DROP TABLE IF EXISTS `wp_newsletter_stats`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_newsletter_stats` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `created` timestamp NOT NULL DEFAULT current_timestamp(),
  `url` varchar(255) NOT NULL DEFAULT '',
  `user_id` int(11) NOT NULL DEFAULT 0,
  `email_id` varchar(10) NOT NULL DEFAULT '0',
  `ip` varchar(100) NOT NULL DEFAULT '',
  PRIMARY KEY (`id`),
  KEY `email_id` (`email_id`),
  KEY `user_id` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_newsletter_stats`
--

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

--
-- Table structure for table `wp_newsletter_user_logs`
--

DROP TABLE IF EXISTS `wp_newsletter_user_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_newsletter_user_logs` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(11) NOT NULL DEFAULT 0,
  `ip` varchar(50) NOT NULL DEFAULT '',
  `source` varchar(50) NOT NULL DEFAULT '',
  `data` longtext DEFAULT NULL,
  `created` int(11) NOT NULL DEFAULT 0,
  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 `wp_newsletter_user_logs`
--

LOCK TABLES `wp_newsletter_user_logs` WRITE;
/*!40000 ALTER TABLE `wp_newsletter_user_logs` DISABLE KEYS */;
INSERT INTO `wp_newsletter_user_logs` VALUES (1,1,'122.136.188.132','subscribe','{\"status\":\"C\"}',1744361656);
/*!40000 ALTER TABLE `wp_newsletter_user_logs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_newsletter_user_meta`
--

DROP TABLE IF EXISTS `wp_newsletter_user_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_newsletter_user_meta` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(11) NOT NULL DEFAULT 0,
  `meta_key` varchar(100) NOT NULL DEFAULT '',
  `value` longtext DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `user_id` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_newsletter_user_meta`
--

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

--
-- Table structure for table `wp_options`
--

DROP TABLE IF EXISTS `wp_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_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=24203 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_options`
--

LOCK TABLES `wp_options` WRITE;
/*!40000 ALTER TABLE `wp_options` DISABLE KEYS */;
INSERT INTO `wp_options` VALUES (1,'cron','a:25:{i:1746518790;a:1:{s:26:\"action_scheduler_run_queue\";a:1:{s:32:\"0d04ed39571b55704c122d726248bbac\";a:3:{s:8:\"schedule\";s:12:\"every_minute\";s:4:\"args\";a:1:{i:0;s:7:\"WP Cron\";}s:8:\"interval\";i:60;}}}i:1746518955;a:1:{s:10:\"newsletter\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"newsletter\";s:4:\"args\";a:0:{}s:8:\"interval\";i:300;}}}i:1746519380;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:1746519537;a:1:{s:20:\"jetpack_clean_nonces\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1746519548;a:1:{s:29:\"wc_admin_unsnooze_admin_notes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1746523133;a:1:{s:28:\"woocommerce_cleanup_sessions\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1746544580;a:1:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1746544589;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:1746544593;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:1746544725;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:1746544733;a:1:{s:14:\"wc_admin_daily\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1746544737;a:1:{s:20:\"jetpack_v2_heartbeat\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1746544743;a:2:{s:33:\"woocommerce_cleanup_personal_data\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:30:\"woocommerce_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:1746544798;a:1:{s:34:\"yith_wcwl_delete_expired_wishlists\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1746548179;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:1746549979;a:1:{s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1746551779;a:1:{s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1746555533;a:2:{s:24:\"woocommerce_cleanup_logs\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:31:\"woocommerce_cleanup_rate_limits\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1746576000;a:1:{s:27:\"woocommerce_scheduled_sales\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1746593189;a:2:{s:13:\"wpseo-reindex\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:31:\"wpseo_permalink_structure_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1746803822;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:1746807538;a:1:{s:16:\"newsletter_clean\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1746890180;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:1747008000;a:2:{s:28:\"wpforms_email_summaries_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}s:33:\"wpforms_weekly_entries_count_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}s:7:\"version\";i:2;}','auto'),(2,'siteurl','https://fe2tech.com','on'),(3,'home','https://fe2tech.com','on'),(4,'blogname','fe2tech','on'),(5,'blogdescription','','on'),(6,'users_can_register','0','on'),(7,'admin_email','luutin.nmpco@gmail.com','on'),(8,'start_of_week','1','on'),(9,'use_balanceTags','0','on'),(10,'use_smilies','1','on'),(11,'require_name_email','1','on'),(12,'comments_notify','1','on'),(13,'posts_per_rss','10','on'),(14,'rss_use_excerpt','0','on'),(15,'mailserver_url','mail.example.com','on'),(16,'mailserver_login','login@example.com','on'),(17,'mailserver_pass','password','on'),(18,'mailserver_port','110','on'),(19,'default_category','1','on'),(20,'default_comment_status','open','on'),(21,'default_ping_status','open','on'),(22,'default_pingback_flag','1','on'),(23,'posts_per_page','10','on'),(24,'date_format','F j, Y','on'),(25,'time_format','g:i a','on'),(26,'links_updated_date_format','F j, Y g:i a','on'),(27,'comment_moderation','0','on'),(28,'moderation_notify','1','on'),(29,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','on'),(31,'hack_file','0','on'),(32,'blog_charset','UTF-8','on'),(33,'moderation_keys','','off'),(34,'active_plugins','a:17:{i:0;s:21:\"polylang/polylang.php\";i:1;s:35:\"redux-framework/redux-framework.php\";i:2;s:19:\"akismet/akismet.php\";i:3;s:47:\"better-search-replace/better-search-replace.php\";i:4;s:35:\"case-theme-core/case-theme-core.php\";i:5;s:39:\"case-theme-import/case-theme-import.php\";i:6;s:36:\"contact-form-7/wp-contact-form-7.php\";i:7;s:23:\"elementor/elementor.php\";i:8;s:9:\"hello.php\";i:9;s:21:\"newsletter/plugin.php\";i:10;s:37:\"post-types-order/post-types-order.php\";i:11;s:23:\"revslider/revslider.php\";i:12;s:24:\"wordpress-seo/wp-seo.php\";i:13;s:29:\"wp-mail-smtp/wp_mail_smtp.php\";i:15;s:24:\"wpforms-lite/wpforms.php\";i:16;s:36:\"yith-woocommerce-quick-view/init.php\";i:17;s:34:\"yith-woocommerce-wishlist/init.php\";}','on'),(35,'category_base','','on'),(36,'ping_sites','https://rpc.pingomatic.com/','on'),(37,'comment_max_links','2','on'),(38,'gmt_offset','0','on'),(39,'default_email_category','1','on'),(40,'recently_edited','','off'),(41,'template','contio','on'),(42,'stylesheet','contio','on'),(43,'comment_registration','0','on'),(44,'html_type','text/html','on'),(45,'use_trackback','0','on'),(46,'default_role','subscriber','on'),(47,'db_version','57155','on'),(48,'uploads_use_yearmonth_folders','1','on'),(49,'upload_path','','on'),(50,'blog_public','1','on'),(51,'default_link_category','2','on'),(52,'show_on_front','page','on'),(53,'tag_base','','on'),(54,'show_avatars','1','on'),(55,'avatar_rating','G','on'),(56,'upload_url_path','','on'),(57,'thumbnail_size_w','150','on'),(58,'thumbnail_size_h','150','on'),(59,'thumbnail_crop','1','on'),(60,'medium_size_w','300','on'),(61,'medium_size_h','300','on'),(62,'avatar_default','mystery','on'),(63,'large_size_w','1024','on'),(64,'large_size_h','1024','on'),(65,'image_default_link_type','none','on'),(66,'image_default_size','','on'),(67,'image_default_align','','on'),(68,'close_comments_for_old_posts','0','on'),(69,'close_comments_days_old','14','on'),(70,'thread_comments','1','on'),(71,'thread_comments_depth','5','on'),(72,'page_comments','0','on'),(73,'comments_per_page','50','on'),(74,'default_comments_page','newest','on'),(75,'comment_order','asc','on'),(76,'sticky_posts','a:0:{}','on'),(77,'widget_categories','a:3:{i:1;a:6:{s:5:\"title\";s:10:\"Categories\";s:5:\"count\";i:1;s:12:\"hierarchical\";i:1;s:8:\"dropdown\";i:0;s:8:\"el_class\";s:0:\"\";s:10:\"hide_title\";b:0;}i:2;a:6:{s:5:\"title\";s:10:\"Categories\";s:5:\"count\";i:1;s:12:\"hierarchical\";i:1;s:8:\"dropdown\";i:0;s:8:\"el_class\";s:0:\"\";s:10:\"hide_title\";b:0;}s:12:\"_multiwidget\";i:1;}','on'),(78,'widget_text','a:2:{i:1;a:6:{s:5:\"title\";b:0;s:4:\"text\";s:126:\"At vero eos et accusamus et iusto odio digni goikussimos ducimus qui to bonfo blanditiis praese. Ntium voluum deleniti atque. \";s:6:\"filter\";b:1;s:6:\"visual\";b:1;s:8:\"el_class\";s:0:\"\";s:10:\"hide_title\";b:0;}s:12:\"_multiwidget\";i:1;}','on'),(79,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','auto'),(80,'uninstall_plugins','a:3:{s:23:\"elementor/elementor.php\";a:2:{i:0;s:21:\"Elementor\\Maintenance\";i:1;s:9:\"uninstall\";}s:24:\"wordpress-seo/wp-seo.php\";s:14:\"__return_false\";s:27:\"wp-optimize/wp-optimize.php\";a:2:{i:0;s:13:\"WPO_Uninstall\";i:1;s:7:\"actions\";}}','off'),(81,'timezone_string','','on'),(82,'page_for_posts','0','on'),(83,'page_on_front','9','on'),(84,'default_post_format','0','on'),(85,'link_manager_enabled','0','on'),(86,'finished_splitting_shared_terms','1','on'),(87,'site_icon','0','on'),(88,'medium_large_size_w','768','on'),(89,'medium_large_size_h','0','on'),(90,'wp_page_for_privacy_policy','3','on'),(91,'show_comments_cookies_opt_in','1','on'),(92,'admin_email_lifespan','1744816579','on'),(93,'disallowed_keys','','off'),(94,'comment_previously_approved','1','on'),(95,'auto_plugin_theme_update_emails','a:0:{}','off'),(96,'auto_update_core_dev','enabled','on'),(97,'auto_update_core_minor','enabled','on'),(98,'auto_update_core_major','enabled','on'),(99,'wp_force_deactivated_plugins','a:0:{}','on'),(100,'wp_attachment_pages_enabled','0','on'),(101,'initial_db_version','57155','on'),(102,'wp_user_roles','a:9:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:115:{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:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;s:20:\"wpseo_manage_options\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:36:{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:15:\"wpseo_bulk_edit\";b:1;s:28:\"wpseo_edit_advanced_metadata\";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:8:\"customer\";a:2:{s:4:\"name\";s:8:\"Customer\";s:12:\"capabilities\";a:1:{s:4:\"read\";b:1;}}s:12:\"shop_manager\";a:2:{s:4:\"name\";s:12:\"Shop manager\";s:12:\"capabilities\";a:92:{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:4:\"read\";b:1;s:18:\"read_private_pages\";b:1;s:18:\"read_private_posts\";b:1;s:10:\"edit_posts\";b:1;s:10:\"edit_pages\";b:1;s:20:\"edit_published_posts\";b:1;s:20:\"edit_published_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"edit_private_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:17:\"edit_others_pages\";b:1;s:13:\"publish_posts\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_posts\";b:1;s:12:\"delete_pages\";b:1;s:20:\"delete_private_pages\";b:1;s:20:\"delete_private_posts\";b:1;s:22:\"delete_published_pages\";b:1;s:22:\"delete_published_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:19:\"delete_others_pages\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:17:\"moderate_comments\";b:1;s:12:\"upload_files\";b:1;s:6:\"export\";b:1;s:6:\"import\";b:1;s:10:\"list_users\";b:1;s:18:\"edit_theme_options\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;}}s:13:\"wpseo_manager\";a:2:{s:4:\"name\";s:11:\"SEO Manager\";s:12:\"capabilities\";a:38:{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:15:\"wpseo_bulk_edit\";b:1;s:28:\"wpseo_edit_advanced_metadata\";b:1;s:20:\"wpseo_manage_options\";b:1;s:23:\"view_site_health_checks\";b:1;}}s:12:\"wpseo_editor\";a:2:{s:4:\"name\";s:10:\"SEO Editor\";s:12:\"capabilities\";a:36:{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:15:\"wpseo_bulk_edit\";b:1;s:28:\"wpseo_edit_advanced_metadata\";b:1;}}}','auto'),(103,'fresh_site','0','auto'),(104,'user_count','1','off'),(105,'widget_block','a:6:{i:2;a:1:{s:7:\"content\";s:19:\"<!-- wp:search /-->\";}i:3;a:1:{s:7:\"content\";s:154:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Posts</h2><!-- /wp:heading --><!-- wp:latest-posts /--></div><!-- /wp:group -->\";}i:4;a:1:{s:7:\"content\";s:227:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Comments</h2><!-- /wp:heading --><!-- wp:latest-comments {\"displayAvatar\":false,\"displayDate\":false,\"displayExcerpt\":false} /--></div><!-- /wp:group -->\";}i:5;a:1:{s:7:\"content\";s:146:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Archives</h2><!-- /wp:heading --><!-- wp:archives /--></div><!-- /wp:group -->\";}i:6;a:1:{s:7:\"content\";s:150:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Categories</h2><!-- /wp:heading --><!-- wp:categories /--></div><!-- /wp:group -->\";}s:12:\"_multiwidget\";i:1;}','auto'),(106,'sidebars_widgets','a:5:{s:19:\"wp_inactive_widgets\";a:4:{i:0;s:17:\"ct_recent_posts-2\";i:1;s:19:\"newsletter_widget-2\";i:2;s:13:\"media_image-1\";i:3;s:6:\"text-1\";}s:12:\"sidebar-blog\";a:2:{i:0;s:8:\"search-1\";i:1;s:7:\"block-3\";}s:12:\"sidebar-page\";a:5:{i:0;s:8:\"search-2\";i:1;s:12:\"categories-2\";i:3;s:10:\"archives-2\";i:4;s:15:\"media_gallery-2\";i:5;s:11:\"tag_cloud-2\";}s:12:\"sidebar-shop\";a:0:{}s:13:\"array_version\";i:3;}','on'),(107,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(108,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(109,'widget_archives','a:3:{i:1;a:5:{s:5:\"title\";s:8:\"Archives\";s:5:\"count\";i:1;s:8:\"dropdown\";i:0;s:8:\"el_class\";s:0:\"\";s:10:\"hide_title\";b:0;}i:2;a:5:{s:5:\"title\";s:8:\"Archives\";s:5:\"count\";i:1;s:8:\"dropdown\";i:0;s:8:\"el_class\";s:0:\"\";s:10:\"hide_title\";b:0;}s:12:\"_multiwidget\";i:1;}','auto'),(110,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(111,'widget_media_image','a:2:{i:1;a:17:{s:4:\"size\";s:4:\"full\";s:5:\"width\";i:203;s:6:\"height\";i:69;s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:35:\"https://demo.casethemes.net/contio/\";s:13:\"image_classes\";s:0:\"\";s:12:\"link_classes\";s:0:\"\";s:8:\"link_rel\";s:0:\"\";s:17:\"link_target_blank\";b:0;s:11:\"image_title\";s:0:\"\";s:13:\"attachment_id\";i:154;s:3:\"url\";s:85:\"https://demo.casethemes.net/contio/wp-content/uploads/2019/11/logo-hidden-sidebar.png\";s:5:\"title\";b:0;s:8:\"el_class\";s:19:\"logo-hidden-sidebar\";s:10:\"hide_title\";b:0;}s:12:\"_multiwidget\";i:1;}','auto'),(112,'widget_media_gallery','a:3:{i:1;a:8:{s:5:\"title\";s:7:\"Gallery\";s:3:\"ids\";a:6:{i:0;i:179;i:1;i:180;i:2;i:181;i:3;i:182;i:4;i:183;i:5;i:184;}s:7:\"columns\";i:3;s:4:\"size\";s:6:\"medium\";s:9:\"link_type\";s:4:\"file\";s:14:\"orderby_random\";b:1;s:8:\"el_class\";s:0:\"\";s:10:\"hide_title\";b:0;}i:2;a:8:{s:5:\"title\";s:7:\"Gallery\";s:3:\"ids\";a:6:{i:0;i:184;i:1;i:183;i:2;i:182;i:3;i:181;i:4;i:180;i:5;i:179;}s:7:\"columns\";i:3;s:4:\"size\";s:9:\"thumbnail\";s:9:\"link_type\";s:4:\"file\";s:14:\"orderby_random\";b:0;s:8:\"el_class\";s:0:\"\";s:10:\"hide_title\";b:0;}s:12:\"_multiwidget\";i:1;}','auto'),(113,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(114,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(115,'widget_search','a:3:{i:1;a:1:{s:5:\"title\";s:6:\"Search\";}i:2;a:3:{s:5:\"title\";s:6:\"Search\";s:8:\"el_class\";s:0:\"\";s:10:\"hide_title\";b:0;}s:12:\"_multiwidget\";i:1;}','auto'),(116,'widget_recent-posts','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(117,'widget_recent-comments','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(118,'widget_tag_cloud','a:3:{i:1;a:6:{s:5:\"title\";s:4:\"Tags\";s:5:\"count\";i:0;s:8:\"taxonomy\";s:8:\"post_tag\";s:8:\"el_class\";s:0:\"\";s:10:\"hide_title\";b:0;s:15:\"use_theme_style\";b:0;}i:2;a:6:{s:5:\"title\";s:4:\"Tags\";s:5:\"count\";i:0;s:8:\"taxonomy\";s:8:\"post_tag\";s:8:\"el_class\";s:0:\"\";s:10:\"hide_title\";b:0;s:15:\"use_theme_style\";b:0;}s:12:\"_multiwidget\";i:1;}','auto'),(119,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(120,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(121,'_transient_wp_core_block_css_files','a:2:{s:7:\"version\";s:5:\"6.6.2\";s:5:\"files\";a:496:{i:0;s:23:\"archives/editor-rtl.css\";i:1;s:27:\"archives/editor-rtl.min.css\";i:2;s:19:\"archives/editor.css\";i:3;s:23:\"archives/editor.min.css\";i:4;s:22:\"archives/style-rtl.css\";i:5;s:26:\"archives/style-rtl.min.css\";i:6;s:18:\"archives/style.css\";i:7;s:22:\"archives/style.min.css\";i:8;s:20:\"audio/editor-rtl.css\";i:9;s:24:\"audio/editor-rtl.min.css\";i:10;s:16:\"audio/editor.css\";i:11;s:20:\"audio/editor.min.css\";i:12;s:19:\"audio/style-rtl.css\";i:13;s:23:\"audio/style-rtl.min.css\";i:14;s:15:\"audio/style.css\";i:15;s:19:\"audio/style.min.css\";i:16;s:19:\"audio/theme-rtl.css\";i:17;s:23:\"audio/theme-rtl.min.css\";i:18;s:15:\"audio/theme.css\";i:19;s:19:\"audio/theme.min.css\";i:20;s:21:\"avatar/editor-rtl.css\";i:21;s:25:\"avatar/editor-rtl.min.css\";i:22;s:17:\"avatar/editor.css\";i:23;s:21:\"avatar/editor.min.css\";i:24;s:20:\"avatar/style-rtl.css\";i:25;s:24:\"avatar/style-rtl.min.css\";i:26;s:16:\"avatar/style.css\";i:27;s:20:\"avatar/style.min.css\";i:28;s:21:\"button/editor-rtl.css\";i:29;s:25:\"button/editor-rtl.min.css\";i:30;s:17:\"button/editor.css\";i:31;s:21:\"button/editor.min.css\";i:32;s:20:\"button/style-rtl.css\";i:33;s:24:\"button/style-rtl.min.css\";i:34;s:16:\"button/style.css\";i:35;s:20:\"button/style.min.css\";i:36;s:22:\"buttons/editor-rtl.css\";i:37;s:26:\"buttons/editor-rtl.min.css\";i:38;s:18:\"buttons/editor.css\";i:39;s:22:\"buttons/editor.min.css\";i:40;s:21:\"buttons/style-rtl.css\";i:41;s:25:\"buttons/style-rtl.min.css\";i:42;s:17:\"buttons/style.css\";i:43;s:21:\"buttons/style.min.css\";i:44;s:22:\"calendar/style-rtl.css\";i:45;s:26:\"calendar/style-rtl.min.css\";i:46;s:18:\"calendar/style.css\";i:47;s:22:\"calendar/style.min.css\";i:48;s:25:\"categories/editor-rtl.css\";i:49;s:29:\"categories/editor-rtl.min.css\";i:50;s:21:\"categories/editor.css\";i:51;s:25:\"categories/editor.min.css\";i:52;s:24:\"categories/style-rtl.css\";i:53;s:28:\"categories/style-rtl.min.css\";i:54;s:20:\"categories/style.css\";i:55;s:24:\"categories/style.min.css\";i:56;s:19:\"code/editor-rtl.css\";i:57;s:23:\"code/editor-rtl.min.css\";i:58;s:15:\"code/editor.css\";i:59;s:19:\"code/editor.min.css\";i:60;s:18:\"code/style-rtl.css\";i:61;s:22:\"code/style-rtl.min.css\";i:62;s:14:\"code/style.css\";i:63;s:18:\"code/style.min.css\";i:64;s:18:\"code/theme-rtl.css\";i:65;s:22:\"code/theme-rtl.min.css\";i:66;s:14:\"code/theme.css\";i:67;s:18:\"code/theme.min.css\";i:68;s:22:\"columns/editor-rtl.css\";i:69;s:26:\"columns/editor-rtl.min.css\";i:70;s:18:\"columns/editor.css\";i:71;s:22:\"columns/editor.min.css\";i:72;s:21:\"columns/style-rtl.css\";i:73;s:25:\"columns/style-rtl.min.css\";i:74;s:17:\"columns/style.css\";i:75;s:21:\"columns/style.min.css\";i:76;s:29:\"comment-content/style-rtl.css\";i:77;s:33:\"comment-content/style-rtl.min.css\";i:78;s:25:\"comment-content/style.css\";i:79;s:29:\"comment-content/style.min.css\";i:80;s:30:\"comment-template/style-rtl.css\";i:81;s:34:\"comment-template/style-rtl.min.css\";i:82;s:26:\"comment-template/style.css\";i:83;s:30:\"comment-template/style.min.css\";i:84;s:42:\"comments-pagination-numbers/editor-rtl.css\";i:85;s:46:\"comments-pagination-numbers/editor-rtl.min.css\";i:86;s:38:\"comments-pagination-numbers/editor.css\";i:87;s:42:\"comments-pagination-numbers/editor.min.css\";i:88;s:34:\"comments-pagination/editor-rtl.css\";i:89;s:38:\"comments-pagination/editor-rtl.min.css\";i:90;s:30:\"comments-pagination/editor.css\";i:91;s:34:\"comments-pagination/editor.min.css\";i:92;s:33:\"comments-pagination/style-rtl.css\";i:93;s:37:\"comments-pagination/style-rtl.min.css\";i:94;s:29:\"comments-pagination/style.css\";i:95;s:33:\"comments-pagination/style.min.css\";i:96;s:29:\"comments-title/editor-rtl.css\";i:97;s:33:\"comments-title/editor-rtl.min.css\";i:98;s:25:\"comments-title/editor.css\";i:99;s:29:\"comments-title/editor.min.css\";i:100;s:23:\"comments/editor-rtl.css\";i:101;s:27:\"comments/editor-rtl.min.css\";i:102;s:19:\"comments/editor.css\";i:103;s:23:\"comments/editor.min.css\";i:104;s:22:\"comments/style-rtl.css\";i:105;s:26:\"comments/style-rtl.min.css\";i:106;s:18:\"comments/style.css\";i:107;s:22:\"comments/style.min.css\";i:108;s:20:\"cover/editor-rtl.css\";i:109;s:24:\"cover/editor-rtl.min.css\";i:110;s:16:\"cover/editor.css\";i:111;s:20:\"cover/editor.min.css\";i:112;s:19:\"cover/style-rtl.css\";i:113;s:23:\"cover/style-rtl.min.css\";i:114;s:15:\"cover/style.css\";i:115;s:19:\"cover/style.min.css\";i:116;s:22:\"details/editor-rtl.css\";i:117;s:26:\"details/editor-rtl.min.css\";i:118;s:18:\"details/editor.css\";i:119;s:22:\"details/editor.min.css\";i:120;s:21:\"details/style-rtl.css\";i:121;s:25:\"details/style-rtl.min.css\";i:122;s:17:\"details/style.css\";i:123;s:21:\"details/style.min.css\";i:124;s:20:\"embed/editor-rtl.css\";i:125;s:24:\"embed/editor-rtl.min.css\";i:126;s:16:\"embed/editor.css\";i:127;s:20:\"embed/editor.min.css\";i:128;s:19:\"embed/style-rtl.css\";i:129;s:23:\"embed/style-rtl.min.css\";i:130;s:15:\"embed/style.css\";i:131;s:19:\"embed/style.min.css\";i:132;s:19:\"embed/theme-rtl.css\";i:133;s:23:\"embed/theme-rtl.min.css\";i:134;s:15:\"embed/theme.css\";i:135;s:19:\"embed/theme.min.css\";i:136;s:19:\"file/editor-rtl.css\";i:137;s:23:\"file/editor-rtl.min.css\";i:138;s:15:\"file/editor.css\";i:139;s:19:\"file/editor.min.css\";i:140;s:18:\"file/style-rtl.css\";i:141;s:22:\"file/style-rtl.min.css\";i:142;s:14:\"file/style.css\";i:143;s:18:\"file/style.min.css\";i:144;s:23:\"footnotes/style-rtl.css\";i:145;s:27:\"footnotes/style-rtl.min.css\";i:146;s:19:\"footnotes/style.css\";i:147;s:23:\"footnotes/style.min.css\";i:148;s:23:\"freeform/editor-rtl.css\";i:149;s:27:\"freeform/editor-rtl.min.css\";i:150;s:19:\"freeform/editor.css\";i:151;s:23:\"freeform/editor.min.css\";i:152;s:22:\"gallery/editor-rtl.css\";i:153;s:26:\"gallery/editor-rtl.min.css\";i:154;s:18:\"gallery/editor.css\";i:155;s:22:\"gallery/editor.min.css\";i:156;s:21:\"gallery/style-rtl.css\";i:157;s:25:\"gallery/style-rtl.min.css\";i:158;s:17:\"gallery/style.css\";i:159;s:21:\"gallery/style.min.css\";i:160;s:21:\"gallery/theme-rtl.css\";i:161;s:25:\"gallery/theme-rtl.min.css\";i:162;s:17:\"gallery/theme.css\";i:163;s:21:\"gallery/theme.min.css\";i:164;s:20:\"group/editor-rtl.css\";i:165;s:24:\"group/editor-rtl.min.css\";i:166;s:16:\"group/editor.css\";i:167;s:20:\"group/editor.min.css\";i:168;s:19:\"group/style-rtl.css\";i:169;s:23:\"group/style-rtl.min.css\";i:170;s:15:\"group/style.css\";i:171;s:19:\"group/style.min.css\";i:172;s:19:\"group/theme-rtl.css\";i:173;s:23:\"group/theme-rtl.min.css\";i:174;s:15:\"group/theme.css\";i:175;s:19:\"group/theme.min.css\";i:176;s:21:\"heading/style-rtl.css\";i:177;s:25:\"heading/style-rtl.min.css\";i:178;s:17:\"heading/style.css\";i:179;s:21:\"heading/style.min.css\";i:180;s:19:\"html/editor-rtl.css\";i:181;s:23:\"html/editor-rtl.min.css\";i:182;s:15:\"html/editor.css\";i:183;s:19:\"html/editor.min.css\";i:184;s:20:\"image/editor-rtl.css\";i:185;s:24:\"image/editor-rtl.min.css\";i:186;s:16:\"image/editor.css\";i:187;s:20:\"image/editor.min.css\";i:188;s:19:\"image/style-rtl.css\";i:189;s:23:\"image/style-rtl.min.css\";i:190;s:15:\"image/style.css\";i:191;s:19:\"image/style.min.css\";i:192;s:19:\"image/theme-rtl.css\";i:193;s:23:\"image/theme-rtl.min.css\";i:194;s:15:\"image/theme.css\";i:195;s:19:\"image/theme.min.css\";i:196;s:29:\"latest-comments/style-rtl.css\";i:197;s:33:\"latest-comments/style-rtl.min.css\";i:198;s:25:\"latest-comments/style.css\";i:199;s:29:\"latest-comments/style.min.css\";i:200;s:27:\"latest-posts/editor-rtl.css\";i:201;s:31:\"latest-posts/editor-rtl.min.css\";i:202;s:23:\"latest-posts/editor.css\";i:203;s:27:\"latest-posts/editor.min.css\";i:204;s:26:\"latest-posts/style-rtl.css\";i:205;s:30:\"latest-posts/style-rtl.min.css\";i:206;s:22:\"latest-posts/style.css\";i:207;s:26:\"latest-posts/style.min.css\";i:208;s:18:\"list/style-rtl.css\";i:209;s:22:\"list/style-rtl.min.css\";i:210;s:14:\"list/style.css\";i:211;s:18:\"list/style.min.css\";i:212;s:25:\"media-text/editor-rtl.css\";i:213;s:29:\"media-text/editor-rtl.min.css\";i:214;s:21:\"media-text/editor.css\";i:215;s:25:\"media-text/editor.min.css\";i:216;s:24:\"media-text/style-rtl.css\";i:217;s:28:\"media-text/style-rtl.min.css\";i:218;s:20:\"media-text/style.css\";i:219;s:24:\"media-text/style.min.css\";i:220;s:19:\"more/editor-rtl.css\";i:221;s:23:\"more/editor-rtl.min.css\";i:222;s:15:\"more/editor.css\";i:223;s:19:\"more/editor.min.css\";i:224;s:30:\"navigation-link/editor-rtl.css\";i:225;s:34:\"navigation-link/editor-rtl.min.css\";i:226;s:26:\"navigation-link/editor.css\";i:227;s:30:\"navigation-link/editor.min.css\";i:228;s:29:\"navigation-link/style-rtl.css\";i:229;s:33:\"navigation-link/style-rtl.min.css\";i:230;s:25:\"navigation-link/style.css\";i:231;s:29:\"navigation-link/style.min.css\";i:232;s:33:\"navigation-submenu/editor-rtl.css\";i:233;s:37:\"navigation-submenu/editor-rtl.min.css\";i:234;s:29:\"navigation-submenu/editor.css\";i:235;s:33:\"navigation-submenu/editor.min.css\";i:236;s:25:\"navigation/editor-rtl.css\";i:237;s:29:\"navigation/editor-rtl.min.css\";i:238;s:21:\"navigation/editor.css\";i:239;s:25:\"navigation/editor.min.css\";i:240;s:24:\"navigation/style-rtl.css\";i:241;s:28:\"navigation/style-rtl.min.css\";i:242;s:20:\"navigation/style.css\";i:243;s:24:\"navigation/style.min.css\";i:244;s:23:\"nextpage/editor-rtl.css\";i:245;s:27:\"nextpage/editor-rtl.min.css\";i:246;s:19:\"nextpage/editor.css\";i:247;s:23:\"nextpage/editor.min.css\";i:248;s:24:\"page-list/editor-rtl.css\";i:249;s:28:\"page-list/editor-rtl.min.css\";i:250;s:20:\"page-list/editor.css\";i:251;s:24:\"page-list/editor.min.css\";i:252;s:23:\"page-list/style-rtl.css\";i:253;s:27:\"page-list/style-rtl.min.css\";i:254;s:19:\"page-list/style.css\";i:255;s:23:\"page-list/style.min.css\";i:256;s:24:\"paragraph/editor-rtl.css\";i:257;s:28:\"paragraph/editor-rtl.min.css\";i:258;s:20:\"paragraph/editor.css\";i:259;s:24:\"paragraph/editor.min.css\";i:260;s:23:\"paragraph/style-rtl.css\";i:261;s:27:\"paragraph/style-rtl.min.css\";i:262;s:19:\"paragraph/style.css\";i:263;s:23:\"paragraph/style.min.css\";i:264;s:25:\"post-author/style-rtl.css\";i:265;s:29:\"post-author/style-rtl.min.css\";i:266;s:21:\"post-author/style.css\";i:267;s:25:\"post-author/style.min.css\";i:268;s:33:\"post-comments-form/editor-rtl.css\";i:269;s:37:\"post-comments-form/editor-rtl.min.css\";i:270;s:29:\"post-comments-form/editor.css\";i:271;s:33:\"post-comments-form/editor.min.css\";i:272;s:32:\"post-comments-form/style-rtl.css\";i:273;s:36:\"post-comments-form/style-rtl.min.css\";i:274;s:28:\"post-comments-form/style.css\";i:275;s:32:\"post-comments-form/style.min.css\";i:276;s:27:\"post-content/editor-rtl.css\";i:277;s:31:\"post-content/editor-rtl.min.css\";i:278;s:23:\"post-content/editor.css\";i:279;s:27:\"post-content/editor.min.css\";i:280;s:23:\"post-date/style-rtl.css\";i:281;s:27:\"post-date/style-rtl.min.css\";i:282;s:19:\"post-date/style.css\";i:283;s:23:\"post-date/style.min.css\";i:284;s:27:\"post-excerpt/editor-rtl.css\";i:285;s:31:\"post-excerpt/editor-rtl.min.css\";i:286;s:23:\"post-excerpt/editor.css\";i:287;s:27:\"post-excerpt/editor.min.css\";i:288;s:26:\"post-excerpt/style-rtl.css\";i:289;s:30:\"post-excerpt/style-rtl.min.css\";i:290;s:22:\"post-excerpt/style.css\";i:291;s:26:\"post-excerpt/style.min.css\";i:292;s:34:\"post-featured-image/editor-rtl.css\";i:293;s:38:\"post-featured-image/editor-rtl.min.css\";i:294;s:30:\"post-featured-image/editor.css\";i:295;s:34:\"post-featured-image/editor.min.css\";i:296;s:33:\"post-featured-image/style-rtl.css\";i:297;s:37:\"post-featured-image/style-rtl.min.css\";i:298;s:29:\"post-featured-image/style.css\";i:299;s:33:\"post-featured-image/style.min.css\";i:300;s:34:\"post-navigation-link/style-rtl.css\";i:301;s:38:\"post-navigation-link/style-rtl.min.css\";i:302;s:30:\"post-navigation-link/style.css\";i:303;s:34:\"post-navigation-link/style.min.css\";i:304;s:28:\"post-template/editor-rtl.css\";i:305;s:32:\"post-template/editor-rtl.min.css\";i:306;s:24:\"post-template/editor.css\";i:307;s:28:\"post-template/editor.min.css\";i:308;s:27:\"post-template/style-rtl.css\";i:309;s:31:\"post-template/style-rtl.min.css\";i:310;s:23:\"post-template/style.css\";i:311;s:27:\"post-template/style.min.css\";i:312;s:24:\"post-terms/style-rtl.css\";i:313;s:28:\"post-terms/style-rtl.min.css\";i:314;s:20:\"post-terms/style.css\";i:315;s:24:\"post-terms/style.min.css\";i:316;s:24:\"post-title/style-rtl.css\";i:317;s:28:\"post-title/style-rtl.min.css\";i:318;s:20:\"post-title/style.css\";i:319;s:24:\"post-title/style.min.css\";i:320;s:26:\"preformatted/style-rtl.css\";i:321;s:30:\"preformatted/style-rtl.min.css\";i:322;s:22:\"preformatted/style.css\";i:323;s:26:\"preformatted/style.min.css\";i:324;s:24:\"pullquote/editor-rtl.css\";i:325;s:28:\"pullquote/editor-rtl.min.css\";i:326;s:20:\"pullquote/editor.css\";i:327;s:24:\"pullquote/editor.min.css\";i:328;s:23:\"pullquote/style-rtl.css\";i:329;s:27:\"pullquote/style-rtl.min.css\";i:330;s:19:\"pullquote/style.css\";i:331;s:23:\"pullquote/style.min.css\";i:332;s:23:\"pullquote/theme-rtl.css\";i:333;s:27:\"pullquote/theme-rtl.min.css\";i:334;s:19:\"pullquote/theme.css\";i:335;s:23:\"pullquote/theme.min.css\";i:336;s:39:\"query-pagination-numbers/editor-rtl.css\";i:337;s:43:\"query-pagination-numbers/editor-rtl.min.css\";i:338;s:35:\"query-pagination-numbers/editor.css\";i:339;s:39:\"query-pagination-numbers/editor.min.css\";i:340;s:31:\"query-pagination/editor-rtl.css\";i:341;s:35:\"query-pagination/editor-rtl.min.css\";i:342;s:27:\"query-pagination/editor.css\";i:343;s:31:\"query-pagination/editor.min.css\";i:344;s:30:\"query-pagination/style-rtl.css\";i:345;s:34:\"query-pagination/style-rtl.min.css\";i:346;s:26:\"query-pagination/style.css\";i:347;s:30:\"query-pagination/style.min.css\";i:348;s:25:\"query-title/style-rtl.css\";i:349;s:29:\"query-title/style-rtl.min.css\";i:350;s:21:\"query-title/style.css\";i:351;s:25:\"query-title/style.min.css\";i:352;s:20:\"query/editor-rtl.css\";i:353;s:24:\"query/editor-rtl.min.css\";i:354;s:16:\"query/editor.css\";i:355;s:20:\"query/editor.min.css\";i:356;s:19:\"quote/style-rtl.css\";i:357;s:23:\"quote/style-rtl.min.css\";i:358;s:15:\"quote/style.css\";i:359;s:19:\"quote/style.min.css\";i:360;s:19:\"quote/theme-rtl.css\";i:361;s:23:\"quote/theme-rtl.min.css\";i:362;s:15:\"quote/theme.css\";i:363;s:19:\"quote/theme.min.css\";i:364;s:23:\"read-more/style-rtl.css\";i:365;s:27:\"read-more/style-rtl.min.css\";i:366;s:19:\"read-more/style.css\";i:367;s:23:\"read-more/style.min.css\";i:368;s:18:\"rss/editor-rtl.css\";i:369;s:22:\"rss/editor-rtl.min.css\";i:370;s:14:\"rss/editor.css\";i:371;s:18:\"rss/editor.min.css\";i:372;s:17:\"rss/style-rtl.css\";i:373;s:21:\"rss/style-rtl.min.css\";i:374;s:13:\"rss/style.css\";i:375;s:17:\"rss/style.min.css\";i:376;s:21:\"search/editor-rtl.css\";i:377;s:25:\"search/editor-rtl.min.css\";i:378;s:17:\"search/editor.css\";i:379;s:21:\"search/editor.min.css\";i:380;s:20:\"search/style-rtl.css\";i:381;s:24:\"search/style-rtl.min.css\";i:382;s:16:\"search/style.css\";i:383;s:20:\"search/style.min.css\";i:384;s:20:\"search/theme-rtl.css\";i:385;s:24:\"search/theme-rtl.min.css\";i:386;s:16:\"search/theme.css\";i:387;s:20:\"search/theme.min.css\";i:388;s:24:\"separator/editor-rtl.css\";i:389;s:28:\"separator/editor-rtl.min.css\";i:390;s:20:\"separator/editor.css\";i:391;s:24:\"separator/editor.min.css\";i:392;s:23:\"separator/style-rtl.css\";i:393;s:27:\"separator/style-rtl.min.css\";i:394;s:19:\"separator/style.css\";i:395;s:23:\"separator/style.min.css\";i:396;s:23:\"separator/theme-rtl.css\";i:397;s:27:\"separator/theme-rtl.min.css\";i:398;s:19:\"separator/theme.css\";i:399;s:23:\"separator/theme.min.css\";i:400;s:24:\"shortcode/editor-rtl.css\";i:401;s:28:\"shortcode/editor-rtl.min.css\";i:402;s:20:\"shortcode/editor.css\";i:403;s:24:\"shortcode/editor.min.css\";i:404;s:24:\"site-logo/editor-rtl.css\";i:405;s:28:\"site-logo/editor-rtl.min.css\";i:406;s:20:\"site-logo/editor.css\";i:407;s:24:\"site-logo/editor.min.css\";i:408;s:23:\"site-logo/style-rtl.css\";i:409;s:27:\"site-logo/style-rtl.min.css\";i:410;s:19:\"site-logo/style.css\";i:411;s:23:\"site-logo/style.min.css\";i:412;s:27:\"site-tagline/editor-rtl.css\";i:413;s:31:\"site-tagline/editor-rtl.min.css\";i:414;s:23:\"site-tagline/editor.css\";i:415;s:27:\"site-tagline/editor.min.css\";i:416;s:25:\"site-title/editor-rtl.css\";i:417;s:29:\"site-title/editor-rtl.min.css\";i:418;s:21:\"site-title/editor.css\";i:419;s:25:\"site-title/editor.min.css\";i:420;s:24:\"site-title/style-rtl.css\";i:421;s:28:\"site-title/style-rtl.min.css\";i:422;s:20:\"site-title/style.css\";i:423;s:24:\"site-title/style.min.css\";i:424;s:26:\"social-link/editor-rtl.css\";i:425;s:30:\"social-link/editor-rtl.min.css\";i:426;s:22:\"social-link/editor.css\";i:427;s:26:\"social-link/editor.min.css\";i:428;s:27:\"social-links/editor-rtl.css\";i:429;s:31:\"social-links/editor-rtl.min.css\";i:430;s:23:\"social-links/editor.css\";i:431;s:27:\"social-links/editor.min.css\";i:432;s:26:\"social-links/style-rtl.css\";i:433;s:30:\"social-links/style-rtl.min.css\";i:434;s:22:\"social-links/style.css\";i:435;s:26:\"social-links/style.min.css\";i:436;s:21:\"spacer/editor-rtl.css\";i:437;s:25:\"spacer/editor-rtl.min.css\";i:438;s:17:\"spacer/editor.css\";i:439;s:21:\"spacer/editor.min.css\";i:440;s:20:\"spacer/style-rtl.css\";i:441;s:24:\"spacer/style-rtl.min.css\";i:442;s:16:\"spacer/style.css\";i:443;s:20:\"spacer/style.min.css\";i:444;s:20:\"table/editor-rtl.css\";i:445;s:24:\"table/editor-rtl.min.css\";i:446;s:16:\"table/editor.css\";i:447;s:20:\"table/editor.min.css\";i:448;s:19:\"table/style-rtl.css\";i:449;s:23:\"table/style-rtl.min.css\";i:450;s:15:\"table/style.css\";i:451;s:19:\"table/style.min.css\";i:452;s:19:\"table/theme-rtl.css\";i:453;s:23:\"table/theme-rtl.min.css\";i:454;s:15:\"table/theme.css\";i:455;s:19:\"table/theme.min.css\";i:456;s:23:\"tag-cloud/style-rtl.css\";i:457;s:27:\"tag-cloud/style-rtl.min.css\";i:458;s:19:\"tag-cloud/style.css\";i:459;s:23:\"tag-cloud/style.min.css\";i:460;s:28:\"template-part/editor-rtl.css\";i:461;s:32:\"template-part/editor-rtl.min.css\";i:462;s:24:\"template-part/editor.css\";i:463;s:28:\"template-part/editor.min.css\";i:464;s:27:\"template-part/theme-rtl.css\";i:465;s:31:\"template-part/theme-rtl.min.css\";i:466;s:23:\"template-part/theme.css\";i:467;s:27:\"template-part/theme.min.css\";i:468;s:30:\"term-description/style-rtl.css\";i:469;s:34:\"term-description/style-rtl.min.css\";i:470;s:26:\"term-description/style.css\";i:471;s:30:\"term-description/style.min.css\";i:472;s:27:\"text-columns/editor-rtl.css\";i:473;s:31:\"text-columns/editor-rtl.min.css\";i:474;s:23:\"text-columns/editor.css\";i:475;s:27:\"text-columns/editor.min.css\";i:476;s:26:\"text-columns/style-rtl.css\";i:477;s:30:\"text-columns/style-rtl.min.css\";i:478;s:22:\"text-columns/style.css\";i:479;s:26:\"text-columns/style.min.css\";i:480;s:19:\"verse/style-rtl.css\";i:481;s:23:\"verse/style-rtl.min.css\";i:482;s:15:\"verse/style.css\";i:483;s:19:\"verse/style.min.css\";i:484;s:20:\"video/editor-rtl.css\";i:485;s:24:\"video/editor-rtl.min.css\";i:486;s:16:\"video/editor.css\";i:487;s:20:\"video/editor.min.css\";i:488;s:19:\"video/style-rtl.css\";i:489;s:23:\"video/style-rtl.min.css\";i:490;s:15:\"video/style.css\";i:491;s:19:\"video/style.min.css\";i:492;s:19:\"video/theme-rtl.css\";i:493;s:23:\"video/theme-rtl.min.css\";i:494;s:15:\"video/theme.css\";i:495;s:19:\"video/theme.min.css\";}}','on'),(125,'recovery_keys','a:0:{}','auto'),(126,'theme_mods_twentytwentyfour','a:4:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1729479313;s:4:\"data\";a:7:{s:19:\"wp_inactive_widgets\";a:2:{i:0;s:13:\"media_image-1\";i:1;s:6:\"text-1\";}s:12:\"sidebar-blog\";a:10:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";i:3;s:8:\"search-1\";i:4;s:12:\"categories-1\";i:5;s:10:\"archives-1\";i:6;s:15:\"media_gallery-1\";i:7;s:11:\"tag_cloud-1\";i:8;s:7:\"block-5\";i:9;s:7:\"block-6\";}s:12:\"sidebar-page\";a:5:{i:0;s:8:\"search-2\";i:1;s:12:\"categories-2\";i:3;s:10:\"archives-2\";i:4;s:15:\"media_gallery-2\";i:5;s:11:\"tag_cloud-2\";}s:12:\"sidebar-shop\";a:4:{i:0;s:28:\"woocommerce_product_search-1\";i:1;s:32:\"woocommerce_product_categories-1\";i:2;s:26:\"woocommerce_price_filter-1\";i:3;s:22:\"woocommerce_products-1\";}s:14:\"sidebar-hidden\";a:0:{}s:9:\"sidebar-1\";a:0:{}s:9:\"sidebar-2\";a:0:{}}}s:19:\"wp_classic_sidebars\";a:4:{s:12:\"sidebar-blog\";a:11:{s:4:\"name\";s:12:\"Blog Sidebar\";s:2:\"id\";s:12:\"sidebar-blog\";s:11:\"description\";s:17:\"Add widgets here.\";s:5:\"class\";s:0:\"\";s:13:\"before_widget\";s:67:\"<section id=\"%1$s\" class=\"widget %2$s\"><div class=\"widget-content\">\";s:12:\"after_widget\";s:16:\"</div></section>\";s:12:\"before_title\";s:25:\"<h2 class=\"widget-title\">\";s:11:\"after_title\";s:5:\"</h2>\";s:14:\"before_sidebar\";s:0:\"\";s:13:\"after_sidebar\";s:0:\"\";s:12:\"show_in_rest\";b:0;}s:12:\"sidebar-page\";a:11:{s:4:\"name\";s:12:\"Page Sidebar\";s:2:\"id\";s:12:\"sidebar-page\";s:11:\"description\";s:17:\"Add widgets here.\";s:5:\"class\";s:0:\"\";s:13:\"before_widget\";s:67:\"<section id=\"%1$s\" class=\"widget %2$s\"><div class=\"widget-content\">\";s:12:\"after_widget\";s:16:\"</div></section>\";s:12:\"before_title\";s:25:\"<h2 class=\"widget-title\">\";s:11:\"after_title\";s:5:\"</h2>\";s:14:\"before_sidebar\";s:0:\"\";s:13:\"after_sidebar\";s:0:\"\";s:12:\"show_in_rest\";b:0;}s:12:\"sidebar-shop\";a:11:{s:4:\"name\";s:12:\"Shop Sidebar\";s:2:\"id\";s:12:\"sidebar-shop\";s:11:\"description\";s:17:\"Add widgets here.\";s:5:\"class\";s:0:\"\";s:13:\"before_widget\";s:67:\"<section id=\"%1$s\" class=\"widget %2$s\"><div class=\"widget-content\">\";s:12:\"after_widget\";s:16:\"</div></section>\";s:12:\"before_title\";s:25:\"<h2 class=\"widget-title\">\";s:11:\"after_title\";s:5:\"</h2>\";s:14:\"before_sidebar\";s:0:\"\";s:13:\"after_sidebar\";s:0:\"\";s:12:\"show_in_rest\";b:0;}s:14:\"sidebar-hidden\";a:11:{s:4:\"name\";s:21:\"Header Hidden Sidebar\";s:2:\"id\";s:14:\"sidebar-hidden\";s:11:\"description\";s:17:\"Add widgets here.\";s:5:\"class\";s:0:\"\";s:13:\"before_widget\";s:67:\"<section id=\"%1$s\" class=\"widget %2$s\"><div class=\"widget-content\">\";s:12:\"after_widget\";s:16:\"</div></section>\";s:12:\"before_title\";s:25:\"<h2 class=\"widget-title\">\";s:11:\"after_title\";s:5:\"</h2>\";s:14:\"before_sidebar\";s:0:\"\";s:13:\"after_sidebar\";s:0:\"\";s:12:\"show_in_rest\";b:0;}}s:18:\"nav_menu_locations\";a:0:{}}','off'),(137,'can_compress_scripts','1','on'),(155,'current_theme','Contio','auto'),(156,'theme_mods_contio','a:5:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:39;}s:18:\"custom_css_post_id\";i:-1;s:16:\"ct_theme_options\";a:18:{s:13:\"header_layout\";s:1:\"2\";s:7:\"favicon\";a:5:{s:3:\"url\";s:55:\"https://fe2tech.com/wp-content/uploads/2024/11/logo.jpg\";s:2:\"id\";s:4:\"2547\";s:6:\"height\";s:3:\"208\";s:5:\"width\";s:3:\"208\";s:9:\"thumbnail\";s:58:\"https://fe2tech.com/wp-content/uploads/2024/10/fe2tech.png\";}s:10:\"logo_light\";a:5:{s:3:\"url\";s:55:\"https://fe2tech.com/wp-content/uploads/2024/12/logo.jpg\";s:2:\"id\";s:4:\"2748\";s:6:\"height\";s:3:\"597\";s:5:\"width\";s:3:\"597\";s:9:\"thumbnail\";s:55:\"https://fe2tech.com/wp-content/uploads/2024/12/logo.jpg\";}s:4:\"logo\";a:5:{s:3:\"url\";s:55:\"https://fe2tech.com/wp-content/uploads/2024/12/logo.jpg\";s:2:\"id\";s:4:\"2746\";s:6:\"height\";s:4:\"1374\";s:5:\"width\";s:4:\"1375\";s:9:\"thumbnail\";s:87:\"https://fe2tech.com/wp-content/uploads/2024/12/9bfbbe49-cc7e-4cff-b7f8-f63575f22645.jpg\";}s:11:\"logo_mobile\";a:5:{s:3:\"url\";s:55:\"https://fe2tech.com/wp-content/uploads/2024/12/logo.jpg\";s:2:\"id\";s:4:\"2746\";s:6:\"height\";s:4:\"1374\";s:5:\"width\";s:4:\"1375\";s:9:\"thumbnail\";s:87:\"https://fe2tech.com/wp-content/uploads/2024/12/9bfbbe49-cc7e-4cff-b7f8-f63575f22645.jpg\";}s:9:\"sticky_on\";s:1:\"1\";s:9:\"cart_icon\";s:1:\"0\";s:19:\"hidden_sidebar_icon\";s:1:\"0\";s:10:\"link_color\";a:3:{s:7:\"regular\";s:7:\"#85b23b\";s:5:\"hover\";s:7:\"#f9a244\";s:6:\"active\";s:7:\"#f9a244\";}s:14:\"gradient_color\";a:2:{s:4:\"from\";s:7:\"#85b23b\";s:2:\"to\";s:7:\"#f9a244\";}s:15:\"gradient_color2\";a:2:{s:4:\"from\";s:7:\"#f9a244\";s:2:\"to\";s:7:\"#85b23b\";}s:13:\"primary_color\";s:7:\"#f9a244\";s:15:\"h_address_label\";s:89:\"Factory 1: Khac Niem Industrial Cluster, Khac Niem Ward, Bac Ninh City, Bac Ninh Province\";s:9:\"h_address\";s:90:\"Factory 2: 176/9 Nguyen Thi Tuoi, Tan Phuoc Quarter, Tan Binh Ward, Di An City, Binh Duong\";s:6:\"h_time\";s:17:\": Monday - Sunday\";s:7:\"h_phone\";s:11:\"(Mon - Sun)\";s:13:\"h_phone_label\";s:22:\"Call Us: 0968 86 03 86\";s:20:\"footer_layout_custom\";s:3:\"799\";}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1729479265;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:6:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";i:2;s:13:\"media_image-1\";i:3;s:6:\"text-1\";i:4;s:19:\"getintouch_widget-1\";i:5;s:18:\"cs_social_widget-1\";}s:12:\"sidebar-blog\";a:10:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";i:3;s:8:\"search-1\";i:4;s:12:\"categories-1\";i:5;s:17:\"ct_recent_posts-1\";i:6;s:10:\"archives-1\";i:7;s:15:\"media_gallery-1\";i:8;s:11:\"tag_cloud-1\";i:9;s:19:\"newsletter_widget-1\";}s:12:\"sidebar-page\";a:7:{i:0;s:8:\"search-2\";i:1;s:12:\"categories-2\";i:2;s:17:\"ct_recent_posts-2\";i:3;s:10:\"archives-2\";i:4;s:15:\"media_gallery-2\";i:5;s:11:\"tag_cloud-2\";i:6;s:19:\"newsletter_widget-2\";}s:12:\"sidebar-shop\";a:4:{i:0;s:28:\"woocommerce_product_search-1\";i:1;s:32:\"woocommerce_product_categories-1\";i:2;s:26:\"woocommerce_price_filter-1\";i:3;s:22:\"woocommerce_products-1\";}}}}','on'),(157,'theme_switched','','auto'),(160,'elementor_cpt_support','a:6:{i:0;s:4:\"page\";i:1;s:4:\"post\";i:2;s:9:\"portfolio\";i:3;s:7:\"service\";i:4;s:6:\"footer\";i:5;s:12:\"ct-mega-menu\";}','auto'),(163,'finished_updating_comment_type','1','auto'),(165,'wpcf7','a:6:{s:7:\"version\";s:5:\"5.9.8\";s:13:\"bulk_validate\";a:4:{s:9:\"timestamp\";i:1729264725;s:7:\"version\";s:5:\"5.9.8\";s:11:\"count_valid\";i:1;s:13:\"count_invalid\";i:0;}s:23:\"recaptcha_v2_v3_warning\";b:0;s:15:\"iqfix_recaptcha\";i:0;s:22:\"iqfix_recaptcha_source\";s:10:\"google.com\";s:9:\"recaptcha\";a:1:{s:40:\"6LeeSqUqAAAAANaYSvOpMQjJaMnCoZBc1rBd2kRk\";s:40:\"6LeeSqUqAAAAAH6DM-oLpnc33yjaJBbt8jVulrvT\";}}','auto'),(166,'elementor_active_kit','1644','on'),(167,'elementor_font_display','swap','auto'),(170,'newsletter_logger_secret','6b9887fe','auto'),(171,'newsletter_install_time','1729264725','off'),(173,'newsletter_backup_0.0.0','a:3:{s:23:\"newsletter_install_time\";i:1729264725;s:24:\"newsletter_logger_secret\";s:8:\"6b9887fe\";s:23:\"newsletter_show_welcome\";s:1:\"1\";}','off'),(174,'newsletter_statistics','a:1:{s:3:\"key\";s:32:\"b704331b5b0674c6183248165cf7c16a\";}','off'),(175,'newsletter_version','8.5.7','auto'),(176,'revslider_servers','a:3:{i:0;s:22:\"themepunch-ext-a.tools\";i:1;s:22:\"themepunch-ext-b.tools\";i:2;s:22:\"themepunch-ext-c.tools\";}','auto'),(177,'revslider_server_refresh','1744769110','auto'),(178,'revslider-update-check-short','1746373364','auto'),(179,'revslider-connection','1','auto'),(180,'revslider-update-hash','d4433db1319b9e36b75dc380b70217ca','auto'),(181,'revslider-latest-version','6.7.33','auto'),(182,'revslider-stable-version','4.2.0','auto'),(183,'revslider-notices','a:4:{i:0;O:8:\"stdClass\":9:{s:7:\"version\";s:5:\"0.9.9\";s:4:\"text\";s:952:\"<div style=\"display: block; background: #1b0e41;text-align: center; height:300px;\"><noscript><img src=\"//updates.themepunch-ext-a.tools//banners/rs60/cyberweek.jpg\" usemap=\"#srbannermap\" style=\"min-width:920px;height:300px;display: inline-block;\"></noscript><img usemap=\"#srbannermap\" style=\"min-width:920px;height:300px;display: inline-block;\" src=\"//updates.themepunch-ext-a.tools//banners/rs60/cyberweek.jpg\"></div>\n<map name=\"srbannermap\">\n    <area target=\"_blank\" alt=\"Slider Revolution\" title=\"Slider Revolution\" href=\"https://www.sliderrevolution.com/black-friday-and-cyber-monday-sale/?utm_source=admin&utm_medium=banner&utm_campaign=srusers&utm_content=cyberweeks22\" coords=\"569,135,890,196\" shape=\"rect\">\n    <area target=\"_blank\" alt=\"Essential Grid\" title=\"Essential Grid\" href=\"https://www.essential-grid.com/?utm_source=admin&utm_medium=banner&utm_campaign=esgusers&utm_content=cyberweeks22\" coords=\"570,200,889,260\" shape=\"rect\">\n</map>\";s:4:\"code\";s:9:\"TPSRCW111\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:9:\"is_global\";b:0;s:4:\"type\";s:1:\"3\";s:10:\"show_until\";s:19:\"0000-00-00 00:00:00\";s:10:\"additional\";a:0:{}}i:1;O:8:\"stdClass\":9:{s:7:\"version\";s:5:\"0.9.9\";s:4:\"text\";s:956:\"<div style=\"display: block; background: #1c0950;text-align: center; height:300px;\"><noscript><img src=\"//updates.themepunch-ext-a.tools//banners/blackfriday2024-admin2.jpg\" usemap=\"#srbannermap\" style=\"min-width:920px;height:300px;display: inline-block;\"></noscript><img usemap=\"#srbannermap\" style=\"min-width:920px;height:300px;display: inline-block;\" src=\"//updates.themepunch-ext-a.tools//banners/blackfriday2024-admin2.jpg\"></div><map name=\"srbannermap\"><area target=\"_blank\" alt=\"Slider Revolution\" title=\"Slider Revolution\" href=\"https://www.sliderrevolution.com/black-friday-and-cyber-monday-sale/?utm_source=admin&utm_medium=banner&utm_campaign=srusers&utm_content=cyberweeks24\" coords=\"569,135,890,196\" shape=\"rect\"><area target=\"_blank\" alt=\"Essential Grid\" title=\"Essential Grid\" href=\"https://www.essential-grid.com/?utm_source=admin&utm_medium=banner&utm_campaign=esgusers&utm_content=cyberweeks24\" coords=\"570,200,889,260\" shape=\"rect\"></map>\";s:4:\"code\";s:8:\"TPSRBF24\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:9:\"is_global\";b:0;s:4:\"type\";s:1:\"3\";s:10:\"show_until\";s:19:\"0000-00-00 00:00:00\";s:10:\"additional\";a:0:{}}i:2;O:8:\"stdClass\":10:{s:7:\"version\";s:5:\"9.9.9\";s:4:\"text\";s:527:\"<div style=\"display: block; background: #0d0d0e;text-align: center; height: 504px;\"><a href=\"https://account.sliderrevolution.com/portal/pricing/?utm_source=admin&utm_medium=banner&utm_campaign=srusers&utm_content=getpremium3\" target=\"_blank\" rel=\"noopener\"><video style=\"object-fit: cover; background-size: cover; opacity: 1; width: 900px; height: 504px; display: inline-block;\" muted loop autoplay preload=\"auto\"><source src=\"//updates.themepunch-ext-a.tools//banners/rs60/buypremium3.mp4\" type=\"video/mp4\"></video></a></div>\";s:4:\"code\";s:11:\"TPSNOTR3011\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:10:\"registered\";b:0;s:9:\"is_global\";b:0;s:4:\"type\";s:1:\"3\";s:10:\"show_until\";s:19:\"0000-00-00 00:00:00\";s:10:\"additional\";a:0:{}}i:3;O:8:\"stdClass\":10:{s:7:\"version\";s:5:\"0.9.9\";s:4:\"text\";s:302:\"<div style=\"display: block; background: #0d0d0e;text-align: center; height: 250px;\"><a href=\"https://forms.gle/jrzzrpu34VvrFDsMA\" target=\"_blank\" rel=\"noopener\">\n<img style=\"min-width:920px;height:250px;display: inline-block;\" src=\"//updates.themepunch-ext-a.tools//banners/SR2024survey.jpg\"></a></div>\";s:4:\"code\";s:12:\"TPSURVEY2024\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:10:\"registered\";b:1;s:9:\"is_global\";b:0;s:4:\"type\";s:1:\"3\";s:10:\"show_until\";s:19:\"0000-00-00 00:00:00\";s:10:\"additional\";a:0:{}}}','auto'),(184,'revslider-additions','O:8:\"stdClass\":2:{s:9:\"templates\";O:8:\"stdClass\":3:{s:9:\"tutorials\";a:3:{i:0;O:8:\"stdClass\":2:{s:5:\"title\";s:19:\"Rapid Fire Overview\";s:3:\"url\";s:49:\"https://www.youtube.com/watch?v=LRNTFu-MFgw&t=25s\";}i:1;O:8:\"stdClass\":2:{s:5:\"title\";s:34:\"Responsiveness in Edited Templates\";s:3:\"url\";s:43:\"https://www.youtube.com/watch?v=hP4oV8SWgKY\";}i:2;O:8:\"stdClass\":2:{s:5:\"title\";s:16:\"Animation Basics\";s:3:\"url\";s:43:\"https://www.youtube.com/watch?v=nn3azizwpbs\";}}s:5:\"guide\";O:8:\"stdClass\":3:{s:5:\"title\";s:78:\"Require Expert Technical Advice?<br />Submit a Ticket for Dedicated 1on1 Help.\";s:3:\"url\";s:36:\"https://support.sliderrevolution.com\";s:3:\"img\";s:67:\"//updates.themepunch-ext-a.tools/banners/default_template_guide.jpg\";}s:6:\"bottom\";O:8:\"stdClass\":2:{s:5:\"title\";s:32:\"Load A Template From The Library\";s:3:\"img\";s:61:\"//updates.themepunch-ext-a.tools/banners/guide_mod_banner.png\";}}s:7:\"selling\";b:1;}','auto'),(185,'rs-addons-counter','35','auto'),(186,'revslider-addons','O:8:\"stdClass\":35:{s:28:\"revslider-particlewave-addon\";O:8:\"stdClass\":22:{s:2:\"id\";s:3:\"559\";s:9:\"releaseid\";s:2:\"29\";s:4:\"slug\";s:28:\"revslider-particlewave-addon\";s:12:\"version_from\";s:5:\"6.7.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:13:\"Particle Wave\";s:6:\"line_1\";s:36:\"Create 3D particle and polygon grids\";s:6:\"line_2\";s:40:\"with lots of style and animation options\";s:9:\"available\";s:5:\"6.7.6\";s:10:\"background\";s:0:\"\";s:15:\"background_file\";s:0:\"\";s:14:\"background_md5\";s:0:\"\";s:6:\"button\";s:0:\"\";s:4:\"sort\";s:1:\"9\";s:11:\"last_update\";s:10:\"2024-11-04\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":5:{s:3:\"img\";s:79:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_particlewave.jpg\";s:8:\"img_file\";s:46:\"revslider/addons/images/addon_particlewave.jpg\";s:7:\"img_md5\";s:32:\"623bec30f175f4cc541048f1d6d5fd07\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PW\";}s:6:\"banner\";s:0:\"\";s:11:\"banner_file\";s:0:\"\";s:10:\"banner_md5\";s:0:\"\";s:4:\"tags\";a:0:{}}s:25:\"revslider-particles-addon\";O:8:\"stdClass\":22:{s:2:\"id\";s:3:\"558\";s:9:\"releaseid\";s:1:\"7\";s:4:\"slug\";s:25:\"revslider-particles-addon\";s:12:\"version_from\";s:5:\"6.7.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:16:\"Particle Effects\";s:6:\"line_1\";s:17:\"Let\'s Parti(cle)!\";s:6:\"line_2\";s:51:\"Add interactive particle animations to your sliders\";s:9:\"available\";s:5:\"6.7.6\";s:10:\"background\";s:0:\"\";s:15:\"background_file\";s:0:\"\";s:14:\"background_md5\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:4:\"sort\";s:2:\"10\";s:11:\"last_update\";s:10:\"2024-11-04\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":5:{s:3:\"img\";s:76:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_particles.jpg\";s:8:\"img_file\";s:43:\"revslider/addons/images/addon_particles.jpg\";s:7:\"img_md5\";s:32:\"b668a4015ddc6a532b43bb558967a062\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PT\";}s:6:\"banner\";s:0:\"\";s:11:\"banner_file\";s:0:\"\";s:10:\"banner_md5\";s:0:\"\";s:4:\"tags\";a:0:{}}s:27:\"revslider-bubblemorph-addon\";O:8:\"stdClass\":22:{s:2:\"id\";s:3:\"405\";s:9:\"releaseid\";s:2:\"20\";s:4:\"slug\";s:27:\"revslider-bubblemorph-addon\";s:12:\"version_from\";s:5:\"6.5.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:11:\"BubbleMorph\";s:6:\"line_1\";s:26:\"Include BubbleMorph Layers\";s:6:\"line_2\";s:33:\"for a decorative lava lamp effect\";s:9:\"available\";s:5:\"6.7.4\";s:10:\"background\";s:0:\"\";s:15:\"background_file\";s:0:\"\";s:14:\"background_md5\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:2:\"20\";s:11:\"last_update\";s:10:\"2024-11-04\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":5:{s:3:\"img\";s:78:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_bubblemorph.jpg\";s:8:\"img_file\";s:45:\"revslider/addons/images/addon_bubblemorph.jpg\";s:7:\"img_md5\";s:32:\"22d03d5de3034069c6db1fdeafd467cd\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"BM\";}s:6:\"banner\";s:0:\"\";s:11:\"banner_file\";s:0:\"\";s:10:\"banner_md5\";s:0:\"\";s:4:\"tags\";a:0:{}}s:26:\"revslider-thecluster-addon\";O:8:\"stdClass\":22:{s:2:\"id\";s:3:\"567\";s:9:\"releaseid\";s:2:\"28\";s:4:\"slug\";s:26:\"revslider-thecluster-addon\";s:12:\"version_from\";s:5:\"6.7.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:11:\"The Cluster\";s:6:\"line_1\";s:24:\"Cluster Particle Effects\";s:6:\"line_2\";s:27:\"with millions of Variations\";s:9:\"available\";s:5:\"6.7.3\";s:10:\"background\";s:0:\"\";s:15:\"background_file\";s:0:\"\";s:14:\"background_md5\";s:0:\"\";s:6:\"button\";s:0:\"\";s:4:\"sort\";s:2:\"22\";s:11:\"last_update\";s:10:\"2024-11-04\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":5:{s:3:\"img\";s:74:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_cluster.jpg\";s:8:\"img_file\";s:41:\"revslider/addons/images/addon_cluster.jpg\";s:7:\"img_md5\";s:32:\"7ada93a9f08a3bcfddc078699674d755\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"TC\";}s:6:\"banner\";s:0:\"\";s:11:\"banner_file\";s:0:\"\";s:10:\"banner_md5\";s:0:\"\";s:4:\"tags\";a:0:{}}s:29:\"revslider-fluiddynamics-addon\";O:8:\"stdClass\":22:{s:2:\"id\";s:3:\"551\";s:9:\"releaseid\";s:2:\"31\";s:4:\"slug\";s:29:\"revslider-fluiddynamics-addon\";s:12:\"version_from\";s:5:\"6.7.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:14:\"Fluid Dynamics\";s:6:\"line_1\";s:46:\"Creating breathtaking Dynamic Fluid animations\";s:6:\"line_2\";s:25:\"as layer or as background\";s:9:\"available\";s:5:\"6.7.6\";s:10:\"background\";s:0:\"\";s:15:\"background_file\";s:0:\"\";s:14:\"background_md5\";s:0:\"\";s:6:\"button\";s:0:\"\";s:4:\"sort\";s:2:\"27\";s:11:\"last_update\";s:10:\"2024-11-04\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":5:{s:3:\"img\";s:72:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_fluid.png\";s:8:\"img_file\";s:39:\"revslider/addons/images/addon_fluid.png\";s:7:\"img_md5\";s:32:\"4e52333540d80bcb2a41b8ed5961e088\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"FD\";}s:6:\"banner\";s:0:\"\";s:11:\"banner_file\";s:0:\"\";s:10:\"banner_md5\";s:0:\"\";s:4:\"tags\";a:0:{}}s:30:\"revslider-transitionpack-addon\";O:8:\"stdClass\":22:{s:2:\"id\";s:3:\"568\";s:9:\"releaseid\";s:2:\"28\";s:4:\"slug\";s:30:\"revslider-transitionpack-addon\";s:12:\"version_from\";s:5:\"6.7.0\";s:10:\"version_to\";s:6:\"6.7.31\";s:5:\"title\";s:20:\"Advanced Transitions\";s:6:\"line_1\";s:43:\"Add never-before-seen slide transitions to \";s:6:\"line_2\";s:42:\"Slider Revolution with the power of WEBGL.\";s:9:\"available\";s:5:\"6.7.7\";s:10:\"background\";s:0:\"\";s:15:\"background_file\";s:0:\"\";s:14:\"background_md5\";s:0:\"\";s:6:\"button\";s:0:\"\";s:4:\"sort\";s:2:\"30\";s:11:\"last_update\";s:10:\"2025-01-17\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":5:{s:3:\"img\";s:77:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_transition.jpg\";s:8:\"img_file\";s:44:\"revslider/addons/images/addon_transition.jpg\";s:7:\"img_md5\";s:32:\"fe0f1c539053620039a0ad96c4ac27e6\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"AT\";}s:6:\"banner\";s:0:\"\";s:11:\"banner_file\";s:0:\"\";s:10:\"banner_md5\";s:0:\"\";s:4:\"tags\";a:0:{}}s:27:\"revslider-beforeafter-addon\";O:8:\"stdClass\":22:{s:2:\"id\";s:3:\"545\";s:9:\"releaseid\";s:2:\"15\";s:4:\"slug\";s:27:\"revslider-beforeafter-addon\";s:12:\"version_from\";s:5:\"6.7.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:14:\"Before & After\";s:6:\"line_1\";s:35:\"Compare two slides before and after\";s:6:\"line_2\";s:33:\"use it vertically or horizontally\";s:9:\"available\";s:5:\"6.7.5\";s:10:\"background\";s:0:\"\";s:15:\"background_file\";s:0:\"\";s:14:\"background_md5\";s:0:\"\";s:6:\"button\";s:0:\"\";s:4:\"sort\";s:2:\"40\";s:11:\"last_update\";s:10:\"2024-11-04\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":5:{s:3:\"img\";s:78:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_beforeafter.jpg\";s:8:\"img_file\";s:45:\"revslider/addons/images/addon_beforeafter.jpg\";s:7:\"img_md5\";s:32:\"5a34f20417a7874e1b95693ef37a0758\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"BA\";}s:6:\"banner\";s:0:\"\";s:11:\"banner_file\";s:0:\"\";s:10:\"banner_md5\";s:0:\"\";s:4:\"tags\";a:0:{}}s:26:\"revslider-typewriter-addon\";O:8:\"stdClass\":22:{s:2:\"id\";s:3:\"569\";s:9:\"releaseid\";s:1:\"3\";s:4:\"slug\";s:26:\"revslider-typewriter-addon\";s:12:\"version_from\";s:5:\"6.7.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:17:\"Typewriter Effect\";s:6:\"line_1\";s:27:\"Enhance your slider\'s text \";s:6:\"line_2\";s:24:\"with typewriter effects \";s:9:\"available\";s:5:\"6.7.4\";s:10:\"background\";s:0:\"\";s:15:\"background_file\";s:0:\"\";s:14:\"background_md5\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:2:\"50\";s:11:\"last_update\";s:10:\"2024-11-04\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":5:{s:3:\"img\";s:77:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_typewriter.jpg\";s:8:\"img_file\";s:44:\"revslider/addons/images/addon_typewriter.jpg\";s:7:\"img_md5\";s:32:\"727b604f6fd3fc55894ba50eb566efed\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"TW\";}s:6:\"banner\";s:0:\"\";s:11:\"banner_file\";s:0:\"\";s:10:\"banner_md5\";s:0:\"\";s:4:\"tags\";a:0:{}}s:25:\"revslider-mousetrap-addon\";O:8:\"stdClass\":22:{s:2:\"id\";s:3:\"555\";s:9:\"releaseid\";s:2:\"24\";s:4:\"slug\";s:25:\"revslider-mousetrap-addon\";s:12:\"version_from\";s:5:\"6.7.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:9:\"Mousetrap\";s:6:\"line_1\";s:31:\"Create all kinds of interesting\";s:6:\"line_2\";s:19:\" mouse interactions\";s:9:\"available\";s:5:\"6.7.6\";s:10:\"background\";s:0:\"\";s:15:\"background_file\";s:0:\"\";s:14:\"background_md5\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:2:\"60\";s:11:\"last_update\";s:10:\"2024-11-04\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":5:{s:3:\"img\";s:76:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_mousetrap.jpg\";s:8:\"img_file\";s:43:\"revslider/addons/images/addon_mousetrap.jpg\";s:7:\"img_md5\";s:32:\"2329053c3b1d19bdaee131c3dc258d3a\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"MT\";}s:6:\"banner\";s:0:\"\";s:11:\"banner_file\";s:0:\"\";s:10:\"banner_md5\";s:0:\"\";s:4:\"tags\";a:0:{}}s:28:\"revslider-liquideffect-addon\";O:8:\"stdClass\":22:{s:2:\"id\";s:3:\"552\";s:9:\"releaseid\";s:2:\"21\";s:4:\"slug\";s:28:\"revslider-liquideffect-addon\";s:12:\"version_from\";s:5:\"6.7.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:10:\"Distortion\";s:6:\"line_1\";s:22:\"Add Distortion Effects\";s:6:\"line_2\";s:30:\"to your slides and transitions\";s:9:\"available\";s:5:\"6.7.3\";s:10:\"background\";s:0:\"\";s:15:\"background_file\";s:0:\"\";s:14:\"background_md5\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:2:\"70\";s:11:\"last_update\";s:10:\"2024-11-04\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":5:{s:3:\"img\";s:77:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_distortion.jpg\";s:8:\"img_file\";s:44:\"revslider/addons/images/addon_distortion.jpg\";s:7:\"img_md5\";s:32:\"c26c52a563008b7dc907a288c1e4bb8e\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"LE\";}s:6:\"banner\";s:0:\"\";s:11:\"banner_file\";s:0:\"\";s:10:\"banner_md5\";s:0:\"\";s:4:\"tags\";a:0:{}}s:22:\"revslider-lottie-addon\";O:8:\"stdClass\":22:{s:2:\"id\";s:3:\"553\";s:9:\"releaseid\";s:2:\"25\";s:4:\"slug\";s:22:\"revslider-lottie-addon\";s:12:\"version_from\";s:5:\"6.7.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Lottie\";s:6:\"line_1\";s:53:\"Adds support for the popular Lottie Animation format,\";s:6:\"line_2\";s:70:\" including animation control, style customization and a local library.\";s:9:\"available\";s:5:\"6.7.3\";s:10:\"background\";s:0:\"\";s:15:\"background_file\";s:0:\"\";s:14:\"background_md5\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:2:\"80\";s:11:\"last_update\";s:10:\"2024-11-04\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":5:{s:3:\"img\";s:73:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_lottie.jpg\";s:8:\"img_file\";s:40:\"revslider/addons/images/addon_lottie.jpg\";s:7:\"img_md5\";s:32:\"4aa677a45bb13732e4f10bcb632afcce\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"LT\";}s:6:\"banner\";s:0:\"\";s:11:\"banner_file\";s:0:\"\";s:10:\"banner_md5\";s:0:\"\";s:4:\"tags\";a:0:{}}s:26:\"revslider-paintbrush-addon\";O:8:\"stdClass\":22:{s:2:\"id\";s:3:\"556\";s:9:\"releaseid\";s:2:\"23\";s:4:\"slug\";s:26:\"revslider-paintbrush-addon\";s:12:\"version_from\";s:5:\"6.7.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:10:\"Paintbrush\";s:6:\"line_1\";s:14:\"Paint or Erase\";s:6:\"line_2\";s:22:\"your background images\";s:9:\"available\";s:5:\"6.7.4\";s:10:\"background\";s:0:\"\";s:15:\"background_file\";s:0:\"\";s:14:\"background_md5\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:2:\"90\";s:11:\"last_update\";s:10:\"2025-01-15\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":5:{s:3:\"img\";s:77:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_paintbrush.jpg\";s:8:\"img_file\";s:44:\"revslider/addons/images/addon_paintbrush.jpg\";s:7:\"img_md5\";s:32:\"308a56289b9a29d1916c2acfc141b699\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PB\";}s:6:\"banner\";s:0:\"\";s:11:\"banner_file\";s:0:\"\";s:10:\"banner_md5\";s:0:\"\";s:4:\"tags\";a:0:{}}s:22:\"revslider-charts-addon\";O:8:\"stdClass\":22:{s:2:\"id\";s:3:\"547\";s:9:\"releaseid\";s:2:\"27\";s:4:\"slug\";s:22:\"revslider-charts-addon\";s:12:\"version_from\";s:5:\"6.7.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Charts\";s:6:\"line_1\";s:93:\"The Charts addon allows you to create visually impressive line or bar graphs from .csv data, \";s:6:\"line_2\";s:56:\"with tons of options to take full control of the design.\";s:9:\"available\";s:5:\"6.7.5\";s:10:\"background\";s:0:\"\";s:15:\"background_file\";s:0:\"\";s:14:\"background_md5\";s:0:\"\";s:6:\"button\";s:0:\"\";s:4:\"sort\";s:3:\"100\";s:11:\"last_update\";s:10:\"2024-11-04\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":5:{s:3:\"img\";s:73:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_charts.jpg\";s:8:\"img_file\";s:40:\"revslider/addons/images/addon_charts.jpg\";s:7:\"img_md5\";s:32:\"d2c184371a575faade425c0377c1fdbd\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"CH\";}s:6:\"banner\";s:0:\"\";s:11:\"banner_file\";s:0:\"\";s:10:\"banner_md5\";s:0:\"\";s:4:\"tags\";a:0:{}}s:22:\"revslider-slicey-addon\";O:8:\"stdClass\":22:{s:2:\"id\";s:3:\"417\";s:9:\"releaseid\";s:2:\"13\";s:4:\"slug\";s:22:\"revslider-slicey-addon\";s:12:\"version_from\";s:5:\"6.5.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Slicey\";s:6:\"line_1\";s:20:\"Slice \'em up nicely!\";s:6:\"line_2\";s:38:\"Create image slices of your background\";s:9:\"available\";s:5:\"6.7.3\";s:10:\"background\";s:0:\"\";s:15:\"background_file\";s:0:\"\";s:14:\"background_md5\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"110\";s:11:\"last_update\";s:10:\"2024-11-04\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":5:{s:3:\"img\";s:73:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_slicey.jpg\";s:8:\"img_file\";s:40:\"revslider/addons/images/addon_slicey.jpg\";s:7:\"img_md5\";s:32:\"28afd29b7738a452194f0a0bc1d21cbe\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"SL\";}s:6:\"banner\";s:0:\"\";s:11:\"banner_file\";s:0:\"\";s:10:\"banner_md5\";s:0:\"\";s:4:\"tags\";a:0:{}}s:25:\"revslider-filmstrip-addon\";O:8:\"stdClass\":22:{s:2:\"id\";s:3:\"550\";s:9:\"releaseid\";s:2:\"10\";s:4:\"slug\";s:25:\"revslider-filmstrip-addon\";s:12:\"version_from\";s:5:\"6.7.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:9:\"Filmstrip\";s:6:\"line_1\";s:44:\"Display a continously rotating set of images\";s:6:\"line_2\";s:26:\"for your slide backgrounds\";s:9:\"available\";s:5:\"6.7.5\";s:10:\"background\";s:0:\"\";s:15:\"background_file\";s:0:\"\";s:14:\"background_md5\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"125\";s:11:\"last_update\";s:10:\"2024-12-09\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":5:{s:3:\"img\";s:76:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_filmstrip.jpg\";s:8:\"img_file\";s:43:\"revslider/addons/images/addon_filmstrip.jpg\";s:7:\"img_md5\";s:32:\"dac40ee57d2be9aaf01faacf51ccb412\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"FS\";}s:6:\"banner\";s:0:\"\";s:11:\"banner_file\";s:0:\"\";s:10:\"banner_md5\";s:0:\"\";s:4:\"tags\";a:0:{}}s:27:\"revslider-maintenance-addon\";O:8:\"stdClass\":22:{s:2:\"id\";s:3:\"554\";s:9:\"releaseid\";s:1:\"4\";s:4:\"slug\";s:27:\"revslider-maintenance-addon\";s:12:\"version_from\";s:5:\"6.7.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:15:\"Coming & Maint.\";s:6:\"line_1\";s:37:\"Simple Coming Soon & Maintenance Page\";s:6:\"line_2\";s:42:\"Let your visitors know what\'s up and when!\";s:9:\"available\";s:5:\"6.7.3\";s:10:\"background\";s:0:\"\";s:15:\"background_file\";s:0:\"\";s:14:\"background_md5\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"127\";s:11:\"last_update\";s:10:\"2024-12-06\";s:6:\"global\";b:1;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":5:{s:3:\"img\";s:84:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_underconstruction.jpg\";s:8:\"img_file\";s:51:\"revslider/addons/images/addon_underconstruction.jpg\";s:7:\"img_md5\";s:32:\"17f8cba84931541c065cfb1943edafb2\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"MT\";}s:6:\"banner\";s:0:\"\";s:11:\"banner_file\";s:0:\"\";s:10:\"banner_md5\";s:0:\"\";s:4:\"tags\";a:0:{}}s:24:\"revslider-revealer-addon\";O:8:\"stdClass\":22:{s:2:\"id\";s:3:\"562\";s:9:\"releaseid\";s:2:\"19\";s:4:\"slug\";s:24:\"revslider-revealer-addon\";s:12:\"version_from\";s:5:\"6.7.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Reveal\";s:6:\"line_1\";s:9:\"Reveal...\";s:6:\"line_2\";s:37:\"...your inner beast... and RevSliders\";s:9:\"available\";s:5:\"6.7.5\";s:10:\"background\";s:0:\"\";s:15:\"background_file\";s:0:\"\";s:14:\"background_md5\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"130\";s:11:\"last_update\";s:10:\"2024-11-04\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":5:{s:3:\"img\";s:73:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_reveal.jpg\";s:8:\"img_file\";s:40:\"revslider/addons/images/addon_reveal.jpg\";s:7:\"img_md5\";s:32:\"a7ce4bf5eb6fdc1497ed6276ca623046\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"RV\";}s:6:\"banner\";s:0:\"\";s:11:\"banner_file\";s:0:\"\";s:10:\"banner_md5\";s:0:\"\";s:4:\"tags\";a:0:{}}s:24:\"revslider-panorama-addon\";O:8:\"stdClass\":22:{s:2:\"id\";s:3:\"557\";s:9:\"releaseid\";s:2:\"17\";s:4:\"slug\";s:24:\"revslider-panorama-addon\";s:12:\"version_from\";s:5:\"6.7.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:8:\"Panorama\";s:6:\"line_1\";s:14:\"Panorama AddOn\";s:6:\"line_2\";s:28:\"Display images in 360 degree\";s:9:\"available\";s:5:\"6.7.3\";s:10:\"background\";s:0:\"\";s:15:\"background_file\";s:0:\"\";s:14:\"background_md5\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"135\";s:11:\"last_update\";s:10:\"2024-09-24\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":5:{s:3:\"img\";s:75:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_panorama.jpg\";s:8:\"img_file\";s:42:\"revslider/addons/images/addon_panorama.jpg\";s:7:\"img_md5\";s:32:\"210953d59903bed91688138cb60777d2\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PN\";}s:6:\"banner\";s:0:\"\";s:11:\"banner_file\";s:0:\"\";s:10:\"banner_md5\";s:0:\"\";s:4:\"tags\";a:0:{}}s:27:\"revslider-scrollvideo-addon\";O:8:\"stdClass\":22:{s:2:\"id\";s:3:\"575\";s:9:\"releaseid\";s:2:\"26\";s:4:\"slug\";s:27:\"revslider-scrollvideo-addon\";s:12:\"version_from\";s:5:\"6.7.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:12:\"Scroll Video\";s:6:\"line_1\";s:114:\"This addon allows you to generate a sequence of images from any html5 video and play them with scroll interaction.\";s:6:\"line_2\";s:49:\"Quality options are included for optimal results!\";s:9:\"available\";s:5:\"6.7.6\";s:10:\"background\";s:78:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_scrollvideo.jpg\";s:15:\"background_file\";s:45:\"revslider/addons/images/addon_scrollvideo.jpg\";s:14:\"background_md5\";s:32:\"82b2706dfa20a7b0cfabfe7ff28562f9\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"140\";s:11:\"last_update\";s:10:\"2024-11-04\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":5:{s:3:\"img\";s:78:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_scrollvideo.jpg\";s:8:\"img_file\";s:45:\"revslider/addons/images/addon_scrollvideo.jpg\";s:7:\"img_md5\";s:32:\"82b2706dfa20a7b0cfabfe7ff28562f9\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"SV\";}s:6:\"banner\";s:0:\"\";s:11:\"banner_file\";s:0:\"\";s:10:\"banner_md5\";s:0:\"\";s:4:\"tags\";a:0:{}}s:31:\"revslider-explodinglayers-addon\";O:8:\"stdClass\":22:{s:2:\"id\";s:3:\"549\";s:9:\"releaseid\";s:2:\"22\";s:4:\"slug\";s:31:\"revslider-explodinglayers-addon\";s:12:\"version_from\";s:5:\"6.7.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:16:\"Exploding Layers\";s:6:\"line_1\";s:23:\"Add explosive particles\";s:6:\"line_2\";s:24:\"to your layers animation\";s:9:\"available\";s:5:\"6.7.4\";s:10:\"background\";s:0:\"\";s:15:\"background_file\";s:0:\"\";s:14:\"background_md5\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"150\";s:11:\"last_update\";s:10:\"2025-02-18\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":5:{s:3:\"img\";s:76:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_exploding.jpg\";s:8:\"img_file\";s:43:\"revslider/addons/images/addon_exploding.jpg\";s:7:\"img_md5\";s:32:\"44d60b83cdf5b29033d41feb516b47e1\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"EL\";}s:6:\"banner\";s:0:\"\";s:11:\"banner_file\";s:0:\"\";s:10:\"banner_md5\";s:0:\"\";s:4:\"tags\";a:0:{}}s:23:\"revslider-sharing-addon\";O:8:\"stdClass\":22:{s:2:\"id\";s:3:\"564\";s:9:\"releaseid\";s:1:\"5\";s:4:\"slug\";s:23:\"revslider-sharing-addon\";s:12:\"version_from\";s:5:\"6.7.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:14:\"Social Sharing\";s:6:\"line_1\";s:17:\"Share your slides\";s:6:\"line_2\";s:50:\"with RevSlider \"actions\" because sharing is caring\";s:9:\"available\";s:5:\"6.7.4\";s:10:\"background\";s:0:\"\";s:15:\"background_file\";s:0:\"\";s:14:\"background_md5\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:4:\"sort\";s:3:\"165\";s:11:\"last_update\";s:10:\"2024-12-19\";s:6:\"global\";b:1;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":5:{s:3:\"img\";s:80:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_socialsharing.jpg\";s:8:\"img_file\";s:47:\"revslider/addons/images/addon_socialsharing.jpg\";s:7:\"img_md5\";s:32:\"6b074630853c4f95d5337bc85e496cbe\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"SH\";}s:6:\"banner\";s:0:\"\";s:11:\"banner_file\";s:0:\"\";s:10:\"banner_md5\";s:0:\"\";s:4:\"tags\";a:0:{}}s:26:\"revslider-whiteboard-addon\";O:8:\"stdClass\":22:{s:2:\"id\";s:3:\"571\";s:9:\"releaseid\";s:1:\"1\";s:4:\"slug\";s:26:\"revslider-whiteboard-addon\";s:12:\"version_from\";s:5:\"6.7.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:10:\"Whiteboard\";s:6:\"line_1\";s:31:\"Create Hand-Drawn Presentations\";s:6:\"line_2\";s:45:\"that are understandable, memorable & engaging\";s:9:\"available\";s:5:\"6.7.4\";s:10:\"background\";s:81:\"//updates.themepunch-ext-a.tools/revslider/addons/images/whiteboard_widget_bg.jpg\";s:15:\"background_file\";s:48:\"revslider/addons/images/whiteboard_widget_bg.jpg\";s:14:\"background_md5\";s:32:\"cc69160eb95469dc033e0cc094a24847\";s:6:\"button\";s:11:\"How to use?\";s:4:\"sort\";s:3:\"170\";s:11:\"last_update\";s:10:\"2024-11-04\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":5:{s:3:\"img\";s:77:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_whiteboard.jpg\";s:8:\"img_file\";s:44:\"revslider/addons/images/addon_whiteboard.jpg\";s:7:\"img_md5\";s:32:\"b0bb636fb30ffc3d112ba4c563395ee6\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"WB\";}s:6:\"banner\";s:0:\"\";s:11:\"banner_file\";s:0:\"\";s:10:\"banner_md5\";s:0:\"\";s:4:\"tags\";a:0:{}}s:24:\"revslider-polyfold-addon\";O:8:\"stdClass\":22:{s:2:\"id\";s:3:\"560\";s:9:\"releaseid\";s:2:\"14\";s:4:\"slug\";s:24:\"revslider-polyfold-addon\";s:12:\"version_from\";s:5:\"6.7.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:22:\"Polyfold Scroll Effect\";s:6:\"line_1\";s:32:\"Add sharp edges to your sliders \";s:6:\"line_2\";s:35:\"as they scroll into and out of view\";s:9:\"available\";s:5:\"6.7.3\";s:10:\"background\";s:0:\"\";s:15:\"background_file\";s:0:\"\";s:14:\"background_md5\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:4:\"sort\";s:3:\"180\";s:11:\"last_update\";s:10:\"2024-11-04\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":5:{s:3:\"img\";s:75:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_polyfold.jpg\";s:8:\"img_file\";s:42:\"revslider/addons/images/addon_polyfold.jpg\";s:7:\"img_md5\";s:32:\"02c6af89e4208f0da5920c6c3e6bb744\";s:5:\"color\";s:7:\"#3e186f\";s:4:\"text\";s:2:\"PF\";}s:6:\"banner\";s:0:\"\";s:11:\"banner_file\";s:0:\"\";s:10:\"banner_md5\";s:0:\"\";s:4:\"tags\";a:0:{}}s:29:\"revslider-domain-switch-addon\";O:8:\"stdClass\":22:{s:2:\"id\";s:2:\"78\";s:9:\"releaseid\";s:2:\"11\";s:4:\"slug\";s:29:\"revslider-domain-switch-addon\";s:12:\"version_from\";s:5:\"6.0.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:13:\"Domain Switch\";s:6:\"line_1\";s:17:\"Switch Image URLs\";s:6:\"line_2\";s:37:\"in sliders from one domain to another\";s:9:\"available\";s:5:\"1.0.2\";s:10:\"background\";s:0:\"\";s:15:\"background_file\";s:0:\"\";s:14:\"background_md5\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:4:\"sort\";s:3:\"300\";s:11:\"last_update\";s:10:\"2024-11-04\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":5:{s:3:\"img\";s:79:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_domainswitch.jpg\";s:8:\"img_file\";s:46:\"revslider/addons/images/addon_domainswitch.jpg\";s:7:\"img_md5\";s:32:\"f2036924e7993f94bd5c9876fa0bf09b\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"DS\";}s:6:\"banner\";s:0:\"\";s:11:\"banner_file\";s:0:\"\";s:10:\"banner_md5\";s:0:\"\";s:4:\"tags\";a:0:{}}s:23:\"revslider-refresh-addon\";O:8:\"stdClass\":22:{s:2:\"id\";s:3:\"561\";s:9:\"releaseid\";s:2:\"10\";s:4:\"slug\";s:23:\"revslider-refresh-addon\";s:12:\"version_from\";s:5:\"6.7.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:8:\"(Re)Load\";s:6:\"line_1\";s:39:\"Reload the current page or a custom URL\";s:6:\"line_2\";s:34:\"after a certain time, loops, slide\";s:9:\"available\";s:5:\"6.7.3\";s:10:\"background\";s:0:\"\";s:15:\"background_file\";s:0:\"\";s:14:\"background_md5\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"330\";s:11:\"last_update\";s:10:\"2024-11-04\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":5:{s:3:\"img\";s:73:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_reload.jpg\";s:8:\"img_file\";s:40:\"revslider/addons/images/addon_reload.jpg\";s:7:\"img_md5\";s:32:\"d1d34d204e627168f4cc4e7422a6d40c\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"RF\";}s:6:\"banner\";s:0:\"\";s:11:\"banner_file\";s:0:\"\";s:10:\"banner_md5\";s:0:\"\";s:4:\"tags\";a:0:{}}s:25:\"revslider-rel-posts-addon\";O:8:\"stdClass\":22:{s:2:\"id\";s:2:\"55\";s:9:\"releaseid\";s:1:\"9\";s:4:\"slug\";s:25:\"revslider-rel-posts-addon\";s:12:\"version_from\";s:7:\"5.2.4.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:13:\"Related Posts\";s:6:\"line_1\";s:25:\"Add related Posts Sliders\";s:6:\"line_2\";s:31:\"at the end of your post content\";s:9:\"available\";s:5:\"2.0.3\";s:10:\"background\";s:0:\"\";s:15:\"background_file\";s:0:\"\";s:14:\"background_md5\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"340\";s:11:\"last_update\";s:10:\"2024-11-04\";s:6:\"global\";b:1;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":5:{s:3:\"img\";s:76:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_wprelated.jpg\";s:8:\"img_file\";s:43:\"revslider/addons/images/addon_wprelated.jpg\";s:7:\"img_md5\";s:32:\"e2e7d6c3a428a55442ba90131556c930\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"RP\";}s:6:\"banner\";s:0:\"\";s:11:\"banner_file\";s:0:\"\";s:10:\"banner_md5\";s:0:\"\";s:4:\"tags\";a:0:{}}s:20:\"revslider-snow-addon\";O:8:\"stdClass\":22:{s:2:\"id\";s:3:\"566\";s:9:\"releaseid\";s:1:\"6\";s:4:\"slug\";s:20:\"revslider-snow-addon\";s:12:\"version_from\";s:5:\"6.7.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:12:\"Holiday Snow\";s:6:\"line_1\";s:12:\"Let it snow!\";s:6:\"line_2\";s:32:\"Add animated snow to any Slider \";s:9:\"available\";s:5:\"6.7.4\";s:10:\"background\";s:0:\"\";s:15:\"background_file\";s:0:\"\";s:14:\"background_md5\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:4:\"sort\";s:3:\"380\";s:11:\"last_update\";s:10:\"2024-11-04\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":5:{s:3:\"img\";s:71:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_snow.jpg\";s:8:\"img_file\";s:38:\"revslider/addons/images/addon_snow.jpg\";s:7:\"img_md5\";s:32:\"d6bac718866b0070198a4340041bc60b\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"SN\";}s:6:\"banner\";s:0:\"\";s:11:\"banner_file\";s:0:\"\";s:10:\"banner_md5\";s:0:\"\";s:4:\"tags\";a:0:{}}s:23:\"revslider-gallery-addon\";O:8:\"stdClass\":22:{s:2:\"id\";s:3:\"378\";s:9:\"releaseid\";s:1:\"2\";s:4:\"slug\";s:23:\"revslider-gallery-addon\";s:12:\"version_from\";s:6:\"6.4.11\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:17:\"WordPress Gallery\";s:6:\"line_1\";s:31:\"Replace the standard WP Gallery\";s:6:\"line_2\";s:31:\"with the Sliders of your choice\";s:9:\"available\";s:5:\"2.0.7\";s:10:\"background\";s:0:\"\";s:15:\"background_file\";s:0:\"\";s:14:\"background_md5\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"430\";s:11:\"last_update\";s:10:\"2024-11-04\";s:6:\"global\";b:1;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":5:{s:3:\"img\";s:76:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_wpgallery.jpg\";s:8:\"img_file\";s:43:\"revslider/addons/images/addon_wpgallery.jpg\";s:7:\"img_md5\";s:32:\"74392a04b741d83c51e55059dbb388ef\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"GA\";}s:6:\"banner\";s:0:\"\";s:11:\"banner_file\";s:0:\"\";s:10:\"banner_md5\";s:0:\"\";s:4:\"tags\";a:0:{}}s:22:\"revslider-backup-addon\";O:8:\"stdClass\":22:{s:2:\"id\";s:2:\"53\";s:9:\"releaseid\";s:1:\"3\";s:4:\"slug\";s:22:\"revslider-backup-addon\";s:12:\"version_from\";s:5:\"5.2.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Backup\";s:6:\"line_1\";s:12:\"Make Backups\";s:6:\"line_2\";s:25:\"Revisions for your safety\";s:9:\"available\";s:5:\"2.0.5\";s:10:\"background\";s:0:\"\";s:15:\"background_file\";s:0:\"\";s:14:\"background_md5\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:4:\"sort\";s:3:\"500\";s:11:\"last_update\";s:10:\"2024-11-20\";s:6:\"global\";b:1;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":5:{s:3:\"img\";s:73:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_backup.jpg\";s:8:\"img_file\";s:40:\"revslider/addons/images/addon_backup.jpg\";s:7:\"img_md5\";s:32:\"104797323a0293cd3f200b0172db1186\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"BU\";}s:6:\"banner\";s:0:\"\";s:11:\"banner_file\";s:0:\"\";s:10:\"banner_md5\";s:0:\"\";s:4:\"tags\";a:0:{}}s:19:\"revslider-404-addon\";O:8:\"stdClass\":22:{s:2:\"id\";s:2:\"62\";s:9:\"releaseid\";s:1:\"8\";s:4:\"slug\";s:19:\"revslider-404-addon\";s:12:\"version_from\";s:3:\"5.3\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:3:\"404\";s:6:\"line_1\";s:39:\"Build custom 404 \"Page not Found\" Pages\";s:6:\"line_2\";s:28:\"with Slider Revolution swag!\";s:9:\"available\";s:5:\"2.0.2\";s:10:\"background\";s:0:\"\";s:15:\"background_file\";s:0:\"\";s:14:\"background_md5\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"620\";s:11:\"last_update\";s:10:\"2024-11-04\";s:6:\"global\";b:1;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":5:{s:3:\"img\";s:70:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_404.jpg\";s:8:\"img_file\";s:37:\"revslider/addons/images/addon_404.jpg\";s:7:\"img_md5\";s:32:\"217b0d118a107dc50979740dd61228df\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:3:\"404\";}s:6:\"banner\";s:0:\"\";s:11:\"banner_file\";s:0:\"\";s:10:\"banner_md5\";s:0:\"\";s:4:\"tags\";a:0:{}}s:30:\"revslider-prevnext-posts-addon\";O:8:\"stdClass\":22:{s:2:\"id\";s:2:\"63\";s:9:\"releaseid\";s:1:\"9\";s:4:\"slug\";s:30:\"revslider-prevnext-posts-addon\";s:12:\"version_from\";s:3:\"5.4\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:14:\"Adjacent Posts\";s:6:\"line_1\";s:30:\"Display previous and next post\";s:6:\"line_2\";s:28:\"to the currently showing one\";s:9:\"available\";s:5:\"2.0.3\";s:10:\"background\";s:0:\"\";s:15:\"background_file\";s:0:\"\";s:14:\"background_md5\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"630\";s:11:\"last_update\";s:10:\"2024-11-04\";s:6:\"global\";b:1;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":5:{s:3:\"img\";s:77:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_wpadjacent.jpg\";s:8:\"img_file\";s:44:\"revslider/addons/images/addon_wpadjacent.jpg\";s:7:\"img_md5\";s:32:\"cb1feb1257e55d0f42c29dfde2d809ed\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PN\";}s:6:\"banner\";s:0:\"\";s:11:\"banner_file\";s:0:\"\";s:10:\"banner_md5\";s:0:\"\";s:4:\"tags\";a:0:{}}s:21:\"revslider-login-addon\";O:8:\"stdClass\":22:{s:2:\"id\";s:3:\"388\";s:9:\"releaseid\";s:2:\"11\";s:4:\"slug\";s:21:\"revslider-login-addon\";s:12:\"version_from\";s:5:\"6.5.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:10:\"Login Page\";s:6:\"line_1\";s:25:\"Very simple WP Login Page\";s:6:\"line_2\";s:34:\"enhanced with your favorite slider\";s:9:\"available\";s:5:\"3.0.2\";s:10:\"background\";s:0:\"\";s:15:\"background_file\";s:0:\"\";s:14:\"background_md5\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"650\";s:11:\"last_update\";s:10:\"2024-11-04\";s:6:\"global\";b:1;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":5:{s:3:\"img\";s:72:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_login.jpg\";s:8:\"img_file\";s:39:\"revslider/addons/images/addon_login.jpg\";s:7:\"img_md5\";s:32:\"f0f2edffb4e155acf67799692428644d\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"LI\";}s:6:\"banner\";s:0:\"\";s:11:\"banner_file\";s:0:\"\";s:10:\"banner_md5\";s:0:\"\";s:4:\"tags\";a:0:{}}s:24:\"revslider-featured-addon\";O:8:\"stdClass\":22:{s:2:\"id\";s:3:\"379\";s:9:\"releaseid\";s:2:\"12\";s:4:\"slug\";s:24:\"revslider-featured-addon\";s:12:\"version_from\";s:6:\"6.4.11\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:20:\"Post Featured Slider\";s:6:\"line_1\";s:25:\"Display a featured Slider\";s:6:\"line_2\";s:41:\"instead of a featured Image in your Posts\";s:9:\"available\";s:5:\"2.0.5\";s:10:\"background\";s:0:\"\";s:15:\"background_file\";s:0:\"\";s:14:\"background_md5\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"660\";s:11:\"last_update\";s:10:\"2024-11-04\";s:6:\"global\";b:1;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":5:{s:3:\"img\";s:77:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_wpfeatured.jpg\";s:8:\"img_file\";s:44:\"revslider/addons/images/addon_wpfeatured.jpg\";s:7:\"img_md5\";s:32:\"bcc840e68194f3eb05795e1353954bda\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"FT\";}s:6:\"banner\";s:0:\"\";s:11:\"banner_file\";s:0:\"\";s:10:\"banner_md5\";s:0:\"\";s:4:\"tags\";a:0:{}}s:23:\"revslider-weather-addon\";O:8:\"stdClass\":22:{s:2:\"id\";s:3:\"570\";s:9:\"releaseid\";s:2:\"16\";s:4:\"slug\";s:23:\"revslider-weather-addon\";s:12:\"version_from\";s:5:\"6.7.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:7:\"Weather\";s:6:\"line_1\";s:21:\"Every where you go...\";s:6:\"line_2\";s:36:\"...always take the weather with you!\";s:9:\"available\";s:5:\"6.7.4\";s:10:\"background\";s:0:\"\";s:15:\"background_file\";s:0:\"\";s:14:\"background_md5\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"690\";s:11:\"last_update\";s:10:\"2024-11-04\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":5:{s:3:\"img\";s:74:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_weather.jpg\";s:8:\"img_file\";s:41:\"revslider/addons/images/addon_weather.jpg\";s:7:\"img_md5\";s:32:\"c69d1c9a69c2dec43ca0578ac35792bd\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"WT\";}s:6:\"banner\";s:0:\"\";s:11:\"banner_file\";s:0:\"\";s:10:\"banner_md5\";s:0:\"\";s:4:\"tags\";a:0:{}}s:30:\"revslider-duotonefilters-addon\";O:8:\"stdClass\":22:{s:2:\"id\";s:3:\"548\";s:9:\"releaseid\";s:2:\"18\";s:4:\"slug\";s:30:\"revslider-duotonefilters-addon\";s:12:\"version_from\";s:5:\"6.7.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:7:\"Duotone\";s:6:\"line_1\";s:7:\"Duotone\";s:6:\"line_2\";s:25:\"Because one is not enough\";s:9:\"available\";s:5:\"6.7.3\";s:10:\"background\";s:0:\"\";s:15:\"background_file\";s:0:\"\";s:14:\"background_md5\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"710\";s:11:\"last_update\";s:10:\"2024-11-04\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":5:{s:3:\"img\";s:74:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_duotone.jpg\";s:8:\"img_file\";s:41:\"revslider/addons/images/addon_duotone.jpg\";s:7:\"img_md5\";s:32:\"fb666e487e7ac28e6a2a157eed1fb682\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:3:\"DTF\";}s:6:\"banner\";s:0:\"\";s:11:\"banner_file\";s:0:\"\";s:10:\"banner_md5\";s:0:\"\";s:4:\"tags\";a:0:{}}}','auto'),(187,'revslider-library-check','1746164215','auto'),(188,'revslider-library-hash','324e6ba47fb68dfb7f1bd5b0b203bdc5','auto'),(189,'rs-library','a:3:{s:4:\"hash\";s:32:\"324e6ba47fb68dfb7f1bd5b0b203bdc5\";s:7:\"objects\";a:417:{i:0;a:13:{s:2:\"id\";s:3:\"198\";s:6:\"handle\";s:16:\"object_dvd_1.png\";s:4:\"name\";s:3:\"DVD\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:43:17\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:14130;s:4:\"orig\";i:220294;}}i:1;a:13:{s:2:\"id\";s:3:\"188\";s:6:\"handle\";s:18:\"object_plant_1.png\";s:4:\"name\";s:7:\"Plant 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-12 16:25:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:27127;s:4:\"orig\";i:1192484;}}i:2;a:13:{s:2:\"id\";s:3:\"187\";s:6:\"handle\";s:16:\"object_pen_1.png\";s:4:\"name\";s:5:\"Pen 1\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-12 16:25:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:1745;s:4:\"orig\";i:36243;}}i:3;a:13:{s:2:\"id\";s:3:\"172\";s:6:\"handle\";s:16:\"object_egg_1.png\";s:4:\"name\";s:3:\"Egg\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:10511;s:4:\"orig\";i:102067;}}i:4;a:13:{s:2:\"id\";s:3:\"171\";s:6:\"handle\";s:19:\"object_guitar_1.png\";s:4:\"name\";s:6:\"Guitar\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:18581;s:4:\"orig\";i:776243;}}i:5;a:13:{s:2:\"id\";s:3:\"170\";s:6:\"handle\";s:21:\"object_envelope_1.png\";s:4:\"name\";s:15:\"Closed Envelope\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:4745;s:4:\"orig\";i:330658;}}i:6;a:13:{s:2:\"id\";s:3:\"169\";s:6:\"handle\";s:19:\"object_postit_2.png\";s:4:\"name\";s:18:\"Postit Label White\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:4461;s:4:\"orig\";i:109963;}}i:7;a:13:{s:2:\"id\";s:3:\"168\";s:6:\"handle\";s:21:\"object_envelope_2.png\";s:4:\"name\";s:13:\"Open Envelope\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:6790;s:4:\"orig\";i:407746;}}i:8;a:13:{s:2:\"id\";s:3:\"167\";s:6:\"handle\";s:17:\"object_eggs_1.png\";s:4:\"name\";s:10:\"Egg Carton\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:18710;s:4:\"orig\";i:985569;}}i:9;a:13:{s:2:\"id\";s:3:\"166\";s:6:\"handle\";s:25:\"object_bottleopener_1.png\";s:4:\"name\";s:13:\"Bottle Opener\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:6113;s:4:\"orig\";i:75865;}}i:10;a:13:{s:2:\"id\";s:3:\"165\";s:6:\"handle\";s:23:\"object_blueprints_1.png\";s:4:\"name\";s:10:\"Blueprints\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:8145;s:4:\"orig\";i:400329;}}i:11;a:13:{s:2:\"id\";s:3:\"164\";s:6:\"handle\";s:22:\"object_holepunch_1.png\";s:4:\"name\";s:10:\"Hole punch\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:5251;s:4:\"orig\";i:358141;}}i:12;a:13:{s:2:\"id\";s:3:\"163\";s:6:\"handle\";s:20:\"object_speaker_1.png\";s:4:\"name\";s:13:\"Black Speaker\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:127536;s:4:\"orig\";i:838279;}}i:13;a:13:{s:2:\"id\";s:3:\"162\";s:6:\"handle\";s:19:\"object_eraser_1.png\";s:4:\"name\";s:6:\"Eraser\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:4081;s:4:\"orig\";i:22391;}}i:14;a:13:{s:2:\"id\";s:3:\"161\";s:6:\"handle\";s:23:\"object_vinylcover_1.png\";s:4:\"name\";s:11:\"Vinyl Cover\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:9331;s:4:\"orig\";i:516465;}}i:15;a:13:{s:2:\"id\";s:3:\"160\";s:6:\"handle\";s:20:\"object_booklet_1.png\";s:4:\"name\";s:9:\"Booklet 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:7834;s:4:\"orig\";i:463818;}}i:16;a:13:{s:2:\"id\";s:3:\"159\";s:6:\"handle\";s:22:\"object_earphones_2.png\";s:4:\"name\";s:11:\"Earphones 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:6359;s:4:\"orig\";i:102578;}}i:17;a:13:{s:2:\"id\";s:3:\"158\";s:6:\"handle\";s:18:\"object_vinyl_1.png\";s:4:\"name\";s:5:\"Vinyl\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:22078;s:4:\"orig\";i:1107904;}}i:18;a:13:{s:2:\"id\";s:3:\"157\";s:6:\"handle\";s:19:\"object_postit_1.png\";s:4:\"name\";s:17:\"Postit Label Pink\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:15660;s:4:\"orig\";i:355784;}}i:19;a:13:{s:2:\"id\";s:3:\"156\";s:6:\"handle\";s:23:\"object_mechpencil_1.png\";s:4:\"name\";s:17:\"Mechanical Pencil\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:5586;s:4:\"orig\";i:106514;}}i:20;a:13:{s:2:\"id\";s:3:\"155\";s:6:\"handle\";s:22:\"object_turntable_1.png\";s:4:\"name\";s:9:\"Turntable\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:20909;s:4:\"orig\";i:988589;}}i:21;a:13:{s:2:\"id\";s:3:\"154\";s:6:\"handle\";s:19:\"object_folder_2.png\";s:4:\"name\";s:19:\"Closed Folder Black\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:6807;s:4:\"orig\";i:604409;}}i:22;a:13:{s:2:\"id\";s:3:\"153\";s:6:\"handle\";s:19:\"object_postit_4.png\";s:4:\"name\";s:18:\"Postit Label Green\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:10484;s:4:\"orig\";i:229243;}}i:23;a:13:{s:2:\"id\";s:3:\"152\";s:6:\"handle\";s:19:\"object_folder_1.png\";s:4:\"name\";s:12:\"Blank Folder\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:6034;s:4:\"orig\";i:516575;}}i:24;a:13:{s:2:\"id\";s:3:\"151\";s:6:\"handle\";s:19:\"object_pencup_1.png\";s:4:\"name\";s:7:\"Pen Cup\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:30999;s:4:\"orig\";i:627862;}}i:25;a:13:{s:2:\"id\";s:3:\"150\";s:6:\"handle\";s:23:\"object_winebottle_1.png\";s:4:\"name\";s:15:\"Red Wine Bottle\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:11735;s:4:\"orig\";i:658948;}}i:26;a:13:{s:2:\"id\";s:3:\"149\";s:6:\"handle\";s:23:\"object_headphones_1.png\";s:4:\"name\";s:10:\"Headphones\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:16432;s:4:\"orig\";i:531684;}}i:27;a:13:{s:2:\"id\";s:3:\"148\";s:6:\"handle\";s:22:\"object_earphones_1.png\";s:4:\"name\";s:9:\"Earphones\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:15860;s:4:\"orig\";i:212685;}}i:28;a:13:{s:2:\"id\";s:3:\"147\";s:6:\"handle\";s:19:\"object_postit_3.png\";s:4:\"name\";s:19:\"Postit Label Yellow\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:12774;s:4:\"orig\";i:290128;}}i:29;a:13:{s:2:\"id\";s:3:\"146\";s:6:\"handle\";s:22:\"object_corkscrew_1.png\";s:4:\"name\";s:23:\"Corkscrew Bottle Opener\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1300\";s:6:\"height\";s:4:\"1300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:8558;s:4:\"orig\";i:264887;}}i:30;a:13:{s:2:\"id\";s:3:\"145\";s:6:\"handle\";s:19:\"object_muffin_1.png\";s:4:\"name\";s:16:\"Chocolate Muffin\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:23349;s:4:\"orig\";i:324946;}}i:31;a:13:{s:2:\"id\";s:3:\"144\";s:6:\"handle\";s:18:\"object_chair_2.png\";s:4:\"name\";s:12:\"Yellow Chair\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:18439;s:4:\"orig\";i:583276;}}i:32;a:13:{s:2:\"id\";s:3:\"143\";s:6:\"handle\";s:18:\"object_knife_2.png\";s:4:\"name\";s:7:\"Knife 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:8475;s:4:\"orig\";i:241613;}}i:33;a:13:{s:2:\"id\";s:3:\"142\";s:6:\"handle\";s:26:\"object_choppingboard_2.png\";s:4:\"name\";s:16:\"Chopping Board 3\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:12227;s:4:\"orig\";i:465092;}}i:34;a:13:{s:2:\"id\";s:3:\"141\";s:6:\"handle\";s:26:\"object_choppingboard_3.png\";s:4:\"name\";s:16:\"Chopping Board 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:23476;s:4:\"orig\";i:838985;}}i:35;a:13:{s:2:\"id\";s:3:\"140\";s:6:\"handle\";s:19:\"object_coffee_2.png\";s:4:\"name\";s:12:\"Coffee Cup 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:4:\"1200\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:128594;s:4:\"orig\";i:323284;}}i:36;a:13:{s:2:\"id\";s:3:\"139\";s:6:\"handle\";s:18:\"object_bread_1.png\";s:4:\"name\";s:15:\"Croissant Bread\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:15763;s:4:\"orig\";i:606028;}}i:37;a:13:{s:2:\"id\";s:3:\"138\";s:6:\"handle\";s:18:\"object_spoon_2.png\";s:4:\"name\";s:12:\"Wodden Spoon\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:8743;s:4:\"orig\";i:230696;}}i:38;a:13:{s:2:\"id\";s:3:\"137\";s:6:\"handle\";s:26:\"object_choppingboard_1.png\";s:4:\"name\";s:16:\"Chopping Board 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:18213;s:4:\"orig\";i:963650;}}i:39;a:13:{s:2:\"id\";s:3:\"136\";s:6:\"handle\";s:16:\"object_cup_2.png\";s:4:\"name\";s:11:\"Empty Cup 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:9109;s:4:\"orig\";i:190560;}}i:40;a:13:{s:2:\"id\";s:3:\"135\";s:6:\"handle\";s:18:\"object_knife_1.png\";s:4:\"name\";s:5:\"Knife\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:7469;s:4:\"orig\";i:161910;}}i:41;a:13:{s:2:\"id\";s:3:\"134\";s:6:\"handle\";s:18:\"object_spoon_1.png\";s:4:\"name\";s:5:\"Spoon\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:8883;s:4:\"orig\";i:223813;}}i:42;a:13:{s:2:\"id\";s:3:\"133\";s:6:\"handle\";s:16:\"object_cup_1.png\";s:4:\"name\";s:9:\"Empty Cup\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:13021;s:4:\"orig\";i:334845;}}i:43;a:13:{s:2:\"id\";s:3:\"132\";s:6:\"handle\";s:18:\"object_chair_3.png\";s:4:\"name\";s:11:\"White Chair\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:20718;s:4:\"orig\";i:626836;}}i:44;a:13:{s:2:\"id\";s:3:\"131\";s:6:\"handle\";s:19:\"object_coffee_1.png\";s:4:\"name\";s:10:\"Coffee Cup\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:135139;s:4:\"orig\";i:761240;}}i:45;a:13:{s:2:\"id\";s:3:\"130\";s:6:\"handle\";s:19:\"object_frypan_2.png\";s:4:\"name\";s:9:\"Fry Pan 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:13099;s:4:\"orig\";i:337348;}}i:46;a:13:{s:2:\"id\";s:3:\"129\";s:6:\"handle\";s:19:\"object_frypan_1.png\";s:4:\"name\";s:9:\"Fry Pan 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:13096;s:4:\"orig\";i:413010;}}i:47;a:13:{s:2:\"id\";s:3:\"128\";s:6:\"handle\";s:17:\"object_fork_1.png\";s:4:\"name\";s:4:\"Fork\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:8043;s:4:\"orig\";i:146037;}}i:48;a:13:{s:2:\"id\";s:3:\"127\";s:6:\"handle\";s:20:\"object_dishrag_1.png\";s:4:\"name\";s:13:\"Dishrag Cloth\";s:4:\"tags\";a:0:{}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:37011;s:4:\"orig\";i:2569343;}}i:49;a:13:{s:2:\"id\";s:3:\"126\";s:6:\"handle\";s:20:\"object_wacom_pen.png\";s:4:\"name\";s:17:\"Wacom Drawing Pen\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:2;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1060\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:118650;s:4:\"orig\";i:83713;}}i:50;a:13:{s:2:\"id\";s:3:\"125\";s:6:\"handle\";s:21:\"object_occulus_vr.png\";s:4:\"name\";s:23:\"Occulus Virtual Reality\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:16941;s:4:\"orig\";i:419726;}}i:51;a:13:{s:2:\"id\";s:3:\"124\";s:6:\"handle\";s:18:\"object_antenna.png\";s:4:\"name\";s:13:\"Antenna Radar\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:23620;s:4:\"orig\";i:734047;}}i:52;a:13:{s:2:\"id\";s:3:\"123\";s:6:\"handle\";s:21:\"object_solarpanel.png\";s:4:\"name\";s:11:\"Solar Panel\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:21088;s:4:\"orig\";i:683735;}}i:53;a:13:{s:2:\"id\";s:3:\"122\";s:6:\"handle\";s:16:\"object_wacom.png\";s:4:\"name\";s:20:\"Wacom Drawing Tablet\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:2;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:121307;s:4:\"orig\";i:454357;}}i:54;a:13:{s:2:\"id\";s:3:\"121\";s:6:\"handle\";s:18:\"object_earth_2.png\";s:4:\"name\";s:20:\"Earth Globe Planet 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:39586;s:4:\"orig\";i:1296460;}}i:55;a:13:{s:2:\"id\";s:3:\"120\";s:6:\"handle\";s:18:\"object_chair_1.png\";s:4:\"name\";s:12:\"Office Chair\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:21396;s:4:\"orig\";i:835061;}}i:56;a:13:{s:2:\"id\";s:3:\"119\";s:6:\"handle\";s:24:\"object_windturbine_2.png\";s:4:\"name\";s:14:\"Wind Turbine 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:9545;s:4:\"orig\";i:197811;}}i:57;a:13:{s:2:\"id\";s:3:\"118\";s:6:\"handle\";s:22:\"object_windturbine.png\";s:4:\"name\";s:12:\"Wind Turbine\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:12033;s:4:\"orig\";i:168991;}}i:58;a:13:{s:2:\"id\";s:3:\"117\";s:6:\"handle\";s:16:\"object_earth.png\";s:4:\"name\";s:18:\"Earth Globe Planet\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:39587;s:4:\"orig\";i:1318549;}}i:59;a:13:{s:2:\"id\";s:2:\"88\";s:6:\"handle\";s:24:\"object_eiffeltower_2.png\";s:4:\"name\";s:13:\"Eiffeltower 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"700\";s:6:\"height\";s:3:\"700\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:137321;s:4:\"orig\";i:211275;}}i:60;a:13:{s:2:\"id\";s:2:\"87\";s:6:\"handle\";s:21:\"object_notebook_1.png\";s:4:\"name\";s:11:\"Notebook PC\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:14164;s:4:\"orig\";i:731428;}}i:61;a:13:{s:2:\"id\";s:2:\"86\";s:6:\"handle\";s:20:\"object_macbook_1.png\";s:4:\"name\";s:20:\"Apple Macbook Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:130362;s:4:\"orig\";i:908876;}}i:62;a:13:{s:2:\"id\";s:2:\"85\";s:6:\"handle\";s:18:\"object_canon_2.png\";s:4:\"name\";s:21:\"Canon Camera DSLR Top\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:132862;s:4:\"orig\";i:925492;}}i:63;a:13:{s:2:\"id\";s:2:\"84\";s:6:\"handle\";s:19:\"object_iphone_3.png\";s:4:\"name\";s:25:\"Apple iPhone Silver White\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:119015;s:4:\"orig\";i:133010;}}i:64;a:13:{s:2:\"id\";s:2:\"83\";s:6:\"handle\";s:18:\"object_candy_2.png\";s:4:\"name\";s:15:\"Candy Colored 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:28476;s:4:\"orig\";i:203448;}}i:65;a:13:{s:2:\"id\";s:2:\"82\";s:6:\"handle\";s:21:\"object_macmouse_1.png\";s:4:\"name\";s:15:\"Apple Mac Mouse\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:120592;s:4:\"orig\";i:133753;}}i:66;a:13:{s:2:\"id\";s:2:\"81\";s:6:\"handle\";s:19:\"object_iphone_1.png\";s:4:\"name\";s:18:\"Apple iPhone Black\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:119554;s:4:\"orig\";i:160622;}}i:67;a:13:{s:2:\"id\";s:2:\"80\";s:6:\"handle\";s:17:\"object_deco_1.png\";s:4:\"name\";s:17:\"White Deco Object\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:14058;s:4:\"orig\";i:98209;}}i:68;a:13:{s:2:\"id\";s:2:\"79\";s:6:\"handle\";s:23:\"object_applewatch_1.png\";s:4:\"name\";s:24:\"Apple Watch White Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:126007;s:4:\"orig\";i:137953;}}i:69;a:13:{s:2:\"id\";s:2:\"78\";s:6:\"handle\";s:23:\"object_swissknife_1.png\";s:4:\"name\";s:11:\"Swiss Knife\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:124418;s:4:\"orig\";i:108064;}}i:70;a:13:{s:2:\"id\";s:2:\"77\";s:6:\"handle\";s:23:\"object_applewatch_2.png\";s:4:\"name\";s:17:\"Apple Watch Black\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:125639;s:4:\"orig\";i:131820;}}i:71;a:13:{s:2:\"id\";s:2:\"76\";s:6:\"handle\";s:18:\"object_candy_1.png\";s:4:\"name\";s:13:\"Candy Colored\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:11948;s:4:\"orig\";i:74707;}}i:72;a:13:{s:2:\"id\";s:2:\"75\";s:6:\"handle\";s:17:\"object_ipad_1.png\";s:4:\"name\";s:16:\"Apple iPad Black\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:115633;s:4:\"orig\";i:176188;}}i:73;a:13:{s:2:\"id\";s:2:\"74\";s:6:\"handle\";s:17:\"object_lamp_2.png\";s:4:\"name\";s:15:\"Black Desk Lamp\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:121535;s:4:\"orig\";i:315586;}}i:74;a:13:{s:2:\"id\";s:2:\"73\";s:6:\"handle\";s:18:\"object_canon_1.png\";s:4:\"name\";s:17:\"Canon Camera DLSR\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:133693;s:4:\"orig\";i:907152;}}i:75;a:13:{s:2:\"id\";s:2:\"72\";s:6:\"handle\";s:23:\"object_blackberry_2.png\";s:4:\"name\";s:12:\"Blackberry 3\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:11689;s:4:\"orig\";i:183976;}}i:76;a:13:{s:2:\"id\";s:2:\"71\";s:6:\"handle\";s:19:\"object_iphone_2.png\";s:4:\"name\";s:19:\"Apple iPhone Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:119147;s:4:\"orig\";i:164255;}}i:77;a:13:{s:2:\"id\";s:2:\"70\";s:6:\"handle\";s:17:\"object_ipad_2.png\";s:4:\"name\";s:15:\"Apple iPad Gold\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:9499;s:4:\"orig\";i:358634;}}i:78;a:13:{s:2:\"id\";s:2:\"69\";s:6:\"handle\";s:20:\"object_printer_1.png\";s:4:\"name\";s:7:\"Printer\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:14203;s:4:\"orig\";i:523017;}}i:79;a:13:{s:2:\"id\";s:2:\"68\";s:6:\"handle\";s:20:\"object_pcmouse_1.png\";s:4:\"name\";s:14:\"Black PC Mouse\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:10702;s:4:\"orig\";i:121030;}}i:80;a:13:{s:2:\"id\";s:2:\"67\";s:6:\"handle\";s:17:\"object_ipad_3.png\";s:4:\"name\";s:17:\"Apple iPad Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:9002;s:4:\"orig\";i:338072;}}i:81;a:13:{s:2:\"id\";s:2:\"66\";s:6:\"handle\";s:17:\"object_lamp_1.png\";s:4:\"name\";s:13:\"Desk Lamp Top\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:121622;s:4:\"orig\";i:211345;}}i:82;a:13:{s:2:\"id\";s:2:\"65\";s:6:\"handle\";s:22:\"object_macscreen_1.png\";s:4:\"name\";s:16:\"Apple Mac Screen\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:122962;s:4:\"orig\";i:353407;}}i:83;a:13:{s:2:\"id\";s:2:\"64\";s:6:\"handle\";s:23:\"object_blackberry_3.png\";s:4:\"name\";s:12:\"Blackberry 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:7170;s:4:\"orig\";i:118827;}}i:84;a:13:{s:2:\"id\";s:2:\"63\";s:6:\"handle\";s:23:\"object_applewatch_3.png\";s:4:\"name\";s:16:\"Apple Watch Gold\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:125910;s:4:\"orig\";i:126452;}}i:85;a:13:{s:2:\"id\";s:2:\"62\";s:6:\"handle\";s:23:\"object_blackberry_1.png\";s:4:\"name\";s:10:\"Blackberry\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:12207;s:4:\"orig\";i:177730;}}i:86;a:13:{s:2:\"id\";s:2:\"49\";s:6:\"handle\";s:19:\"object_bottle_1.png\";s:4:\"name\";s:18:\"Brown Glass Bottle\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:13663;s:4:\"orig\";i:833006;}}i:87;a:13:{s:2:\"id\";s:2:\"48\";s:6:\"handle\";s:20:\"object_glasses_1.png\";s:4:\"name\";s:19:\"Hipster Glasses Top\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:9899;s:4:\"orig\";i:247486;}}i:88;a:13:{s:2:\"id\";s:2:\"47\";s:6:\"handle\";s:21:\"object_magazine_1.png\";s:4:\"name\";s:14:\"Blank Magazine\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:7169;s:4:\"orig\";i:522980;}}i:89;a:13:{s:2:\"id\";s:2:\"46\";s:6:\"handle\";s:28:\"object_leatherdocument_2.png\";s:4:\"name\";s:24:\"Black Leather Document 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:12411;s:4:\"orig\";i:1051815;}}i:90;a:13:{s:2:\"id\";s:2:\"45\";s:6:\"handle\";s:18:\"object_purse_2.png\";s:4:\"name\";s:13:\"Black Purse 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:14974;s:4:\"orig\";i:1082610;}}i:91;a:13:{s:2:\"id\";s:2:\"44\";s:6:\"handle\";s:23:\"object_typewriter_1.png\";s:4:\"name\";s:18:\"Retro Typewriter 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:26819;s:4:\"orig\";i:1283468;}}i:92;a:13:{s:2:\"id\";s:2:\"43\";s:6:\"handle\";s:17:\"object_book_5.png\";s:4:\"name\";s:9:\"Old Books\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:22713;s:4:\"orig\";i:1335327;}}i:93;a:13:{s:2:\"id\";s:2:\"42\";s:6:\"handle\";s:28:\"object_leatherdocument_1.png\";s:4:\"name\";s:29:\"Black Leather Document Closed\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:5513;s:4:\"orig\";i:477513;}}i:94;a:13:{s:2:\"id\";s:2:\"41\";s:6:\"handle\";s:17:\"object_book_4.png\";s:4:\"name\";s:8:\"Old Book\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:24077;s:4:\"orig\";i:1392352;}}i:95;a:13:{s:2:\"id\";s:2:\"40\";s:6:\"handle\";s:19:\"object_wallet_2.png\";s:4:\"name\";s:22:\"Black Leather Document\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:11502;s:4:\"orig\";i:779077;}}i:96;a:13:{s:2:\"id\";s:2:\"39\";s:6:\"handle\";s:18:\"object_quill_2.png\";s:4:\"name\";s:15:\"Quill Feather 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:7975;s:4:\"orig\";i:323107;}}i:97;a:13:{s:2:\"id\";s:2:\"38\";s:6:\"handle\";s:24:\"object_eiffeltower_1.png\";s:4:\"name\";s:11:\"Eiffeltower\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:129564;s:4:\"orig\";i:432451;}}i:98;a:13:{s:2:\"id\";s:2:\"37\";s:6:\"handle\";s:21:\"object_magazine_2.png\";s:4:\"name\";s:11:\"Open Book 3\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1333\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:6743;s:4:\"orig\";i:479348;}}i:99;a:13:{s:2:\"id\";s:2:\"36\";s:6:\"handle\";s:17:\"object_book_1.png\";s:4:\"name\";s:10:\"Blank Book\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:3910;s:4:\"orig\";i:246373;}}i:100;a:13:{s:2:\"id\";s:2:\"35\";s:6:\"handle\";s:20:\"object_glasses_2.png\";s:4:\"name\";s:15:\"Hipster Glasses\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:9677;s:4:\"orig\";i:154608;}}i:101;a:13:{s:2:\"id\";s:2:\"34\";s:6:\"handle\";s:17:\"object_book_2.png\";s:4:\"name\";s:11:\"Open Book 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:5998;s:4:\"orig\";i:447839;}}i:102;a:13:{s:2:\"id\";s:2:\"33\";s:6:\"handle\";s:19:\"object_gloves_1.png\";s:4:\"name\";s:12:\"Black Gloves\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:10117;s:4:\"orig\";i:559800;}}i:103;a:13:{s:2:\"id\";s:2:\"32\";s:6:\"handle\";s:23:\"object_typewriter_2.png\";s:4:\"name\";s:16:\"Retro Typewriter\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:24853;s:4:\"orig\";i:1214851;}}i:104;a:13:{s:2:\"id\";s:2:\"31\";s:6:\"handle\";s:17:\"object_book_3.png\";s:4:\"name\";s:9:\"Open Book\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:18163;s:4:\"orig\";i:1098732;}}i:105;a:13:{s:2:\"id\";s:2:\"30\";s:6:\"handle\";s:19:\"object_wallet_1.png\";s:4:\"name\";s:12:\"Black Wallet\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:5457;s:4:\"orig\";i:320148;}}i:106;a:13:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:18:\"object_purse_1.png\";s:4:\"name\";s:11:\"Black Purse\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:13313;s:4:\"orig\";i:828871;}}i:107;a:13:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:18:\"object_quill_1.png\";s:4:\"name\";s:13:\"Quill Feather\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:5901;s:4:\"orig\";i:268842;}}i:108;a:13:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:19:\"object_artbox_2.png\";s:4:\"name\";s:16:\"Art Box Colors 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:37178;s:4:\"orig\";i:1972817;}}i:109;a:13:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:18:\"object_cloth_1.png\";s:4:\"name\";s:17:\"Cloth Paint Color\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:26589;s:4:\"orig\";i:851135;}}i:110;a:13:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:21:\"object_brushpot_1.png\";s:4:\"name\";s:9:\"Brush Pot\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"984\";s:6:\"height\";s:3:\"984\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:13334;s:4:\"orig\";i:225651;}}i:111;a:13:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:24:\"object_paintbucket_1.png\";s:4:\"name\";s:12:\"Paint Bucket\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:17640;s:4:\"orig\";i:719125;}}i:112;a:13:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:23:\"object_paintbrush_2.png\";s:4:\"name\";s:12:\"Paintbrush 3\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"700\";s:6:\"height\";s:3:\"700\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:8897;s:4:\"orig\";i:83416;}}i:113;a:13:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:19:\"object_artbox_1.png\";s:4:\"name\";s:14:\"Art Box Colors\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:29174;s:4:\"orig\";i:1663503;}}i:114;a:13:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:23:\"object_paintbrush_3.png\";s:4:\"name\";s:12:\"Paintbrush 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1100\";s:6:\"height\";s:4:\"1100\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:3668;s:4:\"orig\";i:69153;}}i:115;a:13:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:23:\"object_paintbrush_1.png\";s:4:\"name\";s:12:\"Paintbrush 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:3179;s:4:\"orig\";i:45340;}}i:116;a:13:{s:2:\"id\";s:2:\"11\";s:6:\"handle\";s:21:\"table_radio_right.png\";s:4:\"name\";s:18:\"Radio Speaker Wood\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:21907;s:4:\"orig\";i:937495;}}i:117;a:13:{s:2:\"id\";s:2:\"10\";s:6:\"handle\";s:18:\"keyboard_apple.png\";s:4:\"name\";s:14:\"Apple Keyboard\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:124560;s:4:\"orig\";i:575796;}}i:118;a:13:{s:2:\"id\";s:1:\"9\";s:6:\"handle\";s:20:\"macbook_top_gold.png\";s:4:\"name\";s:18:\"Apple Macbook Gold\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:20553;s:4:\"orig\";i:734042;}}i:119;a:13:{s:2:\"id\";s:1:\"8\";s:6:\"handle\";s:21:\"nexus6_front_blue.png\";s:4:\"name\";s:19:\"Google Nexus 6 Blue\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1100\";s:6:\"height\";s:4:\"1100\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:9048;s:4:\"orig\";i:129827;}}i:120;a:13:{s:2:\"id\";s:3:\"479\";s:6:\"handle\";s:31:\"Tram-beside-waiting-station.jpg\";s:4:\"name\";s:27:\"Tram beside waiting station\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1450\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:52:06\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:19226;s:4:\"orig\";i:758093;}}i:121;a:13:{s:2:\"id\";s:3:\"478\";s:6:\"handle\";s:14:\"Pulling-up.jpg\";s:4:\"name\";s:10:\"Pulling up\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1297\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:41:20\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:12387;s:4:\"orig\";i:472820;}}i:122;a:13:{s:2:\"id\";s:3:\"477\";s:6:\"handle\";s:16:\"Snowboarding.jpg\";s:4:\"name\";s:12:\"Snowboarding\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1290\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:41:20\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:10972;s:4:\"orig\";i:380716;}}i:123;a:13:{s:2:\"id\";s:3:\"476\";s:6:\"handle\";s:16:\"Morning-yoga.jpg\";s:4:\"name\";s:12:\"Morning yoga\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1346\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:12394;s:4:\"orig\";i:959761;}}i:124;a:13:{s:2:\"id\";s:3:\"475\";s:6:\"handle\";s:8:\"Yoga.jpg\";s:4:\"name\";s:4:\"Yoga\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1079\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:11474;s:4:\"orig\";i:284282;}}i:125;a:13:{s:2:\"id\";s:3:\"474\";s:6:\"handle\";s:14:\"Golf-balls.jpg\";s:4:\"name\";s:10:\"Golf balls\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:13395;s:4:\"orig\";i:519568;}}i:126;a:13:{s:2:\"id\";s:3:\"473\";s:6:\"handle\";s:19:\"Confident-Boxer.jpg\";s:4:\"name\";s:15:\"Confident Boxer\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:15367;s:4:\"orig\";i:364626;}}i:127;a:13:{s:2:\"id\";s:3:\"472\";s:6:\"handle\";s:11:\"Aerobic.jpg\";s:4:\"name\";s:7:\"Aerobic\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:16174;s:4:\"orig\";i:265728;}}i:128;a:13:{s:2:\"id\";s:3:\"471\";s:6:\"handle\";s:18:\"Riding-bicycle.jpg\";s:4:\"name\";s:14:\"Riding bicycle\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1358\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:7677;s:4:\"orig\";i:256526;}}i:129;a:13:{s:2:\"id\";s:3:\"470\";s:6:\"handle\";s:27:\"woman-with-barbell-back.jpg\";s:4:\"name\";s:23:\"woman with barbell back\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:12408;s:4:\"orig\";i:354771;}}i:130;a:13:{s:2:\"id\";s:3:\"469\";s:6:\"handle\";s:24:\"Woman-lying-on-floor.jpg\";s:4:\"name\";s:20:\"Woman lying on floor\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1318\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:17621;s:4:\"orig\";i:673109;}}i:131;a:13:{s:2:\"id\";s:3:\"468\";s:6:\"handle\";s:27:\"Holding-black-dumbbells.jpg\";s:4:\"name\";s:23:\"Holding black dumbbells\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1275\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:9464;s:4:\"orig\";i:180683;}}i:132;a:13:{s:2:\"id\";s:3:\"467\";s:6:\"handle\";s:25:\"Woman-using-dumbbells.jpg\";s:4:\"name\";s:21:\"Woman using dumbbells\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1425\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:16190;s:4:\"orig\";i:381967;}}i:133;a:13:{s:2:\"id\";s:3:\"466\";s:6:\"handle\";s:16:\"Soccer-cleat.jpg\";s:4:\"name\";s:12:\"Soccer cleat\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:26583;s:4:\"orig\";i:792941;}}i:134;a:13:{s:2:\"id\";s:3:\"465\";s:6:\"handle\";s:16:\"Soccer-field.jpg\";s:4:\"name\";s:12:\"Soccer field\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:17464;s:4:\"orig\";i:394604;}}i:135;a:13:{s:2:\"id\";s:3:\"464\";s:6:\"handle\";s:23:\"Man-tying-his-shoes.jpg\";s:4:\"name\";s:19:\"Man tying his shoes\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1200\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:19126;s:4:\"orig\";i:403268;}}i:136;a:13:{s:2:\"id\";s:3:\"463\";s:6:\"handle\";s:10:\"Boxing.jpg\";s:4:\"name\";s:6:\"Boxing\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:16597;s:4:\"orig\";i:552042;}}i:137;a:13:{s:2:\"id\";s:3:\"462\";s:6:\"handle\";s:22:\"woman-with-barbell.jpg\";s:4:\"name\";s:18:\"woman with barbell\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:16027;s:4:\"orig\";i:430912;}}i:138;a:13:{s:2:\"id\";s:3:\"461\";s:6:\"handle\";s:12:\"Crossfit.jpg\";s:4:\"name\";s:8:\"Crossfit\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:15961;s:4:\"orig\";i:706482;}}i:139;a:13:{s:2:\"id\";s:3:\"460\";s:6:\"handle\";s:25:\"Man-and-woman-jogging.jpg\";s:4:\"name\";s:21:\"Man and woman jogging\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:20286;s:4:\"orig\";i:704324;}}i:140;a:13:{s:2:\"id\";s:3:\"459\";s:6:\"handle\";s:16:\"Playing-golf.jpg\";s:4:\"name\";s:12:\"Playing golf\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:10077;s:4:\"orig\";i:197347;}}i:141;a:13:{s:2:\"id\";s:3:\"458\";s:6:\"handle\";s:18:\"Surfer-in-wave.jpg\";s:4:\"name\";s:14:\"Surfer in wave\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:14092;s:4:\"orig\";i:517927;}}i:142;a:13:{s:2:\"id\";s:3:\"457\";s:6:\"handle\";s:25:\"Woman-lifting-barbell.jpg\";s:4:\"name\";s:21:\"Woman lifting barbell\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:18629;s:4:\"orig\";i:620706;}}i:143;a:13:{s:2:\"id\";s:3:\"456\";s:6:\"handle\";s:14:\"Stretching.jpg\";s:4:\"name\";s:10:\"Stretching\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:10220;s:4:\"orig\";i:348322;}}i:144;a:13:{s:2:\"id\";s:3:\"455\";s:6:\"handle\";s:18:\"Snowboarding-2.jpg\";s:4:\"name\";s:14:\"Snowboarding 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:6348;s:4:\"orig\";i:211494;}}i:145;a:13:{s:2:\"id\";s:3:\"454\";s:6:\"handle\";s:11:\"Balance.jpg\";s:4:\"name\";s:7:\"Balance\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1920\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:9826;s:4:\"orig\";i:377551;}}i:146;a:13:{s:2:\"id\";s:3:\"453\";s:6:\"handle\";s:19:\"Pool-meditation.jpg\";s:4:\"name\";s:15:\"Pool meditation\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:13862;s:4:\"orig\";i:454028;}}i:147;a:13:{s:2:\"id\";s:3:\"452\";s:6:\"handle\";s:18:\"Soccer-stadium.jpg\";s:4:\"name\";s:14:\"Soccer stadium\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:18636;s:4:\"orig\";i:785357;}}i:148;a:13:{s:2:\"id\";s:3:\"451\";s:6:\"handle\";s:25:\"Soccer-field-top-view.jpg\";s:4:\"name\";s:21:\"Soccer field top view\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:17409;s:4:\"orig\";i:996686;}}i:149;a:13:{s:2:\"id\";s:3:\"450\";s:6:\"handle\";s:14:\"Basketball.jpg\";s:4:\"name\";s:10:\"Basketball\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:12053;s:4:\"orig\";i:916937;}}i:150;a:13:{s:2:\"id\";s:3:\"449\";s:6:\"handle\";s:14:\"in-the-fog.jpg\";s:4:\"name\";s:10:\"in the fog\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:3887;s:4:\"orig\";i:154603;}}i:151;a:13:{s:2:\"id\";s:3:\"448\";s:6:\"handle\";s:13:\"Handstand.jpg\";s:4:\"name\";s:9:\"Handstand\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1079\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:16305;s:4:\"orig\";i:483681;}}i:152;a:13:{s:2:\"id\";s:3:\"447\";s:6:\"handle\";s:11:\"Friends.jpg\";s:4:\"name\";s:7:\"Friends\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:12105;s:4:\"orig\";i:314746;}}i:153;a:13:{s:2:\"id\";s:3:\"446\";s:6:\"handle\";s:28:\"Sneakers-on-the-railroad.jpg\";s:4:\"name\";s:24:\"Sneakers on the railroad\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:18137;s:4:\"orig\";i:371805;}}i:154;a:13:{s:2:\"id\";s:3:\"445\";s:6:\"handle\";s:23:\"Family-on-the-ocean.jpg\";s:4:\"name\";s:19:\"Family on the ocean\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:11586;s:4:\"orig\";i:354781;}}i:155;a:13:{s:2:\"id\";s:3:\"444\";s:6:\"handle\";s:10:\"Sunset.jpg\";s:4:\"name\";s:6:\"Sunset\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:9848;s:4:\"orig\";i:195359;}}i:156;a:13:{s:2:\"id\";s:3:\"443\";s:6:\"handle\";s:9:\"Books.jpg\";s:4:\"name\";s:5:\"Books\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1275\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:10089;s:4:\"orig\";i:218538;}}i:157;a:13:{s:2:\"id\";s:3:\"442\";s:6:\"handle\";s:25:\"Looking-at-the-window.jpg\";s:4:\"name\";s:21:\"Looking at the window\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:16403;s:4:\"orig\";i:547096;}}i:158;a:13:{s:2:\"id\";s:3:\"441\";s:6:\"handle\";s:48:\"woman-standing-near-buildings-during-daytime.jpg\";s:4:\"name\";s:44:\"woman standing near buildings during daytime\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:19188;s:4:\"orig\";i:371592;}}i:159;a:13:{s:2:\"id\";s:3:\"440\";s:6:\"handle\";s:12:\"Lollipop.jpg\";s:4:\"name\";s:8:\"Lollipop\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1395\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:15157;s:4:\"orig\";i:658386;}}i:160;a:13:{s:2:\"id\";s:3:\"439\";s:6:\"handle\";s:26:\"People-crossing-street.jpg\";s:4:\"name\";s:22:\"People crossing street\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:24833;s:4:\"orig\";i:942816;}}i:161;a:13:{s:2:\"id\";s:3:\"438\";s:6:\"handle\";s:24:\"Friends-on-the-shore.jpg\";s:4:\"name\";s:20:\"Friends on the shore\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:15887;s:4:\"orig\";i:345362;}}i:162;a:13:{s:2:\"id\";s:3:\"437\";s:6:\"handle\";s:13:\"Coworkers.jpg\";s:4:\"name\";s:9:\"Coworkers\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:15665;s:4:\"orig\";i:407640;}}i:163;a:13:{s:2:\"id\";s:3:\"436\";s:6:\"handle\";s:27:\"Hiking-in-the-Dolomites.jpg\";s:4:\"name\";s:23:\"Hiking in the Dolomites\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:19443;s:4:\"orig\";i:844506;}}i:164;a:13:{s:2:\"id\";s:3:\"435\";s:6:\"handle\";s:18:\"Successful-man.jpg\";s:4:\"name\";s:14:\"Successful man\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:15564;s:4:\"orig\";i:573777;}}i:165;a:13:{s:2:\"id\";s:3:\"434\";s:6:\"handle\";s:23:\"Beautiful-sunny-day.jpg\";s:4:\"name\";s:19:\"Beautiful sunny day\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:13337;s:4:\"orig\";i:762091;}}i:166;a:13:{s:2:\"id\";s:3:\"433\";s:6:\"handle\";s:8:\"Guys.jpg\";s:4:\"name\";s:4:\"Guys\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:16746;s:4:\"orig\";i:365391;}}i:167;a:13:{s:2:\"id\";s:3:\"432\";s:6:\"handle\";s:19:\"Confetti-Shower.jpg\";s:4:\"name\";s:15:\"Confetti Shower\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:12699;s:4:\"orig\";i:427166;}}i:168;a:13:{s:2:\"id\";s:3:\"431\";s:6:\"handle\";s:24:\"Sun-was-setting-down.jpg\";s:4:\"name\";s:20:\"Sun was setting down\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:4748;s:4:\"orig\";i:238506;}}i:169;a:13:{s:2:\"id\";s:3:\"430\";s:6:\"handle\";s:9:\"Jumps.jpg\";s:4:\"name\";s:5:\"Jumps\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:19043;s:4:\"orig\";i:595277;}}i:170;a:13:{s:2:\"id\";s:3:\"429\";s:6:\"handle\";s:23:\"Friends-by-the-fire.jpg\";s:4:\"name\";s:19:\"Friends by the fire\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:11863;s:4:\"orig\";i:228649;}}i:171;a:13:{s:2:\"id\";s:3:\"428\";s:6:\"handle\";s:21:\"Under-the-blanket.jpg\";s:4:\"name\";s:17:\"Under the blanket\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1413\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:10878;s:4:\"orig\";i:313238;}}i:172;a:13:{s:2:\"id\";s:3:\"427\";s:6:\"handle\";s:18:\"Pretty-in-Pink.jpg\";s:4:\"name\";s:14:\"Pretty in Pink\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1394\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:7596;s:4:\"orig\";i:193734;}}i:173;a:13:{s:2:\"id\";s:3:\"426\";s:6:\"handle\";s:31:\"Discussions-at-a-long-table.jpg\";s:4:\"name\";s:27:\"Discussions at a long table\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1268\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:9305;s:4:\"orig\";i:223763;}}i:174;a:13:{s:2:\"id\";s:3:\"425\";s:6:\"handle\";s:18:\"Lost-in-Lemons.jpg\";s:4:\"name\";s:14:\"Lost in Lemons\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:23289;s:4:\"orig\";i:699269;}}i:175;a:13:{s:2:\"id\";s:3:\"424\";s:6:\"handle\";s:13:\"Team-work.jpg\";s:4:\"name\";s:9:\"Team work\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:16638;s:4:\"orig\";i:415507;}}i:176;a:13:{s:2:\"id\";s:3:\"423\";s:6:\"handle\";s:20:\"Romantic-evening.jpg\";s:4:\"name\";s:16:\"Romantic evening\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1263\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:11706;s:4:\"orig\";i:310875;}}i:177;a:13:{s:2:\"id\";s:3:\"422\";s:6:\"handle\";s:19:\"Crew-collective.jpg\";s:4:\"name\";s:15:\"Crew collective\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:18880;s:4:\"orig\";i:531273;}}i:178;a:13:{s:2:\"id\";s:3:\"421\";s:6:\"handle\";s:8:\"Code.jpg\";s:4:\"name\";s:4:\"Code\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:20175;s:4:\"orig\";i:554813;}}i:179;a:13:{s:2:\"id\";s:3:\"420\";s:6:\"handle\";s:48:\"Yellow-ceramic-mug-beside-gray-aluminum-iMac.jpg\";s:4:\"name\";s:44:\"Yellow ceramic mug beside gray aluminum iMac\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:6818;s:4:\"orig\";i:122809;}}i:180;a:13:{s:2:\"id\";s:3:\"419\";s:6:\"handle\";s:11:\"My-desk.jpg\";s:4:\"name\";s:7:\"My desk\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1315\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:8776;s:4:\"orig\";i:190452;}}i:181;a:13:{s:2:\"id\";s:3:\"418\";s:6:\"handle\";s:17:\"Cooperation-2.jpg\";s:4:\"name\";s:13:\"Cooperation 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:52127;s:4:\"orig\";i:352596;}}i:182;a:13:{s:2:\"id\";s:3:\"417\";s:6:\"handle\";s:33:\"MacBook-on-top-of-brown-table.jpg\";s:4:\"name\";s:29:\"MacBook on top of brown table\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:8878;s:4:\"orig\";i:183427;}}i:183;a:13:{s:2:\"id\";s:3:\"416\";s:6:\"handle\";s:27:\"Beautiful-working-place.jpg\";s:4:\"name\";s:23:\"Beautiful working place\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:15887;s:4:\"orig\";i:368977;}}i:184;a:13:{s:2:\"id\";s:3:\"415\";s:6:\"handle\";s:14:\"Typewriter.jpg\";s:4:\"name\";s:10:\"Typewriter\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:15080;s:4:\"orig\";i:707157;}}i:185;a:13:{s:2:\"id\";s:3:\"414\";s:6:\"handle\";s:19:\"White-desk-lamp.jpg\";s:4:\"name\";s:15:\"White desk lamp\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:5473;s:4:\"orig\";i:288675;}}i:186;a:13:{s:2:\"id\";s:3:\"413\";s:6:\"handle\";s:18:\"Office-working.jpg\";s:4:\"name\";s:14:\"Office working\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:19262;s:4:\"orig\";i:513524;}}i:187;a:13:{s:2:\"id\";s:3:\"412\";s:6:\"handle\";s:36:\"Silver-iMac-on-brown-wooden-desk.jpg\";s:4:\"name\";s:32:\"Silver iMac on brown wooden desk\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1240\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:9810;s:4:\"orig\";i:317981;}}i:188;a:13:{s:2:\"id\";s:3:\"411\";s:6:\"handle\";s:23:\"Working-in-progress.jpg\";s:4:\"name\";s:19:\"Working in progress\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:15773;s:4:\"orig\";i:519696;}}i:189;a:13:{s:2:\"id\";s:3:\"410\";s:6:\"handle\";s:15:\"Cooperation.jpg\";s:4:\"name\";s:11:\"Cooperation\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:32647;s:4:\"orig\";i:350074;}}i:190;a:13:{s:2:\"id\";s:3:\"409\";s:6:\"handle\";s:17:\"Working-place.jpg\";s:4:\"name\";s:13:\"Working place\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:14643;s:4:\"orig\";i:314424;}}i:191;a:13:{s:2:\"id\";s:3:\"408\";s:6:\"handle\";s:16:\"Working-desk.jpg\";s:4:\"name\";s:12:\"Working desk\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:19823;s:4:\"orig\";i:511473;}}i:192;a:13:{s:2:\"id\";s:3:\"407\";s:6:\"handle\";s:23:\"low-angle-of-forest.jpg\";s:4:\"name\";s:19:\"low angle of forest\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:37262;s:4:\"orig\";i:1590451;}}i:193;a:13:{s:2:\"id\";s:3:\"406\";s:6:\"handle\";s:23:\"Lake-under-blue-sky.jpg\";s:4:\"name\";s:19:\"Lake under blue sky\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1351\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:13647;s:4:\"orig\";i:408622;}}i:194;a:13:{s:2:\"id\";s:3:\"405\";s:6:\"handle\";s:21:\"Blue-starry-night.jpg\";s:4:\"name\";s:17:\"Blue starry night\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:10075;s:4:\"orig\";i:216586;}}i:195;a:13:{s:2:\"id\";s:3:\"404\";s:6:\"handle\";s:22:\"Aerial-photography.jpg\";s:4:\"name\";s:18:\"Aerial photography\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:10969;s:4:\"orig\";i:405945;}}i:196;a:13:{s:2:\"id\";s:3:\"403\";s:6:\"handle\";s:14:\"Red-clouds.jpg\";s:4:\"name\";s:10:\"Red clouds\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:9975;s:4:\"orig\";i:257177;}}i:197;a:13:{s:2:\"id\";s:3:\"402\";s:6:\"handle\";s:14:\"Snow-field.jpg\";s:4:\"name\";s:10:\"Snow field\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1227\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:9598;s:4:\"orig\";i:300066;}}i:198;a:13:{s:2:\"id\";s:3:\"401\";s:6:\"handle\";s:13:\"White-sky.jpg\";s:4:\"name\";s:9:\"White sky\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:7588;s:4:\"orig\";i:184359;}}i:199;a:13:{s:2:\"id\";s:3:\"400\";s:6:\"handle\";s:24:\"Trees-covered-by-fog.jpg\";s:4:\"name\";s:20:\"Trees covered by fog\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:9507;s:4:\"orig\";i:290246;}}i:200;a:13:{s:2:\"id\";s:3:\"399\";s:6:\"handle\";s:26:\"Red-and-white-mushroom.jpg\";s:4:\"name\";s:22:\"Red and white mushroom\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:14875;s:4:\"orig\";i:324145;}}i:201;a:13:{s:2:\"id\";s:3:\"398\";s:6:\"handle\";s:24:\"Lake-near-pine-trees.jpg\";s:4:\"name\";s:20:\"Lake near pine trees\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:18138;s:4:\"orig\";i:736181;}}i:202;a:13:{s:2:\"id\";s:3:\"397\";s:6:\"handle\";s:35:\"After-a-long-day-of-backpacking.jpg\";s:4:\"name\";s:31:\"After a long day of backpacking\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:10664;s:4:\"orig\";i:411404;}}i:203;a:13:{s:2:\"id\";s:3:\"396\";s:6:\"handle\";s:32:\"Mountains-during-golden-hour.jpg\";s:4:\"name\";s:28:\"Mountains during golden hour\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:11609;s:4:\"orig\";i:273103;}}i:204;a:13:{s:2:\"id\";s:3:\"395\";s:6:\"handle\";s:27:\"Man-looking-on-mountain.jpg\";s:4:\"name\";s:23:\"Man looking on mountain\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:16837;s:4:\"orig\";i:456937;}}i:205;a:13:{s:2:\"id\";s:3:\"394\";s:6:\"handle\";s:19:\"Body-of-water-2.jpg\";s:4:\"name\";s:15:\"Body of water 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:13774;s:4:\"orig\";i:385875;}}i:206;a:13:{s:2:\"id\";s:3:\"393\";s:6:\"handle\";s:15:\"Brown-cliff.jpg\";s:4:\"name\";s:11:\"Brown cliff\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:12285;s:4:\"orig\";i:546492;}}i:207;a:13:{s:2:\"id\";s:3:\"392\";s:6:\"handle\";s:20:\"Green-foggy-tree.jpg\";s:4:\"name\";s:16:\"Green foggy tree\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1417\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:12631;s:4:\"orig\";i:540206;}}i:208;a:13:{s:2:\"id\";s:3:\"391\";s:6:\"handle\";s:32:\"Grayscale-photo-of-mountains.jpg\";s:4:\"name\";s:28:\"Grayscale photo of mountains\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:9964;s:4:\"orig\";i:309994;}}i:209;a:13:{s:2:\"id\";s:3:\"390\";s:6:\"handle\";s:19:\"Under-sunny-sky.jpg\";s:4:\"name\";s:15:\"Under sunny sky\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:13683;s:4:\"orig\";i:369417;}}i:210;a:13:{s:2:\"id\";s:3:\"389\";s:6:\"handle\";s:16:\"Rock-concert.jpg\";s:4:\"name\";s:12:\"Rock concert\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1443\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:15941;s:4:\"orig\";i:475914;}}i:211;a:13:{s:2:\"id\";s:3:\"388\";s:6:\"handle\";s:30:\"Group-of-people-in-concert.jpg\";s:4:\"name\";s:26:\"Group of people in concert\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:17854;s:4:\"orig\";i:371480;}}i:212;a:13:{s:2:\"id\";s:3:\"387\";s:6:\"handle\";s:6:\"DJ.jpg\";s:4:\"name\";s:2:\"DJ\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:17441;s:4:\"orig\";i:507045;}}i:213;a:13:{s:2:\"id\";s:3:\"386\";s:6:\"handle\";s:56:\"Woman-standing-watching-LED-light-musical-instrument.jpg\";s:4:\"name\";s:52:\"Woman standing watching LED light musical instrument\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:32396;s:4:\"orig\";i:750503;}}i:214;a:13:{s:2:\"id\";s:3:\"385\";s:6:\"handle\";s:16:\"Concert-hall.jpg\";s:4:\"name\";s:12:\"Concert hall\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:25355;s:4:\"orig\";i:517171;}}i:215;a:13:{s:2:\"id\";s:3:\"384\";s:6:\"handle\";s:18:\"Concert-hall-2.jpg\";s:4:\"name\";s:14:\"Concert hall 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:30467;s:4:\"orig\";i:1076108;}}i:216;a:13:{s:2:\"id\";s:3:\"383\";s:6:\"handle\";s:29:\"man-playing-upright-piano.jpg\";s:4:\"name\";s:25:\"man playing upright piano\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1340\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:17629;s:4:\"orig\";i:804567;}}i:217;a:13:{s:2:\"id\";s:3:\"382\";s:6:\"handle\";s:30:\"person-performing-on-stage.jpg\";s:4:\"name\";s:26:\"person performing on stage\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:12952;s:4:\"orig\";i:489898;}}i:218;a:13:{s:2:\"id\";s:3:\"381\";s:6:\"handle\";s:27:\"Brown-string-instrument.jpg\";s:4:\"name\";s:23:\"Brown string instrument\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1272\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:11065;s:4:\"orig\";i:384178;}}i:219;a:13:{s:2:\"id\";s:3:\"380\";s:6:\"handle\";s:36:\"silhouette-of-person-with-guitar.jpg\";s:4:\"name\";s:32:\"silhouette of person with guitar\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:6262;s:4:\"orig\";i:198960;}}i:220;a:13:{s:2:\"id\";s:3:\"379\";s:6:\"handle\";s:14:\"Party-fans.jpg\";s:4:\"name\";s:10:\"Party fans\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:16353;s:4:\"orig\";i:245636;}}i:221;a:13:{s:2:\"id\";s:3:\"378\";s:6:\"handle\";s:24:\"Condenser-microphone.jpg\";s:4:\"name\";s:20:\"Condenser microphone\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:6048;s:4:\"orig\";i:133907;}}i:222;a:13:{s:2:\"id\";s:3:\"377\";s:6:\"handle\";s:42:\"Low-angle-photo-of-high-rise-buildings.jpg\";s:4:\"name\";s:38:\"Low angle photo of high rise buildings\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:15187;s:4:\"orig\";i:450326;}}i:223;a:13:{s:2:\"id\";s:3:\"376\";s:6:\"handle\";s:23:\"High-rise-buildings.jpg\";s:4:\"name\";s:19:\"High rise buildings\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:17977;s:4:\"orig\";i:582673;}}i:224;a:13:{s:2:\"id\";s:3:\"375\";s:6:\"handle\";s:16:\"Cable-bridge.jpg\";s:4:\"name\";s:12:\"Cable bridge\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1272\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:20171;s:4:\"orig\";i:617346;}}i:225;a:13:{s:2:\"id\";s:3:\"374\";s:6:\"handle\";s:35:\"Bokeh-effect-from-street-lights.jpg\";s:4:\"name\";s:31:\"Bokeh effect from street lights\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:14937;s:4:\"orig\";i:227355;}}i:226;a:13:{s:2:\"id\";s:3:\"373\";s:6:\"handle\";s:18:\"Low-angle-view.jpg\";s:4:\"name\";s:14:\"Low angle view\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:9789;s:4:\"orig\";i:321713;}}i:227;a:13:{s:2:\"id\";s:3:\"372\";s:6:\"handle\";s:21:\"Double-decker-bus.jpg\";s:4:\"name\";s:17:\"Double decker bus\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1373\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:18374;s:4:\"orig\";i:642218;}}i:228;a:13:{s:2:\"id\";s:3:\"371\";s:6:\"handle\";s:32:\"Buildings-near-body-of-water.jpg\";s:4:\"name\";s:28:\"Buildings near body of water\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1370\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:17332;s:4:\"orig\";i:791283;}}i:229;a:13:{s:2:\"id\";s:3:\"370\";s:6:\"handle\";s:18:\"Satellite-view.jpg\";s:4:\"name\";s:14:\"Satellite view\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:28854;s:4:\"orig\";i:1228379;}}i:230;a:13:{s:2:\"id\";s:3:\"369\";s:6:\"handle\";s:14:\"Twin-Tower.jpg\";s:4:\"name\";s:10:\"Twin Tower\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:7529;s:4:\"orig\";i:263779;}}i:231;a:13:{s:2:\"id\";s:3:\"368\";s:6:\"handle\";s:22:\"Two-person-walking.jpg\";s:4:\"name\";s:18:\"Two person walking\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1345\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:18101;s:4:\"orig\";i:617407;}}i:232;a:13:{s:2:\"id\";s:3:\"367\";s:6:\"handle\";s:15:\"Sears-Tower.jpg\";s:4:\"name\";s:11:\"Sears Tower\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:18049;s:4:\"orig\";i:757700;}}i:233;a:13:{s:2:\"id\";s:3:\"366\";s:6:\"handle\";s:19:\"Night-cityscape.jpg\";s:4:\"name\";s:15:\"Night cityscape\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:18133;s:4:\"orig\";i:633849;}}i:234;a:13:{s:2:\"id\";s:3:\"365\";s:6:\"handle\";s:25:\"Empire-State-Building.jpg\";s:4:\"name\";s:21:\"Empire State Building\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:24430;s:4:\"orig\";i:954378;}}i:235;a:13:{s:2:\"id\";s:3:\"364\";s:6:\"handle\";s:9:\"Paris.jpg\";s:4:\"name\";s:5:\"Paris\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:16738;s:4:\"orig\";i:664032;}}i:236;a:13:{s:2:\"id\";s:3:\"363\";s:6:\"handle\";s:31:\"Building-during-golden-hour.jpg\";s:4:\"name\";s:27:\"Building during golden hour\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1288\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:17594;s:4:\"orig\";i:503413;}}i:237;a:13:{s:2:\"id\";s:3:\"362\";s:6:\"handle\";s:21:\"Afternoon-skyline.jpg\";s:4:\"name\";s:17:\"Afternoon skyline\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:15558;s:4:\"orig\";i:508616;}}i:238;a:13:{s:2:\"id\";s:3:\"361\";s:6:\"handle\";s:22:\"Concrete-buildings.jpg\";s:4:\"name\";s:18:\"Concrete buildings\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:14665;s:4:\"orig\";i:429256;}}i:239;a:13:{s:2:\"id\";s:3:\"360\";s:6:\"handle\";s:26:\"Architectural-building.jpg\";s:4:\"name\";s:22:\"Architectural building\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1382\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:20433;s:4:\"orig\";i:1162968;}}i:240;a:13:{s:2:\"id\";s:3:\"359\";s:6:\"handle\";s:23:\"Skyline-photography.jpg\";s:4:\"name\";s:19:\"Skyline photography\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:10872;s:4:\"orig\";i:289488;}}i:241;a:13:{s:2:\"id\";s:3:\"358\";s:6:\"handle\";s:38:\"People-standing-on-pedestrian-lane.jpg\";s:4:\"name\";s:34:\"People standing on pedestrian lane\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1154\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:17988;s:4:\"orig\";i:602577;}}i:242;a:13:{s:2:\"id\";s:3:\"357\";s:6:\"handle\";s:16:\"Burj-Khalifa.jpg\";s:4:\"name\";s:12:\"Burj Khalifa\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:9794;s:4:\"orig\";i:352053;}}i:243;a:13:{s:2:\"id\";s:3:\"356\";s:6:\"handle\";s:13:\"Skycraper.jpg\";s:4:\"name\";s:9:\"Skycraper\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:11735;s:4:\"orig\";i:370551;}}i:244;a:13:{s:2:\"id\";s:3:\"355\";s:6:\"handle\";s:14:\"Gray-tower.jpg\";s:4:\"name\";s:10:\"Gray tower\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1433\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:10397;s:4:\"orig\";i:280660;}}i:245;a:13:{s:2:\"id\";s:3:\"354\";s:6:\"handle\";s:28:\"One-fine-day-in-Maldives.jpg\";s:4:\"name\";s:24:\"One fine day in Maldives\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1116\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:26832;s:4:\"orig\";i:677097;}}i:246;a:13:{s:2:\"id\";s:3:\"353\";s:6:\"handle\";s:25:\"Boat-on-body-of-water.jpg\";s:4:\"name\";s:21:\"Boat on body of water\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:13591;s:4:\"orig\";i:846550;}}i:247;a:13:{s:2:\"id\";s:3:\"352\";s:6:\"handle\";s:33:\"Aerial-photo-of-body-of-water.jpg\";s:4:\"name\";s:29:\"Aerial photo of body of water\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1078\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:12138;s:4:\"orig\";i:511326;}}i:248;a:13:{s:2:\"id\";s:3:\"351\";s:6:\"handle\";s:31:\"Assorted-color-beach-houses.jpg\";s:4:\"name\";s:27:\"Assorted color beach houses\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1135\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:14005;s:4:\"orig\";i:392648;}}i:249;a:13:{s:2:\"id\";s:3:\"350\";s:6:\"handle\";s:36:\"Woman-leaning-on-tree-near-beach.jpg\";s:4:\"name\";s:32:\"Woman leaning on tree near beach\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1559\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:11612;s:4:\"orig\";i:688650;}}i:250;a:13:{s:2:\"id\";s:3:\"349\";s:6:\"handle\";s:17:\"Body-of-water.jpg\";s:4:\"name\";s:13:\"Body of water\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1269\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:28096;s:4:\"orig\";i:766943;}}i:251;a:13:{s:2:\"id\";s:3:\"348\";s:6:\"handle\";s:17:\"People-on-sea.jpg\";s:4:\"name\";s:13:\"People on sea\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:17419;s:4:\"orig\";i:759716;}}i:252;a:13:{s:2:\"id\";s:3:\"347\";s:6:\"handle\";s:31:\"Man-sitting-beside-of-woman.jpg\";s:4:\"name\";s:27:\"Man sitting beside of woman\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:10910;s:4:\"orig\";i:191059;}}i:253;a:13:{s:2:\"id\";s:3:\"346\";s:6:\"handle\";s:22:\"woman-in-the-water.jpg\";s:4:\"name\";s:18:\"woman in the water\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:24825;s:4:\"orig\";i:706226;}}i:254;a:13:{s:2:\"id\";s:3:\"345\";s:6:\"handle\";s:39:\"Brown-stone-near-sea-at-golden-hour.jpg\";s:4:\"name\";s:35:\"Brown stone near sea at golden hour\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:11091;s:4:\"orig\";i:300143;}}i:255;a:13:{s:2:\"id\";s:3:\"344\";s:6:\"handle\";s:18:\"Birds-eye-view.jpg\";s:4:\"name\";s:14:\"Birds eye view\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1079\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:15004;s:4:\"orig\";i:475888;}}i:256;a:13:{s:2:\"id\";s:3:\"343\";s:6:\"handle\";s:18:\"Empty-seashore.jpg\";s:4:\"name\";s:14:\"Empty seashore\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1365\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:13155;s:4:\"orig\";i:683645;}}i:257;a:13:{s:2:\"id\";s:3:\"342\";s:6:\"handle\";s:31:\"Seashore-during-golden-hour.jpg\";s:4:\"name\";s:27:\"Seashore during golden hour\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1439\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:15305;s:4:\"orig\";i:655207;}}i:258;a:13:{s:2:\"id\";s:3:\"341\";s:6:\"handle\";s:16:\"Coconut-tree.jpg\";s:4:\"name\";s:12:\"Coconut tree\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:17740;s:4:\"orig\";i:745183;}}i:259;a:13:{s:2:\"id\";s:3:\"340\";s:6:\"handle\";s:37:\"Aerial-photography-of-beach-shore.jpg\";s:4:\"name\";s:33:\"Aerial photography of beach shore\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1439\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:17442;s:4:\"orig\";i:641873;}}i:260;a:13:{s:2:\"id\";s:3:\"197\";s:6:\"handle\";s:17:\"relax_hammock.jpg\";s:4:\"name\";s:13:\"Relax Hammock\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:16088;s:4:\"orig\";i:241567;}}i:261;a:13:{s:2:\"id\";s:3:\"196\";s:6:\"handle\";s:16:\"beach_houses.jpg\";s:4:\"name\";s:12:\"Beach Houses\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:8512;s:4:\"orig\";i:267430;}}i:262;a:13:{s:2:\"id\";s:3:\"195\";s:6:\"handle\";s:17:\"forest_road_2.jpg\";s:4:\"name\";s:13:\"Forest Road 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:25804;s:4:\"orig\";i:908234;}}i:263;a:13:{s:2:\"id\";s:3:\"194\";s:6:\"handle\";s:14:\"clean_desk.jpg\";s:4:\"name\";s:10:\"Clean Desk\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:4691;s:4:\"orig\";i:108160;}}i:264;a:13:{s:2:\"id\";s:3:\"193\";s:6:\"handle\";s:19:\"mountain_view_6.jpg\";s:4:\"name\";s:15:\"Mountain View 6\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1249\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:12753;s:4:\"orig\";i:218714;}}i:265;a:13:{s:2:\"id\";s:3:\"192\";s:6:\"handle\";s:14:\"corn_field.jpg\";s:4:\"name\";s:10:\"Corn Field\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1320\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:19312;s:4:\"orig\";i:438345;}}i:266;a:13:{s:2:\"id\";s:3:\"191\";s:6:\"handle\";s:21:\"stylish_apartment.jpg\";s:4:\"name\";s:17:\"Stylish Apartment\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:16224;s:4:\"orig\";i:409547;}}i:267;a:13:{s:2:\"id\";s:3:\"190\";s:6:\"handle\";s:24:\"hipster_coffee_house.jpg\";s:4:\"name\";s:20:\"Hipster Coffee House\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:22344;s:4:\"orig\";i:432904;}}i:268;a:13:{s:2:\"id\";s:3:\"189\";s:6:\"handle\";s:16:\"blurry_beach.jpg\";s:4:\"name\";s:12:\"Blurry Beach\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:9431;s:4:\"orig\";i:220442;}}i:269;a:13:{s:2:\"id\";s:3:\"186\";s:6:\"handle\";s:17:\"greens_street.jpg\";s:4:\"name\";s:13:\"Greens Street\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:29538;s:4:\"orig\";i:733632;}}i:270;a:13:{s:2:\"id\";s:3:\"185\";s:6:\"handle\";s:10:\"desert.jpg\";s:4:\"name\";s:6:\"Desert\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:12859;s:4:\"orig\";i:430959;}}i:271;a:13:{s:2:\"id\";s:3:\"184\";s:6:\"handle\";s:19:\"mountain_view_5.jpg\";s:4:\"name\";s:15:\"Mountain View 5\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:13413;s:4:\"orig\";i:324558;}}i:272;a:13:{s:2:\"id\";s:3:\"183\";s:6:\"handle\";s:10:\"laptop.jpg\";s:4:\"name\";s:6:\"Laptop\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1391\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:11553;s:4:\"orig\";i:146076;}}i:273;a:13:{s:2:\"id\";s:3:\"182\";s:6:\"handle\";s:16:\"grand_canyon.jpg\";s:4:\"name\";s:12:\"Grand Canyon\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1287\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:21184;s:4:\"orig\";i:537577;}}i:274;a:13:{s:2:\"id\";s:3:\"181\";s:6:\"handle\";s:20:\"landscape_clouds.jpg\";s:4:\"name\";s:16:\"Landscape Clouds\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1272\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:14134;s:4:\"orig\";i:245565;}}i:275;a:13:{s:2:\"id\";s:3:\"180\";s:6:\"handle\";s:17:\"highway_night.jpg\";s:4:\"name\";s:13:\"Highway Night\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:16035;s:4:\"orig\";i:401592;}}i:276;a:13:{s:2:\"id\";s:3:\"179\";s:6:\"handle\";s:15:\"beach_water.jpg\";s:4:\"name\";s:11:\"Beach Water\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:12906;s:4:\"orig\";i:483885;}}i:277;a:13:{s:2:\"id\";s:3:\"177\";s:6:\"handle\";s:15:\"woman_beach.jpg\";s:4:\"name\";s:11:\"Woman Beach\";s:4:\"tags\";a:4:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:3;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:7834;s:4:\"orig\";i:80956;}}i:278;a:13:{s:2:\"id\";s:3:\"175\";s:6:\"handle\";s:12:\"cool_guy.jpg\";s:4:\"name\";s:8:\"Cool Guy\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:11452;s:4:\"orig\";i:175118;}}i:279;a:13:{s:2:\"id\";s:3:\"174\";s:6:\"handle\";s:13:\"beach_sea.jpg\";s:4:\"name\";s:9:\"Beach Sea\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:12170;s:4:\"orig\";i:236860;}}i:280;a:13:{s:2:\"id\";s:3:\"173\";s:6:\"handle\";s:17:\"bridge_clouds.jpg\";s:4:\"name\";s:13:\"Bridge Clouds\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:10268;s:4:\"orig\";i:117315;}}i:281;a:13:{s:2:\"id\";s:3:\"116\";s:6:\"handle\";s:19:\"mountain_view_2.jpg\";s:4:\"name\";s:15:\"Mountain View 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1275\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:12485;s:4:\"orig\";i:374567;}}i:282;a:13:{s:2:\"id\";s:3:\"115\";s:6:\"handle\";s:16:\"desert_trees.jpg\";s:4:\"name\";s:12:\"Desert Trees\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1275\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:8401;s:4:\"orig\";i:203253;}}i:283;a:13:{s:2:\"id\";s:3:\"114\";s:6:\"handle\";s:20:\"explore_moutains.jpg\";s:4:\"name\";s:17:\"Explore Mountains\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:12578;s:4:\"orig\";i:287796;}}i:284;a:13:{s:2:\"id\";s:3:\"113\";s:6:\"handle\";s:19:\"night_skyline_2.jpg\";s:4:\"name\";s:15:\"Night Skyline 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:8484;s:4:\"orig\";i:199508;}}i:285;a:13:{s:2:\"id\";s:3:\"112\";s:6:\"handle\";s:15:\"cliff_ocean.jpg\";s:4:\"name\";s:11:\"Cliff Ocean\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:16659;s:4:\"orig\";i:524922;}}i:286;a:13:{s:2:\"id\";s:3:\"111\";s:6:\"handle\";s:14:\"city_smoke.jpg\";s:4:\"name\";s:10:\"City Smoke\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:9240;s:4:\"orig\";i:109310;}}i:287;a:13:{s:2:\"id\";s:3:\"110\";s:6:\"handle\";s:16:\"surfer_beach.jpg\";s:4:\"name\";s:12:\"Surfer Beach\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:8288;s:4:\"orig\";i:216553;}}i:288;a:13:{s:2:\"id\";s:3:\"109\";s:6:\"handle\";s:13:\"sky_night.jpg\";s:4:\"name\";s:9:\"Sky Night\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:6855;s:4:\"orig\";i:234043;}}i:289;a:13:{s:2:\"id\";s:3:\"108\";s:6:\"handle\";s:15:\"palm_sunset.jpg\";s:4:\"name\";s:11:\"Palm Sunset\";s:4:\"tags\";a:4:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}i:3;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1372\";s:6:\"height\";s:4:\"1920\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:12347;s:4:\"orig\";i:238706;}}i:290;a:13:{s:2:\"id\";s:3:\"107\";s:6:\"handle\";s:18:\"concert_people.jpg\";s:4:\"name\";s:14:\"Concert People\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:7748;s:4:\"orig\";i:169462;}}i:291;a:13:{s:2:\"id\";s:3:\"106\";s:6:\"handle\";s:15:\"forest_road.jpg\";s:4:\"name\";s:11:\"Forest Road\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:10402;s:4:\"orig\";i:358403;}}i:292;a:13:{s:2:\"id\";s:3:\"105\";s:6:\"handle\";s:15:\"beach_ocean.jpg\";s:4:\"name\";s:11:\"Beach Ocean\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:12887;s:4:\"orig\";i:261525;}}i:293;a:13:{s:2:\"id\";s:3:\"104\";s:6:\"handle\";s:18:\"mountain_night.jpg\";s:4:\"name\";s:14:\"Mountain Night\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:2963;s:4:\"orig\";i:30890;}}i:294;a:13:{s:2:\"id\";s:3:\"103\";s:6:\"handle\";s:19:\"ocean_mountains.jpg\";s:4:\"name\";s:15:\"Ocean Mountains\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:10266;s:4:\"orig\";i:183341;}}i:295;a:13:{s:2:\"id\";s:3:\"102\";s:6:\"handle\";s:10:\"forest.jpg\";s:4:\"name\";s:6:\"Forest\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:8156;s:4:\"orig\";i:102119;}}i:296;a:13:{s:2:\"id\";s:3:\"101\";s:6:\"handle\";s:16:\"ocean_stones.jpg\";s:4:\"name\";s:12:\"Ocean Stones\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:10271;s:4:\"orig\";i:138495;}}i:297;a:13:{s:2:\"id\";s:3:\"100\";s:6:\"handle\";s:16:\"country_road.jpg\";s:4:\"name\";s:12:\"Country Road\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:11654;s:4:\"orig\";i:171098;}}i:298;a:13:{s:2:\"id\";s:2:\"99\";s:6:\"handle\";s:9:\"beach.jpg\";s:4:\"name\";s:5:\"Beach\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:10569;s:4:\"orig\";i:437331;}}i:299;a:13:{s:2:\"id\";s:2:\"98\";s:6:\"handle\";s:16:\"city_skyline.jpg\";s:4:\"name\";s:12:\"City Skyline\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:15739;s:4:\"orig\";i:446809;}}i:300;a:13:{s:2:\"id\";s:2:\"97\";s:6:\"handle\";s:17:\"night_skyline.jpg\";s:4:\"name\";s:13:\"Night Skyline\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}i:2;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:9456;s:4:\"orig\";i:206722;}}i:301;a:13:{s:2:\"id\";s:2:\"96\";s:6:\"handle\";s:14:\"city_river.jpg\";s:4:\"name\";s:10:\"City River\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:13833;s:4:\"orig\";i:341185;}}i:302;a:13:{s:2:\"id\";s:2:\"95\";s:6:\"handle\";s:19:\"mountain_view_3.jpg\";s:4:\"name\";s:15:\"Mountain View 3\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:10647;s:4:\"orig\";i:193025;}}i:303;a:13:{s:2:\"id\";s:2:\"94\";s:6:\"handle\";s:14:\"misty_farm.jpg\";s:4:\"name\";s:10:\"Misty Farm\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:6239;s:4:\"orig\";i:48178;}}i:304;a:13:{s:2:\"id\";s:2:\"93\";s:6:\"handle\";s:17:\"mountain_path.jpg\";s:4:\"name\";s:13:\"Mountain Path\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:14454;s:4:\"orig\";i:454843;}}i:305;a:13:{s:2:\"id\";s:2:\"92\";s:6:\"handle\";s:19:\"night_skyline_3.jpg\";s:4:\"name\";s:15:\"Night Skyline 3\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:7734;s:4:\"orig\";i:119909;}}i:306;a:13:{s:2:\"id\";s:2:\"91\";s:6:\"handle\";s:17:\"mountain_view.jpg\";s:4:\"name\";s:13:\"Mountain View\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1160\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:11927;s:4:\"orig\";i:209224;}}i:307;a:13:{s:2:\"id\";s:2:\"90\";s:6:\"handle\";s:19:\"rocky_landscape.jpg\";s:4:\"name\";s:15:\"Rocky Landscape\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:9609;s:4:\"orig\";i:230249;}}i:308;a:13:{s:2:\"id\";s:2:\"89\";s:6:\"handle\";s:19:\"mountain_view_4.jpg\";s:4:\"name\";s:15:\"Mountain View 4\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1203\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:12396;s:4:\"orig\";i:290596;}}i:309;a:14:{s:2:\"id\";s:3:\"529\";s:6:\"handle\";s:13:\"Fitness-4.jpg\";s:5:\"video\";s:13:\"Fitness-4.mp4\";s:4:\"name\";s:10:\"Fitness 4 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:25803;s:11:\"video_thumb\";i:2753823;s:5:\"cover\";i:127867;s:4:\"orig\";i:5991847;}}i:310;a:14:{s:2:\"id\";s:3:\"528\";s:6:\"handle\";s:13:\"Fitness-3.jpg\";s:5:\"video\";s:13:\"Fitness-3.mp4\";s:4:\"name\";s:10:\"Fitness 3 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:19154;s:11:\"video_thumb\";i:4783500;s:5:\"cover\";i:97843;s:4:\"orig\";i:12408832;}}i:311;a:14:{s:2:\"id\";s:3:\"527\";s:6:\"handle\";s:9:\"Chess.jpg\";s:5:\"video\";s:9:\"Chess.mp4\";s:4:\"name\";s:6:\"Chess \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:28284;s:11:\"video_thumb\";i:2150510;s:5:\"cover\";i:124176;s:4:\"orig\";i:7726114;}}i:312;a:14:{s:2:\"id\";s:3:\"526\";s:6:\"handle\";s:13:\"Fitness-2.jpg\";s:5:\"video\";s:13:\"Fitness-2.mp4\";s:4:\"name\";s:10:\"Fitness 2 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:23354;s:11:\"video_thumb\";i:3635377;s:5:\"cover\";i:106283;s:4:\"orig\";i:12688465;}}i:313;a:14:{s:2:\"id\";s:3:\"525\";s:6:\"handle\";s:11:\"Fitness.jpg\";s:5:\"video\";s:11:\"Fitness.mp4\";s:4:\"name\";s:8:\"Fitness \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:29858;s:11:\"video_thumb\";i:9614915;s:5:\"cover\";i:153660;s:4:\"orig\";i:13424151;}}i:314;a:14:{s:2:\"id\";s:3:\"524\";s:6:\"handle\";s:9:\"Earth.jpg\";s:5:\"video\";s:9:\"Earth.mp4\";s:4:\"name\";s:6:\"Earth \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:44:06\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:19155;s:11:\"video_thumb\";i:2361089;s:5:\"cover\";i:103588;s:4:\"orig\";i:14717688;}}i:315;a:14:{s:2:\"id\";s:3:\"523\";s:6:\"handle\";s:11:\"Space-2.jpg\";s:5:\"video\";s:11:\"Space-2.mp4\";s:4:\"name\";s:8:\"Space 2 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1440\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:44:06\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:11719;s:11:\"video_thumb\";i:4841259;s:5:\"cover\";i:40309;s:4:\"orig\";i:11715637;}}i:316;a:14:{s:2:\"id\";s:3:\"522\";s:6:\"handle\";s:13:\"Asteroids.jpg\";s:5:\"video\";s:13:\"Asteroids.mp4\";s:4:\"name\";s:10:\"Asteroids \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:44:06\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:56469;s:11:\"video_thumb\";i:5107558;s:5:\"cover\";i:273635;s:4:\"orig\";i:13833056;}}i:317;a:14:{s:2:\"id\";s:3:\"521\";s:6:\"handle\";s:9:\"Space.jpg\";s:5:\"video\";s:9:\"Space.mp4\";s:4:\"name\";s:6:\"Space \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:44:06\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:30439;s:11:\"video_thumb\";i:3864288;s:5:\"cover\";i:133345;s:4:\"orig\";i:13159814;}}i:318;a:14:{s:2:\"id\";s:3:\"520\";s:6:\"handle\";s:10:\"People.jpg\";s:5:\"video\";s:10:\"People.mp4\";s:4:\"name\";s:7:\"People \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:31267;s:11:\"video_thumb\";i:2732735;s:5:\"cover\";i:173636;s:4:\"orig\";i:5536475;}}i:319;a:14:{s:2:\"id\";s:3:\"519\";s:6:\"handle\";s:11:\"Walking.jpg\";s:5:\"video\";s:11:\"Walking.mp4\";s:4:\"name\";s:8:\"Walking \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:29090;s:11:\"video_thumb\";i:4861363;s:5:\"cover\";i:188894;s:4:\"orig\";i:13731609;}}i:320;a:14:{s:2:\"id\";s:3:\"518\";s:6:\"handle\";s:19:\"Double-Exposure.jpg\";s:5:\"video\";s:19:\"Double-Exposure.mp4\";s:4:\"name\";s:16:\"Double Exposure \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:31123;s:11:\"video_thumb\";i:1386258;s:5:\"cover\";i:219740;s:4:\"orig\";i:6479275;}}i:321;a:14:{s:2:\"id\";s:3:\"517\";s:6:\"handle\";s:8:\"Girl.jpg\";s:5:\"video\";s:8:\"Girl.mp4\";s:4:\"name\";s:5:\"Girl \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1088\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:21091;s:11:\"video_thumb\";i:11134706;s:5:\"cover\";i:115059;s:4:\"orig\";i:12313637;}}i:322;a:14:{s:2:\"id\";s:3:\"516\";s:6:\"handle\";s:17:\"Bengal-Lights.jpg\";s:5:\"video\";s:17:\"Bengal-Lights.mp4\";s:4:\"name\";s:14:\"Bengal Lights \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:19624;s:11:\"video_thumb\";i:3913179;s:5:\"cover\";i:118864;s:4:\"orig\";i:14700830;}}i:323;a:14:{s:2:\"id\";s:3:\"515\";s:6:\"handle\";s:13:\"Swiping-2.jpg\";s:5:\"video\";s:13:\"Swiping-2.mp4\";s:4:\"name\";s:10:\"Swiping 2 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:45123;s:11:\"video_thumb\";i:2547876;s:5:\"cover\";i:268587;s:4:\"orig\";i:8823724;}}i:324;a:14:{s:2:\"id\";s:3:\"514\";s:6:\"handle\";s:11:\"Mock-Up.jpg\";s:5:\"video\";s:11:\"Mock-Up.mp4\";s:4:\"name\";s:8:\"Mock Up \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:33867;s:11:\"video_thumb\";i:5972511;s:5:\"cover\";i:172632;s:4:\"orig\";i:13869858;}}i:325;a:14:{s:2:\"id\";s:3:\"513\";s:6:\"handle\";s:13:\"Countdown.jpg\";s:5:\"video\";s:13:\"Countdown.mp4\";s:4:\"name\";s:10:\"Countdown \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:16185;s:11:\"video_thumb\";i:4097952;s:5:\"cover\";i:160912;s:4:\"orig\";i:12307362;}}i:326;a:14:{s:2:\"id\";s:3:\"512\";s:6:\"handle\";s:18:\"Wall-Sketching.jpg\";s:5:\"video\";s:18:\"Wall-Sketching.mp4\";s:4:\"name\";s:15:\"Wall Sketching \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:9324;s:11:\"video_thumb\";i:1843046;s:5:\"cover\";i:94919;s:4:\"orig\";i:4938526;}}i:327;a:14:{s:2:\"id\";s:3:\"511\";s:6:\"handle\";s:26:\"Typing-on-the-keyboard.jpg\";s:5:\"video\";s:26:\"Typing-on-the-keyboard.mp4\";s:4:\"name\";s:23:\"Typing on the keyboard \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:13455;s:11:\"video_thumb\";i:5101194;s:5:\"cover\";i:66493;s:4:\"orig\";i:11852447;}}i:328;a:14:{s:2:\"id\";s:3:\"510\";s:6:\"handle\";s:11:\"Meeting.jpg\";s:5:\"video\";s:11:\"Meeting.mp4\";s:4:\"name\";s:8:\"Meeting \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:20003;s:11:\"video_thumb\";i:1696754;s:5:\"cover\";i:103202;s:4:\"orig\";i:12515577;}}i:329;a:14:{s:2:\"id\";s:3:\"509\";s:6:\"handle\";s:11:\"Swiping.jpg\";s:5:\"video\";s:11:\"Swiping.mp4\";s:4:\"name\";s:8:\"Swiping \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:19377;s:11:\"video_thumb\";i:3861934;s:5:\"cover\";i:101592;s:4:\"orig\";i:13370749;}}i:330;a:14:{s:2:\"id\";s:3:\"508\";s:6:\"handle\";s:9:\"Alarm.jpg\";s:5:\"video\";s:9:\"Alarm.mp4\";s:4:\"name\";s:6:\"Alarm \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1013\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:31120;s:11:\"video_thumb\";i:2732488;s:5:\"cover\";i:190596;s:4:\"orig\";i:13625169;}}i:331;a:14:{s:2:\"id\";s:3:\"507\";s:6:\"handle\";s:13:\"Hey-World.jpg\";s:5:\"video\";s:13:\"Hey-World.mp4\";s:4:\"name\";s:10:\"Hey World \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:17475;s:11:\"video_thumb\";i:1248121;s:5:\"cover\";i:203284;s:4:\"orig\";i:4921567;}}i:332;a:14:{s:2:\"id\";s:3:\"506\";s:6:\"handle\";s:28:\"Typing-on-the-keyboard-2.jpg\";s:5:\"video\";s:28:\"Typing-on-the-keyboard-2.mp4\";s:4:\"name\";s:25:\"Typing on the keyboard 2 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:26132;s:11:\"video_thumb\";i:5777142;s:5:\"cover\";i:138198;s:4:\"orig\";i:12817212;}}i:333;a:14:{s:2:\"id\";s:3:\"505\";s:6:\"handle\";s:10:\"Valley.jpg\";s:5:\"video\";s:10:\"Valley.mp4\";s:4:\"name\";s:7:\"Valley \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:35:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:40668;s:11:\"video_thumb\";i:3711074;s:5:\"cover\";i:243587;s:4:\"orig\";i:12354374;}}i:334;a:14:{s:2:\"id\";s:3:\"504\";s:6:\"handle\";s:9:\"Stars.jpg\";s:5:\"video\";s:9:\"Stars.mp4\";s:4:\"name\";s:6:\"Stars \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:35:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:41275;s:11:\"video_thumb\";i:2631988;s:5:\"cover\";i:330226;s:4:\"orig\";i:8304831;}}i:335;a:14:{s:2:\"id\";s:3:\"503\";s:6:\"handle\";s:21:\"Car-in-the-forest.jpg\";s:5:\"video\";s:21:\"Car-in-the-forest.mp4\";s:4:\"name\";s:18:\"Car in the forest \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1012\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:35:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:54209;s:11:\"video_thumb\";i:4596191;s:5:\"cover\";i:335804;s:4:\"orig\";i:13306988;}}i:336;a:14:{s:2:\"id\";s:3:\"502\";s:6:\"handle\";s:15:\"Aerial-Shot.jpg\";s:5:\"video\";s:15:\"Aerial-Shot.mp4\";s:4:\"name\";s:12:\"Aerial Shot \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:35:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:75484;s:11:\"video_thumb\";i:3134686;s:5:\"cover\";i:461854;s:4:\"orig\";i:20337064;}}i:337;a:14:{s:2:\"id\";s:3:\"501\";s:6:\"handle\";s:14:\"Disco-Ball.jpg\";s:5:\"video\";s:14:\"Disco-Ball.mp4\";s:4:\"name\";s:11:\"Disco Ball \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:25915;s:11:\"video_thumb\";i:2352326;s:5:\"cover\";i:136931;s:4:\"orig\";i:12104254;}}i:338;a:14:{s:2:\"id\";s:3:\"500\";s:6:\"handle\";s:22:\"Man-Playing-Guitar.jpg\";s:5:\"video\";s:22:\"Man-Playing-Guitar.mp4\";s:4:\"name\";s:19:\"Man Playing Guitar \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:40965;s:11:\"video_thumb\";i:8637814;s:5:\"cover\";i:195812;s:4:\"orig\";i:13878956;}}i:339;a:14:{s:2:\"id\";s:3:\"499\";s:6:\"handle\";s:14:\"Live-Music.jpg\";s:5:\"video\";s:14:\"Live-Music.mp4\";s:4:\"name\";s:11:\"Live Music \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:19037;s:11:\"video_thumb\";i:3065043;s:5:\"cover\";i:65493;s:4:\"orig\";i:12935967;}}i:340;a:14:{s:2:\"id\";s:3:\"498\";s:6:\"handle\";s:12:\"Cheer-Up.jpg\";s:5:\"video\";s:12:\"Cheer-Up.mp4\";s:4:\"name\";s:9:\"Cheer Up \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:24344;s:11:\"video_thumb\";i:1911296;s:5:\"cover\";i:192540;s:4:\"orig\";i:4631422;}}i:341;a:14:{s:2:\"id\";s:3:\"497\";s:6:\"handle\";s:14:\"Night-club.jpg\";s:5:\"video\";s:14:\"Night-club.mp4\";s:4:\"name\";s:11:\"Night club \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:23517;s:11:\"video_thumb\";i:4899641;s:5:\"cover\";i:86737;s:4:\"orig\";i:12281833;}}i:342;a:14:{s:2:\"id\";s:3:\"496\";s:6:\"handle\";s:17:\"Cup-Of-Coffee.jpg\";s:5:\"video\";s:17:\"Cup-Of-Coffee.mp4\";s:4:\"name\";s:14:\"Cup Of Coffee \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:31844;s:11:\"video_thumb\";i:4412295;s:5:\"cover\";i:154844;s:4:\"orig\";i:10753079;}}i:343;a:14:{s:2:\"id\";s:3:\"495\";s:6:\"handle\";s:7:\"Pot.jpg\";s:5:\"video\";s:7:\"Pot.mp4\";s:4:\"name\";s:4:\"Pot \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:14905;s:11:\"video_thumb\";i:3394055;s:5:\"cover\";i:73276;s:4:\"orig\";i:11722124;}}i:344;a:14:{s:2:\"id\";s:3:\"494\";s:6:\"handle\";s:11:\"Grill-2.jpg\";s:5:\"video\";s:11:\"Grill-2.mp4\";s:4:\"name\";s:8:\"Grill 2 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:48591;s:11:\"video_thumb\";i:5268295;s:5:\"cover\";i:211021;s:4:\"orig\";i:11990742;}}i:345;a:14:{s:2:\"id\";s:3:\"493\";s:6:\"handle\";s:13:\"Rice-Bowl.jpg\";s:5:\"video\";s:13:\"Rice-Bowl.mp4\";s:4:\"name\";s:10:\"Rice Bowl \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1010\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:27863;s:11:\"video_thumb\";i:2674570;s:5:\"cover\";i:119321;s:4:\"orig\";i:11602755;}}i:346;a:14:{s:2:\"id\";s:3:\"492\";s:6:\"handle\";s:9:\"Grill.jpg\";s:5:\"video\";s:9:\"Grill.mp4\";s:4:\"name\";s:6:\"Grill \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:27505;s:11:\"video_thumb\";i:3025283;s:5:\"cover\";i:144357;s:4:\"orig\";i:13176990;}}i:347;a:14:{s:2:\"id\";s:3:\"491\";s:6:\"handle\";s:9:\"Water.jpg\";s:5:\"video\";s:9:\"Water.mp4\";s:4:\"name\";s:6:\"Water \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:24:15\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:22543;s:11:\"video_thumb\";i:1327376;s:5:\"cover\";i:111224;s:4:\"orig\";i:4727340;}}i:348;a:14:{s:2:\"id\";s:3:\"490\";s:6:\"handle\";s:17:\"Feet-and-Sand.jpg\";s:5:\"video\";s:17:\"Feet-and-Sand.mp4\";s:4:\"name\";s:14:\"Feet and Sand \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:24:15\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:34936;s:11:\"video_thumb\";i:3198076;s:5:\"cover\";i:160493;s:4:\"orig\";i:12804022;}}i:349;a:14:{s:2:\"id\";s:3:\"489\";s:6:\"handle\";s:9:\"Ocean.jpg\";s:5:\"video\";s:9:\"Ocean.mp4\";s:4:\"name\";s:6:\"Ocean \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:24:15\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:28883;s:11:\"video_thumb\";i:4750283;s:5:\"cover\";i:153687;s:4:\"orig\";i:13054569;}}i:350;a:14:{s:2:\"id\";s:3:\"488\";s:6:\"handle\";s:9:\"Waves.jpg\";s:5:\"video\";s:9:\"Waves.mp4\";s:4:\"name\";s:6:\"Waves \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:24:15\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:53693;s:11:\"video_thumb\";i:9780815;s:5:\"cover\";i:341419;s:4:\"orig\";i:13738077;}}i:351;a:14:{s:2:\"id\";s:3:\"487\";s:6:\"handle\";s:10:\"Hearts.jpg\";s:5:\"video\";s:10:\"Hearts.mp4\";s:4:\"name\";s:7:\"Hearts \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:9494;s:11:\"video_thumb\";i:942533;s:5:\"cover\";i:52833;s:4:\"orig\";i:6629299;}}i:352;a:14:{s:2:\"id\";s:3:\"486\";s:6:\"handle\";s:12:\"Octagons.jpg\";s:5:\"video\";s:12:\"Octagons.mp4\";s:4:\"name\";s:9:\"Octagons \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:22781;s:11:\"video_thumb\";i:2415073;s:5:\"cover\";i:126450;s:4:\"orig\";i:11684367;}}i:353;a:14:{s:2:\"id\";s:3:\"485\";s:6:\"handle\";s:11:\"Squares.jpg\";s:5:\"video\";s:11:\"Squares.mp4\";s:4:\"name\";s:8:\"Squares \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:22296;s:11:\"video_thumb\";i:1465206;s:5:\"cover\";i:73047;s:4:\"orig\";i:4008355;}}i:354;a:14:{s:2:\"id\";s:3:\"484\";s:6:\"handle\";s:12:\"Pink-ink.jpg\";s:5:\"video\";s:12:\"Pink-ink.mp4\";s:4:\"name\";s:9:\"Pink ink \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:19851;s:11:\"video_thumb\";i:3023599;s:5:\"cover\";i:25426;s:4:\"orig\";i:12847145;}}i:355;a:14:{s:2:\"id\";s:3:\"483\";s:6:\"handle\";s:22:\"Blurred-Background.jpg\";s:5:\"video\";s:22:\"Blurred-Background.mp4\";s:4:\"name\";s:19:\"Blurred Background \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:18002;s:11:\"video_thumb\";i:1791449;s:5:\"cover\";i:101725;s:4:\"orig\";i:13746552;}}i:356;a:14:{s:2:\"id\";s:3:\"482\";s:6:\"handle\";s:20:\"Blinking-bubbles.jpg\";s:5:\"video\";s:20:\"Blinking-bubbles.mp4\";s:4:\"name\";s:17:\"Blinking bubbles \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:8176;s:11:\"video_thumb\";i:4255586;s:5:\"cover\";i:75455;s:4:\"orig\";i:10948491;}}i:357;a:14:{s:2:\"id\";s:3:\"481\";s:6:\"handle\";s:13:\"Fireworks.jpg\";s:5:\"video\";s:13:\"Fireworks.mp4\";s:4:\"name\";s:10:\"Fireworks \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:46567;s:11:\"video_thumb\";i:3789289;s:5:\"cover\";i:25425;s:4:\"orig\";i:15943336;}}i:358;a:14:{s:2:\"id\";s:3:\"480\";s:6:\"handle\";s:12:\"Dark-ink.jpg\";s:5:\"video\";s:12:\"Dark-ink.mp4\";s:4:\"name\";s:9:\"Dark ink \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:26927;s:11:\"video_thumb\";i:2605391;s:5:\"cover\";i:149830;s:4:\"orig\";i:13232415;}}i:359;a:14:{s:2:\"id\";s:3:\"238\";s:6:\"handle\";s:12:\"Mt_Baker.jpg\";s:5:\"video\";s:12:\"Mt_Baker.mp4\";s:4:\"name\";s:9:\"Mt Baker \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:20000;s:11:\"video_thumb\";i:655504;s:5:\"cover\";i:620066;s:4:\"orig\";i:13229794;}}i:360;a:14:{s:2:\"id\";s:3:\"237\";s:6:\"handle\";s:16:\"Two-Swimmers.jpg\";s:5:\"video\";s:16:\"Two-Swimmers.mp4\";s:4:\"name\";s:13:\"Two Swimmers \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:23213;s:11:\"video_thumb\";i:498407;s:5:\"cover\";i:308442;s:4:\"orig\";i:11108924;}}i:361;a:14:{s:2:\"id\";s:3:\"236\";s:6:\"handle\";s:14:\"Boats_Maze.jpg\";s:5:\"video\";s:14:\"Boats_Maze.mp4\";s:4:\"name\";s:11:\"Boats Maze \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:21648;s:11:\"video_thumb\";i:109062;s:5:\"cover\";i:305957;s:4:\"orig\";i:6267674;}}i:362;a:14:{s:2:\"id\";s:3:\"235\";s:6:\"handle\";s:18:\"Candolim-Beach.jpg\";s:5:\"video\";s:18:\"Candolim-Beach.mp4\";s:4:\"name\";s:15:\"Candolim Beach \";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:19198;s:11:\"video_thumb\";i:326656;s:5:\"cover\";i:554701;s:4:\"orig\";i:10151652;}}i:363;a:14:{s:2:\"id\";s:3:\"234\";s:6:\"handle\";s:17:\"Working-Space.jpg\";s:5:\"video\";s:17:\"Working-Space.mp4\";s:4:\"name\";s:14:\"Working Space \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:14725;s:11:\"video_thumb\";i:72977;s:5:\"cover\";i:72535;s:4:\"orig\";i:4938006;}}i:364;a:14:{s:2:\"id\";s:3:\"233\";s:6:\"handle\";s:9:\"Wavez.jpg\";s:5:\"video\";s:9:\"Wavez.mp4\";s:4:\"name\";s:6:\"Wavez \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:12165;s:11:\"video_thumb\";i:256975;s:5:\"cover\";i:340550;s:4:\"orig\";i:9691449;}}i:365;a:14:{s:2:\"id\";s:3:\"232\";s:6:\"handle\";s:17:\"Coconut-Grove.jpg\";s:5:\"video\";s:17:\"Coconut-Grove.mp4\";s:4:\"name\";s:14:\"Coconut Grove \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:36900;s:11:\"video_thumb\";i:920631;s:5:\"cover\";i:949012;s:4:\"orig\";i:13422013;}}i:366;a:14:{s:2:\"id\";s:3:\"231\";s:6:\"handle\";s:19:\"Very-Open-Space.jpg\";s:5:\"video\";s:19:\"Very-Open-Space.mp4\";s:4:\"name\";s:16:\"Very Open Space \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:17289;s:11:\"video_thumb\";i:137402;s:5:\"cover\";i:300574;s:4:\"orig\";i:7528458;}}i:367;a:14:{s:2:\"id\";s:3:\"230\";s:6:\"handle\";s:14:\"Office-Day.jpg\";s:5:\"video\";s:14:\"Office-Day.mp4\";s:4:\"name\";s:11:\"Office Day \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:16562;s:11:\"video_thumb\";i:161004;s:5:\"cover\";i:291708;s:4:\"orig\";i:7596827;}}i:368;a:14:{s:2:\"id\";s:3:\"229\";s:6:\"handle\";s:12:\"The-Hill.jpg\";s:5:\"video\";s:12:\"The-Hill.mp4\";s:4:\"name\";s:9:\"The Hill \";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:19186;s:11:\"video_thumb\";i:404406;s:5:\"cover\";i:496556;s:4:\"orig\";i:15358645;}}i:369;a:14:{s:2:\"id\";s:3:\"339\";s:6:\"handle\";s:19:\"best_price_dark.jpg\";s:5:\"video\";s:19:\"best_price_dark.mp4\";s:4:\"name\";s:15:\"best_price_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"best_price_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-26 09:24:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:11778;s:5:\"video\";i:126230;}}i:370;a:14:{s:2:\"id\";s:3:\"337\";s:6:\"handle\";s:27:\"limited_time_offer_dark.jpg\";s:5:\"video\";s:27:\"limited_time_offer_dark.mp4\";s:4:\"name\";s:23:\"limited_time_offer_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:23:\"limited_time_offer_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-26 09:24:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:9342;s:5:\"video\";i:258890;}}i:371;a:14:{s:2:\"id\";s:3:\"336\";s:6:\"handle\";s:26:\"slider_revolution_dark.jpg\";s:5:\"video\";s:26:\"slider_revolution_dark.mp4\";s:4:\"name\";s:22:\"slider_revolution_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:22:\"slider_revolution_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-26 09:24:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:22925;s:5:\"video\";i:337622;}}i:372;a:14:{s:2:\"id\";s:3:\"335\";s:6:\"handle\";s:19:\"mick_brown_dark.jpg\";s:5:\"video\";s:19:\"mick_brown_dark.mp4\";s:4:\"name\";s:15:\"mick_brown_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"mick_brown_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-26 09:24:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:13590;s:5:\"video\";i:143116;}}i:373;a:14:{s:2:\"id\";s:3:\"334\";s:6:\"handle\";s:14:\"sales_dark.jpg\";s:5:\"video\";s:14:\"sales_dark.mp4\";s:4:\"name\";s:10:\"sales_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:10:\"sales_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:12603;s:5:\"video\";i:267056;}}i:374;a:14:{s:2:\"id\";s:3:\"333\";s:6:\"handle\";s:21:\"robert_smith_dark.jpg\";s:5:\"video\";s:21:\"robert_smith_dark.mp4\";s:4:\"name\";s:17:\"robert_smith_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"robert_smith_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:11225;s:5:\"video\";i:104722;}}i:375;a:14:{s:2:\"id\";s:3:\"332\";s:6:\"handle\";s:21:\"product_name_dark.jpg\";s:5:\"video\";s:21:\"product_name_dark.mp4\";s:4:\"name\";s:17:\"product_name_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"product_name_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:16221;s:5:\"video\";i:183244;}}i:376;a:14:{s:2:\"id\";s:3:\"331\";s:6:\"handle\";s:21:\"high_quality_dark.jpg\";s:5:\"video\";s:21:\"high_quality_dark.mp4\";s:4:\"name\";s:17:\"high_quality_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"high_quality_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:15072;s:5:\"video\";i:90577;}}i:377;a:14:{s:2:\"id\";s:3:\"330\";s:6:\"handle\";s:24:\"robert_johnson_light.jpg\";s:5:\"video\";s:24:\"robert_johnson_light.mp4\";s:4:\"name\";s:20:\"robert_johnson_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:20:\"robert_johnson_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:11741;s:5:\"video\";i:96061;}}i:378;a:14:{s:2:\"id\";s:3:\"329\";s:6:\"handle\";s:21:\"jake_collins_dark.jpg\";s:5:\"video\";s:21:\"jake_collins_dark.mp4\";s:4:\"name\";s:17:\"jake_collins_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"jake_collins_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:15979;s:5:\"video\";i:136040;}}i:379;a:14:{s:2:\"id\";s:3:\"328\";s:6:\"handle\";s:22:\"daniele_wood_light.jpg\";s:5:\"video\";s:22:\"daniele_wood_light.mp4\";s:4:\"name\";s:18:\"daniele_wood_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"daniele_wood_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:31:30\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:13637;s:5:\"video\";i:98053;}}i:380;a:14:{s:2:\"id\";s:3:\"327\";s:6:\"handle\";s:23:\"michael_blake_light.jpg\";s:5:\"video\";s:23:\"michael_blake_light.mp4\";s:4:\"name\";s:19:\"michael_blake_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:19:\"michael_blake_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:14892;s:5:\"video\";i:125449;}}i:381;a:14:{s:2:\"id\";s:3:\"326\";s:6:\"handle\";s:22:\"product_name_light.jpg\";s:5:\"video\";s:22:\"product_name_light.mp4\";s:4:\"name\";s:18:\"product_name_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"product_name_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:16568;s:5:\"video\";i:127133;}}i:382;a:14:{s:2:\"id\";s:3:\"325\";s:6:\"handle\";s:24:\"rebecca_cooper_light.jpg\";s:5:\"video\";s:24:\"rebecca_cooper_light.mp4\";s:4:\"name\";s:20:\"rebecca_cooper_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:20:\"rebecca_cooper_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:19099;s:5:\"video\";i:202784;}}i:383;a:14:{s:2:\"id\";s:3:\"324\";s:6:\"handle\";s:28:\"limited_time_offer_light.jpg\";s:5:\"video\";s:28:\"limited_time_offer_light.mp4\";s:4:\"name\";s:24:\"limited_time_offer_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:24:\"limited_time_offer_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:21756;s:5:\"video\";i:295899;}}i:384;a:14:{s:2:\"id\";s:3:\"322\";s:6:\"handle\";s:22:\"jake_michael_light.jpg\";s:5:\"video\";s:22:\"jake_michael_light.mp4\";s:4:\"name\";s:18:\"jake_michael_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"jake_michael_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:20783;s:5:\"video\";i:279347;}}i:385;a:14:{s:2:\"id\";s:3:\"321\";s:6:\"handle\";s:23:\"colin_johnson_light.jpg\";s:5:\"video\";s:23:\"colin_johnson_light.mp4\";s:4:\"name\";s:19:\"colin_johnson_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:19:\"colin_johnson_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:17862;s:5:\"video\";i:111140;}}i:386;a:14:{s:2:\"id\";s:3:\"320\";s:6:\"handle\";s:21:\"colin_morris_dark.jpg\";s:5:\"video\";s:21:\"colin_morris_dark.mp4\";s:4:\"name\";s:17:\"colin_morris_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"colin_morris_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:10799;s:5:\"video\";i:49269;}}i:387;a:14:{s:2:\"id\";s:3:\"319\";s:6:\"handle\";s:22:\"justin_cooper_dark.jpg\";s:5:\"video\";s:22:\"justin_cooper_dark.mp4\";s:4:\"name\";s:18:\"justin_cooper_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:18:\"justin_cooper_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:14442;s:5:\"video\";i:143950;}}i:388;a:14:{s:2:\"id\";s:3:\"318\";s:6:\"handle\";s:21:\"james-dodson_dark.jpg\";s:5:\"video\";s:21:\"james-dodson_dark.mp4\";s:4:\"name\";s:17:\"james-dodson_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"james-dodson_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:16819;s:5:\"video\";i:142842;}}i:389;a:14:{s:2:\"id\";s:3:\"317\";s:6:\"handle\";s:23:\"robert_sanders_dark.jpg\";s:5:\"video\";s:23:\"robert_sanders_dark.mp4\";s:4:\"name\";s:19:\"robert_sanders_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:19:\"robert_sanders_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:12575;s:5:\"video\";i:106541;}}i:390;a:14:{s:2:\"id\";s:3:\"316\";s:6:\"handle\";s:21:\"emily_carney_dark.jpg\";s:5:\"video\";s:21:\"emily_carney_dark.mp4\";s:4:\"name\";s:17:\"emily_carney_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"emily_carney_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:12931;s:5:\"video\";i:84922;}}i:391;a:14:{s:2:\"id\";s:3:\"315\";s:6:\"handle\";s:22:\"michael-smith_dark.jpg\";s:5:\"video\";s:22:\"michael-smith_dark.mp4\";s:4:\"name\";s:18:\"michael-smith_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:18:\"michael-smith_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:18105;s:5:\"video\";i:184683;}}i:392;a:14:{s:2:\"id\";s:3:\"314\";s:6:\"handle\";s:23:\"sandra_johnson_dark.jpg\";s:5:\"video\";s:23:\"sandra_johnson_dark.mp4\";s:4:\"name\";s:19:\"sandra_johnson_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:19:\"sandra_johnson_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:13440;s:5:\"video\";i:104866;}}i:393;a:14:{s:2:\"id\";s:3:\"313\";s:6:\"handle\";s:22:\"robert_bolton_dark.jpg\";s:5:\"video\";s:22:\"robert_bolton_dark.mp4\";s:4:\"name\";s:18:\"robert_bolton_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:18:\"robert_bolton_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:17477;s:5:\"video\";i:147765;}}i:394;a:14:{s:2:\"id\";s:3:\"312\";s:6:\"handle\";s:25:\"elegant_captions_dark.png\";s:5:\"video\";s:25:\"elegant_captions_dark.mp4\";s:4:\"name\";s:21:\"elegant_captions_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:21:\"elegant_captions_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-18 14:41:45\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:36069;s:5:\"video\";i:104559;}}i:395;a:14:{s:2:\"id\";s:3:\"311\";s:6:\"handle\";s:19:\"Caption_Dark_06.png\";s:5:\"video\";s:19:\"Caption_Dark_06.mp4\";s:4:\"name\";s:15:\"Caption_Dark_06\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_06\";s:5:\"width\";s:3:\"414\";s:6:\"height\";s:3:\"225\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:20095;s:5:\"video\";i:60429;}}i:396;a:14:{s:2:\"id\";s:3:\"310\";s:6:\"handle\";s:19:\"Header_Light_02.png\";s:5:\"video\";s:19:\"Header_Light_02.mp4\";s:4:\"name\";s:15:\"Header_Light_02\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:15:\"Header_Light_02\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:38056;s:5:\"video\";i:45726;}}i:397;a:14:{s:2:\"id\";s:3:\"309\";s:6:\"handle\";s:21:\"Columns_4_Dark_01.png\";s:5:\"video\";s:21:\"Columns_4_Dark_01.mp4\";s:4:\"name\";s:17:\"Columns_4_Dark_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"Columns_4_Dark_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:54736;s:5:\"video\";i:26685;}}i:398;a:14:{s:2:\"id\";s:3:\"308\";s:6:\"handle\";s:18:\"Header_Dark_01.png\";s:5:\"video\";s:18:\"Header_Dark_01.mp4\";s:4:\"name\";s:14:\"Header_Dark_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:14:\"Header_Dark_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:34717;s:5:\"video\";i:16283;}}i:399;a:14:{s:2:\"id\";s:3:\"307\";s:6:\"handle\";s:19:\"Caption_Dark_03.png\";s:5:\"video\";s:19:\"Caption_Dark_03.mp4\";s:4:\"name\";s:15:\"Caption_Dark_03\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_03\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:25700;s:5:\"video\";i:38602;}}i:400;a:14:{s:2:\"id\";s:3:\"306\";s:6:\"handle\";s:21:\"Columns_3_Dark_01.png\";s:5:\"video\";s:21:\"Columns_3_Dark_01.mp4\";s:4:\"name\";s:17:\"Columns_3_Dark_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"Columns_3_Dark_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:55897;s:5:\"video\";i:21279;}}i:401;a:14:{s:2:\"id\";s:3:\"305\";s:6:\"handle\";s:19:\"Caption_Dark_05.png\";s:5:\"video\";s:19:\"Caption_Dark_05.mp4\";s:4:\"name\";s:15:\"Caption_Dark_05\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_05\";s:5:\"width\";s:4:\"1104\";s:6:\"height\";s:3:\"600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:39579;s:5:\"video\";i:22677;}}i:402;a:14:{s:2:\"id\";s:3:\"304\";s:6:\"handle\";s:20:\"Caption_Light_06.png\";s:5:\"video\";s:20:\"Caption_Light_06.mp4\";s:4:\"name\";s:16:\"Caption_Light_06\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_06\";s:5:\"width\";s:3:\"828\";s:6:\"height\";s:3:\"450\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:41903;s:5:\"video\";i:65515;}}i:403;a:14:{s:2:\"id\";s:3:\"303\";s:6:\"handle\";s:19:\"Header_Light_01.png\";s:5:\"video\";s:19:\"Header_Light_01.mp4\";s:4:\"name\";s:15:\"Header_Light_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:15:\"Header_Light_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:25902;s:5:\"video\";i:15295;}}i:404;a:14:{s:2:\"id\";s:3:\"302\";s:6:\"handle\";s:20:\"Caption_Light_03.png\";s:5:\"video\";s:20:\"Caption_Light_03.mp4\";s:4:\"name\";s:16:\"Caption_Light_03\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_03\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:40029;s:5:\"video\";i:28970;}}i:405;a:14:{s:2:\"id\";s:3:\"301\";s:6:\"handle\";s:19:\"Caption_Dark_01.png\";s:5:\"video\";s:19:\"Caption_Dark_01.mp4\";s:4:\"name\";s:15:\"Caption_Dark_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:21834;s:5:\"video\";i:21250;}}i:406;a:14:{s:2:\"id\";s:3:\"300\";s:6:\"handle\";s:21:\"PromoCode_Dark_01.png\";s:5:\"video\";s:21:\"PromoCode_Dark_01.mp4\";s:4:\"name\";s:17:\"PromoCode_Dark_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"PromoCode_Dark_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:36633;s:5:\"video\";i:51973;}}i:407;a:14:{s:2:\"id\";s:3:\"299\";s:6:\"handle\";s:19:\"Caption_Dark_02.png\";s:5:\"video\";s:19:\"Caption_Dark_02.mp4\";s:4:\"name\";s:15:\"Caption_Dark_02\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_02\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:22669;s:5:\"video\";i:46598;}}i:408;a:14:{s:2:\"id\";s:3:\"298\";s:6:\"handle\";s:18:\"Header_Dark_02.png\";s:5:\"video\";s:18:\"Header_Dark_02.mp4\";s:4:\"name\";s:14:\"Header_Dark_02\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:14:\"Header_Dark_02\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:52537;s:5:\"video\";i:29580;}}i:409;a:14:{s:2:\"id\";s:3:\"297\";s:6:\"handle\";s:22:\"Columns_3_Light_01.png\";s:5:\"video\";s:22:\"Columns_3_Light_01.mp4\";s:4:\"name\";s:18:\"Columns_3_Light_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"Columns_3_Light_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:34343;s:5:\"video\";i:18413;}}i:410;a:14:{s:2:\"id\";s:3:\"296\";s:6:\"handle\";s:20:\"Caption_Light_01.png\";s:5:\"video\";s:20:\"Caption_Light_01.mp4\";s:4:\"name\";s:16:\"Caption_Light_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:20519;s:5:\"video\";i:25391;}}i:411;a:14:{s:2:\"id\";s:3:\"295\";s:6:\"handle\";s:19:\"Caption_Dark_04.png\";s:5:\"video\";s:19:\"Caption_Dark_04.mp4\";s:4:\"name\";s:15:\"Caption_Dark_04\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_04\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:16265;s:5:\"video\";i:75634;}}i:412;a:14:{s:2:\"id\";s:3:\"294\";s:6:\"handle\";s:20:\"Caption_Light_02.png\";s:5:\"video\";s:20:\"Caption_Light_02.mp4\";s:4:\"name\";s:16:\"Caption_Light_02\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_02\";s:5:\"width\";s:3:\"828\";s:6:\"height\";s:3:\"450\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:41495;s:5:\"video\";i:49692;}}i:413;a:14:{s:2:\"id\";s:3:\"293\";s:6:\"handle\";s:20:\"Caption_Light_04.png\";s:5:\"video\";s:20:\"Caption_Light_04.mp4\";s:4:\"name\";s:16:\"Caption_Light_04\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_04\";s:5:\"width\";s:4:\"1104\";s:6:\"height\";s:3:\"600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:40417;s:5:\"video\";i:80078;}}i:414;a:14:{s:2:\"id\";s:3:\"292\";s:6:\"handle\";s:22:\"Columns_4_Light_01.png\";s:5:\"video\";s:22:\"Columns_4_Light_01.mp4\";s:4:\"name\";s:18:\"Columns_4_Light_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"Columns_4_Light_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:34150;s:5:\"video\";i:23500;}}i:415;a:14:{s:2:\"id\";s:3:\"291\";s:6:\"handle\";s:20:\"Caption_Light_05.png\";s:5:\"video\";s:20:\"Caption_Light_05.mp4\";s:4:\"name\";s:16:\"Caption_Light_05\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_05\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:15426;s:5:\"video\";i:21651;}}i:416;a:14:{s:2:\"id\";s:3:\"290\";s:6:\"handle\";s:22:\"PromoCode_Light_01.png\";s:5:\"video\";s:22:\"PromoCode_Light_01.mp4\";s:4:\"name\";s:18:\"PromoCode_Light_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"PromoCode_Light_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:33524;s:5:\"video\";i:46449;}}}s:4:\"tags\";a:18:{i:28;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}i:5;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:20;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:21;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}i:25;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}i:2;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:16;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}i:26;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}i:18;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:4;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}i:19;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:23;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}i:3;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:24;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}i:22;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:29;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}i:27;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}}','off'),(190,'revslider-templates-check','1746294218','auto'),(191,'revslider-templates-hash','0c4fbf8dab98bddd40d3972fc31ee7d2','auto'),(192,'rs-templates-new','','off'),(193,'rs-templates','eNrs/XuXGzeS4IF+lWztObN/XFGN98O7M3tk2W571mrrtjTt2zua44Onii0WySFZktVz5rtfIB9MJDOTVSVmVbEkzLRtKQEikZmIXwSAiMB/PblQ24sn3zwB1hrFvTOISAycEZ4p4ZGSkGsrFHjy9Ml2Mbdu8+Sb/3oC4r/mNvwMhuu7+W7hwp9fLNR2OzfFC7VZXW3dIhSpxVxtQ5GpimamLfrHfD1Q8CxefvrkqmqcMAWgtVgAA4x1TlBDCGXOMWGsIKHi/PLdQCtv/1j19dnf1+9CpfXGfZi7j6HixW63/ubtH9/+MVxZLa5289Xy2e7CXbr11dJcPDOry7d/bBqZVW3M1ourd/Pl2z/+n6vd5W/b1dXGuH9W9nK+/Kd44dLZ+dXlP+ur3W5VXTHqcq3m75b/vN2EZjbb6uJquXPL3T8PNx76+CHUDL2JT/0MPIuve+P+82q+cfFF0HCJhksf53YXPxZEJNa4cPN3F7vwdwbiX63bms18vaua+d/btVoW5Zv557dPdm0f3j75l1+uNkX9zp4W/mqxmJUtF03vCvd7eIiFe1Z8t1Hvnhbbj/O1K1bxR3PzvtitiqX6MH+ndu4P/zu863Cjf3m7ebvs3zJcMC7csKkVemlU7PFf9u+/+FZtXbju54tdHF3//mQ/SP4jfLry/fxWv4sn3yxDZ8OThjuHRhCAbAbQDKEC4m8Q/Abj+LWVea/eud9Wm3K0Pomv5nJl1aL+s7J2Hm8cx2X467sw1txvzRjeX7jaLNK/VuMs/trs5h9cPfLny+1OLRbxG3m12Lr/fhouN6KBBkTjdSVCPcHYNtc7UlEP4lQkFLBMSUSEkYAxTQDRCnhorLKGGo8ORaJq4iR5+BheZPjFdluN2e3F6uPsXXzqzaeJhOLIHe5CMopjovG8EYxi35dGGoqP8yAju/ml2zwtdBiIbrct1NIWarMJtWqRiK/wDoSiHiE3FglyPiKB9iKBU5GoXnnxRultKhDV5V11tRaH9lpHGBxATkIWZIBJABFW2AKuGKUCGeItaIWhbWAiUahbnMUmZ42QTSwMA/e4tTgARE4Th2Whrnar2Xb+D1dJxKYSA1WY1WpRbNeLeeih+30XJGF+WQ7/wvlgR+yeFX+ulUT1i9Dx3dyoRUd0dhdXl+GrZoFJBQbvBYYkAvNDeAl6tXpf/OBC5VZifH195qvrlcx0rnakhlLACIaWaqiVNhpRazxFhgJhCXJ4LzWdJiaSm4M2J5aYw1fRlRV4XFYEOMmmKt5czLeNiIQ/RbGJ8hBG/OJTsV6trxZhxNlCfwqys/+W293Gqctnxb9ebXfFalnLWPz9MjxCqB5srVIHqeLjxSrooPhktze6tm53tf5tudq57TWP8ebCFfXfiurDxM6E38ee/G9VXGycDz+KX31bfvaPHz/2vndt3LYj4u0fg/RcLVzDtLd//B8+mpKbt0+Kndq8c7vQ5m96oZbvQx/etmP9dfl+3j4Jz6L+5VnxUr0Pr+hq42Jv5sv11a74tIrG7GqzCcgpnr/6KVz2q01NovkyEGYPrvAUu/nyXcCNDrT+l/rfR99l+2JeXDjzfhVuGO839CKOjH+7MleXoZmyU4OP/F1ao3zYIjxFoVW0RC7cYv3sc+AXPvzKzNUiCpR6lCgkexTSDgq3F1EiUwg2Vxr8lX/vgI94oiUkllmNqYMSAug9ANgQx53CKgFf+eOJkBekerYOb7CZ8pU1J0ff4F1OtZ4FE31z4Rrz2W/CX8quNGK3u1C7MLVcFtoV4RGCvRx1f5DN3WZVjvJShD86vZ3vXGI1BFJebYO8FpdxOjj7eOHCzDR0ZbVYxLlobUZk26EjMHQvMCwVmBK2xZ/2k6q93JQFyWyrFp/O5e4M1Iow0VSGq/BvxoVjCmrhnQ6aicJS7dZS1GljKvuhavSOLO5O67cVnkP7gdzS1L6dAVF90HsyH74ihcP28sMT+fnTp8tEaN6Vf6skJfy5OyclVkAPsZfMa6mNBNSTIDOSQQow0nvxCD88SSb2wD9YPZlKKkbbv86uZrWo3EapnIlKSWzFYIxdPbtTOzsIaZTy4u2T75xXV4twtbW8q3FRfB+GeturbRRnc6GW4UWEufY7V8+hw+y7sWlfry5b+z3eYXmK0f5usdJqMVuoT+GDh98NG+uvo9Vqird/LP5U1i9+rupXRvvn2No/BbncXJlSysvPedNn8Oo/y6nG3H+a6avQ1c0sfsiRrpevMo6G+IZjvWqW0fTya5klPEZM8z2mRYLpHwNiFhEzQ3tQF01hfxeqX3Rg8iiKIMOeI6wkQZ4LhCn0CmDJNG5Nnn47U628xw2Yu7J60sZPNHo4AreeMFS3j1cihgPL97tQ1ULjsmiGUkDLTulZGO6h1mcvt8dad7QPdUYCIvYCIgcF5HWwCk31xH0B2baFhwLSFHUEBAXjH2hLIPCahLmAkTaIiVMaOgQpBgMC0rQzkYCs1Sa8APV7u4M0uZj0b3H76TW+VlqOy8rQ8H8abIh2r6rcnirNgnJ9fr8ovy0u49rZLp1jhHbDk8UlsT/kSXQqPLL1bwCJ9PwUba7iR7dZJVJTGmKzi+piJS3lpXilIyTcaii4gJYQj5Q1SBjJECFASKKUgXsh2f98ItmITc3KRieXibbpniygu3VheB7G9+Xlarn4VE0AEi+Gsj9F7FqhFyvzvt63razk6cd5+ekf4yiHiRtP6scTrW/1bqMuB9aLymZ6y0Wdq91BDyEPs14Qd5YM0jSMf6FQmBhDK5jR7Zprp4mJBv68eZA781fo3eG2m06MXLtodO0s8oZLRu1nzZtOg/PY9gXlXaeve9cJtl5cMHXj+tl9UMtV8ZdgNKmrjQqj9VuVenMtyvLNvlir1qdroKy7OwW58AIHK4FxCzVyOvCRCgK0tkCT1rNroKGpFtf362yznbtcR3ZMv8Tev8cXvKD42XtUeSExLyTmhcT7QH3rnQhT98SXKoz4H5zaRbXfc9u9DKW+KtwDPrnW9WJ3ACCFw9xfaQCApNpZwzwDWGLnuN+DPWngJKBPQuzR9k9e9KC39sjdlktGwaINwjxfrwOd7erjsqi7Uax8JXfxi9VvquHeg3O3NLHdbeGbUXGWqGj9MmHqmPky2rnNXLl48zFdHSpt4GZyONt9bBeJeiUdaNjADA811JQKQL3ECBnEiKE0evzTdt7ca2YiW7Db7h3tPAzd5HprED1D6AhgmES3NAfLbhR1N7re/n+dX7rV0+LHNy9/pqWY/i0I2lUwEj+Evq62Zw+Y6tFKvsTRmgFz1oBpvR0h7QGm2dIsnl/tVmHi9KmHmX1wmWprpLDplXeQE8wRywWnGpq4f4Mx5iI6ShLPCLWcHSCn19hdgOduiXNbU6bar9mDhgD6WaDp7m++fbJ/gU+KcoTEJbtnxeuDmDult2ngXbLC9IggZFT5or4WY+dR7yDD1pUUpr6kf3Yft+FRzft34eHCN/1r1IQJi5ahfKb35bMPdXlFoqr0XXX1ILTReUeIMlh54CUN8PGCGAGZAgLxdgGs08TE8VzlhtH2zkK5quZP3Sujt94rO9wMq+yZ9iNV5ky1ChZRtC0+Xrhl4eIOcbOuEe7m3PLhYFM+wxHiJMCJ13oP9xVNsh7vlmTrfgv5IXP6u5ElCQ43I9OLXQNHASYN1kgwq7V0jmBKo1cX4Q5jALqAmXYrsmxyswofeDX9NCpt/NSQj9uzJd59P3lqHVGqTXelU0et4k8bFwgTh7ZafopAeveHvESTZ1DT8aP1C4VihB/Fq9V2Vz61HUHJbB1qVH5Wg1RJyruAQd6BMH8CWBoklZYEAe0tpMoZSoQYBEzS2FS+cLHBO1qxSdq+b9LcIj7m19DfV7G/RezvHa/SnIPrQhzSs3JI13sVw74LYSoS/RUi5+KLKXafwhTz0+qq+Bj3skMFO99G8y97MMTXUwHgUWKw9f6F8hCDB/6LJYs67ov7Kx24yTANw4JSLBTkRoR5mbMCcsoJ8Bw41YXbhO6LDzs1g3dtPg17K74Psy99tVlum2Qaj3DaVT1ZnnY9Al60Ds8IHPJicH1nYFGnv6LjJYBOOsgcwAwjIiBlBiEgXXRscrKLjC9nOefOp1zlrlR/heMQIqUqf/vHYq3CwxTVY24fDUnyqs2jSfDVOpIjeICPRbAdgwk5YHRUJX3TI7neoQlDEigpGLHCEMMwhFwQKpiz0BjqXYcmSSMTruDUrW4DIa7Wd7KM07nDdevE1zlG3jamohTfBCKhs1GWTRDVVfQa/xSj816q+cJczC/XRdvfoupv4eduYR+tqfK0As3Tkjm3chSMCQtjkrT4HLPL5gXNAgxiHpbZwYBMnGsHsdK+YbOyrnYlzPA7V/glGT9TX/E/r3bFn9zSbeYmBd9q925/sWbe/lJ3vmUF10pSBxCCAXxeICx4eBZknLI+MZ72v5/KDTy88mqz587yrBze4S4SFV3jAh7jxao+HOQ1LJ2Ui8MoyxIKQYrd+z1u3MJFAcje3dm7O+8HnCmcW+9ulHp3v7pY7VbvNmp9kW4nrjtXKzon17pe3RoBjijhymtOHZEeYx3eAI85sDBrNxOTBqZa329bvLNl/t4tvvCsPyW76tD6nPonMz0z/XyZ3rrhIzLM9KH0PynSegmAhgq71rgSRAsqtULYGhL+K7ggDivBKKFeDeF+6iRAZdN35hnbaf3UPOMn0X7vH5t5n3mfeZ89kVEbF4HSuIjXTm3MRfHDanN5uMC8LYviCtxld4X5sODgQAnpNNQWeIQ0VkgDpKBSiEJrocftEvNhK1Olees1O3Wqt/5rOb8V5irDRrmWvM9EUnW8CA8R6Lkt4npM4uVT8v+LWHaun7N6+Lj8m1d+zxdLbYAESgMkmtR6Q1Zok/auZ4EeFnS4ZKhRCAosBcYBT8gARpw3yDPklKNtaNZhK5NtpwdKzPziDk9+6t/i1qmUwIkJxbxamk8H1mfpVe2CcHplaxtsa9TCtY6IO3e5/bwMlFPxZz9ksivzl2X2tMEQKA2GeL1ebXY9P75tefXA2Cmv9cwcYR1XMExbMVKYIcugsIhK6r1CnqP2XMX291NlZNsnS5w+FVuah/Gk8Kpbp+VcFtWLKsoHtyMufY/N/yZ78j1GZrQBECj1/K08xvoRVB/i9V4IVedq16VPCUSMg95jWaZ0ZMIb6axiwHqK213pThMT0eOgzYkBcvgqbukHfFoSitskcqy+ZU7iOLhCVb2cnMDx607giNoACAx6GDywnErB79hN+ysHszBOw/+8ZJBjKwQV0lhrNGAQAc15l31TJ3AuG72bBM5l0/d9BvVhAufq01ROv4np0VpRX3Lk+evSESnM3HdH18A/VcmHqvERvbsX8+3u/8R//fOrn1+/sP/53a9/ffmvr179/76/+uX7//zb9//fl8+3a/Dh+d8+UvTbIEAuV3q+qH2tK36Eh97GJ62yxj8rL5ZvPOl6tvXOAnJt1AZO3a5/dbp4tQlaM2i279TmfYK6j07P1lXRzFZFFfEOCw4yA2nBkfGAAeEYNlhRgB0VmBNrMGg3Pw9bmTIvbXK44d0kpU1ucGsWEpCdXfLmZ978zM4uUx8F3obWYHSE8Yc27SGJu+uCg6Ud5GsW3VuERBQh6DFjnCPIJZcWMcc8GEX+bFK7V0VJvaujS9rGT+U9vzXvwwhym2X/kJIgR642jAsb3ppx22fFm332pW1MduuUuagLGwVRwdKGou188ekPeYkxm513h6Q24AXjEST9XJ4xdoRJ1SFgo1Bqi7tnJKBgf1LLlFLMec4pQVIKaSmgkBGJBqnUtnUSltqjjtoTUSeC0lDTGUkPg6TMoUfDoTa2A5NjHOoiqMbCoi7Zsye9frDlgbBVmmoPIZaGYYkFEoxwJa0jrmMKpY1M6nuxvgsTqG06T3jzhDdPePOE9wyo3kZ34NTXt8m739/CrhfFe5vYB9e7jr5OumAvCmU48dQDAzST3DgOhKdKtVs5B41MxPReqxODvf9KTkpqxe4uU5+KByq8iR8272cPMrh5PXlH++ve0cZtDARmA1w8mGvXBOhMsJNrB1EPGhmIFKGCQG09gkZLhgH1yIhg9h7CcMIVvgZU1WLcnXGwar6HQXzXO9yN8OZd7ceyq/2zU3ENJB6kvrqdceqWSgesb8szD5rMP+0AvD7tT9VAUTZQvq+ht95Y3kXV6yJvxp8Ln9tgENxx1q4mot+XWTxTd+3y+sw112uH7fTq4fGwnkonrRY8GKiO8MDmGK4mhCXKJyEgZRNVCzWl4WdRWs/fzfRqYe8sH9D4De7fF2k8HdDVcv6fV65ZUKjea8m+0P2nRex/ScFHuKTwQ5BTf7UJP4l249LP311VfCxW62qGvl64GMdUnqgYWx6ix63t3yrYb2aCfv67+qCqbzS6BvGiCg188fr12z/+6+va/g0GrPnizdpXG3cZxOmLmdi30Sw4Tc3/oh7G/29Vni3a8LFJsfqP6nKFx/TiwcaQ88JYzYGNXunMe+YVDnN6BRDXtDVh6xZiAyfBMe3JtFQcaPn+cfghnpNQk69EY9l0Z6W2DN29qYUU3mRNgiAqb/9Yrcc24hqmwOUFVa0LjoCgXHssnjd1KhnaxTOL3HxTrFex72GG9wg5/NOuuCz3S7UrURBeePxRzNkbmwnvNrQT+hut0vJFhZvW5wTHekElzc089GDxqbLgg+A1ncokPEcStjE6OI3R+WG1skMxwz5c76es6VztHqTGtaeEBvAxRoUCCgNhODAcSc5lkig3NnEYKfxbuSn0WUzs9GhaKA41/QBGYjdAuDQQrdup+V7eYmKCci+87OKzB+ej2tR7afvF07j4ECf31dZPpuXXQctHHQeN22Aekvq5v9moD0EM613KF9XRotsEnLuywmxbVpiZtkJF0OHirhukdtwyaLjhBDptwtQbGgeBQBoYzeEepcNtnWRiNk02J6pNhNLDZu8fo+0ZcZ2jtqt31xwRu60JVSgdFFKASJmJIe7pVh467cJY3sx/oM38bCfeMffa+B6CujNm49a77mS5vrKfJ8e/d6fIPEYqAoGd4BRgzpBnnDCOKIRcYZNOkeOPT2JXsqKXZBgsP8BUFuH4Hc4imXieI2erL7Pvs9lH2rgXgjs235UrftjLfjpLboFQMaSdKR+WdI+VgUIRrK0XEmOsafg/DD2zzBnrMG0zWvSaOYmQSU6+0IZWm8kNvSN3uJ6Q8BgfP8/i2++opLSsHibT8pQTiociab64LF9fGt/aIBqSOq+/iAdkh18WPwTxsN0dkbrI70tqY697vZvpSwKkPTMSQ8QMMgwjzBDTMhiBiKF2/nrQyERo262uzMVdBW2njZ8ItAlPj6k3TUJvSn/HwxNk8HeztdqEwaB+r/eSt88exwnoTysHlAyWMwdLGxVDUv9p/F3xqhl4r41bujQ1fl2wra/XOfHTqx2qUEgZ89A4RiQHwkmugKfWKw+oU7A1mTpNTMQUbPcSNDlSkravTyJ4jCj81iZSCobKMy++s4oqVWBLrF269tg9OYrXl2qza2LWNpsorpdlStCI8yq18mr5Yb40ceEsDIHasah4s1otdvP1ttwgiBbhso6heWDzq8vCHMV8toR8tH56pI0vIakf9a+rj8UP4cerTeqkF752GNBxRzQM6Hbn4OB692CoMD1CFnIntOFGMaiBpNBTDKjiVCY55LuNnITHQK919HD9kEQQT2t3HbnDacbX7QOV+zbUgD32SKyqnBssG4ATA64NFCG8awAmkdHXpmUIttA1mRlCjW4YibeYUEOtEoASSIDEjjDAmAklnMJrkjOE5qazEGuDc3rzsDGRbwO8g1hpdhLwEtuwO/FMDD3r1ruLWeKqrJaBNjHizixWV3b75bAx21EPhpk23oGIjh21erG6vHQxXPLb+buUM6ugT961UCn/2vW28MFWUlgyyoLpJIATTJOYYJpqTECyRVn99kRcrEzdz6kXqA4bvv1+JDj9kJ0bRd+mH2u92sYZZQ6/7UxS0zf0uhomgyG4W7eIsI00q1XbNgbkFh/Vcrd/dV9ptEIQzTC2yuwbcZS38vE4wdfGMRA5Ar7Xl+FHXfQ1z7yti/YQ7BR0cQi5QcoaQw0xRDOhuDIsyB1GXgEMUhx2WvlywJjaUQdmFGKsR8UiYzFjMWPxQbDYBjXQNOP+X1yoerWJ3/vHJgp/77IxXwaELMPXbn019pc6KASYCKikQ1RQAL12WAihiRAYOCXKjY7aSWP/+1PX0+peV3PTSfMTDDf+sF5rSda/1IEtyue2sPMwldxE4iRL3bV77mrvw3ERVzLPcRvhy9o6yMuBeZZ+cyq3oRM0DZ14/s7FUKZfq2R6fTKrsnxW5t7bszm92F35k9oh5a2lVAEjLLDhH2Mg0ooYgdro27SFk/hcN1QnA7wDRo/f4C44XZwC6nL9733pS7dZbtMMBVWelnK0JZw20bA7r9A0ZS7m7kNE4rx5gOyj/HX4KD9etLbRGTSNznjj1GU9J0qAGj7BLhTsWVr/vYNRK5yGYewDrrhEcRMZQqE15J4Dg8pHrnpX//i06LKLq0u9VPPFrLTbZr0p4bThGje93Q2WBJ6RY4lob+14E99kNwVtKeTbRuyjlNv5NppQ4S/1kApATbPrlR7M9QNWdvCz4qfzcWjOeL0ZXh9PWN7npymrc+juh+u2zFUWpHsWBeG6HGXVr8v33bbQ62l2AXhY1UTb4BmKD1XTQIKJ/dfvJZnolXTPBeOMMkutUUFvIUYNQNRopLBlTAogDxXWQa6JaRTXQVaIe9Ng19731qoMXK/Kihvosu4B9lmb3ak228tF1mdZn+UUIHem0dpwKZqGS5H/WzQJkHtTLh1o4zb1Ouheo3Wudqdf3FDvvPSIcoC55QoSAbBQCikoaJsTvtPEVGHy5P0+WWy5bNPkbr9rtXZKF24QI9HVcIeOLZyeshRWd7aou1kthIUR0cQplceH1ClGzmu9S8fwjHguydy7eMDJKg0Tc4syhuOsczONhII9xApY3g/Jc6PbaJI2Po7SW++I1PsB+52AdGOkU9Y9OB5CizgygiPOFVdYWOm4txA7xCXhB/sjnYam0i/lDsa0OfkGG7/JrGfi7ZFestKciSUvw+XsWF86yNtAPso62bEuowfK69Vq2cmQFa9uV0lamPZS19XIC+msl5JSiFzMAyMYUcg5jhAUSCZ5sprfn5hJOjYzi+0kkXVXyziOo0HRnJc2izphshzTt7jnXRD989JpHR4OGGCTfO0gJ/E4wfPc2f6gNvMw/Y7GftNmdC3dzoMNGYTEbfP5AY/g/IDTji+s3uYsMrVcpEql8Jp1qnplLPEci608+xJOg/nS1FIbfknT8MsXF5sw17wM2Hq9DB/zMAXHNlzspt/YXznI7U249kBgbpT3ghmGCJThKmMSoGTLZf/z05RT0+tZbG/SsMqhpnuqht61D2zqQ3V5FXNiLOLR1c23Kt+HTTdPVLF00TE2fkSv9ifCZHzn418ekotP/v2/3gby7S7ePvnm7ZPWsillKxAv9OttavG015+tL9Zvnzx9+2SpLl356xJQz639ZVleDyQsL9evIjQT/xn42m+Hvne4WFOyut22bODJf//Hk/PGeBveStPw1r9Ex8tvoyi9vArfLiH4JpToULAHeHOhmzrJU8oV9coib5lRUiDFlGNOMigZbpeCml+fFsYQGpnFVmaXsbezsvyudxRud9MHWC+KHSx0icMK7yM+tXH34FI7G8O8Xkcf/Rcxer5Zn88HN+Y19ewIG1HZBsTSNCD29cK598XPYbTFGfqr0MFOZqVQuKjK1lVRk1qpW9Bdm+Gee8SAkJgpoRyKOSyx5lZK5xz2SW6lbisnUbRuZxYbmsUEmcmaSTtvm4SdN7nV+a7HLIvn6/Ws/uKzV+ViTIxXXem/x5CE5kCHgJ/KCKzzkpS2ZpWxrk2g+WjN6rx6fbbLBOiMoNmGy7I0XDYI0Bgy1Xo9BMzu5a5/pnCagUhLA4kgSgtvo3emcZhxYZN9x04bp0VmBQL0KTYxJo/f5HpAovLSnUfSjkAy9L6oe1+vWEdI1geJlZPtgA19NV/YO42mPbvY2Rx4dXb2Jgj/Nyv/VwDwTfm/h0dnG9PK0pjW79z2fW9dNYyf99111f2VbtZOjhRUQirssMYYG02sdhph4Skmpk0wsP/5SZQsHSZiU5MuqR60ev8c1E6F543iF3uRpjCO+elWiyK8Eqf2p2h/vIgGZXmwdpm2bvVx+Swn/c3ImB4Zbawm65yktXDhi/zZfdz23YdNLFuGor1fU+020L3ePW4BGewpgt5hqAWQgmgHPJQOKilkkvv3oJGJEl/GBu/qtIWk7fvnysiJgeVb3AtwtaDXxK20DrW3REqslTNePvik7Rwxwtq4OpbG1f1UKoA/VW7oCULKj/puf7niR3qx6yXqPLScYsqtR0ZTrKUEhhOFwuQN4hYeaQsTkWN9sdq1/v6Tbgccv8mtWQIOk+nyW7Kk7MU+ZmB7Nd8pvSi1ex0XF+MKNo1APsAE7MtwE83LYJmoNyBqG9fF0riu8CWXVm1s8eurAa5u69LZx/XsEK8DZd3j/jACmGqhEGcUWQEEtNp6hQm2RpZJz+sthH5DGbanwbb1xK+WZQa+cpCTMOJmMQS5BXKFmLuE4KvK08WHmeiq8nUpf1uUw7kKiL62w+VSXobfwyfTvIV7TCMfAx4ynaK+k0w7AkZcZfaeMuNv6e21VOj4yZwlwNtwKkaHZ9avwocpvq3TnHZm19WkMn64WZMGNZljH5Z2MO6J8VRrR6HyiirMIKdE60Bzo5X2qDvTPmzqS59vn5Y/vrhNpuSNfRX7W+dJ/uITH8fBPCsH843zHsfhv/u0dp3Ex3vVlnMfP0q7tQ0+Ymnw0U9NeMcHV/x6Md85vQrmQrok0Fb4mJbXawNDpV0PGCo0UZ5iaplhhmvjDEWICkIddpq0iwRDTZ3EvaTFWdvkbO/DUW3CVpp0Ghre4o7Xe45PuybZzJqj8DZrkrUQ+83qsrzeDoC9iVi98Ea873VVYSgqybjNTgUE3ddJtI3zUL1RX9QfaDvqXX5DhqeDoxp/gwzrfZD9eouOaRhqKc+LHV+WC3xvcHTM/MPSAUu/HTWnWPq3wef5m/1tlBMTHf23XH2ogkh6G2rzfVmi75pL3Uw8mBCgmYSIWWmgYN5awyHWUOjwMlCi5JrfH9Vs145e7YJVd3isZT0Hm0X3sYkU2rX3uYkaw3fv3bl3f1+4d9Fg9cq6WSTDwbmbz4oH0mGRHIv58n15/kAFyvNfIx89QT1HYn3Zrqd4huQZsbsNbWKpv/53avO+eFGP6W9LB8ZZ8dItr1J3qlBnViZ+iVnxSy/H2WVVpTk03rwP8jxW7+C4P6ItQoxDabHBFkPCqESSM4ehUe2BoWOtnQb9stVk/a1GWxWvNBHwj97jJus6HdQDRE45Oflvq6vSG7Xyi2zN8TKVQrUMEnFabn/WOYiKIBr1ECqiY+Q2aoAgmT78ov51/OJ3yd6ffPfEqHJdPrImDoh9P5s5mIpLQm7Po3pIPG0Amizw3yp0v7xrs0ZUjcDtdTH7HVHalq9xnzsgkN7V3rZ6E/l4zlSsLLniL/sb3IKT9fc5bZEnlP9QS38RKTWC0OZaGKLhUSoY3hFWm1uVHEMjnG3joji4jrM/uvKglWOchTeBLDw4UUAEoBLqHQtmsxBGSYysQVIZxSn0RwkLM14zXjNeM14PmHcueG0jqDi8Dq/Pdfi21/AVzVRd61rK1lU7rEVSEAAlgBRBBSVXAklioCaeY+sT970jDWbiZuJm4mbi1tQ7N+K2gVccXUfc127zYW6CMByHLp5t24rXcret3Q27sAo7ywAlHIX/KsQMD0avpsgL6gU6it62zUzfTN9M30zfGDl/hvRtY9g4vo6+r+rD1q+hL5mt24rX0ret3aGvlI54ArCUFgHEoGIQQ0CwBY4CDcxR+rZtZvpm+mb6PjR96+jHhycwOT8C8zb8j5PrCPzGbXfzy9VyHn58DYVpGHydyteSuPuL7jKElxBBB5yzNjpHO0EdwgHGnGBllD5K4267mciZyJnI2R6OsnKGNG5DBzm9jsYvwo+vXwFmM7Ovdy2D95W7+V2p185oCLH3CHoQLGDHlTVAMMxxcnrE0SYzeTN5M3kzeaOL1hmSt4354+w68v6wWu06bsBD4OMz31S7lrtN3QOr11PIPTXcUOKwAwZZyzE23mICwPHNt6bFTN1M3UzdTN0oC2dI3TbkkKcHy/xcZr68xm/3Bi6713nrCgCB5NBjggW31EuioCeOcu48FkjtETu5o+4dQzXzNPM083Qanp6ZZ+5IBARvo9e4uBalB665XbzB4xjtuuMSqj2HXAoSLFRoHITICWdi5gpAKDUjCIUZnxmfGZ9fJz7hGeKzDSDj8lp8Hrre3szr9gYOt4IApAkDDIt4/qHFjMS83ZDBGD3M7ZhBOomvbYZqhmqG6mOFKjpDqLbRYgJcC9UB79obO9bezKeWa2GcQtwTy5SD3FAHXfgDIpRrC9gYXadyp82AzYDNgH2sgMVnCNg2XkzAawE74EB7Y9/Zm7nNWkiExBQzZDlEiGFmrArGLA2UJdrxMcBO5TGbAZsBmwH7WAFLzhCwbXiYQNcCdsQ/9lausTf3igUMUaq9JQg6AjyHXgkog42LpdUe4DHYTukQm4GbgZuB+1iBS88QuG1EmMDXArfvAntT79cbOb4KJYTBhHDGmWYQO0OtRt5RyzCGo3tbU/m8ZrhmuGa4Pla4svODq2iDvQS5Fq49L9cbOrjexLcVEwyAJgRwhYDETiMHHRCCiWDEYijHyDqNW2sGawZrButjBSs/Q7C2cVsijdt648xF8a/hCy5Dz1qQ7sLlv++vVvBMrnX3rLxElgMLDQQCc+ElpBoKg4zTHNp2zypp4Mul4zM4IR/rNOFlc50s4e05u4UNdy9luDpkqdht1HJbDa1HeIBlPijynA4cEG3MkUhjjl6oTfGdU4sgDRclCfYHjKnQz+R6fbBYerWbjFqDCA0hKFVCOWKhtUw4iKX2kKVHd6dNnEaP0NSsbWvak8QG2/4MbhwcL8AoyNzI3Hg83GijZkQaNRNtptfVmRcxVKZ/Wkk5mSordIJlupe7J8taJ6DlxJBAjDBPQw5xYsPkDQtlTWnrJPO0fRtTGSBtq3XIzcQWyEH7PZTAIZTguz6ppDxSNtZR4ePHqVr8mCVgygqFXgS5qg8ryYdo53OlvkjGteEsIg1nebFxqjyJ8IdN+BbxeOLUPqoLfVJW20iHJQc7qZgZjZlQHmujFPLBStLAaecdI7hdjeo1cwdHNN3lsUw3s5XwvRzFdDG3trm0rZgXj0Labebv3rnQneLDXBV3dBbTICSGTmfKfM18/TL52sa7yI4NGd7MtnjVHIn2fWllpCZkLG8WbloLMr3aQSvE2kLqNbbWCy0FgUZTqoXEQhrDEyeVtIlRrBY3GgD7haXKSEqzS1RHkE+D2OtuczptJQAT0fZyFXcBYs3NKo6Ew1PvtvnYu0zdTN27pm4bECNTq/a7q1UgjuvP2G1VsAdt/fduBLYkgsXtgGDDcsMYDVNzbmwwZ4kwxrQxg/WPp5qcXzgVx20pENParkfvcTOqkg5VQdeGnYyqV8v5f165lqWhSqBrPkg0rzl+ceRqI01kGh/9ch7Pel4c5ubZ/DaUjqe62nUEAZYpJiS1GirqkdSQcQkYpBQa6cEeXtVvT2PXZdXZWb1JnWzoT4KtseZvsqzIjliBEIKvwO8jNvnT8mFOAq7PAf7XUO91Wa97EHB4DbFbbzujPTT0pv7ApcNKfOM1/+3q4zICLv7IrBbh3daoqxusCRefOB6TrJaf4qnUETDbju+LDq/83WZ1FcjYaSYYl420N7eJH3Fb6JX99DSWVd+9fNFNjZOUkdrtNvMgB27MGq1Mz+L5vl71Bt8+ebaLfjSh81Xfw4UU7+VHzw4/j9jh56LKJDSV308jYb/Wn/1Ny9BzSsJERrRkGy4EARhQkwd5lzb12zvQkvFqdyNfaMKgYJIyzxxjygIDhCMUI621dYmWjL/9MrQkuJ2W5CBryawls5bMWjJryTPJtTWmJWWiJeGAljxMr7X5bTCfVn25F1gAgSGaGIC9RCJGcDnpJNUm6EqYaMoJMmY9UlUps6rMqjKryqwqs6o8lwxqI6pSgkRVogFVOZDTZ/PbWBKftqSbtccqiZ2ghilCKLMQI0AAJNwDwX3i/tT+/qtUmxBmvZn1ZtabWW+eo97c744/gObEZ6g5YaI58YDm/GnpO0uxv82rCwcaM17takvmMBNOeBvdLiAnyjMjBcBCKkdxumMZf/tVakqRFWVWlFlRZkWZJ5jnkuBwTE2iRE2mOWF+Wm7X800VzPpj6YWXKMt5W3jRlFV6s1fSDSeUHhCNtAOaQeEVd1AE/SmwFkzzJD9sr5mpnBbLklnT5sTeimnjJ6vQWwbalF54qZ9iHOaNJvRO7a5CFwOI/vMq1J+HUfApUDwM3J2r3e5KBzyzWi0S1/Aa8Q/nPZg8xLPiX4POK1zHjzBxI4zXEvVTehV+DU6FJc4eo0uhxAl60qwpL9U79Y/5kDv0ZV2yXm2T1a3O1Q5vDGXIY0K5I85qCzCQVPqY9585EP67502nialY0zR6V87RB+3f2s2QdN2iIQAT5UFQVbjJLAk3wd/NXnUjTp4V3y//vvr0h+wlnb2kvxQvaUkSpKUpXf7sPm77ZpT7fR2mGUNmVK+km5fUI2CpCiaCkcA6C4QWmHotncCA29aM6jUzFdqW4XnuyopK2j7Vc3q6dAyl5K7dJpKr8EFI48i2820w9T8F/hSx04dLFHFOFZ/iD0Upd0UUvPuFXcBHnFpXmIvT8/JjZM5lzp3IOZpwjg8srjaT4Vf1NDkx4Q6WHNf7GhX59pAbr1h1s/57EIZm0eO3aPqvf4O/fXXbkrecKbpibNGiktzVMr7ud65dbK3NujrebWyVrzLsIgarZcUIxriymBdh8yJsXoTNi7DnGzYSvoB74IVYlqjUNMLyO7V5f5Cbu69Vbag0O8iVPapZj1e+RruSz9Ot5T3vOLPs0Xvcd/Lt0g4eVbMXkUcxZcR24dz7XjKO0vxdLWfWXcY/LVbKRl1a7YRuc/btTNX7yb5dRPicIUPRCEPbIPXKKD52wEEfojfl5+eiE+fTCjIwMzC/suMKHpqVY0s4SagyTIOw3nxau4+b8Cybfva33b7MNUX16QUHBQcec15o5QAzhiiuIRWWCWAAdFRaa1B7hMFBK5Nt+u/bnTUNT73zf3iH6+mJy0uTbv/PtyU6Gtg0m/+b1WV5PfmyYbDNgqDUb7SZW5/BRtx9rVA3a/uNfqk/zfZW7B1YPkoGQnjH8cog0HqfYr9er12xl9a8Tn58nfzJv//X2wC73cXbJ9+8fdIOy95HeJsO2sPSZ+uL9dsnT98+WapgVMWWkq/z3NpflmVpIG9ZWL+c0GT8Z2BYvB0aGG8HhkZs4sl//8eT817qT4J1YRqB9O3ChbH3cmVdf2NTx7LQR3ewrXlwvaMlkCPESc6oZJZTrpQmwHuFBBDMGt9GIR00cmIK5tjYLLY2i0tS0+5pDjd+qmq4tZ/GsGtY1ZlqZf/Hl29+pum68YfwRldPi/DOFvN/1FRcuo9F6FtRPlU0rd2DJ6HP7mFfrntYDLZryZNGcLwp3+Vibua7T4eJ53ZJ2WAOul6F7mlblhroOHVKecUwE1hIqjBSDHliXBvc0WtmUgfVu/FM7YEH3Q488myCOoo8oc8T+vvYV+qg5sxzktExjiaRcJCMcbRnw3UId2DHDbF0wKSTgAMJHbFUKGO4hcgLgKxDPlh1mtthmt6Bw/958vTWhlwmaibq10ZUeI5ETYKmIB0j6i9hcjQK1FVdOM7Tskb3LA1thZfxeCLsMAGESMaIYVQryL2mcBinZTtfAU0xzjDNMM0wPdcMR6MwTcLAIBuD6a/RCf9XV3y3GiPqx1Djo7Oro1BtKnW4qpQAQBGiw0zfKY0BgcQGWHqMtHdJOMVgU18BWkW5/JLRmtGa0XqOKXBG0ZqEo0E+htZXm9XfXTeFXAd067Z8HKxNpQ5YqWdQYwUxwFgrpihUUCAOIMMOKDqymto0lcGawZrB+tWDlZwjWJP4NyiO2azb4k/xzOBjRuv2XV3juNlaVeumN3DSKy8Mpc4ihwNUJdQIM8YdhxzrccO1auyr2LPKqwKZsJmwxwhLz5GwSTgUlGOEfaP0wo0arrumdBysVZUOVD0SWhNjEXAGeiQVtI5bRZUF0iCJh6FaNfRVbFpRmYmaiZqJeoSo7ByJmgRHITBG1Dh6QtvhK1yOYdV0qoyzNanXPaIluv0ryYGnmBAJOCdeCQco9lQHS3YYsElrXwVlGc+UzZTNlD1CWX6OlE3CqhAco+wPq9Vu3DfAN6XjbK2qdJOCSec00EQLigz1nGAHteXMYSc8cn4Yq1VDXwFRucgLARmoGajHgCrOEahJ/BFCo3tYvWD+lHLjofwjtcYC+eOV39LffEnAPDl+P4ytYwMuorSNJCpTImyLfyo2q4/bJkF1EPtdecKUs5FJMdooQGy+q8KXivVqVyWvzgH9maB3G9A/ieP/PUb5j+ETJkFUKA2i+vPcuOL50hYvwkhdHoZRxdJQWJb99nIgjKpXoTvF9yKG9yNmOCGMoDC7J9QQDaEI033WTvF7zZxmiS5DczMTG5sFEK7Daw6va3Y3uL3Rva5LYMvq8M8ccpWRm43Wd3sw/VONpTMNtWJjtE1CrRAZp20v2KrDwR8Hg60GqnRDV5nEEGAcnlkjoBiilBskCFXEMgXhMHN/nCDY6ouj7m2Tr2TsZux+LdiF54jdJB4L0XHsvnabD+HKdgy8Sfk4eptKHfgC5DlyhgEmADACQapNAKsCkiHiBB+Gb9NUxm83kotlqzfjN+P33CK4RvGbRHAhNo7f5zp85jH2NoXj4C1rdPMLUAg881Zr4STh2AmDkGcSKaaNkH6YumU7GbnnemBvRm5G7lkhF58jcpPILsTHkfvXmMctQW6EiVraEie/fagLO8jt1+hm6dNaOqgsRpJgagwFgBJkgeEAUVcmQ6geq99ORm5GbkZuRu4NkEvOEblJzBcSR9Z2g3wvooxvx7h7kdYYh29brRuf4LFkykOGFZcWWaoxtRpyA53iSrFhAreNZQxnDGcMZwzfAMP0HDGcBIYhOY7hgawGnVWAVyNZDQYrddNwOcYkDf/vvMBeSE41RUhIA4QilpDhVYdXk2Q1ePT4Zd0zx1mmb6bvudO3PoDg/vnLzpG/SRgZBuP8feN+31WjZswMjonXdVNj3Axuq3Up7DF2WmBpJHMKI0S98h4aYbFAGowsRLSNZTM4m8EZxNkMvgGG+TliOIkzw3Acwy/CD3/p7Lp1eGhC8cC+21CdbmavYOhaqY3n0mLKrQOOQcIBcBJIwfAwfeuWMno76KUZvRm9Gb1nF5E2it4kIg2jcfT2gnw7LBwO8h2ocsBdiSz3HGnMOVTEcUq8hNoqwLAe236bIsj3i8MuOR/sZureNXV/CF/iahuPBC7PBluZuVoU2wu1iZfqMyf3j9l8soGq1WGN+9s+gpPCHiH05RlCHyVxdDiN7BBgW7zefQrC81OMXU1wH0r2eA9/7nquCSGg0hR6DjXy2mqEAKfIYgQDxtWe4+GHp3E7NDDbxv7NytjaiQh90OpNjjSEk592G+9cHQFYIiVIxnu3LXEXD/qLuIsSLMD/3FanHJbnh/ur5ftPzbHhj//kwsd2cOHJOHqURxmiJC4M084hqlfNMdv1q+mconq12a89NweoNpe6uV+wtsxBY8otKYCNJMQrQDVQyAqenp3a/P7UY1OvmpOuZ017Ex2Zetjwg7Clts4uS6JEiy/YbKUcbqLgxfwFsaMNRgr1Qc0XMQNkBZq6v0XZtYdjzBG8bK/hyyM+WHqCnZ7HyZgkCAqnXvgvVpfRdH29Cq/iebBff1kmjKkKY9nzeCb1HjQH17uTUIioCBNRQKmWYRolpdOSaUWRBNCrljYHjZyGHFM2NtuG1maVGT4RcvoNPyRy9ifSH2FP/4veHjK3V7Njp61fqnl8ELUMk/aB49Z7xf3z1tPn+afiZfuDzzx+vb15YEm8ED9r+pmTPj2OU9hj7o5Wuo84fPcTIZWLKWHk1Asqo6mQRusdTYaUrjN9rQtLB4mTxK2PZ3dFZ2o8nDjpIGFS0HeqXMT5VLSPkizorN1m7sL4flZ8v3Dv4vLPiMWynUdB65gsJXuqRa49jsKQDIMsqPQ/5NWqvEdwp7mXTsoAco85l0bXipLgHJx6ir9ehvFYz/Z6ltg2FKqODba/0s3zQYCwgjKuhfKUQ+aU0hZLQBByFLaHfux/fprdFZtpZmST2l39hu/b7grfIEC0xEUkTvp5An06K/nlvG43YKc9C/ZKgOU2Zq+LueqSteO3T35chcrqU9lykMXpbbXxCcuYtVa+9QEzrb3et8/KF/N5pljdeju+4sX6JVW32z4WCyyJ/8Cp4/ErtdnNg1HRDJ1flqn5ta5Lm5G+Wrpk069X1j2YkjAIjQTMYWoUA55BbpVgCHIdJlsyMc56DZ0m9IcNBgXRmkkTyf/Re9wEBVOm8HleXC3n/3nliqZXtaUUBFntyn2/0P8Prtrt2+6ulss4Y6mWoKP2TGFxtys+YSK4cMEUC0N/38m4BGQu5u6Ds6HDwVB8dxG6uVCfAqiq9eKSXy9ev05+/Kw4MLfM1XYXJkn/qE2/qu2n4cEX1YuIRPv25+///F3x8pfvvi9+evn8T98HqlW3idbhu1Vs5m2QxA9xamWLcougmAUDoyTWNv6x7cDbJ7d8U1/dqtMYxJtBuh0i+UFhH+cNsLaJLfKI0f5jNPJXxU9Lsynt/u+X70Jb8UtVo/6Az9XS5rflKHwZZejf31ztVpu5WvzHgZLozhWqx01GUDlsdvVvAxQvggLdrWbzuh8zt+/HLPZjdsC7bTnZLqVhVkrDHw+UUtN0n8ZRT6yX726ktZJwGQKOaK03H1dHtNbu42pUa4WyjtbSwhntCcacKCYdURoj6ZTAJGgu58Wo1goNTau1ptzxHGz769JS0y0ZZn5Na5omMRkEHhPyoBGPGae7unxE0GNpV9Qx1gYZyii1wlJoLOQmyD2I2dA4OSLqsamJhL3du6pbn1riezfIxuk5G6fZLr1jf4tM9fuhehLiQVI/41erzc6vFvNV8dfAy47LyLop+tCU1CjvXu/6oinDEQbeUy0E8JoZ4ZHwWhuIsE5OET5oZKpDg/bNzqqBNvlxGIc3uO5kjKnTAw9u70Zq63Jrx0Y42fk2XP9UoXrf4aJN2xF3ORK4f1SfnhbhzS7mpVdrhIsPKnWvIba1q2rJvxZt27vG/1J9mL8rSVRCKHE4mcdNq9LBZHmrPZm+QP/x3WKl1WJWAn47siPzOvLQFD+Xdertl/qh8kJDRvoDIT0JHSHpaRzP1+vi9cXqo1Hb1D5X6/W2vVqhPLnWTUEskHJeYqgBZhIIoA0GBiukwr8xbJNhJg2chvDQ0KxpKdlEn5TiR+9x33b4m+6O+EXciF95X1Ig+uWEEb9afArkts1a037TJ1Ivnl1aBn8si/i91+VJR7uiebw6iORZ8Se3i9vtm11QDXHnJSJ8vlgEA3gT71uqiNDAtnjvPjUnJ+31w2b+vtYPf3jICX79Hgax0SkboEbzDl+bzWqxyOyo2IGTCASSRiD8aRN07u5T8Z3bBikqfnSdKIR3VaktC/cQ6Vztbi9rqx3HijmqPZLAaEIg4kAoQyAm7dE9nSZO9CZ2210i3M04KcfaDAHIp3Iuvu4+931wRAmUMhTggCqJJF+uwoNEXRsGhPq92Bq3rNz/zWq1OFwR2D4LlkHZ3W1JpbeHS0ANkYLdEKxOvQ92cjavB57XfsaLjYvjIXyG7383oXYYCs9Lj6JoKOxKi/Bv8RNHeS9+KtdRJt7JMGUPZmo5c3UPZqrsQdTI1X5t1EWz+LVn5UrOkT2MLnFuuHuBk7gJksZNEECK7zeb8A5edb0dQ4GL19epj2N6sZvN1hqGrABIE6Q5BkIwCo0ykFtgiGhzKaYtnMa60NKsbGoW20r8yiYh3EjrD8K1waluuURZreUVZUeL2NFe4Gy5ItiYVfFjl7Vq/5niFx/gd7XZlrZQ2XwYMKs2Mnd/5/JuG/fuaqE2FWcvqoOT7oN1AXUwwOeLIN5/n7txlAQ/kE7wg9pE/bko/hR/svmUoMLURe/2JRUtDq53J1kECix8TH+NsCHAQWqkFB44BSVFLTAOGplqraxpdrZvd+K1ssMbXD/FIlNzo+lCUXehneIEq+hKh+9a7K2hZhvgYne5oEWZZry0jSrX6HDb6B9cvYUpZb7p4uOMFMJJLAFJYwl+mC8uo925rrGSCItvivZisr9yOH2ABHnEkTGQWsGCdCgeRAM46ahoT6Hb//w00dg3U7uQ7qMRi0kEo3iQteJdx/E/qsH2y9TLCcmSsSoD/ubLqzAkw/Qgzpmjsbh1ZaaJOpxv7TbVQuyzOPzjQc3xtOVtsVjt4hrGfnutWrpdrSvX9cX8fbRAQxvl5e3aRRUe5MuGxy9NwYd1Zu18/UMtelDY16LftkGP8f2+bt7v173MkDivk47zevyUxS9hIKnUaz1eXdUXa7f1/aWuMysyQntvNMRCCWaAxxwHY0xrZh0grepsf3+i43psZ1Y2NIvKbb/mPpH7+kjz960xXZF8mZ7R7ZZ/X31q7O5tjIeJle3TUj/OagVZ7021QUPVkmOMOQqqt4zECVPCykK/XG13cekyvLXoYbcOM8HV9mEpkFcPpiVA4uhOUkf3Ji7tMNFJPWlrPOIqCqQXu2eDE2E9Z1ZKSShTwW7WwTAw0vrwN4fAngNpCyfaz1VLlc9ebwFwKhv66E3ulwovVbl0WAcPN/Po14u5cZ9qC+JpJ5qllO84VVYxoLBcWay9d+IM++8xgcCF+lBGuCSU+FROwhf+D1WKgSSfQL3nO5JW4CLG8M235ZrWNnYqJmhZLAp1FWyQuG1b9iLQS63Xi/m0S5OfETFTvrbBmJmk5Kh50b75L2ddstmJfr43D2t+lquSf50HYVhttsWvob9XCEC5K35YxZ3uu1qlbJbz9+bq3htwdE2yw6ibLkkmDtU0dah+qbbvh/ZwL8P13iZuerF7uouRBBsMHbJKGoY1okg5pT2lxFbnzlRPkbZwGh0D78IbW8xii7O2yUmgONj2/VtInW9zML16t1E24GzXskldqn+UeeHKrFKNG2E9qrbPiudF/Vh7p57STCpDspefmjXMP9wLtB7BakPinEwPnJOrRZz/t1pdVojcdn2Ty+J/hNLt4uBY5sOig2xIFHOjHKAcSGu11EZzzCnhQFEhSeqVfNDOyS7JZXuz2GClHbZ35Rhxo3s9wOpdV7iiOHXMjqhBVBl2W7s0u328bZX3rGcyPCuazJvbeRn2f33aosoAMfvGs3HxNUxbEndZmrrLfre6inkuvv99vSqjtHtrm7as4OryvYt/xZqhwi5trERIamq08VRbRb22hinhAFRIC7OnzVBLU+0LVG3PmsanDYS47jbX7y6SSddIy4D7RNPGdckyS2sdpO+Kqp9F08+GA01CtH/b1luD1W7gPntvqb8/lkujTehB1uK1dCWeizT1XHwZGLRT85h5qFbnP5YvNbWA6yqNyrpoKtS28GDxgYwZRhjDHkOukNLWQy61dphACyBrsxQNt3WifVy3mWrXRvk27U9jLF97oxvo83KD4m40eplosFwbaEOLohjGvfmn9S5dmSS5dV462Kh71l0oiOkFS429mC/fV38Kcvc/N1GAl+4+/BfvWvDqOfOrRVyhjUciFd+6i3l4zl90eRpc9Nq8Ky+edbzpLL7kmS5vOlvp+gi60RnxiCzecG5MEhdF2nFRXK3sn93HbcyNMYseO5uBRGXvQqVlqBTDm0v3lc14srKjdY8mLGt++Vv45W/lLz+PCvse3HnSshvc6fpdSnI0ZRn/jDn1wDfdkyK+6QoXPuhQtY2RGNsmXmHeDeyLS0Kqse0bjf5uFenhwy9rbR0M+EpLh0Z3xarcoxhM/xW1+Hoeb7+08w9ze6XaX/oyC3yVPrnS8zmZWU5mdo2Lx9P2/L+J8+H3JegMk5zxMdYnrpmUDrH+pVteDeD9srrcOfYkLesYfiTMqgSiAHqPCfDGGqCM505jrRAj7WZR2sJp5t4jA/u07if5bKmM2sd+zMiNsAof8IyRUaQmTqyUDSG1N7VuEHIwpT7A6sCM2jDGgGbaak8l81iE6bWn8Vzr8B9EZQ+sU8ykv2q0Zps5gzwflH0HKEfniPLExZryIZT/eqF2Aeir3QDNP8ayi9VujOdNeZfoWhBoHCNKSsUYIcoqDYg0nhJAje0RvWklMz0zPTM9M/18jHN8jkRP/OKpGCL6D1WYkh0Aum+LBoHelHdjzYC2jmggHeYAWMWhwFJKpzzE3BjTA3rTypcMdHy3W8sZ6BnoGeiTA52cI9CTMAcqh4D+er3alcnXBoi+TcoGkb6v0GE6xAJwhghUAgkHDeWMYC4lIZxSj3SP6ftmvmSokwz1DPUM9Ue38kLPEetJfAYDQ1h/0e7sHlI92fQdhHpT3mG6RdISwoBiAFKHgQXCIg4JwsjiyrOiy/SmlbzwkpGekZ6Rfq0Dyr1CnZ0j1JMYIgaHoR6G59VukOlNyQjSy+Iu0SVlQmMosZOMcu6VYxhorBhHggs6QPSykQz0DPQM9Az081l44ecI8yRQi6HBlfTVajfo5uKbguFV9LL0INmEJ9gLCY0WllLMKSTSGqK1wQLJvm1etZFBnkGeQZ5Bfj4gF+cI8iQmkOFBq7weLvGpjkX8NIOwTFp7fdDPSPWbxf3UPy5jf36rK98Z55uu3h/vmzveOuVvDgnK3M/cv9Ei+10pgBSXZxgKJEb0AE3CPhkZCwUqYsqKkXggXRWNxgTF8oN9VAIsVM55rYjkilsCYn4kBb1xzpLBuKDYyp1b9o+I+NnSz8TPxH8IS/8a0D9kcNIo5JN4TzYY7xlGyrvxCKUw6t4dj1Jqa3TzBmtDLDfQEUE4Ncw6D6iHnlmhPWV91LftZNhn2GfYZ9ifNezROcI+iURlbBT2L/YsGqJ9S6pR3NdVumfKa48JZdgqZjXiXBokqZSaAqwBd3KQ93sOZ+Bn4GfgZ+CfMfDxOQI/iVdlg/Gqb1wQ8cvVMuYWGwD+rls8SPy0Tgf5DDDNMWZOMM+koYxTgiz2BHOINGU95KctZeZn5mfmZ+Y/tKP8NdQn50j9JKaViVEzf9QdJ1rex11y2hrd5XuvhVDOeA0h89YxbpywFGmLNfWADtr49+Sak3GfcZ9xn038U2BPzxH2SbwrS+Ndv3XhXbviuQ/vrH7ZCet1Wapi4V53VqjvlXRtescgBRLGHVkMMDeIaCmocRRi5jXaI77XzGmEr5qble1Ne8DXQMvXETvm48bTZ+Seb+sztCro1FkWo8RE6ay/59s/1p+0OXjjIiA3ximE4RuJFmBWHZ3UnMSRHmK4rXLpx3Tf4Y2UWb19eMexKAyM3adnd0jcOmd2k1PypqDsn2RxeI7FMCer17OtcXj0sb4U6/cW55Mk0jl0SEmveOCkkhQvX/shJTSJTuVpdOqrTbBuzG7oALF1VdQ7Q+zgenfTlGBCOOMAMaCU4k54z5hx1lurKVett2S3kanOI6mb3R/5NfFRi9fd5ybnJNAjVJblWLk5lX9ercrjDkoDMTCreav1sQdhTCw+/Z/il8CKuqRoOtzAOyC9PGUxJmUr8RyshmJRNxsEKJ9DUgtQEgnI00jAX8IH35/38majwkyrPo23kaNVUmOXVqjEabj4wOvMQ6a1Y4ZZRpjhFhgtIFfAYguTw82H2zpNuNI2Z22j0x71c/wm9y1Wr6/0LiacTj9t26nqwJDt5WoVLBWzWgQN6ZVtDvvZFpfxmKDOIae7+IMY7Jmtl6/DesknQ08L3yRyj6Ohoxxfm81qsRg4xXHbFHRPcKwud896QpQw55BnygfQMoEERZ5ICoHU2ODe6Y1VGxOd3Ng0Nu0Zjfunv1d8Pt+fw1Se6bwIT+OvFs2hZ1EmO3n8yxnf9modSVlB9eD0pkmPeX+oE5kmkIIk7ImnYU9vnLl4sTp6xtEuVDGrm5xwdKRmP84pVv0tqsk45j9PAg7ud0cBq9fc5fpgVfiMTRy01Ptqef07r39/hSFLX5kNNcDrMwy5kiM6iCUhV5z0ddDB2Us1doeOXkqKOmYYpY4671wwv4z10HvukMVaAoUBdKp1w0waOM0Ge5waaII92KyBsgbKO7CTMfsho6dGeZ1ET3Ha53UvbKrG1HDEVKewQ22vKScWYs6skxo6AoSR0FPoGJHc8kNqTxEnlbmduZ25/fVxO08Yziyaa1T5JNFcnPWVz3PdzZxZo1bpgbSZaVk3bEshyKwSCENHKYTCCu4wtwhTISAyh5qnbCErnqx4suLJiudhJwz4HJmdBGRx3mf267jWb9y2j+1tWzJE7qa4A2/niRLWak0dhJhBjD3XBiLEEREOoUN4N41kfmd+Z35nfj8sv8k58jsJreKiz++/hvZXfXh/qC8Pkbss6+ap51pLhAS0gHosvdRGOqM49BI4AnrYLlvIzM7MzszOzH5YZtNzZHYSIcVln9mvNsMW93pzxN6uCruhUUhCTwBxXjsFkdZQQEyR0oHczkN4iO2qicztzO3M7czth+U2O0duJ0FVAvS5PZK6pobVscw1A1UOjhdhQFsKPdMCUCkRY94ZzX2wy6HQ7pDk0+WtyTzPPM88z9lpTic6P0eiJ1F+AvaJ3stIU4NqOBlNp7BriROgtLGUSIg5RYAwqEhcP/GcCoX1Ib+nSEGTyZ3JncmdLfFTuS3OkdtJgKBIAwR/Dg0VvzoVvliK7Y/7KxWw6793UxkoLZFjEnPiiOFaGMYJ9A4gRznRrSN6/eOpUhgsykxdVZvRY2gWY3InTl8wcI8emfFAkODRlDK3jrKuUhFEglbhgGV3iqo7T7sR1KFqoK+de+/iiCtMGF6BlJEQbqN2VxtXRWXHlB+hzYjewilzUTXw7F6SGIz5pSXv+dArrVPU90lLR+9XHwTMkvBHkYY/YgaKV2q52qhLVbwJQykR9FC2rov2wp5c606qMeIIeKuM1RoLz6gT4ZJCSjJDkd0LfNLAaUIfGppZ927jXPhAajELs/TwAWYf5ptdsAdmu/AsE4n+De50oyjhSQHwfLk3K/YmWZNMav9B49eN3dtzoUoeVYp6aWfE5ymq5yku1ea92z2suDdDY9gLNS0bckKtn/prF3aexJmJNM7su6tVGPCuTC7WybJiq4JWm1XC3r18kKsIBZ3uMcMaQ8KcZBYBxTwhkgqZOB9125hKzzetVjHud6XpB+9yE1FnEwp6mTyuJ+pNKqJtgYuVL2UZg6L5wJUIBq3+Qc0XSocfhilH5IDeREW/DFOodCz8snxoqX9UzudPh5+iHi31ux96lKEa/edJvszXjbEk/Eqk4VdhrhfVVo9im/L6IcQ6VzsM415xiqgV3sc/YkaNlkIRzJ0QDrcM6zQxFcKa+Xrd+KQZoa65y30jbMhWKTNbXkWARS4ln/SXYKZ8vJiH6Ud439sCkhJX4WkWqxj2to3ZLfV8GYyYMvdJ9WBFLIyToSaPVDRw1PJTMwcKf4uT/Yy50zFXvfDhKVm3rP8M7Wf+qskmWwMNwXSl/KfLy0ou4yJSk6e4wdu8KWwXiEcT0Ryte5iKZl/5xGw07U1b/uxvXyVNRwCKiRh3w7vdmnUTZKdpP+OvoWuvYteKqNFj14qya9XC+bs4GwvG2q5ZLw+9Mu8Xnw7Wk1XxYb4NM81QsNrMw20C+/bN1YuXcQm9TGYZ15VXHyPyfH9tNJDVRayGBrar2IvQ1iZubyfkXMzflwkuTbyYJOtr8ko9y8vpeTn9rvLW7D6t3cfNfCRx8WFpX8G82deYUskM9WpcQUbZcZ+G+p+WDORcDkB+t1ldBZF7XVY8pyjaQc10bol3IBhTuDBRuGhQ4faSObRacTifw2F5Nx8ixVZRiCjDQGhMoDMWYKAtEQIj1O5/HLZy2uziy9DAE2xbZw2cNXDe0P5SFe/Ueushkw+N6yyU6Cw8qLNeBmNhp8KPB2eJl0npsOZqq3SVF+SQcaexdwhp7gCjMVEEMNoxS7HpK6+2oay/sv7K+ivrr/vWX1/vpAudpfLCifIig8qrPjxnUHWt92UjiquucOAXDDHxiGEiiEVaG8udB0J4r7XXRA+orbqZrLSy0spKKyuts/AivhH08VlCnyTQp4PQ/85tA9gGmW+bohHkV+Ud4kvooOXcQIUEYgQLzrAAxBMLkDaIDRC/aiUDPwM/Az8D//EAn5wl8GkCfDZs5V+sdqvdu41aX3waNvVjhX35mLnfVuqmwMPWemAo5xpIToCnRnvkcLD5LQuzgCGTv20qa4GsBbIWyFrg8WgBepZagCVagA9qgT9t5naQ/u+qghHsx9JuvmomAQ6MgkJqLbBGhqt40KB1WHGbHDPYbeNrAD3MoM+gz6D/QkDPzhL0PAF9mh71h6vl+0/FT8vdZlW/6QT2PhbuXQMr0ifXOnxHlsB4AoG3ykKpJWfaYUwRxUZIRFt7PmngNLiXDc3mseuzJq64Pai+/M4Tgf0Gd7oO6qw26KeDeuB12a+i7FcTLRHQXZ9sv4ktNxhfugBYtT+ftvqNrXgQuZYeTPuHMBCce/+00E6FNx+PsI3QDQSbx3NtQ9ury/k/YmhaTs+RwTtVhM2X4D6c42tOj68RiaJKc8K+CJK8Kf4aUwi9VO/UP+bLNMDGxNJZlPnZZV06HmFzvPJhiE1Z+7dY+7em9onBNun958v5pVq0/UjyRu0xM4kOu91Nr8uKchcHQ6dfuOrh/ksns5Y3TRRilb8qKoM+qKqMUoXabNTynYuEqyIOY/WuCivqPuQ5RFZlw6rsMzyaviA9MEreswsgGdUobf4chMCIRuke31yysiL+wAnO3dLupoZyxjnqFfXYYMU9sWUWHcIgU5i2i1zdNk6bB32J6mSCJa+sTrI6+fKXpG4G5weNkhgBMwJJKD2Cw2Duhfa14BwO7Tss765R0bjrLICyEAPBqeUECwW4pMhoYOwAnqcI7cuAzoDOgP7yAxm+RrMfnaVmSWLGERox+efbEneDVv++bMzwryp002hSjYBEikhvkXaaEolJTKQLJA9/00O2f9VM1i5Zu2TtkrXLnZn/+CwhnQRJIzwM6d6OdMKdg33plNFphe4BnshB7qz3xkHmLBeGEg2cR9hb7gDtMjptJjM6MzozOp8KdIeUJmdJ6SQaGJFhSv/ZfdwOM3pZlYwROhZ3+EyZFBZDDLWCBDqpvAnGtASMY2lt+VZ7fI6NZDpnOmc6Zwv6zthMz5LNSdAuosNsfrGI7tkjeDb7wjFC1zW6nvySxu1MSQRGMcuQ9cpQ4xhAGGkH9RCk63YypzOnM6czp++M0+wsOZ3E2iI2wunwuVUnpU5Kz33hKKerGh1OAweMgVZ45hkFwFEvFNJAQq+wJmaY01U7mdOZ05nTmdN3xml+lpxOomERH+b0q9V2d3i6Q4KedSi+5nyHa2ofcT+P1X9bl69xKv/zGKG5cElH7oPPN7jp9eFU2f888zn7n39ljigpfc/OAR2NqZUk9haJkY3OEomDfugdZo76o/dqdaYC0AngBZQChTkAcYrHTJvIEq+ktLh0vuzve7ZtTTYd+GLUTZ4OZHWTpwPTwftBHdRHwZ3EoiJ5FNzDfuod/hzxVx+o18G3EZZDzhDXjhlLHQcSIaUZkEwSq/0RfE/sv54BngGeAZ7917+caQM6S82TxKxicM2Uwc7VNXOGqsa1k4ZQrat2iACYCessUox4YKwlxEPGCYJYlGcDjM8aQmNZ62Stk7VO1jp3N23A5whvmMS1Yngc3quNO87uqsJ16A61utn1DZMYSmA9YggKzJiFnnMHgfGUAnWM3KGtDO4M7gzuDO67Azc5S3AnYaMYHQX3UXedGkDXe+10K3YIzrEBSgjpkWaUKME1VVpB7znz2lBzhOBT+/BkiGeIZ4hniJ+XU/woxJOwUnwYVrosflZLGxPgDrjwLBdV2Tp12zks6EIacYWZABZD5BEyTFEphdNWS+UdRR1Ip62czublrG6uomMYRi0hJ6Txsdvcf8rjir/dj9gyNrQTmVTlsn5Z0XV3oXZVjdHUx2r5qag9RhvOPa1IvFwVV8ulM+FZ1eZT4RYlpbe3x/A1gvu1n/X9QLlm49HcLSr6sY0vrnr2nbnadcgQL3R9rrknwXIDTmpiMaBcAWysxlhQZZHmXbMt/HoKKy00EwylzS6o3flqVo/hO0PCje73UGwov1rX/loWzxeL2U/LWZmzv+l28Wtt0mwbbVuiIjxAMCK0C0ovaubtZRwzm2L/tNtnxY+hi4syt3qZNL2sG38WjaEEMzFl+uVKzwOEfDwiwwajzqvtRbjVHyYEyHii7Ztr/AeTvyR+Dafxa7+ulqFDpSH3Ph61MIugT3fXPyYV9kesbMZ9bq+tf+h1O/KD0/xuBxsdlp9JpPUW97vJ4WN8Yn/b4a98MHkqjZCnYQa0WG3iSQQf1adyfnKx+mjiVKOUwb14FqvlIkzFnhX/Gk9AqMdc+PVFnGKV85G6C6V4xgnPhfoQpjONpG6csp/qRsJkZ+2i5Jp8zkGeeN3eOfdWM65R4p2dlyseg3kS5IbZGMwPHFxTQg3mWu5V6FpbSnLmpFLKUWmI55JqLDyVniogrNiDvdfMaWbXlwTyCQyvDPIM8ryC9nk8f1DH11GWJ4FwmI+xvOfz2qHssLvrQJVuAn2IufScKwmQZEAB4yCyhNgwf5Yu2bgeaCgzPTM9Mz0z/eGMc3SWME/Cz7AYg/lzveosd3b4qurCcZSXNQ5SbQLuNSTAW4yEMgYDLDAATlEEBBohedlOBnkGeQZ5BvndJeS8MdHxWRI9iUvDcozov8atjLE184914SjRqxodohPCmcQ0prNH3EpEYu5kAKHmHAAD7SDRq3Yy0TPRM9Ez0R98uYWcJc+TaC8CxnjedzntcGrE23SoTjdUwBEJIUUxPkAbh7RwXgWrnRikrEFomOqT+JhmrmeuZ67nJZdTgE7PEegoiQAjaQTYt1daV2Ff64sE5Lq8fFlfrfidXOum8oEAWeYpYUBpgYxmMPzLSQ+tpJC0WT2TBk7DdNXQrGxp5rx3Zhfd/AJB78TH7Ka3ewhEp98vOlDOflkWKiJmW0Ir8MoEZEZWh1+FTu6iJ9jP6oOa/RweudjuPoVfV8+0DVgtfU9XvoJ2X+w+2+3/c9zFxjxOk2E05HLaK+77nFYvbf/OziI/wEO5vKEkxIikIUbfzbe7oLXjZy/fUUIHuy8qH3VPiIPrB54RljAjJZJaI68YhsxDx4yzGECl2owxB42cRoq2sXvgxM1u9hCU6H7LGzEi+cljhMRi/p9REPaf4ZAS/fI+JpJX8H1ZMcMiCWUh3VCWK138sPh0kHHqSvv6WuOhXl/pbswozbGWEhALHCNYYaoB4VQKIKXQ6SHI9c9P9VG/0rOynW4sSWNO35Gj+m1uehNIiEkhEeZy1Uf8tEineNEI74t4eLxtOYfRmzhNW7qPxfe/rxcrW1kX4SG3DWhauoSpogp9+aBKvlSi96x4o9aROzGwZTG/DJa6reqHgRhmjbF7c7V4VjxghItrnmxRPtgQTQar9IEy9I6+bp4k8S4kjXd5pcKY0EGMLnrGx3pf1DU+Dq4fpKujhggV8wRpoj1HClEZzyLQFHimQOJv32nkNM60jd2D8XGzm/W4gg6jYGh58MCUxkf3W0YmRKi0scldUyT0OlgQq0VxuQoPWZkkqgqNayyQUOsa0yPQqFyN2X5TfLu4Kqs4tXhavIiLVPu/vTYbtTMXxUtX/LBx7mENluT7DQDmsLTPlkOJebRU+TEuj63iQwSN8W/LYKd1hlBtiYUaf4tjoAmaKsMj+wPi399cBRMuaJD/OIBVd8mtevZElEv53dW/DSJ6VfZj1hOyt388oF7zm1T66y+2fHcjJCYhSIR2kLgJddXvg+FH67rwJqFHR+sehh2NV/5cJh60d3e5G25yq1vbWRNEGfU+5EiehvCr7byajIXJFo5LtquiWvktF8fLHY8whIKYaKfC646r781DR3yWxcXWuLje/nxZzMPLMrtYa7V2y9huQ9KPTseV6m1eSs9L6ZPm/Q/DcTc3QREPK7VO4ZBOqyuc2/x7DMdnFxtFxrRMEhtF2JCW6fnSN2QZ8aM/KO6Y3xhpTxTwFGImKNaWaYsZQ5wqrhjQid7pNHKq+f24Vc0kpndWNVnVZG+cG8H6QQOfRkGdBD4RPgTqerwMkdrsi4ZR3UyXU1YrRA31WnhOOA3/MKWJNQALR5mXwPZZ3Qy2DOsM6wzrDOt7gTU6S1gngU1EDMH6h9VqN2xV+6ZkGNVVcYfUjFHrvXSKOeUhQwopGP4bzWwlrR2wqqtGMqgzqDOoM6jzOs6NtQ0+S22TBF2RNOjqZ1eEAerDGAk/utqozuQgpmMOhbNNWniwQ9Cvc2SHYLzy5ymYgfYah/g70zS3uudD7Bn0P+mBF36rimoGRwVTZ3reJxSMFCnVhVnMY97QpLlnxevGYX9+GT9sA+1qJa4oZS/69JcNV6pmV1Zo29gGNefdpkppWkcGbGI8QNZIWSPlLYVrVdEgt89uS4GOqaMkZoyCAXV0kGmtYe5QkrW0rDPnQR4ppjDGBEPvvCOKa6yZkgJp5D3d66e0hdMmPF+ePppgCpT1UdZHeSlrGqI/6L7DGM1xEjBG4QDNe/vDDbOGt4e7pd3IEEYoMAprRxVRQlLpMadIacmJo5z0mD7F5nCmeqZ6pnrO1nOHXEdnyfUk3I+iAa6/upgvVtvV+uLTANvXaeEg39sa3V1lipG3AMnwwE5DAQFznEICpBYOJVk0++1kzmfOZ85nzp+p9Y7PkvJJnCbFA5T/YbWyA3z31eVBsseyblCVJZopZDS1DlkbKA6c0AoYTAmF1veYHlvINM80zzTPND9TmpOzpHkSJUvJAM1/VsULtdm5AaIv1MzURYNUb8q7nkUeQ8SJZFwarBVFhkAopGJaxOBZ2SN700qme6Z7pnum+5nSnZ4l3ZOAX0qHbfXd4Er7sMtot7SbqQ15gwh0wlEtHbVecioMwYQIhyTgQxb7Lq+0Z6pnqmeqny3V2VlSPQmwpWmA7Z/dx23xUr1T/4gZbF83OxMN25eheHZZF8/2GxcV4YcKu4G20CMDKWBaaR0dZAiVBEAPKLTIJse/D7V0GuaHWryTRDfX3+i6o57vAugHX7Qi57b4oDbz1dW2WKgAtZi6Jh7pvL1ax3zIxTbKn9knPK44/bT48c3Ln2mJ5b+F31xpV3wITa6eFX+KebFKQY0J+AKV3hXhz/F9NFz8w4OmsNmUeXWGD4LvlvX98qqcPF99QiychHvSNNzzL/HtfB9HzAA0wrhYzFxZeIiMflEHGBxL4xjGzBEmAjgkwYIbGQ1CZgRofS/67ZyGi357dwKL627zEKfC9z9lkwIr2Dt2vg1GxqeY53xRVB1vWFKmOFIBJUGbF++D0aOvNsG20GHEvtusrgIvSoJUlmI9TEMju4urS71U80VxEQ8LrzHzLJ/4XglcErJH05C9H9T2Ito+PT8nXxUc+jl1L3edVokzjjjuicXQWAkw54ahoKKtdIi2m9/dNk4TsKatYOOv6wbvUtBueruHmGw1nzLMiNb19wyTrGq2E3oYZKQWw0T+VAzRi9nnNqt9kF18tv0MJGrhOFHbuhixtwt/DXMQ7XYf43Rkn4ful/CzKndY8baTaz2Y5VUGseJSvS+TaYZpXxj3V6FCGKVBhIPu/0POs/3laPYkWoum0Vqvw0y1BPUvEfMJaLZ1waq+XnGmc7W7H6s88pB74S0j4Y9CWqOxEdaGmxParu50mjiNMk1Ts7KtmbnYBMG6VNsGAXeBmlvd80a8KbX+VMT5t211jkn3uzbcCSxZb1aXq0CQ7dqZeSiv1XuzPrMKnyMAqHrKp5Ezf49HpdSpMbery/DL5erjp2L/4KGl+Wa+S4OBp54M3DZnbuzhEDTa631avA5lGRNJFA1Lo2i+VRsdxk/UYek5HeXVUuv2wziTwiPxmwO1PvNUjqShO02lff2Nrk9ze2DWTxCimXygagk3dDyG6u9XcpuuNqutcV01fP4g+KHvl+VSXFGeNltJsb7azpfhWZ4V317NF7Yj2tsi2FtBNMfSnja3+gwzP6/U5nORbrNE2+XS2UUrshHOkiS+hcFhzvbnfil5huNc+jW66y3QSEktZhbL6C6nADHeW88p9kirdoG2386JRyY9YjhPcUxShnOG81e7jXac0Q8afzjK5yROhaERPr+szoQ8CCxPCVSdGjkYYz5SrYtrhgzzmhqGAfOYa2c0dJRyjk2YxQ/jOmksMzszOzM7M3tyZqOzZHYSdcLwCLN/mG+2u3j0Shi7I9D2scps21QZpXZarxttaDwHOi6DBuMamcBqpygVFCFMObVqENtpa5nbmduZ25nbk3MbnyW3k/gSRka4/TwK5AiwVV02SuqyQgfR2gjNsPGGe2EwgRxr4i3VQCBvAB1GdNlMZnNmc2ZzZvPkbCZnyeYkOoTRETa/dpsPc+O2I3jetsWjhG7qdA/mZRQiaJkXxCttBUQKaYag5kw4CNwgpJuWMqczpzOnM6cn5zQ9S04n8R6MjXC6+vMYpvW+dJTSdZVu+jyAnfTOSCYx4AhCaYQXNpjXTAJD7CCk64YyozOjM6MzoydnNDtLRifBNYyPMDqOldD2GKRNWzxK6abOQbYkY4Dw1DIjgdXGW0AB0lYFEkFG8CCmm5YypzOnM6czpyfnND9LTicxWUyM7SMeZsXo7OUNZsbo1+iGaTGjqHLAOm6s1sgoKDEJdrQD0FkFhncNJ8iQkfmc+Zz5nPk8wGdxlnxOQtlYGsr2w3wXBa94sbjSacRsdXlmwuU0604dODtU2k1bRJyCwDJhmVIWWs+QxtoZz2H0nG6D1AebOjGMNm3yDoParr3PQ0Sqp9+zDZytMOQ2ZfRqGSFrKwjsA9DqhynKl2kboiUpiaqkRVebOKCb+LcgnPXWQRGzYwSuzVcVprcL594Xu41abquB/occvF4JYhIsxtNgsdcrYyJUzMVqtUhDSsvrs21zvQ4pTa92JE9KwDQRcePHe8aB5D5ccuH/CLKWwDakNG3ixJDSqqlSEO4wYP2621wXOHoX8lZ/ttuKW+drP3Khy7ll7owWNAl54mnI08uraBN9q5ZpSvDLeHGmw8W+yh4o62IDOi4Z5drDeNYD8gJCogBQWjjgdKuwBxo6DR4DDd4JPa69z41yUJWzq0mzUO2/5G34kfzqZvDYrpbvtk/DHExfXVZHWZcZqraZHF8oOZJgHI46Wan26SsPgnCSzJud4JuD692dTC4EkMZ7jaBmhljsqVIKWeU0lNgmyag6jZyaiarT2N1mo7r+VjdLWIEnz0nV+ZC3oUfy05vRw863F277RZv2P8YVmVXxIibsc4Uqvpu/mwepqt7tm7husylXI/4W30s8i2PeJnr99zdXu9Vmrhb/cSC43UWd6uGScV0O5l392zBiw7uf7VYzU/Zhpma26kM18nZlH8qRF79NeTTH3DVJct/+8QASTbM9aXm2Xr67EUGS0BCehoa8mC/dZZkGsZfVzjRFhzntDgu6+2wUO26N1kwzypTjmhgJLcaYCimw2EPksJXTKHLY2tQZjUfbv+95yrerRTAT3O+7bZ2SeN+zRIzT3FZVaquq1/ed2ur8p/A08b3nqe89/q54pTahuvq9eHGlO86d2MaDrsuymanLKtHolRzIhg4KVkGBpBc+6lqpOBPGYss0NnovG71mThOOXnN3JCTX3uf+J/VxQ+MyZoZ9V4QvWnaqaPrYSIlRMXNczDfnPrnZau2WVcrtmHtun+L7XjO8PgK5SfyieeoX/TIMGaM2MSo8/mGxd45uFGw6x63rzqo/LPa+y40i7OdUuvYnRzItNb/97aQ0S9f2YKop7g1ezu2EaYIkS+Nfd9dJn/+uTJXcT5RfP0ux3sQRZso0jher7TpaRnnLL2/53W2upNHRe46Zk/gYeRNPZ86GydtZCkhA0s/C0SnsrgY4YpTwBgnoEEAUauy9V1BawoF37WpAp4kTlw8fLVunWDzMbM1sfezuFLdB7IMmPhrFa+KkzPkQXntZ6fY0GU5Jd1DchSx2IlxEhFthJPOUCG0AhdRjAgj2fchOkYwuYzZjNmP2a8EsOkvMJj7GXAxh9jDhxR4mg9kuuqXdbERYaemEhJQ6jyhBAgEc2IqBRtJz1GfsBHkuMmIzYjNivxbE4rNEbOImzOWgJRtkfFHK+ZAxmxSO2LNNje4mBzZCceIoAYgI6aESVAEjsJDAeThk0jbtZORm5GbkZuTeBLnkLJGbOIQLMITcgVRBe56M5QnqVejwVggmNRCYWMKItMZghKB2llEpgACsz9tpMgRl3GbcZtx+Lbil54hblnjUCziE2/ApdqvNIG3tvmgYtnV5N0TZSEu5ipmNESGaeu4w0MAKbgRBXvZZW7eSUZtRm1GbUXsT1LKzRG0SgiDQEGr/4rZObczFEGs3bdkwbJsKHdpi6ARREnojtLAUSeY4pI7Go5s4s6BP26aZjNuM24zbR4TbfYTBQwCXnyVwk4gNgYeA++vFp+LFxWq1HXSp/XjxyTSFw8zd1+hAl1llGTSMI4i4ddJhKgQxShFqiVQD0N23k6mbqZupm43cmzBXnCVzk2AgQYaYW2enHAKu2RcN47Yu767dSm0wVVZopxlSkEhDUEC/cgG1VUqRA9jWrWTUZtRm1GbU3gS18ixRm8SPicH4sV6CyT1NhrNLHhR3fRKMZ9hRhLHGlmEApKPOxTzAMayB6z5np8grmTGbMZsx+9VEM4Cz5GwSLSbSaLEXMQOZK/51NQ9jph+aa8ri2d9j8Xg07lCtIwG4VfXTwm87t6z/UibUbW4/deKHm97vIcJxOx+xYdPN+GqUL5mq54ETq0zUTNS7jb1Nh+o5htuKMYAm8WCC9wF6EGxbE2Io1DYp6i4CQCipUZZrhz2FAijEuMbEOGG8ZK0DV9LAiclyvhiGTmCoZoZmhj4uq/QalD5oWO0oRpN4LyH6GO0F1daYGA6p7RR2YBqm9VYoq6XFykEEWfgL4Zgqw7DTCBzCdIpw2ozTjNOM0y8Vp+gscZrEdgnZx+mri/litV2tLz71kbpOy4aw2lbooJUzTY1RwUhVgnsLvJRQC+64chwaxA/R2jaT8ZrxmvGa8bo7t9DZUbwmcVwS9PH6Qm2GVktNfXkIqmVZh6eEAwSJtRYZZ6igDEmvuVTAWwmE7c37yxYySjNKM0ozSnfnFhI7hlKexGhJ2EdplY29z9Jdc30IplVhNzQrzPuZEJIZiRTXXjOCoQDYcOkEET2aVk1knGacZpxmnO7OLeR1FKdJHJZEfZz+MF/a4t+2fZ76UHC1HeFpVdg9Q4pZzAUhHFuvGNHGSQcdgQBKKGV/tl81kXmaeZp5mnm6O7e41lGeJmFWEg/w9NALtcHdoA9qp7AbVgUQN4g6wRX1jnsrOAp/hAZIxiWkPZxO4H+acZpxmnH6peKUnyVOkwgq2Ymgmi/nl2pRvNqfcjtwHExVZ7Y/CffIMTBHqvaOfanq/rave+L5L2O3nhqn19+ox1F0DyfA9D5kF6KlworC1B5EWB012IzF8NtyiBbW7dR8UazjV8pQzVC947NfDsftOTqhyjGsJtFSkh7D6jGc9iKmDit0LFYosJZcYwAt9R5oyIOxyriKua4U9q3F2mvmxKipR8zXKeKmMl8zXx915pUbgPZBXVRHIZuESkl21HZ9WfbzmOV6Wdc4DtyqWnehQHDimHEGM4YZBx4BqYQVinjENGTj2K0a+3LhCzN8M3wzfE+G73UOrfBB4JuEWck0zOr58l2oWXx7tZ0v3XboFFlV1pjpusb4osFIxSMBq9UvTlsvGLvrxEC97jYPEZ468u0Ol13d6tLtNnPztD2ZebWMn+Wd61K2QmuF3wzYDNj7Wz04GMlnuHZQhTYNkTWJvJKiT9aDANaaI0MBrElR1/XKO2AIE8hChKFzWEKhnXTEGw0Fbl0FkgZOM1MfK1MnMFEzUzNTv6htruvR+pCrBeNYTSKwpOxjtRfQWsNkOKC1U9g9IVYShhiAljhrlLDeCymtY54xZg3pwXWKgNaM14zXjNevBa/oLPHaRmBhAPp4/bP7uO3DdVldHUJrLOqAVWNIIaCcYWclRJAYjTxQBiIGKUfyEKyxgYzVjNWM1YzVm2AVnyNWBUiwCvtYHTiesMbJ2OGEB8UHGQMAZRQaSAR3UDGDUTBiOQCQayeUPUTsNAcTZsxmzGbMfi2YJWeJWZhgFg1g9sqY6nEOKbsvGIRsVdqN04r5WCQniiBnvAAOOsN8zM3ijSIY9BhbtZERmxGbEZsRexPE0rNELEoQi/uI7QVu1TAZDtzqFHb4qpwlTinkuRAYU6iVNFIS7p3zkGJ3yNcpArcyXjNeM16/Fryys8QrTvBK+nhthsqhJ2zNlGbcDbrBDtXpZsay1nBCIfXWC+KDdYsgdySQmCtukozYQy1l9Gb0ZvRmd9ibwZc/oDPsOHzbcC8M0+WDv7jd6spcFN+68MLD+F3a4rnvmrl1lT1z6793k2QLIUlcIYBKW6EJEUZYTLGGOiYnaPla//goUq8bT5uqjZku+zxTsb+z6ktPBNMjd3iIIILmI9WSEKhZwsVtvDO7gKZPkUzh1cThViUYWF+sdqttoduvWj5DUT/YfPnu9sy8VsoGZOvJv//X2zBEdxdvn3zzNrymD1XV+sVW7zUIQ8DC2/KTjxU/W1+s3z55+vbJUl26sq16wJaDtXhu7S/LsjzITFlcgym0Gv8ZAOvbeghuZu1Iixdr6aluuy0bePLf//HkZoDo+G7ekbU1KN40Ee906vrG7YdNItG7cLUdzpVUJ9e6s1UpHNKIEQ+AghAyi6AAwjBFCYYM7SU7aeAk6a7auVh9NEFj1g1ObSwdvcf9W0pBoMuioOyqvkRL52pRWz3bhXPvg70TN7JCgXl/td4W3qnd1caVIUSXq1WotrednI9YuB/5vrnufDDRYIlopNOOV069L56/c0vzaSAEZB1KZ6osHQ//GKh0JPQj1j4t8GPofhNLxrFbPETAx8BXOpg+1HF/T4tFvM1+5rDJk4I8KbjbEI5kbJ5j+AYaIyJPiEgPidjzMi6JMOxjnBR1HeE4gtoyiJz02lAoEIFCWewttyAYDy0c2wZOW2R5bGScYFKQyZjJeOYr1ccB+aBBGKNwFAkcWc9c1OGb9qzE+mIfjWVJ13/NMaEhgMhrgIkEllDDfUwobjTUUHbJWP4+gzGDMYPxawIjOkswJuETkB+CcShbWMmF0VRh3dJuwhoohYVCUK2kkxQhaDB2BBAfzUptupCcKElYBmUGZQbl4wIlPkdQyiQgAopDUPacyEooDLuQJUXd7Ag2zJiZkDxMqTVWHEiNBbAiMAF5znSXj1O4j2U4ZjhmOD4uOJKzhGMSxgDTHAcvV6HXy+PJvMsqN8rlPV6ztymzr3NaCu+RO06V23D8gW7njHDijszzoupJse6nMyz3Kr2KvAzNBbQUKvKxEvHSA6Ewq8VqE0hVhDuGR82gzKC84xTdB1S5q22aH+PoWEU3lDDKv9uoOOxNuO26WPniRRz1sfhv8SO8bjN8Ft9drYL4u+L7cse++Pc3V7vVZq4W/3GA3u5Qq3bjkw9XuU3Uvw1Mu1h9nO1W0YNlpma27k2Ax3q28rNSBmNx9BOalWZW7E2sWfVmVvkPvP3jAfCbG7z9Y/VWZ/u3OqtZ/Wy9fHdcLeAxtZCEXqA0N0OqDxbhOTtb9AkNm7Ku/XxYoRvmxjFmWnBBHVFcI+6VUR5Swh0gjLShxL1mTkyI+0hUxYk2dFYVWVU8Qpv6Bhrj5H2rrC1O1BZJJAmCg9qit1G3v/vwbl23uOvabLEiHBFvCcXWUQyxcZoxyQy0OnGAPGgka4msJbKW+Gq1BMpa4oG1RBLygtDwnGK1CRLxprw+OK+I5bNdXT42t2grdfSG0Zoa5gSnxkCPqCYMx+hDaZR2Homh+UXbVNYeWXtk7fHVag+ctccDa48kogrhI9qjFpAj+sPsaxzVIHW17tzDCI4hhEgYziXxXjHnAHcKMCKAQKM6pBG5rEWyFsla5GvVIiRrkQfWIknwISKDWiSKRmh5O6hATFs4ojuaGt34GyugD4+rrMCaSQSF505gTrgAWDg6oDaadrLGyBoja4yvVmPQrDEeWGMkwZkoDc58vl4Xr3dXdtA1Sq3Xs21ZeOSswl6dI7Hq4W6/VXc78ajC3k2nSnc19MS3O1p7Kl+ofa6q8G62DQb2bA2jvb5eZWa5XOl5RG34nNZ9cIvVOqIj6A91mRVBVgR3fOjgHiLnGLBOxpiYxGQiNsbEQ/egUDirCme/DvsH9Wt03eyNAx4bShAkGsQjtLGS2hlvqeQYtGFI/XZOzBh4xtCcynLO0MzQfGRpV4+x80Fj2Ue5mYRsIj7MzYHjWRKcvR45omWgyoHPjOecM8Tj0QHSIi+dVYppQcIlquQQOl9Pc1TLA7ITZ3ZmdmZ23pad6AzZGU8IbNkphtl56GSYwOz5kJfhYXk3z6IXAY/WQMgMQzIAVFshfcBnQKZCbgiZz0/3M8y2ZuZl5uWj4iU+S14mgZ1IDvNyYKsrgdmLkb2ugSoH4NTaonjaqhTYYkg8RsHGBMBqGROJDIHzxSS7XZmdmZ2ZnY+KneQs2ZlEP+I0+vHFlY6HaNTbxwk2TSiYqaSgImb3ctcbGWBrsQn2JCA8WJeG2fAfqxnxCjjTugR02zgNkN227iiX9/Gb3HfqkD0460Te5f7mzv2+K9zCRfHZPi1ij/teAUH05+/ny3eFCeMjYkyVICiq95DTedeyksR+4TT269uSQ/2t0ZJP47uineIjG6JlvdP2Qju3mmjwHz7dvWaDiGlyOq99OEHOyGE+5SgPLbhttB/moV6V9H77rPi3rdKL6tiK0HnzfvEpyMx2t7qc/yMWZFMimxJ3u096CJOz2yqlY3hMgp4w6uHxpVte9dh4WV3sTLrako4VgSXi3FOskdFUGUaIgoxITbjBHPH2aOD296dZEPfPTHT3qcUyMzMzv9jp13XofNCd0lFsJtE+GPew2TsToULI8KEIaVl3ocpyhZHVxmigrZfWMWI8UtYrSYFCB/Cc4liE8zM5Mz4zPjM+Px+f6CzxmYS5YNLDZz9EsmLISGBkp7BDUKAh8lhDgRU2AgHmcMzcJSyyEsPkXJlOExmhGaEZoRmhZ7F/OorQJO4D0z5C1WYVOLLoM7QtGIJoXdqhqCOqTE1iqfESEhqsX06VFMhi6015RmKHonUbGaMZoxmjZ4zRBAX3hVJylihNwkUwG0BpGJdXA9bo/vogSMvCg/gQYxAQWmKEPCWYWuCJ92FSz6y0Svc4WjaRMZoxmjGardHJIq7vBKFJ5AjmPYT+aTO3PX6+qy4OwDOWdLeRjCaaQIukRE4rAJFEUAuvuZHMKnVAzvj7jM2MzYzNjM0Gm+wcsQmToBEsetj8a2h/VY2SHj0/xLJqvA1DNKnQnc1zAy1BGkEBJSfQY8eRgRhRqxx19oClSTMZqRmpGakZqQ1S+VkiNYkrwbKH1N5xihVChs9TTMu6DLXCM0Up4ZwGe9Q4SoXyKMzmkTXh7wcMneJExYzPjM+Mzy8Jn+Is8ZmElhDQw+fPUdj16vceQBdtwQBCm9KDbSUNENUYAA2V8ARyC4jTAkCIvTKH7k1NGxmjGaMZo2eM0Tpa6P5AKq8BKXwQkCZxRySNO/qz2l1tXP2GE44uy+uz/durMNq52sWn81ARKogz0GAtDGIGA2qMIsQJ0AbodZo4Ss/rBlXdkvt9vVht3Gbf5CQUHW78IU7yrr/Q93VPGmF403A19H1b8uS7eeDhphSPiMlXKvzZLJqkpNuY1HT2y3J7P6F4T/79v96Gsbm7ePvkm7fhFX2oAxvXda+2MatpYMHb8hMPFz5bX6zfPnn6NoyZS1e20zzTtsm0Gp7pl2VZJwhLWaXmUWg3/jPA07f1oNvM2rEVL9ZiU916Wzbw5L+fDj/FYv6fUSTLPgw9SL+8/yzJ57qnh4nZaO8uOLJOnftdmRQ6qPofXDlww0BcbXf7UXuhdsVPlzHqPg7bv5RO4tvJEub6+p6zdbjnHgij+W+7OBtIejuI0iRGiaQxSs83u+JPsfbmU5rbdrObvdtfrTCaXOsmPheGAkmVC8Yux5g75qhGSlBIHbesDexMGjgxB0Tb0B3FNx+5w/XGKXpWHn11p9HNi2iLPC3eudWl222Cam8inUuKzsNvw2DdxcjmS7V9nwQ+fxkxza82q8tgBFc5rV9GUf2LM9FqbKzHOsX1iybr+49hXtpI+VRyu646UaWyvoyyuyk7sTd468zWTer5WZwcz6r880fkO0jkrJbI2evbCXkSUUPSiJrwVvZWdHgnYeAvU2k3SXHobVk8Hr19rPaRYO70Z6fFdB/rwFT5DY6/kXuP+B76gHFuWk7W3KZUxEHoN2HiWdUJOq1MDtP5YfkibTP5e1a8vlh9NHF+V1Y1V5to94fJ3+rv0fR6GqaEVXbIkin1YRXhNmGKc1mnpIlStl04977YbdRyWwnsH/K0Nk9rbxsqPmZ6hz85FVg4ZLB2y/rG6l/K8rOxUMdBfHah7mxMwyRBR4SMaZhe6GZaOvtxMIJzoMrBqWycW8c50cJTIriBiDNDFNfYGpEkBh9o6MSEOo9M3Uwwe8/qJqubvBn1mfB+0GD7UXAnoU6EjoK7e5pDF6UDhzn0KnSQ7Y2OmUuAAdwqiziwSHHjPCEYaufFCLJPPsohAzsDOwM7b3vdHNnoLJGdhFQRNobsV7U0jmE7KR9Hd1OpG/hvBOGQY4M5lp5LzoU1yABvJAfEkWF8N01lhGeEZ4Rnm/t+AI7PEuBJQBfhozZ3uaP6adTs3hcfsbyrOh16cyqsgggYopmhDDAmkVceKEWwUoaNGN9VSxneGd4Z3hne9wNvco7wRklYGRFj8B44ya3D07Gz3AYrdde7laVaEGigFdJJbq32kiMjNIRK2xHre5rz3DLAM8AzwDPAbwrw26ZT+Md8ad3v4YVA8PaeaJ5EtBE57hnTOyupQ9ex05IGKx36yGGDCSBMawmd1ohgR6xihBNqy2wPAzSf5sSkTPNM80zzTPOb0pydpTmexNTRznFN8YNXyRq3xffNS04JXlWYxQqztEKF8OHi7lIKYJBT7iES3jIUQ+4Q55BapTnWPDHFB9s6kd51mya2qV0YWG6mfBggpTfpVPw+epOHOK5h+LM20lRG5b3bOLXbs2vlS+Fer9ZXCxWEr3yI4p+K8jHqKJIpfZ/LF3MLP7aqQ9VLHXBl6xX3vdm+rR7pefNAjz/q4kX8gjE8svgpOqxXWCi+rcff0s6qZ/3pMsZc1p9+KuftoMtnu9XMlF0IN5vN2y7sRSB0ofok89iF60MzRmBSCf617tsoCXejabhbsBuL7zeboFNexyFavIkfNkFcKJ+V5bOyfNaUV4QbLO0AjhGIlDXcGYCoQAwj4QhwlCIFiYOtN/dgU6fxLTbpyiZjZO1EPOs2epb8Sk3Rj+pTFIdL9b62Lcu+F2Wo8WWUee1U+H2w2b6M6I0D8S/i+H4VH7YMtPp1HkzTYKuEb7YLYNjunLIR7y9imMffgjX713kwh1YTBmAdsGAWh081GkclfViobhingZJgLJoGY/0ciBNjdl5Vo7aR70V1uezTeFzGUK0j8RiL9WlRGJ3b6av5Yrow1qGmbxLEKiaMukg/RWVv9KL/90kCqnndLvxCbWwT/R9HeNn3qN+qoMqo3epnq4Q7ThNKgddX2/nSbaugojgpvcvUAJVWrQdm7MvuIgKpeZp6VOynfQEdq9DxCKxg2WzCDLcoJT3MhapHLbYXq83OrGx4oM3qsqwZeLWKs96YgPdTUUmWLR/6WfF8sV09jYdvXsbUCaGNuQ/1Sj6Gfiyds87Wc9Bt+5a334Tbd75KjOkKJlByuXypL+qjPJ+besYWp+MHP61SGL198iyAem7el12uRue2f+eygXBpWbxbxYbfBlH7FN7g7F/q40K39U3CJyhbqqaIkVnVS/tl7fbof1m/OrVfeKjqdLr3qnzLddVrhkI+P7Ce3h7A8+xiKviYNkii9ige0QblYB9TCfUkrbMm2avQsfhsMPEYpkYpBKzizgmFlWaCe8Eo836vL3rNnGbtnbvSONHyy0ojK42sNB7h0ug1uuNBQzpG9UYSi0fJmN6oE1psx3SHb8vH9UdTqbtqQCnShiMVkzdCIKFQjAjGrNSaSwOHdUjT1OPWIzDrkaxHsh7JeuR2egSfpR5JQgMpHdMj/RN8OqAcOchnqE5HiRiqIYBOUcKh4wRI5XjglRKWUK/NyERkkmN9sg7JOiTrkKxDHpkOIWepQ5JYRcpGdUjvTOIu1YePJh6q0z3ZiFglAOWKaY0Z50Yq66WHwnvDjAcjOmSKg4qzDsk6JOuQrEMemQ5BZ6lDknBJysd0yJuY1vJytYw792OKZNetM65N0oodlaIEZvGkewiNpRBSgpAVzAMiJDDaj6xtpc3lfZKsV7JeyXrlq9Ir9Bz1Ck4iOak4tr7VDuxjy1zRVUyZjhP52GpXW7WrXazXhDKNuFfcaaYhgdQKL0BQOz45duBIg1m/ZP2S9UvWL1+VfmFnqV+S2FIqx/23Futx/62y7Jj/VvgenW0TRQEiGHqpuWeISCulDlcYsQ5Zy8f8txbrrDey3sh6I+uNr0pv8LPUG0lIKwOj/luHh+12vakGz9wdqNLRHkgx5Q3m0GrLgNEQci8U8NQC6ZSRI55bE5zAm/VH1h9Zf2T98cj0hzhL/ZGECzM4pj+SUTGmRErxnF3WVcY1SVKvu5zFDDWAYKAJs5Y45pggkElGlDCU2GF1krSWdUrWKVmnZJ3yVemUBz1xeVSnJJHpHHbypG3Wq00cg+0Z0u3xgXXZsTMDD6ocPSjwoO7npj07vOXEZ4SO3+B6Ny1YXpr2hMDmA73pnF1vVuETVyIeMBCeIp6GmWiGfeq2iv/7ZGevAkn9ajEPgFy6j9un4dbzeL7o00Ajdfm0yW/2tJa7ujNPC7czz2KCkk15/208nvQiSkEUURfeyqegvcoMXn+YMJXFZ5wrt/u0dh8385F0PIel/Ww8b/Y1pszFM9Sr254w1xfUswuFlmP4SUKhORrEz8DZco0Yjh0s1y3vnnFBfLDHHBYQKcgE9AAoLSQVwFELO0cUdVs5NSXj42HTJOkYv2I2TZ7E73r5ftBw1VHZTsJVOR4xLRZBPFzxOpjpbjko43WV2b7KiKx363VlniLlnRTOCyg9D58SEGi1tpoTybAckPlua1n2s+xPJfvZPDkz7+RRfCVRkpwM4uu57gZItvxoSkZgVRZ3U45qT73wzBJjMIDMOCUYEtJowhzVbIBRZSMZTRlNZ2uW4LOU6yRyjdNBud5/10HZTktH5HtfpZs/AyKDtOWC+CDdEEtkbZiEEKKwwcbjARnfN5TlPMv52co5OUs5T6KLOBuU8xcXajOsv5uSEfkuizuyTSziVmqskfHGOE6Bo4gp5TVGSEk/INtlI1mus1yfrVzTc5RrkkR3cD4o138OH3NQrOuCEamOpd1DXDSjzlKugCVWc0mt0BwLD5REHlk+INSxjSzTWabPVqbZWcp04lHPxfA2wHwzr5Jt97cBmqKxbYCyvCPZEDPjoZKQAeIElEBIpzHlWDEHAVBD2wBlK1m2s2yfrWzzs5TtxOuZy0HZHgnxb2XvzZH4/uFaXT0OuXIGKG8Nhg5zTKXxigAWJ98MmwFpfzNZZH+W+a9H5usTNu5X6sVZSn3iqyrAoNS/3q02blDcm5IROS+LuytrYeBqSBgC1hqGCceMQ+aAsd4GvQ4HBLxsJEt2luyz1ebyLOU68RcUw/6Cr6/W4U/D62pt2ZhsVxU60i0JIkgixQXgzDgmDPLKU8E1YsYqOyTdVTNZvrN8n6/TDjhLAU888gQaMdfV5YiZXhaMmufqsrtmHqTYESY1VUAhSihD1GDPLPcea+kGzXJ1mYU6C/X5CvVZuuKRxBVPDLvivXZxPDhbvKqPty7elHUGtXhdd9bUnTV1x7T68A+6XnrOYkOgp9Ax7QkgQcs7yGVMDS6M00NafrjZDIgMiPMFxFk6u5HE2U2QmwHiZmi4BRS6K/RAMsOFpR4A7rEEACGhCJCIQuqQuwkOMggyCM544Q6epX8cSfzjxLB/3IvqSw57zuzLxnxnqgrd9TvgHVYYQihp0P1WK+wo0BYqLQUtvW973jNVM1nEs4ifr64/S8c4kjjGCTYyw/99V3y7WJn3I/P833ezpnh0tt/U6a7lYc2E1ghbRr2FAAnNNA1zfii1oJoOzvmblrKwZ2E/X2E/S285mnjLiWFvuZcrPV+44vl6PSjsVfGsKh4R9rZOR9gdlQgzaRHG2inGMQHYKgWpYY5IMeRl07aUhT0L+/kK+1m60dHEjU4Mu9G9qD7ciO3eFo4Z73WNrk6HykkihKZEc4CAF+Hv1mtvmaEMD4l5004W8izk5yvkZ+lPRxN/OjHsT9dLIdoK3g+D+UMPy7vZ3gC0XgLlEcAeMCiJgQoKTqjlUrAh55ofJsgcmoU7C/ddCvdZus3RxG1OjrjNmU0YEsWbVfjfsMVe1Zi9Wc2qGmPr72m1brpgy4QPJjoNUi8VIdQxpwGl1jsX1PyQQu80lgU/C/75Cv5Z+tXR1q+OgNTt5tvNVajcPM9+jCSCr8saQ2P5ICffeMXDjHwjNT9Pnkcam0iYxx+qK8moL8lo4ox89afadcS4yd26qXK1quJqOf/PK1eEpsMjFbsLtSu2u3lgcxFzgkQJLNbV/mXxT0V43A9zEwS+2qDaVo3Y8BAVGYIMO1vsNmq5rcZrEQZ0EUZ1aPFqoTaLT8U8dHEToxmW7549bAY+faX1wl0GGb0YynHTK+4nufm2rPIyVpkyy00tkNVdt7fPcTMuo3eSiO/H1ceoAF6UqW3DiGp072b+LoyzMB7KzDDFy7hnXw2TyPCY7PXHmGyrzPP672+udqvNXC3+44BmrUjHF1i9rkS4S4ne1b8NpLhYfYxHlFVpdmdqtq36smv6MlOxL7NLN9tWfZmFvsxCX2YXMb9WlIy3fzwgaNP82z9WL3ZWv9hn6yoAcJSulaP/EF1pQlfcp+tLt7zqE/Wyutoxn5Kig7yCGkHDlXOIcMklxpg5yQjCwDKH2/j/pIHTzKTHgdUJDKSvCqsTG0Q3J9PJfouZSremEkuoRPpU+rEaCwdUqkfIEJViUXfpBhOkLICAEi25VoZLAbz10iFONSaHVIoNZCplKk2X1jDbfKdnN8xkvTVZeUJW2ifrYeLGmitqKGtjWnYAVweNRQ4zIxUX2ECJkbfKO+QI6cNVnZ6vMdM10zXTddock5mut6arSOjKBuzWIPiLUvj7xmtSNGjBNuXd/B3cC4qQjclwMSOMM4y1xRoSTxx2smfGNq1k2mbans0Mm2RS3TupZEIq3ifVQChTLZbrkfClg+JuyJIiDDkJMceAoGANGkUtQ9ha4YQi/BBT60nClDKlMqUmpBTNlLpvSjGQUEr0KfW6HqV9Sm3bkiFKNcUdShntnIaOK2qQIEhDSr2DWBnNDWTUHlKqaSRTKlPqc8Im89x1lLUss/beWQsT1so+a+MRroNrg2ZfMETaurQDWgw1s8pbjazXlAhIEaPYMWA9VVibQ9DWbWTOZs5mzk7KWZ45e++cbaMUCAR9zvZCFGq0+MH4hE5h1++GUyo9MJQTFybakgbaEmA5MloD2IesnyAyITM2z7gnpJPIdLp3OuGETp0sphdBeC+OeVubssYNvK1HKh47B334F58ZRTFye6s276eKozhyi5tEUkztfz3y8ZpwivA3F/62rd/YXgguVg1Ulm4XUOW2bmlcDLooAyuqp3xWPP+g5gsVDKFCxfbK/aVCLW0RH7eoH/aePKxvFxQxOqbP7ZhwjMbkNYmOgKgvr/0zwquhOXJAeFrYXRuDBAkJIXfQIS2d45B5LSUkTCMHkhP60iZODHd6ZII6RcjTlyWoUwcx3VheHzLX6LisJr72EPdl9d/W4QvHwLLvPxwmEauGaVNhtq8wJL0HtQ4O/GYKMeetVU4iybF3jjhHjVec+nI60hHjg7a+LHlGWZ4fPBngjSUanZtEhyvb35Zx9Ec7oJTvxGsdkr589w7Frgbr8InYSVlHgoXzEGOPPWNhds+wABgTJbBD3Dmr9aEET3EWdtbDWQ9/ntTis9TDiQ80pH05faW2YVo9oH/bgiFZrUu7h9dD6qwBAuOgX7HmCFOghZGceMG8JIfSWreR5TXL64PIKzlLeU28aiEbkNeL1W5V/Cn+bPNpQGpj8awtHpTdtE5Hgq0kAgglOSTSWGqxxpgShQQB0vv0pNuBlrIcZzl+EDmmZynHic8p5H05frG6vLxazncDMpwWDcnvvrybrQcR4philismYXQxUA5ZDjijEAPVk919K1lus9w+iNyyc5RbnnhhQtGX29ducxlGSU9o99eHJLYq7E5tvbNeCqwtpd574LmCzIZZruKOVv6fHXGtmsiymmX1QWSVn6WsJl58UA7p2H6W20b5jaS47RZ3l5M1DJqVCcdpGImUCG+lcASX59UBCfoKdpLktllms8x+nsyKs5TZxCMMgb7M9pPWVqNzJGNtWtg1hyWnLIipxdYQ6QhyVllFsGNYYs17S8eT5KrNsppl9fNkVZ6lrCb+UWjAP+rn8ntc7yVVfreb+0oNV7/eY2r4d9OKch1Pfqey3ETGZ8+ps/KcGh3tZ+c/hcfkOfGfQmhMnse8qMrS475UaZXubBcaADzRFBlPKYLEOgmlwx5iiKA3h9o4behudPL5CnLWyvejlW8szw/qXzUqy4l/FcJjsnytl1UlaDfztRqs2z0ChmFFZJBzByjlylCPnWPQIso81VYNi/m9+F09nLxnz6tz8by6scSjc5P4vv8VT/yvEBmT/xEvrErujvliJTW6O8SEGeGEY16AeEC7s5oSD005yeaODUv4HfplZT2e9fgNpRqfpR5P/LMQHZPjUS+tSr6O+2p16nQ9tozB1hkGKWUOIQkt81gY6BR1UiTpyodayvKc5flB5ZmcpTwn/luIjcrzcS+uWs5u4Ms1ULNrkbswwwYAcqml5gBoACiTwSo3inJZHjEzJOF379eV5TzL+Q3lnJ6lnCf+XYiPyfkRL69K0q7z9Tqo1U00SLwxwBJshZTeSgYh01Ybyg031I3Mtu/Y7yvLdZbrG8o1O0e5Fon/FxJjcj3mBVaJ2FFfsLRKR5y9wUCHOTQHWBuuEaaMUYOZVirMtYkbFue79AvLspxl+YayzM9SlhP/MCTHdfSYl1ijMI/6inUrdSTaWRF0s1cMO6OpND7MCCgDTDjjhS1n+4MK+i79xrJMZ5m+oUyLs5TpxH8MgzGZHvMiqyTsqC9ZWqV70AtkgnMkGPWWWuMZQtJIwxSR1nuOh6X5Lv3KsixnWb6hLMuzlOXEvwyn/mV/WYWfx49zxLdsU9e5gV/ZaNUjPmWjv/k8ER5tbiLxPfY2rhVdPLEf2ejnK0z4XSWT9XnlP8QMfh/UogjiGwwf4za78Md4UrmzzWHmQZzb/IL7vIPn6Cl2bNyenZcYGZPKxEsMoyGpPDgndz/2hk7K7RR2l6aRhcJz77HwCHlPIFTEeWKlp0QmB6d1mjhNkz4eMZxAgz46MZxYR95GGh/Ux2tUEhMfL4yHJPHgbNj98Bs6HbZT2D1YK5i2GgnLtHWSSgiMNo5ypDWiECWxiJ0msiR+uZI4uQfWbWQRnaUsJv5WmAzJ4s/zpbtaD0njoikZlsequCORjGEoBYAQCUApxgpYjITB3FGmrLZ9iawayTKZteMdSCQ+S4lMPKcwHZfIAo3L5AxdI5Uz1LVZhTYEWimQNYQLZ5UOhqtSUhIGbZJnvtdMlswsmXcgmeQsJTPxgcJsSDJr16LiTVkwIJ7vqgqzXV1hWEY7tbp+yopgxWPUgeFcKea8g1RoAJTmxoMBBdppK0trltY7kFZ6ltKaeDJhfkRaj8jpdRJ6kF4dKUiIZYIBbTwiTkJLdbB3lUHIw1HZzFL55UqlUZtVeKeLB5JMdo6SKRNfJCyGJPP1OnSnGxiwH4bbtmxYNpsKXadCR4AlSkBgEPbCUu+osdQoDJ1DQ4qzaSZLZ9aZdyCZ/CwlM/EswnJIMnseCPsBOHy22UFx1/OAhAkmRZY6yryBwaaOETtOOO2DmYtUXyanON8sS2SWyPPzCxqVyMQviIAhifzO7dR8Ubwsezkgl7Ysn13W5cPSmVbq7qFQaCUUCGDvueQ0WrhKeqgdkB5D3ZfRtKksqXkv5U5k9Tq/H/ggspr4/RB4nawOr9+m0nNkFbdbrbtEZDyFTmsczF1onZGEE6GgA5AZ6jw/LrF5RTfL7F35IoCzFNrELYh03IJc+Frfhx+Ep3p9sfpo1Db8oXmBe8ENtWaurDXb1rVm+9dcCe+ROh3JJYJppLVDknGEHAcEQR7mp9gAymGia2PXZlXXZk3XZlXXTpTe8Z5OJb9H39e1GWamlODny8It3DsVRLTpSeluW8pr7GdR9bP4p/Jvu1BUi82z4oeF+31eutkubWGutrvV5fwfURDuQFpPktGOX94dWbKDYpX4+JDUx+en7erS7TZz05eleVN0KECHBd34Mg0YoNAbzxiRihCPkESAEEcgUbhN3XLYymmi0m9tEvkYeAfXCgWdUigKs1qsNv5q8bTY96U+zro9Krs81jrUWXzqDP7qt9tSKMINnQt3qVrOYlGLReJuQ1J3m19XqzKq2oXRU0tG8TrQZ24SAfm4Ws1MXakeH7NtU+nAOfxo3UOv8PHKnyccA+1NJB8DLfdEBFwjIie6gj+vTbQw+NVyfqmiBTf0+fbSMit2F/NtjPCIkRzVe21iMaoT5e3KbZf/c1eE5+02FcayugOH8KdxeDSv8WQj8OjYPTv/cDommonfDUn9br6fHTxcIpFt2ex1V2fVM7Zehe6uBMXYeCuwQcpBhDzCgBMHneXcI9rqrl4zpymv85bPk1XYo5XPg9XPBxTTB3UcHxXRxAGHsGMi2lsO7QnQ7OXQguhItW7SX0QdoCbock4h1RIpTq0CkBsmlGB4XGirxrLoZtG9S9FFD7nMMiq6iTcO4dcYvt99WqrLjuUbavWEqa1VifCROt0tDeGQYcRjjqWjFBnKsCHCUOkR8K5dID3S4A1k+OPHj88qKUqkuRThZvRuH1qa4VlLs61edVecw4Nu71SO2yXSqeT3geaaBCRuNiR1s/l2sUqyZxc/hDn7fLsbCkbWdc2ZizVnvqp5JCT5mh8cCUy+4S8/T2kOtzmRpI2+m3udlcb9iGs+7EGOgWaHYb/9sE86UC7vaKfC3/zVooiPpha1DMfxeo4xytcP6rObibIxwU28cIgcEtzeWRZ76bkYPMfioLjrhaOQc5iEWaizAApJqFaMOCYhFhC4Nl75oJHTzNhzkMie+iOlkE65Q/gYJXJiF5zbC+aDzj1HhTJxxKFgSCgPk9Lv5UUNJaTvlnZ38C0HkjrCvNLIaRKmlwAQAbyFXDFn+hKpTk9E/xhUZBbIhxFIdJYCmXjbUDgkkK9Wm51fLearIaFcJ4XDgrmv0Y3y4MhaozXgmiEpkBYGQYyEYlhgh1BfOPftZAHNAno3AorPUkATzxqKhgT0Vxf6FP57GC65F52PVYXhcMnhWl2PGm+8BlpKJKSBKNi3xDCOAdM6zK+S01KH28oCmwX2bgSWnKXAJj47FB8T2BdtVNuozCaRb8fFtqnY3Rm1UGvJpdXeKKGVjPngFTTAM0ZxGZsyIrlNc1l4v1DhvYOQytsLMD1LAU68iyg5qnHd77ujCrcqv0bfhkodocWIecQlRpIojqW1WCmDjQk0wch6cUTdhqaywGZtezfCys5SWBN/I0oH569qs5u77bh5vK4qXGMed2p1d0IJV8pBjZmw2GArAeQeMeCYYYoSPjCXTdvKApsF9m4Elp+lwCbeR5QdE9hj5nEjQdeax4cVuwm7vATBJlZcB5FVzjnusWZAGKsAY8l5paPNZeHN5vHdCbA4SwFOfJAoP6pxR8zjvfo7Zh6nlQ6yXyrCMWHGMCy10PHsQmq9ghRBzZw/om6zeZy17Z0JqzxHYYWJ9xId9F764Wrp4lcZNY99VeEa87hTq3vOkXScQ0wIRwZjQ5l2hCDAsUfSQm/78tppKwtsFtg7cpAAZymxidsSlcckthdG0xOg7WAwzUi1rvMEpEACQaBB1HAjPAgTXCAFN8AAIfi40E4RFZql9vzt4geQ17P0aIKJRxMDRzXsiDm8V3fHzOG0UldSg3QChwjzMceBRZ44ag1klHkY1K05ol6zOZy1691J61m6O8HE3YkNujvVB2wOCarZFw3LaF3eEU9KkABQIG2UYIRghxgRGsMgrwS6ocXhupUsmVky70gyz9LPCSZ+Tiz1cypXk0z/OKN1ff3wOKPkandb1RMUtKMAXHvpPDEaUquso+V/yrfaRNMkTZwaZrqxMYHVtmxrFobTO7d3/P8fZctsEpGs27r/SNP4UYrqiYowfq7Cd7raxuEYY8/2n+57753ZFc+tnf0y/cGZAyL05N//6234kLuLt0++eRvewIc6HUfzbbezMMBXy7dvy883XPhsfbF+++Tp2ydLdenKdprn2SYP9MuyrBMkoaxSD4vQbvwnRi8ejIm39YjazNpxEy/WMlHdels28OS//+PJeQfHwcTXiXV8na50eRbgarO+OBRcXZbNLmNZV3h7JYf7rI5pY6ByAmCJvceeYyGcxVp6kSz8HjZz50JMJxRiemZC3PmUDy/B1cetvu2ADPeK+1JcPdD+eb5uAU58nRjpat1QV/0+oHXL6z2t217tCC2SwAlGMcGIOQehcJIpx40DFAuvUKp12ybuXGDJhAJL7l9gm5dVxAdsRLY0Yi/j6kz49wdXnXMdR8DqXgT2/EO5YeIrxFJfob+GdlaHI/1DvNgd5u2lbu486cIkDwQ7EhMgtAZEIAexd5xiqxLF1P7+zgc4nnCA4/sf4Nt5nLMNKaZylP/45uXPtChfZx7a5dBOvGpY6lXzf90yaPDNcns4vN+7ZVCWoaA7xLuXuyuN1AvpqKcaSwm1lNQh7Z2mwHgnE7/Ubht3PtTRhEMdPdhQL5+s0GEYvdusrpa2QvvA2FfF9kqHj1u0n9aVs5EsCaUkJO4prOOeorZzUxHlxSr8qFSM6bQkllejzKTl9dRkqLSrBTxD1DDqhFKaMCG9osxSRhHi0tL24KrBpu5QSiZKhDN6h/sXmfa1FStf/Bq69ip2rfq4VVaHbSUsZT+fVpriabGf4D9tLaiYZTVMF9wf7iW36heyLvE0z83unmQo8d1hqe/Ozyo+cJyf/zUek/l61eHYoimdfYgnVm5XCcUGyrqzNasINR5ZqZ0B3HEosMaeh/+Tguk2XmygodMI1jYY2wpgvFru7OrjciJ8jTV/E3axCdkVM/27XfHtL7+8fvOH4nm755Bm99p3toidLfad7a7NxPzqb5+8qBb/4xh4++QMlmcuVZx2LtXSuCEE9Ir7CEieqPin4mX7g88EQntzuzLxQrhvzOm2HwxJnx4LGRIfIZb6CP3bMlqLL8KNd5urQwOnLJwdFFZc6Bd1A8A1RF4qgRTVRFhCFQfcehmmuyzY/20AeL+d06hwVbZnOu1NwoN+w/dNgr+troKJslgUi7hWU2bs2wOg7F2R9i4wYVmGHJb7lxkAjxoALzYubk6Hr9KX1+JV/MBvLtTu7RUCUIYB8n1cx9uFPhZ/nW/nu3g0wK8X86AH4hAKxu/74t/fXIXLc7X4jwO23CiPZv3b7ds/mrJjM7Wc9eWj3DmfxeyRszhsZ67p1exD3avZx9ir2afV1SzMFt6//eMB2Zobvf3jAG4qPFxPvsTbioOhXeLKAk6w15TM9iUV8w6uH8QYmOhHBYkTWDEpiASYSeItFdxZ3QYGHTRyGu22y9XHvbE/2xq3nMpjY6Dl++bdn4LZE8RsVaiAvTh2gjWzstUsLZLsdehiu2H8OnaxPEemzm76l/1r+0PePv5iZjiJNxaH49LcOeTtQOSS4916JV3/D4Ax5gZJJbkSkBnjjFHcUQ80dQiMyfSpZ7mZTzoZHDNXg2ISuR5s+74l+/ml+oerzntqHKsalVCJd9xFLnu6X4CpVyyzgJ+1gP8YiByA3Zgr4RPtNqvZT8vtOo6k4ju3DeOy/IbxC5eLb6/rZbmpLJKLoLd2q1ljmIR3Erswr7sws2UXZqELwTKpHLZm22ZBddT86HNivbyZ9ZH4qPHUR+31TgUzbOD0vgZa21hh6LTFg8zPw/WOJHw+/oPPtEPKNsPPl+bTXZ1AefQetybYBFmfq0/4vOzQnmO7A0fSdNm5WozZJpOxpftY/OkqtBlQ9y76ppr3YYJ2qTYBPWEms1ZllpYwS/NhNF9t3LNGtKoE70+7p4AtVEDqbvuHM8wSPTrczy45NB+T5MRxjeOeJL90y6ue9F5WFzu+321J11VNYwgpsB4K4LggljMFPXUqJs3zgO4Fuf39iVOHRyeyE3h/fw0iO7G3+I0l97axVivvt24Xn/AbsP79afLP/9K9K4tvIIl/5unFzdDFt/eEg8QNjpMeDnqJ4itRGM4Sn5Z1FxVQzMIHoPbMxQPLlBXQCusBI1IgKQ+gMEV++IyFjIVJsYA+HwulcOP4LxT/BcfQMFRvM3j1vuCQuA1y2oPDi2rw9ehg9tcH8NAc6NrZZaGcG8UZgBg7Ta2QxBDmEUQBGM7rAz40g/4LA0TvZF70rEwHngnxOAiBP58QMxpFe4aTf6MbGBC0QUPXhGgvh6/wj/nSut/DXdh9QSNxyOSsD41+brNaqkcSmnVLu36ZjmGMmQ3/CpjwEDhjvKVWcgIdM4d2xTSpy7Jl8YVyY4pzwW/DC3I/vLiNVdHSAt4XLRKnVc57tBg6gqMSjtHzNw6Ku2kPpTceW8+oF4RD7zDQzoR5CTAIU2APgDHRyRvZ1MimxrTooOdtatB7ggdO/ES5GIdH8Z3bqflinCEz21Q4hpK6VoconAjiDSVeQKui56iR2EmJEGQYAuPGiFK3lU2RzJWjh8jeN1nYQx7+PCrnidcnl4PrEN3ENe06wUDWmk5h92R2ywFBiGkOJIYIK2mlV54gYhUzmA6sQ5ycrybLcLYNJpVgfs7TCnRflkHiLSlAjxg/rFa7gW0N31we4EVV1s3vyiFG1kAqHLfGauJihKiCSgGAgFAHuKha+NJoAfNU4lHjQtwFLg4wgE6bTuD7gkbilClgDxp/dh+3C7cbAscyLRqAR1t+4CzBmbWWCasd01ZRZxx3wQLhikJSZitLAdK28sVDJJscj4kh8paThqttqBkesCwP76v8b/j79pv/UdvU97XDiRO/RtE5Y3T+rnh9dXnpNsVr1U0PP38325Yls61K8sIfXO8IumKch5kEh0ByhhGQFmHipfHIccZMctxKt5HT5Pygsdn2YrXeZ6meRMqP3OEhphUHH614HbrTeFmXEt4munSfXBEEyQSRKf14SyduF4Ojwq/NPlHmue0vnOTO/NzaGHr1vAm2i849i/nSxbK/xef/cXXpqjCsib2YY9yZWs6aML/SwyfeOZbFNz+7CHeu46z2zsqjXsyHknbDCCqceD6K1PPxzUZ9cKHyZmhzctcU9jco+0XdI0gFxYQ4yxBmYeAhCZjiEmBqoaUctAnA+u2cJvdVezO9WKWnmU4i8ENNX6/NSSn802XBqHpRxF4UTS/qrBcxvsptd1XAaJLo4r1bFjpJGfMZejeYvVfr35ZhEre9pod/XkXb4kLtqgCQ6noZGhIVfzAvQr+K8gtvQ/9Dx1wRPkMUyVAWf/L2ybvFSqtFNBLCqw0qsqz97H/rQO5/eXHhzPtgO5RGyf9WxcXG+X9+e7OxYVfm6jL0pszuG9oNKv5dac7/phdq+T50/ru0Rnh89S8lIMvcLf2QleLCLdbPTk6gn6NSbh+Vsiy+X75T78pzpzbBWA3P1/Cr/GIl0n9ZloQvNeEdhaYsZ67ux2xd9WOPhjI+pQT8quxHaSAcIfsAUW8YoIITP1bRSee4Wf3dJa8mzehYFQ14nhwUdJ3VpBFUWQKYVZJgbS2iHghvGZGMkzYZ2GErp0G939okQB94B/cbQlfUPTgEeUxftC3RHU9r2FY4rWHZzKMCMF3A0uLTH87unI+HCizFicumSF024+rFkBDERYW+BHSudjc8madaYgkpABIpDAAWHjIYj8whQLUbnp0mThv7B01NMvAPn/ueR328fR7y0wz5xOFQdB0OV5tP1TrN9niIYqgXbdpQ70aRikeqHw1YvMHvPndFr216sgW8tslbr9dNEpWYfLzBaOlGNELfbbSLKnukCDdZBbss2KvhcnyKeCBnqF3O8NuMefHtPytezus8eHEpoDS950s7/zC3V6qcX8Sbt03/7Zd/+0vZ5KfzjE08PtzPLkRRjAl04hMoeE+geyGKcaAOhyg2Jd15uUeeGyshEcBDarwXjkMAPBfCMAqSVffm96eut5+XdE6ymv61SOfka+q3E9IHPfltTEBJ4ncnRE9AB4IG42gdCxpsy7q761CFaRYFUChEjLGGQ4MEw856xzl1B2I6TdBgFtQsqJ8nqOgsBTVxnBNy2DQu4LApPIPDoloXdrOnKumdk9waTzh3mFlAhPJCSYDCFXUgq3UTWVizsD6MsOKzFNbEZ02CnrDW0bYD4loPojGB3Rd3Y/I5xwwSrY2jBGuBFbBII2WFV8ZIdiCy+0ay0GahfRihJWcptInPmIQjGhaNaFh0TMN2c/ghx4Fw2DitNOVGIaAREt5rRRAzjg9qWJSFNQvrwwgrPUthTby9JBoRVjwirPiYsOLuHgmkzHjApGeUEeKVlwAiZJUmFCIMB4UVZ2HNwvowwsrOUlgTdy2JR81hNGoOo+PmcFe/BvHExnJuoQ+zVyYdk8EwBuGqg8wpPmIOZw2bhfaBhJafpdAmbjiSjGhYMqJhyTENS7qRmlQZIlz4/6BOLTJYIMBMMIYdd1ozMahhSRbWLKwPI6ziLIU18RWSdFTD4lENi49r2K5RLJBRhiKPteLSAEqld0BZYKyXFms0omGzWZyF9oGEVp6l0CbeTjL1dtqHdbycL+fN4yWiG0b7vHE72stterEjrcYwAxTWwEuMlRCGYIe0A15hyQ00e2lNW7iBqB5xMK4/RBDTbpuTCO3B01/j7YeeITyx1O6PuIo96QcgXqgYnxRGltss46mdeqMCeqss/6UcjvoBFvF8mSif/wMmQvzt1XwRoVB6FiIA/j/7W22f5VMmvpRjZEjiKSVTT6kf4glD37nFPB5SeXgAtg+FM1sX7lHQuXqQNQ05qRHynuAYm8wodU5hAgWmFpCWBZ0mpoJBp9H6XO1JkNBv+EbJDaYEw9+uLi+DBL+JZ+CVp17veRDqfJgvjds2R1+bC7UsYz3MalGG4zTHZT8NhQeny7QAmS8WARibMpanci3eXq5WocHL6PBbrMLjNgFRGQunHgJcvtPwsteDx/91C/tP8bKp8NVTjSbuZbLjXlYZur9GifgpHdnpDKV6DVFqZvODOhXoRmt03c+0QQQJoBmTHjGOieHeWqEpE9hJ305XxpqbCoBHbjDNfObIG7tfO+l5HWVY9aiFYYnAYO58KmccjQXUBFY+rZAYo7r7uFsvwu8iCffRoHeAu9ufep7PC58UGImbm0zd3P6fW4YJnrlYhgHy7tOxGJB/uOVst695gyiQa35wJA7khr88FRvDt5mIGcON3x4YEwSKXPONq8QPzcQqwGH+vsznsqzyDSTZH9rnCddMuXZSxyY+K76v4RPDtEuuvAuTrpjjJszo7ikW5CubUt1Ies8upEWOEar17aMAHBDqIKAlytZQOEtzvXu2p6bYckoBFZpTrxjkiEJgjVHII90endH8eiqr5Bzwgu5h3eaLwsvEC6q3F9AHDWcZFU6cCCc8EM5eMEscm8OhLG1J17UAW2ysdYBiIBhk3irukERAIekAYB0RvXEYy5djA2Qhva2QZlPgzONxRklDEtKgA9I816ur3QFoVH2tx5myoHsYDgWWeKkJdgAFS0BKCrCWijhnGKWwg5ny55kymTKZMidRBp8lZWhCGXxAmR+q3KTbA9D49nKPNU1ZBzeeeO7DXMYrR7mGmlJlw/CD2AMMOBcd3DQtZOJk4mTinEQccpbEYQlxyAFx/hpaXx3g5kN9rceasqALGiWw9VATqrmkkBPOQeANgJQ6IT3ugKb8eaZMpkymzEmUoWdJGZ5Qhh5Q5tVmbuZVrsiEM+v91R5p6qKupwuCXjhqIGVWAsQ9U054aKgjiKGDOVTdQKZNpk2mzUm0YWdJG5HQhvU2lbe7+eVqGRPiFm/KgsO95LbCbFdX6DGoX6u7pCOVc5pKZkCY1FlrKSOKAYUsIVJD3sFRv61MpkymTKaTyMTPkkwyIRM/QqYjTLqORh0OUQUcgARSKQ3DAglHtJQOayMYxoyNcigT6Csm0E0OMc0MOvPYwTEGMZAwSByuMR8er1iuAQ8ertiWdJPsc68FA8QhpbwSxhvJPVWeU2+VhN2J2I0PVsysydZOJs2ZBjyOkgYmpEmde1+p+XKng5BdJC9/FsZ+y522yqyqssdPr6R7MKPExELMmfUAMQ+8J5QQHujCNXVO7vHTa2YqCq3bhiuH9Vl7OuFUR38cucWDEGnsg0YUxQDHtduUVz+qkilhJBbbeGJZeehTObLmu7KkxFITYlkGD/RCpB/W/T959YPU6ZYOYWf/pnKs06MOXWCJYzBM7ahvF6FjxQ+buQ2j/XUZud/bSdOxzsyXdWZ1dH93Z220xsHxlIoojRzyHGClnAMKOgYRFAJqa9u9/NHmpsLekRtMc2DlkTd2r4fYlZ+36kexCrDbBGtrE0OaLqOVtVt9VBu7jSAr/GZ1WeLPuvXuYhuPpi3p9LQi2y7GjnYyO5SBpNXptQ8Z07lY7XZzN4SHtKTPhn42i5/L+g9FuurdloNk6GF6xTd5olSeHzkCX6/nxhX/tq6Om4vHrm7jcXSXqyoGr45erp60fuwqU0V8D1OdSLeNnZhdrauz5uKhoNt4Fl3diSq0UVWC3ki9ajpx7KDRUXre8FQ6lniWw9R2fXGhNtFY+fNqOQtvy893s37GDlNVmi1XcbOxrHSYv6PN13Gs7mEE2njlqYLPxu8wEciPPu81pivuknyCGLS3Ax+0mXC9fVJNpcMzxBDVZgLdTwFSisp2Hv7min9q4vT3w7SJWy1n0ftkIhVKi7mJ4csPG4f26Hh/i6n0UXE9tyA0MkqjxPscgQEaHQSiNTI2FIyWlnVz33IuicISEGi4h0hYhzVVVmrhuAV2j6O0hanMx8eEnQkmzF8cdiaOT7uV2D5kaNq4yCau3AgOiGwvPK0ZocMhat3SbiQpA5JxwW15ZLkkyGhLhGeKcict8T3BnTZULYvu4xbdm+z23Z3w3jbaK865t+W557tvJFj//lTEf/HmX/9LfxP/mPzzvxa9K5velbf3BIXE2xqhIT0+327nnYXwvbLdlwxr86q4m7fTUGMZd9hpCg0wCjvKIQFCGeEk132FXjWSwZDBcNrWXJ5RnEGU2TiFEm9shAco9MPV0m4HGOTr64MEKgu74fPAKkqJ4RRJ5yWUjDrIoFCAaAJBnz9lE5k+mT6ZPpPQh5wlfRLvbEQG6PP6yhi3HeLPdl8ySKC6uMMgYDAlRBgoAUUcMcCc4IRwIZjCRLgeg+pGMoUyhTKFJqEQPUsKJZ7YiA5RqMqyP0ShfckwharibiQs4txDQq300mAPAMZaCxNHsiZG9ldo6kYyhTKFHnp1lZ2j+PLEiRmxAfH9dbVZ2Eu1HpDfj23RoAA35d34UgeA0cogJrVERiPiLUYYIMl9MGloT4KbVrIIZxF+aBHmZynCiXcw4gMi/LPahI/602WVi/dQihexdDavSwcFOalykJdCIg4wM0hDwhASGEHAwlXBtRHJibwDDWVxzuL80OIszlKcE3dYJIYM6nXozWozaFG3RcMmdV3eTfPvLYgCi+PBRpBCLJWXTmJLuHNI9jVy00oW4SzCDy3C8ixFOPF5RHLQZWGxHnRYWKzH3RUWXUOaeEw5NEAj7gGDjIgw//WSaqiw51AMOCssshGdRfbhvYzAWcps4hmIhzwDexG9+822wajebml3CowJ8CrIK2UMUyUUF9AYzA3RnmJh+tt5k0b3ZtnNsvvZsnuWLoI8cRHEHRfB+dLFT2TK8/+qLEUdu7kpL8++q1IGtcbzYGk3KwhUVBpKtJbcIE6ARBYhqz3xDAiabIoNNTWZQA83Po0sj7yhhxDjoY8ZJHjXCddvA3hjmFiQ6kW4i3PLKiasObX3Qu2i0Mf6TatPE8l1u12MawqjL4aiVdL97GHjZb/YXbDPi7m6ZXTUxerjbLeaVYfJzlQ1mOt1qNPirm7U8mFU1TBZbhhRxRPfR5z6Pn5XHZX73Z+fj0XL1r20SzUcKztS3nWSllAAH+YaXAHuKBAYeQMVE14Tp1V7iPlIY1NRb7T5Sbg3/qauOX+H3AH5Rj5sl31vrwBQQO3zlDztwa8KiK3gF1h5tS2zmVxtiqX72I3HrFiST0M9MW42x/9+FfG/p6dA4IkjKcajh1jXo6B6dWOnWTdja9vUGjjbuluna9Jar70yhJrwJ84BQlhoBTXByjvh2fBJ190G7+bc64Nb3MEB2Idv7gGM3K8P9dmw7cDkx9XHmL+nHgeqnzAg/K/MM/DLx2Xxb+V3rZ97qkwChxbtYbaAWfhfmWRg9XE5K0dW86VaA3fU8j2GoZvav4nfKyaHsPyLM/O1K16oTUywsxg66Lbsw6asNzN1vSPH3F5X/TC1wNH6U2UXGLrJlEw8aPq+Mwq8DoPQqDBBL/NYmdWqzLxXdWrbZH1x+wOx41T+7eD3T8D5rHixmJuyofjbatJVrNZuGQC5DqJm3U7NF0X8IPd0oO2tFuquG95nF4SPxgQ4cRnF9BoBvkZuD5fdh+p07BumlWSSBpNGIaSYk9JLRjC0Yf4KoBNd+6YnYRMaNmcsvXnZvS/G+5d533L8oEvuYzIsEr9RzEZk+GXZw2EBvqzLRqW3rNANgzNUIyepNFZy7LyhBgrBFVYE8fQYpF4zWW6/+qj8+5ba68Lx4YNIbeIqijuuoqvNerWJn+6Y4WyaWjcxm49X7uXjamr/1tT+TV8t7eL0NFz9bpS50BZRRvTq92l2ya65yU0EmR0T5HIw3k6QBz5pKbxabeNmV2o6N52uDWuli6X6MH9XCuuzIjbWPEhRDt/wg2WxDSZ6kN5PRTmKV8t4uerA02K+tC7Y1VYtd3EXLprbe2OsEdp7sqoRQHAG4AzKAtJvIPkGHmx/Hx35Z2dT4zHJTrxGsTgq2UcFuufG0qvR3QwC1ingMMYSYqOp09oLa50VBiuB2yzR/XZuoJMTsT5YsJlG5462f30q1Cyvd2U+dwUWsW8onFpgH1xYE/9QLAeF9edWc/SFNVErI8La1OimscHIIM51MJwVEsIA673lgjgCCESMDghr086jEtasXP/lfmzmrqhi8g1mJ4gqfEiLeVRUE7dQ0nEL/aTd5ri1HGvcyFIerdizkmPNqQ3k7t3vwDg+coP7l90gpslm2V44L9R2L7XlSS31b8o5aujibm6CDLaSGwV5W4nvRehL+TzR92y1KeVXB5m8UMt3YV5bin2YKocezc374mod93CC/Dbr0PFuq83kavbpZ1rIBHyDaFeKR0f6nVjH9QbYi42L4FDFD+G/V2E0BOZWX+R17d73Jm5uhosf5kvjtsVf59v4Irfxx//XuXWYrCsbX/LE+2Km7NhMzXzdsVk9VGbbqmOzuOsaL1Ydm32oOxZ//D50bLapOnZkl6x85bPmlc9+jSLTWARD22RdlpExliVusgSOsmwUYT1zo1PaPT2GOl9mvyVSaAutMV4gRLTXyrpOcEqnjck8Ys+Kabc9RyEzbZKpA0HfEDIlyTLFzoJiifsrQeMW2dAMqiu1o9Oo4WodwBktodLOWUAptd5E5ygiDeaOm/AfNAK420yosvX21ZHus+ZdFHwDP9diO3nOlTl3Z5xLfEJJ6hP662rVfttflumU8+NqFd7DZZgjJjsRq2U75xyr0D1z3QMlpXEeSwGd0QwI6z1xlnKsiGz3Wcdamwpuaft732/zfqIFpZHW7xtqz6tFoyJ81hd1d9r1nOJfr7a7Yut2tSNUeC/vyoRmJdnSpZ9AqsUikmu9Wl8tyh3Vkl3l79K215uVvTK77V3MONs3eiuGsW9AsNW6DIujvHbxfFV9lbPyi6BjUps4JxJyRGqL17sYAHQD4Z1tm5rHZbiu1/XmNpJShQUFmEnHpYYOCokgBkwZaP21olw3egOJztJcSXP1wvYWSCvKrxYuejTGNeFd6WgR46Pr1/ukqHtZnimciOt5SSkNgnpMSttBfVbCysaENXFEJHRMWN98XF0npbuPq+PiGSp0M2dZyyW3wkmhJMTCU8qwZkJL6rSD5rhchtayis0q9pbCy76h/JYqFp2jipWJ6yFhR6T2hio2SNONVGxbryPKyGPtddClwWZmhBPEjJOAeQisN9FP8jpRzio2q9i9lMb/0c9TsegcVaxMPA4JPxDWerGgfrwROa0n7rP96Up9Ee1W6a7TCaVg0K4QMOqc9/EMDY+ssMp5ZjUclM5ue1nVnqhq689yvaKtKj6Ymm3P7/p88ZXfQHxLJQvOUskm/oREHJXb42q2K0vHFO1gzQNVi6QT3kIADZcyKFdIkeISQo2xUewGwpyV7YnKtpbRB9W0EwgqAtdYw+N6Fpylnk1cCok8kNef5+GF2EE1O1uUZQPatVvSTWDnCaWeY8ap4thq550Ir1eE6awkHvFUDrvN3IUu7dxgctk7fD/3LH19PVoH80ep+/ZK64V7udqsL6o4/lLgQmvz0MDGbXexYvUATRKrx6OE16vtLtgSzl4v52OpBXT5fi7j+xnKL9Ar7icZSN/wPeYVOGAV/gbgqfIKbNTH4vkujq9yH3RVJRNw++/5qv6e1edWDTvqRDpT5xgIvZmppjfxSplYwO2lrxldR3bf+qi6YR4Bmbh2UnAMmcctnM7Njxk4QxW7q/WCCChRsFgIC+/bSaokVIpiGAoclIP2zVCrGbOTGDmnkfaHrvHztFjfxGa6bxvpS2cn+QbTzM7J2Zm4klJ4wM7udDc1NrsTmQM3+H6FQ/f3UOP/z96fdcmNY2mi6F9h1kPli1NFDJzs9Dq9FAopIrozKnVSyozuPnFXLpAE3ZkyM1oZzeTyuOv+94sNcABnmDt9kMSqiAzJuDcIksD3bQB7UALw0z+TOzHUBIKu2zLfzraMNnRUPZrB7dX72IiDa0HsWE4IgSsXOx88eyDo6MaN5h7p4vGZOWjT6EO0a8mMzdNGbnq6lvbOOlu/t9n6gIkZbjBacJPmKefn6EaN5tbntmqGg6eiaE1lt35Tp7HW/ZdLEZU1ONZFyozlIwLtej/YQdhLQpI4AXJcl7tpSlIvDFAU+ihljevySGuL+S6Ptr+M5/L425qZzdPxGeHFszll+xMrYIEhlgvi44o3VohryhVZLiS2O8FkMuCzjNp6Zf2SwmS1biHMswwlZRYsSLblHLcYRJzCw12pXCt3lrAJr61MygMUpNlRtCpIUg5xiRCAHHBpy0TjdfxolS4yF4uSIuZ7MduXWod8n5l/v/LVE7YxsZCzwXhD/YVWT5WL+N56u79m17BglkhXOYiD2zQMyddiEry/yU95YYmZIZOUFo/lFb63edkXBRKVT/it6osQuLMPsi92flQZwKeWUxWE2/BgdgPhxqsqzXnU1Z1H5fvo79/Lrl0f2eEGdn7aO/gD19os4DjIoXGaYoI4ZoxHiIYRiT3C/YBppSsGGlqKAFpNC3RSb7h7r0XIwORWT08M1zBgKvRVO0p3lt7V3/9D76d1e5NLQpBhE0lWiBd5BwCeHQXKH09pvs1ywTEwyaqBLeTvHj885RvdRapx0N0QtDAOWm+EJZ/vsj+Eaf7xyPYlSZe8BYNB7i61MPKxgmPiuiv2qe6KrTYybdEVtbWkQ+QECg4hjykAag65ru6Q+zfOttZbWEIOeAuJpxCMD9e6INi70t5uDz3xiCxKeep7QeoQH8URwxFKk8SJUVJDYK+ZpQAQGrarlsuUt8vi3sQdnhruOjl9txkHIIMOWqqDwhpN+VFgVp3hNyuEHGfKdC1jtADTdAP6WWLvKmCgbivnyTLA8OF03u8b+0gtd2tA0KdCmZfx0XChKHtSTn0FpDUe6GOrriA3Cgv9uWgGCq6j+fu6ur/vByZWQOWeex8VCnG12gPv4sLAtXZaszj1Ayd03CAlAaHYjV3qhIwh7FBC3CZsZqChpbBhsOlFMGH4zTwpFrxXE1hBQZJdZ+KrW+J7fqj2o6ojFDGJ+HFvJWU6fFjBVrOjzidaPJ99c7o78NtjBtXCBsyb7tW+dfOxlljSuBnq1TdUpWbUTKNhK+PDM1VzcR3N59n1B8sR/pZtk22W8sG8UXVxsNtSaip31KRwL39UX3qhegQDLS+KWaPtm2RbCRbcm3/Limx7ZymKbKoHtkwS3X5prOE7Wx5VlRv0V6o4S+mdqioX7j/zPVhFQPQfzxG35OJPbuEfnsXMoTbyKjMnaKcYmBzKT5IY6gfOxFiERNR1roHKwiydM/6634puWu/P0TaL2aOuoKKqM01+gcraBnuJQdUU6Ix9aDoztZNUD/fq9c4nEvDH4Ehz5XaDaTjqWVFT866dNGVMsGVYMeJHDuUYIxZQN/ESSr2UJr7DA+RGgT9QMLWHJ0sXTf3KACv8hgFLsyV+ELdeALj8jYOWBq4VtJ4AtDR/djecBq1umYmBqTdYbWJMrl0vhnjMCwIXhWHqBZQlPiXI82POme8kMZ1CrEVrT6yA9S1bWK74x3sAUC2eyGkFKkOg0rzIPd2L/Ce2g10K8FCBXSrtxL9nZF1LUelIBRszjWjX1poTbEfpBEGSuo7rpJhRlyEn4CnBLgqYj90obXJwzrW6GILdsOOpPLofvs8yQDZzGxM8Q2hBQCvnlHQVVyOsg2VyW6uaXdJPDpxFSow777P/OnO1A14e07BoKzPUicd8MiNrbAdMf9vt3SP9Sn/36I28+vR7RdTGIfiWAeAGS+/c/1juZP6Nw3GswGvxfo/qM/Z3yx4LLMvtVPF2oBP2SXZCJW7sv7dxkJzFGtPte81V3GtlHYbjHg60crA+HLbZCWqdQlrH/iJUStrpln0W2FA07m7t3zt2m489Sn0mzDdEkyB1SRqlnoNpmhCHEK3YQdPIsVgM61SrYlYf7AIezlY5KxeGuum7zCOdu+iuPuTTrOt58a2Ytfuyypc6xSudznbsE1emW+mrCu4Kd5AU5RTflEddZd1POULg8V5J/yArO/25zPTZYGEmnvvuSjWoFUm2DvxYH6WX6KqODe4s2CAH37fysOFPz2H5eTZCAESARfgFbFprfuOe7jf+qzqBeV/7l4AdKAbZduDIrbzSO25r/97OFB7zBIfMDVzu+cglDPHEh4yTSZxEXtgcwncaWWqiqgMmu3afsXv3WWSmzt1m/gDOfZzD+Nq0VkshNV21JVXvKH5bFuOt/czF5fKU7u+/SG3lNwJmjphnZTOvrPfadIQ5WLnnwiRMeQGPzp6ngEk1ExHd0KXibIVd01pEqWLrP4iWr4/5GVz1y+ixRzrCF31srZvkxxXL4+r+dbxYeXBvUru7O43VzJtHFs3j3dM93v+RFWdhLL0WltK7/Lgr+oDyWUrYwlKEdd6uYf7uhRak0MT1mcuiFDtRTAX9uyknTkB8FpOYo8bBvdvKUpjSbXdZKBlp/anJvjrC/xcEpLAIiF1MawEU4HNYY4ZMr31npVv+JYNVC+BDiRZtILmy9rmwDE4n6ebITlDmSLR8vJNe8OwI66eFY1TuBxLBRgZiPzdda67Cnu4qrEFM6UoIXkTanIquK8e+G3VBzaj2z20/OTeKnFTMqNjzWBJQiknKfIdGvoO4nkS23cZSs0kDLa315eNFZu9jwtHegjOsjAABxykxhapAEPB/UeZxlapcTbfr/HjN83NhCcJNstryToT6Tli8tVtncWX9t+ho/f4fsriubob//h8ymqTyRxYX+BcxEOHeMCFlNAoXE7GauOniie+v1nCRr8BNeuQhdhDwJ8bZYegROhf7D/BrJfBc3W9miIxqHXLnGpDoP8jr5DPbxy2n7mfY5gpsJyw9N1xn6W2uv6styZ9KoNHN2h+Vo95S1myFZZrlOmGgdjjMdINKczr33F5BmZ+22Sm+qQCivzcFQul53yQ0qH9pG6U0TWKfI+L4NEpi6rmOE/o4TnwniH29Um6lvmyJmGv5GNX7WXYXavQGT82YP8J6MtuLscqs9Hw6H+VGujAteb6/smQ/rdv8uE00C5Xt2B/aerbeQVLnhnBFo0v1kOUKVydVVcveajwvqzQwmjJsj6ltK70UTSG4tK4604SEcHkK+qdHsXgvp9lvwc/12wR4F21cujTAv6vnjl0Ze9U+hdy+sT5yMQve5AIU9nePV7Kn14t6t0Ke+ton0Qthn8teTNBCA8iGOxZIizjwvNZeqDo22wrru70hGquTtIoVdlLQjoRgs+dXM8Tg1Xam08AJvIgnNIzTCEMlxYQ6aYjixKM89Juk4oNNLbc3OtB4ffS+2M7o1E1MdjW8RY8w6o3O5kRW2+lkUP7rJPcqdd8RWCypbGEMov3jO0s9lgWPpfHEnzQ6AICu0nIwsai6ztXuCN+frUxFRiWyopna8BGsoJZ94J7Di5Ml7s6KVy+EIFbj/yVyg7chD97Qfm39mEFcHhj6vzE5IH8TdAHHtgdebT7ACV43DVp15L0UPcDJdtkR+5bdAVXcCsYoyo6oE24I6e9mQKut3VGGGAZkU7bQwj08PdwDGAJi9ZptuIEQfikzuCPXv9SiiMBP3UiwAaVJ7Ea+G8WCJVgS8QgHPufNgqLfzmLx+72WFw7aH2v/WVihpIFydwwsdmFTqLhsyMSyt7IduEkUsAbZCiSXgapi2lnSYipOx+yTil1Vs6OVBEYYMLc3sLeW76sUTccEdtiLOiFMZyFRRcRtFU1k+3h7Fr81x+7b7BMveeVKkYp0M8pjMeIt+BDMyuJ7Bs89yhLjG4RgtHGCDXqwm9GPfHcnzOD0rkpH2ncm+uEMVsFRfuPKTXS5tCmJ1gFbdKDvSGRHqgMyt0YNESanigMwZwq8WmCL16pRkO358c76mO24dFHtJz6XAvapFGiy9bZ/b1fFxHGcsNRhbgw5zzHiAQ8YST0fYR5EjaNCp5HFcvG2m10WaYcbf+rtm498u1Xwl98K+1uMEN39IGXReQsHHFUvq5x4GjL+pbKiS5wDhKugsnFIEjjbwc3EyvrpttoeRTLblhiEezFpoSCwDvF/ehw3zNUM/yY4AJENCZfeovlHVdW65IIa7GShZZhJhXIw+eEI8+GDnEyPtVNTldiueKHGEVlc+QSdUd4mEXTGljN7Ki1xB4YNN/KRFjPk6TFDH3bseLL+kn2G+Qq1V9+Lz3C0/oF03zWQsbdSRhY+hXl9tD+jfsz1lGg34lre2la3tsWtbXlr+x8PTw8x1ImaeeUG2a0YaNIiFV1bKnXEZXc1IZAlg7P/k4vbWdIUEVMEUFp+Gis95jtLNAIOpha7ZpnciJGM0TelVNGayvyGEwJl87PjlSw+f1duyNTZ4kvTp4w3EqMyvy0kmYj5WkYxCaPf3orOba16vJQWuiQZ6Gm2Bw8YGPOvqr5hx6qXvNbvrWH8+7+VC5Gi9I0paUwlytnJ5gic34svo94CpH48H4qFTxTK1cn3a+iHtuNbiG4I2dB2iPwU6ry4dLXBGKZq4U2+Y4Cp2ABTsTmm4gswFT8tpuJnwVS8YuqKqd8Lpgbd/N9TqPPiMDUcw1QtIspHBphKDDCVmGMquQBTydNiKnkWTCUrpq6Y+r1gajtH2gzqvDRMlb6Mg5iqha/5rfA1OPnQF/pwFGKjbi4Q9Ws7gpS7DgkSH6EUcx4Q7MV+GBMWcscTQ7jJ/KF0F8v7+D0s7MMVMF84YI7tPA+ExlTQQtEG4WWXwM++/NVi13w9dk2e5uuwIr60nDLylLoHL+2rnWK6bspjL3S9KMEcif+PY9clLIh86qOocfVqt/F9ww1a4eb7gJvvyzijgQDReyMoepEIqgUq+nqg4msZMqpDqAwi7UGn+rUFmWlMQw87IUk9JKY6clDsuDGPXMdLmZs0e4ZKd7XMVqj8vi0zSHZE740r+EXiiha15etRWx/48XMWi4/UOt0tf+yhS32hBTBOkPqYBYjxKGRpwpjrpy6lnBKCmJc0GQRq9RVjVoz52jBmygPpPiCDH2K8kJcIMlgLBPL1QKD3x/xfHCp96yBzKH/sgUx9oQUyCKWp5/AAp3Eq85ThWCwBY07iGCVBqp18VuoryKwg8w0ZMhflX1Eo424c9BA/C/oiUUYLIPH1AJJ3eQ4RszrGpPKn/gZT9Xt7a4n6KYvD0AtCFgZu7KdO6icpjykR4ONFNcJU2ivArADzPa+UBLyIf5x7w4v7IuFFC5Pw9TCJt1/ExABXW+uHbR5/spAF+XBacMMrETsCERvJnDo99BkRa4GRT1AYOBFPHc4cD3skcdwIB17kMt8VoFSD0UhjKzY9Ija9luER1xD8UDT1BlW4cVWQ/J2ew01PRX1ZBJmc6f/cC8IpVsD8BgDT2zj+vQHTe5GAqcUR+OE8YOJZwMRmgInbAWc88YmTIuK6KPWDKGSBHyE3jHycBDEPZgATr4C5AuYKmC8PMP0N9u4NmP6LBEwtSCBwhrbJZImmwc0yVSTJHt0zq663k4Yjn6U4pRwjP/B8hBiOOWWxE1NKPJb0ts6qVlZMXBe43/0OWvAQAAoeWmjqUQBI86gPUNf7E3e9P/Gg92fb+mJBghyS+i7h3HUSmgaIMYocJ0mDyE/DtvfnMxlbX2kI0gos36Bdgx3xz7LBOs8dqIM1p/IAd70/dViRPpk9WFG/tnfBuOuJ4Z8GMY08LiYGcSPf4YgiFseMNYs6pbvCygorq5fnN+XlKZDS37jhvZESvUik1PzkAzLkjYUHvLH6iNlcaW+FMZy4QRDhEDHfd6kTeiz2fZ96EUMJc3v+WBI5yz9j+3Rz3kV7lm1XGF1h9Du1zqDQ3L0xB79IzNE8y4O+Zznuepb30ab8uZ1Wk4c8oAliPHaChHvcCUPqEy8gUepw12/7lq8W2got3zu0EGeD3HtDC3mR0KI5lwfu0IY2HtrKxqOb2G2MCcMo9mLmu6mXuNxBge8IvEnd1I0wjrDf375eYWaFme9+45rgjePdG2joSwQaojmYB17f9RP3XD/xsOdnF2CSlIZegtNEWDOhL5ZPPIo8L3SDOPKQ03H8XNFlRZfv3YihD1kfuS8SWzS38sCfcGPC836f2MzvEw/4fTLOaUIRD2Nh4ISIJV4YpREX6ISSGEXjbkz4Of0+Xwo24RWbvipsajtrPRZYuaYxMPil+VwOgZX4pfjnHuY0ZJKS0KW5rAfBPHThWejCZtCFO25GmMUBpgGN3QR7ThiGNPSDNHQd8TdtL2iksdWsWqHrOzer/I1z/70h/0WaVZp3eBCOOzvicWdHPOPs2PFEipFHE9+hhAViAcc4DgniNOIujVLX42POjiv8rPCz7hkFG4zvDUDP6uw4CkCat3XodJ0dSdfZkQw6O5JObJ7juDhMXI96FMe+xz0UhE6cOjx1/ThtOzuS5wGWrzQ38Aos36BdQ/HGIctm0X3uDLpE86EOUdfZkXSdHcmgsyPppFFKIrFMCimLUsq9GDl+EMRRQjFJQxzhtrPjCisrrHz39gr1TM+4yAvzDRwHFs2LOsQ9Px3S89Mhw346pOMSGDsojcMoTDyPptiHzLnMYyiKosB14o6fzgouK7h87zaL/5DM//hFQovmdhwOuh2TIbdjMup23MYYGrEExZT5nhvz1E9CkpDY55g53PeigPTdjleYWWHmO4cZ13nI0oi8SJjRPI1DOrTlS4Y2e8noNm8bZjghxGcBRRhzN3A8sWDyacJZkPhRSvy4v8G7wswKM9/9UslFG4LuDTT0RQKN5nccun13QNLPBElGMkG2IcbFNKWUusx1PVeACk9REgt4wamDcRDH3UyQK8CsAPO92zHkIXaM+xLhhWrexqE34VZD5j0CiZlHIBnwCIwQ9UIWulD3KKIcJZ4AJs+hgUN95CXjmSDJc3oErti0YtOLwSZqmmuDvDAHwHFs0ryVQ38em/AsNmEzbGo725CUMQ+MI0wDnuKIkcR14thzksh1/QjNYBNesWnFpu8cm9wNub/d5L9IbNLckcNg3OWPjLv8kRmXv/ZyDcJAI9ePicN9sVzzxUqN+YmYPQyjiKSjLn/rsm2Fn3VfyNjnmLwwl79xANJ8jkPd5/jvx0i85g+nI+cn68MnGAzqdWpIdAYZu5AydgEydlHJKEgalWjXK6IRCngYsNhFjIUYM+zRyKcuChIvxU0SntHmlkKn0Ru0IWIhVDK821Oj0Rs192NAnTsLuiB+Zyq11W12urGKLeefrCZBVnFlnQuYARIU1FPJ/FZJmcL6lfXaqt6yRJs/F9aBH8Uq/SRgqThnJ0heLRGsuMlvYyZbE+CTnIEDARzERPvET/Bz9UoXr0w2jgljWcR2ufio4j0chhKIdS72c4f9Wgk8esKwq+8jCRqiFgpgCUucEd9IY2Pv5/wWaLCcCgzMMH7clxBo/cgLMQDleP3fkJj9VzHvY8Gs748AwTG3/t+P51N+zNj2/9MBbSM8KnXB9TG/tU+5rdjYZmCMiW5UKJHIbkiwgPzw9k51wz6U3fj9PzocUbU8AXSvDvvrLpUMEkfjK+45uq/4O1acrHd5nlg/nI/X0kQR2ucjJLTvMcjdebe7syMpWNSs0fq1vYhOOHGxw9LACX0a4AClhDGGvCSIMcaN32eriaXYIRWPJt52npQNi2FaPVrNQ4sQw/yNTDghXJATfmXC5pNFCOJtJn4qrJQLq/DmvL8+3ilWkOB/Ej2/s7Z5/gmgWvVVmJ9i+J6P8Mu/2K2VHPPDAf7C9tmu5BWA+GKX56KdTNxTDmDx+5+st4ILBEfoRQ66PAEvyjpy+EhJTRqvHoccri7ONPm1cEQXT5FjI2QhDN5dhCyJpwJYxBf9MSvEvLqzfhEjSMwOOaZgFPzn+XSU7YgraS6WGApif1O1Lx4FWWWH7ER1yM6aDtmiQ/a+6pC4kuZi9ajAtizGMYGxbRgzxVVXw1XdWf4jE9iRW28/w6KqehsfK6OqWeNU0HqS8jYH+aqzzYr3UMsryK0R1lSt3CVQfxfvU+n9U+r9s9T7Z3n5obg72aeFIHfyHg9F2+BCtP0IUKq4XqzO7w75tUAAYYsnRzF4xE/VYryqCNMY1wDBN7wyri35ONZWDGNpUMO3sH674UJElpSRa/AKrAFVmVWvOkrd3h2klOiqXN7H/S5cWf2tiWvRbbW1AKq7gzDkYRpYDAzHEzyIWPa376dsm1ePsuovQVx8L3Wz1eT/Ok1+oCgMBaIhGLwd2zCJlqaBU5A04iGLhh/FmrW+eblmkKYSsz6cj4djJs2XN/k2l7OFixXEYy0cEtGVGtbKdQN0RVwq6q7YMXQFvgQH/holNvVybfly7fL5hvitvQU1yniexnh4jPFkrFhv/dBCbRnr1dmAKvfEx+TaiwtGeeSkOEUJ96KQeZQmHvZiSn2MnaApajvW2lLrjK+e78KV774VvvvmCINYCG3EPxgtTxgrWTw6WfgaWZAxspDxf2M0wcqL4wQhJTqp5gLGUhwhxqOAOsSLictiklCG/IAn3jA1yHZWUlhJ4UWRwjwX9I9AG+AUxrb7IOBEK3A+C3AGGnDSUeA8nrLiVIxCZ315AjyVTDsOCaHIc50AI0pCL/RIHLgeS2Pxq0O5G4zAp2ppBdAVQJ8eQKfOAmJ2hH2cLWTlrCzse8KptyEP27jAK5w+C5yGGpy6Y3D6Ib7h4Ow0hqdFc30cUCuhTl6tiNModAnzUZjGIYtSlsBOBQ+CKHRGDNKqqRVSV0h9mRsV6478N7LBEm6Q/yBiIyuxPQexuY5GbN4Ysf0nvx1dJOzVtXFCA4F2ZTSHs5SJ/8MpCiiNWezHbox4GjkhwgkaJjNoZiWylche3ubKZWsAjDbuw9YAdIXKZ4FKpEGlPwaVKsHCGFim1dVxuFQi7fSXMfJSH4eOH9IUc+y5nhcHLIhZkHo0JMOAqRpaIXOFzK8eMskGBQ+CTHeFzGeBTKxBph7v+OHEjqfzYejT1Un2lMgQDnR8GCcku26LY6IPDnMcaXepeMbxJ3xSR8W/MFg3Ksfwsk8tYNOiA680L3EYe+djet7WSgBAbH83AFyN7zizUoGBN1cWZ8UdjHgx4JMSk5QD+TkSo6lxK7d4CoBb1IGJv6kecHAp/niOuPVZfMbckpNetnDeZ/D+GERLngvpbF5HS0IwfnFVurlXwBuLVyMGd26JxsRnSixWlHA69DQKpyMIlgIwP+THU5pvs7wWeHn+H4d8eyf6mAxtTLSv9bck3pfXrQ/xMd9urbfyczz9pgSyHWI5IZQqJ508peOw8ygegq+td+e99Ru7A+4oWQLG45uPr60PXMY8qGny8Ta3fpBgUCzGE8xOz4IJmJw7JS+Im9vxSRCDurniidNtbiskKiaYYRQ6Z9kBj7ED0dghHGAHqEMxwAg79XM78ap2rR1s6kR+4JLYcRPqszDkHmJewGOfpw5zOGtSr2otLBb9/nXSQrjSwldHC++PfCfGzn1N7QozCd5QtChmrni5GF5qMZjIGcDLnxXtd/GytAYG8RKutU8aGUXcCyIWB1HspyHxI59HoetzB/EIoR5eQgsrXq54+Q3j5fdgLBP6AOC/1Mnvj2yf8C/iExHH+X2lgQtpQAsZRWiABrru0FUXBj2hWxdbTIAxC5AXsTDwqO8x4qU8JUHgpylNEGd9JljU/3mlgpUKVip4HirwNq57XyrA96WClQguJgItkhLhASJ4J2c+L1r5l6t+pOVFG41RQiPRKWbjRH4U+D6JGHGiJHaDKPAwpRi5bsr6OypNOys5rOSwksPXTQ7hBt17nUDWdcIT0oMWO4nIFD3gKXrAs/SAOxtIXuAJbopZEFMCuflZSFBEeEjFIiJxxukBr/Sw0sNKD181PVCnVxvSnB7ounZ4MnLQ4kMRHSCHj5ztBmjhpH4eJAS41qaC0AtTlAoySBPsezx2aBJHKQ0RpQlOgx4VQAsrCawksJLA100CeIPwfUnAXQ+RHxX4tUhW5A4A/98k3hYD2H+srwzCf3m5vVeUuNglDg6Q58aY+HHC3JTimKQ+RrF0+mkzQNnISgIrCawk8HWTABE8cF8S8NaNoqejBE+LAUXeACWI1zRAB6L/Y1QgLrXLEKXcjyPMQpokAQ4x8kOOPDhZjlPs0/5CQDSwUsBKASsFfN0U4G6ce1OAv64DHhX0tWhW5A+dDnQDWev9+sEY1vbVFvonPqGe51CcICfwwjAhnhelYcwiHHHG+ui/bOTqSgArAXxdTvjU25B7n7EGK24+Km5qIa1oKKT1H3IcyzqeA+ApR7kqsjmGoJpIC0bdNHEJC1gSEup6DLk4xq7jh6lHiU98vwejWkMrlq5Y+p1iqf+AA8nwoTU8VyydxFItABTpAaBvbo5ZcdqJQfdTlp6sN+yYWH8p59/7dt2juBK1r4WoHQtRu5yqMj1HP12AgUY3bcCcykNhda79heDV4MlnYVY6fy2VT+AnWW4WEOp0w/afFOB+zsTwyo8FgCyzqopdlhjHVqIQU86geoj8LKAmYXeFBsTJnVgTZ7FANTGyD1CztxGHR7fg0TspWX5JIEkHJGARMyTf7fixSaxSqJrJt1DUUExkSKViFQcei3lhJVkR52coZ6b17qbs0yvro/hbmh2LU1kIuQ+tAgIyqJCa3+6h8Ug28gW6+jmL4Na5pYHunx4lO/iH8mHe/a9L9iqKfX47tE/R/N7fo/ggrj1X7kUYCVm85cXg5kr74sDuSiXwVPsq30UGSWw7AZQddNxW2UEzEniUpA0PqbtNxphOC93FziDT6Y/WcthvUFvH6r7b/phcOx2CzyPP9RAJEsf3YoaSGCdhytyYpxGKmr2YeUpaZkXxrVBfuFLfSn0r9a3Udw/qCzbEfxTqe3ba00KVMZqnPTxPe9iQ9tpBCZw5CY7TJGKuEweO58Sex7kfhX4YkyggA7TXbm2lu5XuVrr7auju2yQK5Gxc+lCiQC+SKLRQZqyHMv+yA17oFYLN4Odu8Vf9x3bCeZcFaZyyEOq6OiHyvSghiRfFvhNRFqU1+ustlF/MfjDk7/ltlB/3drvxRWB+qGkjaMdLQrsEdkt+VoGav//bbX77+79Z6THfdWC+ge1iy/knKxJj4/ooIDWx5BNY6gmuFAZn+3h7Ft0AathycYe//6JAmxV31p59zq7VaYg8ItnlObTdzNKli0C1c2t+nxVVBQ4h26Gla4+eLqhlhj4SkgzihhbjivUY13fn7db6DUZ4HzxScc2Wo7+LIL0rbSMS+yEOHMp9hlLC41AYkqnHBGC5zHXDpIaRXjNLWY8J32Zxlp8Le+AWiyDKxB2MgIUuCCy/8T8L60u8LKApMcfzHRfgAXYXK053EgsEvryyXlt1r6tE6lfWkRcHMezAfoMnsWSnaoApU3WLH7klppOAnjwFG03YbAUgjoAUZh224n75kcG1YidsyyuAIA158sMKNY8JNciB7O/U2Tj0oVBT5m//R1ac5Sn4e8FO+YnDf5NzfFKfXFjw2dH6+z77r7OwOWI4HhfXxYcRQ+Kv+22250sncf9c9sc+qP7Af2V/bNEfOKzNjvZZ9scuoD9wXfbHzmV/Jo5r+1g2cE47iKlaaCjWQ0NfHyYTtrODSbL2EanuieuQ2IOdV2Ay7tjeHmp8KQ+WqXs8GEEvPV99BzYYs4rTeb+X5SVUqgWrqmh5JZeclmiO831xk5+saxgNxzu1UufFKdvle1guNpaZrIoRZeCQIsZDzxXkBhbeoqFMGIXb7cJr2O+7oL3CRN8Sy0CMN277tGxkcj5SWvM31V5N37UFktBaatkGDP2/YQXwqxow0MfWft9yni7V5tGAuwuwaLlCEh2yYUliqxEsJ2l7920UTkXfq3oY9kdjzxc6hrFaFCZ2RzC2k/5cR5ShFOjd6y3bNSYxcpwkIl4QixVw4qDAxUkaBi6KwoA2WVm6rSzmOfjiwBc9svn6rYHvd2+NKuT1Noguhrwr6j4l6vpaoCP2RlC3k0Rdh5KhROrd651UiRSHPo2cIMUhJmHghQTzxMWh+DXx0kHUXTSh+ldv8q6ou6KuA6V8HOc+qHvpaYc1G0m+gvADQVgLPMR+B4R/zG/325wllS98B4iT8nLlrT4Exl2Zdiiiy+OYey4OaByHbuw6njCEuZd6WBjFMutxA8jdllZQXkH5sjgUDcEI2mB8HwTDq9347JClxfzhYMRu7FZd0CfeYOWFnkALqcSinPp+RDjz45AS8b9exP0gdB3fpZzEg6bjshUYVpj6ymGqPEi6EKjIxvHuA1RkBapnByotoA6HI0BVpX0ewaq0uTwKV5VMu16M4zEn9Ynrklgsb1kSeH7opBHzGCI8TQYRq2ppBa0VtO5vW7kbJ7gPZNEVsp4dsrTIKOKMQJbKqfBGJhwbwiyV6WAgIdmgUDsgKoxwSJw0jBM4B0niOOIhjSMUQ/Z6jgdRq25qha0VttZ9Og2JvQ1y74PE7orEz47EWrAOQSNI/KGej2P2Y9GSGEVjTay97qUxDzjnceSnKUs8zCBCFQuUdkgaJsN4rDW2IvKKyA9Z/Qb3BDBvBbBnBzAtiITgDoB9bMZnYX2UF9r4pQ3gwj6VAj346ku1E91y5tOUeRwFTsoxcRw/JglGboQix5durA169dtawWsFr9WcbNCYOhuM7oPG/orGz47GWmgOIaNu5A0EjrqSt0RGDUpdrh2241MSsMB3GLhA+gmjsR9g5Lhe4iKUDp+k6K2tqLyi8gNMSoo2bngfELs0k6uVp2nBT/B8G1uYHocvV53/YFf85/+KNvAX7d//a9v75dj75ffVN+bxMVMLvSHjoTetymztid6vzta93vaHCR1EUhx6Aack9UIvDeKYkJQRV0x9H41g44JV2lZM/P7Oa6A0zL28+cIHIaKroLD9H+chiLhC4PIQqEXGkLHImF5tgtaR8mB9gr5EO7k2RwRhLwpxmPKIBGEacicgKaFQt5J6w4fXy9YpWKFwXbR/C4t2t1v90dRXew2ReXb4DbQQGdINkRkubQB9nShr0LncLhCc8gAhN3EiD7lBHDopD3GCEKU88SOnbX4+RjmDFXK/Q+vT29B7rccReng5gBWfHohPWvQI0aNHtJ1ESIMmB7McMRpSacPXrga8fVAynTQVU6LdXBWjsg+Fp8GG41y8Elm8YSGAmrmLEUS5CyateL23+JZfQy4x9YaqTD/HClteWe+2/EsWyaIoiRWfi1O+y/6AuiavloWX6n0YQwxBFvLkKXI7o+vU8HyUHA1lwpufAGsklLQOQKvaI4A7r0/w4uFvv5wAj/jxMy+WTnQDiTQVgrROPasyJAA3rOqHnZ0AhmQ/JoBlfNrNoos7hi5aoAcJ5tAFzUFLL0X7sFTbHzGOURpinkTCBkqonwaBEzsRTX2fE0oaL+rhtpayjL4N6Lk441iZ9lUYPre6sVNA6lYdgaz/bgmLQZo14mcrzkU/efLKsv4qZHQrqXoqC0aANIXcKm0Y3Ci+yfOCq1yJMieZKiFVqFZFPzkrsu1dBXHFC8E3irqFPR+Mbyu2PTa2abEhJJzDNjyHbdgI29pZuCOPJcjz3ShIEI2dOI49kqaxgyKMEWPxNLbhFdtWbHsCbCMb7N4b29CKbc+BbVoQCXXmsI3MYRsxwjbSTrAVUebjNKJOGlPHYT7yXWG0oSiMIpx4fBrbyIptK7Y9AbZ5GwfdG9vwim3PgW1aWAZFc9hG57CNGmEbbdttaczCIPEEuFEckSBJHUp5yDHz4AKZxja6YtuKbU+Abf7Gvf+eG1mx7TmwTYvYoHgO29w5bHONsM1tp+hjYRTGPo5c5OGAI0KJ+M48jNKUhMhNp7HNXbFtxbYnwLZwg++PbXTFtufANi3+gerxDz9yfrB+hHf51xjK2vwmvvixLKyoIVwixOwE7lqBWv1L23Mtjh03DAMXHCacIOWU+x5LYj+N0pChxnOtVl+uGknZoJ3Dg9i38CA2lw+yWDmS8Vs8OVp9ZJ+4xSzojpXtxYSAES/7pVU2Ij9aTbXM1/tsp0qF1N4QcJZZAkRTA+TVf4uO//fvx9/3UENOdEcgsh0xKBkn7sOPTE2wnbh/oe4CR/NVmTmoMhcV0BK3+B0X4/cU35SnplBOTr25I4fbJ/UR6j1w7f2R78THW66qXFV39JaJDzxRl7S5Pl6aVEwj8Vme3OlN/BNCPSRMhAG6UJES6SMCI+3H7DoTfbD+vheNyaEvq5Jo/iEKOz4c8uOpqF1YFoZb6SEi3r+Yh7I79rnujixKonmHlD/K7lS+ThOoC0hoAxLaEglt+TS2QkLTaiWBFjJB9ZCJ9sD4IB4mVoV2KoCtRpcth1fRCFQm5NDlzlltyGLq+2niEc/xgwQFCCdBAoWhnCAMNV+RobaWwuGx1hdB4NG3NJ9Mf0ns/aVo24PCNitUCU52EsYit1SVHEu5L4EDyY6XtiVXrmeyOGhTlE68xAM/ybn432XpzvZ4kbN+GKwtvgdPE2UzgrdcosH0Z34FFFBXVNZr3LGaDRSBVbVGs+3WYjv2By97ts1E14s/LYTQ7WpSK1RviNPKFvYgqC7d95juvPcRPuo7zoVp/HoLtoIqLXXkXGCdGJUwa8T7XxilS789pnvtwfCyU+iJzaAnZVEp6EnS9GQCoEcw0BSatVAOqodyKD9i+cp+5qxdnE95+cqHuKmuKUDuXWlhceoxH7kJjZDDHZ96qc/Fkt5xAuJFDLGoxuJeM0vB8EDDiyDw0Bt5WsNXVviEe2t2rpgp/Li/stLz6Qw1aLPYkh1VpqnqaLPEPqbnrXV9ZImEtqq+Xr69uxZoWI0yC0ZZbQpXjK2qLIueb6H3BRTjkzB54vFNbdVGZ8EGvChqfigL/KkuqTet0DYBX+xEbgZEHLA2/sSTF2EN72DVeTqywxC+di72wfXXSuC5Si5/SwxBNq1YlEWM+Y9irh3udKL4QTSfHPODGqz1szeLxscy5E+yKzpTRGVXbOhK/ans2mKZ4Ig+LBvSQ6iFmlA91ORDvmXC7rorBLjWhnu/jGsBYnYhxWpu6lZ0nRJq7wM7qR9hjzM/DTAOEurwgIdx6qSERi4Pav6YanGxuJTJeywTljL99p5nH1izgmWPrf9u/SXPP1n7XPDMUcz14yurGRFVrcwrVT1aUIPc8FA1YqsNXfjbJyCNhrokmdyJqwdWuZB3tn3l77JsrAqEKR3RX1mPYpN/LxGD3z5xuE5rn/65qmKHWpAM1YNk/noAO01MoMMErkohgITDKKqOi7Qw1UGuEwowjcPQYwl1Y4z8MHGI59KUhmFjk4+3txSi5hN3WARP86m3No+m3pL71AByEhKrAJqskFb0gR9h38GqOthsEctxAZ2/ssT722Z/qL0VbkVbgcVqu8LKYKEbHbOtGCgCr2/Z3Svrl9OfCwHPJ+tfAjqtneD/JlqnblXdTLxJS4xQCC+8BkvESrNT3QO1nKggHYp+F+JhmNocfyLQHTiAwzbyKof3pbd399brWw5Fzasi1NVWU7l2+eEsum6Ll/4PdpQv/IO4IHf2H8ku3NtMdaiqQl0OYGUUMjsqO2R/Vh2yi7JDE9bhBFKYmolaTA7VY3J+Ex9BfGex6Htzw2D/+7Ug8p/ECuhGTyUWy2t1wG1/n3dMoOMlwHHKPRRApnAv9mI3IsiDYqqIJThuDtnGWlsKx27FQ8PkKOzyTrClcy0feiEgm7iDEZL5S9qFN7lVsLvCEpOSydN8MX+2YBFGYnztr/+79RvMFXkSUo8G1W21g3tV24FqkDcHZABw6m2r7Qi5bVEeIRdqCmqbulKkCpq2oQegr+706rmNwuo79U0n/UrfaKqmzfOYfd9W8gsi/rGQu3HdDfKWJYpftGFYfjJWI50k0GbsPw4zaBOhDwry9K8GjQkqGAVaUyLQApioHsD0jhU3sF1S5yhXNKpF8ldkkCrJJm94OdAayU4Y+LxCNxh8WOOhsD/c6kKIP9y4EdiHS8Z9W2VHKqsV9mt16xKGeinyJ0saubVXhfhzcc5Oat1empTVzha4UezY8RM/Scwu34TagwZzVLxrXlRGFyz6yzV/lfiidimT87d2V9vlR15uPDyWk9jV/Tnha9lMHgBSRC1ENg4Uk2i5vA1P80eOn6+3bz+cd2IQ3VXgAoPsh21+bb3PC9iBel2e917JcfUrjI3H2r0tVE8qLAL4jURP7AP0xK4OniVCwxidQOTyjdbpOT6MGuZtlzdvDKG1MCzXmUXoWWDuuvOOYKtuqAdpFBA/TKlPqId8kjInSaiDk4QRn3hOjdhjiLqMmf414nW44vWK1/fHa7pxl8TrFasfGau1sDIXzVvT3axvI5bxYAq4Kdl2PrggSAl1KIk85qZxlML/opgQjNPIdfAMei+bHG7F8BXDvzMMD7rlNowx/MGp8VYMvweGa+Fzrh4+9+583Gcyr+O4xV2JjNncYwJtc9v1XRoSnrhpgjjH3POR+JcKCzzhcdyc8I21thhYj7a/DFyPv62nBez3x3yXnxrfB/B5KLe265yeZWJG6yCdIkq/B26NDYpX1lsW3ygCaANzkqUph7ksmrzLzyflQQe76REHBw0B5oUQ04NRRHdywHkrE334nCVnyBRaBoh1Yvqefd/8K8ZrTCxEN467oXShzeb/55zFn7Z38tQRnDN/gkFl/6U86fg1i4+5HDN16El1aLkw7P6X6oc8bEwE+sqj4urExd5V/WhiTsqZMAG7o0hmuvGsRfK5eiTfu+wknU5/uttNAK0Ssq/vdqNQOyrSBlsvCGkSBpxQ5oYODxyGEidOSOIncYCacJPx9haD24k7LAO4U29tFnKxsyDk/gphf63gk8+Z+E9+FDhZ+q3dZCcJsaK3AuVi6bN8J3CPK4ez8mFq/cqbDMJOtPgQ6UmpDndUNMuVsKGLTwJmFTaftAMuiAWsHbEBeMWwFXoCpP/0jO4S1EahhSA5YCvPzDIOtL+et6cMhhGrjEJJR38RE7sA3xRpBL5RwTOPZgzu6k7UZ0EQZLGFToBrBFiAdhnBMwVJ4zPeFJS0uDe3VSoos/7d+lse5cIuLWMCk3oV3yx96uztmW0fS2nVlaReTh9q6c6xmJlS92hMaIGR3FY8dRUfCk3Td1kInqZv8mCIuvTo7GcZsmZdb7PdoeDg7QpoJEMz5N9kP8uwC7FeSTMZngDHutttds0FYr2yXgv8EQhUOzdU+d0rpzEgfoi5kJFzbJ/xonSKEC2eD0uvx+9t1H0D3qQKRaGKRjcToeHcfpoDsS3nn6p7l3FwtXH4sxjI9kcYLT8cYZQ82tocOlEBSBkCV1uG4OdtyzChCDoxlaM+s6u3Or8a98cQWQt3c91pRB4yFGcxpV1WY1K6XQCTOpGPQy9BLgpDXwyykIc+pcyJnTDCjd04B53L2I4vEaDRI9uQK0B/kwDtbWjwaAC9gvNy4Ow5WrCZ26pr9MtYWaNssqpRNlrUiLGIeGKBHlJEIp97XpImCQtSF/kR9SOkw+0j1DT6FuzfFV5XeHU32Nm4i9i/yx9OrfDagVct4szVI85+zSCEeGt9vDvk0l/4btwA3ilZ+1TLjtnAs5Lt4A0Spx5JPJeihAhITih3Q+I64t/EJ1GT4nG22aUw2uBGi8C0yRt9WkP4V7VvyVvxFr1sj/Vmpp5wQj3LlaU9jHI0UE2VcK0K2kmvgzyHNJBHMVbZFys6R+CoUGXegfbTrRgf/b3VVy8q8c63FSZBbezCyRUJW969D9oglg8kgG8nx9WveZ4A5SsoltF1EAgpx9GP51xMm+UTUp6qHsjckzvRAztPSxyW4XTgFCOD6JKyBxN4XIpMYJvZDrHnaIFzrh44Rx2qXsobPfNrhcLiqupwKy+swt2Bay2kJakTYRfSJYQkQr7jCkOYhuIvIfVchliNtAMNLYWtg00vgqbDb2be0kUL4ieEbSus3ObFqX8iBd5U+72q1ikT5txwYcyBNxYvinoigD6MAniaxqFL+6jPeIbkCpSAMyTiiH8WD7lVyQUhlOrjDdt/AphQc6FJqfi4WRT3ZfZSiKU6QRcAJ9SwatIozmZOHJqIprCghVG5ehgVf5PvdlzMkE48soYNPC5F7IJte1bZ4NW2JRbGjPqUOKETJ0nMBEJwjpyAMx56fuzW+DDY1FII0TTejnNeCCbGmjfCCrwkVuQy+vVGLo73VvN9IRy7XAxzq1rvyvWtIFB5wCn9iRjkLzxAiHdtoOmuRf9dMO+dzBMA/px78WwnJSQ+TJzl56JBJZktVzpvykZ7WV3gJHcvUWlsEC58qm0KRVAxmG4w3rh4ISiCXGrypPrtHZdpzv93+7E/yLeu3LweIQfUNT+pM2oubm/newU47elWwMBVt5+AoOHZbgpCWqSQNxQppHKUjIUJqXwCHSea/rXOKUgQ8BBhL4k4ZYTGDo6DkCGE3JSmadjzLdcaWtqlvNX0ov7k7TfztHjzpqzDCybFlyYtk3LRlVkApZ+GWPTlkIFPRt0DNsnlXcSZsGeE4c4UPJX+6MfSp7ECoPx2Xxs9oi0BIeCO8erR0eH7WJ4JwAvAERy3g3mW8d95U+WB/Bs/iQW7ssRq2mmWauW22mNtm1XpKMULEt0orTFpe8ma5/V6rZqe4z48A4BjCn9a8I2nB9/8RYx1fszESzjlU97b21LOLkBubJtsUqodeBMlLMG+i1Hkx6FYuqHIQ0GSpjhlDkGNYTbZ5FIwOXOTRQBz7g22oRM/MnR+rJP6l7gno2Syfbw9J2AmyDbYVqzi9mdrzz5n1ypDpFrm7T8B2Iq2Ic0SmHyVX6J4bJn7GtaFck+NbSFXtm7FvVpT2j0KgrZDaZ4pE5znaBEinh4h8gMHn/+3n6WzpMxJOrgZFIGYzaWYyvE5sCs0JdSukZkGfpx4rutjHkYx5dxBYRyL1R+KfTdtcmxOtbhYjs0zmK/21K2WSbQ5fx+jXfhFK5nc8KLcgld54ur3IiywFOBHJsm081iABiTb/wKWGaR33UKa5bZlV5T72uXW+gooiwKKLwHFE/bYBj0YUD7w7bZcfcJAtD5C9utTHe8jTy7f7vnxusxTXJV2WsoWK8T9y+Un3N8+qftXCebkmOPy/mqKFNWUHzXCJrHH1BrT4js8Pb5Dmq6wV/g+P57SfJvl3ajovj91XOrYh0pnxM+571V9iWrXt9pY96GwOXujRUBz9i5Gi1t3QRdraaHBuYzcM6+7VS9G6130W2FtyUyJYIBlO5kV65X14UYAJ1hhh/wk9+VlmJyYjercMz9+0o46i9Mxgz25q1YKurK0CUDurVhaHY45IK+8VAYcyIWUWl6XESgnfhArrBxyd0pXCXm3+wbfGburiLeu3sqa/v5r8rtRVOND6iVKWn43lwDhkzif/6RHBVq/siLfH++03jXOOPW2wmPtJ3QCFFVXNNxqXHKqrYUJOqtetF0/ShUsPu+bE4zRmxYp5NFpevuViWVkb7dhAI13QnDEM31aurUgwJGDEu5x6nkIcUpckiIv8D0nZMzztcLS020utST4VrgtXLlt5baV2wa5jYh/HpfbVl57Il7T4q08d5rX3h/zf8FpA5pmtYMSs5EBp9Wy7TJkiBOGfCchqeMlPvIwpW7KYZcrDAlxpxitbnHls5XPVj5b+cyEz/wNdRfjs8UDJVY+M+czpIWoeZ4Zn2EzPsMX8BluV5cPiRemjKduRJnj+iiGVF8+pgQn4v8dEz7DK5+tfLby2cpnBnyG8MYJF+MzvPLZM/KZFhPo+WZ8Rsz4jFzAZ6QdnB17ASZRmKY8YqEfux5jXkoFzSEn5G5qwmdk5bOVz1Y+W/nMhM/oxsGL8RlZ+ewZ+UyLp/QCMz6jZnxGL+Az2o64RKkbxzQOE0RY6keCz5KU+ZEfBzSJeWjCZ3Tls5XPVj5b+cyEz7wNdRbjM7ry2TPymRYI7IVmfOaa8Zl7AZ+5bY8QEgccBYnreglzqMNTj8WYBDihgtVCasJn7spnK5+tfLbymQGfYWeDl1ufuSufPSOfaTHlvmPGZ54Zn3kX8JnXPj9DASWUgS8IC90wSkhKuBM6Lscuxo7R+sxb+Wzls5XPVj4z4TO0cdFifOatfPaMfKYlCfCRGZ/5ZnzmX8BnfovPogi5LvapF7ih73k8jThBYeLHDkOhH3ATPvNXPlv5bOWzlc9M+Iwu6a/vr3z2jHym5aLwcTsFfz3a3mzPAiiOMvy8nYy/GrR2rERqChu41kn85Yc+SmMcOolPgpTFTBAXcpw49hPmUz0ff7ehBZPyd5uW0erLpeMfbH6embxXS2Z3/iWV6We6aQVZXZu0zSJVnyEXGOQchFQDIC+Z4Tcxad8ftbJ5V4qQykn+t/plN3RXnI98eweFqVlZQc/id+KNsFMs3sZlNCMQ/Hz45z4Xn08BwaMner7h1acbSlnRudoH7P57gfKC1Xx6agBHju14lqxgtUApQJk1/B9VNsnfyuxGH05lGsv3W3anTBZVmbQCk9f1qJLZLH7ZLYm/UIHRrjJc2pBxCeC4EH2SpTHEiLxTeS1UldJqetYjXWWrkIlUJoB4CNwM01ogLa2Fr6e1gNrZhWgSXpRKjt6vRVWK2FX+9G6s75hA29kO0SBI3ZQmJE0THCKchi52oohhhilq8v2MtbYY/I62vwz8jr+tJ4Xfn/LjNS8Tr57FMFCJF7ecHbWk+VcCduH+asKIpnMxl1UifZUKv0kvdqWVGW3guE6pX6Yqq+GXiSb3+7JYO/xFNHZk+2tZggVSkUF+smIRGNZQ7gfR6Jo4aAKAww2hS+dy/HAW001QXK/2yfI42yt7om7dr3hiBKdjsGWKqVouBV/PpfAru2Z/wLL6jZqNA9VNSgm7nK+9mibD11uA6vkO4jFmLPK9GLvEcWji8cT1XTdOw9RrKpkMN7ZY/ZLh5pepWTL6np4USz+2Qa+8UGFeLPSSrACSFyALmxsMCLWS6tuwh7w4Fa+sv2SfuFTgWzHV97AXUpaIlmVLKgxuQPVK7qO08z/CzTkrMmHqRgJh+S7/LBSz1MpOhSWg0tpznvDk8e1deCjJHCvKEvFPsBDKquTfXCHqR2HjVphSpmmrsEYYm3fbx8qXq1KAc4WtYNRW07HM1bZrdWI+W27d6fJh7A+XAa8W7O+788ArFgcwI+fx1y4qwUkYLsXavrcRSv0E+6Hj0ZShNAqFaYsdx+Ehj2I/mkPjss0VlL9xUP7z4qhsZP6u6NygMxTTXtH50dAZa6HrvtdCZ7Uj/hNoiP++YUc4HNHrrJYidiliayIKkccE2qmFURAGAWXEDTgNAxoHqbCOQ+SFTpi6tMHisdaWQ2HV/nXZfly3vxAQDzf/LEhcdsYqO9PsBMB6sL8fecPgVPDIuUBpyDIMk6ZqQmB2foaaEbc3GdRYFTeOZOJhASH/LqRgBzepa9aUQBtXBSeSV3Kzs0pQLOW0ZxHNHRQCNfsZdV8/Q8/TLf+SRVuB7HIW74ANlt2xGDKk649nVI6mQTOxoneXXtH/LJDgD/F5BZ9Vk/Yv8ptolbHgZPixlvU39f3rsys1JrSyWOL+kxg2ghOmIKbFK/t6vPJ/cjGEGquhHNi/wUD5yL+cNCzbC0noZiJP2rsr/MGrLRQLEwGlSRoHSYoi7kah6zGx5Hc8RmPmJn6NYoNNLQVhg40rZoHCLgsh2cxdngXQMmWpSTORidvDPlbz4UsrUPlGiC5KmJE7Tq/EcqM64Hr9i3UNOawZVN1TedJbO66iP8VBYFqxZ4fDXXPypYPTxBlXtcn6pxd+mvVN2pEUbXD4UOT9QUDeJ+tHqGSkjquOeSyPOZX9WJfJUduoC9uPEdzcTsTNy3MpdfPKbqyL48iBO283DkOaKeBqAbW+HlD7Ny6Ez0c45vvrvnSbKN0PNLBtpGwhZYOU3UgpyJ2Qade/ob5PHJ4K+zGknh9Hrod9xhEmAREWZJPmaKLBpeD3k1i3bYURJEZqfa/K2aspDbkIBpvc6qmB+LXVdEYD36ZKaWuhLVbZx23OkgpdyyU7GJrsBOXBoN4NnBcIcViAF8pS/J+/nx0n9dTTWxPjbc6mTXNhhKpCfrAnkO2hDHB5eMaqAoiyHk8B5lbB+UuzJinZuP5DMe219Q7KtwEhvmXFnfUbu2v7SUFV5r+ULiHVxNHf+9JVV5mdig7Jk3gxWO7sW3bX9paCIs2Vs1Q95LVpMF+DdQpbTBFQC8H09RDM3/K8qQjZPUm6zfOm9mLbxOxfakejpMSlaZggPyFRIDCO+0kasdiJcBCyqMm33W9nsbI7e0FAYOgN3GGZejujN3hqJJPVVsqKqLKWaWHBoKxNSLnFeIZq9dIbo/KY0s3MYsv5p27BLzjR35cr5qeyArW3+R050n6jVqz/CB4BP3AmugN2K/nR0uGrXcf30fYPour+Nklac79b43kUz/uAUR36mKK5FoAYOJNo3j+eGr37BLYPHUp5XhJ4jCLiEIwJi3jMYxLTADtRnASpMwHxC59HrUj/FSL9iu1fN7a7zsbxV2xfHtu1YLwAtbC9WqG+F4vpIWO92hyB89i+vT5wtX2wFbiUudyJOA5jYaYHIYmcKAqDJOSeT3U8H2hquWKZB36UHnYjt1moVObkXZ5lS5jt4GD0emDpDz0bcj0o3Q7kGdSdgAnx557Lwivrx1Jaska0za+VN4IlRnoOGwix3LIAR9okUUKyqHqz5wz7xfszSD3ZVvC9PAq+FpoYh1S8Qc4iEQxyu/etmFT5HRffD/ZDlPPJh2rgc20bWAwcW/T0II8OFkZYGbwgN4B51R25G2JvRXfsoulOszGsd2cecOsRbwMslu4E9ofLMFcLGAvwHOb2TeqpPtQIPNnRVhhZIlCX+5imvu8GLE0xcllEuE+FlS3AuAbiqRZXPF7x+BkjHL5+LCat0pQrFj8ZFmvBZAHpYLFEBusfotl8ygD+DALjFrB+uV1TK3GdOMWx7zGUCks4DaKEuAKKfeYIU9gfMIH1tpbC3LHWF4Ha0bf0xAir+zvoH3TuHEyWjYe42zjbc4mXlnwQC9414DX/IsZxxsVK+ZVynclOlkwvcbfNipsrAbkQ15NYkZjZ18f8LGBVNqAQlpWtAUSLG8upftVx5JJhv2l2OsHtZG17IXbeciu+ybNYdVw6dpVHO8WrdUtl3VIx4By3lVJpiS0VeRz6jyxSB8fKua48AC0p54dmGrSm4eNsscjT0M/QHzsvHUOqFDcl5zTTsoN+E1sug8BuyjdaoF1AW8HL8Y3oVwyn/PVL+1hhQJP6o4lkbuTrh6owwz7U8oqNmtBlQzX11OXfZaTxkN7NeRc9PIZ5okeLBTJP3OOhZBTcg4z0DvXTG9WkI6YhP+6vyrhnYaezw4GLESCIoE6TpHbRSy+R0t239iBWW+4qokO6iDTOgP86g2OD9CGx4MT/xJuEFOK9yqWGGLU5UI+KfBYUkwskOlqfMjF989SSsPSnZ8tyNOH84YYb5LfS65jOr0cp8/5a22ouXUg+CKQCL2yFkj+IL6D8kOFNv9fSTr0p004t50DS7DqXziNF2RUFkAIsT9IlWTooaxmw7DID1gQ26i+58hmxq5c8n2EnHANNLUgucMdA81e+P48B5E5da+WG6wm0czwEMfWSyKUsctMkipBDGYtjJ46wl9CAaTkeOs0sl9zhKwfGcAXGR90uGbPCR3GRbJCzwe7j4eKKiU+GiUQLTQu8MUz8mTO5hdzPg6N16kYKdTcwhlCyJdneRUYkCZMQOUlEiI9c7Mc8CtMQM+w7rp8Mw2WrvRU3V9x8EtwsB/qFyIlbobYPQE60IufzIqcWDxf4Y8gJEXDWD9s8/jQGm3BOYkelxDhmNmKdwF7iJEnA3JSlfoxDHLs0CsM4wBh7scwjOQCYTWMrWq5ouRhaGq/HL8RMd0O9RTATr5j5vJiphbQFwRhmvo7EVBiDS1ZeHEdKKdGJ63CDkMeIeyTkiViAhxGlLsWeCz5jWhXIfjsrPq74+JTW5P0A0t84dBGAJCtAPi9AahFvQTgGkFVI9Ed5cQQoq9DlUyk0DpgtyXa0RMyQH/EYJzFFDvPigAUOQySIPYcwEg8DZ6u9FUBXAH0KA/M+sBlsaLAIbNIVNp8XNrXQstCZgc0ZwDSByhZIJqknxlXqeMjxQxTiNOEein3f9TxMY28aJFd4XOHxCdfflwEkdjYELQKQ7gqQzwuQWnxWiEYBsqpmMwqRmsAESFZSLZiklEY+cx0chOI/hCGPc+ZC9G3kp04wBpNVWytQrkD5Qu1IjDdomdNwb4XJ54VJLaQqxLMwaf0qv8scWNq7UswAMpVse/cyDEMaiVV3HAjgpE6Y+G6axFHsp27gOO4McKoWV/hc4fPlnopj0ioP8AAEfXAJwxVBH4agWiBUSMYQFNJoi8bHkDOuL48jZinTrr6L0pTGqZN4LnESP0z9xPMFYqYCLpMwGPEeKltaEXJFyJdqYLobGi4Cj8FqYD4vPGpxO6Eet6Oy2b7JxaQ/ZoUY4z1fS5VyNq4luo6WI9fb3kIuEzYjwRF3nTR2AxQT5jJOUOSE3GVNGYCRxpbCyNHmF0HH8Tc1i4v+grhY5QcqI/IjLkahyr3PUsh9paW2rqu63uphbjJjqhwXzbN0a628ErPf2rFEVXeVdcz38fYs/r47b0/ZQWAn/xJnJxVjKt4alJMtbwfSdY0A+IvswlbWM79P0fFFYz3V65JvaihSsne5Hyb5g3rhr9OnKPD6XYR8Ill1HG3g7Ozheb5zSEjxS1XvGB6oCu6UH04mp1Uf73FSfcP97Uy7fx3M2dxfDTDDbN9jCGwY00m08KRQD0/6jYv3KObv+5v8VEe6TsR03ip5+wDyVT6v+ZhOU7VuTGfZPVt2r0qfUPbqwUkFBvq0VEqBgaYfShHBwwp2ya706saW1rOMzZfDVZg1snR4ncs7h9Jcn0FWJVmEZlQ124pQVFrvHctqAjnmYCLLijP5+fpG07RuxNNs4Ymq5ALCXIo/lQaypd6vsLM/c1lD15KiUf7FqjJsV0Vi9NI1r6xl4zu1wj73ppi6vvoQLncu9iH5fV2d/a34QPFppZhFKSbsurSZouCjRN4O5Hps9aMuAvReTFVZ9W7pjO0D2R5bQF2XATqUPTBI0T6E3LNrG88Z4S+qhZKF3gx/zdBVd+tnSKZ9uhg6EXFYQj038KIo9R1CxSLHc1GEacC0JDiDjLJQCpyvi63Cla3G2OqxyWplqW+CpTDtnlssylIrQy3MUFrIXujPrbC6h7uD66PBo91xyfbBrhdRwVrMJ5EfeKlLsJMGAaJxkiQkTdgkZy17rLsy13fMXPdJDrGy1VfIVv7GJYuwFXroKfvKVgZspQVLhnqwpBhMn8Xsf33N97GsGZ30F1WJBC91vABVkJPuwmpMoON6xFKcEBb7mPhu6vkeTTGmSUgSz3FY47M51tpS/HSSj2wz+cjtGyxCUqPtPz1TcUt7mUAGKpuy+uYy83Le/LWslFIfdCc8zfbiT9s7OBb//d9YlH/m1r9bEb/L98nv/6YVXDlBBRYx7IWoOpYHXkl6rDiYz/TZT4e+2kzNFRYTtHHxQlkzm4TNVcER7Rz5vcy9/as8CTudjgqHpL3xUcyD021+PAnzZeG8mU3O5qoEiXYqAl4ehfhIcMRS90ietpyaHk2g7ChyGZ6zUC3GMtRjLP9nBmXU99b/3IsGik71Fg1bP8nrneoqNbAOXu24KSU4iYI0Tgj3ogjxkIaJ48ShkyYej5uaJYNNLVZHVT2tPXKTZQqoTt3jqaH17WfxbTOJp38WswF8hoSZn0tjW3XQEka1dEaKzkW2FyuFMody2e8eNopLZanV+hg9gQkJHkawihAvxAZ3FLUqqA2NbVXWWkiLSSHGJ/sCK4sd+KRcSUelCKqyipvEVeFWSQJQExlG+Z+FlFhh7EXfs/tlzlwUjL9Na5nQVnTogxBaQMkuP0Hy/KgerdYP+Zcmh/7f99l/nXsVo37khZhaS6PzQfXGLrTe2BH0pjoBP8vedOarncjeTCDzMPSZwnITw+k7egznx0xMpeqFsKOeSEnwwF3dO3VJgXD3Qtuq9VM3TigXVrWHUepGPnfCKHYEFPs40XImdVtZCnrFkn5/skvjzdbushDsjrZvArnBwtYswO5JDHZlqeofU2akl4ZBrGojl9nurVvlWFiOU4V98plkPvCWo5SwTos8FqPPgnfEyuT5rcz3V9LXCVA1rladqpog3FK8YYHEW1V4sMR3teEDvZW3Oh+gogT4T6kugFpleGsFrR+/cPXVZc712MYOeI+6AsuWMjVLQBLP1/6ssl71R6gpDrUeS3vzYxZ/4gs6fJbwpWBIGIx2e5zLEtVQ19wGGi8tzJPqwwRo9aDCFK9cDa/QCF79RU6cYcDaltf6iCWvtBNx+Dz0qMOcJPHFajx2KKGYEahgGjkuZYOQJZtZMWvFrK8Qs7wNfjBmddCmgwBGc9zT5rgeD/ieC6Q75Uc+vko8cAFEIDK2UBwTaE/8NKA+xn7oBmIgE4SQE4QuYr7vY8Rxk7psrLWl5v94+4tM/4m39eSzf+zjdmrpiI6mYo2Yye1pmGD8DpZ7YsUrt+QUHlQRCeW5j2hZPuWfi6YU8oPgoVp/VihRlXCTddcq39bPfAQmduCCe8gP5y1Tnas6tdb+WWw9qSCNbhwoJ7GsGSatrLf7a3YtbbBysKodP9i35XUl4vL05LFsMWlq8bIj9QxWG31wkMLr6sJVcakJg2wUF00NM18DbT0E8VfxWeAW1t9/6cP1rrxon7MuUPcvtSDa537ohMwhwhBz08CJg4gFyEGxG4VRlDSuZ/12lgLnoZYXgeXBt/LkgNz/cM0hpdqDk1grui9xr+wNhAUKU00ecBafMrEkeAW75BI2hUD8Se7DJT0I1XHd7tSi7yN6CZhXlnh3n7OYiz+JmafZWLBTx4YiHuW9q8kr6OLZD1UE7MXbczEScdO92gfZftk7+HhvlNIzAq/XKlaxyEaePG35MbvORD/Kg9jfz9hBYSEWwGocqO9e7utBqOQj7eLJY5ZEdaU6wCzsajTa2b7ZzxODbAJ3B2DOFHEDDXH1qMafxWi/s37ORWvsrrB+VrWYKsi9gav2TXnVLis1KcwduNauq8MiTnAaeiSKPS8hXuohP3ZDN2Y4RWkT6j3Q0FKoO9j0IrA7/GaeFHd/g0WtWD0e7/I9t2SHrKpDatMapsCe30K875ubo1iN7hgM+rIKrKwwWfD4UZeZ39VJxdW0x9Utg1PUcaer5vq435XAKbFWeA6kxpYTSgelcNlSkkyCThlBWBsN4vrfC+XbUIMT0PEHtl3eRq49jWSpcBUkWIfVietwSghGcj3d4Si8gJ5MgPUQPpqidaihtR5n+AHmovXv1oc4s99lFvhKCixQRkzPXpYTV3VViKeZfdDEuxa0iXB324MFYZwy5mHKKIv9MAwdlMaBGwUObuDdpOUa79ULun9VeXmvqfssU1Z+5jYmTBAu7Tyrdjz4UXplahWDTzy+2efb/PpO7YruM7CAReehlLGVZhL/rdujWPMd4YIcYqLdm3MhxlG5M7k7xzcWrCFfPW4RyA8HLvdV3v2vterw13g6T2wH2ZjKypz+hi5l1MsHgnxpyqz/RyaeLj9Kf+/Xe5Uh5mO2kxtz78ElQ5k/f4FS2+J1SGpZnDROVZ+Uff+57BNcYqpPNvh+2JDYBPqkTu63qk+KZKbowwiQDfnEdTQ+0eP+3ojuiFl9EPixAzfV6kSgohD9uq1dV5wxeLVFEkHKeByyJHVCn/gsTgKeJizxGYrjyPNJTRKDTS21Coj1xuO68UWoYLDtp8d/WMQPfMq5oveSM+qNj+J0zFpbKXBa3MRWiJuoVaqlP7Q8XuPPEY7XPZyqsYdsHLTA4VTXTCU/Wsr+alzf6zSTP1eBIuLtitf+WPYpEWggcaHxfa+TSNaxKgK1YXiPI8tJrCXOh15WMmM0QRqa6DFa1KHKzUAa9G9yoSeNCw1QhIjyApCWdqyLKEwZE2hvLXiIJhFJPBQSN01STMPETzhOU5TiJEhrWBlrbSlkGW9/EXCZeFuz+ILQolsNZbKjsU88AzTqNOwGlq4F7FgIC0+OaXnuVcoIKDqpHdskE7wqlldXMP3AUVn9DPeW+eeKm2z//D6Vq9H5goxOuT+BvA0ONpQ+v1eCizWI1AOD3p2P+0ymBFTH178U+U4MgyzuL9/TSrQ8assq0e7SfU6wBZ0kcNOA04TFYRpQznxMgiD1XC/CjoNdVEPnXKtLQej8fRaBUoO3+bSQ+tqqu6QcDnq+63INU5zO+311FgU9FKC55aXNVvxJeR5E+TZRDkR1rJ4wVupHtGQEbBaDT/rpz8qSqzYKuk4QZaBR07dDxuGoRJ7a5fnOUufJxRpf9FCoIu4GoRcAVUSDKj3W5rc8TyA1Jwy+ifyldex9I96zLCcymplp9RKaaWq91J8PDbSf6NJSAfcTt3gwEAUXA5Ee9hIfIaFecgVH9Uc7PWZ8n2zvrhT8NAvFEpRqrJJLRYjDKWEFrMAoF9DUcsGqnlumGhYNau+hveO4zT7xMndwfYsbVoie8r0lQC2Lz1sxg0VXFBypoJ72ub9yKLiCHvyLy/N/uGXt0yXPfmMm3tBnduod9u/Yfs+PQmW7zW9LZyyZjLNcDO6tfL8VVqildmXi8g2cjmf5ekRbhQU5ktOjgEzAW9h6Ff2+b2jmxFq5HEDfBXYSG7kWcjYu3Tjteh6GaPUoqccGNgrqMM9qI6beM2g8vj4sGSw/sFNQB3aWfWg2DRpnr7lw+SmcnQ2bH6UcLY4IOR3KsV4fT9Zf97xZZnZIxmbHk13lIm+7JFTJXQal2snIMPGw7yTUc9yABGGSRA7BqRd7QeKRpAmbH25rsaQuXznXhCvXfHtcs4Qbx1fOMAgq2iPn0RhmZZdHZBct6guhSXbplrHvg/1gLfsRsXYef0RTHuKUIcdPQkQTFtEAe16AkihIUDJBMItWtV8ZZmWYlWFeJMOEG4SXYBi0MswTM4wWc4jwJMNAmZ1JgrnNtZwIo/wCUu0TUDcJgzQNuc/j2MU8jIPUjSMv5IikLAon6AXaWtllZZfvil3u61BSgTUmG4csAdZ4BesnBmst1hCRSbD+CGnLdvkeHnIStE9twRnw1qVbII6cOKYsJBiT2CdhnCQ+Zl6KwyRJk2hyE0pvcwXzFczXpcK3vFQgeKGlAlnZ54nZR4u7RHSSfWRGm2ne4ZXIDOMoufZ+FEsRQUEcsxBTH3sIJShKU99NOA4I5RNco1pbWWZlmZVlvmmWcTdusATL0JVlnphltHhR5E6yzLs8P7Vre/XwPq1EZlhGybVYxgk9HrkBQ2L1ghLmphgHnGMvpTSOiTvFMqq1lWVWlllZ5ptmmWBD/CVYxl1Z5mlZxtOiSJE3yTI/ge7xzkKTRHOtpNA81VSSLbIJvRDHyHU5wT4l3GOJ67lemoZBGqPApRNkU7W30s1KN98V3dzr8IOSDaJLQLb30KJUK2RfCNlaqC7yjSAbm0A2NoZs3E4aQ2jgJ4mLeOQFCUp9GsRiqeCgBIlFDGPzkI1XyF4he4XsWcj2WsWr7g/Z/grZTwzZWugwCowgm5hANjGGbNKOlEhCxw89N/YcF/s4hUAJn4lPjlyHu4TMQzZZIXuF7BWyZyE7bKUuuD9kBytkPzFkayHUKDSCbGoC2dQYsmnbr4gzn6ap7wi7OnL8gPpxFAap67iph10vnIdsukL2CtkrZM9Btks2KFwCssMVsp8YsrUQZOwYQbZrAtmuMWS7LchO/TiMEEpdN0y9MI2EnZ2mKGYh7GfHNJmHbHeF7BWyV8iehWzIEbZI1JWzYvYTY7YW2Iv1wF6Zi7D+ZDIj1pvzsRCv7rUs4txOQQnSdW9skLaVtK1LKxA3kG2HZTmR53lJ5OOAR4EbuGHgMEooJWlEnKhJTGnQ8GI1MOBWdU4lmYQ4Vrdiza2WqYkxf6cnR/e3W/6ZVdUeq/ptdXEMWQKjDeJ1vts2OqoHseoHeWW916AeSolXjStErmB39RO52E8Ey+LeKNhQsnQK3195IQAs+wO+6Nu0/nwSYbUqFI+Frrvm9jaXt2/AtSk9MQGsJnhkmMXX04JYsR7E+qvKAPgzy45QbQMqS5R2RSs5JRQphPKm9o0QlDmgi35iynGhFmziMME4cnyCnDRMMQu569DU9dwoZiTwqJaUcrzFxSq1yeeX7UOND0i2Xj7/UhXbRm9ghI54QXT80LYYoTN/Lqos3025NDF4hDyvSulWtmRjBkPq17qcWll8CPJR2/8lDObsdGepdPdXwoROeF6qt+LiVJHEsiPsnKjqFLKhfpFMKFNR1totR33ZJINabqdzJmVLIJaoXifHLtqPyr8Ii/2UFXwtp7nmF55gJWojv3SFcb2HstJrRUgwRn9T6Vd/zAoBP3fiv4IVYClh/fVQ5sQWo/qv8KOYZ7IQreSqRdcAzK5ycUP5OVkzVHVH/Lfsjp2r7sh6FHnVHVtAl+SumeXAJA+Y0pUWxov1MN5fQPj6yHb1Rk29eNK9D7NKrNovadY3jf/hlFCbsAIWhRghx48DnwYcpZ4PLofij+LfoIncnWpxuQ2bYwLL8KKsXLVwhYux5p+crITBlh/FRy9g3yMSjJS0rHqB5mqDxipVFHtIkc9ZJNDjZDWDJeU8UXsgkkmuLPGEBzHCYVJWT/h4nCCLR8va0YbbFzX+hBuMWtsXE+MfNi8eMSOZKpy5vavRS0JT05938IorxKp2VhY2rc9lH2rIknjUzDr4zDVMlQNlAqnqztvly6xr0djwMuf3LvAYfGlxoJiawRc2gy9sAl9tN7zIc50gSXCEPIx4RGkaoxCFjgAx7BOHmcAXXuFrha9L4csNN47zQPhCK3w9PXxpAYbYNYMvYgZfxAS+2i5pUZQkke/7XuJ6aUiRz1zGUJomhHhu4BhZX2SFrxW+LoMvLLBr4z7U+sIrfD05fPla5Br2zOCLmsEXNYGvjntWiGIvxWnsRSiiSYgxi90wSTH2iJ861AS+6ApfK3xdDF94Q/ED4Yus8PX08KVFcWHfDL7Kz2eAYAcl2SnMM6/Qrckz/vjfK0YF3wVGTVX3vhiqXNshlhNA8Wj0KPtc96ztssLVBXClRTBhPYIJSh7enfh2O+RqpYGVLtfzH6qhalKqHcJEGEr8mHoOdlkUpE4UpjENA7C2vCBpstJMNrmUxVXoN+l6Py4CaJN3MEI1snBx6vP2BAe1TbFX6UtYutcMH/qCp5kEKzgBax0B66NInt9KteLxT3DvUWkrOkcCyGWt7KEj0N7l/vnnD1LkVxB5+mNPAccULEcattIfP1etQl8LtMF6oM1PfC/Ghxwer3+BpOuK0IfA5boWtVlmN9x/6uJLDR8GGl1bqOmP/foXu+7PYjUK57q0kGVk8OQPw5JLLaRf9ifpnSqdTgSu9L/7e/ndqw5eCYCIt2fAEcHd7DPLtkzMJmDqXo3qV1bLV7Dr3wwwNIlYurdgWZ5VKiV3Yi5ncWW0idvshK0mPaa5JY/GRX/Sylvltqq0Pfdoj2273QPsTncHfnsUSsdBd4/O1T7UfawllkS6oV6Nu61EXNjgHGIABh+id3kAsKWI9Tpd+Dm+X+cb10YhnB45ZIPaVR/ncP+pKz/+A9zbBKaIRclHcDv7ZSf7w4v2wuAfmfhPfiwezdFUutmJdy1seXB/Ewvbsh+txYEQU/2YWCXMMtnsMoGMkbkWgkX0EKyf4Ft2Cj/+BHf/eaDWY32hfUKUJBFLCUaJy/00IcL2Z+J/Uz/yAhqSZou1Vl/Kuv9WmDlcmfmlMvOYI+ngdkqJnF7Lmf4RkHNFzSdCTS0IiqAuaspZ2IXN6sc+bsor7TTx2HMSjHxKPMfDNGBhwKM4TLmT+gljThs4pf6KnCtyfsPIGW4oWgo50Yqcz4icWsATwV3k/Et+nRdd5Kx+7COnvNJCTmFoOkjYnAGlrotSFMQpTajLvMAlYgWVtJFT6q/IuSLnt4ucCG+QtxRy4hU5nxE5tdgbQno2pwzt6xmd1a8DVqe81ALPIPAwp1wApRuTxPPTwAmcMAlCnKQuTd2O2blTu+wreq7o+VWg50WZSmr8pBuCl8JPsuLnM+KnFvxDaBc/3+SHuy56lr/1sRMutCvueH4cesgNXC/BPPYiTlDkeF4S4BgTx2sjJ6ivuLni5jdsdfrdQs0PQE26ouYzoqYWc0TcLmp+zPNtz+isfuzjprzSDuEmgeOmPMZhyIKYBdhzw9ghDqMp8oQd2gZOqb8i54qcX73FOeqp9nU5Pow6CaBgQxbbdnBXAng+Agi0qC3i9cxmVvR3HaofBwxnuNIiAD+iPk0jFEcxcVHiOD7BzEUupnHsMN456pL6KwGsBPDtms4YL3jU5a3I+YzIqQWMEb+LnFX8zEf5YwdBq1iQ6mIfSVsS7epeHAcxSX0H+9wNXOL7AY5CN3Fw6ETI421EbbWzIuuKrC8JWZunt35QiRkfBq10g52loNVfofUZoVULbiPBCLSOgOoUnLYr28YccyeJnJiyFOGQ4DCiGHkhIkSAJB4E0hVCVwj9ls/DsLdxFjsPC1YMfUYM1cL4SNjb2dXSAvc2eNvXBvZ59ZzCre3eKElTn4ZpELpxSgMaojBlxA8TxmjMUWe7V2tmxdUVV79pXO3l5HsAroYrrj4jrmoRVbQXUfUuz08yjL2FqPWvfSxVl9p7pq7n+R7nOI1CMYpckgSUO64bRCF3Y0raKKoaWPFzxc9vd9OUwOJ+sfiANbTqOeFTC62iemjVP1TWpR/VaP3rnttQGFCHUjX2bTWe69J8x34uiXHBbgoJdVNb3dSub/pQFB3ugH3Ij6c032b50nBqfD8jXKUL5pL47YYLzDnKynZiqonJIkZhVU/veAWTl0FpkNMVVGZrfk+y60yMHSvbCpA9iaGYix///svv//H3/6VJ5UfrcJOf8usjO9zAD6dWMT/x5/HKfVA6DVJ3ASTu8uJklbMFIOWW3T2RFXn1/dSc8gSeW4hsHHAfaIH5yNR/7LwCsvDo+2qOqHIfYkD8DzHgrJ/FEHk8oK5rYQ7NVYnR2d7+l+iHfQP9mADqMQCbxWc6hs9aABfFY/gsPs6vfH8eA2cYiepyy+AdkmmHd8Uu8v3QccMQohS4H6IwQcRzUodhj0Y1gg+1tJQJ/O2Cd7iC99OfTtWwR7sH/wvB3gp5D4U8LfKKkgnI+1Bx9hjodUrzjcDeQG2+kNEgpQy71IsDPyEIpV6IGUMMJ77D6CjwLVuVb4W+FfoW93n9+g1Wb4O9ByI3WpH7MZBbi/midAK56xengXerN2KI6DIt/B4VbEF44pIkigIvSVEaM5fFIXV4FAbMoW7kp34N4aPNrSi+ovgTofj3t+kA2c4fiOF4xfDHwHAtAo26Exj+OsrPpwn8rq5PYrcUasf2hl7AIxSlNOChmyRxHIdp5Luu67vYCcNR3JZNrZi9Yva9MHvJY7IK5JCzoe4DQY6sIPcIIBdqUVbUmwC5nv9Ad8GfDroSDEu1cI57DvZjEjhOmPgkToMkYTzyHc5okAQsGN1iSBd1MFiBbjVOHwH5cLdi8+XIR1fkewzk06KkqD+BfD/yE8u21j8AVcaNPCVll1KTpp4m2q4MmDLmxdxJY0qYE6QAiSxmcN4U4RC7owaf1uCKhisaPvuG6xQe0o3zUEtwLiwfrXh4HzzUQpuoHtr0V+UW+Bs7xTfWh5v80D9uUp6D9i2I2GKQHroHTmMCncLO3MUIhRGhOPEIZ0ngUBYijlnCQ6/JoTrW2lLgN97+Ilg38baeFtqgNtfvo9/3938D+GFWcTrv9+DiWfprAtfkokdWceBxlmaxGEl3ViqQTD6RdZRsJB5E+oKKO92cCzFMTsUr6zdZ2+tUqKKE8rqYtPy4t7ZMQNqpC3+i5fy2kNDbQ784FwM4lqfgeWqdsh0/ZDzmhap6qPhE9Ev3Ud2xvQDdV9Y7MRvPR/il2Ik1xI110uqbSK9XMQPzXfaH9JyVH6fodu1wzMGrUb4gznZQttGKjqK37bpk8r2o/so2xWu5Ev34BFLZSdzMEo1ATcebPCulSzdc9TJheIh7ZDvp/5tbW86gKJp4X4V8pAryxSh+bNeC79ExDGEoR0m8DXlw/bOub+576dZ9st7kAiqOWdE4aMMgkP65MBl/P2MHhYXgpR34Dl/zR+Omg+qQHdcdKnFJLLSPylFXgZXgpp0irwl+UqhiS1Sx4UFs9XRDBDVIR1qUGNWjxH448lvIX1A5L5cvbaDWWylZl3JUkv1SkjNybY6K0xAjkqCIhTGOKSIBpoTEAopZkpImbcxMo0tRVVTepnKhruo7LWudz9zlWYhrZhwIUkglBzVUwA4HAbWAmoDx0GNBCwLgFa9dWQKzU8Eocv6VXFNFXajiq6pN8VsBlMP2d1b5YjRm0/lGFhQ+3l0N0MxVn2f4VkDX/tRjGjVBgZgEmV6z6w7BgEM9sGwG3Fd50APSCBngadn/sp9/LlT9TBWlkRVxLt6C7Db/EnP55gUXgbAg60cvqHkpj3xbZc08GxMZgOdvqLcQufzKjp/4yfpRjNFPFcEUKsCGWR9Od9usuKkmysI0spO3thO4dUUlhQ23FtRSqFvXZvQoa8xBsSl5aKFwrh4KB7W+qhcgX8uvWfIvAY57fqcymVtvU8AAjUVApeqHfJxGRaUit2sVRSemCu0ixW4SYRIwh3nUw5jThIQpCkOCHC9xeZPI17T1pQgGJmmF9/J+u+Z+qmA6L++3CNOY3q5HOfiRKeetjrhcmPDXWQwsAHbant9a+shqYvHSeqUBStl+n39WsWEj4+6V9RGwv6SbmgIiRTrQBkwlrujHYmr5sxMrEbEgyQvIvChQQK8af1VzllxraIWUMwgsVOyRibVLAUF5rbLMFZdAnwY6XIiXDa/jqqzYDKu6cySmmfVZWI+sYrkkAQ6uIgJP+Tm+qRdAekfFgwEpwSH4YxHPt7puufpO6DKADUTqb4izEF2We47M+lmAAgRHiqlRju56DfYuO+1hbV8y0qMvx8odcGbfiD5BoKToU4l89TIsVX1qzHGjFZkxL5mSrBYw6eoBk/A2twCzJSiWuzQDK7Ra0ladU5L9FdqMXPs4GXkx8d0A+ymJXRonCcaUpx7CnHCCWMOk040uRqD1bRS3lbdZeIU2c5cnX6F1w9ZnxoScbwPx6b+yT7BXEuXbxEqzo3bGkZeB4/XupB6AXu/Isb2YOhIGXllvysWWWGl9hoUjg/1LsXRKxb1PIL29K3csr2FeS3Kq11NyAuxP27tOzHzFXmUQu+BuQTzCFJYrukUD1xddSn21W3K+YAILORtH0IC7EA28Pp3AKCoHCFerZ7UBd4IFdLl+GhnCC+M/U52x6+1i+FFtvkFnqhXV8HyfQv8ZCDUFfS0K09WjMD+w3fnIMuvdebsVIMH53nrDjjBQtkPIX4rbjbhdiffh30S4XVAqcgX0B4QxQQBOGHFMowgFDDs8DgPWnKSbtLwUERTlvdLmXnF1r4XZwORWT04JnRXUIRcr/WoFZTJ6yk22LTtei0WHpAS5WJHrDDiEktNHTUr1ospdthOLrD37nF1LJriCcxdY8VQ7g7BIK8TK60NJGoIGDnJxdcyllPhLfmQ7Bn0tX6x1y47HLD/KvTq2/yQRozGnCrkiBOAV2FiuAR+PBKove9FW2g2HJDEj2f67V/sM0KNquUZ8o5SegxWQY0lXqw12lz6o+aE6s9dHZ316U43Sx/cY0CZzfVRT3n0C942w0xT8tXhUV49H/XA+ptYHMWG2W3lumEjmvBsC/kKI2oUUtSMQlbx2p8NSJ2mKgUY3e8qcyoOhfKb9pWB8/snnIdxdMGnKj+XGUS4R/DY/CgwWqJjtwFCBa7J/J76Vpyx1YqffZwcIwOTQCuBP1kdYAbRM7domF6gjenreC81rfjpJk7vaozrdiDF+rW5/yz5zeWIjJ1X2OTu1DH1AImubidvsYWFgqVonj+09VT7Nd2G0B7ZDLRkDsCFhy/lrblw8dqaVEuv/XnDrL1nK1ebqL+rYDi58uGEHrtYC/E0OwzyGk0cxeqqNoF8SOHsTI2phAhAfy95WXbLLk0S4UECX1IqAx2WX7Ai6ZBd2VvZmghBmsXHWg8wdowct6NWlXXqoPykUv9ZXAtCf6qJdXmz5z/YlOsZ+6rluQj2eMhQQ6rpRmsYBZ26SJChIG2O/185ipv03wgfhygfPxQdyB+dqihYGvGprYA02Ln5UYF1B9blAVYtCdd1RUEWjiIqm4RS1j6GZS3Dix9IV16U0pYh5LEBitDES+OEIlqIVSFcg/WqA9Ju1r128Qd5SNIBWGng5NOA7Wpyu643SAB6lATxNA7id6DvxPYwCnuDERZRGYRLHjueFUUQ4oR4boQG80sBKAysNPDsN0A0iS9EAXmngJdGAFrTs+qM0QEZpgEzTAGnRAKM4cmmShijCMQkDXywLMMaBE2Mvok4yQgNkpYGVBlYaeHYa8BakAbLSwEuiAS1W2w1GaYCO0gCdpgHaTkSG/DRykpghxD1CMaLYJ8j1UUA9GmAyQgN0pYGVBlYaeHYaCDbOYptCdKWBl0QDWoy0q8dIu87v/+E61ofDNjvBlwaPpSpOVgU9aMzgOrb4R8raSrYOv6tlFVfMSrYd8V1MExcFLMYkISl1gjRmJBbDI8UJixvamG12MSKRtyi9oKrgiaS8xTIcMn6HHn2gR6aPrgv+/KCoHdY31us6ZKvOuiFDxYrGSTJiW4gLKqoybyqqWnnhl76arEz0ccO2qQ0TBv5Q5/qYri0nGj2WSS6qyGjr9kbFa2/FTFExbeLZOTs2BCPTfIj+icnT8vjvOfl3nPibqneNJ79KTXJlwWe2U3BdTYR2FS2e78VfpHA/bmH191+QxQLp2Yk3JFg67OvvKsyyNSP+IgdnE/8FgV6Hx4zzUrGedgs51AxpAr5uyk5MsMw8Nps5efqOFjvt6bHT7/I8sd7LaXJi7eidXkIokLV12WZZ8KGdGWpWsn0wwSPuOIxzB3tp6kdMTGzGktAJOdQlbcqRzDa7FKekcKODfqPq4rJJo2bv8+TLk7/vP/NsK6kFajkCdgqrv8x1JFYNe66vSWZHzyuxKmmFViVZccOLem1Rx3S1smh8zsASOzWpNsqcU1lcZqyqHqZQmfKydoaOMguZ9VaL+ap46MqCiC8xov+Qq5bsKP5eQDD2OSkDCzoJqc5iHcYgsEymAxR/0FnnlfWfAn2aeqxl3r6+I30d9L2FRzvevVrzcDwyw6AA8nDAdpm/dOzAG/had3W0wPMmeJJD564OHnhAcqd50DYlGy2G2NNjiN/JKsEfZLjdj2UmTZXdBKbtQFyBpmCXCnat0A8pMxNvl8KK0sSLeBCymIUUEyf0fNcjiYciP/SiZj1j1vZiBCTvVsi7lTlHy2QscLeF98jMbvbkVDRQX1pSjz6KbDEda2ytk6rCVIQtrlwit3oUDjkvfqmzFFYGv3jxUQY6sulqedREGF81KadqroI3qCVremW913JMiTm2jzNep/eD31SKDyZ68Njp/Oqwsatqd+wD5HMU8+zd/7qEDQ5Ad2IVBvt+Q1zQv95ngveljPUbZDd8BgqAVEyOWGEsTwF76+0dt99AGjz4xjJ0WA6gn44M7IyTiliv34DKwfBoGWj3NhfdicvuqOBhGVJ8XXVHrtOrj1Zm25lKRGuIpKaEoMUXe634YjEpxAz9TzmXxdsSiuyL9X/yfFe+sv4iRKnYUsWuVGxQKTNddNcipgrt8lqJw0KHUIYcEooViRs5ke+lUZD4HDskbk5HDFtfbLdL3W8v73eo7vcH3E991WUXKKa3MyIHb/Est6bjp8p6q68SatqQW2DSuBVYvSs6CYyUcScPbBhsQu0E6v8B+t1jEtE6F/RwArBNxMTcFeJuVXxzndCieocSH+A9WuVkVBHM8hSIF529M5n8Vn0KS34Kq/gkVkXqLEZumNXpEOsbtTbPOoylHvk2226nUs+2aE1LnVgm6lXbg5DqvJOSTqaDkmdF9fuQibVebi7bb2vtE9pI5iBEXuuMaEHiq5imlXSPDU/Ap6E8PbkcGwSqqWhqU4YwpTstotrTI6p/4He5mJaAXf/Is6R5YdKAkEBRmQyFRnmRVIMAfvuzUKuZrfN7i8BiP6U+Q8iPCIp9L/FTwhIXU+qwiCdBk3qw08hiKWzbzTafpDFOKnOkWCqf7QW3fHK++h8lW6hONisCNXcAUeWLOzXphazXAvWL01EsYuBchaWQhGErYB0mHpzbw14abGaBlHjCLLmyznL3TmaVFYOHw+F+vmOwTyUzENbkA2+kXgLBLtI+K2IJ5ynwmFgQwfIntoo4s9OszEJ4BUi/ywquZdk4wXR8JZj4h85zXVmwasvP5W/n/ad9frtX+2UyVQesvOBJYGdC7hKOpGKEv8jR/agJBO+7Tvraswl+WxlDBPOFFqIbipdjvrf7G+D08twI5o3KJVieN6mzwnLsPNIyj6sulKdGAGYqdWB52iSRrVBdMFjadVnDlNS0OHBPjwN/+0WM4M/smu3/YNbbypein0vlA2wqxu2VnPjBrlXsUqVOZaIv4aYlW9TnRZFDnJRSFHJMfZ6kLA0p9QPGPNcPuL52m252KTLk2ivS3E36CV8W4UHDuz05BX448YN1Pqj1Q1kPo2hysQHQG46lV8IeBT5M6t01eZfdIYezFVleQy6n0i07w15MvUJR5zPZ0YK0O9b1NofDJS5Ic5sfRGtynZWw46erqpaJYOQbLgaJTJd75GoV+Vue115M5SuUyy25RgParH+sDoauwMlBLIqg5kkM5JyIhSigi6z2pMzn/Z1o+JjABnxRLT+fJb1UPyQdOdLtTB6nuPTxUjH1MKME2cdPw9SdHBW2NrA5iqfjM8wYWrVocM+9B7SKAanh6m2eT097BarTYi1EdVHkkSj1aJgmaeohj9CUB0GQuihJItqEjEy3ucLpCqcrnNZwKoxUZ+MEK5wuDKdIi6r2WlHVYsjtwcm42W55l8fnol8eopJUaVVB0paS3aoQM3ItEE2d2AOfJjECvBg7EUp8l3iMJzFJgjhtKiLPNLrYSUJ1m2Z7JJW3WbT0w8xdnhw1q+WcvslfVLsZqpZQK+hiesj8/m8Tvj7lpot+ZlCeJmj+tuX5s3KAEo+9tSIBBtdH2Dkp2ofS8r01xwUwfert+OqoQODpCZ5U9iMXzwUuFrWnbe3JpV7HK8iOr/AR7lOfFuin33wva0gIqYP4O8SnlAUDq0yqAvgTMQJj3ql+1HHPFZ3Zydp3sgPS0b5QZS9eNdClH88MHlmIjovhcir0FN4n2Mn6nCv6gtKCvNpVk45heg2k0jFsdeRdaMOlITKywYu7WekTTXr4HtktpPVuhrfck6lYTm7LPF6RVx21pKuv6I1dT7Y6n3dFWnKHZmobZo46TMlOix339Njxv7JPPx1zMV9/A8NwvJ5eJWeD3Gg1vUmpdr1rFzGOEsw97kcBDXySBpGHI+b6aYDD5uR8ssnFir4ywNLPkGF9/1h19CbvYURwweM48IqxAthdof6t5BmN3CaHCOzJ/7JPz0XlGyWeHIxxQSbXkkGlr+xACbx2nbvae0rH9u7ReVmVQfzEjoIW4A4xlN/rFemOcvGZwbsfnkUsTcDfam+JVYVYFYBjcVK3UvajOr5XZZZUVdZTnm/7lWdTeDsn0D9JHIHHqyo2VRErNRsVq//u4xILsh1iIXdD6IYuTiy/3sHxRCZoE6JEWHGjPHRrB94qfuqxqGRX3x8CRMT9Vc3w2me3NEun6rBOwrEpdWjx5p4eb/4Tz3fCoBCTvcSEct04wB61aNWJsnR5j0DmBDtLJUxdGnKXURL5YYwCN+GpEwSp43CKm+Svc60uRSPX9X3KMV2tZ5dlkrnbPDmZ/KL8kfruSK0NonL1VOQHAbmCI1QkSH2wPTecynVSHZqohOqFkdo6ql+NdQCj67iv3Y3KWuP13lLLL0pnnbKbuuNuU7q88u2FYnrXR/UEvWKuZdEHWBbpaxs+UDuoqNh3ovgQ9E+MDPBf4Ym4XvpeV/T48jjm6/cKFsSCZAA9dpdfsXSco5pxXw74Rw8/HHGOamClxJNLQhBngduUbbSwdk8Pa39zk8e5tBV/YM1qbjCoTCOeWssWWvXB7WD0Ss1BF+i0nYFj4jCSBAGJgwR5CceuSykPqUedOAxwTUcX3GApZorrW0asWX0OhhQuRFIX3PEZFj+3sA+iljcXDCyx1pERWwQOLAScxyd1zFC71bbCC6t1A8xnienZEcJnBPUBSdTvp+QhWaauv5SpxDKolyTI1boWLYmZpvbGusuocgHzicudtPJl17t/ox64bUpeN76Wp5Fw4y5+glNGsA+O2F6w4WMuVMoo9sE53gs0nF6xXIK9poyixbT7rZj2reiC9aOyJ+sdxA/ltNXDC0HQrgRrZ99GsAwrnBRru90mSYgR4Uka+k6KUu7QhCcU+2mEWcKaQ57pNhcLI5R3Saq7VCEb9V2WCR+cvMnTr1k6GVKmR4OMIJwK69iKKQBu0ddMwGu+T2Qc4Y98W2Xxiu8imI/b/BYK1gkl5Tkr+nrYypUC4D5sO/3rvL8W9FAcsmN2qg5L8gKWPGJmbGW4YtE9is9FD29vcjiZOoKD30n3jhUrCFX09JB94dsnQvf7esrKUVIPkgG4HxDoQ37nYz4b7hO8IeihuC96b32AAPFf5eesDjRahUglo/9FjkHrdXUut7ijqeimXUCIuBxY9WFGq+qwPLtVs8GuTwhNQgmn0dMU7LWYcl+PKf9wyE9aAdefOQN+VCe1crD0D/crDXX0ojTKExjZ1+4hv5l8mweQC/WqExqwkHhBGkceSj3mE5xGofj/5rDfrPHlkmVVt5Pf9kbdTh3Ly9ste/hvdjcTisDO8sGDZiOnih1sYsOTZl1Qn5lX8YLqGWvD/co6aEF0O/ZJbUsNlr5+BVnwoHKpkCzTLPI6nPyqMvLr5QeEpkvTf5eXx9vVt1CxhGItAmfsiaxyKmEkFSCoRMGjQQarC+rb5Ue5udWNar+ITmbCKy7gCfEn8RKGAxLa1/rs8Dd5/bmCKb7yWJBvg6CxjR0LeVA8iziL7+/9st/nn9XE/Hh3yK/F57q5e9TK4c2WXlbf2z7V9zYtFG7KYaZsrAX0+62A/jPspteZcSoje9z9QCrU68FKYdQPwUy8fZiE3CROY4SiiCVpEoQ+4YwEHvYTsU7jnpbo2KTt5fIfw93qtD3V3R7HRcHsZs/Fw0ZjpqLh0pNYkLB4nFQxZ+3aVTmnnVi2zY/lKupG9E6OfRluKP5gc6Ut98zECq2MnYLoeegKpImpj3pkKsr9Ven2cLK2jROFIM8M7GCxdDvV6S+lv1y19Kz35WDLT6axyWPR10OegfPdx+4On24qpKy4ATg5cngWcKEQP0ZnSMBWQATmNs+lLaH7MShf7PZmYOdQTjptgNddmddGufvBSlY8ubQ3JtIGrE4PT8NdLlp+U7GTsaa7jdgEBzx6xrLhyP16H7Hx/zbJWWbIB6a0pgXu++3AfemYBOXWxQJBgF8ZBFp71g8wm9KRJdptqWNLnX6h9prcjDXaGcyChDsei9IkSUIPcx+7YjjFnMUOZqHbnE4ZN79cDgB5QwgOsSVllHGrdVTAwixnfL9nIjrjUVRxXeXaUIJ2VtxY1bPU0ftZvWbUUrSIfnNbQNm1SukCDm0tnpPOrGUeAfnWFCkor7frY65C8ysm6VJVzY3Mat51zYDX2WfpLMfiG3Vrsez9ku3OO0vlwbUkV1TLT4hXamofDLhoNCnbpEdeK2szOGscU2iNgeN3oV6D8kncs8/ZtSI9vZBB9f6uqsW4WCnrvBuxI+znQswT+NhXryLa5tdqwV1nk6+c2FUuHbANBNzWtkZJxjIgSc+RI70+6u0DFXBQp+sRHw9+jGMwa6TDSX7csdOzhC2NUu43lTKg4Vy6oQ9OGfATjGHJpypJOZhtP2ZgZ0FujTc3OYRJVMZjg8NdGFiKeK9hrShJNa66YydVd+xYdafKmTOKmhPsa05YpgSsJRnw9SQDausbDLS7A1cL7jf5dqvWvRrpVnI2yKm1bktOEe2kVItco5CEjIc0jWkUxzhOMWOJ4zpJjCjDaVM6ebLJpQiVVTc5wU3k0j/WbrIIiU7eY544/VdL8ubbQc+67sZpK0zqyqqewGq2Sdq5zISmGIkQISnz4JS7J9J1ncMySluSwdMKEoH1UonOukOgOsSr047KGKeq1E5ZrwBiWIVMe22ob7uW/oDrMutpIJ/ajvjHhSwxBG/Qg7cIOwjdgUojzNOi/309+v/n/JgXcX7grTRr/ydPMhYPeTPU8tXyRyK7ku87NRhJt0u/BKEXc891fI8EAhEDFBAakSAU6w6HBG6NhUZNL4WJN/XN9Bxwf6ibLezpYHSvp8ZItbYwGizlumLf7PBMZKqXdm0EeFW0M3LJpGTCHpauaDoyy42zJl0yGO1XykZXk0AP55TdqwPGqwozsnmxOjrdSgcL9WatQp1pCRv6swp5lV9GNSFmFLw3aKPqVwZ7bNle2c69RJYwm5VreJ2dUrnLQYLP/Z0FD9L1vgNUh0jSwzav9/bKvkW57ER5s3IDrZeNc/W8Wzpx2dfMSN9BMjadZt0NCZffzRRTM7/jUOenOsVv+Un+vVCzvIrlKl/O4+1plv2xG5+Hlruk3G4Ry6yqfFiVpXl0bWXGz4brKqylxPD1lBh/P0biZf71M99b77M//mATJ3VS1AZRW4qOntHNCbaTtRGHI0x45IVOKpZXaciCwPFTj3JMA7cxKuZaXcqeOMv75HCfg7zP45zIzd3mWVda0CNB1Kyo8gp166iBxTEydATEdHYu5eZdJ5+2vmbSz6/arvRlPg5hFKTi1xtZnu6TUJJvrLctWVeeK02Dz5kwF6oaQqPhyq3TwXbJn9p/v11/CIo2wd9uxJwWNkeVPUN6YsrH6xgc+zupYudg+sC6tHoX2hleGSEm0x6dTmAvWfWeTe3VLwsViZchx44lzBgVlCwMme26bnw6QqNkg+jzrxuxlvnB1zM//KrmnmA+6zV4j93VJDhQC7ZCdzVhgZ5s6XJ2VzNVXZHsUCspnK8x/CJd9YDl3wXeqt5CWTtb9baucFfzxQMRfb57C2H6/I0eiurBhahuMBTkQVO+VyetNTQN19RpRf1Cfc262E0hML50bQS3Q0CpVqKIluthlRip8Z644yfdUwF4YeCwqU6EBPvN5WGSvoPXWWyWWY+udOhXFXuhp835UGtjbiIF0SthWtdZkKDND2//audCHLIdJdLnUiaiK5p1rTzNkXmSyhxJZbFTldG3ZpySZWErMMrUG/pl6FhP9Ee1Urq//KsuHFFHS3MgUqi9UG1TNl7kKQM/lZzJ9a/oNZwJNodgrD4GUwcD7WJGGlWNV4yoyt9VccyyuPmjsdI3XPb72/XQ1GkUHF1aJcwvIq4h9u0VMT8dz/zxWLldz9sb42ktzYYfTPL0zyrApuLkPjWWAop/4faDBApSnWIQMUY4TRM3REns0zDAKMCUxSlPwgg1tDzc1lJLq5dMxOhxl1crEa9E/K0S8aWrwm+Lxlyn5TjyKDT2nBQmfin+uQe4BzKVhKZl8vDDSUL7QbpITVJaLTJDakqunWoQezQJUp7GISVJFMd+iKgbcC/m3I95MEFrqrXvgdicldhWYluJbUli62Z019mAbFCwHBugl8YGEv+1vBuBM4n/ryFh5yT8VxIz6C/FWuCPA5b6AURzUR8zNwoSlIQpjeIQO44nU+GOgb9sbMX+FftX7F+xf0HsdzfUXQ778YvEfi0NR4Amsf99OYIm4V8TmmGASrId25u6sYuD0MNpHKUpikmIApq4JGAEM49NkEDV3soDKw+sPLDywIIhUl9nVkOdyfwNWpDJ6ItkMi2FRYAnmewjXDHjMyl6Aau15TvcFqYceyFLKEmJg7BPQ4+I1U1IaRQ6ZILb2q2uDLcy3MpwK8MttdJxoW4hxsvxA3mR/KDlggjIJD98KIfTJDNoQjOcUEm22YA4fkKSCLmUYxLEzEl46CYsDqmDBC9MsEHV3soDKw+sPLDywELH+F/5KkewGN44C65y3BfJYlpChYBOstgbAUYsnj6taWRmOKwU7CxoIuYQH4WYpYy6nuvxMKWpH8UUuxGJJyisbG5lsJXBVgZbGWzBlUy7cO1DOcB7kRygJZgI3D4HtM9rLNRngPaRiY1G8L8r1kJ/FoSUexELfR4g34s44p7HIh7FjKVh4HXRv9vYiv0r9q/Yv2K/+IOW4eAHlXClF6t6IQvQRX14/RkWQM/BAkRLARB4syyAZ1kAm7EAbrOAx7zUi5MkwK4fBk4QRWnqBg72ECTnTmdYAK8ssLLAygLfFwvMJia4EOzblSEeCvbBiwR7LTdA4M+CPZkFe2IG9qQF9r4feQFLXcJw4vHEd1xh+qOAEIooTVkwA/ZkBfsV7FewX03+JdEfORsULof+4YtEfy3iPAhm0Z/Ooj81Q3/aQn9C/YQESYKTJA0DGvo89ZmHUeQIMojRnKlPV/Rf0X9F/xX9F0V/tHEX3OhBzouEfy0+O9Djs3/Mr60PNxzeYLfMlkYBQsoupez358PhrltWpyYDXbIj014HxMRBKXOSNAg4ZogSRjjyvNj1kMOSpkLNRINLsUEiblGUt+jUQVuIBibuYIL/4YL4/2NWxPlnKEcqMzZOfP+r3/+tg35losYmu6JWl1o8olU+ogCjbFdCg7jxHhDkIEZNVmVhVHVQhBYkSLSgplPxynonUV2mL6wyUcv7lTqySNt/nVWdUlW+RqVgLCChKqRshlvcCVSF4mhFN11zndJRJa5WVewB3wrFQNA3YCioUMOSMg9/zPYCQSGF9Z+LdpmZK0tB+bGG/37efzEPD+IjWof8VPZQNHyA99MC2b32CBUuVImn4aVKJYnYVUbtH+RbKiArrOg14G+WKvoR7/9Qv+o0E7+Ur1qQ5LZ+/UAIC2+3XH2LNV0HvISILAzjkI3rP3+2R6IFXYd60PU/+DaPYZ68LSsUQjWW0jrqYXslbJfCdiPcBfd50XahlJRx5jPKXY7cMEAc85gSHOHUiyInbjB+vl0DqNcAvvPRl8Hw0fafGsGHCqCoiS2r9o198iu9yFRxOmafVD0vLUH2Kc+3DYTJ0mApZM7f3nXNziiL7+Itr/LtlsQAXCENc4BYiWqxtDxlQnxVIKtn+WtFJ9Omy1Xu/6bgQJmHV9xVL0NWod8rVaO74GwnelXo6XxVAl1Vs7OpkHbqFtesWi6rfO3Y/pyKGSge56iKfAEeNxl+dfO3W+DrwJTtK2uHlS+qLjjWLhpeU11p7zdLi+fG56/YlbME6WDjoBcA0lp0dKhHR7/XS9V+PDKVunk817oub1fyownXjaTbyTN8Aco8oIgHkesEQUCShCYRSTyXE4qjGq2Nml7KNtcL+kJmaHWzx8m/bnQvE7RHS27YvFGg2sVUiRSnrKjzr2eyXvL8kLoaTrTOBZ4yhcqAdtXjNxsMskqh+DwHvq2rE9Z8UuOYwM29MAPatbXEtMhO56qgFrQsQVUCoHZb8f6vj2xXTGFrRRY9A7/eFFK55cuiz9WOj7xXU9FY1aUs6UXOaM1KFzwgVSrElsRTvQZVfLIuAQZEepYsoXaM4D2dYN1gRVxt/ajX/JkdMwGJnfrU/HRSj9Js/nQ2mNQ72h1uBO3+Adc/8Tu9jo3FZY128Uzbu2c36b+t1O6u7XgQ+Iz9DXkJxr4WmxwOxCb/jQud8xFMv3LC/yinQH8jv5GsQLuWVNwxI9diDeo5nh8yRgPxvx5PPBzRIEyjEAmD3wt7aWTHGl14Z//Y3KYcAkl5myW39cfuYsQR+LGWBE2vJmp1zIyaK7kv8UX0uL33LwGzsrKh9gZs7Rd1TSu9Zhc0IyHZSrLipt57KJcnTR1GCXFHnmbASB3Y1je9QaAucCF6HUHt43I7P8qgzldJKTFLeUUP5cIkK1qkV1cFUS+MnZMGbEWP9/ru+yk/AvfBOiO/A5Ji4k77Yq3etVbvmiQPTC2EYKcIvQTy0AKXQz1w+U0O1aillSgrcHcPOjT2iCtRWw7woYPMTg0QA41u5Y85lYfSw1z7i7CDwXPP0wNZsORHa8//vD3JWrhWUTlMq3PcaiDIPiuDubhhokdgczdFqmUdW0keV2pP5aq9EtDPC7pHx69KdlEoXBU1EiCYww6WuL9cFlRnhft8x5IS03W7edz0b9Wel8fA8qDgqjwUUPxSvTNJUumWf5FlpXZ8F4m732QHSzQK6xRY6hz5DS8PdwXTyFOC6nEjSZpCaHfew1Zrc8DwSsweseDZ5XuoC9fe5qn4MS6L1ukLqj07Hst6kZCMslx3wNcod7eYdtxQMeXQuqb7fqqVCWv2x3rLDHUkDXU2y2Np/YwCyhzL0QNGgRxH2sJR7ct1h095wFIv14bf2vOx6MCBsGcjHzaOKOkeCM+h5EsuQeGPUYIWBRzSCUr4le/PGg3Ul2152S4vt1yBhmTaLv8uTXxEPJaE1AtDSpnvRj5DLEY8jFlSM8NQS0stFb4NLghXLli54Dvjgt+Pv+8fLQy4pgGvm9BoaRp4dgrQgoBDd4ICOjWIuqA8VIFoSKZ9OOxRHhIUBjzCUZgiz8MJQgkLQogGYGSUApasPrRSwEoBKwV8pcuBZdE+2ODFjH70EtGeasG+oTeB9m/yM/hMTwB+IzGJ+aVYJ/4rTFKfozhNCMdOgEhKOY5T7rvERRyNwn7Z2Ir8K/KvyL9uBD2i4e86G4yWogL8IqlACwUO/anjgJs7681Nnhd8gg2EkF0LTRJCI9niBAfRIHUpjtwgoJHrOgFx4X9ZGmOkPFuHOaFpb6WFlRZWWlhp4dLUQPehB7zBdCl6IC+SHrRY4TCYoIfX1aCfYAddZpIcasF2glAnDhPXT1niuD5liYcS1w1QkPgp5Lymo9xQN7dSw0oNKzWs1LBEdZ8pWqAbZ7HjAvoiaUGLIQ7DCVp4D7NgghKq65N0IIVaVJA4UeL5PAmIF8ah46YMCnx6mIdOEjphPEoFsqmVBlYaWGlgpYHH3DjyN3QxCnBfJAU0EcfKB3GMAvTxO8EEHbFJQtBl2yEIsZM6ieOEqfg/yjB3ozjyPRIxErmhlj90qsWVHlZ6WOlhpYdHSTVUE0S44NaR9yIJwtUIAk0QxP/Is/0EMZSXJwkBZNrZ5WLuRIhEAaEuwZSR0EviAHMkfk28xB8lAmhpJYCVAFYCWAng0U8Q/I2DNmQxGvBfJA14Gg3gCRp4l+fTrka1wCQVKKkWGcRM3DnAMRaYjv0Ie2niuyQI/TjkXsrHD5VVWysdrHSw0sFKB4+2XeRDrUmymMtp8CJpwNdoQA87/sBZmueJ9eGUHweDjUsBWwr0sxsNX24vBnAaJEHqhdiNqZu4sUPDiHpxQDzkJUFzWjDc1lL4X5StF7L1hRMWDTfeQ3s0gPZ0QbT/ZX+S6dhkyh4B+MNft5N/rkwYIbNWApJpaW0ErpR5G8Zz0aVZcaMoo7xZdC4g23FR56Tro3UKLeuJmKv8pSrP6JXK/qlluWOCGgBPuEpYIfMupaKlG3X7Ji+p+K3iNpWadIQBrtrgDI8jU9gxmQ+vnTWperAdEzQFSS7KpBTy1vKLl81p+T66QFzngI5zBtPTYkL2hp+yuCRXRay9bEmQI6MkDIH4hwNndcqnVhrUVirs38rconedTNP5ocnD1+OTq4kRA2k74Gomc4C0rIea/OrMgAcFyvVrqzMEqjcuHlm+cdkzMTteXv6OreAv8QeZz2ko/UX/ej/5hbC7xBuUb+mtFFyzeSyRzcO3ncBCeIO8TSu99zNl86CBRqt66PaPYoDFYgBY/269v8lPKsGOnth5gGkrHdvWVZpU2z3uNVVosXFI4jhIIsa9kFLfYz53w9TjPsIo9sOo2ZozbX2x3N/V/QRM2Af9lnWe7oVJ+4I7Gq3b3AWZXBVhAH44b/Nz0aXIdiIluYoDlgA0b62XrNub3LqVaZ5ysOph3RHlW9HKSTwVUIyeB/wgECvNt1mu5wBHTp0ntcwC3k09Va8HxJpGsB908sj5VqaeatJRJTwvk/+VvCxWF3KNAKuTQ34rCPe8Le0SbUEkbzaWzlYl3hWWuuA8QaYww8RPfz5yaTCor3tl6Z9WJpAtb8Iga2NvySTe3+fyMXmdlxYugU3UToSo1j/qxcsEulB+QZkrAwUYxD/tJFfyzWenKlGilin3qrWWLnMk9pfD5Qh4ZbWyjjWfQ4hv+al5S2C8sU8qE+Sp4Nv05XHvt0VXge1gMYE2jrvBwQugq1CjKz3M/MOJb7dM0FN+FpjxpoKSqWTlpYotVexKZSJlualCe+3IKXIRShLPCd0k9hFBcRLHBIdJ4JKQNWtHw9YXW02W9yvk/SrwtZvE2cuWrTC9nRFP+QvylOnIUaWMBrcK++WMBMjygdTqRbNoKtc4EjzHMo1nO1heQG+0dObNMqmdl7BMnxjnBRCdpCgoozScKPGqla9cW6bWJFy+IJWqt9ozrWj0lrVqCNWsCwgvKUnI6Nngm6znZVmhioH5p0Ivb6FSLpYJFVdof2xoRxSg3XVbR0jPBe2uo0G7HlP+451YiB4yMQTeseJGHpwdZX2sXmWhStAuBW0p2CsrNCnWAm8XEov4NOGR46aBABo3YDFxYxK7nsPTJmJkus3FFhj1XdLyLpG8y7L1hSZvYgTPwbLwfFA5U+GAROaAvRXzlltl78QSg5eFeHhyLW3qU77Lj8f8tslQOz2Eupt83YWJfP5y0RDfwLjdX6sc6qKbn2E/CExZrfjEbHEMWcdimwi0/AwJf6+ZmHKqqEWreFFyZLCHWaP5VbPKuOEsgS28qv5c3/4+GRTTYKqImlKE1YF44uiurGr0aZ/f7seJIhfvIVbQpcBcWubiO4n7QIEgSVAybXlZBk+W68iPt+JhbdG5vXwtpf3/4qD+ADwWb/ktE0bKAND3r/dh/n0pY/0GJe2eafcs3QooK3m7GHqSAYH+o7wDITGNlNRzcBVGkAOXBhuHvACuQhpX6UHvf+N7MSTgTPbtnh+v76aS4B4rWZtLWYMsuCYq3TS4dZds1SW77FKzufZAVprt1GJFk+Yf/mHcFNxni6umjXorqGst11svHQitH8hSD1QfS7RIoFkElOfvBnVIGZQ+LXkgO/1+xg4K22nL5bmRlpVcnmw09R+qU+5YJWqHo649T2GxAsU/Zfkj1ee6WFJJBYn4pmWJ1Vy8mvhmn2/z6zvo8z7/rDFBcRbTKtszVZFU7qXV+1Zs3zrAk6uCAVeDNjflR7HGKc+J9KqB+tpCVQjh5WZhk6tduizAY5YWhnjI7sdZhKLKlWRz9P69L0quvhX27TFWaKPQQmTj9krCznLES04BHIwxItYYMZhixE4O4B49DSUBHhRqb7Mh7sROnFJMSER9HLso8jyeOEnoOShtXDQGm1pqgfbtUGG4UuFKhc9EhRf4v9UoSzcoeFyUfXaEJRrChlMI20mx20O8oRy7g0Lt7Ckk8P2UhTxgyEtSnkahF3hpkvo+Z04SjCPskll2V4RdEXZF2MVdi7+PE4+aLbzWYfYD2QK9SLbQouuRM8UWr2E8TtFFJTDNF1KqbZIHJA5Dh7mMYR+HFCdhgryIMuJHCXL4OGHItlbGWBljZYyvjjG+pa0bvxtb+RCawC+SJrQYe4SmaOJDNfmnqEIXmqaLWrLt2hvECWFRgNOAeXGAAp87xPND7ns4YDEap4y6vZU2VtpYaePZaWM8p8l3ttQIN467GIeQF8khWoA+wlMc8rGeOVMk0pKaZpFGtEUjHgo9HsVBRIKYe3Es/o4SKAzlhC4lKR6nkabBlUdWHll5ZF1+PBd1UEjt4iy3/KAvkjq0oH5Epqjjh3KGTRGHJjNNG5VgizSCIHGCJPTSJKAx82icug71PRJSTL2QTpxvVM2tlLFSxkoZ6xnHC1h4QAL5DcKLsYf7ItlDi11HdIo93quoo0n20GSm2aMSbCcOpjEwRZwmNEkZRzGnDmXIjSMfQbmRcfaomlvZY2WPlT2enT3qkh1X6x5WRSWklarkgVTivUgq0eLKkTtFJW8E3IgbTDFJIzJNJKVcuzAJ9VwWB8xBjHjMjVOM0gBy0nuIxyyMxnmkbG2lkZVGVhpZFyEvgzncjbvcIsR/iczhaWHrSA9b/+2G821h/bv1MYPI29dnCEuWI/+9SifXD2BXKrYtNexGwy41upHshvLts5HAc52I4DR0fe67sZ/4QeLEUcKjNMRhczZi2PhSfHOrbgeR5id5R9bcscy/t2ycu/kNTRgIO0szkEwGmYkHgGwZPTbS0lLJTFB1yiQAzeZJLPWUV5Z8RIXRucwyFWfH+Ax5T6rkhnpCEhlNriXpjUW/jjLZR3wuIA0Us475SSU/KfWtJCtEH+/agefiT1mdJqSMo9/m+acSxQfzebUi4GviKTN39RI21reXOTLFIx6OMj1jmWtKUAkwDvAB5P3sZbUUf9bpRiVtqRNBlmkyVex+3M5PUgu1s2GpXCulrAzpf2W9bXIVt5JY37I7eAvlm6vTTtbpJsv8BZBHrTQ+dBtBveI1S8qjUhlybIdCvkY33LgvIAGWp0WeIz3y/LU0DsXbepNLG+lDLqbpRPR5JW8reRvke6HhNdMYSbcLsUdBxD3kMIKdwAlSliAnoL6Lw8TzQ7/JmW/U9FIsw6qbxepmBdzskVY2Rvd6cm55U+XihSy2B5WOpI8zosOi89s6k5O9ZTCftGT4DUYrtmgvTgSuTq9Mbm8yYQN+4vygMj3LNOuFoDvAy3cqo3KV+ResxXbC3/IWLejWs0tVZANdF5Zih20yWKR9Fqz06AU91vQj30T6EUECkGbf3WC0cfwXQAJasDXSg61/FUtzZn2IM/td1mTq7a0zpJitxJp0uJ3FxZRQC+m5y1gaBVwAfIjCCPvYT6OUxI7rMs5RUzNxqsWlAH4n71GIe6RZkwRXqS2C6lM3MAJztGRyrFYdC9WpMoUfGEt1/qupcXFVGeAyPxPslCjUb9LJaiDbMr3lCgV2g0qkb21w1Ymv6v2tauOslaWqTl51pedzb7a/2tZ6pMpxyKeFDyH5SqW932bpIHNcyRVNNpirsFo7GKQqTPhOLl6aRL9XVcL7JqXjs5ni/chohJrNexkt/NyQpUUvIz16+QcOud1+OmbSzv/Mt1YvMryCrQhE7WshCisIIWrXbFiJdvIlGWh00yXJ/tjQH1v1pwQou+zPQwFqrEuLgNNY4w8GpkszI2krXj27KXxetXPbNTwrcFBPINfNFjxHtcptFV+qU4RWZTZApt4b2Wub6/8SL3TPyzSonT2TzpY7FNCwxb1V/QxLvfJulQ2JfVH+RaDAwT4firIgSCc/uF6vQyClela9xpJem6N8LTLVtcAw9ehqq2S0BIdWekOh9j5WSQjlprsiAJmHsKxkxPUNCAZJXT/LbLRyBEnz/Mthm5fb6VBCqtxL3/MvJ4slkOMQNtB5Kjp8UjnTX2w+pB0c34qXehiyNjsX+5bmr5XA0xuZqNk0x+3jVgOMfHGJgsIxItACk7FjQAQaAYxhc/ekdUyuXdQvoow6Ifdi100Ii2OPIuogLyDinbC08fcca20pk/XrZIRwZYSVEVZGeBpG8DcueRRGeHY20OKPMZpkg19lP6fIoJKY4QIp1k5thBM3JGmC0xgqu0YcMewR5rmRR/3ETyeoQDa2MsHKBCsTrEzwBEwQbkj4UCaYS1iEnoUJtChirEcRv/0iPqo8xfyNi06JofsGznF+ggaOd+O7RbzSs2+Vnh0LPfta6c1uHV2q3t1Hqrttl922odt22e2FN5WMOrsIixjd6cm3m6TDTOU+UY4I7VxusLKDXgYa9shV4RoxoiSoV14ceWqVD2rBgxaqHs5wwXAoitNsgKdyS76ilaosbHbSwB5aYgJ7T3eq0hzUf7iy0mO+s8S/8ojWSgX21nXSJB43Z7PVDvSOFQIZDxmXpa8/C+YSY8ouXSST5kBAEdb2/EX0UGAZlK9ISxfPV9bbhi3HCve1igk1B7514V29dm1VLLykZKAIWX91fzoq/9PSYUcqnwSXyPoUUL0D6mrAq34FMJsp7trewTFFOcosCVRQ7zu/LZojZY2quGAlIXUEshTPfnNS1cCh2epN6iXC9ROOSMgcZal0TVqWds+P9VAAGoQfdV+msk5eWdRceae2PVJXWlwLxJpTPfzT3ga8lAlf2p6gcvoZ4n4tDByTS7lf43wj0u2uEI2UWuvFKA1D5DseDaOQxMzFrhsh8W8QRNyPQ682B4yaXmr1+K0ZAeFqBKxGwGoErEbA92wEeK16V49lBDy7AaBF8mM6aAC0nrK7F9zwbItfBzeEp2RbLI99SFzsU4TTmEWhl6R+gDAhaZBCSUhngOX7La7kvpL7Su4rua/kvpJ7j9yDbm7Qh5L7c+7sj5O7llsB67kV3kFs3evjyXp/k5/KwuTVs2rkDmK2ELM1MbsRU+Q+JdRidUaDiERe4EWC17mPQ58QRJwgwn7EU9aw+lSLS7F6CvcQtGQftHuUGLgImU/dwIjDyaIczq2pbz4Q5qrOKK+0U1vtuFKSlc7PFSMpgG6Ob6tomTIXQqHXrudfbrKoRAJw/JY2QstLXNBHfbhaWw3y3tXBNMTa5jI683NWdoTfVqenKvAp4fywLc+a5bm0LOksJLIdlyfg4hUIfnx50ZzFDTvw6HwsTkOw273ah9wPIPEDSDwH0ELVYLyhuHVq+lw+8L6WKgDrqQLe5AUMo78md0XB76w6lLPE+4HoTaVhlxp2HUNZHiv24jcN5du7nHHkESehngBIymOUUMzDGNPUx17o+UmNlIaNLwWasbpdXt6uDrOsLIFlozgN7/b0YFqVbFfRMGVcaRPyYzimXllyZZWet1txZy6Maq1kvPSjKcOIyuAiBpXdpXXMT+I3LivQC3wVY519qfC1DOupVkbNOqLtqiM+sTBubvO9jEKCMJ1Uhu+oovEQ9QkAnWTwYrklzPytrcrVs8NhC0sM2eSawf5xwBPbiFhOuEHuBtEXAJ5a4DvWA99/ZmIB9oFtxYrUtuAvCSzSxAieyCxTweiNELcL0LVt+6bR7YVpj/uJ3KeJrq8I9NqWj2BrD7B4oXatq1MdXQg4De/2YOC8ODRJpvjgwwk+JNSxOqQ9qfZf8j18v+tqt6DeL4GcIlmaxXKrSAZIwmiUT13UGUCEQVmUONt31/ucgT/fqR8mqT5niaVMwB/Y8om1ZXcyrVVuRZyJ76wgs97nEq/4cyY3iU6c7awd30V1IzFgNySTKYTVme8zcbva3VC0IQB3n6jQzbsy4r7jPCgsYeXTCG6GWm6WatemzBemMqJV6C/fyKliK20/iZVw34rzL07Hc1zuJbGTooKi9hPdynwp8svtOU8gZ80Nl+lsOjlhxFeBISXaBjaS4a1xvs3LTZ5qg+t8SPLKkbL8sHxfyMdTAbUSVQQWQeQnvHXFhPnhRobIKt9N+Wbl/psw/l+u6+PXnxi/ZiSMNqi9b3IfDnhx3hGjzKdF++NgmPk6JX91Qhko9tu53PaFpyTxubD7hc0fcD9IfQG4HneTiBPKSLM/0mlkKev+2ySpcCWplaS+G5L6nrnJ3VDnabjp2XlJS+mAw2Fe6hYX1khjsKxw93q7oHDsx9SJnDDwHeLHESSZCWMviEOPOQwFQ9S0aCnhlZtWblq56dvkpoEUOjWm+xtMFsd09CIxXcvOQJxhTP9QzhDro7w2CO6VjF3JjKF8W7AF9ygMkIdJjCLOWeQEHsKCAFAYx5gRP0FDcN9ubsX9FfdX3P+OcH8qF+c9gJ84GwctDvz4RQK/loiBoGHg/ygG0zDcl1fGQB4ut51wPELT2A9dgl3spcxPXE6dhEY84E4cR0PQDo2sgL4C+gro3xyg/378ff90oI42yFsc1OmLBHUtpwLB09b8tB1vYMG3AN5NKOIoQCRMYs9FRCwmwjCg1IscD4m/TtnuK8ivIL+C/HdktV/mfTUF7WRDgsWhnbxIaNdC5gkZhvbKrXpin6aKVZvbpmnJtQvfcj9lIeKcE49HPqROS5PUCTDyY54wMoT0rdZWuF/hfoX77xzu72PHexu0PNi7LxLstfBoQifBfhLm5wG+De0oxAgnAY/dBKURQ15CXc91CKOYBRxNQPsK6iuor6D+nYN6XUr9QmAPNmj541bvRQK7FhpL3LFd92bsT5nyutysPd8Xbm/fYDeMUu44noAuHHiIp66DSJwmccjjxBven+82uZLASgIrCayW/aWWPW1X2VuIAPyXSACBFhJMvHkCmId+Q9BvwX0QRF6UBCH2fBQHDvHiwGUuS8PIJ0noxXNwvwL9CvQr0K879pfv2FMs0H5xqA9eJNRrAcxkJID5XZ6fWgltNcCtr43BuxJoe8yT2A+8xPMZCjgJw9R1A+qErusRnxEZRt0DdtXMCukrpK+QvtruF9vudEOX37wJXySga3G5RI/LfQeD/TO33txAKeUdK6qkK/JT1oFqH/b5rfVWZkzRs50pZbtWrtLogLJdKdugbNfKZQ60i1VbZOExJwxd4rle6LmJ56Rh4IWCM3zOcRIkzSrg8vssli+tvHNc37nQ7lyFCdoF3JmXd14mj9rFN35yjnmj5eAUvHIDyUUBWA/ZUWBomXbzJhfdZndaafDf7zFcX/3+b4paJhKx3h7ZoWjnJpKJVYs8PQnCOWap6p5oVcwoVePqlh13gLsFoL/KkHZs1azSy3fdygxvZfqgLagf4c0J2lR3vcl3HOizXVGrJC1JEupdQJ1vlcBNwPINF4+b8u3Juj5yDjdV6F1+/7pieJPhVSUugk8t+ritybpJMdvKo7rlJ+idJZ4xE8SS7eP8eMiPtW0ga3v9fsYOCguNE3cCMWWRsVfW252QidVnFi9IkHb5adV7UwaAmGBMMMQNFy9IJloCpizTqGqF1XQ2L60LKMPOkjsodnaGtLlV6pkXl5eumnPFVMBwMRctXJQjek1sumQQtOts0AvItxdoAcpED1D+P2KsWe9zASDCJHm758frO+vHY7b/ZH2obNqBnHugZUst27aVli217Eqrn3fvAp0WF3MO1Yl5FMcO82jsYOa7AXG8JPSiINW4+IIbLEXCf8AtD/KWXN0wkTes1gNLL+qM72dEue7SSclVnyzZJy3feMWD2uJFrvCuxAoE8oeDMV/myQMAbXJ5KwK5aqesBgSHpaCq/agnpa7z9NVJqItqRSkWIsBgNk+EZl0W8pX1s75uSbfscy4WzeWiskxjrpoo14mCgVUyQQkWcvGiPaBkZy5ra9alMOGx6gzq1eKyydz6yvpFcKaAXyaes1ztlmtMubLRF2eCRHfibReQzJvDajCrU7dqXF7xcrbf55/L+qE3QMdi8l7LJWH5ToSesDISW/DfXr5C+UahUWEuiaVUZ8kMfxYPW32LU55vVVJX8c2zP3jbvpGp1zmkn2DicQr5esuc4TCPXhyFfkPk49oOsp3AQhCx19pSfDby0SKpqR5J/V7M/R07MkE9/4Pf8i3k9b7JDxPJXisNu5QHaD+Mpno1km4f/7g4xcgRy70kSAOC4tRxnZAEnPkBctPmtN+o6aVo5lDd7F/lzQq42eMkeTW615PTSz1SMmCPpqhDmaFVQ2C1MQiYWD4AYOOhKjhc1jd4Zf2mMLBE3OKwzU52mfW1Yp129Yo4F6M6LpcumcDfo1oR7Xn8acvklp/asJTrzmN+vr5RG1/1zmK1Borzw92Vvm/F1foOUsnGCuH1fUGBmQdxUxBrcYmW7btbALm1i9a8BrnhKehArYESDjuVzwfF3Z0ziVvYsRDZUHfjei8At7RAYKoHAr8tvyR8pPOOz4FWKW6X4tOYZSLczk1NWJASSnwWYhe8lRIep0Hguokf0zhtDjZMWl6sRk95r0N5r0cELJNbGeFVsHB+f5NR0sUzaYDV+zqd0w55wAGVZzicDQgj+Cjz70NaJygNoLTlRsZdaR2DdSl+EfOutoSL0zH7pHbDNMyDSjW5QtMrVWumLCJQV5vRzgDimzwXdn3ET7ege5sLzKo2atQWTf3Xppcafr6yXlc11ffsc3YN76GCTLllp14c2MtViuzKqK0qC8m6AU3jsIEj9eXJDNSHrx63OrdJt2K2yCzdJzgNybZlgm5hdGfCIldLCHHva9hRSs9bAeSfJRbDnhKDAkWwZydLJ2XHkj5i0TLsZsUNxmuHE5DY++5Q1nUolzflO9S2wbrQXZ/U6O9OrAGOdye+3UozGoqcwwqjLpCSZNeZAC9tVdFeMsnhdTe5YHqE2j2L2ufy85Wrp8FtrgGBvnX+Tg6CH0upp7fLse140i4PN+5LsMu1mGiqx0T/7/yaWR9OYjTk1l/33H4P1kn3jEojuDshbxdS3q6OaodOmjv5wk3VujnCoXu26p5ddW/xDOFGnVuIwkxfxDyHhUtmB2/KyzAdunSGEm0JXLf+JV7Ant81RylGI0iCU+/cRCuMANfh3Vjq3cABw16dUOfVobqwbbd76JdCt6vR3fyBbahil+fQ32ap3hjpXehmAiy3O7mh0+weSRZozuGLan0A/ZbvlHe7rB/+l2sA8b7FTK0qxMllR1aVf+jY/uVRib4pZOtA35wOyYcSQ2Nr3fFTsxnV8bd4dRnQL57sVPyJs634wwCgt6/1sfxv8vrTYzixHQprFNhbCVun+6ao+eKybeMxftACqykZ4Ydf+f6sUYGOzeWllpNW93o71oJC/XAPxRFyfSoWNh4Rf3SS0CGeRxCuuaDbylLLlm8P9MMV9FfQX0F/KdB3W6e5S4P+swO+FlxN6Qjgd+or6FA8VGChe70F+KFPOI5IEgt8R0kSIOZjTnAQxD7308gfBPwlSyysgL8C/gr4T1zj4KtmAK/r1HtfBkAvkgG0KGzqjjBAt5KBDs6DpQx6Au0MqChxaEJ9l0SIOYwyJ+YepnFIfe45ARokgUWLGawssLLAygJPVE1AB9NgQ5xFwBS/RDANtYhm6o2A6Rs1dkbgtLk6CqilSNuujqgThJTwhMdORGNf/MAdlhIXU4YcbxBSy4ZWUF1BdQXVrxdUkdMqUvwAUCUvElS12GHqj4DqD3zP0+w0hqra5VFYrWQ6deCDlHDmOixyQifiRMaI+RGPXCfBNBjE1aqlFVhXYF2B9SsGVrTBaBFgpS8SWLUYXhqMAOtIAh4d7qYy8IzJtQN+EMUOTVLEKceUu+CFHcQ45Z7r+4kzDLKPkYNnBdoVaFegfQagxRvqLQK07osEWi0Wk4ajQNsqMNWGun6Fqe71duqbAKUo9lKoIEi453OGCHN8SgPm4CBFI4C6XI2pFUhXIF2B9BmAlG4cdxEg9V4kkGpxha4zAqT/zzlv+SrrGFddG4VSKdB2UUMuZRH3GSaUx0mUUOa7PEl9GrnUjZJBLJXNrGC6gukKpi/LR20KO12x4F8EO/0XiZ1abKOLRrDz/TGLxdcZQc/m6ih+liLtEGviopAFCQqYWM/7bizW+g51YxcTP2QpG0TQsqEVQ1cMXTH0KzZIvQ1exiANXiSoagF17lhA3ZsTGzvsl1fGD/pPrAWkach9FKVe7MQEJXGaEsbSgDoeiTghCR0+5D+xFURXEF1B9CsGUX+Dl3FBDV8kiGpRZ+5Y1FkvO7iOccPpwfsSLTT148CjCfdQFMOuKGc0pTikzMNeLFB12CxdNkH4CqgroK6A+gyAGmzIMkt99CLDukItrMvVnfohS81PN3lxsj7ciEFtvxWIJKaZmH3jyYyEji117I7OaEYjY432RmtMfOSGJEzTgIQOikjqcYRDQn3kO2HjBWDc/FIwLaaifS1vWMgb8vqGj5PgyPh+JnAtB/qSWY608aOSGUHSM8iqAylutlbd2V6qtjq3zylXCS0Bc8UFmXRHovq/BOhYp9vcOuS3kENpW6b/eWX9UmUIje60HKKi7fjmlrNjWW6BsyqZm4CfbB9nhy3vJdwRfz4MJ8UW/RH/2XILIKXOQCR71lQ4qIpM8Ff/LTr+3/CvHHVQsULce5vBB1FZl3KVu0c1A7FHkCKJqkIUZXpMMbfhKXUiKM6RmKvWJ353K0CmLkfRpIFixY3sR0URKlfTSSUmFb14peayfI9pLnCcQ57Wk3h7AtZzldKoThl6Kvg2vSrBWiXthESikhpKulAvYCCfd7tOhsqIVKYyrd/NL3XC0jLxXpWTiEGYlnrp6ZZdi2c6WIeMi2EjOYalJcc0KZeqPquAsSurOxY/cX6AjKWQpU98SPG1uXibN+x4UO/wvBfduOanE1Day0t4tINyoYJRD0NBcp2L/Si5XyuBpw+Uo7aDIMcR9TaEPH+Oo1ALaHP1GIyYHZMDu7Ns6x1kz48hvf+dxJ5x7it1bNsudexSZ5T7jDXaOzseT6hDkJsmke8nOIpI7IUORymmQUia8A3j5pfivuqGaXm7Q3m7x2E+w7sZ8R5emPfeiL6Jl21JGCdzg0hRY5n1uknhme8OZVa3kh11UhR2+EkmH7XK568wD6oUlSnf4A2VpFC+HKsov52gyXdy2SGbV+sOPe9cTSF18jpZckhSRFXnqMeWAlpVKYsmNSpwk1j9KB93lRpVrErEbaFk0fU2j0Q3WRyLBVMnCZ5cBLEqJaBemaIkB/HYKsFhuc4Ss/sokLfzvNAxlTBPy2xXGhQyAWuaHQUrPEH26brI8/1LONyyz3yqikNzfbyQg/Ub5N1+cuCH/Hay7FG4wc9c8eDq3/b89p8l924glZKgAkh/1lCBHjnyVzFIPuTC8PrIBC7l1cJPTmGwBzUGEKI2iNpKtNoH0kUV8M8JtsNKojCOsY99GjOGOMc8SiLxf2nqeEnCSY33c60uBfNi2tgF3Oek7lNuFBXNfRbB97nbPDmwz42EZoWjzN3TLi8OYq4LexRM5DKZaoUDA2sdDd3UMzf7TDB7i1PRyQwtEanKV11kX/SNMFWeIG1AvkrtCneQtezY8ZP4S54IgBaz8Vp0a5/Um0A196iE1L1lUXQWyCaJqKrkAGUdWKFVCGjseckmagkjlmtHgchb+VSRwmRVOkjPYwqVKz7zffn8amVUPCc0D2wQVZDmkpcIaQLT1BAAWJOvKovt+kE3/+//twY4tQJs/Hy7wi3Y+P9ddRXxnCIeUSRzimREkc4p0hFFd07RVYri+5cC1Sudf11K8tJ31dIyflEtLeO31NIyfkUtLe39KFQU6+Ni+u00cubvpqdj8GZ6OqTuayqwAZDGTjnMmInetiTb/ZXtyN2UmRakjPGztuXnn7MtP//t2/LzX70t33zvdJvFn452WUx0+hW0RHtv8fpuN6kurhu/vUZ2/s01ss3IqJcpZsjYFzfu6ajqfMdHVee//qgqHXgFFZEbvoJK/B6voKN6ySvoqF7yCjqqzSuQ9TVsyfxTjy7Fbrrp5WQDQMdGc6Ml2WsHih/vc7EQPbEz1JOK2DT1DMgbf41x3fnPMa47/z3GdefBaVy3Aaody/blgerku9PkjN9ZX2f+XfV15t9RX2fs3fgTOn7zTsTCqx519ul2epz3pM3fz4imwVsa0TR4VyOaY2/Mm9X0Ou+tgk6bnU+5WP/cGby9ns6F73BM3/RNjumbvs8xfdO3OqbfvFuxYCnsZt1pfxZXp8el0rhWkj3slFdNIFgXNP4qA0rzn2JAaf79DyjRwYe0D3DoGwlCS4yfV9MZfoGzJFhLDesbfsXxT7jlJ7EoN+uHJttvKz9dQ/HBLJ5uphYzHwpdFYOB0FUxGAZdlXl27Kk0pHi4yU/lofHk69DkjN9HX2f+hfR15t9IX2f+lfR13FkA6+t4s+Tb1/FHdIIJnWBEJ5zQCUd0pK/R6Ed1hkaG2RpoSOE+Y+XyddCE8kWj5/Ldognli8ZTV/migdVVvmiEdZUvGmpd5cvGXG+UNIOv4OwY39hwPjeP+F3hHuRX6zujYdwVNh7CI4rzw3dEcX7ojijOD9sRxfkhO6I4P1xHFOeH6oji/DAdUQybUQHnDQaGjZIbHFin20waGrPbh7pgr5XP2Y7nRhZqS3K4ndnHqaV6+rc8sktXARuOgCab6QobT5MRxflpMqI4P01GFOnog8+PiUGNyReqdpouarhRGWq5lNqqI8vpJnXZSz7UgJ7RdxrQM/pMA3rNVwLHknPEjSZKR7b3/srrs59Dk+uzigwosFU9yGkEkZJK0JxO+koGVNJXIt2TGfuPPN+ZHM2A3KVHM5qO8dGMpqMdzeR5YmZ3guTFZD2gZHDE0lcyOGfpKxkctvSV5sl5QGmemAeUmu3BY36SURq2dCKe/AqVqJTsE+WRfeZbGxy15dnqoTzunqLMQRXjDzypPv+pJ9XnP/qkOtVnZMwPp7nJCDKXTERN3mgSavLaBKwdU2zllzM9CbvS5jNxRNNgOo5oGszJEU2DiTmiqZ1/ly44qRBK5oC2LWv+jQf1DL71oF7zzQ/sKAiTfYF6x9OHJC3JPjWKvwosyD/z45bdTc/zjqw5Pw7qGVDkoB6ZMdpsktzDbhNafdMtz6PseroxKTKkWUXFFDvx9ufaaAn3fRYg3kKGkExP7Fqs1wK75vv4zpYuWJNt6IK9VvLz8QSZCacaKGWMx0Zbfn5MtOXn8aMtP48abfl5Jm/Lz5N4W97X360NF8wMqbKVi22pYT3jt36xRTWsZ/wVLrarhvWMv8qodRXJU4pyiTH5ZVqSxt9lSGv+qwxpkc6cLwO+bzib84EbkDfu/7ju/FOM6+rrIYiSLvIZ06YRu8AG66iYmGEdlaafxT6/nWfkWsqcQTsaBtzZ0SDaSiH+FLF9MrNGUEID9gLnn7biingFBxlKPWkwtIUvsBgGFU1MhkFFbVYcDqa9b4v23kTCi0/z37qW6unL6FU4AjXyT23JXuChOqRn4qM6pGfipTqkZ+KnOqTntr27jHyzNEHjtzSgNP+KBpTm38+A0vzLGVCaZ8IBpXkaHFCa3/YfUAoauDiJGcSOiX17MNoNHJAfnji29EEwdJ8Y1BjwABRsqlz0b28EF0W56MiMJ+CAhvmwm9A2GH8T2gYDcULbYEROaBsMzQltgzE6oW0wWCe0A20k7PPP7DTnJ96IXfDNOyomH7qj0pCZPM+Q+xyQ0yfaCtK2d3x/nmakEaU+wQ0IooubRkbtYpvJsqKXtl7qGb//+TbwZD+JXfDj5yzmxcVdbVQf1NteM9MdptVex+UdblQf1OFeM/ND3qiZeZAzamYe7YyacSe/gmvrOZou/hJtdaMJ5dmxoM/7TKla0+g+vp2qXGyX3qZS7O92XYhnJlDWlkEXtIfm+meCXA8ELUO8uh9UPRylzAHqftj0cFh6OCI9HIwejkPmEHR/9LkMeO6FOcZwcx+kMQUZSLYh8wuy6Y1WTc78PLOnY3CI2dPRNr+EicqZWApBzqTpdY4uab5JMKBlsEUwoGWwQTCgRQcOMs1Qvxa9xxGmpnbJ+aWmdsnhpaZ2ycmlpjZ0bJnvT7O7WD3pexxdtjUvObxsaxqMjxFNgy2kEc359eiY5vxadExzfh06phnoh5sAZJCiQSYEm5sQA/JDvmi6jImLW1d+rs14m/H9DKEPq8y1bGTNjOjMtZ1kRQzHzJe0Xelc4qU3oW/krTehb+S1N6E/P8Om9d3R7za/vT2ocd/3OrTVPTBOhdFxylVuqosGq6Y3N6oM7JVBjb4lBCm7Kj+OGQ87TfICF7u+lomPXV9L25s655CccnpdqGTMtxda8gb7CC15gw2DlrzBzkBLfp5p2vJNHOXxn7PwrkR6I+M4i+HHfw7C9vGf88vWUmZA12jd1ogZf+Ceyvw37qloJ53/zPbp3NsBkaFkAIfsKDddDU7Oe9K99nbsmv2R7TmcPhQzIe2a5AVB7X0tk7D2vpZJYHtfqzHh+ZfDNjd+cz1p4yce05x/6jHN+Scf02ye/nR34LdHAehHA1/zrrD5AnNY0WCVOazYzJhoy/cJ5BYz+HYd2f4SW6Ye3GZxdrqbx7ee9HR7Bv0bkJ9uMxfv5IImpfh0i7c37HTLk9y80Upjul2BeP/ic/A7qGE+xia0DQbahLaBS/aEdp+Up6TdMk2iarei78HvVFzDkuyyL6V0pr+VzD59wZdS8tNtluUdIIzSvGFNabp1A7N1QL7X5n+KhdfrffIGzt7/+evc/O9JT7f38/z8H5CfbvODyQJzUGO63dezhlZfvJ8LQYiwfSI9Gf5pkKGhJz7dYp1hqTBvttGZfv73Jmg1qGGMVlPa82g1pT2PVlPa80uIKW13+Fud+JeT3N6+4Fs1OtPjwGQDf0hhulUDRBmQ77UZONNPLK73dKLt+WiwA9GImfvsdlUMHHa7Ko3l9UY6lX7I8/1ryME82dmObN9Hc5/fstlWaqmLvFB1DTMvVF2jFb8iU1mXQZl2Ph/F0pU3z1gxqmuQsGJUd/xZ5pJzDcj3vmFP5ubIL3tDUqPfbpW5F9JGz0yKjqz5+x7UM3jXg3oGeUEG9QxSggzqGWQDGdTzdB9jozyMmlw/w+aRfRbGlUorPZ1rU5fstUMdyo/H/Dh7TqQL9l0uy8AIExfOjuwlx5ADekYHkQN6RkeRA3oGB02DegbHTIN6nhbltd1Bfu/DTJBXKWW+udvRMNjY7Who8Q2Qojs/8CObycNRiZlzS1fFgFy6KgZpWLoqBglYuiq9g475qDpd8NJjDV3J+IxIVyLaLmTxyQiYdMEL9iB7SiZbkD0lkx3InhLtBcZCqgJxaW491xe/xKwYVjWyKoZVDchuTNWA78ZUNefF/BxtOf9yyIuzMB/mNzGHFMzPc8aVDQ53xpW1IZ+f9yeW7atHN9g3HFbpE3SeJxBRMLuzqQuOtmLQr7aoeXrtITWDTNtDaqTXb7kLdpOfjHpeCY++hTL3bWLUWiU82lpdXcmouVr64jfb1TR/uV3N/vs1igbuCl/8BMPxwK1uzG8LdGTHP/L8ZkBbdHLqQfZZ4+kHwqOtRdv8+oJp2IhPtlgmzjFusqpUM9amsSfnkMLFA2NAGQ8+5gUftRHvb9bwND9yqKxstGfTlb4g3HpY0yTkelhT2wwoT6NN7KyOrLnlMahnYHYM6jV9B3eeilCbAtbTmQgGVcwTEkypG+QlmFIfSpYCObcMs6WA6KDfcJzPe+NpcmNtmBxh6pJj7cz7ceiCY60Yedd1ZMfamj+e0AXHWjkcTfujJMfaMUbMAfmLfL6Hdc18v4d1SfdZTI7mdMkBDzV2upn1SZMyFyxUdXmTNaoub+K3qMs3Kz3iOQcoJcF207sRmpzxM/V15p+rr9PzhoMCi/YMorZFL/WNa6sZu8i11TQXKll72aTbLUlzh68BLQOfrwEtzYmF7RP7BAl1wEVpZrAXO3Y81UZXV7V+jsO+bPsIO753Jk6tnZZbiu12p7bF5hvBI42QSxohzROej9f8OFe1ptNkpXPf5+roX/xIHf3u09jikg279keWnS5+rpb2g55wqKX7PetQS81Ti/WcfZxbdbSbrVR6Iz4GPyd+SUtS4Z7vqaV86atpKTdv4yYXf2d3Ai6EtXjJO2kr9t5MdrgB5ARLurDnNxrabfeVe+1DFZZ4Jj6t3Wipcc9339bGWj++iN/39vUx217WG03v3n3qt3HpsBhqoxkduzzKtlyM/RPLtpfj+pD6fZ91vKmLH3m8Kf3J9/zO5l/iG7a/5hc9s65476cdaOTy5xxopHnCpsqYXInZsk64rULrLnjeqWZ6s7YrXHDRTvLwm7bamb3r6SY7LnBTvZnePYubXGAXVPy9ZPBoWvccOf0WLh02/RaaMVOcD/wopD/xk1l4eqfpAfX7Pud4Uxc/8HhTZKQpenlTdKQp9/Km3Pp7lPmZs30B4zK+ZKh1Vfu2zfHucMpN8q9pghfEz/aUTEJne0omUbM9Jb0y5k5VWDdxmu8K9yNjKgG7OicrzBps5CfaLEeBYYul9ER7Bu4zXeGp3hlW4BrUmGhXGCaJYYMgOpAoYf/pzmAUa3IXBMx3dUyi5bs6pJW87Qh+U/MhIW3RwTRw6rLBuO4KT7S2y4pibte7Jz3cng0itmF+x5b0RRkehzTNcjwOaZKhZ4CDG9MnANmp92ESIt4Xn2xRhTYYt6jEJ79Ztr8WBrTZGO2pGLRsOmYHlIz6nWTs4o4LHZO25+y9YRWDli/8jG2t4TSRprleu8LDvY3PBp2LL8js1FEwnLSNgllGVk3BLBWrpmDg19hWMMia0VYwSJbRVpgvKNZRMKh11/1yjpbKfy/mXHE6nuNP85zVkx4oDaBJGKDAgPx0m/PngX1x87OeMVWDY58xVYMToDFVOvgKoAbOTHBMX3zypRpB05BC38XhHEVbLgDxcDPt3NDImbs19HQMHBp6OtqhVQZLZDhRn48m6ciaH1sN6hmcWw3qGaR4GNQzSPUwqGeQ8mFQz9N45Ryl27tZU6CUGogTyfan6Hgubua/UUf2AkfXIT0TL9chvb5bhgkMdmSH4mXUdROHq67weGsGB+4d2V5bYKLc8HTeltQFR1sxeFVtUeOvPKg2/5EH1Uiv34ebbJsX+dzSuS8++iagHJpRWyA42spW1rk/caOWKuGpPp0Mv87IaJFJyqsUGyZLxyEF8zro48oGFdHHlQ1qo48rU837gG1t2JI+Gb2KvvgFfggjqibOCCOqWoE2VtzA7o3B5G2Lmm/TDKkZ7NQMqRG9tnMhiGs7nxmjJdk3etgxgsxcN/nB5B30xSdbLA+7ZvF1RGeybeMTozGlydbnTfWe9GR7Rk58QwqTrao/mzdayk+2WZrH5o1WCtNfax5+++ID5dZOe14UNhhd9onvDls2ww+DGhcE6I1rmwTrjWsbZCid0G5wuMjjGF5afJPnMx4AuqR58N+AlkH834CWFvlzLrLYVg5dJt9wQN489G1U1yACblTXIBBuVHd+QTOu62r82zoOniHfluwFzDukZ0K7Q3ra5rWwK3aypqvJ/ntH2HwDb1jRYCNvWLHpP0nsamVhx+doBtR70uaeriOaBv6uI5raHJQeRUcDbm5J9tPnVVdNwvfasuNtzZNvW3SiV1UiHMOOVeLjLRoReU96vL0kj0/50bC5Uni8NTH1YLf0xqy5StocTUc0DbB0RNMASUc0af/pb2/ugHHmQqh74uPv02RzsSs83pqBEdSR7R92SEdKg9OvRm6sDZNzLl1yrB3D/YOe9Fh784t+XXCslZNY9pg9nZIcayfN9sm5MGlHSY62M//tW5L9UZTts51Yz9YpTqbHUVfafI6PaBrM8RFNgzk+oknHn16sE5MZD9wRnfu/iZb+Pd5HS/8eb6Wlb2BHTurPb5BP68+fJk7rNyV8GRwWJ/OYpsn1y2iraybFdHXJsXZmnSo0ubE2jCyFjuxoW2exoCrMmlKiYy0Z4FBLcqydcn/eYBoOKZiXLx5XNqhfPK48P/smlOen3oTy/LybUG5Op6Ls2o7yrcG0aUn2N2mqqya7f23Z8bZMTnq6wuOtQVi6WVMgOfGERouBvvh4iya7Wm3ZXlt/46f8PGOwlzLGk6YtPz9P2vLt0FaTNbomd1FY7qUr876OdmLJ2SeTMazJ9c8W4dr84rMRG27BzEJriw63ZHLG2ciNZxS0b/k2znfcLKdgJT3RnsFLastO9Q18POyyHbP+NRqz7RodOg/rTLRttEneF++1+PpwsD+czomQ+c3gE/XFp1o0ypo8ID/V5nzG5K7wVGtvTF7jgHx/kXWOuM3A3JxNi9EWNd9OHFIz2EwcUtMDomGr1+B8rBIbOGSBS0ZHd43gSCtGtK1LjrVjkhqpLWruSTWkZuBMNaQ2bwQOqs2bf4Nqbu8tzWduakmOvO3ZGIVGbKQFmexD1WU0aEiTHmnP6LCvERxpRdpeUf7FoJ1K9MJR1FEzHUUdNdNR1FEzHUUdtfnlw6Bas3DYy9xsRv4ruqS548qAloHHyoBWA5PseLJNEtxqcuYrzJ6OwcKyp2OwnuzpUC3F+F46pwJH2AYFFAbke5OoLTNnWfSkjd/fmOb8WxzTJMPPYFSsYFBj5t1IP9C7C16PUphu1cj4GtSYbtfIZBrUGEpAbb+FxNL2B8ika3+E0iFzmaj7Gn2XOxWsYUO0xnwly570dHtlbsnCvM1KY7pdEzYeUphp1cCiGlKYbtU4b9ao1vy7sE9i5TZfg3FCb25cbA+XjIvtYWZcGPh39uWn25TZywx2OMeUeq3zPT9e39nJMduLZebs1OiLz7Q4vywfkJ9p0yTwd1DDrF0bX96yjQ3bJvdom8y0nR9nS+f15WfaNBi8Qwozrc4P3AH5AfY5HqC0HjczTNrCE62VGxj2h3kPzjGlidbn9yk6shNtvTfazxuQn2jzzQ07mvZPyk609Z9zh1Vt0akvnImRcL1MWx9NSWpY5QL7c0LdxAidUCcDz/VhNqtKR3biHX04H2CT0LQ1JT35ztnO+F2z3VTP+FZYzjypbWj74+wG7az2Jfe7753uMW7G2rhk8Iy1Mb8unG9jfqdgvo35bYP5NuZP/Ofb8Iew0CDrQE96chZ8Odk/zO5mDSlMtPqrikt4fTgYttooTPGA2XKuKz7R4rt5W6IrPDUvZbJl+2Mu/jF98JZOP106FwR+Oppse7dFJ1qataTbohMtzW6mtkUnWpq3xTuyE21BjcDCsC0pO9GWkVtKX3yudzN2fE96sj3TRPqDKhMtm+TC7whPtGa0Qd0XN0/1P6ZqUMZiTHWej0ZV52loVHWefUZVNY+X4/nEtgaHZY1c/2RBXZvFC01urA2DCDFNcLQnZj4pHeGx1oyqT3dkzc9MBvUMDk0G9QxOTQb1aPeZzSLr2rKXPnNHz/iZO3rGz9zR6z2z0dFhS3RsxJgc1emSfVPh5nyMb4z2BnTJsXb+fohlCVX77ed5m3BQxXwBMKVuYPtPqZPucxnsR2iCY2/nPStmg0XaoqMtQfo7+yeDM7UhhbFW3+S73XmfnYxarIXHWvvAj7u5eru65HivTGzstuxYWybWtS451s5fAMYvmDW6/HSb95hBg4qXzqOpRoxn01QjZPh5jWeWJj79Bi+YZS2FmVYvnXEDatN3uGj2dVSmWzafibr8XG/NZ2VbY7pd8xmqy/faPObxJxaZJC9oSY63M2tztiTNg3QHtAxCdAe05q2TIa35VcGQltt/P9tsz88HszekZMfftbo+syTtSY+3V/ptGDipDqvMtnxRm5ePjUv9W0YULxghl5ZuHlGcXziOKM7vVY4o+v1vVBzyfTFHCD3p8W9uYHN3ZMfbSlQdgfmjvkGNy0fSBdrkQdr0Qdrug7S9B2n7D9IOHqQdPkhby7p5L/WHjTb0sOGGHjbe0MMGHHrYiEMPG3LoYWMOXTToxuDHlG7bOg+DoFl98kB9+kB994H63gP1/QfqBw/UDx+oPwdJ8w08dASihw5B9NAxiB46CNFDRyF66DBEDx2H6MKB2E1RWNbVNXF7/xvovVV6Hyq9D5c5wc+3YRKVOddGsyOSFfV53fwDdoWNn2pEcf5RRhSb/r+VOxH8GFdPOPkAH2SRIOlcc+mHGVWdf4hR1YnHsH+dNcz7zSqlBzxSq4H7PFirgebxfsvz3gP+eLdnuyy+9BFLtYc8ZLuJez1muwktLG+bqw1Ik7i6tmz/oKW6bnBg2BIdb8kswLgvPt7iLU+kB/P8BsewynzLZjGBY1rmB3YzLRgc3c20YHCIN9OCQeTXTAsGQWAzLXgTY4B/OV04BITGxGhlx1PGi0vGVktlvuXLxlZX6/KxNdLCBWNrpIULxtZICxeMrZEWLhhbIy14E2PAeGzpGuMjID3v+VGYSReMrZbKfMsG9tSIzuXjalD/glE1qH/BmBrUv2BEDepfMJ4G9b2Jr248mnSN8W9uku2vKzxUoOCUxSYHPi3JkXIktqz/YeCw1JUeLZxg1K9GsteOCv+ebaQR67Xwie/t6HzcG0RAtUVHkx8cIcXGFjyO5+LVBjUuDBsf1jaNHh/WNg0iH9Y2jSUf1jYNKR/W9rTYufM+voG58VlWsc9nYwd78r0v/Hco3GPr8ayTTfbFey2+r2bd2zTlM5O9IzvX1swOaE+6155Y7B8/zZ84N2IjLRgsW3TBkVZMgldbkmPtmJhnbVHz/ORDagYJyofUSKffZsusjuzIO2hyAaldq0uaLFUufCcj6qbvZkR9Hqcm1eeBalJ9Hqkm1b2BAT7H9y3JkY9rcKCrC460Arkkt/xk1lIjPJidrjjDLo1dsDmruC1rToSDegYUOKinZZyTdaG34rIRaPTFzfPPjakapKEbU52fHKOq8xNjVHV+UoyqNhOi9LI2e+1dYfNyZcOKBvXKhhXnX/iI4vzrHlGcf9kjivMOKSOKfrsAldEHakleVnLq4k8zpGVYZOrijzKkNf9FhrTmP8eQ1nxB1CGtQAP6XBi6BvZdJTZAFXDJyL5rBEdakSm8bGTQTCk50k6VqNakpVp2sk/YuE94sh1i3A6ZeTZ8wbNN94ka94nO9Ilc0CcymE/evuVRkc2V39EEL8qd3lEyS5j+/2/t3JobRbIt/IuIKINkTz9Wu249MTXlM/bpitMvFWkJS0wh0ACyWx0x//2QIMQlL2ttpIh+6Cjv9SF2bpJkZ+bOiYirkj4R9ftl9AGD9RgwTV7RIsuRpen4dr7oLam2QZKmh/rzsino6F8T6FTxQ3lAIEbzgEAM6AGh9/ZfcYY7t87I8LH+A9Gx9WZWAp5lO1tZ9VR9qaGhldJkvyCisbLqdREhVIljYGdlDPfEEglyuwSSRUw67h1CHO4OIY5yh3Ac3MSHXm9myRZ1h+5yuaeJNe08lxJ7z6XsP9Ca7SibQu23dZdAbF+y2Jt+GdoIygJ5dP5rdKtpeHqn8HO5QkF2iZ9MbZaxKvxcYrOMxd7PdCx5KVzMr9Ylps+pqodAL0WyVkd9YKeuKIF7VafKrBi9VUVSEYPxoaGTwpylNDLl607bZETdaZssMu8+KUtYMHts6/TByyFblxSpsXRymLNOJrZuVj0ITmKS1do6WW95ka53ak/BOmMnLVXFJg6SndrEFHBg775bZqPK1NgT0+mejOjUfZ/MuVcjU5N0Po+xmYBqKCV5ZuRAMePgSFMtOT3SVPfP3zouk00WrDPF920OjXlI7vBLJkjzqkrik4L/Ahrr7Nco4lWyj7mMlE3AH8PrFhOn8LrFxCG8bjHOVnnEOGnlEd9amwFvATOsZzWA7Agml1LmetnhSy6lzOn2Y5dW5ypXXaNwZxjv63FJ3XXXPcGZ8KMj/Hiu34dp7LkGODZwas53dS4p0c+5pLhlnVLctE7p0uI9qj6TaT7De+L6TE6pxHvi+kxO6cB7x+fBNJE4trXaGdYjtL9RRqZ8g9hkRGPYZERD2GQLlye5YLRrZjpgRlh69VKXOAK09s1bnq+6fQRn6zzzh5lLZAxOXIaB3ksDtioALd0SHAe3CMfBLcNxcBfCcfCbluPc+tu0esvljVmLuIipDWdHTK+9LGIMzsyIMTgzI8bgzIwYgzMzYgyOPWJOuXpmMbdb5o2asak0bqzqWZHjI8lix0eSRY+PJIsfH0kWQT7SKIbql9h/DsmaDJ2xtTdiRpbSgLGJZ8WLByQLFw9IFi0ekCxYPCBZrHhA41A5WejxMDlgrlWtSP/Tj3W7HdHFZILEhW6l/eC0qOM/eY1Fa+ddIn546gcQ41M/YHAa7HCCgXh0Lfb8ojanlljX5tQSS9ucWmJ1m1O7HO2f77bPYw8a1nxhD4eSKFPlUBJ1qhzK/hOlVKo/E4a4f4s9v8rDqSXWdzi1kSWD/pak6zR5icUf9ibh9EffRQi3OVUz0vV2giRlbycQ372AQKRmAAG/sRABr3hEhDtfW+P0s0t0SUvLktEAMKudZalpAJjVypZEtayRh4C+jTeq2eaoO0ndwcRlnFXNui/msUZivgY+ByIq4nMgoj4+ByKq5XOgYWb75SWuP11S9Zof0CzvwLYQzH3aZEw62yJjUtkWGZPGtsh6N+laP0UcU1u3J7b8G9uqI97WVh2xBtOqI3ZTWXXENiqrDvcudh1eNm/X/Q0WFbPrfsHFxBwN/26wzbk86MMbiip4yYtdCTY7j43pOHIIcSA5hDiSHEIcSg7h4FTzTRC3G1vxbvWRKb/rzCYjNp3ZZMSGa5tsMr/zcsh+4hkdbSWbwxkoyFmbgYKcpxkoiD53ouibfZc376zn9FCQO2atCn5ngUdNbDHwqIm9Bh419qFPjbtknxp3zD417p596n53k/6LLrlHdgKmOZ9ycUmJjItLSiRcXNLBxGY9um6Kfu9iXVXcn88d2/LpW6uOyNZadURy1qojcrFWHZF6tepwiNt1/QdNudPvrjR51aNuPdWoj2sugtcbMgfy2Oj/0eq/1fqHRv/7DbxCeOEVQniF6MIr9LkivcwZ7ORrTYzJjfrnnM9wB4SxqUFqduf4Ca2JuU/rdHAS2IrYWZlFck6HTd0w+5+nerzx+aygdzyfFfRW57OC3uN8VtCbm8+K0VLEqo6kG7QCsTEyD67+c58q/fx2W02b+l9+mENDssMZ7NAZL6citFzYdMbi6JkI+SCaCPlYmgj5kJoI+ciaCG/HHVOIOyazkZpexq9sTZzdCdr+ezarCaf/D4Nqe9g9ZypJx/0aYJ1s3JEWcjEWyqMrlMdVKI+oUB5LoTyKQkcHFRL9Uwi7kHBG9xSS3VM4o3sKue4plHRP4dzuKZzbPYVzu6dwbvcUzu2eQnv3FOHuKbJ3TxHuniK6QUbmuBlG5tGkt4qI3ipyd5wR13FG7tCNuKCN5OEayQPV9NJpSBMx454IPvzRjI4lIjuWaEbHEnEdSyTpWKK5HUs0t2OJ5nYs0dyOJZrbsURGx3IonlUWlFURx1VQ/iSXYzhVtPMRAbcCIuDmQATcLoiAGwgRcGICEXD+DRHwRAkiEFMmMKTe4SNYIIM4hQUy+nTJ8bDbHXUB2U0M5ktHlvQzYlPh58Kmws+CTYXj36bqc/eVqqo8D2J9zGpXQ+e8NKhb4UOmllrWj4b148T6MV0kNLpgM+4g+jKXiK/15wcQFf/8gMh+f7gUjWluvGnHJkWVlKAKhE0wz1NjsdBLYzFRGdEtJmojusWOYC9X23h9ACVxrIp5vpyohc6cqB3xpmvP8fejrf3RRmzdt9hbq5tWh73Rv5D9iktu8KmyyZ2h81fCaauhoZOCH/2RpZPTFZmCtfWm5pgYyoihk1jFakextKGTUsSvCYrfia2TtaoUxant3H7iavr2pk5SWwkfr4+02FuqahR137ZTZbBJXppSoesgVdm6PTGDflcjjOV6wz+DaER0z12NrhKSVxmLDHpTM4U6F21geKIExKFoFhVxIppFhV+SNhV+O9pU/Wvx5ZCmwVuyrraMjwxrvoaEQ0nUkHAoiRoSDmU/Ya/2s19MNqmVC19MU2NzQnRgAF9QU2MrbZ2/ZWmu1vWnQf0GB3UsbQLvb8SvP8OajiOXEseRSxlZ74EqBGkTeD3Tdu7oBWVVeLllU/au3OYV/4MHmlneN/Xh6LcJC1DaJd67pgtRukSADgY2U2MvjRhQmOZWIjugmNiag/3eEf2OasHmRafefwX/4MEu4T+6fHLiq8snJz5iffKF3y2h3C3hZW4JL3NLeJlb+Ek7r3zp92ok92p0mVejy7xqzjBZzRby+1pwHcBSTl5e5rHlZR5bXhaHS+PxXMdxPd5JXmNQju9k5T4B7k299kdPc0fBjST8RJlPTkyX+eTEpJlPTkyd+eRLy7lzTLVVw9r8PM9TVQTlsazH7qLzwX1CfgMRhhC7iTCE2FqEIcQ+IwwhNh1hCLEDCUOI7UgYQuxNwpBfztH4ba+3ZNZWe1EsumV0JEIEjkOIwFEIETgGIWI5Kk5blf1MF9VHu0RmcVRVbvV2ifN3UlvCQ5hesFPARfy5G6uET+D45EQWxycnUjk+OVET1CdfoqYjaqt6hBd6WFpxFUPmeltahxVDhmnIIkuakkySiHaIBElJL4DJTXoBTIrSCyC87AcMPJxUWVyWwea4E/nYKeO9jBCEnxGC8DRCEL5GiN7bKgmCIn/O63dS2dqu42ExJ36ypiapbD2BVVPY8MIec3/CyCvlc4QMhkjXMhjc7BRmMXQfnV9LvOk1fTDVTp85fty3pZaOkraAatFRXAyJO5+LIXGHdjGkvl0W7xbtBB9ZrMxiT3vMrcU+cmuxV9za3g/xuSydPkCViSSrgvaFT4294VNjf/jUC2PM1o78+WHwwF48QjO1/MDM1PLjMVPb+yFNsk1c6DMbqlw2jPIqad8wFOwlhoL9xVDw656hDOpfxGq1bZdClaK6ij4hXxsDQ4hKGRhC1M3AkIVZiLI/sts+vmFXtrA83y/YqYSqcuWXysti+jCC4pg+DFEbhMEQBUMYDFHvjMEQVc8YDM4LUpi/+UKrO+T5RhpYZ+ElYTWFzAqqKWRWSE0hswJqClkyng/nej68hufDa3g+vIbnw2t4PpR4Pprr+egano+u4fnoGp6PruH5SOL5xVzPL67h+cU1PL+4hucX1/D8QuL55VzPL6/h+eU1PL+8hueX1/D8UuL527mev72G52+v4fnba3j+9hqev5V4/m6u5++u4fm7a3j+7hqev7uG5+9smeXzkomVPo4dZ3Wn9pJUrkNL5W8d2sGC22avVrLSlipN1Z9Umtoh4u/KDyBuzQ8gktJ+QP99vFMb9VeS6ZRgVjVbwYjUsV1jJqjtdswxE34pn5pmMERemsEQSWkG0zfNV1XmWXEMPtcNqAvP3TMn27lEtMsAADsLAPpnM4v13G1erHVt6pIJPKuCvjOfGt+WT42b3qfG3bdP3ffb/9IHThwKVQdWV3kv+N7mprxe9eho32IG9jBmYD9jBvY2ZuC0EmbgnBJm4IQSZuB1ZphBFHcggowo70BQ7IdhCQ9mE/YsTqnsiCthn+KULjwukB4EdvkJYJcf/XX5mV/+F23fs+7zsuJixaIwxj/fa6uHxupBWz22P+IRN4BPSLcBAcHNQEBwSxAQ3CsTENwtE5BbS1i0qzBEcTGUCB4bj5x5Zjxy5oHxyJmj8TzywddlsdrW3fVqtKJsZkkYO0uXxbRfDm+UnVqb++OGFu3Kf+6T0iUTfFQCBPNZCRCR/T6r+M+qLdjG32Sv8fuQ2MprmPuJ+yJf6TAkdoQ6ZdQVxOx5bT0WC1t5LHa0L3esgl0CPNXPY+Llbh7hTM9ZIVIPWiFMCgZCFnan6fSAWgkeipPAUZmiHgXtVZGU3MlaDg3dAH49W7jCpWdLWLj0g0FfvG6LeuiTKqdbKITvoe8n1kPDOo0qHibrQGwX9A8mLAJ+KOEWEwMJt5gYRrjFwPu4i3DLLnKMsHuAiHlOcnQNa72pNGsObivbWjdE7LhEtJsAADsJAPo30c8seY1FR6FaFfSd+dT4tnxq3Ow+9WD7fpIdu5hYq8I/6Joa81ul7UJik7RdSGyPtguJDfp2If7ecwhvra5Ok822on3dWM9y9lAp8/ZQKXP3UCnz91Apc/hQ2Xt8r4uqNstdBU+8S8RvYPcDiC3sfgCxid0PILax+wGDA9PqAUyhSxAcEm42b2oumF5zSJkpNYe0fzFs1X5/DLb1qHmtjiWuS2WxNzfl14O2uNmvU66S4CURHzzLAM5X3Wdgkz4PCx2waA4scsAWc2CLFlY79z5Vx11e7LdJueNmK60KOvx8ahyBPjV+nH1qy6YiyXJ9l0i+vWjuMn0AEGw0Qsvz+82lbddWf7Ht4qrQ++wlu3Pt4hm7dL0gyW5dL0iya9cLGs30rN/y4qf+qLgwq/p9gDpNrgVP0/qD+nrNWa3dIXG4f7ZLjC7aNMMpQoeGYOsbFaK1RDIT5pZT02BuOTUH5pYzKX2PfOnxKl03zy8l2q/dBiS8Risi6ERNPZeIoG/aFTI3Qn4nuyAGJ4g5cThBRPg+w3n3GV5+n+Hl9xny9xnNu8/o8vuMLr/PiL/Pxbz7XFx+n4vL73PB3+dy3n0uL7/P5eX3uTTu84seknXv8+B7Um2D+0NR5kXwXu+Zh8NTQm9WLDrUY5l2QepWJUVZHdO45IZ4bqFgeAchzNAOQphhHYQwBVkgpH83J1lZqU2hdl1AsHVSfUJzosltHM69Sii5SjT3KpHkKou5V1lIriKokPvbmTJdbXu+0GP9/XCs4jS1Dee9l/Eq6YePoeCnj6Hgx4+h4OePoeBMKUPBa0QZCl4lylDwOlGGQqwUpcKOWCtKcYjjwCiOK4JvZCF844rhG1kQ37ii+EYWxjeuOL6RBfJNn//fxFlctJuRVDJY1C6sXvi5x7z/Lfh+xhiJis/6719QbuJsZXTUzV9+yyoG0JjZCf/IN3mJCY2Z4zfohQ0EorWj+2dTg3tjUxONf+t9vj/iX6qt7Pf6lOcpcauNmexOhxLyRoeS6X2qkmmSxsx+p917+wkuVjPNvUSaJfPfWER6cCzC72mLCL+WLSL8FraIbiehyKayDGthYJpKNj5N5SRMP+E01sDOCKvXpDyoNFjHZbLJzl+YBdlT/96qP7TqbttGYafrVTBoka5N4P/N3Bpdu4RuRa8cN6VX3rfnyJt6lRm1dNOpMvw2tXwPc+9WBWwPIrNql8Bf/CGuVJIGvyfxm+h3D3R0m2MGbnjMwB0mZuD+EzNwd4oZ+JMGM+7ObZ9nqd5P+6aq1Zauz+cS0a0OALjJAQC3NwD004K/FvGbHi904/LT2lTq+x9oaXdxHOw1joOdx3EW44TpyehNpzu/Jut/54cii4/tIDj4+PISg/XaLMTo3r4km22zkipoEe1EOteCQEu3IMfBLchxcAtynL4FH9XuUNRfm58OadoeKnbOk5GpMALAZ8R4GJEY42FEfoyH9c4tD8WLPqotT9Pguf7QWTdLFo7iY3gBpm9MbXief9AfzP6mM8yNR2xsciPA3QBWKGCFgBUJWBFgLQQsM3e9fBfU/z3u06QKHtsw6frS9q3tpUM1/SCxJPwUsST8CLGk/vn5pKfuHobL686uf8SDGaimvcmSsDdZEvYmSxp4U0+OxY/Ny+FDskmqeij5VRU/40qnJ6nOnkPwfpXgCOdKcNFgGkgVdW/6z0b30BUF+iPPd6eBBxNsLEQwOSQCMvNEIiAzZSQCLgbVmo95tg6qbRy85skaFGge2Zqdd7NBPfh4rmfwcFoBTi2yhWpJc1Ekqp0oEtVAFGm0VDLoK793i+lXjCv9UrPd4iLOkurYDlObpRKf8tWhZD4YgJZvM4pDtBjFIdqL4hCzsBSnXwjxTf38XOSvesVKJvsO9ir5Y9AICnESGkEhDkMjKP3z8jnu1h6fLE+pXMp5SMwnyTkQkTPnQP2r836br/JmzPGrKs7di3VU4t/swHP4LRBiJrExQswktkuImYMhXXpI1sGHY6Z2+nyd7rXLHKnnl/JDOAZDDN0YDDEoZjCD5Mc+rwbJki9t2Y+2w2xIzMuIY1i+OpOqPDd39xNFvS+H4F+HEhzxVpTgiJejBDfI8saqWJdN2qZulHXdKm1KUZbkoil85ldIJHLAQiKRDRYS8chESuzHKO0C2ngdPB33cfuo3XN7xrxKur0YCm4jhjJYjpwXebnK9/EoO/5Hvk7UiuvkKQKf6xbQiIy3gEbkvQU0HKcSGp76k9DwJKCEhtc3Smh4naOERqx3FIUvse5RxCPWP4p44fm5/t/iWWXBt9c4Cx6Sv/5Sopc+EtNPMwnCDzIJws8wCcKPLwka1AXI6z83p+UG9esoWx0v3Sj6tQV+r4HvW6Bzu6hpCpdk2iXGENM0+7VQ2boUslsRQccLYhwagv3Q1uSX/vZOxtf4RgiiyjdC4CcBIhYeVzULIOc6bCwmGuYxLl6TVSy9TicjrnBP1Hxzqlz8sVvBzKZDIw0qh56OKIeeDieHfgF8E87wTXihb8ILfRNe6JuQ9E00wzfRhb6JLvRNdKFvItI3ixm+WVzom8WFvllc6JuF4ZsP+aYeCsZppdeWHnQZnknuwuuloXqioz2FGdhbmIE9hhl4ZIcZ/aDu9zjNV3oa5GMab3Rd/MHaHcL1WM6vhWVRxJJYFkWsjGVRxAJZFtW3Tv3EvMRlmeSZSoOnQiWZnqSXfAlRBLqNJDTcTBIabikJDTeWhLac9vGDYyZGc0RMX+/SSvt8wKH7fsCh3wGAMzhxOe+KB7VFxKYfmexBywDTT8+dDR8bw69o/4hNYIygp0bwc9UmgNT7/JChbRAODWR/39bfB9s8B9lTtwxe4f1Oz8An4LPIqeInOQGBmNIEBGICExAWTi89pCqTeahRQO/TG9N8wtltMGu7GgGRt4QF4m6Mv+dJJnKWFsCmIPbX2SWWFUPqRa95fGyqvnETpFaJYH2QR84sC/LImdVAHjmzCMgj71/rH5Ki/m7Ji6Ct0L4p1H47HFtTfmYh/CeLDEh8v8iAxMeMDEh82ciAeNZJCMQTT0IgnnsSAvH0kxBIzEBJI/vdYGFqnKaqNs0PaRncd6fMyr5BWYhgmaoIyKxWFQGZRasi4CDRciyrfJ+oLPikyq1eNtVMXFBZFq+U77UYDNFXMRiih2IwvfuKOIvf1HMaB7p8yOY49+PkX2fOx5bjnPgyLOHniVVhDBQMK/iBYlVgLp7vsksw+TFPD83xEDL6WSY4nBQgmLNJASJy3+dTvNpmeZpvjrIb7XXYl7/W//CSVEJXdirMpybanKr5LSWel0QETzsxU3AukXn24zaO6649eKrfrWXw/lDlu7zp48+L+3CPTTL4EyFFPOJwSBGPOCdSxFuYy+bu813zhZXnmazUHUWQL6MjaILldAStj+6vdeehgsdVEnxKRJMxPiGfw8QQIoGJIUT2EkOGe7ayKg82RbIOqkK9xml3lIlsXcyvDeazxjy1GMeRYC5DsEzXLhKsyvUCmEW4XkDkub+v8Igvh+aCu/sqOtzLr+/vLf7zP4ekeQa7s7xW6ue57O68wPl4ZnYnyt1rZlf0yxFFlMr7CygC3QISGm4PCQ13BxLawuLhkTUOZp9whj+dEIkbnRCJ95wQnAMiIDjvQ0BwroeA9KWGPumtcu+LapAjOVK19nxCfgcShhD7jzCE2H2EITgGCAiOAQKCY4CA3A3y/uUuWQXf1seyjI/BeWQmmdAnGYKJGQmPmaOR8IandSVFUKq0HpwGTV3yta7HqpeLX7bI+IvmPjbcLwOqM+EytEcpkYmtWXup/ztOg0yNfbRuYShR9tOp8vGfYrVjqdqW+a3SX8nvuHFqif01Ti2xm8apXdj8wFdqdYl8XmbeJKb5HB9L3xpOqcjD0jeEU0rsRHJJiW1HLumd/SnrZ55lYWEq/U8zOdPv0MyJklnz+359ZLs3YurcsDZ89Ulf7LUexm31uRg7VY62Kj2ookpWaf3Vn+VvzG5nOY4fx81FE6O7uWhizDcX3Xekf+htoA95klX18OCUO/1QJNlP4Sy8gEM3ipyJW0POxM0gZy4GK1GTcqcKFfw9fovTolmgvReuRCUIgpWoPI1ZicrTmJWoPI1ZicrT+iUr3Rrjh7h4OexieXMxAD4FwcOIVAQPI1ISPIxITfAwIkXBw4hUBQ/DS1IEMLwcRQD75Rzdx3yjgrI6rJN8cLbkvLn4/9Osx5bVVZd3fx4OreFU/NTYGHgMDeDX5tTYS8Pfm4a1l3efqhKdVWGx9zKpSWebwEulR7suEaCDL+OpsZf2P4ccxKlh7eXV74pVkm1o4sne3/KV4lu9Ul4WMVo3zQ3i0zYOPm/zsmp2OaWD2n2SFxxNod9yUmJf7GClivVeHeth2ad6dBav9KD4uIv7vRLUHdEU+o6kRPzylhLxG1xK7Me039J1s4IueFJVledd1DWysh4R+6v6ATFf2I8DEbX9OBBR3o8D4fEQCcJjIRLUHb3z3//+P5bWNZ0=','off'),(194,'rs-templates-counter','2','off'),(195,'revslider_table_version','1.0.13','auto'),(196,'revslider-global-settings','{\"getTec\":{\"engine\":\"SR7\"},\"version\":\"6.2.0\",\"tracking\":\"enabled\"}','auto'),(199,'action_scheduler_hybrid_store_demarkation','9','auto'),(200,'schema-ActionScheduler_StoreSchema','7.0.1729264730','auto'),(201,'schema-ActionScheduler_LoggerSchema','3.0.1729264730','auto'),(204,'woocommerce_newly_installed','no','auto'),(205,'woocommerce_schema_version','920','auto'),(206,'woocommerce_store_address','','on'),(207,'woocommerce_store_address_2','','on'),(208,'woocommerce_store_city','','on'),(209,'woocommerce_default_country','US:CA','on'),(210,'woocommerce_store_postcode','','on'),(211,'woocommerce_allowed_countries','all','on'),(212,'woocommerce_all_except_countries','','on'),(213,'woocommerce_specific_allowed_countries','','on'),(214,'woocommerce_ship_to_countries','','on'),(215,'woocommerce_specific_ship_to_countries','','on'),(216,'woocommerce_default_customer_address','base','on'),(217,'woocommerce_calc_taxes','no','on'),(218,'woocommerce_enable_coupons','yes','on'),(219,'woocommerce_calc_discounts_sequentially','no','off'),(220,'woocommerce_currency','USD','on'),(221,'woocommerce_currency_pos','left','on'),(222,'woocommerce_price_thousand_sep',',','on'),(223,'woocommerce_price_decimal_sep','.','on'),(224,'woocommerce_price_num_decimals','2','on'),(225,'woocommerce_shop_page_id','10','on'),(226,'woocommerce_cart_redirect_after_add','no','on'),(227,'woocommerce_enable_ajax_add_to_cart','yes','on'),(228,'woocommerce_placeholder_image','9','on'),(229,'woocommerce_weight_unit','kg','on'),(230,'woocommerce_dimension_unit','cm','on'),(231,'woocommerce_enable_reviews','yes','on'),(232,'woocommerce_review_rating_verification_label','yes','off'),(233,'woocommerce_review_rating_verification_required','no','off'),(234,'woocommerce_enable_review_rating','yes','on'),(235,'woocommerce_review_rating_required','yes','off'),(236,'woocommerce_manage_stock','yes','on'),(237,'woocommerce_hold_stock_minutes','60','off'),(238,'woocommerce_notify_low_stock','yes','off'),(239,'woocommerce_notify_no_stock','yes','off'),(240,'woocommerce_stock_email_recipient','vannguyen.tran.164@gmail.com','off'),(241,'woocommerce_notify_low_stock_amount','2','off'),(242,'woocommerce_notify_no_stock_amount','0','on'),(243,'woocommerce_hide_out_of_stock_items','no','on'),(244,'woocommerce_stock_format','','on'),(245,'woocommerce_file_download_method','force','off'),(246,'woocommerce_downloads_redirect_fallback_allowed','no','off'),(247,'woocommerce_downloads_require_login','no','off'),(248,'woocommerce_downloads_grant_access_after_payment','yes','off'),(249,'woocommerce_downloads_deliver_inline','','off'),(250,'woocommerce_downloads_add_hash_to_filename','yes','on'),(251,'woocommerce_downloads_count_partial','yes','on'),(253,'woocommerce_attribute_lookup_direct_updates','no','on'),(254,'woocommerce_attribute_lookup_optimized_updates','no','on'),(255,'woocommerce_product_match_featured_image_by_sku','no','on'),(256,'woocommerce_prices_include_tax','no','on'),(257,'woocommerce_tax_based_on','shipping','on'),(258,'woocommerce_shipping_tax_class','inherit','on'),(259,'woocommerce_tax_round_at_subtotal','no','on'),(260,'woocommerce_tax_classes','','on'),(261,'woocommerce_tax_display_shop','excl','on'),(262,'woocommerce_tax_display_cart','excl','on'),(263,'woocommerce_price_display_suffix','','on'),(264,'woocommerce_tax_total_display','itemized','off'),(265,'woocommerce_enable_shipping_calc','yes','off'),(266,'woocommerce_shipping_cost_requires_address','no','on'),(267,'woocommerce_ship_to_destination','billing','off'),(268,'woocommerce_shipping_debug_mode','no','on'),(269,'woocommerce_enable_guest_checkout','yes','off'),(270,'woocommerce_enable_checkout_login_reminder','no','off'),(271,'woocommerce_enable_signup_and_login_from_checkout','no','off'),(272,'woocommerce_enable_myaccount_registration','no','off'),(273,'woocommerce_registration_generate_username','yes','off'),(274,'woocommerce_registration_generate_password','yes','off'),(275,'woocommerce_erasure_request_removes_order_data','no','off'),(276,'woocommerce_erasure_request_removes_download_data','no','off'),(277,'woocommerce_allow_bulk_remove_personal_data','no','off'),(278,'woocommerce_registration_privacy_policy_text','Your personal data will be used to support your experience throughout this website, to manage access to your account, and for other purposes described in our [privacy_policy].','on'),(279,'woocommerce_checkout_privacy_policy_text','Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our [privacy_policy].','on'),(280,'woocommerce_delete_inactive_accounts','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','off'),(281,'woocommerce_trash_pending_orders','','off'),(282,'woocommerce_trash_failed_orders','','off'),(283,'woocommerce_trash_cancelled_orders','','off'),(284,'woocommerce_anonymize_completed_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','off'),(285,'woocommerce_email_from_name','fe2tech','off'),(286,'woocommerce_email_from_address','vannguyen.tran.164@gmail.com','off'),(287,'woocommerce_email_header_image','','off'),(288,'woocommerce_email_base_color','#7f54b3','off'),(289,'woocommerce_email_background_color','#f7f7f7','off'),(290,'woocommerce_email_body_background_color','#ffffff','off'),(291,'woocommerce_email_text_color','#3c3c3c','off'),(292,'woocommerce_email_footer_text','{site_title} &mdash; Built with {WooCommerce}','off'),(293,'woocommerce_email_footer_text_color','#3c3c3c','off'),(294,'woocommerce_merchant_email_notifications','no','off'),(295,'woocommerce_cart_page_id','11','off'),(296,'woocommerce_checkout_page_id','12','off'),(297,'woocommerce_myaccount_page_id','13','off'),(298,'woocommerce_terms_page_id','','off'),(299,'woocommerce_force_ssl_checkout','no','on'),(300,'woocommerce_unforce_ssl_checkout','no','on'),(301,'woocommerce_checkout_pay_endpoint','order-pay','on'),(302,'woocommerce_checkout_order_received_endpoint','order-received','on'),(303,'woocommerce_myaccount_add_payment_method_endpoint','add-payment-method','on'),(304,'woocommerce_myaccount_delete_payment_method_endpoint','delete-payment-method','on'),(305,'woocommerce_myaccount_set_default_payment_method_endpoint','set-default-payment-method','on'),(306,'woocommerce_myaccount_orders_endpoint','orders','on'),(307,'woocommerce_myaccount_view_order_endpoint','view-order','on'),(308,'woocommerce_myaccount_downloads_endpoint','downloads','on'),(309,'woocommerce_myaccount_edit_account_endpoint','edit-account','on'),(310,'woocommerce_myaccount_edit_address_endpoint','edit-address','on'),(311,'woocommerce_myaccount_payment_methods_endpoint','payment-methods','on'),(312,'woocommerce_myaccount_lost_password_endpoint','lost-password','on'),(313,'woocommerce_logout_endpoint','customer-logout','on'),(314,'woocommerce_api_enabled','no','on'),(315,'woocommerce_allow_tracking','no','off'),(316,'woocommerce_show_marketplace_suggestions','yes','off'),(317,'woocommerce_custom_orders_table_enabled','yes','on'),(318,'woocommerce_analytics_enabled','yes','on'),(319,'woocommerce_feature_order_attribution_enabled','yes','on'),(320,'woocommerce_feature_product_block_editor_enabled','no','on'),(321,'woocommerce_hpos_fts_index_enabled','no','on'),(322,'woocommerce_single_image_width','600','on'),(323,'woocommerce_thumbnail_image_width','300','on'),(324,'woocommerce_checkout_highlight_required_fields','yes','on'),(325,'woocommerce_demo_store','no','off'),(326,'wc_downloads_approved_directories_mode','enabled','auto'),(327,'woocommerce_permalinks','a:5:{s:12:\"product_base\";s:7:\"product\";s:13:\"category_base\";s:16:\"product-category\";s:8:\"tag_base\";s:11:\"product-tag\";s:14:\"attribute_base\";s:0:\"\";s:22:\"use_verbose_page_rules\";b:0;}','auto'),(328,'current_theme_supports_woocommerce','yes','auto'),(329,'woocommerce_queue_flush_rewrite_rules','no','auto'),(330,'_transient_wc_attribute_taxonomies','a:0:{}','on'),(332,'default_product_cat','15','auto'),(334,'woocommerce_refund_returns_page_id','14','auto'),(337,'woocommerce_paypal_settings','a:23:{s:7:\"enabled\";s:2:\"no\";s:5:\"title\";s:6:\"PayPal\";s:11:\"description\";s:85:\"Pay via PayPal; you can pay with your credit card if you don\'t have a PayPal account.\";s:5:\"email\";s:28:\"vannguyen.tran.164@gmail.com\";s:8:\"advanced\";s:0:\"\";s:8:\"testmode\";s:2:\"no\";s:5:\"debug\";s:2:\"no\";s:16:\"ipn_notification\";s:3:\"yes\";s:14:\"receiver_email\";s:28:\"vannguyen.tran.164@gmail.com\";s:14:\"identity_token\";s:0:\"\";s:14:\"invoice_prefix\";s:3:\"WC-\";s:13:\"send_shipping\";s:3:\"yes\";s:16:\"address_override\";s:2:\"no\";s:13:\"paymentaction\";s:4:\"sale\";s:9:\"image_url\";s:0:\"\";s:11:\"api_details\";s:0:\"\";s:12:\"api_username\";s:0:\"\";s:12:\"api_password\";s:0:\"\";s:13:\"api_signature\";s:0:\"\";s:20:\"sandbox_api_username\";s:0:\"\";s:20:\"sandbox_api_password\";s:0:\"\";s:21:\"sandbox_api_signature\";s:0:\"\";s:12:\"_should_load\";s:2:\"no\";}','on'),(338,'woocommerce_version','9.3.3','auto'),(339,'woocommerce_db_version','9.3.3','auto'),(340,'woocommerce_store_id','60c62bea-3762-4874-8427-6efe49ac4977','auto'),(341,'woocommerce_admin_install_timestamp','1729264733','auto'),(342,'woocommerce_inbox_variant_assignment','9','auto'),(343,'woocommerce_remote_variant_assignment','51','auto'),(344,'woocommerce_attribute_lookup_enabled','no','auto'),(348,'yit_recently_activated','a:2:{i:0;s:36:\"yith-woocommerce-quick-view/init.php\";i:1;s:34:\"yith-woocommerce-wishlist/init.php\";}','auto'),(349,'recently_activated','a:1:{s:35:\"wpcf7-recaptcha/wpcf7-recaptcha.php\";i:1735095144;}','auto'),(350,'_transient_jetpack_autoloader_plugin_paths','a:0:{}','on'),(351,'action_scheduler_lock_async-request-runner','6819bc01508453.50473222|1746517053','no'),(352,'woocommerce_admin_notices','a:1:{i:0;s:20:\"no_secure_connection\";}','auto'),(353,'revslider_update_version','6.6.21','auto'),(354,'wc_blocks_version','11.8.0-dev','auto'),(355,'elementor_version','3.24.7','auto'),(356,'elementor_install_history','a:1:{s:6:\"3.24.7\";i:1729264737;}','auto'),(357,'elementor_events_db_version','1.0.0','off'),(358,'woocommerce_maxmind_geolocation_settings','a:1:{s:15:\"database_prefix\";s:32:\"TvCLGcIAWmvdkQiQVD3LUV9JxqEMKbjz\";}','on'),(359,'_transient_woocommerce_webhook_ids_status_active','a:0:{}','on'),(360,'widget_newsletterwidget','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(361,'widget_newsletterwidgetminimal','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(362,'widget_rev-slider-widget','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(363,'widget_woocommerce_widget_cart','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(364,'widget_woocommerce_layered_nav_filters','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(365,'widget_woocommerce_layered_nav','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(366,'widget_woocommerce_price_filter','a:2:{i:1;a:3:{s:5:\"title\";s:15:\"Filter by price\";s:8:\"el_class\";s:0:\"\";s:10:\"hide_title\";b:0;}s:12:\"_multiwidget\";i:1;}','auto'),(367,'widget_woocommerce_product_categories','a:2:{i:1;a:10:{s:5:\"title\";s:18:\"Product categories\";s:7:\"orderby\";s:4:\"name\";s:8:\"dropdown\";i:0;s:5:\"count\";i:1;s:12:\"hierarchical\";i:1;s:18:\"show_children_only\";i:0;s:10:\"hide_empty\";i:0;s:9:\"max_depth\";s:0:\"\";s:8:\"el_class\";s:0:\"\";s:10:\"hide_title\";b:0;}s:12:\"_multiwidget\";i:1;}','auto'),(368,'widget_woocommerce_product_search','a:2:{i:1;a:3:{s:5:\"title\";s:6:\"Search\";s:8:\"el_class\";s:0:\"\";s:10:\"hide_title\";b:0;}s:12:\"_multiwidget\";i:1;}','auto'),(369,'widget_woocommerce_product_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(370,'widget_woocommerce_products','a:2:{i:1;a:9:{s:5:\"title\";s:15:\"Recent Products\";s:6:\"number\";i:3;s:4:\"show\";s:0:\"\";s:7:\"orderby\";s:4:\"date\";s:5:\"order\";s:4:\"desc\";s:9:\"hide_free\";i:0;s:11:\"show_hidden\";i:0;s:8:\"el_class\";s:0:\"\";s:10:\"hide_title\";b:0;}s:12:\"_multiwidget\";i:1;}','auto'),(371,'widget_woocommerce_recently_viewed_products','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(372,'widget_woocommerce_top_rated_products','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(373,'widget_woocommerce_recent_reviews','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(374,'widget_woocommerce_rating_filter','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(375,'widget_ct_recent_posts','a:3:{i:1;a:5:{s:5:\"title\";s:11:\"Recent News\";s:6:\"number\";i:3;s:7:\"post_in\";s:6:\"recent\";s:8:\"el_class\";s:0:\"\";s:10:\"hide_title\";b:0;}i:2;a:6:{s:5:\"title\";s:11:\"Recent News\";s:6:\"number\";i:3;s:7:\"post_in\";s:6:\"recent\";s:6:\"layout\";s:0:\"\";s:8:\"el_class\";s:0:\"\";s:10:\"hide_title\";b:0;}s:12:\"_multiwidget\";i:1;}','auto'),(376,'widget_cs_social_widget','a:2:{i:1;a:16:{s:5:\"title\";b:0;s:13:\"link_facebook\";s:1:\"#\";s:8:\"link_rss\";s:0:\"\";s:12:\"link_youtube\";s:0:\"\";s:12:\"link_twitter\";s:1:\"#\";s:11:\"link_google\";s:0:\"\";s:10:\"link_skype\";s:0:\"\";s:13:\"link_dribbble\";s:1:\"#\";s:11:\"link_flickr\";s:0:\"\";s:13:\"link_linkedin\";s:0:\"\";s:10:\"link_vimeo\";s:0:\"\";s:14:\"link_pinterest\";s:0:\"\";s:14:\"link_bloglovin\";s:0:\"\";s:14:\"link_instagram\";s:1:\"#\";s:8:\"el_class\";s:0:\"\";s:10:\"hide_title\";b:0;}s:12:\"_multiwidget\";i:1;}','auto'),(377,'widget_getintouch_widget','a:2:{i:1;a:13:{s:5:\"title\";b:0;s:12:\"address_text\";s:20:\"Melbourne, Australia\";s:10:\"phone_text\";s:16:\"(Sat - Thursday)\";s:10:\"email_text\";s:0:\"\";s:6:\"styles\";s:6:\"style1\";s:8:\"el_class\";s:0:\"\";s:10:\"hide_title\";b:0;s:9:\"time_text\";s:14:\"(10am - 05 pm)\";s:13:\"address_label\";s:18:\"380 St Kilda Road,\";s:11:\"phone_label\";s:22:\"Call Us: (210) 123-451\";s:10:\"time_label\";s:15:\"Monday - Friday\";s:8:\"btn_text\";s:10:\"Contact us\";s:8:\"btn_link\";s:42:\"https://demo.casethemes.net/contio/contact\";}s:12:\"_multiwidget\";i:1;}','auto'),(378,'widget_newsletter_widget','a:3:{i:1;a:7:{s:5:\"title\";s:9:\"Subscribe\";s:12:\"introduction\";s:0:\"\";s:11:\"email_label\";s:18:\"Your mail address*\";s:13:\"contact_email\";s:0:\"\";s:13:\"contact_phone\";s:0:\"\";s:8:\"el_class\";s:0:\"\";s:10:\"hide_title\";b:0;}i:2;a:7:{s:5:\"title\";s:9:\"Subscribe\";s:12:\"introduction\";s:0:\"\";s:11:\"email_label\";s:18:\"Your mail address*\";s:13:\"contact_email\";s:0:\"\";s:13:\"contact_phone\";s:0:\"\";s:8:\"el_class\";s:0:\"\";s:10:\"hide_title\";b:0;}s:12:\"_multiwidget\";i:1;}','auto'),(381,'yith_wcwl_wishlist_page_id','15','auto'),(382,'yith_wcwl_version','3.38.0','auto'),(383,'yith_wcwl_db_version','3.0.1','auto'),(387,'newsletter_diagnostic_cron_calls','a:100:{i:0;i:1746447815;i:1;i:1746449795;i:2;i:1746449888;i:3;i:1746450856;i:4;i:1746454752;i:5;i:1746454762;i:6;i:1746454865;i:7;i:1746454906;i:8;i:1746455249;i:9;i:1746455252;i:10;i:1746455648;i:11;i:1746456486;i:12;i:1746459710;i:13;i:1746461153;i:14;i:1746461290;i:15;i:1746461323;i:16;i:1746462173;i:17;i:1746462961;i:18;i:1746464983;i:19;i:1746465351;i:20;i:1746465894;i:21;i:1746466041;i:22;i:1746466209;i:23;i:1746466540;i:24;i:1746469858;i:25;i:1746470347;i:26;i:1746474332;i:27;i:1746474512;i:28;i:1746476919;i:29;i:1746477953;i:30;i:1746477991;i:31;i:1746478051;i:32;i:1746478502;i:33;i:1746479408;i:34;i:1746480647;i:35;i:1746481218;i:36;i:1746481960;i:37;i:1746482038;i:38;i:1746482322;i:39;i:1746482647;i:40;i:1746482658;i:41;i:1746482671;i:42;i:1746482736;i:43;i:1746482900;i:44;i:1746483600;i:45;i:1746483717;i:46;i:1746484070;i:47;i:1746484348;i:48;i:1746484725;i:49;i:1746484906;i:50;i:1746485177;i:51;i:1746485772;i:52;i:1746485954;i:53;i:1746486085;i:54;i:1746486203;i:55;i:1746486376;i:56;i:1746486592;i:57;i:1746487197;i:58;i:1746488535;i:59;i:1746488812;i:60;i:1746488966;i:61;i:1746489584;i:62;i:1746490143;i:63;i:1746490282;i:64;i:1746490710;i:65;i:1746490823;i:66;i:1746490832;i:67;i:1746490906;i:68;i:1746491858;i:69;i:1746491912;i:70;i:1746492623;i:71;i:1746492693;i:72;i:1746493060;i:73;i:1746493224;i:74;i:1746493474;i:75;i:1746500270;i:76;i:1746500894;i:77;i:1746501148;i:78;i:1746501151;i:79;i:1746502518;i:80;i:1746502930;i:81;i:1746506917;i:82;i:1746507164;i:83;i:1746508870;i:84;i:1746510289;i:85;i:1746511317;i:86;i:1746511785;i:87;i:1746512061;i:88;i:1746513992;i:89;i:1746514547;i:90;i:1746516786;i:91;i:1746516895;i:92;i:1746516932;i:93;i:1746516993;i:94;i:1746517140;i:95;i:1746518515;i:96;i:1746518595;i:97;i:1746518595;i:98;i:1746518675;i:99;i:1746518770;}','off'),(391,'wcpay_was_in_use','no','auto'),(394,'revslider-update-check','1735091868','auto'),(399,'revslider_update_info','O:8:\"stdClass\":0:{}','auto'),(407,'wc_remote_inbox_notifications_stored_state','O:8:\"stdClass\":2:{s:22:\"there_were_no_products\";b:1;s:22:\"there_are_now_products\";b:1;}','off'),(408,'jetpack_options','a:1:{s:14:\"last_heartbeat\";i:1729477459;}','auto'),(411,'rs_cache_overlay','6.7.20','auto'),(412,'wc_admin_show_legacy_coupon_menu','0','auto'),(413,'woocommerce_custom_orders_table_created','yes','auto'),(414,'woocommerce_coming_soon','no','auto'),(415,'woocommerce_initial_installed_version','9.3.3','off'),(421,'wc_blocks_db_schema_version','260','auto'),(422,'ct_theme_options','a:120:{s:8:\"last_tab\";s:0:\"\";s:7:\"favicon\";a:5:{s:3:\"url\";s:55:\"https://fe2tech.com/wp-content/uploads/2024/11/logo.jpg\";s:2:\"id\";s:4:\"2547\";s:6:\"height\";s:3:\"208\";s:5:\"width\";s:3:\"208\";s:9:\"thumbnail\";s:55:\"https://fe2tech.com/wp-content/uploads/2024/11/logo.jpg\";}s:8:\"dev_mode\";s:1:\"0\";s:17:\"show_page_loading\";s:1:\"1\";s:12:\"loading_type\";s:6:\"style3\";s:13:\"header_layout\";s:1:\"2\";s:9:\"sticky_on\";s:1:\"1\";s:11:\"search_icon\";s:1:\"0\";s:9:\"cart_icon\";s:1:\"0\";s:19:\"hidden_sidebar_icon\";s:1:\"0\";s:21:\"h_social_facebook_url\";s:1:\"#\";s:20:\"h_social_twitter_url\";s:0:\"\";s:20:\"h_social_inkedin_url\";s:1:\"#\";s:22:\"h_social_instagram_url\";s:0:\"\";s:19:\"h_social_google_url\";s:0:\"\";s:18:\"h_social_skype_url\";s:0:\"\";s:22:\"h_social_pinterest_url\";s:0:\"\";s:18:\"h_social_vimeo_url\";s:0:\"\";s:20:\"h_social_youtube_url\";s:0:\"\";s:17:\"h_social_yelp_url\";s:0:\"\";s:19:\"h_social_tumblr_url\";s:0:\"\";s:24:\"h_social_tripadvisor_url\";s:0:\"\";s:12:\"h_time_label\";s:4:\"Time\";s:6:\"h_time\";s:17:\": Monday - Sunday\";s:13:\"h_phone_label\";s:22:\"Call Us: 0968 86 03 86\";s:7:\"h_phone\";s:11:\"(Mon - Sun)\";s:15:\"h_address_label\";s:89:\"Factory 1: Khac Niem Industrial Cluster, Khac Niem Ward, Bac Ninh City, Bac Ninh Province\";s:9:\"h_address\";s:90:\"Factory 2: 176/9 Nguyen Thi Tuoi, Tan Phuoc Quarter, Tan Binh Ward, Di An City, Binh Duong\";s:10:\"logo_light\";a:5:{s:3:\"url\";s:55:\"https://fe2tech.com/wp-content/uploads/2024/12/logo.jpg\";s:2:\"id\";s:4:\"2748\";s:6:\"height\";s:3:\"597\";s:5:\"width\";s:3:\"597\";s:9:\"thumbnail\";s:55:\"https://fe2tech.com/wp-content/uploads/2024/12/logo.jpg\";}s:4:\"logo\";a:5:{s:3:\"url\";s:55:\"https://fe2tech.com/wp-content/uploads/2024/12/logo.jpg\";s:2:\"id\";s:4:\"2746\";s:6:\"height\";s:4:\"1374\";s:5:\"width\";s:4:\"1375\";s:9:\"thumbnail\";s:55:\"https://fe2tech.com/wp-content/uploads/2024/12/logo.jpg\";}s:11:\"logo_mobile\";a:5:{s:3:\"url\";s:55:\"https://fe2tech.com/wp-content/uploads/2024/12/logo.jpg\";s:2:\"id\";s:4:\"2746\";s:6:\"height\";s:4:\"1374\";s:5:\"width\";s:4:\"1375\";s:9:\"thumbnail\";s:55:\"https://fe2tech.com/wp-content/uploads/2024/12/logo.jpg\";}s:9:\"logo_maxh\";a:2:{s:6:\"height\";s:0:\"\";s:5:\"units\";s:2:\"px\";}s:12:\"logo_maxh_sm\";a:2:{s:6:\"height\";s:0:\"\";s:5:\"units\";s:2:\"px\";}s:9:\"font_menu\";a:7:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";}s:15:\"main_menu_color\";a:3:{s:7:\"regular\";s:0:\"\";s:5:\"hover\";s:0:\"\";s:6:\"active\";s:0:\"\";}s:12:\"menu_item_lh\";s:0:\"\";s:17:\"sticky_menu_color\";a:3:{s:7:\"regular\";s:0:\"\";s:5:\"hover\";s:0:\"\";s:6:\"active\";s:0:\"\";}s:8:\"h_btn_on\";s:4:\"show\";s:10:\"h_btn_text\";s:10:\"Contact Us\";s:15:\"h_btn_link_type\";s:4:\"page\";s:10:\"h_btn_link\";s:2:\"24\";s:17:\"h_btn_link_custom\";s:0:\"\";s:12:\"h_btn_target\";s:5:\"_self\";s:9:\"pagetitle\";s:4:\"show\";s:9:\"ptitle_bg\";a:7:{s:16:\"background-color\";s:0:\"\";s:17:\"background-repeat\";s:0:\"\";s:15:\"background-size\";s:0:\"\";s:21:\"background-attachment\";s:0:\"\";s:19:\"background-position\";s:0:\"\";s:16:\"background-image\";s:64:\"https://fe2tech.com/wp-content/uploads/2019/11/bg-page-title.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:2:\"43\";s:6:\"height\";s:3:\"790\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:72:\"https://fe2tech.com/wp-content/uploads/2019/11/bg-page-title-150x150.jpg\";}}s:18:\"page_title_padding\";a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}s:20:\"ptitle_breadcrumb_on\";s:4:\"show\";s:16:\"content_bg_color\";a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}s:15:\"content_padding\";a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}s:24:\"search_field_placeholder\";s:0:\"\";s:19:\"archive_sidebar_pos\";s:5:\"right\";s:15:\"archive_date_on\";s:1:\"1\";s:17:\"archive_author_on\";s:1:\"1\";s:21:\"archive_categories_on\";s:1:\"0\";s:19:\"archive_comments_on\";s:1:\"0\";s:13:\"post_bg_color\";s:0:\"\";s:16:\"post_sidebar_pos\";s:5:\"right\";s:12:\"post_date_on\";s:1:\"1\";s:14:\"post_author_on\";s:1:\"1\";s:18:\"post_categories_on\";s:1:\"1\";s:12:\"post_tags_on\";s:1:\"1\";s:20:\"post_social_share_on\";s:1:\"1\";s:18:\"post_navigation_on\";s:1:\"1\";s:14:\"portfolio_slug\";s:0:\"\";s:14:\"portfolio_name\";s:0:\"\";s:12:\"service_slug\";s:0:\"\";s:12:\"service_name\";s:0:\"\";s:20:\"footer_layout_custom\";s:3:\"799\";s:13:\"back_totop_on\";s:1:\"1\";s:13:\"primary_color\";s:7:\"#f9a244\";s:15:\"secondary_color\";s:7:\"#000000\";s:11:\"third_color\";s:7:\"#011962\";s:10:\"four_color\";s:7:\"#02038d\";s:10:\"link_color\";a:3:{s:7:\"regular\";s:7:\"#85b23b\";s:5:\"hover\";s:7:\"#f9a244\";s:6:\"active\";s:7:\"#f9a244\";}s:14:\"gradient_color\";a:2:{s:4:\"from\";s:7:\"#85b23b\";s:2:\"to\";s:7:\"#f9a244\";}s:15:\"gradient_color2\";a:2:{s:4:\"from\";s:7:\"#f9a244\";s:2:\"to\";s:7:\"#85b23b\";}s:15:\"gradient_color3\";a:2:{s:4:\"from\";s:7:\"#001659\";s:2:\"to\";s:7:\"#1040d3\";}s:15:\"gradient_color4\";a:2:{s:4:\"from\";s:7:\"#49c200\";s:2:\"to\";s:7:\"#b0e603\";}s:17:\"body_default_font\";s:7:\"Poppins\";s:9:\"font_main\";a:10:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:20:\"heading_default_font\";s:7:\"Poppins\";s:7:\"font_h1\";a:10:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:7:\"font_h2\";a:10:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:7:\"font_h3\";a:10:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:7:\"font_h4\";a:10:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:7:\"font_h5\";a:10:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:7:\"font_h6\";a:10:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:13:\"custom_font_1\";a:10:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:23:\"custom_font_selectors_1\";s:0:\"\";s:10:\"gm_api_key\";s:39:\"AIzaSyC08_qdlXXCWiFNVj02d-L2BDK5qr6ZnfM\";s:16:\"site_header_code\";s:0:\"\";s:16:\"site_footer_code\";s:0:\"\";s:8:\"site_css\";s:0:\"\";s:52:\"customize-selected-changeset-status-control-input-67\";s:7:\"publish\";s:16:\"link-target-hide\";s:11:\"link-target\";s:20:\"title-attribute-hide\";s:15:\"title-attribute\";s:16:\"css-classes-hide\";s:11:\"css-classes\";s:8:\"xfn-hide\";s:3:\"xfn\";s:16:\"description-hide\";s:11:\"description\";s:17:\"screenoptionnonce\";s:10:\"7620b52cb6\";s:19:\"background-position\";s:8:\"left top\";s:30:\"_customize-radio-show_on_front\";s:4:\"page\";s:39:\"_customize-dropdown-pages-page_on_front\";s:1:\"9\";s:40:\"_customize-dropdown-pages-page_for_posts\";s:1:\"0\";s:52:\"customize-selected-changeset-status-control-input-68\";s:7:\"publish\";s:13:\"widget-search\";a:2:{i:1;a:3:{s:5:\"title\";s:6:\"Search\";s:8:\"el_class\";s:0:\"\";s:8:\"pll_lang\";s:1:\"0\";}i:2;a:3:{s:5:\"title\";s:6:\"Search\";s:8:\"el_class\";s:0:\"\";s:8:\"pll_lang\";s:1:\"0\";}}s:9:\"widget-id\";s:8:\"search-1\";s:7:\"id_base\";s:6:\"search\";s:12:\"widget-width\";s:3:\"250\";s:13:\"widget-height\";s:3:\"200\";s:13:\"widget_number\";s:1:\"1\";s:12:\"multi_number\";s:0:\"\";s:7:\"add_new\";s:0:\"\";s:12:\"widget-block\";a:1:{i:3;a:3:{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 -->\";s:8:\"el_class\";s:0:\"\";s:8:\"pll_lang\";s:1:\"0\";}}s:53:\"customize-selected-changeset-status-control-input-105\";s:7:\"publish\";s:24:\"pll_lang_switch_box-hide\";s:19:\"pll_lang_switch_box\";s:17:\"widget-categories\";a:1:{i:2;a:5:{s:5:\"title\";s:10:\"Categories\";s:5:\"count\";s:2:\"on\";s:12:\"hierarchical\";s:2:\"on\";s:8:\"el_class\";s:0:\"\";s:8:\"pll_lang\";s:1:\"0\";}}s:15:\"widget-archives\";a:1:{i:2;a:4:{s:5:\"title\";s:8:\"Archives\";s:5:\"count\";s:2:\"on\";s:8:\"el_class\";s:0:\"\";s:8:\"pll_lang\";s:1:\"0\";}}s:20:\"widget-media_gallery\";a:1:{i:2;a:8:{s:5:\"title\";s:7:\"Gallery\";s:3:\"ids\";s:23:\"184,183,182,181,180,179\";s:7:\"columns\";s:1:\"3\";s:4:\"size\";s:9:\"thumbnail\";s:9:\"link_type\";s:4:\"file\";s:14:\"orderby_random\";s:0:\"\";s:8:\"el_class\";s:0:\"\";s:8:\"pll_lang\";s:1:\"0\";}}s:16:\"widget-tag_cloud\";a:1:{i:2;a:4:{s:5:\"title\";s:4:\"Tags\";s:8:\"taxonomy\";s:8:\"post_tag\";s:8:\"el_class\";s:0:\"\";s:8:\"pll_lang\";s:1:\"0\";}}}','auto'),(423,'ct_theme_options-transients','a:5:{s:14:\"changed_values\";a:2:{s:10:\"h_btn_link\";i:24;s:20:\"footer_layout_custom\";s:4:\"2959\";}s:9:\"last_save\";i:1734426449;s:13:\"last_compiler\";i:1734426449;s:11:\"last_import\";i:1734426449;s:14:\"last_save_mode\";s:6:\"normal\";}','auto'),(425,'elementor_onboarded','1','auto'),(433,'_elementor_onboarding_features','a:2:{s:9:\"essential\";a:0:{}s:8:\"advanced\";a:0:{}}','auto'),(435,'yith-wcqv-enable','yes','auto'),(436,'yith-wcqv-enable-mobile','yes','auto'),(437,'yith-wcqv-button-label','Quick View','auto'),(438,'yith-wcqv-background-modal','#ffffff','auto'),(439,'yith-wcqv-close-color','#cdcdcd','auto'),(440,'yith-wcqv-close-color-hover','#ff0000','auto'),(441,'yit_plugin_fw_panel_wc_default_options_set','a:2:{s:15:\"yith_wcqv_panel\";b:1;s:15:\"yith_wcwl_panel\";b:1;}','auto'),(442,'yith_wcwl_ajax_enable','no','auto'),(443,'yith_wcwl_after_add_to_wishlist_behaviour','view','auto'),(444,'yith_wcwl_show_on_loop','yes','auto'),(445,'yith_wcwl_loop_position','after_add_to_cart','auto'),(446,'yith_wcwl_button_position','after_add_to_cart','auto'),(447,'yith_wcwl_add_to_wishlist_text','Add to wishlist','auto'),(448,'yith_wcwl_product_added_text','Product added!','auto'),(449,'yith_wcwl_browse_wishlist_text','Browse wishlist','auto'),(450,'yith_wcwl_already_in_wishlist_text','The product is already in your wishlist!','auto'),(451,'yith_wcwl_add_to_wishlist_style','link','auto'),(452,'yith_wcwl_rounded_corners_radius','16','auto'),(453,'yith_wcwl_add_to_wishlist_icon','fa-heart-o','auto'),(454,'yith_wcwl_add_to_wishlist_custom_icon','','auto'),(455,'yith_wcwl_added_to_wishlist_icon','fa-heart','auto'),(456,'yith_wcwl_added_to_wishlist_custom_icon','','auto'),(457,'yith_wcwl_custom_css','','auto'),(458,'yith_wcwl_variation_show','','auto'),(459,'yith_wcwl_price_show','yes','auto'),(460,'yith_wcwl_stock_show','yes','auto'),(461,'yith_wcwl_show_dateadded','','auto'),(462,'yith_wcwl_add_to_cart_show','yes','auto'),(463,'yith_wcwl_show_remove','yes','auto'),(464,'yith_wcwl_repeat_remove_button','','auto'),(465,'yith_wcwl_redirect_cart','no','auto'),(466,'yith_wcwl_remove_after_add_to_cart','yes','auto'),(467,'yith_wcwl_enable_share','yes','auto'),(468,'yith_wcwl_share_fb','yes','auto'),(469,'yith_wcwl_share_twitter','yes','auto'),(470,'yith_wcwl_share_pinterest','yes','auto'),(471,'yith_wcwl_share_email','yes','auto'),(472,'yith_wcwl_share_whatsapp','yes','auto'),(473,'yith_wcwl_share_url','no','auto'),(474,'yith_wcwl_socials_title','My wishlist on fe2tech','auto'),(475,'yith_wcwl_socials_text','','auto'),(476,'yith_wcwl_socials_image_url','','auto'),(477,'yith_wcwl_wishlist_title','My wishlist','auto'),(478,'yith_wcwl_add_to_cart_text','Add to cart','auto'),(479,'yith_wcwl_add_to_cart_style','link','auto'),(480,'yith_wcwl_add_to_cart_rounded_corners_radius','16','auto'),(481,'yith_wcwl_add_to_cart_icon','fa-shopping-cart','auto'),(482,'yith_wcwl_add_to_cart_custom_icon','','auto'),(483,'yith_wcwl_color_headers_background','#F4F4F4','auto'),(484,'yith_wcwl_fb_button_icon','fa-facebook','auto'),(485,'yith_wcwl_fb_button_custom_icon','','auto'),(486,'yith_wcwl_tw_button_icon','fa-twitter','auto'),(487,'yith_wcwl_tw_button_custom_icon','','auto'),(488,'yith_wcwl_pr_button_icon','fa-pinterest','auto'),(489,'yith_wcwl_pr_button_custom_icon','','auto'),(490,'yith_wcwl_em_button_icon','fa-envelope-o','auto'),(491,'yith_wcwl_em_button_custom_icon','','auto'),(492,'yith_wcwl_wa_button_icon','fa-whatsapp','auto'),(493,'yith_wcwl_wa_button_custom_icon','','auto'),(494,'newsletter_lock_engine','0','yes'),(495,'_elementor_installed_time','1729264758','auto'),(496,'_elementor_notifications_data','a:2:{s:7:\"timeout\";i:1742283252;s:5:\"value\";s:12177:\"[{\"id\":\"hello-biz-templates\",\"title\":\"Fresh Drop: New Design Kits Exclusive to Hello Biz\",\"description\":\"New Design Kits Exclusive to Hello Biz just dropped to the library! Build a stunning business website in minutes\\u2014FREE & fully compatible with Elementor & Pro. Try Hello Biz now!\",\"topic\":\"Hello Biz\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/hello-biz-templates.png\",\"chipTags\":[\"New Kits\"],\"link\":\"https:\\/\\/elementor.com\\/products\\/hello-biz\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"ai-site-planner\",\"title\":\"Instant Sitemaps & Wireframes\",\"description\":\"Get your website plan in minutes with AI Site Planner. Describe your desired site and AI will generate a sitemap, brief and wireframe populated with initial content, ready for you to customize.\",\"topic\":\"Elementor AI\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/aI-site-planner.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/ai-notification-site-planner\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"grid-span-3.27\",\"title\":\"Design Grid layouts that fit your exact vision\",\"description\":\"Advanced column and row span controls give you the power to design Grid Container layouts that fit your exact vision.\",\"topic\":\"Elementor 3.27\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/grid-span-3.27.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.27-grid-span-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"local-fonts-3.27\",\"title\":\"Load Google Fonts safer and faster\",\"description\":\"Once enabled, Google Fonts are served directly from your server, streamlining the loading process and enhancing security.\",\"topic\":\"Elementor 3.27\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/local-google-fonts-3.27.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.27-local-fonts-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"video-shorts-3.27\",\"title\":\"Showcase short-form, vertical videos\",\"description\":\"The Video widget now supports YouTube Shorts in a vertical 9:16 ratio, the go-to format for engaging audiences.\",\"topic\":\"Elementor 3.27\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/video-shorts-3.27.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.27-video-shorts-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"hello-biz-theme\",\"title\":\"A Brand New Theme From Elementor: Introducing Hello BIZ\",\"description\":\"Meet Hello Biz. The new theme empowers you with Hello+ Widgets that accelerate your workflow. It\'s FREE and fully compatible with Elementor & Elementor Pro.\",\"topic\":\"Hello Biz\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/hello-biz-theme.png\",\"chipTags\":[\"New Theme\"],\"link\":\"https:\\/\\/elementor.com\\/blog\\/introducing-hello-biz\\/\",\"readMoreText\":\"Learn More\",\"conditions\":[[{\"type\":\"plugin\",\"plugin\":\"elementor-pro\\/elementor-pro.php\"}]]},{\"id\":\"hello-biz-theme\",\"title\":\"A Brand New Theme From Elementor: Introducing Hello BIZ\",\"description\":\"Meet Hello Biz. The new theme that lets you build a website within minutes. And it\'s FREE. Perfect for a business website, and fully compatible with Elementor & Elementor Pro.\",\"topic\":\"Hello Biz\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/hello-biz-theme.png\",\"chipTags\":[\"New Theme\"],\"link\":\"https:\\/\\/elementor.com\\/blog\\/introducing-hello-biz\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"dynamic-off-canvas-3.26\",\"title\":\"Dynamic Off-Canvas for Loop Grids\",\"description\":\"Create richer, more interactive designs by linking Dynamic Content to the Off Canvas widget, delivering seamless user experiences.\",\"topic\":\"Elementor Pro 3.26\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/off-canvas-loop-grids.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.26-blog\\/\",\"readMoreText\":\"Learn More\",\"conditions\":[[{\"type\":\"plugin\",\"plugin\":\"elementor-pro\\/elementor-pro.php\"}]]},{\"id\":\"dynamic-off-canvas-3.26\",\"title\":\"Dynamic Off-Canvas for Loop Grids\",\"description\":\"Create richer, more interactive designs by linking Dynamic Content to the Off Canvas widget, delivering seamless user experiences.\",\"topic\":\"Elementor Pro 3.26\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/off-canvas-loop-grids.png\",\"chipTags\":[\"New Feature\"],\"cta\":\"Upgrade\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.26-loop-off-canvas\\/\"},{\"id\":\"css-loading-3.25\",\"title\":\"Boost Performance with Conditional CSS Loading\",\"description\":\"Boost performance by conditionally loading only the styles that each page needs, reducing the page CSS size by up to 668kb.\",\"topic\":\"Elementor 3.25\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.25-css-Loading.png\",\"chipTags\":[\"Performance\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3-25-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"image-optimizer-3.19\",\"title\":\"Effortlessly optimize images for a stunning, high-speed website with the Image Optimizer plugin.\",\"description\":\"Image Optimizer perfectly balances between image quality and performance to boost your website.  Resize, compress, and convert images to WebP, for faster loading times and and better user experience.\",\"topic\":\"Image Optimizer Plugin by Elementor\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/image-optimizer-3.19.png\",\"chipTags\":[\"New plugin\"],\"cta\":\"Get the Image Optimizer\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/io-notification-wp-dash-learn-more\\/\",\"conditions\":[[{\"type\":\"plugin\",\"operator\":\"!=\",\"plugin\":\"image-optimization\\/image-optimization.php\"}]]},{\"id\":\"variable-fonts-3.24\",\"title\":\"Elevate text design with Variable Fonts\",\"description\":\"Experience unparalleled fluidity in your design with precise control over text width and weight.\",\"topic\":\"Elementor Pro 3.24\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.24-variable-fonts.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.24-blog\\/\",\"readMoreText\":\"Learn More\",\"conditions\":[[{\"type\":\"plugin\",\"plugin\":\"elementor-pro\\/elementor-pro.php\"}]]},{\"id\":\"variable-fonts-3.24\",\"title\":\"Elevate text design with Variable Fonts\",\"description\":\"Experience unparalleled fluidity in your design with precise control over text width and weight.\",\"topic\":\"Elementor Pro 3.24\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.24-variable-fonts.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.24-blog\\/\",\"readMoreText\":\"Learn More\",\"cta\":\"Upgrade\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3-24-variable-fonts\\/\"},{\"id\":\"floating-bars-3.24\",\"title\":\"Increase conversion with Floating Bars\",\"description\":\"Place your most important messages and promotions at the top or bottom of your page seamlessly with over 30 pre-made templates.\",\"topic\":\"Elementor 3.24\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.24-floating-bar.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.24-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"ai-featured-image\",\"title\":\"Featured Image: Let AI Do the Work\",\"description\":\"Say goodbye to image searches! Let AI craft stunning featured images with a click, perfectly matching your content. No prompts needed. Discover how easy it is.\",\"topic\":\"Elementor AI\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/featured_ai.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/ai-notification-featured-image-blog\\/\",\"readMoreText\":\"Learn More\",\"conditions\":[[{\"type\":\"introduction_meta\",\"meta\":\"ai_get_started\"}]],\"cta\":\"Start Free Trial\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/ai-notification-featured-image\\/\"},{\"id\":\"ai-featured-image\",\"title\":\"Featured Image: Let AI Do the Work\",\"description\":\"Say goodbye to image searches! Let AI craft stunning featured images with a click, perfectly matching your content. No prompts needed. Discover how easy it is.\",\"topic\":\"Elementor AI\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/featured_ai.png\",\"chipTags\":[\"New Feature\"],\"cta\":\"Start Free Trial\",\"link\":\"https:\\/\\/go.elementor.com\\/ai-notification-featured-image-blog\\/\",\"readMoreText\":\"Learn More\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/ai-notification-featured-image\\/\\/\"},{\"id\":\"search-widget-3.23\",\"title\":\"Increases site exploration with AJAX loading & live results\",\"description\":\"Enabling faster, more accurate content discovery and helping visitors find what they\'re looking for.\",\"topic\":\"Elementor Pro 3.23\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/search-widget-3.23.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3-23-features\\/\",\"readMoreText\":\"Learn More\",\"conditions\":[[{\"type\":\"plugin\",\"plugin\":\"elementor-pro\\/elementor-pro.php\"}]]},{\"id\":\"search-widget-3.23\",\"title\":\"Increases site exploration with AJAX loading & live results\",\"description\":\"Enabling faster, more accurate content discovery and helping visitors find what they\'re looking for.\",\"topic\":\"Elementor Pro 3.23\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/search-widget-3.23.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3-23-features\\/\",\"readMoreText\":\"Learn More\",\"cta\":\"Upgrade\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-search-widget\\/\"},{\"id\":\"floating-buttons-3.23\",\"title\":\"Get more leads with Floating Buttons\",\"description\":\"Empowering you to increase conversion by seamlessly integrating a direct link to a chat or different platforms in the form of a floating button.\",\"topic\":\"Elementor 3.23\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/floating-buttons-3.23.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3-23-features-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"link-in-bio-3.23\",\"title\":\"New Link in Bio Widgets for any Purpose\",\"description\":\"Create a polished and professional page with just a few clicks and effectively showcase all your important links. Choose from 7 unique widgets and over 60 templates!\",\"topic\":\"Elementor 3.23\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/link-in-bio-3.23.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-link-in-bio-3-23-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"nested-elements-3.23\",\"title\":\"Work faster on Nested Elements\",\"description\":\"Customize Nested Elements faster with version 3.23. Now every change to a Nested Element will only affect the relevant element and not require reloading the entire widget, improving Editor interaction time by 60%-98%.\",\"topic\":\"Elementor 3.23\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/nested-elements-3.23.png\",\"chipTags\":[\"Performance\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3-23-features-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"5-star-rating-prompt\",\"title\":\"Love the New Features? Let Us Know with 5 Stars!\",\"description\":\"Help spread the word by telling the world what you love about Elementor.\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/5-star-rating-prompt.png\",\"cta\":\"Leave a Review\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/wp-dash-notification-five-stars\\/\"},{\"id\":\"site-mailer-introducing\",\"title\":\"Introducing Site Mailer\",\"description\":\"Keep your WordPress emails out of the spam folder with improved deliverability and an easy setup\\u2014no need for an SMTP plugin or complicated configurations.\",\"topic\":\"Site Mailer Plugin by Elementor\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/Site-mailer.png\",\"chipTags\":[\"New plugin\"],\"cta\":\"Start Free Trial\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/sm-wp-dash-whatsnew\\/\",\"conditions\":[[{\"type\":\"plugin\",\"operator\":\"!=\",\"plugin\":\"site-mailer\\/site-mailer.php\"}]]}]\";}','off'),(499,'elementor_experiment-e_font_icon_svg','inactive','on');
INSERT INTO `wp_options` VALUES (500,'elementor_remote_info_library','a:3:{s:10:\"types_data\";a:4:{s:5:\"block\";a:2:{s:10:\"categories\";a:30:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:8:\"Benefits\";i:4;s:14:\"call to action\";i:5;s:7:\"clients\";i:6;s:7:\"contact\";i:7;s:4:\"Data\";i:8;s:10:\"ehp-footer\";i:9;s:10:\"ehp-header\";i:10;s:3:\"faq\";i:11;s:8:\"features\";i:12;s:6:\"footer\";i:13;s:7:\"Gallery\";i:14;s:6:\"header\";i:15;s:4:\"hero\";i:16;s:11:\"Link in Bio\";i:17;s:9:\"portfolio\";i:18;s:7:\"pricing\";i:19;s:15:\"product archive\";i:20;s:5:\"Quote\";i:21;s:15:\"Service Details\";i:22;s:8:\"services\";i:23;s:11:\"single page\";i:24;s:11:\"single post\";i:25;s:14:\"single product\";i:26;s:5:\"stats\";i:27;s:9:\"subscribe\";i:28;s:4:\"team\";i:29;s:12:\"testimonials\";}s:4:\"sets\";a:5:{i:0;s:11:\"Boxing Club\";i:1;s:19:\"Business Consultant\";i:2;s:16:\"Marketing Agency\";i:3;s:9:\"Wireframe\";i:4;s:15:\"Workshop Center\";}}s:5:\"popup\";a:1:{s:10:\"categories\";a:6:{i:0;s:10:\"bottom bar\";i:1;s:7:\"classic\";i:2;s:6:\"fly-in\";i:3;s:11:\"full screen\";i:4;s:9:\"hello bar\";i:5;s:8:\"slide-in\";}}s:2:\"lp\";a:1:{s:10:\"categories\";a:15:{i:0;s:8:\"Business\";i:1;s:16:\"Coming Soon Page\";i:2;s:9:\"eCommerce\";i:3;s:9:\"Education\";i:4;s:6:\"Events\";i:5;s:18:\"Health and Fitness\";i:6;s:3:\"NFT\";i:7;s:14:\"Online Service\";i:8;s:7:\"Product\";i:9;s:11:\"Real Estate\";i:10;s:18:\"Social Involvement\";i:11;s:14:\"Thank You Page\";i:12;s:6:\"Travel\";i:13;s:18:\"Under Construction\";i:14;s:9:\"Wireframe\";}}s:2:\"lb\";a:1:{s:10:\"categories\";a:2:{i:0;s:4:\"post\";i:1;s:7:\"product\";}}}s:10:\"categories\";a:30:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:8:\"Benefits\";i:4;s:14:\"call to action\";i:5;s:7:\"clients\";i:6;s:7:\"contact\";i:7;s:4:\"Data\";i:8;s:10:\"ehp-footer\";i:9;s:10:\"ehp-header\";i:10;s:3:\"faq\";i:11;s:8:\"features\";i:12;s:6:\"footer\";i:13;s:7:\"Gallery\";i:14;s:6:\"header\";i:15;s:4:\"hero\";i:16;s:11:\"Link in Bio\";i:17;s:9:\"portfolio\";i:18;s:7:\"pricing\";i:19;s:15:\"product archive\";i:20;s:5:\"Quote\";i:21;s:15:\"Service Details\";i:22;s:8:\"services\";i:23;s:11:\"single page\";i:24;s:11:\"single post\";i:25;s:14:\"single product\";i:26;s:5:\"stats\";i:27;s:9:\"subscribe\";i:28;s:4:\"team\";i:29;s:12:\"testimonials\";}s:9:\"templates\";a:823:{i:0;a:20:{s:4:\"tmpl\";i:1280;s:2:\"id\";i:22403;s:5:\"title\";s:40:\"Hello Bar | Subscribe | Aesthetic Clinic\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/aesthetic-clinic-19.jpg\";s:12:\"tmpl_created\";i:1647354307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/hello-bar-subscribe-aesthetic-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:48:\"[\"Barbershop\",\"Business\",\"Discount\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:1;a:20:{s:4:\"tmpl\";i:1281;s:2:\"id\";i:22410;s:5:\"title\";s:32:\"Fly-In | Discount | Hair Stylist\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/hair-stylist-20.jpg\";s:12:\"tmpl_created\";i:1647354614;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-discount-hair-stylist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:32:\"[\"Barbershop\",\"Discount\",\"Hair\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:2;a:20:{s:4:\"tmpl\";i:1285;s:2:\"id\";i:22440;s:5:\"title\";s:32:\"Classic | Subscribe | Shoe Store\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/shoes-store-21.jpg\";s:12:\"tmpl_created\";i:1647418620;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-subscribe-shoe-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:37:\"[\"Ecommerce\",\"Marketing\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:3;a:20:{s:4:\"tmpl\";i:1286;s:2:\"id\";i:22446;s:5:\"title\";s:37:\"Full Screen | Subscribe | Denim Store\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/denim-store-22.jpg\";s:12:\"tmpl_created\";i:1647419614;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/full-screen-subscribe-denim-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:35:\"[\"Ecommerce\",\"Fashion\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:4;a:20:{s:4:\"tmpl\";i:1287;s:2:\"id\";i:22452;s:5:\"title\";s:37:\"Fly-In | Subscribe | Pizza Restaurant\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/pizza-restaurant-23.jpg\";s:12:\"tmpl_created\";i:1647420733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-subscribe-pizza-restaurant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:19:\"[\"Business\",\"Food\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:5;a:20:{s:4:\"tmpl\";i:1288;s:2:\"id\";i:22458;s:5:\"title\";s:38:\"Full Screen | Subscribe | Fashion Shop\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/fashion-shop-24.jpg\";s:12:\"tmpl_created\";i:1647426379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-subscribe-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:31:\"[\"Ecommerce\",\"Fashion\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:6;a:20:{s:4:\"tmpl\";i:1289;s:2:\"id\";i:22464;s:5:\"title\";s:32:\"Fly-In | Contact | Makeup Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/makeup-studio-25.jpg\";s:12:\"tmpl_created\";i:1647427026;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-contact-makeup-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:22:\"[\"Business\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:7;a:20:{s:4:\"tmpl\";i:1290;s:2:\"id\";i:22470;s:5:\"title\";s:32:\"Fly-In | Contact | Design Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/design-studio-26.jpg\";s:12:\"tmpl_created\";i:1647428250;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-contact-design-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Business\",\"Contact\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:8;a:20:{s:4:\"tmpl\";i:1291;s:2:\"id\";i:22480;s:5:\"title\";s:27:\"Classic | CTA | MasterClass\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/master-class-27.jpg\";s:12:\"tmpl_created\";i:1647428474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-masterclass/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"cta\",\"Magazine\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:9;a:20:{s:4:\"tmpl\";i:1292;s:2:\"id\";i:22489;s:5:\"title\";s:29:\"Classic | CTA | Music Concert\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/music-concert-29.jpg\";s:12:\"tmpl_created\";i:1647429738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-music-concert/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"cta\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:10;a:20:{s:4:\"tmpl\";i:1293;s:2:\"id\";i:22495;s:5:\"title\";s:27:\"Classic | CTA | Music Album\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/music-album-30.jpg\";s:12:\"tmpl_created\";i:1647430056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-music-album/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Ba\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:11;a:20:{s:4:\"tmpl\";i:1294;s:2:\"id\";i:22501;s:5:\"title\";s:37:\"Fly-In | CTA | Photography Exhibition\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/photography-exhibition-31.jpg\";s:12:\"tmpl_created\";i:1647430512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-cta-photography-exhibition/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:33:\"[\"cta\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:12;a:20:{s:4:\"tmpl\";i:1295;s:2:\"id\";i:22507;s:5:\"title\";s:34:\"Classic | CTA | Clothing Shop Sale\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/clothing-shop-sale-32.jpg\";s:12:\"tmpl_created\";i:1647430774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-cta-clothing-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:35:\"[\"Ecommerce\",\"Fashion\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:13;a:20:{s:4:\"tmpl\";i:1296;s:2:\"id\";i:22486;s:5:\"title\";s:30:\"Classic | CTA | Shop Promotion\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/shop-promotion-28.jpg\";s:12:\"tmpl_created\";i:1647430951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-shop-promotion/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"cta\",\"Magazine\",\"Photography\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:14;a:20:{s:4:\"tmpl\";i:1297;s:2:\"id\";i:22516;s:5:\"title\";s:32:\"Fly-In | CTA | Glasses Shop Sale\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/glasses-shop-sale-33.jpg\";s:12:\"tmpl_created\";i:1647431136;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-cta-glasses-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:30:\"[\"Business\",\"cta\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:15;a:20:{s:4:\"tmpl\";i:1298;s:2:\"id\";i:22522;s:5:\"title\";s:30:\"Fly-In | Discount | Skate Shop\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/50-skate-shop-Discount.jpg\";s:12:\"tmpl_created\";i:1647434058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-discount-skate-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:32:\"[\"Discount\",\"Ecommerce\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:16;a:20:{s:4:\"tmpl\";i:1299;s:2:\"id\";i:22532;s:5:\"title\";s:43:\"Classic | Subscription | Basketball Academy\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/21-basketball-academy-Subscription.jpg\";s:12:\"tmpl_created\";i:1647434608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/classic-subscription-basketball-academy/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Education\",\"Marketing\",\"Sport\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:17;a:20:{s:4:\"tmpl\";i:1300;s:2:\"id\";i:22543;s:5:\"title\";s:38:\"Classic | Discount | Veterinary Clinic\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/veterinery-clinic-small.jpg\";s:12:\"tmpl_created\";i:1647435581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/classic-discount-veterinary-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Discount\",\"Pets\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:18;a:20:{s:4:\"tmpl\";i:1301;s:2:\"id\";i:22553;s:5:\"title\";s:39:\"Classic | Contact | Business Consulting\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/27-business-consulting-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647439935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/classic-contact-business-consulting/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Business\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:19;a:20:{s:4:\"tmpl\";i:1302;s:2:\"id\";i:22562;s:5:\"title\";s:28:\"Classic | Contact | Handyman\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/handyman-small.jpg\";s:12:\"tmpl_created\";i:1647440333;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-contact-handyman/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:20;a:20:{s:4:\"tmpl\";i:1303;s:2:\"id\";i:22573;s:5:\"title\";s:40:\"Classic | Discount | Online Fashion Shop\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/31-online-fashion-shop-Discount.jpg\";s:12:\"tmpl_created\";i:1647462549;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-online-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Discount\",\"Ecommerce\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:21;a:20:{s:4:\"tmpl\";i:1304;s:2:\"id\";i:22583;s:5:\"title\";s:36:\"Fly-In | Discount | Personal Trainer\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/personal-trainer-small.jpg\";s:12:\"tmpl_created\";i:1647503781;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-discount-personal-trainer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Discount\",\"Sport\",\"Training\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:22;a:20:{s:4:\"tmpl\";i:1305;s:2:\"id\";i:22592;s:5:\"title\";s:41:\"Classic | Contact | Illustrator Portfolio\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/illustrator-protfolio-small.jpg\";s:12:\"tmpl_created\";i:1647504218;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-contact-illustrator-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:49:\"[\"Contact\",\"Creative Portfolio\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:23;a:20:{s:4:\"tmpl\";i:1306;s:2:\"id\";i:22602;s:5:\"title\";s:46:\"Bottom Bar | Discount | Handmade Ceramics Shop\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2022/03/handmade-ceramic-shop-36-small.jpg\";s:12:\"tmpl_created\";i:1647507007;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-ceramics-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:48:\"[\"Business\",\"cta\",\"Ecommerce\",\"Interior Design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:24;a:20:{s:4:\"tmpl\";i:1307;s:2:\"id\";i:22612;s:5:\"title\";s:51:\"Classic | Contact | Classic Car Restoration Company\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/restoration-car-shop-37-small.jpg\";s:12:\"tmpl_created\";i:1647507310;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:153:\"https://library.elementor.com/popups/classic-contact-classic-car-restoration-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Booking\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:25;a:20:{s:4:\"tmpl\";i:1308;s:2:\"id\";i:22621;s:5:\"title\";s:30:\"Classic | Booking | Life Coach\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/38-life-coach-Booking.jpg\";s:12:\"tmpl_created\";i:1647508596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-booking-life-coach/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Booking\",\"Business\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:26;a:20:{s:4:\"tmpl\";i:1309;s:2:\"id\";i:22632;s:5:\"title\";s:42:\"Classic |  Subscription | Merchandise Shop\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/Merchandise-Shop-39-small.jpg\";s:12:\"tmpl_created\";i:1647509196;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-subscription-merchandise-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Ecommerce\",\"Marketing\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:27;a:20:{s:4:\"tmpl\";i:1310;s:2:\"id\";i:22643;s:5:\"title\";s:48:\"Fly-In | Contact | Non-Governmental Organization\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/NGO-41-small.jpg\";s:12:\"tmpl_created\";i:1647509528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:150:\"https://library.elementor.com/popups/fly-in-contact-non-governmental-organization/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:28;a:20:{s:4:\"tmpl\";i:1311;s:2:\"id\";i:22654;s:5:\"title\";s:35:\"Hello Bar | Contact | Family Doctor\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/family-doctor-44-small.jpg\";s:12:\"tmpl_created\";i:1647509732;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/hello-bar-contact-family-doctor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:31:\"[\"Contact\",\"Health\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:29;a:20:{s:4:\"tmpl\";i:1312;s:2:\"id\";i:22663;s:5:\"title\";s:36:\"Classic | Subscription | Sports Blog\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/45-sport-blog-Subscription.jpg\";s:12:\"tmpl_created\";i:1647509908;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-sports-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Blog\",\"Sport\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:30;a:20:{s:4:\"tmpl\";i:1313;s:2:\"id\";i:22673;s:5:\"title\";s:30:\"Hello Bar | Booking | Event DJ\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/DJ-service-46-small.jpg\";s:12:\"tmpl_created\";i:1647510160;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/hello-bar-booking-event-dj/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:31:\"[\"Booking\",\"Events\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:31;a:20:{s:4:\"tmpl\";i:1314;s:2:\"id\";i:22684;s:5:\"title\";s:36:\"Fly-In | Discount | Cleaning Company\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/51-cleaning-company-Discount.jpg\";s:12:\"tmpl_created\";i:1647510546;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-discount-cleaning-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Discount\",\"Offer\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:32;a:20:{s:4:\"tmpl\";i:1315;s:2:\"id\";i:22693;s:5:\"title\";s:28:\"Fly-In | Contact | Carpenter\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/carpenter-53-small.jpg\";s:12:\"tmpl_created\";i:1647511972;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-contact-carpenter/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:22:\"[\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:33;a:20:{s:4:\"tmpl\";i:1316;s:2:\"id\";i:22703;s:5:\"title\";s:31:\"Classic | Booking | Yoga Studio\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/55-yoga-studio-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647512209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-booking-yoga-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:30:\"[\"Booking\",\"Contact\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:34;a:20:{s:4:\"tmpl\";i:1317;s:2:\"id\";i:22714;s:5:\"title\";s:37:\"Classic | Discount | Pet Care Company\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/56-Pet-Care-Discount.jpg\";s:12:\"tmpl_created\";i:1647513031;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-discount-pet-care-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:35;a:20:{s:4:\"tmpl\";i:1318;s:2:\"id\";i:22725;s:5:\"title\";s:38:\"Fly-In | Discount | Online Coffee Shop\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/online-coffee-shop-57-small.jpg\";s:12:\"tmpl_created\";i:1647513325;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/fly-in-discount-online-coffee-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:29:\"[\"Food\",\"Offer\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:36;a:20:{s:4:\"tmpl\";i:1319;s:2:\"id\";i:22737;s:5:\"title\";s:44:\"Fly-In | CTA | Moving &#038; Storage Company\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/moving-company-59-small.jpg\";s:12:\"tmpl_created\";i:1647520956;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-cta-moving-storage-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:37;a:20:{s:4:\"tmpl\";i:1320;s:2:\"id\";i:22749;s:5:\"title\";s:47:\"Classic | Contact | Industrial Design Portfolio\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/60-industrial-design-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647528116;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/classic-contact-industrial-design-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:40:\"[\"Contact\",\"Interior Design\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:38;a:20:{s:4:\"tmpl\";i:1321;s:2:\"id\";i:22759;s:5:\"title\";s:25:\"Classic | Contact | Drone\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/drone-61-small.jpg\";s:12:\"tmpl_created\";i:1647528899;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-contact-drone/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:39;a:20:{s:4:\"tmpl\";i:1322;s:2:\"id\";i:22768;s:5:\"title\";s:46:\"Full Screen | Menu | Fashion Stylist Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/62-Fashion-Stylist-Menu.jpg\";s:12:\"tmpl_created\";i:1647529434;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/full-screen-menu-fashion-stylist-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:31:\"[\"Fashion\",\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:40;a:20:{s:4:\"tmpl\";i:1323;s:2:\"id\";i:22780;s:5:\"title\";s:31:\"Fly-In | CTA | Landscape Design\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/64-Landscape-Design-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647530337;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-cta-landscape-design/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"cta\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:41;a:20:{s:4:\"tmpl\";i:1324;s:2:\"id\";i:22790;s:5:\"title\";s:48:\"Bottom Bar  | Contact | Architecture Photography\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/architecture-photography-65-small.jpg\";s:12:\"tmpl_created\";i:1647532358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/bottom-bar-contact-architecture-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:26:\"[\"Architecture\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:42;a:20:{s:4:\"tmpl\";i:1325;s:2:\"id\";i:22800;s:5:\"title\";s:41:\"Fly-In  | CTA | Speech-Language Therapist\";s:9:\"thumbnail\";s:103:\"https://library.elementor.com/wp-content/uploads/2022/03/66-Speech-Language-Therapist-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647532720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/fly-in-cta-speech-language-therapist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:25:\"[\"cta\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:43;a:20:{s:4:\"tmpl\";i:1326;s:2:\"id\";i:22812;s:5:\"title\";s:35:\"Full Screen | Verification | Winery\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/67-Winery-Verification.jpg\";s:12:\"tmpl_created\";i:1647761384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/full-screen-verification-winery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:24:\"[\"Alert\",\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:44;a:20:{s:4:\"tmpl\";i:1327;s:2:\"id\";i:22822;s:5:\"title\";s:36:\"Fly-In | Subscription | Nutritionist\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/nutritionist-69-small.jpg\";s:12:\"tmpl_created\";i:1647762620;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-subscription-nutritionist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Food\",\"Health\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:45;a:20:{s:4:\"tmpl\";i:1328;s:2:\"id\";i:22833;s:5:\"title\";s:40:\"Classic | Subscription | App &#038; SaaS\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/app-70-small.jpg\";s:12:\"tmpl_created\";i:1647762955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-subscription-app-saas/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:14:\"[\"App\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:46;a:20:{s:4:\"tmpl\";i:1329;s:2:\"id\";i:22844;s:5:\"title\";s:41:\"Bottom Bar | Discount | Handmade Cupcakes\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/72-Handmade-Cupcakes-Discount.jpg\";s:12:\"tmpl_created\";i:1647763350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-cupcakes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:21:\"[\"Food\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:47;a:20:{s:4:\"tmpl\";i:1330;s:2:\"id\";i:22855;s:5:\"title\";s:40:\"Bottom Bar | Subscription | Fashion Blog\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/fashion-blog-75-small.jpg\";s:12:\"tmpl_created\";i:1647763907;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/bottom-bar-subscription-fashion-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:30:\"[\"Blog\",\"Fashion\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:48;a:20:{s:4:\"tmpl\";i:1331;s:2:\"id\";i:22866;s:5:\"title\";s:28:\"Fly-In | CTA | Private Tutor\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/private-tutor-77-small.jpg\";s:12:\"tmpl_created\";i:1647764062;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-cta-private-tutor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:49;a:20:{s:4:\"tmpl\";i:1332;s:2:\"id\";i:22876;s:5:\"title\";s:30:\"Classic | CTA | Tennis Academy\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/78-Tennis-Academy-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647765192;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-tennis-academy/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:50;a:20:{s:4:\"tmpl\";i:1333;s:2:\"id\";i:22887;s:5:\"title\";s:31:\"Fly-In | CTA | Shared Workspace\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/shared-workspace-79-small.jpg\";s:12:\"tmpl_created\";i:1647765419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-cta-shared-workspace/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Business\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:51;a:20:{s:4:\"tmpl\";i:1334;s:2:\"id\";i:22899;s:5:\"title\";s:30:\"Bottom Bar | CTA | Art Gallery\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/80-Art-Gallery-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647765652;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/bottom-bar-cta-art-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:13:\"[\"Art\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:52;a:20:{s:4:\"tmpl\";i:1335;s:2:\"id\";i:22910;s:5:\"title\";s:44:\"Fly-In | Subscription | Hiking Tours Company\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/hiking-tours-company-81-small.jpg\";s:12:\"tmpl_created\";i:1647765835;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/fly-in-subscription-hiking-tours-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:29:\"[\"Subscribe\",\"Travel\",\"Trip\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:53;a:20:{s:4:\"tmpl\";i:1336;s:2:\"id\";i:22921;s:5:\"title\";s:26:\"Classic | CTA | Music Band\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/music-band-82-small.jpg\";s:12:\"tmpl_created\";i:1647769462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/classic-cta-music-band/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Marketing\",\"Music\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:54;a:20:{s:4:\"tmpl\";i:1337;s:2:\"id\";i:22935;s:5:\"title\";s:35:\"Classic | CTA | Computer Technician\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/comuter-technician-83-small.jpg\";s:12:\"tmpl_created\";i:1647769843;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/classic-cta-computer-technician/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"cta\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:55;a:20:{s:4:\"tmpl\";i:1338;s:2:\"id\";i:22945;s:5:\"title\";s:37:\"Classic | Discount | Delivery Company\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/delivery-company-88-small.jpg\";s:12:\"tmpl_created\";i:1647770834;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-discount-delivery-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Discount\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:56;a:20:{s:4:\"tmpl\";i:1339;s:2:\"id\";i:22959;s:5:\"title\";s:29:\"Classic | Discount | Eco Shop\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/echo-shop-89-small.jpg\";s:12:\"tmpl_created\";i:1647771211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-discount-eco-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Discount\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:57;a:20:{s:4:\"tmpl\";i:1340;s:2:\"id\";i:22972;s:5:\"title\";s:54:\"Fly-In | Subscription | Health &#038; Mindfulness Blog\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/health-blog-91-small.jpg\";s:12:\"tmpl_created\";i:1647771461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/fly-in-subscription-health-mindfulness-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:21:\"[\"Health\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:58;a:20:{s:4:\"tmpl\";i:1341;s:2:\"id\";i:22982;s:5:\"title\";s:31:\"Full Screen | Menu | Art Museum\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/art-museum-112-small.jpg\";s:12:\"tmpl_created\";i:1647771938;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/full-screen-menu-art-museum/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:59;a:20:{s:4:\"tmpl\";i:1342;s:2:\"id\";i:22992;s:5:\"title\";s:40:\"Classic | Discount | Urban Clothing Shop\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/health-blog-91-small-1.jpg\";s:12:\"tmpl_created\";i:1647773067;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-urban-clothing-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Discount\",\"Ecommerce\",\"Fashion\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:60;a:20:{s:4:\"tmpl\";i:1343;s:2:\"id\";i:23004;s:5:\"title\";s:60:\"Full Screen | Menu | Digital &#038; Technology Design School\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-design-tech-school-small-1.jpg\";s:12:\"tmpl_created\";i:1647773366;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:155:\"https://library.elementor.com/popups/full-screen-menu-digital-technology-design-school/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:61;a:20:{s:4:\"tmpl\";i:1344;s:2:\"id\";i:23015;s:5:\"title\";s:62:\"Bottom Bar | Contact | Digital &#038; Technology Design School\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-design-tech-school-small.jpg\";s:12:\"tmpl_created\";i:1647773492;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/popups/bottom-bar-contact-digital-technology-design-school/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:23:\"[\"Contact\",\"Portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:62;a:20:{s:4:\"tmpl\";i:1345;s:2:\"id\";i:23025;s:5:\"title\";s:32:\"Full Screen | Menu | Flower Shop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/flower-shop-small.jpg\";s:12:\"tmpl_created\";i:1647773820;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/full-screen-menu-flower-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:63;a:20:{s:4:\"tmpl\";i:1346;s:2:\"id\";i:23037;s:5:\"title\";s:36:\"Classic | Subscription | Flower Shop\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/flower-shop-small-1.jpg\";s:12:\"tmpl_created\";i:1647773949;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-flower-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Discount\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:64;a:20:{s:4:\"tmpl\";i:1347;s:2:\"id\";i:23056;s:5:\"title\";s:48:\"Classic | Discount | Health &#038; Fitness eBook\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/fitness-ebook-small-1.jpg\";s:12:\"tmpl_created\";i:1647774468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-discount-health-fitness-ebook/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:65;a:20:{s:4:\"tmpl\";i:1348;s:2:\"id\";i:23067;s:5:\"title\";s:37:\"Fly-In | Menu | Baby Sleep Consultant\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/baby-sleep-consultant-small-1.jpg\";s:12:\"tmpl_created\";i:1647778954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/baby-sleep-consultant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:66;a:20:{s:4:\"tmpl\";i:1349;s:2:\"id\";i:23077;s:5:\"title\";s:46:\"Classic | Subscription | Baby Sleep Consultant\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/baby-sleep-consultant-small.jpg\";s:12:\"tmpl_created\";i:1647779074;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/classic-subscription-baby-sleep-consultant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:12:\"[\"Discount\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:67;a:20:{s:4:\"tmpl\";i:1350;s:2:\"id\";i:23090;s:5:\"title\";s:33:\"Full Screen | Menu | Luxury Hotel\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/luxury-hotel-small.jpg\";s:12:\"tmpl_created\";i:1647779390;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/full-screen-menu-luxury-hotel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:68;a:20:{s:4:\"tmpl\";i:1351;s:2:\"id\";i:23100;s:5:\"title\";s:31:\"Fly-In | Booking | Luxury Hotel\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/luxury-hotel-small-1.jpg\";s:12:\"tmpl_created\";i:1647779500;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-booking-luxury-hotel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Booking\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:69;a:20:{s:4:\"tmpl\";i:1352;s:2:\"id\";i:23109;s:5:\"title\";s:38:\"Full Screen | Menu | Design Conference\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/design-conference-35-small.jpg\";s:12:\"tmpl_created\";i:1647779675;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-menu-design-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:70;a:20:{s:4:\"tmpl\";i:1353;s:2:\"id\";i:23120;s:5:\"title\";s:41:\"Full Screen | Booking | Design Conference\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/design-conference-35-small-1.jpg\";s:12:\"tmpl_created\";i:1647779793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/full-screen-booking-design-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:35:\"[\"Booking\",\"Conference\",\"Creative\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:71;a:20:{s:4:\"tmpl\";i:1354;s:2:\"id\";i:23129;s:5:\"title\";s:29:\"Slide-In | Menu | VR Headsets\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/VR-headset-small.jpg\";s:12:\"tmpl_created\";i:1647781211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/slide-in-menu-vr-headsets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:72;a:20:{s:4:\"tmpl\";i:1355;s:2:\"id\";i:23139;s:5:\"title\";s:31:\"Classic | Contact | VR Headsets\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/VR-headset-small-1.jpg\";s:12:\"tmpl_created\";i:1647781384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-contact-vr-headsets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:73;a:20:{s:4:\"tmpl\";i:1356;s:2:\"id\";i:23149;s:5:\"title\";s:38:\"Slide-In | Menu | Portrait Photography\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/48-portrair-photography-Menu.jpg\";s:12:\"tmpl_created\";i:1647782336;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/slide-in-menu-portrait-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:74;a:20:{s:4:\"tmpl\";i:1357;s:2:\"id\";i:23159;s:5:\"title\";s:47:\"Hello Bar | Subscription | Portrait Photography\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2022/03/48-portrair-photography-Subscription.jpg\";s:12:\"tmpl_created\";i:1647782478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/hello-bar-subscription-portrait-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Blog\",\"Photography\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:75;a:20:{s:4:\"tmpl\";i:1358;s:2:\"id\";i:23169;s:5:\"title\";s:32:\"Full Screen | Menu | English Pub\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/49-englisg-pub-Menu.jpg\";s:12:\"tmpl_created\";i:1647782664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/full-screen-menu-english-pub/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:76;a:20:{s:4:\"tmpl\";i:1359;s:2:\"id\";i:23179;s:5:\"title\";s:32:\"Classic | Discount | English Pub\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/49-englisg-pub-Discount.jpg\";s:12:\"tmpl_created\";i:1647782796;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-discount-english-pub/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:20:\"[\"Discount\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:77;a:20:{s:4:\"tmpl\";i:1360;s:2:\"id\";i:23189;s:5:\"title\";s:27:\"Full Screen | Menu | Singer\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/58-Music-Artist-Menu.jpg\";s:12:\"tmpl_created\";i:1647783070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/full-screen-menu-singer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:29:\"[\"Fullscreen\",\"menu\",\"Music\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:78;a:20:{s:4:\"tmpl\";i:1361;s:2:\"id\";i:23200;s:5:\"title\";s:31:\"Classic | Subscription | Singer\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/58-Music-Artist-Subscription.jpg\";s:12:\"tmpl_created\";i:1647783249;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-subscription-singer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Music\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:79;a:20:{s:4:\"tmpl\";i:1362;s:2:\"id\";i:23210;s:5:\"title\";s:38:\"Full Screen | Menu | Virtual Assistant\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/virtual-assistnt-73-small.jpg\";s:12:\"tmpl_created\";i:1647784292;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-menu-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:80;a:20:{s:4:\"tmpl\";i:1363;s:2:\"id\";i:23223;s:5:\"title\";s:39:\"Hello Bar | Contact | Virtual Assistant\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/73-Virtual-Assistant-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647784616;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-contact-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:37:\"[\"Contact\",\"Psychologist\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:81;a:20:{s:4:\"tmpl\";i:1364;s:2:\"id\";i:23234;s:5:\"title\";s:32:\"Slide-In  | Menu | Personal Chef\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/74-Personal-Chef-Menu.jpg\";s:12:\"tmpl_created\";i:1647798194;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/slide-in-menu-personal-chef/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:82;a:20:{s:4:\"tmpl\";i:1365;s:2:\"id\";i:23244;s:5:\"title\";s:29:\"Classic | CTA | Personal Chef\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/74-Personal-Chef-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647798297;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-personal-chef/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Booking\",\"Chef\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:83;a:20:{s:4:\"tmpl\";i:1366;s:2:\"id\";i:23254;s:5:\"title\";s:31:\"Full Screen | Menu | Food Truck\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/food-truck-76-small-1.jpg\";s:12:\"tmpl_created\";i:1647798447;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/full-screen-menu-food-truck/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:84;a:20:{s:4:\"tmpl\";i:1367;s:2:\"id\";i:23265;s:5:\"title\";s:30:\"Fly-In | Discount | Food Truck\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/food-truck-76-small.jpg\";s:12:\"tmpl_created\";i:1647798657;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-discount-food-truck/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Discount\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:85;a:20:{s:4:\"tmpl\";i:1369;s:2:\"id\";i:23323;s:5:\"title\";s:28:\"Classic | CTA | Black Friday\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-6-Small.jpg\";s:12:\"tmpl_created\";i:1647855505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-cta-black-friday/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:86;a:20:{s:4:\"tmpl\";i:1370;s:2:\"id\";i:23329;s:5:\"title\";s:29:\"Slide-In | CTA | Black Friday\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-5-Small.jpg\";s:12:\"tmpl_created\";i:1647855865;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/slide-in-cta-black-friday/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:87;a:20:{s:4:\"tmpl\";i:1371;s:2:\"id\";i:23335;s:5:\"title\";s:31:\"Slide-In | CTA | Black Friday 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-1-Small.jpg\";s:12:\"tmpl_created\";i:1647856357;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/slide-in-cta-black-friday-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:88;a:20:{s:4:\"tmpl\";i:1372;s:2:\"id\";i:23341;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-3-Small.jpg\";s:12:\"tmpl_created\";i:1647856493;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:89;a:20:{s:4:\"tmpl\";i:1373;s:2:\"id\";i:23347;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-2-Small.jpg\";s:12:\"tmpl_created\";i:1647856891;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:90;a:20:{s:4:\"tmpl\";i:1374;s:2:\"id\";i:23354;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 4\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-4-Small.jpg\";s:12:\"tmpl_created\";i:1647856996;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:91;a:20:{s:4:\"tmpl\";i:1375;s:2:\"id\";i:23394;s:5:\"title\";s:27:\"Classic | CTA | Halloween 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-3-Small.jpg\";s:12:\"tmpl_created\";i:1647857351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-halloween-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:31:\"[\"cta\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:92;a:20:{s:4:\"tmpl\";i:1376;s:2:\"id\";i:23401;s:5:\"title\";s:33:\"Slide-In | Discount | Halloween 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-2-Small.jpg\";s:12:\"tmpl_created\";i:1647857567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-halloween-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:36:\"[\"Discount\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:93;a:20:{s:4:\"tmpl\";i:1377;s:2:\"id\";i:23407;s:5:\"title\";s:33:\"Slide-In | Discount | Halloween 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-1-Small.jpg\";s:12:\"tmpl_created\";i:1647857814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-halloween-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:36:\"[\"Discount\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:94;a:20:{s:4:\"tmpl\";i:1378;s:2:\"id\";i:23416;s:5:\"title\";s:31:\"Fly-In | Discount | Halloween 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-5-Small.jpg\";s:12:\"tmpl_created\";i:1647858024;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-discount-halloween-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:44:\"[\"Discount\",\"Ecommerce\",\"Halloween\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:95;a:20:{s:4:\"tmpl\";i:1379;s:2:\"id\";i:23422;s:5:\"title\";s:36:\"Classic | Subscription | Halloween 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-4-Small.jpg\";s:12:\"tmpl_created\";i:1647858246;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-halloween-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:48:\"[\"Discount\",\"Ecommerce\",\"Halloween\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:96;a:20:{s:4:\"tmpl\";i:1380;s:2:\"id\";i:23471;s:5:\"title\";s:28:\"Slide-In | CTA | Christmas 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-2-Small.jpg\";s:12:\"tmpl_created\";i:1647859193;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/slide-in-cta-christmas-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Christmas\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:97;a:20:{s:4:\"tmpl\";i:1381;s:2:\"id\";i:23477;s:5:\"title\";s:28:\"Slide-In | CTA | Christmas 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-4-Small.jpg\";s:12:\"tmpl_created\";i:1647859838;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/slide-in-cta-christmas-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Christmas\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:98;a:20:{s:4:\"tmpl\";i:1382;s:2:\"id\";i:23483;s:5:\"title\";s:26:\"Fly-In | CTA | Christmas 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-1-Small.jpg\";s:12:\"tmpl_created\";i:1647860157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/fly-in-cta-christmas-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Christmas\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:99;a:20:{s:4:\"tmpl\";i:1383;s:2:\"id\";i:23489;s:5:\"title\";s:33:\"Slide-In | Discount | Christmas 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-5-Small.jpg\";s:12:\"tmpl_created\";i:1647860302;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-christmas-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:31:\"[\"Christmas\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:100;a:20:{s:4:\"tmpl\";i:1384;s:2:\"id\";i:23496;s:5:\"title\";s:32:\"Classic | Discount | Christmas 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-3-Small.jpg\";s:12:\"tmpl_created\";i:1647860454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-discount-christmas-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Christmas\",\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:101;a:20:{s:4:\"tmpl\";i:1385;s:2:\"id\";i:23523;s:5:\"title\";s:30:\"Classic | CTA | Valentines Day\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-2-Small.jpg\";s:12:\"tmpl_created\";i:1647860912;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-valentines-day/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"cta\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:102;a:20:{s:4:\"tmpl\";i:1386;s:2:\"id\";i:23529;s:5:\"title\";s:39:\"Hello Bar | Discount | Valentines Day 2\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-1-Small.jpg\";s:12:\"tmpl_created\";i:1647861064;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-discount-valentines-day-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:30:\"[\"Discount\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:103;a:20:{s:4:\"tmpl\";i:1387;s:2:\"id\";i:23536;s:5:\"title\";s:32:\"Classic | CTA | Valentines Day 3\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-3-Small.jpg\";s:12:\"tmpl_created\";i:1647861536;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-cta-valentines-day-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"cta\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:104;a:20:{s:4:\"tmpl\";i:1388;s:2:\"id\";i:23586;s:5:\"title\";s:51:\"Fly-In | Subscribe | Health &#038; Wellness Company\";s:9:\"thumbnail\";s:103:\"https://library.elementor.com/wp-content/uploads/2022/03/35-Subscribe-Health-Wellness-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647862008;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/fly-in-subscribe-health-wellness-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:24:\"[\"Business\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:105;a:20:{s:4:\"tmpl\";i:1389;s:2:\"id\";i:23592;s:5:\"title\";s:34:\"Classic | Subscribe | Tech Company\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/36-Subscribe-Tech-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647866706;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-subscribe-tech-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"Marketing\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:106;a:20:{s:4:\"tmpl\";i:1390;s:2:\"id\";i:23598;s:5:\"title\";s:36:\"Classic | Contact Us | Fight Classes\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/37-Contact-Us-Fight-Classes-Small.jpg\";s:12:\"tmpl_created\";i:1647866869;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-contact-us-fight-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:107;a:20:{s:4:\"tmpl\";i:1391;s:2:\"id\";i:23611;s:5:\"title\";s:31:\"Classic | CTA | Mochi Shop Sale\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2022/03/39-Click-Through-Mochi-Shop-Sale-Small.jpg\";s:12:\"tmpl_created\";i:1647867750;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-cta-mochi-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"cta\",\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:108;a:20:{s:4:\"tmpl\";i:1392;s:2:\"id\";i:23618;s:5:\"title\";s:28:\"Classic | CTA | Fashion Shop\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2022/03/40-Click-Through-Fashion-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1647868251;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-cta-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:109;a:20:{s:4:\"tmpl\";i:1393;s:2:\"id\";i:23624;s:5:\"title\";s:29:\"Fly-In | Login | Tech Company\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/41-Login-Tech-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647868704;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/fly-in-login-tech-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:9:\"[\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:110;a:20:{s:4:\"tmpl\";i:1394;s:2:\"id\";i:23630;s:5:\"title\";s:36:\"Fly-In | Verification | Liquor Store\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/42-Verification-Liquor-Store-Small.jpg\";s:12:\"tmpl_created\";i:1647870308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-verification-liquor-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:16:\"[\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:111;a:20:{s:4:\"tmpl\";i:1395;s:2:\"id\";i:23636;s:5:\"title\";s:39:\"Hello Bar | Subscribe | Online Magazine\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/44-Subscribe-Online-Magazine-Small.jpg\";s:12:\"tmpl_created\";i:1647870465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-subscribe-online-magazine/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:20:\"[\"Blog\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:112;a:20:{s:4:\"tmpl\";i:1396;s:2:\"id\";i:23642;s:5:\"title\";s:27:\"Fly-In | Login | Health Spa\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/43-Login-Health-Spa-Small.jpg\";s:12:\"tmpl_created\";i:1647872427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/fly-in-login-health-spa/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Login\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:113;a:20:{s:4:\"tmpl\";i:1397;s:2:\"id\";i:23648;s:5:\"title\";s:33:\"Fly-In | Verification | Wine Shop\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/45-Verification-Wine-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1647872627;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/fly-in-verification-wine-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:16:\"[\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:114;a:20:{s:4:\"tmpl\";i:1421;s:2:\"id\";i:24235;s:5:\"title\";s:24:\"Ladydog Club &#8211; NFT\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/05/Ladydog_Club.jpg\";s:12:\"tmpl_created\";i:1651525072;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/ladydog-club-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:115;a:20:{s:4:\"tmpl\";i:1422;s:2:\"id\";i:24166;s:5:\"title\";s:15:\"Dot &#8211; NFT\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/05/Dot-250_280.jpg\";s:12:\"tmpl_created\";i:1651525117;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/lp/dot-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:116;a:20:{s:4:\"tmpl\";i:1423;s:2:\"id\";i:24191;s:5:\"title\";s:28:\"Cosmic Neighbors &#8211; NFT\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Cosmic_Neighbors-250_280.jpg\";s:12:\"tmpl_created\";i:1651525124;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/cosmic-neighbors-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:117;a:20:{s:4:\"tmpl\";i:1424;s:2:\"id\";i:24255;s:5:\"title\";s:30:\"Happy Food Friends &#8211; NFT\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/05/Featured_Image.jpg\";s:12:\"tmpl_created\";i:1651525475;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/happy-food-friends-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:118;a:20:{s:4:\"tmpl\";i:1443;s:2:\"id\";i:24599;s:5:\"title\";s:27:\"Wireframe &#8211; Courses 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Courses-1.jpg\";s:12:\"tmpl_created\";i:1653989626;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/wireframe-courses-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:180:\"[\"About\",\"Academy\",\"Booking\",\"Business\",\"Course Online\",\"Features\",\"Footer\",\"Landing Pages\",\"Online Service\",\"Professional\",\"School\",\"Services\",\"Subscribe\",\"Teacher\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:119;a:20:{s:4:\"tmpl\";i:1444;s:2:\"id\";i:24614;s:5:\"title\";s:28:\"Wireframe &#8211; Services 1\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-1-2.jpg\";s:12:\"tmpl_created\";i:1653990084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:139:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Form\",\"Header\",\"Landing Pages\",\"Online Service\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:120;a:20:{s:4:\"tmpl\";i:1445;s:2:\"id\";i:24629;s:5:\"title\";s:28:\"Wireframe &#8211; Services 2\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-2-2.jpg\";s:12:\"tmpl_created\";i:1653990132;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:123:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Form\",\"Gallery\",\"Landing Pages\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:121;a:20:{s:4:\"tmpl\";i:1446;s:2:\"id\";i:24644;s:5:\"title\";s:27:\"Wireframe &#8211; Webinar 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Webinar-1.jpg\";s:12:\"tmpl_created\";i:1653990164;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/wireframe-webinar-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:177:\"[\"About\",\"Academy\",\"Booking\",\"Conference\",\"Course Online\",\"Education\",\"Features\",\"Footer\",\"Form\",\"Landing Pages\",\"Online Event\",\"Online Service\",\"Subscribe\",\"Virtual\",\"Webinar\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:122;a:20:{s:4:\"tmpl\";i:1447;s:2:\"id\";i:24655;s:5:\"title\";s:28:\"Wireframe &#8211; Services 3\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-3-2.jpg\";s:12:\"tmpl_created\";i:1653990198;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:143:\"[\"About\",\"Agency\",\"Business\",\"Contact\",\"Footer\",\"Form\",\"Gallery\",\"Landing Pages\",\"Portfolio\",\"Professional\",\"Project\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:123;a:20:{s:4:\"tmpl\";i:1448;s:2:\"id\";i:24677;s:5:\"title\";s:28:\"Wireframe &#8211; Services 4\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-4.jpg\";s:12:\"tmpl_created\";i:1653990233;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:102:\"[\"About\",\"Business\",\"Contact\",\"Footer\",\"Form\",\"Landing Pages\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:124;a:20:{s:4:\"tmpl\";i:1449;s:2:\"id\";i:24687;s:5:\"title\";s:28:\"Wireframe &#8211; Products 1\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Products-1.jpg\";s:12:\"tmpl_created\";i:1653990273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-products-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:128:\"[\"About\",\"Booking\",\"Business\",\"Clients\",\"Ecommerce\",\"Features\",\"Footer\",\"Landing Pages\",\"Products\",\"Sales\",\"Shop\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:125;a:20:{s:4:\"tmpl\";i:1450;s:2:\"id\";i:24706;s:5:\"title\";s:28:\"Wireframe &#8211; Services 5\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-5.jpg\";s:12:\"tmpl_created\";i:1653990322;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:149:\"[\"About\",\"Booking\",\"Consulting\",\"Contact\",\"Doctor\",\"Footer\",\"Form\",\"Header\",\"Landing Pages\",\"Online Service\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:126;a:20:{s:4:\"tmpl\";i:1451;s:2:\"id\";i:23604;s:5:\"title\";s:38:\"Classic | Subscribe | Nail Polish Shop\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2022/03/38-Subscribe-Nail-Polish-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1660205114;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/classic-subscribe-nail-polish-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:20:\"[\"Blog\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:127;a:20:{s:4:\"tmpl\";i:1452;s:2:\"id\";i:23047;s:5:\"title\";s:46:\"Fly-In | Contact | Health &#038; Fitness eBook\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/fitness-ebook-small.jpg\";s:12:\"tmpl_created\";i:1660205149;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/fly-in-contact-health-fitness-ebook/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Contact\",\"Ebook\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:128;a:20:{s:4:\"tmpl\";i:1199;s:2:\"id\";i:18839;s:5:\"title\";s:27:\"Hello Bar | CTA | eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/05/350x250.png\";s:12:\"tmpl_created\";i:1621870603;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/hello-bar-cta-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:41:\"[\"Ecommerce\",\"Online Shop\",\"Sale\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:129;a:20:{s:4:\"tmpl\";i:1247;s:2:\"id\";i:21907;s:5:\"title\";s:50:\"Fly-In | Team Details  | Electronic Music Festival\";s:9:\"thumbnail\";s:104:\"https://library.elementor.com/wp-content/uploads/2022/03/Kit-8-electronic-music-festival-CTA-image-1.jpg\";s:12:\"tmpl_created\";i:1646660881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/popups/fly-in-team-details-popup-electronic-music-festival/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:130;a:20:{s:4:\"tmpl\";i:1253;s:2:\"id\";i:22162;s:5:\"title\";s:46:\"Full Screen | Menu | Electronic Music Festival\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/8-music-festival-Team-Details.jpg\";s:12:\"tmpl_created\";i:1647272934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:154:\"https://library.elementor.com/popups/full-screen-menu-popup-electronic-music-festival/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:131;a:20:{s:4:\"tmpl\";i:1254;s:2:\"id\";i:22172;s:5:\"title\";s:45:\"Classic | Discount | Health &#038; Beauty Spa\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/health-beauty-spa-small.jpg\";s:12:\"tmpl_created\";i:1647273547;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/classic-discount-popup-health-beauty-spa/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:36:\"[\"Hair\",\"Health\",\"Sales\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:132;a:20:{s:4:\"tmpl\";i:1255;s:2:\"id\";i:22183;s:5:\"title\";s:44:\"Hello Bar | CTA | Environmental Organization\";s:9:\"thumbnail\";s:104:\"https://library.elementor.com/wp-content/uploads/2022/03/11-Environmental-Organization-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647274384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:152:\"https://library.elementor.com/popups/hello-bar-cta-popup-environmental-organization/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:133;a:20:{s:4:\"tmpl\";i:1256;s:2:\"id\";i:22195;s:5:\"title\";s:39:\"Classic | Discount | Italian Restaurant\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/restaurant-small.jpg\";s:12:\"tmpl_created\";i:1647329432;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:147:\"https://library.elementor.com/popups/classic-discount-popup-italian-restaurant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Restaurant\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:134;a:20:{s:4:\"tmpl\";i:1257;s:2:\"id\";i:22210;s:5:\"title\";s:45:\"Bottom Bar | Discount | Technology Conference\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/tech-conference-small.jpg\";s:12:\"tmpl_created\";i:1647330423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:153:\"https://library.elementor.com/popups/bottom-bar-discount-popup-technology-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:38:\"[\"Conference\",\"Sales\",\"Save the Date\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:135;a:20:{s:4:\"tmpl\";i:1258;s:2:\"id\";i:22221;s:5:\"title\";s:32:\"Hello Bar | Menu | Tattoo Studio\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/tattoo-studio-small-1.jpg\";s:12:\"tmpl_created\";i:1647330705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/hello-bar-menu-popup-tattoo-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:17:\"[\"Header\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:136;a:20:{s:4:\"tmpl\";i:1259;s:2:\"id\";i:22231;s:5:\"title\";s:37:\"Full Screen | Booking | Tattoo Studio\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/tattoo-studio-small.jpg\";s:12:\"tmpl_created\";i:1647331823;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-booking-popup-tattoo-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:32:\"[\"Booking\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:137;a:20:{s:4:\"tmpl\";i:1260;s:2:\"id\";i:22251;s:5:\"title\";s:34:\"Classic | Discount | Dental Clinic\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/dental-clinic-small.jpg\";s:12:\"tmpl_created\";i:1647332171;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-popup-dental-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:30:\"[\"Health\",\"Marketing\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:138;a:20:{s:4:\"tmpl\";i:1261;s:2:\"id\";i:22261;s:5:\"title\";s:34:\"Slide-In | Contact | Makeup Artist\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/20-Makeup-Artist-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647333946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/slide-in-contact-popup-makeup-artist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:139;a:20:{s:4:\"tmpl\";i:1262;s:2:\"id\";i:22271;s:5:\"title\";s:24:\"Fly-In | CTA | Headphone\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/headphones-1-small.jpg\";s:12:\"tmpl_created\";i:1647334784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-cta-popup-headphone/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:41:\"[\"cta\",\"Ecommerce\",\"Marketing\",\"Product\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:140;a:20:{s:4:\"tmpl\";i:1263;s:2:\"id\";i:22277;s:5:\"title\";s:29:\"Classic | CTA | Online Course\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/online-course-2.jpg\";s:12:\"tmpl_created\";i:1647337110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/classic-cta-popup-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:35:\"[\"Course Online\",\"cta\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:141;a:20:{s:4:\"tmpl\";i:1264;s:2:\"id\";i:22283;s:5:\"title\";s:40:\"Bottom Bar | Contact | Virtual Assistant\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/virtual-assistant-3.jpg\";s:12:\"tmpl_created\";i:1647337517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/bottom-bar-contact-popup-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:142;a:20:{s:4:\"tmpl\";i:1265;s:2:\"id\";i:22289;s:5:\"title\";s:32:\"Fly-In | Contact | Private Tutor\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/private-tutor-4.jpg\";s:12:\"tmpl_created\";i:1647337676;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/fly-in-contact-popup-private-tutor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:27:\"[\"Contact\",\"Course Online\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:143;a:20:{s:4:\"tmpl\";i:1266;s:2:\"id\";i:22295;s:5:\"title\";s:31:\"Classic |  Login | Login Travel\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/login-travel-6.jpg\";s:12:\"tmpl_created\";i:1647339467;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-login-popup-login-travel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:9:\"[\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:144;a:20:{s:4:\"tmpl\";i:1267;s:2:\"id\";i:22301;s:5:\"title\";s:36:\"Full Screen | Login | Login Business\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/login-business-7.jpg\";s:12:\"tmpl_created\";i:1647339782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/full-screen-login-popup-login-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:16:\"[\"Login\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:145;a:20:{s:4:\"tmpl\";i:1268;s:2:\"id\";i:22307;s:5:\"title\";s:28:\"Classic | Login | Login Blog\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/login-blog-8.jpg\";s:12:\"tmpl_created\";i:1647339986;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-login-popup-login-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Blog\",\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:146;a:20:{s:4:\"tmpl\";i:1269;s:2:\"id\";i:22313;s:5:\"title\";s:31:\"Classic | Login | Login Fashion\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/login-fashion-9.jpg\";s:12:\"tmpl_created\";i:1647340204;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-login-popup-login-fashion/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Fashion\",\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:147;a:20:{s:4:\"tmpl\";i:1270;s:2:\"id\";i:22319;s:5:\"title\";s:40:\"Classic |  Login | Login Design Platform\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/03/login-design-platform-10.jpg\";s:12:\"tmpl_created\";i:1647340531;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:147:\"https://library.elementor.com/popups/classic-login-popup-login-design-platform/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"Design\",\"Login\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:148;a:20:{s:4:\"tmpl\";i:1271;s:2:\"id\";i:22325;s:5:\"title\";s:36:\"Fly-In | Contact | Digital Marketing\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-marketing-11.jpg\";s:12:\"tmpl_created\";i:1647340770;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/fly-in-contact-popup-digital-marketing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:51:\"[\"Business\",\"Contact\",\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:149;a:20:{s:4:\"tmpl\";i:1272;s:2:\"id\";i:22331;s:5:\"title\";s:36:\"Fly-In | CTA | Dog Cat Food Delivery\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/dog-cat-food-delivery-5.jpg\";s:12:\"tmpl_created\";i:1647341069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/fly-in-cta-popup-dog-cat-food-delivery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:33:\"[\"cta\",\"Delivery Service\",\"Pets\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:150;a:20:{s:4:\"tmpl\";i:1273;s:2:\"id\";i:22337;s:5:\"title\";s:37:\"Full Screen | Contact | Design Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/design-studio-12.jpg\";s:12:\"tmpl_created\";i:1647341370;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-contact-popup-design-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:39:\"[\"Business\",\"Contact\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:151;a:20:{s:4:\"tmpl\";i:1274;s:2:\"id\";i:22343;s:5:\"title\";s:44:\"Classic | Contact | Support Product Platform\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/03/support-13.jpg\";s:12:\"tmpl_created\";i:1647341972;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/classic-contact-support-product-platform/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Contact\",\"Support\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:152;a:20:{s:4:\"tmpl\";i:1275;s:2:\"id\";i:22371;s:5:\"title\";s:38:\"Full Screen | Contact | Small Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/small-business-14.jpg\";s:12:\"tmpl_created\";i:1647342508;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-contact-small-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:40:\"[\"Business\",\"Contact\",\"Interior Design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:153;a:20:{s:4:\"tmpl\";i:1276;s:2:\"id\";i:22377;s:5:\"title\";s:31:\"Classic | Contact | Online Shop\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/online-shop-15.jpg\";s:12:\"tmpl_created\";i:1647352786;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-contact-online-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:154;a:20:{s:4:\"tmpl\";i:1277;s:2:\"id\";i:22383;s:5:\"title\";s:40:\"Classic | Booking | Children Optometrist\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/children-optometrist-16.jpg\";s:12:\"tmpl_created\";i:1647352963;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-booking-children-optometrist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:53:\"[\"Booking\",\"Business\",\"Contact\",\"Education\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:155;a:20:{s:4:\"tmpl\";i:1278;s:2:\"id\";i:22389;s:5:\"title\";s:28:\"Fly-In | Contact | Open Week\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/03/open-week17.jpg\";s:12:\"tmpl_created\";i:1647353281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-contact-open-week/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:34:\"[\"Business\",\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:156;a:20:{s:4:\"tmpl\";i:1279;s:2:\"id\";i:22397;s:5:\"title\";s:43:\"Full Screen | CTA | Plant Pots Online Store\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/plant-pots-online-store-18.jpg\";s:12:\"tmpl_created\";i:1647353429;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-cta-plant-pots-online-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:33:\"[\"Ecommerce\",\"Marketing\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:157;a:20:{s:4:\"tmpl\";i:1054;s:2:\"id\";i:15414;s:5:\"title\";s:32:\"Classic | Contact | Dance Studio\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/PopUp.jpg\";s:12:\"tmpl_created\";i:1603180596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-contact-dance-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:762;s:11:\"trend_index\";i:650;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:158;a:20:{s:4:\"tmpl\";i:1398;s:2:\"id\";i:23687;s:5:\"title\";s:32:\"Pizza Promotion &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/48-Pizza-Promotion.jpg\";s:12:\"tmpl_created\";i:1649670575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/pizza-promotion-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:92:\"[\"Business\",\"Cooking\",\"Delivery\",\"Discount\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:159;a:20:{s:4:\"tmpl\";i:1400;s:2:\"id\";i:23751;s:5:\"title\";s:33:\"Baby Sleep Webinar &#8211; Events\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/63-Baby-Sleep-Webinar.jpg\";s:12:\"tmpl_created\";i:1649676065;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/baby-sleep-webinar-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:227:\"[\"Baby\",\"Booking\",\"Business\",\"Children\",\"Course Online\",\"Education\",\"Events\",\"Health\",\"Landing Pages\",\"Life Coach\",\"Lifestyle\",\"Online Event\",\"Online Service\",\"Parenting\",\"Professional\",\"Remote\",\"Services\",\"Training\",\"Webinar\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:160;a:20:{s:4:\"tmpl\";i:1401;s:2:\"id\";i:23776;s:5:\"title\";s:34:\"Ski Hotel Promotion &#8211; Travel\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/04/64-Ski-Hotel-Promotion.jpg\";s:12:\"tmpl_created\";i:1649691720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/ski-hotel-promotion-travel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:118:\"[\"Accommodation\",\"Booking\",\"Discount. Landing Pages\",\"Lifestyle\",\"Luxury\",\"Services\",\"Spa\",\"Travel\",\"Trip\",\"Vacation\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:161;a:20:{s:4:\"tmpl\";i:1402;s:2:\"id\";i:23804;s:5:\"title\";s:30:\"Cake Delivery &#8211; Business\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/04/67-Cake-Delivery.jpg\";s:12:\"tmpl_created\";i:1649692909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/cake-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:101:\"[\"Bakery\",\"Business\",\"Cake\",\"Cooking\",\"Delivery\",\"Discount\",\"Food\",\"Landing Pages\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:162;a:20:{s:4:\"tmpl\";i:1403;s:2:\"id\";i:23832;s:5:\"title\";s:32:\"Furniture Store &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/87-Furniture-Store.jpg\";s:12:\"tmpl_created\";i:1649694812;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/furniture-store-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:232:\"[\"Architecture\",\"Art\",\"Business\",\"Construction\",\"Coupon\",\"Creative\",\"Decor\",\"Designer\",\"Discount\",\"Fashion\",\"Furniture Design\",\"Home\",\"House\",\"Interior Design\",\"Landing Pages\",\"Lifestyle\",\"Products\",\"Professional\",\"Services\",\"Shop\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:163;a:20:{s:4:\"tmpl\";i:1404;s:2:\"id\";i:23746;s:5:\"title\";s:22:\"Nails &#8211; Business\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/04/62-Nails-1.jpg\";s:12:\"tmpl_created\";i:1649704635;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/nails-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:173:\"[\"Art\",\"Beauty\",\"Business\",\"Colorful\",\"Cosmetics\",\"Creative\",\"Design\",\"Discount\",\"Fashion\",\"Girly\",\"Landing Pages\",\"Lifestyle\",\"Manicure\",\"Modern\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:164;a:20:{s:4:\"tmpl\";i:1405;s:2:\"id\";i:23846;s:5:\"title\";s:29:\"Music Festival &#8211; Events\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/04/88-Music-Festival.jpg\";s:12:\"tmpl_created\";i:1649707763;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/music-festival-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:128:\"[\"Author\",\"Booking\",\"Business\",\"Creative\",\"Discount\",\"Events\",\"Landing Pages\",\"Music\",\"Online\",\"Online Event\",\"Party\",\"Virtual\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:165;a:20:{s:4:\"tmpl\";i:1406;s:2:\"id\";i:23872;s:5:\"title\";s:40:\"Fashion Styling Course &#8211; Education\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/89-Fashion-Styling-Course.jpg\";s:12:\"tmpl_created\";i:1649708569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/fashion-styling-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:173:\"[\"Aesthetic\",\"Art\",\"Beauty\",\"Business\",\"Course Online\",\"Creative\",\"Discount\",\"Education\",\"Fashion\",\"Landing Pages\",\"Lifestyle\",\"Online\",\"Online Service\",\"Stylist\",\"Virtual\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:166;a:20:{s:4:\"tmpl\";i:1407;s:2:\"id\";i:23897;s:5:\"title\";s:33:\"Bags Online Shop &#8211; Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/04/90-Bags-Online-Shop.jpg\";s:12:\"tmpl_created\";i:1649709513;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/bags-online-shop-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:170:\"[\"Art\",\"Bag\",\"Business\",\"Creative\",\"Design\",\"Discount\",\"Fashion\",\"Landing Pages\",\"Lifestyle\",\"Luxury\",\"Modern\",\"Online\",\"Online Shop\",\"Products\",\"Sales\",\"Shop\",\"Stylist\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:167;a:20:{s:4:\"tmpl\";i:1408;s:2:\"id\";i:23932;s:5:\"title\";s:32:\"Cooking Academy &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/91-Cooking-Academy.jpg\";s:12:\"tmpl_created\";i:1649710216;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/cooking-academy-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:145:\"[\"Academy\",\"Booking\",\"Business\",\"Chef\",\"Cooking\",\"Education\",\"Food\",\"Free Trial\",\"Landing Pages\",\"Professional\",\"School\",\"Teacher\",\"Testimonial\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:168;a:20:{s:4:\"tmpl\";i:1409;s:2:\"id\";i:23970;s:5:\"title\";s:45:\"Ophthalmology Medical Clinic &#8211; Business\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/04/92-Ophthalmology-Medical-Clinic.jpg\";s:12:\"tmpl_created\";i:1649711096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/ophthalmology-medical-clinic-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:165:\"[\"About\",\"Business\",\"Care\",\"Consulting\",\"Eye\",\"Free Trial\",\"Glasses\",\"Health\",\"Landing Pages\",\"Lifestyle\",\"Medical\",\"Modern\",\"Optometrist\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:169;a:20:{s:4:\"tmpl\";i:1425;s:2:\"id\";i:24331;s:5:\"title\";s:24:\"Wireframe &#8211; Home 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-1.jpg\";s:12:\"tmpl_created\";i:1653988363;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:170;a:20:{s:4:\"tmpl\";i:1218;s:2:\"id\";i:20792;s:5:\"title\";s:26:\"Luxury Car &#8211; Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/11/250x280-1.jpg\";s:12:\"tmpl_created\";i:1636903770;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/lp/luxury-car-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:54:\"[\"car\",\"Ecommerce\",\"Landing Pages\",\"Luxury\",\"Product\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:171;a:20:{s:4:\"tmpl\";i:1428;s:2:\"id\";i:24398;s:5:\"title\";s:25:\"Wireframe &#8211; About 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-1.jpg\";s:12:\"tmpl_created\";i:1653988534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:83:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Professional\",\"Services\",\"Team\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:172;a:20:{s:4:\"tmpl\";i:991;s:2:\"id\";i:13413;s:5:\"title\";s:33:\"Classic | Contact | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Help.jpg\";s:12:\"tmpl_created\";i:1587474761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-contact-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:530;s:11:\"trend_index\";i:369;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:173;a:20:{s:4:\"tmpl\";i:1053;s:2:\"id\";i:15272;s:5:\"title\";s:32:\"Classic | Contact | Psychologist\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/PopUp.png\";s:12:\"tmpl_created\";i:1600170487;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-contact-psychologist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:578;s:11:\"trend_index\";i:312;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:174;a:20:{s:4:\"tmpl\";i:899;s:2:\"id\";i:11839;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Header_small.png\";s:12:\"tmpl_created\";i:1569430015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"header\",\"portfolio\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:189;s:11:\"trend_index\";i:20;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:175;a:20:{s:4:\"tmpl\";i:1433;s:2:\"id\";i:24477;s:5:\"title\";s:27:\"Wireframe &#8211; Gallery 2\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Gallery-2.jpg\";s:12:\"tmpl_created\";i:1653988835;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-gallery-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:82:\"[\"Business\",\"Contact\",\"Design\",\"Footer\",\"Gallery\",\"Header\",\"Portfolio\",\"Services\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:176;a:20:{s:4:\"tmpl\";i:1205;s:2:\"id\";i:20233;s:5:\"title\";s:32:\"Art Magazine &#8211; Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633881371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/art-magazine-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:48:\"[\"Art\",\"Coming Soon\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:177;a:20:{s:4:\"tmpl\";i:1214;s:2:\"id\";i:20539;s:5:\"title\";s:31:\"Design Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022706;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/design-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:47:\"[\"Blog\",\"Coming Soon\",\"Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:178;a:20:{s:4:\"tmpl\";i:1224;s:2:\"id\";i:21013;s:5:\"title\";s:24:\"Restaurant &#8211; About\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/12/7-About-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638795588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/restaurant-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:36:\"[\"About\",\"Chef\",\"Food\",\"Restaurant\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:179;a:20:{s:4:\"tmpl\";i:992;s:2:\"id\";i:13402;s:5:\"title\";s:29:\"Classic | CTA | Online Course\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/04/Popup-Course-Completed.jpg\";s:12:\"tmpl_created\";i:1587474772;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:619;s:11:\"trend_index\";i:582;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:180;a:20:{s:4:\"tmpl\";i:1206;s:2:\"id\";i:20254;s:5:\"title\";s:41:\"Digital Marketing Agency &#8211; Business\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Digital-Marketing-Agency-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/lp/digital-marketing-agency-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:65:\"[\"Agency\",\"Business\",\"Digital Agency\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:181;a:20:{s:4:\"tmpl\";i:1235;s:2:\"id\";i:21281;s:5:\"title\";s:25:\"Law Firm &#8211; Services\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/16-Services-Law-firm.jpg\";s:12:\"tmpl_created\";i:1638819128;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/law-firm-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Consulting\",\"Law\",\"Law Firm\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:182;a:20:{s:4:\"tmpl\";i:1017;s:2:\"id\";i:14111;s:5:\"title\";s:36:\"Classic | Japanese restaurant | Sale\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1592300400;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-japanese-restaurant-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:717;s:11:\"trend_index\";i:697;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:183;a:20:{s:4:\"tmpl\";i:1213;s:2:\"id\";i:20509;s:5:\"title\";s:40:\"Dogs Adoption &#8211; Social Involvement\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/10/Dog-Adoption-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/dogs-adoption-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:49:\"[\"Adoption\",\"Involvement\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:184;a:20:{s:4:\"tmpl\";i:1233;s:2:\"id\";i:21205;s:5:\"title\";s:29:\"Photographer &#8211; Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/25-Projects-Photographer.jpg\";s:12:\"tmpl_created\";i:1638818372;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/photographer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Black and white\",\"Photography\",\"Project\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:185;a:20:{s:4:\"tmpl\";i:993;s:2:\"id\";i:13422;s:5:\"title\";s:30:\"Classic | Menu | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1587474782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-menu-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:516;s:11:\"trend_index\";i:432;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:186;a:20:{s:4:\"tmpl\";i:925;s:2:\"id\";i:12540;s:5:\"title\";s:33:\"Classic | Menu | Travel and tours\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_Menu_s.png\";s:12:\"tmpl_created\";i:1575960267;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-menu-travel-and-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:690;s:11:\"trend_index\";i:714;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:187;a:20:{s:4:\"tmpl\";i:1208;s:2:\"id\";i:20361;s:5:\"title\";s:51:\"Exercise &#038; Fitness Equipment &#8211; eCommerce\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2021/10/Exercise-Fitness-Equipment-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633883766;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/lp/exercise-fitness-equipment-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:50:\"[\"Fitness\",\"Health\",\"Landing Pages\",\"Online Shop\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:188;a:20:{s:4:\"tmpl\";i:1239;s:2:\"id\";i:21373;s:5:\"title\";s:28:\"Photographer &#8211; Gallery\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/18-Gallery-Photographer.jpg\";s:12:\"tmpl_created\";i:1638821177;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/photographer-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Gallery\",\"Photography\",\"Portfolio\",\"Project\",\"Travel\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:189;a:20:{s:4:\"tmpl\";i:1426;s:2:\"id\";i:24348;s:5:\"title\";s:24:\"Wireframe &#8211; Home 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-2.jpg\";s:12:\"tmpl_created\";i:1653988444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:190;a:20:{s:4:\"tmpl\";i:958;s:2:\"id\";i:13129;s:5:\"title\";s:28:\"Classic | Menu | Photography\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/PopUp_s.png\";s:12:\"tmpl_created\";i:1582092645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-menu-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:646;s:11:\"trend_index\";i:521;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:191;a:20:{s:4:\"tmpl\";i:1427;s:2:\"id\";i:24366;s:5:\"title\";s:24:\"Wireframe &#8211; Home 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-3.jpg\";s:12:\"tmpl_created\";i:1653988491;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:192;a:20:{s:4:\"tmpl\";i:1207;s:2:\"id\";i:20299;s:5:\"title\";s:51:\"Interior Design Consultation &#8211; Online Service\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/10/Interior-Design-Consultation-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/lp/interior-design-consultation-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:65:\"[\"Consulting\",\"Interior Design\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:193;a:20:{s:4:\"tmpl\";i:952;s:2:\"id\";i:12726;s:5:\"title\";s:52:\"Classic | Newsletter | Subscribe | Magazine and Blog\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_Newsletter_s.png\";s:12:\"tmpl_created\";i:1579061019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:152:\"https://library.elementor.com/popups/classic-newsletter-subscribe-magazine-and-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:357;s:11:\"trend_index\";i:281;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:194;a:20:{s:4:\"tmpl\";i:883;s:2:\"id\";i:11468;s:5:\"title\";s:20:\"Classic | Sale | Gym\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/PopUp_Small.png\";s:12:\"tmpl_created\";i:1567393182;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-sale-gym/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:696;s:11:\"trend_index\";i:740;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:195;a:20:{s:4:\"tmpl\";i:1216;s:2:\"id\";i:20623;s:5:\"title\";s:57:\"Luxurious Camping Accommodation For Events &#8211; Events\";s:9:\"thumbnail\";s:113:\"https://library.elementor.com/wp-content/uploads/2021/10/Luxurious-Camping-Accommodation-For-Events-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634041681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:151:\"https://library.elementor.com/lp/luxurious-camping-accommodation-for-events-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:43:\"[\"Event\",\"Events\",\"Landing Pages\",\"Travel\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:196;a:20:{s:4:\"tmpl\";i:1219;s:2:\"id\";i:20886;s:5:\"title\";s:28:\"Online Training &#8211; Home\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/12/2-Home-Online-Training.jpg\";s:12:\"tmpl_created\";i:1638784769;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/online-training-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Online\",\"Sport\",\"Training\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:197;a:20:{s:4:\"tmpl\";i:1065;s:2:\"id\";i:15570;s:5:\"title\";s:33:\"Classic | Subscribe | Travel Blog\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp.jpg\";s:12:\"tmpl_created\";i:1606215555;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-subscribe-travel-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:709;s:11:\"trend_index\";i:459;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:198;a:20:{s:4:\"tmpl\";i:1431;s:2:\"id\";i:24437;s:5:\"title\";s:25:\"Wireframe &#8211; About 4\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-4.jpg\";s:12:\"tmpl_created\";i:1653988733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:74:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:199;a:20:{s:4:\"tmpl\";i:1210;s:2:\"id\";i:20414;s:5:\"title\";s:45:\"Online English Courses &#8211; Online Service\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Online-English-Courses-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/online-english-courses-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Course Online\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:200;a:20:{s:4:\"tmpl\";i:1132;s:2:\"id\";i:16553;s:5:\"title\";s:31:\"Fly-In | Contact | Beauty Salon\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/12/PopUp.jpg\";s:12:\"tmpl_created\";i:1608622602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-contact-beauty-salon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:691;s:11:\"trend_index\";i:428;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:201;a:20:{s:4:\"tmpl\";i:1441;s:2:\"id\";i:24574;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 5\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-5.jpg\";s:12:\"tmpl_created\";i:1653989135;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:88:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Google Maps\",\"Header\",\"Professional\",\"Subscribe\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:202;a:20:{s:4:\"tmpl\";i:1217;s:2:\"id\";i:20333;s:5:\"title\";s:40:\"Plant Pots Online Shop &#8211; eCommerce\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Plant-Pots-Online-Shop-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634042184;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/plant-pots-online-shop-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:50:\"[\"Ecommerce\",\"Landing Pages\",\"Online Shop\",\"Shop\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:203;a:20:{s:4:\"tmpl\";i:1211;s:2:\"id\";i:20447;s:5:\"title\";s:33:\"Shared Workspace &#8211; Business\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Shared-Workspace.jpg\";s:12:\"tmpl_created\";i:1633884934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/shared-workspace-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:28:\"[\"Business\",\"Landing Pages\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:204;a:20:{s:4:\"tmpl\";i:1237;s:2:\"id\";i:21313;s:5:\"title\";s:34:\"Spa &#038; Beauty &#8211; Services\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/12/Spa-Beauty-Treatments-page-1.jpg\";s:12:\"tmpl_created\";i:1638819709;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/spa-beauty-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:55:\"[\"Beauty\",\"Hair\",\"Health\",\"Services\",\"Spa\",\"Treatment\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:205;a:20:{s:4:\"tmpl\";i:1004;s:2:\"id\";i:13538;s:5:\"title\";s:32:\"Fly-In | Newsletter | Barbershop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/05/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1589893364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-newsletter-barbershop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:710;s:11:\"trend_index\";i:667;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:206;a:20:{s:4:\"tmpl\";i:924;s:2:\"id\";i:12550;s:5:\"title\";s:32:\"Fly-in | Sale | Travel and Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_s.png\";s:12:\"tmpl_created\";i:1575960263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/flyin-sale-travel-and-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:754;s:11:\"trend_index\";i:791;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:207;a:20:{s:4:\"tmpl\";i:1212;s:2:\"id\";i:20479;s:5:\"title\";s:49:\"Teeth Straightening &#8211; Health &#038; Fitness\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Teeth-Whitening.jpg\";s:12:\"tmpl_created\";i:1633886115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/teeth-straightening-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:46:\"[\"Business\",\"Dental\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:208;a:20:{s:4:\"tmpl\";i:1234;s:2:\"id\";i:21234;s:5:\"title\";s:34:\"Insurance Company &#8211; Services\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/15-Services-Insurance-Company.jpg\";s:12:\"tmpl_created\";i:1638818688;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/insurance-company-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Faq\",\"Form\",\"Insurance\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:209;a:20:{s:4:\"tmpl\";i:1035;s:2:\"id\";i:15062;s:5:\"title\";s:35:\"Fly-In | Sign up | Flooring Company\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp.png\";s:12:\"tmpl_created\";i:1597739629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/fly-in-sign-up-flooring-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:625;s:11:\"trend_index\";i:309;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:210;a:20:{s:4:\"tmpl\";i:1209;s:2:\"id\";i:20394;s:5:\"title\";s:30:\"Time Management &#8211; Events\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/10/Time-Management-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884077;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/time-management-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:211;a:20:{s:4:\"tmpl\";i:1229;s:2:\"id\";i:21118;s:5:\"title\";s:28:\"Contact &#8211; Plants Store\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/12-Contact-Plants-Store.jpg\";s:12:\"tmpl_created\";i:1638802472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/contact-plants-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:40:\"[\"Contact\",\"Info\",\"Plant\",\"Testimonial\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:212;a:20:{s:4:\"tmpl\";i:893;s:2:\"id\";i:11822;s:5:\"title\";s:30:\"Full Screen | Menu | Portfolio\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/PopUp_small.png\";s:12:\"tmpl_created\";i:1569429896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/full-screen-menu-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:654;s:11:\"trend_index\";i:626;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:213;a:20:{s:4:\"tmpl\";i:1203;s:2:\"id\";i:18591;s:5:\"title\";s:28:\"Coffee Sale &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280-7.png\";s:12:\"tmpl_created\";i:1633877319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/coffee-sale-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:33:\"[\"Coffee\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:214;a:20:{s:4:\"tmpl\";i:1231;s:2:\"id\";i:21184;s:5:\"title\";s:28:\"Dental Care &#8211; Services\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/14-Services-Dental-Care.jpg\";s:12:\"tmpl_created\";i:1638807148;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dental-care-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:45:\"[\"Dental\",\"Medical\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:215;a:20:{s:4:\"tmpl\";i:1064;s:2:\"id\";i:15580;s:5:\"title\";s:31:\"Fullscreen | Menu | Travel Blog\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1606215358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fullscreen-menu-travel-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:673;s:11:\"trend_index\";i:348;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:216;a:20:{s:4:\"tmpl\";i:1133;s:2:\"id\";i:16645;s:5:\"title\";s:28:\"Headphones &#8211; eCommerce\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_headphones.png\";s:12:\"tmpl_created\";i:1609944115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/commerce-headphones/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:39:\"[\"Ecommerce\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:633;s:11:\"trend_index\";i:87;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:217;a:20:{s:4:\"tmpl\";i:1442;s:2:\"id\";i:24584;s:5:\"title\";s:27:\"Wireframe &#8211; Pricing 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Pricing-1.jpg\";s:12:\"tmpl_created\";i:1653989152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-pricing-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:146:\"[\"Booking\",\"Business\",\"Clients\",\"Contact\",\"Faq\",\"Features\",\"Footer\",\"Online Service\",\"Pricing\",\"Products\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:218;a:20:{s:4:\"tmpl\";i:1138;s:2:\"id\";i:16762;s:5:\"title\";s:25:\"Conference &#8211; Events\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Conference.png\";s:12:\"tmpl_created\";i:1610455119;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/conference-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:60:\"[\"Conference\",\"Convention\",\"Event\",\"Events\",\"Landing Pages\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:705;s:11:\"trend_index\";i:216;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:219;a:20:{s:4:\"tmpl\";i:1438;s:2:\"id\";i:24539;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 2\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-2.jpg\";s:12:\"tmpl_created\";i:1653989019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:69:\"[\"Business\",\"Contact\",\"Footer\",\"Google Maps\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:220;a:20:{s:4:\"tmpl\";i:981;s:2:\"id\";i:13281;s:5:\"title\";s:37:\"Hello Bar | Contact | Interior Design\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp.png\";s:12:\"tmpl_created\";i:1586148801;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/hello-bar-contact-interior-design/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:19:\"[\"Interior Design\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:763;s:11:\"trend_index\";i:679;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:221;a:20:{s:4:\"tmpl\";i:1052;s:2:\"id\";i:15259;s:5:\"title\";s:31:\"Hello Bar | Menu | Psychologist\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Menu-PopUp.png\";s:12:\"tmpl_created\";i:1600170209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/hello-bar-menu-psychologist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:739;s:11:\"trend_index\";i:583;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:222;a:20:{s:4:\"tmpl\";i:1434;s:2:\"id\";i:24494;s:5:\"title\";s:28:\"Wireframe &#8211; Services 1\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-1.jpg\";s:12:\"tmpl_created\";i:1653988874;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:53:\"[\"Business\",\"Faq\",\"Footer\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:223;a:20:{s:4:\"tmpl\";i:1194;s:2:\"id\";i:18701;s:5:\"title\";s:32:\"Digital Course &#8211; eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280.jpg\";s:12:\"tmpl_created\";i:1618995134;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/digital-course-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Ecommerce\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:224;a:20:{s:4:\"tmpl\";i:1192;s:2:\"id\";i:18612;s:5:\"title\";s:34:\"Bag Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bag-Product.jpeg\";s:12:\"tmpl_created\";i:1618395406;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/bag-product-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:61:\"[\"Bag\",\"Ecommerce\",\"Landing Pages\",\"Product\",\"Sale\",\"Travel\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:875;s:11:\"trend_index\";i:605;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:225;a:20:{s:4:\"tmpl\";i:1227;s:2:\"id\";i:21083;s:5:\"title\";s:26:\"Conference &#8211; Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/10-Contact-Conference.jpg\";s:12:\"tmpl_created\";i:1638799208;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/conference-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:44:\"[\"Conference\",\"Contact\",\"Form\",\"Info\",\"Map\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:226;a:20:{s:4:\"tmpl\";i:1193;s:2:\"id\";i:18644;s:5:\"title\";s:37:\"Camera Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/camera_sale_featured-img.jpg\";s:12:\"tmpl_created\";i:1618396388;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/camera-product-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Camera\",\"Ecommerce\",\"Landing Pages\",\"Photography\",\"Sale\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:873;s:11:\"trend_index\";i:535;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:227;a:20:{s:4:\"tmpl\";i:951;s:2:\"id\";i:12736;s:5:\"title\";s:41:\"Slide In | Contact Us | Magazine and Blog\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_contact_s.png\";s:12:\"tmpl_created\";i:1579060978;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/slide-in-contact-us/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:734;s:11:\"trend_index\";i:686;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:228;a:20:{s:4:\"tmpl\";i:1222;s:2:\"id\";i:20960;s:5:\"title\";s:26:\"Travel Agency &#8211; Home\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/5-Home-Travel-Agency.jpg\";s:12:\"tmpl_created\";i:1638788432;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/travel-agency-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:53:\"[\"Adventures\",\"Experience\",\"Explore\",\"Travel\",\"Trip\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:229;a:20:{s:4:\"tmpl\";i:1196;s:2:\"id\";i:18815;s:5:\"title\";s:25:\"Car Wash &#8211; Business\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Car-Wash.png\";s:12:\"tmpl_created\";i:1621336431;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/car-wash-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:45:\"[\"Business\",\"car\",\"Discount\",\"Landing Pages\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:230;a:20:{s:4:\"tmpl\";i:1242;s:2:\"id\";i:21473;s:5:\"title\";s:40:\"Architecture Photography &#8211; Gallery\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/20-Gallery-Architecture-Photography.jpg\";s:12:\"tmpl_created\";i:1638822115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/architecture-photography-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:52:\"[\"Architecture\",\"Gallery\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:231;a:20:{s:4:\"tmpl\";i:1015;s:2:\"id\";i:14067;s:5:\"title\";s:37:\"Slide In | Japanese restaurant | Menu\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Menu-Pop-Up-Small.jpg\";s:12:\"tmpl_created\";i:1592290352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/slide-in-japanese-restaurant-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:650;s:11:\"trend_index\";i:565;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:232;a:20:{s:4:\"tmpl\";i:923;s:2:\"id\";i:12229;s:5:\"title\";s:33:\"Slide In | Law Firm | Information\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/popup.png\";s:12:\"tmpl_created\";i:1572847842;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-law-firm-information/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:547;s:11:\"trend_index\";i:413;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:233;a:20:{s:4:\"tmpl\";i:1198;s:2:\"id\";i:18824;s:5:\"title\";s:33:\"Design School &#8211; Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1621336756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/design-school-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:49:\"[\"Coming Soon\",\"Design\",\"Landing Pages\",\"School\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:234;a:20:{s:4:\"tmpl\";i:1236;s:2:\"id\";i:21259;s:5:\"title\";s:28:\"3D Designer &#8211; Projects\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/24-Projects-3D-Designer.jpg\";s:12:\"tmpl_created\";i:1638819185;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/3d-designer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:69:\"[\"3D\",\"Creative Portfolio\",\"Design\",\"Designer\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:235;a:20:{s:4:\"tmpl\";i:1028;s:2:\"id\";i:14827;s:5:\"title\";s:39:\"Slide-In | Contact | Luxury Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/PopUp.png\";s:12:\"tmpl_created\";i:1595323523;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/slide-in-contact-luxury-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:559;s:11:\"trend_index\";i:284;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:236;a:20:{s:4:\"tmpl\";i:1197;s:2:\"id\";i:18819;s:5:\"title\";s:27:\"Dog Walker &#8211; Business\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Dog-Walker.png\";s:12:\"tmpl_created\";i:1621336601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/dog-walker-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:41:\"[\"Business\",\"Dog\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:237;a:20:{s:4:\"tmpl\";i:1238;s:2:\"id\";i:21349;s:5:\"title\";s:29:\"Architecture &#8211; Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/23-Projects-Architecture.jpg\";s:12:\"tmpl_created\";i:1638820870;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/architecture-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:70:\"[\"Architecture\",\"Creative\",\"Creative Portfolio\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:238;a:20:{s:4:\"tmpl\";i:1034;s:2:\"id\";i:15075;s:5:\"title\";s:34:\"Slide-In | Menu | Flooring Company\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp-1.png\";s:12:\"tmpl_created\";i:1597739605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/slide-in-menu-flooring-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:383;s:11:\"trend_index\";i:162;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:239;a:20:{s:4:\"tmpl\";i:1414;s:2:\"id\";i:24079;s:5:\"title\";s:32:\"Fashion Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Fashion-Shop.jpg\";s:12:\"tmpl_created\";i:1650988089;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/fashion-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:88:\"[\"Aesthetic\",\"Business\",\"Coming Soon\",\"Ecommerce\",\"Girly\",\"Lifestyle\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:240;a:20:{s:4:\"tmpl\";i:1195;s:2:\"id\";i:18761;s:5:\"title\";s:33:\"Fashion Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1621336146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/fashion-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:56:\"[\"Coming Soon\",\"Fashion\",\"Landing Pages\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:241;a:20:{s:4:\"tmpl\";i:1153;s:2:\"id\";i:17060;s:5:\"title\";s:36:\"Private Tutor &#8211; Online Service\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Tutor-2.png\";s:12:\"tmpl_created\";i:1610631042;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/private-tutor-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:64:\"[\"Education\",\"Landing Pages\",\"Online Service\",\"Teacher\",\"Tutor\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:780;s:11:\"trend_index\";i:628;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:242;a:20:{s:4:\"tmpl\";i:1430;s:2:\"id\";i:24434;s:5:\"title\";s:25:\"Wireframe &#8211; About 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-3.jpg\";s:12:\"tmpl_created\";i:1653988697;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:76:\"[\"About\",\"Business\",\"Contact\",\"Faq\",\"Footer\",\"Header\",\"Professional\",\"Team\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:243;a:20:{s:4:\"tmpl\";i:1158;s:2:\"id\";i:17232;s:5:\"title\";s:33:\"Life Coach &#8211; Online Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Life-Coach.png\";s:12:\"tmpl_created\";i:1610902793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/life-coach-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:38:\"[\"Coach\",\"Landing Pages\",\"Life Coach\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:787;s:11:\"trend_index\";i:751;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:244;a:20:{s:4:\"tmpl\";i:1436;s:2:\"id\";i:24515;s:5:\"title\";s:28:\"Wireframe &#8211; Services 3\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-3.jpg\";s:12:\"tmpl_created\";i:1653988946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:66:\"[\"Business\",\"Contact\",\"Footer\",\"Header\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:245;a:20:{s:4:\"tmpl\";i:875;s:2:\"id\";i:11241;s:5:\"title\";s:36:\"Classic | Digital Agency | Marketing\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/PopUp_small.jpg\";s:12:\"tmpl_created\";i:1564643043;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-digital-agency-marketing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:362;s:11:\"trend_index\";i:315;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:246;a:20:{s:4:\"tmpl\";i:1146;s:2:\"id\";i:16932;s:5:\"title\";s:35:\"Finance Consulting &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Finance-Consulting.png\";s:12:\"tmpl_created\";i:1610532170;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/lp/finance-consulting-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:80:\"[\"Advisor\",\"Business\",\"Consulting\",\"Finance\",\"Investment\",\"Landing Pages\",\"Tax\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:790;s:11:\"trend_index\";i:630;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:247;a:20:{s:4:\"tmpl\";i:1429;s:2:\"id\";i:24421;s:5:\"title\";s:25:\"Wireframe &#8211; About 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-2.jpg\";s:12:\"tmpl_created\";i:1653988579;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:87:\"[\"About\",\"Business\",\"Contact\",\"Faq\",\"Features\",\"Footer\",\"Header\",\"Professional\",\"Team\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:248;a:20:{s:4:\"tmpl\";i:674;s:2:\"id\";i:8505;s:5:\"title\";s:11:\"404 page 01\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/001.jpg\";s:12:\"tmpl_created\";i:1526415501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:533;s:11:\"trend_index\";i:222;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:249;a:20:{s:4:\"tmpl\";i:1136;s:2:\"id\";i:16721;s:5:\"title\";s:35:\"Dental &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Dental.jpg\";s:12:\"tmpl_created\";i:1610448567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/dental-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:44:\"[\"Dental\",\"Doctor\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:801;s:11:\"trend_index\";i:655;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:250;a:20:{s:4:\"tmpl\";i:1417;s:2:\"id\";i:24116;s:5:\"title\";s:32:\"Tech Company &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Tech-Company.jpg\";s:12:\"tmpl_created\";i:1650989265;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/tech-company-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:87:\"[\"Business\",\"Coding\",\"Coming Soon\",\"Computer\",\"Developer\",\"IT\",\"Services\",\"Technology\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:251;a:20:{s:4:\"tmpl\";i:675;s:2:\"id\";i:8511;s:5:\"title\";s:11:\"404 page 02\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/002.jpg\";s:12:\"tmpl_created\";i:1526415528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:347;s:11:\"trend_index\";i:155;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:252;a:20:{s:4:\"tmpl\";i:1161;s:2:\"id\";i:17269;s:5:\"title\";s:34:\"Electronics Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Electronic-Products.png\";s:12:\"tmpl_created\";i:1610903298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/electronics-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:800;s:11:\"trend_index\";i:556;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:253;a:20:{s:4:\"tmpl\";i:1220;s:2:\"id\";i:20908;s:5:\"title\";s:42:\"Packing &#038; Moving Company &#8211; Home\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/3-Home-Packing-Moving-Company.jpg\";s:12:\"tmpl_created\";i:1638786127;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/packing-moving-company-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Movers\",\"Moving\",\"Storge\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:254;a:20:{s:4:\"tmpl\";i:1152;s:2:\"id\";i:17032;s:5:\"title\";s:42:\"Donate Computer &#8211; Social Involvement\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Donation-2.png\";s:12:\"tmpl_created\";i:1610630585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/donate-computer-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:67:\"[\"Computer\",\"Donate\",\"Donation\",\"Kids\",\"Landing Pages\",\"Nonprofit\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:718;s:11:\"trend_index\";i:278;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:255;a:20:{s:4:\"tmpl\";i:672;s:2:\"id\";i:8512;s:5:\"title\";s:11:\"404 page 03\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/003.jpg\";s:12:\"tmpl_created\";i:1526415449;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:450;s:11:\"trend_index\";i:375;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:256;a:20:{s:4:\"tmpl\";i:1245;s:2:\"id\";i:21546;s:5:\"title\";s:28:\"Interior Design &#8211; Home\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/1-Home-Interior-Design-1.jpg\";s:12:\"tmpl_created\";i:1639046269;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/interior-design-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:68:\"[\"Design\",\"Form\",\"Furniture Design\",\"Interior Design\",\"Testimonial\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:257;a:20:{s:4:\"tmpl\";i:1135;s:2:\"id\";i:16684;s:5:\"title\";s:34:\"SaaS HR Management &#8211; Product\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_hr.png\";s:12:\"tmpl_created\";i:1609945486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/saas-hr-management-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:39:\"[\"HR\",\"Landing Pages\",\"Product\",\"SaaS\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:708;s:11:\"trend_index\";i:292;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:258;a:20:{s:4:\"tmpl\";i:671;s:2:\"id\";i:8513;s:5:\"title\";s:11:\"404 page 04\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/004.jpg\";s:12:\"tmpl_created\";i:1526415417;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:420;s:11:\"trend_index\";i:176;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:259;a:20:{s:4:\"tmpl\";i:1249;s:2:\"id\";i:22137;s:5:\"title\";s:31:\"Design Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1647177194;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/design-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:47:\"[\"Blog\",\"Coming Soon\",\"Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:260;a:20:{s:4:\"tmpl\";i:1134;s:2:\"id\";i:16660;s:5:\"title\";s:37:\"Medical center &#8211; Online service\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-medical-cosultation-250_280.png\";s:12:\"tmpl_created\";i:1609945122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/medical-center-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:44:\"[\"Landing Pages\",\"Medical\",\"Online Service\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:750;s:11:\"trend_index\";i:332;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:261;a:20:{s:4:\"tmpl\";i:1226;s:2:\"id\";i:21069;s:5:\"title\";s:21:\"Hotel &#8211; Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/12/9-Contact-Hotel.jpg\";s:12:\"tmpl_created\";i:1638798545;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/hotel-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:36:\"[\"Contact\",\"from\",\"Info\",\"Vacation\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:262;a:20:{s:4:\"tmpl\";i:1150;s:2:\"id\";i:17001;s:5:\"title\";s:36:\"Parental Counseling &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/Parenting-Coach-2.png\";s:12:\"tmpl_created\";i:1610534999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/parental-counseling-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:99:\"[\"Advisor\",\"Business\",\"Coach\",\"Counseling\",\"Landing Pages\",\"Online Service\",\"Parental\",\"Parenting\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:817;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:263;a:20:{s:4:\"tmpl\";i:1432;s:2:\"id\";i:24461;s:5:\"title\";s:27:\"Wireframe &#8211; Gallery 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Gallery-1.jpg\";s:12:\"tmpl_created\";i:1653988784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-gallery-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:82:\"[\"Business\",\"Contact\",\"Design\",\"Footer\",\"Gallery\",\"Header\",\"Portfolio\",\"Services\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:264;a:20:{s:4:\"tmpl\";i:676;s:2:\"id\";i:8514;s:5:\"title\";s:11:\"404 Page 05\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/005.jpg\";s:12:\"tmpl_created\";i:1526415558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-05/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:419;s:11:\"trend_index\";i:220;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:265;a:20:{s:4:\"tmpl\";i:1137;s:2:\"id\";i:16742;s:5:\"title\";s:31:\"Online Course &#8211; Education\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Course.png\";s:12:\"tmpl_created\";i:1610454122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/online-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:55:\"[\"Academy\",\"Course Online\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:777;s:11:\"trend_index\";i:776;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:266;a:20:{s:4:\"tmpl\";i:668;s:2:\"id\";i:8523;s:5:\"title\";s:11:\"404 page 06\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/006.jpg\";s:12:\"tmpl_created\";i:1526415291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-06/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:298;s:11:\"trend_index\";i:268;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:267;a:20:{s:4:\"tmpl\";i:1440;s:2:\"id\";i:24563;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 4\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-4.jpg\";s:12:\"tmpl_created\";i:1653989095;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:84:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Gallery\",\"Header\",\"Professional\",\"Subscribe\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:268;a:20:{s:4:\"tmpl\";i:1162;s:2:\"id\";i:17284;s:5:\"title\";s:38:\"Dietitian &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/01/Dietitian.png\";s:12:\"tmpl_created\";i:1610903484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/dietitian-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Health\",\"landscape design\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:814;s:11:\"trend_index\";i:800;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:269;a:20:{s:4:\"tmpl\";i:1439;s:2:\"id\";i:24553;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 3\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-3.jpg\";s:12:\"tmpl_created\";i:1653989057;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:67:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Professional\",\"Testimonial\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:270;a:20:{s:4:\"tmpl\";i:1144;s:2:\"id\";i:16897;s:5:\"title\";s:30:\"Personal Chef &#8211; Business\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Personal-Chef.png\";s:12:\"tmpl_created\";i:1610466247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/personal-chef-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:53:\"[\"Business\",\"Chef\",\"Food\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:795;s:11:\"trend_index\";i:617;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:271;a:20:{s:4:\"tmpl\";i:1435;s:2:\"id\";i:24504;s:5:\"title\";s:28:\"Wireframe &#8211; Services 2\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-2.jpg\";s:12:\"tmpl_created\";i:1653988910;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:80:\"[\"Business\",\"Contact\",\"Footer\",\"Header\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:272;a:20:{s:4:\"tmpl\";i:669;s:2:\"id\";i:8524;s:5:\"title\";s:11:\"404 page 07\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/007.jpg\";s:12:\"tmpl_created\";i:1526415337;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-07/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:303;s:11:\"trend_index\";i:171;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:273;a:20:{s:4:\"tmpl\";i:1147;s:2:\"id\";i:16946;s:5:\"title\";s:52:\"Online Full-Stack Developer Course &#8211; Education\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Full-Stack-Developer-Course.png\";s:12:\"tmpl_created\";i:1610532778;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/lp/online-full-stack-developer-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:76:\"[\"Academy\",\"Coding\",\"Course Online\",\"Developer\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:805;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:274;a:20:{s:4:\"tmpl\";i:1437;s:2:\"id\";i:24528;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-1.jpg\";s:12:\"tmpl_created\";i:1653988981;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:76:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Google Maps\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:275;a:20:{s:4:\"tmpl\";i:1143;s:2:\"id\";i:16868;s:5:\"title\";s:40:\"Virtual Assistant &#8211; Online Service\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/01/Virtual-Assistant-250x280-1.png\";s:12:\"tmpl_created\";i:1610465656;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/virtual-assistant-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:46:\"[\"Assistant\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:793;s:11:\"trend_index\";i:757;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:276;a:20:{s:4:\"tmpl\";i:673;s:2:\"id\";i:8526;s:5:\"title\";s:11:\"404 page 09\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/009.jpg\";s:12:\"tmpl_created\";i:1526415474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-09/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:477;s:11:\"trend_index\";i:285;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:277;a:20:{s:4:\"tmpl\";i:1228;s:2:\"id\";i:21104;s:5:\"title\";s:26:\"Restaurant &#8211; Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/11-Contact-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638800146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/restaurant-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:60:\"[\"Contact\",\"Food\",\"Form\",\"Google Maps\",\"Info\",\"Testimonial\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:278;a:20:{s:4:\"tmpl\";i:1140;s:2:\"id\";i:16812;s:5:\"title\";s:40:\"Construction Project &#8211; Real Estate\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Construction-Project.png\";s:12:\"tmpl_created\";i:1610463582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/construction-project-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:59:\"[\"Construction\",\"Landing Pages\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:796;s:11:\"trend_index\";i:724;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:279;a:20:{s:4:\"tmpl\";i:1244;s:2:\"id\";i:21393;s:5:\"title\";s:34:\"Interior Designer &#8211; Projects\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/12/big-22-Projects-Interior-Designer-New.jpeg\";s:12:\"tmpl_created\";i:1638823945;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/interior-designer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:93:\"[\"Creative\",\"Creative Portfolio\",\"Design\",\"Designer\",\"Interior Design\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:280;a:20:{s:4:\"tmpl\";i:1148;s:2:\"id\";i:16960;s:5:\"title\";s:44:\"Dog &amp; Cat Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2021/01/Dog-Food.png\";s:12:\"tmpl_created\";i:1610533581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/dog-cat-food-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:71:\"[\"Business\",\"Cat\",\"Delivery\",\"Dog\",\"Food\",\"Landing Pages\",\"Pet\",\"Pets\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:782;s:11:\"trend_index\";i:510;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:281;a:20:{s:4:\"tmpl\";i:670;s:2:\"id\";i:8525;s:5:\"title\";s:11:\"404 page 08\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/008.jpg\";s:12:\"tmpl_created\";i:1526415374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-08/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:510;s:11:\"trend_index\";i:575;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:282;a:20:{s:4:\"tmpl\";i:1251;s:2:\"id\";i:22143;s:5:\"title\";s:33:\"Fashion Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1647177389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/fashion-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Coming Soon\",\"Fashion\",\"Landing Pages\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:283;a:20:{s:4:\"tmpl\";i:1155;s:2:\"id\";i:17095;s:5:\"title\";s:36:\"Mobile Pet Grooming &#8211; Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Mobile-Pet-Grooming.png\";s:12:\"tmpl_created\";i:1610632115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/mobile-pet-grooming-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:38:\"[\"Dog\",\"Groom\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:786;s:11:\"trend_index\";i:731;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:284;a:20:{s:4:\"tmpl\";i:1241;s:2:\"id\";i:21451;s:5:\"title\";s:26:\"Exhibition &#8211; Gallery\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/21-Gallery-Exhibition.jpg\";s:12:\"tmpl_created\";i:1638821855;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/exhibition-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:74:\"[\"Art\",\"Creative\",\"Creative Portfolio\",\"Exhibition\",\"Gallery\",\"Portfolio\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:285;a:20:{s:4:\"tmpl\";i:502;s:2:\"id\";i:5438;s:5:\"title\";s:7:\"About 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_4.png\";s:12:\"tmpl_created\";i:1520443512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:147;s:11:\"trend_index\";i:9;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:286;a:20:{s:4:\"tmpl\";i:1159;s:2:\"id\";i:17245;s:5:\"title\";s:34:\"Marketing Course &#8211; Education\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2021/01/PPC.png\";s:12:\"tmpl_created\";i:1610902958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/marketing-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:45:\"[\"Course Online\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:770;s:11:\"trend_index\";i:430;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:287;a:20:{s:4:\"tmpl\";i:1240;s:2:\"id\";i:21430;s:5:\"title\";s:30:\"Travel Blogger &#8211; Gallery\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/12/19-Gallery-Travel-Blogger.jpg\";s:12:\"tmpl_created\";i:1638821592;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/travel-blogger-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Gallery\",\"Photography\",\"Slider\",\"Travel\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:288;a:20:{s:4:\"tmpl\";i:1149;s:2:\"id\";i:16983;s:5:\"title\";s:41:\"Pilates Instructor &#8211; Online Service\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Pilates-Instructor.png\";s:12:\"tmpl_created\";i:1610534138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/lp/pilates-instructor-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:70:\"[\"Free Trial\",\"Instructor\",\"Landing Pages\",\"Online Service\",\"Pilates\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:778;s:11:\"trend_index\";i:412;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:289;a:20:{s:4:\"tmpl\";i:1416;s:2:\"id\";i:24104;s:5:\"title\";s:33:\"Ceramics Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Ceramics-Shop.jpg\";s:12:\"tmpl_created\";i:1650988949;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/ceramics-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:115:\"[\"Art\",\"Business\",\"Coming Soon\",\"Creative\",\"Decor\",\"Design\",\"Furniture Design\",\"Interior Design\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:290;a:20:{s:4:\"tmpl\";i:557;s:2:\"id\";i:6135;s:5:\"title\";s:8:\"About 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_2.png\";s:12:\"tmpl_created\";i:1520443663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:77;s:11:\"trend_index\";i:47;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:291;a:20:{s:4:\"tmpl\";i:1412;s:2:\"id\";i:24033;s:5:\"title\";s:37:\"Dance Studio &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Dance-Studio.jpg\";s:12:\"tmpl_created\";i:1649881344;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/dance-studio-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:113:\"[\"Academy\",\"Business\",\"Dance Studio\",\"Form\",\"Pilates\",\"School\",\"Sport\",\"Teacher\",\"Training\",\"Under Construction\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:292;a:20:{s:4:\"tmpl\";i:1190;s:2:\"id\";i:18568;s:5:\"title\";s:32:\"Flower Delivery &#8211; Business\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/04/Flower-Delivery.png\";s:12:\"tmpl_created\";i:1617546716;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/flower-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:37:\"[\"Delivery\",\"Flower\",\"Landing Pages\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:874;s:11:\"trend_index\";i:763;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:293;a:20:{s:4:\"tmpl\";i:1145;s:2:\"id\";i:16917;s:5:\"title\";s:22:\"Webinar &#8211; Events\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Webinar-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610466822;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/webinar-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:36:\"[\"Events\",\"Landing Pages\",\"Webinar\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:821;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:294;a:20:{s:4:\"tmpl\";i:1413;s:2:\"id\";i:24049;s:5:\"title\";s:33:\"ECO Shop &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-ECO-Shop.jpg\";s:12:\"tmpl_created\";i:1649882053;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/eco-shop-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:110:\"[\"Aesthetic\",\"Business\",\"Creative\",\"Decor\",\"Health\",\"Help\",\"Lifestyle\",\"Products\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:295;a:20:{s:4:\"tmpl\";i:497;s:2:\"id\";i:5397;s:5:\"title\";s:8:\"About 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1.png\";s:12:\"tmpl_created\";i:1520443503;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:148;s:11:\"trend_index\";i:43;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:296;a:20:{s:4:\"tmpl\";i:1154;s:2:\"id\";i:17079;s:5:\"title\";s:42:\"Calls Volunteer &#8211; Social Involvement\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Calls-Volunteer.png\";s:12:\"tmpl_created\";i:1610631774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/calls-volunteer-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:68:\"[\"Care\",\"Covid-19\",\"Help\",\"Involvement\",\"Landing Pages\",\"Volunteer\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:854;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:297;a:20:{s:4:\"tmpl\";i:1419;s:2:\"id\";i:24136;s:5:\"title\";s:29:\"Food Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Food-Blog.jpg\";s:12:\"tmpl_created\";i:1650990034;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/food-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:62:\"[\"Blog\",\"Business\",\"Coming Soon\",\"Cooking\",\"Education\",\"Food\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:298;a:20:{s:4:\"tmpl\";i:1142;s:2:\"id\";i:16836;s:5:\"title\";s:33:\"Marketing Agency &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/01/Marketing-Agency-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610464490;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/marketing-agency-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:74:\"[\"Agency\",\"Business\",\"Landing Pages\",\"Marketing\",\"Marketing Landing Page\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:816;s:11:\"trend_index\";i:787;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:299;a:20:{s:4:\"tmpl\";i:1411;s:2:\"id\";i:24020;s:5:\"title\";s:35:\"Mobile App &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Mobile-App.jpg\";s:12:\"tmpl_created\";i:1649880955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/mobile-app-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:77:\"[\"App\",\"Business\",\"Coding\",\"Computer\",\"Launch\",\"Mobile\",\"Under Construction\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:300;a:20:{s:4:\"tmpl\";i:498;s:2:\"id\";i:5405;s:5:\"title\";s:8:\"About 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1.png\";s:12:\"tmpl_created\";i:1520443505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:216;s:11:\"trend_index\";i:50;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:301;a:20:{s:4:\"tmpl\";i:1139;s:2:\"id\";i:16785;s:5:\"title\";s:42:\"Gym Promotion &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Gym-LP.jpg\";s:12:\"tmpl_created\";i:1610455496;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/gym-promotion-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:42:\"[\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:820;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:302;a:20:{s:4:\"tmpl\";i:1420;s:2:\"id\";i:24152;s:5:\"title\";s:32:\"Perfume Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Perfume-Shop.jpg\";s:12:\"tmpl_created\";i:1650990353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/perfume-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:68:\"[\"Business\",\"Coming Soon\",\"Cosmetics\",\"Lifestyle\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:303;a:20:{s:4:\"tmpl\";i:1185;s:2:\"id\";i:18492;s:5:\"title\";s:34:\"Bicycle Pre-Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bike-Landing-Page.png\";s:12:\"tmpl_created\";i:1617535552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/bicycle-pre-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:34:\"[\"Bicycle\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:50;s:16:\"popularity_index\";i:871;s:11:\"trend_index\";i:826;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:304;a:20:{s:4:\"tmpl\";i:1418;s:2:\"id\";i:24126;s:5:\"title\";s:28:\"Skincare &#8211; Coming Soon\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Skincare.jpg\";s:12:\"tmpl_created\";i:1650989585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/skincare-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:128:\"[\"Aesthetic\",\"Beauty\",\"Beauty Salon\",\"Business\",\"Coming Soon\",\"Cosmetics\",\"Girly\",\"Lifestyle\",\"Services\",\"Skincare\",\"Treatment\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:305;a:20:{s:4:\"tmpl\";i:1181;s:2:\"id\";i:18349;s:5:\"title\";s:39:\"Virtual try-on glasses &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-8.png\";s:12:\"tmpl_created\";i:1614772569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/virtual-try-on-glasses-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:64:\"[\"Fashion\",\"Glasses\",\"Landing Pages\",\"Online Service\",\"Virtual\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:848;s:11:\"trend_index\";i:803;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:306;a:20:{s:4:\"tmpl\";i:500;s:2:\"id\";i:5421;s:5:\"title\";s:8:\"About 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_3.png\";s:12:\"tmpl_created\";i:1520443509;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:215;s:11:\"trend_index\";i:77;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:307;a:20:{s:4:\"tmpl\";i:513;s:2:\"id\";i:5533;s:5:\"title\";s:8:\"About 15\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_10.png\";s:12:\"tmpl_created\";i:1520443534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:21;s:11:\"trend_index\";i:57;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:308;a:20:{s:4:\"tmpl\";i:1410;s:2:\"id\";i:24004;s:5:\"title\";s:33:\"Skincare &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Skincare.jpg\";s:12:\"tmpl_created\";i:1649880534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/skincare-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:144:\"[\"Aesthetic\",\"Beauty\",\"Beauty Salon\",\"Business\",\"Cosmetics\",\"Girly\",\"Lifestyle\",\"Makeup\",\"Services\",\"Skincare\",\"Treatment\",\"Under Construction\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:309;a:20:{s:4:\"tmpl\";i:1172;s:2:\"id\";i:17458;s:5:\"title\";s:31:\"Moving Company &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Moving-Company.png\";s:12:\"tmpl_created\";i:1612727025;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/moving-company-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"Landing Pages\",\"Movers\",\"Moving\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:826;s:11:\"trend_index\";i:767;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:310;a:20:{s:4:\"tmpl\";i:1415;s:2:\"id\";i:24092;s:5:\"title\";s:29:\"Vase Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Vase-Shop.jpg\";s:12:\"tmpl_created\";i:1650988613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/vase-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:115:\"[\"Art\",\"Business\",\"Coming Soon\",\"Creative\",\"Decor\",\"Design\",\"Furniture Design\",\"Interior Design\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:311;a:20:{s:4:\"tmpl\";i:1186;s:2:\"id\";i:18517;s:5:\"title\";s:29:\"Food Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Food-Blog.png\";s:12:\"tmpl_created\";i:1617539897;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/food-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:45:\"[\"Blog\",\"Coming Soon\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:844;s:11:\"trend_index\";i:672;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:312;a:20:{s:4:\"tmpl\";i:1167;s:2:\"id\";i:17379;s:5:\"title\";s:33:\"IT Service &#8211; Online Service\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-IT-Service.png\";s:12:\"tmpl_created\";i:1612713022;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/it-service-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:41:\"[\"IT\",\"Landing Pages\",\"Remote\",\"Support\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:806;s:11:\"trend_index\";i:634;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:313;a:20:{s:4:\"tmpl\";i:1248;s:2:\"id\";i:22134;s:5:\"title\";s:32:\"Art Magazine &#8211; Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1647176713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/art-magazine-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"Art\",\"Coming Soon\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:314;a:20:{s:4:\"tmpl\";i:512;s:2:\"id\";i:5525;s:5:\"title\";s:8:\"About 14\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_10.png\";s:12:\"tmpl_created\";i:1520443532;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:9;s:11:\"trend_index\";i:29;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:315;a:20:{s:4:\"tmpl\";i:1189;s:2:\"id\";i:18560;s:5:\"title\";s:52:\"Finance Learning Platform &#8211; Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1617542761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/lp/finance-learning-platform-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:843;s:11:\"trend_index\";i:561;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:316;a:20:{s:4:\"tmpl\";i:1225;s:2:\"id\";i:21041;s:5:\"title\";s:41:\"Business Consulting Company &#8211; About\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/8-About-Business-Consulting-Company.jpg\";s:12:\"tmpl_created\";i:1638797560;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/business-consulting-company-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Coach\",\"Collaboration\",\"Consulting\",\"Life Coach\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:317;a:20:{s:4:\"tmpl\";i:1187;s:2:\"id\";i:18528;s:5:\"title\";s:36:\"Home Decor Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1617541784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/home-decor-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"Interior Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:872;s:11:\"trend_index\";i:819;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:318;a:20:{s:4:\"tmpl\";i:1243;s:2:\"id\";i:21135;s:5:\"title\";s:28:\"Construction &#8211; Service\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/13-Service-Construction.jpg\";s:12:\"tmpl_created\";i:1638823202;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/construction-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"Architecture\",\"Construction\",\"Faq\",\"Services\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:319;a:20:{s:4:\"tmpl\";i:501;s:2:\"id\";i:5429;s:5:\"title\";s:8:\"About 16\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_4.png\";s:12:\"tmpl_created\";i:1520443510;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:59;s:11:\"trend_index\";i:8;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:320;a:20:{s:4:\"tmpl\";i:1174;s:2:\"id\";i:17504;s:5:\"title\";s:29:\"Hair Stylist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-3.png\";s:12:\"tmpl_created\";i:1612883014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/hair-stylist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:59:\"[\"Business\",\"Hair\",\"hairdresser\",\"Landing Pages\",\"Stylist\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:840;s:11:\"trend_index\";i:806;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:321;a:20:{s:4:\"tmpl\";i:1223;s:2:\"id\";i:20981;s:5:\"title\";s:37:\"Creative Digital Agency &#8211; About\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2021/12/6-About-Creative-Digital-Agency.jpg\";s:12:\"tmpl_created\";i:1638789303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/creative-digital-agency-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"About\",\"Advisor\",\"Creative\",\"Creative Portfolio\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:322;a:20:{s:4:\"tmpl\";i:1184;s:2:\"id\";i:18449;s:5:\"title\";s:45:\"Aesthetic Clinic &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/03/Aesthetic-Clinic.png\";s:12:\"tmpl_created\";i:1616682181;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/aesthetic-clinic-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:57:\"[\"Aesthetic\",\"Beauty\",\"Fitness\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:859;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:323;a:20:{s:4:\"tmpl\";i:1221;s:2:\"id\";i:20926;s:5:\"title\";s:33:\"Doctors Online Consultation -Home\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/12/4-Home-Doctors-Online-Consultation.jpg\";s:12:\"tmpl_created\";i:1638787371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/doctors-online-consultation-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:35:\"[\"App\",\"Health\",\"Medical\",\"Online\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:324;a:20:{s:4:\"tmpl\";i:505;s:2:\"id\";i:5464;s:5:\"title\";s:8:\"About 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_6.png\";s:12:\"tmpl_created\";i:1520443518;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:220;s:11:\"trend_index\";i:142;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:325;a:20:{s:4:\"tmpl\";i:1165;s:2:\"id\";i:17353;s:5:\"title\";s:44:\"Online Cooking Course &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-2.png\";s:12:\"tmpl_created\";i:1612705144;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/lp/online-cooking-course-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Cooking\",\"Course Online\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:845;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:326;a:20:{s:4:\"tmpl\";i:1188;s:2:\"id\";i:18550;s:5:\"title\";s:39:\"Online Store &#8211; Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1617542506;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/online-store-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"Online Shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:832;s:11:\"trend_index\";i:600;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:327;a:20:{s:4:\"tmpl\";i:1250;s:2:\"id\";i:22140;s:5:\"title\";s:33:\"Design School &#8211; Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1647177317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/design-school-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:49:\"[\"Coming Soon\",\"Design\",\"Landing Pages\",\"School\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:328;a:20:{s:4:\"tmpl\";i:510;s:2:\"id\";i:5504;s:5:\"title\";s:8:\"About 18\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_9.png\";s:12:\"tmpl_created\";i:1520443528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:104;s:11:\"trend_index\";i:46;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:329;a:20:{s:4:\"tmpl\";i:1191;s:2:\"id\";i:18539;s:5:\"title\";s:40:\"Travel Agency &#8211; Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1617610273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/travel-agency-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:876;s:11:\"trend_index\";i:652;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:330;a:20:{s:4:\"tmpl\";i:1175;s:2:\"id\";i:18270;s:5:\"title\";s:24:\"Open week &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280.png\";s:12:\"tmpl_created\";i:1614767186;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/open-week-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:59:\"[\"Education\",\"Event\",\"Events\",\"Landing Pages\",\"University\"]\";s:10:\"menu_order\";i:62;s:16:\"popularity_index\";i:831;s:11:\"trend_index\";i:673;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:331;a:20:{s:4:\"tmpl\";i:1177;s:2:\"id\";i:18300;s:5:\"title\";s:30:\"Makeup Artist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-2.png\";s:12:\"tmpl_created\";i:1614768608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/makeup-artist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Beauty\",\"Business\",\"Course Online\",\"Landing Pages\",\"Makeup\",\"Online Service\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:861;s:11:\"trend_index\";i:783;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:332;a:20:{s:4:\"tmpl\";i:511;s:2:\"id\";i:5515;s:5:\"title\";s:8:\"About 19\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_9.png\";s:12:\"tmpl_created\";i:1520443530;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:268;s:11:\"trend_index\";i:161;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:333;a:20:{s:4:\"tmpl\";i:1179;s:2:\"id\";i:18329;s:5:\"title\";s:63:\"Online Real Estate Investment Conference &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-5.png\";s:12:\"tmpl_created\";i:1614770404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/lp/online-real-estate-investment-conference-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:76:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Online Event\",\"Real estate\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:866;s:11:\"trend_index\";i:779;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:334;a:20:{s:4:\"tmpl\";i:506;s:2:\"id\";i:5472;s:5:\"title\";s:7:\"About 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_7.png\";s:12:\"tmpl_created\";i:1520443520;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:210;s:11:\"trend_index\";i:116;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:335;a:20:{s:4:\"tmpl\";i:1183;s:2:\"id\";i:18391;s:5:\"title\";s:45:\"Children&#8217;s Optometrist &#8211; Business\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Childrens-Optometrist.png\";s:12:\"tmpl_created\";i:1614773564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/childrens-optometrist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:85:\"[\"Business\",\"Children\",\"Eye\",\"Glasses\",\"Health\",\"Kids\",\"Landing Pages\",\"Optometrist\"]\";s:10:\"menu_order\";i:65;s:16:\"popularity_index\";i:877;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:336;a:20:{s:4:\"tmpl\";i:1182;s:2:\"id\";i:18366;s:5:\"title\";s:30:\"Car Insurance &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Car-Insurance.png\";s:12:\"tmpl_created\";i:1614773263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/car-insurance-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"car\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:869;s:11:\"trend_index\";i:797;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:337;a:20:{s:4:\"tmpl\";i:1201;s:2:\"id\";i:19144;s:5:\"title\";s:25:\"Birthday Party Invitation\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/06/250x280.png\";s:12:\"tmpl_created\";i:1623848691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/birthday-party-invitation/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:67:\"[\"Birthday\",\"Event\",\"Landing Pages\",\"Party\",\"RSVD\",\"Save the Date\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:338;a:20:{s:4:\"tmpl\";i:1124;s:2:\"id\";i:16473;s:5:\"title\";s:26:\"Beauty Salon &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/about-1.jpg\";s:12:\"tmpl_created\";i:1608622373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/beauty-salon-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:615;s:11:\"trend_index\";i:184;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:339;a:20:{s:4:\"tmpl\";i:1176;s:2:\"id\";i:18291;s:5:\"title\";s:47:\"Grill Restaurant Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Food-Delivery-LP.png\";s:12:\"tmpl_created\";i:1614767830;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/lp/grill-restaurant-food-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Delivery\",\"Delivery Service\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:819;s:11:\"trend_index\";i:685;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:340;a:20:{s:4:\"tmpl\";i:504;s:2:\"id\";i:5455;s:5:\"title\";s:8:\"About 20\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_6.png\";s:12:\"tmpl_created\";i:1520443516;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:134;s:11:\"trend_index\";i:70;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:341;a:20:{s:4:\"tmpl\";i:1125;s:2:\"id\";i:16488;s:5:\"title\";s:28:\"Beauty Salon &#8211; Contact\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/contact.jpg\";s:12:\"tmpl_created\";i:1608622374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/beauty-salon-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:548;s:11:\"trend_index\";i:101;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:342;a:20:{s:4:\"tmpl\";i:1180;s:2:\"id\";i:18340;s:5:\"title\";s:30:\"Restaurant &#8211; Coming Soon\";s:9:\"thumbnail\";s:98:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Restuarant-Coming-Soon-LP.png\";s:12:\"tmpl_created\";i:1614772183;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/restaurant-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:51:\"[\"Coming Soon\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:810;s:11:\"trend_index\";i:809;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:343;a:20:{s:4:\"tmpl\";i:499;s:2:\"id\";i:5413;s:5:\"title\";s:8:\"About 21\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2.png\";s:12:\"tmpl_created\";i:1520443507;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:83;s:11:\"trend_index\";i:52;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:344;a:20:{s:4:\"tmpl\";i:1126;s:2:\"id\";i:16496;s:5:\"title\";s:28:\"Beauty Salon &#8211; Gallery\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/12/gallery-1.jpg\";s:12:\"tmpl_created\";i:1608622379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/beauty-salon-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:491;s:11:\"trend_index\";i:90;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:345;a:20:{s:4:\"tmpl\";i:1173;s:2:\"id\";i:17480;s:5:\"title\";s:42:\"At-home Massage Therapist &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/02/At-Home-Massage-Therapist.jpg\";s:12:\"tmpl_created\";i:1612879264;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/at-home-massage-therapist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:60:\"[\"Business\",\"Health\",\"Landing Pages\",\"Services\",\"Therapist\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:856;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:346;a:20:{s:4:\"tmpl\";i:1127;s:2:\"id\";i:16457;s:5:\"title\";s:25:\"Beauty Salon &#8211; Home\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/home-1.jpg\";s:12:\"tmpl_created\";i:1608622383;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/beauty-salon-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:408;s:11:\"trend_index\";i:56;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:347;a:20:{s:4:\"tmpl\";i:1178;s:2:\"id\";i:18317;s:5:\"title\";s:26:\"Insurance &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Life-Insirance.png\";s:12:\"tmpl_created\";i:1614769488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/lp/insurance-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:61:\"[\"Business\",\"Family\",\"Financial\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:870;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:348;a:20:{s:4:\"tmpl\";i:1128;s:2:\"id\";i:16518;s:5:\"title\";s:29:\"Beauty Salon &#8211; Services\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/12/services-1.jpg\";s:12:\"tmpl_created\";i:1608622386;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/beauty-salon-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:664;s:11:\"trend_index\";i:261;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:349;a:20:{s:4:\"tmpl\";i:1168;s:2:\"id\";i:17401;s:5:\"title\";s:40:\"Conference Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280.png\";s:12:\"tmpl_created\";i:1612724753;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/conference-thank-you-page-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:59:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:799;s:11:\"trend_index\";i:540;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:350;a:20:{s:4:\"tmpl\";i:503;s:2:\"id\";i:5447;s:5:\"title\";s:7:\"About 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_5.png\";s:12:\"tmpl_created\";i:1520443514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:48;s:11:\"trend_index\";i:12;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:351;a:20:{s:4:\"tmpl\";i:1073;s:2:\"id\";i:15486;s:5:\"title\";s:25:\"Travel Blog &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/About.jpg\";s:12:\"tmpl_created\";i:1606215720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/travel-blog-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:608;s:11:\"trend_index\";i:343;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:352;a:20:{s:4:\"tmpl\";i:1166;s:2:\"id\";i:17368;s:5:\"title\";s:38:\"Real Estate Agency &#8211; Real-Estate\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Real-Estate.png\";s:12:\"tmpl_created\";i:1612711814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/real-estate-agency-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:73:\"[\"Landing Pages\",\"listing\",\"Real estate\",\"Realestate\",\"realtor\",\"realty\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:858;s:11:\"trend_index\";i:777;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:353;a:20:{s:4:\"tmpl\";i:1074;s:2:\"id\";i:15478;s:5:\"title\";s:27:\"Travel Blog &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1606215735;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-blog-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:687;s:11:\"trend_index\";i:564;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:354;a:20:{s:4:\"tmpl\";i:1170;s:2:\"id\";i:17423;s:5:\"title\";s:57:\"Volunteer Calls Thank You Page &#8211; Social Involvement\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/02/Volunteer-Calls-TYP.jpg\";s:12:\"tmpl_created\";i:1612726058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:151:\"https://library.elementor.com/lp/volunteer-calls-thank-you-page-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:62:\"[\"Care\",\"Involvement\",\"Landing Pages\",\"Thank You\",\"Volunteer\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:857;s:11:\"trend_index\";i:818;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:355;a:20:{s:4:\"tmpl\";i:507;s:2:\"id\";i:5480;s:5:\"title\";s:7:\"About 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_7-1.png\";s:12:\"tmpl_created\";i:1520443522;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-4-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:428;s:11:\"trend_index\";i:303;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:356;a:20:{s:4:\"tmpl\";i:1075;s:2:\"id\";i:15467;s:5:\"title\";s:24:\"Travel Blog &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/11/Home.jpg\";s:12:\"tmpl_created\";i:1606215756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/travel-blog-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:567;s:11:\"trend_index\";i:224;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:357;a:20:{s:4:\"tmpl\";i:1169;s:2:\"id\";i:17409;s:5:\"title\";s:37:\"Webinar Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Webinar-TYP.png\";s:12:\"tmpl_created\";i:1612725644;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/webinar-thank-you-page-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:56:\"[\"Event\",\"Events\",\"Landing Pages\",\"Thank You\",\"Webinar\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:868;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:358;a:20:{s:4:\"tmpl\";i:1056;s:2:\"id\";i:15317;s:5:\"title\";s:25:\"Dance Studio &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/10/Home.jpg\";s:12:\"tmpl_created\";i:1603181291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/dance-studio-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:596;s:11:\"trend_index\";i:301;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:359;a:20:{s:4:\"tmpl\";i:545;s:2:\"id\";i:6027;s:5:\"title\";s:7:\"About 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1-1.png\";s:12:\"tmpl_created\";i:1520443639;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-5-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:40;s:11:\"trend_index\";i:40;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:360;a:20:{s:4:\"tmpl\";i:1160;s:2:\"id\";i:17258;s:5:\"title\";s:32:\"Beauty Product &#8211; eCommerce\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Beauty-Product.png\";s:12:\"tmpl_created\";i:1610903153;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/beauty-product-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:38:\"[\"Beauty\",\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:797;s:11:\"trend_index\";i:703;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:361;a:20:{s:4:\"tmpl\";i:1057;s:2:\"id\";i:15334;s:5:\"title\";s:26:\"Dance Studio &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/About.jpg\";s:12:\"tmpl_created\";i:1603181364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/dance-studio-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:626;s:11:\"trend_index\";i:373;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:362;a:20:{s:4:\"tmpl\";i:546;s:2:\"id\";i:6036;s:5:\"title\";s:7:\"About 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1-1.png\";s:12:\"tmpl_created\";i:1520443641;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-6-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:90;s:11:\"trend_index\";i:123;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:363;a:20:{s:4:\"tmpl\";i:1171;s:2:\"id\";i:17435;s:5:\"title\";s:39:\"Gym &#8211; App Service &#8211; Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-4.png\";s:12:\"tmpl_created\";i:1612726462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/gym-app-service-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:58:\"[\"App\",\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:767;s:11:\"trend_index\";i:577;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:364;a:20:{s:4:\"tmpl\";i:1058;s:2:\"id\";i:15349;s:5:\"title\";s:28:\"Dance Studio &#8211; Classes\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes.jpg\";s:12:\"tmpl_created\";i:1603181425;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:629;s:11:\"trend_index\";i:458;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:365;a:20:{s:4:\"tmpl\";i:1156;s:2:\"id\";i:17111;s:5:\"title\";s:33:\"Sunglasses Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/01/Sunglasses-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610632408;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/sunglasses-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Ecommerce\",\"Fashion\",\"Landing Pages\",\"Sale\",\"Sunglasses\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:812;s:11:\"trend_index\";i:732;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:366;a:20:{s:4:\"tmpl\";i:1055;s:2:\"id\";i:15366;s:5:\"title\";s:29:\"Dance Studio &#8211; Schedule\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes-Schedule.jpg\";s:12:\"tmpl_created\";i:1603181056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/dance-studio-schedule/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:698;s:11:\"trend_index\";i:602;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:367;a:20:{s:4:\"tmpl\";i:1157;s:2:\"id\";i:17223;s:5:\"title\";s:25:\"Fashion &#8211; eCommerce\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/01/Commerce-Fashion.png\";s:12:\"tmpl_created\";i:1610902553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/fashion-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:808;s:11:\"trend_index\";i:745;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:368;a:20:{s:4:\"tmpl\";i:1059;s:2:\"id\";i:15373;s:5:\"title\";s:28:\"Dance Studio &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Pricing.jpg\";s:12:\"tmpl_created\";i:1603181678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:731;s:11:\"trend_index\";i:661;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:369;a:20:{s:4:\"tmpl\";i:1151;s:2:\"id\";i:17017;s:5:\"title\";s:28:\"Shoes Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Shoes-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610535361;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/shoes-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:55:\"[\"Discount\",\"Ecommerce\",\"Landing Pages\",\"Sale\",\"Shoes\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:803;s:11:\"trend_index\";i:642;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:370;a:20:{s:4:\"tmpl\";i:508;s:2:\"id\";i:5488;s:5:\"title\";s:7:\"About 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_8.png\";s:12:\"tmpl_created\";i:1520443524;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:307;s:11:\"trend_index\";i:169;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:371;a:20:{s:4:\"tmpl\";i:1060;s:2:\"id\";i:15384;s:5:\"title\";s:28:\"Dance Studio &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/10/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1603181738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:741;s:11:\"trend_index\";i:721;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:372;a:20:{s:4:\"tmpl\";i:556;s:2:\"id\";i:6122;s:5:\"title\";s:7:\"About 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2-1.png\";s:12:\"tmpl_created\";i:1520443661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:38;s:11:\"trend_index\";i:26;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:373;a:20:{s:4:\"tmpl\";i:1163;s:2:\"id\";i:17301;s:5:\"title\";s:53:\"Personal Chef &#8211; Thank You Page &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/TYP-Personal-Chef.jpg\";s:12:\"tmpl_created\";i:1610903622;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/personal-chef-thank-you-page-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:43:\"[\"Chef\",\"Food\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:823;s:11:\"trend_index\";i:754;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:374;a:20:{s:4:\"tmpl\";i:1042;s:2:\"id\";i:15158;s:5:\"title\";s:26:\"Psychologist &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/About.jpg\";s:12:\"tmpl_created\";i:1600157561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/psychologist-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:618;s:11:\"trend_index\";i:426;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:375;a:20:{s:4:\"tmpl\";i:1164;s:2:\"id\";i:17313;s:5:\"title\";s:60:\"Development Course  &#8211; Thank You Page &#8211; Education\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Dev-Course-TYP-.png\";s:12:\"tmpl_created\";i:1610903776;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/lp/development-course-thank-you-page-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Education\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:834;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:376;a:20:{s:4:\"tmpl\";i:1045;s:2:\"id\";i:15197;s:5:\"title\";s:28:\"Psychologist &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1600160499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/psychologist-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:666;s:11:\"trend_index\";i:558;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:377;a:20:{s:4:\"tmpl\";i:509;s:2:\"id\";i:5496;s:5:\"title\";s:7:\"About 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_8-1.png\";s:12:\"tmpl_created\";i:1520443526;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:523;s:11:\"trend_index\";i:453;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:378;a:20:{s:4:\"tmpl\";i:1041;s:2:\"id\";i:15142;s:5:\"title\";s:25:\"Psychologist &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Home.jpg\";s:12:\"tmpl_created\";i:1600156308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/psychologist-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:464;s:11:\"trend_index\";i:297;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:379;a:20:{s:4:\"tmpl\";i:1044;s:2:\"id\";i:15188;s:5:\"title\";s:28:\"Psychologist &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/09/Pricing.jpg\";s:12:\"tmpl_created\";i:1600159731;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/psychologist-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:732;s:11:\"trend_index\";i:537;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:380;a:20:{s:4:\"tmpl\";i:684;s:2:\"id\";i:8961;s:5:\"title\";s:9:\"archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.1.jpg\";s:12:\"tmpl_created\";i:1528639909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:79;s:11:\"trend_index\";i:15;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:381;a:20:{s:4:\"tmpl\";i:1043;s:2:\"id\";i:15167;s:5:\"title\";s:29:\"Psychologist &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/09/Services.jpg\";s:12:\"tmpl_created\";i:1600158206;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/psychologist-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:85;s:16:\"popularity_index\";i:606;s:11:\"trend_index\";i:379;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:382;a:20:{s:4:\"tmpl\";i:1036;s:2:\"id\";i:14932;s:5:\"title\";s:30:\"Flooring Company &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/About.png\";s:12:\"tmpl_created\";i:1597740110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/flooring-company-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:488;s:11:\"trend_index\";i:319;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:383;a:20:{s:4:\"tmpl\";i:685;s:2:\"id\";i:8969;s:5:\"title\";s:9:\"archive 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.2.jpg\";s:12:\"tmpl_created\";i:1528700014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:250;s:11:\"trend_index\";i:124;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:384;a:20:{s:4:\"tmpl\";i:1037;s:2:\"id\";i:14998;s:5:\"title\";s:32:\"Flooring Company &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/08/Contact-Us.png\";s:12:\"tmpl_created\";i:1597740222;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/flooring-company-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:87;s:16:\"popularity_index\";i:553;s:11:\"trend_index\";i:380;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:385;a:20:{s:4:\"tmpl\";i:1038;s:2:\"id\";i:14965;s:5:\"title\";s:32:\"Flooring Company &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/Gallery.png\";s:12:\"tmpl_created\";i:1597740353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/flooring-company-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:371;s:11:\"trend_index\";i:291;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:386;a:20:{s:4:\"tmpl\";i:686;s:2:\"id\";i:8973;s:5:\"title\";s:9:\"archive 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.3.jpg\";s:12:\"tmpl_created\";i:1528700205;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:176;s:11:\"trend_index\";i:54;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:387;a:20:{s:4:\"tmpl\";i:1282;s:2:\"id\";i:22417;s:5:\"title\";s:52:\"Finance Learning Platform &#8211; Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1647354987;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/finance-learning-platform-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:388;a:20:{s:4:\"tmpl\";i:1040;s:2:\"id\";i:14947;s:5:\"title\";s:33:\"Flooring company &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/08/Services.png\";s:12:\"tmpl_created\";i:1597740551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/flooring-company-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:538;s:11:\"trend_index\";i:392;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:389;a:20:{s:4:\"tmpl\";i:1039;s:2:\"id\";i:14901;s:5:\"title\";s:29:\"Flooring Company &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Home.png\";s:12:\"tmpl_created\";i:1597740474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/flooring-company-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:387;s:11:\"trend_index\";i:185;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:390;a:20:{s:4:\"tmpl\";i:687;s:2:\"id\";i:8977;s:5:\"title\";s:9:\"archive 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.4.jpg\";s:12:\"tmpl_created\";i:1528700326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:354;s:11:\"trend_index\";i:396;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:391;a:20:{s:4:\"tmpl\";i:1252;s:2:\"id\";i:22146;s:5:\"title\";s:36:\"Home Decor Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1647177514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/home-decor-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"Interior Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:392;a:20:{s:4:\"tmpl\";i:688;s:2:\"id\";i:8981;s:5:\"title\";s:9:\"archive 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.5.jpg\";s:12:\"tmpl_created\";i:1528700484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:333;s:11:\"trend_index\";i:195;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:393;a:20:{s:4:\"tmpl\";i:1021;s:2:\"id\";i:14737;s:5:\"title\";s:32:\"Luxury Real Estate &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/About.png\";s:12:\"tmpl_created\";i:1595313527;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/luxury-real-estate-about-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:150;s:11:\"trend_index\";i:447;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:394;a:20:{s:4:\"tmpl\";i:689;s:2:\"id\";i:8985;s:5:\"title\";s:9:\"archive 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.6.jpg\";s:12:\"tmpl_created\";i:1528700612;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:204;s:11:\"trend_index\";i:95;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:395;a:20:{s:4:\"tmpl\";i:1020;s:2:\"id\";i:14756;s:5:\"title\";s:34:\"Luxury Real Estate &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Contact-Us.png\";s:12:\"tmpl_created\";i:1595313519;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/luxury-real-estate-contact-us-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:610;s:11:\"trend_index\";i:569;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:396;a:20:{s:4:\"tmpl\";i:1019;s:2:\"id\";i:14716;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Home.png\";s:12:\"tmpl_created\";i:1595313512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/luxury-real-estate-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:95;s:16:\"popularity_index\";i:394;s:11:\"trend_index\";i:165;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:397;a:20:{s:4:\"tmpl\";i:690;s:2:\"id\";i:8989;s:5:\"title\";s:9:\"archive 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.7.jpg\";s:12:\"tmpl_created\";i:1528701063;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:208;s:11:\"trend_index\";i:111;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:398;a:20:{s:4:\"tmpl\";i:1018;s:2:\"id\";i:14763;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; News\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/07/news-Archive.png\";s:12:\"tmpl_created\";i:1595313273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/luxury-real-estate-news-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:404;s:11:\"trend_index\";i:167;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:399;a:20:{s:4:\"tmpl\";i:1283;s:2:\"id\";i:22423;s:5:\"title\";s:39:\"Online Store &#8211; Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1647355154;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/online-store-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"Online Shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:97;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:400;a:20:{s:4:\"tmpl\";i:691;s:2:\"id\";i:8996;s:5:\"title\";s:9:\"archive 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.8.jpg\";s:12:\"tmpl_created\";i:1528701290;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:227;s:11:\"trend_index\";i:153;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:401;a:20:{s:4:\"tmpl\";i:1010;s:2:\"id\";i:13960;s:5:\"title\";s:32:\"Japanese restaurant &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/06/Home-Page.jpg\";s:12:\"tmpl_created\";i:1592289775;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/japanese-restaurant-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:537;s:11:\"trend_index\";i:287;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:402;a:20:{s:4:\"tmpl\";i:1284;s:2:\"id\";i:22428;s:5:\"title\";s:40:\"Travel Agency &#8211; Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1647355339;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/travel-agency-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:99;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:403;a:20:{s:4:\"tmpl\";i:692;s:2:\"id\";i:9001;s:5:\"title\";s:9:\"archive 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.9.jpg\";s:12:\"tmpl_created\";i:1528701433;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:265;s:11:\"trend_index\";i:208;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:404;a:20:{s:4:\"tmpl\";i:1007;s:2:\"id\";i:13993;s:5:\"title\";s:45:\"Japanese restaurant &#8211; Chef&#8217;s Menu\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/06/Chef_s-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/japanese-restaurant-chefs-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:651;s:11:\"trend_index\";i:675;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:405;a:20:{s:4:\"tmpl\";i:1006;s:2:\"id\";i:14012;s:5:\"title\";s:36:\"Japanese restaurant &#8211; Bar Menu\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/06/Bar-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/japanese-restaurant-bar-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:101;s:16:\"popularity_index\";i:735;s:11:\"trend_index\";i:829;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:406;a:20:{s:4:\"tmpl\";i:1005;s:2:\"id\";i:13917;s:5:\"title\";s:33:\"Japanese restaurant &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/06/About-Page.jpg\";s:12:\"tmpl_created\";i:1592289629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/japanese-restaurant-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:102;s:16:\"popularity_index\";i:640;s:11:\"trend_index\";i:389;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:407;a:20:{s:4:\"tmpl\";i:997;s:2:\"id\";i:13528;s:5:\"title\";s:22:\"Barbershop &#8211; 404\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/05/404-Page.jpg\";s:12:\"tmpl_created\";i:1589893152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/barbershop-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:768;s:11:\"trend_index\";i:681;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:408;a:20:{s:4:\"tmpl\";i:1009;s:2:\"id\";i:13937;s:5:\"title\";s:35:\"Japanese restaurant &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1592289748;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/japanese-restaurant-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:648;s:11:\"trend_index\";i:551;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:409;a:20:{s:4:\"tmpl\";i:1008;s:2:\"id\";i:14030;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Events\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/06/Events-Page.jpg\";s:12:\"tmpl_created\";i:1592289713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/japanese-restaurant-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:104;s:16:\"popularity_index\";i:723;s:11:\"trend_index\";i:711;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:410;a:20:{s:4:\"tmpl\";i:998;s:2:\"id\";i:13518;s:5:\"title\";s:26:\"Barbershop &#8211; Archive\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Blog-Page.jpg\";s:12:\"tmpl_created\";i:1589893157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/barbershop-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:737;s:11:\"trend_index\";i:523;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:411;a:20:{s:4:\"tmpl\";i:1016;s:2:\"id\";i:13984;s:5:\"title\";s:40:\"Japanese restaurant &#8211; Reservations\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/reservations.jpg\";s:12:\"tmpl_created\";i:1592294757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/japanese-restaurant-reservations/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:715;s:11:\"trend_index\";i:727;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:412;a:20:{s:4:\"tmpl\";i:999;s:2:\"id\";i:13479;s:5:\"title\";s:23:\"Barbershop &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Home-Page.jpg\";s:12:\"tmpl_created\";i:1589893275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/barbershop-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:106;s:16:\"popularity_index\";i:683;s:11:\"trend_index\";i:832;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:413;a:20:{s:4:\"tmpl\";i:996;s:2:\"id\";i:13604;s:5:\"title\";s:25:\"Barbershop &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1589893147;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/barbershop-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Footer\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:555;s:11:\"trend_index\";i:267;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:414;a:20:{s:4:\"tmpl\";i:1000;s:2:\"id\";i:13503;s:5:\"title\";s:24:\"Barbershop &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/05/About-Page.jpg\";s:12:\"tmpl_created\";i:1589893289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/barbershop-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:744;s:11:\"trend_index\";i:739;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:415;a:20:{s:4:\"tmpl\";i:995;s:2:\"id\";i:13612;s:5:\"title\";s:25:\"Barbershop &#8211; Header\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/06/barber-shop-header.jpg\";s:12:\"tmpl_created\";i:1589893142;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/barbershop-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Header\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:343;s:11:\"trend_index\";i:137;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:416;a:20:{s:4:\"tmpl\";i:1001;s:2:\"id\";i:13548;s:5:\"title\";s:27:\"Barbershop &#8211; Services\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/05/Services-Page.jpg\";s:12:\"tmpl_created\";i:1589893298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/barbershop-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:761;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:417;a:20:{s:4:\"tmpl\";i:1002;s:2:\"id\";i:13560;s:5:\"title\";s:26:\"Barbershop &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1589893307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/barbershop-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:109;s:16:\"popularity_index\";i:756;s:11:\"trend_index\";i:822;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:418;a:20:{s:4:\"tmpl\";i:1003;s:2:\"id\";i:13587;s:5:\"title\";s:26:\"Barbershop &#8211; Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/05/Contact-Us-Page.jpg\";s:12:\"tmpl_created\";i:1589893315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/barbershop-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:110;s:16:\"popularity_index\";i:753;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:419;a:20:{s:4:\"tmpl\";i:982;s:2:\"id\";i:13307;s:5:\"title\";s:26:\"Online Course &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.jpg\";s:12:\"tmpl_created\";i:1587474541;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/online-course-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:230;s:11:\"trend_index\";i:125;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:420;a:20:{s:4:\"tmpl\";i:994;s:2:\"id\";i:13621;s:5:\"title\";s:30:\"Barbershop &#8211; Single Post\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/05/Single-Page.jpg\";s:12:\"tmpl_created\";i:1589893137;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/barbershop-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:736;s:11:\"trend_index\";i:580;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:421;a:20:{s:4:\"tmpl\";i:1131;s:2:\"id\";i:16527;s:5:\"title\";s:24:\"Beauty Salon &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/12/404.jpg\";s:12:\"tmpl_created\";i:1608622517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/beauty-salon-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:29:\"[\"404\",\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:742;s:11:\"trend_index\";i:563;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:422;a:20:{s:4:\"tmpl\";i:983;s:2:\"id\";i:13328;s:5:\"title\";s:27:\"Online Course &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.jpg\";s:12:\"tmpl_created\";i:1587474558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/online-course-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:508;s:11:\"trend_index\";i:429;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:423;a:20:{s:4:\"tmpl\";i:984;s:2:\"id\";i:13338;s:5:\"title\";s:33:\"Online Course &#8211; Course Page\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Course-Page.png\";s:12:\"tmpl_created\";i:1587474574;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/online-course-course-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:113;s:16:\"popularity_index\";i:337;s:11:\"trend_index\";i:310;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:424;a:20:{s:4:\"tmpl\";i:985;s:2:\"id\";i:13352;s:5:\"title\";s:29:\"Online Course &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1587474591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/online-course-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:114;s:16:\"popularity_index\";i:565;s:11:\"trend_index\";i:533;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:425;a:20:{s:4:\"tmpl\";i:1130;s:2:\"id\";i:16535;s:5:\"title\";s:27:\"Beauty Salon &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Footer.jpg\";s:12:\"tmpl_created\";i:1608622498;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/beauty-salon-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:32:\"[\"Beauty Salon\",\"Footer\",\"Hair\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:524;s:11:\"trend_index\";i:126;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:426;a:20:{s:4:\"tmpl\";i:971;s:2:\"id\";i:13187;s:5:\"title\";s:33:\"Interior Design &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.png\";s:12:\"tmpl_created\";i:1586148661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/interior-design-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:331;s:11:\"trend_index\";i:264;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:427;a:20:{s:4:\"tmpl\";i:1453;s:2:\"id\";i:16346;s:5:\"title\";s:33:\"Your New Home &#8211; Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp3-l.png\";s:12:\"tmpl_created\";i:1660205402;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/your-new-home-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:31:\"[\"Landing Pages\",\"Real estate\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:428;a:20:{s:4:\"tmpl\";i:972;s:2:\"id\";i:13199;s:5:\"title\";s:29:\"Interior Design &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.png\";s:12:\"tmpl_created\";i:1586148666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/interior-design-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:316;s:11:\"trend_index\";i:334;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:429;a:20:{s:4:\"tmpl\";i:1129;s:2:\"id\";i:16545;s:5:\"title\";s:27:\"Beauty Salon &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Header.jpg\";s:12:\"tmpl_created\";i:1608622495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/beauty-salon-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:32:\"[\"Beauty Salon\",\"Hair\",\"Header\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:356;s:11:\"trend_index\";i:49;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:430;a:20:{s:4:\"tmpl\";i:973;s:2:\"id\";i:13214;s:5:\"title\";s:32:\"Interior Design &#8211; Projects\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/portfolio_s.jpg\";s:12:\"tmpl_created\";i:1586148672;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/interior-design-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:367;s:11:\"trend_index\";i:323;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:431;a:20:{s:4:\"tmpl\";i:641;s:2:\"id\";i:7686;s:5:\"title\";s:12:\"Blog Posts 1\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2018/03/blog_posts.png\";s:12:\"tmpl_created\";i:1521558047;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/blog-posts-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:26:\"[\"Archive\",\"Blog\",\"posts\"]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:131;s:11:\"trend_index\";i:152;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:432;a:20:{s:4:\"tmpl\";i:974;s:2:\"id\";i:13229;s:5:\"title\";s:31:\"Interior Design &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.png\";s:12:\"tmpl_created\";i:1586148677;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/interior-design-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:395;s:11:\"trend_index\";i:337;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:433;a:20:{s:4:\"tmpl\";i:959;s:2:\"id\";i:12948;s:5:\"title\";s:29:\"Photography &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Home_s.png\";s:12:\"tmpl_created\";i:1582093442;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/photography-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:119;s:16:\"popularity_index\";i:241;s:11:\"trend_index\";i:201;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:434;a:20:{s:4:\"tmpl\";i:960;s:2:\"id\";i:12798;s:5:\"title\";s:25:\"Photography &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/About_s.png\";s:12:\"tmpl_created\";i:1582093446;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/photography-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:499;s:11:\"trend_index\";i:374;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:435;a:20:{s:4:\"tmpl\";i:484;s:2:\"id\";i:5283;s:5:\"title\";s:9:\"Clients 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_2.png\";s:12:\"tmpl_created\";i:1520443478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-1-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:294;s:11:\"trend_index\";i:202;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:436;a:20:{s:4:\"tmpl\";i:961;s:2:\"id\";i:12868;s:5:\"title\";s:27:\"Photography &#8211; Contact\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Contact_s.png\";s:12:\"tmpl_created\";i:1582093450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/photography-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:121;s:16:\"popularity_index\";i:531;s:11:\"trend_index\";i:350;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:437;a:20:{s:4:\"tmpl\";i:962;s:2:\"id\";i:13056;s:5:\"title\";s:28:\"Photography &#8211; Wildlife\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/02/Wildlife_s.png\";s:12:\"tmpl_created\";i:1582093454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/photography-wildlife/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:579;s:11:\"trend_index\";i:656;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:438;a:20:{s:4:\"tmpl\";i:487;s:2:\"id\";i:5306;s:5:\"title\";s:10:\"Clients 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_3.png\";s:12:\"tmpl_created\";i:1520443484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:657;s:11:\"trend_index\";i:581;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:439;a:20:{s:4:\"tmpl\";i:963;s:2:\"id\";i:12922;s:5:\"title\";s:37:\"Photography &#8211; Glowing Jellyfish\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Jellyfish_S.png\";s:12:\"tmpl_created\";i:1582093457;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/photography-glowing-jellyfish/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:123;s:16:\"popularity_index\";i:628;s:11:\"trend_index\";i:532;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:440;a:20:{s:4:\"tmpl\";i:964;s:2:\"id\";i:12875;s:5:\"title\";s:36:\"Photography &#8211; Fluttering Birds\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Birds_s.png\";s:12:\"tmpl_created\";i:1582093461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/photography-fluttering-birds/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:124;s:16:\"popularity_index\";i:693;s:11:\"trend_index\";i:766;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:441;a:20:{s:4:\"tmpl\";i:965;s:2:\"id\";i:12962;s:5:\"title\";s:26:\"Photography &#8211; Nature\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Nature_s.png\";s:12:\"tmpl_created\";i:1582093465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/photography-nature/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:592;s:11:\"trend_index\";i:778;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:442;a:20:{s:4:\"tmpl\";i:491;s:2:\"id\";i:5341;s:5:\"title\";s:10:\"Clients 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_4.png\";s:12:\"tmpl_created\";i:1520443491;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:603;s:11:\"trend_index\";i:633;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:443;a:20:{s:4:\"tmpl\";i:966;s:2:\"id\";i:12833;s:5:\"title\";s:38:\"Photography &#8211; Blossoming Flowers\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Flowers_s.png\";s:12:\"tmpl_created\";i:1582093469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/photography-blossoming-flowers/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:597;s:11:\"trend_index\";i:750;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:444;a:20:{s:4:\"tmpl\";i:488;s:2:\"id\";i:5315;s:5:\"title\";s:10:\"Clients 12\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4-1.png\";s:12:\"tmpl_created\";i:1520443486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:485;s:11:\"trend_index\";i:263;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:445;a:20:{s:4:\"tmpl\";i:967;s:2:\"id\";i:12898;s:5:\"title\";s:36:\"Photography &#8211; Forest Mushrooms\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Mushrooms_s.png\";s:12:\"tmpl_created\";i:1582093473;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/photography-forest-mushrooms/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:127;s:16:\"popularity_index\";i:667;s:11:\"trend_index\";i:649;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:446;a:20:{s:4:\"tmpl\";i:968;s:2:\"id\";i:12994;s:5:\"title\";s:24:\"Photography &#8211; Pets\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Pets_s.png\";s:12:\"tmpl_created\";i:1582093477;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/photography-pets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:128;s:16:\"popularity_index\";i:612;s:11:\"trend_index\";i:508;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:447;a:20:{s:4:\"tmpl\";i:969;s:2:\"id\";i:12805;s:5:\"title\";s:37:\"Photography &#8211; B&amp;W Portraits\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Black_s.png\";s:12:\"tmpl_created\";i:1582093481;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/photography-bw-portraits/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:695;s:11:\"trend_index\";i:735;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:448;a:20:{s:4:\"tmpl\";i:490;s:2:\"id\";i:5333;s:5:\"title\";s:10:\"Clients 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_6.png\";s:12:\"tmpl_created\";i:1520443489;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:234;s:11:\"trend_index\";i:128;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:449;a:20:{s:4:\"tmpl\";i:970;s:2:\"id\";i:13031;s:5:\"title\";s:33:\"Photography &#8211; Vivid Parrots\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Parrots_s.png\";s:12:\"tmpl_created\";i:1582093484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/photography-vivid-parrots/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:660;s:11:\"trend_index\";i:643;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:450;a:20:{s:4:\"tmpl\";i:496;s:2:\"id\";i:5389;s:5:\"title\";s:10:\"Clients 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_9.png\";s:12:\"tmpl_created\";i:1520443501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:407;s:11:\"trend_index\";i:307;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:451;a:20:{s:4:\"tmpl\";i:940;s:2:\"id\";i:12621;s:5:\"title\";s:26:\"Magazine &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/01/Home_s.png\";s:12:\"tmpl_created\";i:1579060604;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/magazine-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:131;s:16:\"popularity_index\";i:167;s:11:\"trend_index\";i:121;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:452;a:20:{s:4:\"tmpl\";i:936;s:2:\"id\";i:12352;s:5:\"title\";s:24:\"Travel &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/12/Home_s.png\";s:12:\"tmpl_created\";i:1575960464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/travel-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:291;s:11:\"trend_index\";i:194;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:453;a:20:{s:4:\"tmpl\";i:486;s:2:\"id\";i:5298;s:5:\"title\";s:10:\"Clients 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_3.png\";s:12:\"tmpl_created\";i:1520443482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:465;s:11:\"trend_index\";i:520;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:454;a:20:{s:4:\"tmpl\";i:932;s:2:\"id\";i:12400;s:5:\"title\";s:20:\"Travel &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/12/About.png\";s:12:\"tmpl_created\";i:1575960441;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/travel-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:133;s:16:\"popularity_index\";i:444;s:11:\"trend_index\";i:445;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:455;a:20:{s:4:\"tmpl\";i:938;s:2:\"id\";i:12479;s:5:\"title\";s:20:\"Travel &#8211; Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Tours_s.png\";s:12:\"tmpl_created\";i:1575960474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/travel-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:539;s:11:\"trend_index\";i:726;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:456;a:20:{s:4:\"tmpl\";i:495;s:2:\"id\";i:5381;s:5:\"title\";s:10:\"Clients 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_9.png\";s:12:\"tmpl_created\";i:1520443499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:198;s:11:\"trend_index\";i:168;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:457;a:20:{s:4:\"tmpl\";i:937;s:2:\"id\";i:12466;s:5:\"title\";s:27:\"Travel &#8211; Testimonials\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/Testimonials.png\";s:12:\"tmpl_created\";i:1575960469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-testimonials/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:135;s:16:\"popularity_index\";i:527;s:11:\"trend_index\";i:481;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:458;a:20:{s:4:\"tmpl\";i:935;s:2:\"id\";i:12443;s:5:\"title\";s:22:\"Travel &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Gallery.png\";s:12:\"tmpl_created\";i:1575960459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/travel-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:136;s:16:\"popularity_index\";i:467;s:11:\"trend_index\";i:501;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:459;a:20:{s:4:\"tmpl\";i:934;s:2:\"id\";i:12431;s:5:\"title\";s:18:\"Travel &#8211; FAQ\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/FAQ.png\";s:12:\"tmpl_created\";i:1575960453;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/travel-faq/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:501;s:11:\"trend_index\";i:387;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:460;a:20:{s:4:\"tmpl\";i:493;s:2:\"id\";i:5357;s:5:\"title\";s:9:\"Clients 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_7.png\";s:12:\"tmpl_created\";i:1520443495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:341;s:11:\"trend_index\";i:232;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:461;a:20:{s:4:\"tmpl\";i:933;s:2:\"id\";i:12421;s:5:\"title\";s:27:\"Travel &#8211; Contact Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/12/Contsct-Us.png\";s:12:\"tmpl_created\";i:1575960445;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-contact-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:138;s:16:\"popularity_index\";i:571;s:11:\"trend_index\";i:536;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:462;a:20:{s:4:\"tmpl\";i:892;s:2:\"id\";i:11763;s:5:\"title\";s:27:\"Portfolio &#8211; Home Page\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Homepage_small.png\";s:12:\"tmpl_created\";i:1569428959;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/portfolio-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:280;s:11:\"trend_index\";i:241;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:463;a:20:{s:4:\"tmpl\";i:485;s:2:\"id\";i:5290;s:5:\"title\";s:9:\"Clients 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_2.png\";s:12:\"tmpl_created\";i:1520443480;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:545;s:11:\"trend_index\";i:502;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:464;a:20:{s:4:\"tmpl\";i:891;s:2:\"id\";i:11781;s:5:\"title\";s:23:\"Portfolio &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/About_small.png\";s:12:\"tmpl_created\";i:1569428955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/portfolio-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:349;s:11:\"trend_index\";i:290;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:465;a:20:{s:4:\"tmpl\";i:482;s:2:\"id\";i:5266;s:5:\"title\";s:9:\"Clients 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_1.png\";s:12:\"tmpl_created\";i:1520443474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:95;s:11:\"trend_index\";i:134;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:466;a:20:{s:4:\"tmpl\";i:890;s:2:\"id\";i:11793;s:5:\"title\";s:26:\"Portfolio &#8211; Projects\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Projects_small.png\";s:12:\"tmpl_created\";i:1569428951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/portfolio-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:141;s:16:\"popularity_index\";i:448;s:11:\"trend_index\";i:467;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:467;a:20:{s:4:\"tmpl\";i:889;s:2:\"id\";i:11800;s:5:\"title\";s:25:\"Portfolio &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/09/Contact_small.png\";s:12:\"tmpl_created\";i:1569428946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/portfolio-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:142;s:16:\"popularity_index\";i:494;s:11:\"trend_index\";i:449;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:468;a:20:{s:4:\"tmpl\";i:866;s:2:\"id\";i:11163;s:5:\"title\";s:32:\"Digital Agency &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/07/Home_small.png\";s:12:\"tmpl_created\";i:1564641877;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/digital-agency-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:57;s:11:\"trend_index\";i:32;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:469;a:20:{s:4:\"tmpl\";i:483;s:2:\"id\";i:5275;s:5:\"title\";s:9:\"Clients 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_1.png\";s:12:\"tmpl_created\";i:1520443476;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:334;s:11:\"trend_index\";i:321;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:470;a:20:{s:4:\"tmpl\";i:492;s:2:\"id\";i:5349;s:5:\"title\";s:9:\"Clients 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_7.png\";s:12:\"tmpl_created\";i:1520443493;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:144;s:16:\"popularity_index\";i:233;s:11:\"trend_index\";i:92;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:471;a:20:{s:4:\"tmpl\";i:916;s:2:\"id\";i:12143;s:5:\"title\";s:22:\"Law Firm &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/about.png\";s:12:\"tmpl_created\";i:1572847069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/law-firm-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:350;s:11:\"trend_index\";i:344;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:472;a:20:{s:4:\"tmpl\";i:489;s:2:\"id\";i:5324;s:5:\"title\";s:9:\"Clients 8\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5-1.png\";s:12:\"tmpl_created\";i:1520443488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:526;s:11:\"trend_index\";i:381;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:473;a:20:{s:4:\"tmpl\";i:920;s:2:\"id\";i:12091;s:5:\"title\";s:21:\"Law Firm &#8211; Team\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/team.png\";s:12:\"tmpl_created\";i:1572847113;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/law-firm-team/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:147;s:16:\"popularity_index\";i:318;s:11:\"trend_index\";i:314;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:474;a:20:{s:4:\"tmpl\";i:869;s:2:\"id\";i:11129;s:5:\"title\";s:28:\"Digital Agency &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/About_small.png\";s:12:\"tmpl_created\";i:1564641889;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/digital-agency-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:148;s:16:\"popularity_index\";i:182;s:11:\"trend_index\";i:166;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:475;a:20:{s:4:\"tmpl\";i:880;s:2:\"id\";i:11572;s:5:\"title\";s:19:\"Gym &#8211; Trainer\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Trainer_Small.png\";s:12:\"tmpl_created\";i:1567392934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-trainer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:521;s:11:\"trend_index\";i:590;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:476;a:20:{s:4:\"tmpl\";i:494;s:2:\"id\";i:5368;s:5:\"title\";s:9:\"Clients 9\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_8.png\";s:12:\"tmpl_created\";i:1520443497;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:253;s:11:\"trend_index\";i:273;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:477;a:20:{s:4:\"tmpl\";i:917;s:2:\"id\";i:12133;s:5:\"title\";s:24:\"Law Firm &#8211; Careers\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/11/careers.png\";s:12:\"tmpl_created\";i:1572847078;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-careers/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:583;s:11:\"trend_index\";i:640;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:478;a:20:{s:4:\"tmpl\";i:425;s:2:\"id\";i:4436;s:5:\"title\";s:11:\"Contact  16\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_2.png\";s:12:\"tmpl_created\";i:1520443293;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:161;s:11:\"trend_index\";i:68;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:479;a:20:{s:4:\"tmpl\";i:915;s:2:\"id\";i:12155;s:5:\"title\";s:26:\"Law Firm &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/home.png\";s:12:\"tmpl_created\";i:1572847054;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/law-firm-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:193;s:11:\"trend_index\";i:110;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:480;a:20:{s:4:\"tmpl\";i:423;s:2:\"id\";i:4420;s:5:\"title\";s:9:\"Contact 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_1.png\";s:12:\"tmpl_created\";i:1520443289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-1-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:196;s:11:\"trend_index\";i:127;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:481;a:20:{s:4:\"tmpl\";i:921;s:2:\"id\";i:12080;s:5:\"title\";s:24:\"Law Firm &#8211; Partner\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/11/partner-1.png\";s:12:\"tmpl_created\";i:1572847120;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-partner/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:153;s:16:\"popularity_index\";i:556;s:11:\"trend_index\";i:471;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:482;a:20:{s:4:\"tmpl\";i:534;s:2:\"id\";i:5836;s:5:\"title\";s:10:\"Contact 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:114;s:11:\"trend_index\";i:76;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:483;a:20:{s:4:\"tmpl\";i:865;s:2:\"id\";i:11074;s:5:\"title\";s:31:\"Digital Agency &#8211; Services\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/07/Services_small.png\";s:12:\"tmpl_created\";i:1564641872;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/digital-agency-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:163;s:11:\"trend_index\";i:170;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:484;a:20:{s:4:\"tmpl\";i:879;s:2:\"id\";i:11506;s:5:\"title\";s:19:\"Gym &#8211; Classes\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Classes_Small.png\";s:12:\"tmpl_created\";i:1567392930;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:155;s:16:\"popularity_index\";i:514;s:11:\"trend_index\";i:554;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:485;a:20:{s:4:\"tmpl\";i:535;s:2:\"id\";i:5844;s:5:\"title\";s:10:\"Contact 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_2.png\";s:12:\"tmpl_created\";i:1520443599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:156;s:16:\"popularity_index\";i:289;s:11:\"trend_index\";i:313;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:486;a:20:{s:4:\"tmpl\";i:922;s:2:\"id\";i:12044;s:5:\"title\";s:24:\"Law Firm &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/contsct_us.png\";s:12:\"tmpl_created\";i:1572847130;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:437;s:11:\"trend_index\";i:304;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:487;a:20:{s:4:\"tmpl\";i:430;s:2:\"id\";i:4476;s:5:\"title\";s:10:\"Contact 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_4.png\";s:12:\"tmpl_created\";i:1520443303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:229;s:11:\"trend_index\";i:187;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:488;a:20:{s:4:\"tmpl\";i:918;s:2:\"id\";i:12124;s:5:\"title\";s:25:\"Law Firm &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/11/services.png\";s:12:\"tmpl_created\";i:1572847096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/law-firm-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:158;s:16:\"popularity_index\";i:433;s:11:\"trend_index\";i:296;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:489;a:20:{s:4:\"tmpl\";i:864;s:2:\"id\";i:11056;s:5:\"title\";s:35:\"Digital Agency &#8211; Social Media\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/07/Social-Media_small.png\";s:12:\"tmpl_created\";i:1564641867;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/digital-agency-social-media/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:297;s:11:\"trend_index\";i:361;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:490;a:20:{s:4:\"tmpl\";i:476;s:2:\"id\";i:5214;s:5:\"title\";s:10:\"Contact 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_2.png\";s:12:\"tmpl_created\";i:1520443462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/contact-16-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:194;s:11:\"trend_index\";i:106;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:491;a:20:{s:4:\"tmpl\";i:878;s:2:\"id\";i:11536;s:5:\"title\";s:19:\"Gym &#8211; Fitness\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Fitness_Small.png\";s:12:\"tmpl_created\";i:1567392927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:160;s:16:\"popularity_index\";i:621;s:11:\"trend_index\";i:674;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:492;a:20:{s:4:\"tmpl\";i:882;s:2:\"id\";i:11545;s:5:\"title\";s:21:\"Gym &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Home_Small.png\";s:12:\"tmpl_created\";i:1567392943;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/gym-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:161;s:16:\"popularity_index\";i:310;s:11:\"trend_index\";i:229;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:493;a:20:{s:4:\"tmpl\";i:919;s:2:\"id\";i:12116;s:5:\"title\";s:24:\"Law Firm &#8211; Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/family_law.png\";s:12:\"tmpl_created\";i:1572847105;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:489;s:11:\"trend_index\";i:339;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:494;a:20:{s:4:\"tmpl\";i:478;s:2:\"id\";i:5230;s:5:\"title\";s:10:\"Contact 17\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_3.png\";s:12:\"tmpl_created\";i:1520443466;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:339;s:11:\"trend_index\";i:335;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:495;a:20:{s:4:\"tmpl\";i:868;s:2:\"id\";i:11094;s:5:\"title\";s:30:\"Digital Agency &#8211; Clients\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/07/Clients_small.png\";s:12:\"tmpl_created\";i:1564641885;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/digital-agency-clients/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:163;s:16:\"popularity_index\";i:424;s:11:\"trend_index\";i:424;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:496;a:20:{s:4:\"tmpl\";i:481;s:2:\"id\";i:5257;s:5:\"title\";s:10:\"Contact 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5.png\";s:12:\"tmpl_created\";i:1520443472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:163;s:16:\"popularity_index\";i:438;s:11:\"trend_index\";i:490;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:497;a:20:{s:4:\"tmpl\";i:881;s:2:\"id\";i:11478;s:5:\"title\";s:17:\"Gym &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/About_Small.png\";s:12:\"tmpl_created\";i:1567392939;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/gym-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:164;s:16:\"popularity_index\";i:481;s:11:\"trend_index\";i:579;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:498;a:20:{s:4:\"tmpl\";i:532;s:2:\"id\";i:5820;s:5:\"title\";s:9:\"Contact 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:166;s:16:\"popularity_index\";i:183;s:11:\"trend_index\";i:357;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:499;a:20:{s:4:\"tmpl\";i:877;s:2:\"id\";i:11563;s:5:\"title\";s:19:\"Gym &#8211; Pricing\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Pricing_Small.png\";s:12:\"tmpl_created\";i:1567392923;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:166;s:16:\"popularity_index\";i:577;s:11:\"trend_index\";i:736;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:500;a:20:{s:4:\"tmpl\";i:422;s:2:\"id\";i:4411;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_1.png\";s:12:\"tmpl_created\";i:1520443287;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:167;s:16:\"popularity_index\";i:113;s:11:\"trend_index\";i:217;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:501;a:20:{s:4:\"tmpl\";i:867;s:2:\"id\";i:11034;s:5:\"title\";s:30:\"Digital Agency &#8211; Contact\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/07/Contsct-Us_small.png\";s:12:\"tmpl_created\";i:1564641881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/contact-digital-agency/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:168;s:16:\"popularity_index\";i:191;s:11:\"trend_index\";i:156;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:502;a:20:{s:4:\"tmpl\";i:533;s:2:\"id\";i:5828;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443595;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:170;s:16:\"popularity_index\";i:312;s:11:\"trend_index\";i:495;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:503;a:20:{s:4:\"tmpl\";i:876;s:2:\"id\";i:11528;s:5:\"title\";s:19:\"Gym &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Contact_Small.png\";s:12:\"tmpl_created\";i:1567392917;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:505;s:11:\"trend_index\";i:624;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:504;a:20:{s:4:\"tmpl\";i:424;s:2:\"id\";i:4428;s:5:\"title\";s:9:\"Contact 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_2.png\";s:12:\"tmpl_created\";i:1520443291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:118;s:11:\"trend_index\";i:131;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:505;a:20:{s:4:\"tmpl\";i:426;s:2:\"id\";i:4444;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443295;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:174;s:16:\"popularity_index\";i:84;s:11:\"trend_index\";i:93;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:506;a:20:{s:4:\"tmpl\";i:432;s:2:\"id\";i:4492;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_3.png\";s:12:\"tmpl_created\";i:1520443307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-5-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:176;s:16:\"popularity_index\";i:37;s:11:\"trend_index\";i:31;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:507;a:20:{s:4:\"tmpl\";i:427;s:2:\"id\";i:4452;s:5:\"title\";s:9:\"Contact 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:178;s:16:\"popularity_index\";i:139;s:11:\"trend_index\";i:150;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:508;a:20:{s:4:\"tmpl\";i:429;s:2:\"id\";i:4468;s:5:\"title\";s:9:\"Contact 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_3.png\";s:12:\"tmpl_created\";i:1520443301;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:179;s:16:\"popularity_index\";i:127;s:11:\"trend_index\";i:72;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:509;a:20:{s:4:\"tmpl\";i:431;s:2:\"id\";i:4484;s:5:\"title\";s:9:\"Contact 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_3.png\";s:12:\"tmpl_created\";i:1520443305;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:182;s:16:\"popularity_index\";i:328;s:11:\"trend_index\";i:260;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:510;a:20:{s:4:\"tmpl\";i:428;s:2:\"id\";i:4460;s:5:\"title\";s:9:\"Contact 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:184;s:16:\"popularity_index\";i:99;s:11:\"trend_index\";i:80;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:511;a:20:{s:4:\"tmpl\";i:613;s:2:\"id\";i:5558;s:5:\"title\";s:5:\"CTA 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_2.png\";s:12:\"tmpl_created\";i:1520520684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:185;s:16:\"popularity_index\";i:129;s:11:\"trend_index\";i:69;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:512;a:20:{s:4:\"tmpl\";i:634;s:2:\"id\";i:5939;s:5:\"title\";s:6:\"CTA 10\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_13-1.png\";s:12:\"tmpl_created\";i:1520520760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:187;s:16:\"popularity_index\";i:190;s:11:\"trend_index\";i:118;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:513;a:20:{s:4:\"tmpl\";i:633;s:2:\"id\";i:5930;s:5:\"title\";s:6:\"CTA 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_15.png\";s:12:\"tmpl_created\";i:1520520758;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:190;s:16:\"popularity_index\";i:76;s:11:\"trend_index\";i:84;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:514;a:20:{s:4:\"tmpl\";i:632;s:2:\"id\";i:5921;s:5:\"title\";s:6:\"CTA 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_14.png\";s:12:\"tmpl_created\";i:1520520757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:192;s:16:\"popularity_index\";i:278;s:11:\"trend_index\";i:234;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:515;a:20:{s:4:\"tmpl\";i:618;s:2:\"id\";i:5607;s:5:\"title\";s:6:\"CTA 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_5.png\";s:12:\"tmpl_created\";i:1520520695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:194;s:16:\"popularity_index\";i:42;s:11:\"trend_index\";i:11;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:516;a:20:{s:4:\"tmpl\";i:574;s:2:\"id\";i:6017;s:5:\"title\";s:6:\"CTA 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_14.png\";s:12:\"tmpl_created\";i:1520520331;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:196;s:16:\"popularity_index\";i:152;s:11:\"trend_index\";i:122;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:517;a:20:{s:4:\"tmpl\";i:628;s:2:\"id\";i:5885;s:5:\"title\";s:6:\"CTA 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_11.png\";s:12:\"tmpl_created\";i:1520520751;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:197;s:16:\"popularity_index\";i:274;s:11:\"trend_index\";i:256;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:518;a:20:{s:4:\"tmpl\";i:627;s:2:\"id\";i:5877;s:5:\"title\";s:6:\"CTA 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_10.png\";s:12:\"tmpl_created\";i:1520520749;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:200;s:16:\"popularity_index\";i:564;s:11:\"trend_index\";i:677;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:519;a:20:{s:4:\"tmpl\";i:625;s:2:\"id\";i:5860;s:5:\"title\";s:6:\"CTA 17\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_9.png\";s:12:\"tmpl_created\";i:1520520746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:201;s:16:\"popularity_index\";i:120;s:11:\"trend_index\";i:63;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:520;a:20:{s:4:\"tmpl\";i:626;s:2:\"id\";i:5869;s:5:\"title\";s:6:\"CTA 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_10.png\";s:12:\"tmpl_created\";i:1520520747;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:204;s:16:\"popularity_index\";i:345;s:11:\"trend_index\";i:486;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:521;a:20:{s:4:\"tmpl\";i:611;s:2:\"id\";i:5542;s:5:\"title\";s:6:\"CTA 19\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_1.png\";s:12:\"tmpl_created\";i:1520520681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:205;s:16:\"popularity_index\";i:169;s:11:\"trend_index\";i:270;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:522;a:20:{s:4:\"tmpl\";i:614;s:2:\"id\";i:5567;s:5:\"title\";s:5:\"CTA 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_2.png\";s:12:\"tmpl_created\";i:1520520685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:207;s:16:\"popularity_index\";i:143;s:11:\"trend_index\";i:225;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:523;a:20:{s:4:\"tmpl\";i:629;s:2:\"id\";i:5893;s:5:\"title\";s:6:\"CTA 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_12.png\";s:12:\"tmpl_created\";i:1520520752;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:210;s:16:\"popularity_index\";i:259;s:11:\"trend_index\";i:457;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:524;a:20:{s:4:\"tmpl\";i:619;s:2:\"id\";i:5634;s:5:\"title\";s:6:\"CTA 24\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_6.png\";s:12:\"tmpl_created\";i:1520520699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:212;s:16:\"popularity_index\";i:188;s:11:\"trend_index\";i:255;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:525;a:20:{s:4:\"tmpl\";i:620;s:2:\"id\";i:5642;s:5:\"title\";s:6:\"CTA 25\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_6.png\";s:12:\"tmpl_created\";i:1520520701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-25/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:214;s:16:\"popularity_index\";i:226;s:11:\"trend_index\";i:262;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:526;a:20:{s:4:\"tmpl\";i:615;s:2:\"id\";i:5583;s:5:\"title\";s:6:\"CTA 26\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_3.png\";s:12:\"tmpl_created\";i:1520520689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:216;s:16:\"popularity_index\";i:117;s:11:\"trend_index\";i:117;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:527;a:20:{s:4:\"tmpl\";i:630;s:2:\"id\";i:5904;s:5:\"title\";s:6:\"CTA 27\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_13.png\";s:12:\"tmpl_created\";i:1520520754;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:217;s:16:\"popularity_index\";i:528;s:11:\"trend_index\";i:517;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:528;a:20:{s:4:\"tmpl\";i:631;s:2:\"id\";i:5912;s:5:\"title\";s:6:\"CTA 28\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_11.png\";s:12:\"tmpl_created\";i:1520520755;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-28/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:219;s:16:\"popularity_index\";i:665;s:11:\"trend_index\";i:702;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:529;a:20:{s:4:\"tmpl\";i:473;s:2:\"id\";i:5189;s:5:\"title\";s:6:\"CTA 29\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_1.png\";s:12:\"tmpl_created\";i:1520443456;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:221;s:16:\"popularity_index\";i:472;s:11:\"trend_index\";i:631;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:530;a:20:{s:4:\"tmpl\";i:623;s:2:\"id\";i:5667;s:5:\"title\";s:5:\"CTA 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_8.png\";s:12:\"tmpl_created\";i:1520520705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:222;s:16:\"popularity_index\";i:171;s:11:\"trend_index\";i:250;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:531;a:20:{s:4:\"tmpl\";i:474;s:2:\"id\";i:5198;s:5:\"title\";s:6:\"CTA 30\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_1.png\";s:12:\"tmpl_created\";i:1520443458;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-30/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:225;s:16:\"popularity_index\";i:572;s:11:\"trend_index\";i:511;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:532;a:20:{s:4:\"tmpl\";i:475;s:2:\"id\";i:5206;s:5:\"title\";s:6:\"CTA 31\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_2.png\";s:12:\"tmpl_created\";i:1520443459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-31/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:226;s:16:\"popularity_index\";i:593;s:11:\"trend_index\";i:611;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:533;a:20:{s:4:\"tmpl\";i:480;s:2:\"id\";i:5249;s:5:\"title\";s:6:\"CTA 32\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_4.png\";s:12:\"tmpl_created\";i:1520443470;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-32/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:228;s:16:\"popularity_index\";i:512;s:11:\"trend_index\";i:409;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:534;a:20:{s:4:\"tmpl\";i:612;s:2:\"id\";i:5550;s:5:\"title\";s:6:\"CTA 33\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_1.png\";s:12:\"tmpl_created\";i:1520520682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-33/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:231;s:16:\"popularity_index\";i:260;s:11:\"trend_index\";i:562;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:535;a:20:{s:4:\"tmpl\";i:536;s:2:\"id\";i:5852;s:5:\"title\";s:6:\"CTA 34\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2018/03/form_1.png\";s:12:\"tmpl_created\";i:1520443600;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-34/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:232;s:16:\"popularity_index\";i:563;s:11:\"trend_index\";i:828;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:536;a:20:{s:4:\"tmpl\";i:624;s:2:\"id\";i:5675;s:5:\"title\";s:5:\"CTA 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_8.png\";s:12:\"tmpl_created\";i:1520520707;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:235;s:16:\"popularity_index\";i:391;s:11:\"trend_index\";i:484;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:537;a:20:{s:4:\"tmpl\";i:616;s:2:\"id\";i:5591;s:5:\"title\";s:5:\"CTA 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_4.png\";s:12:\"tmpl_created\";i:1520520691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:237;s:16:\"popularity_index\";i:133;s:11:\"trend_index\";i:130;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:538;a:20:{s:4:\"tmpl\";i:617;s:2:\"id\";i:5599;s:5:\"title\";s:5:\"CTA 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_4.png\";s:12:\"tmpl_created\";i:1520520693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:239;s:16:\"popularity_index\";i:252;s:11:\"trend_index\";i:362;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:539;a:20:{s:4:\"tmpl\";i:514;s:2:\"id\";i:5575;s:5:\"title\";s:5:\"CTA 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_3.png\";s:12:\"tmpl_created\";i:1520443543;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:240;s:16:\"popularity_index\";i:13;s:11:\"trend_index\";i:586;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:540;a:20:{s:4:\"tmpl\";i:622;s:2:\"id\";i:5658;s:5:\"title\";s:5:\"CTA 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_7.png\";s:12:\"tmpl_created\";i:1520520704;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:243;s:16:\"popularity_index\";i:187;s:11:\"trend_index\";i:235;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:541;a:20:{s:4:\"tmpl\";i:621;s:2:\"id\";i:5650;s:5:\"title\";s:5:\"CTA 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_7.png\";s:12:\"tmpl_created\";i:1520520702;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:244;s:16:\"popularity_index\";i:94;s:11:\"trend_index\";i:148;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:542;a:20:{s:4:\"tmpl\";i:1061;s:2:\"id\";i:15407;s:5:\"title\";s:24:\"Dance Studio &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/10/404.jpg\";s:12:\"tmpl_created\";i:1603181958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/dance-studio-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:22:\"[\"404\",\"Dance Studio\"]\";s:10:\"menu_order\";i:246;s:16:\"popularity_index\";i:783;s:11:\"trend_index\";i:710;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:543;a:20:{s:4:\"tmpl\";i:1062;s:2:\"id\";i:15400;s:5:\"title\";s:27:\"Dance Studio &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Footer.jpg\";s:12:\"tmpl_created\";i:1603181989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/dance-studio-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Footer\"]\";s:10:\"menu_order\";i:247;s:16:\"popularity_index\";i:586;s:11:\"trend_index\";i:243;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:544;a:20:{s:4:\"tmpl\";i:1063;s:2:\"id\";i:15391;s:5:\"title\";s:27:\"Dance Studio &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Header.jpg\";s:12:\"tmpl_created\";i:1603182011;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/dance-studio-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Header\"]\";s:10:\"menu_order\";i:248;s:16:\"popularity_index\";i:352;s:11:\"trend_index\";i:67;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:545;a:20:{s:4:\"tmpl\";i:874;s:2:\"id\";i:11192;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/07/Footer_small.jpg\";s:12:\"tmpl_created\";i:1564642399;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"Footer\",\"Marketing\"]\";s:10:\"menu_order\";i:250;s:16:\"popularity_index\";i:172;s:11:\"trend_index\";i:105;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:546;a:20:{s:4:\"tmpl\";i:873;s:2:\"id\";i:11198;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-digital-marketing-agency.png\";s:12:\"tmpl_created\";i:1564642395;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"Header\",\"Marketing\"]\";s:10:\"menu_order\";i:251;s:16:\"popularity_index\";i:34;s:11:\"trend_index\";i:10;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:547;a:20:{s:4:\"tmpl\";i:872;s:2:\"id\";i:11204;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/07/404_small.jpg\";s:12:\"tmpl_created\";i:1564642389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:36:\"[\"404\",\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:253;s:16:\"popularity_index\";i:301;s:11:\"trend_index\";i:239;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:548;a:20:{s:4:\"tmpl\";i:871;s:2:\"id\";i:11220;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/08/Archive_small1.png\";s:12:\"tmpl_created\";i:1564642385;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:255;s:16:\"popularity_index\";i:116;s:11:\"trend_index\";i:73;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:549;a:20:{s:4:\"tmpl\";i:870;s:2:\"id\";i:11231;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/Post_small1.png\";s:12:\"tmpl_created\";i:1564642380;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/digital-agency/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:257;s:16:\"popularity_index\";i:145;s:11:\"trend_index\";i:71;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:550;a:20:{s:4:\"tmpl\";i:520;s:2:\"id\";i:5711;s:5:\"title\";s:5:\"FAQ 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_2.png\";s:12:\"tmpl_created\";i:1520443571;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:260;s:16:\"popularity_index\";i:200;s:11:\"trend_index\";i:231;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:551;a:20:{s:4:\"tmpl\";i:523;s:2:\"id\";i:5737;s:5:\"title\";s:6:\"FAQ 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_4.png\";s:12:\"tmpl_created\";i:1520443576;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:261;s:16:\"popularity_index\";i:155;s:11:\"trend_index\";i:112;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:552;a:20:{s:4:\"tmpl\";i:524;s:2:\"id\";i:5746;s:5:\"title\";s:6:\"FAQ 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_4.png\";s:12:\"tmpl_created\";i:1520443578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:264;s:16:\"popularity_index\";i:212;s:11:\"trend_index\";i:305;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:553;a:20:{s:4:\"tmpl\";i:519;s:2:\"id\";i:5703;s:5:\"title\";s:6:\"FAQ 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_2.png\";s:12:\"tmpl_created\";i:1520443569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:265;s:16:\"popularity_index\";i:29;s:11:\"trend_index\";i:38;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:554;a:20:{s:4:\"tmpl\";i:521;s:2:\"id\";i:5719;s:5:\"title\";s:5:\"FAQ 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_3.png\";s:12:\"tmpl_created\";i:1520443573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:267;s:16:\"popularity_index\";i:125;s:11:\"trend_index\";i:251;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:555;a:20:{s:4:\"tmpl\";i:522;s:2:\"id\";i:5729;s:5:\"title\";s:5:\"FAQ 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_3.png\";s:12:\"tmpl_created\";i:1520443575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:269;s:16:\"popularity_index\";i:319;s:11:\"trend_index\";i:327;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:556;a:20:{s:4:\"tmpl\";i:525;s:2:\"id\";i:5755;s:5:\"title\";s:5:\"FAQ 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_5.png\";s:12:\"tmpl_created\";i:1520443580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:271;s:16:\"popularity_index\";i:112;s:11:\"trend_index\";i:180;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:557;a:20:{s:4:\"tmpl\";i:526;s:2:\"id\";i:5764;s:5:\"title\";s:5:\"FAQ 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_5.png\";s:12:\"tmpl_created\";i:1520443582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:273;s:16:\"popularity_index\";i:338;s:11:\"trend_index\";i:474;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:558;a:20:{s:4:\"tmpl\";i:517;s:2:\"id\";i:5684;s:5:\"title\";s:5:\"FAQ 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_1.png\";s:12:\"tmpl_created\";i:1520443565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:274;s:16:\"popularity_index\";i:74;s:11:\"trend_index\";i:193;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:559;a:20:{s:4:\"tmpl\";i:518;s:2:\"id\";i:5693;s:5:\"title\";s:5:\"FAQ 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_1.png\";s:12:\"tmpl_created\";i:1520443567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:276;s:16:\"popularity_index\";i:224;s:11:\"trend_index\";i:515;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:560;a:20:{s:4:\"tmpl\";i:548;s:2:\"id\";i:6053;s:5:\"title\";s:10:\"Features 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_5.png\";s:12:\"tmpl_created\";i:1520443645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:277;s:16:\"popularity_index\";i:179;s:11:\"trend_index\";i:463;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:561;a:20:{s:4:\"tmpl\";i:542;s:2:\"id\";i:5991;s:5:\"title\";s:11:\"Features 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_4.png\";s:12:\"tmpl_created\";i:1520443632;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:279;s:16:\"popularity_index\";i:135;s:11:\"trend_index\";i:265;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:562;a:20:{s:4:\"tmpl\";i:547;s:2:\"id\";i:6044;s:5:\"title\";s:11:\"Features 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_5.png\";s:12:\"tmpl_created\";i:1520443643;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:280;s:16:\"popularity_index\";i:70;s:11:\"trend_index\";i:163;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:563;a:20:{s:4:\"tmpl\";i:566;s:2:\"id\";i:6212;s:5:\"title\";s:11:\"Features 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_7.png\";s:12:\"tmpl_created\";i:1520443684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:281;s:16:\"popularity_index\";i:81;s:11:\"trend_index\";i:98;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:564;a:20:{s:4:\"tmpl\";i:567;s:2:\"id\";i:6220;s:5:\"title\";s:10:\"Features 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_8.png\";s:12:\"tmpl_created\";i:1520443685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:282;s:16:\"popularity_index\";i:88;s:11:\"trend_index\";i:189;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:565;a:20:{s:4:\"tmpl\";i:541;s:2:\"id\";i:5983;s:5:\"title\";s:10:\"Features 3\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_3.png\";s:12:\"tmpl_created\";i:1520443630;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:283;s:16:\"popularity_index\";i:231;s:11:\"trend_index\";i:351;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:566;a:20:{s:4:\"tmpl\";i:540;s:2:\"id\";i:5974;s:5:\"title\";s:10:\"Features 4\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_3.png\";s:12:\"tmpl_created\";i:1520443629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:286;s:16:\"popularity_index\";i:69;s:11:\"trend_index\";i:181;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:567;a:20:{s:4:\"tmpl\";i:516;s:2:\"id\";i:5624;s:5:\"title\";s:10:\"Features 5\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_1.png\";s:12:\"tmpl_created\";i:1520443553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:287;s:16:\"popularity_index\";i:93;s:11:\"trend_index\";i:352;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:568;a:20:{s:4:\"tmpl\";i:515;s:2:\"id\";i:5615;s:5:\"title\";s:10:\"Features 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_5.png\";s:12:\"tmpl_created\";i:1520443551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:290;s:16:\"popularity_index\";i:41;s:11:\"trend_index\";i:119;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:569;a:20:{s:4:\"tmpl\";i:539;s:2:\"id\";i:5963;s:5:\"title\";s:10:\"Features 7\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_2.png\";s:12:\"tmpl_created\";i:1520443626;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:291;s:16:\"popularity_index\";i:67;s:11:\"trend_index\";i:133;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:570;a:20:{s:4:\"tmpl\";i:565;s:2:\"id\";i:6204;s:5:\"title\";s:10:\"Features 8\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_6.png\";s:12:\"tmpl_created\";i:1520443681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:292;s:16:\"popularity_index\";i:217;s:11:\"trend_index\";i:223;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:571;a:20:{s:4:\"tmpl\";i:564;s:2:\"id\";i:6196;s:5:\"title\";s:10:\"Features 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_6.png\";s:12:\"tmpl_created\";i:1520443680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:294;s:16:\"popularity_index\";i:106;s:11:\"trend_index\";i:113;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:572;a:20:{s:4:\"tmpl\";i:1033;s:2:\"id\";i:15033;s:5:\"title\";s:28:\"Flooring Company &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/08/404.png\";s:12:\"tmpl_created\";i:1597739459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/flooring-company-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:45:\"[\"404\",\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:296;s:16:\"popularity_index\";i:655;s:11:\"trend_index\";i:671;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:573;a:20:{s:4:\"tmpl\";i:1032;s:2:\"id\";i:15042;s:5:\"title\";s:32:\"Flooring Company &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Blog.png\";s:12:\"tmpl_created\";i:1597739084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/flooring-company-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:297;s:16:\"popularity_index\";i:320;s:11:\"trend_index\";i:275;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:574;a:20:{s:4:\"tmpl\";i:1031;s:2:\"id\";i:15017;s:5:\"title\";s:31:\"Flooring Company &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Footer.png\";s:12:\"tmpl_created\";i:1597738933;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/flooring-company-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Footer\"]\";s:10:\"menu_order\";i:299;s:16:\"popularity_index\";i:323;s:11:\"trend_index\";i:192;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:575;a:20:{s:4:\"tmpl\";i:1030;s:2:\"id\";i:15007;s:5:\"title\";s:31:\"Flooring Company &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Header.png\";s:12:\"tmpl_created\";i:1597738896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/flooring-company-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Header\"]\";s:10:\"menu_order\";i:302;s:16:\"popularity_index\";i:459;s:11:\"trend_index\";i:333;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:576;a:20:{s:4:\"tmpl\";i:1029;s:2:\"id\";i:15052;s:5:\"title\";s:36:\"Flooring Company &#8211; Single post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Single.png\";s:12:\"tmpl_created\";i:1597738858;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/flooring-company-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:303;s:16:\"popularity_index\";i:392;s:11:\"trend_index\";i:226;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:577;a:20:{s:4:\"tmpl\";i:651;s:2:\"id\";i:7837;s:5:\"title\";s:9:\"footer 01\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.14.jpg\";s:12:\"tmpl_created\";i:1524582852;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:305;s:16:\"popularity_index\";i:495;s:11:\"trend_index\";i:539;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:578;a:20:{s:4:\"tmpl\";i:647;s:2:\"id\";i:7937;s:5:\"title\";s:10:\"footer 010\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.5.jpg\";s:12:\"tmpl_created\";i:1524582665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-010/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:308;s:16:\"popularity_index\";i:185;s:11:\"trend_index\";i:115;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:579;a:20:{s:4:\"tmpl\";i:646;s:2:\"id\";i:7950;s:5:\"title\";s:10:\"footer 011\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.4.jpg\";s:12:\"tmpl_created\";i:1524582631;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-011/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:310;s:16:\"popularity_index\";i:244;s:11:\"trend_index\";i:203;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:580;a:20:{s:4:\"tmpl\";i:645;s:2:\"id\";i:7959;s:5:\"title\";s:10:\"footer 012\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.3.jpg\";s:12:\"tmpl_created\";i:1524582605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-012/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:311;s:16:\"popularity_index\";i:177;s:11:\"trend_index\";i:140;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:581;a:20:{s:4:\"tmpl\";i:644;s:2:\"id\";i:7982;s:5:\"title\";s:10:\"footer 013\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.2.jpg\";s:12:\"tmpl_created\";i:1524582468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-013/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:314;s:16:\"popularity_index\";i:209;s:11:\"trend_index\";i:212;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:582;a:20:{s:4:\"tmpl\";i:643;s:2:\"id\";i:7997;s:5:\"title\";s:10:\"footer 014\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.1.jpg\";s:12:\"tmpl_created\";i:1524582343;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-014/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:316;s:16:\"popularity_index\";i:64;s:11:\"trend_index\";i:41;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:583;a:20:{s:4:\"tmpl\";i:693;s:2:\"id\";i:9119;s:5:\"title\";s:10:\"footer 015\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/Footer_GetStarted_350.png\";s:12:\"tmpl_created\";i:1532428138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/demo/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:317;s:16:\"popularity_index\";i:240;s:11:\"trend_index\";i:154;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:584;a:20:{s:4:\"tmpl\";i:652;s:2:\"id\";i:7852;s:5:\"title\";s:9:\"footer 02\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.13.jpg\";s:12:\"tmpl_created\";i:1524582875;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:320;s:16:\"popularity_index\";i:199;s:11:\"trend_index\";i:96;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:585;a:20:{s:4:\"tmpl\";i:653;s:2:\"id\";i:7862;s:5:\"title\";s:9:\"footer 03\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.12.jpg\";s:12:\"tmpl_created\";i:1524582903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:321;s:16:\"popularity_index\";i:137;s:11:\"trend_index\";i:91;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:586;a:20:{s:4:\"tmpl\";i:654;s:2:\"id\";i:7871;s:5:\"title\";s:9:\"footer 04\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.11.jpg\";s:12:\"tmpl_created\";i:1524582927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:323;s:16:\"popularity_index\";i:97;s:11:\"trend_index\";i:55;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:587;a:20:{s:4:\"tmpl\";i:655;s:2:\"id\";i:7884;s:5:\"title\";s:9:\"footer 05\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.10.jpg\";s:12:\"tmpl_created\";i:1524582944;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-05/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:325;s:16:\"popularity_index\";i:92;s:11:\"trend_index\";i:109;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:588;a:20:{s:4:\"tmpl\";i:656;s:2:\"id\";i:7892;s:5:\"title\";s:9:\"footer 06\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.9.jpg\";s:12:\"tmpl_created\";i:1524583015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-06/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:326;s:16:\"popularity_index\";i:132;s:11:\"trend_index\";i:146;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:589;a:20:{s:4:\"tmpl\";i:650;s:2:\"id\";i:7904;s:5:\"title\";s:9:\"footer 07\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.8.jpg\";s:12:\"tmpl_created\";i:1524582814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-07/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:328;s:16:\"popularity_index\";i:203;s:11:\"trend_index\";i:186;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:590;a:20:{s:4:\"tmpl\";i:649;s:2:\"id\";i:7917;s:5:\"title\";s:9:\"footer 08\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.7.jpg\";s:12:\"tmpl_created\";i:1524582788;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-08/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:329;s:16:\"popularity_index\";i:89;s:11:\"trend_index\";i:144;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:591;a:20:{s:4:\"tmpl\";i:648;s:2:\"id\";i:7927;s:5:\"title\";s:9:\"footer 09\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.6.jpg\";s:12:\"tmpl_created\";i:1524582691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-09/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:331;s:16:\"popularity_index\";i:178;s:11:\"trend_index\";i:100;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:592;a:20:{s:4:\"tmpl\";i:642;s:2:\"id\";i:4676;s:5:\"title\";s:8:\"Footer 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_7.png\";s:12:\"tmpl_created\";i:1522014215;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer_7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:338;s:16:\"popularity_index\";i:237;s:11:\"trend_index\";i:346;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:593;a:20:{s:4:\"tmpl\";i:637;s:2:\"id\";i:7627;s:5:\"title\";s:8:\"Footer 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_1.png\";s:12:\"tmpl_created\";i:1521547332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:340;s:16:\"popularity_index\";i:100;s:11:\"trend_index\";i:83;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:594;a:20:{s:4:\"tmpl\";i:638;s:2:\"id\";i:7638;s:5:\"title\";s:8:\"Footer 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_2.png\";s:12:\"tmpl_created\";i:1521547502;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:342;s:16:\"popularity_index\";i:124;s:11:\"trend_index\";i:147;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:595;a:20:{s:4:\"tmpl\";i:888;s:2:\"id\";i:11424;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/08/404_Small.png\";s:12:\"tmpl_created\";i:1567393309;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:13:\"[\"404\",\"Gym\"]\";s:10:\"menu_order\";i:344;s:16:\"popularity_index\";i:679;s:11:\"trend_index\";i:769;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:596;a:20:{s:4:\"tmpl\";i:887;s:2:\"id\";i:11435;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Archiv_Small.png\";s:12:\"tmpl_created\";i:1567393296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:346;s:16:\"popularity_index\";i:441;s:11:\"trend_index\";i:507;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:597;a:20:{s:4:\"tmpl\";i:886;s:2:\"id\";i:11445;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Post_Small.png\";s:12:\"tmpl_created\";i:1567393229;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:349;s:16:\"popularity_index\";i:452;s:11:\"trend_index\";i:479;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:598;a:20:{s:4:\"tmpl\";i:885;s:2:\"id\";i:11453;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Footer_Small.png\";s:12:\"tmpl_created\";i:1567393224;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:16:\"[\"Footer\",\"Gym\"]\";s:10:\"menu_order\";i:351;s:16:\"popularity_index\";i:270;s:11:\"trend_index\";i:331;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:599;a:20:{s:4:\"tmpl\";i:884;s:2:\"id\";i:11461;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-gym-and-fitness.png\";s:12:\"tmpl_created\";i:1567393219;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/gym/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:16:\"[\"Gym\",\"Header\"]\";s:10:\"menu_order\";i:352;s:16:\"popularity_index\";i:201;s:11:\"trend_index\";i:135;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:600;a:20:{s:4:\"tmpl\";i:635;s:2:\"id\";i:7596;s:5:\"title\";s:8:\"Header 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.12.jpg\";s:12:\"tmpl_created\";i:1521546999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"Header\"]\";s:10:\"menu_order\";i:354;s:16:\"popularity_index\";i:33;s:11:\"trend_index\";i:17;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:601;a:20:{s:4:\"tmpl\";i:663;s:2:\"id\";i:7801;s:5:\"title\";s:9:\"header 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.9.jpg\";s:12:\"tmpl_created\";i:1524583659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:356;s:16:\"popularity_index\";i:51;s:11:\"trend_index\";i:14;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:602;a:20:{s:4:\"tmpl\";i:658;s:2:\"id\";i:7812;s:5:\"title\";s:9:\"header 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.10.jpg\";s:12:\"tmpl_created\";i:1524583298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:358;s:16:\"popularity_index\";i:96;s:11:\"trend_index\";i:103;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:603;a:20:{s:4:\"tmpl\";i:657;s:2:\"id\";i:7825;s:5:\"title\";s:9:\"header 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.11.jpg\";s:12:\"tmpl_created\";i:1524583273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:360;s:16:\"popularity_index\";i:63;s:11:\"trend_index\";i:75;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:604;a:20:{s:4:\"tmpl\";i:694;s:2:\"id\";i:9127;s:5:\"title\";s:9:\"header 13\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2018/07/Header_get_started_1200V3.png\";s:12:\"tmpl_created\";i:1532428699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:362;s:16:\"popularity_index\";i:61;s:11:\"trend_index\";i:58;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:605;a:20:{s:4:\"tmpl\";i:636;s:2:\"id\";i:7615;s:5:\"title\";s:8:\"Header 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.1.jpg\";s:12:\"tmpl_created\";i:1521547237;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"Header\"]\";s:10:\"menu_order\";i:365;s:16:\"popularity_index\";i:30;s:11:\"trend_index\";i:33;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:606;a:20:{s:4:\"tmpl\";i:665;s:2:\"id\";i:7713;s:5:\"title\";s:8:\"header 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.2.jpg\";s:12:\"tmpl_created\";i:1524584780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:367;s:16:\"popularity_index\";i:43;s:11:\"trend_index\";i:28;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:607;a:20:{s:4:\"tmpl\";i:659;s:2:\"id\";i:7724;s:5:\"title\";s:8:\"header 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.3.jpg\";s:12:\"tmpl_created\";i:1524583367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:369;s:16:\"popularity_index\";i:24;s:11:\"trend_index\";i:13;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:608;a:20:{s:4:\"tmpl\";i:660;s:2:\"id\";i:7734;s:5:\"title\";s:8:\"header 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.4.jpg\";s:12:\"tmpl_created\";i:1524583436;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:371;s:16:\"popularity_index\";i:36;s:11:\"trend_index\";i:18;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:609;a:20:{s:4:\"tmpl\";i:666;s:2:\"id\";i:7744;s:5:\"title\";s:8:\"Header 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.5.jpg\";s:12:\"tmpl_created\";i:1524584784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:372;s:16:\"popularity_index\";i:65;s:11:\"trend_index\";i:94;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:610;a:20:{s:4:\"tmpl\";i:664;s:2:\"id\";i:7754;s:5:\"title\";s:8:\"header 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.6.jpg\";s:12:\"tmpl_created\";i:1524583712;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:375;s:16:\"popularity_index\";i:111;s:11:\"trend_index\";i:143;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:611;a:20:{s:4:\"tmpl\";i:661;s:2:\"id\";i:7771;s:5:\"title\";s:8:\"header 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.7.jpg\";s:12:\"tmpl_created\";i:1524583540;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:376;s:16:\"popularity_index\";i:91;s:11:\"trend_index\";i:60;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:612;a:20:{s:4:\"tmpl\";i:662;s:2:\"id\";i:7787;s:5:\"title\";s:8:\"header 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.8.jpg\";s:12:\"tmpl_created\";i:1524583598;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:379;s:16:\"popularity_index\";i:102;s:11:\"trend_index\";i:78;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:613;a:20:{s:4:\"tmpl\";i:572;s:2:\"id\";i:6266;s:5:\"title\";s:6:\"Hero 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_4.png\";s:12:\"tmpl_created\";i:1520443695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:380;s:16:\"popularity_index\";i:52;s:11:\"trend_index\";i:35;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:614;a:20:{s:4:\"tmpl\";i:528;s:2:\"id\";i:5783;s:5:\"title\";s:7:\"Hero 10\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_2.png\";s:12:\"tmpl_created\";i:1520443586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:383;s:16:\"popularity_index\";i:365;s:11:\"trend_index\";i:567;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:615;a:20:{s:4:\"tmpl\";i:527;s:2:\"id\";i:5773;s:5:\"title\";s:7:\"Hero 11\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_1.png\";s:12:\"tmpl_created\";i:1520443584;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:384;s:16:\"popularity_index\";i:39;s:11:\"trend_index\";i:179;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:616;a:20:{s:4:\"tmpl\";i:479;s:2:\"id\";i:5238;s:5:\"title\";s:7:\"Hero 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4.png\";s:12:\"tmpl_created\";i:1520443468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:386;s:16:\"popularity_index\";i:611;s:11:\"trend_index\";i:555;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:617;a:20:{s:4:\"tmpl\";i:573;s:2:\"id\";i:6274;s:5:\"title\";s:6:\"Hero 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_5.png\";s:12:\"tmpl_created\";i:1520443698;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:389;s:16:\"popularity_index\";i:87;s:11:\"trend_index\";i:88;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:618;a:20:{s:4:\"tmpl\";i:569;s:2:\"id\";i:6239;s:5:\"title\";s:6:\"Hero 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_1.png\";s:12:\"tmpl_created\";i:1520443689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:391;s:16:\"popularity_index\";i:23;s:11:\"trend_index\";i:34;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:619;a:20:{s:4:\"tmpl\";i:571;s:2:\"id\";i:6258;s:5:\"title\";s:6:\"Hero 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_3.png\";s:12:\"tmpl_created\";i:1520443693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:393;s:16:\"popularity_index\";i:479;s:11:\"trend_index\";i:470;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:620;a:20:{s:4:\"tmpl\";i:570;s:2:\"id\";i:6249;s:5:\"title\";s:6:\"Hero 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_2.png\";s:12:\"tmpl_created\";i:1520443691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:395;s:16:\"popularity_index\";i:56;s:11:\"trend_index\";i:85;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:621;a:20:{s:4:\"tmpl\";i:568;s:2:\"id\";i:6230;s:5:\"title\";s:6:\"Hero 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_white_1.png\";s:12:\"tmpl_created\";i:1520443687;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:396;s:16:\"popularity_index\";i:406;s:11:\"trend_index\";i:542;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:622;a:20:{s:4:\"tmpl\";i:530;s:2:\"id\";i:5801;s:5:\"title\";s:6:\"Hero 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_4.png\";s:12:\"tmpl_created\";i:1520443589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:398;s:16:\"popularity_index\";i:15;s:11:\"trend_index\";i:37;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:623;a:20:{s:4:\"tmpl\";i:531;s:2:\"id\";i:5811;s:5:\"title\";s:6:\"Hero 8\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_5.png\";s:12:\"tmpl_created\";i:1520443591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:400;s:16:\"popularity_index\";i:105;s:11:\"trend_index\";i:86;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:624;a:20:{s:4:\"tmpl\";i:529;s:2:\"id\";i:5792;s:5:\"title\";s:6:\"Hero 9\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_3.png\";s:12:\"tmpl_created\";i:1520443588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:403;s:16:\"popularity_index\";i:225;s:11:\"trend_index\";i:244;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:625;a:20:{s:4:\"tmpl\";i:978;s:2:\"id\";i:13251;s:5:\"title\";s:27:\"Interior Design &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.png\";s:12:\"tmpl_created\";i:1586148737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/interior-design-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:405;s:16:\"popularity_index\";i:730;s:11:\"trend_index\";i:795;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:626;a:20:{s:4:\"tmpl\";i:979;s:2:\"id\";i:13244;s:5:\"title\";s:30:\"Interior Design &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.png\";s:12:\"tmpl_created\";i:1586148742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/interior-design-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Business\",\"Footer\",\"Interior Design\"]\";s:10:\"menu_order\";i:406;s:16:\"popularity_index\";i:322;s:11:\"trend_index\";i:178;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:627;a:20:{s:4:\"tmpl\";i:980;s:2:\"id\";i:13236;s:5:\"title\";s:30:\"Interior Design &#8211; Header\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-interior-design.png\";s:12:\"tmpl_created\";i:1586148746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/interior-design-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Business\",\"Header\",\"Interior Design\"]\";s:10:\"menu_order\";i:408;s:16:\"popularity_index\";i:146;s:11:\"trend_index\";i:64;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:628;a:20:{s:4:\"tmpl\";i:977;s:2:\"id\";i:13259;s:5:\"title\";s:36:\"Interior Design &#8211; News Archive\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Archiv-Blog.png\";s:12:\"tmpl_created\";i:1586148733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/interior-design-news-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:410;s:16:\"popularity_index\";i:436;s:11:\"trend_index\";i:132;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:629;a:20:{s:4:\"tmpl\";i:976;s:2:\"id\";i:13267;s:5:\"title\";s:35:\"Interior Design &#8211; Single News\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Post.png\";s:12:\"tmpl_created\";i:1586148728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/interior-design-single-news/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:413;s:16:\"popularity_index\";i:402;s:11:\"trend_index\";i:108;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:630;a:20:{s:4:\"tmpl\";i:975;s:2:\"id\";i:13274;s:5:\"title\";s:38:\"Interior Design &#8211; Single Project\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/04/Single-Project-.png\";s:12:\"tmpl_created\";i:1586148723;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/interior-design-single-project/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:414;s:16:\"popularity_index\";i:601;s:11:\"trend_index\";i:324;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:631;a:20:{s:4:\"tmpl\";i:1011;s:2:\"id\";i:14058;s:5:\"title\";s:36:\"Japanese restaurant &#8211; 404 page\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/06/404-Page.jpg\";s:12:\"tmpl_created\";i:1592290211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/japanese-restaurant-404-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:38:\"[\"404\",\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:416;s:16:\"popularity_index\";i:724;s:11:\"trend_index\";i:647;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:632;a:20:{s:4:\"tmpl\";i:1012;s:2:\"id\";i:14050;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1592290247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/japanese-restaurant-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:41:\"[\"Food\",\"Footer\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:419;s:16:\"popularity_index\";i:317;s:11:\"trend_index\";i:238;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:633;a:20:{s:4:\"tmpl\";i:1013;s:2:\"id\";i:14042;s:5:\"title\";s:34:\"Japanese Restaurant &#8211; Header\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2020/06/japanese-restaurant-header.jpg\";s:12:\"tmpl_created\";i:1592290277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/japanese-restaurant-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:41:\"[\"Food\",\"Header\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:421;s:16:\"popularity_index\";i:411;s:11:\"trend_index\";i:274;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:634;a:20:{s:4:\"tmpl\";i:914;s:2:\"id\";i:12164;s:5:\"title\";s:20:\"Law Firm &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/11/404.png\";s:12:\"tmpl_created\";i:1572846979;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/law-firm-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:422;s:16:\"popularity_index\";i:704;s:11:\"trend_index\";i:716;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:635;a:20:{s:4:\"tmpl\";i:913;s:2:\"id\";i:12170;s:5:\"title\";s:23:\"Law Firm &#8211; Archiv\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/archiv.png\";s:12:\"tmpl_created\";i:1572846967;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-archiv/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:424;s:16:\"popularity_index\";i:431;s:11:\"trend_index\";i:294;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:636;a:20:{s:4:\"tmpl\";i:912;s:2:\"id\";i:12179;s:5:\"title\";s:23:\"Law Firm &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/footer.png\";s:12:\"tmpl_created\";i:1572846958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"Footer\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:425;s:16:\"popularity_index\";i:388;s:11:\"trend_index\";i:240;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:637;a:20:{s:4:\"tmpl\";i:911;s:2:\"id\";i:12194;s:5:\"title\";s:23:\"Law Firm &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-law-firm.png\";s:12:\"tmpl_created\";i:1572846935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:427;s:16:\"popularity_index\";i:80;s:11:\"trend_index\";i:39;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:638;a:20:{s:4:\"tmpl\";i:910;s:2:\"id\";i:12203;s:5:\"title\";s:30:\"Law Firm &#8211; Search Archiv\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/11/search_result.png\";s:12:\"tmpl_created\";i:1572846925;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/law-firm-search-archiv/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:430;s:16:\"popularity_index\";i:493;s:11:\"trend_index\";i:433;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:639;a:20:{s:4:\"tmpl\";i:909;s:2:\"id\";i:12212;s:5:\"title\";s:28:\"Law Firm &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/single.png\";s:12:\"tmpl_created\";i:1572846914;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/law-firm-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:432;s:16:\"popularity_index\";i:326;s:11:\"trend_index\";i:214;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:640;a:20:{s:4:\"tmpl\";i:1022;s:2:\"id\";i:14772;s:5:\"title\";s:35:\"Luxury Real Estate &#8211; 404 page\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/07/404.png\";s:12:\"tmpl_created\";i:1595315728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/luxury-real-estate-404-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:433;s:16:\"popularity_index\";i:759;s:11:\"trend_index\";i:720;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:641;a:20:{s:4:\"tmpl\";i:1023;s:2:\"id\";i:14779;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Footer.png\";s:12:\"tmpl_created\";i:1595315743;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/luxury-real-estate-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Footer\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:434;s:16:\"popularity_index\";i:536;s:11:\"trend_index\";i:505;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:642;a:20:{s:4:\"tmpl\";i:1024;s:2:\"id\";i:14790;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Header.png\";s:12:\"tmpl_created\";i:1595315760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/luxury-real-estate-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Header\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:436;s:16:\"popularity_index\";i:101;s:11:\"trend_index\";i:157;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:643;a:20:{s:4:\"tmpl\";i:1026;s:2:\"id\";i:14809;s:5:\"title\";s:45:\"Luxury Real Estate &#8211; Properties Archive\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Properties.png\";s:12:\"tmpl_created\";i:1595315826;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/blocks/luxury-real-estate-properties-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:438;s:16:\"popularity_index\";i:414;s:11:\"trend_index\";i:420;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:644;a:20:{s:4:\"tmpl\";i:1027;s:2:\"id\";i:14816;s:5:\"title\";s:47:\"Luxury Real Estate &#8211; Property single post\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/07/Single-Property-.png\";s:12:\"tmpl_created\";i:1595315847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/blocks/luxury-real-estate-property-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:441;s:16:\"popularity_index\";i:541;s:11:\"trend_index\";i:665;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:645;a:20:{s:4:\"tmpl\";i:1025;s:2:\"id\";i:14799;s:5:\"title\";s:38:\"Luxury Real Estate &#8211; single post\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Post.png\";s:12:\"tmpl_created\";i:1595315792;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/luxury-real-estate-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:442;s:16:\"popularity_index\";i:369;s:11:\"trend_index\";i:441;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:646;a:20:{s:4:\"tmpl\";i:950;s:2:\"id\";i:12635;s:5:\"title\";s:20:\"Magazine &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/01/404_s.png\";s:12:\"tmpl_created\";i:1579060746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/magazine-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:25:\"[\"404\",\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:445;s:16:\"popularity_index\";i:645;s:11:\"trend_index\";i:734;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:647;a:20:{s:4:\"tmpl\";i:949;s:2:\"id\";i:12643;s:5:\"title\";s:24:\"Magazine &#8211; Archiv1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv1_s.png\";s:12:\"tmpl_created\";i:1579060737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/magazine-archiv1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:447;s:16:\"popularity_index\";i:346;s:11:\"trend_index\";i:272;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:648;a:20:{s:4:\"tmpl\";i:946;s:2:\"id\";i:12669;s:5:\"title\";s:23:\"Magazine &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Footer_s.png\";s:12:\"tmpl_created\";i:1579060715;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:28:\"[\"Blog\",\"Footer\",\"Magazine\"]\";s:10:\"menu_order\";i:448;s:16:\"popularity_index\";i:442;s:11:\"trend_index\";i:349;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:649;a:20:{s:4:\"tmpl\";i:945;s:2:\"id\";i:12678;s:5:\"title\";s:23:\"Magazine &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-magazine.png\";s:12:\"tmpl_created\";i:1579060701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:28:\"[\"Blog\",\"Header\",\"Magazine\"]\";s:10:\"menu_order\";i:450;s:16:\"popularity_index\";i:295;s:11:\"trend_index\";i:197;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:650;a:20:{s:4:\"tmpl\";i:947;s:2:\"id\";i:12661;s:5:\"title\";s:23:\"Magazine &#8211; Search\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Search_s.png\";s:12:\"tmpl_created\";i:1579060722;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-search/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:452;s:16:\"popularity_index\";i:396;s:11:\"trend_index\";i:509;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:651;a:20:{s:4:\"tmpl\";i:944;s:2:\"id\";i:12688;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 1\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post2_s.png\";s:12:\"tmpl_created\";i:1579060692;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:453;s:16:\"popularity_index\";i:342;s:11:\"trend_index\";i:175;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:652;a:20:{s:4:\"tmpl\";i:943;s:2:\"id\";i:12699;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 2\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post3_s.png\";s:12:\"tmpl_created\";i:1579060680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:454;s:16:\"popularity_index\";i:348;s:11:\"trend_index\";i:129;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:653;a:20:{s:4:\"tmpl\";i:942;s:2:\"id\";i:12707;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post1_s.png\";s:12:\"tmpl_created\";i:1579060669;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:457;s:16:\"popularity_index\";i:476;s:11:\"trend_index\";i:246;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:654;a:20:{s:4:\"tmpl\";i:941;s:2:\"id\";i:12716;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post4_s.png\";s:12:\"tmpl_created\";i:1579060659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/magazine-single-post-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:459;s:16:\"popularity_index\";i:513;s:11:\"trend_index\";i:489;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:655;a:20:{s:4:\"tmpl\";i:948;s:2:\"id\";i:12652;s:5:\"title\";s:17:\"Magazine- Archiv2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv2_s.png\";s:12:\"tmpl_created\";i:1579060730;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/magazine-archiv2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:461;s:16:\"popularity_index\";i:525;s:11:\"trend_index\";i:585;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:656;a:20:{s:4:\"tmpl\";i:990;s:2:\"id\";i:13361;s:5:\"title\";s:25:\"Online Course &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.jpg\";s:12:\"tmpl_created\";i:1587474710;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/online-course-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:35:\"[\"404\",\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:462;s:16:\"popularity_index\";i:682;s:11:\"trend_index\";i:498;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:657;a:20:{s:4:\"tmpl\";i:987;s:2:\"id\";i:13387;s:5:\"title\";s:32:\"Online Course &#8211; End Lesson\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-End-.jpg\";s:12:\"tmpl_created\";i:1587474682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/online-course-end-lesson/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:464;s:16:\"popularity_index\";i:653;s:11:\"trend_index\";i:408;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:658;a:20:{s:4:\"tmpl\";i:989;s:2:\"id\";i:13369;s:5:\"title\";s:28:\"Online Course &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.jpg\";s:12:\"tmpl_created\";i:1587474701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/online-course-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Footer\"]\";s:10:\"menu_order\";i:466;s:16:\"popularity_index\";i:389;s:11:\"trend_index\";i:308;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:659;a:20:{s:4:\"tmpl\";i:988;s:2:\"id\";i:13378;s:5:\"title\";s:28:\"Online Course &#8211; Header\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-education-online-courses.jpg\";s:12:\"tmpl_created\";i:1587474693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/online-course-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Header\"]\";s:10:\"menu_order\";i:469;s:16:\"popularity_index\";i:492;s:11:\"trend_index\";i:519;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:660;a:20:{s:4:\"tmpl\";i:986;s:2:\"id\";i:13395;s:5:\"title\";s:34:\"Online Course &#8211; Start Lesson\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-Start.jpg\";s:12:\"tmpl_created\";i:1587474673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/online-course-start-lesson/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:471;s:16:\"popularity_index\";i:672;s:11:\"trend_index\";i:578;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:661;a:20:{s:4:\"tmpl\";i:953;s:2:\"id\";i:13089;s:5:\"title\";s:23:\"Photography &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/02/404_s.png\";s:12:\"tmpl_created\";i:1582091623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/photography-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:33:\"[\"404\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:473;s:16:\"popularity_index\";i:702;s:11:\"trend_index\";i:706;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:662;a:20:{s:4:\"tmpl\";i:954;s:2:\"id\";i:13096;s:5:\"title\";s:32:\"Photography &#8211; Archiv Media\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Archiv_s.png\";s:12:\"tmpl_created\";i:1582091742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/photography-archiv-media/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:475;s:16:\"popularity_index\";i:631;s:11:\"trend_index\";i:405;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:663;a:20:{s:4:\"tmpl\";i:955;s:2:\"id\";i:13103;s:5:\"title\";s:26:\"Photography &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Footer_s.png\";s:12:\"tmpl_created\";i:1582091903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/photography-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:36:\"[\"Footer\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:477;s:16:\"popularity_index\";i:422;s:11:\"trend_index\";i:230;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:664;a:20:{s:4:\"tmpl\";i:957;s:2:\"id\";i:13112;s:5:\"title\";s:26:\"Photography &#8211; Header\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-photography-portfolio.png\";s:12:\"tmpl_created\";i:1582092483;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/photography-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:36:\"[\"Header\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:478;s:16:\"popularity_index\";i:325;s:11:\"trend_index\";i:205;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:665;a:20:{s:4:\"tmpl\";i:956;s:2:\"id\";i:13120;s:5:\"title\";s:31:\"Photography &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Post_s.png\";s:12:\"tmpl_created\";i:1582092351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/photography-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:480;s:16:\"popularity_index\";i:671;s:11:\"trend_index\";i:645;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:666;a:20:{s:4:\"tmpl\";i:901;s:2:\"id\";i:11807;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/09/404_small.png\";s:12:\"tmpl_created\";i:1569430070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:483;s:16:\"popularity_index\";i:480;s:11:\"trend_index\";i:497;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:667;a:20:{s:4:\"tmpl\";i:900;s:2:\"id\";i:11832;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Footer_small.png\";s:12:\"tmpl_created\";i:1569430019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"Creative Portfolio\",\"Footer\",\"Portfolio\"]\";s:10:\"menu_order\";i:484;s:16:\"popularity_index\";i:246;s:11:\"trend_index\";i:102;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:668;a:20:{s:4:\"tmpl\";i:898;s:2:\"id\";i:11847;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Archiv_small.png\";s:12:\"tmpl_created\";i:1569430010;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:487;s:16:\"popularity_index\";i:336;s:11:\"trend_index\";i:455;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:669;a:20:{s:4:\"tmpl\";i:897;s:2:\"id\";i:11854;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/09/Post_small.png\";s:12:\"tmpl_created\";i:1569429983;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:489;s:16:\"popularity_index\";i:482;s:11:\"trend_index\";i:609;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:670;a:20:{s:4:\"tmpl\";i:904;s:2:\"id\";i:11890;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-design-portfolio.png\";s:12:\"tmpl_created\";i:1571907344;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"Creative Portfolio\",\"Header\",\"Portfolio\"]\";s:10:\"menu_order\";i:491;s:16:\"popularity_index\";i:306;s:11:\"trend_index\";i:364;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:671;a:20:{s:4:\"tmpl\";i:896;s:2:\"id\";i:11861;s:5:\"title\";s:27:\"Portfolio &#8211; Project 1\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project1_small.png\";s:12:\"tmpl_created\";i:1569429975;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:493;s:16:\"popularity_index\";i:643;s:11:\"trend_index\";i:764;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:672;a:20:{s:4:\"tmpl\";i:895;s:2:\"id\";i:11870;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569429964;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:495;s:16:\"popularity_index\";i:662;s:11:\"trend_index\";i:816;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:673;a:20:{s:4:\"tmpl\";i:903;s:2:\"id\";i:11897;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569494236;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/portfolio-project-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:496;s:16:\"popularity_index\";i:733;s:11:\"trend_index\";i:744;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:674;a:20:{s:4:\"tmpl\";i:894;s:2:\"id\";i:11877;s:5:\"title\";s:27:\"Portfolio &#8211; Project 3\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project3_small.png\";s:12:\"tmpl_created\";i:1569429954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:498;s:16:\"popularity_index\";i:692;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:675;a:20:{s:4:\"tmpl\";i:597;s:2:\"id\";i:5019;s:5:\"title\";s:11:\"Portfolio 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_1.png\";s:12:\"tmpl_created\";i:1520520580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:500;s:16:\"popularity_index\";i:170;s:11:\"trend_index\";i:236;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:676;a:20:{s:4:\"tmpl\";i:609;s:2:\"id\";i:5141;s:5:\"title\";s:12:\"Portfolio 10\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_10.png\";s:12:\"tmpl_created\";i:1520520601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:503;s:16:\"popularity_index\";i:416;s:11:\"trend_index\";i:478;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:677;a:20:{s:4:\"tmpl\";i:598;s:2:\"id\";i:5027;s:5:\"title\";s:12:\"Portfolio 11\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_2.png\";s:12:\"tmpl_created\";i:1520520581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:504;s:16:\"popularity_index\";i:304;s:11:\"trend_index\";i:421;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:678;a:20:{s:4:\"tmpl\";i:599;s:2:\"id\";i:5037;s:5:\"title\";s:12:\"Portfolio 12\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_3.png\";s:12:\"tmpl_created\";i:1520520583;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:507;s:16:\"popularity_index\";i:279;s:11:\"trend_index\";i:399;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:679;a:20:{s:4:\"tmpl\";i:600;s:2:\"id\";i:5057;s:5:\"title\";s:12:\"Portfolio 13\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_4.png\";s:12:\"tmpl_created\";i:1520520586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:509;s:16:\"popularity_index\";i:239;s:11:\"trend_index\";i:288;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:680;a:20:{s:4:\"tmpl\";i:601;s:2:\"id\";i:5071;s:5:\"title\";s:12:\"Portfolio 14\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_5.png\";s:12:\"tmpl_created\";i:1520520588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:511;s:16:\"popularity_index\";i:276;s:11:\"trend_index\";i:329;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:681;a:20:{s:4:\"tmpl\";i:603;s:2:\"id\";i:5090;s:5:\"title\";s:12:\"Portfolio 15\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_6.png\";s:12:\"tmpl_created\";i:1520520591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:513;s:16:\"popularity_index\";i:186;s:11:\"trend_index\";i:283;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:682;a:20:{s:4:\"tmpl\";i:604;s:2:\"id\";i:5098;s:5:\"title\";s:12:\"Portfolio 16\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_7.png\";s:12:\"tmpl_created\";i:1520520593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:515;s:16:\"popularity_index\";i:156;s:11:\"trend_index\";i:211;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:683;a:20:{s:4:\"tmpl\";i:606;s:2:\"id\";i:5115;s:5:\"title\";s:12:\"Portfolio 17\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_8.png\";s:12:\"tmpl_created\";i:1520520596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:517;s:16:\"popularity_index\";i:19;s:11:\"trend_index\";i:22;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:684;a:20:{s:4:\"tmpl\";i:608;s:2:\"id\";i:5133;s:5:\"title\";s:12:\"Portfolio 18\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_9.png\";s:12:\"tmpl_created\";i:1520520599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:519;s:16:\"popularity_index\";i:180;s:11:\"trend_index\";i:280;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:685;a:20:{s:4:\"tmpl\";i:610;s:2:\"id\";i:5149;s:5:\"title\";s:11:\"Portfolio 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_10.png\";s:12:\"tmpl_created\";i:1520520602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:521;s:16:\"popularity_index\";i:413;s:11:\"trend_index\";i:635;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:686;a:20:{s:4:\"tmpl\";i:468;s:2:\"id\";i:5045;s:5:\"title\";s:11:\"Portfolio 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_2.png\";s:12:\"tmpl_created\";i:1520443423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:523;s:16:\"popularity_index\";i:636;s:11:\"trend_index\";i:608;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:687;a:20:{s:4:\"tmpl\";i:602;s:2:\"id\";i:5082;s:5:\"title\";s:11:\"Portfolio 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_4.png\";s:12:\"tmpl_created\";i:1520520589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:524;s:16:\"popularity_index\";i:558;s:11:\"trend_index\";i:654;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:688;a:20:{s:4:\"tmpl\";i:605;s:2:\"id\";i:5107;s:5:\"title\";s:11:\"Portfolio 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_7.png\";s:12:\"tmpl_created\";i:1520520594;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:527;s:16:\"popularity_index\";i:380;s:11:\"trend_index\";i:347;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:689;a:20:{s:4:\"tmpl\";i:607;s:2:\"id\";i:5125;s:5:\"title\";s:11:\"Portfolio 6\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_8.png\";s:12:\"tmpl_created\";i:1520520597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:529;s:16:\"popularity_index\";i:236;s:11:\"trend_index\";i:386;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:690;a:20:{s:4:\"tmpl\";i:596;s:2:\"id\";i:5007;s:5:\"title\";s:11:\"Portfolio 7\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_1.png\";s:12:\"tmpl_created\";i:1520520578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:530;s:16:\"popularity_index\";i:44;s:11:\"trend_index\";i:183;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:691;a:20:{s:4:\"tmpl\";i:434;s:2:\"id\";i:4509;s:5:\"title\";s:9:\"Pricing 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_1.png\";s:12:\"tmpl_created\";i:1520443310;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:532;s:16:\"popularity_index\";i:703;s:11:\"trend_index\";i:641;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:692;a:20:{s:4:\"tmpl\";i:439;s:2:\"id\";i:4553;s:5:\"title\";s:10:\"Pricing 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_4.png\";s:12:\"tmpl_created\";i:1520443319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:534;s:16:\"popularity_index\";i:511;s:11:\"trend_index\";i:506;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:693;a:20:{s:4:\"tmpl\";i:441;s:2:\"id\";i:4572;s:5:\"title\";s:10:\"Pricing 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_5.png\";s:12:\"tmpl_created\";i:1520443324;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:537;s:16:\"popularity_index\";i:308;s:11:\"trend_index\";i:248;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:694;a:20:{s:4:\"tmpl\";i:442;s:2:\"id\";i:4580;s:5:\"title\";s:10:\"Pricing 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_6.png\";s:12:\"tmpl_created\";i:1520443326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:539;s:16:\"popularity_index\";i:576;s:11:\"trend_index\";i:526;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:695;a:20:{s:4:\"tmpl\";i:444;s:2:\"id\";i:4597;s:5:\"title\";s:10:\"Pricing 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_7.png\";s:12:\"tmpl_created\";i:1520443330;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:540;s:16:\"popularity_index\";i:613;s:11:\"trend_index\";i:450;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:696;a:20:{s:4:\"tmpl\";i:446;s:2:\"id\";i:4613;s:5:\"title\";s:10:\"Pricing 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_8.png\";s:12:\"tmpl_created\";i:1520443334;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:543;s:16:\"popularity_index\";i:581;s:11:\"trend_index\";i:568;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:697;a:20:{s:4:\"tmpl\";i:436;s:2:\"id\";i:4529;s:5:\"title\";s:9:\"Pricing 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_2.png\";s:12:\"tmpl_created\";i:1520443314;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:545;s:16:\"popularity_index\";i:609;s:11:\"trend_index\";i:613;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:698;a:20:{s:4:\"tmpl\";i:438;s:2:\"id\";i:4545;s:5:\"title\";s:9:\"Pricing 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_3.png\";s:12:\"tmpl_created\";i:1520443317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:547;s:16:\"popularity_index\";i:707;s:11:\"trend_index\";i:825;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:699;a:20:{s:4:\"tmpl\";i:440;s:2:\"id\";i:4562;s:5:\"title\";s:9:\"Pricing 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_4.png\";s:12:\"tmpl_created\";i:1520443322;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:549;s:16:\"popularity_index\";i:697;s:11:\"trend_index\";i:821;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:700;a:20:{s:4:\"tmpl\";i:443;s:2:\"id\";i:4589;s:5:\"title\";s:9:\"Pricing 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_6.png\";s:12:\"tmpl_created\";i:1520443327;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:551;s:16:\"popularity_index\";i:716;s:11:\"trend_index\";i:639;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:701;a:20:{s:4:\"tmpl\";i:445;s:2:\"id\";i:4605;s:5:\"title\";s:9:\"Pricing 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_7.png\";s:12:\"tmpl_created\";i:1520443332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:553;s:16:\"popularity_index\";i:738;s:11:\"trend_index\";i:773;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:702;a:20:{s:4:\"tmpl\";i:433;s:2:\"id\";i:4500;s:5:\"title\";s:9:\"Pricing 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_1.png\";s:12:\"tmpl_created\";i:1520443308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:554;s:16:\"popularity_index\";i:500;s:11:\"trend_index\";i:451;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:703;a:20:{s:4:\"tmpl\";i:435;s:2:\"id\";i:4521;s:5:\"title\";s:9:\"Pricing 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_2.png\";s:12:\"tmpl_created\";i:1520443312;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:557;s:16:\"popularity_index\";i:311;s:11:\"trend_index\";i:372;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:704;a:20:{s:4:\"tmpl\";i:437;s:2:\"id\";i:4537;s:5:\"title\";s:9:\"Pricing 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_3.png\";s:12:\"tmpl_created\";i:1520443315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:559;s:16:\"popularity_index\";i:589;s:11:\"trend_index\";i:841;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:705;a:20:{s:4:\"tmpl\";i:1046;s:2:\"id\";i:15204;s:5:\"title\";s:24:\"Psychologist &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/09/404.jpg\";s:12:\"tmpl_created\";i:1600161419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/psychologist-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:564;s:16:\"popularity_index\";i:574;s:11:\"trend_index\";i:493;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:706;a:20:{s:4:\"tmpl\";i:1047;s:2:\"id\";i:15212;s:5:\"title\";s:28:\"Psychologist &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Blog.jpg\";s:12:\"tmpl_created\";i:1600162340;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/psychologist-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:565;s:16:\"popularity_index\";i:379;s:11:\"trend_index\";i:358;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:707;a:20:{s:4:\"tmpl\";i:1048;s:2:\"id\";i:15219;s:5:\"title\";s:27:\"Psychologist &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Footer.jpg\";s:12:\"tmpl_created\";i:1600163069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/psychologist-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"Footer\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:566;s:16:\"popularity_index\";i:599;s:11:\"trend_index\";i:500;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:708;a:20:{s:4:\"tmpl\";i:701;s:2:\"id\";i:9239;s:5:\"title\";s:17:\"product archive 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-1.png\";s:12:\"tmpl_created\";i:1532953482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:566;s:16:\"popularity_index\";i:60;s:11:\"trend_index\";i:25;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:709;a:20:{s:4:\"tmpl\";i:1049;s:2:\"id\";i:15230;s:5:\"title\";s:27:\"Psychologist &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Header.png\";s:12:\"tmpl_created\";i:1600163444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/psychologist-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"Header\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:567;s:16:\"popularity_index\";i:429;s:11:\"trend_index\";i:423;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:710;a:20:{s:4:\"tmpl\";i:702;s:2:\"id\";i:9247;s:5:\"title\";s:17:\"product archive 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-2.png\";s:12:\"tmpl_created\";i:1532953793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:567;s:16:\"popularity_index\";i:71;s:11:\"trend_index\";i:30;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:711;a:20:{s:4:\"tmpl\";i:1050;s:2:\"id\";i:15240;s:5:\"title\";s:34:\"Psychologist &#8211; single post 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Post.png\";s:12:\"tmpl_created\";i:1600164087;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/psychologist-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:568;s:16:\"popularity_index\";i:562;s:11:\"trend_index\";i:570;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:712;a:20:{s:4:\"tmpl\";i:703;s:2:\"id\";i:9254;s:5:\"title\";s:17:\"product archive 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-3.png\";s:12:\"tmpl_created\";i:1532954032;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:568;s:16:\"popularity_index\";i:73;s:11:\"trend_index\";i:44;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:713;a:20:{s:4:\"tmpl\";i:1051;s:2:\"id\";i:15251;s:5:\"title\";s:34:\"Psychologist &#8211; single post 2\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Service-Page.png\";s:12:\"tmpl_created\";i:1600165179;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/psychologist-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:569;s:16:\"popularity_index\";i:507;s:11:\"trend_index\";i:368;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:714;a:20:{s:4:\"tmpl\";i:412;s:2:\"id\";i:4313;s:5:\"title\";s:11:\"Services 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_8.png\";s:12:\"tmpl_created\";i:1520443268;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:570;s:16:\"popularity_index\";i:115;s:11:\"trend_index\";i:53;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:715;a:20:{s:4:\"tmpl\";i:413;s:2:\"id\";i:4324;s:5:\"title\";s:11:\"Services 14\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_9.png\";s:12:\"tmpl_created\";i:1520443270;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:571;s:16:\"popularity_index\";i:277;s:11:\"trend_index\";i:138;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:716;a:20:{s:4:\"tmpl\";i:418;s:2:\"id\";i:4368;s:5:\"title\";s:11:\"Services 16\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_13.png\";s:12:\"tmpl_created\";i:1520443279;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:572;s:16:\"popularity_index\";i:62;s:11:\"trend_index\";i:59;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:717;a:20:{s:4:\"tmpl\";i:420;s:2:\"id\";i:4391;s:5:\"title\";s:11:\"Services 17\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_14.png\";s:12:\"tmpl_created\";i:1520443283;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:573;s:16:\"popularity_index\";i:153;s:11:\"trend_index\";i:120;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:718;a:20:{s:4:\"tmpl\";i:403;s:2:\"id\";i:4235;s:5:\"title\";s:11:\"Services 18\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_2.png\";s:12:\"tmpl_created\";i:1520443251;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:574;s:16:\"popularity_index\";i:273;s:11:\"trend_index\";i:172;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:719;a:20:{s:4:\"tmpl\";i:417;s:2:\"id\";i:4357;s:5:\"title\";s:11:\"Services 20\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_12.png\";s:12:\"tmpl_created\";i:1520443277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:575;s:16:\"popularity_index\";i:45;s:11:\"trend_index\";i:45;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:720;a:20:{s:4:\"tmpl\";i:415;s:2:\"id\";i:4341;s:5:\"title\";s:11:\"Services 21\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_11.png\";s:12:\"tmpl_created\";i:1520443274;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:576;s:16:\"popularity_index\";i:142;s:11:\"trend_index\";i:114;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:721;a:20:{s:4:\"tmpl\";i:414;s:2:\"id\";i:4332;s:5:\"title\";s:11:\"Services 22\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_10.png\";s:12:\"tmpl_created\";i:1520443272;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:577;s:16:\"popularity_index\";i:138;s:11:\"trend_index\";i:149;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:722;a:20:{s:4:\"tmpl\";i:401;s:2:\"id\";i:4212;s:5:\"title\";s:11:\"Services 23\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_1.png\";s:12:\"tmpl_created\";i:1520443248;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:578;s:16:\"popularity_index\";i:136;s:11:\"trend_index\";i:302;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:723;a:20:{s:4:\"tmpl\";i:408;s:2:\"id\";i:4276;s:5:\"title\";s:11:\"Services 24\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_4.png\";s:12:\"tmpl_created\";i:1520443261;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:579;s:16:\"popularity_index\";i:353;s:11:\"trend_index\";i:514;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:724;a:20:{s:4:\"tmpl\";i:406;s:2:\"id\";i:4260;s:5:\"title\";s:11:\"Services 25\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_3.png\";s:12:\"tmpl_created\";i:1520443257;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-25/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:580;s:16:\"popularity_index\";i:184;s:11:\"trend_index\";i:209;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:725;a:20:{s:4:\"tmpl\";i:404;s:2:\"id\";i:4244;s:5:\"title\";s:11:\"Services 26\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_2.png\";s:12:\"tmpl_created\";i:1520443253;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:581;s:16:\"popularity_index\";i:544;s:11:\"trend_index\";i:596;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:726;a:20:{s:4:\"tmpl\";i:421;s:2:\"id\";i:4400;s:5:\"title\";s:11:\"Services 27\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_13.png\";s:12:\"tmpl_created\";i:1520443285;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:582;s:16:\"popularity_index\";i:286;s:11:\"trend_index\";i:438;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:727;a:20:{s:4:\"tmpl\";i:419;s:2:\"id\";i:4376;s:5:\"title\";s:11:\"Services 28\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_12.png\";s:12:\"tmpl_created\";i:1520443281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-28/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:583;s:16:\"popularity_index\";i:151;s:11:\"trend_index\";i:249;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:728;a:20:{s:4:\"tmpl\";i:416;s:2:\"id\";i:4349;s:5:\"title\";s:11:\"Services 29\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_11.png\";s:12:\"tmpl_created\";i:1520443275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:584;s:16:\"popularity_index\";i:330;s:11:\"trend_index\";i:483;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:729;a:20:{s:4:\"tmpl\";i:402;s:2:\"id\";i:4227;s:5:\"title\";s:11:\"Services 30\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_1.png\";s:12:\"tmpl_created\";i:1520443250;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-30/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:585;s:16:\"popularity_index\";i:351;s:11:\"trend_index\";i:553;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:730;a:20:{s:4:\"tmpl\";i:560;s:2:\"id\";i:6162;s:5:\"title\";s:11:\"Services 31\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_1.png\";s:12:\"tmpl_created\";i:1520443668;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-31/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:586;s:16:\"popularity_index\";i:372;s:11:\"trend_index\";i:550;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:731;a:20:{s:4:\"tmpl\";i:411;s:2:\"id\";i:4302;s:5:\"title\";s:10:\"Services 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_7.png\";s:12:\"tmpl_created\";i:1520443266;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:587;s:16:\"popularity_index\";i:58;s:11:\"trend_index\";i:97;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:732;a:20:{s:4:\"tmpl\";i:410;s:2:\"id\";i:4293;s:5:\"title\";s:10:\"Services 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_6.png\";s:12:\"tmpl_created\";i:1520443265;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:588;s:16:\"popularity_index\";i:288;s:11:\"trend_index\";i:269;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:733;a:20:{s:4:\"tmpl\";i:409;s:2:\"id\";i:4284;s:5:\"title\";s:10:\"Services 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_5.png\";s:12:\"tmpl_created\";i:1520443263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:589;s:16:\"popularity_index\";i:27;s:11:\"trend_index\";i:21;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:734;a:20:{s:4:\"tmpl\";i:407;s:2:\"id\";i:4268;s:5:\"title\";s:10:\"Services 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_4.png\";s:12:\"tmpl_created\";i:1520443259;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:590;s:16:\"popularity_index\";i:173;s:11:\"trend_index\";i:213;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:735;a:20:{s:4:\"tmpl\";i:405;s:2:\"id\";i:4252;s:5:\"title\";s:10:\"Services 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_3.png\";s:12:\"tmpl_created\";i:1520443255;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:591;s:16:\"popularity_index\";i:46;s:11:\"trend_index\";i:99;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:736;a:20:{s:4:\"tmpl\";i:677;s:2:\"id\";i:8676;s:5:\"title\";s:13:\"single page 1\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.6.jpg\";s:12:\"tmpl_created\";i:1527682423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:592;s:16:\"popularity_index\";i:285;s:11:\"trend_index\";i:145;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:737;a:20:{s:4:\"tmpl\";i:678;s:2:\"id\";i:8678;s:5:\"title\";s:13:\"single page 2\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.2.jpg\";s:12:\"tmpl_created\";i:1527682780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:593;s:16:\"popularity_index\";i:140;s:11:\"trend_index\";i:82;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:738;a:20:{s:4:\"tmpl\";i:679;s:2:\"id\";i:8679;s:5:\"title\";s:13:\"single page 3\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.3.jpg\";s:12:\"tmpl_created\";i:1527682847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:594;s:16:\"popularity_index\";i:122;s:11:\"trend_index\";i:23;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:739;a:20:{s:4:\"tmpl\";i:680;s:2:\"id\";i:8680;s:5:\"title\";s:13:\"single page 4\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.1.jpg\";s:12:\"tmpl_created\";i:1527682896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:595;s:16:\"popularity_index\";i:373;s:11:\"trend_index\";i:190;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:740;a:20:{s:4:\"tmpl\";i:681;s:2:\"id\";i:8681;s:5:\"title\";s:13:\"single page 5\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.5.jpg\";s:12:\"tmpl_created\";i:1527682969;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:596;s:16:\"popularity_index\";i:287;s:11:\"trend_index\";i:218;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:741;a:20:{s:4:\"tmpl\";i:682;s:2:\"id\";i:8682;s:5:\"title\";s:13:\"single page 6\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.4.jpg\";s:12:\"tmpl_created\";i:1527683026;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:597;s:16:\"popularity_index\";i:412;s:11:\"trend_index\";i:227;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:742;a:20:{s:4:\"tmpl\";i:683;s:2:\"id\";i:8703;s:5:\"title\";s:13:\"single page 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.7.jpg\";s:12:\"tmpl_created\";i:1527683072;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:598;s:16:\"popularity_index\";i:401;s:11:\"trend_index\";i:316;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:743;a:20:{s:4:\"tmpl\";i:640;s:2:\"id\";i:7650;s:5:\"title\";s:13:\"Single Post 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_1_v2.jpg\";s:12:\"tmpl_created\";i:1521557736;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:599;s:16:\"popularity_index\";i:119;s:11:\"trend_index\";i:266;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:744;a:20:{s:4:\"tmpl\";i:639;s:2:\"id\";i:7663;s:5:\"title\";s:13:\"Single Post 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_2_v2.jpg\";s:12:\"tmpl_created\";i:1521547761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:600;s:16:\"popularity_index\";i:50;s:11:\"trend_index\";i:139;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:745;a:20:{s:4:\"tmpl\";i:705;s:2:\"id\";i:9296;s:5:\"title\";s:13:\"Single Post 3\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3002.jpg\";s:12:\"tmpl_created\";i:1537440673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:601;s:16:\"popularity_index\";i:213;s:11:\"trend_index\";i:204;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:746;a:20:{s:4:\"tmpl\";i:704;s:2:\"id\";i:9301;s:5:\"title\";s:13:\"Single Post 4\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3003.jpg\";s:12:\"tmpl_created\";i:1537440661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:602;s:16:\"popularity_index\";i:248;s:11:\"trend_index\";i:336;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:747;a:20:{s:4:\"tmpl\";i:706;s:2:\"id\";i:9313;s:5:\"title\";s:13:\"Single Post 5\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3001.jpg\";s:12:\"tmpl_created\";i:1537440798;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:603;s:16:\"popularity_index\";i:197;s:11:\"trend_index\";i:177;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:748;a:20:{s:4:\"tmpl\";i:707;s:2:\"id\";i:9343;s:5:\"title\";s:13:\"Single Post 6\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3004.jpg\";s:12:\"tmpl_created\";i:1537443531;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:604;s:16:\"popularity_index\";i:228;s:11:\"trend_index\";i:279;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:749;a:20:{s:4:\"tmpl\";i:708;s:2:\"id\";i:9349;s:5:\"title\";s:13:\"Single Post 7\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3005.jpg\";s:12:\"tmpl_created\";i:1537443903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:605;s:16:\"popularity_index\";i:158;s:11:\"trend_index\";i:253;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:750;a:20:{s:4:\"tmpl\";i:555;s:2:\"id\";i:6114;s:5:\"title\";s:7:\"Stats 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_6.png\";s:12:\"tmpl_created\";i:1520443659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:610;s:16:\"popularity_index\";i:434;s:11:\"trend_index\";i:692;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:751;a:20:{s:4:\"tmpl\";i:562;s:2:\"id\";i:6178;s:5:\"title\";s:8:\"Stats 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_2.png\";s:12:\"tmpl_created\";i:1520443676;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:611;s:16:\"popularity_index\";i:435;s:11:\"trend_index\";i:755;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:752;a:20:{s:4:\"tmpl\";i:561;s:2:\"id\";i:6170;s:5:\"title\";s:8:\"Stats 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_2.png\";s:12:\"tmpl_created\";i:1520443670;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:612;s:16:\"popularity_index\";i:366;s:11:\"trend_index\";i:552;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:753;a:20:{s:4:\"tmpl\";i:697;s:2:\"id\";i:9174;s:5:\"title\";s:17:\"single product 01\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product01_350.png\";s:12:\"tmpl_created\";i:1532950125;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:612;s:16:\"popularity_index\";i:31;s:11:\"trend_index\";i:6;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:754;a:20:{s:4:\"tmpl\";i:563;s:2:\"id\";i:6186;s:5:\"title\";s:8:\"Stats 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_3.png\";s:12:\"tmpl_created\";i:1520443678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:613;s:16:\"popularity_index\";i:569;s:11:\"trend_index\";i:811;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:755;a:20:{s:4:\"tmpl\";i:698;s:2:\"id\";i:9178;s:5:\"title\";s:17:\"single product 02\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product02_350new.png\";s:12:\"tmpl_created\";i:1532951997;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:613;s:16:\"popularity_index\";i:66;s:11:\"trend_index\";i:42;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:756;a:20:{s:4:\"tmpl\";i:550;s:2:\"id\";i:6071;s:5:\"title\";s:8:\"Stats 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_3.png\";s:12:\"tmpl_created\";i:1520443649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:614;s:16:\"popularity_index\";i:168;s:11:\"trend_index\";i:328;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:757;a:20:{s:4:\"tmpl\";i:699;s:2:\"id\";i:9180;s:5:\"title\";s:17:\"single product 03\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product03_350.png\";s:12:\"tmpl_created\";i:1532952302;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:614;s:16:\"popularity_index\";i:108;s:11:\"trend_index\";i:66;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:758;a:20:{s:4:\"tmpl\";i:554;s:2:\"id\";i:6106;s:5:\"title\";s:7:\"Stats 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_6.png\";s:12:\"tmpl_created\";i:1520443657;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:615;s:16:\"popularity_index\";i:361;s:11:\"trend_index\";i:784;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:759;a:20:{s:4:\"tmpl\";i:700;s:2:\"id\";i:9182;s:5:\"title\";s:17:\"single product 04\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product040_350.png\";s:12:\"tmpl_created\";i:1532952606;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:615;s:16:\"popularity_index\";i:123;s:11:\"trend_index\";i:81;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:760;a:20:{s:4:\"tmpl\";i:551;s:2:\"id\";i:6079;s:5:\"title\";s:7:\"Stats 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_4.png\";s:12:\"tmpl_created\";i:1520443651;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:616;s:16:\"popularity_index\";i:284;s:11:\"trend_index\";i:385;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:761;a:20:{s:4:\"tmpl\";i:552;s:2:\"id\";i:6089;s:5:\"title\";s:7:\"Stats 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_5.png\";s:12:\"tmpl_created\";i:1520443653;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:617;s:16:\"popularity_index\";i:205;s:11:\"trend_index\";i:452;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:762;a:20:{s:4:\"tmpl\";i:549;s:2:\"id\";i:6063;s:5:\"title\";s:7:\"Stats 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_2.png\";s:12:\"tmpl_created\";i:1520443647;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:618;s:16:\"popularity_index\";i:181;s:11:\"trend_index\";i:419;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:763;a:20:{s:4:\"tmpl\";i:553;s:2:\"id\";i:6097;s:5:\"title\";s:7:\"Stats 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_2.png\";s:12:\"tmpl_created\";i:1520443655;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:619;s:16:\"popularity_index\";i:264;s:11:\"trend_index\";i:492;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:764;a:20:{s:4:\"tmpl\";i:538;s:2:\"id\";i:5956;s:5:\"title\";s:7:\"Stats 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_1.png\";s:12:\"tmpl_created\";i:1520443623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:620;s:16:\"popularity_index\";i:532;s:11:\"trend_index\";i:541;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:765;a:20:{s:4:\"tmpl\";i:537;s:2:\"id\";i:5947;s:5:\"title\";s:7:\"Stats 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_1.png\";s:12:\"tmpl_created\";i:1520443621;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:621;s:16:\"popularity_index\";i:368;s:11:\"trend_index\";i:531;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:766;a:20:{s:4:\"tmpl\";i:559;s:2:\"id\";i:6152;s:5:\"title\";s:7:\"Stats 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_1.png\";s:12:\"tmpl_created\";i:1520443666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:622;s:16:\"popularity_index\";i:272;s:11:\"trend_index\";i:557;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:767;a:20:{s:4:\"tmpl\";i:469;s:2:\"id\";i:5157;s:5:\"title\";s:11:\"Subscribe 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_1.png\";s:12:\"tmpl_created\";i:1520443448;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:623;s:16:\"popularity_index\";i:340;s:11:\"trend_index\";i:293;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:768;a:20:{s:4:\"tmpl\";i:472;s:2:\"id\";i:5181;s:5:\"title\";s:11:\"Subscribe 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_2.png\";s:12:\"tmpl_created\";i:1520443454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/subscribe-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:624;s:16:\"popularity_index\";i:451;s:11:\"trend_index\";i:340;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:769;a:20:{s:4:\"tmpl\";i:470;s:2:\"id\";i:5165;s:5:\"title\";s:11:\"Subscribe 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_1.png\";s:12:\"tmpl_created\";i:1520443450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:625;s:16:\"popularity_index\";i:520;s:11:\"trend_index\";i:620;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:770;a:20:{s:4:\"tmpl\";i:477;s:2:\"id\";i:5222;s:5:\"title\";s:11:\"Subscribe 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_3.png\";s:12:\"tmpl_created\";i:1520443464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:626;s:16:\"popularity_index\";i:397;s:11:\"trend_index\";i:427;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:771;a:20:{s:4:\"tmpl\";i:471;s:2:\"id\";i:5173;s:5:\"title\";s:11:\"Subscribe 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_2.png\";s:12:\"tmpl_created\";i:1520443452;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:627;s:16:\"popularity_index\";i:261;s:11:\"trend_index\";i:237;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:772;a:20:{s:4:\"tmpl\";i:465;s:2:\"id\";i:4801;s:5:\"title\";s:7:\"Team 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_8.png\";s:12:\"tmpl_created\";i:1520443369;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:628;s:16:\"popularity_index\";i:332;s:11:\"trend_index\";i:188;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:773;a:20:{s:4:\"tmpl\";i:462;s:2:\"id\";i:4770;s:5:\"title\";s:7:\"Team 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_6.png\";s:12:\"tmpl_created\";i:1520443364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/team-12-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:629;s:16:\"popularity_index\";i:432;s:11:\"trend_index\";i:488;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:774;a:20:{s:4:\"tmpl\";i:458;s:2:\"id\";i:4727;s:5:\"title\";s:7:\"Team 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_2.png\";s:12:\"tmpl_created\";i:1520443356;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:630;s:16:\"popularity_index\";i:375;s:11:\"trend_index\";i:345;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:775;a:20:{s:4:\"tmpl\";i:543;s:2:\"id\";i:5999;s:5:\"title\";s:7:\"Team 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_10.png\";s:12:\"tmpl_created\";i:1520443634;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:631;s:16:\"popularity_index\";i:110;s:11:\"trend_index\";i:318;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:776;a:20:{s:4:\"tmpl\";i:455;s:2:\"id\";i:4698;s:5:\"title\";s:7:\"Team 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_1.png\";s:12:\"tmpl_created\";i:1520443350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:632;s:16:\"popularity_index\";i:449;s:11:\"trend_index\";i:410;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:777;a:20:{s:4:\"tmpl\";i:463;s:2:\"id\";i:4781;s:5:\"title\";s:7:\"Team 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_7.png\";s:12:\"tmpl_created\";i:1520443365;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:633;s:16:\"popularity_index\";i:267;s:11:\"trend_index\";i:330;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:778;a:20:{s:4:\"tmpl\";i:558;s:2:\"id\";i:6144;s:5:\"title\";s:7:\"Team 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_11.png\";s:12:\"tmpl_created\";i:1520443664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:634;s:16:\"popularity_index\";i:166;s:11:\"trend_index\";i:365;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:779;a:20:{s:4:\"tmpl\";i:464;s:2:\"id\";i:4793;s:5:\"title\";s:7:\"Team 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_8.png\";s:12:\"tmpl_created\";i:1520443367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:635;s:16:\"popularity_index\";i:207;s:11:\"trend_index\";i:173;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:780;a:20:{s:4:\"tmpl\";i:466;s:2:\"id\";i:4809;s:5:\"title\";s:7:\"Team 19\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_9.png\";s:12:\"tmpl_created\";i:1520443371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:636;s:16:\"popularity_index\";i:300;s:11:\"trend_index\";i:465;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:781;a:20:{s:4:\"tmpl\";i:459;s:2:\"id\";i:4736;s:5:\"title\";s:7:\"Team 20\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_4.png\";s:12:\"tmpl_created\";i:1520443358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:637;s:16:\"popularity_index\";i:144;s:11:\"trend_index\";i:159;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:782;a:20:{s:4:\"tmpl\";i:467;s:2:\"id\";i:4818;s:5:\"title\";s:7:\"Team 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_9.png\";s:12:\"tmpl_created\";i:1520443373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:638;s:16:\"popularity_index\";i:515;s:11:\"trend_index\";i:606;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:783;a:20:{s:4:\"tmpl\";i:461;s:2:\"id\";i:4759;s:5:\"title\";s:7:\"Team 22\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_5.png\";s:12:\"tmpl_created\";i:1520443362;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:639;s:16:\"popularity_index\";i:299;s:11:\"trend_index\";i:376;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:784;a:20:{s:4:\"tmpl\";i:460;s:2:\"id\";i:4746;s:5:\"title\";s:7:\"Team 23\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_4.png\";s:12:\"tmpl_created\";i:1520443360;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:640;s:16:\"popularity_index\";i:282;s:11:\"trend_index\";i:378;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:785;a:20:{s:4:\"tmpl\";i:457;s:2:\"id\";i:4718;s:5:\"title\";s:6:\"Team 4\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_3.png\";s:12:\"tmpl_created\";i:1520443354;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:641;s:16:\"popularity_index\";i:192;s:11:\"trend_index\";i:359;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:786;a:20:{s:4:\"tmpl\";i:456;s:2:\"id\";i:4706;s:5:\"title\";s:6:\"Team 5\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_2.png\";s:12:\"tmpl_created\";i:1520443352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:642;s:16:\"popularity_index\";i:149;s:11:\"trend_index\";i:299;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:787;a:20:{s:4:\"tmpl\";i:544;s:2:\"id\";i:6008;s:5:\"title\";s:6:\"Team 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_10.png\";s:12:\"tmpl_created\";i:1520443636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:643;s:16:\"popularity_index\";i:75;s:11:\"trend_index\";i:277;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:788;a:20:{s:4:\"tmpl\";i:454;s:2:\"id\";i:4690;s:5:\"title\";s:6:\"Team 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_1.png\";s:12:\"tmpl_created\";i:1520443348;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:644;s:16:\"popularity_index\";i:243;s:11:\"trend_index\";i:402;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:789;a:20:{s:4:\"tmpl\";i:586;s:2:\"id\";i:4921;s:5:\"title\";s:14:\"Testimonial 10\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_5.png\";s:12:\"tmpl_created\";i:1520520562;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:645;s:16:\"popularity_index\";i:219;s:11:\"trend_index\";i:198;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:790;a:20:{s:4:\"tmpl\";i:582;s:2:\"id\";i:4889;s:5:\"title\";s:14:\"Testimonial 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-2.jpg\";s:12:\"tmpl_created\";i:1520520556;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:646;s:16:\"popularity_index\";i:557;s:11:\"trend_index\";i:522;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:791;a:20:{s:4:\"tmpl\";i:580;s:2:\"id\";i:4871;s:5:\"title\";s:14:\"Testimonial 12\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_3.png\";s:12:\"tmpl_created\";i:1520520552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:647;s:16:\"popularity_index\";i:262;s:11:\"trend_index\";i:391;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:792;a:20:{s:4:\"tmpl\";i:578;s:2:\"id\";i:4854;s:5:\"title\";s:14:\"Testimonial 13\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_2.png\";s:12:\"tmpl_created\";i:1520520549;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:648;s:16:\"popularity_index\";i:637;s:11:\"trend_index\";i:741;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:793;a:20:{s:4:\"tmpl\";i:595;s:2:\"id\";i:4995;s:5:\"title\";s:14:\"Testimonial 14\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_12.png\";s:12:\"tmpl_created\";i:1520520577;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:649;s:16:\"popularity_index\";i:400;s:11:\"trend_index\";i:411;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:794;a:20:{s:4:\"tmpl\";i:593;s:2:\"id\";i:4979;s:5:\"title\";s:14:\"Testimonial 15\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_10.png\";s:12:\"tmpl_created\";i:1520520573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:650;s:16:\"popularity_index\";i:568;s:11:\"trend_index\";i:544;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:795;a:20:{s:4:\"tmpl\";i:576;s:2:\"id\";i:4835;s:5:\"title\";s:14:\"Testimonial 16\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_1.png\";s:12:\"tmpl_created\";i:1520520546;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:651;s:16:\"popularity_index\";i:399;s:11:\"trend_index\";i:401;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:796;a:20:{s:4:\"tmpl\";i:594;s:2:\"id\";i:4987;s:5:\"title\";s:14:\"Testimonial 17\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_12-1.png\";s:12:\"tmpl_created\";i:1520520575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:652;s:16:\"popularity_index\";i:159;s:11:\"trend_index\";i:199;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:797;a:20:{s:4:\"tmpl\";i:577;s:2:\"id\";i:4843;s:5:\"title\";s:14:\"Testimonial 18\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_2.png\";s:12:\"tmpl_created\";i:1520520548;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:653;s:16:\"popularity_index\";i:457;s:11:\"trend_index\";i:780;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:798;a:20:{s:4:\"tmpl\";i:579;s:2:\"id\";i:4863;s:5:\"title\";s:14:\"Testimonial 19\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_3.png\";s:12:\"tmpl_created\";i:1520520551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:654;s:16:\"popularity_index\";i:245;s:11:\"trend_index\";i:599;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:799;a:20:{s:4:\"tmpl\";i:581;s:2:\"id\";i:4880;s:5:\"title\";s:14:\"Testimonial 20\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-1.jpg\";s:12:\"tmpl_created\";i:1520520554;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:655;s:16:\"popularity_index\";i:446;s:11:\"trend_index\";i:653;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:800;a:20:{s:4:\"tmpl\";i:583;s:2:\"id\";i:4897;s:5:\"title\";s:14:\"Testimonial 21\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_5.png\";s:12:\"tmpl_created\";i:1520520557;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:656;s:16:\"popularity_index\";i:78;s:11:\"trend_index\";i:289;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:801;a:20:{s:4:\"tmpl\";i:584;s:2:\"id\";i:4905;s:5:\"title\";s:14:\"Testimonial 22\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_6.png\";s:12:\"tmpl_created\";i:1520520559;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:657;s:16:\"popularity_index\";i:121;s:11:\"trend_index\";i:221;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:802;a:20:{s:4:\"tmpl\";i:585;s:2:\"id\";i:4913;s:5:\"title\";s:14:\"Testimonial 23\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_7.png\";s:12:\"tmpl_created\";i:1520520561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:658;s:16:\"popularity_index\";i:247;s:11:\"trend_index\";i:566;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:803;a:20:{s:4:\"tmpl\";i:575;s:2:\"id\";i:4826;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_1.png\";s:12:\"tmpl_created\";i:1520520544;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/testimonial-24-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:659;s:16:\"popularity_index\";i:256;s:11:\"trend_index\";i:395;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:804;a:20:{s:4:\"tmpl\";i:587;s:2:\"id\";i:4929;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_8.png\";s:12:\"tmpl_created\";i:1520520564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:660;s:16:\"popularity_index\";i:49;s:11:\"trend_index\";i:206;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:805;a:20:{s:4:\"tmpl\";i:591;s:2:\"id\";i:4963;s:5:\"title\";s:14:\"Testimonial 25\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_10.png\";s:12:\"tmpl_created\";i:1520520570;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/testimonial-25-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:661;s:16:\"popularity_index\";i:417;s:11:\"trend_index\";i:546;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:806;a:20:{s:4:\"tmpl\";i:592;s:2:\"id\";i:4971;s:5:\"title\";s:14:\"Testimonial 26\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_11.png\";s:12:\"tmpl_created\";i:1520520572;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:662;s:16:\"popularity_index\";i:649;s:11:\"trend_index\";i:718;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:807;a:20:{s:4:\"tmpl\";i:589;s:2:\"id\";i:4947;s:5:\"title\";s:14:\"Testimonial 27\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_9.png\";s:12:\"tmpl_created\";i:1520520567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:663;s:16:\"popularity_index\";i:221;s:11:\"trend_index\";i:496;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:808;a:20:{s:4:\"tmpl\";i:590;s:2:\"id\";i:4955;s:5:\"title\";s:14:\"Testimonial 29\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_9.png\";s:12:\"tmpl_created\";i:1520520569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:664;s:16:\"popularity_index\";i:378;s:11:\"trend_index\";i:695;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:809;a:20:{s:4:\"tmpl\";i:588;s:2:\"id\";i:4939;s:5:\"title\";s:13:\"Testimonial 9\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_8.png\";s:12:\"tmpl_created\";i:1520520565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/testimonial-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:665;s:16:\"popularity_index\";i:103;s:11:\"trend_index\";i:341;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:810;a:20:{s:4:\"tmpl\";i:928;s:2:\"id\";i:12509;s:5:\"title\";s:18:\"Travel &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/404.png\";s:12:\"tmpl_created\";i:1575960378;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/travel-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:666;s:16:\"popularity_index\";i:747;s:11:\"trend_index\";i:712;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:811;a:20:{s:4:\"tmpl\";i:929;s:2:\"id\";i:12516;s:5:\"title\";s:27:\"Travel &#8211; Archive Blog\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Archiv_s.png\";s:12:\"tmpl_created\";i:1575960387;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/travel-archive-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:667;s:16:\"popularity_index\";i:496;s:11:\"trend_index\";i:487;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:812;a:20:{s:4:\"tmpl\";i:927;s:2:\"id\";i:12500;s:5:\"title\";s:21:\"Travel &#8211; Header\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-travel-and-tours.png\";s:12:\"tmpl_created\";i:1575960371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/travel-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:668;s:16:\"popularity_index\";i:443;s:11:\"trend_index\";i:434;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:813;a:20:{s:4:\"tmpl\";i:930;s:2:\"id\";i:12524;s:5:\"title\";s:26:\"Travel &#8211; Single Post\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Post_s.png\";s:12:\"tmpl_created\";i:1575960397;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:669;s:16:\"popularity_index\";i:591;s:11:\"trend_index\";i:663;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:814;a:20:{s:4:\"tmpl\";i:931;s:2:\"id\";i:12531;s:5:\"title\";s:31:\"Travel &#8211; Single Post Tour\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Tour_s.png\";s:12:\"tmpl_created\";i:1575960404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/travel-single-post-tour/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:670;s:16:\"popularity_index\";i:630;s:11:\"trend_index\";i:548;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:815;a:20:{s:4:\"tmpl\";i:926;s:2:\"id\";i:12492;s:5:\"title\";s:14:\"Travel -Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Footer_s.png\";s:12:\"tmpl_created\";i:1575960358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/travel-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"Footer\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:671;s:16:\"popularity_index\";i:453;s:11:\"trend_index\";i:322;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:816;a:20:{s:4:\"tmpl\";i:1068;s:2:\"id\";i:15498;s:5:\"title\";s:23:\"Travel Blog &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/11/404.jpg\";s:12:\"tmpl_created\";i:1606215636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/travel-blog-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:23:\"[\"404\",\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:672;s:16:\"popularity_index\";i:749;s:11:\"trend_index\";i:759;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:817;a:20:{s:4:\"tmpl\";i:1069;s:2:\"id\";i:15508;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-1-350.jpg\";s:12:\"tmpl_created\";i:1606215649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/travel-blog-archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:673;s:16:\"popularity_index\";i:659;s:11:\"trend_index\";i:468;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:818;a:20:{s:4:\"tmpl\";i:1070;s:2:\"id\";i:15518;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-2-350-Copy.jpg\";s:12:\"tmpl_created\";i:1606215663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/travel-blog-archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:674;s:16:\"popularity_index\";i:688;s:11:\"trend_index\";i:431;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:819;a:20:{s:4:\"tmpl\";i:1071;s:2:\"id\";i:15528;s:5:\"title\";s:26:\"Travel Blog &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Footer.jpg\";s:12:\"tmpl_created\";i:1606215673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-blog-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:26:\"[\"Blog\",\"Footer\",\"Travel\"]\";s:10:\"menu_order\";i:675;s:16:\"popularity_index\";i:656;s:11:\"trend_index\";i:377;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:820;a:20:{s:4:\"tmpl\";i:1067;s:2:\"id\";i:15536;s:5:\"title\";s:26:\"Travel Blog &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Header.jpg\";s:12:\"tmpl_created\";i:1606215625;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-blog-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:26:\"[\"Blog\",\"Header\",\"Travel\"]\";s:10:\"menu_order\";i:676;s:16:\"popularity_index\";i:584;s:11:\"trend_index\";i:228;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:821;a:20:{s:4:\"tmpl\";i:1072;s:2:\"id\";i:15545;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-1-350.jpg\";s:12:\"tmpl_created\";i:1606215684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/travel-blog-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:677;s:16:\"popularity_index\";i:669;s:11:\"trend_index\";i:482;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:822;a:20:{s:4:\"tmpl\";i:1066;s:2:\"id\";i:15556;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 2\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-2-350.jpg\";s:12:\"tmpl_created\";i:1606215613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/travel-blog-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:678;s:16:\"popularity_index\";i:652;s:11:\"trend_index\";i:454;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}}}','off'),(501,'elementor_remote_info_feed_data','a:3:{i:0;a:5:{s:5:\"title\";s:101:\"Introducing Elementor 3.27: Flexible Grids, Better Security, Enhanced Accessibility & More Creativity\";s:7:\"excerpt\";s:409:\"Elementor 3.27 is packed with features designed to give you more control, boost your site’s performance, enhance accessibility, and take your creativity to new heights. This version is all about solving real challenges—whether it’s designing intricate Grid layouts, embedding modern video formats, or adding effortless animations, Elementor 3.27 makes your workflow smoother and your websites smarter.\r\n\";s:7:\"created\";i:1738142681;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:155:\"https://elementor.com/blog/elementor-327-grid-layouts-local-google-fonts-ai-motion/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:1;a:5:{s:5:\"title\";s:62:\"Introducing Hello Biz: A New Beginner Friendly WordPress Theme\";s:7:\"excerpt\";s:226:\"The first in a new collection of beginner-friendly Hello Themes, Hello Biz aims to make building Professional websites easier. Designed to streamline website creation, by helping you build a polished, high-performance website.\";s:7:\"created\";i:1736335773;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:121:\"https://elementor.com/blog/introducing-hello-biz/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:2;a:5:{s:5:\"title\";s:65:\"Introducing Elementor 3.26: Dynamic Design & Enhanced Performance\";s:7:\"excerpt\";s:192:\"Boost your site’s speed and performance with optimized CSS and a cleaner DOM, create dynamic content with an Off-Canvas modal from Loop Grids, and leverage the new AdBlock detection trigger.\";s:7:\"created\";i:1736174778;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:146:\"https://elementor.com/blog/elementor-326-off-canvas-loop-grid-performance/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}}','off'),(510,'_transient_woocommerce_shipping_task_zone_count_transient','0','on'),(538,'ct_ie_term_imported','imported','auto'),(544,'_transient_product_query-transient-version','1729353347','on'),(545,'wp_calendar_block_has_published_posts','','auto'),(547,'portfolio-category_children','a:0:{}','auto'),(549,'elementor_library_category_children','a:0:{}','auto'),(551,'_transient_product-transient-version','1729352782','on'),(552,'ct_ie_demo_installed','contio','auto'),(554,'_transient_wc_count_comments','O:8:\"stdClass\":7:{s:14:\"total_comments\";i:13;s:3:\"all\";i:13;s:8:\"approved\";s:2:\"13\";s:9:\"moderated\";i:0;s:4:\"spam\";i:0;s:5:\"trash\";i:0;s:12:\"post-trashed\";i:0;}','on'),(604,'sliderrevolution-v7-slide-map','a:3:{i:1;a:2:{s:1:\"s\";a:1:{i:1;i:10;}s:1:\"n\";a:9:{i:1;i:1;i:2;i:2;i:3;i:3;i:10;i:13;i:11;i:14;i:12;i:15;i:13;i:16;i:14;i:17;i:15;i:18;}}i:2;a:2:{s:1:\"s\";a:1:{i:2;i:11;}s:1:\"n\";a:3:{i:4;i:4;i:5;i:5;i:6;i:6;}}i:3;a:2:{s:1:\"s\";a:1:{i:3;i:12;}s:1:\"n\";a:3:{i:7;i:7;i:8;i:8;i:9;i:9;}}}','auto'),(605,'sliderrevolution-v7-migration-failed-map','a:0:{}','auto'),(606,'elementor_log','a:7:{s:32:\"8c615f3e5da49c425a0a3d06c20eeddd\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2024-10-18 15:39:30\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:33:\"$(...).waypoint is not a function\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:673;s:14:\"\0*\0times_dates\";a:42:{i:0;s:19:\"2025-03-17 02:44:09\";i:1;s:19:\"2025-03-17 02:44:19\";i:2;s:19:\"2025-03-17 02:44:41\";i:3;s:19:\"2025-03-17 02:45:15\";i:4;s:19:\"2025-03-17 02:50:46\";i:5;s:19:\"2025-03-17 02:50:53\";i:6;s:19:\"2025-03-17 02:51:34\";i:7;s:19:\"2025-03-17 02:52:24\";i:8;s:19:\"2025-03-17 02:52:42\";i:9;s:19:\"2025-03-17 02:54:24\";i:10;s:19:\"2025-03-17 02:55:07\";i:11;s:19:\"2025-03-17 02:55:14\";i:12;s:19:\"2025-03-17 02:55:26\";i:13;s:19:\"2025-03-17 02:55:32\";i:14;s:19:\"2025-03-17 02:56:02\";i:15;s:19:\"2025-03-17 02:56:10\";i:16;s:19:\"2025-03-17 02:56:18\";i:17;s:19:\"2025-03-17 02:56:26\";i:18;s:19:\"2025-03-17 02:57:11\";i:19;s:19:\"2025-03-17 02:58:39\";i:20;s:19:\"2025-03-17 03:27:53\";i:21;s:19:\"2025-03-17 03:28:41\";i:22;s:19:\"2025-03-17 03:28:53\";i:23;s:19:\"2025-03-17 03:39:02\";i:24;s:19:\"2025-03-17 03:42:21\";i:25;s:19:\"2025-03-17 03:42:30\";i:26;s:19:\"2025-03-17 03:42:51\";i:27;s:19:\"2025-03-17 03:43:29\";i:28;s:19:\"2025-03-17 03:43:42\";i:29;s:19:\"2025-03-17 03:43:53\";i:30;s:19:\"2025-03-17 03:44:07\";i:31;s:19:\"2025-03-17 03:47:24\";i:32;s:19:\"2025-03-17 03:48:15\";i:33;s:19:\"2025-03-17 03:51:35\";i:34;s:19:\"2025-03-17 03:51:51\";i:35;s:19:\"2025-03-17 03:51:59\";i:36;s:19:\"2025-03-17 03:52:32\";i:37;s:19:\"2025-03-17 03:54:27\";i:38;s:19:\"2025-03-17 03:54:32\";i:39;s:19:\"2025-03-17 03:54:40\";i:40;s:19:\"2025-03-17 03:54:59\";i:41;s:19:\"2025-03-18 06:33:59\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1729265970\";s:7:\"message\";s:33:\"$(...).waypoint is not a function\";s:3:\"url\";s:98:\"http://fe2tech.com/wp-content/themes/contio/elementor/js/ct-custom-progressbar-widget.js?ver=1.1.2\";s:4:\"line\";s:1:\"8\";s:6:\"column\";s:2:\"21\";}s:7:\"\0*\0file\";s:98:\"http://fe2tech.com/wp-content/themes/contio/elementor/js/ct-custom-progressbar-widget.js?ver=1.1.2\";s:7:\"\0*\0line\";s:1:\"8\";s:9:\"\0*\0column\";s:2:\"21\";}s:32:\"58fb37337126433428b9342b4ff6938d\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2024-10-18 16:00:07\";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:2;s:14:\"\0*\0times_dates\";a:2:{i:0;s:19:\"2024-10-18 16:00:07\";i:1;s:19:\"2024-10-18 16:21:51\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1729267207\";s:7:\"message\";s:53:\"Cannot read properties of undefined (reading \'value\')\";s:3:\"url\";s:120:\"http://fe2tech.com/wp-admin/load-scripts.php?c=1&amp;loadchunk_0=jquery-core,jquery-migrate,utils,wp-hooks&amp;ver=6.6.2\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:5:\"28760\";}s:7:\"\0*\0file\";s:120:\"http://fe2tech.com/wp-admin/load-scripts.php?c=1&amp;loadchunk_0=jquery-core,jquery-migrate,utils,wp-hooks&amp;ver=6.6.2\";s:7:\"\0*\0line\";s:1:\"2\";s:9:\"\0*\0column\";s:5:\"28760\";}s:32:\"bb92480646613eaa92acef314e2b18d9\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2024-10-21 03:41:01\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:70:\"Cannot read properties of undefined (reading &#039;slidestoshow&#039;)\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-10-21 03:41:01\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1729482061\";s:7:\"message\";s:60:\"Cannot read properties of undefined (reading \'slidestoshow\')\";s:3:\"url\";s:93:\"http://fe2tech.com/wp-content/themes/contio/elementor/js/ct-post-carousel-widget.js?ver=1.1.2\";s:4:\"line\";s:2:\"11\";s:6:\"column\";s:2:\"32\";}s:7:\"\0*\0file\";s:93:\"http://fe2tech.com/wp-content/themes/contio/elementor/js/ct-post-carousel-widget.js?ver=1.1.2\";s:7:\"\0*\0line\";s:2:\"11\";s:9:\"\0*\0column\";s:2:\"32\";}s:32:\"8b940f8cfd06ce2af827f77dc96fed30\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0date\";s:19:\"2024-10-21 06:22:54\";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-10-21 06:22:54\";}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:77:\"C:\\fe2tech\\wp-content\\plugins\\elementor\\modules\\history\\revisions-manager.php\";s:4:\"line\";i:363;s:5:\"trace\";b:1;}s:7:\"\0*\0file\";s:77:\"C:\\fe2tech\\wp-content\\plugins\\elementor\\modules\\history\\revisions-manager.php\";s:7:\"\0*\0line\";i:363;}s:32:\"7eba2ec85cd008299e3ea5c46e82492f\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2024-10-21 06:33:16\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:67:\"Cannot read properties of undefined (reading &#039;localized&#039;)\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:4;s:14:\"\0*\0times_dates\";a:4:{i:0;s:19:\"2024-10-21 06:33:16\";i:1;s:19:\"2024-10-21 06:33:16\";i:2;s:19:\"2024-10-21 06:33:16\";i:3;s:19:\"2024-10-21 06:33:16\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1729492396\";s:7:\"message\";s:57:\"Cannot read properties of undefined (reading \'localized\')\";s:3:\"url\";s:82:\"http://fe2tech.com/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.24.7\";s:4:\"line\";s:1:\"3\";s:6:\"column\";s:6:\"837409\";}s:7:\"\0*\0file\";s:82:\"http://fe2tech.com/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.24.7\";s:7:\"\0*\0line\";s:1:\"3\";s:9:\"\0*\0column\";s:6:\"837409\";}s:32:\"9c5acdf399a03f811db052b280d07b4a\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0date\";s:19:\"2025-03-22 11:46:19\";s:7:\"\0*\0type\";s:7:\"warning\";s:10:\"\0*\0message\";s:133:\"file_put_contents(/var/www/html/php/fe2tech/wp-content/uploads/elementor/css/post-1772.css): Failed to open stream: Permission denied\";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:\"2025-03-22 11:46:19\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:7:\"warning\";s:7:\"message\";s:133:\"file_put_contents(/var/www/html/php/fe2tech/wp-content/uploads/elementor/css/post-1772.css): Failed to open stream: Permission denied\";s:4:\"file\";s:74:\"/var/www/html/php/fe2tech/wp-content/plugins/elementor/core/files/base.php\";s:4:\"line\";i:194;s:5:\"trace\";b:1;}s:7:\"\0*\0file\";s:74:\"/var/www/html/php/fe2tech/wp-content/plugins/elementor/core/files/base.php\";s:7:\"\0*\0line\";i:194;}s:32:\"1668ce165f32e38fa2bfc91636aad18b\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0date\";s:19:\"2025-03-29 13:29:50\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:52:\"Automatic conversion of false to array is deprecated\";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:\"2025-03-29 13:29:50\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:52:\"Automatic conversion of false to array is deprecated\";s:4:\"file\";s:71:\"/var/www/html/php/fe2tech/wp-content/plugins/elementor/includes/api.php\";s:4:\"line\";i:164;s:5:\"trace\";b:1;}s:7:\"\0*\0file\";s:71:\"/var/www/html/php/fe2tech/wp-content/plugins/elementor/includes/api.php\";s:7:\"\0*\0line\";i:164;}}','off'),(609,'_elementor_home_screen_data','a:2:{s:7:\"timeout\";i:1729269691;s:5:\"value\";s:8313:\"{\"top_with_licences\":[{\"license\":[\"free\"],\"title_small\":\"Hi!\",\"title\":\"Unleash your imagination with Elementor\",\"description\":\"Start building your website with Elementor\'s no code drag & drop editor.\",\"button_create_page_title\":\"Create a Page\",\"button_watch_title\":\"Watch a guide\",\"button_watch_url\":\"https:\\/\\/www.youtube.com\\/watch?v=le72grP_Q6k&t=1s\",\"youtube_embed_id\":\"le72grP_Q6k?si=g2akyWNODL6usu6u\"},{\"license\":[\"pro\"],\"title_small\":\"Hi!\",\"title\":\"Unleash your imagination with Elementor\",\"description\":\"Now you\'ve got all the tools to start creating professional, high-performing websites - and that journey begins by creating your first page.\",\"button_create_page_title\":\"Create a Page\",\"button_watch_title\":\"Watch a guide\",\"button_watch_url\":\"https:\\/\\/www.youtube.com\\/watch?v=QdkDGrS8ZZs\",\"youtube_embed_id\":\"QdkDGrS8ZZs?si=s_VjZCQR6Fh1jgB5\"}],\"get_started\":[{\"license\":[\"free\"],\"header\":{\"title\":\"Jumpstart your web-creation\",\"description\":\"These quick actions will get your site airborne with a customized design.\"},\"repeater\":[{\"title\":\"Site Settings\",\"title_small\":\"Customize\",\"url\":\"\",\"is_relative_url\":false,\"title_small_color\":\"text.tertiary\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/site-settings.svg\"},{\"title\":\"Site Logo\",\"title_small\":\"Customize\",\"url\":\"\",\"is_relative_url\":false,\"title_small_color\":\"text.tertiary\",\"tab_id\":\"settings-site-identity\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/site-logo.svg\"},{\"title\":\"Global Colors\",\"title_small\":\"Customize\",\"url\":\"\",\"is_relative_url\":false,\"title_small_color\":\"text.tertiary\",\"tab_id\":\"global-colors\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/global-colors.svg\"},{\"title\":\"Global Fonts\",\"title_small\":\"Customize\",\"url\":\"\",\"is_relative_url\":false,\"title_small_color\":\"text.tertiary\",\"tab_id\":\"global-typography\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/global-fonts.svg\"},{\"title\":\"Theme Builder\",\"title_small\":\"Customize\",\"url\":\"admin.php?page=elementor-app\",\"is_relative_url\":false,\"title_small_color\":\"text.tertiary\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/theme-builder.svg\"},{\"title\":\"Popups\",\"title_small\":\"Customize\",\"url\":\"edit.php?post_type=elementor_library&page=popup_templates\",\"is_relative_url\":true,\"title_small_color\":\"text.tertiary\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/popups.svg\"},{\"title\":\"Custom Icons\",\"title_small\":\"Customize\",\"url\":\"admin.php?page=elementor_custom_icons\",\"is_relative_url\":false,\"title_small_color\":\"text.tertiary\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/custom-icons.svg\"},{\"title\":\"Custom Fonts\",\"title_small\":\"Customize\",\"url\":\"admin.php?page=elementor_custom_fonts\",\"is_relative_url\":true,\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/custom-fonts.svg\",\"title_small_color\":\"text.tertiary\"}]},{\"license\":[\"pro\"],\"header\":{\"title\":\"Jumpstart your web-creation\",\"description\":\"These quick actions will get your site airborne with a customized design.\"},\"repeater\":[{\"title\":\"Site Settings\",\"title_small\":\"Customize\",\"url\":\"\",\"is_relative_url\":false,\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/site-settings.svg\"},{\"title\":\"Site Logo\",\"title_small\":\"Customize\",\"url\":\"\",\"is_relative_url\":false,\"tab_id\":\"settings-site-identity\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/site-logo.svg\"},{\"title\":\"Global Colors\",\"title_small\":\"Customize\",\"url\":\"\",\"is_relative_url\":false,\"tab_id\":\"global-colors\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/global-colors.svg\"},{\"title\":\"Global Fonts\",\"title_small\":\"Customize\",\"url\":\"\",\"is_relative_url\":false,\"tab_id\":\"global-typography\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/global-fonts.svg\"},{\"title\":\"Theme Builder\",\"title_small\":\"Customize\",\"url\":\"admin.php?page=elementor-app\",\"is_relative_url\":false,\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/theme-builder.svg\"},{\"title\":\"Popups\",\"title_small\":\"Customize\",\"url\":\"edit.php?post_type=elementor_library&tabs_group=popup&elementor_library_type=popup\",\"is_relative_url\":true,\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/popups.svg\"},{\"title\":\"Custom Icons\",\"title_small\":\"Customize\",\"url\":\"admin.php?page=elementor_custom_icons\",\"is_relative_url\":false,\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/custom-icons.svg\"},{\"title\":\"Custom Fonts\",\"title_small\":\"Customize\",\"url\":\"admin.php?page=elementor_custom_fonts\",\"is_relative_url\":true,\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/custom-fonts.svg\"}]}],\"add_ons\":{\"header\":{\"title\":\"Expand your design toolkit\",\"description\":\"These plugins, add-ons, and tools, have been selected to streamline your workflow and maximize your creativity.\"},\"repeater\":[{\"file_path\":\"site-mailer\\/site-mailer.php\",\"title\":\"Site Mailer\",\"url\":\"\",\"description\":\"Keep your WordPress emails out of the spam folder with improved deliverability and an easy setup\\u2014no need for an SMTP plugin or complicated configurations.\",\"button_label\":\"Install\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/site-mailer.svg\",\"type\":\"wporg\"},{\"file_path\":\"image-optimization\\/image-optimization.php\",\"title\":\"Image Optimizer\",\"url\":\"https:\\/\\/go.elementor.com\\/wp-dash-apps-author-uri-elementor-io\\/\",\"description\":\"Check out this incredibly useful plugin that will compress and optimize your images, giving you leaner, faster websites.\",\"button_label\":\"Install\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/image-optimizer.svg\",\"type\":\"wporg\"},{\"title\":\"Elementor AI\",\"url\":\"https:\\/\\/go.elementor.com\\/wp-dash-apps-author-uri-elementor-ai\\/\",\"description\":\"Boost creativity with Elementor AI. Craft & enhance copy, create custom CSS & Code, and generate images to elevate your website.\",\"button_label\":\"Let\'s go\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/elementor.svg\",\"type\":\"link\",\"condition\":{\"key\":\"introduction_meta\",\"value\":\"ai_get_started\"}}],\"footer\":{\"label\":\"Explore more add-ons\",\"file_path\":\"wp-admin\\/admin.php?page=elementor-apps\"}},\"sidebar_upgrade\":[{\"license\":[\"free\"],\"show\":\"true\",\"header\":{\"title\":\"Bring your vision to life\",\"description\":\"Get complete design flexibility for your website with Elementor Pro\\u2019s advanced tools and premium features.\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/update-sidebar.svg\"},\"cta\":{\"label\":\"Upgrade Now\",\"url\":\"https:\\/\\/go.elementor.com\\/go-pro-home-sidebar-upgrade\\/\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/icon-crown.svg\"},\"repeater\":[{\"title\":\"Popup Builder\"},{\"title\":\"Custom Code & CSS\"},{\"title\":\"E-commerce Features\"},{\"title\":\"Collaborative Notes\"},{\"title\":\"Form Submission\"},{\"title\":\"Form Integrations\"},{\"title\":\"Custom Attributes\"},{\"title\":\"Role Manager\"}]},{\"license\":[\"pro\"],\"show\":\"false\",\"header\":{\"title\":\"Bring your vision to life\",\"description\":\"Get complete design flexibility for your website with Elementor Pro\\u2019s advanced tools and premium features.\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/update-sidebar.svg\"},\"cta\":{\"label\":\"Upgrade Now\",\"url\":\"https:\\/\\/go.elementor.com\\/go-pro-home-sidebar-upgrade\\/\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/icon-crown.svg\"},\"repeater\":[{\"title\":\"Popup Builder\"},{\"title\":\"Custom Code & CSS\"},{\"title\":\"E-commerce Features\"},{\"title\":\"Collaborative Notes\"},{\"title\":\"Form Submission\"},{\"title\":\"Form Integrations\"},{\"title\":\"Custom Attributes\"},{\"title\":\"Role Manager\"}]}],\"external_links\":[{\"label\":\"Help Center\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/icon-question-mark.svg\",\"url\":\"https:\\/\\/elementor.com\\/help\\/\"},{\"label\":\"Youtube\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/icon-youtube.svg\",\"url\":\"https:\\/\\/www.youtube.com\\/@Elementor\"},{\"label\":\"Facebook Community\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/icon-community.svg\",\"url\":\"https:\\/\\/www.facebook.com\\/groups\\/Elementors\"},{\"label\":\"Blog\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/icon-academic-hat.svg\",\"url\":\"https:\\/\\/elementor.com\\/blog\\/\"}]}\";}','off'),(625,'revslider_update_revision_current','6.6.21','auto'),(635,'product_option','a:15:{s:17:\"_wp_page_template\";s:7:\"default\";s:20:\"_elementor_edit_mode\";s:7:\"builder\";s:24:\"_elementor_template_type\";s:7:\"wp-post\";s:18:\"_elementor_version\";s:6:\"3.24.7\";s:15:\"_elementor_data\";s:8134:\"[{\"id\":\"7225c724\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#060606E6\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer.png\",\"id\":87},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"109cef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.3},\"elements\":[{\"id\":\"6667e1a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/logo.jpg\",\"id\":2748,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae6ecf2\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"\\u5de5\\u58341: \\u30d0\\u30af\\u30cb\\u30f3\\u7701\\u30d0\\u30af\\u30cb\\u30f3\\u5e02\\u3001\\u30ab\\u30af\\u30cb\\u30a8\\u30e0\\u533a\\u3001\\u30ab\\u30af\\u30cb\\u30a8\\u30e0\\u5de5\\u696d\\u56e3\\u5730\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}},{\"content\":\"\\u5de5\\u58342: \\u30d3\\u30f3\\u30ba\\u30aa\\u30f3\\u7701\\u3001\\u30c7\\u30a3\\u30a2\\u30f3\\u5e02\\u3001\\u30bf\\u30f3\\u30d3\\u30f3\\u533a\\u3001\\u30bf\\u30f3\\u30d5\\u30aa\\u30c3\\u30af\\u5730\\u533a\\u3001\\u30b0\\u30a8\\u30f3\\u30fb\\u30c6\\u30a3\\u30fb\\u30c8\\u30a5\\u30fc\\u30a4176\\/9\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"be1a6dd\"},{\"content\":\"0968 86 03 86\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"712a43be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.664,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e4e262b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Menu\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6e682e5b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"89\",\"style\":\"tow-col-light\",\"link_color_hover\":\"#F9A244\",\"line_color_hover\":\"#F9A244\",\"menu_align\":\"left\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"e174b97\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u55b6\\u696d\\u6642\\u9593\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"1e0523b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u6708\\u66dc\\u65e5\\uff5e\\u65e5\\u66dc\\u65e5\\uff1a24\\u6642\\u9593\\u55b6\\u696d<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ab76a16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7},\"elements\":[{\"id\":\"37a5e636\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"aa15610\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#85B23B\",\"padding\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"040\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2487ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40d8f8a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u901a\\u77e5\\u3001\\u6700\\u65b0\\u306e\\u30d6\\u30ed\\u30b0\\u3001\\u30a2\\u30a4\\u30c7\\u30a2\\u3001\\u6d1e\\u5bdf\\u3092\\u53d7\\u3051\\u53d6\\u308b\\u305f\\u3081\\u306b\\u30b5\\u30a4\\u30f3\\u30a2\\u30c3\\u30d7\\u3057\\u3066\\u304f\\u3060\\u3055\\u3044\\u3002<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d21d208\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"27383ab2\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin-box\",\"library\":\"material\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24b98c01\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"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},\"gap\":\"extended\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a6c11e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53be024\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"5990603\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"7f874a5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright @2024 of Far East High Tech Ltd. Co.<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_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},\"_css_classes\":\"ct-copyright\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]\";s:25:\"_elementor_controls_usage\";a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:2:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:1;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:16:\"link_color_hover\";i:1;s:16:\"line_color_hover\";i:1;s:10:\"menu_align\";i:1;s:17:\"menu_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:13:\"ct_newsletter\";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:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";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:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:1;}}}}}s:10:\"_edit_last\";s:1:\"1\";s:10:\"_edit_lock\";s:12:\"1742182489:1\";s:43:\"_yoast_wpseo_estimated-reading-time-minutes\";s:1:\"1\";s:12:\"_wp_old_slug\";s:9:\"footer-jp\";s:16:\"rs_page_bg_color\";s:0:\"\";s:26:\"_yoast_wpseo_content_score\";s:2:\"90\";s:14:\"_elementor_css\";a:6:{s:4:\"time\";i:1742177093;s:5:\"fonts\";a:1:{i:0;s:7:\"Poppins\";}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:3;s:9:\"fa-brands\";i:4;s:8:\"material\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}s:22:\"_elementor_page_assets\";a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"widget-image\";i:1;s:18:\"widget-text-editor\";}}s:24:\"_elementor_element_cache\";s:10585:\"{\"timeout\":1742263493,\"value\":{\"content\":\"        <section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-7225c724 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"7225c724\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-109cef8c\\\" data-id=\\\"109cef8c\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        \\t\\t<div class=\\\"elementor-element elementor-element-6667e1a9 logo-footer elementor-widget__width-initial elementor-widget elementor-widget-image\\\" data-id=\\\"6667e1a9\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"http:\\/\\/fe2tech.com\\/\\\">\\n\\t\\t\\t\\t\\t\\t\\t<img width=\\\"597\\\" height=\\\"597\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/logo.jpg\\\" class=\\\"attachment-full size-full wp-image-2748\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element data=\\\"eyJpZCI6IjRhZTZlY2YyIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsiY29udGFjdF9pbmZvIjpbeyJjb250ZW50IjoiXHU1ZGU1XHU1ODM0MTogXHUzMGQwXHUzMGFmXHUzMGNiXHUzMGYzXHU3NzAxXHUzMGQwXHUzMGFmXHUzMGNiXHUzMGYzXHU1ZTAyXHUzMDAxXHUzMGFiXHUzMGFmXHUzMGNiXHUzMGE4XHUzMGUwXHU1MzNhXHUzMDAxXHUzMGFiXHUzMGFmXHUzMGNiXHUzMGE4XHUzMGUwXHU1ZGU1XHU2OTZkXHU1NmUzXHU1NzMwIiwiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZhcyBmYS1tYXAtbWFya2VyLWFsdCIsImxpYnJhcnkiOiJmYS1zb2xpZCJ9LCJfaWQiOiJkNmE1NGIwIiwiaWNvbl9pbWFnZSI6eyJ1cmwiOiJodHRwOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvcGx1Z2luc1wvZWxlbWVudG9yXC9hc3NldHNcL2ltYWdlc1wvcGxhY2Vob2xkZXIucG5nIiwiaWQiOiIifX0seyJjb250ZW50IjoiXHU1ZGU1XHU1ODM0MjogXHUzMGQzXHUzMGYzXHUzMGJhXHUzMGFhXHUzMGYzXHU3NzAxXHUzMDAxXHUzMGM3XHUzMGEzXHUzMGEyXHUzMGYzXHU1ZTAyXHUzMDAxXHUzMGJmXHUzMGYzXHUzMGQzXHUzMGYzXHU1MzNhXHUzMDAxXHUzMGJmXHUzMGYzXHUzMGQ1XHUzMGFhXHUzMGMzXHUzMGFmXHU1NzMwXHU1MzNhXHUzMDAxXHUzMGIwXHUzMGE4XHUzMGYzXHUzMGZiXHUzMGM2XHUzMGEzXHUzMGZiXHUzMGM4XHUzMGE1XHUzMGZjXHUzMGE0MTc2XC85IiwiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZhcyBmYS1tYXAtbWFya2VyLWFsdCIsImxpYnJhcnkiOiJmYS1zb2xpZCJ9LCJpY29uX2ltYWdlIjp7InVybCI6Imh0dHA6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC9wbHVnaW5zXC9lbGVtZW50b3JcL2Fzc2V0c1wvaW1hZ2VzXC9wbGFjZWhvbGRlci5wbmciLCJpZCI6IiJ9LCJfaWQiOiJiZTFhNmRkIn0seyJjb250ZW50IjoiMDk2OCA4NiAwMyA4NiIsImN0X2ljb24iOnsidmFsdWUiOiJmYXMgZmEtcGhvbmUtYWx0IiwibGlicmFyeSI6ImZhLXNvbGlkIn0sIl9pZCI6IjQ0YTFkODIiLCJpY29uX2ltYWdlIjp7InVybCI6Imh0dHA6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC9wbHVnaW5zXC9lbGVtZW50b3JcL2Fzc2V0c1wvaW1hZ2VzXC9wbGFjZWhvbGRlci5wbmciLCJpZCI6IiJ9fV0sImNvbnRlbnRfY29sb3IiOiIjZmZmZmZmIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMTIiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9jb250YWN0X2luZm8ifQ==\\\"]            <\\/div>\\n        <\\/div>\\n                <div class=\\\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-712a43be\\\" data-id=\\\"712a43be\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6IjVlNGUyNjJiIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJNZW51IiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIxMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sIl9wYWRkaW5nIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV9jb2xvciI6IiNmZmZmZmYifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfdGl0bGUifQ==\\\"][elementor-element data=\\\"eyJpZCI6IjZlNjgyZTViIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsibWVudSI6Ijg5Iiwic3R5bGUiOiJ0b3ctY29sLWxpZ2h0IiwibGlua19jb2xvcl9ob3ZlciI6IiNGOUEyNDQiLCJsaW5lX2NvbG9yX2hvdmVyIjoiI0Y5QTI0NCIsIm1lbnVfYWxpZ24iOiJsZWZ0IiwiX2VsZW1lbnRfd2lkdGgiOiJpbml0aWFsIiwiX2VsZW1lbnRfY3VzdG9tX3dpZHRoIjp7InVuaXQiOiIlIiwic2l6ZSI6MTAwfSwiX2ZsZXhfc2l6ZSI6Im5vbmUifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfbmF2aWdhdGlvbl9tZW51In0=\\\"][elementor-element data=\\\"eyJpZCI6ImUxNzRiOTciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1NTViNlx1Njk2ZFx1NjY0Mlx1OTU5MyIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJfcGFkZGluZyI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfY29sb3IiOiIjZmZmZmZmIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X3RpdGxlIn0=\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-1e0523b8 elementor-widget elementor-widget-text-editor\\\" data-id=\\\"1e0523b8\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>\\u6708\\u66dc\\u65e5\\uff5e\\u65e5\\u66dc\\u65e5\\uff1a24\\u6642\\u9593\\u55b6\\u696d<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t            <\\/div>\\n        <\\/div>\\n                <div class=\\\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-1ab76a16\\\" data-id=\\\"1ab76a16\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6IjM3YTVlNjM2IiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJOZXdzbGV0dGVyIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIxMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sIl9wYWRkaW5nIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV9jb2xvciI6IiNmZmZmZmYifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfdGl0bGUifQ==\\\"]        <section class=\\\"elementor-section elementor-inner-section elementor-element elementor-element-aa15610 elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"aa15610\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-no \\\">\\n                    <div class=\\\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-e2487ac\\\" data-id=\\\"e2487ac\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        \\t\\t<div class=\\\"elementor-element elementor-element-40d8f8a2 elementor-widget elementor-widget-text-editor\\\" data-id=\\\"40d8f8a2\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>\\u901a\\u77e5\\u3001\\u6700\\u65b0\\u306e\\u30d6\\u30ed\\u30b0\\u3001\\u30a2\\u30a4\\u30c7\\u30a2\\u3001\\u6d1e\\u5bdf\\u3092\\u53d7\\u3051\\u53d6\\u308b\\u305f\\u3081\\u306b\\u30b5\\u30a4\\u30f3\\u30a2\\u30c3\\u30d7\\u3057\\u3066\\u304f\\u3060\\u3055\\u3044\\u3002<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element data=\\\"eyJpZCI6ImQyMWQyMDgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJzdHlsZSI6InN0eWxlMiIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjI4IiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfbmV3c2xldHRlciJ9\\\"][elementor-element data=\\\"eyJpZCI6IjI3MzgzYWIyIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsiaWNvbnMiOlt7Imljb25fbGluayI6eyJ1cmwiOiIjIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9LCJfaWQiOiIyY2E4OThjIiwiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZhYiBmYS1mYWNlYm9vay1mIiwibGlicmFyeSI6ImZhLWJyYW5kcyJ9fSx7Imljb25fbGluayI6eyJ1cmwiOiIjIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9LCJfaWQiOiIwZmNjZDc1IiwiY3RfaWNvbiI6eyJ2YWx1ZSI6Im1hdGVyaWFsIHptZGkgem1kaS1saW5rZWRpbi1ib3giLCJsaWJyYXJ5IjoibWF0ZXJpYWwifX1dfSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaWNvbiJ9\\\"]            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                    <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                <section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-24b98c01 elementor-section-stretched elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"24b98c01\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-9a6c11e\\\" data-id=\\\"9a6c11e\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n                <section class=\\\"elementor-section elementor-inner-section elementor-element elementor-element-53be024 elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"53be024\\\" data-element_type=\\\"section\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-5990603\\\" data-id=\\\"5990603\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        \\t\\t<div class=\\\"elementor-element elementor-element-7f874a5a ct-copyright elementor-widget elementor-widget-text-editor\\\" data-id=\\\"7f874a5a\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>Copyright @2024 of Far East High Tech Ltd. Co.<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                    <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n        \",\"scripts\":[],\"styles\":[]}}\";}','auto'),(636,'ct_page_options','a:15:{s:17:\"_wp_page_template\";s:7:\"default\";s:20:\"_elementor_edit_mode\";s:7:\"builder\";s:24:\"_elementor_template_type\";s:7:\"wp-post\";s:18:\"_elementor_version\";s:6:\"3.24.7\";s:15:\"_elementor_data\";s:8134:\"[{\"id\":\"7225c724\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#060606E6\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer.png\",\"id\":87},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"109cef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.3},\"elements\":[{\"id\":\"6667e1a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/logo.jpg\",\"id\":2748,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae6ecf2\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"\\u5de5\\u58341: \\u30d0\\u30af\\u30cb\\u30f3\\u7701\\u30d0\\u30af\\u30cb\\u30f3\\u5e02\\u3001\\u30ab\\u30af\\u30cb\\u30a8\\u30e0\\u533a\\u3001\\u30ab\\u30af\\u30cb\\u30a8\\u30e0\\u5de5\\u696d\\u56e3\\u5730\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}},{\"content\":\"\\u5de5\\u58342: \\u30d3\\u30f3\\u30ba\\u30aa\\u30f3\\u7701\\u3001\\u30c7\\u30a3\\u30a2\\u30f3\\u5e02\\u3001\\u30bf\\u30f3\\u30d3\\u30f3\\u533a\\u3001\\u30bf\\u30f3\\u30d5\\u30aa\\u30c3\\u30af\\u5730\\u533a\\u3001\\u30b0\\u30a8\\u30f3\\u30fb\\u30c6\\u30a3\\u30fb\\u30c8\\u30a5\\u30fc\\u30a4176\\/9\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"be1a6dd\"},{\"content\":\"0968 86 03 86\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"712a43be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.664,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e4e262b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Menu\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6e682e5b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"89\",\"style\":\"tow-col-light\",\"link_color_hover\":\"#F9A244\",\"line_color_hover\":\"#F9A244\",\"menu_align\":\"left\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"e174b97\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u55b6\\u696d\\u6642\\u9593\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"1e0523b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u6708\\u66dc\\u65e5\\uff5e\\u65e5\\u66dc\\u65e5\\uff1a24\\u6642\\u9593\\u55b6\\u696d<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ab76a16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7},\"elements\":[{\"id\":\"37a5e636\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"aa15610\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#85B23B\",\"padding\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"040\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2487ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40d8f8a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u901a\\u77e5\\u3001\\u6700\\u65b0\\u306e\\u30d6\\u30ed\\u30b0\\u3001\\u30a2\\u30a4\\u30c7\\u30a2\\u3001\\u6d1e\\u5bdf\\u3092\\u53d7\\u3051\\u53d6\\u308b\\u305f\\u3081\\u306b\\u30b5\\u30a4\\u30f3\\u30a2\\u30c3\\u30d7\\u3057\\u3066\\u304f\\u3060\\u3055\\u3044\\u3002<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d21d208\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"27383ab2\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin-box\",\"library\":\"material\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24b98c01\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"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},\"gap\":\"extended\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a6c11e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53be024\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"5990603\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"7f874a5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright @2024 of Far East High Tech Ltd. Co.<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_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},\"_css_classes\":\"ct-copyright\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]\";s:25:\"_elementor_controls_usage\";a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:2:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:1;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:16:\"link_color_hover\";i:1;s:16:\"line_color_hover\";i:1;s:10:\"menu_align\";i:1;s:17:\"menu_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:13:\"ct_newsletter\";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:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";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:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:1;}}}}}s:10:\"_edit_last\";s:1:\"1\";s:10:\"_edit_lock\";s:12:\"1742182489:1\";s:43:\"_yoast_wpseo_estimated-reading-time-minutes\";s:1:\"1\";s:12:\"_wp_old_slug\";s:9:\"footer-jp\";s:16:\"rs_page_bg_color\";s:0:\"\";s:26:\"_yoast_wpseo_content_score\";s:2:\"90\";s:14:\"_elementor_css\";a:6:{s:4:\"time\";i:1742177093;s:5:\"fonts\";a:1:{i:0;s:7:\"Poppins\";}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:3;s:9:\"fa-brands\";i:4;s:8:\"material\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}s:22:\"_elementor_page_assets\";a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"widget-image\";i:1;s:18:\"widget-text-editor\";}}s:24:\"_elementor_element_cache\";s:10585:\"{\"timeout\":1742263493,\"value\":{\"content\":\"        <section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-7225c724 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"7225c724\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-109cef8c\\\" data-id=\\\"109cef8c\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        \\t\\t<div class=\\\"elementor-element elementor-element-6667e1a9 logo-footer elementor-widget__width-initial elementor-widget elementor-widget-image\\\" data-id=\\\"6667e1a9\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"http:\\/\\/fe2tech.com\\/\\\">\\n\\t\\t\\t\\t\\t\\t\\t<img width=\\\"597\\\" height=\\\"597\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/logo.jpg\\\" class=\\\"attachment-full size-full wp-image-2748\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element data=\\\"eyJpZCI6IjRhZTZlY2YyIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsiY29udGFjdF9pbmZvIjpbeyJjb250ZW50IjoiXHU1ZGU1XHU1ODM0MTogXHUzMGQwXHUzMGFmXHUzMGNiXHUzMGYzXHU3NzAxXHUzMGQwXHUzMGFmXHUzMGNiXHUzMGYzXHU1ZTAyXHUzMDAxXHUzMGFiXHUzMGFmXHUzMGNiXHUzMGE4XHUzMGUwXHU1MzNhXHUzMDAxXHUzMGFiXHUzMGFmXHUzMGNiXHUzMGE4XHUzMGUwXHU1ZGU1XHU2OTZkXHU1NmUzXHU1NzMwIiwiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZhcyBmYS1tYXAtbWFya2VyLWFsdCIsImxpYnJhcnkiOiJmYS1zb2xpZCJ9LCJfaWQiOiJkNmE1NGIwIiwiaWNvbl9pbWFnZSI6eyJ1cmwiOiJodHRwOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvcGx1Z2luc1wvZWxlbWVudG9yXC9hc3NldHNcL2ltYWdlc1wvcGxhY2Vob2xkZXIucG5nIiwiaWQiOiIifX0seyJjb250ZW50IjoiXHU1ZGU1XHU1ODM0MjogXHUzMGQzXHUzMGYzXHUzMGJhXHUzMGFhXHUzMGYzXHU3NzAxXHUzMDAxXHUzMGM3XHUzMGEzXHUzMGEyXHUzMGYzXHU1ZTAyXHUzMDAxXHUzMGJmXHUzMGYzXHUzMGQzXHUzMGYzXHU1MzNhXHUzMDAxXHUzMGJmXHUzMGYzXHUzMGQ1XHUzMGFhXHUzMGMzXHUzMGFmXHU1NzMwXHU1MzNhXHUzMDAxXHUzMGIwXHUzMGE4XHUzMGYzXHUzMGZiXHUzMGM2XHUzMGEzXHUzMGZiXHUzMGM4XHUzMGE1XHUzMGZjXHUzMGE0MTc2XC85IiwiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZhcyBmYS1tYXAtbWFya2VyLWFsdCIsImxpYnJhcnkiOiJmYS1zb2xpZCJ9LCJpY29uX2ltYWdlIjp7InVybCI6Imh0dHA6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC9wbHVnaW5zXC9lbGVtZW50b3JcL2Fzc2V0c1wvaW1hZ2VzXC9wbGFjZWhvbGRlci5wbmciLCJpZCI6IiJ9LCJfaWQiOiJiZTFhNmRkIn0seyJjb250ZW50IjoiMDk2OCA4NiAwMyA4NiIsImN0X2ljb24iOnsidmFsdWUiOiJmYXMgZmEtcGhvbmUtYWx0IiwibGlicmFyeSI6ImZhLXNvbGlkIn0sIl9pZCI6IjQ0YTFkODIiLCJpY29uX2ltYWdlIjp7InVybCI6Imh0dHA6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC9wbHVnaW5zXC9lbGVtZW50b3JcL2Fzc2V0c1wvaW1hZ2VzXC9wbGFjZWhvbGRlci5wbmciLCJpZCI6IiJ9fV0sImNvbnRlbnRfY29sb3IiOiIjZmZmZmZmIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMTIiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9jb250YWN0X2luZm8ifQ==\\\"]            <\\/div>\\n        <\\/div>\\n                <div class=\\\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-712a43be\\\" data-id=\\\"712a43be\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6IjVlNGUyNjJiIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJNZW51IiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIxMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sIl9wYWRkaW5nIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV9jb2xvciI6IiNmZmZmZmYifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfdGl0bGUifQ==\\\"][elementor-element data=\\\"eyJpZCI6IjZlNjgyZTViIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsibWVudSI6Ijg5Iiwic3R5bGUiOiJ0b3ctY29sLWxpZ2h0IiwibGlua19jb2xvcl9ob3ZlciI6IiNGOUEyNDQiLCJsaW5lX2NvbG9yX2hvdmVyIjoiI0Y5QTI0NCIsIm1lbnVfYWxpZ24iOiJsZWZ0IiwiX2VsZW1lbnRfd2lkdGgiOiJpbml0aWFsIiwiX2VsZW1lbnRfY3VzdG9tX3dpZHRoIjp7InVuaXQiOiIlIiwic2l6ZSI6MTAwfSwiX2ZsZXhfc2l6ZSI6Im5vbmUifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfbmF2aWdhdGlvbl9tZW51In0=\\\"][elementor-element data=\\\"eyJpZCI6ImUxNzRiOTciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1NTViNlx1Njk2ZFx1NjY0Mlx1OTU5MyIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJfcGFkZGluZyI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfY29sb3IiOiIjZmZmZmZmIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X3RpdGxlIn0=\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-1e0523b8 elementor-widget elementor-widget-text-editor\\\" data-id=\\\"1e0523b8\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>\\u6708\\u66dc\\u65e5\\uff5e\\u65e5\\u66dc\\u65e5\\uff1a24\\u6642\\u9593\\u55b6\\u696d<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t            <\\/div>\\n        <\\/div>\\n                <div class=\\\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-1ab76a16\\\" data-id=\\\"1ab76a16\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6IjM3YTVlNjM2IiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJOZXdzbGV0dGVyIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIxMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sIl9wYWRkaW5nIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV9jb2xvciI6IiNmZmZmZmYifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfdGl0bGUifQ==\\\"]        <section class=\\\"elementor-section elementor-inner-section elementor-element elementor-element-aa15610 elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"aa15610\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-no \\\">\\n                    <div class=\\\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-e2487ac\\\" data-id=\\\"e2487ac\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        \\t\\t<div class=\\\"elementor-element elementor-element-40d8f8a2 elementor-widget elementor-widget-text-editor\\\" data-id=\\\"40d8f8a2\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>\\u901a\\u77e5\\u3001\\u6700\\u65b0\\u306e\\u30d6\\u30ed\\u30b0\\u3001\\u30a2\\u30a4\\u30c7\\u30a2\\u3001\\u6d1e\\u5bdf\\u3092\\u53d7\\u3051\\u53d6\\u308b\\u305f\\u3081\\u306b\\u30b5\\u30a4\\u30f3\\u30a2\\u30c3\\u30d7\\u3057\\u3066\\u304f\\u3060\\u3055\\u3044\\u3002<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element data=\\\"eyJpZCI6ImQyMWQyMDgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJzdHlsZSI6InN0eWxlMiIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjI4IiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfbmV3c2xldHRlciJ9\\\"][elementor-element data=\\\"eyJpZCI6IjI3MzgzYWIyIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsiaWNvbnMiOlt7Imljb25fbGluayI6eyJ1cmwiOiIjIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9LCJfaWQiOiIyY2E4OThjIiwiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZhYiBmYS1mYWNlYm9vay1mIiwibGlicmFyeSI6ImZhLWJyYW5kcyJ9fSx7Imljb25fbGluayI6eyJ1cmwiOiIjIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9LCJfaWQiOiIwZmNjZDc1IiwiY3RfaWNvbiI6eyJ2YWx1ZSI6Im1hdGVyaWFsIHptZGkgem1kaS1saW5rZWRpbi1ib3giLCJsaWJyYXJ5IjoibWF0ZXJpYWwifX1dfSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaWNvbiJ9\\\"]            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                    <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                <section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-24b98c01 elementor-section-stretched elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"24b98c01\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-9a6c11e\\\" data-id=\\\"9a6c11e\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n                <section class=\\\"elementor-section elementor-inner-section elementor-element elementor-element-53be024 elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"53be024\\\" data-element_type=\\\"section\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-5990603\\\" data-id=\\\"5990603\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        \\t\\t<div class=\\\"elementor-element elementor-element-7f874a5a ct-copyright elementor-widget elementor-widget-text-editor\\\" data-id=\\\"7f874a5a\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>Copyright @2024 of Far East High Tech Ltd. Co.<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                    <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n        \",\"scripts\":[],\"styles\":[]}}\";}','auto'),(637,'post_format_audio','a:15:{s:17:\"_wp_page_template\";s:7:\"default\";s:20:\"_elementor_edit_mode\";s:7:\"builder\";s:24:\"_elementor_template_type\";s:7:\"wp-post\";s:18:\"_elementor_version\";s:6:\"3.24.7\";s:15:\"_elementor_data\";s:8134:\"[{\"id\":\"7225c724\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#060606E6\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer.png\",\"id\":87},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"109cef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.3},\"elements\":[{\"id\":\"6667e1a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/logo.jpg\",\"id\":2748,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae6ecf2\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"\\u5de5\\u58341: \\u30d0\\u30af\\u30cb\\u30f3\\u7701\\u30d0\\u30af\\u30cb\\u30f3\\u5e02\\u3001\\u30ab\\u30af\\u30cb\\u30a8\\u30e0\\u533a\\u3001\\u30ab\\u30af\\u30cb\\u30a8\\u30e0\\u5de5\\u696d\\u56e3\\u5730\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}},{\"content\":\"\\u5de5\\u58342: \\u30d3\\u30f3\\u30ba\\u30aa\\u30f3\\u7701\\u3001\\u30c7\\u30a3\\u30a2\\u30f3\\u5e02\\u3001\\u30bf\\u30f3\\u30d3\\u30f3\\u533a\\u3001\\u30bf\\u30f3\\u30d5\\u30aa\\u30c3\\u30af\\u5730\\u533a\\u3001\\u30b0\\u30a8\\u30f3\\u30fb\\u30c6\\u30a3\\u30fb\\u30c8\\u30a5\\u30fc\\u30a4176\\/9\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"be1a6dd\"},{\"content\":\"0968 86 03 86\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"712a43be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.664,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e4e262b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Menu\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6e682e5b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"89\",\"style\":\"tow-col-light\",\"link_color_hover\":\"#F9A244\",\"line_color_hover\":\"#F9A244\",\"menu_align\":\"left\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"e174b97\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u55b6\\u696d\\u6642\\u9593\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"1e0523b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u6708\\u66dc\\u65e5\\uff5e\\u65e5\\u66dc\\u65e5\\uff1a24\\u6642\\u9593\\u55b6\\u696d<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ab76a16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7},\"elements\":[{\"id\":\"37a5e636\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"aa15610\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#85B23B\",\"padding\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"040\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2487ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40d8f8a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u901a\\u77e5\\u3001\\u6700\\u65b0\\u306e\\u30d6\\u30ed\\u30b0\\u3001\\u30a2\\u30a4\\u30c7\\u30a2\\u3001\\u6d1e\\u5bdf\\u3092\\u53d7\\u3051\\u53d6\\u308b\\u305f\\u3081\\u306b\\u30b5\\u30a4\\u30f3\\u30a2\\u30c3\\u30d7\\u3057\\u3066\\u304f\\u3060\\u3055\\u3044\\u3002<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d21d208\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"27383ab2\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin-box\",\"library\":\"material\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24b98c01\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"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},\"gap\":\"extended\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a6c11e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53be024\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"5990603\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"7f874a5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright @2024 of Far East High Tech Ltd. Co.<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_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},\"_css_classes\":\"ct-copyright\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]\";s:25:\"_elementor_controls_usage\";a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:2:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:1;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:16:\"link_color_hover\";i:1;s:16:\"line_color_hover\";i:1;s:10:\"menu_align\";i:1;s:17:\"menu_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:13:\"ct_newsletter\";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:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";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:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:1;}}}}}s:10:\"_edit_last\";s:1:\"1\";s:10:\"_edit_lock\";s:12:\"1742182489:1\";s:43:\"_yoast_wpseo_estimated-reading-time-minutes\";s:1:\"1\";s:12:\"_wp_old_slug\";s:9:\"footer-jp\";s:16:\"rs_page_bg_color\";s:0:\"\";s:26:\"_yoast_wpseo_content_score\";s:2:\"90\";s:14:\"_elementor_css\";a:6:{s:4:\"time\";i:1742177093;s:5:\"fonts\";a:1:{i:0;s:7:\"Poppins\";}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:3;s:9:\"fa-brands\";i:4;s:8:\"material\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}s:22:\"_elementor_page_assets\";a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"widget-image\";i:1;s:18:\"widget-text-editor\";}}s:24:\"_elementor_element_cache\";s:10585:\"{\"timeout\":1742263493,\"value\":{\"content\":\"        <section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-7225c724 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"7225c724\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-109cef8c\\\" data-id=\\\"109cef8c\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        \\t\\t<div class=\\\"elementor-element elementor-element-6667e1a9 logo-footer elementor-widget__width-initial elementor-widget elementor-widget-image\\\" data-id=\\\"6667e1a9\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"http:\\/\\/fe2tech.com\\/\\\">\\n\\t\\t\\t\\t\\t\\t\\t<img width=\\\"597\\\" height=\\\"597\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/logo.jpg\\\" class=\\\"attachment-full size-full wp-image-2748\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element data=\\\"eyJpZCI6IjRhZTZlY2YyIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsiY29udGFjdF9pbmZvIjpbeyJjb250ZW50IjoiXHU1ZGU1XHU1ODM0MTogXHUzMGQwXHUzMGFmXHUzMGNiXHUzMGYzXHU3NzAxXHUzMGQwXHUzMGFmXHUzMGNiXHUzMGYzXHU1ZTAyXHUzMDAxXHUzMGFiXHUzMGFmXHUzMGNiXHUzMGE4XHUzMGUwXHU1MzNhXHUzMDAxXHUzMGFiXHUzMGFmXHUzMGNiXHUzMGE4XHUzMGUwXHU1ZGU1XHU2OTZkXHU1NmUzXHU1NzMwIiwiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZhcyBmYS1tYXAtbWFya2VyLWFsdCIsImxpYnJhcnkiOiJmYS1zb2xpZCJ9LCJfaWQiOiJkNmE1NGIwIiwiaWNvbl9pbWFnZSI6eyJ1cmwiOiJodHRwOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvcGx1Z2luc1wvZWxlbWVudG9yXC9hc3NldHNcL2ltYWdlc1wvcGxhY2Vob2xkZXIucG5nIiwiaWQiOiIifX0seyJjb250ZW50IjoiXHU1ZGU1XHU1ODM0MjogXHUzMGQzXHUzMGYzXHUzMGJhXHUzMGFhXHUzMGYzXHU3NzAxXHUzMDAxXHUzMGM3XHUzMGEzXHUzMGEyXHUzMGYzXHU1ZTAyXHUzMDAxXHUzMGJmXHUzMGYzXHUzMGQzXHUzMGYzXHU1MzNhXHUzMDAxXHUzMGJmXHUzMGYzXHUzMGQ1XHUzMGFhXHUzMGMzXHUzMGFmXHU1NzMwXHU1MzNhXHUzMDAxXHUzMGIwXHUzMGE4XHUzMGYzXHUzMGZiXHUzMGM2XHUzMGEzXHUzMGZiXHUzMGM4XHUzMGE1XHUzMGZjXHUzMGE0MTc2XC85IiwiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZhcyBmYS1tYXAtbWFya2VyLWFsdCIsImxpYnJhcnkiOiJmYS1zb2xpZCJ9LCJpY29uX2ltYWdlIjp7InVybCI6Imh0dHA6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC9wbHVnaW5zXC9lbGVtZW50b3JcL2Fzc2V0c1wvaW1hZ2VzXC9wbGFjZWhvbGRlci5wbmciLCJpZCI6IiJ9LCJfaWQiOiJiZTFhNmRkIn0seyJjb250ZW50IjoiMDk2OCA4NiAwMyA4NiIsImN0X2ljb24iOnsidmFsdWUiOiJmYXMgZmEtcGhvbmUtYWx0IiwibGlicmFyeSI6ImZhLXNvbGlkIn0sIl9pZCI6IjQ0YTFkODIiLCJpY29uX2ltYWdlIjp7InVybCI6Imh0dHA6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC9wbHVnaW5zXC9lbGVtZW50b3JcL2Fzc2V0c1wvaW1hZ2VzXC9wbGFjZWhvbGRlci5wbmciLCJpZCI6IiJ9fV0sImNvbnRlbnRfY29sb3IiOiIjZmZmZmZmIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMTIiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9jb250YWN0X2luZm8ifQ==\\\"]            <\\/div>\\n        <\\/div>\\n                <div class=\\\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-712a43be\\\" data-id=\\\"712a43be\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6IjVlNGUyNjJiIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJNZW51IiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIxMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sIl9wYWRkaW5nIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV9jb2xvciI6IiNmZmZmZmYifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfdGl0bGUifQ==\\\"][elementor-element data=\\\"eyJpZCI6IjZlNjgyZTViIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsibWVudSI6Ijg5Iiwic3R5bGUiOiJ0b3ctY29sLWxpZ2h0IiwibGlua19jb2xvcl9ob3ZlciI6IiNGOUEyNDQiLCJsaW5lX2NvbG9yX2hvdmVyIjoiI0Y5QTI0NCIsIm1lbnVfYWxpZ24iOiJsZWZ0IiwiX2VsZW1lbnRfd2lkdGgiOiJpbml0aWFsIiwiX2VsZW1lbnRfY3VzdG9tX3dpZHRoIjp7InVuaXQiOiIlIiwic2l6ZSI6MTAwfSwiX2ZsZXhfc2l6ZSI6Im5vbmUifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfbmF2aWdhdGlvbl9tZW51In0=\\\"][elementor-element data=\\\"eyJpZCI6ImUxNzRiOTciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1NTViNlx1Njk2ZFx1NjY0Mlx1OTU5MyIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJfcGFkZGluZyI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfY29sb3IiOiIjZmZmZmZmIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X3RpdGxlIn0=\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-1e0523b8 elementor-widget elementor-widget-text-editor\\\" data-id=\\\"1e0523b8\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>\\u6708\\u66dc\\u65e5\\uff5e\\u65e5\\u66dc\\u65e5\\uff1a24\\u6642\\u9593\\u55b6\\u696d<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t            <\\/div>\\n        <\\/div>\\n                <div class=\\\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-1ab76a16\\\" data-id=\\\"1ab76a16\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6IjM3YTVlNjM2IiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJOZXdzbGV0dGVyIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIxMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sIl9wYWRkaW5nIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV9jb2xvciI6IiNmZmZmZmYifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfdGl0bGUifQ==\\\"]        <section class=\\\"elementor-section elementor-inner-section elementor-element elementor-element-aa15610 elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"aa15610\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-no \\\">\\n                    <div class=\\\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-e2487ac\\\" data-id=\\\"e2487ac\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        \\t\\t<div class=\\\"elementor-element elementor-element-40d8f8a2 elementor-widget elementor-widget-text-editor\\\" data-id=\\\"40d8f8a2\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>\\u901a\\u77e5\\u3001\\u6700\\u65b0\\u306e\\u30d6\\u30ed\\u30b0\\u3001\\u30a2\\u30a4\\u30c7\\u30a2\\u3001\\u6d1e\\u5bdf\\u3092\\u53d7\\u3051\\u53d6\\u308b\\u305f\\u3081\\u306b\\u30b5\\u30a4\\u30f3\\u30a2\\u30c3\\u30d7\\u3057\\u3066\\u304f\\u3060\\u3055\\u3044\\u3002<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element data=\\\"eyJpZCI6ImQyMWQyMDgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJzdHlsZSI6InN0eWxlMiIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjI4IiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfbmV3c2xldHRlciJ9\\\"][elementor-element data=\\\"eyJpZCI6IjI3MzgzYWIyIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsiaWNvbnMiOlt7Imljb25fbGluayI6eyJ1cmwiOiIjIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9LCJfaWQiOiIyY2E4OThjIiwiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZhYiBmYS1mYWNlYm9vay1mIiwibGlicmFyeSI6ImZhLWJyYW5kcyJ9fSx7Imljb25fbGluayI6eyJ1cmwiOiIjIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9LCJfaWQiOiIwZmNjZDc1IiwiY3RfaWNvbiI6eyJ2YWx1ZSI6Im1hdGVyaWFsIHptZGkgem1kaS1saW5rZWRpbi1ib3giLCJsaWJyYXJ5IjoibWF0ZXJpYWwifX1dfSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaWNvbiJ9\\\"]            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                    <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                <section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-24b98c01 elementor-section-stretched elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"24b98c01\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-9a6c11e\\\" data-id=\\\"9a6c11e\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n                <section class=\\\"elementor-section elementor-inner-section elementor-element elementor-element-53be024 elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"53be024\\\" data-element_type=\\\"section\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-5990603\\\" data-id=\\\"5990603\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        \\t\\t<div class=\\\"elementor-element elementor-element-7f874a5a ct-copyright elementor-widget elementor-widget-text-editor\\\" data-id=\\\"7f874a5a\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>Copyright @2024 of Far East High Tech Ltd. Co.<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                    <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n        \",\"scripts\":[],\"styles\":[]}}\";}','auto'),(638,'post_format_link','a:15:{s:17:\"_wp_page_template\";s:7:\"default\";s:20:\"_elementor_edit_mode\";s:7:\"builder\";s:24:\"_elementor_template_type\";s:7:\"wp-post\";s:18:\"_elementor_version\";s:6:\"3.24.7\";s:15:\"_elementor_data\";s:8134:\"[{\"id\":\"7225c724\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#060606E6\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer.png\",\"id\":87},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"109cef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.3},\"elements\":[{\"id\":\"6667e1a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/logo.jpg\",\"id\":2748,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae6ecf2\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"\\u5de5\\u58341: \\u30d0\\u30af\\u30cb\\u30f3\\u7701\\u30d0\\u30af\\u30cb\\u30f3\\u5e02\\u3001\\u30ab\\u30af\\u30cb\\u30a8\\u30e0\\u533a\\u3001\\u30ab\\u30af\\u30cb\\u30a8\\u30e0\\u5de5\\u696d\\u56e3\\u5730\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}},{\"content\":\"\\u5de5\\u58342: \\u30d3\\u30f3\\u30ba\\u30aa\\u30f3\\u7701\\u3001\\u30c7\\u30a3\\u30a2\\u30f3\\u5e02\\u3001\\u30bf\\u30f3\\u30d3\\u30f3\\u533a\\u3001\\u30bf\\u30f3\\u30d5\\u30aa\\u30c3\\u30af\\u5730\\u533a\\u3001\\u30b0\\u30a8\\u30f3\\u30fb\\u30c6\\u30a3\\u30fb\\u30c8\\u30a5\\u30fc\\u30a4176\\/9\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"be1a6dd\"},{\"content\":\"0968 86 03 86\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"712a43be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.664,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e4e262b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Menu\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6e682e5b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"89\",\"style\":\"tow-col-light\",\"link_color_hover\":\"#F9A244\",\"line_color_hover\":\"#F9A244\",\"menu_align\":\"left\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"e174b97\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u55b6\\u696d\\u6642\\u9593\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"1e0523b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u6708\\u66dc\\u65e5\\uff5e\\u65e5\\u66dc\\u65e5\\uff1a24\\u6642\\u9593\\u55b6\\u696d<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ab76a16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7},\"elements\":[{\"id\":\"37a5e636\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"aa15610\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#85B23B\",\"padding\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"040\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2487ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40d8f8a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u901a\\u77e5\\u3001\\u6700\\u65b0\\u306e\\u30d6\\u30ed\\u30b0\\u3001\\u30a2\\u30a4\\u30c7\\u30a2\\u3001\\u6d1e\\u5bdf\\u3092\\u53d7\\u3051\\u53d6\\u308b\\u305f\\u3081\\u306b\\u30b5\\u30a4\\u30f3\\u30a2\\u30c3\\u30d7\\u3057\\u3066\\u304f\\u3060\\u3055\\u3044\\u3002<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d21d208\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"27383ab2\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin-box\",\"library\":\"material\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24b98c01\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"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},\"gap\":\"extended\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a6c11e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53be024\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"5990603\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"7f874a5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright @2024 of Far East High Tech Ltd. Co.<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_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},\"_css_classes\":\"ct-copyright\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]\";s:25:\"_elementor_controls_usage\";a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:2:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:1;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:16:\"link_color_hover\";i:1;s:16:\"line_color_hover\";i:1;s:10:\"menu_align\";i:1;s:17:\"menu_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:13:\"ct_newsletter\";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:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";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:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:1;}}}}}s:10:\"_edit_last\";s:1:\"1\";s:10:\"_edit_lock\";s:12:\"1742182489:1\";s:43:\"_yoast_wpseo_estimated-reading-time-minutes\";s:1:\"1\";s:12:\"_wp_old_slug\";s:9:\"footer-jp\";s:16:\"rs_page_bg_color\";s:0:\"\";s:26:\"_yoast_wpseo_content_score\";s:2:\"90\";s:14:\"_elementor_css\";a:6:{s:4:\"time\";i:1742177093;s:5:\"fonts\";a:1:{i:0;s:7:\"Poppins\";}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:3;s:9:\"fa-brands\";i:4;s:8:\"material\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}s:22:\"_elementor_page_assets\";a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"widget-image\";i:1;s:18:\"widget-text-editor\";}}s:24:\"_elementor_element_cache\";s:10585:\"{\"timeout\":1742263493,\"value\":{\"content\":\"        <section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-7225c724 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"7225c724\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-109cef8c\\\" data-id=\\\"109cef8c\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        \\t\\t<div class=\\\"elementor-element elementor-element-6667e1a9 logo-footer elementor-widget__width-initial elementor-widget elementor-widget-image\\\" data-id=\\\"6667e1a9\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"http:\\/\\/fe2tech.com\\/\\\">\\n\\t\\t\\t\\t\\t\\t\\t<img width=\\\"597\\\" height=\\\"597\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/logo.jpg\\\" class=\\\"attachment-full size-full wp-image-2748\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element data=\\\"eyJpZCI6IjRhZTZlY2YyIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsiY29udGFjdF9pbmZvIjpbeyJjb250ZW50IjoiXHU1ZGU1XHU1ODM0MTogXHUzMGQwXHUzMGFmXHUzMGNiXHUzMGYzXHU3NzAxXHUzMGQwXHUzMGFmXHUzMGNiXHUzMGYzXHU1ZTAyXHUzMDAxXHUzMGFiXHUzMGFmXHUzMGNiXHUzMGE4XHUzMGUwXHU1MzNhXHUzMDAxXHUzMGFiXHUzMGFmXHUzMGNiXHUzMGE4XHUzMGUwXHU1ZGU1XHU2OTZkXHU1NmUzXHU1NzMwIiwiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZhcyBmYS1tYXAtbWFya2VyLWFsdCIsImxpYnJhcnkiOiJmYS1zb2xpZCJ9LCJfaWQiOiJkNmE1NGIwIiwiaWNvbl9pbWFnZSI6eyJ1cmwiOiJodHRwOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvcGx1Z2luc1wvZWxlbWVudG9yXC9hc3NldHNcL2ltYWdlc1wvcGxhY2Vob2xkZXIucG5nIiwiaWQiOiIifX0seyJjb250ZW50IjoiXHU1ZGU1XHU1ODM0MjogXHUzMGQzXHUzMGYzXHUzMGJhXHUzMGFhXHUzMGYzXHU3NzAxXHUzMDAxXHUzMGM3XHUzMGEzXHUzMGEyXHUzMGYzXHU1ZTAyXHUzMDAxXHUzMGJmXHUzMGYzXHUzMGQzXHUzMGYzXHU1MzNhXHUzMDAxXHUzMGJmXHUzMGYzXHUzMGQ1XHUzMGFhXHUzMGMzXHUzMGFmXHU1NzMwXHU1MzNhXHUzMDAxXHUzMGIwXHUzMGE4XHUzMGYzXHUzMGZiXHUzMGM2XHUzMGEzXHUzMGZiXHUzMGM4XHUzMGE1XHUzMGZjXHUzMGE0MTc2XC85IiwiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZhcyBmYS1tYXAtbWFya2VyLWFsdCIsImxpYnJhcnkiOiJmYS1zb2xpZCJ9LCJpY29uX2ltYWdlIjp7InVybCI6Imh0dHA6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC9wbHVnaW5zXC9lbGVtZW50b3JcL2Fzc2V0c1wvaW1hZ2VzXC9wbGFjZWhvbGRlci5wbmciLCJpZCI6IiJ9LCJfaWQiOiJiZTFhNmRkIn0seyJjb250ZW50IjoiMDk2OCA4NiAwMyA4NiIsImN0X2ljb24iOnsidmFsdWUiOiJmYXMgZmEtcGhvbmUtYWx0IiwibGlicmFyeSI6ImZhLXNvbGlkIn0sIl9pZCI6IjQ0YTFkODIiLCJpY29uX2ltYWdlIjp7InVybCI6Imh0dHA6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC9wbHVnaW5zXC9lbGVtZW50b3JcL2Fzc2V0c1wvaW1hZ2VzXC9wbGFjZWhvbGRlci5wbmciLCJpZCI6IiJ9fV0sImNvbnRlbnRfY29sb3IiOiIjZmZmZmZmIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMTIiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9jb250YWN0X2luZm8ifQ==\\\"]            <\\/div>\\n        <\\/div>\\n                <div class=\\\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-712a43be\\\" data-id=\\\"712a43be\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6IjVlNGUyNjJiIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJNZW51IiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIxMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sIl9wYWRkaW5nIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV9jb2xvciI6IiNmZmZmZmYifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfdGl0bGUifQ==\\\"][elementor-element data=\\\"eyJpZCI6IjZlNjgyZTViIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsibWVudSI6Ijg5Iiwic3R5bGUiOiJ0b3ctY29sLWxpZ2h0IiwibGlua19jb2xvcl9ob3ZlciI6IiNGOUEyNDQiLCJsaW5lX2NvbG9yX2hvdmVyIjoiI0Y5QTI0NCIsIm1lbnVfYWxpZ24iOiJsZWZ0IiwiX2VsZW1lbnRfd2lkdGgiOiJpbml0aWFsIiwiX2VsZW1lbnRfY3VzdG9tX3dpZHRoIjp7InVuaXQiOiIlIiwic2l6ZSI6MTAwfSwiX2ZsZXhfc2l6ZSI6Im5vbmUifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfbmF2aWdhdGlvbl9tZW51In0=\\\"][elementor-element data=\\\"eyJpZCI6ImUxNzRiOTciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1NTViNlx1Njk2ZFx1NjY0Mlx1OTU5MyIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJfcGFkZGluZyI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfY29sb3IiOiIjZmZmZmZmIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X3RpdGxlIn0=\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-1e0523b8 elementor-widget elementor-widget-text-editor\\\" data-id=\\\"1e0523b8\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>\\u6708\\u66dc\\u65e5\\uff5e\\u65e5\\u66dc\\u65e5\\uff1a24\\u6642\\u9593\\u55b6\\u696d<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t            <\\/div>\\n        <\\/div>\\n                <div class=\\\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-1ab76a16\\\" data-id=\\\"1ab76a16\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6IjM3YTVlNjM2IiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJOZXdzbGV0dGVyIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIxMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sIl9wYWRkaW5nIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV9jb2xvciI6IiNmZmZmZmYifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfdGl0bGUifQ==\\\"]        <section class=\\\"elementor-section elementor-inner-section elementor-element elementor-element-aa15610 elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"aa15610\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-no \\\">\\n                    <div class=\\\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-e2487ac\\\" data-id=\\\"e2487ac\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        \\t\\t<div class=\\\"elementor-element elementor-element-40d8f8a2 elementor-widget elementor-widget-text-editor\\\" data-id=\\\"40d8f8a2\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>\\u901a\\u77e5\\u3001\\u6700\\u65b0\\u306e\\u30d6\\u30ed\\u30b0\\u3001\\u30a2\\u30a4\\u30c7\\u30a2\\u3001\\u6d1e\\u5bdf\\u3092\\u53d7\\u3051\\u53d6\\u308b\\u305f\\u3081\\u306b\\u30b5\\u30a4\\u30f3\\u30a2\\u30c3\\u30d7\\u3057\\u3066\\u304f\\u3060\\u3055\\u3044\\u3002<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element data=\\\"eyJpZCI6ImQyMWQyMDgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJzdHlsZSI6InN0eWxlMiIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjI4IiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfbmV3c2xldHRlciJ9\\\"][elementor-element data=\\\"eyJpZCI6IjI3MzgzYWIyIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsiaWNvbnMiOlt7Imljb25fbGluayI6eyJ1cmwiOiIjIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9LCJfaWQiOiIyY2E4OThjIiwiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZhYiBmYS1mYWNlYm9vay1mIiwibGlicmFyeSI6ImZhLWJyYW5kcyJ9fSx7Imljb25fbGluayI6eyJ1cmwiOiIjIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9LCJfaWQiOiIwZmNjZDc1IiwiY3RfaWNvbiI6eyJ2YWx1ZSI6Im1hdGVyaWFsIHptZGkgem1kaS1saW5rZWRpbi1ib3giLCJsaWJyYXJ5IjoibWF0ZXJpYWwifX1dfSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaWNvbiJ9\\\"]            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                    <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                <section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-24b98c01 elementor-section-stretched elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"24b98c01\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-9a6c11e\\\" data-id=\\\"9a6c11e\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n                <section class=\\\"elementor-section elementor-inner-section elementor-element elementor-element-53be024 elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"53be024\\\" data-element_type=\\\"section\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-5990603\\\" data-id=\\\"5990603\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        \\t\\t<div class=\\\"elementor-element elementor-element-7f874a5a ct-copyright elementor-widget elementor-widget-text-editor\\\" data-id=\\\"7f874a5a\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>Copyright @2024 of Far East High Tech Ltd. Co.<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                    <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n        \",\"scripts\":[],\"styles\":[]}}\";}','auto'),(639,'post_format_quote','a:15:{s:17:\"_wp_page_template\";s:7:\"default\";s:20:\"_elementor_edit_mode\";s:7:\"builder\";s:24:\"_elementor_template_type\";s:7:\"wp-post\";s:18:\"_elementor_version\";s:6:\"3.24.7\";s:15:\"_elementor_data\";s:8134:\"[{\"id\":\"7225c724\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#060606E6\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer.png\",\"id\":87},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"109cef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.3},\"elements\":[{\"id\":\"6667e1a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/logo.jpg\",\"id\":2748,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae6ecf2\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"\\u5de5\\u58341: \\u30d0\\u30af\\u30cb\\u30f3\\u7701\\u30d0\\u30af\\u30cb\\u30f3\\u5e02\\u3001\\u30ab\\u30af\\u30cb\\u30a8\\u30e0\\u533a\\u3001\\u30ab\\u30af\\u30cb\\u30a8\\u30e0\\u5de5\\u696d\\u56e3\\u5730\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}},{\"content\":\"\\u5de5\\u58342: \\u30d3\\u30f3\\u30ba\\u30aa\\u30f3\\u7701\\u3001\\u30c7\\u30a3\\u30a2\\u30f3\\u5e02\\u3001\\u30bf\\u30f3\\u30d3\\u30f3\\u533a\\u3001\\u30bf\\u30f3\\u30d5\\u30aa\\u30c3\\u30af\\u5730\\u533a\\u3001\\u30b0\\u30a8\\u30f3\\u30fb\\u30c6\\u30a3\\u30fb\\u30c8\\u30a5\\u30fc\\u30a4176\\/9\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"be1a6dd\"},{\"content\":\"0968 86 03 86\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"712a43be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.664,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e4e262b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Menu\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6e682e5b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"89\",\"style\":\"tow-col-light\",\"link_color_hover\":\"#F9A244\",\"line_color_hover\":\"#F9A244\",\"menu_align\":\"left\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"e174b97\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u55b6\\u696d\\u6642\\u9593\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"1e0523b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u6708\\u66dc\\u65e5\\uff5e\\u65e5\\u66dc\\u65e5\\uff1a24\\u6642\\u9593\\u55b6\\u696d<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ab76a16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7},\"elements\":[{\"id\":\"37a5e636\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"aa15610\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#85B23B\",\"padding\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"040\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2487ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40d8f8a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u901a\\u77e5\\u3001\\u6700\\u65b0\\u306e\\u30d6\\u30ed\\u30b0\\u3001\\u30a2\\u30a4\\u30c7\\u30a2\\u3001\\u6d1e\\u5bdf\\u3092\\u53d7\\u3051\\u53d6\\u308b\\u305f\\u3081\\u306b\\u30b5\\u30a4\\u30f3\\u30a2\\u30c3\\u30d7\\u3057\\u3066\\u304f\\u3060\\u3055\\u3044\\u3002<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d21d208\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"27383ab2\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin-box\",\"library\":\"material\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24b98c01\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"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},\"gap\":\"extended\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a6c11e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53be024\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"5990603\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"7f874a5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright @2024 of Far East High Tech Ltd. Co.<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_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},\"_css_classes\":\"ct-copyright\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]\";s:25:\"_elementor_controls_usage\";a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:2:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:1;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:16:\"link_color_hover\";i:1;s:16:\"line_color_hover\";i:1;s:10:\"menu_align\";i:1;s:17:\"menu_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:13:\"ct_newsletter\";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:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";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:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:1;}}}}}s:10:\"_edit_last\";s:1:\"1\";s:10:\"_edit_lock\";s:12:\"1742182489:1\";s:43:\"_yoast_wpseo_estimated-reading-time-minutes\";s:1:\"1\";s:12:\"_wp_old_slug\";s:9:\"footer-jp\";s:16:\"rs_page_bg_color\";s:0:\"\";s:26:\"_yoast_wpseo_content_score\";s:2:\"90\";s:14:\"_elementor_css\";a:6:{s:4:\"time\";i:1742177093;s:5:\"fonts\";a:1:{i:0;s:7:\"Poppins\";}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:3;s:9:\"fa-brands\";i:4;s:8:\"material\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}s:22:\"_elementor_page_assets\";a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"widget-image\";i:1;s:18:\"widget-text-editor\";}}s:24:\"_elementor_element_cache\";s:10585:\"{\"timeout\":1742263493,\"value\":{\"content\":\"        <section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-7225c724 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"7225c724\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-109cef8c\\\" data-id=\\\"109cef8c\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        \\t\\t<div class=\\\"elementor-element elementor-element-6667e1a9 logo-footer elementor-widget__width-initial elementor-widget elementor-widget-image\\\" data-id=\\\"6667e1a9\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"http:\\/\\/fe2tech.com\\/\\\">\\n\\t\\t\\t\\t\\t\\t\\t<img width=\\\"597\\\" height=\\\"597\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/logo.jpg\\\" class=\\\"attachment-full size-full wp-image-2748\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element data=\\\"eyJpZCI6IjRhZTZlY2YyIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsiY29udGFjdF9pbmZvIjpbeyJjb250ZW50IjoiXHU1ZGU1XHU1ODM0MTogXHUzMGQwXHUzMGFmXHUzMGNiXHUzMGYzXHU3NzAxXHUzMGQwXHUzMGFmXHUzMGNiXHUzMGYzXHU1ZTAyXHUzMDAxXHUzMGFiXHUzMGFmXHUzMGNiXHUzMGE4XHUzMGUwXHU1MzNhXHUzMDAxXHUzMGFiXHUzMGFmXHUzMGNiXHUzMGE4XHUzMGUwXHU1ZGU1XHU2OTZkXHU1NmUzXHU1NzMwIiwiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZhcyBmYS1tYXAtbWFya2VyLWFsdCIsImxpYnJhcnkiOiJmYS1zb2xpZCJ9LCJfaWQiOiJkNmE1NGIwIiwiaWNvbl9pbWFnZSI6eyJ1cmwiOiJodHRwOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvcGx1Z2luc1wvZWxlbWVudG9yXC9hc3NldHNcL2ltYWdlc1wvcGxhY2Vob2xkZXIucG5nIiwiaWQiOiIifX0seyJjb250ZW50IjoiXHU1ZGU1XHU1ODM0MjogXHUzMGQzXHUzMGYzXHUzMGJhXHUzMGFhXHUzMGYzXHU3NzAxXHUzMDAxXHUzMGM3XHUzMGEzXHUzMGEyXHUzMGYzXHU1ZTAyXHUzMDAxXHUzMGJmXHUzMGYzXHUzMGQzXHUzMGYzXHU1MzNhXHUzMDAxXHUzMGJmXHUzMGYzXHUzMGQ1XHUzMGFhXHUzMGMzXHUzMGFmXHU1NzMwXHU1MzNhXHUzMDAxXHUzMGIwXHUzMGE4XHUzMGYzXHUzMGZiXHUzMGM2XHUzMGEzXHUzMGZiXHUzMGM4XHUzMGE1XHUzMGZjXHUzMGE0MTc2XC85IiwiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZhcyBmYS1tYXAtbWFya2VyLWFsdCIsImxpYnJhcnkiOiJmYS1zb2xpZCJ9LCJpY29uX2ltYWdlIjp7InVybCI6Imh0dHA6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC9wbHVnaW5zXC9lbGVtZW50b3JcL2Fzc2V0c1wvaW1hZ2VzXC9wbGFjZWhvbGRlci5wbmciLCJpZCI6IiJ9LCJfaWQiOiJiZTFhNmRkIn0seyJjb250ZW50IjoiMDk2OCA4NiAwMyA4NiIsImN0X2ljb24iOnsidmFsdWUiOiJmYXMgZmEtcGhvbmUtYWx0IiwibGlicmFyeSI6ImZhLXNvbGlkIn0sIl9pZCI6IjQ0YTFkODIiLCJpY29uX2ltYWdlIjp7InVybCI6Imh0dHA6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC9wbHVnaW5zXC9lbGVtZW50b3JcL2Fzc2V0c1wvaW1hZ2VzXC9wbGFjZWhvbGRlci5wbmciLCJpZCI6IiJ9fV0sImNvbnRlbnRfY29sb3IiOiIjZmZmZmZmIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMTIiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9jb250YWN0X2luZm8ifQ==\\\"]            <\\/div>\\n        <\\/div>\\n                <div class=\\\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-712a43be\\\" data-id=\\\"712a43be\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6IjVlNGUyNjJiIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJNZW51IiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIxMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sIl9wYWRkaW5nIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV9jb2xvciI6IiNmZmZmZmYifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfdGl0bGUifQ==\\\"][elementor-element data=\\\"eyJpZCI6IjZlNjgyZTViIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsibWVudSI6Ijg5Iiwic3R5bGUiOiJ0b3ctY29sLWxpZ2h0IiwibGlua19jb2xvcl9ob3ZlciI6IiNGOUEyNDQiLCJsaW5lX2NvbG9yX2hvdmVyIjoiI0Y5QTI0NCIsIm1lbnVfYWxpZ24iOiJsZWZ0IiwiX2VsZW1lbnRfd2lkdGgiOiJpbml0aWFsIiwiX2VsZW1lbnRfY3VzdG9tX3dpZHRoIjp7InVuaXQiOiIlIiwic2l6ZSI6MTAwfSwiX2ZsZXhfc2l6ZSI6Im5vbmUifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfbmF2aWdhdGlvbl9tZW51In0=\\\"][elementor-element data=\\\"eyJpZCI6ImUxNzRiOTciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1NTViNlx1Njk2ZFx1NjY0Mlx1OTU5MyIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJfcGFkZGluZyI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfY29sb3IiOiIjZmZmZmZmIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X3RpdGxlIn0=\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-1e0523b8 elementor-widget elementor-widget-text-editor\\\" data-id=\\\"1e0523b8\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>\\u6708\\u66dc\\u65e5\\uff5e\\u65e5\\u66dc\\u65e5\\uff1a24\\u6642\\u9593\\u55b6\\u696d<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t            <\\/div>\\n        <\\/div>\\n                <div class=\\\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-1ab76a16\\\" data-id=\\\"1ab76a16\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6IjM3YTVlNjM2IiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJOZXdzbGV0dGVyIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIxMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sIl9wYWRkaW5nIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV9jb2xvciI6IiNmZmZmZmYifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfdGl0bGUifQ==\\\"]        <section class=\\\"elementor-section elementor-inner-section elementor-element elementor-element-aa15610 elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"aa15610\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-no \\\">\\n                    <div class=\\\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-e2487ac\\\" data-id=\\\"e2487ac\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        \\t\\t<div class=\\\"elementor-element elementor-element-40d8f8a2 elementor-widget elementor-widget-text-editor\\\" data-id=\\\"40d8f8a2\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>\\u901a\\u77e5\\u3001\\u6700\\u65b0\\u306e\\u30d6\\u30ed\\u30b0\\u3001\\u30a2\\u30a4\\u30c7\\u30a2\\u3001\\u6d1e\\u5bdf\\u3092\\u53d7\\u3051\\u53d6\\u308b\\u305f\\u3081\\u306b\\u30b5\\u30a4\\u30f3\\u30a2\\u30c3\\u30d7\\u3057\\u3066\\u304f\\u3060\\u3055\\u3044\\u3002<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element data=\\\"eyJpZCI6ImQyMWQyMDgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJzdHlsZSI6InN0eWxlMiIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjI4IiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfbmV3c2xldHRlciJ9\\\"][elementor-element data=\\\"eyJpZCI6IjI3MzgzYWIyIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsiaWNvbnMiOlt7Imljb25fbGluayI6eyJ1cmwiOiIjIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9LCJfaWQiOiIyY2E4OThjIiwiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZhYiBmYS1mYWNlYm9vay1mIiwibGlicmFyeSI6ImZhLWJyYW5kcyJ9fSx7Imljb25fbGluayI6eyJ1cmwiOiIjIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9LCJfaWQiOiIwZmNjZDc1IiwiY3RfaWNvbiI6eyJ2YWx1ZSI6Im1hdGVyaWFsIHptZGkgem1kaS1saW5rZWRpbi1ib3giLCJsaWJyYXJ5IjoibWF0ZXJpYWwifX1dfSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaWNvbiJ9\\\"]            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                    <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                <section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-24b98c01 elementor-section-stretched elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"24b98c01\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-9a6c11e\\\" data-id=\\\"9a6c11e\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n                <section class=\\\"elementor-section elementor-inner-section elementor-element elementor-element-53be024 elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"53be024\\\" data-element_type=\\\"section\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-5990603\\\" data-id=\\\"5990603\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        \\t\\t<div class=\\\"elementor-element elementor-element-7f874a5a ct-copyright elementor-widget elementor-widget-text-editor\\\" data-id=\\\"7f874a5a\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>Copyright @2024 of Far East High Tech Ltd. Co.<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                    <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n        \",\"scripts\":[],\"styles\":[]}}\";}','auto'),(640,'post_format_video','a:15:{s:17:\"_wp_page_template\";s:7:\"default\";s:20:\"_elementor_edit_mode\";s:7:\"builder\";s:24:\"_elementor_template_type\";s:7:\"wp-post\";s:18:\"_elementor_version\";s:6:\"3.24.7\";s:15:\"_elementor_data\";s:8134:\"[{\"id\":\"7225c724\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#060606E6\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer.png\",\"id\":87},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"109cef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.3},\"elements\":[{\"id\":\"6667e1a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/logo.jpg\",\"id\":2748,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae6ecf2\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"\\u5de5\\u58341: \\u30d0\\u30af\\u30cb\\u30f3\\u7701\\u30d0\\u30af\\u30cb\\u30f3\\u5e02\\u3001\\u30ab\\u30af\\u30cb\\u30a8\\u30e0\\u533a\\u3001\\u30ab\\u30af\\u30cb\\u30a8\\u30e0\\u5de5\\u696d\\u56e3\\u5730\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}},{\"content\":\"\\u5de5\\u58342: \\u30d3\\u30f3\\u30ba\\u30aa\\u30f3\\u7701\\u3001\\u30c7\\u30a3\\u30a2\\u30f3\\u5e02\\u3001\\u30bf\\u30f3\\u30d3\\u30f3\\u533a\\u3001\\u30bf\\u30f3\\u30d5\\u30aa\\u30c3\\u30af\\u5730\\u533a\\u3001\\u30b0\\u30a8\\u30f3\\u30fb\\u30c6\\u30a3\\u30fb\\u30c8\\u30a5\\u30fc\\u30a4176\\/9\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"be1a6dd\"},{\"content\":\"0968 86 03 86\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"712a43be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.664,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e4e262b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Menu\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6e682e5b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"89\",\"style\":\"tow-col-light\",\"link_color_hover\":\"#F9A244\",\"line_color_hover\":\"#F9A244\",\"menu_align\":\"left\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"e174b97\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u55b6\\u696d\\u6642\\u9593\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"1e0523b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u6708\\u66dc\\u65e5\\uff5e\\u65e5\\u66dc\\u65e5\\uff1a24\\u6642\\u9593\\u55b6\\u696d<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ab76a16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7},\"elements\":[{\"id\":\"37a5e636\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"aa15610\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#85B23B\",\"padding\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"040\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2487ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40d8f8a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u901a\\u77e5\\u3001\\u6700\\u65b0\\u306e\\u30d6\\u30ed\\u30b0\\u3001\\u30a2\\u30a4\\u30c7\\u30a2\\u3001\\u6d1e\\u5bdf\\u3092\\u53d7\\u3051\\u53d6\\u308b\\u305f\\u3081\\u306b\\u30b5\\u30a4\\u30f3\\u30a2\\u30c3\\u30d7\\u3057\\u3066\\u304f\\u3060\\u3055\\u3044\\u3002<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d21d208\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"27383ab2\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin-box\",\"library\":\"material\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24b98c01\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"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},\"gap\":\"extended\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a6c11e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53be024\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"5990603\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"7f874a5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright @2024 of Far East High Tech Ltd. Co.<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_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},\"_css_classes\":\"ct-copyright\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]\";s:25:\"_elementor_controls_usage\";a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:2:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:1;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:16:\"link_color_hover\";i:1;s:16:\"line_color_hover\";i:1;s:10:\"menu_align\";i:1;s:17:\"menu_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:13:\"ct_newsletter\";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:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";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:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:1;}}}}}s:10:\"_edit_last\";s:1:\"1\";s:10:\"_edit_lock\";s:12:\"1742182489:1\";s:43:\"_yoast_wpseo_estimated-reading-time-minutes\";s:1:\"1\";s:12:\"_wp_old_slug\";s:9:\"footer-jp\";s:16:\"rs_page_bg_color\";s:0:\"\";s:26:\"_yoast_wpseo_content_score\";s:2:\"90\";s:14:\"_elementor_css\";a:6:{s:4:\"time\";i:1742177093;s:5:\"fonts\";a:1:{i:0;s:7:\"Poppins\";}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:3;s:9:\"fa-brands\";i:4;s:8:\"material\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}s:22:\"_elementor_page_assets\";a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"widget-image\";i:1;s:18:\"widget-text-editor\";}}s:24:\"_elementor_element_cache\";s:10585:\"{\"timeout\":1742263493,\"value\":{\"content\":\"        <section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-7225c724 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"7225c724\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-109cef8c\\\" data-id=\\\"109cef8c\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        \\t\\t<div class=\\\"elementor-element elementor-element-6667e1a9 logo-footer elementor-widget__width-initial elementor-widget elementor-widget-image\\\" data-id=\\\"6667e1a9\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"http:\\/\\/fe2tech.com\\/\\\">\\n\\t\\t\\t\\t\\t\\t\\t<img width=\\\"597\\\" height=\\\"597\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/logo.jpg\\\" class=\\\"attachment-full size-full wp-image-2748\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element data=\\\"eyJpZCI6IjRhZTZlY2YyIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsiY29udGFjdF9pbmZvIjpbeyJjb250ZW50IjoiXHU1ZGU1XHU1ODM0MTogXHUzMGQwXHUzMGFmXHUzMGNiXHUzMGYzXHU3NzAxXHUzMGQwXHUzMGFmXHUzMGNiXHUzMGYzXHU1ZTAyXHUzMDAxXHUzMGFiXHUzMGFmXHUzMGNiXHUzMGE4XHUzMGUwXHU1MzNhXHUzMDAxXHUzMGFiXHUzMGFmXHUzMGNiXHUzMGE4XHUzMGUwXHU1ZGU1XHU2OTZkXHU1NmUzXHU1NzMwIiwiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZhcyBmYS1tYXAtbWFya2VyLWFsdCIsImxpYnJhcnkiOiJmYS1zb2xpZCJ9LCJfaWQiOiJkNmE1NGIwIiwiaWNvbl9pbWFnZSI6eyJ1cmwiOiJodHRwOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvcGx1Z2luc1wvZWxlbWVudG9yXC9hc3NldHNcL2ltYWdlc1wvcGxhY2Vob2xkZXIucG5nIiwiaWQiOiIifX0seyJjb250ZW50IjoiXHU1ZGU1XHU1ODM0MjogXHUzMGQzXHUzMGYzXHUzMGJhXHUzMGFhXHUzMGYzXHU3NzAxXHUzMDAxXHUzMGM3XHUzMGEzXHUzMGEyXHUzMGYzXHU1ZTAyXHUzMDAxXHUzMGJmXHUzMGYzXHUzMGQzXHUzMGYzXHU1MzNhXHUzMDAxXHUzMGJmXHUzMGYzXHUzMGQ1XHUzMGFhXHUzMGMzXHUzMGFmXHU1NzMwXHU1MzNhXHUzMDAxXHUzMGIwXHUzMGE4XHUzMGYzXHUzMGZiXHUzMGM2XHUzMGEzXHUzMGZiXHUzMGM4XHUzMGE1XHUzMGZjXHUzMGE0MTc2XC85IiwiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZhcyBmYS1tYXAtbWFya2VyLWFsdCIsImxpYnJhcnkiOiJmYS1zb2xpZCJ9LCJpY29uX2ltYWdlIjp7InVybCI6Imh0dHA6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC9wbHVnaW5zXC9lbGVtZW50b3JcL2Fzc2V0c1wvaW1hZ2VzXC9wbGFjZWhvbGRlci5wbmciLCJpZCI6IiJ9LCJfaWQiOiJiZTFhNmRkIn0seyJjb250ZW50IjoiMDk2OCA4NiAwMyA4NiIsImN0X2ljb24iOnsidmFsdWUiOiJmYXMgZmEtcGhvbmUtYWx0IiwibGlicmFyeSI6ImZhLXNvbGlkIn0sIl9pZCI6IjQ0YTFkODIiLCJpY29uX2ltYWdlIjp7InVybCI6Imh0dHA6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC9wbHVnaW5zXC9lbGVtZW50b3JcL2Fzc2V0c1wvaW1hZ2VzXC9wbGFjZWhvbGRlci5wbmciLCJpZCI6IiJ9fV0sImNvbnRlbnRfY29sb3IiOiIjZmZmZmZmIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMTIiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9jb250YWN0X2luZm8ifQ==\\\"]            <\\/div>\\n        <\\/div>\\n                <div class=\\\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-712a43be\\\" data-id=\\\"712a43be\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6IjVlNGUyNjJiIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJNZW51IiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIxMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sIl9wYWRkaW5nIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV9jb2xvciI6IiNmZmZmZmYifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfdGl0bGUifQ==\\\"][elementor-element data=\\\"eyJpZCI6IjZlNjgyZTViIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsibWVudSI6Ijg5Iiwic3R5bGUiOiJ0b3ctY29sLWxpZ2h0IiwibGlua19jb2xvcl9ob3ZlciI6IiNGOUEyNDQiLCJsaW5lX2NvbG9yX2hvdmVyIjoiI0Y5QTI0NCIsIm1lbnVfYWxpZ24iOiJsZWZ0IiwiX2VsZW1lbnRfd2lkdGgiOiJpbml0aWFsIiwiX2VsZW1lbnRfY3VzdG9tX3dpZHRoIjp7InVuaXQiOiIlIiwic2l6ZSI6MTAwfSwiX2ZsZXhfc2l6ZSI6Im5vbmUifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfbmF2aWdhdGlvbl9tZW51In0=\\\"][elementor-element data=\\\"eyJpZCI6ImUxNzRiOTciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1NTViNlx1Njk2ZFx1NjY0Mlx1OTU5MyIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJfcGFkZGluZyI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfY29sb3IiOiIjZmZmZmZmIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X3RpdGxlIn0=\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-1e0523b8 elementor-widget elementor-widget-text-editor\\\" data-id=\\\"1e0523b8\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>\\u6708\\u66dc\\u65e5\\uff5e\\u65e5\\u66dc\\u65e5\\uff1a24\\u6642\\u9593\\u55b6\\u696d<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t            <\\/div>\\n        <\\/div>\\n                <div class=\\\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-1ab76a16\\\" data-id=\\\"1ab76a16\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6IjM3YTVlNjM2IiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJOZXdzbGV0dGVyIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIxMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sIl9wYWRkaW5nIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV9jb2xvciI6IiNmZmZmZmYifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfdGl0bGUifQ==\\\"]        <section class=\\\"elementor-section elementor-inner-section elementor-element elementor-element-aa15610 elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"aa15610\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-no \\\">\\n                    <div class=\\\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-e2487ac\\\" data-id=\\\"e2487ac\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        \\t\\t<div class=\\\"elementor-element elementor-element-40d8f8a2 elementor-widget elementor-widget-text-editor\\\" data-id=\\\"40d8f8a2\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>\\u901a\\u77e5\\u3001\\u6700\\u65b0\\u306e\\u30d6\\u30ed\\u30b0\\u3001\\u30a2\\u30a4\\u30c7\\u30a2\\u3001\\u6d1e\\u5bdf\\u3092\\u53d7\\u3051\\u53d6\\u308b\\u305f\\u3081\\u306b\\u30b5\\u30a4\\u30f3\\u30a2\\u30c3\\u30d7\\u3057\\u3066\\u304f\\u3060\\u3055\\u3044\\u3002<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element data=\\\"eyJpZCI6ImQyMWQyMDgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJzdHlsZSI6InN0eWxlMiIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjI4IiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfbmV3c2xldHRlciJ9\\\"][elementor-element data=\\\"eyJpZCI6IjI3MzgzYWIyIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsiaWNvbnMiOlt7Imljb25fbGluayI6eyJ1cmwiOiIjIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9LCJfaWQiOiIyY2E4OThjIiwiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZhYiBmYS1mYWNlYm9vay1mIiwibGlicmFyeSI6ImZhLWJyYW5kcyJ9fSx7Imljb25fbGluayI6eyJ1cmwiOiIjIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9LCJfaWQiOiIwZmNjZDc1IiwiY3RfaWNvbiI6eyJ2YWx1ZSI6Im1hdGVyaWFsIHptZGkgem1kaS1saW5rZWRpbi1ib3giLCJsaWJyYXJ5IjoibWF0ZXJpYWwifX1dfSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaWNvbiJ9\\\"]            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                    <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                <section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-24b98c01 elementor-section-stretched elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"24b98c01\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-9a6c11e\\\" data-id=\\\"9a6c11e\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n                <section class=\\\"elementor-section elementor-inner-section elementor-element elementor-element-53be024 elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"53be024\\\" data-element_type=\\\"section\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-5990603\\\" data-id=\\\"5990603\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        \\t\\t<div class=\\\"elementor-element elementor-element-7f874a5a ct-copyright elementor-widget elementor-widget-text-editor\\\" data-id=\\\"7f874a5a\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>Copyright @2024 of Far East High Tech Ltd. Co.<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                    <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n        \",\"scripts\":[],\"styles\":[]}}\";}','auto'),(641,'post_format_gallery','a:15:{s:17:\"_wp_page_template\";s:7:\"default\";s:20:\"_elementor_edit_mode\";s:7:\"builder\";s:24:\"_elementor_template_type\";s:7:\"wp-post\";s:18:\"_elementor_version\";s:6:\"3.24.7\";s:15:\"_elementor_data\";s:8134:\"[{\"id\":\"7225c724\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#060606E6\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer.png\",\"id\":87},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"109cef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.3},\"elements\":[{\"id\":\"6667e1a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/logo.jpg\",\"id\":2748,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae6ecf2\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"\\u5de5\\u58341: \\u30d0\\u30af\\u30cb\\u30f3\\u7701\\u30d0\\u30af\\u30cb\\u30f3\\u5e02\\u3001\\u30ab\\u30af\\u30cb\\u30a8\\u30e0\\u533a\\u3001\\u30ab\\u30af\\u30cb\\u30a8\\u30e0\\u5de5\\u696d\\u56e3\\u5730\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}},{\"content\":\"\\u5de5\\u58342: \\u30d3\\u30f3\\u30ba\\u30aa\\u30f3\\u7701\\u3001\\u30c7\\u30a3\\u30a2\\u30f3\\u5e02\\u3001\\u30bf\\u30f3\\u30d3\\u30f3\\u533a\\u3001\\u30bf\\u30f3\\u30d5\\u30aa\\u30c3\\u30af\\u5730\\u533a\\u3001\\u30b0\\u30a8\\u30f3\\u30fb\\u30c6\\u30a3\\u30fb\\u30c8\\u30a5\\u30fc\\u30a4176\\/9\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"be1a6dd\"},{\"content\":\"0968 86 03 86\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"712a43be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.664,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e4e262b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Menu\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6e682e5b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"89\",\"style\":\"tow-col-light\",\"link_color_hover\":\"#F9A244\",\"line_color_hover\":\"#F9A244\",\"menu_align\":\"left\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"e174b97\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u55b6\\u696d\\u6642\\u9593\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"1e0523b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u6708\\u66dc\\u65e5\\uff5e\\u65e5\\u66dc\\u65e5\\uff1a24\\u6642\\u9593\\u55b6\\u696d<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ab76a16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7},\"elements\":[{\"id\":\"37a5e636\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"aa15610\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#85B23B\",\"padding\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"040\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2487ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40d8f8a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u901a\\u77e5\\u3001\\u6700\\u65b0\\u306e\\u30d6\\u30ed\\u30b0\\u3001\\u30a2\\u30a4\\u30c7\\u30a2\\u3001\\u6d1e\\u5bdf\\u3092\\u53d7\\u3051\\u53d6\\u308b\\u305f\\u3081\\u306b\\u30b5\\u30a4\\u30f3\\u30a2\\u30c3\\u30d7\\u3057\\u3066\\u304f\\u3060\\u3055\\u3044\\u3002<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d21d208\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"27383ab2\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin-box\",\"library\":\"material\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24b98c01\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"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},\"gap\":\"extended\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a6c11e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53be024\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"5990603\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"7f874a5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright @2024 of Far East High Tech Ltd. Co.<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_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},\"_css_classes\":\"ct-copyright\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]\";s:25:\"_elementor_controls_usage\";a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:2:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:1;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:16:\"link_color_hover\";i:1;s:16:\"line_color_hover\";i:1;s:10:\"menu_align\";i:1;s:17:\"menu_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:13:\"ct_newsletter\";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:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";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:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:1;}}}}}s:10:\"_edit_last\";s:1:\"1\";s:10:\"_edit_lock\";s:12:\"1742182489:1\";s:43:\"_yoast_wpseo_estimated-reading-time-minutes\";s:1:\"1\";s:12:\"_wp_old_slug\";s:9:\"footer-jp\";s:16:\"rs_page_bg_color\";s:0:\"\";s:26:\"_yoast_wpseo_content_score\";s:2:\"90\";s:14:\"_elementor_css\";a:6:{s:4:\"time\";i:1742177093;s:5:\"fonts\";a:1:{i:0;s:7:\"Poppins\";}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:3;s:9:\"fa-brands\";i:4;s:8:\"material\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}s:22:\"_elementor_page_assets\";a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"widget-image\";i:1;s:18:\"widget-text-editor\";}}s:24:\"_elementor_element_cache\";s:10585:\"{\"timeout\":1742263493,\"value\":{\"content\":\"        <section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-7225c724 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"7225c724\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-109cef8c\\\" data-id=\\\"109cef8c\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        \\t\\t<div class=\\\"elementor-element elementor-element-6667e1a9 logo-footer elementor-widget__width-initial elementor-widget elementor-widget-image\\\" data-id=\\\"6667e1a9\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"http:\\/\\/fe2tech.com\\/\\\">\\n\\t\\t\\t\\t\\t\\t\\t<img width=\\\"597\\\" height=\\\"597\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/logo.jpg\\\" class=\\\"attachment-full size-full wp-image-2748\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element data=\\\"eyJpZCI6IjRhZTZlY2YyIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsiY29udGFjdF9pbmZvIjpbeyJjb250ZW50IjoiXHU1ZGU1XHU1ODM0MTogXHUzMGQwXHUzMGFmXHUzMGNiXHUzMGYzXHU3NzAxXHUzMGQwXHUzMGFmXHUzMGNiXHUzMGYzXHU1ZTAyXHUzMDAxXHUzMGFiXHUzMGFmXHUzMGNiXHUzMGE4XHUzMGUwXHU1MzNhXHUzMDAxXHUzMGFiXHUzMGFmXHUzMGNiXHUzMGE4XHUzMGUwXHU1ZGU1XHU2OTZkXHU1NmUzXHU1NzMwIiwiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZhcyBmYS1tYXAtbWFya2VyLWFsdCIsImxpYnJhcnkiOiJmYS1zb2xpZCJ9LCJfaWQiOiJkNmE1NGIwIiwiaWNvbl9pbWFnZSI6eyJ1cmwiOiJodHRwOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvcGx1Z2luc1wvZWxlbWVudG9yXC9hc3NldHNcL2ltYWdlc1wvcGxhY2Vob2xkZXIucG5nIiwiaWQiOiIifX0seyJjb250ZW50IjoiXHU1ZGU1XHU1ODM0MjogXHUzMGQzXHUzMGYzXHUzMGJhXHUzMGFhXHUzMGYzXHU3NzAxXHUzMDAxXHUzMGM3XHUzMGEzXHUzMGEyXHUzMGYzXHU1ZTAyXHUzMDAxXHUzMGJmXHUzMGYzXHUzMGQzXHUzMGYzXHU1MzNhXHUzMDAxXHUzMGJmXHUzMGYzXHUzMGQ1XHUzMGFhXHUzMGMzXHUzMGFmXHU1NzMwXHU1MzNhXHUzMDAxXHUzMGIwXHUzMGE4XHUzMGYzXHUzMGZiXHUzMGM2XHUzMGEzXHUzMGZiXHUzMGM4XHUzMGE1XHUzMGZjXHUzMGE0MTc2XC85IiwiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZhcyBmYS1tYXAtbWFya2VyLWFsdCIsImxpYnJhcnkiOiJmYS1zb2xpZCJ9LCJpY29uX2ltYWdlIjp7InVybCI6Imh0dHA6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC9wbHVnaW5zXC9lbGVtZW50b3JcL2Fzc2V0c1wvaW1hZ2VzXC9wbGFjZWhvbGRlci5wbmciLCJpZCI6IiJ9LCJfaWQiOiJiZTFhNmRkIn0seyJjb250ZW50IjoiMDk2OCA4NiAwMyA4NiIsImN0X2ljb24iOnsidmFsdWUiOiJmYXMgZmEtcGhvbmUtYWx0IiwibGlicmFyeSI6ImZhLXNvbGlkIn0sIl9pZCI6IjQ0YTFkODIiLCJpY29uX2ltYWdlIjp7InVybCI6Imh0dHA6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC9wbHVnaW5zXC9lbGVtZW50b3JcL2Fzc2V0c1wvaW1hZ2VzXC9wbGFjZWhvbGRlci5wbmciLCJpZCI6IiJ9fV0sImNvbnRlbnRfY29sb3IiOiIjZmZmZmZmIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMTIiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9jb250YWN0X2luZm8ifQ==\\\"]            <\\/div>\\n        <\\/div>\\n                <div class=\\\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-712a43be\\\" data-id=\\\"712a43be\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6IjVlNGUyNjJiIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJNZW51IiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIxMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sIl9wYWRkaW5nIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV9jb2xvciI6IiNmZmZmZmYifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfdGl0bGUifQ==\\\"][elementor-element data=\\\"eyJpZCI6IjZlNjgyZTViIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsibWVudSI6Ijg5Iiwic3R5bGUiOiJ0b3ctY29sLWxpZ2h0IiwibGlua19jb2xvcl9ob3ZlciI6IiNGOUEyNDQiLCJsaW5lX2NvbG9yX2hvdmVyIjoiI0Y5QTI0NCIsIm1lbnVfYWxpZ24iOiJsZWZ0IiwiX2VsZW1lbnRfd2lkdGgiOiJpbml0aWFsIiwiX2VsZW1lbnRfY3VzdG9tX3dpZHRoIjp7InVuaXQiOiIlIiwic2l6ZSI6MTAwfSwiX2ZsZXhfc2l6ZSI6Im5vbmUifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfbmF2aWdhdGlvbl9tZW51In0=\\\"][elementor-element data=\\\"eyJpZCI6ImUxNzRiOTciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1NTViNlx1Njk2ZFx1NjY0Mlx1OTU5MyIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJfcGFkZGluZyI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfY29sb3IiOiIjZmZmZmZmIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X3RpdGxlIn0=\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-1e0523b8 elementor-widget elementor-widget-text-editor\\\" data-id=\\\"1e0523b8\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>\\u6708\\u66dc\\u65e5\\uff5e\\u65e5\\u66dc\\u65e5\\uff1a24\\u6642\\u9593\\u55b6\\u696d<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t            <\\/div>\\n        <\\/div>\\n                <div class=\\\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-1ab76a16\\\" data-id=\\\"1ab76a16\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6IjM3YTVlNjM2IiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJOZXdzbGV0dGVyIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIxMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sIl9wYWRkaW5nIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV9jb2xvciI6IiNmZmZmZmYifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfdGl0bGUifQ==\\\"]        <section class=\\\"elementor-section elementor-inner-section elementor-element elementor-element-aa15610 elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"aa15610\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-no \\\">\\n                    <div class=\\\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-e2487ac\\\" data-id=\\\"e2487ac\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        \\t\\t<div class=\\\"elementor-element elementor-element-40d8f8a2 elementor-widget elementor-widget-text-editor\\\" data-id=\\\"40d8f8a2\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>\\u901a\\u77e5\\u3001\\u6700\\u65b0\\u306e\\u30d6\\u30ed\\u30b0\\u3001\\u30a2\\u30a4\\u30c7\\u30a2\\u3001\\u6d1e\\u5bdf\\u3092\\u53d7\\u3051\\u53d6\\u308b\\u305f\\u3081\\u306b\\u30b5\\u30a4\\u30f3\\u30a2\\u30c3\\u30d7\\u3057\\u3066\\u304f\\u3060\\u3055\\u3044\\u3002<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element data=\\\"eyJpZCI6ImQyMWQyMDgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJzdHlsZSI6InN0eWxlMiIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjI4IiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfbmV3c2xldHRlciJ9\\\"][elementor-element data=\\\"eyJpZCI6IjI3MzgzYWIyIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsiaWNvbnMiOlt7Imljb25fbGluayI6eyJ1cmwiOiIjIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9LCJfaWQiOiIyY2E4OThjIiwiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZhYiBmYS1mYWNlYm9vay1mIiwibGlicmFyeSI6ImZhLWJyYW5kcyJ9fSx7Imljb25fbGluayI6eyJ1cmwiOiIjIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9LCJfaWQiOiIwZmNjZDc1IiwiY3RfaWNvbiI6eyJ2YWx1ZSI6Im1hdGVyaWFsIHptZGkgem1kaS1saW5rZWRpbi1ib3giLCJsaWJyYXJ5IjoibWF0ZXJpYWwifX1dfSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaWNvbiJ9\\\"]            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                    <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                <section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-24b98c01 elementor-section-stretched elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"24b98c01\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-9a6c11e\\\" data-id=\\\"9a6c11e\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n                <section class=\\\"elementor-section elementor-inner-section elementor-element elementor-element-53be024 elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"53be024\\\" data-element_type=\\\"section\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-5990603\\\" data-id=\\\"5990603\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        \\t\\t<div class=\\\"elementor-element elementor-element-7f874a5a ct-copyright elementor-widget elementor-widget-text-editor\\\" data-id=\\\"7f874a5a\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>Copyright @2024 of Far East High Tech Ltd. Co.<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                    <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n        \",\"scripts\":[],\"styles\":[]}}\";}','auto'),(642,'service_option','a:15:{s:17:\"_wp_page_template\";s:7:\"default\";s:20:\"_elementor_edit_mode\";s:7:\"builder\";s:24:\"_elementor_template_type\";s:7:\"wp-post\";s:18:\"_elementor_version\";s:6:\"3.24.7\";s:15:\"_elementor_data\";s:8134:\"[{\"id\":\"7225c724\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#060606E6\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer.png\",\"id\":87},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"109cef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.3},\"elements\":[{\"id\":\"6667e1a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/logo.jpg\",\"id\":2748,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae6ecf2\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"\\u5de5\\u58341: \\u30d0\\u30af\\u30cb\\u30f3\\u7701\\u30d0\\u30af\\u30cb\\u30f3\\u5e02\\u3001\\u30ab\\u30af\\u30cb\\u30a8\\u30e0\\u533a\\u3001\\u30ab\\u30af\\u30cb\\u30a8\\u30e0\\u5de5\\u696d\\u56e3\\u5730\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}},{\"content\":\"\\u5de5\\u58342: \\u30d3\\u30f3\\u30ba\\u30aa\\u30f3\\u7701\\u3001\\u30c7\\u30a3\\u30a2\\u30f3\\u5e02\\u3001\\u30bf\\u30f3\\u30d3\\u30f3\\u533a\\u3001\\u30bf\\u30f3\\u30d5\\u30aa\\u30c3\\u30af\\u5730\\u533a\\u3001\\u30b0\\u30a8\\u30f3\\u30fb\\u30c6\\u30a3\\u30fb\\u30c8\\u30a5\\u30fc\\u30a4176\\/9\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"be1a6dd\"},{\"content\":\"0968 86 03 86\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"712a43be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.664,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e4e262b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Menu\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6e682e5b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"89\",\"style\":\"tow-col-light\",\"link_color_hover\":\"#F9A244\",\"line_color_hover\":\"#F9A244\",\"menu_align\":\"left\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"e174b97\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u55b6\\u696d\\u6642\\u9593\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"1e0523b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u6708\\u66dc\\u65e5\\uff5e\\u65e5\\u66dc\\u65e5\\uff1a24\\u6642\\u9593\\u55b6\\u696d<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ab76a16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7},\"elements\":[{\"id\":\"37a5e636\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"aa15610\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#85B23B\",\"padding\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"040\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2487ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40d8f8a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u901a\\u77e5\\u3001\\u6700\\u65b0\\u306e\\u30d6\\u30ed\\u30b0\\u3001\\u30a2\\u30a4\\u30c7\\u30a2\\u3001\\u6d1e\\u5bdf\\u3092\\u53d7\\u3051\\u53d6\\u308b\\u305f\\u3081\\u306b\\u30b5\\u30a4\\u30f3\\u30a2\\u30c3\\u30d7\\u3057\\u3066\\u304f\\u3060\\u3055\\u3044\\u3002<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d21d208\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"27383ab2\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin-box\",\"library\":\"material\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24b98c01\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"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},\"gap\":\"extended\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a6c11e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53be024\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"5990603\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"7f874a5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright @2024 of Far East High Tech Ltd. Co.<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_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},\"_css_classes\":\"ct-copyright\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]\";s:25:\"_elementor_controls_usage\";a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:2:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:1;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:16:\"link_color_hover\";i:1;s:16:\"line_color_hover\";i:1;s:10:\"menu_align\";i:1;s:17:\"menu_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:13:\"ct_newsletter\";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:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";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:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:1;}}}}}s:10:\"_edit_last\";s:1:\"1\";s:10:\"_edit_lock\";s:12:\"1742182489:1\";s:43:\"_yoast_wpseo_estimated-reading-time-minutes\";s:1:\"1\";s:12:\"_wp_old_slug\";s:9:\"footer-jp\";s:16:\"rs_page_bg_color\";s:0:\"\";s:26:\"_yoast_wpseo_content_score\";s:2:\"90\";s:14:\"_elementor_css\";a:6:{s:4:\"time\";i:1742177093;s:5:\"fonts\";a:1:{i:0;s:7:\"Poppins\";}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:3;s:9:\"fa-brands\";i:4;s:8:\"material\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}s:22:\"_elementor_page_assets\";a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"widget-image\";i:1;s:18:\"widget-text-editor\";}}s:24:\"_elementor_element_cache\";s:10585:\"{\"timeout\":1742263493,\"value\":{\"content\":\"        <section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-7225c724 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"7225c724\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-109cef8c\\\" data-id=\\\"109cef8c\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        \\t\\t<div class=\\\"elementor-element elementor-element-6667e1a9 logo-footer elementor-widget__width-initial elementor-widget elementor-widget-image\\\" data-id=\\\"6667e1a9\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"http:\\/\\/fe2tech.com\\/\\\">\\n\\t\\t\\t\\t\\t\\t\\t<img width=\\\"597\\\" height=\\\"597\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/logo.jpg\\\" class=\\\"attachment-full size-full wp-image-2748\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element data=\\\"eyJpZCI6IjRhZTZlY2YyIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsiY29udGFjdF9pbmZvIjpbeyJjb250ZW50IjoiXHU1ZGU1XHU1ODM0MTogXHUzMGQwXHUzMGFmXHUzMGNiXHUzMGYzXHU3NzAxXHUzMGQwXHUzMGFmXHUzMGNiXHUzMGYzXHU1ZTAyXHUzMDAxXHUzMGFiXHUzMGFmXHUzMGNiXHUzMGE4XHUzMGUwXHU1MzNhXHUzMDAxXHUzMGFiXHUzMGFmXHUzMGNiXHUzMGE4XHUzMGUwXHU1ZGU1XHU2OTZkXHU1NmUzXHU1NzMwIiwiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZhcyBmYS1tYXAtbWFya2VyLWFsdCIsImxpYnJhcnkiOiJmYS1zb2xpZCJ9LCJfaWQiOiJkNmE1NGIwIiwiaWNvbl9pbWFnZSI6eyJ1cmwiOiJodHRwOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvcGx1Z2luc1wvZWxlbWVudG9yXC9hc3NldHNcL2ltYWdlc1wvcGxhY2Vob2xkZXIucG5nIiwiaWQiOiIifX0seyJjb250ZW50IjoiXHU1ZGU1XHU1ODM0MjogXHUzMGQzXHUzMGYzXHUzMGJhXHUzMGFhXHUzMGYzXHU3NzAxXHUzMDAxXHUzMGM3XHUzMGEzXHUzMGEyXHUzMGYzXHU1ZTAyXHUzMDAxXHUzMGJmXHUzMGYzXHUzMGQzXHUzMGYzXHU1MzNhXHUzMDAxXHUzMGJmXHUzMGYzXHUzMGQ1XHUzMGFhXHUzMGMzXHUzMGFmXHU1NzMwXHU1MzNhXHUzMDAxXHUzMGIwXHUzMGE4XHUzMGYzXHUzMGZiXHUzMGM2XHUzMGEzXHUzMGZiXHUzMGM4XHUzMGE1XHUzMGZjXHUzMGE0MTc2XC85IiwiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZhcyBmYS1tYXAtbWFya2VyLWFsdCIsImxpYnJhcnkiOiJmYS1zb2xpZCJ9LCJpY29uX2ltYWdlIjp7InVybCI6Imh0dHA6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC9wbHVnaW5zXC9lbGVtZW50b3JcL2Fzc2V0c1wvaW1hZ2VzXC9wbGFjZWhvbGRlci5wbmciLCJpZCI6IiJ9LCJfaWQiOiJiZTFhNmRkIn0seyJjb250ZW50IjoiMDk2OCA4NiAwMyA4NiIsImN0X2ljb24iOnsidmFsdWUiOiJmYXMgZmEtcGhvbmUtYWx0IiwibGlicmFyeSI6ImZhLXNvbGlkIn0sIl9pZCI6IjQ0YTFkODIiLCJpY29uX2ltYWdlIjp7InVybCI6Imh0dHA6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC9wbHVnaW5zXC9lbGVtZW50b3JcL2Fzc2V0c1wvaW1hZ2VzXC9wbGFjZWhvbGRlci5wbmciLCJpZCI6IiJ9fV0sImNvbnRlbnRfY29sb3IiOiIjZmZmZmZmIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMTIiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9jb250YWN0X2luZm8ifQ==\\\"]            <\\/div>\\n        <\\/div>\\n                <div class=\\\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-712a43be\\\" data-id=\\\"712a43be\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6IjVlNGUyNjJiIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJNZW51IiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIxMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sIl9wYWRkaW5nIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV9jb2xvciI6IiNmZmZmZmYifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfdGl0bGUifQ==\\\"][elementor-element data=\\\"eyJpZCI6IjZlNjgyZTViIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsibWVudSI6Ijg5Iiwic3R5bGUiOiJ0b3ctY29sLWxpZ2h0IiwibGlua19jb2xvcl9ob3ZlciI6IiNGOUEyNDQiLCJsaW5lX2NvbG9yX2hvdmVyIjoiI0Y5QTI0NCIsIm1lbnVfYWxpZ24iOiJsZWZ0IiwiX2VsZW1lbnRfd2lkdGgiOiJpbml0aWFsIiwiX2VsZW1lbnRfY3VzdG9tX3dpZHRoIjp7InVuaXQiOiIlIiwic2l6ZSI6MTAwfSwiX2ZsZXhfc2l6ZSI6Im5vbmUifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfbmF2aWdhdGlvbl9tZW51In0=\\\"][elementor-element data=\\\"eyJpZCI6ImUxNzRiOTciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1NTViNlx1Njk2ZFx1NjY0Mlx1OTU5MyIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJfcGFkZGluZyI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfY29sb3IiOiIjZmZmZmZmIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X3RpdGxlIn0=\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-1e0523b8 elementor-widget elementor-widget-text-editor\\\" data-id=\\\"1e0523b8\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>\\u6708\\u66dc\\u65e5\\uff5e\\u65e5\\u66dc\\u65e5\\uff1a24\\u6642\\u9593\\u55b6\\u696d<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t            <\\/div>\\n        <\\/div>\\n                <div class=\\\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-1ab76a16\\\" data-id=\\\"1ab76a16\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6IjM3YTVlNjM2IiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJOZXdzbGV0dGVyIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIxMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sIl9wYWRkaW5nIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV9jb2xvciI6IiNmZmZmZmYifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfdGl0bGUifQ==\\\"]        <section class=\\\"elementor-section elementor-inner-section elementor-element elementor-element-aa15610 elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"aa15610\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-no \\\">\\n                    <div class=\\\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-e2487ac\\\" data-id=\\\"e2487ac\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        \\t\\t<div class=\\\"elementor-element elementor-element-40d8f8a2 elementor-widget elementor-widget-text-editor\\\" data-id=\\\"40d8f8a2\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>\\u901a\\u77e5\\u3001\\u6700\\u65b0\\u306e\\u30d6\\u30ed\\u30b0\\u3001\\u30a2\\u30a4\\u30c7\\u30a2\\u3001\\u6d1e\\u5bdf\\u3092\\u53d7\\u3051\\u53d6\\u308b\\u305f\\u3081\\u306b\\u30b5\\u30a4\\u30f3\\u30a2\\u30c3\\u30d7\\u3057\\u3066\\u304f\\u3060\\u3055\\u3044\\u3002<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element data=\\\"eyJpZCI6ImQyMWQyMDgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJzdHlsZSI6InN0eWxlMiIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjI4IiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfbmV3c2xldHRlciJ9\\\"][elementor-element data=\\\"eyJpZCI6IjI3MzgzYWIyIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsiaWNvbnMiOlt7Imljb25fbGluayI6eyJ1cmwiOiIjIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9LCJfaWQiOiIyY2E4OThjIiwiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZhYiBmYS1mYWNlYm9vay1mIiwibGlicmFyeSI6ImZhLWJyYW5kcyJ9fSx7Imljb25fbGluayI6eyJ1cmwiOiIjIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9LCJfaWQiOiIwZmNjZDc1IiwiY3RfaWNvbiI6eyJ2YWx1ZSI6Im1hdGVyaWFsIHptZGkgem1kaS1saW5rZWRpbi1ib3giLCJsaWJyYXJ5IjoibWF0ZXJpYWwifX1dfSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaWNvbiJ9\\\"]            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                    <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                <section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-24b98c01 elementor-section-stretched elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"24b98c01\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-9a6c11e\\\" data-id=\\\"9a6c11e\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n                <section class=\\\"elementor-section elementor-inner-section elementor-element elementor-element-53be024 elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"53be024\\\" data-element_type=\\\"section\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-5990603\\\" data-id=\\\"5990603\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        \\t\\t<div class=\\\"elementor-element elementor-element-7f874a5a ct-copyright elementor-widget elementor-widget-text-editor\\\" data-id=\\\"7f874a5a\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>Copyright @2024 of Far East High Tech Ltd. Co.<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                    <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n        \",\"scripts\":[],\"styles\":[]}}\";}','auto'),(643,'portfolio_option','a:15:{s:17:\"_wp_page_template\";s:7:\"default\";s:20:\"_elementor_edit_mode\";s:7:\"builder\";s:24:\"_elementor_template_type\";s:7:\"wp-post\";s:18:\"_elementor_version\";s:6:\"3.24.7\";s:15:\"_elementor_data\";s:8134:\"[{\"id\":\"7225c724\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#060606E6\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer.png\",\"id\":87},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"109cef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.3},\"elements\":[{\"id\":\"6667e1a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/logo.jpg\",\"id\":2748,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae6ecf2\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"\\u5de5\\u58341: \\u30d0\\u30af\\u30cb\\u30f3\\u7701\\u30d0\\u30af\\u30cb\\u30f3\\u5e02\\u3001\\u30ab\\u30af\\u30cb\\u30a8\\u30e0\\u533a\\u3001\\u30ab\\u30af\\u30cb\\u30a8\\u30e0\\u5de5\\u696d\\u56e3\\u5730\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}},{\"content\":\"\\u5de5\\u58342: \\u30d3\\u30f3\\u30ba\\u30aa\\u30f3\\u7701\\u3001\\u30c7\\u30a3\\u30a2\\u30f3\\u5e02\\u3001\\u30bf\\u30f3\\u30d3\\u30f3\\u533a\\u3001\\u30bf\\u30f3\\u30d5\\u30aa\\u30c3\\u30af\\u5730\\u533a\\u3001\\u30b0\\u30a8\\u30f3\\u30fb\\u30c6\\u30a3\\u30fb\\u30c8\\u30a5\\u30fc\\u30a4176\\/9\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"be1a6dd\"},{\"content\":\"0968 86 03 86\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"712a43be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.664,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e4e262b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Menu\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6e682e5b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"89\",\"style\":\"tow-col-light\",\"link_color_hover\":\"#F9A244\",\"line_color_hover\":\"#F9A244\",\"menu_align\":\"left\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"e174b97\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u55b6\\u696d\\u6642\\u9593\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"1e0523b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u6708\\u66dc\\u65e5\\uff5e\\u65e5\\u66dc\\u65e5\\uff1a24\\u6642\\u9593\\u55b6\\u696d<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ab76a16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7},\"elements\":[{\"id\":\"37a5e636\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"aa15610\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#85B23B\",\"padding\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"040\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2487ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40d8f8a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u901a\\u77e5\\u3001\\u6700\\u65b0\\u306e\\u30d6\\u30ed\\u30b0\\u3001\\u30a2\\u30a4\\u30c7\\u30a2\\u3001\\u6d1e\\u5bdf\\u3092\\u53d7\\u3051\\u53d6\\u308b\\u305f\\u3081\\u306b\\u30b5\\u30a4\\u30f3\\u30a2\\u30c3\\u30d7\\u3057\\u3066\\u304f\\u3060\\u3055\\u3044\\u3002<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d21d208\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"27383ab2\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin-box\",\"library\":\"material\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24b98c01\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"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},\"gap\":\"extended\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a6c11e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53be024\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"5990603\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"7f874a5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright @2024 of Far East High Tech Ltd. Co.<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_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},\"_css_classes\":\"ct-copyright\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]\";s:25:\"_elementor_controls_usage\";a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:2:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:1;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:16:\"link_color_hover\";i:1;s:16:\"line_color_hover\";i:1;s:10:\"menu_align\";i:1;s:17:\"menu_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:13:\"ct_newsletter\";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:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";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:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:1;}}}}}s:10:\"_edit_last\";s:1:\"1\";s:10:\"_edit_lock\";s:12:\"1742182489:1\";s:43:\"_yoast_wpseo_estimated-reading-time-minutes\";s:1:\"1\";s:12:\"_wp_old_slug\";s:9:\"footer-jp\";s:16:\"rs_page_bg_color\";s:0:\"\";s:26:\"_yoast_wpseo_content_score\";s:2:\"90\";s:14:\"_elementor_css\";a:6:{s:4:\"time\";i:1742177093;s:5:\"fonts\";a:1:{i:0;s:7:\"Poppins\";}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:3;s:9:\"fa-brands\";i:4;s:8:\"material\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}s:22:\"_elementor_page_assets\";a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"widget-image\";i:1;s:18:\"widget-text-editor\";}}s:24:\"_elementor_element_cache\";s:10585:\"{\"timeout\":1742263493,\"value\":{\"content\":\"        <section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-7225c724 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"7225c724\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-109cef8c\\\" data-id=\\\"109cef8c\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        \\t\\t<div class=\\\"elementor-element elementor-element-6667e1a9 logo-footer elementor-widget__width-initial elementor-widget elementor-widget-image\\\" data-id=\\\"6667e1a9\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"http:\\/\\/fe2tech.com\\/\\\">\\n\\t\\t\\t\\t\\t\\t\\t<img width=\\\"597\\\" height=\\\"597\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/logo.jpg\\\" class=\\\"attachment-full size-full wp-image-2748\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element data=\\\"eyJpZCI6IjRhZTZlY2YyIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsiY29udGFjdF9pbmZvIjpbeyJjb250ZW50IjoiXHU1ZGU1XHU1ODM0MTogXHUzMGQwXHUzMGFmXHUzMGNiXHUzMGYzXHU3NzAxXHUzMGQwXHUzMGFmXHUzMGNiXHUzMGYzXHU1ZTAyXHUzMDAxXHUzMGFiXHUzMGFmXHUzMGNiXHUzMGE4XHUzMGUwXHU1MzNhXHUzMDAxXHUzMGFiXHUzMGFmXHUzMGNiXHUzMGE4XHUzMGUwXHU1ZGU1XHU2OTZkXHU1NmUzXHU1NzMwIiwiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZhcyBmYS1tYXAtbWFya2VyLWFsdCIsImxpYnJhcnkiOiJmYS1zb2xpZCJ9LCJfaWQiOiJkNmE1NGIwIiwiaWNvbl9pbWFnZSI6eyJ1cmwiOiJodHRwOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvcGx1Z2luc1wvZWxlbWVudG9yXC9hc3NldHNcL2ltYWdlc1wvcGxhY2Vob2xkZXIucG5nIiwiaWQiOiIifX0seyJjb250ZW50IjoiXHU1ZGU1XHU1ODM0MjogXHUzMGQzXHUzMGYzXHUzMGJhXHUzMGFhXHUzMGYzXHU3NzAxXHUzMDAxXHUzMGM3XHUzMGEzXHUzMGEyXHUzMGYzXHU1ZTAyXHUzMDAxXHUzMGJmXHUzMGYzXHUzMGQzXHUzMGYzXHU1MzNhXHUzMDAxXHUzMGJmXHUzMGYzXHUzMGQ1XHUzMGFhXHUzMGMzXHUzMGFmXHU1NzMwXHU1MzNhXHUzMDAxXHUzMGIwXHUzMGE4XHUzMGYzXHUzMGZiXHUzMGM2XHUzMGEzXHUzMGZiXHUzMGM4XHUzMGE1XHUzMGZjXHUzMGE0MTc2XC85IiwiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZhcyBmYS1tYXAtbWFya2VyLWFsdCIsImxpYnJhcnkiOiJmYS1zb2xpZCJ9LCJpY29uX2ltYWdlIjp7InVybCI6Imh0dHA6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC9wbHVnaW5zXC9lbGVtZW50b3JcL2Fzc2V0c1wvaW1hZ2VzXC9wbGFjZWhvbGRlci5wbmciLCJpZCI6IiJ9LCJfaWQiOiJiZTFhNmRkIn0seyJjb250ZW50IjoiMDk2OCA4NiAwMyA4NiIsImN0X2ljb24iOnsidmFsdWUiOiJmYXMgZmEtcGhvbmUtYWx0IiwibGlicmFyeSI6ImZhLXNvbGlkIn0sIl9pZCI6IjQ0YTFkODIiLCJpY29uX2ltYWdlIjp7InVybCI6Imh0dHA6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC9wbHVnaW5zXC9lbGVtZW50b3JcL2Fzc2V0c1wvaW1hZ2VzXC9wbGFjZWhvbGRlci5wbmciLCJpZCI6IiJ9fV0sImNvbnRlbnRfY29sb3IiOiIjZmZmZmZmIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMTIiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9jb250YWN0X2luZm8ifQ==\\\"]            <\\/div>\\n        <\\/div>\\n                <div class=\\\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-712a43be\\\" data-id=\\\"712a43be\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6IjVlNGUyNjJiIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJNZW51IiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIxMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sIl9wYWRkaW5nIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV9jb2xvciI6IiNmZmZmZmYifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfdGl0bGUifQ==\\\"][elementor-element data=\\\"eyJpZCI6IjZlNjgyZTViIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsibWVudSI6Ijg5Iiwic3R5bGUiOiJ0b3ctY29sLWxpZ2h0IiwibGlua19jb2xvcl9ob3ZlciI6IiNGOUEyNDQiLCJsaW5lX2NvbG9yX2hvdmVyIjoiI0Y5QTI0NCIsIm1lbnVfYWxpZ24iOiJsZWZ0IiwiX2VsZW1lbnRfd2lkdGgiOiJpbml0aWFsIiwiX2VsZW1lbnRfY3VzdG9tX3dpZHRoIjp7InVuaXQiOiIlIiwic2l6ZSI6MTAwfSwiX2ZsZXhfc2l6ZSI6Im5vbmUifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfbmF2aWdhdGlvbl9tZW51In0=\\\"][elementor-element data=\\\"eyJpZCI6ImUxNzRiOTciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1NTViNlx1Njk2ZFx1NjY0Mlx1OTU5MyIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJfcGFkZGluZyI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfY29sb3IiOiIjZmZmZmZmIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X3RpdGxlIn0=\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-1e0523b8 elementor-widget elementor-widget-text-editor\\\" data-id=\\\"1e0523b8\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>\\u6708\\u66dc\\u65e5\\uff5e\\u65e5\\u66dc\\u65e5\\uff1a24\\u6642\\u9593\\u55b6\\u696d<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t            <\\/div>\\n        <\\/div>\\n                <div class=\\\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-1ab76a16\\\" data-id=\\\"1ab76a16\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6IjM3YTVlNjM2IiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJOZXdzbGV0dGVyIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIxMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sIl9wYWRkaW5nIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV9jb2xvciI6IiNmZmZmZmYifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfdGl0bGUifQ==\\\"]        <section class=\\\"elementor-section elementor-inner-section elementor-element elementor-element-aa15610 elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"aa15610\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-no \\\">\\n                    <div class=\\\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-e2487ac\\\" data-id=\\\"e2487ac\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        \\t\\t<div class=\\\"elementor-element elementor-element-40d8f8a2 elementor-widget elementor-widget-text-editor\\\" data-id=\\\"40d8f8a2\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>\\u901a\\u77e5\\u3001\\u6700\\u65b0\\u306e\\u30d6\\u30ed\\u30b0\\u3001\\u30a2\\u30a4\\u30c7\\u30a2\\u3001\\u6d1e\\u5bdf\\u3092\\u53d7\\u3051\\u53d6\\u308b\\u305f\\u3081\\u306b\\u30b5\\u30a4\\u30f3\\u30a2\\u30c3\\u30d7\\u3057\\u3066\\u304f\\u3060\\u3055\\u3044\\u3002<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element data=\\\"eyJpZCI6ImQyMWQyMDgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJzdHlsZSI6InN0eWxlMiIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjI4IiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfbmV3c2xldHRlciJ9\\\"][elementor-element data=\\\"eyJpZCI6IjI3MzgzYWIyIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsiaWNvbnMiOlt7Imljb25fbGluayI6eyJ1cmwiOiIjIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9LCJfaWQiOiIyY2E4OThjIiwiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZhYiBmYS1mYWNlYm9vay1mIiwibGlicmFyeSI6ImZhLWJyYW5kcyJ9fSx7Imljb25fbGluayI6eyJ1cmwiOiIjIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9LCJfaWQiOiIwZmNjZDc1IiwiY3RfaWNvbiI6eyJ2YWx1ZSI6Im1hdGVyaWFsIHptZGkgem1kaS1saW5rZWRpbi1ib3giLCJsaWJyYXJ5IjoibWF0ZXJpYWwifX1dfSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaWNvbiJ9\\\"]            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                    <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                <section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-24b98c01 elementor-section-stretched elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"24b98c01\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-9a6c11e\\\" data-id=\\\"9a6c11e\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n                <section class=\\\"elementor-section elementor-inner-section elementor-element elementor-element-53be024 elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"53be024\\\" data-element_type=\\\"section\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-5990603\\\" data-id=\\\"5990603\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        \\t\\t<div class=\\\"elementor-element elementor-element-7f874a5a ct-copyright elementor-widget elementor-widget-text-editor\\\" data-id=\\\"7f874a5a\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>Copyright @2024 of Far East High Tech Ltd. Co.<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                    <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n        \",\"scripts\":[],\"styles\":[]}}\";}','auto'),(644,'post_option','a:15:{s:17:\"_wp_page_template\";s:7:\"default\";s:20:\"_elementor_edit_mode\";s:7:\"builder\";s:24:\"_elementor_template_type\";s:7:\"wp-post\";s:18:\"_elementor_version\";s:6:\"3.24.7\";s:15:\"_elementor_data\";s:8134:\"[{\"id\":\"7225c724\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#060606E6\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer.png\",\"id\":87},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"109cef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.3},\"elements\":[{\"id\":\"6667e1a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/logo.jpg\",\"id\":2748,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae6ecf2\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"\\u5de5\\u58341: \\u30d0\\u30af\\u30cb\\u30f3\\u7701\\u30d0\\u30af\\u30cb\\u30f3\\u5e02\\u3001\\u30ab\\u30af\\u30cb\\u30a8\\u30e0\\u533a\\u3001\\u30ab\\u30af\\u30cb\\u30a8\\u30e0\\u5de5\\u696d\\u56e3\\u5730\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}},{\"content\":\"\\u5de5\\u58342: \\u30d3\\u30f3\\u30ba\\u30aa\\u30f3\\u7701\\u3001\\u30c7\\u30a3\\u30a2\\u30f3\\u5e02\\u3001\\u30bf\\u30f3\\u30d3\\u30f3\\u533a\\u3001\\u30bf\\u30f3\\u30d5\\u30aa\\u30c3\\u30af\\u5730\\u533a\\u3001\\u30b0\\u30a8\\u30f3\\u30fb\\u30c6\\u30a3\\u30fb\\u30c8\\u30a5\\u30fc\\u30a4176\\/9\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"be1a6dd\"},{\"content\":\"0968 86 03 86\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"712a43be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.664,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e4e262b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Menu\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6e682e5b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"89\",\"style\":\"tow-col-light\",\"link_color_hover\":\"#F9A244\",\"line_color_hover\":\"#F9A244\",\"menu_align\":\"left\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"e174b97\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u55b6\\u696d\\u6642\\u9593\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"1e0523b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u6708\\u66dc\\u65e5\\uff5e\\u65e5\\u66dc\\u65e5\\uff1a24\\u6642\\u9593\\u55b6\\u696d<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ab76a16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7},\"elements\":[{\"id\":\"37a5e636\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"aa15610\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#85B23B\",\"padding\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"040\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2487ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40d8f8a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u901a\\u77e5\\u3001\\u6700\\u65b0\\u306e\\u30d6\\u30ed\\u30b0\\u3001\\u30a2\\u30a4\\u30c7\\u30a2\\u3001\\u6d1e\\u5bdf\\u3092\\u53d7\\u3051\\u53d6\\u308b\\u305f\\u3081\\u306b\\u30b5\\u30a4\\u30f3\\u30a2\\u30c3\\u30d7\\u3057\\u3066\\u304f\\u3060\\u3055\\u3044\\u3002<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d21d208\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"27383ab2\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin-box\",\"library\":\"material\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24b98c01\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"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},\"gap\":\"extended\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a6c11e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53be024\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"5990603\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"7f874a5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright @2024 of Far East High Tech Ltd. Co.<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_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},\"_css_classes\":\"ct-copyright\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]\";s:25:\"_elementor_controls_usage\";a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:2:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:1;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:16:\"link_color_hover\";i:1;s:16:\"line_color_hover\";i:1;s:10:\"menu_align\";i:1;s:17:\"menu_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:13:\"ct_newsletter\";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:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";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:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:1;}}}}}s:10:\"_edit_last\";s:1:\"1\";s:10:\"_edit_lock\";s:12:\"1742182489:1\";s:43:\"_yoast_wpseo_estimated-reading-time-minutes\";s:1:\"1\";s:12:\"_wp_old_slug\";s:9:\"footer-jp\";s:16:\"rs_page_bg_color\";s:0:\"\";s:26:\"_yoast_wpseo_content_score\";s:2:\"90\";s:14:\"_elementor_css\";a:6:{s:4:\"time\";i:1742177093;s:5:\"fonts\";a:1:{i:0;s:7:\"Poppins\";}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:3;s:9:\"fa-brands\";i:4;s:8:\"material\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}s:22:\"_elementor_page_assets\";a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"widget-image\";i:1;s:18:\"widget-text-editor\";}}s:24:\"_elementor_element_cache\";s:10585:\"{\"timeout\":1742263493,\"value\":{\"content\":\"        <section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-7225c724 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"7225c724\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-109cef8c\\\" data-id=\\\"109cef8c\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        \\t\\t<div class=\\\"elementor-element elementor-element-6667e1a9 logo-footer elementor-widget__width-initial elementor-widget elementor-widget-image\\\" data-id=\\\"6667e1a9\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"http:\\/\\/fe2tech.com\\/\\\">\\n\\t\\t\\t\\t\\t\\t\\t<img width=\\\"597\\\" height=\\\"597\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/logo.jpg\\\" class=\\\"attachment-full size-full wp-image-2748\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element data=\\\"eyJpZCI6IjRhZTZlY2YyIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsiY29udGFjdF9pbmZvIjpbeyJjb250ZW50IjoiXHU1ZGU1XHU1ODM0MTogXHUzMGQwXHUzMGFmXHUzMGNiXHUzMGYzXHU3NzAxXHUzMGQwXHUzMGFmXHUzMGNiXHUzMGYzXHU1ZTAyXHUzMDAxXHUzMGFiXHUzMGFmXHUzMGNiXHUzMGE4XHUzMGUwXHU1MzNhXHUzMDAxXHUzMGFiXHUzMGFmXHUzMGNiXHUzMGE4XHUzMGUwXHU1ZGU1XHU2OTZkXHU1NmUzXHU1NzMwIiwiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZhcyBmYS1tYXAtbWFya2VyLWFsdCIsImxpYnJhcnkiOiJmYS1zb2xpZCJ9LCJfaWQiOiJkNmE1NGIwIiwiaWNvbl9pbWFnZSI6eyJ1cmwiOiJodHRwOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvcGx1Z2luc1wvZWxlbWVudG9yXC9hc3NldHNcL2ltYWdlc1wvcGxhY2Vob2xkZXIucG5nIiwiaWQiOiIifX0seyJjb250ZW50IjoiXHU1ZGU1XHU1ODM0MjogXHUzMGQzXHUzMGYzXHUzMGJhXHUzMGFhXHUzMGYzXHU3NzAxXHUzMDAxXHUzMGM3XHUzMGEzXHUzMGEyXHUzMGYzXHU1ZTAyXHUzMDAxXHUzMGJmXHUzMGYzXHUzMGQzXHUzMGYzXHU1MzNhXHUzMDAxXHUzMGJmXHUzMGYzXHUzMGQ1XHUzMGFhXHUzMGMzXHUzMGFmXHU1NzMwXHU1MzNhXHUzMDAxXHUzMGIwXHUzMGE4XHUzMGYzXHUzMGZiXHUzMGM2XHUzMGEzXHUzMGZiXHUzMGM4XHUzMGE1XHUzMGZjXHUzMGE0MTc2XC85IiwiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZhcyBmYS1tYXAtbWFya2VyLWFsdCIsImxpYnJhcnkiOiJmYS1zb2xpZCJ9LCJpY29uX2ltYWdlIjp7InVybCI6Imh0dHA6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC9wbHVnaW5zXC9lbGVtZW50b3JcL2Fzc2V0c1wvaW1hZ2VzXC9wbGFjZWhvbGRlci5wbmciLCJpZCI6IiJ9LCJfaWQiOiJiZTFhNmRkIn0seyJjb250ZW50IjoiMDk2OCA4NiAwMyA4NiIsImN0X2ljb24iOnsidmFsdWUiOiJmYXMgZmEtcGhvbmUtYWx0IiwibGlicmFyeSI6ImZhLXNvbGlkIn0sIl9pZCI6IjQ0YTFkODIiLCJpY29uX2ltYWdlIjp7InVybCI6Imh0dHA6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC9wbHVnaW5zXC9lbGVtZW50b3JcL2Fzc2V0c1wvaW1hZ2VzXC9wbGFjZWhvbGRlci5wbmciLCJpZCI6IiJ9fV0sImNvbnRlbnRfY29sb3IiOiIjZmZmZmZmIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMTIiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9jb250YWN0X2luZm8ifQ==\\\"]            <\\/div>\\n        <\\/div>\\n                <div class=\\\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-712a43be\\\" data-id=\\\"712a43be\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6IjVlNGUyNjJiIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJNZW51IiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIxMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sIl9wYWRkaW5nIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV9jb2xvciI6IiNmZmZmZmYifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfdGl0bGUifQ==\\\"][elementor-element data=\\\"eyJpZCI6IjZlNjgyZTViIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsibWVudSI6Ijg5Iiwic3R5bGUiOiJ0b3ctY29sLWxpZ2h0IiwibGlua19jb2xvcl9ob3ZlciI6IiNGOUEyNDQiLCJsaW5lX2NvbG9yX2hvdmVyIjoiI0Y5QTI0NCIsIm1lbnVfYWxpZ24iOiJsZWZ0IiwiX2VsZW1lbnRfd2lkdGgiOiJpbml0aWFsIiwiX2VsZW1lbnRfY3VzdG9tX3dpZHRoIjp7InVuaXQiOiIlIiwic2l6ZSI6MTAwfSwiX2ZsZXhfc2l6ZSI6Im5vbmUifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfbmF2aWdhdGlvbl9tZW51In0=\\\"][elementor-element data=\\\"eyJpZCI6ImUxNzRiOTciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1NTViNlx1Njk2ZFx1NjY0Mlx1OTU5MyIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJfcGFkZGluZyI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfY29sb3IiOiIjZmZmZmZmIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X3RpdGxlIn0=\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-1e0523b8 elementor-widget elementor-widget-text-editor\\\" data-id=\\\"1e0523b8\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>\\u6708\\u66dc\\u65e5\\uff5e\\u65e5\\u66dc\\u65e5\\uff1a24\\u6642\\u9593\\u55b6\\u696d<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t            <\\/div>\\n        <\\/div>\\n                <div class=\\\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-1ab76a16\\\" data-id=\\\"1ab76a16\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6IjM3YTVlNjM2IiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJOZXdzbGV0dGVyIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIxMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sIl9wYWRkaW5nIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV9jb2xvciI6IiNmZmZmZmYifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfdGl0bGUifQ==\\\"]        <section class=\\\"elementor-section elementor-inner-section elementor-element elementor-element-aa15610 elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"aa15610\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-no \\\">\\n                    <div class=\\\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-e2487ac\\\" data-id=\\\"e2487ac\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        \\t\\t<div class=\\\"elementor-element elementor-element-40d8f8a2 elementor-widget elementor-widget-text-editor\\\" data-id=\\\"40d8f8a2\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>\\u901a\\u77e5\\u3001\\u6700\\u65b0\\u306e\\u30d6\\u30ed\\u30b0\\u3001\\u30a2\\u30a4\\u30c7\\u30a2\\u3001\\u6d1e\\u5bdf\\u3092\\u53d7\\u3051\\u53d6\\u308b\\u305f\\u3081\\u306b\\u30b5\\u30a4\\u30f3\\u30a2\\u30c3\\u30d7\\u3057\\u3066\\u304f\\u3060\\u3055\\u3044\\u3002<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element data=\\\"eyJpZCI6ImQyMWQyMDgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJzdHlsZSI6InN0eWxlMiIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjI4IiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfbmV3c2xldHRlciJ9\\\"][elementor-element data=\\\"eyJpZCI6IjI3MzgzYWIyIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsiaWNvbnMiOlt7Imljb25fbGluayI6eyJ1cmwiOiIjIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9LCJfaWQiOiIyY2E4OThjIiwiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZhYiBmYS1mYWNlYm9vay1mIiwibGlicmFyeSI6ImZhLWJyYW5kcyJ9fSx7Imljb25fbGluayI6eyJ1cmwiOiIjIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9LCJfaWQiOiIwZmNjZDc1IiwiY3RfaWNvbiI6eyJ2YWx1ZSI6Im1hdGVyaWFsIHptZGkgem1kaS1saW5rZWRpbi1ib3giLCJsaWJyYXJ5IjoibWF0ZXJpYWwifX1dfSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaWNvbiJ9\\\"]            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                    <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                <section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-24b98c01 elementor-section-stretched elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"24b98c01\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-9a6c11e\\\" data-id=\\\"9a6c11e\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n                <section class=\\\"elementor-section elementor-inner-section elementor-element elementor-element-53be024 elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"53be024\\\" data-element_type=\\\"section\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-5990603\\\" data-id=\\\"5990603\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        \\t\\t<div class=\\\"elementor-element elementor-element-7f874a5a ct-copyright elementor-widget elementor-widget-text-editor\\\" data-id=\\\"7f874a5a\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>Copyright @2024 of Far East High Tech Ltd. Co.<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                    <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n        \",\"scripts\":[],\"styles\":[]}}\";}','auto'),(651,'woocommerce_admin_customize_store_completed','yes','auto'),(652,'woocommerce_maybe_regenerate_images_hash','1dbdbb7f9d8f3673569b901ccf7fc9a5','auto'),(954,'_transient_shipping-transient-version','1729267242','on'),(1072,'_transient_woocommerce_reports-transient-version','1729346547','on'),(1081,'woocommerce_marketplace_suggestions','a:2:{s:11:\"suggestions\";a:28:{i:0;a:4:{s:4:\"slug\";s:28:\"product-edit-meta-tab-header\";s:7:\"context\";s:28:\"product-edit-meta-tab-header\";s:5:\"title\";s:22:\"Recommended extensions\";s:13:\"allow-dismiss\";b:0;}i:1;a:6:{s:4:\"slug\";s:39:\"product-edit-meta-tab-footer-browse-all\";s:7:\"context\";s:28:\"product-edit-meta-tab-footer\";s:9:\"link-text\";s:21:\"Browse all extensions\";s:3:\"url\";s:64:\"https://woocommerce.com/product-category/woocommerce-extensions/\";s:8:\"promoted\";s:31:\"category-woocommerce-extensions\";s:13:\"allow-dismiss\";b:0;}i:2;a:9:{s:4:\"slug\";s:46:\"product-edit-mailchimp-woocommerce-memberships\";s:7:\"product\";s:33:\"woocommerce-memberships-mailchimp\";s:14:\"show-if-active\";a:1:{i:0;s:23:\"woocommerce-memberships\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:116:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/mailchimp-for-memberships.svg\";s:5:\"title\";s:25:\"Mailchimp for Memberships\";s:4:\"copy\";s:79:\"Completely automate your email lists by syncing membership changes to Mailchimp\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:67:\"https://woocommerce.com/products/mailchimp-woocommerce-memberships/\";}i:3;a:9:{s:4:\"slug\";s:19:\"product-edit-addons\";s:7:\"product\";s:26:\"woocommerce-product-addons\";s:14:\"show-if-active\";a:2:{i:0;s:25:\"woocommerce-subscriptions\";i:1;s:20:\"woocommerce-bookings\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/product-add-ons.svg\";s:5:\"title\";s:15:\"Product Add-Ons\";s:4:\"copy\";s:93:\"Offer add-ons like gift wrapping, special messages or other special options for your products\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/product-add-ons/\";}i:4;a:9:{s:4:\"slug\";s:46:\"product-edit-woocommerce-subscriptions-gifting\";s:7:\"product\";s:33:\"woocommerce-subscriptions-gifting\";s:14:\"show-if-active\";a:1:{i:0;s:25:\"woocommerce-subscriptions\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:116:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/gifting-for-subscriptions.svg\";s:5:\"title\";s:25:\"Gifting for Subscriptions\";s:4:\"copy\";s:70:\"Let customers buy subscriptions for others - they\'re the ultimate gift\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:67:\"https://woocommerce.com/products/woocommerce-subscriptions-gifting/\";}i:5;a:9:{s:4:\"slug\";s:42:\"product-edit-teams-woocommerce-memberships\";s:7:\"product\";s:33:\"woocommerce-memberships-for-teams\";s:14:\"show-if-active\";a:1:{i:0;s:23:\"woocommerce-memberships\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:112:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/teams-for-memberships.svg\";s:5:\"title\";s:21:\"Teams for Memberships\";s:4:\"copy\";s:123:\"Adds B2B functionality to WooCommerce Memberships, allowing sites to sell team, group, corporate, or family member accounts\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:63:\"https://woocommerce.com/products/teams-woocommerce-memberships/\";}i:6;a:8:{s:4:\"slug\";s:29:\"product-edit-variation-images\";s:7:\"product\";s:39:\"woocommerce-additional-variation-images\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:118:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/additional-variation-images.svg\";s:5:\"title\";s:27:\"Additional Variation Images\";s:4:\"copy\";s:72:\"Showcase your products in the best light with a image for each variation\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:73:\"https://woocommerce.com/products/woocommerce-additional-variation-images/\";}i:7;a:9:{s:4:\"slug\";s:47:\"product-edit-woocommerce-subscription-downloads\";s:7:\"product\";s:34:\"woocommerce-subscription-downloads\";s:14:\"show-if-active\";a:1:{i:0;s:25:\"woocommerce-subscriptions\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:113:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/subscription-downloads.svg\";s:5:\"title\";s:22:\"Subscription Downloads\";s:4:\"copy\";s:57:\"Give customers special downloads with their subscriptions\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:68:\"https://woocommerce.com/products/woocommerce-subscription-downloads/\";}i:8;a:8:{s:4:\"slug\";s:31:\"product-edit-min-max-quantities\";s:7:\"product\";s:30:\"woocommerce-min-max-quantities\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:109:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/min-max-quantities.svg\";s:5:\"title\";s:18:\"Min/Max Quantities\";s:4:\"copy\";s:81:\"Specify minimum and maximum allowed product quantities for orders to be completed\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:52:\"https://woocommerce.com/products/min-max-quantities/\";}i:9;a:8:{s:4:\"slug\";s:28:\"product-edit-name-your-price\";s:7:\"product\";s:27:\"woocommerce-name-your-price\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/name-your-price.svg\";s:5:\"title\";s:15:\"Name Your Price\";s:4:\"copy\";s:70:\"Let customers pay what they want - useful for donations, tips and more\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/name-your-price/\";}i:10;a:8:{s:4:\"slug\";s:42:\"product-edit-woocommerce-one-page-checkout\";s:7:\"product\";s:29:\"woocommerce-one-page-checkout\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/one-page-checkout.svg\";s:5:\"title\";s:17:\"One Page Checkout\";s:4:\"copy\";s:92:\"Don\'t make customers click around - let them choose products, checkout & pay all on one page\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:63:\"https://woocommerce.com/products/woocommerce-one-page-checkout/\";}i:11;a:9:{s:4:\"slug\";s:24:\"product-edit-automatewoo\";s:7:\"product\";s:11:\"automatewoo\";s:14:\"show-if-active\";a:1:{i:0;s:25:\"woocommerce-subscriptions\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:104:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/subscriptions.svg\";s:5:\"title\";s:23:\"Automate your marketing\";s:4:\"copy\";s:89:\"Win customers and keep them coming back with a nearly endless range of powerful workflows\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:45:\"https://woocommerce.com/products/automatewoo/\";}i:12;a:4:{s:4:\"slug\";s:19:\"orders-empty-header\";s:7:\"context\";s:24:\"orders-list-empty-header\";s:5:\"title\";s:20:\"Tools for your store\";s:13:\"allow-dismiss\";b:0;}i:13;a:6:{s:4:\"slug\";s:30:\"orders-empty-footer-browse-all\";s:7:\"context\";s:24:\"orders-list-empty-footer\";s:9:\"link-text\";s:21:\"Browse all extensions\";s:3:\"url\";s:64:\"https://woocommerce.com/product-category/woocommerce-extensions/\";s:8:\"promoted\";s:31:\"category-woocommerce-extensions\";s:13:\"allow-dismiss\";b:0;}i:14;a:8:{s:4:\"slug\";s:19:\"orders-empty-wc-pay\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:20:\"woocommerce-payments\";s:4:\"icon\";s:111:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/woocommerce-payments.svg\";s:5:\"title\";s:11:\"WooPayments\";s:4:\"copy\";s:125:\"Securely accept payments and manage transactions directly from your WooCommerce dashboard – no setup costs or monthly fees.\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:45:\"https://woocommerce.com/products/woopayments/\";}i:15;a:8:{s:4:\"slug\";s:19:\"orders-empty-zapier\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:18:\"woocommerce-zapier\";s:4:\"icon\";s:97:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/zapier.svg\";s:5:\"title\";s:6:\"Zapier\";s:4:\"copy\";s:88:\"Save time and increase productivity by connecting your store to more than 1000+ services\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:52:\"https://woocommerce.com/products/woocommerce-zapier/\";}i:16;a:8:{s:4:\"slug\";s:30:\"orders-empty-shipment-tracking\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:29:\"woocommerce-shipment-tracking\";s:4:\"icon\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/shipment-tracking.svg\";s:5:\"title\";s:17:\"Shipment Tracking\";s:4:\"copy\";s:86:\"Let customers know when their orders will arrive by adding shipment tracking to emails\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:51:\"https://woocommerce.com/products/shipment-tracking/\";}i:17;a:8:{s:4:\"slug\";s:32:\"orders-empty-table-rate-shipping\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:31:\"woocommerce-table-rate-shipping\";s:4:\"icon\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/table-rate-shipping.svg\";s:5:\"title\";s:19:\"Table Rate Shipping\";s:4:\"copy\";s:122:\"Advanced, flexible shipping. Define multiple shipping rates based on location, price, weight, shipping class or item count\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:53:\"https://woocommerce.com/products/table-rate-shipping/\";}i:18;a:8:{s:4:\"slug\";s:40:\"orders-empty-shipping-carrier-extensions\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:4:\"icon\";s:118:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/shipping-carrier-extensions.svg\";s:5:\"title\";s:27:\"Shipping Carrier Extensions\";s:4:\"copy\";s:116:\"Show live rates from FedEx, UPS, USPS and more directly on your store - never under or overcharge for shipping again\";s:11:\"button-text\";s:13:\"Find Carriers\";s:8:\"promoted\";s:26:\"category-shipping-carriers\";s:3:\"url\";s:99:\"https://woocommerce.com/product-category/woocommerce-extensions/shipping-methods/shipping-carriers/\";}i:19;a:8:{s:4:\"slug\";s:32:\"orders-empty-google-product-feed\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:25:\"woocommerce-product-feeds\";s:4:\"icon\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/google-product-feed.svg\";s:5:\"title\";s:19:\"Google Product Feed\";s:4:\"copy\";s:76:\"Increase sales by letting customers find you when they\'re shopping on Google\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:53:\"https://woocommerce.com/products/google-product-feed/\";}i:20;a:4:{s:4:\"slug\";s:35:\"products-empty-header-product-types\";s:7:\"context\";s:26:\"products-list-empty-header\";s:5:\"title\";s:23:\"Other types of products\";s:13:\"allow-dismiss\";b:0;}i:21;a:6:{s:4:\"slug\";s:32:\"products-empty-footer-browse-all\";s:7:\"context\";s:26:\"products-list-empty-footer\";s:9:\"link-text\";s:21:\"Browse all extensions\";s:3:\"url\";s:64:\"https://woocommerce.com/product-category/woocommerce-extensions/\";s:8:\"promoted\";s:31:\"category-woocommerce-extensions\";s:13:\"allow-dismiss\";b:0;}i:22;a:8:{s:4:\"slug\";s:30:\"products-empty-product-vendors\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:27:\"woocommerce-product-vendors\";s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/product-vendors.svg\";s:5:\"title\";s:15:\"Product Vendors\";s:4:\"copy\";s:47:\"Turn your store into a multi-vendor marketplace\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/product-vendors/\";}i:23;a:8:{s:4:\"slug\";s:26:\"products-empty-memberships\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:23:\"woocommerce-memberships\";s:4:\"icon\";s:102:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/memberships.svg\";s:5:\"title\";s:11:\"Memberships\";s:4:\"copy\";s:76:\"Give members access to restricted content or products, for a fee or for free\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:57:\"https://woocommerce.com/products/woocommerce-memberships/\";}i:24;a:9:{s:4:\"slug\";s:35:\"products-empty-woocommerce-deposits\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:20:\"woocommerce-deposits\";s:14:\"show-if-active\";a:1:{i:0;s:20:\"woocommerce-bookings\";}s:4:\"icon\";s:99:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/deposits.svg\";s:5:\"title\";s:8:\"Deposits\";s:4:\"copy\";s:75:\"Make it easier for customers to pay by offering a deposit or a payment plan\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:54:\"https://woocommerce.com/products/woocommerce-deposits/\";}i:25;a:8:{s:4:\"slug\";s:40:\"products-empty-woocommerce-subscriptions\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:25:\"woocommerce-subscriptions\";s:4:\"icon\";s:104:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/subscriptions.svg\";s:5:\"title\";s:13:\"Subscriptions\";s:4:\"copy\";s:97:\"Let customers subscribe to your products or services and pay on a weekly, monthly or annual basis\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:59:\"https://woocommerce.com/products/woocommerce-subscriptions/\";}i:26;a:8:{s:4:\"slug\";s:35:\"products-empty-woocommerce-bookings\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:20:\"woocommerce-bookings\";s:4:\"icon\";s:99:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/bookings.svg\";s:5:\"title\";s:8:\"Bookings\";s:4:\"copy\";s:99:\"Allow customers to book appointments, make reservations or rent equipment without leaving your site\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:54:\"https://woocommerce.com/products/woocommerce-bookings/\";}i:27;a:8:{s:4:\"slug\";s:30:\"products-empty-product-bundles\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:27:\"woocommerce-product-bundles\";s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/product-bundles.svg\";s:5:\"title\";s:15:\"Product Bundles\";s:4:\"copy\";s:49:\"Offer customizable bundles and assembled products\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/product-bundles/\";}}s:7:\"updated\";i:1729346549;}','off'),(1082,'woocommerce_task_list_tracked_completed_tasks','a:3:{i:0;s:15:\"customize-store\";i:1;s:8:\"products\";i:2;s:17:\"launch-your-store\";}','auto'),(1084,'service_option-transients','a:1:{s:14:\"changed_values\";a:0:{}}','auto'),(1172,'ct_page_options-transients','a:1:{s:14:\"changed_values\";a:0:{}}','auto'),(1199,'https_detection_errors','a:2:{s:23:\"ssl_verification_failed\";a:1:{i:0;s:24:\"SSL verification failed.\";}s:17:\"bad_response_code\";a:1:{i:0;s:21:\"Internal Server Error\";}}','auto'),(1200,'_transient_health-check-site-status-result','{\"good\":14,\"recommended\":7,\"critical\":3}','on'),(1255,'product_option-transients','a:1:{s:14:\"changed_values\";a:0:{}}','auto'),(1267,'product_cat_children','a:0:{}','auto'),(1357,'rs-tracking-data','a:6:{s:12:\"html_exports\";i:0;s:11:\"environment\";a:2:{s:7:\"version\";s:6:\"6.7.20\";s:6:\"engine\";i:7;}s:8:\"licensed\";b:1;s:6:\"slider\";a:9:{s:6:\"number\";i:1;s:7:\"premium\";i:0;s:6:\"import\";i:0;s:7:\"sources\";a:5:{s:6:\"custom\";i:1;s:4:\"post\";i:0;s:11:\"woocommerce\";i:0;s:6:\"social\";i:0;s:13:\"social_detail\";a:0:{}}s:11:\"navigations\";a:8:{s:6:\"arrows\";i:1;s:7:\"bullets\";i:0;s:4:\"tabs\";i:0;s:8:\"scrubber\";i:0;s:6:\"thumbs\";i:0;s:5:\"mouse\";i:0;s:5:\"swipe\";i:0;s:8:\"keyboard\";i:0;}s:8:\"parallax\";i:0;s:13:\"scrolleffects\";i:0;s:15:\"timeline_scroll\";i:0;s:11:\"color_skins\";i:1;}s:6:\"slides\";a:3:{s:6:\"number\";i:7;s:10:\"background\";a:1:{s:5:\"image\";i:7;}s:8:\"kenburns\";i:0;}s:5:\"layer\";a:9:{s:6:\"number\";i:35;s:5:\"types\";a:4:{s:4:\"text\";i:16;s:5:\"group\";i:7;s:6:\"button\";i:5;s:5:\"shape\";i:7;}s:7:\"actions\";a:1:{s:4:\"link\";i:7;}s:6:\"frames\";a:3:{s:7:\"frame_0\";i:35;s:7:\"frame_1\";i:35;s:9:\"frame_999\";i:35;}s:7:\"presets\";a:0:{}s:16:\"presets_modified\";i:0;s:4:\"loop\";i:0;s:7:\"library\";i:0;s:2:\"in\";a:2:{s:6:\"column\";i:0;s:5:\"group\";i:14;}}}','auto'),(1358,'revslider-uid','553993ee0809','auto'),(1375,'_transient_woocommerce_product_task_product_count_transient','5','on'),(1403,'_site_transient_wp_plugin_dependencies_plugin_data','a:0:{}','off'),(1406,'widget_akismet_widget','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(1408,'jetpack_connection_active_plugins','a:1:{s:11:\"woocommerce\";a:1:{s:4:\"name\";s:11:\"WooCommerce\";}}','auto'),(1444,'wc_blocks_use_blockified_product_grid_block_as_template','1','auto'),(1447,'woocommerce_hooked_blocks_version','9.3.3','auto'),(1916,'_transient_jetpack_connection_active_plugins_refresh','1729479667','on'),(1921,'_elementor_editor_upgrade_notice_dismissed','1742177681','auto'),(1959,'portfolio_option-transients','a:1:{s:14:\"changed_values\";a:0:{}}','auto'),(1990,'secret_key','6Y@0rU>xKsc@jWAx,_@I_0:n?B#^n(Cb~|me*N0fbHXolRE>NXfn!<T7(gaIz,zq','off'),(2052,'post_option-transients','a:1:{s:14:\"changed_values\";a:0:{}}','auto'),(2226,'yoast_migrations_free','a:1:{s:7:\"version\";s:4:\"23.7\";}','auto'),(2227,'wpseo','a:105:{s:8:\"tracking\";b:0;s:16:\"toggled_tracking\";b:0;s:22:\"license_server_version\";b:0;s:15:\"ms_defaults_set\";b:0;s:40:\"ignore_search_engines_discouraged_notice\";b:0;s:19:\"indexing_first_time\";b:1;s:16:\"indexing_started\";b:0;s:15:\"indexing_reason\";s:26:\"permalink_settings_changed\";s:29:\"indexables_indexing_completed\";b:1;s:13:\"index_now_key\";s:0:\"\";s:7:\"version\";s:4:\"23.7\";s:16:\"previous_version\";s:0:\"\";s:20:\"disableadvanced_meta\";b:1;s:30:\"enable_headless_rest_endpoints\";b:1;s:17:\"ryte_indexability\";b:0;s:11:\"baiduverify\";s:0:\"\";s:12:\"googleverify\";s:0:\"\";s:8:\"msverify\";s:0:\"\";s:12:\"yandexverify\";s:0:\"\";s:9:\"site_type\";s:0:\"\";s:20:\"has_multiple_authors\";s:0:\"\";s:16:\"environment_type\";s:0:\"\";s:23:\"content_analysis_active\";b:1;s:23:\"keyword_analysis_active\";b:1;s:34:\"inclusive_language_analysis_active\";b:0;s:21:\"enable_admin_bar_menu\";b:1;s:26:\"enable_cornerstone_content\";b:1;s:18:\"enable_xml_sitemap\";b:1;s:24:\"enable_text_link_counter\";b:1;s:16:\"enable_index_now\";b:1;s:19:\"enable_ai_generator\";b:1;s:22:\"ai_enabled_pre_default\";b:0;s:22:\"show_onboarding_notice\";b:1;s:18:\"first_activated_on\";i:1730090789;s:13:\"myyoast-oauth\";b:0;s:26:\"semrush_integration_active\";b:1;s:14:\"semrush_tokens\";a:0:{}s:20:\"semrush_country_code\";s:2:\"us\";s:19:\"permalink_structure\";s:36:\"/%year%/%monthnum%/%day%/%postname%/\";s:8:\"home_url\";s:19:\"https://fe2tech.com\";s:18:\"dynamic_permalinks\";b:0;s:17:\"category_base_url\";s:0:\"\";s:12:\"tag_base_url\";s:0:\"\";s:21:\"custom_taxonomy_slugs\";a:9:{s:8:\"language\";s:8:\"language\";s:17:\"post_translations\";s:17:\"post_translations\";s:13:\"term_language\";s:13:\"term_language\";s:17:\"term_translations\";s:17:\"term_translations\";s:18:\"portfolio-category\";s:18:\"portfolio-category\";s:16:\"service-category\";s:16:\"service-category\";s:22:\"elementor_library_type\";s:22:\"elementor_library_type\";s:26:\"elementor_library_category\";s:26:\"elementor_library_category\";s:16:\"wpforms_form_tag\";s:16:\"wpforms_form_tag\";}s:29:\"enable_enhanced_slack_sharing\";b:1;s:23:\"enable_metabox_insights\";b:1;s:23:\"enable_link_suggestions\";b:1;s:26:\"algolia_integration_active\";b:0;s:14:\"import_cursors\";a:0:{}s:13:\"workouts_data\";a:1:{s:13:\"configuration\";a:1:{s:13:\"finishedSteps\";a:0:{}}}s:28:\"configuration_finished_steps\";a:0:{}s:36:\"dismiss_configuration_workout_notice\";b:0;s:34:\"dismiss_premium_deactivated_notice\";b:0;s:19:\"importing_completed\";a:0:{}s:26:\"wincher_integration_active\";b:1;s:14:\"wincher_tokens\";a:0:{}s:36:\"wincher_automatically_add_keyphrases\";b:0;s:18:\"wincher_website_id\";s:0:\"\";s:18:\"first_time_install\";b:1;s:34:\"should_redirect_after_install_free\";b:0;s:34:\"activation_redirect_timestamp_free\";i:1730090791;s:18:\"remove_feed_global\";b:0;s:27:\"remove_feed_global_comments\";b:0;s:25:\"remove_feed_post_comments\";b:0;s:19:\"remove_feed_authors\";b:0;s:22:\"remove_feed_categories\";b:0;s:16:\"remove_feed_tags\";b:0;s:29:\"remove_feed_custom_taxonomies\";b:0;s:22:\"remove_feed_post_types\";b:0;s:18:\"remove_feed_search\";b:0;s:21:\"remove_atom_rdf_feeds\";b:0;s:17:\"remove_shortlinks\";b:0;s:21:\"remove_rest_api_links\";b:0;s:20:\"remove_rsd_wlw_links\";b:0;s:19:\"remove_oembed_links\";b:0;s:16:\"remove_generator\";b:0;s:20:\"remove_emoji_scripts\";b:0;s:24:\"remove_powered_by_header\";b:0;s:22:\"remove_pingback_header\";b:0;s:28:\"clean_campaign_tracking_urls\";b:0;s:16:\"clean_permalinks\";b:0;s:32:\"clean_permalinks_extra_variables\";s:0:\"\";s:14:\"search_cleanup\";b:0;s:20:\"search_cleanup_emoji\";b:0;s:23:\"search_cleanup_patterns\";b:0;s:22:\"search_character_limit\";i:50;s:20:\"deny_search_crawling\";b:0;s:21:\"deny_wp_json_crawling\";b:0;s:20:\"deny_adsbot_crawling\";b:0;s:19:\"deny_ccbot_crawling\";b:0;s:29:\"deny_google_extended_crawling\";b:0;s:20:\"deny_gptbot_crawling\";b:0;s:27:\"redirect_search_pretty_urls\";b:0;s:29:\"least_readability_ignore_list\";a:0:{}s:27:\"least_seo_score_ignore_list\";a:0:{}s:23:\"most_linked_ignore_list\";a:0:{}s:24:\"least_linked_ignore_list\";a:0:{}s:28:\"indexables_page_reading_list\";a:5:{i:0;b:0;i:1;b:0;i:2;b:0;i:3;b:0;i:4;b:0;}s:25:\"indexables_overview_state\";s:21:\"dashboard-not-visited\";s:28:\"last_known_public_post_types\";a:7:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:9:\"portfolio\";i:3;s:7:\"service\";i:4;s:6:\"footer\";i:5;s:12:\"ct-mega-menu\";i:6;s:18:\"e-floating-buttons\";}s:28:\"last_known_public_taxonomies\";a:5:{i:0;s:8:\"category\";i:1;s:8:\"post_tag\";i:2;s:11:\"post_format\";i:3;s:18:\"portfolio-category\";i:4;s:16:\"service-category\";}s:23:\"last_known_no_unindexed\";a:4:{s:40:\"wpseo_total_unindexed_post_type_archives\";i:1742279624;s:31:\"wpseo_unindexed_post_link_count\";i:1742279624;s:31:\"wpseo_unindexed_term_link_count\";i:1742279624;s:35:\"wpseo_total_unindexed_general_items\";i:1742279624;}s:14:\"new_post_types\";a:0:{}s:14:\"new_taxonomies\";a:0:{}s:34:\"show_new_content_type_notification\";b:0;}','auto'),(2228,'wpseo_titles','a:245:{s:17:\"forcerewritetitle\";b:0;s:9:\"separator\";s:7:\"sc-dash\";s:16:\"title-home-wpseo\";s:42:\"%%sitename%% %%page%% %%sep%% %%sitedesc%%\";s:18:\"title-author-wpseo\";s:41:\"%%name%%, Author at %%sitename%% %%page%%\";s:19:\"title-archive-wpseo\";s:38:\"%%date%% %%page%% %%sep%% %%sitename%%\";s:18:\"title-search-wpseo\";s:63:\"You searched for %%searchphrase%% %%page%% %%sep%% %%sitename%%\";s:15:\"title-404-wpseo\";s:35:\"Page not found %%sep%% %%sitename%%\";s:25:\"social-title-author-wpseo\";s:8:\"%%name%%\";s:26:\"social-title-archive-wpseo\";s:8:\"%%date%%\";s:31:\"social-description-author-wpseo\";s:0:\"\";s:32:\"social-description-archive-wpseo\";s:0:\"\";s:29:\"social-image-url-author-wpseo\";s:0:\"\";s:30:\"social-image-url-archive-wpseo\";s:0:\"\";s:28:\"social-image-id-author-wpseo\";i:0;s:29:\"social-image-id-archive-wpseo\";i:0;s:19:\"metadesc-home-wpseo\";s:0:\"\";s:21:\"metadesc-author-wpseo\";s:0:\"\";s:22:\"metadesc-archive-wpseo\";s:0:\"\";s:9:\"rssbefore\";s:0:\"\";s:8:\"rssafter\";s:53:\"The post %%POSTLINK%% appeared first on %%BLOGLINK%%.\";s:20:\"noindex-author-wpseo\";b:0;s:28:\"noindex-author-noposts-wpseo\";b:1;s:21:\"noindex-archive-wpseo\";b:1;s:14:\"disable-author\";b:0;s:12:\"disable-date\";b:0;s:19:\"disable-post_format\";b:0;s:18:\"disable-attachment\";b:1;s:20:\"breadcrumbs-404crumb\";s:25:\"Error 404: Page not found\";s:29:\"breadcrumbs-display-blog-page\";b:1;s:20:\"breadcrumbs-boldlast\";b:0;s:25:\"breadcrumbs-archiveprefix\";s:12:\"Archives for\";s:18:\"breadcrumbs-enable\";b:1;s:16:\"breadcrumbs-home\";s:4:\"Home\";s:18:\"breadcrumbs-prefix\";s:0:\"\";s:24:\"breadcrumbs-searchprefix\";s:16:\"You searched for\";s:15:\"breadcrumbs-sep\";s:2:\"»\";s:12:\"website_name\";s:0:\"\";s:11:\"person_name\";s:0:\"\";s:11:\"person_logo\";s:0:\"\";s:22:\"alternate_website_name\";s:0:\"\";s:12:\"company_logo\";s:0:\"\";s:12:\"company_name\";s:0:\"\";s:22:\"company_alternate_name\";s:0:\"\";s:17:\"company_or_person\";s:7:\"company\";s:25:\"company_or_person_user_id\";b:0;s:17:\"stripcategorybase\";b:0;s:26:\"open_graph_frontpage_title\";s:12:\"%%sitename%%\";s:25:\"open_graph_frontpage_desc\";s:0:\"\";s:26:\"open_graph_frontpage_image\";s:0:\"\";s:24:\"publishing_principles_id\";i:0;s:25:\"ownership_funding_info_id\";i:0;s:29:\"actionable_feedback_policy_id\";i:0;s:21:\"corrections_policy_id\";i:0;s:16:\"ethics_policy_id\";i:0;s:19:\"diversity_policy_id\";i:0;s:28:\"diversity_staffing_report_id\";i:0;s:15:\"org-description\";s:0:\"\";s:9:\"org-email\";s:0:\"\";s:9:\"org-phone\";s:0:\"\";s:14:\"org-legal-name\";s:0:\"\";s:17:\"org-founding-date\";s:0:\"\";s:20:\"org-number-employees\";s:0:\"\";s:10:\"org-vat-id\";s:0:\"\";s:10:\"org-tax-id\";s:0:\"\";s:7:\"org-iso\";s:0:\"\";s:8:\"org-duns\";s:0:\"\";s:11:\"org-leicode\";s:0:\"\";s:9:\"org-naics\";s:0:\"\";s:10:\"title-post\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-post\";s:0:\"\";s:12:\"noindex-post\";b:0;s:23:\"display-metabox-pt-post\";b:1;s:23:\"post_types-post-maintax\";i:0;s:21:\"schema-page-type-post\";s:7:\"WebPage\";s:24:\"schema-article-type-post\";s:7:\"Article\";s:17:\"social-title-post\";s:9:\"%%title%%\";s:23:\"social-description-post\";s:0:\"\";s:21:\"social-image-url-post\";s:0:\"\";s:20:\"social-image-id-post\";i:0;s:10:\"title-page\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-page\";s:0:\"\";s:12:\"noindex-page\";b:0;s:23:\"display-metabox-pt-page\";b:1;s:23:\"post_types-page-maintax\";i:0;s:21:\"schema-page-type-page\";s:7:\"WebPage\";s:24:\"schema-article-type-page\";s:4:\"None\";s:17:\"social-title-page\";s:9:\"%%title%%\";s:23:\"social-description-page\";s:0:\"\";s:21:\"social-image-url-page\";s:0:\"\";s:20:\"social-image-id-page\";i:0;s:16:\"title-attachment\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:19:\"metadesc-attachment\";s:0:\"\";s:18:\"noindex-attachment\";b:0;s:29:\"display-metabox-pt-attachment\";b:1;s:29:\"post_types-attachment-maintax\";i:0;s:27:\"schema-page-type-attachment\";s:7:\"WebPage\";s:30:\"schema-article-type-attachment\";s:4:\"None\";s:15:\"title-portfolio\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:18:\"metadesc-portfolio\";s:0:\"\";s:17:\"noindex-portfolio\";b:0;s:28:\"display-metabox-pt-portfolio\";b:1;s:28:\"post_types-portfolio-maintax\";i:0;s:26:\"schema-page-type-portfolio\";s:7:\"WebPage\";s:29:\"schema-article-type-portfolio\";s:4:\"None\";s:22:\"social-title-portfolio\";s:9:\"%%title%%\";s:28:\"social-description-portfolio\";s:0:\"\";s:26:\"social-image-url-portfolio\";s:0:\"\";s:25:\"social-image-id-portfolio\";i:0;s:25:\"title-ptarchive-portfolio\";s:51:\"%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%\";s:28:\"metadesc-ptarchive-portfolio\";s:0:\"\";s:27:\"bctitle-ptarchive-portfolio\";s:0:\"\";s:27:\"noindex-ptarchive-portfolio\";b:0;s:32:\"social-title-ptarchive-portfolio\";s:21:\"%%pt_plural%% Archive\";s:38:\"social-description-ptarchive-portfolio\";s:0:\"\";s:36:\"social-image-url-ptarchive-portfolio\";s:0:\"\";s:35:\"social-image-id-ptarchive-portfolio\";i:0;s:13:\"title-service\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:16:\"metadesc-service\";s:0:\"\";s:15:\"noindex-service\";b:0;s:26:\"display-metabox-pt-service\";b:1;s:26:\"post_types-service-maintax\";i:0;s:24:\"schema-page-type-service\";s:7:\"WebPage\";s:27:\"schema-article-type-service\";s:4:\"None\";s:20:\"social-title-service\";s:9:\"%%title%%\";s:26:\"social-description-service\";s:0:\"\";s:24:\"social-image-url-service\";s:0:\"\";s:23:\"social-image-id-service\";i:0;s:23:\"title-ptarchive-service\";s:51:\"%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%\";s:26:\"metadesc-ptarchive-service\";s:0:\"\";s:25:\"bctitle-ptarchive-service\";s:0:\"\";s:25:\"noindex-ptarchive-service\";b:0;s:30:\"social-title-ptarchive-service\";s:21:\"%%pt_plural%% Archive\";s:36:\"social-description-ptarchive-service\";s:0:\"\";s:34:\"social-image-url-ptarchive-service\";s:0:\"\";s:33:\"social-image-id-ptarchive-service\";i:0;s:12:\"title-footer\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:15:\"metadesc-footer\";s:0:\"\";s:14:\"noindex-footer\";b:0;s:25:\"display-metabox-pt-footer\";b:1;s:25:\"post_types-footer-maintax\";i:0;s:23:\"schema-page-type-footer\";s:7:\"WebPage\";s:26:\"schema-article-type-footer\";s:4:\"None\";s:19:\"social-title-footer\";s:9:\"%%title%%\";s:25:\"social-description-footer\";s:0:\"\";s:23:\"social-image-url-footer\";s:0:\"\";s:22:\"social-image-id-footer\";i:0;s:22:\"title-ptarchive-footer\";s:51:\"%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%\";s:25:\"metadesc-ptarchive-footer\";s:0:\"\";s:24:\"bctitle-ptarchive-footer\";s:0:\"\";s:24:\"noindex-ptarchive-footer\";b:0;s:29:\"social-title-ptarchive-footer\";s:21:\"%%pt_plural%% Archive\";s:35:\"social-description-ptarchive-footer\";s:0:\"\";s:33:\"social-image-url-ptarchive-footer\";s:0:\"\";s:32:\"social-image-id-ptarchive-footer\";i:0;s:18:\"title-ct-mega-menu\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-ct-mega-menu\";s:0:\"\";s:20:\"noindex-ct-mega-menu\";b:0;s:31:\"display-metabox-pt-ct-mega-menu\";b:1;s:31:\"post_types-ct-mega-menu-maintax\";i:0;s:29:\"schema-page-type-ct-mega-menu\";s:7:\"WebPage\";s:32:\"schema-article-type-ct-mega-menu\";s:4:\"None\";s:25:\"social-title-ct-mega-menu\";s:9:\"%%title%%\";s:31:\"social-description-ct-mega-menu\";s:0:\"\";s:29:\"social-image-url-ct-mega-menu\";s:0:\"\";s:28:\"social-image-id-ct-mega-menu\";i:0;s:28:\"title-ptarchive-ct-mega-menu\";s:51:\"%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%\";s:31:\"metadesc-ptarchive-ct-mega-menu\";s:0:\"\";s:30:\"bctitle-ptarchive-ct-mega-menu\";s:0:\"\";s:30:\"noindex-ptarchive-ct-mega-menu\";b:0;s:35:\"social-title-ptarchive-ct-mega-menu\";s:21:\"%%pt_plural%% Archive\";s:41:\"social-description-ptarchive-ct-mega-menu\";s:0:\"\";s:39:\"social-image-url-ptarchive-ct-mega-menu\";s:0:\"\";s:38:\"social-image-id-ptarchive-ct-mega-menu\";i:0;s:24:\"title-e-floating-buttons\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:27:\"metadesc-e-floating-buttons\";s:0:\"\";s:26:\"noindex-e-floating-buttons\";b:0;s:37:\"display-metabox-pt-e-floating-buttons\";b:1;s:37:\"post_types-e-floating-buttons-maintax\";i:0;s:35:\"schema-page-type-e-floating-buttons\";s:7:\"WebPage\";s:38:\"schema-article-type-e-floating-buttons\";s:4:\"None\";s:31:\"social-title-e-floating-buttons\";s:9:\"%%title%%\";s:37:\"social-description-e-floating-buttons\";s:0:\"\";s:35:\"social-image-url-e-floating-buttons\";s:0:\"\";s:34:\"social-image-id-e-floating-buttons\";i:0;s:23:\"title-elementor_library\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:26:\"metadesc-elementor_library\";s:0:\"\";s:25:\"noindex-elementor_library\";b:0;s:36:\"display-metabox-pt-elementor_library\";b:1;s:36:\"post_types-elementor_library-maintax\";i:0;s:34:\"schema-page-type-elementor_library\";s:7:\"WebPage\";s:37:\"schema-article-type-elementor_library\";s:4:\"None\";s:30:\"social-title-elementor_library\";s:9:\"%%title%%\";s:36:\"social-description-elementor_library\";s:0:\"\";s:34:\"social-image-url-elementor_library\";s:0:\"\";s:33:\"social-image-id-elementor_library\";i:0;s:18:\"title-tax-category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-category\";s:0:\"\";s:28:\"display-metabox-tax-category\";b:1;s:20:\"noindex-tax-category\";b:0;s:25:\"social-title-tax-category\";s:23:\"%%term_title%% Archives\";s:31:\"social-description-tax-category\";s:0:\"\";s:29:\"social-image-url-tax-category\";s:0:\"\";s:28:\"social-image-id-tax-category\";i:0;s:26:\"taxonomy-category-ptparent\";i:0;s:18:\"title-tax-post_tag\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-post_tag\";s:0:\"\";s:28:\"display-metabox-tax-post_tag\";b:1;s:20:\"noindex-tax-post_tag\";b:0;s:25:\"social-title-tax-post_tag\";s:23:\"%%term_title%% Archives\";s:31:\"social-description-tax-post_tag\";s:0:\"\";s:29:\"social-image-url-tax-post_tag\";s:0:\"\";s:28:\"social-image-id-tax-post_tag\";i:0;s:26:\"taxonomy-post_tag-ptparent\";i:0;s:21:\"title-tax-post_format\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-tax-post_format\";s:0:\"\";s:31:\"display-metabox-tax-post_format\";b:1;s:23:\"noindex-tax-post_format\";b:1;s:28:\"social-title-tax-post_format\";s:23:\"%%term_title%% Archives\";s:34:\"social-description-tax-post_format\";s:0:\"\";s:32:\"social-image-url-tax-post_format\";s:0:\"\";s:31:\"social-image-id-tax-post_format\";i:0;s:29:\"taxonomy-post_format-ptparent\";i:0;s:28:\"title-tax-portfolio-category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:31:\"metadesc-tax-portfolio-category\";s:0:\"\";s:38:\"display-metabox-tax-portfolio-category\";b:1;s:30:\"noindex-tax-portfolio-category\";b:0;s:35:\"social-title-tax-portfolio-category\";s:23:\"%%term_title%% Archives\";s:41:\"social-description-tax-portfolio-category\";s:0:\"\";s:39:\"social-image-url-tax-portfolio-category\";s:0:\"\";s:38:\"social-image-id-tax-portfolio-category\";i:0;s:36:\"taxonomy-portfolio-category-ptparent\";i:0;s:26:\"title-tax-service-category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:29:\"metadesc-tax-service-category\";s:0:\"\";s:36:\"display-metabox-tax-service-category\";b:1;s:28:\"noindex-tax-service-category\";b:0;s:33:\"social-title-tax-service-category\";s:23:\"%%term_title%% Archives\";s:39:\"social-description-tax-service-category\";s:0:\"\";s:37:\"social-image-url-tax-service-category\";s:0:\"\";s:36:\"social-image-id-tax-service-category\";i:0;s:34:\"taxonomy-service-category-ptparent\";i:0;s:14:\"person_logo_id\";i:0;s:15:\"company_logo_id\";i:0;s:17:\"company_logo_meta\";b:0;s:16:\"person_logo_meta\";b:0;s:29:\"open_graph_frontpage_image_id\";i:0;}','auto'),(2229,'wpseo_social','a:20:{s:13:\"facebook_site\";s:0:\"\";s:13:\"instagram_url\";s:0:\"\";s:12:\"linkedin_url\";s:0:\"\";s:11:\"myspace_url\";s:0:\"\";s:16:\"og_default_image\";s:0:\"\";s:19:\"og_default_image_id\";s:0:\"\";s:18:\"og_frontpage_title\";s:0:\"\";s:17:\"og_frontpage_desc\";s:0:\"\";s:18:\"og_frontpage_image\";s:0:\"\";s:21:\"og_frontpage_image_id\";s:0:\"\";s:9:\"opengraph\";b:1;s:13:\"pinterest_url\";s:0:\"\";s:15:\"pinterestverify\";s:0:\"\";s:7:\"twitter\";b:1;s:12:\"twitter_site\";s:0:\"\";s:17:\"twitter_card_type\";s:19:\"summary_large_image\";s:11:\"youtube_url\";s:0:\"\";s:13:\"wikipedia_url\";s:0:\"\";s:17:\"other_social_urls\";a:0:{}s:12:\"mastodon_url\";s:0:\"\";}','auto'),(2249,'wp-optimize-installed-for','1730090875','auto'),(2250,'wp-optimize-newly-activated','1','auto'),(2251,'wp-optimize-schedule','false','auto'),(2252,'wp-optimize-last-optimized','Never','auto'),(2253,'wp-optimize-schedule-type','wpo_weekly','auto'),(2254,'wp-optimize-retention-enabled','false','auto'),(2255,'wp-optimize-retention-period','2','auto'),(2256,'wp-optimize-enable-admin-menu','false','auto'),(2257,'wp-optimize-total-cleaned','0','auto'),(2258,'wp-optimize-auto','a:8:{s:6:\"drafts\";s:4:\"true\";s:8:\"optimize\";s:5:\"false\";s:9:\"revisions\";s:4:\"true\";s:5:\"spams\";s:4:\"true\";s:9:\"transient\";s:5:\"false\";s:5:\"trash\";s:4:\"true\";s:10:\"unapproved\";s:5:\"false\";s:8:\"usermeta\";s:5:\"false\";}','auto'),(2259,'wp-optimize-settings','a:17:{s:16:\"user-attachments\";s:5:\"false\";s:11:\"user-drafts\";s:4:\"true\";s:16:\"user-commentmeta\";s:5:\"false\";s:13:\"user-optimize\";s:4:\"true\";s:15:\"user-orphandata\";s:5:\"false\";s:19:\"user-orphanedtables\";s:4:\"true\";s:14:\"user-pingbacks\";s:5:\"false\";s:13:\"user-postmeta\";s:5:\"false\";s:17:\"user-repairtables\";s:4:\"true\";s:14:\"user-revisions\";s:4:\"true\";s:10:\"user-spams\";s:4:\"true\";s:15:\"user-trackbacks\";s:5:\"false\";s:14:\"user-transient\";s:5:\"false\";s:10:\"user-trash\";s:4:\"true\";s:15:\"user-unapproved\";s:4:\"true\";s:13:\"user-usermeta\";s:5:\"false\";s:13:\"last_saved_in\";s:5:\"3.7.0\";}','auto'),(2260,'wpo_minify_config','a:56:{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:31:\"disable_google_fonts_processing\";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:5:{i:0;s:9:\"Googlebot\";i:1;s:17:\"Chrome-Lighthouse\";i:2;s:8:\"GTmetrix\";i:3;s:14:\"HeadlessChrome\";i:4;s:7:\"Pingdom\";}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:1730775364;s:14:\"plugin_version\";s:5:\"0.0.0\";s:14:\"cache_lifespan\";i:30;s:25:\"merge_inline_extra_css_js\";b:1;s:16:\"enable_analytics\";b:0;s:16:\"analytics_method\";s:6:\"gtagv4\";s:11:\"tracking_id\";s:0:\"\";}','auto'),(2261,'updraft_task_manager_plugins','a:1:{i:0;s:27:\"wp-optimize/wp-optimize.php\";}','auto'),(2262,'updraft_task_manager_dbversion','1.1','auto'),(2263,'wp-optimize-compression_server','resmushit','auto'),(2264,'wp-optimize-image_quality','92','auto'),(2265,'wp-optimize-back_up_original','1','auto'),(2266,'wp-optimize-back_up_delete_after','1','auto'),(2267,'wp-optimize-back_up_delete_after_days','50','auto'),(2268,'wpo_update_version','3.7.0','auto'),(2394,'WPLANG','','auto'),(2415,'wp_mail_smtp_initial_version','4.1.1','off'),(2416,'wp_mail_smtp_version','4.1.1','off'),(2417,'wp_mail_smtp','a:18:{s:4:\"mail\";a:6:{s:10:\"from_email\";s:19:\"noreply@fe2tech.com\";s:9:\"from_name\";s:7:\"fe2tech\";s:6:\"mailer\";s:7:\"mailgun\";s:11:\"return_path\";b:0;s:16:\"from_email_force\";b:1;s:15:\"from_name_force\";b:0;}s:4:\"smtp\";a:7:{s:7:\"autotls\";s:3:\"yes\";s:4:\"auth\";s:3:\"yes\";s:4:\"host\";s:0:\"\";s:4:\"port\";s:3:\"587\";s:10:\"encryption\";s:3:\"tls\";s:4:\"user\";s:0:\"\";s:4:\"pass\";s:0:\"\";}s:7:\"general\";a:1:{s:29:\"summary_report_email_disabled\";b:0;}s:9:\"sendlayer\";a:1:{s:7:\"api_key\";s:0:\"\";}s:7:\"smtpcom\";a:2:{s:7:\"api_key\";s:0:\"\";s:7:\"channel\";s:0:\"\";}s:10:\"sendinblue\";a:2:{s:7:\"api_key\";s:0:\"\";s:6:\"domain\";s:0:\"\";}s:7:\"mailgun\";a:3:{s:7:\"api_key\";s:36:\"key-bcd1c10830e1f816391f6d126f79647b\";s:6:\"domain\";s:18:\"mail.zinimedia.com\";s:6:\"region\";s:2:\"US\";}s:8:\"sendgrid\";a:2:{s:7:\"api_key\";s:0:\"\";s:6:\"domain\";s:0:\"\";}s:7:\"smtp2go\";a:1:{s:7:\"api_key\";s:0:\"\";}s:9:\"sparkpost\";a:2:{s:7:\"api_key\";s:0:\"\";s:6:\"region\";s:2:\"US\";}s:8:\"postmark\";a:2:{s:16:\"server_api_token\";s:0:\"\";s:14:\"message_stream\";s:0:\"\";}s:9:\"amazonses\";a:3:{s:9:\"client_id\";s:0:\"\";s:13:\"client_secret\";s:0:\"\";s:6:\"region\";s:9:\"us-east-1\";}s:5:\"gmail\";a:8:{s:9:\"client_id\";s:0:\"\";s:13:\"client_secret\";s:0:\"\";s:12:\"access_token\";a:0:{}s:13:\"refresh_token\";s:0:\"\";s:12:\"user_details\";a:1:{s:5:\"email\";s:0:\"\";}s:23:\"one_click_setup_enabled\";b:0;s:27:\"one_click_setup_credentials\";a:2:{s:3:\"key\";s:0:\"\";s:5:\"token\";s:0:\"\";}s:28:\"one_click_setup_user_details\";a:1:{s:5:\"email\";s:0:\"\";}}s:7:\"outlook\";a:5:{s:9:\"client_id\";s:0:\"\";s:13:\"client_secret\";s:0:\"\";s:12:\"access_token\";a:0:{}s:13:\"refresh_token\";s:0:\"\";s:12:\"user_details\";a:1:{s:5:\"email\";s:0:\"\";}}s:4:\"zoho\";a:6:{s:9:\"client_id\";s:0:\"\";s:13:\"client_secret\";s:0:\"\";s:6:\"domain\";s:3:\"com\";s:12:\"access_token\";a:0:{}s:13:\"refresh_token\";s:0:\"\";s:12:\"user_details\";a:1:{s:5:\"email\";s:0:\"\";}}s:4:\"logs\";a:5:{s:7:\"enabled\";b:0;s:17:\"log_email_content\";b:0;s:16:\"save_attachments\";b:0;s:19:\"open_email_tracking\";b:0;s:19:\"click_link_tracking\";b:0;}s:11:\"alert_email\";a:2:{s:7:\"enabled\";b:0;s:11:\"connections\";a:0:{}}s:7:\"license\";a:4:{s:3:\"key\";s:0:\"\";s:10:\"is_expired\";b:0;s:11:\"is_disabled\";b:0;s:10:\"is_invalid\";b:0;}}','off'),(2418,'wp_mail_smtp_activated_time','1730108850','off'),(2419,'wp_mail_smtp_activated','a:1:{s:4:\"lite\";i:1730108850;}','auto'),(2424,'wpo_cache_config','a:26:{s:19:\"enable_page_caching\";b:0;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:0:{}s:20:\"cache_exception_urls\";a:0:{}s:23:\"cache_exception_cookies\";a:0:{}s:30:\"cache_exception_browser_agents\";a:0:{}s:22:\"enable_sitemap_preload\";b:0;s:23:\"enable_schedule_preload\";b:0;s:21:\"preload_schedule_type\";s:0:\"\";s:21:\"enable_mobile_caching\";b:0;s:19:\"enable_user_caching\";b:0;s:8:\"site_url\";s:20:\"https://fe2tech.com/\";s:24:\"enable_cache_per_country\";b:0;s:27:\"enable_cache_aelia_currency\";b:0;s:19:\"permalink_structure\";s:36:\"/%year%/%monthnum%/%day%/%postname%/\";s:7:\"uploads\";s:29:\"C:/fe2tech/wp-content/uploads\";s:10:\"gmt_offset\";s:1:\"0\";s:15:\"timezone_string\";s:0:\"\";s:11:\"date_format\";s:6:\"F j, Y\";s:11:\"time_format\";s:5:\"g:i a\";s:15:\"use_webp_images\";b:0;s:28:\"auto_preload_purged_contents\";b:1;s:17:\"wpo_cache_cookies\";a:0:{}s:25:\"wpo_cache_query_variables\";a:0:{}}','auto'),(2428,'wp_mail_smtp_migration_version','5','on'),(2429,'wp_mail_smtp_debug_events_db_version','1','on'),(2430,'wp_mail_smtp_activation_prevent_redirect','1','auto'),(2431,'wp_mail_smtp_setup_wizard_stats','a:3:{s:13:\"launched_time\";i:1730108857;s:14:\"completed_time\";i:1730109167;s:14:\"was_successful\";b:0;}','off'),(2437,'wpforms_activation_redirect','1','auto'),(2438,'wpforms_installation_source','wp-mail-smtp-setup-wizard','auto'),(2439,'wpforms_version','1.9.1.5','auto'),(2440,'wpforms_version_lite','1.9.1.5','auto'),(2441,'wpforms_activated','a:1:{s:4:\"lite\";i:1730109092;}','auto'),(2446,'widget_wpforms-widget','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(2447,'wpforms_settings','a:3:{s:13:\"modern-markup\";s:1:\"1\";s:20:\"modern-markup-is-set\";b:1;s:26:\"modern-markup-hide-setting\";b:1;}','auto'),(2449,'wpforms_versions_lite','a:13:{s:5:\"1.5.9\";i:0;s:7:\"1.6.7.2\";i:0;s:5:\"1.6.8\";i:0;s:5:\"1.7.5\";i:0;s:7:\"1.7.5.1\";i:0;s:5:\"1.7.7\";i:0;s:5:\"1.8.2\";i:0;s:5:\"1.8.3\";i:0;s:5:\"1.8.4\";i:0;s:5:\"1.8.6\";i:0;s:5:\"1.8.7\";i:0;s:5:\"1.9.1\";i:0;s:7:\"1.9.1.5\";i:1730109116;}','auto'),(2450,'_wpforms_transient_wpforms_htaccess_file','a:3:{s:4:\"size\";i:737;s:5:\"mtime\";i:1730109117;s:5:\"ctime\";i:1730109117;}','on'),(2451,'wpforms_email_summaries_fetch_info_blocks_last_run','1746413566','auto'),(2452,'wpforms_process_forms_locator_status','completed','auto'),(2454,'wpforms_admin_notices','a:1:{s:14:\"review_request\";a:2:{s:4:\"time\";i:1730109127;s:9:\"dismissed\";b:0;}}','auto'),(2456,'wp_mail_smtp_lite_sent_email_counter','16','on'),(2457,'wp_mail_smtp_lite_weekly_sent_email_counter','a:11:{i:44;i:3;i:51;i:1;i:52;i:1;i:12;i:2;i:13;i:1;i:14;i:1;i:15;i:2;i:16;i:1;i:17;i:1;i:18;i:2;i:19;i:1;}','on'),(2458,'wp_mail_smtp_debug','a:0:{}','off'),(2459,'wpforms_notifications','a:4:{s:4:\"feed\";a:0:{}s:6:\"events\";a:0:{}s:9:\"dismissed\";a:0:{}s:6:\"update\";i:1742279691;}','auto'),(2463,'wp_mail_smtp_review_notice','a:2:{s:4:\"time\";i:1730109176;s:9:\"dismissed\";b:0;}','auto'),(2465,'wp_mail_smtp_notifications','a:4:{s:6:\"update\";i:1746443413;s:4:\"feed\";a:0:{}s:6:\"events\";a:0:{}s:9:\"dismissed\";a:0:{}}','auto'),(2676,'bsr_data','a:8:{s:13:\"select_tables\";a:81:{i:0;s:26:\"wp_actionscheduler_actions\";i:1;s:25:\"wp_actionscheduler_claims\";i:2;s:25:\"wp_actionscheduler_groups\";i:3;s:23:\"wp_actionscheduler_logs\";i:4;s:14:\"wp_commentmeta\";i:5;s:11:\"wp_comments\";i:6;s:11:\"wp_e_events\";i:7;s:8:\"wp_links\";i:8;s:13:\"wp_newsletter\";i:9;s:20:\"wp_newsletter_emails\";i:10;s:18:\"wp_newsletter_logs\";i:11;s:18:\"wp_newsletter_sent\";i:12;s:19:\"wp_newsletter_stats\";i:13;s:23:\"wp_newsletter_user_logs\";i:14;s:23:\"wp_newsletter_user_meta\";i:15;s:10:\"wp_options\";i:16;s:11:\"wp_postmeta\";i:17;s:8:\"wp_posts\";i:18;s:16:\"wp_revslider_css\";i:19;s:29:\"wp_revslider_layer_animations\";i:20;s:24:\"wp_revslider_navigations\";i:21;s:20:\"wp_revslider_sliders\";i:22;s:21:\"wp_revslider_sliders7\";i:23;s:19:\"wp_revslider_slides\";i:24;s:20:\"wp_revslider_slides7\";i:25;s:26:\"wp_revslider_static_slides\";i:26;s:21:\"wp_term_relationships\";i:27;s:16:\"wp_term_taxonomy\";i:28;s:11:\"wp_termmeta\";i:29;s:8:\"wp_terms\";i:30;s:14:\"wp_tm_taskmeta\";i:31;s:11:\"wp_tm_tasks\";i:32;s:11:\"wp_usermeta\";i:33;s:8:\"wp_users\";i:34;s:24:\"wp_wc_admin_note_actions\";i:35;s:17:\"wp_wc_admin_notes\";i:36;s:21:\"wp_wc_category_lookup\";i:37;s:21:\"wp_wc_customer_lookup\";i:38;s:18:\"wp_wc_download_log\";i:39;s:21:\"wp_wc_order_addresses\";i:40;s:25:\"wp_wc_order_coupon_lookup\";i:41;s:28:\"wp_wc_order_operational_data\";i:42;s:26:\"wp_wc_order_product_lookup\";i:43;s:17:\"wp_wc_order_stats\";i:44;s:22:\"wp_wc_order_tax_lookup\";i:45;s:12:\"wp_wc_orders\";i:46;s:17:\"wp_wc_orders_meta\";i:47;s:31:\"wp_wc_product_attributes_lookup\";i:48;s:34:\"wp_wc_product_download_directories\";i:49;s:25:\"wp_wc_product_meta_lookup\";i:50;s:17:\"wp_wc_rate_limits\";i:51;s:20:\"wp_wc_reserved_stock\";i:52;s:22:\"wp_wc_tax_rate_classes\";i:53;s:14:\"wp_wc_webhooks\";i:54;s:23:\"wp_woocommerce_api_keys\";i:55;s:35:\"wp_woocommerce_attribute_taxonomies\";i:56;s:47:\"wp_woocommerce_downloadable_product_permissions\";i:57;s:18:\"wp_woocommerce_log\";i:58;s:29:\"wp_woocommerce_order_itemmeta\";i:59;s:26:\"wp_woocommerce_order_items\";i:60;s:32:\"wp_woocommerce_payment_tokenmeta\";i:61;s:29:\"wp_woocommerce_payment_tokens\";i:62;s:23:\"wp_woocommerce_sessions\";i:63;s:38:\"wp_woocommerce_shipping_zone_locations\";i:64;s:36:\"wp_woocommerce_shipping_zone_methods\";i:65;s:29:\"wp_woocommerce_shipping_zones\";i:66;s:33:\"wp_woocommerce_tax_rate_locations\";i:67;s:24:\"wp_woocommerce_tax_rates\";i:68;s:15:\"wp_wpforms_logs\";i:69;s:23:\"wp_wpforms_payment_meta\";i:70;s:19:\"wp_wpforms_payments\";i:71;s:21:\"wp_wpforms_tasks_meta\";i:72;s:26:\"wp_wpmailsmtp_debug_events\";i:73;s:24:\"wp_wpmailsmtp_tasks_meta\";i:74;s:12:\"wp_yith_wcwl\";i:75;s:18:\"wp_yith_wcwl_lists\";i:76;s:18:\"wp_yoast_indexable\";i:77;s:28:\"wp_yoast_indexable_hierarchy\";i:78;s:19:\"wp_yoast_migrations\";i:79;s:21:\"wp_yoast_primary_term\";i:80;s:18:\"wp_yoast_seo_links\";}s:16:\"case_insensitive\";s:3:\"off\";s:13:\"replace_guids\";s:3:\"off\";s:7:\"dry_run\";s:3:\"off\";s:10:\"search_for\";s:7:\"http://\";s:12:\"replace_with\";s:8:\"https://\";s:15:\"completed_pages\";i:81;s:11:\"total_pages\";i:81;}','auto'),(2918,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','auto'),(3556,'_wpforms_transient_timeout_addons.json','1747018368','off'),(3557,'_wpforms_transient_addons.json','1746413568','off'),(3809,'wp_mail_smtp_summary_report_email_last_sent_week','19','auto'),(3824,'_wpforms_transient_wpforms_C:/fe2tech/wp-content/uploads/wpforms/cache/.htaccess_file','a:3:{s:4:\"size\";i:446;s:5:\"mtime\";i:1734402961;s:5:\"ctime\";i:1734402961;}','on'),(3965,'polylang','a:15:{s:7:\"browser\";i:0;s:7:\"rewrite\";i:1;s:12:\"hide_default\";i:1;s:10:\"force_lang\";i:1;s:13:\"redirect_lang\";i:0;s:13:\"media_support\";b:0;s:9:\"uninstall\";i:0;s:4:\"sync\";a:0:{}s:10:\"post_types\";a:2:{i:0;s:7:\"service\";i:1;s:6:\"footer\";}s:10:\"taxonomies\";a:0:{}s:7:\"domains\";a:0:{}s:7:\"version\";s:5:\"3.6.5\";s:16:\"first_activation\";i:1734407107;s:12:\"default_lang\";s:2:\"en\";s:9:\"nav_menus\";a:1:{s:6:\"contio\";a:1:{s:7:\"primary\";a:3:{s:2:\"en\";i:39;s:2:\"vi\";i:75;s:2:\"ja\";i:89;}}}}','auto'),(3966,'polylang_wpml_strings','a:0:{}','auto'),(3968,'widget_polylang','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(3977,'category_children','a:0:{}','auto'),(3986,'pll_dismissed_notices','a:1:{i:0;s:6:\"wizard\";}','auto');
INSERT INTO `wp_options` VALUES (4012,'rewrite_rules','a:348:{s:12:\"portfolio/?$\";s:29:\"index.php?post_type=portfolio\";s:42:\"portfolio/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?post_type=portfolio&feed=$matches[1]\";s:37:\"portfolio/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?post_type=portfolio&feed=$matches[1]\";s:29:\"portfolio/page/([0-9]{1,})/?$\";s:47:\"index.php?post_type=portfolio&paged=$matches[1]\";s:18:\"(vi|ja)/service/?$\";s:44:\"index.php?lang=$matches[1]&post_type=service\";s:10:\"service/?$\";s:35:\"index.php?lang=en&post_type=service\";s:48:\"(vi|ja)/service/feed/(feed|rdf|rss|rss2|atom)/?$\";s:61:\"index.php?lang=$matches[1]&post_type=service&feed=$matches[2]\";s:40:\"service/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?lang=en&post_type=service&feed=$matches[1]\";s:43:\"(vi|ja)/service/(feed|rdf|rss|rss2|atom)/?$\";s:61:\"index.php?lang=$matches[1]&post_type=service&feed=$matches[2]\";s:35:\"service/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?lang=en&post_type=service&feed=$matches[1]\";s:35:\"(vi|ja)/service/page/([0-9]{1,})/?$\";s:62:\"index.php?lang=$matches[1]&post_type=service&paged=$matches[2]\";s:27:\"service/page/([0-9]{1,})/?$\";s:53:\"index.php?lang=en&post_type=service&paged=$matches[1]\";s:17:\"(vi|ja)/footer/?$\";s:43:\"index.php?lang=$matches[1]&post_type=footer\";s:9:\"footer/?$\";s:34:\"index.php?lang=en&post_type=footer\";s:47:\"(vi|ja)/footer/feed/(feed|rdf|rss|rss2|atom)/?$\";s:60:\"index.php?lang=$matches[1]&post_type=footer&feed=$matches[2]\";s:39:\"footer/feed/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?lang=en&post_type=footer&feed=$matches[1]\";s:42:\"(vi|ja)/footer/(feed|rdf|rss|rss2|atom)/?$\";s:60:\"index.php?lang=$matches[1]&post_type=footer&feed=$matches[2]\";s:34:\"footer/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?lang=en&post_type=footer&feed=$matches[1]\";s:34:\"(vi|ja)/footer/page/([0-9]{1,})/?$\";s:61:\"index.php?lang=$matches[1]&post_type=footer&paged=$matches[2]\";s:26:\"footer/page/([0-9]{1,})/?$\";s:52:\"index.php?lang=en&post_type=footer&paged=$matches[1]\";s:15:\"ct-mega-menu/?$\";s:32:\"index.php?post_type=ct-mega-menu\";s:45:\"ct-mega-menu/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?post_type=ct-mega-menu&feed=$matches[1]\";s:40:\"ct-mega-menu/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?post_type=ct-mega-menu&feed=$matches[1]\";s:32:\"ct-mega-menu/page/([0-9]{1,})/?$\";s:50:\"index.php?post_type=ct-mega-menu&paged=$matches[1]\";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:56:\"^(vi|ja)/wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:92:\"index.php?lang=$matches[1]&sitemap=$matches[2]&sitemap-subtype=$matches[3]&paged=$matches[4]\";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:42:\"^(vi|ja)/wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:64:\"index.php?lang=$matches[1]&sitemap=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:55:\"(vi|ja)/category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:69:\"index.php?lang=$matches[1]&category_name=$matches[2]&feed=$matches[3]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:50:\"(vi|ja)/category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:69:\"index.php?lang=$matches[1]&category_name=$matches[2]&feed=$matches[3]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:31:\"(vi|ja)/category/(.+?)/embed/?$\";s:63:\"index.php?lang=$matches[1]&category_name=$matches[2]&embed=true\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:43:\"(vi|ja)/category/(.+?)/page/?([0-9]{1,})/?$\";s:70:\"index.php?lang=$matches[1]&category_name=$matches[2]&paged=$matches[3]\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:25:\"(vi|ja)/category/(.+?)/?$\";s:52:\"index.php?lang=$matches[1]&category_name=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:52:\"(vi|ja)/tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:59:\"index.php?lang=$matches[1]&tag=$matches[2]&feed=$matches[3]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:47:\"(vi|ja)/tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:59:\"index.php?lang=$matches[1]&tag=$matches[2]&feed=$matches[3]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:28:\"(vi|ja)/tag/([^/]+)/embed/?$\";s:53:\"index.php?lang=$matches[1]&tag=$matches[2]&embed=true\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:40:\"(vi|ja)/tag/([^/]+)/page/?([0-9]{1,})/?$\";s:60:\"index.php?lang=$matches[1]&tag=$matches[2]&paged=$matches[3]\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:22:\"(vi|ja)/tag/([^/]+)/?$\";s:42:\"index.php?lang=$matches[1]&tag=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:53:\"(vi|ja)/type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:67:\"index.php?lang=$matches[1]&post_format=$matches[2]&feed=$matches[3]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:58:\"index.php?lang=en&post_format=$matches[1]&feed=$matches[2]\";s:48:\"(vi|ja)/type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:67:\"index.php?lang=$matches[1]&post_format=$matches[2]&feed=$matches[3]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:58:\"index.php?lang=en&post_format=$matches[1]&feed=$matches[2]\";s:29:\"(vi|ja)/type/([^/]+)/embed/?$\";s:61:\"index.php?lang=$matches[1]&post_format=$matches[2]&embed=true\";s:21:\"type/([^/]+)/embed/?$\";s:52:\"index.php?lang=en&post_format=$matches[1]&embed=true\";s:41:\"(vi|ja)/type/([^/]+)/page/?([0-9]{1,})/?$\";s:68:\"index.php?lang=$matches[1]&post_format=$matches[2]&paged=$matches[3]\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:59:\"index.php?lang=en&post_format=$matches[1]&paged=$matches[2]\";s:23:\"(vi|ja)/type/([^/]+)/?$\";s:50:\"index.php?lang=$matches[1]&post_format=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:41:\"index.php?lang=en&post_format=$matches[1]\";s:37:\"portfolio/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:47:\"portfolio/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:67:\"portfolio/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"portfolio/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"portfolio/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:43:\"portfolio/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:26:\"portfolio/([^/]+)/embed/?$\";s:42:\"index.php?portfolio=$matches[1]&embed=true\";s:30:\"portfolio/([^/]+)/trackback/?$\";s:36:\"index.php?portfolio=$matches[1]&tb=1\";s:50:\"portfolio/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?portfolio=$matches[1]&feed=$matches[2]\";s:45:\"portfolio/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?portfolio=$matches[1]&feed=$matches[2]\";s:38:\"portfolio/([^/]+)/page/?([0-9]{1,})/?$\";s:49:\"index.php?portfolio=$matches[1]&paged=$matches[2]\";s:45:\"portfolio/([^/]+)/comment-page-([0-9]{1,})/?$\";s:49:\"index.php?portfolio=$matches[1]&cpage=$matches[2]\";s:34:\"portfolio/([^/]+)(?:/([0-9]+))?/?$\";s:48:\"index.php?portfolio=$matches[1]&page=$matches[2]\";s:26:\"portfolio/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:36:\"portfolio/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:56:\"portfolio/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"portfolio/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"portfolio/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:32:\"portfolio/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:43:\"(vi|ja)/service/[^/]+/attachment/([^/]+)/?$\";s:49:\"index.php?lang=$matches[1]&attachment=$matches[2]\";s:35:\"service/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:53:\"(vi|ja)/service/[^/]+/attachment/([^/]+)/trackback/?$\";s:54:\"index.php?lang=$matches[1]&attachment=$matches[2]&tb=1\";s:45:\"service/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:73:\"(vi|ja)/service/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:66:\"index.php?lang=$matches[1]&attachment=$matches[2]&feed=$matches[3]\";s:65:\"service/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:68:\"(vi|ja)/service/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:66:\"index.php?lang=$matches[1]&attachment=$matches[2]&feed=$matches[3]\";s:60:\"service/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:68:\"(vi|ja)/service/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:67:\"index.php?lang=$matches[1]&attachment=$matches[2]&cpage=$matches[3]\";s:60:\"service/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:49:\"(vi|ja)/service/[^/]+/attachment/([^/]+)/embed/?$\";s:60:\"index.php?lang=$matches[1]&attachment=$matches[2]&embed=true\";s:41:\"service/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:32:\"(vi|ja)/service/([^/]+)/embed/?$\";s:57:\"index.php?lang=$matches[1]&service=$matches[2]&embed=true\";s:24:\"service/([^/]+)/embed/?$\";s:40:\"index.php?service=$matches[1]&embed=true\";s:36:\"(vi|ja)/service/([^/]+)/trackback/?$\";s:51:\"index.php?lang=$matches[1]&service=$matches[2]&tb=1\";s:28:\"service/([^/]+)/trackback/?$\";s:34:\"index.php?service=$matches[1]&tb=1\";s:56:\"(vi|ja)/service/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:63:\"index.php?lang=$matches[1]&service=$matches[2]&feed=$matches[3]\";s:48:\"service/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?service=$matches[1]&feed=$matches[2]\";s:51:\"(vi|ja)/service/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:63:\"index.php?lang=$matches[1]&service=$matches[2]&feed=$matches[3]\";s:43:\"service/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?service=$matches[1]&feed=$matches[2]\";s:44:\"(vi|ja)/service/([^/]+)/page/?([0-9]{1,})/?$\";s:64:\"index.php?lang=$matches[1]&service=$matches[2]&paged=$matches[3]\";s:36:\"service/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?service=$matches[1]&paged=$matches[2]\";s:51:\"(vi|ja)/service/([^/]+)/comment-page-([0-9]{1,})/?$\";s:64:\"index.php?lang=$matches[1]&service=$matches[2]&cpage=$matches[3]\";s:43:\"service/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?service=$matches[1]&cpage=$matches[2]\";s:40:\"(vi|ja)/service/([^/]+)(?:/([0-9]+))?/?$\";s:63:\"index.php?lang=$matches[1]&service=$matches[2]&page=$matches[3]\";s:32:\"service/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?service=$matches[1]&page=$matches[2]\";s:32:\"(vi|ja)/service/[^/]+/([^/]+)/?$\";s:49:\"index.php?lang=$matches[1]&attachment=$matches[2]\";s:24:\"service/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:42:\"(vi|ja)/service/[^/]+/([^/]+)/trackback/?$\";s:54:\"index.php?lang=$matches[1]&attachment=$matches[2]&tb=1\";s:34:\"service/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:62:\"(vi|ja)/service/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:66:\"index.php?lang=$matches[1]&attachment=$matches[2]&feed=$matches[3]\";s:54:\"service/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"(vi|ja)/service/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:66:\"index.php?lang=$matches[1]&attachment=$matches[2]&feed=$matches[3]\";s:49:\"service/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"(vi|ja)/service/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:67:\"index.php?lang=$matches[1]&attachment=$matches[2]&cpage=$matches[3]\";s:49:\"service/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:38:\"(vi|ja)/service/[^/]+/([^/]+)/embed/?$\";s:60:\"index.php?lang=$matches[1]&attachment=$matches[2]&embed=true\";s:30:\"service/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:42:\"(vi|ja)/footer/[^/]+/attachment/([^/]+)/?$\";s:49:\"index.php?lang=$matches[1]&attachment=$matches[2]\";s:34:\"footer/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:52:\"(vi|ja)/footer/[^/]+/attachment/([^/]+)/trackback/?$\";s:54:\"index.php?lang=$matches[1]&attachment=$matches[2]&tb=1\";s:44:\"footer/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:72:\"(vi|ja)/footer/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:66:\"index.php?lang=$matches[1]&attachment=$matches[2]&feed=$matches[3]\";s:64:\"footer/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"(vi|ja)/footer/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:66:\"index.php?lang=$matches[1]&attachment=$matches[2]&feed=$matches[3]\";s:59:\"footer/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"(vi|ja)/footer/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:67:\"index.php?lang=$matches[1]&attachment=$matches[2]&cpage=$matches[3]\";s:59:\"footer/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:48:\"(vi|ja)/footer/[^/]+/attachment/([^/]+)/embed/?$\";s:60:\"index.php?lang=$matches[1]&attachment=$matches[2]&embed=true\";s:40:\"footer/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:31:\"(vi|ja)/footer/([^/]+)/embed/?$\";s:56:\"index.php?lang=$matches[1]&footer=$matches[2]&embed=true\";s:23:\"footer/([^/]+)/embed/?$\";s:39:\"index.php?footer=$matches[1]&embed=true\";s:35:\"(vi|ja)/footer/([^/]+)/trackback/?$\";s:50:\"index.php?lang=$matches[1]&footer=$matches[2]&tb=1\";s:27:\"footer/([^/]+)/trackback/?$\";s:33:\"index.php?footer=$matches[1]&tb=1\";s:55:\"(vi|ja)/footer/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:62:\"index.php?lang=$matches[1]&footer=$matches[2]&feed=$matches[3]\";s:47:\"footer/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:45:\"index.php?footer=$matches[1]&feed=$matches[2]\";s:50:\"(vi|ja)/footer/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:62:\"index.php?lang=$matches[1]&footer=$matches[2]&feed=$matches[3]\";s:42:\"footer/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:45:\"index.php?footer=$matches[1]&feed=$matches[2]\";s:43:\"(vi|ja)/footer/([^/]+)/page/?([0-9]{1,})/?$\";s:63:\"index.php?lang=$matches[1]&footer=$matches[2]&paged=$matches[3]\";s:35:\"footer/([^/]+)/page/?([0-9]{1,})/?$\";s:46:\"index.php?footer=$matches[1]&paged=$matches[2]\";s:50:\"(vi|ja)/footer/([^/]+)/comment-page-([0-9]{1,})/?$\";s:63:\"index.php?lang=$matches[1]&footer=$matches[2]&cpage=$matches[3]\";s:42:\"footer/([^/]+)/comment-page-([0-9]{1,})/?$\";s:46:\"index.php?footer=$matches[1]&cpage=$matches[2]\";s:39:\"(vi|ja)/footer/([^/]+)(?:/([0-9]+))?/?$\";s:62:\"index.php?lang=$matches[1]&footer=$matches[2]&page=$matches[3]\";s:31:\"footer/([^/]+)(?:/([0-9]+))?/?$\";s:45:\"index.php?footer=$matches[1]&page=$matches[2]\";s:31:\"(vi|ja)/footer/[^/]+/([^/]+)/?$\";s:49:\"index.php?lang=$matches[1]&attachment=$matches[2]\";s:23:\"footer/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\"(vi|ja)/footer/[^/]+/([^/]+)/trackback/?$\";s:54:\"index.php?lang=$matches[1]&attachment=$matches[2]&tb=1\";s:33:\"footer/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\"(vi|ja)/footer/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:66:\"index.php?lang=$matches[1]&attachment=$matches[2]&feed=$matches[3]\";s:53:\"footer/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"(vi|ja)/footer/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:66:\"index.php?lang=$matches[1]&attachment=$matches[2]&feed=$matches[3]\";s:48:\"footer/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"(vi|ja)/footer/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:67:\"index.php?lang=$matches[1]&attachment=$matches[2]&cpage=$matches[3]\";s:48:\"footer/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"(vi|ja)/footer/[^/]+/([^/]+)/embed/?$\";s:60:\"index.php?lang=$matches[1]&attachment=$matches[2]&embed=true\";s:29:\"footer/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:59:\"portfolio-category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:57:\"index.php?portfolio-category=$matches[1]&feed=$matches[2]\";s:54:\"portfolio-category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:57:\"index.php?portfolio-category=$matches[1]&feed=$matches[2]\";s:35:\"portfolio-category/([^/]+)/embed/?$\";s:51:\"index.php?portfolio-category=$matches[1]&embed=true\";s:47:\"portfolio-category/([^/]+)/page/?([0-9]{1,})/?$\";s:58:\"index.php?portfolio-category=$matches[1]&paged=$matches[2]\";s:29:\"portfolio-category/([^/]+)/?$\";s:40:\"index.php?portfolio-category=$matches[1]\";s:57:\"service-category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?service-category=$matches[1]&feed=$matches[2]\";s:52:\"service-category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?service-category=$matches[1]&feed=$matches[2]\";s:33:\"service-category/([^/]+)/embed/?$\";s:49:\"index.php?service-category=$matches[1]&embed=true\";s:45:\"service-category/([^/]+)/page/?([0-9]{1,})/?$\";s:56:\"index.php?service-category=$matches[1]&paged=$matches[2]\";s:27:\"service-category/([^/]+)/?$\";s:38:\"index.php?service-category=$matches[1]\";s:40:\"ct-mega-menu/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:50:\"ct-mega-menu/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:70:\"ct-mega-menu/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"ct-mega-menu/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"ct-mega-menu/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:46:\"ct-mega-menu/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:29:\"ct-mega-menu/([^/]+)/embed/?$\";s:45:\"index.php?ct-mega-menu=$matches[1]&embed=true\";s:33:\"ct-mega-menu/([^/]+)/trackback/?$\";s:39:\"index.php?ct-mega-menu=$matches[1]&tb=1\";s:53:\"ct-mega-menu/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?ct-mega-menu=$matches[1]&feed=$matches[2]\";s:48:\"ct-mega-menu/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?ct-mega-menu=$matches[1]&feed=$matches[2]\";s:41:\"ct-mega-menu/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?ct-mega-menu=$matches[1]&paged=$matches[2]\";s:48:\"ct-mega-menu/([^/]+)/comment-page-([0-9]{1,})/?$\";s:52:\"index.php?ct-mega-menu=$matches[1]&cpage=$matches[2]\";s:37:\"ct-mega-menu/([^/]+)(?:/([0-9]+))?/?$\";s:51:\"index.php?ct-mega-menu=$matches[1]&page=$matches[2]\";s:29:\"ct-mega-menu/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:39:\"ct-mega-menu/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:59:\"ct-mega-menu/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"ct-mega-menu/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"ct-mega-menu/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:35:\"ct-mega-menu/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:46:\"e-floating-buttons/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:56:\"e-floating-buttons/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:76:\"e-floating-buttons/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:71:\"e-floating-buttons/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:71:\"e-floating-buttons/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:52:\"e-floating-buttons/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:35:\"e-floating-buttons/([^/]+)/embed/?$\";s:51:\"index.php?e-floating-buttons=$matches[1]&embed=true\";s:39:\"e-floating-buttons/([^/]+)/trackback/?$\";s:45:\"index.php?e-floating-buttons=$matches[1]&tb=1\";s:47:\"e-floating-buttons/([^/]+)/page/?([0-9]{1,})/?$\";s:58:\"index.php?e-floating-buttons=$matches[1]&paged=$matches[2]\";s:54:\"e-floating-buttons/([^/]+)/comment-page-([0-9]{1,})/?$\";s:58:\"index.php?e-floating-buttons=$matches[1]&cpage=$matches[2]\";s:43:\"e-floating-buttons/([^/]+)(?:/([0-9]+))?/?$\";s:57:\"index.php?e-floating-buttons=$matches[1]&page=$matches[2]\";s:35:\"e-floating-buttons/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"e-floating-buttons/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"e-floating-buttons/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"e-floating-buttons/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"e-floating-buttons/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"e-floating-buttons/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s: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:40:\"(vi|ja)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?lang=$matches[1]&&feed=$matches[2]\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:35:\"index.php?lang=en&&feed=$matches[1]\";s:35:\"(vi|ja)/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?lang=$matches[1]&&feed=$matches[2]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:35:\"index.php?lang=en&&feed=$matches[1]\";s:16:\"(vi|ja)/embed/?$\";s:38:\"index.php?lang=$matches[1]&&embed=true\";s:8:\"embed/?$\";s:29:\"index.php?lang=en&&embed=true\";s:28:\"(vi|ja)/page/?([0-9]{1,})/?$\";s:45:\"index.php?lang=$matches[1]&&paged=$matches[2]\";s:20:\"page/?([0-9]{1,})/?$\";s:36:\"index.php?lang=en&&paged=$matches[1]\";s:35:\"(vi|ja)/comment-page-([0-9]{1,})/?$\";s:55:\"index.php?lang=$matches[1]&&page_id=9&cpage=$matches[2]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:46:\"index.php?lang=en&&page_id=9&cpage=$matches[1]\";s:10:\"(vi|ja)/?$\";s:26:\"index.php?lang=$matches[1]\";s:49:\"(vi|ja)/comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:59:\"index.php?lang=$matches[1]&&feed=$matches[2]&withcomments=1\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?lang=en&&feed=$matches[1]&withcomments=1\";s:44:\"(vi|ja)/comments/(feed|rdf|rss|rss2|atom)/?$\";s:59:\"index.php?lang=$matches[1]&&feed=$matches[2]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?lang=en&&feed=$matches[1]&withcomments=1\";s:25:\"(vi|ja)/comments/embed/?$\";s:38:\"index.php?lang=$matches[1]&&embed=true\";s:17:\"comments/embed/?$\";s:29:\"index.php?lang=en&&embed=true\";s:52:\"(vi|ja)/search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:57:\"index.php?lang=$matches[1]&s=$matches[2]&feed=$matches[3]\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?lang=en&s=$matches[1]&feed=$matches[2]\";s:47:\"(vi|ja)/search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:57:\"index.php?lang=$matches[1]&s=$matches[2]&feed=$matches[3]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?lang=en&s=$matches[1]&feed=$matches[2]\";s:28:\"(vi|ja)/search/(.+)/embed/?$\";s:51:\"index.php?lang=$matches[1]&s=$matches[2]&embed=true\";s:20:\"search/(.+)/embed/?$\";s:42:\"index.php?lang=en&s=$matches[1]&embed=true\";s:40:\"(vi|ja)/search/(.+)/page/?([0-9]{1,})/?$\";s:58:\"index.php?lang=$matches[1]&s=$matches[2]&paged=$matches[3]\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:49:\"index.php?lang=en&s=$matches[1]&paged=$matches[2]\";s:22:\"(vi|ja)/search/(.+)/?$\";s:40:\"index.php?lang=$matches[1]&s=$matches[2]\";s:14:\"search/(.+)/?$\";s:31:\"index.php?lang=en&s=$matches[1]\";s:55:\"(vi|ja)/author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:67:\"index.php?lang=$matches[1]&author_name=$matches[2]&feed=$matches[3]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:58:\"index.php?lang=en&author_name=$matches[1]&feed=$matches[2]\";s:50:\"(vi|ja)/author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:67:\"index.php?lang=$matches[1]&author_name=$matches[2]&feed=$matches[3]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:58:\"index.php?lang=en&author_name=$matches[1]&feed=$matches[2]\";s:31:\"(vi|ja)/author/([^/]+)/embed/?$\";s:61:\"index.php?lang=$matches[1]&author_name=$matches[2]&embed=true\";s:23:\"author/([^/]+)/embed/?$\";s:52:\"index.php?lang=en&author_name=$matches[1]&embed=true\";s:43:\"(vi|ja)/author/([^/]+)/page/?([0-9]{1,})/?$\";s:68:\"index.php?lang=$matches[1]&author_name=$matches[2]&paged=$matches[3]\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:59:\"index.php?lang=en&author_name=$matches[1]&paged=$matches[2]\";s:25:\"(vi|ja)/author/([^/]+)/?$\";s:50:\"index.php?lang=$matches[1]&author_name=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:41:\"index.php?lang=en&author_name=$matches[1]\";s:77:\"(vi|ja)/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?lang=$matches[1]&year=$matches[2]&monthnum=$matches[3]&day=$matches[4]&feed=$matches[5]\";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:72:\"(vi|ja)/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?lang=$matches[1]&year=$matches[2]&monthnum=$matches[3]&day=$matches[4]&feed=$matches[5]\";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:53:\"(vi|ja)/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:91:\"index.php?lang=$matches[1]&year=$matches[2]&monthnum=$matches[3]&day=$matches[4]&embed=true\";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:65:\"(vi|ja)/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:98:\"index.php?lang=$matches[1]&year=$matches[2]&monthnum=$matches[3]&day=$matches[4]&paged=$matches[5]\";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:47:\"(vi|ja)/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:80:\"index.php?lang=$matches[1]&year=$matches[2]&monthnum=$matches[3]&day=$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:64:\"(vi|ja)/([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:81:\"index.php?lang=$matches[1]&year=$matches[2]&monthnum=$matches[3]&feed=$matches[4]\";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:59:\"(vi|ja)/([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:81:\"index.php?lang=$matches[1]&year=$matches[2]&monthnum=$matches[3]&feed=$matches[4]\";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:40:\"(vi|ja)/([0-9]{4})/([0-9]{1,2})/embed/?$\";s:75:\"index.php?lang=$matches[1]&year=$matches[2]&monthnum=$matches[3]&embed=true\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:52:\"(vi|ja)/([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:82:\"index.php?lang=$matches[1]&year=$matches[2]&monthnum=$matches[3]&paged=$matches[4]\";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:34:\"(vi|ja)/([0-9]{4})/([0-9]{1,2})/?$\";s:64:\"index.php?lang=$matches[1]&year=$matches[2]&monthnum=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:51:\"(vi|ja)/([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:60:\"index.php?lang=$matches[1]&year=$matches[2]&feed=$matches[3]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:46:\"(vi|ja)/([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:60:\"index.php?lang=$matches[1]&year=$matches[2]&feed=$matches[3]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:27:\"(vi|ja)/([0-9]{4})/embed/?$\";s:54:\"index.php?lang=$matches[1]&year=$matches[2]&embed=true\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:39:\"(vi|ja)/([0-9]{4})/page/?([0-9]{1,})/?$\";s:61:\"index.php?lang=$matches[1]&year=$matches[2]&paged=$matches[3]\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:21:\"(vi|ja)/([0-9]{4})/?$\";s:43:\"index.php?lang=$matches[1]&year=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:66:\"(vi|ja)/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:49:\"index.php?lang=$matches[1]&attachment=$matches[2]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:76:\"(vi|ja)/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:54:\"index.php?lang=$matches[1]&attachment=$matches[2]&tb=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:96:\"(vi|ja)/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:66:\"index.php?lang=$matches[1]&attachment=$matches[2]&feed=$matches[3]\";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:91:\"(vi|ja)/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:66:\"index.php?lang=$matches[1]&attachment=$matches[2]&feed=$matches[3]\";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:91:\"(vi|ja)/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:67:\"index.php?lang=$matches[1]&attachment=$matches[2]&cpage=$matches[3]\";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:72:\"(vi|ja)/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:60:\"index.php?lang=$matches[1]&attachment=$matches[2]&embed=true\";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:61:\"(vi|ja)/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:108:\"index.php?lang=$matches[1]&year=$matches[2]&monthnum=$matches[3]&day=$matches[4]&name=$matches[5]&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:65:\"(vi|ja)/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:102:\"index.php?lang=$matches[1]&year=$matches[2]&monthnum=$matches[3]&day=$matches[4]&name=$matches[5]&tb=1\";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:85:\"(vi|ja)/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:114:\"index.php?lang=$matches[1]&year=$matches[2]&monthnum=$matches[3]&day=$matches[4]&name=$matches[5]&feed=$matches[6]\";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:80:\"(vi|ja)/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:114:\"index.php?lang=$matches[1]&year=$matches[2]&monthnum=$matches[3]&day=$matches[4]&name=$matches[5]&feed=$matches[6]\";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:73:\"(vi|ja)/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:115:\"index.php?lang=$matches[1]&year=$matches[2]&monthnum=$matches[3]&day=$matches[4]&name=$matches[5]&paged=$matches[6]\";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:80:\"(vi|ja)/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:115:\"index.php?lang=$matches[1]&year=$matches[2]&monthnum=$matches[3]&day=$matches[4]&name=$matches[5]&cpage=$matches[6]\";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:69:\"(vi|ja)/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:114:\"index.php?lang=$matches[1]&year=$matches[2]&monthnum=$matches[3]&day=$matches[4]&name=$matches[5]&page=$matches[6]\";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:55:\"(vi|ja)/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:49:\"index.php?lang=$matches[1]&attachment=$matches[2]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:65:\"(vi|ja)/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:54:\"index.php?lang=$matches[1]&attachment=$matches[2]&tb=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:85:\"(vi|ja)/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:66:\"index.php?lang=$matches[1]&attachment=$matches[2]&feed=$matches[3]\";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:80:\"(vi|ja)/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:66:\"index.php?lang=$matches[1]&attachment=$matches[2]&feed=$matches[3]\";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:80:\"(vi|ja)/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:67:\"index.php?lang=$matches[1]&attachment=$matches[2]&cpage=$matches[3]\";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:61:\"(vi|ja)/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:60:\"index.php?lang=$matches[1]&attachment=$matches[2]&embed=true\";s:53:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:72:\"(vi|ja)/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?lang=$matches[1]&year=$matches[2]&monthnum=$matches[3]&day=$matches[4]&cpage=$matches[5]\";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:59:\"(vi|ja)/([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:82:\"index.php?lang=$matches[1]&year=$matches[2]&monthnum=$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:46:\"(vi|ja)/([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:61:\"index.php?lang=$matches[1]&year=$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:35:\"(vi|ja)/.?.+?/attachment/([^/]+)/?$\";s:49:\"index.php?lang=$matches[1]&attachment=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"(vi|ja)/.?.+?/attachment/([^/]+)/trackback/?$\";s:54:\"index.php?lang=$matches[1]&attachment=$matches[2]&tb=1\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"(vi|ja)/.?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:66:\"index.php?lang=$matches[1]&attachment=$matches[2]&feed=$matches[3]\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"(vi|ja)/.?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:66:\"index.php?lang=$matches[1]&attachment=$matches[2]&feed=$matches[3]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"(vi|ja)/.?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:67:\"index.php?lang=$matches[1]&attachment=$matches[2]&cpage=$matches[3]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"(vi|ja)/.?.+?/attachment/([^/]+)/embed/?$\";s:60:\"index.php?lang=$matches[1]&attachment=$matches[2]&embed=true\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"(vi|ja)/(.?.+?)/embed/?$\";s:58:\"index.php?lang=$matches[1]&pagename=$matches[2]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:28:\"(vi|ja)/(.?.+?)/trackback/?$\";s:52:\"index.php?lang=$matches[1]&pagename=$matches[2]&tb=1\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:48:\"(vi|ja)/(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?lang=$matches[1]&pagename=$matches[2]&feed=$matches[3]\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:43:\"(vi|ja)/(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?lang=$matches[1]&pagename=$matches[2]&feed=$matches[3]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:36:\"(vi|ja)/(.?.+?)/page/?([0-9]{1,})/?$\";s:65:\"index.php?lang=$matches[1]&pagename=$matches[2]&paged=$matches[3]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:43:\"(vi|ja)/(.?.+?)/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?lang=$matches[1]&pagename=$matches[2]&cpage=$matches[3]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:32:\"(vi|ja)/(.?.+?)(?:/([0-9]+))?/?$\";s:64:\"index.php?lang=$matches[1]&pagename=$matches[2]&page=$matches[3]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','auto'),(4031,'cpto_options','a:8:{s:23:\"show_reorder_interfaces\";a:10:{s:4:\"post\";s:4:\"show\";s:10:\"attachment\";s:4:\"show\";s:8:\"wp_block\";s:4:\"show\";s:13:\"wp_navigation\";s:4:\"show\";s:9:\"portfolio\";s:4:\"show\";s:7:\"service\";s:4:\"show\";s:6:\"footer\";s:4:\"show\";s:12:\"ct-mega-menu\";s:4:\"show\";s:18:\"e-floating-buttons\";s:4:\"show\";s:17:\"elementor_library\";s:4:\"show\";}s:32:\"allow_reorder_default_interfaces\";a:11:{s:4:\"post\";s:3:\"yes\";s:4:\"page\";s:3:\"yes\";s:10:\"attachment\";s:3:\"yes\";s:8:\"wp_block\";s:3:\"yes\";s:13:\"wp_navigation\";s:3:\"yes\";s:9:\"portfolio\";s:3:\"yes\";s:7:\"service\";s:3:\"yes\";s:6:\"footer\";s:3:\"yes\";s:12:\"ct-mega-menu\";s:3:\"yes\";s:18:\"e-floating-buttons\";s:3:\"yes\";s:17:\"elementor_library\";s:3:\"yes\";}s:8:\"autosort\";i:1;s:9:\"adminsort\";i:1;s:18:\"use_query_ASC_DESC\";s:0:\"\";s:10:\"capability\";s:14:\"manage_options\";s:15:\"edit_view_links\";s:0:\"\";s:21:\"navigation_sort_apply\";i:1;}','auto'),(4032,'CPT_configured','TRUE','auto'),(4552,'service-category_children','a:0:{}','auto'),(4942,'action_scheduler_migration_status','complete','auto'),(4948,'_elementor_global_css','a:6:{s:4:\"time\";i:1735095484;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;}','auto'),(5434,'_transient_is_multi_author','0','on'),(7430,'_transient_pll_languages_list','a:3:{i:0;a:22:{s:4:\"name\";s:7:\"English\";s:4:\"slug\";s:2:\"en\";s:10:\"term_group\";i:0;s:7:\"term_id\";i:54;s:6:\"locale\";s:5:\"en_US\";s:6:\"is_rtl\";i:0;s:3:\"w3c\";s:5:\"en-US\";s:8:\"facebook\";s:5:\"en_US\";s:8:\"home_url\";s:20:\"https://fe2tech.com/\";s:10:\"search_url\";s:20:\"https://fe2tech.com/\";s:4:\"host\";N;s:13:\"page_on_front\";i:9;s:14:\"page_for_posts\";i:0;s:9:\"flag_code\";s:2:\"us\";s:8:\"flag_url\";s:60:\"https://fe2tech.com/wp-content/plugins/polylang/flags/us.png\";s:4:\"flag\";s:576:\"<img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAALCAMAAABBPP0LAAAAmVBMVEViZsViZMJiYrf9gnL8eWrlYkjgYkjZYkj8/PujwPybvPz4+PetraBEgfo+fvo3efkydfkqcvj8Y2T8UlL8Q0P8MzP9k4Hz8/Lu7u4DdPj9/VrKysI9fPoDc/EAZ7z7IiLHYkjp6ekCcOTk5OIASbfY/v21takAJrT5Dg6sYkjc3Nn94t2RkYD+y8KeYkjs/v7l5fz0dF22YkjWvcOLAAAAgElEQVR4AR2KNULFQBgGZ5J13KGGKvc/Cw1uPe62eb9+Jr1EUBFHSgxxjP2Eca6AfUSfVlUfBvm1Ui1bqafctqMndNkXpb01h5TLx4b6TIXgwOCHfjv+/Pz+5vPRw7txGWT2h6yO0/GaYltIp5PT1dEpLNPL/SdWjYjAAZtvRPgHJX4Xio+DSrkAAAAASUVORK5CYII=\" alt=\"English\" width=\"16\" height=\"11\" style=\"width: 16px; height: 11px;\" />\";s:15:\"custom_flag_url\";s:0:\"\";s:11:\"custom_flag\";s:0:\"\";s:6:\"active\";b:1;s:9:\"fallbacks\";a:0:{}s:10:\"is_default\";b:1;s:10:\"term_props\";a:2:{s:8:\"language\";a:3:{s:7:\"term_id\";i:54;s:16:\"term_taxonomy_id\";i:54;s:5:\"count\";i:15;}s:13:\"term_language\";a:3:{s:7:\"term_id\";i:55;s:16:\"term_taxonomy_id\";i:55;s:5:\"count\";i:9;}}}i:1;a:22:{s:4:\"name\";s:14:\"Tiếng Việt\";s:4:\"slug\";s:2:\"vi\";s:10:\"term_group\";i:0;s:7:\"term_id\";i:57;s:6:\"locale\";s:2:\"vi\";s:6:\"is_rtl\";i:0;s:3:\"w3c\";s:2:\"vi\";s:8:\"facebook\";s:5:\"vi_VN\";s:8:\"home_url\";s:33:\"https://fe2tech.com/vi/trang-chu/\";s:10:\"search_url\";s:23:\"https://fe2tech.com/vi/\";s:4:\"host\";N;s:13:\"page_on_front\";i:2973;s:14:\"page_for_posts\";i:0;s:9:\"flag_code\";s:2:\"vn\";s:8:\"flag_url\";s:60:\"https://fe2tech.com/wp-content/plugins/polylang/flags/vn.png\";s:4:\"flag\";s:435:\"<img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAALCAMAAABBPP0LAAAATlBMVEX+AAD2AADvAQH/eXn+cXL9amr8YmL9Wlr8UlL7TkvoAAD8d0f6Pz/3ODf2Ly/0KSf6R0f6wTv60T31IBz6+jr4+Cv3QybzEhL4bizhAADgATv8AAAAW0lEQVR4AQXBgU3DQBRAMb+7jwKVUPefkQEQTYJqByBENpKUGoZslXoN5LPONH8G9WWZ7pGlOn6XZmaGRce1J/seei4dl+7dPWDqkk7+58e3+igdlySPcYbwBG+lPhCjrtt9EgAAAABJRU5ErkJggg==\" alt=\"Tiếng Việt\" width=\"16\" height=\"11\" style=\"width: 16px; height: 11px;\" />\";s:15:\"custom_flag_url\";s:0:\"\";s:11:\"custom_flag\";s:0:\"\";s:6:\"active\";b:1;s:9:\"fallbacks\";a:0:{}s:10:\"is_default\";b:0;s:10:\"term_props\";a:2:{s:8:\"language\";a:3:{s:7:\"term_id\";i:57;s:16:\"term_taxonomy_id\";i:57;s:5:\"count\";i:15;}s:13:\"term_language\";a:3:{s:7:\"term_id\";i:58;s:16:\"term_taxonomy_id\";i:58;s:5:\"count\";i:1;}}}i:2;a:22:{s:4:\"name\";s:9:\"日本語\";s:4:\"slug\";s:2:\"ja\";s:10:\"term_group\";i:0;s:7:\"term_id\";i:61;s:6:\"locale\";s:2:\"ja\";s:6:\"is_rtl\";i:0;s:3:\"w3c\";s:2:\"ja\";s:8:\"facebook\";s:5:\"ja_JP\";s:8:\"home_url\";s:51:\"https://fe2tech.com/ja/%e3%83%9b%e3%83%bc%e3%83%a0/\";s:10:\"search_url\";s:23:\"https://fe2tech.com/ja/\";s:4:\"host\";N;s:13:\"page_on_front\";i:2982;s:14:\"page_for_posts\";i:0;s:9:\"flag_code\";s:2:\"jp\";s:8:\"flag_url\";s:60:\"https://fe2tech.com/wp-content/plugins/polylang/flags/jp.png\";s:4:\"flag\";s:398:\"<img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAALCAMAAABBPP0LAAAAPFBMVEX09PTy8fHy6+vm5+b+/v77+/v29vbf39/5vLz5fHz6qqr6UFD7QUH5NDT3lZXa2tr419f3JibT09P2WloskN4YAAAAVUlEQVR4AQXBQU7FMBBAMb90hCoW3P+csCAKfIodIBIyQJAGmPQTDHgrzca94K/keT/nWOgjmdm4VvIpwy1GXOsZ9ndYYL/Wee3IRI/fr4PQCuPmAv/RTRUh24Q4UgAAAABJRU5ErkJggg==\" alt=\"日本語\" width=\"16\" height=\"11\" style=\"width: 16px; height: 11px;\" />\";s:15:\"custom_flag_url\";s:0:\"\";s:11:\"custom_flag\";s:0:\"\";s:6:\"active\";b:1;s:9:\"fallbacks\";a:0:{}s:10:\"is_default\";b:0;s:10:\"term_props\";a:2:{s:8:\"language\";a:3:{s:7:\"term_id\";i:61;s:16:\"term_taxonomy_id\";i:61;s:5:\"count\";i:15;}s:13:\"term_language\";a:3:{s:7:\"term_id\";i:62;s:16:\"term_taxonomy_id\";i:62;s:5:\"count\";i:1;}}}}','on'),(23562,'_site_transient_timeout_php_check_1a31e573deff9bf63840fe4b3ef8afb9','1746893652','off'),(23563,'_site_transient_php_check_1a31e573deff9bf63840fe4b3ef8afb9','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:6:\"7.2.24\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','off'),(24047,'_transient_timeout_tnp_extensions_json','1746721376','off'),(24048,'_transient_tnp_extensions_json','[{\"id\":\"87\",\"children_fileid\":\"\",\"category\":\"legacy\",\"version\":\"1.0.5\",\"title\":\"Speed and Delivery Hours Control\",\"description\":\"Configure a different delivery speed for each newsletter and the delivery hours window. Only for regular newsletters.\",\"slug\":\"newsletter-speedcontrol\",\"type\":\"legacy\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/account\",\"image\":\"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2018\\/12\\/speedcontrol.png\",\"status\":\"3\",\"free\":true,\"downloadable\":true,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=87\",\"wp_slug\":\"newsletter-speedcontrol\\/speedcontrol.php\"},{\"id\":\"113\",\"children_fileid\":\"\",\"category\":\"subscription\",\"version\":\"1.0.7\",\"title\":\"WP User Pro Integration\",\"description\":\"Connect subscribers to WP users\",\"slug\":\"newsletter-wpuserspro\",\"type\":\"integration\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/wpusers\",\"image\":\"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2023\\/03\\/wpusers-32x32-1.png\",\"status\":\"2\",\"free\":false,\"downloadable\":false,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=113\",\"wp_slug\":\"newsletter-wpuserspro\\/wpuserspro.php\"},{\"id\":\"112\",\"children_fileid\":\"\",\"category\":\"delivery\",\"version\":\"1.1.1\",\"title\":\"SMTP2Go\",\"description\":\"Send emails and automatically process bounces and complaints with SMTP2Go\",\"slug\":\"newsletter-smtp2go\",\"type\":\"delivery \",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/account\",\"image\":\"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/design-32px-outline_newsletter-dev.png\",\"status\":\"3\",\"free\":true,\"downloadable\":true,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=112\",\"wp_slug\":\"newsletter-smtp2go\\/smtp2go.php\"},{\"id\":\"111\",\"children_fileid\":\"\",\"category\":\"subscription\",\"version\":\"1.2.2\",\"title\":\"Ultimate Member Integration\",\"description\":\"Create subscriber on registration and manage the in\\/out from lists based on user roles.\",\"slug\":\"newsletter-ultimatemember\",\"type\":\"integration\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/premium\",\"image\":\"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2023\\/11\\/ultimatemember.png\",\"status\":\"2\",\"free\":false,\"downloadable\":false,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=111\",\"wp_slug\":\"newsletter-ultimatemember\\/ultimatemember.php\"},{\"id\":\"73\",\"children_fileid\":\"\",\"category\":\"subscription\",\"version\":\"1.4.6\",\"title\":\"WP Users Integration\",\"description\":\"Connects the WordPress user registration with Newsletter subscription. Optionally imports all WP users as subscribers.\",\"slug\":\"newsletter-wpusers\",\"type\":\"integration\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/documentation\\/addons\\/extended-features\\/wpusers-extension\\/\",\"image\":\"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2023\\/03\\/wpusers-32x32-1.png\",\"status\":\"3\",\"free\":true,\"downloadable\":true,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=73\",\"wp_slug\":\"newsletter-wpusers\\/wpusers.php\"},{\"id\":\"108\",\"children_fileid\":\"\",\"category\":\"subscription\",\"version\":\"1.1.5\",\"title\":\"Forminator Addon\",\"description\":\"Collect subscribers using Formnator forms\",\"slug\":\"newsletter-forminator\",\"type\":\"integration\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/premium\",\"image\":\"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2023\\/10\\/forminator-32x32-1.png\",\"status\":\"2\",\"free\":false,\"downloadable\":false,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=108\",\"wp_slug\":\"newsletter-forminator\\/forminator.php\"},{\"id\":\"110\",\"children_fileid\":\"\",\"category\":\"subscription\",\"version\":\"1.1.3\",\"title\":\"Paid Membership Pro Addon\",\"description\":\"Collect subscribers and connect lists to membership levels\",\"slug\":\"newsletter-pmpro\",\"type\":\"integration\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/premium\",\"image\":\"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2023\\/11\\/pmpro.png\",\"status\":\"2\",\"free\":false,\"downloadable\":false,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=110\",\"wp_slug\":\"newsletter-pmpro\\/pmpro.php\"},{\"id\":\"61\",\"children_fileid\":\"\",\"category\":\"subscription\",\"version\":\"4.4.6\",\"title\":\"Contact Form 7 Connect\",\"description\":\"Collect subscribers with your Contact Form 7 plugin.\",\"slug\":\"newsletter-cf7\",\"type\":\"integration\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/documentation\\/addons\\/integrations\\/contact-form-7-extension\\/\",\"image\":\"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2023\\/10\\/contact-form-7-icon.png\",\"status\":\"2\",\"free\":false,\"downloadable\":false,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=61\",\"wp_slug\":\"newsletter-cf7\\/cf7.php\"},{\"id\":\"101\",\"children_fileid\":\"\",\"category\":\"subscription\",\"version\":\"1.1.8\",\"title\":\"Gravity Forms Connect\",\"description\":\"Collect subscribers with your Gravity Forms plugin.\",\"slug\":\"newsletter-gravityforms\",\"type\":\"integration\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/documentation\\/addons\\/integrations\\/gravityforms-extension\\/\",\"image\":\"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2021\\/04\\/gravityforms.png\",\"status\":\"2\",\"free\":false,\"downloadable\":false,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=101\",\"wp_slug\":\"newsletter-gravityforms\\/gravityforms.php\"},{\"id\":\"83\",\"children_fileid\":\"\",\"category\":\"subscription\",\"version\":\"1.2.5\",\"title\":\"Ninja Forms Connect\",\"description\":\"Integrate Ninja Forms with Newsletter collecting subscription from your contact form.\",\"slug\":\"newsletter-ninjaforms\",\"type\":\"integration\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/documentation\\/addons\\/integrations\\/ninjaforms-extension\\/\",\"image\":\"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2021\\/08\\/ninjaforms.png\",\"status\":\"2\",\"free\":false,\"downloadable\":false,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=83\",\"wp_slug\":\"newsletter-ninjaforms\\/ninjaforms.php\"},{\"id\":\"84\",\"children_fileid\":\"\",\"category\":\"subscription\",\"version\":\"1.3.7\",\"title\":\"WP Forms Connect\",\"description\":\"Collect subscribers with your WP Forms plugin.\",\"slug\":\"newsletter-wpforms\",\"type\":\"integration\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/documentation\\/addons\\/integrations\\/wpforms-extension\\/\",\"image\":\"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2021\\/08\\/wpforms.png\",\"status\":\"2\",\"free\":false,\"downloadable\":false,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=84\",\"wp_slug\":\"newsletter-wpforms\\/wpforms.php\"},{\"id\":\"99\",\"children_fileid\":\"\",\"category\":\"subscription\",\"version\":\"1.1.8\",\"title\":\"Elementor Forms Addon\",\"description\":\"Integrates Elementor forms with Newsletter to collect subscription by forms created with Elementor.\",\"slug\":\"newsletter-elementor\",\"type\":\"integration\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/documentation\\/addons\\/integrations\\/elementor-extension\\/\",\"image\":\"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2021\\/04\\/elementor.png\",\"status\":\"2\",\"free\":false,\"downloadable\":false,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=99\",\"wp_slug\":\"newsletter-elementor\\/elementor.php\"},{\"id\":\"109\",\"children_fileid\":\"\",\"category\":\"newsletters\",\"version\":\"1.0.9\",\"title\":\"AI Assistant (alpha)\",\"description\":\"Get help with email subjects by AI Assistant (alpha=\",\"slug\":\"newsletter-ai\",\"type\":\"extension\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/account\",\"image\":\"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2023\\/11\\/newsletter-ai.png\",\"status\":\"3\",\"free\":true,\"downloadable\":true,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=109\",\"wp_slug\":\"newsletter-ai\\/ai.php\"},{\"id\":\"104\",\"children_fileid\":\"\",\"category\":\"subscription\",\"version\":\"1.1.3\",\"title\":\"Form Designer\",\"description\":\"Visual designer for subscription forms\",\"slug\":\"newsletter-forms\",\"type\":\"extension\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/account\",\"image\":\"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2023\\/02\\/forms-addon-icon-32x32-1.png\",\"status\":\"3\",\"free\":true,\"downloadable\":true,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=104\",\"wp_slug\":\"newsletter-forms\\/forms.php\"},{\"id\":\"107\",\"children_fileid\":\"\",\"category\":\"subscription\",\"version\":\"1.1.5\",\"title\":\"Formidable Forms Connect\",\"description\":\"Collect subscribers using Formidable Forms\",\"slug\":\"newsletter-formidable\",\"type\":\"integration\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/premium\",\"image\":\"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2023\\/10\\/formidable-logo.png\",\"status\":\"2\",\"free\":false,\"downloadable\":false,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=107\",\"wp_slug\":\"newsletter-formidable\\/formidable.php\"},{\"id\":\"60\",\"children_fileid\":\"\",\"category\":\"delivery\",\"version\":\"1.5.7\",\"title\":\"Amazon SES\",\"description\":\"Send emails and automatically process bounces and complaints with Amazon Simple Email Service.\",\"slug\":\"newsletter-amazon\",\"type\":\"delivery\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/documentation\\/addons\\/delivery-addons\\/amazon-ses-extension\\/\",\"image\":\"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/design-32px-outline_newsletter-dev.png\",\"status\":\"2\",\"free\":false,\"downloadable\":false,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=60\",\"wp_slug\":\"newsletter-amazon\\/amazon.php\"},{\"id\":\"116\",\"children_fileid\":\"\",\"category\":\"delivery\",\"version\":\"1.0.7\",\"title\":\"PostMark\",\"description\":\"Send newsletters using the PostMark delivery service\",\"slug\":\"newsletter-postmark\",\"type\":\"delivery\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/premium\",\"image\":\"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2024\\/09\\/postmark-32x32-1.png\",\"status\":\"2\",\"free\":false,\"downloadable\":false,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=116\",\"wp_slug\":\"newsletter-postmark\\/postmark.php\"},{\"id\":\"65\",\"children_fileid\":\"\",\"category\":\"delivery\",\"version\":\"4.3.0\",\"title\":\"Mailgun\",\"description\":\"Send emails and automatically process bounces with Mailgun.\",\"slug\":\"newsletter-mailgun\",\"type\":\"delivery\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/documentation\\/addons\\/delivery-addons\\/mailgun-extension\\/\",\"image\":\"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/design-32px-outline_newsletter-dev.png\",\"status\":\"2\",\"free\":false,\"downloadable\":false,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=65\",\"wp_slug\":\"newsletter-mailgun\\/mailgun.php\"},{\"id\":\"48\",\"children_fileid\":\"\",\"category\":\"delivery\",\"version\":\"4.4.8\",\"title\":\"SendGrid\",\"description\":\"Send emails and automatically process bounces with SendGrid.\",\"slug\":\"newsletter-sendgrid\",\"type\":\"delivery\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/documentation\\/addons\\/delivery-addons\\/sendgrid-extension\\/\",\"image\":\"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/design-32px-outline_newsletter-dev.png\",\"status\":\"2\",\"free\":false,\"downloadable\":false,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=48\",\"wp_slug\":\"newsletter-sendgrid\\/sendgrid.php\"},{\"id\":\"52\",\"children_fileid\":\"\",\"category\":\"delivery\",\"version\":\"4.2.3\",\"title\":\"Mailjet\",\"description\":\"Send emails and automatically process bounces with Mailjet.\",\"slug\":\"newsletter-mailjet\",\"type\":\"delivery\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/documentation\\/addons\\/delivery-addons\\/mailjet-extension\\/\",\"image\":\"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/design-32px-outline_newsletter-dev.png\",\"status\":\"2\",\"free\":false,\"downloadable\":false,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=52\",\"wp_slug\":\"newsletter-mailjet\\/mailjet.php\"},{\"id\":\"66\",\"children_fileid\":\"\",\"category\":\"delivery\",\"version\":\"1.2.5\",\"title\":\"ElasticEmail\",\"description\":\"Send emails and automatically process bounces with ElasticEmail.\",\"slug\":\"newsletter-elasticemail\",\"type\":\"delivery\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/documentation\\/addons\\/delivery-addons\\/elasticemail-extension\\/\",\"image\":\"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/design-32px-outline_newsletter-dev.png\",\"status\":\"2\",\"free\":false,\"downloadable\":false,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=66\",\"wp_slug\":\"newsletter-elasticemail\\/elasticemail.php\"},{\"id\":\"105\",\"children_fileid\":\"\",\"category\":\"subscription\",\"version\":\"1.1.7\",\"title\":\"Fluent Forms Connect\",\"description\":\"Collect subscribers with your Fluent Forms plugin.\",\"slug\":\"newsletter-fluentforms\",\"type\":\"integration\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/premium\",\"image\":\"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2023\\/03\\/fluentforms-32x32-1.png\",\"status\":\"2\",\"free\":false,\"downloadable\":false,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=105\",\"wp_slug\":\"newsletter-fluentforms\\/fluentforms.php\"},{\"id\":\"69\",\"children_fileid\":\"\",\"category\":\"delivery\",\"version\":\"1.2.8\",\"title\":\"SparkPost\",\"description\":\"Send emails and automatically process bounces with SparkPost.\",\"slug\":\"newsletter-sparkpost\",\"type\":\"delivery\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/documentation\\/addons\\/delivery-addons\\/sparkpost-extension\\/\",\"image\":\"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/design-32px-outline_newsletter-dev.png\",\"status\":\"2\",\"free\":false,\"downloadable\":false,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=69\",\"wp_slug\":\"newsletter-sparkpost\\/sparkpost.php\"},{\"id\":\"122\",\"children_fileid\":\"\",\"category\":\"delivery\",\"version\":\"1.0.0\",\"title\":\"SendPulse\",\"description\":\"Integrates Newsletter with SendPulse\",\"slug\":\"newsletter-sendpulse\",\"type\":\"delivery \",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/documentation\\/addons\\/delivery-addons\\/sendpulse\\/\",\"image\":\"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2025\\/03\\/sendpulse-32x32-1.png\",\"status\":\"3\",\"free\":true,\"downloadable\":true,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=122\",\"wp_slug\":\"newsletter-sendpulse\\/sendpulse.php\"},{\"id\":\"90\",\"children_fileid\":\"\",\"category\":\"delivery\",\"version\":\"1.2.7\",\"title\":\"Brevo (formerly Sendinblue)\",\"description\":\"Send emails and automatically process bounces and complaints with Brevo (formerly Sendinblue).\",\"slug\":\"newsletter-sendinblue\",\"type\":\"delivery\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/documentation\\/addons\\/delivery-addons\\/sendinblue-extension\\/\",\"image\":\"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/design-32px-outline_newsletter-dev.png\",\"status\":\"3\",\"free\":true,\"downloadable\":true,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=90\",\"wp_slug\":\"newsletter-sendinblue\\/sendinblue.php\"},{\"id\":\"50\",\"children_fileid\":\"\",\"category\":\"statistics\",\"version\":\"4.6.7\",\"title\":\"Reports and Retargeting\",\"description\":\"Detailed statistics of your campaign (opens, clicks, URLs) and retargeting based on subscriber behavior.\",\"slug\":\"newsletter-reports\",\"type\":\"extension\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/reports\",\"image\":\"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/business-32px-outline_chart-bar-33.png\",\"status\":\"2\",\"free\":false,\"downloadable\":false,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=50\",\"wp_slug\":\"newsletter-reports\\/reports.php\"},{\"id\":\"85\",\"children_fileid\":\"\",\"category\":\"\",\"version\":\"1.3.7\",\"title\":\"Addons Manager\",\"description\":\"\",\"slug\":\"newsletter-extensions\",\"type\":\"manager\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/account\",\"image\":\"\",\"status\":\"4\",\"free\":true,\"downloadable\":true,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=85\",\"wp_slug\":\"newsletter-extensions\\/extensions.php\"},{\"id\":\"77\",\"children_fileid\":\"\",\"category\":\"tools\",\"version\":\"2.5.1\",\"title\":\"Newsletter API\",\"description\":\"Access programmatically to The Newsletter Plugin via REST calls.\",\"slug\":\"newsletter-api\",\"type\":\"extension\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/documentation\\/developers\\/newsletter-api-2\\/\",\"image\":\"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2017\\/10\\/bold-direction@2x-1.png\",\"status\":\"3\",\"free\":true,\"downloadable\":true,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=77\",\"wp_slug\":\"newsletter-api\\/api.php\"},{\"id\":\"62\",\"children_fileid\":\"\",\"category\":\"automation\",\"version\":\"4.8.1\",\"title\":\"Automated\",\"description\":\"Automatically creates periodic newsletters with your blog content (posts, products, events, CPTs).\",\"slug\":\"newsletter-automated\",\"type\":\"extension\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/automated\",\"image\":\"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2021\\/03\\/automated-32.png\",\"status\":\"2\",\"free\":false,\"downloadable\":false,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=62\",\"wp_slug\":\"newsletter-automated\\/automated.php\"},{\"id\":\"75\",\"children_fileid\":\"\",\"category\":\"statistics\",\"version\":\"1.3.3\",\"title\":\"Geolocation\",\"description\":\"Geolocate the subscribers and target them by geolocation in your campaign.\",\"slug\":\"newsletter-geo\",\"type\":\"extension\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/documentation\\/addons\\/extended-features\\/geolocation-extension\\/\",\"image\":\"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2018\\/03\\/geo-extension-icon.png\",\"status\":\"2\",\"free\":false,\"downloadable\":false,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=75\",\"wp_slug\":\"newsletter-geo\\/geo.php\"},{\"id\":\"74\",\"children_fileid\":\"\",\"category\":\"newsletters\",\"version\":\"1.5.7\",\"title\":\"Extended Composer Blocks\",\"description\":\"Adds new blocks to the newsletter composer: list, video, gallery, full post.\",\"slug\":\"newsletter-blocks\",\"type\":\"extension\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/composer\",\"image\":\"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2017\\/04\\/ui-32px-outline-3_widget.png\",\"status\":\"2\",\"free\":false,\"downloadable\":false,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=74\",\"wp_slug\":\"newsletter-blocks\\/blocks.php\"},{\"id\":\"63\",\"children_fileid\":\"\",\"category\":\"newsletters, subscription\",\"version\":\"2.0.0\",\"title\":\"WooCommerce\",\"description\":\"Subscribe on checkout, subscribers import, segmentation by cart products, and newsletter composer products block.\",\"slug\":\"newsletter-woocommerce\",\"type\":\"integration\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/woocommerce\",\"image\":\"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2018\\/03\\/woocommerce-extension-icon.png\",\"status\":\"2\",\"free\":false,\"downloadable\":false,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=63\",\"wp_slug\":\"newsletter-woocommerce\\/woocommerce.php\"},{\"id\":\"72\",\"children_fileid\":\"\",\"category\":\"automation\",\"version\":\"1.6.0\",\"title\":\"Autoresponder\",\"description\":\"Create unlimited email series to follow-up your subscribers. Lessons, up-sells, conversations.\",\"slug\":\"newsletter-autoresponder\",\"type\":\"extension\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/autoresponder\",\"image\":\"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/emoticons-32px-outline_robot.png\",\"status\":\"2\",\"free\":false,\"downloadable\":false,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=72\",\"wp_slug\":\"newsletter-autoresponder\\/autoresponder.php\"},{\"id\":\"68\",\"children_fileid\":\"\",\"category\":\"statistics\",\"version\":\"1.2.8\",\"title\":\"Google Analytics\",\"description\":\"Automatically add Google Analytics UTM campaign tracking to links\",\"slug\":\"newsletter-analytics\",\"type\":\"extension\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/google-analytics\",\"image\":\"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2021\\/08\\/analytics.png\",\"status\":\"2\",\"free\":false,\"downloadable\":false,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=68\",\"wp_slug\":\"newsletter-analytics\\/analytics.php\"},{\"id\":\"100\",\"children_fileid\":\"\",\"category\":\"subscription, newsletters\",\"version\":\"1.1.0\",\"title\":\"Easy Digital Downloads\",\"description\":\"Subscribe on checkout and newsletter composer products block.\",\"slug\":\"newsletter-edd\",\"type\":\"integration\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/documentation\\/addons\\/integrations\\/edd-extension\\/\",\"image\":\"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2021\\/08\\/edd.png\",\"status\":\"2\",\"free\":false,\"downloadable\":false,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=100\",\"wp_slug\":\"newsletter-edd\\/edd.php\"},{\"id\":\"115\",\"children_fileid\":\"\",\"category\":\"newsletters\",\"version\":\"1.0.8\",\"title\":\"EventPrime Addon (BETA)\",\"description\":\"Adds a block to insert into newsletters from EventPrime\",\"slug\":\"newsletter-eventprime\",\"type\":\"integration\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/account\",\"image\":\"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2024\\/09\\/eventprime.png\",\"status\":\"3\",\"free\":true,\"downloadable\":true,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=115\",\"wp_slug\":\"newsletter-eventprime\\/eventprime.php\"},{\"id\":\"82\",\"children_fileid\":\"\",\"category\":\"tools\",\"version\":\"1.0.3\",\"title\":\"Translatepress Bridge\",\"description\":\"Enables few multilanguage Newsletter features for who is using Translatepress.\",\"slug\":\"newsletter-translatepress\",\"type\":\"integration\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/documentation\\/addons\\/integrations\\/translatepress-extension\\/\",\"image\":\"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2018\\/09\\/translatepress.png\",\"status\":\"3\",\"free\":true,\"downloadable\":true,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=82\",\"wp_slug\":\"newsletter-translatepress\\/translatepress.php\"},{\"id\":\"95\",\"children_fileid\":\"\",\"category\":\"delivery\",\"version\":\"1.1.5\",\"title\":\"Mailersend\",\"description\":\"Send emails and automatically process bounces and complaints with MailerSend.\",\"slug\":\"newsletter-mailersend\",\"type\":\"delivery\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/account\",\"image\":\"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/design-32px-outline_newsletter-dev.png\",\"status\":\"3\",\"free\":true,\"downloadable\":true,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=95\",\"wp_slug\":\"newsletter-mailersend\\/mailersend.php\"},{\"id\":\"88\",\"children_fileid\":\"\",\"category\":\"newsletters\",\"version\":\"1.5.2\",\"title\":\"The Events Calendar (by Tribe)\",\"description\":\"Adds a composer block that extracts the events managed by The Events Calendar plugin.\",\"slug\":\"newsletter-tribeevents\",\"type\":\"integration\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/documentation\\/addons\\/integrations\\/tribeevents-extension\\/\",\"image\":\"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2019\\/02\\/tribe-event-calendar-icon.png\",\"status\":\"2\",\"free\":false,\"downloadable\":false,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=88\",\"wp_slug\":\"newsletter-tribeevents\\/tribeevents.php\"},{\"id\":\"86\",\"children_fileid\":\"\",\"category\":\"tools\",\"version\":\"1.5.8\",\"title\":\"Import and Export\",\"description\":\"An advanced import system with extended profile fields and mapping (beta version).\",\"slug\":\"newsletter-import\",\"type\":\"extension\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/documentation\\/addons\\/extended-features\\/advanced-import\\/\",\"image\":\"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/file-upload-88.png\",\"status\":\"3\",\"free\":true,\"downloadable\":true,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=86\",\"wp_slug\":\"newsletter-import\\/import.php\"},{\"id\":\"79\",\"children_fileid\":\"\",\"category\":\"newsletters\",\"version\":\"1.4.3\",\"title\":\"Events Manager\",\"description\":\"Adds a composer block that extracts the events managed by the Events Manager plugin.\",\"slug\":\"newsletter-events\",\"type\":\"integration\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/documentation\\/addons\\/integrations\\/events-extension\\/\",\"image\":\"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2019\\/02\\/events-manager-icon.png\",\"status\":\"2\",\"free\":false,\"downloadable\":false,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=79\",\"wp_slug\":\"newsletter-events\\/events.php\"},{\"id\":\"55\",\"children_fileid\":\"\",\"category\":\"legacy\",\"version\":\"4.1.2\",\"title\":\"Facebook\",\"description\":\"One click subscription and confirmation with Facebook Connect.\",\"slug\":\"newsletter-facebook\",\"type\":\"integration\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/documentation\\/addons\\/integrations\\/facebook-extension\\/\",\"image\":\"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2021\\/08\\/facebook.png\",\"status\":\"2\",\"free\":false,\"downloadable\":false,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=55\",\"wp_slug\":\"newsletter-facebook\\/facebook.php\"},{\"id\":\"97\",\"children_fileid\":\"\",\"category\":\"tools\",\"version\":\"1.1.0\",\"title\":\"Webhooks\",\"description\":\"Adds webhooks to trigger external services upon subscription and cancellation events.\",\"slug\":\"newsletter-webhooks\",\"type\":\"extension\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/documentation\\/developers\\/newsletter-webhooks\\/\",\"image\":\"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2017\\/10\\/bold-direction@2x-1.png\",\"status\":\"2\",\"free\":false,\"downloadable\":false,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=97\",\"wp_slug\":\"newsletter-webhooks\\/webhooks.php\"},{\"id\":\"67\",\"children_fileid\":\"\",\"category\":\"subscription\",\"version\":\"1.5.7\",\"title\":\"Leads\",\"description\":\"Add a popup or a fixed subscription bar to your website and offer your visitors a simple way to subscribe.\",\"slug\":\"newsletter-leads\",\"type\":\"extension\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/leads\",\"image\":\"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/ui-32px-outline-3_widget.png\",\"status\":\"2\",\"free\":false,\"downloadable\":false,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=67\",\"wp_slug\":\"newsletter-leads\\/leads.php\"},{\"id\":\"71\",\"children_fileid\":\"\",\"category\":\"subscription\",\"version\":\"1.2.1\",\"title\":\"Locked Content\",\"description\":\"Hide premium content in your posts and offer a subscription to see them.\",\"slug\":\"newsletter-lock\",\"type\":\"extension\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/documentation\\/addons\\/extended-features\\/locked-content-extension\\/\",\"image\":\"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2017\\/04\\/ui-32px-outline-1_lock-open.png\",\"status\":\"3\",\"free\":true,\"downloadable\":true,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=71\",\"wp_slug\":\"newsletter-lock\\/lock.php\"},{\"id\":\"70\",\"children_fileid\":\"\",\"category\":\"subscription\",\"version\":\"1.1.9\",\"title\":\"Subscribe on Comment\",\"description\":\"Adds the subscription option to your blog comment form.\",\"slug\":\"newsletter-comments\",\"type\":\"integration\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/documentation\\/addons\\/extended-features\\/comments-extension\\/\",\"image\":\"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2017\\/02\\/comment-notification.png\",\"status\":\"2\",\"free\":false,\"downloadable\":false,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=70\",\"wp_slug\":\"newsletter-comments\\/comments.php\"},{\"id\":\"58\",\"children_fileid\":\"\",\"category\":\"tools\",\"version\":\"4.1.7\",\"title\":\"Public Archive\",\"description\":\"Generates a public archive of the sent newsletters for your blog.\",\"slug\":\"newsletter-archive\",\"type\":\"extension\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/documentation\\/addons\\/extended-features\\/archive-extension\\/\",\"image\":\"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/files-32px-outline_archive-3d-content.png\",\"status\":\"3\",\"free\":true,\"downloadable\":true,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=58\",\"wp_slug\":\"newsletter-archive\\/archive.php\"},{\"id\":\"51\",\"children_fileid\":\"\",\"category\":\"eol\",\"version\":\"4.1.3\",\"title\":\"Feed by Mail\",\"description\":\"Automatically creates and sends newsletters with the latest blog posts.\",\"slug\":\"newsletter-feed\",\"type\":\"eol\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/feed-by-mail-extension\",\"image\":\"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/ui-32px-outline-3_playlist.png\",\"status\":\"2\",\"free\":false,\"downloadable\":false,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=51\",\"wp_slug\":\"newsletter-feed\\/feed.php\"},{\"id\":\"53\",\"children_fileid\":\"\",\"category\":\"eol\",\"version\":\"2.2.0\",\"title\":\"Popup\",\"description\":\"Configurable popup system to increase the subscription rate.\",\"slug\":\"newsletter-popup\",\"type\":\"eol\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/plugins\\/newsletter\\/popup-module\",\"image\":\"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/ui-32px-outline-3_widget.png\",\"status\":\"2\",\"free\":false,\"downloadable\":false,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=53\",\"wp_slug\":\"newsletter-popup\\/popup.php\"},{\"id\":\"54\",\"children_fileid\":\"\",\"category\":\"eol\",\"version\":\"4.1.3\",\"title\":\"Followup\",\"description\":\"Automated email series sent upon subscription at defined intervals.\",\"slug\":\"newsletter-followup\",\"type\":\"eol\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/plugins\\/newsletter\\/follow-up-module\",\"image\":\"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/ui-32px-outline-2_time-countdown.png\",\"status\":\"2\",\"free\":false,\"downloadable\":false,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=54\",\"wp_slug\":\"newsletter-followup\\/followup.php\"},{\"id\":\"49\",\"children_fileid\":\"\",\"category\":\"eol\",\"version\":\"4.0.0\",\"title\":\"Mandrill\",\"description\":\"Integrates the Mandrill delivery system and bounce detection.\",\"slug\":\"newsletter-mandrill\",\"type\":\"eol\",\"url\":\"http:\\/\\/www.thenewsletterplugin.com\\/plugins\\/newsletter\\/mandrill-module\",\"image\":\"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/design-32px-outline_newsletter-dev.png\",\"status\":\"2\",\"free\":false,\"downloadable\":false,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=49\",\"wp_slug\":\"newsletter-mandrill\\/mandrill.php\"},{\"id\":\"93\",\"children_fileid\":\"\",\"category\":\"delivery\",\"version\":\"1.1.7\",\"title\":\"External SMTP\",\"description\":\"Send emails with a generic SMTP.\",\"slug\":\"newsletter-smtp\",\"type\":\"delivery\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/documentation\\/addons\\/delivery-addons\\/smtp-extension\\/\",\"image\":\"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/design-32px-outline_newsletter-dev.png\",\"status\":\"4\",\"free\":true,\"downloadable\":true,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=93\",\"wp_slug\":\"newsletter-smtp\\/smtp.php\"},{\"id\":\"76\",\"children_fileid\":\"\",\"category\":\"tools\",\"version\":\"1.3.5\",\"title\":\"Bounce Management\",\"description\":\"Bounce management (only if do not use a delivery addon).\",\"slug\":\"newsletter-bounce\",\"type\":\"extension\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/documentation\\/addons\\/extended-features\\/bounce-extension\\/\",\"image\":\"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2017\\/10\\/ic_settings_backup_restore_32px.png\",\"status\":\"2\",\"free\":false,\"downloadable\":false,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=76\",\"wp_slug\":\"newsletter-bounce\\/bounce.php\"},{\"id\":\"91\",\"children_fileid\":\"\",\"category\":\"newsletters\",\"version\":\"1.0.3\",\"title\":\"Instasend\",\"description\":\"Quickly create a newsletter from a post (free for limited time)\",\"slug\":\"newsletter-instasend\",\"type\":\"extension\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/documentation\\/addons\\/extended-features\\/instasend\\/\",\"image\":\"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2020\\/05\\/instasend-32.png\",\"status\":\"3\",\"free\":true,\"downloadable\":true,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=91\",\"wp_slug\":\"newsletter-instasend\\/instasend.php\"},{\"id\":\"96\",\"children_fileid\":\"\",\"category\":\"delivery\",\"version\":\"1.0.6\",\"title\":\"Office 365 Header Removal\",\"description\":\"This addon removes hidden headers from outgoing email to avoid Office365 SMTP block (or attempt to...). Install ONLY if you\'re using Office365 SMTP with an SMTP plugin!\",\"slug\":\"newsletter-office365\",\"type\":\"delivery\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/account\",\"image\":\"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/design-32px-outline_newsletter-dev.png\",\"status\":\"3\",\"free\":true,\"downloadable\":true,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=96\",\"wp_slug\":\"newsletter-office365\\/office365.php\"}]','off'),(24164,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:4:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.8.1.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.8.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.8.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.8.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.8.1\";s:7:\"version\";s:5:\"6.8.1\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";}i:1;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:51:\"https://downloads.w.org/release/wordpress-6.8.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:51:\"https://downloads.w.org/release/wordpress-6.8.1.zip\";s:10:\"no_content\";s:62:\"https://downloads.w.org/release/wordpress-6.8.1-no-content.zip\";s:11:\"new_bundled\";s:63:\"https://downloads.w.org/release/wordpress-6.8.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.8.1\";s:7:\"version\";s:5:\"6.8.1\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:2;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:51:\"https://downloads.w.org/release/wordpress-6.7.2.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:51:\"https://downloads.w.org/release/wordpress-6.7.2.zip\";s:10:\"no_content\";s:62:\"https://downloads.w.org/release/wordpress-6.7.2-no-content.zip\";s:11:\"new_bundled\";s:63:\"https://downloads.w.org/release/wordpress-6.7.2-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.7.2\";s:7:\"version\";s:5:\"6.7.2\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:3;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:51:\"https://downloads.w.org/release/wordpress-6.7.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:51:\"https://downloads.w.org/release/wordpress-6.7.1.zip\";s:10:\"no_content\";s:62:\"https://downloads.w.org/release/wordpress-6.7.1-no-content.zip\";s:11:\"new_bundled\";s:63:\"https://downloads.w.org/release/wordpress-6.7.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.7.1\";s:7:\"version\";s:5:\"6.7.1\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}}s:12:\"last_checked\";i:1746506925;s:15:\"version_checked\";s:5:\"6.6.2\";s:12:\"translations\";a:1:{i:0;a:7:{s:4:\"type\";s:4:\"core\";s:4:\"slug\";s:7:\"default\";s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2025-01-08 14:58:19\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.6.2/ja.zip\";s:10:\"autoupdate\";b:1;}}}','off'),(24165,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1746506926;s:7:\"checked\";a:4:{s:6:\"contio\";s:5:\"1.1.2\";s:16:\"twentytwentyfour\";s:3:\"1.2\";s:17:\"twentytwentythree\";s:3:\"1.5\";s:15:\"twentytwentytwo\";s:3:\"1.8\";}s:8:\"response\";a:3:{s:16:\"twentytwentyfour\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfour\";s:11:\"new_version\";s:3:\"1.3\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfour/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfour.1.3.zip\";s:8:\"requires\";s:3:\"6.4\";s:12:\"requires_php\";s:3:\"7.0\";}s:17:\"twentytwentythree\";a:6:{s:5:\"theme\";s:17:\"twentytwentythree\";s:11:\"new_version\";s:3:\"1.6\";s:3:\"url\";s:47:\"https://wordpress.org/themes/twentytwentythree/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/twentytwentythree.1.6.zip\";s:8:\"requires\";s:3:\"6.1\";s:12:\"requires_php\";s:3:\"5.6\";}s:15:\"twentytwentytwo\";a:6:{s:5:\"theme\";s:15:\"twentytwentytwo\";s:11:\"new_version\";s:3:\"2.0\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.2.0.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:3:{i:0;a:7:{s:4:\"type\";s:5:\"theme\";s:4:\"slug\";s:16:\"twentytwentyfour\";s:8:\"language\";s:2:\"vi\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:19:\"2024-08-24 00:45:43\";s:7:\"package\";s:77:\"https://downloads.wordpress.org/translation/theme/twentytwentyfour/1.2/vi.zip\";s:10:\"autoupdate\";b:1;}i:1;a:7:{s:4:\"type\";s:5:\"theme\";s:4:\"slug\";s:17:\"twentytwentythree\";s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:19:\"2022-10-26 09:20:28\";s:7:\"package\";s:78:\"https://downloads.wordpress.org/translation/theme/twentytwentythree/1.5/ja.zip\";s:10:\"autoupdate\";b:1;}i:2;a:7:{s:4:\"type\";s:5:\"theme\";s:4:\"slug\";s:15:\"twentytwentytwo\";s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"1.8\";s:7:\"updated\";s:19:\"2023-03-31 13:24:57\";s:7:\"package\";s:76:\"https://downloads.wordpress.org/translation/theme/twentytwentytwo/1.8/ja.zip\";s:10:\"autoupdate\";b:1;}}}','off'),(24166,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1746506928;s:8:\"response\";a:17:{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.7\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.5.3.7.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.8.1\";s:12:\"requires_php\";s:6:\"5.6.20\";s:16:\"requires_plugins\";a:0:{}}s:47:\"better-search-replace/better-search-replace.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:35:\"w.org/plugins/better-search-replace\";s:4:\"slug\";s:21:\"better-search-replace\";s:6:\"plugin\";s:47:\"better-search-replace/better-search-replace.php\";s:11:\"new_version\";s:6:\"1.4.10\";s:3:\"url\";s:52:\"https://wordpress.org/plugins/better-search-replace/\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/plugin/better-search-replace.1.4.10.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:74:\"https://ps.w.org/better-search-replace/assets/icon-256x256.png?rev=2706527\";s:2:\"1x\";s:74:\"https://ps.w.org/better-search-replace/assets/icon-128x128.png?rev=2706527\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:77:\"https://ps.w.org/better-search-replace/assets/banner-1544x500.png?rev=2706527\";s:2:\"1x\";s:76:\"https://ps.w.org/better-search-replace/assets/banner-772x250.jpg?rev=2706527\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"3.0.1\";s:6:\"tested\";s:5:\"6.8.1\";s:12:\"requires_php\";b: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:\"6.0.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.6.0.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.6\";s:6:\"tested\";s:5:\"6.8.1\";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.28.4\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.28.4.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.gif?rev=3111597\";s:2:\"1x\";s:62:\"https://ps.w.org/elementor/assets/icon-128x128.gif?rev=3111597\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=3164133\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=3164133\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.5\";s:6:\"tested\";s:5:\"6.7.2\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}}s:41:\"image-optimization/image-optimization.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:32:\"w.org/plugins/image-optimization\";s:4:\"slug\";s:18:\"image-optimization\";s:6:\"plugin\";s:41:\"image-optimization/image-optimization.php\";s:11:\"new_version\";s:5:\"1.6.6\";s:3:\"url\";s:49:\"https://wordpress.org/plugins/image-optimization/\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/plugin/image-optimization.1.6.6.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:63:\"https://ps.w.org/image-optimization/assets/icon.svg?rev=3018827\";s:3:\"svg\";s:63:\"https://ps.w.org/image-optimization/assets/icon.svg?rev=3018827\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:74:\"https://ps.w.org/image-optimization/assets/banner-1544x500.png?rev=3018769\";s:2:\"1x\";s:73:\"https://ps.w.org/image-optimization/assets/banner-772x250.png?rev=3018769\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.2\";s:6:\"tested\";s:5:\"6.7.2\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}}s:21:\"newsletter/plugin.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:24:\"w.org/plugins/newsletter\";s:4:\"slug\";s:10:\"newsletter\";s:6:\"plugin\";s:21:\"newsletter/plugin.php\";s:11:\"new_version\";s:5:\"8.8.1\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/newsletter/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/newsletter.8.8.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/newsletter/assets/icon-256x256.png?rev=1052028\";s:2:\"1x\";s:63:\"https://ps.w.org/newsletter/assets/icon-128x128.png?rev=1160467\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/newsletter/assets/banner-1544x500.png?rev=1052027\";s:2:\"1x\";s:65:\"https://ps.w.org/newsletter/assets/banner-772x250.png?rev=1052027\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.6\";s:6:\"tested\";s:5:\"6.8.1\";s:12:\"requires_php\";s:3:\"7.0\";s:16:\"requires_plugins\";a:0:{}}s:21:\"polylang/polylang.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:22:\"w.org/plugins/polylang\";s:4:\"slug\";s:8:\"polylang\";s:6:\"plugin\";s:21:\"polylang/polylang.php\";s:11:\"new_version\";s:5:\"3.7.1\";s:3:\"url\";s:39:\"https://wordpress.org/plugins/polylang/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/polylang.3.7.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:61:\"https://ps.w.org/polylang/assets/icon-256x256.png?rev=1331499\";s:2:\"1x\";s:61:\"https://ps.w.org/polylang/assets/icon-128x128.png?rev=1331499\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/polylang/assets/banner-1544x500.png?rev=1405299\";s:2:\"1x\";s:63:\"https://ps.w.org/polylang/assets/banner-772x250.png?rev=1405299\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.2\";s:6:\"tested\";s:5:\"6.8.1\";s:12:\"requires_php\";s:3:\"7.2\";s:16:\"requires_plugins\";a:0:{}}s:37:\"post-types-order/post-types-order.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:30:\"w.org/plugins/post-types-order\";s:4:\"slug\";s:16:\"post-types-order\";s:6:\"plugin\";s:37:\"post-types-order/post-types-order.php\";s:11:\"new_version\";s:5:\"2.3.5\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/post-types-order/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/post-types-order.2.3.5.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:69:\"https://ps.w.org/post-types-order/assets/icon-128x128.png?rev=1226428\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/post-types-order/assets/banner-1544x500.png?rev=3164418\";s:2:\"1x\";s:71:\"https://ps.w.org/post-types-order/assets/banner-772x250.png?rev=3164418\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"2.8\";s:6:\"tested\";s:5:\"6.8.1\";s:12:\"requires_php\";s:3:\"5.6\";s:16:\"requires_plugins\";a:0:{}}s:35:\"redux-framework/redux-framework.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:29:\"w.org/plugins/redux-framework\";s:4:\"slug\";s:15:\"redux-framework\";s:6:\"plugin\";s:35:\"redux-framework/redux-framework.php\";s:11:\"new_version\";s:5:\"4.5.7\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/redux-framework/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/redux-framework.4.5.7.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:60:\"https://ps.w.org/redux-framework/assets/icon.svg?rev=2889347\";s:3:\"svg\";s:60:\"https://ps.w.org/redux-framework/assets/icon.svg?rev=2889347\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:70:\"https://ps.w.org/redux-framework/assets/banner-772x250.png?rev=2889347\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"6.8.1\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}}s:27:\"woocommerce/woocommerce.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:25:\"w.org/plugins/woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:6:\"plugin\";s:27:\"woocommerce/woocommerce.php\";s:11:\"new_version\";s:5:\"9.8.3\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/woocommerce/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.8.3.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:56:\"https://ps.w.org/woocommerce/assets/icon.svg?rev=3234504\";s:3:\"svg\";s:56:\"https://ps.w.org/woocommerce/assets/icon.svg?rev=3234504\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/woocommerce/assets/banner-1544x500.png?rev=3234504\";s:2:\"1x\";s:66:\"https://ps.w.org/woocommerce/assets/banner-772x250.png?rev=3234504\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.6\";s:6:\"tested\";s:5:\"6.8.1\";s:12:\"requires_php\";s:3:\"7.4\";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:\"4.2.0\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/wp-optimize/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/wp-optimize.4.2.0.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.9\";s:6:\"tested\";s:5:\"6.8.1\";s:12:\"requires_php\";s:3:\"7.2\";s:16:\"requires_plugins\";a:0:{}}s:24:\"wpforms-lite/wpforms.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:26:\"w.org/plugins/wpforms-lite\";s:4:\"slug\";s:12:\"wpforms-lite\";s:6:\"plugin\";s:24:\"wpforms-lite/wpforms.php\";s:11:\"new_version\";s:7:\"1.9.5.2\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/wpforms-lite/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/wpforms-lite.1.9.5.2.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:57:\"https://ps.w.org/wpforms-lite/assets/icon.svg?rev=3254748\";s:3:\"svg\";s:57:\"https://ps.w.org/wpforms-lite/assets/icon.svg?rev=3254748\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/wpforms-lite/assets/banner-1544x500.png?rev=3091364\";s:2:\"1x\";s:67:\"https://ps.w.org/wpforms-lite/assets/banner-772x250.png?rev=3091364\";}s:11:\"banners_rtl\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/wpforms-lite/assets/banner-1544x500-rtl.png?rev=3254748\";s:2:\"1x\";s:71:\"https://ps.w.org/wpforms-lite/assets/banner-772x250-rtl.png?rev=3254748\";}s:8:\"requires\";s:3:\"5.5\";s:6:\"tested\";s:5:\"6.8.1\";s:12:\"requires_php\";s:3:\"7.2\";s:16:\"requires_plugins\";a:0:{}}s:29:\"wp-mail-smtp/wp_mail_smtp.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:26:\"w.org/plugins/wp-mail-smtp\";s:4:\"slug\";s:12:\"wp-mail-smtp\";s:6:\"plugin\";s:29:\"wp-mail-smtp/wp_mail_smtp.php\";s:11:\"new_version\";s:5:\"4.4.0\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/wp-mail-smtp/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/wp-mail-smtp.4.4.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/wp-mail-smtp/assets/icon-256x256.png?rev=1755440\";s:2:\"1x\";s:65:\"https://ps.w.org/wp-mail-smtp/assets/icon-128x128.png?rev=1755440\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/wp-mail-smtp/assets/banner-1544x500.png?rev=3206423\";s:2:\"1x\";s:67:\"https://ps.w.org/wp-mail-smtp/assets/banner-772x250.png?rev=3206423\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.5\";s:6:\"tested\";s:5:\"6.7.2\";s:12:\"requires_php\";s:3:\"7.2\";s:16:\"requires_plugins\";a:0:{}}s:36:\"yith-woocommerce-quick-view/init.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:41:\"w.org/plugins/yith-woocommerce-quick-view\";s:4:\"slug\";s:27:\"yith-woocommerce-quick-view\";s:6:\"plugin\";s:36:\"yith-woocommerce-quick-view/init.php\";s:11:\"new_version\";s:5:\"2.4.0\";s:3:\"url\";s:58:\"https://wordpress.org/plugins/yith-woocommerce-quick-view/\";s:7:\"package\";s:76:\"https://downloads.wordpress.org/plugin/yith-woocommerce-quick-view.2.4.0.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:80:\"https://ps.w.org/yith-woocommerce-quick-view/assets/icon-128x128.gif?rev=3193930\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:83:\"https://ps.w.org/yith-woocommerce-quick-view/assets/banner-1544x500.gif?rev=3193924\";s:2:\"1x\";s:82:\"https://ps.w.org/yith-woocommerce-quick-view/assets/banner-772x250.gif?rev=3193924\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.6\";s:6:\"tested\";s:5:\"6.8.1\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:1:{i:0;s:11:\"woocommerce\";}}s:34:\"yith-woocommerce-wishlist/init.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:39:\"w.org/plugins/yith-woocommerce-wishlist\";s:4:\"slug\";s:25:\"yith-woocommerce-wishlist\";s:6:\"plugin\";s:34:\"yith-woocommerce-wishlist/init.php\";s:11:\"new_version\";s:5:\"4.5.0\";s:3:\"url\";s:56:\"https://wordpress.org/plugins/yith-woocommerce-wishlist/\";s:7:\"package\";s:74:\"https://downloads.wordpress.org/plugin/yith-woocommerce-wishlist.4.5.0.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:78:\"https://ps.w.org/yith-woocommerce-wishlist/assets/icon-128x128.gif?rev=3129302\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:81:\"https://ps.w.org/yith-woocommerce-wishlist/assets/banner-1544x500.gif?rev=3129931\";s:2:\"1x\";s:80:\"https://ps.w.org/yith-woocommerce-wishlist/assets/banner-772x250.gif?rev=3129931\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.6\";s:6:\"tested\";s:5:\"6.8.1\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:1:{i:0;s:11:\"woocommerce\";}}s:24:\"wordpress-seo/wp-seo.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:27:\"w.org/plugins/wordpress-seo\";s:4:\"slug\";s:13:\"wordpress-seo\";s:6:\"plugin\";s:24:\"wordpress-seo/wp-seo.php\";s:11:\"new_version\";s:4:\"25.0\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/wordpress-seo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.25.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/wordpress-seo/assets/icon-256x256.gif?rev=3112542\";s:2:\"1x\";s:66:\"https://ps.w.org/wordpress-seo/assets/icon-128x128.gif?rev=3112542\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500.png?rev=3257862\";s:2:\"1x\";s:68:\"https://ps.w.org/wordpress-seo/assets/banner-772x250.png?rev=3257862\";}s:11:\"banners_rtl\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500-rtl.png?rev=3257862\";s:2:\"1x\";s:72:\"https://ps.w.org/wordpress-seo/assets/banner-772x250-rtl.png?rev=3257862\";}s:8:\"requires\";s:3:\"6.6\";s:6:\"tested\";s:5:\"6.8.1\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}}s:35:\"case-theme-core/case-theme-core.php\";O:8:\"stdClass\":5:{s:7:\"version\";s:5:\"1.2.5\";s:7:\"package\";s:54:\"https://api.casethemes.net/plugins/case-theme-core.zip\";s:2:\"id\";s:28:\"https://demo.casethemes.net/\";s:6:\"plugin\";s:35:\"case-theme-core/case-theme-core.php\";s:11:\"new_version\";s:5:\"1.2.5\";}}s:12:\"translations\";a:23:{i:0;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:7:\"akismet\";s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"5.3.3\";s:7:\"updated\";s:19:\"2024-11-18 21:26:28\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/plugin/akismet/5.3.3/ja.zip\";s:10:\"autoupdate\";b:1;}i:1;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:7:\"akismet\";s:8:\"language\";s:2:\"vi\";s:7:\"version\";s:5:\"5.3.3\";s:7:\"updated\";s:19:\"2024-08-23 09:06:45\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/plugin/akismet/5.3.3/vi.zip\";s:10:\"autoupdate\";b:1;}i:2;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:21:\"better-search-replace\";s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.4.7\";s:7:\"updated\";s:19:\"2023-05-05 08:15:26\";s:7:\"package\";s:85:\"https://downloads.wordpress.org/translation/plugin/better-search-replace/1.4.7/ja.zip\";s:10:\"autoupdate\";b:1;}i:3;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:14:\"contact-form-7\";s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"5.9.8\";s:7:\"updated\";s:19:\"2024-07-17 08:16:16\";s:7:\"package\";s:78:\"https://downloads.wordpress.org/translation/plugin/contact-form-7/5.9.8/ja.zip\";s:10:\"autoupdate\";b:1;}i:4;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:14:\"contact-form-7\";s:8:\"language\";s:2:\"vi\";s:7:\"version\";s:5:\"5.9.8\";s:7:\"updated\";s:19:\"2024-08-11 13:44:17\";s:7:\"package\";s:78:\"https://downloads.wordpress.org/translation/plugin/contact-form-7/5.9.8/vi.zip\";s:10:\"autoupdate\";b:1;}i:5;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:6:\"3.24.7\";s:7:\"updated\";s:19:\"2023-07-08 11:33:12\";s:7:\"package\";s:74:\"https://downloads.wordpress.org/translation/plugin/elementor/3.24.7/ja.zip\";s:10:\"autoupdate\";b:1;}i:6;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"language\";s:2:\"vi\";s:7:\"version\";s:6:\"3.24.7\";s:7:\"updated\";s:19:\"2024-10-08 00:32:48\";s:7:\"package\";s:74:\"https://downloads.wordpress.org/translation/plugin/elementor/3.24.7/vi.zip\";s:10:\"autoupdate\";b:1;}i:7;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:11:\"hello-dolly\";s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.7.2\";s:7:\"updated\";s:19:\"2020-10-30 07:03:00\";s:7:\"package\";s:75:\"https://downloads.wordpress.org/translation/plugin/hello-dolly/1.7.2/ja.zip\";s:10:\"autoupdate\";b:1;}i:8;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:11:\"hello-dolly\";s:8:\"language\";s:2:\"vi\";s:7:\"version\";s:5:\"1.7.2\";s:7:\"updated\";s:19:\"2019-11-12 11:26:07\";s:7:\"package\";s:75:\"https://downloads.wordpress.org/translation/plugin/hello-dolly/1.7.2/vi.zip\";s:10:\"autoupdate\";b:1;}i:9;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:8:\"polylang\";s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"3.6.5\";s:7:\"updated\";s:19:\"2024-04-09 09:56:44\";s:7:\"package\";s:72:\"https://downloads.wordpress.org/translation/plugin/polylang/3.6.5/ja.zip\";s:10:\"autoupdate\";b:1;}i:10;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:8:\"polylang\";s:8:\"language\";s:2:\"vi\";s:7:\"version\";s:5:\"3.6.5\";s:7:\"updated\";s:19:\"2024-08-01 06:25:33\";s:7:\"package\";s:72:\"https://downloads.wordpress.org/translation/plugin/polylang/3.6.5/vi.zip\";s:10:\"autoupdate\";b:1;}i:11;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:16:\"post-types-order\";s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"2.3.3\";s:7:\"updated\";s:19:\"2023-10-29 08:56:08\";s:7:\"package\";s:80:\"https://downloads.wordpress.org/translation/plugin/post-types-order/2.3.3/ja.zip\";s:10:\"autoupdate\";b:1;}i:12;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:11:\"woocommerce\";s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"9.3.3\";s:7:\"updated\";s:19:\"2024-11-09 02:30:55\";s:7:\"package\";s:75:\"https://downloads.wordpress.org/translation/plugin/woocommerce/9.3.3/ja.zip\";s:10:\"autoupdate\";b:1;}i:13;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:11:\"woocommerce\";s:8:\"language\";s:2:\"vi\";s:7:\"version\";s:5:\"9.3.3\";s:7:\"updated\";s:19:\"2024-11-06 09:50:18\";s:7:\"package\";s:75:\"https://downloads.wordpress.org/translation/plugin/woocommerce/9.3.3/vi.zip\";s:10:\"autoupdate\";b:1;}i:14;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:11:\"wp-optimize\";s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"3.7.0\";s:7:\"updated\";s:19:\"2024-01-19 13:19:04\";s:7:\"package\";s:75:\"https://downloads.wordpress.org/translation/plugin/wp-optimize/3.7.0/ja.zip\";s:10:\"autoupdate\";b:1;}i:15;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:12:\"wpforms-lite\";s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:7:\"1.9.1.5\";s:7:\"updated\";s:19:\"2024-10-04 15:38:34\";s:7:\"package\";s:78:\"https://downloads.wordpress.org/translation/plugin/wpforms-lite/1.9.1.5/ja.zip\";s:10:\"autoupdate\";b:1;}i:16;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:12:\"wpforms-lite\";s:8:\"language\";s:2:\"vi\";s:7:\"version\";s:7:\"1.9.1.5\";s:7:\"updated\";s:19:\"2024-09-24 12:52:02\";s:7:\"package\";s:78:\"https://downloads.wordpress.org/translation/plugin/wpforms-lite/1.9.1.5/vi.zip\";s:10:\"autoupdate\";b:1;}i:17;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:12:\"wp-mail-smtp\";s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2024-08-10 15:06:43\";s:7:\"package\";s:76:\"https://downloads.wordpress.org/translation/plugin/wp-mail-smtp/4.1.1/ja.zip\";s:10:\"autoupdate\";b:1;}i:18;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:12:\"wp-mail-smtp\";s:8:\"language\";s:2:\"vi\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2024-10-12 10:51:57\";s:7:\"package\";s:76:\"https://downloads.wordpress.org/translation/plugin/wp-mail-smtp/4.1.1/vi.zip\";s:10:\"autoupdate\";b:1;}i:19;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:27:\"yith-woocommerce-quick-view\";s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:6:\"1.42.0\";s:7:\"updated\";s:19:\"2017-07-21 01:53:05\";s:7:\"package\";s:92:\"https://downloads.wordpress.org/translation/plugin/yith-woocommerce-quick-view/1.42.0/ja.zip\";s:10:\"autoupdate\";b:1;}i:20;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:25:\"yith-woocommerce-wishlist\";s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:6:\"3.37.0\";s:7:\"updated\";s:19:\"2024-02-23 13:17:46\";s:7:\"package\";s:90:\"https://downloads.wordpress.org/translation/plugin/yith-woocommerce-wishlist/3.37.0/ja.zip\";s:10:\"autoupdate\";b:1;}i:21;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:13:\"wordpress-seo\";s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:4:\"23.7\";s:7:\"updated\";s:19:\"2024-10-27 08:29:21\";s:7:\"package\";s:76:\"https://downloads.wordpress.org/translation/plugin/wordpress-seo/23.7/ja.zip\";s:10:\"autoupdate\";b:1;}i:22;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:13:\"wordpress-seo\";s:8:\"language\";s:2:\"vi\";s:7:\"version\";s:4:\"23.7\";s:7:\"updated\";s:19:\"2024-09-11 07:25:05\";s:7:\"package\";s:76:\"https://downloads.wordpress.org/translation/plugin/wordpress-seo/23.7/vi.zip\";s:10:\"autoupdate\";b:1;}}s:9:\"no_update\";a:1:{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:20:{s:19:\"akismet/akismet.php\";s:5:\"5.3.3\";s:47:\"better-search-replace/better-search-replace.php\";s:5:\"1.4.7\";s:35:\"case-theme-core/case-theme-core.php\";s:5:\"1.2.3\";s:39:\"case-theme-import/case-theme-import.php\";s:5:\"1.0.5\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:5:\"5.9.8\";s:23:\"elementor/elementor.php\";s:6:\"3.24.7\";s:9:\"hello.php\";s:5:\"1.7.2\";s:41:\"image-optimization/image-optimization.php\";s:5:\"1.5.4\";s:21:\"newsletter/plugin.php\";s:5:\"8.5.7\";s:21:\"polylang/polylang.php\";s:5:\"3.6.5\";s:37:\"post-types-order/post-types-order.php\";s:5:\"2.3.3\";s:35:\"redux-framework/redux-framework.php\";s:6:\"4.4.18\";s:23:\"revslider/revslider.php\";s:6:\"6.7.20\";s:27:\"woocommerce/woocommerce.php\";s:5:\"9.3.3\";s:27:\"wp-optimize/wp-optimize.php\";s:5:\"3.7.0\";s:24:\"wpforms-lite/wpforms.php\";s:7:\"1.9.1.5\";s:29:\"wp-mail-smtp/wp_mail_smtp.php\";s:5:\"4.1.1\";s:36:\"yith-woocommerce-quick-view/init.php\";s:6:\"1.43.0\";s:34:\"yith-woocommerce-wishlist/init.php\";s:6:\"3.38.0\";s:24:\"wordpress-seo/wp-seo.php\";s:4:\"23.7\";}}','off'),(24171,'_site_transient_timeout_theme_roots','1746510670','off'),(24172,'_site_transient_theme_roots','a:4:{s:6:\"contio\";s:7:\"/themes\";s:16:\"twentytwentyfour\";s:7:\"/themes\";s:17:\"twentytwentythree\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";}','off'),(24176,'_transient_timeout_elementor_remote_info_api_data_3.24.7','1746553490','off'),(24177,'_transient_elementor_remote_info_api_data_3.24.7','a:4:{s:9:\"timestamp\";s:10:\"1746510183\";s:14:\"upgrade_notice\";a:3:{s:7:\"version\";s:5:\"2.0.0\";s:7:\"message\";s:0:\"\";s:11:\"update_link\";s:0:\"\";}s:11:\"pro_widgets\";a:82:{i:0;a:4:{s:4:\"name\";s:6:\"search\";s:5:\"title\";s:6:\"Search\";s:4:\"icon\";s:17:\"eicon-site-search\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:1;a:4:{s:4:\"name\";s:5:\"posts\";s:5:\"title\";s:5:\"Posts\";s:4:\"icon\";s:15:\"eicon-post-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:2;a:4:{s:4:\"name\";s:9:\"portfolio\";s:5:\"title\";s:9:\"Portfolio\";s:4:\"icon\";s:18:\"eicon-gallery-grid\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:3;a:4:{s:4:\"name\";s:17:\"link-in-bio-var-2\";s:5:\"title\";s:7:\"Classic\";s:4:\"icon\";s:19:\"eicon-site-identity\";s:10:\"categories\";s:15:\"[\"link-in-bio\"]\";}i:4;a:4:{s:4:\"name\";s:9:\"mega-menu\";s:5:\"title\";s:4:\"Menu\";s:4:\"icon\";s:15:\"eicon-mega-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:5;a:4:{s:4:\"name\";s:17:\"link-in-bio-var-3\";s:5:\"title\";s:8:\"Showcase\";s:4:\"icon\";s:19:\"eicon-site-identity\";s:10:\"categories\";s:15:\"[\"link-in-bio\"]\";}i:6;a:4:{s:4:\"name\";s:4:\"form\";s:5:\"title\";s:4:\"Form\";s:4:\"icon\";s:21:\"eicon-form-horizontal\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:7;a:4:{s:4:\"name\";s:17:\"link-in-bio-var-4\";s:5:\"title\";s:5:\"Links\";s:4:\"icon\";s:19:\"eicon-site-identity\";s:10:\"categories\";s:15:\"[\"link-in-bio\"]\";}i:8;a:4:{s:4:\"name\";s:9:\"loop-grid\";s:5:\"title\";s:9:\"Loop Grid\";s:4:\"icon\";s:18:\"eicon-loop-builder\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:9;a:4:{s:4:\"name\";s:17:\"link-in-bio-var-5\";s:5:\"title\";s:8:\"Services\";s:4:\"icon\";s:19:\"eicon-site-identity\";s:10:\"categories\";s:15:\"[\"link-in-bio\"]\";}i:10;a:4:{s:4:\"name\";s:13:\"loop-carousel\";s:5:\"title\";s:13:\"Loop Carousel\";s:4:\"icon\";s:19:\"eicon-carousel-loop\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:11;a:4:{s:4:\"name\";s:17:\"link-in-bio-var-6\";s:5:\"title\";s:9:\"Portfolio\";s:4:\"icon\";s:19:\"eicon-site-identity\";s:10:\"categories\";s:15:\"[\"link-in-bio\"]\";}i:12;a:4:{s:4:\"name\";s:7:\"gallery\";s:5:\"title\";s:7:\"Gallery\";s:4:\"icon\";s:23:\"eicon-gallery-justified\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:13;a:4:{s:4:\"name\";s:17:\"link-in-bio-var-7\";s:5:\"title\";s:13:\"Business Card\";s:4:\"icon\";s:19:\"eicon-site-identity\";s:10:\"categories\";s:15:\"[\"link-in-bio\"]\";}i:14;a:4:{s:4:\"name\";s:17:\"animated-headline\";s:5:\"title\";s:17:\"Animated Headline\";s:4:\"icon\";s:23:\"eicon-animated-headline\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:15;a:4:{s:4:\"name\";s:10:\"price-list\";s:5:\"title\";s:10:\"Price List\";s:4:\"icon\";s:16:\"eicon-price-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:16;a:4:{s:4:\"name\";s:11:\"price-table\";s:5:\"title\";s:11:\"Price Table\";s:4:\"icon\";s:17:\"eicon-price-table\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:17;a:4:{s:4:\"name\";s:8:\"flip-box\";s:5:\"title\";s:8:\"Flip Box\";s:4:\"icon\";s:14:\"eicon-flip-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:18;a:4:{s:4:\"name\";s:14:\"call-to-action\";s:5:\"title\";s:14:\"Call to Action\";s:4:\"icon\";s:20:\"eicon-image-rollover\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:19;a:4:{s:4:\"name\";s:14:\"media-carousel\";s:5:\"title\";s:14:\"Media Carousel\";s:4:\"icon\";s:20:\"eicon-media-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:20;a:4:{s:4:\"name\";s:15:\"nested-carousel\";s:5:\"title\";s:8:\"Carousel\";s:4:\"icon\";s:21:\"eicon-nested-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:21;a:4:{s:4:\"name\";s:10:\"off-canvas\";s:5:\"title\";s:10:\"Off-Canvas\";s:4:\"icon\";s:16:\"eicon-off-canvas\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:22;a:4:{s:4:\"name\";s:9:\"countdown\";s:5:\"title\";s:9:\"Countdown\";s:4:\"icon\";s:15:\"eicon-countdown\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:23;a:4:{s:4:\"name\";s:13:\"share-buttons\";s:5:\"title\";s:13:\"Share Buttons\";s:4:\"icon\";s:11:\"eicon-share\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:24;a:4:{s:4:\"name\";s:10:\"blockquote\";s:5:\"title\";s:10:\"Blockquote\";s:4:\"icon\";s:16:\"eicon-blockquote\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:25;a:4:{s:4:\"name\";s:6:\"lottie\";s:5:\"title\";s:6:\"Lottie\";s:4:\"icon\";s:12:\"eicon-lottie\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:26;a:4:{s:4:\"name\";s:7:\"hotspot\";s:5:\"title\";s:7:\"Hotspot\";s:4:\"icon\";s:19:\"eicon-image-hotspot\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:27;a:4:{s:4:\"name\";s:13:\"paypal-button\";s:5:\"title\";s:13:\"PayPal Button\";s:4:\"icon\";s:19:\"eicon-paypal-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:28;a:4:{s:4:\"name\";s:14:\"code-highlight\";s:5:\"title\";s:14:\"Code Highlight\";s:4:\"icon\";s:20:\"eicon-code-highlight\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:29;a:4:{s:4:\"name\";s:14:\"video-playlist\";s:5:\"title\";s:14:\"Video Playlist\";s:4:\"icon\";s:20:\"eicon-video-playlist\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:30;a:4:{s:4:\"name\";s:8:\"template\";s:5:\"title\";s:8:\"Template\";s:4:\"icon\";s:19:\"eicon-document-file\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:31;a:4:{s:4:\"name\";s:13:\"stripe-button\";s:5:\"title\";s:13:\"Stripe Button\";s:4:\"icon\";s:19:\"eicon-stripe-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:32;a:4:{s:4:\"name\";s:16:\"progress-tracker\";s:5:\"title\";s:16:\"Progress Tracker\";s:4:\"icon\";s:22:\"eicon-progress-tracker\";s:10:\"categories\";s:40:\"[\"pro-elements\",\"theme-elements-single\"]\";}i:33;a:4:{s:4:\"name\";s:8:\"nav-menu\";s:5:\"title\";s:8:\"Nav Menu\";s:4:\"icon\";s:14:\"eicon-nav-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:34;a:4:{s:4:\"name\";s:17:\"table-of-contents\";s:5:\"title\";s:17:\"Table of Contents\";s:4:\"icon\";s:23:\"eicon-table-of-contents\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:35;a:4:{s:4:\"name\";s:5:\"login\";s:5:\"title\";s:5:\"Login\";s:4:\"icon\";s:15:\"eicon-lock-user\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:36;a:4:{s:4:\"name\";s:6:\"slides\";s:5:\"title\";s:6:\"Slides\";s:4:\"icon\";s:12:\"eicon-slides\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:37;a:4:{s:4:\"name\";s:20:\"testimonial-carousel\";s:5:\"title\";s:20:\"Testimonial Carousel\";s:4:\"icon\";s:26:\"eicon-testimonial-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:38;a:4:{s:4:\"name\";s:7:\"reviews\";s:5:\"title\";s:7:\"Reviews\";s:4:\"icon\";s:12:\"eicon-review\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:39;a:4:{s:4:\"name\";s:15:\"facebook-button\";s:5:\"title\";s:15:\"Facebook Button\";s:4:\"icon\";s:23:\"eicon-facebook-like-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:40;a:4:{s:4:\"name\";s:17:\"facebook-comments\";s:5:\"title\";s:17:\"Facebook Comments\";s:4:\"icon\";s:23:\"eicon-facebook-comments\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:41;a:4:{s:4:\"name\";s:14:\"facebook-embed\";s:5:\"title\";s:14:\"Facebook Embed\";s:4:\"icon\";s:14:\"eicon-fb-embed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:42;a:4:{s:4:\"name\";s:13:\"facebook-page\";s:5:\"title\";s:13:\"Facebook Page\";s:4:\"icon\";s:13:\"eicon-fb-feed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:43;a:4:{s:4:\"name\";s:15:\"theme-site-logo\";s:5:\"title\";s:9:\"Site Logo\";s:4:\"icon\";s:15:\"eicon-site-logo\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:44;a:4:{s:4:\"name\";s:16:\"theme-site-title\";s:5:\"title\";s:10:\"Site Title\";s:4:\"icon\";s:16:\"eicon-site-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:45;a:4:{s:4:\"name\";s:16:\"theme-page-title\";s:5:\"title\";s:10:\"Page Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:46;a:4:{s:4:\"name\";s:16:\"theme-post-title\";s:5:\"title\";s:10:\"Post Title\";s:4:\"icon\";s:16:\"eicon-post-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:47;a:4:{s:4:\"name\";s:18:\"theme-post-excerpt\";s:5:\"title\";s:12:\"Post Excerpt\";s:4:\"icon\";s:18:\"eicon-post-excerpt\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:48;a:4:{s:4:\"name\";s:25:\"theme-post-featured-image\";s:5:\"title\";s:14:\"Featured Image\";s:4:\"icon\";s:20:\"eicon-featured-image\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:49;a:4:{s:4:\"name\";s:19:\"theme-archive-title\";s:5:\"title\";s:13:\"Archive Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:50;a:4:{s:4:\"name\";s:13:\"archive-posts\";s:5:\"title\";s:13:\"Archive Posts\";s:4:\"icon\";s:19:\"eicon-archive-posts\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:51;a:4:{s:4:\"name\";s:10:\"author-box\";s:5:\"title\";s:10:\"Author Box\";s:4:\"icon\";s:12:\"eicon-person\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:52;a:4:{s:4:\"name\";s:13:\"post-comments\";s:5:\"title\";s:13:\"Post Comments\";s:4:\"icon\";s:14:\"eicon-comments\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:53;a:4:{s:4:\"name\";s:15:\"post-navigation\";s:5:\"title\";s:15:\"Post Navigation\";s:4:\"icon\";s:21:\"eicon-post-navigation\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:54;a:4:{s:4:\"name\";s:9:\"post-info\";s:5:\"title\";s:9:\"Post Info\";s:4:\"icon\";s:15:\"eicon-post-info\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:55;a:4:{s:4:\"name\";s:7:\"sitemap\";s:5:\"title\";s:7:\"Sitemap\";s:4:\"icon\";s:13:\"eicon-sitemap\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:56;a:4:{s:4:\"name\";s:11:\"breadcrumbs\";s:5:\"title\";s:11:\"Breadcrumbs\";s:4:\"icon\";s:11:\"eicon-yoast\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:57;a:4:{s:4:\"name\";s:21:\"woocommerce-menu-cart\";s:5:\"title\";s:9:\"Menu Cart\";s:4:\"icon\";s:10:\"eicon-cart\";s:10:\"categories\";s:41:\"[\"theme-elements\",\"woocommerce-elements\"]\";}i:58;a:4:{s:4:\"name\";s:19:\"wc-archive-products\";s:5:\"title\";s:16:\"Archive Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:59;a:4:{s:4:\"name\";s:31:\"woocommerce-archive-description\";s:5:\"title\";s:19:\"Archive Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:60;a:4:{s:4:\"name\";s:20:\"woocommerce-products\";s:5:\"title\";s:8:\"Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:61;a:4:{s:4:\"name\";s:22:\"woocommerce-breadcrumb\";s:5:\"title\";s:23:\"WooCommerce Breadcrumbs\";s:4:\"icon\";s:25:\"eicon-product-breadcrumbs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:62;a:4:{s:4:\"name\";s:14:\"wc-add-to-cart\";s:5:\"title\";s:18:\"Custom Add To Cart\";s:4:\"icon\";s:17:\"eicon-woocommerce\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:63;a:4:{s:4:\"name\";s:11:\"wc-elements\";s:5:\"title\";s:17:\"WooCommerce Pages\";s:4:\"icon\";s:19:\"eicon-product-pages\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:64;a:4:{s:4:\"name\";s:13:\"wc-categories\";s:5:\"title\";s:18:\"Product Categories\";s:4:\"icon\";s:24:\"eicon-product-categories\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:65;a:4:{s:4:\"name\";s:25:\"woocommerce-product-title\";s:5:\"title\";s:13:\"Product Title\";s:4:\"icon\";s:19:\"eicon-product-title\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:66;a:4:{s:4:\"name\";s:26:\"woocommerce-product-images\";s:5:\"title\";s:14:\"Product Images\";s:4:\"icon\";s:20:\"eicon-product-images\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:67;a:4:{s:4:\"name\";s:25:\"woocommerce-product-price\";s:5:\"title\";s:13:\"Product Price\";s:4:\"icon\";s:19:\"eicon-product-price\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:68;a:4:{s:4:\"name\";s:31:\"woocommerce-product-add-to-cart\";s:5:\"title\";s:11:\"Add To Cart\";s:4:\"icon\";s:25:\"eicon-product-add-to-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:69;a:4:{s:4:\"name\";s:26:\"woocommerce-product-rating\";s:5:\"title\";s:14:\"Product Rating\";s:4:\"icon\";s:20:\"eicon-product-rating\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:70;a:4:{s:4:\"name\";s:25:\"woocommerce-product-stock\";s:5:\"title\";s:13:\"Product Stock\";s:4:\"icon\";s:19:\"eicon-product-stock\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:71;a:4:{s:4:\"name\";s:24:\"woocommerce-product-meta\";s:5:\"title\";s:12:\"Product Meta\";s:4:\"icon\";s:18:\"eicon-product-meta\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:72;a:4:{s:4:\"name\";s:37:\"woocommerce-product-short-description\";s:5:\"title\";s:17:\"Short Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:73;a:4:{s:4:\"name\";s:29:\"woocommerce-product-data-tabs\";s:5:\"title\";s:17:\"Product Data Tabs\";s:4:\"icon\";s:18:\"eicon-product-tabs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:74;a:4:{s:4:\"name\";s:42:\"woocommerce-product-additional-information\";s:5:\"title\";s:22:\"Additional Information\";s:4:\"icon\";s:19:\" eicon-product-info\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:75;a:4:{s:4:\"name\";s:27:\"woocommerce-product-related\";s:5:\"title\";s:15:\"Product Related\";s:4:\"icon\";s:21:\"eicon-product-related\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:76;a:4:{s:4:\"name\";s:26:\"woocommerce-product-upsell\";s:5:\"title\";s:7:\"Upsells\";s:4:\"icon\";s:20:\"eicon-product-upsell\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:77;a:4:{s:4:\"name\";s:25:\"woocommerce-checkout-page\";s:5:\"title\";s:8:\"Checkout\";s:4:\"icon\";s:14:\"eicon-checkout\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:78;a:4:{s:4:\"name\";s:16:\"woocommerce-cart\";s:5:\"title\";s:4:\"Cart\";s:4:\"icon\";s:14:\"eicon-woo-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:79;a:4:{s:4:\"name\";s:22:\"woocommerce-my-account\";s:5:\"title\";s:10:\"My Account\";s:4:\"icon\";s:16:\"eicon-my-account\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:80;a:4:{s:4:\"name\";s:28:\"woocommerce-purchase-summary\";s:5:\"title\";s:16:\"Purchase Summary\";s:4:\"icon\";s:22:\"eicon-purchase-summary\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:81;a:4:{s:4:\"name\";s:19:\"woocommerce-notices\";s:5:\"title\";s:19:\"WooCommerce Notices\";s:4:\"icon\";s:25:\"eicon-woocommerce-notices\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:11:{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:5:\"3.6.0\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.0.zip\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}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:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.8.1\";s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"conditions\";a:0:{}}}','off'),(24184,'_site_transient_timeout_available_translations','1746524048','off'),(24185,'_site_transient_available_translations','a:131:{s:2:\"af\";a:8:{s:8:\"language\";s:2:\"af\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-05-13 15:59:22\";s:12:\"english_name\";s:9:\"Afrikaans\";s:11:\"native_name\";s:9:\"Afrikaans\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8-beta/af.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"af\";i:2;s:3:\"afr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Gaan voort\";}}s:2:\"am\";a:8:{s:8:\"language\";s:2:\"am\";s:7:\"version\";s:5:\"6.0.9\";s:7:\"updated\";s:19:\"2022-09-29 20:43:49\";s:12:\"english_name\";s:7:\"Amharic\";s:11:\"native_name\";s:12:\"አማርኛ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.0.9/am.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"am\";i:2;s:3:\"amh\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"ቀጥል\";}}s:3:\"arg\";a:8:{s:8:\"language\";s:3:\"arg\";s:7:\"version\";s:8:\"6.2-beta\";s:7:\"updated\";s:19:\"2022-09-22 16:46:56\";s:12:\"english_name\";s:9:\"Aragonese\";s:11:\"native_name\";s:9:\"Aragonés\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/6.2-beta/arg.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"an\";i:2;s:3:\"arg\";i:3;s:3:\"arg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continar\";}}s:2:\"ar\";a:8:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"6.4.5\";s:7:\"updated\";s:19:\"2024-02-13 12:49:38\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.5/ar.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:2;s:3:\"ara\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"متابعة\";}}s:3:\"ary\";a:8:{s:8:\"language\";s:3:\"ary\";s:7:\"version\";s:6:\"4.8.25\";s:7:\"updated\";s:19:\"2017-01-26 15:42:35\";s:12:\"english_name\";s:15:\"Moroccan Arabic\";s:11:\"native_name\";s:31:\"العربية المغربية\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.25/ary.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:3;s:3:\"ary\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:2:\"as\";a:8:{s:8:\"language\";s:2:\"as\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2024-10-16 07:55:52\";s:12:\"english_name\";s:8:\"Assamese\";s:11:\"native_name\";s:21:\"অসমীয়া\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.6.2/as.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"as\";i:2;s:3:\"asm\";i:3;s:3:\"asm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:3:\"azb\";a:8:{s:8:\"language\";s:3:\"azb\";s:7:\"version\";s:5:\"6.4.5\";s:7:\"updated\";s:19:\"2024-01-19 08:58:31\";s:12:\"english_name\";s:17:\"South Azerbaijani\";s:11:\"native_name\";s:29:\"گؤنئی آذربایجان\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.4.5/azb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:3;s:3:\"azb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"az\";a:8:{s:8:\"language\";s:2:\"az\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-06 00:09:27\";s:12:\"english_name\";s:11:\"Azerbaijani\";s:11:\"native_name\";s:16:\"Azərbaycan dili\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/az.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:2;s:3:\"aze\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Davam\";}}s:3:\"bel\";a:8:{s:8:\"language\";s:3:\"bel\";s:7:\"version\";s:6:\"4.9.26\";s:7:\"updated\";s:19:\"2024-12-26 00:37:42\";s:12:\"english_name\";s:10:\"Belarusian\";s:11:\"native_name\";s:29:\"Беларуская мова\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.9.26/bel.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"be\";i:2;s:3:\"bel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Працягнуць\";}}s:5:\"bg_BG\";a:8:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2024-12-01 08:12:11\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.6.2/bg_BG.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bg\";i:2;s:3:\"bul\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Напред\";}}s:5:\"bn_BD\";a:8:{s:8:\"language\";s:5:\"bn_BD\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2024-10-21 11:26:40\";s:12:\"english_name\";s:20:\"Bengali (Bangladesh)\";s:11:\"native_name\";s:15:\"বাংলা\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.6.2/bn_BD.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"bn\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:28:\"চালিয়ে যান\";}}s:2:\"bo\";a:8:{s:8:\"language\";s:2:\"bo\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2020-10-30 03:24:38\";s:12:\"english_name\";s:7:\"Tibetan\";s:11:\"native_name\";s:21:\"བོད་ཡིག\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8-beta/bo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bo\";i:2;s:3:\"tib\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:33:\"མུ་མཐུད་དུ།\";}}s:5:\"bs_BA\";a:8:{s:8:\"language\";s:5:\"bs_BA\";s:7:\"version\";s:5:\"6.2.6\";s:7:\"updated\";s:19:\"2023-02-22 20:45:53\";s:12:\"english_name\";s:7:\"Bosnian\";s:11:\"native_name\";s:8:\"Bosanski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.6/bs_BA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bs\";i:2;s:3:\"bos\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:2:\"ca\";a:8:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2025-03-29 14:26:13\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.6.2/ca.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ca\";i:2;s:3:\"cat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:3:\"ceb\";a:8:{s:8:\"language\";s:3:\"ceb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-02 17:25:51\";s:12:\"english_name\";s:7:\"Cebuano\";s:11:\"native_name\";s:7:\"Cebuano\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/ceb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"ceb\";i:3;s:3:\"ceb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Padayun\";}}s:5:\"cs_CZ\";a:8:{s:8:\"language\";s:5:\"cs_CZ\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2024-07-23 09:49:04\";s:12:\"english_name\";s:5:\"Czech\";s:11:\"native_name\";s:9:\"Čeština\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.6.2/cs_CZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cs\";i:2;s:3:\"ces\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Pokračovat\";}}s:2:\"cy\";a:8:{s:8:\"language\";s:2:\"cy\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2025-02-05 08:43:20\";s:12:\"english_name\";s:5:\"Welsh\";s:11:\"native_name\";s:7:\"Cymraeg\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.6.2/cy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cy\";i:2;s:3:\"cym\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Parhau\";}}s:5:\"da_DK\";a:8:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2025-04-11 10:52:25\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.6.2/da_DK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"da\";i:2;s:3:\"dan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsæt\";}}s:5:\"de_AT\";a:8:{s:8:\"language\";s:5:\"de_AT\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2025-01-09 10:08:15\";s:12:\"english_name\";s:16:\"German (Austria)\";s:11:\"native_name\";s:21:\"Deutsch (Österreich)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.6.2/de_AT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_CH\";a:8:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2025-04-24 21:48:22\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.6.2/de_CH.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:14:\"de_CH_informal\";a:8:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2025-04-24 21:48:44\";s:12:\"english_name\";s:30:\"German (Switzerland, Informal)\";s:11:\"native_name\";s:21:\"Deutsch (Schweiz, Du)\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/translation/core/6.6.2/de_CH_informal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_DE\";a:8:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2025-05-03 08:03:17\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.6.2/de_DE.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:12:\"de_DE_formal\";a:8:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2025-05-03 08:03:50\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/6.6.2/de_DE_formal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:3:\"dsb\";a:8:{s:8:\"language\";s:3:\"dsb\";s:7:\"version\";s:5:\"6.2.6\";s:7:\"updated\";s:19:\"2022-07-16 12:13:09\";s:12:\"english_name\";s:13:\"Lower Sorbian\";s:11:\"native_name\";s:16:\"Dolnoserbšćina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.2.6/dsb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"dsb\";i:3;s:3:\"dsb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Dalej\";}}s:3:\"dzo\";a:8:{s:8:\"language\";s:3:\"dzo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-06-29 08:59:03\";s:12:\"english_name\";s:8:\"Dzongkha\";s:11:\"native_name\";s:18:\"རྫོང་ཁ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/dzo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"dz\";i:2;s:3:\"dzo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"el\";a:8:{s:8:\"language\";s:2:\"el\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2025-04-13 20:51:27\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"Ελληνικά\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.6.2/el.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"el\";i:2;s:3:\"ell\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Συνέχεια\";}}s:5:\"en_ZA\";a:8:{s:8:\"language\";s:5:\"en_ZA\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2024-08-23 06:54:09\";s:12:\"english_name\";s:22:\"English (South Africa)\";s:11:\"native_name\";s:22:\"English (South Africa)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.6.2/en_ZA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_NZ\";a:8:{s:8:\"language\";s:5:\"en_NZ\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2024-11-06 06:07:50\";s:12:\"english_name\";s:21:\"English (New Zealand)\";s:11:\"native_name\";s:21:\"English (New Zealand)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.6.2/en_NZ.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_CA\";a:8:{s:8:\"language\";s:5:\"en_CA\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2025-03-25 15:37:19\";s:12:\"english_name\";s:16:\"English (Canada)\";s:11:\"native_name\";s:16:\"English (Canada)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.6.2/en_CA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_GB\";a:8:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2025-04-06 12:49:38\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.6.2/en_GB.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_AU\";a:8:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2025-04-25 19:54:55\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.6.2/en_AU.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"eo\";a:8:{s:8:\"language\";s:2:\"eo\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2024-09-17 16:02:45\";s:12:\"english_name\";s:9:\"Esperanto\";s:11:\"native_name\";s:9:\"Esperanto\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.6.2/eo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eo\";i:2;s:3:\"epo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Daŭrigi\";}}s:5:\"es_PE\";a:8:{s:8:\"language\";s:5:\"es_PE\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2024-10-16 21:04:12\";s:12:\"english_name\";s:14:\"Spanish (Peru)\";s:11:\"native_name\";s:17:\"Español de Perú\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.6.2/es_PE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CR\";a:8:{s:8:\"language\";s:5:\"es_CR\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2024-10-23 16:36:30\";s:12:\"english_name\";s:20:\"Spanish (Costa Rica)\";s:11:\"native_name\";s:22:\"Español de Costa Rica\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.6.2/es_CR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_VE\";a:8:{s:8:\"language\";s:5:\"es_VE\";s:7:\"version\";s:5:\"6.4.5\";s:7:\"updated\";s:19:\"2023-10-16 16:00:04\";s:12:\"english_name\";s:19:\"Spanish (Venezuela)\";s:11:\"native_name\";s:21:\"Español de Venezuela\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.5/es_VE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_EC\";a:8:{s:8:\"language\";s:5:\"es_EC\";s:7:\"version\";s:5:\"6.2.6\";s:7:\"updated\";s:19:\"2023-04-21 13:32:10\";s:12:\"english_name\";s:17:\"Spanish (Ecuador)\";s:11:\"native_name\";s:19:\"Español de Ecuador\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.6/es_EC.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_DO\";a:8:{s:8:\"language\";s:5:\"es_DO\";s:7:\"version\";s:6:\"5.8.10\";s:7:\"updated\";s:19:\"2021-10-08 14:32:50\";s:12:\"english_name\";s:28:\"Spanish (Dominican Republic)\";s:11:\"native_name\";s:33:\"Español de República Dominicana\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.8.10/es_DO.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_UY\";a:8:{s:8:\"language\";s:5:\"es_UY\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-03-31 18:33:26\";s:12:\"english_name\";s:17:\"Spanish (Uruguay)\";s:11:\"native_name\";s:19:\"Español de Uruguay\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/es_UY.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PR\";a:8:{s:8:\"language\";s:5:\"es_PR\";s:7:\"version\";s:6:\"5.4.16\";s:7:\"updated\";s:19:\"2020-04-29 15:36:59\";s:12:\"english_name\";s:21:\"Spanish (Puerto Rico)\";s:11:\"native_name\";s:23:\"Español de Puerto Rico\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.4.16/es_PR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_GT\";a:8:{s:8:\"language\";s:5:\"es_GT\";s:7:\"version\";s:6:\"5.2.21\";s:7:\"updated\";s:19:\"2019-03-02 06:35:01\";s:12:\"english_name\";s:19:\"Spanish (Guatemala)\";s:11:\"native_name\";s:21:\"Español de Guatemala\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.2.21/es_GT.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CO\";a:8:{s:8:\"language\";s:5:\"es_CO\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2025-01-09 05:04:53\";s:12:\"english_name\";s:18:\"Spanish (Colombia)\";s:11:\"native_name\";s:20:\"Español de Colombia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.6.2/es_CO.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_AR\";a:8:{s:8:\"language\";s:5:\"es_AR\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2025-01-12 01:37:38\";s:12:\"english_name\";s:19:\"Spanish (Argentina)\";s:11:\"native_name\";s:21:\"Español de Argentina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.6.2/es_AR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_MX\";a:8:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2025-01-15 16:03:08\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.6.2/es_MX.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_ES\";a:8:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2025-01-18 13:16:49\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.6.2/es_ES.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CL\";a:8:{s:8:\"language\";s:5:\"es_CL\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2025-01-23 23:21:19\";s:12:\"english_name\";s:15:\"Spanish (Chile)\";s:11:\"native_name\";s:17:\"Español de Chile\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.6.2/es_CL.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"et\";a:8:{s:8:\"language\";s:2:\"et\";s:7:\"version\";s:5:\"6.5.5\";s:7:\"updated\";s:19:\"2024-06-06 09:50:37\";s:12:\"english_name\";s:8:\"Estonian\";s:11:\"native_name\";s:5:\"Eesti\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.5.5/et.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"et\";i:2;s:3:\"est\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Jätka\";}}s:2:\"eu\";a:8:{s:8:\"language\";s:2:\"eu\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2024-12-05 15:23:38\";s:12:\"english_name\";s:6:\"Basque\";s:11:\"native_name\";s:7:\"Euskara\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.6.2/eu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eu\";i:2;s:3:\"eus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Jarraitu\";}}s:5:\"fa_AF\";a:8:{s:8:\"language\";s:5:\"fa_AF\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2024-06-20 17:15:28\";s:12:\"english_name\";s:21:\"Persian (Afghanistan)\";s:11:\"native_name\";s:31:\"(فارسی (افغانستان\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.6.2/fa_AF.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:5:\"fa_IR\";a:8:{s:8:\"language\";s:5:\"fa_IR\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2025-01-08 15:49:34\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:\"فارسی\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.6.2/fa_IR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:2:\"fi\";a:8:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2024-10-23 07:22:41\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.6.2/fi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fi\";i:2;s:3:\"fin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Jatka\";}}s:5:\"fr_CA\";a:8:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2024-09-30 11:36:50\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.6.2/fr_CA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_FR\";a:8:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2025-03-23 16:04:58\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.6.2/fr_FR.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"fr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_BE\";a:8:{s:8:\"language\";s:5:\"fr_BE\";s:7:\"version\";s:5:\"6.5.5\";s:7:\"updated\";s:19:\"2024-02-01 23:56:53\";s:12:\"english_name\";s:16:\"French (Belgium)\";s:11:\"native_name\";s:21:\"Français de Belgique\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.5.5/fr_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:3:\"fur\";a:8:{s:8:\"language\";s:3:\"fur\";s:7:\"version\";s:6:\"4.8.25\";s:7:\"updated\";s:19:\"2023-04-30 13:56:46\";s:12:\"english_name\";s:8:\"Friulian\";s:11:\"native_name\";s:8:\"Friulian\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.25/fur.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"fur\";i:3;s:3:\"fur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"fy\";a:8:{s:8:\"language\";s:2:\"fy\";s:7:\"version\";s:5:\"6.2.6\";s:7:\"updated\";s:19:\"2022-12-25 12:53:23\";s:12:\"english_name\";s:7:\"Frisian\";s:11:\"native_name\";s:5:\"Frysk\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.2.6/fy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fy\";i:2;s:3:\"fry\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Trochgean\";}}s:2:\"gd\";a:8:{s:8:\"language\";s:2:\"gd\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-08-23 17:41:37\";s:12:\"english_name\";s:15:\"Scottish Gaelic\";s:11:\"native_name\";s:9:\"Gàidhlig\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/gd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"gd\";i:2;s:3:\"gla\";i:3;s:3:\"gla\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"Lean air adhart\";}}s:5:\"gl_ES\";a:8:{s:8:\"language\";s:5:\"gl_ES\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2025-01-14 09:06:14\";s:12:\"english_name\";s:8:\"Galician\";s:11:\"native_name\";s:6:\"Galego\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.6.2/gl_ES.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gl\";i:2;s:3:\"glg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"gu\";a:8:{s:8:\"language\";s:2:\"gu\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2025-03-19 06:11:11\";s:12:\"english_name\";s:8:\"Gujarati\";s:11:\"native_name\";s:21:\"ગુજરાતી\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.6.2/gu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gu\";i:2;s:3:\"guj\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"ચાલુ રાખો\";}}s:3:\"haz\";a:8:{s:8:\"language\";s:3:\"haz\";s:7:\"version\";s:6:\"4.4.33\";s:7:\"updated\";s:19:\"2015-12-05 00:59:09\";s:12:\"english_name\";s:8:\"Hazaragi\";s:11:\"native_name\";s:15:\"هزاره گی\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.4.33/haz.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"haz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:5:\"he_IL\";a:8:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"6.2.6\";s:7:\"updated\";s:19:\"2024-05-04 18:39:24\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.6/he_IL.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"he\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"המשך\";}}s:5:\"hi_IN\";a:8:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"6.4.5\";s:7:\"updated\";s:19:\"2025-02-06 05:17:11\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.5/hi_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hi\";i:2;s:3:\"hin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"जारी रखें\";}}s:2:\"hr\";a:8:{s:8:\"language\";s:2:\"hr\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2025-02-12 05:53:23\";s:12:\"english_name\";s:8:\"Croatian\";s:11:\"native_name\";s:8:\"Hrvatski\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.6.2/hr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hr\";i:2;s:3:\"hrv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:3:\"hsb\";a:8:{s:8:\"language\";s:3:\"hsb\";s:7:\"version\";s:5:\"6.2.6\";s:7:\"updated\";s:19:\"2023-02-22 17:37:32\";s:12:\"english_name\";s:13:\"Upper Sorbian\";s:11:\"native_name\";s:17:\"Hornjoserbšćina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.2.6/hsb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"hsb\";i:3;s:3:\"hsb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:4:\"Dale\";}}s:5:\"hu_HU\";a:8:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2025-03-02 10:00:20\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.6.2/hu_HU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hu\";i:2;s:3:\"hun\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Folytatás\";}}s:2:\"hy\";a:8:{s:8:\"language\";s:2:\"hy\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-12-03 16:21:10\";s:12:\"english_name\";s:8:\"Armenian\";s:11:\"native_name\";s:14:\"Հայերեն\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/hy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hy\";i:2;s:3:\"hye\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Շարունակել\";}}s:5:\"id_ID\";a:8:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2025-03-24 08:29:37\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.6.2/id_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"id\";i:2;s:3:\"ind\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Lanjutkan\";}}s:5:\"is_IS\";a:8:{s:8:\"language\";s:5:\"is_IS\";s:7:\"version\";s:6:\"4.9.26\";s:7:\"updated\";s:19:\"2018-12-11 10:40:02\";s:12:\"english_name\";s:9:\"Icelandic\";s:11:\"native_name\";s:9:\"Íslenska\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.26/is_IS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"is\";i:2;s:3:\"isl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Áfram\";}}s:5:\"it_IT\";a:8:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2025-03-06 16:59:24\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.6.2/it_IT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"it\";i:2;s:3:\"ita\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:2:\"ja\";a:8:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2025-01-08 14:58:19\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.6.2/ja.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"ja\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"次へ\";}}s:5:\"jv_ID\";a:8:{s:8:\"language\";s:5:\"jv_ID\";s:7:\"version\";s:6:\"4.9.26\";s:7:\"updated\";s:19:\"2019-02-16 23:58:56\";s:12:\"english_name\";s:8:\"Javanese\";s:11:\"native_name\";s:9:\"Basa Jawa\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.26/jv_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"jv\";i:2;s:3:\"jav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Nerusaké\";}}s:5:\"ka_GE\";a:8:{s:8:\"language\";s:5:\"ka_GE\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2025-01-22 09:44:57\";s:12:\"english_name\";s:8:\"Georgian\";s:11:\"native_name\";s:21:\"ქართული\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.6.2/ka_GE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ka\";i:2;s:3:\"kat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"გაგრძელება\";}}s:3:\"kab\";a:8:{s:8:\"language\";s:3:\"kab\";s:7:\"version\";s:5:\"6.2.6\";s:7:\"updated\";s:19:\"2023-07-05 11:40:39\";s:12:\"english_name\";s:6:\"Kabyle\";s:11:\"native_name\";s:9:\"Taqbaylit\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.2.6/kab.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"kab\";i:3;s:3:\"kab\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Kemmel\";}}s:2:\"kk\";a:8:{s:8:\"language\";s:2:\"kk\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2024-07-18 02:49:24\";s:12:\"english_name\";s:6:\"Kazakh\";s:11:\"native_name\";s:19:\"Қазақ тілі\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.6.2/kk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"kk\";i:2;s:3:\"kaz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Жалғастыру\";}}s:2:\"km\";a:8:{s:8:\"language\";s:2:\"km\";s:7:\"version\";s:6:\"5.2.21\";s:7:\"updated\";s:19:\"2019-06-10 16:18:28\";s:12:\"english_name\";s:5:\"Khmer\";s:11:\"native_name\";s:27:\"ភាសាខ្មែរ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.2.21/km.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"km\";i:2;s:3:\"khm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"បន្ត\";}}s:2:\"kn\";a:8:{s:8:\"language\";s:2:\"kn\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2024-09-18 15:21:55\";s:12:\"english_name\";s:7:\"Kannada\";s:11:\"native_name\";s:15:\"ಕನ್ನಡ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.6.2/kn.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"kn\";i:2;s:3:\"kan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"ಮುಂದುವರಿಸು\";}}s:5:\"ko_KR\";a:8:{s:8:\"language\";s:5:\"ko_KR\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2025-04-25 00:46:14\";s:12:\"english_name\";s:6:\"Korean\";s:11:\"native_name\";s:9:\"한국어\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.6.2/ko_KR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ko\";i:2;s:3:\"kor\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"계속\";}}s:3:\"ckb\";a:8:{s:8:\"language\";s:3:\"ckb\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2024-08-24 01:25:58\";s:12:\"english_name\";s:16:\"Kurdish (Sorani)\";s:11:\"native_name\";s:13:\"كوردی‎\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.6.2/ckb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ku\";i:3;s:3:\"ckb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"به‌رده‌وام به‌\";}}s:3:\"kir\";a:8:{s:8:\"language\";s:3:\"kir\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2025-01-11 18:00:24\";s:12:\"english_name\";s:6:\"Kyrgyz\";s:11:\"native_name\";s:16:\"Кыргызча\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.6.2/kir.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"ky\";i:2;s:3:\"kir\";i:3;s:3:\"kir\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"Улантуу\";}}s:2:\"lo\";a:8:{s:8:\"language\";s:2:\"lo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 09:59:23\";s:12:\"english_name\";s:3:\"Lao\";s:11:\"native_name\";s:21:\"ພາສາລາວ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/lo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lo\";i:2;s:3:\"lao\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"ຕໍ່​ໄປ\";}}s:5:\"lt_LT\";a:8:{s:8:\"language\";s:5:\"lt_LT\";s:7:\"version\";s:5:\"6.5.5\";s:7:\"updated\";s:19:\"2024-06-13 13:11:03\";s:12:\"english_name\";s:10:\"Lithuanian\";s:11:\"native_name\";s:15:\"Lietuvių kalba\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.5.5/lt_LT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lt\";i:2;s:3:\"lit\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Tęsti\";}}s:2:\"lv\";a:8:{s:8:\"language\";s:2:\"lv\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2025-03-02 17:46:06\";s:12:\"english_name\";s:7:\"Latvian\";s:11:\"native_name\";s:16:\"Latviešu valoda\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.6.2/lv.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lv\";i:2;s:3:\"lav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Turpināt\";}}s:5:\"mk_MK\";a:8:{s:8:\"language\";s:5:\"mk_MK\";s:7:\"version\";s:5:\"6.0.9\";s:7:\"updated\";s:19:\"2022-10-01 09:23:52\";s:12:\"english_name\";s:10:\"Macedonian\";s:11:\"native_name\";s:31:\"Македонски јазик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.0.9/mk_MK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mk\";i:2;s:3:\"mkd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Продолжи\";}}s:5:\"ml_IN\";a:8:{s:8:\"language\";s:5:\"ml_IN\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2024-10-05 15:57:37\";s:12:\"english_name\";s:9:\"Malayalam\";s:11:\"native_name\";s:18:\"മലയാളം\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.6.2/ml_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ml\";i:2;s:3:\"mal\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"തുടരുക\";}}s:2:\"mn\";a:8:{s:8:\"language\";s:2:\"mn\";s:7:\"version\";s:5:\"6.5.5\";s:7:\"updated\";s:19:\"2024-06-20 17:22:06\";s:12:\"english_name\";s:9:\"Mongolian\";s:11:\"native_name\";s:12:\"Монгол\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.5.5/mn.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mn\";i:2;s:3:\"mon\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"mr\";a:8:{s:8:\"language\";s:2:\"mr\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2025-01-24 12:09:32\";s:12:\"english_name\";s:7:\"Marathi\";s:11:\"native_name\";s:15:\"मराठी\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.6.2/mr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mr\";i:2;s:3:\"mar\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"सुरु ठेवा\";}}s:5:\"ms_MY\";a:8:{s:8:\"language\";s:5:\"ms_MY\";s:7:\"version\";s:6:\"5.5.15\";s:7:\"updated\";s:19:\"2022-03-11 13:52:22\";s:12:\"english_name\";s:5:\"Malay\";s:11:\"native_name\";s:13:\"Bahasa Melayu\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.5.15/ms_MY.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ms\";i:2;s:3:\"msa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Teruskan\";}}s:5:\"my_MM\";a:8:{s:8:\"language\";s:5:\"my_MM\";s:7:\"version\";s:6:\"4.2.38\";s:7:\"updated\";s:19:\"2017-12-26 11:57:10\";s:12:\"english_name\";s:17:\"Myanmar (Burmese)\";s:11:\"native_name\";s:15:\"ဗမာစာ\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.2.38/my_MM.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"my\";i:2;s:3:\"mya\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:54:\"ဆက်လက်လုပ်ဆောင်ပါ။\";}}s:5:\"nb_NO\";a:8:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2024-07-21 18:30:52\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.6.2/nb_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nb\";i:2;s:3:\"nob\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsett\";}}s:5:\"ne_NP\";a:8:{s:8:\"language\";s:5:\"ne_NP\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2024-08-30 11:32:23\";s:12:\"english_name\";s:6:\"Nepali\";s:11:\"native_name\";s:18:\"नेपाली\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.6.2/ne_NP.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ne\";i:2;s:3:\"nep\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:43:\"जारी राख्नुहोस्\";}}s:5:\"nl_BE\";a:8:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2025-03-20 09:36:13\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.6.2/nl_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nl_NL\";a:8:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2025-03-30 20:02:27\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.6.2/nl_NL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:12:\"nl_NL_formal\";a:8:{s:8:\"language\";s:12:\"nl_NL_formal\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2025-04-07 16:57:56\";s:12:\"english_name\";s:14:\"Dutch (Formal)\";s:11:\"native_name\";s:20:\"Nederlands (Formeel)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/6.6.2/nl_NL_formal.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nn_NO\";a:8:{s:8:\"language\";s:5:\"nn_NO\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-03-18 10:59:16\";s:12:\"english_name\";s:19:\"Norwegian (Nynorsk)\";s:11:\"native_name\";s:13:\"Norsk nynorsk\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/nn_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nn\";i:2;s:3:\"nno\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Hald fram\";}}s:3:\"oci\";a:8:{s:8:\"language\";s:3:\"oci\";s:7:\"version\";s:6:\"4.8.25\";s:7:\"updated\";s:19:\"2017-08-25 10:03:08\";s:12:\"english_name\";s:7:\"Occitan\";s:11:\"native_name\";s:7:\"Occitan\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.25/oci.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"oc\";i:2;s:3:\"oci\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Contunhar\";}}s:5:\"pa_IN\";a:8:{s:8:\"language\";s:5:\"pa_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-16 05:19:43\";s:12:\"english_name\";s:15:\"Panjabi (India)\";s:11:\"native_name\";s:18:\"ਪੰਜਾਬੀ\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/pa_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pa\";i:2;s:3:\"pan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"ਜਾਰੀ ਰੱਖੋ\";}}s:5:\"pl_PL\";a:8:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2025-04-19 15:08:29\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.6.2/pl_PL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pl\";i:2;s:3:\"pol\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Kontynuuj\";}}s:2:\"ps\";a:8:{s:8:\"language\";s:2:\"ps\";s:7:\"version\";s:6:\"4.3.34\";s:7:\"updated\";s:19:\"2015-12-02 21:41:29\";s:12:\"english_name\";s:6:\"Pashto\";s:11:\"native_name\";s:8:\"پښتو\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.3.34/ps.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ps\";i:2;s:3:\"pus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"دوام ورکړه\";}}s:10:\"pt_PT_ao90\";a:8:{s:8:\"language\";s:10:\"pt_PT_ao90\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2024-08-14 07:51:49\";s:12:\"english_name\";s:27:\"Portuguese (Portugal, AO90)\";s:11:\"native_name\";s:17:\"Português (AO90)\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/translation/core/6.6.2/pt_PT_ao90.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_PT\";a:8:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2025-03-06 01:19:54\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.6.2/pt_PT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_AO\";a:8:{s:8:\"language\";s:5:\"pt_AO\";s:7:\"version\";s:5:\"6.4.5\";s:7:\"updated\";s:19:\"2023-08-21 12:15:00\";s:12:\"english_name\";s:19:\"Portuguese (Angola)\";s:11:\"native_name\";s:20:\"Português de Angola\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.5/pt_AO.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_BR\";a:8:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2025-01-09 14:23:22\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.6.2/pt_BR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pt\";i:2;s:3:\"por\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:3:\"rhg\";a:8:{s:8:\"language\";s:3:\"rhg\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-16 13:03:18\";s:12:\"english_name\";s:8:\"Rohingya\";s:11:\"native_name\";s:8:\"Ruáinga\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/rhg.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"rhg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"ro_RO\";a:8:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2025-04-23 12:11:06\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.6.2/ro_RO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ro\";i:2;s:3:\"ron\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuă\";}}s:5:\"ru_RU\";a:8:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2025-03-25 14:54:41\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.6.2/ru_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ru\";i:2;s:3:\"rus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продолжить\";}}s:3:\"sah\";a:8:{s:8:\"language\";s:3:\"sah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-21 02:06:41\";s:12:\"english_name\";s:5:\"Sakha\";s:11:\"native_name\";s:14:\"Сахалыы\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/sah.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"sah\";i:3;s:3:\"sah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Салҕаа\";}}s:3:\"snd\";a:8:{s:8:\"language\";s:3:\"snd\";s:7:\"version\";s:6:\"5.4.16\";s:7:\"updated\";s:19:\"2020-07-07 01:53:37\";s:12:\"english_name\";s:6:\"Sindhi\";s:11:\"native_name\";s:8:\"سنڌي\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/5.4.16/snd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"sd\";i:2;s:3:\"snd\";i:3;s:3:\"snd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"اڳتي هلو\";}}s:5:\"si_LK\";a:8:{s:8:\"language\";s:5:\"si_LK\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 06:00:52\";s:12:\"english_name\";s:7:\"Sinhala\";s:11:\"native_name\";s:15:\"සිංහල\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/si_LK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"si\";i:2;s:3:\"sin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:44:\"දිගටම කරගෙන යන්න\";}}s:5:\"sk_SK\";a:8:{s:8:\"language\";s:5:\"sk_SK\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2025-02-12 05:34:34\";s:12:\"english_name\";s:6:\"Slovak\";s:11:\"native_name\";s:11:\"Slovenčina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.6.2/sk_SK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sk\";i:2;s:3:\"slk\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Pokračovať\";}}s:3:\"skr\";a:8:{s:8:\"language\";s:3:\"skr\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2024-09-21 09:44:08\";s:12:\"english_name\";s:7:\"Saraiki\";s:11:\"native_name\";s:14:\"سرائیکی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.6.2/skr.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"skr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"جاری رکھو\";}}s:5:\"sl_SI\";a:8:{s:8:\"language\";s:5:\"sl_SI\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2024-08-30 07:14:35\";s:12:\"english_name\";s:9:\"Slovenian\";s:11:\"native_name\";s:13:\"Slovenščina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.6.2/sl_SI.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sl\";i:2;s:3:\"slv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Nadaljuj\";}}s:2:\"sq\";a:8:{s:8:\"language\";s:2:\"sq\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2025-01-08 17:33:38\";s:12:\"english_name\";s:8:\"Albanian\";s:11:\"native_name\";s:5:\"Shqip\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.6.2/sq.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sq\";i:2;s:3:\"sqi\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Vazhdo\";}}s:5:\"sr_RS\";a:8:{s:8:\"language\";s:5:\"sr_RS\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2024-09-20 22:15:56\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.6.2/sr_RS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sr\";i:2;s:3:\"srp\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"Настави\";}}s:5:\"sv_SE\";a:8:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2025-02-10 13:02:55\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.6.2/sv_SE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sv\";i:2;s:3:\"swe\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Fortsätt\";}}s:2:\"sw\";a:8:{s:8:\"language\";s:2:\"sw\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2024-11-06 09:33:25\";s:12:\"english_name\";s:7:\"Swahili\";s:11:\"native_name\";s:9:\"Kiswahili\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.6.2/sw.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sw\";i:2;s:3:\"swa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Endelea\";}}s:3:\"szl\";a:8:{s:8:\"language\";s:3:\"szl\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-24 19:58:14\";s:12:\"english_name\";s:8:\"Silesian\";s:11:\"native_name\";s:17:\"Ślōnskŏ gŏdka\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/szl.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"szl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:13:\"Kōntynuować\";}}s:5:\"ta_IN\";a:8:{s:8:\"language\";s:5:\"ta_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 03:22:47\";s:12:\"english_name\";s:5:\"Tamil\";s:11:\"native_name\";s:15:\"தமிழ்\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ta_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ta\";i:2;s:3:\"tam\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"தொடரவும்\";}}s:5:\"ta_LK\";a:8:{s:8:\"language\";s:5:\"ta_LK\";s:7:\"version\";s:6:\"4.2.38\";s:7:\"updated\";s:19:\"2015-12-03 01:07:44\";s:12:\"english_name\";s:17:\"Tamil (Sri Lanka)\";s:11:\"native_name\";s:15:\"தமிழ்\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.2.38/ta_LK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ta\";i:2;s:3:\"tam\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"தொடர்க\";}}s:2:\"te\";a:8:{s:8:\"language\";s:2:\"te\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:47:39\";s:12:\"english_name\";s:6:\"Telugu\";s:11:\"native_name\";s:18:\"తెలుగు\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/te.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"te\";i:2;s:3:\"tel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"కొనసాగించు\";}}s:2:\"th\";a:8:{s:8:\"language\";s:2:\"th\";s:7:\"version\";s:6:\"5.8.10\";s:7:\"updated\";s:19:\"2022-06-08 04:30:30\";s:12:\"english_name\";s:4:\"Thai\";s:11:\"native_name\";s:9:\"ไทย\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.8.10/th.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"th\";i:2;s:3:\"tha\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"ต่อไป\";}}s:2:\"tl\";a:8:{s:8:\"language\";s:2:\"tl\";s:7:\"version\";s:6:\"4.8.25\";s:7:\"updated\";s:19:\"2017-09-30 09:04:29\";s:12:\"english_name\";s:7:\"Tagalog\";s:11:\"native_name\";s:7:\"Tagalog\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8.25/tl.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tl\";i:2;s:3:\"tgl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Magpatuloy\";}}s:5:\"tr_TR\";a:8:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2025-03-14 00:45:16\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.6.2/tr_TR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tr\";i:2;s:3:\"tur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Devam\";}}s:5:\"tt_RU\";a:8:{s:8:\"language\";s:5:\"tt_RU\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-20 20:20:50\";s:12:\"english_name\";s:5:\"Tatar\";s:11:\"native_name\";s:19:\"Татар теле\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/tt_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tt\";i:2;s:3:\"tat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"дәвам итү\";}}s:3:\"tah\";a:8:{s:8:\"language\";s:3:\"tah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-06 18:39:39\";s:12:\"english_name\";s:8:\"Tahitian\";s:11:\"native_name\";s:10:\"Reo Tahiti\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/tah.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"ty\";i:2;s:3:\"tah\";i:3;s:3:\"tah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"ug_CN\";a:8:{s:8:\"language\";s:5:\"ug_CN\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2024-11-18 17:39:54\";s:12:\"english_name\";s:6:\"Uighur\";s:11:\"native_name\";s:16:\"ئۇيغۇرچە\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.6.2/ug_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ug\";i:2;s:3:\"uig\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:26:\"داۋاملاشتۇرۇش\";}}s:2:\"uk\";a:8:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"6.4.5\";s:7:\"updated\";s:19:\"2025-04-06 13:26:14\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.5/uk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uk\";i:2;s:3:\"ukr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продовжити\";}}s:2:\"ur\";a:8:{s:8:\"language\";s:2:\"ur\";s:7:\"version\";s:6:\"5.4.16\";s:7:\"updated\";s:19:\"2020-04-09 11:17:33\";s:12:\"english_name\";s:4:\"Urdu\";s:11:\"native_name\";s:8:\"اردو\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.4.16/ur.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ur\";i:2;s:3:\"urd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"جاری رکھیں\";}}s:5:\"uz_UZ\";a:8:{s:8:\"language\";s:5:\"uz_UZ\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-02-28 12:02:22\";s:12:\"english_name\";s:5:\"Uzbek\";s:11:\"native_name\";s:11:\"O‘zbekcha\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/uz_UZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uz\";i:2;s:3:\"uzb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Davom etish\";}}s:2:\"vi\";a:8:{s:8:\"language\";s:2:\"vi\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2024-09-23 10:07:11\";s:12:\"english_name\";s:10:\"Vietnamese\";s:11:\"native_name\";s:14:\"Tiếng Việt\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.6.2/vi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"vi\";i:2;s:3:\"vie\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Tiếp tục\";}}s:5:\"zh_CN\";a:8:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2025-01-12 05:37:14\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.6.2/zh_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"继续\";}}s:5:\"zh_TW\";a:8:{s:8:\"language\";s:5:\"zh_TW\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2025-04-15 08:43:35\";s:12:\"english_name\";s:16:\"Chinese (Taiwan)\";s:11:\"native_name\";s:12:\"繁體中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.6.2/zh_TW.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}s:5:\"zh_HK\";a:8:{s:8:\"language\";s:5:\"zh_HK\";s:7:\"version\";s:5:\"6.2.6\";s:7:\"updated\";s:19:\"2022-07-15 15:25:03\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:12:\"香港中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.6/zh_HK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}}','off'),(24195,'_site_transient_timeout_wp_theme_files_patterns-1204028949907fb923fed15abc08ab4b','1746520394','off'),(24197,'_site_transient_wp_theme_files_patterns-1204028949907fb923fed15abc08ab4b','a:2:{s:7:\"version\";s:5:\"1.1.2\";s:8:\"patterns\";a:0:{}}','off');
/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_postmeta`
--

DROP TABLE IF EXISTS `wp_postmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_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=11188 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_postmeta`
--

LOCK TABLES `wp_postmeta` WRITE;
/*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */;
INSERT INTO `wp_postmeta` VALUES (1,19,'_wp_attached_file','2019/10/favicon.png'),(2,43,'_wp_attached_file','2019/11/bg-page-title.jpg'),(3,46,'_wp_attached_file','2019/10/logo-footer-01.png'),(4,87,'_wp_attached_file','2019/10/bg-footer.png'),(5,109,'_wp_attached_file','2019/10/bg-footer-bottom.jpg'),(6,149,'_wp_attached_file','2019/11/constr-01.jpg'),(7,149,'post_views_count','0'),(8,150,'_wp_attached_file','2019/11/constr-02.jpg'),(9,151,'_wp_attached_file','2019/11/constr-03.jpg'),(10,152,'_wp_attached_file','2019/11/constr-04.jpg'),(11,153,'_wp_attached_file','2019/11/constr-05.jpg'),(12,154,'_wp_attached_file','2019/11/logo-hidden-sidebar.png'),(13,170,'_wp_attached_file','2019/11/constr-06.jpg'),(14,174,'_wp_attached_file','2019/11/constr-07.jpg'),(15,175,'_wp_attached_file','2019/11/constr-08.jpg'),(16,176,'_wp_attached_file','2019/11/constr-09.jpg'),(17,177,'_wp_attached_file','2019/11/constr-10.jpg'),(18,178,'_wp_attached_file','2019/11/constr-11.jpg'),(19,179,'_wp_attached_file','2019/11/gallery-01.jpg'),(20,180,'_wp_attached_file','2019/11/gallery-02.jpg'),(21,181,'_wp_attached_file','2019/11/gallery-03.jpg'),(22,182,'_wp_attached_file','2019/11/gallery-04.jpg'),(23,183,'_wp_attached_file','2019/11/gallery-05.jpg'),(24,184,'_wp_attached_file','2019/11/gallery-06.jpg'),(25,237,'_wp_attached_file','2019/11/author-01.jpg'),(26,237,'_wp_attachment_wp_user_avatar','2'),(27,238,'_wp_attached_file','2019/11/author-02.jpg'),(28,238,'_wp_attachment_wp_user_avatar','3'),(29,250,'_wp_attached_file','2019/11/marker.png'),(30,279,'_wp_attached_file','2019/11/info-icon-01.png'),(31,280,'_wp_attached_file','2019/11/info-icon-02.png'),(32,281,'_wp_attached_file','2019/11/info-icon-03.png'),(33,302,'_wp_attached_file','2019/11/bg-contact.jpg'),(34,332,'_wp_attached_file','2019/11/bg-coming-soon.png'),(35,351,'_wp_attached_file','2019/11/team-01.jpg'),(36,352,'_wp_attached_file','2019/11/team-02.jpg'),(37,353,'_wp_attached_file','2019/11/team-03.jpg'),(38,354,'_wp_attached_file','2019/11/team-04.jpg'),(39,355,'_wp_attached_file','2019/11/team-05.jpg'),(40,356,'_wp_attached_file','2019/11/team-06.jpg'),(41,380,'_wp_attached_file','2019/11/team-details.jpg'),(42,397,'_wp_attached_file','2019/11/testimonial-01.jpg'),(43,398,'_wp_attached_file','2019/11/testimonial-02.jpg'),(44,399,'_wp_attached_file','2019/11/testimonial-03.jpg'),(45,399,'_wp_attachment_wp_user_avatar','1'),(46,400,'_wp_attached_file','2019/11/testimonial-04.jpg'),(47,401,'_wp_attached_file','2019/11/testimonial-05.jpg'),(48,402,'_wp_attached_file','2019/11/testimonial-06.jpg'),(49,405,'_wp_attached_file','2019/11/dot-map.png'),(50,430,'_wp_attached_file','2019/11/service-01.jpg'),(51,431,'_wp_attached_file','2019/11/service-02.jpg'),(52,432,'_wp_attached_file','2019/11/service-03.jpg'),(53,433,'_wp_attached_file','2019/11/service-04.jpg'),(54,437,'_wp_attached_file','2019/11/service-05.jpg'),(55,612,'_wp_attached_file','2019/11/icon-box-01.png'),(56,613,'_wp_attached_file','2019/11/icon-box-02.png'),(57,623,'_wp_attached_file','2019/11/banner-01.jpg'),(58,633,'_wp_attached_file','2019/11/signature1.png'),(59,663,'_wp_attached_file','2019/11/bg-parallax-01-scaled.jpg'),(60,759,'_wp_attached_file','2019/11/product-01.jpg'),(61,760,'_wp_attached_file','2019/11/product-02.jpg'),(62,761,'_wp_attached_file','2019/11/product-03.jpg'),(63,762,'_wp_attached_file','2019/11/product-04.jpg'),(64,763,'_wp_attached_file','2019/11/product-05.jpg'),(65,764,'_wp_attached_file','2019/11/product-06.jpg'),(66,765,'_wp_attached_file','2019/11/product-07.jpg'),(67,766,'_wp_attached_file','2019/11/product-08.jpg'),(68,767,'_wp_attached_file','2019/11/product-09.jpg'),(69,768,'_wp_attached_file','2019/11/product-10.jpg'),(70,769,'_wp_attached_file','2019/11/product-11-scaled.jpg'),(71,770,'_wp_attached_file','2019/11/product-12.jpg'),(72,798,'_wp_attached_file','2019/11/p-dark-logo1.png'),(73,806,'_wp_attached_file','2019/11/logo-footer-02.png'),(74,813,'_wp_attached_file','2019/11/bg-slider-01.jpg'),(75,822,'_wp_attached_file','2019/11/bg-slider-bottom-scaled.png'),(76,843,'_wp_attached_file','2019/11/home-image-01.png'),(77,861,'_wp_attached_file','2019/11/service-06.jpg'),(78,862,'_wp_attached_file','2019/11/service-07.jpg'),(79,863,'_wp_attached_file','2019/11/service-08.jpg'),(80,864,'_wp_attached_file','2019/11/service-09.jpg'),(81,879,'_wp_attached_file','2019/11/bg-slider-02.jpg'),(82,880,'_wp_attached_file','2019/11/bg-slider-03.jpg'),(83,882,'_wp_attached_file','2019/11/bg-section-01.jpg'),(84,886,'_wp_attached_file','2019/11/banner-02.jpg'),(85,889,'_wp_attached_file','2019/11/banner-icon-01.png'),(86,906,'_wp_attached_file','2019/11/map.png'),(87,925,'_wp_attached_file','2019/11/team-03-new.jpg'),(88,926,'_wp_attached_file','2019/11/team-04-new.jpg'),(89,927,'_wp_attached_file','2019/11/team-05-new.jpg'),(90,948,'_wp_attached_file','2019/11/bg-parallax-01-1.jpg'),(91,957,'_wp_attached_file','2019/11/marker-02.png'),(92,989,'_wp_attached_file','2019/11/portfolio-07.jpg'),(93,997,'_wp_attached_file','2019/11/client-01.png'),(94,998,'_wp_attached_file','2019/11/client-02.png'),(95,999,'_wp_attached_file','2019/11/client-03.png'),(96,1000,'_wp_attached_file','2019/11/client-04.png'),(97,1006,'_wp_attached_file','2019/11/bg-slider-04.jpg'),(98,1009,'_wp_attached_file','2019/11/bg-slider-05.jpg'),(99,1018,'_wp_attached_file','2019/11/bg-slider-06.jpg'),(100,1056,'_wp_attached_file','2019/11/bg-parallax-02.jpg'),(101,1072,'_wp_attached_file','2019/11/bg-section-02.jpg'),(102,1075,'_wp_attached_file','2019/11/pointer-01.png'),(103,1122,'_wp_attached_file','2019/11/app-store.png'),(104,1123,'_wp_attached_file','2019/11/google-play.png'),(105,1124,'_wp_attached_file','2019/11/phone.png'),(106,1153,'_wp_attached_file','2019/11/bg-form-01.png'),(107,1155,'_wp_attached_file','2019/11/bg-section-03.jpg'),(108,1187,'_wp_attached_file','2019/11/service-pointer.png'),(109,1251,'_wp_attached_file','2019/11/logo-footer-03.png'),(110,1253,'_wp_attached_file','2019/11/p-light-logo1.png'),(111,1254,'_wp_attached_file','2019/11/p-dark-logo2.png'),(112,1255,'_wp_attached_file','2019/11/bg-slider-07.jpg'),(113,1257,'_wp_attached_file','2019/11/bg-slider-08.jpg'),(114,1258,'_wp_attached_file','2019/11/bg-slider-09.jpg'),(115,1300,'_wp_attached_file','2019/11/h2_banner_img1.jpg'),(116,1301,'_wp_attached_file','2019/11/h2_banner_img2.jpg'),(117,1302,'_wp_attached_file','2019/11/h2_banner_img3.png'),(118,1324,'_wp_attached_file','2019/11/banner.png'),(119,1349,'_wp_attached_file','2019/11/info-icon-04.png'),(120,1350,'_wp_attached_file','2019/11/info-icon-05.png'),(121,1351,'_wp_attached_file','2019/11/info-icon-06.png'),(122,1352,'_wp_attached_file','2019/11/marker-02-1.png'),(123,1385,'_wp_attached_file','2019/11/bg-section-03-1.jpg'),(124,1387,'_wp_attached_file','2019/11/bg-section-05.png'),(125,1389,'_wp_attached_file','2019/11/logo-landing.png'),(126,1412,'_wp_attached_file','2019/11/demo3.jpg'),(127,1413,'_wp_attached_file','2019/11/demo4.jpg'),(128,1414,'_wp_attached_file','2019/11/demo5.jpg'),(129,1415,'_wp_attached_file','2019/11/demo6.jpg'),(130,1424,'_wp_attached_file','2019/11/demo1.jpg'),(131,1425,'_wp_attached_file','2019/11/demo2.jpg'),(132,1436,'_wp_attached_file','2019/11/bg-section-06.png'),(133,1437,'_wp_attached_file','2019/11/devices.png'),(134,1438,'_wp_attached_file','2019/11/landing-footer.png'),(135,1444,'_wp_attached_file','2019/11/feature-icon-02.png'),(136,1445,'_wp_attached_file','2019/11/feature-icon-03.png'),(137,1446,'_wp_attached_file','2019/11/feature-icon-04.png'),(138,1447,'_wp_attached_file','2019/11/feature-icon-05.png'),(139,1448,'_wp_attached_file','2019/11/feature-icon-06.png'),(140,1449,'_wp_attached_file','2019/11/feature-icon-07.png'),(141,1450,'_wp_attached_file','2019/11/feature-icon-08.png'),(142,1454,'_wp_attached_file','2019/11/feature-icon-01.png'),(143,1509,'_wp_attached_file','woocommerce-placeholder.png'),(144,1515,'_wp_attached_file','2019/12/counter-icon-01.png'),(145,1516,'_wp_attached_file','2019/12/counter-icon-02.png'),(146,1517,'_wp_attached_file','2019/12/counter-icon-03.png'),(147,1520,'_wp_attached_file','2019/12/signature.png'),(148,1600,'_wp_attached_file','2019/12/demo-rtl.jpg'),(149,1785,'_wp_attached_file','2022/10/demo4.jpg'),(157,1786,'_menu_item_type','custom'),(158,1786,'_menu_item_menu_item_parent','0'),(159,1786,'_menu_item_object_id','1786'),(160,1786,'_menu_item_object','custom'),(161,1786,'_menu_item_target',''),(162,1786,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(163,1786,'_menu_item_xfn',''),(164,1786,'_menu_item_url','#'),(165,1786,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(166,1786,'_menu_item_ct_icon',''),(167,799,'_wp_page_template','default'),(169,799,'_elementor_edit_mode','builder'),(170,799,'_elementor_template_type','wp-post'),(171,799,'_elementor_version','3.24.7'),(172,799,'_elementor_data','[{\"id\":\"7225c724\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#060606E6\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer.png\",\"id\":87},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"109cef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.3},\"elements\":[{\"id\":\"6667e1a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/logo.jpg\",\"id\":2748,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae6ecf2\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Factory 1: No. 4 Doan Thi Kia, Dong Chieu Hamlet, Tan Dong\\nHiep Ward, Di An City, Binh Duong, Viet Nam\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}},{\"content\":\"Factory 2: Khac Niem Industrial Cluster, Khac Niem Ward, Bac Ninh\\nCit, Bac Ninh, Viet Nam\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"be1a6dd\"},{\"content\":\"Factory 3: 1476 Pho Va Street, Hap Linh Ward, Bac Ninh City, Bac\\nNinh, Viet Nam\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"add5251\"},{\"content\":\"0968 86 03 86\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"712a43be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.664,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e4e262b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Menu\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6e682e5b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"39\",\"style\":\"tow-col-light\",\"link_color_hover\":\"#F9A244\",\"line_color_hover\":\"#F9A244\",\"menu_align\":\"left\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"e174b97\",\"elType\":\"widget\",\"settings\":{\"title\":\"Open Hours\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"1e0523b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Mon - Sun: 24\\/24<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ab76a16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7},\"elements\":[{\"id\":\"37a5e636\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"aa15610\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#85B23B\",\"padding\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"040\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2487ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40d8f8a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sign up for alerts, our latest blogs, thoughts, and insights.\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d21d208\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"27383ab2\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin-box\",\"library\":\"material\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24b98c01\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"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},\"gap\":\"extended\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a6c11e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53be024\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"5990603\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"7f874a5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright @2024 of Far East High Tech Ltd. Co.<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_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},\"_css_classes\":\"ct-copyright\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(173,799,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:2:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:1;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:16:\"link_color_hover\";i:1;s:16:\"line_color_hover\";i:1;s:10:\"menu_align\";i:1;s:17:\"menu_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:13:\"ct_newsletter\";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:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";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:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:1;}}}}}'),(174,1214,'_elementor_edit_mode','builder'),(175,1214,'_elementor_template_type','section'),(176,1214,'_elementor_version','3.7.8'),(177,1214,'_wp_page_template','default'),(178,1214,'_elementor_data','[{\"id\":\"c6873c8\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"9c326ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9c811c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Plan\",\"description\":\"The argument in favor of using to filler text goes something.\",\"content_list\":[{\"content\":\"<del>24\\/7 system monitoring<\\/del>\",\"_id\":\"351129b\"},{\"content\":\"Security management\",\"_id\":\"873275c\",\"active\":\"yes\"},{\"content\":\"<del>Secure finance backup<\\/del>\",\"_id\":\"730077f\"},{\"content\":\"<del>Remote support<\\/del>\",\"_id\":\"cb31418\"}],\"price\":\"$29\",\"time\":\"\\/ monthly\",\"button_text\":\"Get a free trial\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false},{\"id\":\"ba9c4e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d726b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard Plan\",\"description\":\"The argument in favor of using to filler text goes something.\",\"content_list\":[{\"content\":\"24\\/7 system monitoring\",\"_id\":\"351129b\"},{\"content\":\"<del>Security management<\\/del>\",\"_id\":\"873275c\",\"active\":\"yes\"},{\"content\":\"Secure finance backup\",\"_id\":\"730077f\"},{\"content\":\"<del>Remote support<\\/del>\",\"_id\":\"cb31418\",\"active\":\"yes\"}],\"price\":\"$49\",\"time\":\"\\/ monthly\",\"button_text\":\"Get a free trial\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_css_classes\":\"pricing-remove-bg\",\"recommended\":\"Recommended\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false},{\"id\":\"9c8bcbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2836832\",\"elType\":\"widget\",\"settings\":{\"title\":\"Extended Plan\",\"description\":\"The argument in favor of using to filler text goes something.\",\"content_list\":[{\"content\":\"24\\/7 system monitoring\",\"_id\":\"351129b\",\"active\":\"yes\"},{\"content\":\"Security management\",\"_id\":\"873275c\",\"active\":\"yes\"},{\"content\":\"Secure finance backup\",\"_id\":\"730077f\"},{\"content\":\"Remote support\",\"_id\":\"cb31418\",\"active\":\"yes\"}],\"price\":\"$59\",\"time\":\"\\/ monthly\",\"button_text\":\"Get a free trial\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_css_classes\":\"pricing-bg2\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false}],\"isInner\":false}]'),(179,1214,'post_views_count','10'),(180,1214,'_elementor_controls_usage','a:3:{s:10:\"ct_pricing\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_list\";a:8:{s:5:\"title\";i:3;s:11:\"description\";i:3;s:12:\"content_list\";i:3;s:5:\"price\";i:3;s:4:\"time\";i:3;s:11:\"button_text\";i:3;s:11:\"button_link\";i:3;s:11:\"recommended\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:5:\"style\";i:3;s:10:\"ct_animate\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;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:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:13:\"margin_mobile\";i:2;}}}}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:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}}'),(182,1217,'_elementor_edit_mode','builder'),(183,1217,'_elementor_template_type','section'),(184,1217,'_elementor_version','3.7.8'),(185,1217,'_wp_page_template','default'),(186,1217,'_elementor_data','[{\"id\":\"c6873c8\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"9c326ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9c811c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Plan\",\"description\":\"The argument in favor of using to filler text goes something.\",\"content_list\":[{\"content\":\"<del>24\\/7 system monitoring<\\/del>\",\"_id\":\"351129b\"},{\"content\":\"Security management\",\"_id\":\"873275c\",\"active\":\"yes\"},{\"content\":\"<del>Secure finance backup<\\/del>\",\"_id\":\"730077f\"},{\"content\":\"<del>Remote support<\\/del>\",\"_id\":\"cb31418\"}],\"price\":\"$49\",\"time\":\"\\/ monthly\",\"button_text\":\"Get a free trial\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false},{\"id\":\"ba9c4e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d726b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard Plan\",\"description\":\"The argument in favor of using to filler text goes something.\",\"content_list\":[{\"content\":\"24\\/7 system monitoring\",\"_id\":\"351129b\"},{\"content\":\"<del>Security management<\\/del>\",\"_id\":\"873275c\",\"active\":\"yes\"},{\"content\":\"Secure finance backup\",\"_id\":\"730077f\"},{\"content\":\"<del>Remote support<\\/del>\",\"_id\":\"cb31418\",\"active\":\"yes\"}],\"price\":\"$89\",\"time\":\"\\/ monthly\",\"button_text\":\"Get a free trial\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_css_classes\":\"pricing-remove-bg\",\"recommended\":\"Recommended\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false},{\"id\":\"9c8bcbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2836832\",\"elType\":\"widget\",\"settings\":{\"title\":\"Extended Plan\",\"description\":\"The argument in favor of using to filler text goes something.\",\"content_list\":[{\"content\":\"24\\/7 system monitoring\",\"_id\":\"351129b\",\"active\":\"yes\"},{\"content\":\"Security management\",\"_id\":\"873275c\",\"active\":\"yes\"},{\"content\":\"Secure finance backup\",\"_id\":\"730077f\"},{\"content\":\"Remote support\",\"_id\":\"cb31418\",\"active\":\"yes\"}],\"price\":\"$120\",\"time\":\"\\/ monthly\",\"button_text\":\"Get a free trial\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_css_classes\":\"pricing-bg2\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false}],\"isInner\":false}]'),(187,1217,'post_views_count','6'),(188,1217,'_elementor_controls_usage','a:3:{s:10:\"ct_pricing\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_list\";a:8:{s:5:\"title\";i:3;s:11:\"description\";i:3;s:12:\"content_list\";i:3;s:5:\"price\";i:3;s:4:\"time\";i:3;s:11:\"button_text\";i:3;s:11:\"button_link\";i:3;s:11:\"recommended\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:5:\"style\";i:3;s:10:\"ct_animate\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;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:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:13:\"margin_mobile\";i:2;}}}}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:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}}'),(200,1644,'_elementor_edit_mode','builder'),(201,1644,'_elementor_template_type','kit'),(202,1644,'_elementor_version','3.24.7'),(203,1644,'_elementor_page_settings','a:11:{s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";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:4:{i:0;a:3:{s:3:\"_id\";s:8:\"2755e003\";s:5:\"title\";s:14:\"Saved Color #5\";s:5:\"color\";s:7:\"#4054B2\";}i:1;a:3:{s:3:\"_id\";s:8:\"6a6cd635\";s:5:\"title\";s:14:\"Saved Color #6\";s:5:\"color\";s:7:\"#23A455\";}i:2;a:3:{s:3:\"_id\";s:8:\"1678dc62\";s:5:\"title\";s:14:\"Saved Color #7\";s:5:\"color\";s:4:\"#000\";}i:3;a:3:{s:3:\"_id\";s:8:\"7397ce14\";s:5:\"title\";s:14:\"Saved Color #8\";s:5:\"color\";s:4:\"#FFF\";}}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:16:\"Primary Headline\";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:18:\"Secondary Headline\";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:9:\"Body 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:11:\"Accent Text\";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:9:\"site_name\";s:7:\"fe2tech\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;s:18:\"lightbox_title_src\";s:0:\"\";s:24:\"lightbox_description_src\";s:0:\"\";}'),(204,1772,'_elementor_edit_mode','builder'),(205,1772,'_elementor_template_type','wp-post'),(206,1772,'post_views_count','1'),(207,1772,'_wp_page_template','default'),(208,1772,'_elementor_data','[{\"id\":\"b2cb422\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"29dd76a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c89cf6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/demo1.jpg\",\"id\":1424},\"title\":\"Contio - <cite>NEW YORK<\\/cite>\",\"btn_text\":\"Multipage\",\"button_link\":{\"url\":\"http:\\/\\/fe2tech.com\\/\",\"is_external\":\"on\",\"nofollow\":\"\"},\"_animation\":\"none\",\"btn_text2\":\"Onepage\",\"button_link2\":{\"url\":\"http:\\/\\/fe2tech.com\\/home-1-one-page\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"ct_showcase\"}],\"isInner\":false},{\"id\":\"ec8c42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d96695\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/demo2.jpg\",\"id\":1425},\"title\":\"Contio - <cite>LOS ANGELES<\\/cite>\",\"btn_text\":\"Multipage\",\"button_link\":{\"url\":\"http:\\/\\/fe2tech.com\\/home-2\\/\",\"is_external\":\"on\",\"nofollow\":\"\"},\"_animation\":\"none\",\"btn_text2\":\"Onepage\",\"button_link2\":{\"url\":\"http:\\/\\/fe2tech.com\\/home-2-one-page\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"ct_showcase\"}],\"isInner\":false},{\"id\":\"480f6b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cfbd66a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/demo3.jpg\",\"id\":1412},\"title\":\"Contio - <cite>SYDNEY<\\/cite>\",\"btn_text\":\"Multipage\",\"button_link\":{\"url\":\"http:\\/\\/fe2tech.com\\/home-3\\/\",\"is_external\":\"on\",\"nofollow\":\"\"},\"_animation\":\"none\",\"btn_text2\":\"Onepage\",\"button_link2\":{\"url\":\"http:\\/\\/fe2tech.com\\/home-3-one-page\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"ct_showcase\"}],\"isInner\":false},{\"id\":\"c2ea604\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a84b88b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2022\\/10\\/demo4.jpg\",\"id\":1785,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Coming Soon\",\"button_link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"\"},\"_animation\":\"none\",\"button_link2\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"ct_showcase\"}],\"isInner\":false}],\"isInner\":false}]'),(210,1772,'_elementor_version','3.8.0'),(253,1878,'_menu_item_type','custom'),(254,1878,'_menu_item_menu_item_parent','0'),(255,1878,'_menu_item_object_id','1878'),(256,1878,'_menu_item_object','custom'),(257,1878,'_menu_item_target',''),(258,1878,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(259,1878,'_menu_item_xfn',''),(260,1878,'_menu_item_url','#'),(261,1878,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(262,1878,'_menu_item_ct_icon',''),(263,1879,'_menu_item_type','custom'),(264,1879,'_menu_item_menu_item_parent','0'),(265,1879,'_menu_item_object_id','1879'),(266,1879,'_menu_item_object','custom'),(267,1879,'_menu_item_target',''),(268,1879,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(269,1879,'_menu_item_xfn',''),(270,1879,'_menu_item_url','#'),(271,1879,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(272,1879,'_menu_item_ct_icon',''),(273,1880,'_menu_item_type','custom'),(274,1880,'_menu_item_menu_item_parent','0'),(275,1880,'_menu_item_object_id','1880'),(276,1880,'_menu_item_object','custom'),(277,1880,'_menu_item_target',''),(278,1880,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(279,1880,'_menu_item_xfn',''),(280,1880,'_menu_item_url','#'),(281,1880,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(282,1880,'_menu_item_ct_icon',''),(283,1881,'_menu_item_type','custom'),(284,1881,'_menu_item_menu_item_parent','0'),(285,1881,'_menu_item_object_id','1881'),(286,1881,'_menu_item_object','custom'),(287,1881,'_menu_item_target',''),(288,1881,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(289,1881,'_menu_item_xfn',''),(290,1881,'_menu_item_url','#'),(291,1881,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(292,1881,'_menu_item_ct_icon',''),(315,1884,'_menu_item_type','custom'),(316,1884,'_menu_item_menu_item_parent','0'),(317,1884,'_menu_item_object_id','1884'),(318,1884,'_menu_item_object','custom'),(319,1884,'_menu_item_target',''),(320,1884,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(321,1884,'_menu_item_xfn',''),(322,1884,'_menu_item_url','#section-home'),(323,1884,'_menu_item_ct_megaprofile','1772'),(324,1884,'_menu_item_ct_icon',''),(325,1884,'_menu_item_ct_onepage','is-one-page'),(326,1884,'_menu_item_ct_onepage_offset',''),(327,1884,'_menu_item_ct_custom_class',''),(328,1884,'_menu_item_ct_menu_marker',''),(329,1885,'_menu_item_type','custom'),(330,1885,'_menu_item_menu_item_parent','0'),(331,1885,'_menu_item_object_id','1885'),(332,1885,'_menu_item_object','custom'),(333,1885,'_menu_item_target',''),(334,1885,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(335,1885,'_menu_item_xfn',''),(336,1885,'_menu_item_url','#section-about'),(337,1885,'_menu_item_ct_megaprofile','0'),(338,1885,'_menu_item_ct_icon',''),(339,1885,'_menu_item_ct_onepage','is-one-page'),(340,1885,'_menu_item_ct_onepage_offset','140'),(341,1885,'_menu_item_ct_custom_class',''),(342,1885,'_menu_item_ct_menu_marker',''),(343,1886,'_menu_item_type','custom'),(344,1886,'_menu_item_menu_item_parent','0'),(345,1886,'_menu_item_object_id','1886'),(346,1886,'_menu_item_object','custom'),(347,1886,'_menu_item_target',''),(348,1886,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(349,1886,'_menu_item_xfn',''),(350,1886,'_menu_item_url','#section-services'),(351,1886,'_menu_item_ct_megaprofile','0'),(352,1886,'_menu_item_ct_icon',''),(353,1886,'_menu_item_ct_onepage','is-one-page'),(354,1886,'_menu_item_ct_onepage_offset','80'),(355,1886,'_menu_item_ct_custom_class',''),(356,1886,'_menu_item_ct_menu_marker',''),(357,1887,'_menu_item_type','custom'),(358,1887,'_menu_item_menu_item_parent','0'),(359,1887,'_menu_item_object_id','1887'),(360,1887,'_menu_item_object','custom'),(361,1887,'_menu_item_target',''),(362,1887,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(363,1887,'_menu_item_xfn',''),(364,1887,'_menu_item_url','#section-project'),(365,1887,'_menu_item_ct_megaprofile','0'),(366,1887,'_menu_item_ct_icon',''),(367,1887,'_menu_item_ct_onepage','is-one-page'),(368,1887,'_menu_item_ct_onepage_offset','80'),(369,1887,'_menu_item_ct_custom_class',''),(370,1887,'_menu_item_ct_menu_marker',''),(371,1888,'_menu_item_type','custom'),(372,1888,'_menu_item_menu_item_parent','0'),(373,1888,'_menu_item_object_id','1888'),(374,1888,'_menu_item_object','custom'),(375,1888,'_menu_item_target',''),(376,1888,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(377,1888,'_menu_item_xfn',''),(378,1888,'_menu_item_url','#section-blog'),(379,1888,'_menu_item_ct_megaprofile','0'),(380,1888,'_menu_item_ct_icon',''),(381,1888,'_menu_item_ct_onepage','is-one-page'),(382,1888,'_menu_item_ct_onepage_offset','80'),(383,1888,'_menu_item_ct_custom_class',''),(384,1888,'_menu_item_ct_menu_marker',''),(385,1889,'_menu_item_type','custom'),(386,1889,'_menu_item_menu_item_parent','0'),(387,1889,'_menu_item_object_id','1889'),(388,1889,'_menu_item_object','custom'),(389,1889,'_menu_item_target',''),(390,1889,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(391,1889,'_menu_item_xfn',''),(392,1889,'_menu_item_url','#section-home'),(393,1889,'_menu_item_ct_megaprofile','1772'),(394,1889,'_menu_item_ct_icon',''),(395,1889,'_menu_item_ct_onepage','is-one-page'),(396,1889,'_menu_item_ct_onepage_offset',''),(397,1889,'_menu_item_ct_custom_class',''),(398,1889,'_menu_item_ct_menu_marker',''),(399,9,'_elementor_edit_mode','builder'),(400,9,'_elementor_template_type','wp-page'),(401,9,'_elementor_version','3.24.7'),(402,9,'_wp_page_template','default'),(403,9,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=vUCVqLmXSPM\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337},\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.trustpass.alibaba.com\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have started to open a store on Alibaba to connect with orders from around the world.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0e89391\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"en|language\"],\"ct_animate\":\"wow fadeInUp\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always provide a sense of security in terms of quality and progress.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#85B23B\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(404,9,'custom_header','1'),(405,9,'header_layout','2'),(406,9,'custom_pagetitle','hide'),(407,9,'custom_title',''),(408,9,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(409,9,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(410,9,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(411,9,'content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(412,9,'show_sidebar_page',''),(413,9,'sidebar_page_pos','right'),(414,9,'custom_footer','1'),(415,9,'footer_layout_custom','799'),(416,9,'p_logo_dark',''),(417,9,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(418,9,'slide_template','default'),(420,9,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(421,24,'_wp_page_template','default'),(422,24,'custom_header',''),(423,24,'header_layout','1'),(424,24,'custom_pagetitle','themeoption'),(425,24,'custom_title',''),(426,24,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(427,24,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(428,24,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(429,24,'content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(430,24,'show_sidebar_page',''),(431,24,'sidebar_page_pos','right'),(432,24,'custom_footer',''),(433,24,'footer_layout_custom',''),(434,24,'_elementor_edit_mode','builder'),(435,24,'_elementor_template_type','wp-page'),(436,24,'_elementor_version','3.24.7'),(437,24,'slide_template','default'),(438,24,'_elementor_data','[{\"id\":\"253fe5b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"a2a8d03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c431857\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":515,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d10974f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dbae7b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2f7cb3c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":38,\"spread\":0,\"color\":\"rgba(6.9999999999999964, 0, 76, 0.23)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-108\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d8771\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1bbe0fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Feel free to contact us to solve any problem!\",\"sub_title\":\"Contact us\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"147d5ff\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\",\"ct_icon\":{\"value\":\"fas fa-store-alt\",\"library\":\"fa-solid\"},\"_id\":\"38e4334\",\"title\":\"Our head office address:\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/info-icon-01.png\",\"id\":279}},{\"content\":\"0968860386\",\"ct_icon\":{\"value\":\"fas fa-store-alt\",\"library\":\"fa-solid\"},\"_id\":\"f98cc4e\",\"title\":\"Call for help:\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/info-icon-02.png\",\"id\":280}},{\"content\":\"luutin.nmpco@gmail.com\",\"ct_icon\":{\"value\":\"fas fa-store-alt\",\"library\":\"fa-solid\"},\"title\":\"Mail us for information:\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/info-icon-03.png\",\"id\":281,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"b2b743e\"}],\"layout\":\"2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":true},{\"id\":\"c443a53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#EEF2F6\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b59c45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in touch!\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44b4987\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>If you have questions or want to learn more about our services, don\\u2019t hesitate to reach out. We\\u2019re here to help!<\\/p>\",\"text_color\":\"#636363\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"85609a1\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"91\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(439,24,'_elementor_controls_usage','a:7:{s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:6:\"margin\";i:2;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:13:\"margin_mobile\";i:1;}}s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:15:\"stretch_section\";i:1;s:6:\"layout\";i:1;s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";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;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:11:\"css_classes\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:5:{s:5:\"title\";i:2;s:18:\"title_space_bottom\";i:2;s:27:\"title_typography_typography\";i:2;s:33:\"title_typography_font_size_tablet\";i:1;s:26:\"title_typography_font_size\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_ctf7\";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:\"source_section\";a:1:{s:7:\"ctf7_id\";i:1;}}}}}'),(441,26,'_wp_page_template','default'),(442,26,'custom_header',''),(443,26,'header_layout','1'),(444,26,'custom_pagetitle','show'),(445,26,'custom_title','About us'),(446,26,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(447,26,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(448,26,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(449,26,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(450,26,'show_sidebar_page',''),(451,26,'sidebar_page_pos','right'),(452,26,'custom_footer',''),(453,26,'footer_layout_custom',''),(455,26,'_elementor_edit_mode','builder'),(456,26,'_elementor_template_type','wp-page'),(457,26,'_elementor_version','3.24.7'),(458,26,'_elementor_data','[{\"id\":\"c986484\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"21\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab9e3e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.324,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cc7a78\",\"elType\":\"widget\",\"settings\":{\"title\":\"We satisfy you with innovative ideas and quality work.\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"sub_title\":\"About us\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c469998\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We exceed expectations through innovative ideas and exceptional craftsmanship.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11334c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2442360\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d195ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-01.png\",\"id\":612},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b2107e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Time manage\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c366e73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Efficiently organizing tasks to maximize productivity and meet deadlines.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d099fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c4ae19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-02.png\",\"id\":613},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ba24a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fulfill target\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bdc9adf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Achieving goals with precision and commitment, ensuring success.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ba92fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.676,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae4fae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218231.webp\",\"id\":2503,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"0c406f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature1.png\",\"id\":2538,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Tin Luu\",\"desc\":\"(Chairman and founder)\",\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to know more about us?\",\"desc\":\"Just download brochure...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"},\"btn_link\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/profile.pdf\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-scaled.jpg\",\"id\":663},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"060\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.937},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Far East High Tech is a professional builder company\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.063},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Far East High Tech is a leading company in building and manufacturing high-quality mechanical solutions.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e9a883e\",\"elType\":\"widget\",\"settings\":{\"start_text\":\"Start\",\"end_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"history\":[{\"_id\":\"7d82651\",\"title\":\"20th Nov, 2018\",\"content\":\"Far East Tech was established in Qu\\u1ebf V\\u00f5, B\\u1eafc Ninh with 5 founding members.\"},{\"_id\":\"37eb5f9\",\"title\":\"1st Apr, 2021\",\"content\":\"With the strong growth of Far East Tech, we decided to expand our branch in the South.\"},{\"_id\":\"2e7ebbf\",\"title\":\"30th Apr, 2021\",\"content\":\"We successfully acquired DMM Precision Engineering Co., Ltd. in B\\u00ecnh D\\u01b0\\u01a1ng, a company with experience in exporting goods to Japan since 2016,\\nand thus, we established a machining company in the southern region.\"},{\"_id\":\"6c49f4c\",\"title\":\"1st Jun, 2022\",\"content\":\"Far East Tech took a significant step in industrial-scale production with a 2000m2 workshop and 70 CNC machines in B\\u1eafc Ninh.\"},{\"_id\":\"de48600\",\"title\":\"2024\",\"content\":\"DMM Precision Engineering Co., Ltd. officially changed its name to Far East High Tech Co., Ltd.\\nAfter 2025: This will be a year of strong development for our company team.\"}]},\"elements\":[],\"widgetType\":\"ct_history\"}],\"isInner\":false}],\"isInner\":false}]'),(459,26,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:6;s:18:\"title_space_bottom\";i:3;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:4;s:22:\"sub_title_space_bottom\";i:3;s:15:\"sub_title_color\";i:1;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:5;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:7;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}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:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;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:10;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:3;s:13:\"margin_mobile\";i:3;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:3;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:6;s:7:\"padding\";i:6;s:14:\"padding_tablet\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:5:\"image\";i:1;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"ct_cta\";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:\"source_section\";a:4:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:4:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:14:\"slides_to_show\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:16:\"slides_to_scroll\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:6:\"arrows\";i:1;s:8:\"autoplay\";i:1;s:8:\"infinite\";i:1;}}}}}'),(460,28,'_wp_page_template','default'),(461,28,'custom_header',''),(462,28,'header_layout','1'),(463,28,'custom_pagetitle','themeoption'),(464,28,'custom_title',''),(465,28,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(466,28,'ptitle_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(467,28,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(468,28,'content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}'),(469,28,'show_sidebar_page',''),(470,28,'sidebar_page_pos','right'),(471,28,'custom_footer','1'),(472,28,'footer_layout_custom','799'),(474,28,'_elementor_edit_mode','builder'),(475,28,'_elementor_template_type','wp-page'),(476,28,'_elementor_version','3.24.7'),(477,28,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FET.png\",\"id\":3151,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"e562253\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FEE.jpg\",\"id\":3131,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Engineering\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"b254836\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FETS.png\",\"id\":3133,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tools Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"994e0c5\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions as your trusted partner.\",\"sub_title\":\"Our Partners\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Yoshimoto\",\"client_link\":{\"url\":\"https:\\/\\/www.yoshimoto-sangyo.co.jp\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yoshimoto-vietnam.png\",\"id\":2486,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"a49fbc4\"},{\"client_name\":\"Kim Long Motors\",\"client_link\":{\"url\":\"https:\\/\\/kimlongmotor.com.vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/kim-long-motors.png\",\"id\":2485,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"33930a5\"},{\"client_name\":\"Samsung\",\"client_link\":{\"url\":\"https:\\/\\/www.samsung.com\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/samsung.jpg\",\"id\":2484,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"aeee6c2\"},{\"client_name\":\"Komatsu Kogyo\",\"client_link\":{\"url\":\"https:\\/\\/komaz.co.jp\\/english\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/komatsu-kogyo.jpg\",\"id\":2483,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8fc7373\"},{\"_id\":\"ed2e401\",\"client_name\":\"Yuwa Engineering\",\"client_link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yuwa-engineering.jpg\",\"id\":2482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(478,28,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(480,30,'_wp_page_template','default'),(481,30,'custom_header',''),(482,30,'header_layout','1'),(483,30,'custom_pagetitle','themeoption'),(484,30,'custom_title',''),(485,30,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(486,30,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(487,30,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(488,30,'content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(489,30,'show_sidebar_page',''),(490,30,'sidebar_page_pos','right'),(491,30,'custom_footer',''),(492,30,'footer_layout_custom',''),(494,30,'_elementor_edit_mode','builder'),(495,30,'_elementor_template_type','wp-page'),(496,30,'_elementor_data','[{\"id\":\"9eaff81\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"673502da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"996e851\",\"elType\":\"widget\",\"settings\":{\"title\":\"You can learn more from our asked questions\",\"sub_title\":\"FAQ\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"15656588\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"37b6c60c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4af9be3\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":0,\"bottom\":\"46\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8731cd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f7c9b22\",\"elType\":\"widget\",\"settings\":{\"active_section\":1,\"ct_accordion\":[{\"ac_title\":\"What should I include in my personal statement?\",\"ac_content\":\"Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiusmod tempor incididunt<\\/u> ut labore.\",\"_id\":\"6d4372c\"},{\"ac_title\":\"Will membership plans be charged automatically?\",\"ac_content\":\"Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiusmod tempor incididunt<\\/u> ut labore.\",\"_id\":\"5ba9ac6\"},{\"ac_title\":\"How can I make a change to my application?\",\"ac_content\":\"Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiusmod tempor incididunt<\\/u> ut labore.\",\"_id\":\"535b837\"}]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"736fa99\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1bd3aee\",\"elType\":\"widget\",\"settings\":{\"active_section\":1,\"ct_accordion\":[{\"ac_title\":\"Where can I find out about funding?\",\"ac_content\":\"Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiusmod tempor incididunt<\\/u> ut labore.\",\"_id\":\"6d4372c\"},{\"ac_title\":\"What will happen when I\\u2019ve sent my application?\",\"ac_content\":\"Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiusmod tempor incididunt<\\/u> ut labore.\",\"_id\":\"5ba9ac6\"},{\"ac_title\":\"Can I get a free trial before I purchase?\",\"ac_content\":\"Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiusmod tempor incididunt<\\/u> ut labore.\",\"_id\":\"535b837\"}]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fd2eb3e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-contact.jpg\",\"id\":302},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"85\",\"bottom\":\"67\",\"left\":\"85\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"a4cc2b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"959d290\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have any other questions?\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"5616f45\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku tori\\nssimos ducimus qui blanditiis.\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"28\",\"bottom\":\"0\",\"left\":\"28\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d135513\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"308\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false}]'),(497,30,'_elementor_version','2.7.5'),(498,30,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;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:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_line_height\";i:2;s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";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: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:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:3;s:7:\"padding\";i:2;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:2:{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:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:2:{s:14:\"active_section\";i:2;s:12:\"ct_accordion\";i:2;}}}}s:7:\"ct_ctf7\";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:\"source_section\";a:1:{s:7:\"ctf7_id\";i:1;}}s:8:\"advanced\";a:1:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:1;}}}}}'),(681,1890,'_menu_item_type','custom'),(682,1890,'_menu_item_menu_item_parent','0'),(683,1890,'_menu_item_object_id','1890'),(684,1890,'_menu_item_object','custom'),(685,1890,'_menu_item_target',''),(686,1890,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(687,1890,'_menu_item_xfn',''),(688,1890,'_menu_item_url','#section-services'),(689,1890,'_menu_item_ct_megaprofile','0'),(690,1890,'_menu_item_ct_icon',''),(691,1890,'_menu_item_ct_onepage','is-one-page'),(692,1890,'_menu_item_ct_onepage_offset','80'),(693,1890,'_menu_item_ct_custom_class',''),(694,1890,'_menu_item_ct_menu_marker',''),(695,1891,'_menu_item_type','custom'),(696,1891,'_menu_item_menu_item_parent','0'),(697,1891,'_menu_item_object_id','1891'),(698,1891,'_menu_item_object','custom'),(699,1891,'_menu_item_target',''),(700,1891,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(701,1891,'_menu_item_xfn',''),(702,1891,'_menu_item_url','#section-project'),(703,1891,'_menu_item_ct_megaprofile','0'),(704,1891,'_menu_item_ct_icon',''),(705,1891,'_menu_item_ct_onepage','is-one-page'),(706,1891,'_menu_item_ct_onepage_offset','80'),(707,1891,'_menu_item_ct_custom_class',''),(708,1891,'_menu_item_ct_menu_marker',''),(709,1892,'_menu_item_type','custom'),(710,1892,'_menu_item_menu_item_parent','0'),(711,1892,'_menu_item_object_id','1892'),(712,1892,'_menu_item_object','custom'),(713,1892,'_menu_item_target',''),(714,1892,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(715,1892,'_menu_item_xfn',''),(716,1892,'_menu_item_url','#section-blog'),(717,1892,'_menu_item_ct_megaprofile','0'),(718,1892,'_menu_item_ct_icon',''),(719,1892,'_menu_item_ct_onepage','is-one-page'),(720,1892,'_menu_item_ct_onepage_offset','80'),(721,1892,'_menu_item_ct_custom_class',''),(722,1892,'_menu_item_ct_menu_marker',''),(723,1893,'_menu_item_type','custom'),(724,1893,'_menu_item_menu_item_parent','0'),(725,1893,'_menu_item_object_id','1893'),(726,1893,'_menu_item_object','custom'),(727,1893,'_menu_item_target',''),(728,1893,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(729,1893,'_menu_item_xfn',''),(730,1893,'_menu_item_url','#section-about'),(731,1893,'_menu_item_ct_megaprofile','0'),(732,1893,'_menu_item_ct_icon',''),(733,1893,'_menu_item_ct_onepage','is-one-page'),(734,1893,'_menu_item_ct_onepage_offset','80'),(735,1893,'_menu_item_ct_custom_class',''),(736,1893,'_menu_item_ct_menu_marker',''),(737,367,'_wp_page_template','default'),(738,367,'custom_header',''),(739,367,'header_layout','1'),(740,367,'custom_pagetitle','themeoption'),(741,367,'custom_title',''),(742,367,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(743,367,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(744,367,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(745,367,'content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(746,367,'show_sidebar_page',''),(747,367,'sidebar_page_pos','right'),(748,367,'custom_footer',''),(749,367,'footer_layout_custom',''),(751,367,'_elementor_edit_mode','builder'),(752,367,'_elementor_template_type','wp-page'),(753,367,'_elementor_version','2.7.5'),(754,367,'_elementor_data','[{\"id\":\"7de6c951\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6cbfc45d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"62e64003\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will satisfy you by our work ideas\",\"sub_title\":\"Testimonials\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"55ae3e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"78c0972b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dcf1934\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"23\",\"right\":0,\"bottom\":\"1\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/dot-map.png\",\"id\":405},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\"},\"elements\":[{\"id\":\"9af0579\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6ed351c\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-01.jpg\",\"id\":397},\"title\":\"Adam Chuhan\",\"position\":\"Web designer\",\"description\":\"Lorem Ipsum available, but the majority have to sufferrer tobe alterati on in som. It is a long to be established.\",\"_id\":\"f0263fb\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-02.jpg\",\"id\":398},\"title\":\"Erika Johnson\",\"position\":\"Web designer\",\"description\":\"Lorem Ipsum available, but the majority have to sufferrer tobe alterati on in som. It is a long to be established.\",\"_id\":\"63b4d11\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-03.jpg\",\"id\":399},\"title\":\"Allie Johnson\",\"position\":\"SEO manager\",\"description\":\"Lorem Ipsum available, but the majority have to sufferrer tobe alterati on in som. It is a long to be established.\",\"_id\":\"86a71af\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-04.jpg\",\"id\":400},\"title\":\"James Smith\",\"position\":\"Web designer\",\"description\":\"Lorem Ipsum available, but the majority have to sufferrer tobe alterati on in som. It is a long to be established.\",\"_id\":\"4c71093\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-05.jpg\",\"id\":401},\"title\":\"Sasha D Johnson\",\"position\":\"SEO manager\",\"description\":\"Lorem Ipsum available, but the majority have to sufferrer tobe alterati on in som. It is a long to be established.\",\"_id\":\"2720b43\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Debra L Smith\",\"position\":\"SEO manager\",\"description\":\"Lorem Ipsum available, but the majority have to sufferrer tobe alterati on in som. It is a long to be established.\",\"_id\":\"a489450\"}],\"col_md\":\"2\",\"col_lg\":\"3\",\"col_xl\":\"3\"},\"elements\":[],\"widgetType\":\"ct_testimonial_grid\"}],\"isInner\":false}],\"isInner\":false}]'),(755,367,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;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:16:\"content_position\";i:1;s:3:\"gap\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:2;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:4:{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:19:\"ct_testimonial_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(1632,91,'_elementor_controls_usage','a:0:{}'),(1633,91,'_form','<div class=\"input-filled\">[text* your-name placeholder \"Name*\"]</div>\n<div class=\"input-filled\">[email* your-email placeholder \"Mail address*\"]</div>\n<div class=\"input-filled\">[textarea* your-message placeholder \"Message...\"]</div>\n<div class=\"input-filled\"><button type=\"submit\" class=\"wpcf7-submit btn btn-secondary btn-block\">Send us now</button></div>'),(1634,91,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:26:\"Far East High Tech Contact\";s:6:\"sender\";s:43:\"Far East High Tech <luutin.nmpco@gmail.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:141:\"From: [your-name] <[your-email]>\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Fe2tech (https://fe2tech.com/)\";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;}'),(1635,91,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:26:\"Far East High Tech Contact\";s:6:\"sender\";s:43:\"Far East High Tech <luutin.nmpco@gmail.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:146:\"Name: [your-name]\nEmail: [your-email]\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Fe2tech (https://fe2tech.com/)\";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;}'),(1636,91,'_messages','a:24:{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:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";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:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";s:22:\"iqfix_recaptcha_no_set\";s:40:\"Could not verify the reCaptcha response.\";s:30:\"iqfix_recaptcha_response_empty\";s:39:\"Please verify that you are not a robot.\";}'),(1637,91,'_additional_settings',''),(1638,91,'_locale','en_US'),(1693,932,'_elementor_controls_usage','a:0:{}'),(1694,932,'_form','<div class=\"quote-form\">[email* your-email placeholder \"Email address\"]<button type=\"submit\" class=\"wpcf7-submit btn\">Get now</button></div>'),(1695,932,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:26:\"Far East High Tech Contact\";s:6:\"sender\";s:43:\"Far East High Tech <luutin.nmpco@gmail.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:119:\"From: <[your-email]>\nEmail: [your-email]\n-- \nThis e-mail was sent from a contact form on Fe2tech (https://fe2tech.com/)\";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;}'),(1696,932,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:20:\"Cstrio \"[your-name]\"\";s:6:\"sender\";s:33:\"Cstrio <casethemes.net@gmail.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:159:\"Name: [your-name]\nEmail: [your-email]\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Cstrio (https://demo.casethemes.net/contio)\";s:18:\"additional_headers\";s:34:\"Reply-To: casethemes.net@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(1697,932,'_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:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";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:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(1698,932,'_additional_settings',''),(1699,932,'_locale','en_US'),(1700,974,'_elementor_controls_usage','a:0:{}'),(1701,974,'_form','<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\"><i class=\"fac fac-user input-icon\"></i>[text* your-name placeholder \"Your name\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\"><i class=\"fac fac-envelope input-icon\"></i>[email* your-email placeholder \"Mail adress\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\"><i class=\"fac fac-phone input-icon\"></i>[text* your-phone placeholder \"Phone number\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\">[select* your-service placeholder \"Your Service\" \"Precision Measurement Services\" \"Planing Service\" \"Quality Inspection Services\" \"Turning and Milling Services\" \"Hydraulic Press Services\" \"Automated Welding Services\" \"CNC Machining Services\" \"Grinding Service\" \"Other\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-12\">[textarea* your-message placeholder \"Text message...\"]</div>\n	<div class=\"input-filled col-12\">[recaptcha]</div>\n	<div class=\"input-filled col-12\"><button type=\"submit\" class=\"wpcf7-submit btn btn-preset3\"><i class=\"fac fac-paper-plane space-right\"></i>Send message</button></div>\n</div>'),(1702,974,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:14:\"[your-service]\";s:6:\"sender\";s:43:\"Far East High Tech <luutin.nmpco@gmail.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:186:\"From: [your-name] <[your-email]>\nPhone: [your-phone]\nService: [your-service] \nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Fe2tech (https://fe2tech.com/)\";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;}'),(1703,974,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:14:\"[your-service]\";s:6:\"sender\";s:43:\"Far East High Tech <luutin.nmpco@gmail.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:186:\"From: [your-name] <[your-email]>\nPhone: [your-phone]\nService: [your-service] \nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Fe2tech (https://fe2tech.com/)\";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;}'),(1704,974,'_messages','a:24:{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:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";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:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";s:22:\"iqfix_recaptcha_no_set\";s:40:\"Could not verify the reCaptcha response.\";s:30:\"iqfix_recaptcha_response_empty\";s:39:\"Please verify that you are not a robot.\";}'),(1705,974,'_additional_settings',''),(1706,974,'_locale','en_US'),(1721,1894,'_menu_item_type','post_type'),(1722,1894,'_menu_item_menu_item_parent','0'),(1723,1894,'_menu_item_object_id','9'),(1724,1894,'_menu_item_object','page'),(1725,1894,'_menu_item_target',''),(1726,1894,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1727,1894,'_menu_item_xfn',''),(1728,1894,'_menu_item_url',''),(1729,1894,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(1730,1894,'_menu_item_ct_icon',''),(1731,1895,'_menu_item_type','post_type'),(1732,1895,'_menu_item_menu_item_parent','0'),(1733,1895,'_menu_item_object_id','28'),(1734,1895,'_menu_item_object','page'),(1735,1895,'_menu_item_target',''),(1736,1895,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1737,1895,'_menu_item_xfn',''),(1738,1895,'_menu_item_url',''),(1739,1895,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(1740,1895,'_menu_item_ct_icon',''),(1741,1896,'_menu_item_type','post_type'),(1742,1896,'_menu_item_menu_item_parent','0'),(1743,1896,'_menu_item_object_id','30'),(1744,1896,'_menu_item_object','page'),(1745,1896,'_menu_item_target',''),(1746,1896,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1747,1896,'_menu_item_xfn',''),(1748,1896,'_menu_item_url',''),(1749,1896,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(1750,1896,'_menu_item_ct_icon',''),(1751,1897,'_menu_item_type','post_type'),(1752,1897,'_menu_item_menu_item_parent','0'),(1753,1897,'_menu_item_object_id','26'),(1754,1897,'_menu_item_object','page'),(1755,1897,'_menu_item_target',''),(1756,1897,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1757,1897,'_menu_item_xfn',''),(1758,1897,'_menu_item_url',''),(1759,1897,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(1760,1897,'_menu_item_ct_icon',''),(1761,1898,'_menu_item_type','post_type'),(1762,1898,'_menu_item_menu_item_parent','0'),(1763,1898,'_menu_item_object_id','24'),(1764,1898,'_menu_item_object','page'),(1765,1898,'_menu_item_target',''),(1766,1898,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1767,1898,'_menu_item_xfn',''),(1768,1898,'_menu_item_url',''),(1769,1898,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(1770,1898,'_menu_item_ct_icon',''),(1781,1900,'_menu_item_type','post_type'),(1782,1900,'_menu_item_menu_item_parent','0'),(1783,1900,'_menu_item_object_id','367'),(1784,1900,'_menu_item_object','page'),(1785,1900,'_menu_item_target',''),(1786,1900,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1787,1900,'_menu_item_xfn',''),(1788,1900,'_menu_item_url',''),(1789,1900,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(1790,1900,'_menu_item_ct_icon',''),(2337,1785,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:1024;s:4:\"file\";s:17:\"2022/10/demo4.jpg\";s:8:\"filesize\";i:31608;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:{}}}'),(2338,1600,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:1024;s:4:\"file\";s:20:\"2019/12/demo-rtl.jpg\";s:8:\"filesize\";i:268050;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:{}}}'),(2339,1520,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:151;s:6:\"height\";i:50;s:4:\"file\";s:21:\"2019/12/signature.png\";s:8:\"filesize\";i:2848;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:{}}}'),(2340,1517,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:48;s:6:\"height\";i:48;s:4:\"file\";s:27:\"2019/12/counter-icon-03.png\";s:8:\"filesize\";i:3631;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:{}}}'),(2341,1516,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:48;s:6:\"height\";i:48;s:4:\"file\";s:27:\"2019/12/counter-icon-02.png\";s:8:\"filesize\";i:3237;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:{}}}'),(2342,1515,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:48;s:6:\"height\";i:48;s:4:\"file\";s:27:\"2019/12/counter-icon-01.png\";s:8:\"filesize\";i:4899;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:{}}}'),(2343,1509,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:4:\"file\";s:27:\"woocommerce-placeholder.png\";s:8:\"filesize\";i:102644;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:{}}}'),(2344,1454,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:35;s:6:\"height\";i:56;s:4:\"file\";s:27:\"2019/11/feature-icon-01.png\";s:8:\"filesize\";i:2133;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:{}}}'),(2345,1450,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:65;s:6:\"height\";i:56;s:4:\"file\";s:27:\"2019/11/feature-icon-08.png\";s:8:\"filesize\";i:1410;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:{}}}'),(2346,1449,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:59;s:6:\"height\";i:56;s:4:\"file\";s:27:\"2019/11/feature-icon-07.png\";s:8:\"filesize\";i:2024;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:{}}}'),(2347,1448,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:55;s:6:\"height\";i:56;s:4:\"file\";s:27:\"2019/11/feature-icon-06.png\";s:8:\"filesize\";i:4053;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:{}}}'),(2348,1447,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:49;s:6:\"height\";i:56;s:4:\"file\";s:27:\"2019/11/feature-icon-05.png\";s:8:\"filesize\";i:2489;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:{}}}'),(2349,1446,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:82;s:6:\"height\";i:56;s:4:\"file\";s:27:\"2019/11/feature-icon-04.png\";s:8:\"filesize\";i:3520;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:{}}}'),(2350,1445,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:115;s:6:\"height\";i:56;s:4:\"file\";s:27:\"2019/11/feature-icon-03.png\";s:8:\"filesize\";i:3663;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:{}}}'),(2351,1444,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:49;s:6:\"height\";i:56;s:4:\"file\";s:27:\"2019/11/feature-icon-02.png\";s:8:\"filesize\";i:1197;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:{}}}'),(2352,1438,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:598;s:4:\"file\";s:26:\"2019/11/landing-footer.png\";s:8:\"filesize\";i:1017295;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:{}}}'),(2353,1437,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:937;s:6:\"height\";i:400;s:4:\"file\";s:19:\"2019/11/devices.png\";s:8:\"filesize\";i:266036;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:{}}}'),(2354,1436,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:449;s:4:\"file\";s:25:\"2019/11/bg-section-06.png\";s:8:\"filesize\";i:126768;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:{}}}'),(2355,1425,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:1024;s:4:\"file\";s:17:\"2019/11/demo2.jpg\";s:8:\"filesize\";i:144457;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:{}}}'),(2356,1424,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:1024;s:4:\"file\";s:17:\"2019/11/demo1.jpg\";s:8:\"filesize\";i:160806;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:{}}}'),(2357,1415,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:1024;s:4:\"file\";s:17:\"2019/11/demo6.jpg\";s:8:\"filesize\";i:136111;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:{}}}'),(2358,1414,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:1024;s:4:\"file\";s:17:\"2019/11/demo5.jpg\";s:8:\"filesize\";i:129730;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:{}}}'),(2359,1413,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:1024;s:4:\"file\";s:17:\"2019/11/demo4.jpg\";s:8:\"filesize\";i:97247;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:{}}}'),(2360,1412,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:1024;s:4:\"file\";s:17:\"2019/11/demo3.jpg\";s:8:\"filesize\";i:207833;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:{}}}'),(2361,1389,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:294;s:6:\"height\";i:146;s:4:\"file\";s:24:\"2019/11/logo-landing.png\";s:8:\"filesize\";i:6547;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:{}}}'),(2362,1387,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:906;s:4:\"file\";s:25:\"2019/11/bg-section-05.png\";s:8:\"filesize\";i:19017;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:{}}}'),(2363,1385,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:954;s:4:\"file\";s:27:\"2019/11/bg-section-03-1.jpg\";s:8:\"filesize\";i:81710;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:{}}}'),(2364,1352,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:110;s:6:\"height\";i:115;s:4:\"file\";s:23:\"2019/11/marker-02-1.png\";s:8:\"filesize\";i:5434;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:{}}}'),(2365,1351,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:67;s:6:\"height\";i:65;s:4:\"file\";s:24:\"2019/11/info-icon-06.png\";s:8:\"filesize\";i:3783;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:{}}}'),(2366,1350,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:67;s:6:\"height\";i:67;s:4:\"file\";s:24:\"2019/11/info-icon-05.png\";s:8:\"filesize\";i:3460;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:{}}}'),(2367,1349,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:59;s:6:\"height\";i:69;s:4:\"file\";s:24:\"2019/11/info-icon-04.png\";s:8:\"filesize\";i:3360;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:{}}}'),(2368,1324,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:712;s:6:\"height\";i:575;s:4:\"file\";s:18:\"2019/11/banner.png\";s:8:\"filesize\";i:130167;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:{}}}'),(2369,1302,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:126;s:6:\"height\";i:126;s:4:\"file\";s:26:\"2019/11/h2_banner_img3.png\";s:8:\"filesize\";i:2848;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:{}}}'),(2370,1301,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:393;s:6:\"height\";i:290;s:4:\"file\";s:26:\"2019/11/h2_banner_img2.jpg\";s:8:\"filesize\";i:58614;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:{}}}'),(2371,1300,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:332;s:6:\"height\";i:216;s:4:\"file\";s:26:\"2019/11/h2_banner_img1.jpg\";s:8:\"filesize\";i:27832;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:{}}}'),(2372,1258,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1000;s:4:\"file\";s:24:\"2019/11/bg-slider-09.jpg\";s:8:\"filesize\";i:420746;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:{}}}'),(2373,1257,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1000;s:4:\"file\";s:24:\"2019/11/bg-slider-08.jpg\";s:8:\"filesize\";i:353691;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:{}}}'),(2374,1255,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1000;s:4:\"file\";s:24:\"2019/11/bg-slider-07.jpg\";s:8:\"filesize\";i:484514;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:{}}}'),(2375,1254,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:354;s:6:\"height\";i:150;s:4:\"file\";s:24:\"2019/11/p-dark-logo2.png\";s:8:\"filesize\";i:4495;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:{}}}'),(2376,1253,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:354;s:6:\"height\";i:150;s:4:\"file\";s:25:\"2019/11/p-light-logo1.png\";s:8:\"filesize\";i:4500;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:{}}}'),(2377,1251,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:165;s:6:\"height\";i:70;s:4:\"file\";s:26:\"2019/11/logo-footer-03.png\";s:8:\"filesize\";i:2108;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:{}}}'),(2378,1187,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:979;s:6:\"height\";i:507;s:4:\"file\";s:27:\"2019/11/service-pointer.png\";s:8:\"filesize\";i:101904;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:{}}}'),(2379,1155,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1110;s:4:\"file\";s:25:\"2019/11/bg-section-03.jpg\";s:8:\"filesize\";i:138691;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:{}}}'),(2380,1153,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:480;s:6:\"height\";i:222;s:4:\"file\";s:22:\"2019/11/bg-form-01.png\";s:8:\"filesize\";i:4507;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:{}}}'),(2381,1124,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:885;s:6:\"height\";i:290;s:4:\"file\";s:17:\"2019/11/phone.png\";s:8:\"filesize\";i:213580;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:{}}}'),(2382,1123,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:188;s:6:\"height\";i:54;s:4:\"file\";s:23:\"2019/11/google-play.png\";s:8:\"filesize\";i:7709;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:{}}}'),(2383,1122,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:188;s:6:\"height\";i:54;s:4:\"file\";s:21:\"2019/11/app-store.png\";s:8:\"filesize\";i:4505;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:{}}}'),(2384,1075,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:827;s:6:\"height\";i:779;s:4:\"file\";s:22:\"2019/11/pointer-01.png\";s:8:\"filesize\";i:578870;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:{}}}'),(2385,1072,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1050;s:4:\"file\";s:25:\"2019/11/bg-section-02.jpg\";s:8:\"filesize\";i:32704;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:{}}}'),(2386,1056,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1200;s:4:\"file\";s:26:\"2019/11/bg-parallax-02.jpg\";s:8:\"filesize\";i:155137;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:{}}}'),(2387,1018,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1000;s:4:\"file\";s:24:\"2019/11/bg-slider-06.jpg\";s:8:\"filesize\";i:211922;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:{}}}'),(2388,1009,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1000;s:4:\"file\";s:24:\"2019/11/bg-slider-05.jpg\";s:8:\"filesize\";i:197463;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:{}}}'),(2389,1006,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1000;s:4:\"file\";s:24:\"2019/11/bg-slider-04.jpg\";s:8:\"filesize\";i:203578;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:{}}}'),(2390,1000,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:170;s:6:\"height\";i:35;s:4:\"file\";s:21:\"2019/11/client-04.png\";s:8:\"filesize\";i:5370;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:{}}}'),(2391,999,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:166;s:6:\"height\";i:38;s:4:\"file\";s:21:\"2019/11/client-03.png\";s:8:\"filesize\";i:4998;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:{}}}'),(2392,998,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:143;s:6:\"height\";i:42;s:4:\"file\";s:21:\"2019/11/client-02.png\";s:8:\"filesize\";i:10352;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:{}}}'),(2393,997,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:169;s:6:\"height\";i:35;s:4:\"file\";s:21:\"2019/11/client-01.png\";s:8:\"filesize\";i:3401;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:{}}}'),(2394,989,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:680;s:6:\"height\";i:900;s:4:\"file\";s:24:\"2019/11/portfolio-07.jpg\";s:8:\"filesize\";i:186320;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:{}}}'),(2395,957,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:110;s:6:\"height\";i:115;s:4:\"file\";s:21:\"2019/11/marker-02.png\";s:8:\"filesize\";i:4437;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:{}}}'),(2396,948,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:960;s:4:\"file\";s:28:\"2019/11/bg-parallax-01-1.jpg\";s:8:\"filesize\";i:315079;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:{}}}'),(2397,927,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:428;s:4:\"file\";s:23:\"2019/11/team-05-new.jpg\";s:8:\"filesize\";i:37082;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:{}}}'),(2398,926,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:428;s:4:\"file\";s:23:\"2019/11/team-04-new.jpg\";s:8:\"filesize\";i:40303;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:{}}}'),(2399,925,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:428;s:4:\"file\";s:23:\"2019/11/team-03-new.jpg\";s:8:\"filesize\";i:38559;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:{}}}'),(2400,906,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:818;s:6:\"height\";i:630;s:4:\"file\";s:15:\"2019/11/map.png\";s:8:\"filesize\";i:38380;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:{}}}'),(2401,889,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:47;s:6:\"height\";i:55;s:4:\"file\";s:26:\"2019/11/banner-icon-01.png\";s:8:\"filesize\";i:1479;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:{}}}'),(2402,886,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:502;s:6:\"height\";i:412;s:4:\"file\";s:21:\"2019/11/banner-02.jpg\";s:8:\"filesize\";i:77286;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:{}}}'),(2403,882,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:907;s:4:\"file\";s:25:\"2019/11/bg-section-01.jpg\";s:8:\"filesize\";i:115427;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:{}}}'),(2404,880,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1700;s:6:\"height\";i:602;s:4:\"file\";s:24:\"2019/11/bg-slider-03.jpg\";s:8:\"filesize\";i:266771;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:{}}}'),(2405,879,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1700;s:6:\"height\";i:602;s:4:\"file\";s:24:\"2019/11/bg-slider-02.jpg\";s:8:\"filesize\";i:286405;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:{}}}'),(2406,864,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:860;s:6:\"height\";i:720;s:4:\"file\";s:22:\"2019/11/service-09.jpg\";s:8:\"filesize\";i:111455;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:{}}}'),(2407,863,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:860;s:6:\"height\";i:720;s:4:\"file\";s:22:\"2019/11/service-08.jpg\";s:8:\"filesize\";i:89012;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:{}}}'),(2408,862,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:860;s:6:\"height\";i:720;s:4:\"file\";s:22:\"2019/11/service-07.jpg\";s:8:\"filesize\";i:58039;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:{}}}'),(2409,861,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:860;s:6:\"height\";i:720;s:4:\"file\";s:22:\"2019/11/service-06.jpg\";s:8:\"filesize\";i:82942;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:{}}}'),(2410,843,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:516;s:6:\"height\";i:290;s:4:\"file\";s:25:\"2019/11/home-image-01.png\";s:8:\"filesize\";i:52215;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:{}}}'),(2411,822,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:108;s:4:\"file\";s:35:\"2019/11/bg-slider-bottom-scaled.png\";s:8:\"filesize\";i:2746;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:{}}}'),(2412,813,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1700;s:6:\"height\";i:602;s:4:\"file\";s:24:\"2019/11/bg-slider-01.jpg\";s:8:\"filesize\";i:241309;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:{}}}'),(2413,806,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:165;s:6:\"height\";i:70;s:4:\"file\";s:26:\"2019/11/logo-footer-02.png\";s:8:\"filesize\";i:2843;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:{}}}'),(2414,798,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:354;s:6:\"height\";i:150;s:4:\"file\";s:24:\"2019/11/p-dark-logo1.png\";s:8:\"filesize\";i:5423;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:{}}}'),(2415,770,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1170;s:6:\"height\";i:1380;s:4:\"file\";s:22:\"2019/11/product-12.jpg\";s:8:\"filesize\";i:36682;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:{}}}'),(2416,769,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2170;s:6:\"height\";i:2560;s:4:\"file\";s:29:\"2019/11/product-11-scaled.jpg\";s:8:\"filesize\";i:104957;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:{}}}'),(2417,768,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1170;s:6:\"height\";i:1380;s:4:\"file\";s:22:\"2019/11/product-10.jpg\";s:8:\"filesize\";i:56573;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:{}}}'),(2418,767,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1170;s:6:\"height\";i:1247;s:4:\"file\";s:22:\"2019/11/product-09.jpg\";s:8:\"filesize\";i:53927;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:{}}}'),(2419,766,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1170;s:6:\"height\";i:1247;s:4:\"file\";s:22:\"2019/11/product-08.jpg\";s:8:\"filesize\";i:77912;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:{}}}'),(2420,765,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1170;s:6:\"height\";i:1380;s:4:\"file\";s:22:\"2019/11/product-07.jpg\";s:8:\"filesize\";i:73377;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:{}}}'),(2421,764,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1170;s:6:\"height\";i:1380;s:4:\"file\";s:22:\"2019/11/product-06.jpg\";s:8:\"filesize\";i:31004;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:{}}}'),(2422,763,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1170;s:6:\"height\";i:1380;s:4:\"file\";s:22:\"2019/11/product-05.jpg\";s:8:\"filesize\";i:63324;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:{}}}'),(2423,762,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1170;s:6:\"height\";i:1380;s:4:\"file\";s:22:\"2019/11/product-04.jpg\";s:8:\"filesize\";i:64062;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:{}}}'),(2424,761,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1170;s:6:\"height\";i:1380;s:4:\"file\";s:22:\"2019/11/product-03.jpg\";s:8:\"filesize\";i:76292;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:{}}}'),(2425,760,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1170;s:6:\"height\";i:1380;s:4:\"file\";s:22:\"2019/11/product-02.jpg\";s:8:\"filesize\";i:64324;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:{}}}'),(2426,759,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1170;s:6:\"height\";i:1380;s:4:\"file\";s:22:\"2019/11/product-01.jpg\";s:8:\"filesize\";i:64586;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:{}}}'),(2427,663,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:33:\"2019/11/bg-parallax-01-scaled.jpg\";s:8:\"filesize\";i:441883;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:{}}}'),(2428,633,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:111;s:6:\"height\";i:85;s:4:\"file\";s:22:\"2019/11/signature1.png\";s:8:\"filesize\";i:5414;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:{}}}'),(2429,623,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:369;s:6:\"height\";i:382;s:4:\"file\";s:21:\"2019/11/banner-01.jpg\";s:8:\"filesize\";i:24298;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:{}}}'),(2430,613,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:55;s:6:\"height\";i:58;s:4:\"file\";s:23:\"2019/11/icon-box-02.png\";s:8:\"filesize\";i:3628;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:{}}}'),(2431,612,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:59;s:6:\"height\";i:58;s:4:\"file\";s:23:\"2019/11/icon-box-01.png\";s:8:\"filesize\";i:3235;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:{}}}'),(2432,437,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:380;s:6:\"height\";i:350;s:4:\"file\";s:22:\"2019/11/service-05.jpg\";s:8:\"filesize\";i:30504;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:{}}}'),(2433,433,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:450;s:6:\"height\";i:350;s:4:\"file\";s:22:\"2019/11/service-04.jpg\";s:8:\"filesize\";i:42487;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:{}}}'),(2434,432,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:470;s:6:\"height\";i:370;s:4:\"file\";s:22:\"2019/11/service-03.jpg\";s:8:\"filesize\";i:71968;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:{}}}'),(2435,431,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:370;s:6:\"height\";i:370;s:4:\"file\";s:22:\"2019/11/service-02.jpg\";s:8:\"filesize\";i:42002;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:{}}}'),(2436,430,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:572;s:6:\"height\";i:572;s:4:\"file\";s:22:\"2019/11/service-01.jpg\";s:8:\"filesize\";i:84645;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:{}}}'),(2437,405,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:801;s:6:\"height\";i:484;s:4:\"file\";s:19:\"2019/11/dot-map.png\";s:8:\"filesize\";i:38364;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:{}}}'),(2438,402,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:109;s:6:\"height\";i:109;s:4:\"file\";s:26:\"2019/11/testimonial-06.jpg\";s:8:\"filesize\";i:7352;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:{}}}'),(2439,401,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:109;s:6:\"height\";i:109;s:4:\"file\";s:26:\"2019/11/testimonial-05.jpg\";s:8:\"filesize\";i:5499;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:{}}}'),(2440,400,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:109;s:6:\"height\";i:109;s:4:\"file\";s:26:\"2019/11/testimonial-04.jpg\";s:8:\"filesize\";i:6718;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:{}}}'),(2441,399,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:109;s:6:\"height\";i:109;s:4:\"file\";s:26:\"2019/11/testimonial-03.jpg\";s:8:\"filesize\";i:5310;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:{}}}'),(2442,398,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:109;s:6:\"height\";i:109;s:4:\"file\";s:26:\"2019/11/testimonial-02.jpg\";s:8:\"filesize\";i:6500;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:{}}}'),(2443,397,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:109;s:6:\"height\";i:109;s:4:\"file\";s:26:\"2019/11/testimonial-01.jpg\";s:8:\"filesize\";i:7097;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:{}}}'),(2444,380,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:395;s:6:\"height\";i:400;s:4:\"file\";s:24:\"2019/11/team-details.jpg\";s:8:\"filesize\";i:30062;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:{}}}'),(2445,356,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:369;s:6:\"height\";i:391;s:4:\"file\";s:19:\"2019/11/team-06.jpg\";s:8:\"filesize\";i:45587;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:{}}}'),(2446,355,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:369;s:6:\"height\";i:391;s:4:\"file\";s:19:\"2019/11/team-05.jpg\";s:8:\"filesize\";i:36418;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:{}}}'),(2447,354,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:369;s:6:\"height\";i:391;s:4:\"file\";s:19:\"2019/11/team-04.jpg\";s:8:\"filesize\";i:37235;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:{}}}'),(2448,353,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:369;s:6:\"height\";i:391;s:4:\"file\";s:19:\"2019/11/team-03.jpg\";s:8:\"filesize\";i:36612;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:{}}}'),(2449,352,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:369;s:6:\"height\";i:391;s:4:\"file\";s:19:\"2019/11/team-02.jpg\";s:8:\"filesize\";i:38177;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:{}}}'),(2450,351,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:369;s:6:\"height\";i:391;s:4:\"file\";s:19:\"2019/11/team-01.jpg\";s:8:\"filesize\";i:28537;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:{}}}'),(2451,332,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:932;s:6:\"height\";i:347;s:4:\"file\";s:26:\"2019/11/bg-coming-soon.png\";s:8:\"filesize\";i:319043;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:{}}}'),(2452,302,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1199;s:6:\"height\";i:655;s:4:\"file\";s:22:\"2019/11/bg-contact.jpg\";s:8:\"filesize\";i:87903;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:{}}}'),(2453,281,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:70;s:6:\"height\";i:68;s:4:\"file\";s:24:\"2019/11/info-icon-03.png\";s:8:\"filesize\";i:3640;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:{}}}'),(2454,280,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:66;s:6:\"height\";i:66;s:4:\"file\";s:24:\"2019/11/info-icon-02.png\";s:8:\"filesize\";i:3260;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:{}}}'),(2455,279,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:55;s:6:\"height\";i:65;s:4:\"file\";s:24:\"2019/11/info-icon-01.png\";s:8:\"filesize\";i:3143;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:{}}}'),(2456,250,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:183;s:6:\"height\";i:195;s:4:\"file\";s:18:\"2019/11/marker.png\";s:8:\"filesize\";i:7768;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:{}}}'),(2457,238,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:92;s:6:\"height\";i:92;s:4:\"file\";s:21:\"2019/11/author-02.jpg\";s:8:\"filesize\";i:3437;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:{}}}'),(2458,237,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:92;s:6:\"height\";i:92;s:4:\"file\";s:21:\"2019/11/author-01.jpg\";s:8:\"filesize\";i:4296;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:{}}}'),(2459,184,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:22:\"2019/11/gallery-06.jpg\";s:8:\"filesize\";i:85874;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:{}}}'),(2460,183,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:22:\"2019/11/gallery-05.jpg\";s:8:\"filesize\";i:49156;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:{}}}'),(2461,182,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:900;s:6:\"height\";i:900;s:4:\"file\";s:22:\"2019/11/gallery-04.jpg\";s:8:\"filesize\";i:75801;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:{}}}'),(2462,181,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:4:\"file\";s:22:\"2019/11/gallery-03.jpg\";s:8:\"filesize\";i:113313;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:{}}}'),(2463,180,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:22:\"2019/11/gallery-02.jpg\";s:8:\"filesize\";i:68712;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:{}}}'),(2464,179,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:22:\"2019/11/gallery-01.jpg\";s:8:\"filesize\";i:94857;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:{}}}'),(2465,178,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:21:\"2019/11/constr-11.jpg\";s:8:\"filesize\";i:119142;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:{}}}'),(2466,177,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:21:\"2019/11/constr-10.jpg\";s:8:\"filesize\";i:64824;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:{}}}'),(2467,176,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1350;s:6:\"height\";i:900;s:4:\"file\";s:21:\"2019/11/constr-09.jpg\";s:8:\"filesize\";i:107281;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:{}}}'),(2468,175,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1200;s:4:\"file\";s:21:\"2019/11/constr-08.jpg\";s:8:\"filesize\";i:159855;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:{}}}'),(2469,174,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:21:\"2019/11/constr-07.jpg\";s:8:\"filesize\";i:130449;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:{}}}'),(2470,170,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:960;s:4:\"file\";s:21:\"2019/11/constr-06.jpg\";s:8:\"filesize\";i:246278;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:{}}}'),(2471,154,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:163;s:6:\"height\";i:69;s:4:\"file\";s:31:\"2019/11/logo-hidden-sidebar.png\";s:8:\"filesize\";i:5026;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:{}}}'),(2472,153,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1200;s:4:\"file\";s:21:\"2019/11/constr-05.jpg\";s:8:\"filesize\";i:395119;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:{}}}'),(2473,152,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1200;s:4:\"file\";s:21:\"2019/11/constr-04.jpg\";s:8:\"filesize\";i:364860;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:{}}}'),(2474,151,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1200;s:4:\"file\";s:21:\"2019/11/constr-03.jpg\";s:8:\"filesize\";i:151326;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:{}}}'),(2475,150,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1200;s:4:\"file\";s:21:\"2019/11/constr-02.jpg\";s:8:\"filesize\";i:174945;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:{}}}'),(2476,149,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1200;s:4:\"file\";s:21:\"2019/11/constr-01.jpg\";s:8:\"filesize\";i:179902;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:{}}}'),(2477,109,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1937;s:6:\"height\";i:327;s:4:\"file\";s:28:\"2019/10/bg-footer-bottom.jpg\";s:8:\"filesize\";i:33124;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:{}}}'),(2478,87,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2180;s:6:\"height\";i:470;s:4:\"file\";s:21:\"2019/10/bg-footer.png\";s:8:\"filesize\";i:57125;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:{}}}'),(2479,46,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:165;s:6:\"height\";i:70;s:4:\"file\";s:26:\"2019/10/logo-footer-01.png\";s:8:\"filesize\";i:1940;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:{}}}'),(2480,43,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:815;s:4:\"file\";s:25:\"2019/11/bg-page-title.jpg\";s:8:\"filesize\";i:156879;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:{}}}'),(2481,19,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:68;s:6:\"height\";i:70;s:4:\"file\";s:19:\"2019/10/favicon.png\";s:8:\"filesize\";i:512;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:{}}}'),(2498,1644,'_edit_lock','1730104359:1'),(2511,799,'_edit_lock','1742182652:1'),(2521,1951,'_wp_page_template','default'),(2522,1951,'_elementor_edit_mode','builder'),(2523,1951,'_elementor_template_type','wp-post'),(2524,1951,'_elementor_version','2.7.5'),(2525,1951,'_elementor_data','[{\"id\":\"7225c724\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#00165a\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer.png\",\"id\":87},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"109cef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.300000000000000710542735760100185871124267578125},\"elements\":[{\"id\":\"6667e1a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/logo-footer-02.png\",\"id\":806},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae6ecf2\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"30 Commercial Road<br\\/> Fratton, Australia\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"title\":\"\",\"icon_type\":\"icon\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}},{\"content\":\"1-888-452-1505\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"title\":\"\",\"icon_type\":\"icon\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"6dd7194a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Open Hours:\",\"text_color\":\"#f5b011\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"ct-text-gradient\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1e0523b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Mon - Sat: 8 am - 5 pm,<br\\/>\\nSunday: CLOSED\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"712a43be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.6640000000000014779288903810083866119384765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e4e262b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Links\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6e682e5b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"3\",\"style\":\"tow-col-light preset2\",\"link_color_hover\":\"#f5ae0f\",\"line_color_hover\":\"#f5ae0f\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"}],\"isInner\":false},{\"id\":\"1ab76a16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7000000000000028421709430404007434844970703125},\"elements\":[{\"id\":\"37a5e636\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"aa15610\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#011143\",\"padding\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"040\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2487ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40d8f8a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sign up for alerts, our latest blogs, thoughts, and insights.\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d21d208\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"27383ab2\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"d40f6fc\",\"ct_icon\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5da1c22\",\"ct_icon\":{\"value\":\"fab fa-behance\",\"library\":\"fa-brands\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24b98c01\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"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},\"gap\":\"extended\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a6c11e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53be024\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5990603\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"7f874a5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\u00a9 All rights reserved by <a class=\\\"color-preset2\\\" href=\\\"https:\\/\\/themeforest.net\\/user\\/case-themes\\/portfolio\\\" target=\\\"_blank\\\" rel=\\\"nofollow noopener\\\">CaseThemes<\\/a>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_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},\"_css_classes\":\"ct-copyright\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"ab39798\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"12e6673\",\"elType\":\"widget\",\"settings\":{\"menu\":\"46\",\"style\":\"menu-inline\",\"menu_align\":\"right\",\"menu_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2526,1951,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:2:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:1;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:16:\"link_color_hover\";i:1;s:16:\"line_color_hover\";i:1;s:10:\"menu_align\";i:1;s:17:\"menu_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:13:\"ct_newsletter\";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:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";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:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:1;}}}}}'),(2529,1952,'_wp_page_template','default'),(2530,1952,'_elementor_edit_mode','builder'),(2531,1952,'_elementor_template_type','wp-post'),(2532,1952,'_elementor_version','2.7.5'),(2533,1952,'_elementor_data','[{\"id\":\"7225c724\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#00165a\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer.png\",\"id\":87},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"109cef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.3},\"elements\":[{\"id\":\"6667e1a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/logo-footer-02.png\",\"id\":806},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae6ecf2\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"30 Commercial Road<br\\/> Fratton, Australia\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}},{\"content\":\"1-888-452-1505\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"6dd7194a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Open Hours:\",\"text_color\":\"#f5b011\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"ct-text-gradient\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1e0523b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Mon - Sat: 8 am - 5 pm,<br\\/>\\nSunday: CLOSED\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"712a43be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.664,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e4e262b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Links\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6e682e5b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"44\",\"style\":\"tow-col-light\",\"link_color_hover\":\"#f5ae0f\",\"line_color_hover\":\"#f5ae0f\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"}],\"isInner\":false},{\"id\":\"1ab76a16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7},\"elements\":[{\"id\":\"37a5e636\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"aa15610\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#011143\",\"padding\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"040\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2487ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40d8f8a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sign up for alerts, our latest blogs, thoughts, and insights.\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d21d208\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"27383ab2\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"d40f6fc\",\"ct_icon\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5da1c22\",\"ct_icon\":{\"value\":\"fab fa-behance\",\"library\":\"fa-brands\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24b98c01\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"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},\"gap\":\"extended\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a6c11e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53be024\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5990603\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"7f874a5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\u00a9 All rights reserved by <a class=\\\"color-preset2\\\" href=\\\"https:\\/\\/themeforest.net\\/user\\/case-themes\\/portfolio\\\" target=\\\"_blank\\\" rel=\\\"nofollow noopener\\\">CaseThemes<\\/a>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_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},\"_css_classes\":\"ct-copyright\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"ab39798\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"12e6673\",\"elType\":\"widget\",\"settings\":{\"menu\":\"40\",\"style\":\"menu-inline\",\"menu_align\":\"right\",\"menu_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2534,1952,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:2:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:1;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:16:\"link_color_hover\";i:1;s:16:\"line_color_hover\";i:1;s:10:\"menu_align\";i:1;s:17:\"menu_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:13:\"ct_newsletter\";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:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";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:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:1;}}}}}'),(2542,9,'_edit_lock','1742180057:1'),(2544,1955,'_menu_item_type','post_type'),(2545,1955,'_menu_item_menu_item_parent','0'),(2546,1955,'_menu_item_object_id','9'),(2547,1955,'_menu_item_object','page'),(2548,1955,'_menu_item_target',''),(2549,1955,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2550,1955,'_menu_item_xfn',''),(2551,1955,'_menu_item_url',''),(2579,1960,'_menu_item_type','post_type'),(2580,1960,'_menu_item_menu_item_parent','0'),(2581,1960,'_menu_item_object_id','26'),(2582,1960,'_menu_item_object','page'),(2583,1960,'_menu_item_target',''),(2584,1960,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2585,1960,'_menu_item_xfn',''),(2586,1960,'_menu_item_url',''),(2625,1967,'_menu_item_type','post_type'),(2626,1967,'_menu_item_menu_item_parent','0'),(2627,1967,'_menu_item_object_id','28'),(2628,1967,'_menu_item_object','page'),(2629,1967,'_menu_item_target',''),(2630,1967,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2631,1967,'_menu_item_xfn',''),(2632,1967,'_menu_item_url',''),(2661,1970,'_elementor_edit_mode','builder'),(2662,1970,'_elementor_template_type','wp-page'),(2663,1970,'_elementor_version','3.7.8'),(2664,1970,'_wp_page_template','default'),(2665,1970,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.582999999999998408384271897375583648681640625,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We individual assess each plan and offer\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our agency can only be as strong as our people &amp; because of this, our team have designed game changing products.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/signature.png\",\"id\":1520},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":150,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Awards Winner\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5021,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Satisfied Clients\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":201,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Active projects\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.4129999999999967030817060731351375579833984375,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/home-image-01.png\",\"id\":843},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-32\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6165017\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"198\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"98\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"83c8cae\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4d7b0d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will satisfy you by our servicing plan\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"6663a64\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c0cb12\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our team have designed game changing products, consulted for companies as well and become a multinational firm, offering solutions Worldwide.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"012\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d8b559\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8d8c825\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"01464f5\",\"elType\":\"widget\",\"settings\":{\"thumbnail_custom_dimension\":{\"width\":\"430\",\"height\":\"550\"},\"button_text\":\"Read more\",\"slides_to_show\":\"4\",\"slides_to_scroll\":\"4\",\"arrows\":\"true\",\"infinite\":\"true\",\"source\":[\"servicing-plan|service-category\"],\"layout\":\"2\",\"limit\":6,\"autoplay\":\"true\",\"autoplay_speed\":8000,\"speed\":800,\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-02.jpg\",\"id\":886},\"layout\":\"2\",\"title\":\"201 Awards winning constraction company\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are giving you a chance to build your dream\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand the importance of approaching each work integrally and believe in the power of simple and easy communication.\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"Engineering\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Architecture\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"Construction\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have many areas of servicing sector\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We shows only the best websites and portfolios built completely with passion, simplicity & creativity. Our team have designed game changing products.\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"servicing-pricing|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/services-v-1\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8dd6c52\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#00165a\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/map.png\",\"id\":906},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38318c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a80ccf\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"67\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57fcb02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66},\"elements\":[{\"id\":\"5cb0c97\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have many satisfied clients\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"b078c60\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34},\"elements\":[{\"id\":\"a4a5286\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"flex-end\",\"arrow_align_mobile\":\"center\",\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d8df28d\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-01.jpg\",\"id\":397},\"title\":\"Adam Chuhan\",\"description\":\"The theme is well designed and it is really possible to have a nice one page theme in no time. \",\"_id\":\"5b460a9\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-02.jpg\",\"id\":398},\"title\":\"Romanda Rio\",\"description\":\"Association health plans are a new alternative to provide small business owners, sole  with health insurance.\",\"_id\":\"33c5448\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-03.jpg\",\"id\":399},\"title\":\"Ronald Beko\",\"description\":\"A trust is an ideal way for individuals to transfer assets either during life or after their passing. At a basic level.\",\"_id\":\"4d9a6e4\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-04.jpg\",\"id\":400},\"title\":\"Roman Kui\",\"description\":\"It is a long established fact that a read her will be distracted by the readable content of a page.\",\"_id\":\"5abea0e\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-05.jpg\",\"id\":401},\"title\":\"Romanda Rio\",\"description\":\"Most designers live in some sort of alternate reality, creating unnecessary things for each other.\",\"_id\":\"c0a7354\"}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"speed\":800,\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"d8c4cfa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Don\\u2019t think so more about success rate. <a href=\\\"#\\\" class=\\\"color-preset2\\\">Let\\u2019s get started<\\/a>\",\"align\":\"center\",\"text_color\":\"#b4c3f3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24dbc00\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0a6e99a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3d71859\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our expert team member will help you\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"f1e26d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f06f319\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We love what we do and we do it with passion. We value the experimentation of the message and smart incentives.\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ea3a5e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"dee3767\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"94c1ad9\",\"elType\":\"widget\",\"settings\":{\"team\":[{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-04-new.jpg\",\"id\":926},\"title\":\"Ronald Dumple\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"f79d49f\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-03-new.jpg\",\"id\":925},\"title\":\"Nichole Dice\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"d86bd08\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-05-new.jpg\",\"id\":927},\"title\":\"Johan Rio\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"bdaf5b3\"}],\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"infinite\":\"true\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"speed\":800,\"ct_animate\":\"wow pulse\"},\"elements\":[],\"widgetType\":\"ct_team_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 800 250 369\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24648fc\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"css_classes\":\"row-boxed\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"fd2cbb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f83487d\",\"elType\":\"widget\",\"settings\":{\"thumbnail_custom_dimension\":{\"width\":\"370\",\"height\":\"570\"},\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"infinite\":\"true\",\"layout\":\"2\",\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(1,13,50,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping families live intelligently means we\\u2019re always working to bring our customers the latest technology.\",\"text_color\":\"#d6e0fe\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of approaching each work integrally.\",\"btn_text\":\"Discover more\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What separates theme from all other web design agencies is the ability.\",\"btn_text\":\"Contact\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be a whole person. We have a flexible.\",\"btn_text\":\"Place order\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every brand has something special to reveal something that inspires.\",\"btn_text\":\"Make a payment\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#bccbfb\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#021d6c\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0f9059d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"93c9147\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"8444794\",\"elType\":\"widget\",\"settings\":{\"title\":\"You will get a good pricing from us\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_space_bottom\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"5034032\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Monthly\",\"content_type\":\"template\",\"tab_content_template\":\"1214\",\"_id\":\"abcadaa\"},{\"tab_title\":\"Yearly <span>Save 20%<\\/span>\",\"content_type\":\"template\",\"tab_content_template\":\"1217\",\"_id\":\"e5ad016\"}],\"style\":\"style2\",\"tab_style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_tabs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32ee449\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"133\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#00165a\"},\"elements\":[{\"id\":\"cf8979a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"db73408\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b9d78cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.25500000000000255795384873636066913604736328125,\"_inline_size_tablet\":48},\"elements\":[{\"id\":\"1cffc89\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn something more from our blog\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"c8db3a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.74499999999999744204615126363933086395263671875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_inline_size_tablet\":52,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d39a29b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"text_color\":\"#d6e0fe\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3eb8b25\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-170\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"9061193\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"212bb46\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"button_text\":\"Read more\",\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"style\":\"style2\",\"readmore_btn_text\":\"Read more\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c9b150\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"4bae24f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"8b89ac1\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"a49fbc4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"33930a5\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"aeee6c2\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"8fc7373\"}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(2667,1970,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(2669,1971,'_elementor_edit_mode','builder'),(2670,1971,'_elementor_template_type','wp-page'),(2671,1971,'_elementor_version','3.7.8'),(2672,1971,'_wp_page_template','default'),(2673,1971,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.582999999999998408384271897375583648681640625,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We individual assess each plan and offer\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our agency can only be as strong as our people &amp; because of this, our team have designed game changing products.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/signature.png\",\"id\":1520},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":150,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Awards Winner\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5021,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Satisfied Clients\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":201,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Active projects\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.4129999999999967030817060731351375579833984375,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/home-image-01.png\",\"id\":843},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-32\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6165017\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"198\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"98\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"83c8cae\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4d7b0d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will satisfy you by our servicing plan\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"6663a64\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c0cb12\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our team have designed game changing products, consulted for companies as well and become a multinational firm, offering solutions Worldwide.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"012\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d8b559\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8d8c825\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"01464f5\",\"elType\":\"widget\",\"settings\":{\"thumbnail_custom_dimension\":{\"width\":\"430\",\"height\":\"550\"},\"button_text\":\"Read more\",\"slides_to_show\":\"4\",\"slides_to_scroll\":\"4\",\"arrows\":\"true\",\"infinite\":\"true\",\"source\":[\"servicing-plan|service-category\"],\"layout\":\"2\",\"limit\":6,\"autoplay\":\"true\",\"autoplay_speed\":8000,\"speed\":800,\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-02.jpg\",\"id\":886},\"layout\":\"2\",\"title\":\"201 Awards winning constraction company\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are giving you a chance to build your dream\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand the importance of approaching each work integrally and believe in the power of simple and easy communication.\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"Engineering\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Architecture\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"Construction\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have many areas of servicing sector\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We shows only the best websites and portfolios built completely with passion, simplicity & creativity. Our team have designed game changing products.\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"servicing-pricing|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/services-v-1\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8dd6c52\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#00165a\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/map.png\",\"id\":906},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38318c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a80ccf\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"67\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57fcb02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66},\"elements\":[{\"id\":\"5cb0c97\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have many satisfied clients\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"b078c60\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34},\"elements\":[{\"id\":\"a4a5286\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"flex-end\",\"arrow_align_mobile\":\"center\",\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d8df28d\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-01.jpg\",\"id\":397},\"title\":\"Adam Chuhan\",\"description\":\"The theme is well designed and it is really possible to have a nice one page theme in no time. \",\"_id\":\"5b460a9\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-02.jpg\",\"id\":398},\"title\":\"Romanda Rio\",\"description\":\"Association health plans are a new alternative to provide small business owners, sole  with health insurance.\",\"_id\":\"33c5448\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-03.jpg\",\"id\":399},\"title\":\"Ronald Beko\",\"description\":\"A trust is an ideal way for individuals to transfer assets either during life or after their passing. At a basic level.\",\"_id\":\"4d9a6e4\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-04.jpg\",\"id\":400},\"title\":\"Roman Kui\",\"description\":\"It is a long established fact that a read her will be distracted by the readable content of a page.\",\"_id\":\"5abea0e\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-05.jpg\",\"id\":401},\"title\":\"Romanda Rio\",\"description\":\"Most designers live in some sort of alternate reality, creating unnecessary things for each other.\",\"_id\":\"c0a7354\"}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"speed\":800,\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"d8c4cfa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Don\\u2019t think so more about success rate. <a href=\\\"#\\\" class=\\\"color-preset2\\\">Let\\u2019s get started<\\/a>\",\"align\":\"center\",\"text_color\":\"#b4c3f3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24dbc00\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0a6e99a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3d71859\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our expert team member will help you\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"f1e26d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f06f319\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We love what we do and we do it with passion. We value the experimentation of the message and smart incentives.\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ea3a5e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"dee3767\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"94c1ad9\",\"elType\":\"widget\",\"settings\":{\"team\":[{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-04-new.jpg\",\"id\":926},\"title\":\"Ronald Dumple\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"f79d49f\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-03-new.jpg\",\"id\":925},\"title\":\"Nichole Dice\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"d86bd08\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-05-new.jpg\",\"id\":927},\"title\":\"Johan Rio\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"bdaf5b3\"}],\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"infinite\":\"true\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"speed\":800,\"ct_animate\":\"wow pulse\"},\"elements\":[],\"widgetType\":\"ct_team_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 800 250 369\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24648fc\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"css_classes\":\"row-boxed\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"fd2cbb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f83487d\",\"elType\":\"widget\",\"settings\":{\"thumbnail_custom_dimension\":{\"width\":\"370\",\"height\":\"570\"},\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"infinite\":\"true\",\"layout\":\"2\",\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(1,13,50,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping families live intelligently means we\\u2019re always working to bring our customers the latest technology.\",\"text_color\":\"#d6e0fe\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of approaching each work integrally.\",\"btn_text\":\"Discover more\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What separates theme from all other web design agencies is the ability.\",\"btn_text\":\"Contact\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be a whole person. We have a flexible.\",\"btn_text\":\"Place order\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every brand has something special to reveal something that inspires.\",\"btn_text\":\"Make a payment\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#bccbfb\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#021d6c\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0f9059d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"93c9147\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"8444794\",\"elType\":\"widget\",\"settings\":{\"title\":\"You will get a good pricing from us\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_space_bottom\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"5034032\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Monthly\",\"content_type\":\"template\",\"tab_content_template\":\"1214\",\"_id\":\"abcadaa\"},{\"tab_title\":\"Yearly <span>Save 20%<\\/span>\",\"content_type\":\"template\",\"tab_content_template\":\"1217\",\"_id\":\"e5ad016\"}],\"style\":\"style2\",\"tab_style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_tabs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32ee449\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"133\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#00165a\"},\"elements\":[{\"id\":\"cf8979a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"db73408\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b9d78cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.25500000000000255795384873636066913604736328125,\"_inline_size_tablet\":48},\"elements\":[{\"id\":\"1cffc89\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn something more from our blog\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"c8db3a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.74499999999999744204615126363933086395263671875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_inline_size_tablet\":52,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d39a29b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"text_color\":\"#d6e0fe\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3eb8b25\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-170\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"9061193\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"212bb46\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"button_text\":\"Read more\",\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"style\":\"style2\",\"readmore_btn_text\":\"Read more\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c9b150\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"4bae24f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"8b89ac1\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"a49fbc4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"33930a5\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"aeee6c2\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"8fc7373\"}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(2675,1971,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(2677,1972,'_elementor_edit_mode','builder'),(2678,1972,'_elementor_template_type','wp-page'),(2679,1972,'_elementor_version','3.7.8'),(2680,1972,'_wp_page_template','default'),(2681,1972,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We assess plans and provide tailored machinery.\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our company\\u2019s strength lies in our team, who have developed groundbreaking machinery and equipment.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/signature.png\",\"id\":1520},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":150,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Awards Winner\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5021,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Satisfied Clients\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":201,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Active projects\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/home-image-01.png\",\"id\":843},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-32\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-02.jpg\",\"id\":886},\"layout\":\"2\",\"title\":\"201 Award-winning machinery and equipment manufacturing company.\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We help you build your vision with our machinery.\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We approach every project with precision and value clear, simple communication.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"Engineering\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Design\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"Production\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"servicing-plan|service-category\",\"servicing-pricing|service-category\",\"servicing-sector|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/services-v-1\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f8b99fb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fd652b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c7c5a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Partners\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c9b150\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"4bae24f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"8b89ac1\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"a49fbc4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"33930a5\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"aeee6c2\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"8fc7373\"}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 800 250 369\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(1,13,50,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses thrive by providing the latest machinery technology.<\\/p>\",\"text_color\":\"#d6e0fe\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_text\":\"Discover more\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\",\"btn_text\":\"Contact\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_text\":\"Place order\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_text\":\"Make a payment\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#bccbfb\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#021d6c\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2683,1972,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(2691,1975,'_wp_attached_file','2024/10/banner_02.jpg'),(2692,1975,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1355;s:6:\"height\";i:444;s:4:\"file\";s:21:\"2024/10/banner_02.jpg\";s:8:\"filesize\";i:120600;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(2693,1976,'_wp_attached_file','2024/10/stationary_equipment_banner_4.jpg'),(2694,1976,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1397;s:6:\"height\";i:407;s:4:\"file\";s:41:\"2024/10/stationary_equipment_banner_4.jpg\";s:8:\"filesize\";i:205765;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:{}}}'),(2695,1977,'_wp_attached_file','2024/10/orange-geometric-flat-mechanical-banner-background_2756120.jpg'),(2696,1977,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:290;s:4:\"file\";s:70:\"2024/10/orange-geometric-flat-mechanical-banner-background_2756120.jpg\";s:8:\"filesize\";i:42502;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:{}}}'),(2700,1967,'_wp_old_date','2024-10-18'),(2701,1960,'_wp_old_date','2024-10-18'),(2704,28,'_edit_lock','1735098867:1'),(2705,1979,'_wp_page_template','default'),(2706,1979,'_elementor_edit_mode','builder'),(2707,1979,'_elementor_template_type','wp-page'),(2708,1979,'_elementor_version','3.8.0'),(2709,1979,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will satisfy you by our work ideas\",\"sub_title\":\"Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-01.jpg\",\"id\":351},\"title\":\"Ronald Dumple\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"e562253\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-02.jpg\",\"id\":352},\"title\":\"James Smith\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"5a8d6da\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-03.jpg\",\"id\":353},\"title\":\"Charles F Johnson\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"994e0c5\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-04.jpg\",\"id\":354},\"title\":\"Jodi C Johnson\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"b254836\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-05.jpg\",\"id\":355},\"title\":\"Debra L Smith\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"2da9619\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-06.jpg\",\"id\":356},\"title\":\"Mrditch\\u00a0\\u00a0Hohan\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"18991d8\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false}]'),(2710,1979,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(2714,28,'_edit_last','1'),(2715,28,'p_logo_dark','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(2716,28,'p_logo_light','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(2717,28,'h_custom_menu',''),(2727,1981,'_wp_page_template','default'),(2728,1981,'_elementor_edit_mode','builder'),(2729,1981,'_elementor_template_type','wp-page'),(2730,1981,'_elementor_version','3.8.0'),(2731,1981,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will satisfy you by our work ideas\",\"sub_title\":\"Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-01.jpg\",\"id\":351},\"title\":\"Ronald Dumple\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"e562253\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-02.jpg\",\"id\":352},\"title\":\"James Smith\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"5a8d6da\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-03.jpg\",\"id\":353},\"title\":\"Charles F Johnson\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"994e0c5\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-04.jpg\",\"id\":354},\"title\":\"Jodi C Johnson\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"b254836\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-05.jpg\",\"id\":355},\"title\":\"Debra L Smith\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"2da9619\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-06.jpg\",\"id\":356},\"title\":\"Mrditch\\u00a0\\u00a0Hohan\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"18991d8\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false}]'),(2732,1981,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(2735,1982,'_wp_page_template','default'),(2736,1982,'_elementor_edit_mode','builder'),(2737,1982,'_elementor_template_type','wp-page'),(2738,1982,'_elementor_version','3.8.0'),(2739,1982,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will satisfy you by our work ideas\",\"sub_title\":\"Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-01.jpg\",\"id\":351},\"title\":\"Ronald Dumple\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"e562253\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-02.jpg\",\"id\":352},\"title\":\"James Smith\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"5a8d6da\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-03.jpg\",\"id\":353},\"title\":\"Charles F Johnson\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"994e0c5\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-04.jpg\",\"id\":354},\"title\":\"Jodi C Johnson\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"b254836\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-05.jpg\",\"id\":355},\"title\":\"Debra L Smith\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"2da9619\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-06.jpg\",\"id\":356},\"title\":\"Mrditch\\u00a0\\u00a0Hohan\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"18991d8\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false}]'),(2740,1982,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(2743,1983,'_wp_page_template','default'),(2744,1983,'_elementor_edit_mode','builder'),(2745,1983,'_elementor_template_type','wp-page'),(2746,1983,'_elementor_version','3.8.0'),(2747,1983,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-01.jpg\",\"id\":351},\"title\":\"Ronald Dumple\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"e562253\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-02.jpg\",\"id\":352},\"title\":\"James Smith\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"5a8d6da\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-03.jpg\",\"id\":353},\"title\":\"Charles F Johnson\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"994e0c5\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-04.jpg\",\"id\":354},\"title\":\"Jodi C Johnson\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"b254836\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-05.jpg\",\"id\":355},\"title\":\"Debra L Smith\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"2da9619\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-06.jpg\",\"id\":356},\"title\":\"Mrditch\\u00a0\\u00a0Hohan\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"18991d8\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false}]'),(2748,1983,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(2753,26,'_edit_lock','1742181959:1'),(2763,1985,'_wp_page_template','default'),(2764,1985,'_elementor_edit_mode','builder'),(2765,1985,'_elementor_template_type','wp-page'),(2766,1985,'_elementor_version','2.7.5'),(2767,1985,'_elementor_data','[{\"id\":\"c986484\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"21\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab9e3e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.3239999999999980673237587325274944305419921875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cc7a78\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will satisfy you by our work ideas\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"sub_title\":\"About us\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c42c037\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goikussimos ducimus qui to bonfoeblanditiis praese. Ntium voluum deleniti.\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c469998\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Tpage a reload when looking at its layout. The point of using Lorem Ipsum is that it has pi motivere-or-less normal distribution of letters, as opposed.\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11334c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2442360\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d195ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-01.png\",\"id\":612},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b2107e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Time manage\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c366e73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum available, but the majority have suffered alterati.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d099fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c4ae19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-02.png\",\"id\":613},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ba24a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fulfill target\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bdc9adf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum available, but the majority have suffered alterati.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ba92fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.6760000000000019326762412674725055694580078125,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae4fae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-01.jpg\",\"id\":623}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"0c406f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/signature1.png\",\"id\":633},\"title\":\"Hanley Robin\",\"desc\":\"(Chairman and founder)\",\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to know more about us?\",\"desc\":\"Just download brochure...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30971203\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f4ff339\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"72393e43\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have areas of service\",\"sub_title\":\"Services\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4cadbcb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"48d28512\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"45a1747\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"3\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"fd90c78\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"736df1d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"servicing-pricing|service-category\"]},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"7128619\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/services-v-1\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-scaled.jpg\",\"id\":663},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"060\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.9369999999999976125764078460633754730224609375},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Constrio is a professional builder company\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.0630000000000023874235921539366245269775390625},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"861b1e7\",\"elType\":\"widget\",\"settings\":{\"history\":[{\"title\":\"12th Jan, 2018\",\"content\":\"Establishment of Constrio\",\"_id\":\"d10d5c8\"},{\"title\":\"2nd Feb, 2018\",\"content\":\"Exhibition Planning & Exhibition Management\",\"_id\":\"94b661a\"},{\"title\":\"8th Jul, 2018\",\"content\":\"Registered as a construction company\",\"_id\":\"56108b1\"},{\"title\":\"21st Jul, 2018\",\"content\":\"Growth internationallyfirst half of the 2018s\",\"_id\":\"c00ee7f\"},{\"title\":\"18th Aug, 2018\",\"content\":\"Construction bought the Greek company Delta\",\"_id\":\"49c19e4\"},{\"title\":\"19th Aug, 2018\",\"content\":\"The purpose of the business plan\",\"_id\":\"60f348b\"},{\"title\":\"27th Sep, 2018\",\"content\":\"For lean business plans, operational plans, and strategic plans\",\"_id\":\"4c4e8fe\"},{\"title\":\"2nd Jan, 2019\",\"content\":\"Focus business history on what matters to planning\",\"_id\":\"094e427\"},{\"title\":\"8th Jul, 2019\",\"content\":\"Award winner\",\"_id\":\"cad9be1\"},{\"title\":\"22nd Sep, 2019\",\"content\":\"History to Unite and Inspire People\",\"_id\":\"8219566\"}],\"start_text\":\"Start\",\"end_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/constr-01.jpg\",\"id\":149},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_history\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4bf9f60\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ac50024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ed3422f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will satisfy you by our work ideas\",\"sub_title\":\"Testimonials\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4394c882\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c7fcaf3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a8a40d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"3\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/dot-map.png\",\"id\":405},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6f78401\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"425a1b7\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-01.jpg\",\"id\":397},\"title\":\"Adam Chuhan\",\"position\":\"Web designer\",\"description\":\"Lorem Ipsum available, but the majority have to sufferrer tobe alterati on in som. It is a long to be established.\",\"_id\":\"0d24acb\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-02.jpg\",\"id\":398},\"title\":\"Erika Johnson \",\"position\":\"Web designer\",\"description\":\"Lorem Ipsum available, but the majority have to sufferrer tobe alterati on in som. It is a long to be established.\",\"_id\":\"4cd30fb\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-03.jpg\",\"id\":399},\"title\":\"Allie Johnson \",\"position\":\"SEO manager\",\"description\":\"Lorem Ipsum available, but the majority have to sufferrer tobe alterati on in som. It is a long to be established.\",\"_id\":\"4e4bd91\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-04.jpg\",\"id\":400},\"title\":\"James Smith \",\"position\":\"Web designer\",\"description\":\"Lorem Ipsum available, but the majority have to sufferrer tobe alterati on in som. It is a long to be established.\",\"_id\":\"787af2f\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-05.jpg\",\"id\":401},\"title\":\"Adam Chuhan\",\"position\":\"Sasha D Johnson \",\"description\":\"Lorem Ipsum available, but the majority have to sufferrer tobe alterati on in som. It is a long to be established.\",\"_id\":\"ae212af\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Debra L Smith \",\"position\":\"Web designer\",\"description\":\"Lorem Ipsum available, but the majority have to sufferrer tobe alterati on in som. It is a long to be established.\",\"_id\":\"1d54cdb\"}],\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll\":\"3\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"true\",\"autoplay\":\"true\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(2768,1985,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:6;s:18:\"title_space_bottom\";i:3;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:4;s:22:\"sub_title_space_bottom\";i:3;s:15:\"sub_title_color\";i:1;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:5;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:7;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}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:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;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:10;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:3;s:13:\"margin_mobile\";i:3;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:3;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:6;s:7:\"padding\";i:6;s:14:\"padding_tablet\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:5:\"image\";i:1;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"ct_cta\";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:\"source_section\";a:4:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:4:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:14:\"slides_to_show\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:16:\"slides_to_scroll\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:6:\"arrows\";i:1;s:8:\"autoplay\";i:1;s:8:\"infinite\";i:1;}}}}}'),(2771,1986,'_wp_page_template','default'),(2772,1986,'_elementor_edit_mode','builder'),(2773,1986,'_elementor_template_type','wp-page'),(2774,1986,'_elementor_version','2.7.5'),(2775,1986,'_elementor_data','[{\"id\":\"c986484\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"21\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab9e3e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.3239999999999980673237587325274944305419921875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cc7a78\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will satisfy you by our work ideas\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"sub_title\":\"About us\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c42c037\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goikussimos ducimus qui to bonfoeblanditiis praese. Ntium voluum deleniti.\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c469998\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Tpage a reload when looking at its layout. The point of using Lorem Ipsum is that it has pi motivere-or-less normal distribution of letters, as opposed.\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11334c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2442360\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d195ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-01.png\",\"id\":612},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b2107e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Time manage\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c366e73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum available, but the majority have suffered alterati.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d099fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c4ae19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-02.png\",\"id\":613},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ba24a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fulfill target\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bdc9adf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem Ipsum available, but the majority have suffered alterati.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ba92fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.6760000000000019326762412674725055694580078125,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae4fae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-01.jpg\",\"id\":623}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"0c406f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/signature1.png\",\"id\":633},\"title\":\"Hanley Robin\",\"desc\":\"(Chairman and founder)\",\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to know more about us?\",\"desc\":\"Just download brochure...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30971203\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f4ff339\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"72393e43\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have areas of service\",\"sub_title\":\"Services\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4cadbcb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"48d28512\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"45a1747\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"3\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"fd90c78\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"736df1d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"servicing-pricing|service-category\"]},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"7128619\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/services-v-1\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-scaled.jpg\",\"id\":663},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"060\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.9369999999999976125764078460633754730224609375},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Constrio is a professional builder company\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.0630000000000023874235921539366245269775390625},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"861b1e7\",\"elType\":\"widget\",\"settings\":{\"history\":[{\"title\":\"12th Jan, 2018\",\"content\":\"Establishment of Constrio\",\"_id\":\"d10d5c8\"},{\"title\":\"2nd Feb, 2018\",\"content\":\"Exhibition Planning & Exhibition Management\",\"_id\":\"94b661a\"},{\"title\":\"8th Jul, 2018\",\"content\":\"Registered as a construction company\",\"_id\":\"56108b1\"},{\"title\":\"21st Jul, 2018\",\"content\":\"Growth internationallyfirst half of the 2018s\",\"_id\":\"c00ee7f\"},{\"title\":\"18th Aug, 2018\",\"content\":\"Construction bought the Greek company Delta\",\"_id\":\"49c19e4\"},{\"title\":\"19th Aug, 2018\",\"content\":\"The purpose of the business plan\",\"_id\":\"60f348b\"},{\"title\":\"27th Sep, 2018\",\"content\":\"For lean business plans, operational plans, and strategic plans\",\"_id\":\"4c4e8fe\"},{\"title\":\"2nd Jan, 2019\",\"content\":\"Focus business history on what matters to planning\",\"_id\":\"094e427\"},{\"title\":\"8th Jul, 2019\",\"content\":\"Award winner\",\"_id\":\"cad9be1\"},{\"title\":\"22nd Sep, 2019\",\"content\":\"History to Unite and Inspire People\",\"_id\":\"8219566\"}],\"start_text\":\"Start\",\"end_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/constr-01.jpg\",\"id\":149},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_history\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4bf9f60\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ac50024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ed3422f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will satisfy you by our work ideas\",\"sub_title\":\"Testimonials\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4394c882\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c7fcaf3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a8a40d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"3\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/dot-map.png\",\"id\":405},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6f78401\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"425a1b7\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-01.jpg\",\"id\":397},\"title\":\"Adam Chuhan\",\"position\":\"Web designer\",\"description\":\"Lorem Ipsum available, but the majority have to sufferrer tobe alterati on in som. It is a long to be established.\",\"_id\":\"0d24acb\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-02.jpg\",\"id\":398},\"title\":\"Erika Johnson \",\"position\":\"Web designer\",\"description\":\"Lorem Ipsum available, but the majority have to sufferrer tobe alterati on in som. It is a long to be established.\",\"_id\":\"4cd30fb\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-03.jpg\",\"id\":399},\"title\":\"Allie Johnson \",\"position\":\"SEO manager\",\"description\":\"Lorem Ipsum available, but the majority have to sufferrer tobe alterati on in som. It is a long to be established.\",\"_id\":\"4e4bd91\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-04.jpg\",\"id\":400},\"title\":\"James Smith \",\"position\":\"Web designer\",\"description\":\"Lorem Ipsum available, but the majority have to sufferrer tobe alterati on in som. It is a long to be established.\",\"_id\":\"787af2f\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-05.jpg\",\"id\":401},\"title\":\"Adam Chuhan\",\"position\":\"Sasha D Johnson \",\"description\":\"Lorem Ipsum available, but the majority have to sufferrer tobe alterati on in som. It is a long to be established.\",\"_id\":\"ae212af\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Debra L Smith \",\"position\":\"Web designer\",\"description\":\"Lorem Ipsum available, but the majority have to sufferrer tobe alterati on in som. It is a long to be established.\",\"_id\":\"1d54cdb\"}],\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll\":\"3\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"true\",\"autoplay\":\"true\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(2776,1986,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:6;s:18:\"title_space_bottom\";i:3;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:4;s:22:\"sub_title_space_bottom\";i:3;s:15:\"sub_title_color\";i:1;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:5;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:7;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}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:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;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:10;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:3;s:13:\"margin_mobile\";i:3;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:3;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:6;s:7:\"padding\";i:6;s:14:\"padding_tablet\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:5:\"image\";i:1;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"ct_cta\";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:\"source_section\";a:4:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:4:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:14:\"slides_to_show\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:16:\"slides_to_scroll\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:6:\"arrows\";i:1;s:8:\"autoplay\";i:1;s:8:\"infinite\";i:1;}}}}}'),(2779,1987,'_wp_page_template','default'),(2780,1987,'_elementor_edit_mode','builder'),(2781,1987,'_elementor_template_type','wp-page'),(2782,1987,'_elementor_version','2.7.5'),(2783,1987,'_elementor_data','[{\"id\":\"c986484\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"21\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab9e3e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.324,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cc7a78\",\"elType\":\"widget\",\"settings\":{\"title\":\"We satisfy you with innovative ideas and quality work.\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"sub_title\":\"About us\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c42c037\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At vero eos et accusamus et iusto odio digni goikussimos ducimus qui to bonfoeblanditiis praese. Ntium voluum deleniti.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c469998\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We exceed expectations through innovative ideas and exceptional craftsmanship.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11334c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2442360\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d195ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-01.png\",\"id\":612},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b2107e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Time manage\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c366e73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Efficiently organizing tasks to maximize productivity and meet deadlines.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d099fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c4ae19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-02.png\",\"id\":613},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ba24a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fulfill target\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bdc9adf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Achieving goals with precision and commitment, ensuring success.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ba92fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.676,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae4fae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-01.jpg\",\"id\":623}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"0c406f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/signature1.png\",\"id\":633},\"title\":\"Hanley Robin\",\"desc\":\"(Chairman and founder)\",\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to know more about us?\",\"desc\":\"Just download brochure...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-scaled.jpg\",\"id\":663},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"060\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.937},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fe2tech is a professional builder company\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.063},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fe2tech is a leading company in building and manufacturing high-quality mechanical solutions.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"861b1e7\",\"elType\":\"widget\",\"settings\":{\"history\":[{\"title\":\"12th Jan, 2018\",\"content\":\"Establishment of Constrio\",\"_id\":\"d10d5c8\"},{\"title\":\"2nd Feb, 2018\",\"content\":\"Exhibition Planning & Exhibition Management\",\"_id\":\"94b661a\"},{\"title\":\"8th Jul, 2018\",\"content\":\"Registered as a construction company\",\"_id\":\"56108b1\"},{\"title\":\"21st Jul, 2018\",\"content\":\"Growth internationallyfirst half of the 2018s\",\"_id\":\"c00ee7f\"},{\"title\":\"18th Aug, 2018\",\"content\":\"Construction bought the Greek company Delta\",\"_id\":\"49c19e4\"},{\"title\":\"19th Aug, 2018\",\"content\":\"The purpose of the business plan\",\"_id\":\"60f348b\"},{\"title\":\"27th Sep, 2018\",\"content\":\"For lean business plans, operational plans, and strategic plans\",\"_id\":\"4c4e8fe\"},{\"title\":\"2nd Jan, 2019\",\"content\":\"Focus business history on what matters to planning\",\"_id\":\"094e427\"},{\"title\":\"8th Jul, 2019\",\"content\":\"Award winner\",\"_id\":\"cad9be1\"},{\"title\":\"22nd Sep, 2019\",\"content\":\"History to Unite and Inspire People\",\"_id\":\"8219566\"}],\"start_text\":\"Start\",\"end_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_history\"}],\"isInner\":false}],\"isInner\":false}]'),(2784,1987,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:6;s:18:\"title_space_bottom\";i:3;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:4;s:22:\"sub_title_space_bottom\";i:3;s:15:\"sub_title_color\";i:1;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:5;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:7;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}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:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;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:10;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:3;s:13:\"margin_mobile\";i:3;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:3;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:6;s:7:\"padding\";i:6;s:14:\"padding_tablet\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:5:\"image\";i:1;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"ct_cta\";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:\"source_section\";a:4:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:4:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:14:\"slides_to_show\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:16:\"slides_to_scroll\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:6:\"arrows\";i:1;s:8:\"autoplay\";i:1;s:8:\"infinite\";i:1;}}}}}'),(2810,1992,'_wp_page_template','default'),(2811,1992,'_elementor_edit_mode','builder'),(2812,1992,'_elementor_template_type','wp-page'),(2813,1992,'_elementor_version','3.24.7'),(2814,1992,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-01.jpg\",\"id\":351},\"title\":\"Ronald Dumple\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"e562253\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-02.jpg\",\"id\":352},\"title\":\"James Smith\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"5a8d6da\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-03.jpg\",\"id\":353},\"title\":\"Charles F Johnson\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"994e0c5\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-04.jpg\",\"id\":354},\"title\":\"Jodi C Johnson\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"b254836\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-05.jpg\",\"id\":355},\"title\":\"Debra L Smith\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"2da9619\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-06.jpg\",\"id\":356},\"title\":\"Mrditch\\u00a0\\u00a0Hohan\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"18991d8\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false}]'),(2815,1992,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(2849,1997,'_wp_page_template','default'),(2850,1997,'_elementor_edit_mode','builder'),(2851,1997,'_elementor_template_type','wp-page'),(2852,1997,'_elementor_version','3.24.7'),(2853,1997,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-01.jpg\",\"id\":351},\"title\":\"Ronald Dumple\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"e562253\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-02.jpg\",\"id\":352},\"title\":\"James Smith\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"5a8d6da\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-03.jpg\",\"id\":353},\"title\":\"Charles F Johnson\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"994e0c5\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-04.jpg\",\"id\":354},\"title\":\"Jodi C Johnson\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"b254836\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-05.jpg\",\"id\":355},\"title\":\"Debra L Smith\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"2da9619\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-06.jpg\",\"id\":356},\"title\":\"Mrditch\\u00a0\\u00a0Hohan\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"18991d8\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false}]'),(2854,1997,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(2858,1998,'_wp_page_template','default'),(2859,1998,'_elementor_edit_mode','builder'),(2860,1998,'_elementor_template_type','wp-page'),(2861,1998,'_elementor_version','3.24.7'),(2862,1998,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-01.jpg\",\"id\":351},\"title\":\"Ronald Dumple\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"e562253\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-02.jpg\",\"id\":352},\"title\":\"James Smith\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"5a8d6da\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-03.jpg\",\"id\":353},\"title\":\"Charles F Johnson\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"994e0c5\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-04.jpg\",\"id\":354},\"title\":\"Jodi C Johnson\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"b254836\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-05.jpg\",\"id\":355},\"title\":\"Debra L Smith\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"2da9619\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-06.jpg\",\"id\":356},\"title\":\"Mrditch\\u00a0\\u00a0Hohan\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"18991d8\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false}]'),(2863,1998,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(2867,1999,'_wp_page_template','default'),(2868,1999,'_elementor_edit_mode','builder'),(2869,1999,'_elementor_template_type','wp-page'),(2870,1999,'_elementor_version','3.24.7'),(2871,1999,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-01.jpg\",\"id\":351},\"title\":\"Ronald Dumple\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"e562253\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-02.jpg\",\"id\":352},\"title\":\"James Smith\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"5a8d6da\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-03.jpg\",\"id\":353},\"title\":\"Charles F Johnson\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"994e0c5\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-04.jpg\",\"id\":354},\"title\":\"Jodi C Johnson\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"b254836\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-05.jpg\",\"id\":355},\"title\":\"Debra L Smith\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"2da9619\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-06.jpg\",\"id\":356},\"title\":\"Mrditch\\u00a0\\u00a0Hohan\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"18991d8\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false}]'),(2872,1999,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(2908,2006,'_wp_page_template','default'),(2909,2006,'_elementor_edit_mode','builder'),(2910,2006,'_elementor_template_type','wp-page'),(2911,2006,'_elementor_version','3.24.7'),(2912,2006,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-01.jpg\",\"id\":351},\"title\":\"Ronald Dumple\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"e562253\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-02.jpg\",\"id\":352},\"title\":\"James Smith\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"5a8d6da\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-03.jpg\",\"id\":353},\"title\":\"Charles F Johnson\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"994e0c5\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-04.jpg\",\"id\":354},\"title\":\"Jodi C Johnson\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"b254836\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-05.jpg\",\"id\":355},\"title\":\"Debra L Smith\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"2da9619\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-06.jpg\",\"id\":356},\"title\":\"Mrditch\\u00a0\\u00a0Hohan\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"18991d8\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false}]'),(2913,2006,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(2915,2007,'_wp_page_template','default'),(2916,2007,'_elementor_edit_mode','builder'),(2917,2007,'_elementor_template_type','wp-page'),(2918,2007,'_elementor_version','3.24.7'),(2919,2007,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-01.jpg\",\"id\":351},\"title\":\"Ronald Dumple\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"e562253\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-02.jpg\",\"id\":352},\"title\":\"James Smith\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"5a8d6da\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-03.jpg\",\"id\":353},\"title\":\"Charles F Johnson\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"994e0c5\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-04.jpg\",\"id\":354},\"title\":\"Jodi C Johnson\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"b254836\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-05.jpg\",\"id\":355},\"title\":\"Debra L Smith\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"2da9619\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-06.jpg\",\"id\":356},\"title\":\"Mrditch\\u00a0\\u00a0Hohan\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"18991d8\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false}]'),(2920,2007,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(2922,2008,'_wp_page_template','default'),(2923,2008,'_elementor_edit_mode','builder'),(2924,2008,'_elementor_template_type','wp-page'),(2925,2008,'_elementor_version','3.24.7'),(2926,2008,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-01.jpg\",\"id\":351},\"title\":\"Ronald Dumple\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"e562253\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-02.jpg\",\"id\":352},\"title\":\"James Smith\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"5a8d6da\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-03.jpg\",\"id\":353},\"title\":\"Charles F Johnson\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"994e0c5\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-04.jpg\",\"id\":354},\"title\":\"Jodi C Johnson\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"b254836\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-05.jpg\",\"id\":355},\"title\":\"Debra L Smith\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"2da9619\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-06.jpg\",\"id\":356},\"title\":\"Mrditch\\u00a0\\u00a0Hohan\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"18991d8\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false}]'),(2927,2008,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(2963,2014,'_wp_page_template','default'),(2964,2014,'_elementor_edit_mode','builder'),(2965,2014,'_elementor_template_type','wp-post'),(2966,2014,'_elementor_version','3.24.7'),(2967,2014,'_elementor_data','[{\"id\":\"7225c724\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#00165a\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer.png\",\"id\":87},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"109cef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.3},\"elements\":[{\"id\":\"6667e1a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/logo-footer-02.png\",\"id\":806},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae6ecf2\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"30 Commercial Road<br\\/> Fratton, Australia\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}},{\"content\":\"1-888-452-1505\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"6dd7194a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Open Hours:\",\"text_color\":\"#f5b011\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"ct-text-gradient\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1e0523b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Mon - Sat: 8 am - 5 pm,<br\\/>\\nSunday: CLOSED\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"712a43be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.664,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e4e262b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Menu\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6e682e5b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"39\",\"style\":\"tow-col-light\",\"link_color_hover\":\"#f5ae0f\",\"line_color_hover\":\"#f5ae0f\",\"menu_align\":\"left\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"}],\"isInner\":false},{\"id\":\"1ab76a16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7},\"elements\":[{\"id\":\"37a5e636\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"aa15610\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#011143\",\"padding\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"040\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2487ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40d8f8a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sign up for alerts, our latest blogs, thoughts, and insights.\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d21d208\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"27383ab2\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"d40f6fc\",\"ct_icon\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5da1c22\",\"ct_icon\":{\"value\":\"fab fa-behance\",\"library\":\"fa-brands\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24b98c01\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"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},\"gap\":\"extended\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a6c11e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53be024\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5990603\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"7f874a5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\u00a9 All rights reserved by <a class=\\\"color-preset2\\\" href=\\\"https:\\/\\/themeforest.net\\/user\\/case-themes\\/portfolio\\\" target=\\\"_blank\\\" rel=\\\"nofollow noopener\\\">CaseThemes<\\/a>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_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},\"_css_classes\":\"ct-copyright\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"ab39798\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"12e6673\",\"elType\":\"widget\",\"settings\":{\"menu\":\"40\",\"style\":\"menu-inline\",\"menu_align\":\"right\",\"menu_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2968,2014,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:2:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:1;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:16:\"link_color_hover\";i:1;s:16:\"line_color_hover\";i:1;s:10:\"menu_align\";i:1;s:17:\"menu_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:13:\"ct_newsletter\";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:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";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:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:1;}}}}}'),(2977,2016,'_wp_attached_file','2019/11/may-cnc-trung-tam-4-dau-1.jpg'),(2978,2016,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:750;s:4:\"file\";s:37:\"2019/11/may-cnc-trung-tam-4-dau-1.jpg\";s:8:\"filesize\";i:148136;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(2983,2017,'_wp_attached_file','2019/11/AJT400S-TRIM-900.jpg'),(2984,2017,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:900;s:6:\"height\";i:900;s:4:\"file\";s:28:\"2019/11/AJT400S-TRIM-900.jpg\";s:8:\"filesize\";i:124330;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(3029,2019,'_edit_last','1'),(3030,2019,'_edit_lock','1729352404:1'),(3031,2019,'_visibility','visible'),(3032,2019,'_stock_status','instock'),(3033,2019,'_thumbnail_id','2016'),(3034,2019,'_wp_page_template','default'),(3035,2019,'total_sales','0'),(3036,2019,'_tax_status','taxable'),(3037,2019,'_tax_class',''),(3038,2019,'_manage_stock','no'),(3039,2019,'_backorders','no'),(3040,2019,'_sold_individually','no'),(3041,2019,'_virtual','no'),(3042,2019,'_downloadable','no'),(3043,2019,'_download_limit','-1'),(3044,2019,'_download_expiry','-1'),(3045,2019,'_stock',NULL),(3046,2019,'_wc_average_rating','0'),(3047,2019,'_wc_review_count','0'),(3048,2019,'_product_version','9.3.3'),(3049,2019,'_product_image_gallery','2016'),(3050,2019,'product_feature','a:1:{i:0;s:0:\"\";}'),(3051,2020,'_edit_last','1'),(3052,2020,'_edit_lock','1729352492:1'),(3053,2021,'_wp_attached_file','2024/10/grind2.jpg'),(3054,2021,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:982;s:4:\"file\";s:18:\"2024/10/grind2.jpg\";s:8:\"filesize\";i:166069;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:{}}}'),(3055,2020,'_visibility','visible'),(3056,2020,'_stock_status','instock'),(3057,2020,'_thumbnail_id','2021'),(3058,2020,'_wp_page_template','default'),(3059,2020,'total_sales','0'),(3060,2020,'_tax_status','taxable'),(3061,2020,'_tax_class',''),(3062,2020,'_manage_stock','no'),(3063,2020,'_backorders','no'),(3064,2020,'_sold_individually','no'),(3065,2020,'_virtual','no'),(3066,2020,'_downloadable','no'),(3067,2020,'_download_limit','-1'),(3068,2020,'_download_expiry','-1'),(3069,2020,'_stock',NULL),(3070,2020,'_wc_average_rating','0'),(3071,2020,'_wc_review_count','0'),(3072,2020,'_product_version','9.3.3'),(3073,2020,'_product_image_gallery','2021'),(3074,2020,'product_feature','a:1:{i:0;s:0:\"\";}'),(3075,2023,'_edit_last','1'),(3076,2023,'_edit_lock','1729352540:1'),(3077,2024,'_wp_attached_file','2024/10/automatic-hydraulic-press-machine-500x500-1.jpg'),(3078,2024,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:55:\"2024/10/automatic-hydraulic-press-machine-500x500-1.jpg\";s:8:\"filesize\";i:22688;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:{}}}'),(3079,2023,'_visibility','visible'),(3080,2023,'_stock_status','instock'),(3081,2023,'_thumbnail_id','2024'),(3082,2023,'_wp_page_template','default'),(3083,2023,'total_sales','0'),(3084,2023,'_tax_status','taxable'),(3085,2023,'_tax_class',''),(3086,2023,'_manage_stock','no'),(3087,2023,'_backorders','no'),(3088,2023,'_sold_individually','no'),(3089,2023,'_virtual','no'),(3090,2023,'_downloadable','no'),(3091,2023,'_download_limit','-1'),(3092,2023,'_download_expiry','-1'),(3093,2023,'_stock',NULL),(3094,2023,'_wc_average_rating','0'),(3095,2023,'_wc_review_count','0'),(3096,2023,'_product_version','9.3.3'),(3097,2023,'_product_image_gallery','2024'),(3098,2023,'product_feature','a:1:{i:0;s:0:\"\";}'),(3099,2026,'_wp_attached_file','2024/10/welding-manipulators-and-peripherals_2019_750x500.jpg'),(3100,2026,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:61:\"2024/10/welding-manipulators-and-peripherals_2019_750x500.jpg\";s:8:\"filesize\";i:101972;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:{}}}'),(3101,2025,'_edit_last','1'),(3102,2025,'_visibility','visible'),(3103,2025,'_stock_status','instock'),(3104,2025,'_thumbnail_id','2026'),(3105,2025,'_wp_page_template','default'),(3106,2025,'total_sales','0'),(3107,2025,'_tax_status','taxable'),(3108,2025,'_tax_class',''),(3109,2025,'_manage_stock','no'),(3110,2025,'_backorders','no'),(3111,2025,'_sold_individually','no'),(3112,2025,'_virtual','no'),(3113,2025,'_downloadable','no'),(3114,2025,'_download_limit','-1'),(3115,2025,'_download_expiry','-1'),(3116,2025,'_stock',NULL),(3117,2025,'_wc_average_rating','0'),(3118,2025,'_wc_review_count','0'),(3119,2025,'_product_version','9.3.3'),(3120,2025,'_product_image_gallery','2026'),(3121,2025,'product_feature','a:1:{i:0;s:0:\"\";}'),(3122,2025,'_edit_lock','1729352606:1'),(3123,2027,'_edit_last','1'),(3124,2027,'_edit_lock','1729352646:1'),(3125,2028,'_wp_attached_file','2024/10/csm_smartCheck_inspection_measuring_ZOLLER_e88c2dded7.png'),(3126,2028,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:65:\"2024/10/csm_smartCheck_inspection_measuring_ZOLLER_e88c2dded7.png\";s:8:\"filesize\";i:156640;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:{}}}'),(3127,2027,'_visibility','visible'),(3128,2027,'_stock_status','instock'),(3129,2027,'_thumbnail_id','2028'),(3130,2027,'_wp_page_template','default'),(3131,2027,'total_sales','0'),(3132,2027,'_tax_status','taxable'),(3133,2027,'_tax_class',''),(3134,2027,'_manage_stock','no'),(3135,2027,'_backorders','no'),(3136,2027,'_sold_individually','no'),(3137,2027,'_virtual','no'),(3138,2027,'_downloadable','no'),(3139,2027,'_download_limit','-1'),(3140,2027,'_download_expiry','-1'),(3141,2027,'_stock',NULL),(3142,2027,'_wc_average_rating','0'),(3143,2027,'_wc_review_count','0'),(3144,2027,'_product_version','9.3.3'),(3145,2027,'_product_image_gallery','2028'),(3146,2027,'product_feature','a:1:{i:0;s:0:\"\";}'),(3331,2048,'_wp_attached_file','2024/10/images.jpg'),(3332,2048,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:159;s:4:\"file\";s:18:\"2024/10/images.jpg\";s:8:\"filesize\";i:6970;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:{}}}'),(3340,2051,'_wp_attached_file','2024/10/images-abc.jpg'),(3341,2051,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:275;s:6:\"height\";i:183;s:4:\"file\";s:22:\"2024/10/images-abc.jpg\";s:8:\"filesize\";i:10481;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:{}}}'),(3349,2054,'_wp_attached_file','2024/10/mesta-press-repair.jpg'),(3350,2054,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1138;s:6:\"height\";i:665;s:4:\"file\";s:30:\"2024/10/mesta-press-repair.jpg\";s:8:\"filesize\";i:685005;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:{}}}'),(3356,2057,'_wp_attached_file','2024/10/Robotic-Welding.webp'),(3357,2057,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:700;s:6:\"height\";i:559;s:4:\"file\";s:28:\"2024/10/Robotic-Welding.webp\";s:8:\"filesize\";i:30194;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:{}}}'),(3367,2060,'_wp_attached_file','2024/10/Quality-Inspection-Lab-Photo.jpg'),(3368,2060,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:850;s:6:\"height\";i:850;s:4:\"file\";s:40:\"2024/10/Quality-Inspection-Lab-Photo.jpg\";s:8:\"filesize\";i:79428;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:{}}}'),(3406,2065,'_wp_attached_file','2024/10/9b3767fbcf1145d184ba29c6b29bde2c-free.png'),(3407,2065,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:49:\"2024/10/9b3767fbcf1145d184ba29c6b29bde2c-free.png\";s:8:\"filesize\";i:19007;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:{}}}'),(3423,2067,'_wp_page_template','default'),(3424,2067,'_elementor_edit_mode','builder'),(3425,2067,'_elementor_template_type','wp-page'),(3426,2067,'_elementor_version','3.24.7'),(3427,2067,'_elementor_data','[{\"id\":\"c986484\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"21\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab9e3e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.324,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cc7a78\",\"elType\":\"widget\",\"settings\":{\"title\":\"We satisfy you with innovative ideas and quality work.\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"sub_title\":\"About us\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c42c037\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At vero eos et accusamus et iusto odio digni goikussimos ducimus qui to bonfoeblanditiis praese. Ntium voluum deleniti.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c469998\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We exceed expectations through innovative ideas and exceptional craftsmanship.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11334c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2442360\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d195ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-01.png\",\"id\":612},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b2107e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Time manage\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c366e73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Efficiently organizing tasks to maximize productivity and meet deadlines.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d099fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c4ae19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-02.png\",\"id\":613},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ba24a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fulfill target\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bdc9adf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Achieving goals with precision and commitment, ensuring success.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ba92fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.676,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae4fae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-01.jpg\",\"id\":623}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"0c406f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/signature1.png\",\"id\":633},\"title\":\"Hanley Robin\",\"desc\":\"(Chairman and founder)\",\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to know more about us?\",\"desc\":\"Just download brochure...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-scaled.jpg\",\"id\":663},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"060\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.937},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fe2tech is a professional builder company\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.063},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fe2tech is a leading company in building and manufacturing high-quality mechanical solutions.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"861b1e7\",\"elType\":\"widget\",\"settings\":{\"history\":[{\"title\":\"12th Jan, 2018\",\"content\":\"Establishment of Constrio\",\"_id\":\"d10d5c8\"},{\"title\":\"2nd Feb, 2018\",\"content\":\"Exhibition Planning & Exhibition Management\",\"_id\":\"94b661a\"},{\"title\":\"8th Jul, 2018\",\"content\":\"Registered as a construction company\",\"_id\":\"56108b1\"},{\"title\":\"21st Jul, 2018\",\"content\":\"Growth internationallyfirst half of the 2018s\",\"_id\":\"c00ee7f\"},{\"title\":\"18th Aug, 2018\",\"content\":\"Construction bought the Greek company Delta\",\"_id\":\"49c19e4\"},{\"title\":\"19th Aug, 2018\",\"content\":\"The purpose of the business plan\",\"_id\":\"60f348b\"},{\"title\":\"27th Sep, 2018\",\"content\":\"For lean business plans, operational plans, and strategic plans\",\"_id\":\"4c4e8fe\"},{\"title\":\"2nd Jan, 2019\",\"content\":\"Focus business history on what matters to planning\",\"_id\":\"094e427\"},{\"title\":\"8th Jul, 2019\",\"content\":\"Award winner\",\"_id\":\"cad9be1\"},{\"title\":\"22nd Sep, 2019\",\"content\":\"History to Unite and Inspire People\",\"_id\":\"8219566\"}],\"start_text\":\"Start\",\"end_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_history\"}],\"isInner\":false}],\"isInner\":false}]'),(3428,2067,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:6;s:18:\"title_space_bottom\";i:3;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:4;s:22:\"sub_title_space_bottom\";i:3;s:15:\"sub_title_color\";i:1;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:5;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:7;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}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:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;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:10;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:3;s:13:\"margin_mobile\";i:3;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:3;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:6;s:7:\"padding\";i:6;s:14:\"padding_tablet\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:5:\"image\";i:1;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"ct_cta\";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:\"source_section\";a:4:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:4:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:14:\"slides_to_show\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:16:\"slides_to_scroll\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:6:\"arrows\";i:1;s:8:\"autoplay\";i:1;s:8:\"infinite\";i:1;}}}}}'),(3432,2068,'_wp_page_template','default'),(3433,2068,'_elementor_edit_mode','builder'),(3434,2068,'_elementor_template_type','wp-page'),(3435,2068,'_elementor_version','3.24.7'),(3436,2068,'_elementor_data','[{\"id\":\"c986484\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"21\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab9e3e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.324,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cc7a78\",\"elType\":\"widget\",\"settings\":{\"title\":\"We satisfy you with innovative ideas and quality work.\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"sub_title\":\"About us\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c42c037\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At vero eos et accusamus et iusto odio digni goikussimos ducimus qui to bonfoeblanditiis praese. Ntium voluum deleniti.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c469998\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We exceed expectations through innovative ideas and exceptional craftsmanship.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11334c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2442360\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d195ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-01.png\",\"id\":612},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b2107e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Time manage\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c366e73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Efficiently organizing tasks to maximize productivity and meet deadlines.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d099fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c4ae19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-02.png\",\"id\":613},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ba24a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fulfill target\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bdc9adf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Achieving goals with precision and commitment, ensuring success.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ba92fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.676,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae4fae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-01.jpg\",\"id\":623}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"0c406f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/signature1.png\",\"id\":633},\"title\":\"Hanley Robin\",\"desc\":\"(Chairman and founder)\",\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to know more about us?\",\"desc\":\"Just download brochure...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-scaled.jpg\",\"id\":663},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"060\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.937},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fe2tech is a professional builder company\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.063},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fe2tech is a leading company in building and manufacturing high-quality mechanical solutions.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"861b1e7\",\"elType\":\"widget\",\"settings\":{\"history\":[{\"title\":\"12th Jan, 2018\",\"content\":\"Establishment of Constrio\",\"_id\":\"d10d5c8\"},{\"title\":\"2nd Feb, 2018\",\"content\":\"Exhibition Planning & Exhibition Management\",\"_id\":\"94b661a\"},{\"title\":\"8th Jul, 2018\",\"content\":\"Registered as a construction company\",\"_id\":\"56108b1\"},{\"title\":\"21st Jul, 2018\",\"content\":\"Growth internationallyfirst half of the 2018s\",\"_id\":\"c00ee7f\"},{\"title\":\"18th Aug, 2018\",\"content\":\"Construction bought the Greek company Delta\",\"_id\":\"49c19e4\"},{\"title\":\"19th Aug, 2018\",\"content\":\"The purpose of the business plan\",\"_id\":\"60f348b\"},{\"title\":\"27th Sep, 2018\",\"content\":\"For lean business plans, operational plans, and strategic plans\",\"_id\":\"4c4e8fe\"},{\"title\":\"2nd Jan, 2019\",\"content\":\"Focus business history on what matters to planning\",\"_id\":\"094e427\"},{\"title\":\"8th Jul, 2019\",\"content\":\"Award winner\",\"_id\":\"cad9be1\"},{\"title\":\"22nd Sep, 2019\",\"content\":\"History to Unite and Inspire People\",\"_id\":\"8219566\"}],\"start_text\":\"Start\",\"end_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_history\"}],\"isInner\":false}],\"isInner\":false}]'),(3437,2068,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:6;s:18:\"title_space_bottom\";i:3;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:4;s:22:\"sub_title_space_bottom\";i:3;s:15:\"sub_title_color\";i:1;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:5;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:7;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}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:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;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:10;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:3;s:13:\"margin_mobile\";i:3;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:3;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:6;s:7:\"padding\";i:6;s:14:\"padding_tablet\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:5:\"image\";i:1;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"ct_cta\";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:\"source_section\";a:4:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:4:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:14:\"slides_to_show\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:16:\"slides_to_scroll\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:6:\"arrows\";i:1;s:8:\"autoplay\";i:1;s:8:\"infinite\";i:1;}}}}}'),(3441,2069,'_wp_page_template','default'),(3442,2069,'_elementor_edit_mode','builder'),(3443,2069,'_elementor_template_type','wp-page'),(3444,2069,'_elementor_version','3.24.7'),(3445,2069,'_elementor_data','[{\"id\":\"c986484\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"21\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab9e3e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.324,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cc7a78\",\"elType\":\"widget\",\"settings\":{\"title\":\"We satisfy you with innovative ideas and quality work.\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"sub_title\":\"About us\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c42c037\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At vero eos et accusamus et iusto odio digni goikussimos ducimus qui to bonfoeblanditiis praese. Ntium voluum deleniti.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c469998\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We exceed expectations through innovative ideas and exceptional craftsmanship.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11334c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2442360\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d195ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-01.png\",\"id\":612},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b2107e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Time manage\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c366e73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Efficiently organizing tasks to maximize productivity and meet deadlines.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d099fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c4ae19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-02.png\",\"id\":613},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ba24a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fulfill target\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bdc9adf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Achieving goals with precision and commitment, ensuring success.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ba92fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.676,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae4fae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-01.jpg\",\"id\":623}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"0c406f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/signature1.png\",\"id\":633},\"title\":\"Hanley Robin\",\"desc\":\"(Chairman and founder)\",\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to know more about us?\",\"desc\":\"Just download brochure...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-scaled.jpg\",\"id\":663},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"060\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.937},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fe2tech is a professional builder company\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.063},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fe2tech is a leading company in building and manufacturing high-quality mechanical solutions.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dcb626d\",\"elType\":\"widget\",\"settings\":{\"start_text\":\"Start\",\"history\":[{\"_id\":\"bcc7d3f\",\"title\":\"hihi\",\"content\":\"hihi\"}]},\"elements\":[],\"widgetType\":\"ct_history\"}],\"isInner\":false}],\"isInner\":false}]'),(3446,2069,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:6;s:18:\"title_space_bottom\";i:3;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:4;s:22:\"sub_title_space_bottom\";i:3;s:15:\"sub_title_color\";i:1;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:5;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:7;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}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:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;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:10;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:3;s:13:\"margin_mobile\";i:3;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:3;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:6;s:7:\"padding\";i:6;s:14:\"padding_tablet\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:5:\"image\";i:1;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"ct_cta\";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:\"source_section\";a:4:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:4:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:14:\"slides_to_show\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:16:\"slides_to_scroll\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:6:\"arrows\";i:1;s:8:\"autoplay\";i:1;s:8:\"infinite\";i:1;}}}}}'),(3450,2070,'_wp_page_template','default'),(3451,2070,'_elementor_edit_mode','builder'),(3452,2070,'_elementor_template_type','wp-page'),(3453,2070,'_elementor_version','3.24.7'),(3454,2070,'_elementor_data','[{\"id\":\"c986484\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"21\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab9e3e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.324,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cc7a78\",\"elType\":\"widget\",\"settings\":{\"title\":\"We satisfy you with innovative ideas and quality work.\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"sub_title\":\"About us\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c42c037\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At vero eos et accusamus et iusto odio digni goikussimos ducimus qui to bonfoeblanditiis praese. Ntium voluum deleniti.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c469998\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We exceed expectations through innovative ideas and exceptional craftsmanship.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11334c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2442360\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d195ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-01.png\",\"id\":612},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b2107e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Time manage\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c366e73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Efficiently organizing tasks to maximize productivity and meet deadlines.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d099fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c4ae19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-02.png\",\"id\":613},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ba24a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fulfill target\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bdc9adf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Achieving goals with precision and commitment, ensuring success.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ba92fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.676,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae4fae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-01.jpg\",\"id\":623}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"0c406f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/signature1.png\",\"id\":633},\"title\":\"Hanley Robin\",\"desc\":\"(Chairman and founder)\",\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to know more about us?\",\"desc\":\"Just download brochure...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-scaled.jpg\",\"id\":663},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"060\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.937},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fe2tech is a professional builder company\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.063},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fe2tech is a leading company in building and manufacturing high-quality mechanical solutions.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dcb626d\",\"elType\":\"widget\",\"settings\":{\"start_text\":\"Start\",\"history\":[{\"_id\":\"bcc7d3f\",\"title\":\"hihi\",\"content\":\"hihi\"}]},\"elements\":[],\"widgetType\":\"ct_history\"}],\"isInner\":false}],\"isInner\":false}]'),(3455,2070,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:6;s:18:\"title_space_bottom\";i:3;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:4;s:22:\"sub_title_space_bottom\";i:3;s:15:\"sub_title_color\";i:1;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:5;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:7;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}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:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;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:10;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:3;s:13:\"margin_mobile\";i:3;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:3;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:6;s:7:\"padding\";i:6;s:14:\"padding_tablet\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:5:\"image\";i:1;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"ct_cta\";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:\"source_section\";a:4:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:4:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:14:\"slides_to_show\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:16:\"slides_to_scroll\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:6:\"arrows\";i:1;s:8:\"autoplay\";i:1;s:8:\"infinite\";i:1;}}}}}'),(3457,2071,'_wp_page_template','default'),(3458,2071,'_elementor_edit_mode','builder'),(3459,2071,'_elementor_template_type','wp-page'),(3460,2071,'_elementor_version','3.24.7'),(3461,2071,'_elementor_data','[{\"id\":\"c986484\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"21\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab9e3e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.324,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cc7a78\",\"elType\":\"widget\",\"settings\":{\"title\":\"We satisfy you with innovative ideas and quality work.\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"sub_title\":\"About us\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c42c037\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At vero eos et accusamus et iusto odio digni goikussimos ducimus qui to bonfoeblanditiis praese. Ntium voluum deleniti.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c469998\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We exceed expectations through innovative ideas and exceptional craftsmanship.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11334c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2442360\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d195ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-01.png\",\"id\":612},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b2107e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Time manage\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c366e73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Efficiently organizing tasks to maximize productivity and meet deadlines.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d099fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c4ae19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-02.png\",\"id\":613},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ba24a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fulfill target\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bdc9adf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Achieving goals with precision and commitment, ensuring success.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ba92fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.676,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae4fae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-01.jpg\",\"id\":623}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"0c406f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/signature1.png\",\"id\":633},\"title\":\"Hanley Robin\",\"desc\":\"(Chairman and founder)\",\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to know more about us?\",\"desc\":\"Just download brochure...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-scaled.jpg\",\"id\":663},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"060\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.937},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fe2tech is a professional builder company\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.063},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fe2tech is a leading company in building and manufacturing high-quality mechanical solutions.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dcb626d\",\"elType\":\"widget\",\"settings\":{\"start_text\":\"Start\",\"history\":[{\"_id\":\"bcc7d3f\",\"title\":\"hihi\",\"content\":\"hihi\"}]},\"elements\":[],\"widgetType\":\"ct_history\"}],\"isInner\":false}],\"isInner\":false}]'),(3462,2071,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:6;s:18:\"title_space_bottom\";i:3;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:4;s:22:\"sub_title_space_bottom\";i:3;s:15:\"sub_title_color\";i:1;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:5;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:7;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}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:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;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:10;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:3;s:13:\"margin_mobile\";i:3;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:3;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:6;s:7:\"padding\";i:6;s:14:\"padding_tablet\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:5:\"image\";i:1;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"ct_cta\";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:\"source_section\";a:4:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:4:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:14:\"slides_to_show\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:16:\"slides_to_scroll\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:6:\"arrows\";i:1;s:8:\"autoplay\";i:1;s:8:\"infinite\";i:1;}}}}}'),(3464,2072,'_wp_page_template','default'),(3465,2072,'_elementor_edit_mode','builder'),(3466,2072,'_elementor_template_type','wp-page'),(3467,2072,'_elementor_version','3.24.7'),(3468,2072,'_elementor_data','[{\"id\":\"c986484\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"21\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab9e3e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.324,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cc7a78\",\"elType\":\"widget\",\"settings\":{\"title\":\"We satisfy you with innovative ideas and quality work.\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"sub_title\":\"About us\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c42c037\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At vero eos et accusamus et iusto odio digni goikussimos ducimus qui to bonfoeblanditiis praese. Ntium voluum deleniti.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c469998\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We exceed expectations through innovative ideas and exceptional craftsmanship.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11334c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2442360\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d195ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-01.png\",\"id\":612},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b2107e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Time manage\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c366e73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Efficiently organizing tasks to maximize productivity and meet deadlines.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d099fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c4ae19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-02.png\",\"id\":613},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ba24a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fulfill target\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bdc9adf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Achieving goals with precision and commitment, ensuring success.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ba92fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.676,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae4fae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-01.jpg\",\"id\":623}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"0c406f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/signature1.png\",\"id\":633},\"title\":\"Hanley Robin\",\"desc\":\"(Chairman and founder)\",\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to know more about us?\",\"desc\":\"Just download brochure...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-scaled.jpg\",\"id\":663},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"060\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.937},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fe2tech is a professional builder company\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.063},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fe2tech is a leading company in building and manufacturing high-quality mechanical solutions.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dcb626d\",\"elType\":\"widget\",\"settings\":{\"start_text\":\"Start\",\"history\":[{\"_id\":\"bcc7d3f\",\"title\":\"12th Jan, 2018\",\"content\":\"Establishment of Constrio\"},{\"_id\":\"be648bd\",\"title\":\"2nd Feb, 2018\",\"content\":\"Exhibition Planning & Exhibition Management\"},{\"_id\":\"10bc04d\",\"title\":\"Exhibition Planning & Exhibition Management\",\"content\":\"Registered as a construction companyRegistered as a construction company\"}]},\"elements\":[],\"widgetType\":\"ct_history\"}],\"isInner\":false}],\"isInner\":false}]'),(3469,2072,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:6;s:18:\"title_space_bottom\";i:3;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:4;s:22:\"sub_title_space_bottom\";i:3;s:15:\"sub_title_color\";i:1;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:5;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:7;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}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:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;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:10;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:3;s:13:\"margin_mobile\";i:3;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:3;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:6;s:7:\"padding\";i:6;s:14:\"padding_tablet\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:5:\"image\";i:1;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"ct_cta\";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:\"source_section\";a:4:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:4:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:14:\"slides_to_show\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:16:\"slides_to_scroll\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:6:\"arrows\";i:1;s:8:\"autoplay\";i:1;s:8:\"infinite\";i:1;}}}}}'),(3473,2073,'_wp_page_template','default'),(3474,2073,'_elementor_edit_mode','builder'),(3475,2073,'_elementor_template_type','wp-page'),(3476,2073,'_elementor_version','3.24.7'),(3477,2073,'_elementor_data','[{\"id\":\"c986484\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"21\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab9e3e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.324,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cc7a78\",\"elType\":\"widget\",\"settings\":{\"title\":\"We satisfy you with innovative ideas and quality work.\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"sub_title\":\"About us\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c42c037\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At vero eos et accusamus et iusto odio digni goikussimos ducimus qui to bonfoeblanditiis praese. Ntium voluum deleniti.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c469998\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We exceed expectations through innovative ideas and exceptional craftsmanship.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11334c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2442360\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d195ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-01.png\",\"id\":612},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b2107e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Time manage\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c366e73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Efficiently organizing tasks to maximize productivity and meet deadlines.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d099fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c4ae19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-02.png\",\"id\":613},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ba24a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fulfill target\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bdc9adf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Achieving goals with precision and commitment, ensuring success.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ba92fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.676,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae4fae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-01.jpg\",\"id\":623}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"0c406f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/signature1.png\",\"id\":633},\"title\":\"Hanley Robin\",\"desc\":\"(Chairman and founder)\",\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to know more about us?\",\"desc\":\"Just download brochure...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-scaled.jpg\",\"id\":663},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"060\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.937},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fe2tech is a professional builder company\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.063},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fe2tech is a leading company in building and manufacturing high-quality mechanical solutions.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dcb626d\",\"elType\":\"widget\",\"settings\":{\"start_text\":\"Start\",\"history\":[{\"_id\":\"bcc7d3f\",\"title\":\"12th Jan, 2018\",\"content\":\"Establishment of Constrio\"},{\"_id\":\"be648bd\",\"title\":\"2nd Feb, 2018\",\"content\":\"Exhibition Planning & Exhibition Management\"},{\"_id\":\"10bc04d\",\"title\":\"Exhibition Planning & Exhibition Management\",\"content\":\"Registered as a construction companyRegistered as a construction company\"}]},\"elements\":[],\"widgetType\":\"ct_history\"}],\"isInner\":false}],\"isInner\":false}]'),(3478,2073,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:6;s:18:\"title_space_bottom\";i:3;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:4;s:22:\"sub_title_space_bottom\";i:3;s:15:\"sub_title_color\";i:1;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:5;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:7;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}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:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;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:10;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:3;s:13:\"margin_mobile\";i:3;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:3;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:6;s:7:\"padding\";i:6;s:14:\"padding_tablet\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:5:\"image\";i:1;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"ct_cta\";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:\"source_section\";a:4:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:4:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:14:\"slides_to_show\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:16:\"slides_to_scroll\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:6:\"arrows\";i:1;s:8:\"autoplay\";i:1;s:8:\"infinite\";i:1;}}}}}'),(3482,2074,'_wp_page_template','default'),(3483,2074,'_elementor_edit_mode','builder'),(3484,2074,'_elementor_template_type','wp-page'),(3485,2074,'_elementor_version','3.24.7'),(3486,2074,'_elementor_data','[{\"id\":\"c986484\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"21\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab9e3e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.324,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cc7a78\",\"elType\":\"widget\",\"settings\":{\"title\":\"We satisfy you with innovative ideas and quality work.\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"sub_title\":\"About us\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c42c037\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At vero eos et accusamus et iusto odio digni goikussimos ducimus qui to bonfoeblanditiis praese. Ntium voluum deleniti.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c469998\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We exceed expectations through innovative ideas and exceptional craftsmanship.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11334c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2442360\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d195ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-01.png\",\"id\":612},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b2107e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Time manage\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c366e73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Efficiently organizing tasks to maximize productivity and meet deadlines.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d099fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c4ae19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-02.png\",\"id\":613},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ba24a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fulfill target\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bdc9adf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Achieving goals with precision and commitment, ensuring success.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ba92fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.676,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae4fae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-01.jpg\",\"id\":623}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"0c406f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/signature1.png\",\"id\":633},\"title\":\"Hanley Robin\",\"desc\":\"(Chairman and founder)\",\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to know more about us?\",\"desc\":\"Just download brochure...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-scaled.jpg\",\"id\":663},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"060\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.937},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fe2tech is a professional builder company\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.063},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fe2tech is a leading company in building and manufacturing high-quality mechanical solutions.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dcb626d\",\"elType\":\"widget\",\"settings\":{\"start_text\":\"Start\",\"history\":[{\"_id\":\"bcc7d3f\",\"title\":\"12th Jan, 2018\",\"content\":\"Establishment of Constrio\"},{\"_id\":\"be648bd\",\"title\":\"2nd Feb, 2018\",\"content\":\"Exhibition Planning & Exhibition Management\"},{\"_id\":\"10bc04d\",\"title\":\"Exhibition Planning & Exhibition Management\",\"content\":\"Registered as a construction companyRegistered as a construction company\"}]},\"elements\":[],\"widgetType\":\"ct_history\"}],\"isInner\":false}],\"isInner\":false}]'),(3487,2074,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:6;s:18:\"title_space_bottom\";i:3;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:4;s:22:\"sub_title_space_bottom\";i:3;s:15:\"sub_title_color\";i:1;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:5;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:7;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}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:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;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:10;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:3;s:13:\"margin_mobile\";i:3;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:3;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:6;s:7:\"padding\";i:6;s:14:\"padding_tablet\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:5:\"image\";i:1;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"ct_cta\";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:\"source_section\";a:4:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:4:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:14:\"slides_to_show\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:16:\"slides_to_scroll\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:6:\"arrows\";i:1;s:8:\"autoplay\";i:1;s:8:\"infinite\";i:1;}}}}}'),(3491,2075,'_wp_page_template','default'),(3492,2075,'_elementor_edit_mode','builder'),(3493,2075,'_elementor_template_type','wp-page'),(3494,2075,'_elementor_version','3.24.7'),(3495,2075,'_elementor_data','[{\"id\":\"c986484\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"21\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab9e3e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.324,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cc7a78\",\"elType\":\"widget\",\"settings\":{\"title\":\"We satisfy you with innovative ideas and quality work.\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"sub_title\":\"About us\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c42c037\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At vero eos et accusamus et iusto odio digni goikussimos ducimus qui to bonfoeblanditiis praese. Ntium voluum deleniti.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c469998\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We exceed expectations through innovative ideas and exceptional craftsmanship.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11334c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2442360\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d195ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-01.png\",\"id\":612},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b2107e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Time manage\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c366e73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Efficiently organizing tasks to maximize productivity and meet deadlines.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d099fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c4ae19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-02.png\",\"id\":613},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ba24a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fulfill target\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bdc9adf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Achieving goals with precision and commitment, ensuring success.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ba92fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.676,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae4fae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-01.jpg\",\"id\":623}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"0c406f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/signature1.png\",\"id\":633},\"title\":\"Hanley Robin\",\"desc\":\"(Chairman and founder)\",\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to know more about us?\",\"desc\":\"Just download brochure...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-scaled.jpg\",\"id\":663},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"060\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.937},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fe2tech is a professional builder company\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.063},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fe2tech is a leading company in building and manufacturing high-quality mechanical solutions.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3496,2075,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:6;s:18:\"title_space_bottom\";i:3;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:4;s:22:\"sub_title_space_bottom\";i:3;s:15:\"sub_title_color\";i:1;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:5;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:7;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}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:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;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:10;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:3;s:13:\"margin_mobile\";i:3;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:3;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:6;s:7:\"padding\";i:6;s:14:\"padding_tablet\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:5:\"image\";i:1;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"ct_cta\";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:\"source_section\";a:4:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:4:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:14:\"slides_to_show\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:16:\"slides_to_scroll\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:6:\"arrows\";i:1;s:8:\"autoplay\";i:1;s:8:\"infinite\";i:1;}}}}}'),(3502,2076,'_wp_page_template','default'),(3503,2076,'_elementor_edit_mode','builder'),(3504,2076,'_elementor_template_type','wp-page'),(3505,2076,'_elementor_version','3.24.7'),(3506,2076,'_elementor_data','[{\"id\":\"c986484\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"21\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab9e3e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.324,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cc7a78\",\"elType\":\"widget\",\"settings\":{\"title\":\"We satisfy you with innovative ideas and quality work.\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"sub_title\":\"About us\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c42c037\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At vero eos et accusamus et iusto odio digni goikussimos ducimus qui to bonfoeblanditiis praese. Ntium voluum deleniti.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c469998\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We exceed expectations through innovative ideas and exceptional craftsmanship.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11334c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2442360\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d195ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-01.png\",\"id\":612},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b2107e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Time manage\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c366e73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Efficiently organizing tasks to maximize productivity and meet deadlines.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d099fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c4ae19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-02.png\",\"id\":613},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ba24a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fulfill target\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bdc9adf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Achieving goals with precision and commitment, ensuring success.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ba92fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.676,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae4fae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-01.jpg\",\"id\":623}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"0c406f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/signature1.png\",\"id\":633},\"title\":\"Hanley Robin\",\"desc\":\"(Chairman and founder)\",\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to know more about us?\",\"desc\":\"Just download brochure...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-scaled.jpg\",\"id\":663},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"060\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.937},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fe2tech is a professional builder company\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.063},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fe2tech is a leading company in building and manufacturing high-quality mechanical solutions.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3507,2076,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:6;s:18:\"title_space_bottom\";i:3;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:4;s:22:\"sub_title_space_bottom\";i:3;s:15:\"sub_title_color\";i:1;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:5;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:7;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}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:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;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:10;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:3;s:13:\"margin_mobile\";i:3;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:3;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:6;s:7:\"padding\";i:6;s:14:\"padding_tablet\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:5:\"image\";i:1;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"ct_cta\";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:\"source_section\";a:4:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:4:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:14:\"slides_to_show\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:16:\"slides_to_scroll\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:6:\"arrows\";i:1;s:8:\"autoplay\";i:1;s:8:\"infinite\";i:1;}}}}}'),(3511,2077,'_wp_page_template','default'),(3512,2077,'_elementor_edit_mode','builder'),(3513,2077,'_elementor_template_type','wp-page'),(3514,2077,'_elementor_version','3.24.7'),(3515,2077,'_elementor_data','[{\"id\":\"c986484\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"21\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab9e3e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.324,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cc7a78\",\"elType\":\"widget\",\"settings\":{\"title\":\"We satisfy you with innovative ideas and quality work.\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"sub_title\":\"About us\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c42c037\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At vero eos et accusamus et iusto odio digni goikussimos ducimus qui to bonfoeblanditiis praese. Ntium voluum deleniti.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c469998\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We exceed expectations through innovative ideas and exceptional craftsmanship.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11334c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2442360\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d195ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-01.png\",\"id\":612},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b2107e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Time manage\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c366e73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Efficiently organizing tasks to maximize productivity and meet deadlines.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d099fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c4ae19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-02.png\",\"id\":613},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ba24a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fulfill target\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bdc9adf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Achieving goals with precision and commitment, ensuring success.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ba92fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.676,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae4fae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-01.jpg\",\"id\":623}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"0c406f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/signature1.png\",\"id\":633},\"title\":\"Hanley Robin\",\"desc\":\"(Chairman and founder)\",\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to know more about us?\",\"desc\":\"Just download brochure...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-scaled.jpg\",\"id\":663},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"060\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.937},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fe2tech is a professional builder company\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.063},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fe2tech is a leading company in building and manufacturing high-quality mechanical solutions.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3516,2077,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:6;s:18:\"title_space_bottom\";i:3;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:4;s:22:\"sub_title_space_bottom\";i:3;s:15:\"sub_title_color\";i:1;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:5;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:7;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}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:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;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:10;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:3;s:13:\"margin_mobile\";i:3;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:3;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:6;s:7:\"padding\";i:6;s:14:\"padding_tablet\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:5:\"image\";i:1;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"ct_cta\";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:\"source_section\";a:4:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:4:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:14:\"slides_to_show\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:16:\"slides_to_scroll\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:6:\"arrows\";i:1;s:8:\"autoplay\";i:1;s:8:\"infinite\";i:1;}}}}}'),(3520,2078,'_wp_page_template','default'),(3521,2078,'_elementor_edit_mode','builder'),(3522,2078,'_elementor_template_type','wp-page'),(3523,2078,'_elementor_version','3.24.7'),(3524,2078,'_elementor_data','[{\"id\":\"c986484\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"21\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab9e3e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.324,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cc7a78\",\"elType\":\"widget\",\"settings\":{\"title\":\"We satisfy you with innovative ideas and quality work.\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"sub_title\":\"About us\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c42c037\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At vero eos et accusamus et iusto odio digni goikussimos ducimus qui to bonfoeblanditiis praese. Ntium voluum deleniti.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c469998\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We exceed expectations through innovative ideas and exceptional craftsmanship.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11334c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2442360\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d195ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-01.png\",\"id\":612},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b2107e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Time manage\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c366e73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Efficiently organizing tasks to maximize productivity and meet deadlines.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d099fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c4ae19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-02.png\",\"id\":613},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ba24a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fulfill target\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bdc9adf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Achieving goals with precision and commitment, ensuring success.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ba92fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.676,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae4fae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-01.jpg\",\"id\":623}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"0c406f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/signature1.png\",\"id\":633},\"title\":\"Hanley Robin\",\"desc\":\"(Chairman and founder)\",\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to know more about us?\",\"desc\":\"Just download brochure...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-scaled.jpg\",\"id\":663},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"060\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.937},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fe2tech is a professional builder company\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.063},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fe2tech is a leading company in building and manufacturing high-quality mechanical solutions.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"15e2788\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"d071b57\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"start_text\":\"Start\",\"history\":[{\"_id\":\"ecf1328\",\"title\":\"hihi\",\"content\":\"hihi\"}]},\"elements\":[],\"widgetType\":\"ct_history\"}],\"isInner\":false}]'),(3525,2078,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:6;s:18:\"title_space_bottom\";i:3;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:4;s:22:\"sub_title_space_bottom\";i:3;s:15:\"sub_title_color\";i:1;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:5;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:7;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}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:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;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:10;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:3;s:13:\"margin_mobile\";i:3;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:3;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:6;s:7:\"padding\";i:6;s:14:\"padding_tablet\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:5:\"image\";i:1;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"ct_cta\";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:\"source_section\";a:4:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:4:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:14:\"slides_to_show\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:16:\"slides_to_scroll\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:6:\"arrows\";i:1;s:8:\"autoplay\";i:1;s:8:\"infinite\";i:1;}}}}}'),(3553,2080,'_wp_page_template','default'),(3554,2080,'_elementor_edit_mode','builder'),(3555,2080,'_elementor_template_type','wp-page'),(3556,2080,'_elementor_version','3.24.7'),(3557,2080,'_elementor_data','[{\"id\":\"c986484\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"21\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab9e3e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.324,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cc7a78\",\"elType\":\"widget\",\"settings\":{\"title\":\"We satisfy you with innovative ideas and quality work.\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"sub_title\":\"About us\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c42c037\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At vero eos et accusamus et iusto odio digni goikussimos ducimus qui to bonfoeblanditiis praese. Ntium voluum deleniti.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c469998\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We exceed expectations through innovative ideas and exceptional craftsmanship.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11334c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2442360\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d195ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-01.png\",\"id\":612},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b2107e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Time manage\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c366e73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Efficiently organizing tasks to maximize productivity and meet deadlines.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d099fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c4ae19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-02.png\",\"id\":613},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ba24a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fulfill target\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bdc9adf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Achieving goals with precision and commitment, ensuring success.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ba92fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.676,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae4fae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-01.jpg\",\"id\":623}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"0c406f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/signature1.png\",\"id\":633},\"title\":\"Hanley Robin\",\"desc\":\"(Chairman and founder)\",\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to know more about us?\",\"desc\":\"Just download brochure...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-scaled.jpg\",\"id\":663},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"060\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.937},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fe2tech is a professional builder company\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.063},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fe2tech is a leading company in building and manufacturing high-quality mechanical solutions.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"15e2788\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"d071b57\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"start_text\":\"Start\",\"history\":[{\"_id\":\"ecf1328\",\"title\":\"hihi\",\"content\":\"hihi\"}]},\"elements\":[],\"widgetType\":\"ct_history\"}],\"isInner\":false}]'),(3558,2080,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:6;s:18:\"title_space_bottom\";i:3;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:4;s:22:\"sub_title_space_bottom\";i:3;s:15:\"sub_title_color\";i:1;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:5;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:7;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}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:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;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:10;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:3;s:13:\"margin_mobile\";i:3;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:3;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:6;s:7:\"padding\";i:6;s:14:\"padding_tablet\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:5:\"image\";i:1;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"ct_cta\";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:\"source_section\";a:4:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:4:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:14:\"slides_to_show\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:16:\"slides_to_scroll\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:6:\"arrows\";i:1;s:8:\"autoplay\";i:1;s:8:\"infinite\";i:1;}}}}}'),(3559,2081,'_wp_page_template','default'),(3560,2081,'_elementor_edit_mode','builder'),(3561,2081,'_elementor_template_type','wp-page'),(3562,2081,'_elementor_version','3.24.7'),(3563,2081,'_elementor_data','[{\"id\":\"c986484\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"21\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab9e3e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.324,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cc7a78\",\"elType\":\"widget\",\"settings\":{\"title\":\"We satisfy you with innovative ideas and quality work.\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"sub_title\":\"About us\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c42c037\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At vero eos et accusamus et iusto odio digni goikussimos ducimus qui to bonfoeblanditiis praese. Ntium voluum deleniti.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c469998\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We exceed expectations through innovative ideas and exceptional craftsmanship.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11334c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2442360\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d195ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-01.png\",\"id\":612},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b2107e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Time manage\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c366e73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Efficiently organizing tasks to maximize productivity and meet deadlines.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d099fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c4ae19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-02.png\",\"id\":613},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ba24a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fulfill target\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bdc9adf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Achieving goals with precision and commitment, ensuring success.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ba92fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.676,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae4fae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-01.jpg\",\"id\":623}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"0c406f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/signature1.png\",\"id\":633},\"title\":\"Hanley Robin\",\"desc\":\"(Chairman and founder)\",\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to know more about us?\",\"desc\":\"Just download brochure...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-scaled.jpg\",\"id\":663},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"060\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.937},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fe2tech is a professional builder company\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.063},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fe2tech is a leading company in building and manufacturing high-quality mechanical solutions.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"15e2788\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"d071b57\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"start_text\":\"Start\",\"history\":[{\"_id\":\"ecf1328\",\"title\":\"hihi\",\"content\":\"hihi\"}]},\"elements\":[],\"widgetType\":\"ct_history\"}],\"isInner\":false}]'),(3564,2081,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:6;s:18:\"title_space_bottom\";i:3;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:4;s:22:\"sub_title_space_bottom\";i:3;s:15:\"sub_title_color\";i:1;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:5;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:7;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}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:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;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:10;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:3;s:13:\"margin_mobile\";i:3;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:3;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:6;s:7:\"padding\";i:6;s:14:\"padding_tablet\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:5:\"image\";i:1;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"ct_cta\";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:\"source_section\";a:4:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:4:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:14:\"slides_to_show\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:16:\"slides_to_scroll\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:6:\"arrows\";i:1;s:8:\"autoplay\";i:1;s:8:\"infinite\";i:1;}}}}}'),(3565,2082,'_wp_page_template','default'),(3566,2082,'_elementor_edit_mode','builder'),(3567,2082,'_elementor_template_type','wp-page'),(3568,2082,'_elementor_version','3.24.7'),(3569,2082,'_elementor_data','[{\"id\":\"c986484\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"21\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab9e3e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.324,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cc7a78\",\"elType\":\"widget\",\"settings\":{\"title\":\"We satisfy you with innovative ideas and quality work.\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"sub_title\":\"About us\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c42c037\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At vero eos et accusamus et iusto odio digni goikussimos ducimus qui to bonfoeblanditiis praese. Ntium voluum deleniti.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c469998\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We exceed expectations through innovative ideas and exceptional craftsmanship.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11334c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2442360\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d195ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-01.png\",\"id\":612},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b2107e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Time manage\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c366e73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Efficiently organizing tasks to maximize productivity and meet deadlines.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d099fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c4ae19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-02.png\",\"id\":613},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ba24a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fulfill target\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bdc9adf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Achieving goals with precision and commitment, ensuring success.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ba92fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.676,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae4fae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-01.jpg\",\"id\":623}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"0c406f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/signature1.png\",\"id\":633},\"title\":\"Hanley Robin\",\"desc\":\"(Chairman and founder)\",\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to know more about us?\",\"desc\":\"Just download brochure...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-scaled.jpg\",\"id\":663},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"060\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.937},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fe2tech is a professional builder company\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.063},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fe2tech is a leading company in building and manufacturing high-quality mechanical solutions.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e9a883e\",\"elType\":\"widget\",\"settings\":{\"start_text\":\"Start\",\"end_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9b3767fbcf1145d184ba29c6b29bde2c-free.png\",\"id\":2065,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"history\":[{\"_id\":\"7d82651\",\"title\":\"hihi\",\"content\":\"hihi\"}]},\"elements\":[],\"widgetType\":\"ct_history\"}],\"isInner\":false}],\"isInner\":false}]'),(3570,2082,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:6;s:18:\"title_space_bottom\";i:3;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:4;s:22:\"sub_title_space_bottom\";i:3;s:15:\"sub_title_color\";i:1;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:5;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:7;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}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:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;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:10;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:3;s:13:\"margin_mobile\";i:3;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:3;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:6;s:7:\"padding\";i:6;s:14:\"padding_tablet\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:5:\"image\";i:1;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"ct_cta\";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:\"source_section\";a:4:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:4:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:14:\"slides_to_show\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:16:\"slides_to_scroll\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:6:\"arrows\";i:1;s:8:\"autoplay\";i:1;s:8:\"infinite\";i:1;}}}}}'),(3574,2083,'_wp_page_template','default'),(3575,2083,'_elementor_edit_mode','builder'),(3576,2083,'_elementor_template_type','wp-page'),(3577,2083,'_elementor_version','3.24.7'),(3578,2083,'_elementor_data','[{\"id\":\"c986484\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"21\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab9e3e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.324,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cc7a78\",\"elType\":\"widget\",\"settings\":{\"title\":\"We satisfy you with innovative ideas and quality work.\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"sub_title\":\"About us\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c42c037\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At vero eos et accusamus et iusto odio digni goikussimos ducimus qui to bonfoeblanditiis praese. Ntium voluum deleniti.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c469998\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We exceed expectations through innovative ideas and exceptional craftsmanship.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11334c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2442360\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d195ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-01.png\",\"id\":612},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b2107e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Time manage\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c366e73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Efficiently organizing tasks to maximize productivity and meet deadlines.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d099fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c4ae19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-02.png\",\"id\":613},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ba24a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fulfill target\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bdc9adf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Achieving goals with precision and commitment, ensuring success.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ba92fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.676,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae4fae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-01.jpg\",\"id\":623}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"0c406f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/signature1.png\",\"id\":633},\"title\":\"Hanley Robin\",\"desc\":\"(Chairman and founder)\",\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to know more about us?\",\"desc\":\"Just download brochure...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-scaled.jpg\",\"id\":663},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"060\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.937},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fe2tech is a professional builder company\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.063},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fe2tech is a leading company in building and manufacturing high-quality mechanical solutions.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e9a883e\",\"elType\":\"widget\",\"settings\":{\"start_text\":\"Start\",\"end_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9b3767fbcf1145d184ba29c6b29bde2c-free.png\",\"id\":2065,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"history\":[{\"_id\":\"7d82651\",\"title\":\"hihi\",\"content\":\"hihi\"}]},\"elements\":[],\"widgetType\":\"ct_history\"}],\"isInner\":false}],\"isInner\":false}]'),(3579,2083,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:6;s:18:\"title_space_bottom\";i:3;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:4;s:22:\"sub_title_space_bottom\";i:3;s:15:\"sub_title_color\";i:1;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:5;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:7;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}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:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;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:10;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:3;s:13:\"margin_mobile\";i:3;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:3;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:6;s:7:\"padding\";i:6;s:14:\"padding_tablet\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:5:\"image\";i:1;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"ct_cta\";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:\"source_section\";a:4:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:4:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:14:\"slides_to_show\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:16:\"slides_to_scroll\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:6:\"arrows\";i:1;s:8:\"autoplay\";i:1;s:8:\"infinite\";i:1;}}}}}'),(3583,2084,'_wp_page_template','default'),(3584,2084,'_elementor_edit_mode','builder'),(3585,2084,'_elementor_template_type','wp-page'),(3586,2084,'_elementor_version','3.24.7'),(3587,2084,'_elementor_data','[{\"id\":\"c986484\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"21\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab9e3e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.324,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cc7a78\",\"elType\":\"widget\",\"settings\":{\"title\":\"We satisfy you with innovative ideas and quality work.\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"sub_title\":\"About us\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c42c037\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At vero eos et accusamus et iusto odio digni goikussimos ducimus qui to bonfoeblanditiis praese. Ntium voluum deleniti.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c469998\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We exceed expectations through innovative ideas and exceptional craftsmanship.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11334c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2442360\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d195ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-01.png\",\"id\":612},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b2107e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Time manage\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c366e73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Efficiently organizing tasks to maximize productivity and meet deadlines.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d099fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c4ae19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-02.png\",\"id\":613},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ba24a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fulfill target\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bdc9adf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Achieving goals with precision and commitment, ensuring success.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ba92fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.676,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae4fae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-01.jpg\",\"id\":623}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"0c406f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/signature1.png\",\"id\":633},\"title\":\"Hanley Robin\",\"desc\":\"(Chairman and founder)\",\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to know more about us?\",\"desc\":\"Just download brochure...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-scaled.jpg\",\"id\":663},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"060\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.937},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fe2tech is a professional builder company\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.063},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fe2tech is a leading company in building and manufacturing high-quality mechanical solutions.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e9a883e\",\"elType\":\"widget\",\"settings\":{\"start_text\":\"Start\",\"end_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9b3767fbcf1145d184ba29c6b29bde2c-free.png\",\"id\":2065,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"history\":[{\"_id\":\"7d82651\",\"title\":\"hihi\",\"content\":\"hihi\"}]},\"elements\":[],\"widgetType\":\"ct_history\"}],\"isInner\":false}],\"isInner\":false}]'),(3588,2084,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:6;s:18:\"title_space_bottom\";i:3;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:4;s:22:\"sub_title_space_bottom\";i:3;s:15:\"sub_title_color\";i:1;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:5;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:7;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}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:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;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:10;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:3;s:13:\"margin_mobile\";i:3;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:3;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:6;s:7:\"padding\";i:6;s:14:\"padding_tablet\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:5:\"image\";i:1;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"ct_cta\";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:\"source_section\";a:4:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:4:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:14:\"slides_to_show\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:16:\"slides_to_scroll\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:6:\"arrows\";i:1;s:8:\"autoplay\";i:1;s:8:\"infinite\";i:1;}}}}}'),(3592,2085,'_wp_page_template','default'),(3593,2085,'_elementor_edit_mode','builder'),(3594,2085,'_elementor_template_type','wp-page'),(3595,2085,'_elementor_version','3.24.7'),(3596,2085,'_elementor_data','[{\"id\":\"c986484\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"21\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab9e3e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.324,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cc7a78\",\"elType\":\"widget\",\"settings\":{\"title\":\"We satisfy you with innovative ideas and quality work.\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"sub_title\":\"About us\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c42c037\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At vero eos et accusamus et iusto odio digni goikussimos ducimus qui to bonfoeblanditiis praese. Ntium voluum deleniti.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c469998\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We exceed expectations through innovative ideas and exceptional craftsmanship.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11334c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2442360\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d195ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-01.png\",\"id\":612},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b2107e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Time manage\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c366e73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Efficiently organizing tasks to maximize productivity and meet deadlines.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d099fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c4ae19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-02.png\",\"id\":613},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ba24a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fulfill target\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bdc9adf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Achieving goals with precision and commitment, ensuring success.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ba92fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.676,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae4fae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-01.jpg\",\"id\":623}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"0c406f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/signature1.png\",\"id\":633},\"title\":\"Hanley Robin\",\"desc\":\"(Chairman and founder)\",\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to know more about us?\",\"desc\":\"Just download brochure...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-scaled.jpg\",\"id\":663},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"060\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.937},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fe2tech is a professional builder company\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.063},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fe2tech is a leading company in building and manufacturing high-quality mechanical solutions.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e9a883e\",\"elType\":\"widget\",\"settings\":{\"start_text\":\"Start\",\"end_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"history\":[{\"_id\":\"7d82651\",\"title\":\"hihi\",\"content\":\"hihi\"}]},\"elements\":[],\"widgetType\":\"ct_history\"}],\"isInner\":false}],\"isInner\":false}]'),(3597,2085,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:6;s:18:\"title_space_bottom\";i:3;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:4;s:22:\"sub_title_space_bottom\";i:3;s:15:\"sub_title_color\";i:1;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:5;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:7;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}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:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;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:10;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:3;s:13:\"margin_mobile\";i:3;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:3;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:6;s:7:\"padding\";i:6;s:14:\"padding_tablet\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:5:\"image\";i:1;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"ct_cta\";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:\"source_section\";a:4:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:4:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:14:\"slides_to_show\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:16:\"slides_to_scroll\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:6:\"arrows\";i:1;s:8:\"autoplay\";i:1;s:8:\"infinite\";i:1;}}}}}'),(3628,2086,'_wp_page_template','default'),(3629,2086,'_elementor_edit_mode','builder'),(3630,2086,'_elementor_template_type','wp-page'),(3631,2086,'_elementor_version','3.24.7'),(3632,2086,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-01.jpg\",\"id\":351},\"title\":\"Ronald Dumple\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"e562253\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-02.jpg\",\"id\":352},\"title\":\"James Smith\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"5a8d6da\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-03.jpg\",\"id\":353},\"title\":\"Charles F Johnson\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"994e0c5\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-04.jpg\",\"id\":354},\"title\":\"Jodi C Johnson\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"b254836\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-05.jpg\",\"id\":355},\"title\":\"Debra L Smith\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"2da9619\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-06.jpg\",\"id\":356},\"title\":\"Mrditch\\u00a0\\u00a0Hohan\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"18991d8\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false}]'),(3633,2086,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(3637,2087,'_wp_page_template','default'),(3638,2087,'_elementor_edit_mode','builder'),(3639,2087,'_elementor_template_type','wp-page'),(3640,2087,'_elementor_version','3.24.7'),(3641,2087,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-01.jpg\",\"id\":351},\"title\":\"Ronald Dumple\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"e562253\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-02.jpg\",\"id\":352},\"title\":\"James Smith\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"5a8d6da\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-03.jpg\",\"id\":353},\"title\":\"Charles F Johnson\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"994e0c5\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-04.jpg\",\"id\":354},\"title\":\"Jodi C Johnson\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"b254836\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-05.jpg\",\"id\":355},\"title\":\"Debra L Smith\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"2da9619\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-06.jpg\",\"id\":356},\"title\":\"Mrditch\\u00a0\\u00a0Hohan\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"18991d8\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false}]'),(3642,2087,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(3646,2088,'_wp_page_template','default'),(3647,2088,'_elementor_edit_mode','builder'),(3648,2088,'_elementor_template_type','wp-page'),(3649,2088,'_elementor_version','3.24.7'),(3650,2088,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-01.jpg\",\"id\":351},\"title\":\"Ronald Dumple\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"e562253\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-02.jpg\",\"id\":352},\"title\":\"James Smith\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"5a8d6da\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-03.jpg\",\"id\":353},\"title\":\"Charles F Johnson\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"994e0c5\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-04.jpg\",\"id\":354},\"title\":\"Jodi C Johnson\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"b254836\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-05.jpg\",\"id\":355},\"title\":\"Debra L Smith\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"2da9619\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-06.jpg\",\"id\":356},\"title\":\"Mrditch\\u00a0\\u00a0Hohan\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"18991d8\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions as your trusted partner.\",\"sub_title\":\"Our Partners\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As your trusted partner, we deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"a49fbc4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"33930a5\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"aeee6c2\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"8fc7373\"}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(3651,2088,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(3657,2089,'_wp_page_template','default'),(3658,2089,'_elementor_edit_mode','builder'),(3659,2089,'_elementor_template_type','wp-page'),(3660,2089,'_elementor_version','3.24.7'),(3661,2089,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-01.jpg\",\"id\":351},\"title\":\"Ronald Dumple\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"e562253\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-02.jpg\",\"id\":352},\"title\":\"James Smith\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"5a8d6da\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-03.jpg\",\"id\":353},\"title\":\"Charles F Johnson\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"994e0c5\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-04.jpg\",\"id\":354},\"title\":\"Jodi C Johnson\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"b254836\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-05.jpg\",\"id\":355},\"title\":\"Debra L Smith\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"2da9619\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-06.jpg\",\"id\":356},\"title\":\"Mrditch\\u00a0\\u00a0Hohan\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"18991d8\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions as your trusted partner.\",\"sub_title\":\"Our Partners\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As your trusted partner, we deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"a49fbc4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"33930a5\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"aeee6c2\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"8fc7373\"}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(3662,2089,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(3666,1967,'_wp_old_date','2024-10-19'),(3667,1960,'_wp_old_date','2024-10-19'),(3677,2093,'_wp_page_template','default'),(3678,2093,'_elementor_edit_mode','builder'),(3679,2093,'_elementor_template_type','wp-post'),(3680,2093,'_elementor_version','3.24.7'),(3681,2093,'_elementor_data','[{\"id\":\"7225c724\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#00165a\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer.png\",\"id\":87},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"109cef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.3},\"elements\":[{\"id\":\"6667e1a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/logo-footer-02.png\",\"id\":806},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae6ecf2\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Office: 43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}},{\"content\":\"Factory: 176\\/9 Nguy\\u1ec5n Th\\u1ecb T\\u01b0\\u01a1i, KP T\\u00e2n Ph\\u01b0\\u1edbc, P. T\\u00e2n B\\u00ecnh, D\\u0129 An city, B\\u00ecnh D\\u01b0\\u01a1ng\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"be1a6dd\"},{\"content\":\"0968860386\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"6dd7194a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Open Hours:\",\"text_color\":\"#f5b011\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"ct-text-gradient\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1e0523b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Mon - Sat: 8 am - 5 pm,<br\\/>\\nSunday: CLOSED\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"712a43be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.664,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e4e262b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Menu\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6e682e5b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"39\",\"style\":\"tow-col-light\",\"link_color_hover\":\"#f5ae0f\",\"line_color_hover\":\"#f5ae0f\",\"menu_align\":\"left\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"}],\"isInner\":false},{\"id\":\"1ab76a16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7},\"elements\":[{\"id\":\"37a5e636\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"aa15610\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#011143\",\"padding\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"040\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2487ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40d8f8a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sign up for alerts, our latest blogs, thoughts, and insights.\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d21d208\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"27383ab2\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"d40f6fc\",\"ct_icon\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5da1c22\",\"ct_icon\":{\"value\":\"fab fa-behance\",\"library\":\"fa-brands\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24b98c01\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"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},\"gap\":\"extended\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a6c11e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53be024\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5990603\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"7f874a5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\u00a9 All rights reserved by <a class=\\\"color-preset2\\\" href=\\\"https:\\/\\/themeforest.net\\/user\\/case-themes\\/portfolio\\\" target=\\\"_blank\\\" rel=\\\"nofollow noopener\\\">CaseThemes<\\/a>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_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},\"_css_classes\":\"ct-copyright\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"ab39798\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"12e6673\",\"elType\":\"widget\",\"settings\":{\"menu\":\"40\",\"style\":\"menu-inline\",\"menu_align\":\"right\",\"menu_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3682,2093,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:2:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:1;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:16:\"link_color_hover\";i:1;s:16:\"line_color_hover\";i:1;s:10:\"menu_align\";i:1;s:17:\"menu_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:13:\"ct_newsletter\";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:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";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:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:1;}}}}}'),(3686,2094,'_wp_page_template','default'),(3687,2094,'_elementor_edit_mode','builder'),(3688,2094,'_elementor_template_type','wp-post'),(3689,2094,'_elementor_version','3.24.7'),(3690,2094,'_elementor_data','[{\"id\":\"7225c724\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#00165a\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer.png\",\"id\":87},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"109cef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.3},\"elements\":[{\"id\":\"6667e1a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9b3767fbcf1145d184ba29c6b29bde2c-free.png\",\"id\":2065,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae6ecf2\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Office: 43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}},{\"content\":\"Factory: 176\\/9 Nguy\\u1ec5n Th\\u1ecb T\\u01b0\\u01a1i, KP T\\u00e2n Ph\\u01b0\\u1edbc, P. T\\u00e2n B\\u00ecnh, D\\u0129 An city, B\\u00ecnh D\\u01b0\\u01a1ng\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"be1a6dd\"},{\"content\":\"0968860386\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"6dd7194a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Open Hours:\",\"text_color\":\"#f5b011\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"ct-text-gradient\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1e0523b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Mon - Sat: 8 am - 5 pm,<br\\/>\\nSunday: CLOSED\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"712a43be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.664,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e4e262b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Menu\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6e682e5b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"39\",\"style\":\"tow-col-light\",\"link_color_hover\":\"#f5ae0f\",\"line_color_hover\":\"#f5ae0f\",\"menu_align\":\"left\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"}],\"isInner\":false},{\"id\":\"1ab76a16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7},\"elements\":[{\"id\":\"37a5e636\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"aa15610\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#011143\",\"padding\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"040\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2487ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40d8f8a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sign up for alerts, our latest blogs, thoughts, and insights.\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d21d208\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"27383ab2\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"d40f6fc\",\"ct_icon\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5da1c22\",\"ct_icon\":{\"value\":\"fab fa-behance\",\"library\":\"fa-brands\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24b98c01\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"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},\"gap\":\"extended\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a6c11e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53be024\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5990603\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"7f874a5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\u00a9 All rights reserved by <a class=\\\"color-preset2\\\" href=\\\"https:\\/\\/themeforest.net\\/user\\/case-themes\\/portfolio\\\" target=\\\"_blank\\\" rel=\\\"nofollow noopener\\\">CaseThemes<\\/a>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_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},\"_css_classes\":\"ct-copyright\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"ab39798\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"12e6673\",\"elType\":\"widget\",\"settings\":{\"menu\":\"40\",\"style\":\"menu-inline\",\"menu_align\":\"right\",\"menu_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3691,2094,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:2:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:1;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:16:\"link_color_hover\";i:1;s:16:\"line_color_hover\";i:1;s:10:\"menu_align\";i:1;s:17:\"menu_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:13:\"ct_newsletter\";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:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";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:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:1;}}}}}'),(3693,2095,'_wp_page_template','default'),(3694,2095,'_elementor_edit_mode','builder'),(3695,2095,'_elementor_template_type','wp-post'),(3696,2095,'_elementor_version','3.24.7'),(3697,2095,'_elementor_data','[{\"id\":\"7225c724\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#00165a\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer.png\",\"id\":87},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"109cef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.3},\"elements\":[{\"id\":\"6667e1a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9b3767fbcf1145d184ba29c6b29bde2c-free.png\",\"id\":2065,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae6ecf2\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Office: 43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}},{\"content\":\"Factory: 176\\/9 Nguy\\u1ec5n Th\\u1ecb T\\u01b0\\u01a1i, KP T\\u00e2n Ph\\u01b0\\u1edbc, P. T\\u00e2n B\\u00ecnh, D\\u0129 An city, B\\u00ecnh D\\u01b0\\u01a1ng\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"be1a6dd\"},{\"content\":\"0968860386\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"6dd7194a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Open Hours:\",\"text_color\":\"#f5b011\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"ct-text-gradient\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1e0523b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Mon - Sat: 8 am - 5 pm,<br\\/>\\nSunday: CLOSED\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"712a43be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.664,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e4e262b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Menu\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6e682e5b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"39\",\"style\":\"tow-col-light\",\"link_color_hover\":\"#f5ae0f\",\"line_color_hover\":\"#f5ae0f\",\"menu_align\":\"left\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"}],\"isInner\":false},{\"id\":\"1ab76a16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7},\"elements\":[{\"id\":\"37a5e636\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"aa15610\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#011143\",\"padding\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"040\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2487ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40d8f8a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sign up for alerts, our latest blogs, thoughts, and insights.\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d21d208\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"27383ab2\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin-box\",\"library\":\"material\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24b98c01\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"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},\"gap\":\"extended\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a6c11e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53be024\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5990603\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"7f874a5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\u00a9 All rights reserved by <a class=\\\"color-preset2\\\" href=\\\"https:\\/\\/themeforest.net\\/user\\/case-themes\\/portfolio\\\" target=\\\"_blank\\\" rel=\\\"nofollow noopener\\\">CaseThemes<\\/a>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_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},\"_css_classes\":\"ct-copyright\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"ab39798\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"12e6673\",\"elType\":\"widget\",\"settings\":{\"menu\":\"40\",\"style\":\"menu-inline\",\"menu_align\":\"right\",\"menu_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3698,2095,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:2:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:1;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:16:\"link_color_hover\";i:1;s:16:\"line_color_hover\";i:1;s:10:\"menu_align\";i:1;s:17:\"menu_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:13:\"ct_newsletter\";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:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";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:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:1;}}}}}'),(3702,2096,'_wp_page_template','default'),(3703,2096,'_elementor_edit_mode','builder'),(3704,2096,'_elementor_template_type','wp-post'),(3705,2096,'_elementor_version','3.24.7'),(3706,2096,'_elementor_data','[{\"id\":\"7225c724\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#00165a\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer.png\",\"id\":87},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"109cef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.3},\"elements\":[{\"id\":\"6667e1a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9b3767fbcf1145d184ba29c6b29bde2c-free.png\",\"id\":2065,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae6ecf2\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Office: 43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}},{\"content\":\"Factory: 176\\/9 Nguy\\u1ec5n Th\\u1ecb T\\u01b0\\u01a1i, KP T\\u00e2n Ph\\u01b0\\u1edbc, P. T\\u00e2n B\\u00ecnh, D\\u0129 An city, B\\u00ecnh D\\u01b0\\u01a1ng\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"be1a6dd\"},{\"content\":\"0968860386\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"6dd7194a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Open Hours:\",\"text_color\":\"#f5b011\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"ct-text-gradient\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1e0523b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Mon - Sat: 8 am - 5 pm,<br\\/>\\nSunday: CLOSED\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"712a43be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.664,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e4e262b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Menu\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6e682e5b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"39\",\"style\":\"tow-col-light\",\"link_color_hover\":\"#f5ae0f\",\"line_color_hover\":\"#f5ae0f\",\"menu_align\":\"left\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"}],\"isInner\":false},{\"id\":\"1ab76a16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7},\"elements\":[{\"id\":\"37a5e636\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"aa15610\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#011143\",\"padding\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"040\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2487ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40d8f8a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sign up for alerts, our latest blogs, thoughts, and insights.\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d21d208\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"27383ab2\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin-box\",\"library\":\"material\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24b98c01\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"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},\"gap\":\"extended\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a6c11e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53be024\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5990603\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"7f874a5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright @2024 Trifles. All Rights Reserved by Far East High Tech<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_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},\"_css_classes\":\"ct-copyright\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"ab39798\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"12e6673\",\"elType\":\"widget\",\"settings\":{\"menu\":\"40\",\"style\":\"menu-inline\",\"menu_align\":\"right\",\"menu_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3707,2096,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:2:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:1;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:16:\"link_color_hover\";i:1;s:16:\"line_color_hover\";i:1;s:10:\"menu_align\";i:1;s:17:\"menu_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:13:\"ct_newsletter\";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:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";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:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:1;}}}}}'),(3986,2126,'_edit_lock','1742279874:1'),(3987,2126,'_edit_last','1'),(3988,2126,'custom_header',''),(3989,2126,'header_layout','2'),(3990,2126,'p_logo_dark','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(3991,2126,'p_logo_light','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(3992,2126,'h_custom_menu',''),(3993,2126,'custom_pagetitle','themeoption'),(3994,2126,'custom_title',''),(3995,2126,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(3996,2126,'ptitle_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(3997,2126,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(3998,2126,'content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(3999,2126,'show_sidebar_page',''),(4000,2126,'sidebar_page_pos','right'),(4001,2126,'custom_footer','1'),(4002,2126,'footer_layout_custom','799'),(4003,2126,'_elementor_edit_mode','builder'),(4004,2126,'_elementor_template_type','wp-page'),(4005,2126,'_elementor_version','3.24.7'),(4006,2128,'_edit_lock','1734408022:1'),(4007,2128,'_edit_last','1'),(4008,2128,'custom_header',''),(4009,2128,'header_layout','2'),(4010,2128,'p_logo_dark','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(4011,2128,'p_logo_light','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(4012,2128,'h_custom_menu',''),(4013,2128,'custom_pagetitle','themeoption'),(4014,2128,'custom_title',''),(4015,2128,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(4016,2128,'ptitle_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(4017,2128,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(4018,2128,'content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(4019,2128,'show_sidebar_page',''),(4020,2128,'sidebar_page_pos','right'),(4021,2128,'custom_footer','1'),(4022,2128,'footer_layout_custom','799'),(4023,2131,'_menu_item_type','post_type'),(4024,2131,'_menu_item_menu_item_parent','0'),(4025,2131,'_menu_item_object_id','2128'),(4026,2131,'_menu_item_object','page'),(4027,2131,'_menu_item_target',''),(4028,2131,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4029,2131,'_menu_item_xfn',''),(4030,2131,'_menu_item_url',''),(4031,2132,'_menu_item_type','post_type'),(4032,2132,'_menu_item_menu_item_parent','0'),(4033,2132,'_menu_item_object_id','2126'),(4034,2132,'_menu_item_object','page'),(4035,2132,'_menu_item_target',''),(4036,2132,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4037,2132,'_menu_item_xfn',''),(4038,2132,'_menu_item_url',''),(4192,2201,'_elementor_edit_mode','builder'),(4193,2201,'_elementor_template_type','wp-page'),(4194,2201,'_elementor_version','3.24.7'),(4195,2202,'_elementor_edit_mode','builder'),(4196,2202,'_elementor_template_type','wp-page'),(4197,2202,'_elementor_version','3.24.7'),(4198,2126,'_wp_page_template','default'),(4199,2126,'_elementor_data','[{\"id\":\"fcff723\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"dee41b0\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"Our strength lies in mass production of aluminum and steel. We excel in innovation and deliver high-value products to our customers.\",\"title_tag\":\"h5\",\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"373dfc0\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Automotive & Motorcycle\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"5603a87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":3309,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A16eb71f546c44c4ba00c6afe46464d593-1.jpg_350x350-1.jpg\"},{\"id\":3310,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A72a21ba969c84b98b63b985380b97ef5O-1.jpg_350x350-1.jpg\"},{\"id\":3311,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Ac6d9a3b79a904eeb9c925afa374ec53aA-1.jpg_350x350-1.jpg\"},{\"id\":3312,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/3-1.jpg\"},{\"id\":3313,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/9-1.jpg\"},{\"id\":3314,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A268aa8f9b65c4cdf9f45e594f2cd8ad4M-1.jpg_350x350-1.jpg\"},{\"id\":3315,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A864432f2571743689342ae173ee9dc9fd-1.jpg_350x350-1.jpg\"},{\"id\":3316,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Abd43851c92654bd99cfdca45d896fbcbB-1.jpg_350x350-1.jpg\"},{\"id\":3317,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A1001e63ea59149f8a81abb92d5d5fe713-1.jpg_350x350-1.jpg\"},{\"id\":3318,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A36346f881b104996b6c070b5d2cebff8u-1.jpg_350x350-1.jpg\"},{\"id\":3319,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A157183c07a764eb8957bc4cd13982808i-1.jpg_350x350-1.jpg\"},{\"id\":3320,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A4969ef2343a244608cc511d1e7be28e2X-1.png_350x350-1.png\"},{\"id\":3321,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/H9be6461494cf4fe7998192dc483066c9v-1.png_350x350-1.png\"},{\"id\":3322,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/H4cbac47ae6cf4705b966668ca1abad509-1.png_350x350-1.png\"},{\"id\":3323,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/H6c00bd237d8b46d4b06a1cc6ef76accfE-1.png_350x350-1.png\"},{\"id\":3324,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/H71abe7a763a345ae87dcf70c25a70a32M-1.png_350x350-1.png\"},{\"id\":3325,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/2-1.jpg\"},{\"id\":3326,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A786dc427af46457ea923c41ea7688f67Q-1.jpg_350x350-1.jpg\"},{\"id\":3327,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A2ed5a5c3f8f544c8910a3fe29da5e2984-1.jpg_350x350-1.jpg\"},{\"id\":3328,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A53f94fffa0e64ba8a47330e85a179214l-1.jpg_350x350-1.jpg\"},{\"id\":3329,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Aa559aaa8e8d44868b700967e182631e0O-1.jpg_350x350-1.jpg\"},{\"id\":3330,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/4-1.jpg\"},{\"id\":3331,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A8626df5ae89c458484cbdeab6b0a2768E-1.jpg_350x350-1.jpg\"},{\"id\":3332,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/1-1.jpg\"},{\"id\":3333,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A5fa71b0eddf648049c5f33d331738460m-1.jpg_350x350-1.jpg\"},{\"id\":3334,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A5df619ce89ec42189a5c4d05bbba4f2dw-1.jpg_350x350-1.jpg\"},{\"id\":3335,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Aea1a2ea6c9d04b78977d1e8c907e721cR-1.jpg_350x350-1.jpg\"},{\"id\":3336,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/5-1.jpg\"},{\"id\":3338,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/7-1.jpg\"},{\"id\":3339,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A967c634a517c48f38c23d4766db5bba1a-1.jpg_350x350-1.jpg\"},{\"id\":3340,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A462413b6de2b401ba60e99bbe1d15e33K-1.jpg_350x350-1.jpg\"},{\"id\":3341,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A661399142a7247278bbf69a9d6007556W-1.jpg_350x350-1.jpg\"},{\"id\":3342,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/10-1.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"dec4325\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"CNC Machined Parts\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1852cc9\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":3247,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok5.jpg\"},{\"id\":3248,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok4.png\"},{\"id\":3249,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-machine22.avif\"},{\"id\":3250,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-machine3.jpg\"},{\"id\":3251,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok3.png\"},{\"id\":3252,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok1.png\"},{\"id\":3253,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok2.png\"},{\"id\":3254,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok7.png\"},{\"id\":3255,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok9.jpg\"},{\"id\":3256,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok8.jpg\"},{\"id\":3257,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z5709443476797_cb3e9e0d596ad6331366b8a711f46926.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"ab81cda\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Sheet Metal & Fabrication\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"cd9dba9\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":3258,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal1.jpg\"},{\"id\":3259,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal3.jpg\"},{\"id\":3260,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal4.jpg\"},{\"id\":3261,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal5.jpg\"},{\"id\":3262,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal7.jpg\"},{\"id\":3263,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal8.jpg\"},{\"id\":3264,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal9.jpg\"},{\"id\":3265,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal10.jpg\"},{\"id\":3266,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal2.png\"},{\"id\":3267,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal6.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"bcd074c\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Mold & Die Components\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7eb3b87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":3268,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\"},{\"id\":3269,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\"},{\"id\":3270,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\"},{\"id\":3271,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\"},{\"id\":3272,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\"},{\"id\":3273,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"d0b27d7\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Industrial Fasteners & Bolt\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3dcc60b\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":3274,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/IMG_1237.jpeg\"},{\"id\":3275,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/DSC00822.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"2f9b716\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Tool\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a165f68\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2710,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\"},{\"id\":2711,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\"},{\"id\":2712,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\"},{\"id\":2713,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\"},{\"id\":2714,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\"},{\"id\":2715,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\"},{\"id\":2716,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"1ef8491\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Jig\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"09a76d6\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2730,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\"},{\"id\":2731,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\"},{\"id\":2732,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\"},{\"id\":2733,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\"},{\"id\":2734,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}]'),(4200,2203,'_elementor_edit_mode','builder'),(4201,2203,'_elementor_template_type','wp-page'),(4202,2203,'_elementor_version','3.24.7'),(4203,2203,'_wp_page_template','default'),(4204,2203,'_elementor_data','[{\"id\":\"da3c77a\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"ba9f4b4\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":[{\"id\":2135,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/0cc88ec1517fe821b16e130.jpg\"},{\"id\":2136,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2c7e6676b9c8009659d9126.jpg\"},{\"id\":2137,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/33ccc7ca1874a12af865132.jpg\"},{\"id\":2138,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/57de4ad695682c367579128.jpg\"},{\"id\":2139,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/62fb72f0ad4e14104d5f127.jpg\"},{\"id\":2140,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b1c8bfc1607fd921806e129.jpg\"},{\"id\":2141,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/f7f4c2fc1d42a41cfd53131.jpg\"},{\"id\":2142,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/0b32f03b2f8596dbcf94112.jpg\"},{\"id\":2143,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/04a0fba924179d49c406110.jpg\"},{\"id\":2144,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/5a19961f49a1f0ffa9b0118.jpg\"},{\"id\":2145,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9a4b7643a9fd10a349ec115.jpg\"},{\"id\":2146,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9d24a12c7e92c7cc9e83108.jpg\"},{\"id\":2147,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/46f3befa6144d81a8155123.jpg\"},{\"id\":2148,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/53d3a1db7e65c73b9e74107.jpg\"},{\"id\":2149,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/96e17fe9a05719094046105.jpg\"},{\"id\":2150,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/795df95426ea9fb4c6fb116.jpg\"},{\"id\":2151,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/939e3596ea2853760a39104.jpg\"},{\"id\":2152,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/995b95524aecf3b2aafd120.jpg\"},{\"id\":2153,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2664d66209dcb082e9cd117.jpg\"},{\"id\":2154,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4185a68d7933c06d9922111.jpg\"},{\"id\":2155,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/97509a5945e7fcb9a5f6113.jpg\"},{\"id\":2156,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/0497279ff821417f1830122.jpg\"},{\"id\":2157,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/49290422db9c62c23b8d124.jpg\"},{\"id\":2158,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/49290422db9c62c23b8d125.jpg\"},{\"id\":2159,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b44c1144cefa77a42eeb106.jpg\"},{\"id\":2160,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b9007d06a2b81be642a9109.jpg\"},{\"id\":2161,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/d037ea3f35818cdfd590114.jpg\"},{\"id\":2162,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/da27722fad9114cf4d80121.jpg\"},{\"id\":2163,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/db3e8e365188e8d6b199119.jpg\"},{\"id\":2164,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1ab1f4b72b099257cb1897.jpg\"},{\"id\":2165,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1d260d2fd2916bcf328099.jpg\"},{\"id\":2166,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4af3fbfb24459d1bc45484.jpg\"},{\"id\":2167,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4dc6cecf1171a82ff160101.jpg\"},{\"id\":2168,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/7cde64d6bb6802365b79102.jpg\"},{\"id\":2169,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/7ef794f14b4ff211ab5e91.jpg\"},{\"id\":2170,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/7ef794f14b4ff211ab5e92.jpg\"},{\"id\":2171,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/8ea396aa4914f04aa90588.jpg\"},{\"id\":2172,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/41a76fafb011094f500096.jpg\"},{\"id\":2173,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/56c9f8c2277c9e22c76d98.jpg\"},{\"id\":2174,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/284ee1483ef687a8dee795.jpg\"},{\"id\":2175,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/795d6c55b3eb0ab553fa94.jpg\"},{\"id\":2176,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/844e93464cf8f5a6ace9103.jpg\"},{\"id\":2177,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/a2e5a7ee7850c10e984189.jpg\"},{\"id\":2178,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/a2e5a7ee7850c10e984190.jpg\"},{\"id\":2179,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b5ed1be5c45b7d05244a93.jpg\"},{\"id\":2180,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c010d91906a7bff9e6b685.jpg\"},{\"id\":2181,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c546934e4cf0f5aeace1100.jpg\"},{\"id\":2182,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/ccd73edee160583e017187.jpg\"},{\"id\":2183,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/dfb58bbd5403ed5db41286.jpg\"},{\"id\":2184,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/38db14d3cb6d72332b7c76.jpg\"},{\"id\":2185,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/42f158f887463e18675775.jpg\"},{\"id\":2186,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/57c577cda873112d486282.jpg\"},{\"id\":2187,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/91a553a38c1d35436c0c83.jpg\"},{\"id\":2188,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/350f2406fbb842e61ba980.jpg\"},{\"id\":2189,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/350f2406fbb842e61ba981.jpg\"},{\"id\":2190,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1289df8f0031b96fe02079.jpg\"},{\"id\":2191,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4480b4896b37d2698b2677.jpg\"},{\"id\":2192,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9505c40d1bb3a2edfba278.jpg\"},{\"id\":2193,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/a4888f80503ee960b02f74.jpg\"},{\"id\":2194,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/07c54ece9170282e716171.jpg\"},{\"id\":2195,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/8d79cb7114cfad91f4de73.jpg\"},{\"id\":2196,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/79e03ae8e5565c08054772.jpg\"},{\"id\":2197,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/28706f78b0c6099850d768.jpg\"},{\"id\":2198,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b4e371e5ae5b17054e4a69.jpg\"},{\"id\":2199,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c20f0a09d5b76ce935a667.jpg\"},{\"id\":2200,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/e31fda1705a9bcf7e5b870.jpg\"}]},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"}],\"isInner\":false}]'),(4208,2204,'_elementor_edit_mode','builder'),(4209,2204,'_elementor_template_type','wp-page'),(4210,2204,'_elementor_version','3.24.7'),(4211,2204,'_wp_page_template','default'),(4212,2204,'_elementor_data','[{\"id\":\"da3c77a\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"ba9f4b4\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":[{\"id\":2135,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/0cc88ec1517fe821b16e130.jpg\"},{\"id\":2136,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2c7e6676b9c8009659d9126.jpg\"},{\"id\":2137,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/33ccc7ca1874a12af865132.jpg\"},{\"id\":2138,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/57de4ad695682c367579128.jpg\"},{\"id\":2139,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/62fb72f0ad4e14104d5f127.jpg\"},{\"id\":2140,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b1c8bfc1607fd921806e129.jpg\"},{\"id\":2141,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/f7f4c2fc1d42a41cfd53131.jpg\"},{\"id\":2142,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/0b32f03b2f8596dbcf94112.jpg\"},{\"id\":2143,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/04a0fba924179d49c406110.jpg\"},{\"id\":2144,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/5a19961f49a1f0ffa9b0118.jpg\"},{\"id\":2145,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9a4b7643a9fd10a349ec115.jpg\"},{\"id\":2146,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9d24a12c7e92c7cc9e83108.jpg\"},{\"id\":2147,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/46f3befa6144d81a8155123.jpg\"},{\"id\":2148,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/53d3a1db7e65c73b9e74107.jpg\"},{\"id\":2149,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/96e17fe9a05719094046105.jpg\"},{\"id\":2150,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/795df95426ea9fb4c6fb116.jpg\"},{\"id\":2151,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/939e3596ea2853760a39104.jpg\"},{\"id\":2152,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/995b95524aecf3b2aafd120.jpg\"},{\"id\":2153,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2664d66209dcb082e9cd117.jpg\"},{\"id\":2154,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4185a68d7933c06d9922111.jpg\"},{\"id\":2155,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/97509a5945e7fcb9a5f6113.jpg\"},{\"id\":2156,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/0497279ff821417f1830122.jpg\"},{\"id\":2157,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/49290422db9c62c23b8d124.jpg\"},{\"id\":2158,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/49290422db9c62c23b8d125.jpg\"},{\"id\":2159,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b44c1144cefa77a42eeb106.jpg\"},{\"id\":2160,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b9007d06a2b81be642a9109.jpg\"},{\"id\":2161,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/d037ea3f35818cdfd590114.jpg\"},{\"id\":2162,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/da27722fad9114cf4d80121.jpg\"},{\"id\":2163,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/db3e8e365188e8d6b199119.jpg\"},{\"id\":2164,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1ab1f4b72b099257cb1897.jpg\"},{\"id\":2165,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1d260d2fd2916bcf328099.jpg\"},{\"id\":2166,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4af3fbfb24459d1bc45484.jpg\"},{\"id\":2167,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4dc6cecf1171a82ff160101.jpg\"},{\"id\":2168,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/7cde64d6bb6802365b79102.jpg\"},{\"id\":2169,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/7ef794f14b4ff211ab5e91.jpg\"},{\"id\":2170,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/7ef794f14b4ff211ab5e92.jpg\"},{\"id\":2171,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/8ea396aa4914f04aa90588.jpg\"},{\"id\":2172,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/41a76fafb011094f500096.jpg\"},{\"id\":2173,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/56c9f8c2277c9e22c76d98.jpg\"},{\"id\":2174,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/284ee1483ef687a8dee795.jpg\"},{\"id\":2175,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/795d6c55b3eb0ab553fa94.jpg\"},{\"id\":2176,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/844e93464cf8f5a6ace9103.jpg\"},{\"id\":2177,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/a2e5a7ee7850c10e984189.jpg\"},{\"id\":2178,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/a2e5a7ee7850c10e984190.jpg\"},{\"id\":2179,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b5ed1be5c45b7d05244a93.jpg\"},{\"id\":2180,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c010d91906a7bff9e6b685.jpg\"},{\"id\":2181,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c546934e4cf0f5aeace1100.jpg\"},{\"id\":2182,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/ccd73edee160583e017187.jpg\"},{\"id\":2183,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/dfb58bbd5403ed5db41286.jpg\"},{\"id\":2184,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/38db14d3cb6d72332b7c76.jpg\"},{\"id\":2185,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/42f158f887463e18675775.jpg\"},{\"id\":2186,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/57c577cda873112d486282.jpg\"},{\"id\":2187,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/91a553a38c1d35436c0c83.jpg\"},{\"id\":2188,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/350f2406fbb842e61ba980.jpg\"},{\"id\":2189,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/350f2406fbb842e61ba981.jpg\"},{\"id\":2190,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1289df8f0031b96fe02079.jpg\"},{\"id\":2191,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4480b4896b37d2698b2677.jpg\"},{\"id\":2192,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9505c40d1bb3a2edfba278.jpg\"},{\"id\":2193,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/a4888f80503ee960b02f74.jpg\"},{\"id\":2194,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/07c54ece9170282e716171.jpg\"},{\"id\":2195,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/8d79cb7114cfad91f4de73.jpg\"},{\"id\":2196,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/79e03ae8e5565c08054772.jpg\"},{\"id\":2197,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/28706f78b0c6099850d768.jpg\"},{\"id\":2198,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b4e371e5ae5b17054e4a69.jpg\"},{\"id\":2199,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c20f0a09d5b76ce935a667.jpg\"},{\"id\":2200,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/e31fda1705a9bcf7e5b870.jpg\"}]},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"}],\"isInner\":false}]'),(4216,2205,'_elementor_edit_mode','builder'),(4217,2205,'_elementor_template_type','wp-page'),(4218,2205,'_elementor_version','3.24.7'),(4219,2205,'_wp_page_template','default'),(4220,2205,'_elementor_data','[{\"id\":\"da3c77a\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"ba9f4b4\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":[{\"id\":2135,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/0cc88ec1517fe821b16e130.jpg\"},{\"id\":2136,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2c7e6676b9c8009659d9126.jpg\"},{\"id\":2137,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/33ccc7ca1874a12af865132.jpg\"},{\"id\":2138,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/57de4ad695682c367579128.jpg\"},{\"id\":2139,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/62fb72f0ad4e14104d5f127.jpg\"},{\"id\":2140,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b1c8bfc1607fd921806e129.jpg\"},{\"id\":2141,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/f7f4c2fc1d42a41cfd53131.jpg\"},{\"id\":2142,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/0b32f03b2f8596dbcf94112.jpg\"},{\"id\":2143,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/04a0fba924179d49c406110.jpg\"},{\"id\":2144,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/5a19961f49a1f0ffa9b0118.jpg\"},{\"id\":2145,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9a4b7643a9fd10a349ec115.jpg\"},{\"id\":2146,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9d24a12c7e92c7cc9e83108.jpg\"},{\"id\":2147,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/46f3befa6144d81a8155123.jpg\"},{\"id\":2148,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/53d3a1db7e65c73b9e74107.jpg\"},{\"id\":2149,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/96e17fe9a05719094046105.jpg\"},{\"id\":2150,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/795df95426ea9fb4c6fb116.jpg\"},{\"id\":2151,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/939e3596ea2853760a39104.jpg\"},{\"id\":2152,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/995b95524aecf3b2aafd120.jpg\"},{\"id\":2153,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2664d66209dcb082e9cd117.jpg\"},{\"id\":2154,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4185a68d7933c06d9922111.jpg\"},{\"id\":2155,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/97509a5945e7fcb9a5f6113.jpg\"},{\"id\":2156,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/0497279ff821417f1830122.jpg\"},{\"id\":2157,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/49290422db9c62c23b8d124.jpg\"},{\"id\":2158,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/49290422db9c62c23b8d125.jpg\"},{\"id\":2159,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b44c1144cefa77a42eeb106.jpg\"},{\"id\":2160,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b9007d06a2b81be642a9109.jpg\"},{\"id\":2161,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/d037ea3f35818cdfd590114.jpg\"},{\"id\":2162,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/da27722fad9114cf4d80121.jpg\"},{\"id\":2163,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/db3e8e365188e8d6b199119.jpg\"},{\"id\":2164,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1ab1f4b72b099257cb1897.jpg\"},{\"id\":2165,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1d260d2fd2916bcf328099.jpg\"},{\"id\":2166,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4af3fbfb24459d1bc45484.jpg\"},{\"id\":2167,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4dc6cecf1171a82ff160101.jpg\"},{\"id\":2168,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/7cde64d6bb6802365b79102.jpg\"},{\"id\":2169,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/7ef794f14b4ff211ab5e91.jpg\"},{\"id\":2170,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/7ef794f14b4ff211ab5e92.jpg\"},{\"id\":2171,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/8ea396aa4914f04aa90588.jpg\"},{\"id\":2172,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/41a76fafb011094f500096.jpg\"},{\"id\":2173,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/56c9f8c2277c9e22c76d98.jpg\"},{\"id\":2174,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/284ee1483ef687a8dee795.jpg\"},{\"id\":2175,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/795d6c55b3eb0ab553fa94.jpg\"},{\"id\":2176,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/844e93464cf8f5a6ace9103.jpg\"},{\"id\":2177,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/a2e5a7ee7850c10e984189.jpg\"},{\"id\":2178,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/a2e5a7ee7850c10e984190.jpg\"},{\"id\":2179,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b5ed1be5c45b7d05244a93.jpg\"},{\"id\":2180,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c010d91906a7bff9e6b685.jpg\"},{\"id\":2181,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c546934e4cf0f5aeace1100.jpg\"},{\"id\":2182,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/ccd73edee160583e017187.jpg\"},{\"id\":2183,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/dfb58bbd5403ed5db41286.jpg\"},{\"id\":2184,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/38db14d3cb6d72332b7c76.jpg\"},{\"id\":2185,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/42f158f887463e18675775.jpg\"},{\"id\":2186,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/57c577cda873112d486282.jpg\"},{\"id\":2187,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/91a553a38c1d35436c0c83.jpg\"},{\"id\":2188,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/350f2406fbb842e61ba980.jpg\"},{\"id\":2189,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/350f2406fbb842e61ba981.jpg\"},{\"id\":2190,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1289df8f0031b96fe02079.jpg\"},{\"id\":2191,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4480b4896b37d2698b2677.jpg\"},{\"id\":2192,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9505c40d1bb3a2edfba278.jpg\"},{\"id\":2193,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/a4888f80503ee960b02f74.jpg\"},{\"id\":2194,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/07c54ece9170282e716171.jpg\"},{\"id\":2195,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/8d79cb7114cfad91f4de73.jpg\"},{\"id\":2196,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/79e03ae8e5565c08054772.jpg\"},{\"id\":2197,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/28706f78b0c6099850d768.jpg\"},{\"id\":2198,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b4e371e5ae5b17054e4a69.jpg\"},{\"id\":2199,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c20f0a09d5b76ce935a667.jpg\"},{\"id\":2200,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/e31fda1705a9bcf7e5b870.jpg\"}]},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"}],\"isInner\":false}]'),(4224,2206,'_elementor_edit_mode','builder'),(4225,2206,'_elementor_template_type','wp-page'),(4226,2206,'_elementor_version','3.24.7'),(4227,2206,'_wp_page_template','default'),(4228,2206,'_elementor_data','[{\"id\":\"32f27e9\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"fbb95bb\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2200,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/e31fda1705a9bcf7e5b870.jpg\"},{\"id\":2199,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c20f0a09d5b76ce935a667.jpg\"},{\"id\":2197,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/28706f78b0c6099850d768.jpg\"},{\"id\":2196,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/79e03ae8e5565c08054772.jpg\"},{\"id\":2195,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/8d79cb7114cfad91f4de73.jpg\"},{\"id\":2194,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/07c54ece9170282e716171.jpg\"},{\"id\":2188,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/350f2406fbb842e61ba980.jpg\"},{\"id\":2189,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/350f2406fbb842e61ba981.jpg\"},{\"id\":2190,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1289df8f0031b96fe02079.jpg\"},{\"id\":2191,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4480b4896b37d2698b2677.jpg\"},{\"id\":2192,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9505c40d1bb3a2edfba278.jpg\"},{\"id\":2193,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/a4888f80503ee960b02f74.jpg\"},{\"id\":2187,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/91a553a38c1d35436c0c83.jpg\"},{\"id\":2186,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/57c577cda873112d486282.jpg\"},{\"id\":2185,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/42f158f887463e18675775.jpg\"},{\"id\":2184,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/38db14d3cb6d72332b7c76.jpg\"},{\"id\":2183,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/dfb58bbd5403ed5db41286.jpg\"},{\"id\":2182,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/ccd73edee160583e017187.jpg\"},{\"id\":2176,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/844e93464cf8f5a6ace9103.jpg\"},{\"id\":2177,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/a2e5a7ee7850c10e984189.jpg\"},{\"id\":2178,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/a2e5a7ee7850c10e984190.jpg\"},{\"id\":2179,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b5ed1be5c45b7d05244a93.jpg\"},{\"id\":2180,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c010d91906a7bff9e6b685.jpg\"},{\"id\":2181,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c546934e4cf0f5aeace1100.jpg\"},{\"id\":2175,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/795d6c55b3eb0ab553fa94.jpg\"},{\"id\":2174,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/284ee1483ef687a8dee795.jpg\"},{\"id\":2173,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/56c9f8c2277c9e22c76d98.jpg\"},{\"id\":2172,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/41a76fafb011094f500096.jpg\"},{\"id\":2171,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/8ea396aa4914f04aa90588.jpg\"},{\"id\":2170,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/7ef794f14b4ff211ab5e92.jpg\"},{\"id\":2164,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1ab1f4b72b099257cb1897.jpg\"},{\"id\":2165,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1d260d2fd2916bcf328099.jpg\"},{\"id\":2166,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4af3fbfb24459d1bc45484.jpg\"},{\"id\":2167,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4dc6cecf1171a82ff160101.jpg\"},{\"id\":2168,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/7cde64d6bb6802365b79102.jpg\"},{\"id\":2169,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/7ef794f14b4ff211ab5e91.jpg\"},{\"id\":2163,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/db3e8e365188e8d6b199119.jpg\"},{\"id\":2162,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/da27722fad9114cf4d80121.jpg\"},{\"id\":2161,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/d037ea3f35818cdfd590114.jpg\"},{\"id\":2160,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b9007d06a2b81be642a9109.jpg\"},{\"id\":2159,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b44c1144cefa77a42eeb106.jpg\"},{\"id\":2158,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/49290422db9c62c23b8d125.jpg\"},{\"id\":2152,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/995b95524aecf3b2aafd120.jpg\"},{\"id\":2153,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2664d66209dcb082e9cd117.jpg\"},{\"id\":2154,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4185a68d7933c06d9922111.jpg\"},{\"id\":2155,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/97509a5945e7fcb9a5f6113.jpg\"},{\"id\":2156,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/0497279ff821417f1830122.jpg\"},{\"id\":2157,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/49290422db9c62c23b8d124.jpg\"},{\"id\":2151,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/939e3596ea2853760a39104.jpg\"},{\"id\":2150,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/795df95426ea9fb4c6fb116.jpg\"},{\"id\":2149,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/96e17fe9a05719094046105.jpg\"},{\"id\":2148,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/53d3a1db7e65c73b9e74107.jpg\"},{\"id\":2147,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/46f3befa6144d81a8155123.jpg\"},{\"id\":2146,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9d24a12c7e92c7cc9e83108.jpg\"},{\"id\":2140,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b1c8bfc1607fd921806e129.jpg\"},{\"id\":2141,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/f7f4c2fc1d42a41cfd53131.jpg\"},{\"id\":2142,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/0b32f03b2f8596dbcf94112.jpg\"},{\"id\":2143,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/04a0fba924179d49c406110.jpg\"},{\"id\":2144,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/5a19961f49a1f0ffa9b0118.jpg\"},{\"id\":2145,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9a4b7643a9fd10a349ec115.jpg\"},{\"id\":2139,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/62fb72f0ad4e14104d5f127.jpg\"},{\"id\":2138,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/57de4ad695682c367579128.jpg\"},{\"id\":2137,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/33ccc7ca1874a12af865132.jpg\"},{\"id\":2135,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/0cc88ec1517fe821b16e130.jpg\"},{\"id\":2136,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2c7e6676b9c8009659d9126.jpg\"}],\"thumbnail_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}]'),(4234,2207,'_elementor_edit_mode','builder'),(4235,2207,'_elementor_template_type','wp-page'),(4236,2207,'_elementor_version','3.24.7'),(4237,2207,'_wp_page_template','default'),(4238,2207,'_elementor_data','[{\"id\":\"32f27e9\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"fbb95bb\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2200,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/e31fda1705a9bcf7e5b870.jpg\"},{\"id\":2199,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c20f0a09d5b76ce935a667.jpg\"},{\"id\":2197,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/28706f78b0c6099850d768.jpg\"},{\"id\":2196,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/79e03ae8e5565c08054772.jpg\"},{\"id\":2195,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/8d79cb7114cfad91f4de73.jpg\"},{\"id\":2194,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/07c54ece9170282e716171.jpg\"},{\"id\":2188,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/350f2406fbb842e61ba980.jpg\"},{\"id\":2189,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/350f2406fbb842e61ba981.jpg\"},{\"id\":2190,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1289df8f0031b96fe02079.jpg\"},{\"id\":2191,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4480b4896b37d2698b2677.jpg\"},{\"id\":2192,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9505c40d1bb3a2edfba278.jpg\"},{\"id\":2193,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/a4888f80503ee960b02f74.jpg\"},{\"id\":2187,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/91a553a38c1d35436c0c83.jpg\"},{\"id\":2186,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/57c577cda873112d486282.jpg\"},{\"id\":2185,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/42f158f887463e18675775.jpg\"},{\"id\":2184,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/38db14d3cb6d72332b7c76.jpg\"},{\"id\":2183,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/dfb58bbd5403ed5db41286.jpg\"},{\"id\":2182,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/ccd73edee160583e017187.jpg\"},{\"id\":2176,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/844e93464cf8f5a6ace9103.jpg\"},{\"id\":2177,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/a2e5a7ee7850c10e984189.jpg\"},{\"id\":2178,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/a2e5a7ee7850c10e984190.jpg\"},{\"id\":2179,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b5ed1be5c45b7d05244a93.jpg\"},{\"id\":2180,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c010d91906a7bff9e6b685.jpg\"},{\"id\":2181,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c546934e4cf0f5aeace1100.jpg\"},{\"id\":2175,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/795d6c55b3eb0ab553fa94.jpg\"},{\"id\":2174,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/284ee1483ef687a8dee795.jpg\"},{\"id\":2173,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/56c9f8c2277c9e22c76d98.jpg\"},{\"id\":2172,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/41a76fafb011094f500096.jpg\"},{\"id\":2171,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/8ea396aa4914f04aa90588.jpg\"},{\"id\":2170,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/7ef794f14b4ff211ab5e92.jpg\"},{\"id\":2164,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1ab1f4b72b099257cb1897.jpg\"},{\"id\":2165,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1d260d2fd2916bcf328099.jpg\"},{\"id\":2166,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4af3fbfb24459d1bc45484.jpg\"},{\"id\":2167,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4dc6cecf1171a82ff160101.jpg\"},{\"id\":2168,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/7cde64d6bb6802365b79102.jpg\"},{\"id\":2169,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/7ef794f14b4ff211ab5e91.jpg\"},{\"id\":2163,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/db3e8e365188e8d6b199119.jpg\"},{\"id\":2162,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/da27722fad9114cf4d80121.jpg\"},{\"id\":2161,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/d037ea3f35818cdfd590114.jpg\"},{\"id\":2160,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b9007d06a2b81be642a9109.jpg\"},{\"id\":2159,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b44c1144cefa77a42eeb106.jpg\"},{\"id\":2158,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/49290422db9c62c23b8d125.jpg\"},{\"id\":2152,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/995b95524aecf3b2aafd120.jpg\"},{\"id\":2153,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2664d66209dcb082e9cd117.jpg\"},{\"id\":2154,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4185a68d7933c06d9922111.jpg\"},{\"id\":2155,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/97509a5945e7fcb9a5f6113.jpg\"},{\"id\":2156,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/0497279ff821417f1830122.jpg\"},{\"id\":2157,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/49290422db9c62c23b8d124.jpg\"},{\"id\":2151,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/939e3596ea2853760a39104.jpg\"},{\"id\":2150,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/795df95426ea9fb4c6fb116.jpg\"},{\"id\":2149,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/96e17fe9a05719094046105.jpg\"},{\"id\":2148,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/53d3a1db7e65c73b9e74107.jpg\"},{\"id\":2147,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/46f3befa6144d81a8155123.jpg\"},{\"id\":2146,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9d24a12c7e92c7cc9e83108.jpg\"},{\"id\":2140,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b1c8bfc1607fd921806e129.jpg\"},{\"id\":2141,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/f7f4c2fc1d42a41cfd53131.jpg\"},{\"id\":2142,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/0b32f03b2f8596dbcf94112.jpg\"},{\"id\":2143,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/04a0fba924179d49c406110.jpg\"},{\"id\":2144,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/5a19961f49a1f0ffa9b0118.jpg\"},{\"id\":2145,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9a4b7643a9fd10a349ec115.jpg\"},{\"id\":2139,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/62fb72f0ad4e14104d5f127.jpg\"},{\"id\":2138,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/57de4ad695682c367579128.jpg\"},{\"id\":2137,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/33ccc7ca1874a12af865132.jpg\"},{\"id\":2135,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/0cc88ec1517fe821b16e130.jpg\"},{\"id\":2136,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2c7e6676b9c8009659d9126.jpg\"}],\"thumbnail_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}]'),(4242,2208,'_elementor_edit_mode','builder'),(4243,2208,'_elementor_template_type','wp-page'),(4244,2208,'_elementor_version','3.24.7'),(4245,2208,'_wp_page_template','default'),(4246,2208,'_elementor_data','[{\"id\":\"32f27e9\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"fbb95bb\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2200,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/e31fda1705a9bcf7e5b870.jpg\"},{\"id\":2199,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c20f0a09d5b76ce935a667.jpg\"},{\"id\":2197,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/28706f78b0c6099850d768.jpg\"},{\"id\":2196,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/79e03ae8e5565c08054772.jpg\"},{\"id\":2195,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/8d79cb7114cfad91f4de73.jpg\"},{\"id\":2194,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/07c54ece9170282e716171.jpg\"},{\"id\":2188,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/350f2406fbb842e61ba980.jpg\"},{\"id\":2189,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/350f2406fbb842e61ba981.jpg\"},{\"id\":2190,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1289df8f0031b96fe02079.jpg\"},{\"id\":2191,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4480b4896b37d2698b2677.jpg\"},{\"id\":2192,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9505c40d1bb3a2edfba278.jpg\"},{\"id\":2193,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/a4888f80503ee960b02f74.jpg\"},{\"id\":2187,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/91a553a38c1d35436c0c83.jpg\"},{\"id\":2186,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/57c577cda873112d486282.jpg\"},{\"id\":2185,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/42f158f887463e18675775.jpg\"},{\"id\":2184,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/38db14d3cb6d72332b7c76.jpg\"},{\"id\":2183,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/dfb58bbd5403ed5db41286.jpg\"},{\"id\":2182,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/ccd73edee160583e017187.jpg\"},{\"id\":2176,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/844e93464cf8f5a6ace9103.jpg\"},{\"id\":2177,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/a2e5a7ee7850c10e984189.jpg\"},{\"id\":2178,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/a2e5a7ee7850c10e984190.jpg\"},{\"id\":2179,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b5ed1be5c45b7d05244a93.jpg\"},{\"id\":2180,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c010d91906a7bff9e6b685.jpg\"},{\"id\":2181,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c546934e4cf0f5aeace1100.jpg\"},{\"id\":2175,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/795d6c55b3eb0ab553fa94.jpg\"},{\"id\":2174,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/284ee1483ef687a8dee795.jpg\"},{\"id\":2173,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/56c9f8c2277c9e22c76d98.jpg\"},{\"id\":2172,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/41a76fafb011094f500096.jpg\"},{\"id\":2171,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/8ea396aa4914f04aa90588.jpg\"},{\"id\":2170,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/7ef794f14b4ff211ab5e92.jpg\"},{\"id\":2164,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1ab1f4b72b099257cb1897.jpg\"},{\"id\":2165,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1d260d2fd2916bcf328099.jpg\"},{\"id\":2166,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4af3fbfb24459d1bc45484.jpg\"},{\"id\":2167,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4dc6cecf1171a82ff160101.jpg\"},{\"id\":2168,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/7cde64d6bb6802365b79102.jpg\"},{\"id\":2169,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/7ef794f14b4ff211ab5e91.jpg\"},{\"id\":2163,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/db3e8e365188e8d6b199119.jpg\"},{\"id\":2162,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/da27722fad9114cf4d80121.jpg\"},{\"id\":2161,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/d037ea3f35818cdfd590114.jpg\"},{\"id\":2160,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b9007d06a2b81be642a9109.jpg\"},{\"id\":2159,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b44c1144cefa77a42eeb106.jpg\"},{\"id\":2158,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/49290422db9c62c23b8d125.jpg\"},{\"id\":2152,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/995b95524aecf3b2aafd120.jpg\"},{\"id\":2153,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2664d66209dcb082e9cd117.jpg\"},{\"id\":2154,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4185a68d7933c06d9922111.jpg\"},{\"id\":2155,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/97509a5945e7fcb9a5f6113.jpg\"},{\"id\":2156,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/0497279ff821417f1830122.jpg\"},{\"id\":2157,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/49290422db9c62c23b8d124.jpg\"},{\"id\":2151,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/939e3596ea2853760a39104.jpg\"},{\"id\":2150,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/795df95426ea9fb4c6fb116.jpg\"},{\"id\":2149,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/96e17fe9a05719094046105.jpg\"},{\"id\":2148,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/53d3a1db7e65c73b9e74107.jpg\"},{\"id\":2147,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/46f3befa6144d81a8155123.jpg\"},{\"id\":2146,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9d24a12c7e92c7cc9e83108.jpg\"},{\"id\":2140,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b1c8bfc1607fd921806e129.jpg\"},{\"id\":2141,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/f7f4c2fc1d42a41cfd53131.jpg\"},{\"id\":2142,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/0b32f03b2f8596dbcf94112.jpg\"},{\"id\":2143,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/04a0fba924179d49c406110.jpg\"},{\"id\":2144,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/5a19961f49a1f0ffa9b0118.jpg\"},{\"id\":2145,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9a4b7643a9fd10a349ec115.jpg\"},{\"id\":2139,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/62fb72f0ad4e14104d5f127.jpg\"},{\"id\":2138,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/57de4ad695682c367579128.jpg\"},{\"id\":2137,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/33ccc7ca1874a12af865132.jpg\"},{\"id\":2135,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/0cc88ec1517fe821b16e130.jpg\"},{\"id\":2136,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2c7e6676b9c8009659d9126.jpg\"}],\"thumbnail_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}]'),(4250,2209,'_elementor_edit_mode','builder'),(4251,2209,'_elementor_template_type','wp-page'),(4252,2209,'_elementor_version','3.24.7'),(4253,2209,'_wp_page_template','default'),(4254,2209,'_elementor_data','[]'),(4362,2226,'_elementor_edit_mode','builder'),(4363,2226,'_elementor_template_type','wp-page'),(4364,2226,'_elementor_version','3.24.7'),(4365,2226,'_wp_page_template','default'),(4366,2226,'_elementor_data','[]'),(4368,2227,'_elementor_edit_mode','builder'),(4369,2227,'_elementor_template_type','wp-page'),(4370,2227,'_elementor_version','3.24.7'),(4371,2227,'_wp_page_template','default'),(4372,2227,'_elementor_data','[]'),(4374,2228,'_elementor_edit_mode','builder'),(4375,2228,'_elementor_template_type','wp-page'),(4376,2228,'_elementor_version','3.24.7'),(4377,2228,'_wp_page_template','default'),(4378,2228,'_elementor_data','[{\"id\":\"fcff723\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"63954b4\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"source\":[\"exterior|portfolio-category\",\"interior|portfolio-category\",\"plan|portfolio-category\",\"sketching|portfolio-category\"],\"filter_default_title\":\"All\"},\"elements\":[],\"widgetType\":\"ct_portfolio_grid\"}],\"isInner\":false}]'),(4421,2239,'_elementor_edit_mode','builder'),(4422,2239,'_elementor_template_type','wp-page'),(4423,2239,'_elementor_version','3.24.7'),(4424,2239,'_wp_page_template','default'),(4425,2239,'_elementor_data','[{\"id\":\"fcff723\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"63954b4\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"source\":[\"exterior|portfolio-category\",\"interior|portfolio-category\",\"plan|portfolio-category\",\"sketching|portfolio-category\"],\"filter_default_title\":\"All\"},\"elements\":[],\"widgetType\":\"ct_portfolio_grid\"}],\"isInner\":false}]'),(4429,2240,'_elementor_edit_mode','builder'),(4430,2240,'_elementor_template_type','wp-page'),(4431,2240,'_elementor_version','3.24.7'),(4432,2240,'_wp_page_template','default'),(4433,2240,'_elementor_data','[{\"id\":\"fcff723\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"63954b4\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"source\":[\"exterior|portfolio-category\",\"interior|portfolio-category\",\"plan|portfolio-category\",\"sketching|portfolio-category\"],\"filter_default_title\":\"All\"},\"elements\":[],\"widgetType\":\"ct_portfolio_grid\"}],\"isInner\":false}]'),(4437,2241,'_elementor_edit_mode','builder'),(4438,2241,'_elementor_template_type','wp-page'),(4439,2241,'_elementor_version','3.24.7'),(4440,2241,'_wp_page_template','default'),(4441,2241,'_elementor_data','[{\"id\":\"fcff723\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"5603a87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\"},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}]'),(4445,2242,'_elementor_edit_mode','builder'),(4446,2242,'_elementor_template_type','wp-page'),(4447,2242,'_elementor_version','3.24.7'),(4448,2242,'_wp_page_template','default'),(4449,2242,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We assess plans and provide tailored machinery.\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our company\\u2019s strength lies in our team, who have developed groundbreaking machinery and equipment.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/signature.png\",\"id\":1520},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":150,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Awards Winner\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5021,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Satisfied Clients\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":201,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Active projects\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/home-image-01.png\",\"id\":843},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-32\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-02.jpg\",\"id\":886},\"layout\":\"2\",\"title\":\"201 Award-winning machinery and equipment manufacturing company.\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We help you build your vision with our machinery.\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We approach every project with precision and value clear, simple communication.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"Engineering\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Design\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"Production\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"servicing-plan|service-category\",\"servicing-pricing|service-category\",\"servicing-sector|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/services-v-1\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f8b99fb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fd652b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c7c5a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Partners\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c9b150\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"4bae24f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"8b89ac1\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"a49fbc4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"33930a5\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"aeee6c2\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"8fc7373\"}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 800 250 369\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(1,13,50,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses thrive by providing the latest machinery technology.<\\/p>\",\"text_color\":\"#d6e0fe\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_text\":\"Discover more\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\",\"btn_text\":\"Contact\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_text\":\"Place order\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_text\":\"Make a payment\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#bccbfb\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#021d6c\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wp_postmeta` VALUES (4450,2242,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(4454,2243,'_elementor_edit_mode','builder'),(4455,2243,'_elementor_template_type','wp-page'),(4456,2243,'_elementor_version','3.24.7'),(4457,2243,'_wp_page_template','default'),(4458,2243,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We assess plans and provide tailored machinery.\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our company\\u2019s strength lies in our team, who have developed groundbreaking machinery and equipment.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/signature.png\",\"id\":1520},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":150,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Awards Winner\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5021,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Satisfied Clients\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":201,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Active projects\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/home-image-01.png\",\"id\":843},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-32\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-02.jpg\",\"id\":886},\"layout\":\"2\",\"title\":\"201 Award-winning machinery and equipment manufacturing company.\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We help you build your vision with our machinery.\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We approach every project with precision and value clear, simple communication.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"Engineering\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Design\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"Production\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"servicing-plan|service-category\",\"servicing-pricing|service-category\",\"servicing-sector|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/services-v-1\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f8b99fb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fd652b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c7c5a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Partners\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c9b150\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"4bae24f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"8b89ac1\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"a49fbc4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"33930a5\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"aeee6c2\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"8fc7373\"}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 800 250 369\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(1,13,50,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses thrive by providing the latest machinery technology.<\\/p>\",\"text_color\":\"#d6e0fe\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_text\":\"Discover more\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\",\"btn_text\":\"Contact\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_text\":\"Place order\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_text\":\"Make a payment\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#bccbfb\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#021d6c\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4459,2243,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(4463,2244,'_elementor_edit_mode','builder'),(4464,2244,'_elementor_template_type','wp-page'),(4465,2244,'_elementor_version','3.24.7'),(4466,2244,'_wp_page_template','default'),(4467,2244,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We assess plans and provide tailored machinery.\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our company\\u2019s strength lies in our team, who have developed groundbreaking machinery and equipment.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/signature.png\",\"id\":1520},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":150,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Awards Winner\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5021,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Satisfied Clients\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":201,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Active projects\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/home-image-01.png\",\"id\":843},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-32\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-02.jpg\",\"id\":886},\"layout\":\"2\",\"title\":\"201 Award-winning machinery and equipment manufacturing company.\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We help you build your vision with our machinery.\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We approach every project with precision and value clear, simple communication.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"Engineering\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Design\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"Production\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/services-v-1\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 800 250 369\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(1,13,50,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses thrive by providing the latest machinery technology.<\\/p>\",\"text_color\":\"#d6e0fe\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_text\":\"Discover more\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\",\"btn_text\":\"Contact\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_text\":\"Place order\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_text\":\"Make a payment\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#bccbfb\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#021d6c\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4468,2244,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(4472,2245,'_elementor_edit_mode','builder'),(4473,2245,'_elementor_template_type','wp-page'),(4474,2245,'_elementor_version','3.24.7'),(4475,2245,'_wp_page_template','default'),(4476,2245,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We assess plans and provide tailored machinery.\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our company\\u2019s strength lies in our team, who have developed groundbreaking machinery and equipment.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/signature.png\",\"id\":1520},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":150,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Awards Winner\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5021,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Satisfied Clients\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":201,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Active projects\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/home-image-01.png\",\"id\":843},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-32\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-02.jpg\",\"id\":886},\"layout\":\"2\",\"title\":\"201 Award-winning machinery and equipment manufacturing company.\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We help you build your vision with our machinery.\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We approach every project with precision and value clear, simple communication.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"Engineering\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Design\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"Production\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/services-v-1\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 800 250 369\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(1,13,50,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses thrive by providing the latest machinery technology.<\\/p>\",\"text_color\":\"#d6e0fe\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_text\":\"Discover more\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\",\"btn_text\":\"Contact\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_text\":\"Place order\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_text\":\"Make a payment\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#bccbfb\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#021d6c\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4477,2245,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(4479,2246,'_elementor_edit_mode','builder'),(4480,2246,'_elementor_template_type','wp-page'),(4481,2246,'_elementor_version','3.24.7'),(4482,2246,'_wp_page_template','default'),(4483,2246,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We assess plans and provide tailored machinery.\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our company\\u2019s strength lies in our team, who have developed groundbreaking machinery and equipment.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/signature.png\",\"id\":1520},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":150,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Awards Winner\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5021,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Satisfied Clients\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":201,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Active projects\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/home-image-01.png\",\"id\":843},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-32\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-02.jpg\",\"id\":886},\"layout\":\"2\",\"title\":\"201 Award-winning machinery and equipment manufacturing company.\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We help you build your vision with our machinery.\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We approach every project with precision and value clear, simple communication.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"Engineering\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Design\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"Production\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/services-v-1\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 800 250 369\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(1,13,50,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses thrive by providing the latest machinery technology.<\\/p>\",\"text_color\":\"#d6e0fe\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_text\":\"Discover more\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\",\"btn_text\":\"Contact\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_text\":\"Place order\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_text\":\"Make a payment\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#bccbfb\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#021d6c\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4484,2246,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(4486,2247,'_elementor_edit_mode','builder'),(4487,2247,'_elementor_template_type','wp-page'),(4488,2247,'_elementor_version','3.24.7'),(4489,2247,'_wp_page_template','default'),(4490,2247,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We assess plans and provide tailored machinery.\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our company\\u2019s strength lies in our team, who have developed groundbreaking machinery and equipment.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/signature.png\",\"id\":1520},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":150,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Awards Winner\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5021,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Satisfied Clients\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":201,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Active projects\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/home-image-01.png\",\"id\":843},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-32\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-02.jpg\",\"id\":886},\"layout\":\"2\",\"title\":\"201 Award-winning machinery and equipment manufacturing company.\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We help you build your vision with our machinery.\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We approach every project with precision and value clear, simple communication.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"Engineering\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Design\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"Production\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/services-v-1\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 800 250 369\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(1,13,50,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses thrive by providing the latest machinery technology.<\\/p>\",\"text_color\":\"#d6e0fe\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_text\":\"Discover more\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\",\"btn_text\":\"Contact\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_text\":\"Place order\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_text\":\"Make a payment\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#bccbfb\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#021d6c\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4491,2247,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(4493,2248,'_elementor_edit_mode','builder'),(4494,2248,'_elementor_template_type','wp-page'),(4495,2248,'_elementor_version','3.24.7'),(4496,2248,'_wp_page_template','default'),(4497,2248,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We assess plans and provide tailored machinery.\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our company\\u2019s strength lies in our team, who have developed groundbreaking machinery and equipment.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/signature.png\",\"id\":1520},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":150,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Awards Winner\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5021,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Satisfied Clients\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":201,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Active projects\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/home-image-01.png\",\"id\":843},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-32\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-02.jpg\",\"id\":886},\"layout\":\"2\",\"title\":\"201 Award-winning machinery and equipment manufacturing company.\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We help you build your vision with our machinery.\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We approach every project with precision and value clear, simple communication.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"Engineering\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Design\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"Production\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/services-v-1\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 800 250 369\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(1,13,50,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses thrive by providing the latest machinery technology.<\\/p>\",\"text_color\":\"#d6e0fe\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_text\":\"Discover more\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\",\"btn_text\":\"Contact\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_text\":\"Place order\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_text\":\"Make a payment\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#bccbfb\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#021d6c\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4498,2248,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(4500,2249,'_elementor_edit_mode','builder'),(4501,2249,'_elementor_template_type','wp-page'),(4502,2249,'_elementor_version','3.24.7'),(4503,2249,'_wp_page_template','default'),(4504,2249,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We assess plans and provide tailored machinery.\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our company\\u2019s strength lies in our team, who have developed groundbreaking machinery and equipment.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/signature.png\",\"id\":1520},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":150,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Awards Winner\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5021,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Satisfied Clients\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":201,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Active projects\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/home-image-01.png\",\"id\":843},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-32\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-02.jpg\",\"id\":886},\"layout\":\"2\",\"title\":\"201 Award-winning machinery and equipment manufacturing company.\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We help you build your vision with our machinery.\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We approach every project with precision and value clear, simple communication.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"Engineering\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Design\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"Production\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/services-v-1\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 800 250 369\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(1,13,50,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses thrive by providing the latest machinery technology.<\\/p>\",\"text_color\":\"#d6e0fe\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_text\":\"Discover more\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\",\"btn_text\":\"Contact\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_text\":\"Place order\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_text\":\"Make a payment\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#bccbfb\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#021d6c\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4505,2249,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(4507,2250,'_elementor_edit_mode','builder'),(4508,2250,'_elementor_template_type','wp-page'),(4509,2250,'_elementor_version','3.24.7'),(4510,2250,'_wp_page_template','default'),(4511,2250,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We assess plans and provide tailored machinery.\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our company\\u2019s strength lies in our team, who have developed groundbreaking machinery and equipment.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/signature.png\",\"id\":1520},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":150,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Awards Winner\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5021,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Satisfied Clients\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":201,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Active projects\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/home-image-01.png\",\"id\":843},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-32\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-02.jpg\",\"id\":886},\"layout\":\"2\",\"title\":\"201 Award-winning machinery and equipment manufacturing company.\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We help you build your vision with our machinery.\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We approach every project with precision and value clear, simple communication.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"Engineering\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Design\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"Production\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/services-v-1\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 800 250 369\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(1,13,50,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses thrive by providing the latest machinery technology.<\\/p>\",\"text_color\":\"#d6e0fe\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_text\":\"Discover more\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\",\"btn_text\":\"Contact\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_text\":\"Place order\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_text\":\"Make a payment\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#bccbfb\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#021d6c\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4512,2250,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(4516,2251,'_elementor_edit_mode','builder'),(4517,2251,'_elementor_template_type','wp-page'),(4518,2251,'_elementor_version','3.24.7'),(4519,2251,'_wp_page_template','default'),(4520,2251,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We assess plans and provide tailored machinery.\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our company\\u2019s strength lies in our team, who have developed groundbreaking machinery and equipment.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/signature.png\",\"id\":1520},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":150,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Awards Winner\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5021,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Satisfied Clients\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":201,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Active projects\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/home-image-01.png\",\"id\":843},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-32\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-02.jpg\",\"id\":886},\"layout\":\"2\",\"title\":\"201 Award-winning machinery and equipment manufacturing company.\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We help you build your vision with our machinery.\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We approach every project with precision and value clear, simple communication.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"Engineering\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Design\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"Production\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/services-v-1\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 800 250 369\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(1,13,50,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses thrive by providing the latest machinery technology.<\\/p>\",\"text_color\":\"#d6e0fe\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_text\":\"Discover more\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\",\"btn_text\":\"Contact\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_text\":\"Place order\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_text\":\"Make a payment\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#bccbfb\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#021d6c\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4521,2251,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(4525,2252,'_elementor_edit_mode','builder'),(4526,2252,'_elementor_template_type','wp-page'),(4527,2252,'_elementor_version','3.24.7'),(4528,2252,'_wp_page_template','default'),(4529,2252,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We assess plans and provide tailored machinery.\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our company\\u2019s strength lies in our team, who have developed groundbreaking machinery and equipment.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/signature.png\",\"id\":1520},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":150,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Awards Winner\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5021,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Satisfied Clients\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":201,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Active projects\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/home-image-01.png\",\"id\":843},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-32\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-02.jpg\",\"id\":886},\"layout\":\"2\",\"title\":\"201 Award-winning machinery and equipment manufacturing company.\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We help you build your vision with our machinery.\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We approach every project with precision and value clear, simple communication.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"Engineering\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Design\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"Production\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/services-v-1\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 800 250 369\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(1,13,50,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses thrive by providing the latest machinery technology.<\\/p>\",\"text_color\":\"#d6e0fe\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_text\":\"Discover more\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\",\"btn_text\":\"Contact\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_text\":\"Place order\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_text\":\"Make a payment\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#bccbfb\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#021d6c\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4530,2252,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(4534,2253,'_elementor_edit_mode','builder'),(4535,2253,'_elementor_template_type','wp-page'),(4536,2253,'_elementor_version','3.24.7'),(4537,2253,'_wp_page_template','default'),(4538,2253,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We assess plans and provide tailored machinery.\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our company\\u2019s strength lies in our team, who have developed groundbreaking machinery and equipment.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/signature.png\",\"id\":1520},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":150,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Awards Winner\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5021,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Satisfied Clients\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":201,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Active projects\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/home-image-01.png\",\"id\":843},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-32\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-02.jpg\",\"id\":886},\"layout\":\"2\",\"title\":\"201 Award-winning machinery and equipment manufacturing company.\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We help you build your vision with our machinery.\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We approach every project with precision and value clear, simple communication.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"Engineering\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Design\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"Production\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 800 250 369\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(1,13,50,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses thrive by providing the latest machinery technology.<\\/p>\",\"text_color\":\"#d6e0fe\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_text\":\"Discover more\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\",\"btn_text\":\"Contact\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_text\":\"Place order\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_text\":\"Make a payment\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#bccbfb\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#021d6c\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4539,2253,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(4545,2254,'_elementor_edit_mode','builder'),(4546,2254,'_elementor_template_type','wp-page'),(4547,2254,'_elementor_version','3.24.7'),(4548,2254,'_wp_page_template','default'),(4549,2254,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We assess plans and provide tailored machinery.\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our company\\u2019s strength lies in our team, who have developed groundbreaking machinery and equipment.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/signature.png\",\"id\":1520},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":150,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Awards Winner\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5021,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Satisfied Clients\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":201,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Active projects\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/home-image-01.png\",\"id\":843},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-32\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-02.jpg\",\"id\":886},\"layout\":\"2\",\"title\":\"201 Award-winning machinery and equipment manufacturing company.\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We help you build your vision with our machinery.\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We approach every project with precision and value clear, simple communication.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"Engineering\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Design\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"Production\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 800 250 369\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(1,13,50,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses thrive by providing the latest machinery technology.<\\/p>\",\"text_color\":\"#d6e0fe\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_text\":\"Discover more\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\",\"btn_text\":\"Contact\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_text\":\"Place order\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_text\":\"Make a payment\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#bccbfb\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#021d6c\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4550,2254,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(4554,2255,'_elementor_edit_mode','builder'),(4555,2255,'_elementor_template_type','wp-page'),(4556,2255,'_elementor_version','3.24.7'),(4557,2255,'_wp_page_template','default'),(4558,2255,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We assess plans and provide tailored machinery.\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our company\\u2019s strength lies in our team, who have developed groundbreaking machinery and equipment.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/signature.png\",\"id\":1520},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":150,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Awards Winner\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5021,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Satisfied Clients\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":201,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Active projects\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/home-image-01.png\",\"id\":843},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-32\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-02.jpg\",\"id\":886},\"layout\":\"2\",\"title\":\"201 Award-winning machinery and equipment manufacturing company.\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We help you build your vision with our machinery.\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We approach every project with precision and value clear, simple communication.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"Engineering\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Design\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"Production\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 800 250 369\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(1,13,50,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses thrive by providing the latest machinery technology.<\\/p>\",\"text_color\":\"#d6e0fe\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_text\":\"Discover more\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\",\"btn_text\":\"Contact\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_text\":\"Place order\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_text\":\"Make a payment\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#bccbfb\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#021d6c\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4559,2255,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(4563,2256,'_elementor_edit_mode','builder'),(4564,2256,'_elementor_template_type','wp-page'),(4565,2256,'_elementor_version','3.24.7'),(4566,2256,'_wp_page_template','default'),(4567,2256,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We assess plans and provide tailored machinery.\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our company\\u2019s strength lies in our team, who have developed groundbreaking machinery and equipment.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/signature.png\",\"id\":1520},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":150,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Awards Winner\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5021,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Satisfied Clients\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":201,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Active projects\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/home-image-01.png\",\"id\":843},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-32\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-02.jpg\",\"id\":886},\"layout\":\"2\",\"title\":\"201 Award-winning machinery and equipment manufacturing company.\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We help you build your vision with our machinery.\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We approach every project with precision and value clear, simple communication.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"Engineering\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Design\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"Production\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(1,13,50,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses thrive by providing the latest machinery technology.<\\/p>\",\"text_color\":\"#d6e0fe\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_text\":\"Discover more\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\",\"btn_text\":\"Contact\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_text\":\"Place order\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_text\":\"Make a payment\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#bccbfb\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#021d6c\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4568,2256,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(4572,2257,'_elementor_edit_mode','builder'),(4573,2257,'_elementor_template_type','wp-page'),(4574,2257,'_elementor_version','3.24.7'),(4575,2257,'_wp_page_template','default'),(4576,2257,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We assess plans and provide tailored machinery.\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our company\\u2019s strength lies in our team, who have developed groundbreaking machinery and equipment.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/signature.png\",\"id\":1520},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":150,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Awards Winner\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5021,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Satisfied Clients\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":201,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Active projects\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/home-image-01.png\",\"id\":843},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-32\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-02.jpg\",\"id\":886},\"layout\":\"2\",\"title\":\"201 Award-winning machinery and equipment manufacturing company.\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We help you build your vision with our machinery.\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We approach every project with precision and value clear, simple communication.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"Engineering\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Design\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"Production\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(1,13,50,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses thrive by providing the latest machinery technology.<\\/p>\",\"text_color\":\"#d6e0fe\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_text\":\"Discover more\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\",\"btn_text\":\"Contact\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_text\":\"Place order\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_text\":\"Make a payment\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#bccbfb\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#021d6c\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4577,2257,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(4579,2258,'_elementor_edit_mode','builder'),(4580,2258,'_elementor_template_type','wp-page'),(4581,2258,'_elementor_version','3.24.7'),(4582,2258,'_wp_page_template','default'),(4583,2258,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We assess plans and provide tailored machinery.\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our company\\u2019s strength lies in our team, who have developed groundbreaking machinery and equipment.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/signature.png\",\"id\":1520},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":150,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Awards Winner\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5021,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Satisfied Clients\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":201,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Active projects\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/home-image-01.png\",\"id\":843},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-32\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-02.jpg\",\"id\":886},\"layout\":\"2\",\"title\":\"201 Award-winning machinery and equipment manufacturing company.\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We help you build your vision with our machinery.\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We approach every project with precision and value clear, simple communication.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"Engineering\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Design\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"Production\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(1,13,50,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses thrive by providing the latest machinery technology.<\\/p>\",\"text_color\":\"#d6e0fe\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_text\":\"Discover more\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\",\"btn_text\":\"Contact\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_text\":\"Place order\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_text\":\"Make a payment\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#bccbfb\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#021d6c\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4584,2258,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(4586,2259,'_elementor_edit_mode','builder'),(4587,2259,'_elementor_template_type','wp-page'),(4588,2259,'_elementor_version','3.24.7'),(4589,2259,'_wp_page_template','default'),(4590,2259,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We assess plans and provide tailored machinery.\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our company\\u2019s strength lies in our team, who have developed groundbreaking machinery and equipment.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/signature.png\",\"id\":1520},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":150,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Awards Winner\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5021,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Satisfied Clients\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":201,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Active projects\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/home-image-01.png\",\"id\":843},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-32\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-02.jpg\",\"id\":886},\"layout\":\"2\",\"title\":\"201 Award-winning machinery and equipment manufacturing company.\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We help you build your vision with our machinery.\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We approach every project with precision and value clear, simple communication.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"Engineering\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Design\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"Production\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(1,13,50,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses thrive by providing the latest machinery technology.<\\/p>\",\"text_color\":\"#d6e0fe\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#bccbfb\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#021d6c\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4591,2259,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(4604,2261,'_elementor_edit_mode','builder'),(4605,2261,'_elementor_template_type','wp-page'),(4606,2261,'_elementor_version','3.24.7'),(4607,2261,'_wp_page_template','default'),(4608,2261,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We assess plans and provide tailored machinery.\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our company\\u2019s strength lies in our team, who have developed groundbreaking machinery and equipment.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/signature.png\",\"id\":1520},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":150,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Awards Winner\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5021,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Satisfied Clients\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":201,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Active projects\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/home-image-01.png\",\"id\":843},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-32\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-02.jpg\",\"id\":886},\"layout\":\"2\",\"title\":\"201 Award-winning machinery and equipment manufacturing company.\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We help you build your vision with our machinery.\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We approach every project with precision and value clear, simple communication.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"Engineering\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Design\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"Production\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(1,13,50,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses thrive by providing the latest machinery technology.<\\/p>\",\"text_color\":\"#d6e0fe\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#bccbfb\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#021d6c\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4609,2261,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(4612,2262,'_elementor_edit_mode','builder'),(4613,2262,'_elementor_template_type','wp-page'),(4614,2262,'_elementor_version','3.24.7'),(4615,2262,'_wp_page_template','default'),(4616,2262,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We assess plans and provide tailored machinery.\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our company\\u2019s strength lies in our team, who have developed groundbreaking machinery and equipment.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/signature.png\",\"id\":1520},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":150,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Awards Winner\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5021,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Satisfied Clients\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":201,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Active projects\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/home-image-01.png\",\"id\":843},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-32\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-02.jpg\",\"id\":886},\"layout\":\"2\",\"title\":\"201 Award-winning machinery and equipment manufacturing company.\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We help you build your vision with our machinery.\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We approach every project with precision and value clear, simple communication.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"Engineering\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Design\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"Production\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(1,13,50,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses thrive by providing the latest machinery technology.<\\/p>\",\"text_color\":\"#d6e0fe\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#bccbfb\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#021d6c\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4617,2262,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(4620,2263,'_elementor_edit_mode','builder'),(4621,2263,'_elementor_template_type','wp-page'),(4622,2263,'_elementor_version','3.24.7'),(4623,2263,'_wp_page_template','default'),(4624,2263,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We assess plans and provide tailored machinery.\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our company\\u2019s strength lies in our team, who have developed groundbreaking machinery and equipment.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/signature.png\",\"id\":1520},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":150,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Awards Winner\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5021,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Satisfied Clients\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":201,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Active projects\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/Quality-Inspection-Lab-Photo.jpg\",\"id\":2060,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-32\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"space\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-02.jpg\",\"id\":886},\"layout\":\"2\",\"title\":\"201 Award-winning machinery and equipment manufacturing company.\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We help you build your vision with our machinery.\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We approach every project with precision and value clear, simple communication.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"Engineering\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Design\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"Production\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(1,13,50,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses thrive by providing the latest machinery technology.<\\/p>\",\"text_color\":\"#d6e0fe\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#bccbfb\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#021d6c\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4625,2263,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(4628,2264,'_elementor_edit_mode','builder'),(4629,2264,'_elementor_template_type','wp-page'),(4630,2264,'_elementor_version','3.24.7'),(4631,2264,'_wp_page_template','default'),(4632,2264,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We assess plans and provide tailored machinery.\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our company\\u2019s strength lies in our team, who have developed groundbreaking machinery and equipment.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/signature.png\",\"id\":1520},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":150,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Awards Winner\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5021,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Satisfied Clients\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":201,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Active projects\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/Quality-Inspection-Lab-Photo.jpg\",\"id\":2060,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-32\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"space\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-02.jpg\",\"id\":886},\"layout\":\"2\",\"title\":\"201 Award-winning machinery and equipment manufacturing company.\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We help you build your vision with our machinery.\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We approach every project with precision and value clear, simple communication.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"Engineering\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Design\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"Production\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(1,13,50,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses thrive by providing the latest machinery technology.<\\/p>\",\"text_color\":\"#d6e0fe\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#bccbfb\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#021d6c\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4633,2264,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(4635,2265,'_elementor_edit_mode','builder'),(4636,2265,'_elementor_template_type','wp-page'),(4637,2265,'_elementor_version','3.24.7'),(4638,2265,'_wp_page_template','default'),(4639,2265,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We assess plans and provide tailored machinery.\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our company\\u2019s strength lies in our team, who have developed groundbreaking machinery and equipment.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/signature.png\",\"id\":1520},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":150,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Awards Winner\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5021,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Satisfied Clients\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":201,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Active projects\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/Quality-Inspection-Lab-Photo.jpg\",\"id\":2060,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-32\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"space\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-02.jpg\",\"id\":886},\"layout\":\"2\",\"title\":\"201 Award-winning machinery and equipment manufacturing company.\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We help you build your vision with our machinery.\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We approach every project with precision and value clear, simple communication.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"Engineering\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Design\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"Production\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(1,13,50,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses thrive by providing the latest machinery technology.<\\/p>\",\"text_color\":\"#d6e0fe\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#bccbfb\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#021d6c\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4640,2265,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(4642,2266,'_elementor_edit_mode','builder'),(4643,2266,'_elementor_template_type','wp-page'),(4644,2266,'_elementor_version','3.24.7'),(4645,2266,'_wp_page_template','default'),(4646,2266,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We assess plans and provide tailored machinery.\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our company\\u2019s strength lies in our team, who have developed groundbreaking machinery and equipment.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/signature.png\",\"id\":1520},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":150,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Awards Winner\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5021,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Satisfied Clients\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":201,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Active projects\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/Quality-Inspection-Lab-Photo.jpg\",\"id\":2060,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-02.jpg\",\"id\":886},\"layout\":\"2\",\"title\":\"201 Award-winning machinery and equipment manufacturing company.\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We help you build your vision with our machinery.\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We approach every project with precision and value clear, simple communication.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"Engineering\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Design\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"Production\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(1,13,50,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses thrive by providing the latest machinery technology.<\\/p>\",\"text_color\":\"#d6e0fe\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#bccbfb\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#021d6c\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4647,2266,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(4660,2268,'_wp_attached_file','2024/10/rb_51232.png'),(4661,2268,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:2000;s:4:\"file\";s:20:\"2024/10/rb_51232.png\";s:8:\"filesize\";i:3108887;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:{}}}'),(4662,2269,'_wp_attached_file','2024/10/rb_14479.png'),(4663,2269,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:2000;s:4:\"file\";s:20:\"2024/10/rb_14479.png\";s:8:\"filesize\";i:3289255;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:{}}}'),(4664,2270,'_elementor_edit_mode','builder'),(4665,2270,'_elementor_template_type','wp-page'),(4666,2270,'_elementor_version','3.24.7'),(4667,2270,'_wp_page_template','default'),(4668,2270,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We assess plans and provide tailored machinery.\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our company\\u2019s strength lies in our team, who have developed groundbreaking machinery and equipment.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/signature.png\",\"id\":1520},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":150,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Awards Winner\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5021,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Satisfied Clients\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":201,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Active projects\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/Quality-Inspection-Lab-Photo.jpg\",\"id\":2060,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-02.jpg\",\"id\":886},\"layout\":\"2\",\"title\":\"201 Award-winning machinery and equipment manufacturing company.\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We help you build your vision with our machinery.\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We approach every project with precision and value clear, simple communication.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"Engineering\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Design\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"Production\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(1,13,50,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses thrive by providing the latest machinery technology.<\\/p>\",\"text_color\":\"#d6e0fe\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#bccbfb\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#021d6c\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4669,2270,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(4672,2271,'_elementor_edit_mode','builder'),(4673,2271,'_elementor_template_type','wp-page'),(4674,2271,'_elementor_version','3.24.7'),(4675,2271,'_wp_page_template','default'),(4676,2271,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We assess plans and provide tailored machinery.\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our company\\u2019s strength lies in our team, who have developed groundbreaking machinery and equipment.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/signature.png\",\"id\":1520},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":150,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Awards Winner\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5021,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Satisfied Clients\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":201,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Active projects\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/Quality-Inspection-Lab-Photo.jpg\",\"id\":2060,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-02.jpg\",\"id\":886},\"layout\":\"2\",\"title\":\"201 Award-winning machinery and equipment manufacturing company.\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We help you build your vision with our machinery.\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We approach every project with precision and value clear, simple communication.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"Engineering\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Design\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"Production\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(1,13,50,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses thrive by providing the latest machinery technology.<\\/p>\",\"text_color\":\"#d6e0fe\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#bccbfb\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#021d6c\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4677,2271,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(4680,2272,'_elementor_edit_mode','builder'),(4681,2272,'_elementor_template_type','wp-page'),(4682,2272,'_elementor_version','3.24.7'),(4683,2272,'_wp_page_template','default'),(4684,2272,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We assess plans and provide tailored machinery.\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our company\\u2019s strength lies in our team, who have developed groundbreaking machinery and equipment.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/signature.png\",\"id\":1520},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":150,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Awards Winner\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Satisfied Clients\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Active projects\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_14479.png\",\"id\":2269,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"title\":\"198 Award-winning machinery and equipment manufacturing company.\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We help you build your vision with our machinery.\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We approach every project with precision and value clear, simple communication.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"Engineering\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Design\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"Production\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(1,13,50,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses thrive by providing the latest machinery technology.<\\/p>\",\"text_color\":\"#d6e0fe\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#bccbfb\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#021d6c\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4685,2272,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(4688,2273,'_wp_attached_file','2024/10/process-smoothing-interior-cylinder.jpg'),(4689,2273,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:5354;s:6:\"height\";i:3000;s:4:\"file\";s:47:\"2024/10/process-smoothing-interior-cylinder.jpg\";s:8:\"filesize\";i:3819580;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:52:\"The process of smoothing the interior of a cylinder.\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";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:\"The process of smoothing the interior of a cylinder.\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:46:{i:0;s:2:\"ai\";i:1;s:10:\"generative\";i:2;s:9:\"CFC2023CT\";i:3;s:13:\"manufacturing\";i:4;s:3:\"cnc\";i:5;s:4:\"tool\";i:6;s:7:\"process\";i:7;s:8:\"grinding\";i:8;s:8:\"industry\";i:9;s:9:\"precision\";i:10;s:10:\"technology\";i:11;s:5:\"metal\";i:12;s:9:\"machinery\";i:13;s:7:\"machine\";i:14;s:9:\"machining\";i:15;s:7:\"factory\";i:16;s:9:\"equipment\";i:17;s:5:\"wheel\";i:18;s:5:\"steel\";i:19;s:7:\"turning\";i:20;s:8:\"accuracy\";i:21;s:10:\"production\";i:22;s:7:\"grinder\";i:23;s:10:\"industrial\";i:24;s:7:\"diamond\";i:25;s:11:\"engineering\";i:26;s:12:\"metalworking\";i:27;s:8:\"abrasive\";i:28;s:6:\"circle\";i:29;s:11:\"cylindrical\";i:30;s:8:\"rotation\";i:31;s:9:\"finishing\";i:32;s:10:\"processing\";i:33;s:9:\"roughness\";i:34;s:6:\"detail\";i:35;s:4:\"hole\";i:36;s:8:\"workshop\";i:37;s:7:\"surface\";i:38;s:9:\"roundness\";i:39;s:5:\"shaft\";i:40;s:5:\"stone\";i:41;s:11:\"manufacture\";i:42;s:5:\"lathe\";i:43;s:8:\"diameter\";i:44;s:7:\"milling\";i:45;s:10:\"automotive\";}}}'),(4690,2274,'_wp_attached_file','2024/10/4344.jpg'),(4691,2274,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:750;s:4:\"file\";s:16:\"2024/10/4344.jpg\";s:8:\"filesize\";i:544643;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:{}}}'),(4761,2289,'_elementor_edit_mode','builder'),(4762,2289,'_elementor_template_type','kit'),(4763,2289,'_elementor_version','2.9.2'),(4764,2289,'_elementor_page_settings','a:9:{s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:21:\"global_image_lightbox\";s:3:\"yes\";s:11:\"viewport_md\";s:0:\"\";s:11:\"viewport_lg\";s:0:\"\";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:4:{i:0;a:3:{s:3:\"_id\";s:8:\"2755e003\";s:5:\"title\";s:14:\"Saved Color #5\";s:5:\"color\";s:7:\"#4054B2\";}i:1;a:3:{s:3:\"_id\";s:8:\"6a6cd635\";s:5:\"title\";s:14:\"Saved Color #6\";s:5:\"color\";s:7:\"#23A455\";}i:2;a:3:{s:3:\"_id\";s:8:\"1678dc62\";s:5:\"title\";s:14:\"Saved Color #7\";s:5:\"color\";s:4:\"#000\";}i:3;a:3:{s:3:\"_id\";s:8:\"7397ce14\";s:5:\"title\";s:14:\"Saved Color #8\";s:5:\"color\";s:4:\"#FFF\";}}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:16:\"Primary Headline\";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:18:\"Secondary Headline\";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:9:\"Body 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:11:\"Accent Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:15:\"viewport_mobile\";s:0:\"\";s:15:\"viewport_tablet\";s:0:\"\";}'),(4766,1644,'_wp_page_template','default'),(4767,1644,'_elementor_data','[]'),(4768,2290,'_elementor_edit_mode','builder'),(4769,2290,'_elementor_template_type','kit'),(4770,2290,'_elementor_version','2.9.2'),(4771,2290,'_elementor_page_settings','a:9:{s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";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:4:{i:0;a:3:{s:3:\"_id\";s:8:\"2755e003\";s:5:\"title\";s:14:\"Saved Color #5\";s:5:\"color\";s:7:\"#4054B2\";}i:1;a:3:{s:3:\"_id\";s:8:\"6a6cd635\";s:5:\"title\";s:14:\"Saved Color #6\";s:5:\"color\";s:7:\"#23A455\";}i:2;a:3:{s:3:\"_id\";s:8:\"1678dc62\";s:5:\"title\";s:14:\"Saved Color #7\";s:5:\"color\";s:4:\"#000\";}i:3;a:3:{s:3:\"_id\";s:8:\"7397ce14\";s:5:\"title\";s:14:\"Saved Color #8\";s:5:\"color\";s:4:\"#FFF\";}}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:16:\"Primary Headline\";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:18:\"Secondary Headline\";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:9:\"Body 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:11:\"Accent Text\";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:9:\"site_name\";s:7:\"fe2tech\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;}'),(4773,2290,'_wp_page_template','default'),(4774,2290,'_elementor_data','[]'),(4786,2291,'_elementor_edit_mode','builder'),(4787,2291,'_elementor_template_type','wp-page'),(4788,2291,'_elementor_version','3.24.7'),(4789,2291,'_wp_page_template','default'),(4790,2291,'_elementor_data','[{\"id\":\"fcff723\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"5603a87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\"},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}]'),(4794,2292,'_elementor_edit_mode','builder'),(4795,2292,'_elementor_template_type','wp-page'),(4796,2292,'_elementor_version','3.24.7'),(4797,2292,'_wp_page_template','default'),(4798,2292,'_elementor_data','[{\"id\":\"fcff723\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"5603a87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\"},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}]'),(4802,2293,'_elementor_edit_mode','builder'),(4803,2293,'_elementor_template_type','wp-page'),(4804,2293,'_elementor_version','3.24.7'),(4805,2293,'_wp_page_template','default'),(4806,2293,'_elementor_data','[{\"id\":\"fcff723\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"5603a87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2284,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/79e03ae8e5565c08054772.jpg\"},{\"id\":2285,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/28706f78b0c6099850d768.jpg\"},{\"id\":2286,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c20f0a09d5b76ce935a667.jpg\"},{\"id\":2287,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/e31fda1705a9bcf7e5b870.jpg\"}],\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}]'),(4812,2294,'_elementor_edit_mode','builder'),(4813,2294,'_elementor_template_type','wp-page'),(4814,2294,'_elementor_version','3.24.7'),(4815,2294,'_wp_page_template','default'),(4816,2294,'_elementor_data','[{\"id\":\"fcff723\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"5603a87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2284,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/79e03ae8e5565c08054772.jpg\"},{\"id\":2285,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/28706f78b0c6099850d768.jpg\"},{\"id\":2286,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c20f0a09d5b76ce935a667.jpg\"},{\"id\":2287,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/e31fda1705a9bcf7e5b870.jpg\"}],\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}]'),(4820,2295,'_elementor_edit_mode','builder'),(4821,2295,'_elementor_template_type','wp-page'),(4822,2295,'_elementor_version','3.24.7'),(4823,2295,'_wp_page_template','default'),(4824,2295,'_elementor_data','[{\"id\":\"fcff723\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"5603a87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2284,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/79e03ae8e5565c08054772.jpg\"},{\"id\":2285,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/28706f78b0c6099850d768.jpg\"},{\"id\":2286,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c20f0a09d5b76ce935a667.jpg\"},{\"id\":2287,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/e31fda1705a9bcf7e5b870.jpg\"}],\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}]'),(4828,2296,'_elementor_edit_mode','builder'),(4829,2296,'_elementor_template_type','wp-page'),(4830,2296,'_elementor_version','3.24.7'),(4831,2296,'_wp_page_template','default'),(4832,2296,'_elementor_data','[{\"id\":\"fcff723\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"5603a87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2284,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/79e03ae8e5565c08054772.jpg\"},{\"id\":2285,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/28706f78b0c6099850d768.jpg\"},{\"id\":2286,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c20f0a09d5b76ce935a667.jpg\"},{\"id\":2287,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/e31fda1705a9bcf7e5b870.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\"},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}]'),(4854,2301,'_elementor_edit_mode','builder'),(4855,2301,'_elementor_template_type','wp-page'),(4856,2301,'_elementor_version','3.24.7'),(4857,2301,'_wp_page_template','default'),(4858,2301,'_elementor_data','[{\"id\":\"fcff723\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"5603a87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2284,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/79e03ae8e5565c08054772.jpg\"},{\"id\":2285,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/28706f78b0c6099850d768.jpg\"},{\"id\":2286,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c20f0a09d5b76ce935a667.jpg\"},{\"id\":2287,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/e31fda1705a9bcf7e5b870.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\"},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}]'),(4862,2302,'_elementor_edit_mode','builder'),(4863,2302,'_elementor_template_type','wp-page'),(4864,2302,'_elementor_version','3.24.7'),(4865,2302,'_wp_page_template','default'),(4866,2302,'_elementor_data','[{\"id\":\"fcff723\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"5603a87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2284,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/79e03ae8e5565c08054772.jpg\"},{\"id\":2285,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/28706f78b0c6099850d768.jpg\"},{\"id\":2286,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c20f0a09d5b76ce935a667.jpg\"},{\"id\":2287,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/e31fda1705a9bcf7e5b870.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\"},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}]'),(4870,2303,'_elementor_edit_mode','builder'),(4871,2303,'_elementor_template_type','wp-page'),(4872,2303,'_elementor_version','3.24.7'),(4873,2303,'_wp_page_template','default'),(4874,2303,'_elementor_data','[{\"id\":\"fcff723\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"5603a87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2284,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/79e03ae8e5565c08054772.jpg\"},{\"id\":2285,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/28706f78b0c6099850d768.jpg\"},{\"id\":2286,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c20f0a09d5b76ce935a667.jpg\"},{\"id\":2287,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/e31fda1705a9bcf7e5b870.jpg\"},{\"id\":2297,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9505c40d1bb3a2edfba278.jpg\"},{\"id\":2298,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/38db14d3cb6d72332b7c76.jpg\"},{\"id\":2299,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b5ed1be5c45b7d05244a93.jpg\"},{\"id\":2300,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/844e93464cf8f5a6ace9103.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\"},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}]'),(4886,28,'rs_page_bg_color',''),(4887,2128,'_elementor_edit_mode','builder'),(4888,2128,'_elementor_template_type','wp-page'),(4889,2128,'_elementor_version','3.24.7'),(4890,2304,'_elementor_edit_mode','builder'),(4891,2304,'_elementor_template_type','wp-page'),(4892,2304,'_elementor_version','3.24.7'),(4893,2305,'_elementor_edit_mode','builder'),(4894,2305,'_elementor_template_type','wp-page'),(4895,2305,'_elementor_version','3.24.7'),(4896,2128,'_wp_page_template','default'),(4897,2128,'_elementor_data','[{\"id\":\"0766e75\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"e82a045\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"layout\":\"2\",\"filter_default_title\":\"All\",\"button_text\":\"Read more\",\"ct_animate\":\"wow bounceInDown\",\"pagination_type\":\"loadmore\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"show_button\":\"\",\"source\":[\"en|language\"],\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}]'),(4898,2306,'_elementor_edit_mode','builder'),(4899,2306,'_elementor_template_type','wp-page'),(4900,2306,'_elementor_version','3.24.7'),(4901,2306,'_wp_page_template','default'),(4902,2306,'_elementor_data','[{\"id\":\"0766e75\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"e82a045\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"layout\":\"2\",\"filter_default_title\":\"All\",\"button_text\":\"Read more\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}]'),(4909,2307,'_elementor_edit_mode','builder'),(4910,2307,'_elementor_template_type','wp-page'),(4911,2307,'_elementor_version','3.24.7'),(4912,2307,'_wp_page_template','default'),(4913,2307,'_elementor_data','[{\"id\":\"0766e75\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"e82a045\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"layout\":\"2\",\"filter_default_title\":\"All\",\"button_text\":\"Read more\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}]'),(4917,2308,'_elementor_edit_mode','builder'),(4918,2308,'_elementor_template_type','wp-page'),(4919,2308,'_elementor_version','3.24.7'),(4920,2308,'_wp_page_template','default'),(4921,2308,'_elementor_data','[{\"id\":\"0766e75\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"e82a045\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"layout\":\"2\",\"filter_default_title\":\"All\",\"button_text\":\"Read more\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}]'),(4925,2309,'_elementor_edit_mode','builder'),(4926,2309,'_elementor_template_type','wp-page'),(4927,2309,'_elementor_version','3.24.7'),(4928,2309,'_wp_page_template','default'),(4929,2309,'_elementor_data','[{\"id\":\"0766e75\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"e82a045\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"layout\":\"2\",\"filter_default_title\":\"All\",\"button_text\":\"Read more\",\"ct_animate\":\"wow bounceInDown\",\"pagination_type\":\"loadmore\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}]'),(4935,2310,'_elementor_edit_mode','builder'),(4936,2310,'_elementor_template_type','wp-page'),(4937,2310,'_elementor_version','3.24.7'),(4938,2310,'_wp_page_template','default'),(4939,2310,'_elementor_data','[{\"id\":\"0766e75\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"e82a045\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"layout\":\"2\",\"filter_default_title\":\"All\",\"button_text\":\"Read more\",\"ct_animate\":\"wow bounceInDown\",\"pagination_type\":\"loadmore\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}]'),(4943,2311,'_elementor_edit_mode','builder'),(4944,2311,'_elementor_template_type','wp-page'),(4945,2311,'_elementor_version','3.24.7'),(4946,2311,'_wp_page_template','default'),(4947,2311,'_elementor_data','[{\"id\":\"0766e75\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"e82a045\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"layout\":\"2\",\"filter_default_title\":\"All\",\"button_text\":\"Read more\",\"ct_animate\":\"wow bounceInDown\",\"pagination_type\":\"loadmore\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}]'),(4951,2312,'_elementor_edit_mode','builder'),(4952,2312,'_elementor_template_type','wp-page'),(4953,2312,'_elementor_version','3.24.7'),(4954,2312,'_wp_page_template','default'),(4955,2312,'_elementor_data','[{\"id\":\"0766e75\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"e82a045\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"layout\":\"2\",\"filter_default_title\":\"All\",\"button_text\":\"Read more\",\"ct_animate\":\"wow bounceInDown\",\"pagination_type\":\"loadmore\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}]'),(4959,2313,'_elementor_edit_mode','builder'),(4960,2313,'_elementor_template_type','wp-page'),(4961,2313,'_elementor_version','3.24.7'),(4962,2313,'_wp_page_template','default'),(4963,2313,'_elementor_data','[{\"id\":\"0766e75\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"e82a045\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"layout\":\"2\",\"filter_default_title\":\"All\",\"button_text\":\"Read more\",\"ct_animate\":\"wow bounceInDown\",\"pagination_type\":\"loadmore\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}]'),(4965,2314,'_elementor_edit_mode','builder'),(4966,2314,'_elementor_template_type','wp-page'),(4967,2314,'_elementor_version','3.24.7'),(4968,2314,'_wp_page_template','default'),(4969,2314,'_elementor_data','[{\"id\":\"0766e75\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"e82a045\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"layout\":\"2\",\"filter_default_title\":\"All\",\"button_text\":\"Read more\",\"ct_animate\":\"wow bounceInDown\",\"pagination_type\":\"loadmore\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}]'),(4971,2315,'_elementor_edit_mode','builder'),(4972,2315,'_elementor_template_type','wp-page'),(4973,2315,'_elementor_version','3.24.7'),(4974,2315,'_wp_page_template','default'),(4975,2315,'_elementor_data','[{\"id\":\"0766e75\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"e82a045\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"layout\":\"2\",\"filter_default_title\":\"All\",\"button_text\":\"Read more\",\"ct_animate\":\"wow bounceInDown\",\"pagination_type\":\"loadmore\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"show_button\":\"\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}]'),(4979,2316,'_elementor_edit_mode','builder'),(4980,2316,'_elementor_template_type','wp-page'),(4981,2316,'_elementor_version','3.24.7'),(4982,2316,'_wp_page_template','default'),(4983,2316,'_elementor_data','[{\"id\":\"fcff723\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"5603a87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2284,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/79e03ae8e5565c08054772.jpg\"},{\"id\":2285,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/28706f78b0c6099850d768.jpg\"},{\"id\":2286,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c20f0a09d5b76ce935a667.jpg\"},{\"id\":2287,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/e31fda1705a9bcf7e5b870.jpg\"},{\"id\":2297,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9505c40d1bb3a2edfba278.jpg\"},{\"id\":2298,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/38db14d3cb6d72332b7c76.jpg\"},{\"id\":2299,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b5ed1be5c45b7d05244a93.jpg\"},{\"id\":2300,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/844e93464cf8f5a6ace9103.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\"},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}]'),(4987,2317,'_elementor_edit_mode','builder'),(4988,2317,'_elementor_template_type','wp-page'),(4989,2317,'_elementor_version','3.24.7'),(4990,2317,'_wp_page_template','default'),(4991,2317,'_elementor_data','[{\"id\":\"fcff723\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"5603a87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2284,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/79e03ae8e5565c08054772.jpg\"},{\"id\":2285,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/28706f78b0c6099850d768.jpg\"},{\"id\":2286,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c20f0a09d5b76ce935a667.jpg\"},{\"id\":2287,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/e31fda1705a9bcf7e5b870.jpg\"},{\"id\":2297,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9505c40d1bb3a2edfba278.jpg\"},{\"id\":2298,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/38db14d3cb6d72332b7c76.jpg\"},{\"id\":2299,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b5ed1be5c45b7d05244a93.jpg\"},{\"id\":2300,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/844e93464cf8f5a6ace9103.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\"},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}]'),(4995,2318,'_elementor_edit_mode','builder'),(4996,2318,'_elementor_template_type','wp-page'),(4997,2318,'_elementor_version','3.24.7'),(4998,2318,'_wp_page_template','default'),(4999,2318,'_elementor_data','[{\"id\":\"fcff723\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"5603a87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2284,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/79e03ae8e5565c08054772.jpg\"},{\"id\":2285,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/28706f78b0c6099850d768.jpg\"},{\"id\":2286,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c20f0a09d5b76ce935a667.jpg\"},{\"id\":2287,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/e31fda1705a9bcf7e5b870.jpg\"},{\"id\":2297,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9505c40d1bb3a2edfba278.jpg\"},{\"id\":2298,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/38db14d3cb6d72332b7c76.jpg\"},{\"id\":2299,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b5ed1be5c45b7d05244a93.jpg\"},{\"id\":2300,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/844e93464cf8f5a6ace9103.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"gallery_link\":\"attachment\"},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}]'),(5005,2319,'_elementor_edit_mode','builder'),(5006,2319,'_elementor_template_type','wp-page'),(5007,2319,'_elementor_version','3.24.7'),(5008,2319,'_wp_page_template','default'),(5009,2319,'_elementor_data','[{\"id\":\"fcff723\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"5603a87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2284,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/79e03ae8e5565c08054772.jpg\"},{\"id\":2285,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/28706f78b0c6099850d768.jpg\"},{\"id\":2286,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c20f0a09d5b76ce935a667.jpg\"},{\"id\":2287,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/e31fda1705a9bcf7e5b870.jpg\"},{\"id\":2297,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9505c40d1bb3a2edfba278.jpg\"},{\"id\":2298,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/38db14d3cb6d72332b7c76.jpg\"},{\"id\":2299,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b5ed1be5c45b7d05244a93.jpg\"},{\"id\":2300,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/844e93464cf8f5a6ace9103.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"gallery_link\":\"attachment\"},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}]'),(5013,2320,'_elementor_edit_mode','builder'),(5014,2320,'_elementor_template_type','wp-page'),(5015,2320,'_elementor_version','3.24.7'),(5016,2320,'_wp_page_template','default'),(5017,2320,'_elementor_data','[{\"id\":\"fcff723\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"5603a87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2284,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/79e03ae8e5565c08054772.jpg\"},{\"id\":2285,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/28706f78b0c6099850d768.jpg\"},{\"id\":2286,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c20f0a09d5b76ce935a667.jpg\"},{\"id\":2287,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/e31fda1705a9bcf7e5b870.jpg\"},{\"id\":2297,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9505c40d1bb3a2edfba278.jpg\"},{\"id\":2298,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/38db14d3cb6d72332b7c76.jpg\"},{\"id\":2299,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b5ed1be5c45b7d05244a93.jpg\"},{\"id\":2300,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/844e93464cf8f5a6ace9103.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"gallery_link\":\"attachment\"},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}]'),(5021,2321,'_elementor_edit_mode','builder'),(5022,2321,'_elementor_template_type','wp-page'),(5023,2321,'_elementor_version','3.24.7'),(5024,2321,'_wp_page_template','default'),(5025,2321,'_elementor_data','[{\"id\":\"fcff723\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"5603a87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2284,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/79e03ae8e5565c08054772.jpg\"},{\"id\":2285,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/28706f78b0c6099850d768.jpg\"},{\"id\":2286,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c20f0a09d5b76ce935a667.jpg\"},{\"id\":2287,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/e31fda1705a9bcf7e5b870.jpg\"},{\"id\":2297,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9505c40d1bb3a2edfba278.jpg\"},{\"id\":2298,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/38db14d3cb6d72332b7c76.jpg\"},{\"id\":2299,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b5ed1be5c45b7d05244a93.jpg\"},{\"id\":2300,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/844e93464cf8f5a6ace9103.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"gallery_link\":\"none\"},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}]'),(5031,2322,'_elementor_edit_mode','builder'),(5032,2322,'_elementor_template_type','wp-page'),(5033,2322,'_elementor_version','3.24.7'),(5034,2322,'_wp_page_template','default'),(5035,2322,'_elementor_data','[{\"id\":\"fcff723\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"5603a87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2284,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/79e03ae8e5565c08054772.jpg\"},{\"id\":2285,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/28706f78b0c6099850d768.jpg\"},{\"id\":2286,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c20f0a09d5b76ce935a667.jpg\"},{\"id\":2287,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/e31fda1705a9bcf7e5b870.jpg\"},{\"id\":2297,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9505c40d1bb3a2edfba278.jpg\"},{\"id\":2298,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/38db14d3cb6d72332b7c76.jpg\"},{\"id\":2299,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b5ed1be5c45b7d05244a93.jpg\"},{\"id\":2300,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/844e93464cf8f5a6ace9103.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"gallery_link\":\"none\"},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}]'),(5039,2323,'_elementor_edit_mode','builder'),(5040,2323,'_elementor_template_type','wp-page'),(5041,2323,'_elementor_version','3.24.7'),(5042,2323,'_wp_page_template','default'),(5043,2323,'_elementor_data','[{\"id\":\"fcff723\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"5603a87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2284,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/79e03ae8e5565c08054772.jpg\"},{\"id\":2285,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/28706f78b0c6099850d768.jpg\"},{\"id\":2286,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c20f0a09d5b76ce935a667.jpg\"},{\"id\":2287,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/e31fda1705a9bcf7e5b870.jpg\"},{\"id\":2297,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9505c40d1bb3a2edfba278.jpg\"},{\"id\":2298,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/38db14d3cb6d72332b7c76.jpg\"},{\"id\":2299,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b5ed1be5c45b7d05244a93.jpg\"},{\"id\":2300,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/844e93464cf8f5a6ace9103.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"gallery_link\":\"none\"},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}]'),(5047,2324,'_elementor_edit_mode','builder'),(5048,2324,'_elementor_template_type','wp-page'),(5049,2324,'_elementor_version','3.24.7'),(5050,2324,'_wp_page_template','default'),(5051,2324,'_elementor_data','[{\"id\":\"fcff723\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"5603a87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2284,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/79e03ae8e5565c08054772.jpg\"},{\"id\":2285,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/28706f78b0c6099850d768.jpg\"},{\"id\":2286,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c20f0a09d5b76ce935a667.jpg\"},{\"id\":2287,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/e31fda1705a9bcf7e5b870.jpg\"},{\"id\":2297,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9505c40d1bb3a2edfba278.jpg\"},{\"id\":2298,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/38db14d3cb6d72332b7c76.jpg\"},{\"id\":2299,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b5ed1be5c45b7d05244a93.jpg\"},{\"id\":2300,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/844e93464cf8f5a6ace9103.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\"},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}]'),(5055,2325,'_elementor_edit_mode','builder'),(5056,2325,'_elementor_template_type','wp-page'),(5057,2325,'_elementor_version','3.24.7'),(5058,2325,'_wp_page_template','default'),(5059,2325,'_elementor_data','[{\"id\":\"fcff723\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"5603a87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2284,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/79e03ae8e5565c08054772.jpg\"},{\"id\":2285,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/28706f78b0c6099850d768.jpg\"},{\"id\":2286,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c20f0a09d5b76ce935a667.jpg\"},{\"id\":2287,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/e31fda1705a9bcf7e5b870.jpg\"},{\"id\":2297,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9505c40d1bb3a2edfba278.jpg\"},{\"id\":2298,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/38db14d3cb6d72332b7c76.jpg\"},{\"id\":2299,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b5ed1be5c45b7d05244a93.jpg\"},{\"id\":2300,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/844e93464cf8f5a6ace9103.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\"},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}]'),(5061,2326,'_elementor_edit_mode','builder'),(5062,2326,'_elementor_template_type','wp-page'),(5063,2326,'_elementor_version','3.24.7'),(5064,2326,'_wp_page_template','default'),(5065,2326,'_elementor_data','[{\"id\":\"fcff723\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"5603a87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2284,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/79e03ae8e5565c08054772.jpg\"},{\"id\":2285,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/28706f78b0c6099850d768.jpg\"},{\"id\":2286,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c20f0a09d5b76ce935a667.jpg\"},{\"id\":2287,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/e31fda1705a9bcf7e5b870.jpg\"},{\"id\":2297,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9505c40d1bb3a2edfba278.jpg\"},{\"id\":2298,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/38db14d3cb6d72332b7c76.jpg\"},{\"id\":2299,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b5ed1be5c45b7d05244a93.jpg\"},{\"id\":2300,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/844e93464cf8f5a6ace9103.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\"},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}]'),(5067,2327,'_elementor_edit_mode','builder'),(5068,2327,'_elementor_template_type','wp-page'),(5069,2327,'_elementor_version','3.24.7'),(5070,2327,'_wp_page_template','default'),(5071,2327,'_elementor_data','[{\"id\":\"fcff723\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"5603a87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2284,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/79e03ae8e5565c08054772.jpg\"},{\"id\":2285,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/28706f78b0c6099850d768.jpg\"},{\"id\":2286,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c20f0a09d5b76ce935a667.jpg\"},{\"id\":2287,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/e31fda1705a9bcf7e5b870.jpg\"},{\"id\":2297,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9505c40d1bb3a2edfba278.jpg\"},{\"id\":2298,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/38db14d3cb6d72332b7c76.jpg\"},{\"id\":2299,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b5ed1be5c45b7d05244a93.jpg\"},{\"id\":2300,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/844e93464cf8f5a6ace9103.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}]'),(5075,2328,'_wp_attached_file','2024/10/9505c40d1bb3a2edfba278.jpg'),(5076,2328,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:4:\"file\";s:34:\"2024/10/9505c40d1bb3a2edfba278.jpg\";s:8:\"filesize\";i:512654;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:\"8\";s:8:\"keywords\";a:0:{}}}'),(5077,2329,'_wp_attached_file','2024/10/38db14d3cb6d72332b7c76.jpg'),(5078,2329,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:4:\"file\";s:34:\"2024/10/38db14d3cb6d72332b7c76.jpg\";s:8:\"filesize\";i:533936;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:\"8\";s:8:\"keywords\";a:0:{}}}'),(5079,2330,'_wp_attached_file','2024/10/b5ed1be5c45b7d05244a93.jpg'),(5080,2330,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:34:\"2024/10/b5ed1be5c45b7d05244a93.jpg\";s:8:\"filesize\";i:307439;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:\"8\";s:8:\"keywords\";a:0:{}}}'),(5081,2331,'_wp_attached_file','2024/10/844e93464cf8f5a6ace9103.jpg'),(5082,2331,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:35:\"2024/10/844e93464cf8f5a6ace9103.jpg\";s:8:\"filesize\";i:313345;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:\"8\";s:8:\"keywords\";a:0:{}}}'),(5083,2332,'_wp_attached_file','2024/10/795d6c55b3eb0ab553fa94.jpg'),(5084,2332,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:34:\"2024/10/795d6c55b3eb0ab553fa94.jpg\";s:8:\"filesize\";i:357223;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:\"8\";s:8:\"keywords\";a:0:{}}}'),(5085,2333,'_wp_attached_file','2024/10/a2e5a7ee7850c10e984190.jpg'),(5086,2333,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:34:\"2024/10/a2e5a7ee7850c10e984190.jpg\";s:8:\"filesize\";i:406145;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:\"8\";s:8:\"keywords\";a:0:{}}}'),(5087,2334,'_wp_attached_file','2024/10/a2e5a7ee7850c10e984189.jpg'),(5088,2334,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:34:\"2024/10/a2e5a7ee7850c10e984189.jpg\";s:8:\"filesize\";i:406145;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:\"8\";s:8:\"keywords\";a:0:{}}}'),(5089,2335,'_wp_attached_file','2024/10/56c9f8c2277c9e22c76d98.jpg'),(5090,2335,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:591;s:6:\"height\";i:1280;s:4:\"file\";s:34:\"2024/10/56c9f8c2277c9e22c76d98.jpg\";s:8:\"filesize\";i:168647;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:\"8\";s:8:\"keywords\";a:0:{}}}'),(5091,2336,'_wp_attached_file','2024/10/4dc6cecf1171a82ff160101.jpg'),(5092,2336,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:591;s:6:\"height\";i:1280;s:4:\"file\";s:35:\"2024/10/4dc6cecf1171a82ff160101.jpg\";s:8:\"filesize\";i:229824;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:\"8\";s:8:\"keywords\";a:0:{}}}'),(5093,2337,'_wp_attached_file','2024/10/1d260d2fd2916bcf328099.jpg'),(5094,2337,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:34:\"2024/10/1d260d2fd2916bcf328099.jpg\";s:8:\"filesize\";i:248140;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:\"8\";s:8:\"keywords\";a:0:{}}}'),(5095,2338,'_wp_attached_file','2024/10/db3e8e365188e8d6b199119.jpg'),(5096,2338,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:35:\"2024/10/db3e8e365188e8d6b199119.jpg\";s:8:\"filesize\";i:492837;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:\"8\";s:8:\"keywords\";a:0:{}}}'),(5097,2339,'_wp_attached_file','2024/10/b44c1144cefa77a42eeb106.jpg'),(5098,2339,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:591;s:6:\"height\";i:1280;s:4:\"file\";s:35:\"2024/10/b44c1144cefa77a42eeb106.jpg\";s:8:\"filesize\";i:217318;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:\"8\";s:8:\"keywords\";a:0:{}}}'),(5099,2340,'_wp_attached_file','2024/10/d037ea3f35818cdfd590114.jpg'),(5100,2340,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:35:\"2024/10/d037ea3f35818cdfd590114.jpg\";s:8:\"filesize\";i:422044;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:\"8\";s:8:\"keywords\";a:0:{}}}'),(5101,2341,'_wp_attached_file','2024/10/49290422db9c62c23b8d125.jpg'),(5102,2341,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:591;s:6:\"height\";i:1280;s:4:\"file\";s:35:\"2024/10/49290422db9c62c23b8d125.jpg\";s:8:\"filesize\";i:153717;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:\"8\";s:8:\"keywords\";a:0:{}}}'),(5103,2342,'_wp_attached_file','2024/10/49290422db9c62c23b8d124.jpg'),(5104,2342,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:591;s:6:\"height\";i:1280;s:4:\"file\";s:35:\"2024/10/49290422db9c62c23b8d124.jpg\";s:8:\"filesize\";i:153717;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:\"8\";s:8:\"keywords\";a:0:{}}}'),(5105,2343,'_wp_attached_file','2024/10/0497279ff821417f1830122.jpg'),(5106,2343,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:35:\"2024/10/0497279ff821417f1830122.jpg\";s:8:\"filesize\";i:324484;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:\"8\";s:8:\"keywords\";a:0:{}}}'),(5107,2344,'_wp_attached_file','2024/10/4185a68d7933c06d9922111.jpg'),(5108,2344,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:35:\"2024/10/4185a68d7933c06d9922111.jpg\";s:8:\"filesize\";i:414692;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:\"8\";s:8:\"keywords\";a:0:{}}}'),(5109,2345,'_wp_attached_file','2024/10/2664d66209dcb082e9cd117.jpg'),(5110,2345,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:35:\"2024/10/2664d66209dcb082e9cd117.jpg\";s:8:\"filesize\";i:175846;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:\"8\";s:8:\"keywords\";a:0:{}}}'),(5111,2346,'_wp_attached_file','2024/10/995b95524aecf3b2aafd120.jpg'),(5112,2346,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:35:\"2024/10/995b95524aecf3b2aafd120.jpg\";s:8:\"filesize\";i:488540;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:\"8\";s:8:\"keywords\";a:0:{}}}'),(5113,2347,'_wp_attached_file','2024/10/939e3596ea2853760a39104.jpg'),(5114,2347,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:35:\"2024/10/939e3596ea2853760a39104.jpg\";s:8:\"filesize\";i:254355;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:\"8\";s:8:\"keywords\";a:0:{}}}'),(5115,2348,'_wp_attached_file','2024/10/96e17fe9a05719094046105.jpg'),(5116,2348,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:35:\"2024/10/96e17fe9a05719094046105.jpg\";s:8:\"filesize\";i:378027;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:\"8\";s:8:\"keywords\";a:0:{}}}'),(5117,2349,'_wp_attached_file','2024/10/53d3a1db7e65c73b9e74107.jpg'),(5118,2349,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:35:\"2024/10/53d3a1db7e65c73b9e74107.jpg\";s:8:\"filesize\";i:252110;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:\"8\";s:8:\"keywords\";a:0:{}}}'),(5119,2350,'_wp_attached_file','2024/10/46f3befa6144d81a8155123.jpg'),(5120,2350,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:35:\"2024/10/46f3befa6144d81a8155123.jpg\";s:8:\"filesize\";i:274848;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:\"8\";s:8:\"keywords\";a:0:{}}}'),(5121,2351,'_wp_attached_file','2024/10/9d24a12c7e92c7cc9e83108.jpg'),(5122,2351,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:35:\"2024/10/9d24a12c7e92c7cc9e83108.jpg\";s:8:\"filesize\";i:382560;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:\"8\";s:8:\"keywords\";a:0:{}}}'),(5123,2352,'_wp_attached_file','2024/10/9a4b7643a9fd10a349ec115.jpg'),(5124,2352,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:35:\"2024/10/9a4b7643a9fd10a349ec115.jpg\";s:8:\"filesize\";i:268456;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:\"6\";s:8:\"keywords\";a:0:{}}}'),(5125,2353,'_wp_attached_file','2024/10/5a19961f49a1f0ffa9b0118.jpg'),(5126,2353,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:35:\"2024/10/5a19961f49a1f0ffa9b0118.jpg\";s:8:\"filesize\";i:296957;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:\"6\";s:8:\"keywords\";a:0:{}}}'),(5127,2354,'_wp_attached_file','2024/10/04a0fba924179d49c406110.jpg'),(5128,2354,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:35:\"2024/10/04a0fba924179d49c406110.jpg\";s:8:\"filesize\";i:305423;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:\"6\";s:8:\"keywords\";a:0:{}}}'),(5129,2355,'_wp_attached_file','2024/10/0b32f03b2f8596dbcf94112.jpg'),(5130,2355,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:35:\"2024/10/0b32f03b2f8596dbcf94112.jpg\";s:8:\"filesize\";i:306445;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:\"8\";s:8:\"keywords\";a:0:{}}}'),(5131,2356,'_wp_attached_file','2024/10/f7f4c2fc1d42a41cfd53131.jpg'),(5132,2356,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:591;s:6:\"height\";i:1280;s:4:\"file\";s:35:\"2024/10/f7f4c2fc1d42a41cfd53131.jpg\";s:8:\"filesize\";i:188736;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:\"6\";s:8:\"keywords\";a:0:{}}}'),(5133,2357,'_wp_attached_file','2024/10/b1c8bfc1607fd921806e129.jpg'),(5134,2357,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:956;s:6:\"height\";i:1276;s:4:\"file\";s:35:\"2024/10/b1c8bfc1607fd921806e129.jpg\";s:8:\"filesize\";i:376194;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:\"6\";s:8:\"keywords\";a:0:{}}}'),(5135,2358,'_wp_attached_file','2024/10/33ccc7ca1874a12af865132.jpg'),(5136,2358,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:35:\"2024/10/33ccc7ca1874a12af865132.jpg\";s:8:\"filesize\";i:351856;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:\"6\";s:8:\"keywords\";a:0:{}}}'),(5137,2359,'_wp_attached_file','2024/10/0cc88ec1517fe821b16e130.jpg'),(5138,2359,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1274;s:6:\"height\";i:730;s:4:\"file\";s:35:\"2024/10/0cc88ec1517fe821b16e130.jpg\";s:8:\"filesize\";i:273605;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:{}}}'),(5139,2360,'_wp_attached_file','2024/10/2c7e6676b9c8009659d9126.jpg'),(5140,2360,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1276;s:6:\"height\";i:956;s:4:\"file\";s:35:\"2024/10/2c7e6676b9c8009659d9126.jpg\";s:8:\"filesize\";i:300395;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:{}}}'),(5141,2361,'_wp_attached_file','2024/10/57de4ad695682c367579128.jpg'),(5142,2361,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:591;s:4:\"file\";s:35:\"2024/10/57de4ad695682c367579128.jpg\";s:8:\"filesize\";i:228236;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:{}}}'),(5143,2362,'_wp_attached_file','2024/10/62fb72f0ad4e14104d5f127.jpg'),(5144,2362,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:591;s:4:\"file\";s:35:\"2024/10/62fb72f0ad4e14104d5f127.jpg\";s:8:\"filesize\";i:254880;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:{}}}'),(5145,2363,'_wp_attached_file','2024/10/795df95426ea9fb4c6fb116.jpg'),(5146,2363,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:591;s:4:\"file\";s:35:\"2024/10/795df95426ea9fb4c6fb116.jpg\";s:8:\"filesize\";i:131370;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:{}}}'),(5147,2364,'_wp_attached_file','2024/10/97509a5945e7fcb9a5f6113.jpg'),(5148,2364,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1276;s:6:\"height\";i:956;s:4:\"file\";s:35:\"2024/10/97509a5945e7fcb9a5f6113.jpg\";s:8:\"filesize\";i:242376;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:{}}}'),(5149,2365,'_wp_attached_file','2024/10/b9007d06a2b81be642a9109.jpg'),(5150,2365,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1276;s:6:\"height\";i:956;s:4:\"file\";s:35:\"2024/10/b9007d06a2b81be642a9109.jpg\";s:8:\"filesize\";i:171329;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:{}}}'),(5151,2366,'_wp_attached_file','2024/10/da27722fad9114cf4d80121.jpg'),(5152,2366,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1276;s:6:\"height\";i:956;s:4:\"file\";s:35:\"2024/10/da27722fad9114cf4d80121.jpg\";s:8:\"filesize\";i:258312;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:{}}}'),(5153,2367,'_wp_attached_file','2024/10/1ab1f4b72b099257cb1897.jpg'),(5154,2367,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:591;s:4:\"file\";s:34:\"2024/10/1ab1f4b72b099257cb1897.jpg\";s:8:\"filesize\";i:112788;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:{}}}'),(5155,2368,'_wp_attached_file','2024/10/4af3fbfb24459d1bc45484.jpg'),(5156,2368,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:34:\"2024/10/4af3fbfb24459d1bc45484.jpg\";s:8:\"filesize\";i:576161;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:{}}}'),(5157,2369,'_wp_attached_file','2024/10/7cde64d6bb6802365b79102.jpg'),(5158,2369,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1276;s:6:\"height\";i:956;s:4:\"file\";s:35:\"2024/10/7cde64d6bb6802365b79102.jpg\";s:8:\"filesize\";i:306748;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:{}}}'),(5159,2370,'_wp_attached_file','2024/10/7ef794f14b4ff211ab5e91.jpg'),(5160,2370,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1276;s:6:\"height\";i:956;s:4:\"file\";s:34:\"2024/10/7ef794f14b4ff211ab5e91.jpg\";s:8:\"filesize\";i:118762;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:{}}}'),(5161,2371,'_wp_attached_file','2024/10/7ef794f14b4ff211ab5e92.jpg'),(5162,2371,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1276;s:6:\"height\";i:956;s:4:\"file\";s:34:\"2024/10/7ef794f14b4ff211ab5e92.jpg\";s:8:\"filesize\";i:118762;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:{}}}'),(5163,2372,'_wp_attached_file','2024/10/8ea396aa4914f04aa90588.jpg'),(5164,2372,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:720;s:4:\"file\";s:34:\"2024/10/8ea396aa4914f04aa90588.jpg\";s:8:\"filesize\";i:249860;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:{}}}'),(5165,2373,'_wp_attached_file','2024/10/41a76fafb011094f500096.jpg'),(5166,2373,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1276;s:6:\"height\";i:956;s:4:\"file\";s:34:\"2024/10/41a76fafb011094f500096.jpg\";s:8:\"filesize\";i:119070;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:{}}}'),(5167,2374,'_wp_attached_file','2024/10/284ee1483ef687a8dee795.jpg'),(5168,2374,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1276;s:6:\"height\";i:956;s:4:\"file\";s:34:\"2024/10/284ee1483ef687a8dee795.jpg\";s:8:\"filesize\";i:230023;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:{}}}'),(5169,2375,'_wp_attached_file','2024/10/c010d91906a7bff9e6b685.jpg'),(5170,2375,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:34:\"2024/10/c010d91906a7bff9e6b685.jpg\";s:8:\"filesize\";i:482294;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:{}}}'),(5171,2376,'_wp_attached_file','2024/10/c546934e4cf0f5aeace1100.jpg'),(5172,2376,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:591;s:4:\"file\";s:35:\"2024/10/c546934e4cf0f5aeace1100.jpg\";s:8:\"filesize\";i:96716;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:{}}}'),(5173,2377,'_wp_attached_file','2024/10/ccd73edee160583e017187.jpg'),(5174,2377,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:960;s:4:\"file\";s:34:\"2024/10/ccd73edee160583e017187.jpg\";s:8:\"filesize\";i:178117;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:{}}}'),(5175,2378,'_wp_attached_file','2024/10/dfb58bbd5403ed5db41286.jpg'),(5176,2378,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:34:\"2024/10/dfb58bbd5403ed5db41286.jpg\";s:8:\"filesize\";i:492841;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:{}}}'),(5177,2379,'_wp_attached_file','2024/10/42f158f887463e18675775.jpg'),(5178,2379,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:34:\"2024/10/42f158f887463e18675775.jpg\";s:8:\"filesize\";i:538656;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:{}}}'),(5179,2380,'_wp_attached_file','2024/10/57c577cda873112d486282.jpg'),(5180,2380,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:34:\"2024/10/57c577cda873112d486282.jpg\";s:8:\"filesize\";i:496185;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:{}}}'),(5181,2381,'_wp_attached_file','2024/10/91a553a38c1d35436c0c83.jpg'),(5182,2381,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:34:\"2024/10/91a553a38c1d35436c0c83.jpg\";s:8:\"filesize\";i:526481;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:{}}}'),(5183,2382,'_wp_attached_file','2024/10/350f2406fbb842e61ba980.jpg'),(5184,2382,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:34:\"2024/10/350f2406fbb842e61ba980.jpg\";s:8:\"filesize\";i:482047;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:{}}}'),(5185,2383,'_wp_attached_file','2024/10/350f2406fbb842e61ba981.jpg'),(5186,2383,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:34:\"2024/10/350f2406fbb842e61ba981.jpg\";s:8:\"filesize\";i:482047;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:{}}}'),(5187,2384,'_wp_attached_file','2024/10/1289df8f0031b96fe02079.jpg'),(5188,2384,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:34:\"2024/10/1289df8f0031b96fe02079.jpg\";s:8:\"filesize\";i:481549;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:{}}}'),(5189,2385,'_wp_attached_file','2024/10/4480b4896b37d2698b2677.jpg'),(5190,2385,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:944;s:4:\"file\";s:34:\"2024/10/4480b4896b37d2698b2677.jpg\";s:8:\"filesize\";i:481186;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:{}}}'),(5191,2386,'_wp_attached_file','2024/10/a4888f80503ee960b02f74.jpg'),(5192,2386,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:34:\"2024/10/a4888f80503ee960b02f74.jpg\";s:8:\"filesize\";i:622221;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:{}}}'),(5193,2387,'_wp_attached_file','2024/10/07c54ece9170282e716171.jpg'),(5194,2387,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:34:\"2024/10/07c54ece9170282e716171.jpg\";s:8:\"filesize\";i:620132;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:{}}}'),(5195,2388,'_wp_attached_file','2024/10/8d79cb7114cfad91f4de73.jpg'),(5196,2388,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:34:\"2024/10/8d79cb7114cfad91f4de73.jpg\";s:8:\"filesize\";i:593240;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:{}}}'),(5197,2389,'_wp_attached_file','2024/10/79e03ae8e5565c08054772.jpg'),(5198,2389,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:34:\"2024/10/79e03ae8e5565c08054772.jpg\";s:8:\"filesize\";i:551154;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:{}}}'),(5199,2390,'_wp_attached_file','2024/10/28706f78b0c6099850d768.jpg'),(5200,2390,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1161;s:6:\"height\";i:891;s:4:\"file\";s:34:\"2024/10/28706f78b0c6099850d768.jpg\";s:8:\"filesize\";i:271686;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:{}}}'),(5201,2391,'_wp_attached_file','2024/10/c20f0a09d5b76ce935a667.jpg'),(5202,2391,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:34:\"2024/10/c20f0a09d5b76ce935a667.jpg\";s:8:\"filesize\";i:640649;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:{}}}'),(5203,2392,'_wp_attached_file','2024/10/e31fda1705a9bcf7e5b870.jpg'),(5204,2392,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:34:\"2024/10/e31fda1705a9bcf7e5b870.jpg\";s:8:\"filesize\";i:595221;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:{}}}'),(5214,2394,'_elementor_edit_mode','builder'),(5215,2394,'_elementor_template_type','wp-page'),(5216,2394,'_elementor_version','3.24.7'),(5217,2394,'_wp_page_template','default'),(5218,2394,'_elementor_data','[{\"id\":\"fcff723\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"5603a87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2284,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/79e03ae8e5565c08054772.jpg\"},{\"id\":2285,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/28706f78b0c6099850d768.jpg\"},{\"id\":2286,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c20f0a09d5b76ce935a667.jpg\"},{\"id\":2287,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/e31fda1705a9bcf7e5b870.jpg\"},{\"id\":2297,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9505c40d1bb3a2edfba278.jpg\"},{\"id\":2298,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/38db14d3cb6d72332b7c76.jpg\"},{\"id\":2299,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b5ed1be5c45b7d05244a93.jpg\"},{\"id\":2300,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/844e93464cf8f5a6ace9103.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}]'),(5222,2395,'_elementor_edit_mode','builder'),(5223,2395,'_elementor_template_type','wp-page'),(5224,2395,'_elementor_version','3.24.7'),(5225,2395,'_wp_page_template','default'),(5226,2395,'_elementor_data','[{\"id\":\"fcff723\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"5603a87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2284,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/79e03ae8e5565c08054772.jpg\"},{\"id\":2285,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/28706f78b0c6099850d768.jpg\"},{\"id\":2286,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c20f0a09d5b76ce935a667.jpg\"},{\"id\":2287,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/e31fda1705a9bcf7e5b870.jpg\"},{\"id\":2297,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9505c40d1bb3a2edfba278.jpg\"},{\"id\":2298,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/38db14d3cb6d72332b7c76.jpg\"},{\"id\":2299,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b5ed1be5c45b7d05244a93.jpg\"},{\"id\":2300,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/844e93464cf8f5a6ace9103.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}]'),(5230,2396,'_elementor_edit_mode','builder'),(5231,2396,'_elementor_template_type','wp-page'),(5232,2396,'_elementor_version','3.24.7'),(5233,2396,'_wp_page_template','default'),(5234,2396,'_elementor_data','[{\"id\":\"fcff723\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"5603a87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2328,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9505c40d1bb3a2edfba278.jpg\"},{\"id\":2329,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/38db14d3cb6d72332b7c76.jpg\"},{\"id\":2330,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b5ed1be5c45b7d05244a93.jpg\"},{\"id\":2331,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/844e93464cf8f5a6ace9103.jpg\"},{\"id\":2332,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/795d6c55b3eb0ab553fa94.jpg\"},{\"id\":2333,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/a2e5a7ee7850c10e984190.jpg\"},{\"id\":2334,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/a2e5a7ee7850c10e984189.jpg\"},{\"id\":2336,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4dc6cecf1171a82ff160101.jpg\"},{\"id\":2337,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1d260d2fd2916bcf328099.jpg\"},{\"id\":2338,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/db3e8e365188e8d6b199119.jpg\"},{\"id\":2339,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b44c1144cefa77a42eeb106.jpg\"},{\"id\":2340,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/d037ea3f35818cdfd590114.jpg\"},{\"id\":2341,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/49290422db9c62c23b8d125.jpg\"},{\"id\":2342,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/49290422db9c62c23b8d124.jpg\"},{\"id\":2343,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/0497279ff821417f1830122.jpg\"},{\"id\":2344,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4185a68d7933c06d9922111.jpg\"},{\"id\":2345,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2664d66209dcb082e9cd117.jpg\"},{\"id\":2346,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/995b95524aecf3b2aafd120.jpg\"},{\"id\":2347,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/939e3596ea2853760a39104.jpg\"},{\"id\":2348,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/96e17fe9a05719094046105.jpg\"},{\"id\":2349,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/53d3a1db7e65c73b9e74107.jpg\"},{\"id\":2350,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/46f3befa6144d81a8155123.jpg\"},{\"id\":2351,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9d24a12c7e92c7cc9e83108.jpg\"},{\"id\":2352,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9a4b7643a9fd10a349ec115.jpg\"},{\"id\":2353,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/5a19961f49a1f0ffa9b0118.jpg\"},{\"id\":2355,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/0b32f03b2f8596dbcf94112.jpg\"},{\"id\":2356,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/f7f4c2fc1d42a41cfd53131.jpg\"},{\"id\":2357,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b1c8bfc1607fd921806e129.jpg\"},{\"id\":2358,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/33ccc7ca1874a12af865132.jpg\"},{\"id\":2359,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/0cc88ec1517fe821b16e130.jpg\"},{\"id\":2360,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2c7e6676b9c8009659d9126.jpg\"},{\"id\":2361,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/57de4ad695682c367579128.jpg\"},{\"id\":2362,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/62fb72f0ad4e14104d5f127.jpg\"},{\"id\":2368,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4af3fbfb24459d1bc45484.jpg\"},{\"id\":2367,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1ab1f4b72b099257cb1897.jpg\"},{\"id\":2366,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/da27722fad9114cf4d80121.jpg\"},{\"id\":2365,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b9007d06a2b81be642a9109.jpg\"},{\"id\":2364,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/97509a5945e7fcb9a5f6113.jpg\"},{\"id\":2363,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/795df95426ea9fb4c6fb116.jpg\"},{\"id\":2369,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/7cde64d6bb6802365b79102.jpg\"},{\"id\":2370,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/7ef794f14b4ff211ab5e91.jpg\"},{\"id\":2371,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/7ef794f14b4ff211ab5e92.jpg\"},{\"id\":2372,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/8ea396aa4914f04aa90588.jpg\"},{\"id\":2373,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/41a76fafb011094f500096.jpg\"},{\"id\":2374,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/284ee1483ef687a8dee795.jpg\"},{\"id\":2380,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/57c577cda873112d486282.jpg\"},{\"id\":2379,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/42f158f887463e18675775.jpg\"},{\"id\":2378,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/dfb58bbd5403ed5db41286.jpg\"},{\"id\":2377,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/ccd73edee160583e017187.jpg\"},{\"id\":2376,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c546934e4cf0f5aeace1100.jpg\"},{\"id\":2375,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c010d91906a7bff9e6b685.jpg\"},{\"id\":2381,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/91a553a38c1d35436c0c83.jpg\"},{\"id\":2382,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/350f2406fbb842e61ba980.jpg\"},{\"id\":2383,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/350f2406fbb842e61ba981.jpg\"},{\"id\":2384,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1289df8f0031b96fe02079.jpg\"},{\"id\":2385,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4480b4896b37d2698b2677.jpg\"},{\"id\":2386,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/a4888f80503ee960b02f74.jpg\"},{\"id\":2392,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/e31fda1705a9bcf7e5b870.jpg\"},{\"id\":2391,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c20f0a09d5b76ce935a667.jpg\"},{\"id\":2390,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/28706f78b0c6099850d768.jpg\"},{\"id\":2389,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/79e03ae8e5565c08054772.jpg\"},{\"id\":2387,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/07c54ece9170282e716171.jpg\"},{\"id\":2388,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/8d79cb7114cfad91f4de73.jpg\"},{\"id\":2335,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/56c9f8c2277c9e22c76d98.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}]'),(5240,2397,'_elementor_edit_mode','builder'),(5241,2397,'_elementor_template_type','wp-page'),(5242,2397,'_elementor_version','3.24.7'),(5243,2397,'_wp_page_template','default'),(5244,2397,'_elementor_data','[{\"id\":\"fcff723\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"5603a87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2328,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9505c40d1bb3a2edfba278.jpg\"},{\"id\":2329,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/38db14d3cb6d72332b7c76.jpg\"},{\"id\":2330,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b5ed1be5c45b7d05244a93.jpg\"},{\"id\":2331,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/844e93464cf8f5a6ace9103.jpg\"},{\"id\":2332,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/795d6c55b3eb0ab553fa94.jpg\"},{\"id\":2333,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/a2e5a7ee7850c10e984190.jpg\"},{\"id\":2334,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/a2e5a7ee7850c10e984189.jpg\"},{\"id\":2336,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4dc6cecf1171a82ff160101.jpg\"},{\"id\":2337,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1d260d2fd2916bcf328099.jpg\"},{\"id\":2338,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/db3e8e365188e8d6b199119.jpg\"},{\"id\":2339,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b44c1144cefa77a42eeb106.jpg\"},{\"id\":2340,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/d037ea3f35818cdfd590114.jpg\"},{\"id\":2341,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/49290422db9c62c23b8d125.jpg\"},{\"id\":2342,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/49290422db9c62c23b8d124.jpg\"},{\"id\":2343,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/0497279ff821417f1830122.jpg\"},{\"id\":2344,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4185a68d7933c06d9922111.jpg\"},{\"id\":2345,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2664d66209dcb082e9cd117.jpg\"},{\"id\":2346,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/995b95524aecf3b2aafd120.jpg\"},{\"id\":2347,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/939e3596ea2853760a39104.jpg\"},{\"id\":2348,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/96e17fe9a05719094046105.jpg\"},{\"id\":2349,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/53d3a1db7e65c73b9e74107.jpg\"},{\"id\":2350,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/46f3befa6144d81a8155123.jpg\"},{\"id\":2351,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9d24a12c7e92c7cc9e83108.jpg\"},{\"id\":2352,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9a4b7643a9fd10a349ec115.jpg\"},{\"id\":2353,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/5a19961f49a1f0ffa9b0118.jpg\"},{\"id\":2355,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/0b32f03b2f8596dbcf94112.jpg\"},{\"id\":2356,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/f7f4c2fc1d42a41cfd53131.jpg\"},{\"id\":2357,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b1c8bfc1607fd921806e129.jpg\"},{\"id\":2358,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/33ccc7ca1874a12af865132.jpg\"},{\"id\":2359,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/0cc88ec1517fe821b16e130.jpg\"},{\"id\":2360,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2c7e6676b9c8009659d9126.jpg\"},{\"id\":2361,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/57de4ad695682c367579128.jpg\"},{\"id\":2362,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/62fb72f0ad4e14104d5f127.jpg\"},{\"id\":2368,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4af3fbfb24459d1bc45484.jpg\"},{\"id\":2367,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1ab1f4b72b099257cb1897.jpg\"},{\"id\":2366,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/da27722fad9114cf4d80121.jpg\"},{\"id\":2365,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b9007d06a2b81be642a9109.jpg\"},{\"id\":2364,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/97509a5945e7fcb9a5f6113.jpg\"},{\"id\":2363,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/795df95426ea9fb4c6fb116.jpg\"},{\"id\":2369,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/7cde64d6bb6802365b79102.jpg\"},{\"id\":2370,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/7ef794f14b4ff211ab5e91.jpg\"},{\"id\":2371,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/7ef794f14b4ff211ab5e92.jpg\"},{\"id\":2372,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/8ea396aa4914f04aa90588.jpg\"},{\"id\":2373,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/41a76fafb011094f500096.jpg\"},{\"id\":2374,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/284ee1483ef687a8dee795.jpg\"},{\"id\":2380,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/57c577cda873112d486282.jpg\"},{\"id\":2379,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/42f158f887463e18675775.jpg\"},{\"id\":2378,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/dfb58bbd5403ed5db41286.jpg\"},{\"id\":2377,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/ccd73edee160583e017187.jpg\"},{\"id\":2376,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c546934e4cf0f5aeace1100.jpg\"},{\"id\":2375,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c010d91906a7bff9e6b685.jpg\"},{\"id\":2381,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/91a553a38c1d35436c0c83.jpg\"},{\"id\":2382,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/350f2406fbb842e61ba980.jpg\"},{\"id\":2383,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/350f2406fbb842e61ba981.jpg\"},{\"id\":2384,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1289df8f0031b96fe02079.jpg\"},{\"id\":2385,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4480b4896b37d2698b2677.jpg\"},{\"id\":2386,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/a4888f80503ee960b02f74.jpg\"},{\"id\":2392,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/e31fda1705a9bcf7e5b870.jpg\"},{\"id\":2391,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c20f0a09d5b76ce935a667.jpg\"},{\"id\":2390,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/28706f78b0c6099850d768.jpg\"},{\"id\":2389,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/79e03ae8e5565c08054772.jpg\"},{\"id\":2387,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/07c54ece9170282e716171.jpg\"},{\"id\":2388,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/8d79cb7114cfad91f4de73.jpg\"},{\"id\":2335,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/56c9f8c2277c9e22c76d98.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}]'),(5248,2398,'_elementor_edit_mode','builder'),(5249,2398,'_elementor_template_type','wp-page'),(5250,2398,'_elementor_version','3.24.7'),(5251,2398,'_wp_page_template','default'),(5252,2398,'_elementor_data','[{\"id\":\"fcff723\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"5603a87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2328,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9505c40d1bb3a2edfba278.jpg\"},{\"id\":2329,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/38db14d3cb6d72332b7c76.jpg\"},{\"id\":2330,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b5ed1be5c45b7d05244a93.jpg\"},{\"id\":2331,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/844e93464cf8f5a6ace9103.jpg\"},{\"id\":2332,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/795d6c55b3eb0ab553fa94.jpg\"},{\"id\":2333,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/a2e5a7ee7850c10e984190.jpg\"},{\"id\":2334,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/a2e5a7ee7850c10e984189.jpg\"},{\"id\":2336,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4dc6cecf1171a82ff160101.jpg\"},{\"id\":2337,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1d260d2fd2916bcf328099.jpg\"},{\"id\":2338,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/db3e8e365188e8d6b199119.jpg\"},{\"id\":2339,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b44c1144cefa77a42eeb106.jpg\"},{\"id\":2340,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/d037ea3f35818cdfd590114.jpg\"},{\"id\":2341,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/49290422db9c62c23b8d125.jpg\"},{\"id\":2342,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/49290422db9c62c23b8d124.jpg\"},{\"id\":2343,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/0497279ff821417f1830122.jpg\"},{\"id\":2344,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4185a68d7933c06d9922111.jpg\"},{\"id\":2345,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2664d66209dcb082e9cd117.jpg\"},{\"id\":2346,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/995b95524aecf3b2aafd120.jpg\"},{\"id\":2347,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/939e3596ea2853760a39104.jpg\"},{\"id\":2348,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/96e17fe9a05719094046105.jpg\"},{\"id\":2349,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/53d3a1db7e65c73b9e74107.jpg\"},{\"id\":2350,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/46f3befa6144d81a8155123.jpg\"},{\"id\":2351,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9d24a12c7e92c7cc9e83108.jpg\"},{\"id\":2352,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9a4b7643a9fd10a349ec115.jpg\"},{\"id\":2353,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/5a19961f49a1f0ffa9b0118.jpg\"},{\"id\":2355,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/0b32f03b2f8596dbcf94112.jpg\"},{\"id\":2356,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/f7f4c2fc1d42a41cfd53131.jpg\"},{\"id\":2357,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b1c8bfc1607fd921806e129.jpg\"},{\"id\":2358,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/33ccc7ca1874a12af865132.jpg\"},{\"id\":2359,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/0cc88ec1517fe821b16e130.jpg\"},{\"id\":2360,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2c7e6676b9c8009659d9126.jpg\"},{\"id\":2361,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/57de4ad695682c367579128.jpg\"},{\"id\":2362,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/62fb72f0ad4e14104d5f127.jpg\"},{\"id\":2368,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4af3fbfb24459d1bc45484.jpg\"},{\"id\":2367,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1ab1f4b72b099257cb1897.jpg\"},{\"id\":2366,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/da27722fad9114cf4d80121.jpg\"},{\"id\":2365,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b9007d06a2b81be642a9109.jpg\"},{\"id\":2364,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/97509a5945e7fcb9a5f6113.jpg\"},{\"id\":2363,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/795df95426ea9fb4c6fb116.jpg\"},{\"id\":2369,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/7cde64d6bb6802365b79102.jpg\"},{\"id\":2370,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/7ef794f14b4ff211ab5e91.jpg\"},{\"id\":2371,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/7ef794f14b4ff211ab5e92.jpg\"},{\"id\":2372,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/8ea396aa4914f04aa90588.jpg\"},{\"id\":2373,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/41a76fafb011094f500096.jpg\"},{\"id\":2374,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/284ee1483ef687a8dee795.jpg\"},{\"id\":2380,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/57c577cda873112d486282.jpg\"},{\"id\":2379,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/42f158f887463e18675775.jpg\"},{\"id\":2378,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/dfb58bbd5403ed5db41286.jpg\"},{\"id\":2377,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/ccd73edee160583e017187.jpg\"},{\"id\":2376,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c546934e4cf0f5aeace1100.jpg\"},{\"id\":2375,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c010d91906a7bff9e6b685.jpg\"},{\"id\":2381,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/91a553a38c1d35436c0c83.jpg\"},{\"id\":2382,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/350f2406fbb842e61ba980.jpg\"},{\"id\":2383,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/350f2406fbb842e61ba981.jpg\"},{\"id\":2384,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1289df8f0031b96fe02079.jpg\"},{\"id\":2385,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4480b4896b37d2698b2677.jpg\"},{\"id\":2386,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/a4888f80503ee960b02f74.jpg\"},{\"id\":2392,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/e31fda1705a9bcf7e5b870.jpg\"},{\"id\":2391,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c20f0a09d5b76ce935a667.jpg\"},{\"id\":2390,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/28706f78b0c6099850d768.jpg\"},{\"id\":2389,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/79e03ae8e5565c08054772.jpg\"},{\"id\":2387,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/07c54ece9170282e716171.jpg\"},{\"id\":2388,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/8d79cb7114cfad91f4de73.jpg\"},{\"id\":2335,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/56c9f8c2277c9e22c76d98.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}]'),(5256,2399,'_elementor_edit_mode','builder'),(5257,2399,'_elementor_template_type','wp-page'),(5258,2399,'_elementor_version','3.24.7'),(5259,2399,'_wp_page_template','default'),(5260,2399,'_elementor_data','[{\"id\":\"fcff723\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"5603a87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2328,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9505c40d1bb3a2edfba278.jpg\"},{\"id\":2329,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/38db14d3cb6d72332b7c76.jpg\"},{\"id\":2330,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b5ed1be5c45b7d05244a93.jpg\"},{\"id\":2331,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/844e93464cf8f5a6ace9103.jpg\"},{\"id\":2332,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/795d6c55b3eb0ab553fa94.jpg\"},{\"id\":2333,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/a2e5a7ee7850c10e984190.jpg\"},{\"id\":2337,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1d260d2fd2916bcf328099.jpg\"},{\"id\":2338,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/db3e8e365188e8d6b199119.jpg\"},{\"id\":2340,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/d037ea3f35818cdfd590114.jpg\"},{\"id\":2343,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/0497279ff821417f1830122.jpg\"},{\"id\":2344,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4185a68d7933c06d9922111.jpg\"},{\"id\":2345,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2664d66209dcb082e9cd117.jpg\"},{\"id\":2346,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/995b95524aecf3b2aafd120.jpg\"},{\"id\":2348,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/96e17fe9a05719094046105.jpg\"},{\"id\":2349,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/53d3a1db7e65c73b9e74107.jpg\"},{\"id\":2350,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/46f3befa6144d81a8155123.jpg\"},{\"id\":2351,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9d24a12c7e92c7cc9e83108.jpg\"},{\"id\":2352,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9a4b7643a9fd10a349ec115.jpg\"},{\"id\":2353,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/5a19961f49a1f0ffa9b0118.jpg\"},{\"id\":2355,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/0b32f03b2f8596dbcf94112.jpg\"},{\"id\":2357,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b1c8bfc1607fd921806e129.jpg\"},{\"id\":2358,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/33ccc7ca1874a12af865132.jpg\"},{\"id\":2360,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2c7e6676b9c8009659d9126.jpg\"},{\"id\":2336,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4dc6cecf1171a82ff160101.jpg\"},{\"id\":2368,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4af3fbfb24459d1bc45484.jpg\"},{\"id\":2339,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b44c1144cefa77a42eeb106.jpg\"},{\"id\":2366,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/da27722fad9114cf4d80121.jpg\"},{\"id\":2365,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b9007d06a2b81be642a9109.jpg\"},{\"id\":2364,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/97509a5945e7fcb9a5f6113.jpg\"},{\"id\":2369,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/7cde64d6bb6802365b79102.jpg\"},{\"id\":2370,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/7ef794f14b4ff211ab5e91.jpg\"},{\"id\":2373,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/41a76fafb011094f500096.jpg\"},{\"id\":2374,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/284ee1483ef687a8dee795.jpg\"},{\"id\":2380,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/57c577cda873112d486282.jpg\"},{\"id\":2379,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/42f158f887463e18675775.jpg\"},{\"id\":2378,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/dfb58bbd5403ed5db41286.jpg\"},{\"id\":2377,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/ccd73edee160583e017187.jpg\"},{\"id\":2375,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c010d91906a7bff9e6b685.jpg\"},{\"id\":2381,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/91a553a38c1d35436c0c83.jpg\"},{\"id\":2382,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/350f2406fbb842e61ba980.jpg\"},{\"id\":2384,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1289df8f0031b96fe02079.jpg\"},{\"id\":2386,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/a4888f80503ee960b02f74.jpg\"},{\"id\":2392,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/e31fda1705a9bcf7e5b870.jpg\"},{\"id\":2391,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c20f0a09d5b76ce935a667.jpg\"},{\"id\":2390,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/28706f78b0c6099850d768.jpg\"},{\"id\":2389,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/79e03ae8e5565c08054772.jpg\"},{\"id\":2387,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/07c54ece9170282e716171.jpg\"},{\"id\":2388,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/8d79cb7114cfad91f4de73.jpg\"},{\"id\":2335,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/56c9f8c2277c9e22c76d98.jpg\"},{\"id\":2341,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/49290422db9c62c23b8d125.jpg\"},{\"id\":2356,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/f7f4c2fc1d42a41cfd53131.jpg\"},{\"id\":2359,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/0cc88ec1517fe821b16e130.jpg\"},{\"id\":2362,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/62fb72f0ad4e14104d5f127.jpg\"},{\"id\":2361,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/57de4ad695682c367579128.jpg\"},{\"id\":2363,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/795df95426ea9fb4c6fb116.jpg\"},{\"id\":2367,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1ab1f4b72b099257cb1897.jpg\"},{\"id\":2372,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/8ea396aa4914f04aa90588.jpg\"},{\"id\":2376,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c546934e4cf0f5aeace1100.jpg\"},{\"id\":2385,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4480b4896b37d2698b2677.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}]'),(5266,2400,'_elementor_edit_mode','builder'),(5267,2400,'_elementor_template_type','wp-page'),(5268,2400,'_elementor_version','3.24.7'),(5269,2400,'_wp_page_template','default'),(5270,2400,'_elementor_data','[{\"id\":\"fcff723\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"5603a87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2328,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9505c40d1bb3a2edfba278.jpg\"},{\"id\":2329,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/38db14d3cb6d72332b7c76.jpg\"},{\"id\":2330,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b5ed1be5c45b7d05244a93.jpg\"},{\"id\":2331,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/844e93464cf8f5a6ace9103.jpg\"},{\"id\":2332,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/795d6c55b3eb0ab553fa94.jpg\"},{\"id\":2333,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/a2e5a7ee7850c10e984190.jpg\"},{\"id\":2337,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1d260d2fd2916bcf328099.jpg\"},{\"id\":2338,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/db3e8e365188e8d6b199119.jpg\"},{\"id\":2340,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/d037ea3f35818cdfd590114.jpg\"},{\"id\":2343,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/0497279ff821417f1830122.jpg\"},{\"id\":2344,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4185a68d7933c06d9922111.jpg\"},{\"id\":2345,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2664d66209dcb082e9cd117.jpg\"},{\"id\":2346,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/995b95524aecf3b2aafd120.jpg\"},{\"id\":2348,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/96e17fe9a05719094046105.jpg\"},{\"id\":2349,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/53d3a1db7e65c73b9e74107.jpg\"},{\"id\":2350,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/46f3befa6144d81a8155123.jpg\"},{\"id\":2351,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9d24a12c7e92c7cc9e83108.jpg\"},{\"id\":2352,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9a4b7643a9fd10a349ec115.jpg\"},{\"id\":2353,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/5a19961f49a1f0ffa9b0118.jpg\"},{\"id\":2355,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/0b32f03b2f8596dbcf94112.jpg\"},{\"id\":2357,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b1c8bfc1607fd921806e129.jpg\"},{\"id\":2358,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/33ccc7ca1874a12af865132.jpg\"},{\"id\":2360,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2c7e6676b9c8009659d9126.jpg\"},{\"id\":2336,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4dc6cecf1171a82ff160101.jpg\"},{\"id\":2368,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4af3fbfb24459d1bc45484.jpg\"},{\"id\":2339,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b44c1144cefa77a42eeb106.jpg\"},{\"id\":2366,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/da27722fad9114cf4d80121.jpg\"},{\"id\":2365,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b9007d06a2b81be642a9109.jpg\"},{\"id\":2364,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/97509a5945e7fcb9a5f6113.jpg\"},{\"id\":2369,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/7cde64d6bb6802365b79102.jpg\"},{\"id\":2370,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/7ef794f14b4ff211ab5e91.jpg\"},{\"id\":2373,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/41a76fafb011094f500096.jpg\"},{\"id\":2374,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/284ee1483ef687a8dee795.jpg\"},{\"id\":2380,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/57c577cda873112d486282.jpg\"},{\"id\":2379,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/42f158f887463e18675775.jpg\"},{\"id\":2378,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/dfb58bbd5403ed5db41286.jpg\"},{\"id\":2377,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/ccd73edee160583e017187.jpg\"},{\"id\":2375,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c010d91906a7bff9e6b685.jpg\"},{\"id\":2381,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/91a553a38c1d35436c0c83.jpg\"},{\"id\":2382,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/350f2406fbb842e61ba980.jpg\"},{\"id\":2384,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1289df8f0031b96fe02079.jpg\"},{\"id\":2386,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/a4888f80503ee960b02f74.jpg\"},{\"id\":2392,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/e31fda1705a9bcf7e5b870.jpg\"},{\"id\":2391,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c20f0a09d5b76ce935a667.jpg\"},{\"id\":2390,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/28706f78b0c6099850d768.jpg\"},{\"id\":2389,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/79e03ae8e5565c08054772.jpg\"},{\"id\":2387,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/07c54ece9170282e716171.jpg\"},{\"id\":2388,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/8d79cb7114cfad91f4de73.jpg\"},{\"id\":2335,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/56c9f8c2277c9e22c76d98.jpg\"},{\"id\":2341,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/49290422db9c62c23b8d125.jpg\"},{\"id\":2356,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/f7f4c2fc1d42a41cfd53131.jpg\"},{\"id\":2359,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/0cc88ec1517fe821b16e130.jpg\"},{\"id\":2362,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/62fb72f0ad4e14104d5f127.jpg\"},{\"id\":2361,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/57de4ad695682c367579128.jpg\"},{\"id\":2363,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/795df95426ea9fb4c6fb116.jpg\"},{\"id\":2367,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1ab1f4b72b099257cb1897.jpg\"},{\"id\":2372,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/8ea396aa4914f04aa90588.jpg\"},{\"id\":2376,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c546934e4cf0f5aeace1100.jpg\"},{\"id\":2385,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4480b4896b37d2698b2677.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}]'),(5274,2401,'_elementor_edit_mode','builder'),(5275,2401,'_elementor_template_type','wp-page'),(5276,2401,'_elementor_version','3.24.7'),(5277,2401,'_wp_page_template','default'),(5278,2401,'_elementor_data','[{\"id\":\"fcff723\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"5603a87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2328,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9505c40d1bb3a2edfba278.jpg\"},{\"id\":2329,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/38db14d3cb6d72332b7c76.jpg\"},{\"id\":2330,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b5ed1be5c45b7d05244a93.jpg\"},{\"id\":2331,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/844e93464cf8f5a6ace9103.jpg\"},{\"id\":2332,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/795d6c55b3eb0ab553fa94.jpg\"},{\"id\":2333,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/a2e5a7ee7850c10e984190.jpg\"},{\"id\":2337,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1d260d2fd2916bcf328099.jpg\"},{\"id\":2338,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/db3e8e365188e8d6b199119.jpg\"},{\"id\":2340,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/d037ea3f35818cdfd590114.jpg\"},{\"id\":2343,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/0497279ff821417f1830122.jpg\"},{\"id\":2344,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4185a68d7933c06d9922111.jpg\"},{\"id\":2345,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2664d66209dcb082e9cd117.jpg\"},{\"id\":2346,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/995b95524aecf3b2aafd120.jpg\"},{\"id\":2348,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/96e17fe9a05719094046105.jpg\"},{\"id\":2349,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/53d3a1db7e65c73b9e74107.jpg\"},{\"id\":2350,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/46f3befa6144d81a8155123.jpg\"},{\"id\":2351,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9d24a12c7e92c7cc9e83108.jpg\"},{\"id\":2352,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9a4b7643a9fd10a349ec115.jpg\"},{\"id\":2353,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/5a19961f49a1f0ffa9b0118.jpg\"},{\"id\":2355,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/0b32f03b2f8596dbcf94112.jpg\"},{\"id\":2357,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b1c8bfc1607fd921806e129.jpg\"},{\"id\":2358,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/33ccc7ca1874a12af865132.jpg\"},{\"id\":2360,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2c7e6676b9c8009659d9126.jpg\"},{\"id\":2336,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4dc6cecf1171a82ff160101.jpg\"},{\"id\":2368,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4af3fbfb24459d1bc45484.jpg\"},{\"id\":2339,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b44c1144cefa77a42eeb106.jpg\"},{\"id\":2366,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/da27722fad9114cf4d80121.jpg\"},{\"id\":2365,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b9007d06a2b81be642a9109.jpg\"},{\"id\":2364,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/97509a5945e7fcb9a5f6113.jpg\"},{\"id\":2369,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/7cde64d6bb6802365b79102.jpg\"},{\"id\":2370,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/7ef794f14b4ff211ab5e91.jpg\"},{\"id\":2373,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/41a76fafb011094f500096.jpg\"},{\"id\":2374,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/284ee1483ef687a8dee795.jpg\"},{\"id\":2380,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/57c577cda873112d486282.jpg\"},{\"id\":2379,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/42f158f887463e18675775.jpg\"},{\"id\":2378,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/dfb58bbd5403ed5db41286.jpg\"},{\"id\":2377,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/ccd73edee160583e017187.jpg\"},{\"id\":2375,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c010d91906a7bff9e6b685.jpg\"},{\"id\":2381,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/91a553a38c1d35436c0c83.jpg\"},{\"id\":2382,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/350f2406fbb842e61ba980.jpg\"},{\"id\":2384,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1289df8f0031b96fe02079.jpg\"},{\"id\":2386,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/a4888f80503ee960b02f74.jpg\"},{\"id\":2392,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/e31fda1705a9bcf7e5b870.jpg\"},{\"id\":2391,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c20f0a09d5b76ce935a667.jpg\"},{\"id\":2390,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/28706f78b0c6099850d768.jpg\"},{\"id\":2389,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/79e03ae8e5565c08054772.jpg\"},{\"id\":2387,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/07c54ece9170282e716171.jpg\"},{\"id\":2388,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/8d79cb7114cfad91f4de73.jpg\"},{\"id\":2335,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/56c9f8c2277c9e22c76d98.jpg\"},{\"id\":2341,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/49290422db9c62c23b8d125.jpg\"},{\"id\":2356,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/f7f4c2fc1d42a41cfd53131.jpg\"},{\"id\":2359,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/0cc88ec1517fe821b16e130.jpg\"},{\"id\":2362,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/62fb72f0ad4e14104d5f127.jpg\"},{\"id\":2361,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/57de4ad695682c367579128.jpg\"},{\"id\":2363,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/795df95426ea9fb4c6fb116.jpg\"},{\"id\":2367,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1ab1f4b72b099257cb1897.jpg\"},{\"id\":2372,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/8ea396aa4914f04aa90588.jpg\"},{\"id\":2376,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c546934e4cf0f5aeace1100.jpg\"},{\"id\":2385,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4480b4896b37d2698b2677.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}]'),(5282,2402,'_elementor_edit_mode','builder'),(5283,2402,'_elementor_template_type','wp-page'),(5284,2402,'_elementor_version','3.24.7'),(5285,2402,'_wp_page_template','default');
INSERT INTO `wp_postmeta` VALUES (5286,2402,'_elementor_data','[{\"id\":\"fcff723\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"5603a87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2328,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9505c40d1bb3a2edfba278.jpg\"},{\"id\":2329,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/38db14d3cb6d72332b7c76.jpg\"},{\"id\":2330,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b5ed1be5c45b7d05244a93.jpg\"},{\"id\":2331,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/844e93464cf8f5a6ace9103.jpg\"},{\"id\":2332,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/795d6c55b3eb0ab553fa94.jpg\"},{\"id\":2333,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/a2e5a7ee7850c10e984190.jpg\"},{\"id\":2337,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1d260d2fd2916bcf328099.jpg\"},{\"id\":2338,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/db3e8e365188e8d6b199119.jpg\"},{\"id\":2340,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/d037ea3f35818cdfd590114.jpg\"},{\"id\":2343,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/0497279ff821417f1830122.jpg\"},{\"id\":2344,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4185a68d7933c06d9922111.jpg\"},{\"id\":2345,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2664d66209dcb082e9cd117.jpg\"},{\"id\":2346,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/995b95524aecf3b2aafd120.jpg\"},{\"id\":2348,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/96e17fe9a05719094046105.jpg\"},{\"id\":2349,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/53d3a1db7e65c73b9e74107.jpg\"},{\"id\":2350,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/46f3befa6144d81a8155123.jpg\"},{\"id\":2351,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9d24a12c7e92c7cc9e83108.jpg\"},{\"id\":2352,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9a4b7643a9fd10a349ec115.jpg\"},{\"id\":2353,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/5a19961f49a1f0ffa9b0118.jpg\"},{\"id\":2355,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/0b32f03b2f8596dbcf94112.jpg\"},{\"id\":2357,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b1c8bfc1607fd921806e129.jpg\"},{\"id\":2358,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/33ccc7ca1874a12af865132.jpg\"},{\"id\":2360,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2c7e6676b9c8009659d9126.jpg\"},{\"id\":2368,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4af3fbfb24459d1bc45484.jpg\"},{\"id\":2366,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/da27722fad9114cf4d80121.jpg\"},{\"id\":2365,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b9007d06a2b81be642a9109.jpg\"},{\"id\":2364,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/97509a5945e7fcb9a5f6113.jpg\"},{\"id\":2369,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/7cde64d6bb6802365b79102.jpg\"},{\"id\":2336,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4dc6cecf1171a82ff160101.jpg\"},{\"id\":2370,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/7ef794f14b4ff211ab5e91.jpg\"},{\"id\":2373,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/41a76fafb011094f500096.jpg\"},{\"id\":2374,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/284ee1483ef687a8dee795.jpg\"},{\"id\":2380,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/57c577cda873112d486282.jpg\"},{\"id\":2379,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/42f158f887463e18675775.jpg\"},{\"id\":2378,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/dfb58bbd5403ed5db41286.jpg\"},{\"id\":2377,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/ccd73edee160583e017187.jpg\"},{\"id\":2375,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c010d91906a7bff9e6b685.jpg\"},{\"id\":2381,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/91a553a38c1d35436c0c83.jpg\"},{\"id\":2382,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/350f2406fbb842e61ba980.jpg\"},{\"id\":2384,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1289df8f0031b96fe02079.jpg\"},{\"id\":2386,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/a4888f80503ee960b02f74.jpg\"},{\"id\":2392,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/e31fda1705a9bcf7e5b870.jpg\"},{\"id\":2391,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c20f0a09d5b76ce935a667.jpg\"},{\"id\":2390,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/28706f78b0c6099850d768.jpg\"},{\"id\":2389,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/79e03ae8e5565c08054772.jpg\"},{\"id\":2387,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/07c54ece9170282e716171.jpg\"},{\"id\":2388,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/8d79cb7114cfad91f4de73.jpg\"},{\"id\":2341,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/49290422db9c62c23b8d125.jpg\"},{\"id\":2356,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/f7f4c2fc1d42a41cfd53131.jpg\"},{\"id\":2362,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/62fb72f0ad4e14104d5f127.jpg\"},{\"id\":2361,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/57de4ad695682c367579128.jpg\"},{\"id\":2363,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/795df95426ea9fb4c6fb116.jpg\"},{\"id\":2367,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1ab1f4b72b099257cb1897.jpg\"},{\"id\":2376,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c546934e4cf0f5aeace1100.jpg\"},{\"id\":2385,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4480b4896b37d2698b2677.jpg\"},{\"id\":2339,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b44c1144cefa77a42eeb106.jpg\"},{\"id\":2335,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/56c9f8c2277c9e22c76d98.jpg\"},{\"id\":2372,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/8ea396aa4914f04aa90588.jpg\"},{\"id\":2359,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/0cc88ec1517fe821b16e130.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}]'),(5292,2403,'_elementor_edit_mode','builder'),(5293,2403,'_elementor_template_type','wp-page'),(5294,2403,'_elementor_version','3.24.7'),(5295,2403,'_wp_page_template','default'),(5296,2403,'_elementor_data','[{\"id\":\"fcff723\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"5603a87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2328,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9505c40d1bb3a2edfba278.jpg\"},{\"id\":2329,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/38db14d3cb6d72332b7c76.jpg\"},{\"id\":2330,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b5ed1be5c45b7d05244a93.jpg\"},{\"id\":2331,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/844e93464cf8f5a6ace9103.jpg\"},{\"id\":2332,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/795d6c55b3eb0ab553fa94.jpg\"},{\"id\":2333,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/a2e5a7ee7850c10e984190.jpg\"},{\"id\":2337,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1d260d2fd2916bcf328099.jpg\"},{\"id\":2338,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/db3e8e365188e8d6b199119.jpg\"},{\"id\":2340,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/d037ea3f35818cdfd590114.jpg\"},{\"id\":2343,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/0497279ff821417f1830122.jpg\"},{\"id\":2344,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4185a68d7933c06d9922111.jpg\"},{\"id\":2345,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2664d66209dcb082e9cd117.jpg\"},{\"id\":2346,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/995b95524aecf3b2aafd120.jpg\"},{\"id\":2348,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/96e17fe9a05719094046105.jpg\"},{\"id\":2349,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/53d3a1db7e65c73b9e74107.jpg\"},{\"id\":2350,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/46f3befa6144d81a8155123.jpg\"},{\"id\":2351,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9d24a12c7e92c7cc9e83108.jpg\"},{\"id\":2352,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9a4b7643a9fd10a349ec115.jpg\"},{\"id\":2353,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/5a19961f49a1f0ffa9b0118.jpg\"},{\"id\":2355,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/0b32f03b2f8596dbcf94112.jpg\"},{\"id\":2357,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b1c8bfc1607fd921806e129.jpg\"},{\"id\":2358,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/33ccc7ca1874a12af865132.jpg\"},{\"id\":2360,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2c7e6676b9c8009659d9126.jpg\"},{\"id\":2368,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4af3fbfb24459d1bc45484.jpg\"},{\"id\":2366,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/da27722fad9114cf4d80121.jpg\"},{\"id\":2365,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b9007d06a2b81be642a9109.jpg\"},{\"id\":2364,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/97509a5945e7fcb9a5f6113.jpg\"},{\"id\":2369,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/7cde64d6bb6802365b79102.jpg\"},{\"id\":2336,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4dc6cecf1171a82ff160101.jpg\"},{\"id\":2370,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/7ef794f14b4ff211ab5e91.jpg\"},{\"id\":2373,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/41a76fafb011094f500096.jpg\"},{\"id\":2374,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/284ee1483ef687a8dee795.jpg\"},{\"id\":2380,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/57c577cda873112d486282.jpg\"},{\"id\":2379,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/42f158f887463e18675775.jpg\"},{\"id\":2378,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/dfb58bbd5403ed5db41286.jpg\"},{\"id\":2377,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/ccd73edee160583e017187.jpg\"},{\"id\":2375,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c010d91906a7bff9e6b685.jpg\"},{\"id\":2381,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/91a553a38c1d35436c0c83.jpg\"},{\"id\":2382,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/350f2406fbb842e61ba980.jpg\"},{\"id\":2384,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1289df8f0031b96fe02079.jpg\"},{\"id\":2386,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/a4888f80503ee960b02f74.jpg\"},{\"id\":2392,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/e31fda1705a9bcf7e5b870.jpg\"},{\"id\":2391,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c20f0a09d5b76ce935a667.jpg\"},{\"id\":2390,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/28706f78b0c6099850d768.jpg\"},{\"id\":2389,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/79e03ae8e5565c08054772.jpg\"},{\"id\":2387,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/07c54ece9170282e716171.jpg\"},{\"id\":2388,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/8d79cb7114cfad91f4de73.jpg\"},{\"id\":2341,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/49290422db9c62c23b8d125.jpg\"},{\"id\":2356,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/f7f4c2fc1d42a41cfd53131.jpg\"},{\"id\":2362,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/62fb72f0ad4e14104d5f127.jpg\"},{\"id\":2361,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/57de4ad695682c367579128.jpg\"},{\"id\":2363,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/795df95426ea9fb4c6fb116.jpg\"},{\"id\":2367,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1ab1f4b72b099257cb1897.jpg\"},{\"id\":2376,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c546934e4cf0f5aeace1100.jpg\"},{\"id\":2385,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4480b4896b37d2698b2677.jpg\"},{\"id\":2339,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b44c1144cefa77a42eeb106.jpg\"},{\"id\":2335,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/56c9f8c2277c9e22c76d98.jpg\"},{\"id\":2372,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/8ea396aa4914f04aa90588.jpg\"},{\"id\":2359,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/0cc88ec1517fe821b16e130.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}]'),(5300,2404,'_elementor_edit_mode','builder'),(5301,2404,'_elementor_template_type','wp-page'),(5302,2404,'_elementor_version','3.24.7'),(5303,2404,'_wp_page_template','default'),(5304,2404,'_elementor_data','[{\"id\":\"fcff723\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"5603a87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2328,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9505c40d1bb3a2edfba278.jpg\"},{\"id\":2329,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/38db14d3cb6d72332b7c76.jpg\"},{\"id\":2330,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b5ed1be5c45b7d05244a93.jpg\"},{\"id\":2331,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/844e93464cf8f5a6ace9103.jpg\"},{\"id\":2332,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/795d6c55b3eb0ab553fa94.jpg\"},{\"id\":2333,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/a2e5a7ee7850c10e984190.jpg\"},{\"id\":2337,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1d260d2fd2916bcf328099.jpg\"},{\"id\":2338,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/db3e8e365188e8d6b199119.jpg\"},{\"id\":2340,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/d037ea3f35818cdfd590114.jpg\"},{\"id\":2343,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/0497279ff821417f1830122.jpg\"},{\"id\":2344,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4185a68d7933c06d9922111.jpg\"},{\"id\":2345,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2664d66209dcb082e9cd117.jpg\"},{\"id\":2346,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/995b95524aecf3b2aafd120.jpg\"},{\"id\":2348,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/96e17fe9a05719094046105.jpg\"},{\"id\":2349,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/53d3a1db7e65c73b9e74107.jpg\"},{\"id\":2350,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/46f3befa6144d81a8155123.jpg\"},{\"id\":2351,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9d24a12c7e92c7cc9e83108.jpg\"},{\"id\":2352,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9a4b7643a9fd10a349ec115.jpg\"},{\"id\":2353,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/5a19961f49a1f0ffa9b0118.jpg\"},{\"id\":2355,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/0b32f03b2f8596dbcf94112.jpg\"},{\"id\":2357,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b1c8bfc1607fd921806e129.jpg\"},{\"id\":2358,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/33ccc7ca1874a12af865132.jpg\"},{\"id\":2360,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2c7e6676b9c8009659d9126.jpg\"},{\"id\":2368,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4af3fbfb24459d1bc45484.jpg\"},{\"id\":2366,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/da27722fad9114cf4d80121.jpg\"},{\"id\":2365,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b9007d06a2b81be642a9109.jpg\"},{\"id\":2364,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/97509a5945e7fcb9a5f6113.jpg\"},{\"id\":2369,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/7cde64d6bb6802365b79102.jpg\"},{\"id\":2336,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4dc6cecf1171a82ff160101.jpg\"},{\"id\":2370,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/7ef794f14b4ff211ab5e91.jpg\"},{\"id\":2373,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/41a76fafb011094f500096.jpg\"},{\"id\":2374,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/284ee1483ef687a8dee795.jpg\"},{\"id\":2380,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/57c577cda873112d486282.jpg\"},{\"id\":2379,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/42f158f887463e18675775.jpg\"},{\"id\":2378,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/dfb58bbd5403ed5db41286.jpg\"},{\"id\":2377,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/ccd73edee160583e017187.jpg\"},{\"id\":2375,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c010d91906a7bff9e6b685.jpg\"},{\"id\":2381,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/91a553a38c1d35436c0c83.jpg\"},{\"id\":2382,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/350f2406fbb842e61ba980.jpg\"},{\"id\":2384,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1289df8f0031b96fe02079.jpg\"},{\"id\":2386,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/a4888f80503ee960b02f74.jpg\"},{\"id\":2392,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/e31fda1705a9bcf7e5b870.jpg\"},{\"id\":2391,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c20f0a09d5b76ce935a667.jpg\"},{\"id\":2390,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/28706f78b0c6099850d768.jpg\"},{\"id\":2389,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/79e03ae8e5565c08054772.jpg\"},{\"id\":2387,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/07c54ece9170282e716171.jpg\"},{\"id\":2388,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/8d79cb7114cfad91f4de73.jpg\"},{\"id\":2341,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/49290422db9c62c23b8d125.jpg\"},{\"id\":2356,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/f7f4c2fc1d42a41cfd53131.jpg\"},{\"id\":2362,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/62fb72f0ad4e14104d5f127.jpg\"},{\"id\":2361,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/57de4ad695682c367579128.jpg\"},{\"id\":2363,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/795df95426ea9fb4c6fb116.jpg\"},{\"id\":2367,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1ab1f4b72b099257cb1897.jpg\"},{\"id\":2376,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c546934e4cf0f5aeace1100.jpg\"},{\"id\":2385,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4480b4896b37d2698b2677.jpg\"},{\"id\":2339,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b44c1144cefa77a42eeb106.jpg\"},{\"id\":2335,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/56c9f8c2277c9e22c76d98.jpg\"},{\"id\":2372,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/8ea396aa4914f04aa90588.jpg\"},{\"id\":2359,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/0cc88ec1517fe821b16e130.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}]'),(5308,2405,'_elementor_edit_mode','builder'),(5309,2405,'_elementor_template_type','wp-page'),(5310,2405,'_elementor_version','3.24.7'),(5311,2405,'_wp_page_template','default'),(5312,2405,'_elementor_data','[{\"id\":\"fcff723\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"5603a87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2328,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9505c40d1bb3a2edfba278.jpg\"},{\"id\":2329,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/38db14d3cb6d72332b7c76.jpg\"},{\"id\":2330,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b5ed1be5c45b7d05244a93.jpg\"},{\"id\":2331,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/844e93464cf8f5a6ace9103.jpg\"},{\"id\":2332,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/795d6c55b3eb0ab553fa94.jpg\"},{\"id\":2333,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/a2e5a7ee7850c10e984190.jpg\"},{\"id\":2337,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1d260d2fd2916bcf328099.jpg\"},{\"id\":2338,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/db3e8e365188e8d6b199119.jpg\"},{\"id\":2340,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/d037ea3f35818cdfd590114.jpg\"},{\"id\":2343,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/0497279ff821417f1830122.jpg\"},{\"id\":2344,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4185a68d7933c06d9922111.jpg\"},{\"id\":2345,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2664d66209dcb082e9cd117.jpg\"},{\"id\":2346,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/995b95524aecf3b2aafd120.jpg\"},{\"id\":2348,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/96e17fe9a05719094046105.jpg\"},{\"id\":2349,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/53d3a1db7e65c73b9e74107.jpg\"},{\"id\":2350,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/46f3befa6144d81a8155123.jpg\"},{\"id\":2351,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9d24a12c7e92c7cc9e83108.jpg\"},{\"id\":2352,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9a4b7643a9fd10a349ec115.jpg\"},{\"id\":2353,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/5a19961f49a1f0ffa9b0118.jpg\"},{\"id\":2355,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/0b32f03b2f8596dbcf94112.jpg\"},{\"id\":2357,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b1c8bfc1607fd921806e129.jpg\"},{\"id\":2358,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/33ccc7ca1874a12af865132.jpg\"},{\"id\":2360,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2c7e6676b9c8009659d9126.jpg\"},{\"id\":2368,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4af3fbfb24459d1bc45484.jpg\"},{\"id\":2366,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/da27722fad9114cf4d80121.jpg\"},{\"id\":2365,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b9007d06a2b81be642a9109.jpg\"},{\"id\":2364,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/97509a5945e7fcb9a5f6113.jpg\"},{\"id\":2369,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/7cde64d6bb6802365b79102.jpg\"},{\"id\":2370,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/7ef794f14b4ff211ab5e91.jpg\"},{\"id\":2373,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/41a76fafb011094f500096.jpg\"},{\"id\":2374,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/284ee1483ef687a8dee795.jpg\"},{\"id\":2380,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/57c577cda873112d486282.jpg\"},{\"id\":2379,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/42f158f887463e18675775.jpg\"},{\"id\":2378,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/dfb58bbd5403ed5db41286.jpg\"},{\"id\":2377,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/ccd73edee160583e017187.jpg\"},{\"id\":2375,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c010d91906a7bff9e6b685.jpg\"},{\"id\":2381,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/91a553a38c1d35436c0c83.jpg\"},{\"id\":2382,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/350f2406fbb842e61ba980.jpg\"},{\"id\":2384,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1289df8f0031b96fe02079.jpg\"},{\"id\":2386,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/a4888f80503ee960b02f74.jpg\"},{\"id\":2392,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/e31fda1705a9bcf7e5b870.jpg\"},{\"id\":2391,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c20f0a09d5b76ce935a667.jpg\"},{\"id\":2390,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/28706f78b0c6099850d768.jpg\"},{\"id\":2389,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/79e03ae8e5565c08054772.jpg\"},{\"id\":2387,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/07c54ece9170282e716171.jpg\"},{\"id\":2388,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/8d79cb7114cfad91f4de73.jpg\"},{\"id\":2341,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/49290422db9c62c23b8d125.jpg\"},{\"id\":2356,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/f7f4c2fc1d42a41cfd53131.jpg\"},{\"id\":2362,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/62fb72f0ad4e14104d5f127.jpg\"},{\"id\":2363,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/795df95426ea9fb4c6fb116.jpg\"},{\"id\":2367,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1ab1f4b72b099257cb1897.jpg\"},{\"id\":2376,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c546934e4cf0f5aeace1100.jpg\"},{\"id\":2385,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4480b4896b37d2698b2677.jpg\"},{\"id\":2339,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b44c1144cefa77a42eeb106.jpg\"},{\"id\":2335,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/56c9f8c2277c9e22c76d98.jpg\"},{\"id\":2336,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4dc6cecf1171a82ff160101.jpg\"},{\"id\":2372,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/8ea396aa4914f04aa90588.jpg\"},{\"id\":2359,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/0cc88ec1517fe821b16e130.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}]'),(5318,2406,'_elementor_edit_mode','builder'),(5319,2406,'_elementor_template_type','wp-page'),(5320,2406,'_elementor_version','3.24.7'),(5321,2406,'_wp_page_template','default'),(5322,2406,'_elementor_data','[{\"id\":\"fcff723\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"5603a87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2328,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9505c40d1bb3a2edfba278.jpg\"},{\"id\":2329,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/38db14d3cb6d72332b7c76.jpg\"},{\"id\":2330,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b5ed1be5c45b7d05244a93.jpg\"},{\"id\":2331,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/844e93464cf8f5a6ace9103.jpg\"},{\"id\":2332,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/795d6c55b3eb0ab553fa94.jpg\"},{\"id\":2333,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/a2e5a7ee7850c10e984190.jpg\"},{\"id\":2337,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1d260d2fd2916bcf328099.jpg\"},{\"id\":2338,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/db3e8e365188e8d6b199119.jpg\"},{\"id\":2340,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/d037ea3f35818cdfd590114.jpg\"},{\"id\":2343,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/0497279ff821417f1830122.jpg\"},{\"id\":2344,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4185a68d7933c06d9922111.jpg\"},{\"id\":2345,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2664d66209dcb082e9cd117.jpg\"},{\"id\":2346,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/995b95524aecf3b2aafd120.jpg\"},{\"id\":2348,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/96e17fe9a05719094046105.jpg\"},{\"id\":2349,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/53d3a1db7e65c73b9e74107.jpg\"},{\"id\":2350,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/46f3befa6144d81a8155123.jpg\"},{\"id\":2351,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9d24a12c7e92c7cc9e83108.jpg\"},{\"id\":2352,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9a4b7643a9fd10a349ec115.jpg\"},{\"id\":2353,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/5a19961f49a1f0ffa9b0118.jpg\"},{\"id\":2355,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/0b32f03b2f8596dbcf94112.jpg\"},{\"id\":2357,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b1c8bfc1607fd921806e129.jpg\"},{\"id\":2358,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/33ccc7ca1874a12af865132.jpg\"},{\"id\":2360,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2c7e6676b9c8009659d9126.jpg\"},{\"id\":2368,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4af3fbfb24459d1bc45484.jpg\"},{\"id\":2366,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/da27722fad9114cf4d80121.jpg\"},{\"id\":2365,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b9007d06a2b81be642a9109.jpg\"},{\"id\":2364,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/97509a5945e7fcb9a5f6113.jpg\"},{\"id\":2369,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/7cde64d6bb6802365b79102.jpg\"},{\"id\":2370,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/7ef794f14b4ff211ab5e91.jpg\"},{\"id\":2373,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/41a76fafb011094f500096.jpg\"},{\"id\":2374,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/284ee1483ef687a8dee795.jpg\"},{\"id\":2380,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/57c577cda873112d486282.jpg\"},{\"id\":2379,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/42f158f887463e18675775.jpg\"},{\"id\":2378,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/dfb58bbd5403ed5db41286.jpg\"},{\"id\":2377,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/ccd73edee160583e017187.jpg\"},{\"id\":2375,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c010d91906a7bff9e6b685.jpg\"},{\"id\":2381,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/91a553a38c1d35436c0c83.jpg\"},{\"id\":2382,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/350f2406fbb842e61ba980.jpg\"},{\"id\":2384,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1289df8f0031b96fe02079.jpg\"},{\"id\":2386,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/a4888f80503ee960b02f74.jpg\"},{\"id\":2392,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/e31fda1705a9bcf7e5b870.jpg\"},{\"id\":2391,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c20f0a09d5b76ce935a667.jpg\"},{\"id\":2390,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/28706f78b0c6099850d768.jpg\"},{\"id\":2389,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/79e03ae8e5565c08054772.jpg\"},{\"id\":2387,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/07c54ece9170282e716171.jpg\"},{\"id\":2388,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/8d79cb7114cfad91f4de73.jpg\"},{\"id\":2341,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/49290422db9c62c23b8d125.jpg\"},{\"id\":2356,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/f7f4c2fc1d42a41cfd53131.jpg\"},{\"id\":2362,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/62fb72f0ad4e14104d5f127.jpg\"},{\"id\":2363,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/795df95426ea9fb4c6fb116.jpg\"},{\"id\":2367,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1ab1f4b72b099257cb1897.jpg\"},{\"id\":2376,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c546934e4cf0f5aeace1100.jpg\"},{\"id\":2385,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4480b4896b37d2698b2677.jpg\"},{\"id\":2339,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b44c1144cefa77a42eeb106.jpg\"},{\"id\":2335,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/56c9f8c2277c9e22c76d98.jpg\"},{\"id\":2336,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4dc6cecf1171a82ff160101.jpg\"},{\"id\":2372,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/8ea396aa4914f04aa90588.jpg\"},{\"id\":2359,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/0cc88ec1517fe821b16e130.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}]'),(5326,2407,'_elementor_edit_mode','builder'),(5327,2407,'_elementor_template_type','wp-page'),(5328,2407,'_elementor_version','3.24.7'),(5329,2407,'_wp_page_template','default'),(5330,2407,'_elementor_data','[{\"id\":\"fcff723\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"5603a87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2328,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9505c40d1bb3a2edfba278.jpg\"},{\"id\":2329,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/38db14d3cb6d72332b7c76.jpg\"},{\"id\":2330,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b5ed1be5c45b7d05244a93.jpg\"},{\"id\":2331,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/844e93464cf8f5a6ace9103.jpg\"},{\"id\":2332,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/795d6c55b3eb0ab553fa94.jpg\"},{\"id\":2333,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/a2e5a7ee7850c10e984190.jpg\"},{\"id\":2337,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1d260d2fd2916bcf328099.jpg\"},{\"id\":2338,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/db3e8e365188e8d6b199119.jpg\"},{\"id\":2340,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/d037ea3f35818cdfd590114.jpg\"},{\"id\":2343,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/0497279ff821417f1830122.jpg\"},{\"id\":2344,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4185a68d7933c06d9922111.jpg\"},{\"id\":2345,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2664d66209dcb082e9cd117.jpg\"},{\"id\":2346,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/995b95524aecf3b2aafd120.jpg\"},{\"id\":2348,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/96e17fe9a05719094046105.jpg\"},{\"id\":2349,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/53d3a1db7e65c73b9e74107.jpg\"},{\"id\":2350,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/46f3befa6144d81a8155123.jpg\"},{\"id\":2351,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9d24a12c7e92c7cc9e83108.jpg\"},{\"id\":2352,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9a4b7643a9fd10a349ec115.jpg\"},{\"id\":2353,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/5a19961f49a1f0ffa9b0118.jpg\"},{\"id\":2355,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/0b32f03b2f8596dbcf94112.jpg\"},{\"id\":2357,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b1c8bfc1607fd921806e129.jpg\"},{\"id\":2358,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/33ccc7ca1874a12af865132.jpg\"},{\"id\":2360,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2c7e6676b9c8009659d9126.jpg\"},{\"id\":2368,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4af3fbfb24459d1bc45484.jpg\"},{\"id\":2366,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/da27722fad9114cf4d80121.jpg\"},{\"id\":2365,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b9007d06a2b81be642a9109.jpg\"},{\"id\":2364,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/97509a5945e7fcb9a5f6113.jpg\"},{\"id\":2369,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/7cde64d6bb6802365b79102.jpg\"},{\"id\":2370,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/7ef794f14b4ff211ab5e91.jpg\"},{\"id\":2373,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/41a76fafb011094f500096.jpg\"},{\"id\":2374,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/284ee1483ef687a8dee795.jpg\"},{\"id\":2380,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/57c577cda873112d486282.jpg\"},{\"id\":2379,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/42f158f887463e18675775.jpg\"},{\"id\":2378,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/dfb58bbd5403ed5db41286.jpg\"},{\"id\":2377,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/ccd73edee160583e017187.jpg\"},{\"id\":2375,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c010d91906a7bff9e6b685.jpg\"},{\"id\":2381,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/91a553a38c1d35436c0c83.jpg\"},{\"id\":2382,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/350f2406fbb842e61ba980.jpg\"},{\"id\":2384,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1289df8f0031b96fe02079.jpg\"},{\"id\":2386,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/a4888f80503ee960b02f74.jpg\"},{\"id\":2392,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/e31fda1705a9bcf7e5b870.jpg\"},{\"id\":2391,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c20f0a09d5b76ce935a667.jpg\"},{\"id\":2390,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/28706f78b0c6099850d768.jpg\"},{\"id\":2389,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/79e03ae8e5565c08054772.jpg\"},{\"id\":2387,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/07c54ece9170282e716171.jpg\"},{\"id\":2388,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/8d79cb7114cfad91f4de73.jpg\"},{\"id\":2341,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/49290422db9c62c23b8d125.jpg\"},{\"id\":2356,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/f7f4c2fc1d42a41cfd53131.jpg\"},{\"id\":2362,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/62fb72f0ad4e14104d5f127.jpg\"},{\"id\":2363,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/795df95426ea9fb4c6fb116.jpg\"},{\"id\":2367,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1ab1f4b72b099257cb1897.jpg\"},{\"id\":2376,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c546934e4cf0f5aeace1100.jpg\"},{\"id\":2385,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4480b4896b37d2698b2677.jpg\"},{\"id\":2339,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b44c1144cefa77a42eeb106.jpg\"},{\"id\":2335,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/56c9f8c2277c9e22c76d98.jpg\"},{\"id\":2336,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4dc6cecf1171a82ff160101.jpg\"},{\"id\":2372,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/8ea396aa4914f04aa90588.jpg\"},{\"id\":2359,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/0cc88ec1517fe821b16e130.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}]'),(5334,2408,'_elementor_edit_mode','builder'),(5335,2408,'_elementor_template_type','wp-page'),(5336,2408,'_elementor_version','3.24.7'),(5337,2408,'_wp_page_template','default'),(5338,2408,'_elementor_data','[{\"id\":\"fcff723\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"5603a87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2328,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9505c40d1bb3a2edfba278.jpg\"},{\"id\":2329,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/38db14d3cb6d72332b7c76.jpg\"},{\"id\":2330,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b5ed1be5c45b7d05244a93.jpg\"},{\"id\":2331,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/844e93464cf8f5a6ace9103.jpg\"},{\"id\":2332,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/795d6c55b3eb0ab553fa94.jpg\"},{\"id\":2333,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/a2e5a7ee7850c10e984190.jpg\"},{\"id\":2337,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1d260d2fd2916bcf328099.jpg\"},{\"id\":2338,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/db3e8e365188e8d6b199119.jpg\"},{\"id\":2340,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/d037ea3f35818cdfd590114.jpg\"},{\"id\":2343,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/0497279ff821417f1830122.jpg\"},{\"id\":2344,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4185a68d7933c06d9922111.jpg\"},{\"id\":2345,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2664d66209dcb082e9cd117.jpg\"},{\"id\":2346,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/995b95524aecf3b2aafd120.jpg\"},{\"id\":2348,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/96e17fe9a05719094046105.jpg\"},{\"id\":2349,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/53d3a1db7e65c73b9e74107.jpg\"},{\"id\":2350,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/46f3befa6144d81a8155123.jpg\"},{\"id\":2351,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9d24a12c7e92c7cc9e83108.jpg\"},{\"id\":2352,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9a4b7643a9fd10a349ec115.jpg\"},{\"id\":2353,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/5a19961f49a1f0ffa9b0118.jpg\"},{\"id\":2355,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/0b32f03b2f8596dbcf94112.jpg\"},{\"id\":2357,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b1c8bfc1607fd921806e129.jpg\"},{\"id\":2358,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/33ccc7ca1874a12af865132.jpg\"},{\"id\":2360,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2c7e6676b9c8009659d9126.jpg\"},{\"id\":2368,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4af3fbfb24459d1bc45484.jpg\"},{\"id\":2366,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/da27722fad9114cf4d80121.jpg\"},{\"id\":2365,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b9007d06a2b81be642a9109.jpg\"},{\"id\":2364,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/97509a5945e7fcb9a5f6113.jpg\"},{\"id\":2369,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/7cde64d6bb6802365b79102.jpg\"},{\"id\":2370,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/7ef794f14b4ff211ab5e91.jpg\"},{\"id\":2373,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/41a76fafb011094f500096.jpg\"},{\"id\":2374,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/284ee1483ef687a8dee795.jpg\"},{\"id\":2380,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/57c577cda873112d486282.jpg\"},{\"id\":2379,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/42f158f887463e18675775.jpg\"},{\"id\":2378,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/dfb58bbd5403ed5db41286.jpg\"},{\"id\":2377,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/ccd73edee160583e017187.jpg\"},{\"id\":2381,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/91a553a38c1d35436c0c83.jpg\"},{\"id\":2384,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1289df8f0031b96fe02079.jpg\"},{\"id\":2386,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/a4888f80503ee960b02f74.jpg\"},{\"id\":2392,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/e31fda1705a9bcf7e5b870.jpg\"},{\"id\":2391,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c20f0a09d5b76ce935a667.jpg\"},{\"id\":2390,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/28706f78b0c6099850d768.jpg\"},{\"id\":2389,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/79e03ae8e5565c08054772.jpg\"},{\"id\":2387,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/07c54ece9170282e716171.jpg\"},{\"id\":2388,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/8d79cb7114cfad91f4de73.jpg\"},{\"id\":2341,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/49290422db9c62c23b8d125.jpg\"},{\"id\":2356,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/f7f4c2fc1d42a41cfd53131.jpg\"},{\"id\":2362,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/62fb72f0ad4e14104d5f127.jpg\"},{\"id\":2363,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/795df95426ea9fb4c6fb116.jpg\"},{\"id\":2367,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1ab1f4b72b099257cb1897.jpg\"},{\"id\":2376,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c546934e4cf0f5aeace1100.jpg\"},{\"id\":2385,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4480b4896b37d2698b2677.jpg\"},{\"id\":2339,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b44c1144cefa77a42eeb106.jpg\"},{\"id\":2335,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/56c9f8c2277c9e22c76d98.jpg\"},{\"id\":2336,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4dc6cecf1171a82ff160101.jpg\"},{\"id\":2372,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/8ea396aa4914f04aa90588.jpg\"},{\"id\":2359,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/0cc88ec1517fe821b16e130.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}]'),(5344,2409,'_wp_attached_file','2024/10/fe2tech.png'),(5345,2409,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1469;s:6:\"height\";i:1278;s:4:\"file\";s:19:\"2024/10/fe2tech.png\";s:8:\"filesize\";i:45743;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:{}}}'),(5348,799,'_edit_last','1'),(5349,799,'_wp_old_slug','footer-2'),(5350,799,'rs_page_bg_color',''),(5351,2411,'_wp_page_template','default'),(5352,2411,'_elementor_edit_mode','builder'),(5353,2411,'_elementor_template_type','wp-post'),(5354,2411,'_elementor_version','3.24.7'),(5355,2411,'_elementor_data','[{\"id\":\"7225c724\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#00165a\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer.png\",\"id\":87},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"109cef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.3},\"elements\":[{\"id\":\"6667e1a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9b3767fbcf1145d184ba29c6b29bde2c-free.png\",\"id\":2065,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae6ecf2\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Office: 43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}},{\"content\":\"Factory: 176\\/9 Nguy\\u1ec5n Th\\u1ecb T\\u01b0\\u01a1i, KP T\\u00e2n Ph\\u01b0\\u1edbc, P. T\\u00e2n B\\u00ecnh, D\\u0129 An city, B\\u00ecnh D\\u01b0\\u01a1ng\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"be1a6dd\"},{\"content\":\"0968860386\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"6dd7194a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Open Hours:\",\"text_color\":\"#f5b011\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"ct-text-gradient\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1e0523b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Mon - Sat: 8 am - 5 pm,<br\\/>\\nSunday: CLOSED\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"712a43be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.664,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e4e262b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Menu\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6e682e5b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"39\",\"style\":\"tow-col-light\",\"link_color_hover\":\"#f5ae0f\",\"line_color_hover\":\"#f5ae0f\",\"menu_align\":\"left\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"}],\"isInner\":false},{\"id\":\"1ab76a16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7},\"elements\":[{\"id\":\"37a5e636\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"aa15610\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#011143\",\"padding\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"040\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2487ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40d8f8a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sign up for alerts, our latest blogs, thoughts, and insights.\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d21d208\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"27383ab2\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin-box\",\"library\":\"material\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24b98c01\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"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},\"gap\":\"extended\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a6c11e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53be024\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5990603\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"7f874a5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright @2024 Trifles. All Rights Reserved by Far East High Tech<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_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},\"_css_classes\":\"ct-copyright\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"ab39798\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"12e6673\",\"elType\":\"widget\",\"settings\":{\"menu\":\"40\",\"style\":\"menu-inline\",\"menu_align\":\"right\",\"menu_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5356,2411,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:2:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:1;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:16:\"link_color_hover\";i:1;s:16:\"line_color_hover\";i:1;s:10:\"menu_align\";i:1;s:17:\"menu_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:13:\"ct_newsletter\";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:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";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:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:1;}}}}}'),(5360,2412,'_wp_page_template','default'),(5361,2412,'_elementor_edit_mode','builder'),(5362,2412,'_elementor_template_type','wp-post'),(5363,2412,'_elementor_version','3.24.7'),(5364,2412,'_elementor_data','[{\"id\":\"7225c724\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#00165a\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer.png\",\"id\":87},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"109cef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.3},\"elements\":[{\"id\":\"6667e1a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/fe2tech.png\",\"id\":2409,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae6ecf2\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Office: 43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}},{\"content\":\"Factory: 176\\/9 Nguy\\u1ec5n Th\\u1ecb T\\u01b0\\u01a1i, KP T\\u00e2n Ph\\u01b0\\u1edbc, P. T\\u00e2n B\\u00ecnh, D\\u0129 An city, B\\u00ecnh D\\u01b0\\u01a1ng\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"be1a6dd\"},{\"content\":\"0968860386\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"6dd7194a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Open Hours:\",\"text_color\":\"#f5b011\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"ct-text-gradient\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1e0523b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Mon - Sat: 8 am - 5 pm,<br\\/>\\nSunday: CLOSED\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"712a43be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.664,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e4e262b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Menu\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6e682e5b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"39\",\"style\":\"tow-col-light\",\"link_color_hover\":\"#f5ae0f\",\"line_color_hover\":\"#f5ae0f\",\"menu_align\":\"left\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"}],\"isInner\":false},{\"id\":\"1ab76a16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7},\"elements\":[{\"id\":\"37a5e636\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"aa15610\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#011143\",\"padding\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"040\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2487ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40d8f8a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sign up for alerts, our latest blogs, thoughts, and insights.\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d21d208\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"27383ab2\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin-box\",\"library\":\"material\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24b98c01\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"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},\"gap\":\"extended\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a6c11e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53be024\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5990603\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"7f874a5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright @2024 Trifles. All Rights Reserved by Far East High Tech<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_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},\"_css_classes\":\"ct-copyright\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"ab39798\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"12e6673\",\"elType\":\"widget\",\"settings\":{\"menu\":\"40\",\"style\":\"menu-inline\",\"menu_align\":\"right\",\"menu_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5365,2412,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:2:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:1;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:16:\"link_color_hover\";i:1;s:16:\"line_color_hover\";i:1;s:10:\"menu_align\";i:1;s:17:\"menu_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:13:\"ct_newsletter\";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:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";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:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:1;}}}}}'),(5390,2420,'_elementor_edit_mode','builder'),(5391,2420,'_elementor_template_type','wp-page'),(5392,2420,'_elementor_version','3.24.7'),(5393,2420,'_wp_page_template','default'),(5394,2420,'_elementor_data','[{\"id\":\"fcff723\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"5603a87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2328,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9505c40d1bb3a2edfba278.jpg\"},{\"id\":2329,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/38db14d3cb6d72332b7c76.jpg\"},{\"id\":2330,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b5ed1be5c45b7d05244a93.jpg\"},{\"id\":2331,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/844e93464cf8f5a6ace9103.jpg\"},{\"id\":2332,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/795d6c55b3eb0ab553fa94.jpg\"},{\"id\":2333,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/a2e5a7ee7850c10e984190.jpg\"},{\"id\":2337,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1d260d2fd2916bcf328099.jpg\"},{\"id\":2338,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/db3e8e365188e8d6b199119.jpg\"},{\"id\":2340,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/d037ea3f35818cdfd590114.jpg\"},{\"id\":2343,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/0497279ff821417f1830122.jpg\"},{\"id\":2344,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4185a68d7933c06d9922111.jpg\"},{\"id\":2345,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2664d66209dcb082e9cd117.jpg\"},{\"id\":2346,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/995b95524aecf3b2aafd120.jpg\"},{\"id\":2348,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/96e17fe9a05719094046105.jpg\"},{\"id\":2349,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/53d3a1db7e65c73b9e74107.jpg\"},{\"id\":2350,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/46f3befa6144d81a8155123.jpg\"},{\"id\":2351,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9d24a12c7e92c7cc9e83108.jpg\"},{\"id\":2352,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9a4b7643a9fd10a349ec115.jpg\"},{\"id\":2353,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/5a19961f49a1f0ffa9b0118.jpg\"},{\"id\":2355,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/0b32f03b2f8596dbcf94112.jpg\"},{\"id\":2357,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b1c8bfc1607fd921806e129.jpg\"},{\"id\":2358,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/33ccc7ca1874a12af865132.jpg\"},{\"id\":2360,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2c7e6676b9c8009659d9126.jpg\"},{\"id\":2368,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4af3fbfb24459d1bc45484.jpg\"},{\"id\":2366,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/da27722fad9114cf4d80121.jpg\"},{\"id\":2365,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b9007d06a2b81be642a9109.jpg\"},{\"id\":2364,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/97509a5945e7fcb9a5f6113.jpg\"},{\"id\":2369,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/7cde64d6bb6802365b79102.jpg\"},{\"id\":2370,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/7ef794f14b4ff211ab5e91.jpg\"},{\"id\":2373,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/41a76fafb011094f500096.jpg\"},{\"id\":2374,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/284ee1483ef687a8dee795.jpg\"},{\"id\":2380,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/57c577cda873112d486282.jpg\"},{\"id\":2379,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/42f158f887463e18675775.jpg\"},{\"id\":2378,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/dfb58bbd5403ed5db41286.jpg\"},{\"id\":2377,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/ccd73edee160583e017187.jpg\"},{\"id\":2381,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/91a553a38c1d35436c0c83.jpg\"},{\"id\":2384,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1289df8f0031b96fe02079.jpg\"},{\"id\":2386,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/a4888f80503ee960b02f74.jpg\"},{\"id\":2392,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/e31fda1705a9bcf7e5b870.jpg\"},{\"id\":2391,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c20f0a09d5b76ce935a667.jpg\"},{\"id\":2390,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/28706f78b0c6099850d768.jpg\"},{\"id\":2389,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/79e03ae8e5565c08054772.jpg\"},{\"id\":2387,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/07c54ece9170282e716171.jpg\"},{\"id\":2388,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/8d79cb7114cfad91f4de73.jpg\"},{\"id\":2341,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/49290422db9c62c23b8d125.jpg\"},{\"id\":2356,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/f7f4c2fc1d42a41cfd53131.jpg\"},{\"id\":2362,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/62fb72f0ad4e14104d5f127.jpg\"},{\"id\":2363,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/795df95426ea9fb4c6fb116.jpg\"},{\"id\":2367,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1ab1f4b72b099257cb1897.jpg\"},{\"id\":2376,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c546934e4cf0f5aeace1100.jpg\"},{\"id\":2385,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4480b4896b37d2698b2677.jpg\"},{\"id\":2339,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b44c1144cefa77a42eeb106.jpg\"},{\"id\":2335,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/56c9f8c2277c9e22c76d98.jpg\"},{\"id\":2336,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4dc6cecf1171a82ff160101.jpg\"},{\"id\":2372,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/8ea396aa4914f04aa90588.jpg\"},{\"id\":2359,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/0cc88ec1517fe821b16e130.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}]'),(5398,2421,'_elementor_edit_mode','builder'),(5399,2421,'_elementor_template_type','wp-page'),(5400,2421,'_elementor_version','3.24.7'),(5401,2421,'_wp_page_template','default'),(5402,2421,'_elementor_data','[{\"id\":\"fcff723\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"5603a87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2328,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9505c40d1bb3a2edfba278.jpg\"},{\"id\":2329,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/38db14d3cb6d72332b7c76.jpg\"},{\"id\":2330,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b5ed1be5c45b7d05244a93.jpg\"},{\"id\":2331,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/844e93464cf8f5a6ace9103.jpg\"},{\"id\":2332,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/795d6c55b3eb0ab553fa94.jpg\"},{\"id\":2333,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/a2e5a7ee7850c10e984190.jpg\"},{\"id\":2337,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1d260d2fd2916bcf328099.jpg\"},{\"id\":2338,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/db3e8e365188e8d6b199119.jpg\"},{\"id\":2340,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/d037ea3f35818cdfd590114.jpg\"},{\"id\":2343,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/0497279ff821417f1830122.jpg\"},{\"id\":2344,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4185a68d7933c06d9922111.jpg\"},{\"id\":2345,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2664d66209dcb082e9cd117.jpg\"},{\"id\":2346,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/995b95524aecf3b2aafd120.jpg\"},{\"id\":2348,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/96e17fe9a05719094046105.jpg\"},{\"id\":2349,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/53d3a1db7e65c73b9e74107.jpg\"},{\"id\":2350,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/46f3befa6144d81a8155123.jpg\"},{\"id\":2351,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9d24a12c7e92c7cc9e83108.jpg\"},{\"id\":2352,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9a4b7643a9fd10a349ec115.jpg\"},{\"id\":2353,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/5a19961f49a1f0ffa9b0118.jpg\"},{\"id\":2355,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/0b32f03b2f8596dbcf94112.jpg\"},{\"id\":2357,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b1c8bfc1607fd921806e129.jpg\"},{\"id\":2358,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/33ccc7ca1874a12af865132.jpg\"},{\"id\":2360,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2c7e6676b9c8009659d9126.jpg\"},{\"id\":2368,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4af3fbfb24459d1bc45484.jpg\"},{\"id\":2366,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/da27722fad9114cf4d80121.jpg\"},{\"id\":2365,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b9007d06a2b81be642a9109.jpg\"},{\"id\":2364,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/97509a5945e7fcb9a5f6113.jpg\"},{\"id\":2369,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/7cde64d6bb6802365b79102.jpg\"},{\"id\":2370,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/7ef794f14b4ff211ab5e91.jpg\"},{\"id\":2373,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/41a76fafb011094f500096.jpg\"},{\"id\":2374,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/284ee1483ef687a8dee795.jpg\"},{\"id\":2380,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/57c577cda873112d486282.jpg\"},{\"id\":2379,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/42f158f887463e18675775.jpg\"},{\"id\":2378,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/dfb58bbd5403ed5db41286.jpg\"},{\"id\":2377,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/ccd73edee160583e017187.jpg\"},{\"id\":2381,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/91a553a38c1d35436c0c83.jpg\"},{\"id\":2384,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1289df8f0031b96fe02079.jpg\"},{\"id\":2386,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/a4888f80503ee960b02f74.jpg\"},{\"id\":2392,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/e31fda1705a9bcf7e5b870.jpg\"},{\"id\":2391,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c20f0a09d5b76ce935a667.jpg\"},{\"id\":2390,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/28706f78b0c6099850d768.jpg\"},{\"id\":2389,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/79e03ae8e5565c08054772.jpg\"},{\"id\":2387,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/07c54ece9170282e716171.jpg\"},{\"id\":2388,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/8d79cb7114cfad91f4de73.jpg\"},{\"id\":2341,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/49290422db9c62c23b8d125.jpg\"},{\"id\":2356,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/f7f4c2fc1d42a41cfd53131.jpg\"},{\"id\":2362,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/62fb72f0ad4e14104d5f127.jpg\"},{\"id\":2363,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/795df95426ea9fb4c6fb116.jpg\"},{\"id\":2367,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1ab1f4b72b099257cb1897.jpg\"},{\"id\":2376,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c546934e4cf0f5aeace1100.jpg\"},{\"id\":2385,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4480b4896b37d2698b2677.jpg\"},{\"id\":2339,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b44c1144cefa77a42eeb106.jpg\"},{\"id\":2335,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/56c9f8c2277c9e22c76d98.jpg\"},{\"id\":2336,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4dc6cecf1171a82ff160101.jpg\"},{\"id\":2372,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/8ea396aa4914f04aa90588.jpg\"},{\"id\":2359,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/0cc88ec1517fe821b16e130.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}]'),(5406,2422,'_elementor_edit_mode','builder'),(5407,2422,'_elementor_template_type','wp-page'),(5408,2422,'_elementor_version','3.24.7'),(5409,2422,'_wp_page_template','default'),(5410,2422,'_elementor_data','[{\"id\":\"fcff723\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"5603a87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2328,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9505c40d1bb3a2edfba278.jpg\"},{\"id\":2329,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/38db14d3cb6d72332b7c76.jpg\"},{\"id\":2330,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b5ed1be5c45b7d05244a93.jpg\"},{\"id\":2331,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/844e93464cf8f5a6ace9103.jpg\"},{\"id\":2332,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/795d6c55b3eb0ab553fa94.jpg\"},{\"id\":2333,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/a2e5a7ee7850c10e984190.jpg\"},{\"id\":2337,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1d260d2fd2916bcf328099.jpg\"},{\"id\":2338,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/db3e8e365188e8d6b199119.jpg\"},{\"id\":2340,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/d037ea3f35818cdfd590114.jpg\"},{\"id\":2343,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/0497279ff821417f1830122.jpg\"},{\"id\":2344,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4185a68d7933c06d9922111.jpg\"},{\"id\":2345,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2664d66209dcb082e9cd117.jpg\"},{\"id\":2346,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/995b95524aecf3b2aafd120.jpg\"},{\"id\":2348,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/96e17fe9a05719094046105.jpg\"},{\"id\":2349,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/53d3a1db7e65c73b9e74107.jpg\"},{\"id\":2350,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/46f3befa6144d81a8155123.jpg\"},{\"id\":2351,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9d24a12c7e92c7cc9e83108.jpg\"},{\"id\":2352,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9a4b7643a9fd10a349ec115.jpg\"},{\"id\":2353,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/5a19961f49a1f0ffa9b0118.jpg\"},{\"id\":2355,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/0b32f03b2f8596dbcf94112.jpg\"},{\"id\":2357,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b1c8bfc1607fd921806e129.jpg\"},{\"id\":2358,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/33ccc7ca1874a12af865132.jpg\"},{\"id\":2360,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2c7e6676b9c8009659d9126.jpg\"},{\"id\":2368,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4af3fbfb24459d1bc45484.jpg\"},{\"id\":2366,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/da27722fad9114cf4d80121.jpg\"},{\"id\":2365,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b9007d06a2b81be642a9109.jpg\"},{\"id\":2364,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/97509a5945e7fcb9a5f6113.jpg\"},{\"id\":2369,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/7cde64d6bb6802365b79102.jpg\"},{\"id\":2370,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/7ef794f14b4ff211ab5e91.jpg\"},{\"id\":2373,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/41a76fafb011094f500096.jpg\"},{\"id\":2374,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/284ee1483ef687a8dee795.jpg\"},{\"id\":2380,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/57c577cda873112d486282.jpg\"},{\"id\":2379,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/42f158f887463e18675775.jpg\"},{\"id\":2378,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/dfb58bbd5403ed5db41286.jpg\"},{\"id\":2377,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/ccd73edee160583e017187.jpg\"},{\"id\":2381,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/91a553a38c1d35436c0c83.jpg\"},{\"id\":2384,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1289df8f0031b96fe02079.jpg\"},{\"id\":2386,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/a4888f80503ee960b02f74.jpg\"},{\"id\":2392,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/e31fda1705a9bcf7e5b870.jpg\"},{\"id\":2391,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c20f0a09d5b76ce935a667.jpg\"},{\"id\":2390,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/28706f78b0c6099850d768.jpg\"},{\"id\":2389,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/79e03ae8e5565c08054772.jpg\"},{\"id\":2387,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/07c54ece9170282e716171.jpg\"},{\"id\":2388,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/8d79cb7114cfad91f4de73.jpg\"},{\"id\":2341,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/49290422db9c62c23b8d125.jpg\"},{\"id\":2356,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/f7f4c2fc1d42a41cfd53131.jpg\"},{\"id\":2362,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/62fb72f0ad4e14104d5f127.jpg\"},{\"id\":2363,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/795df95426ea9fb4c6fb116.jpg\"},{\"id\":2367,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1ab1f4b72b099257cb1897.jpg\"},{\"id\":2376,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c546934e4cf0f5aeace1100.jpg\"},{\"id\":2385,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4480b4896b37d2698b2677.jpg\"},{\"id\":2339,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b44c1144cefa77a42eeb106.jpg\"},{\"id\":2335,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/56c9f8c2277c9e22c76d98.jpg\"},{\"id\":2336,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4dc6cecf1171a82ff160101.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}]'),(5418,2128,'rs_page_bg_color',''),(5428,2425,'_wp_page_template','default'),(5429,2425,'_elementor_edit_mode','builder'),(5430,2425,'_elementor_template_type','wp-page'),(5431,2425,'_elementor_version','3.24.7'),(5432,2425,'_elementor_data','[{\"id\":\"c986484\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"21\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab9e3e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.324,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cc7a78\",\"elType\":\"widget\",\"settings\":{\"title\":\"We satisfy you with innovative ideas and quality work.\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"sub_title\":\"About us\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c42c037\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At vero eos et accusamus et iusto odio digni goikussimos ducimus qui to bonfoeblanditiis praese. Ntium voluum deleniti.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c469998\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We exceed expectations through innovative ideas and exceptional craftsmanship.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11334c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2442360\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d195ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-01.png\",\"id\":612},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b2107e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Time manage\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c366e73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Efficiently organizing tasks to maximize productivity and meet deadlines.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d099fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c4ae19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-02.png\",\"id\":613},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ba24a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fulfill target\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bdc9adf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Achieving goals with precision and commitment, ensuring success.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ba92fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.676,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae4fae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-01.jpg\",\"id\":623}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"0c406f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/signature1.png\",\"id\":633},\"title\":\"Hanley Robin\",\"desc\":\"(Chairman and founder)\",\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to know more about us?\",\"desc\":\"Just download brochure...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-scaled.jpg\",\"id\":663},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"060\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.937},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fe2tech is a professional builder company\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.063},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fe2tech is a leading company in building and manufacturing high-quality mechanical solutions.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e9a883e\",\"elType\":\"widget\",\"settings\":{\"start_text\":\"Start\",\"end_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"history\":[{\"_id\":\"7d82651\",\"title\":\"hihi\",\"content\":\"hihi\"}]},\"elements\":[],\"widgetType\":\"ct_history\"}],\"isInner\":false}],\"isInner\":false}]'),(5433,2425,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:6;s:18:\"title_space_bottom\";i:3;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:4;s:22:\"sub_title_space_bottom\";i:3;s:15:\"sub_title_color\";i:1;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:5;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:7;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}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:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;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:10;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:3;s:13:\"margin_mobile\";i:3;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:3;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:6;s:7:\"padding\";i:6;s:14:\"padding_tablet\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:5:\"image\";i:1;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"ct_cta\";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:\"source_section\";a:4:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:4:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:14:\"slides_to_show\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:16:\"slides_to_scroll\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:6:\"arrows\";i:1;s:8:\"autoplay\";i:1;s:8:\"infinite\";i:1;}}}}}'),(5436,2426,'_wp_page_template','default'),(5437,2426,'_elementor_edit_mode','builder'),(5438,2426,'_elementor_template_type','wp-page'),(5439,2426,'_elementor_version','3.24.7'),(5440,2426,'_elementor_data','[{\"id\":\"c986484\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"21\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab9e3e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.324,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cc7a78\",\"elType\":\"widget\",\"settings\":{\"title\":\"We satisfy you with innovative ideas and quality work.\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"sub_title\":\"About us\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c42c037\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At vero eos et accusamus et iusto odio digni goikussimos ducimus qui to bonfoeblanditiis praese. Ntium voluum deleniti.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c469998\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We exceed expectations through innovative ideas and exceptional craftsmanship.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11334c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2442360\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d195ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-01.png\",\"id\":612},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b2107e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Time manage\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c366e73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Efficiently organizing tasks to maximize productivity and meet deadlines.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d099fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c4ae19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-02.png\",\"id\":613},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ba24a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fulfill target\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bdc9adf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Achieving goals with precision and commitment, ensuring success.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ba92fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.676,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae4fae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-01.jpg\",\"id\":623}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"0c406f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/signature1.png\",\"id\":633},\"title\":\"Hanley Robin\",\"desc\":\"(Chairman and founder)\",\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to know more about us?\",\"desc\":\"Just download brochure...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-scaled.jpg\",\"id\":663},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"060\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.937},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fe2tech is a professional builder company\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.063},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fe2tech is a leading company in building and manufacturing high-quality mechanical solutions.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e9a883e\",\"elType\":\"widget\",\"settings\":{\"start_text\":\"Start\",\"end_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"history\":[{\"_id\":\"7d82651\",\"title\":\"hihi\",\"content\":\"hihi\"}]},\"elements\":[],\"widgetType\":\"ct_history\"}],\"isInner\":false}],\"isInner\":false}]'),(5441,2426,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:6;s:18:\"title_space_bottom\";i:3;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:4;s:22:\"sub_title_space_bottom\";i:3;s:15:\"sub_title_color\";i:1;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:5;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:7;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}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:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;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:10;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:3;s:13:\"margin_mobile\";i:3;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:3;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:6;s:7:\"padding\";i:6;s:14:\"padding_tablet\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:5:\"image\";i:1;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"ct_cta\";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:\"source_section\";a:4:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:4:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:14:\"slides_to_show\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:16:\"slides_to_scroll\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:6:\"arrows\";i:1;s:8:\"autoplay\";i:1;s:8:\"infinite\";i:1;}}}}}'),(5444,2427,'_wp_page_template','default'),(5445,2427,'_elementor_edit_mode','builder'),(5446,2427,'_elementor_template_type','wp-page'),(5447,2427,'_elementor_version','3.24.7'),(5448,2427,'_elementor_data','[{\"id\":\"c986484\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"21\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab9e3e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.324,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cc7a78\",\"elType\":\"widget\",\"settings\":{\"title\":\"We satisfy you with innovative ideas and quality work.\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"sub_title\":\"About us\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c469998\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We exceed expectations through innovative ideas and exceptional craftsmanship.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11334c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2442360\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d195ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-01.png\",\"id\":612},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b2107e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Time manage\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c366e73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Efficiently organizing tasks to maximize productivity and meet deadlines.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d099fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c4ae19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-02.png\",\"id\":613},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ba24a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fulfill target\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bdc9adf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Achieving goals with precision and commitment, ensuring success.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ba92fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.676,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae4fae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-01.jpg\",\"id\":623}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"0c406f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/signature1.png\",\"id\":633},\"title\":\"Hanley Robin\",\"desc\":\"(Chairman and founder)\",\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to know more about us?\",\"desc\":\"Just download brochure...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-scaled.jpg\",\"id\":663},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"060\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.937},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Far East High Tech is a professional builder company\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.063},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Far East High Tech is a leading company in building and manufacturing high-quality mechanical solutions.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e9a883e\",\"elType\":\"widget\",\"settings\":{\"start_text\":\"Start\",\"end_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"history\":[{\"_id\":\"7d82651\",\"title\":\"hihi\",\"content\":\"hihi\"}]},\"elements\":[],\"widgetType\":\"ct_history\"}],\"isInner\":false}],\"isInner\":false}]'),(5449,2427,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:6;s:18:\"title_space_bottom\";i:3;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:4;s:22:\"sub_title_space_bottom\";i:3;s:15:\"sub_title_color\";i:1;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:5;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:7;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}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:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;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:10;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:3;s:13:\"margin_mobile\";i:3;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:3;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:6;s:7:\"padding\";i:6;s:14:\"padding_tablet\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:5:\"image\";i:1;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"ct_cta\";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:\"source_section\";a:4:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:4:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:14:\"slides_to_show\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:16:\"slides_to_scroll\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:6:\"arrows\";i:1;s:8:\"autoplay\";i:1;s:8:\"infinite\";i:1;}}}}}'),(5452,2428,'_wp_page_template','default'),(5453,2428,'_elementor_edit_mode','builder'),(5454,2428,'_elementor_template_type','wp-page'),(5455,2428,'_elementor_version','3.24.7'),(5456,2428,'_elementor_data','[{\"id\":\"c986484\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"21\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab9e3e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.324,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cc7a78\",\"elType\":\"widget\",\"settings\":{\"title\":\"We satisfy you with innovative ideas and quality work.\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"sub_title\":\"About us\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c469998\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We exceed expectations through innovative ideas and exceptional craftsmanship.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11334c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2442360\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d195ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-01.png\",\"id\":612},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b2107e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Time manage\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c366e73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Efficiently organizing tasks to maximize productivity and meet deadlines.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d099fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c4ae19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-02.png\",\"id\":613},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ba24a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fulfill target\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bdc9adf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Achieving goals with precision and commitment, ensuring success.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ba92fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.676,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae4fae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-01.jpg\",\"id\":623}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"0c406f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/signature1.png\",\"id\":633},\"title\":\"Hanley Robin\",\"desc\":\"(Chairman and founder)\",\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to know more about us?\",\"desc\":\"Just download brochure...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-scaled.jpg\",\"id\":663},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"060\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.937},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Far East High Tech is a professional builder company\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.063},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Far East High Tech is a leading company in building and manufacturing high-quality mechanical solutions.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e9a883e\",\"elType\":\"widget\",\"settings\":{\"start_text\":\"Start\",\"end_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"history\":[{\"_id\":\"7d82651\",\"title\":\"hihi\",\"content\":\"hihi\"}]},\"elements\":[],\"widgetType\":\"ct_history\"}],\"isInner\":false}],\"isInner\":false}]'),(5457,2428,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:6;s:18:\"title_space_bottom\";i:3;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:4;s:22:\"sub_title_space_bottom\";i:3;s:15:\"sub_title_color\";i:1;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:5;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:7;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}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:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;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:10;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:3;s:13:\"margin_mobile\";i:3;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:3;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:6;s:7:\"padding\";i:6;s:14:\"padding_tablet\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:5:\"image\";i:1;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"ct_cta\";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:\"source_section\";a:4:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:4:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:14:\"slides_to_show\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:16:\"slides_to_scroll\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:6:\"arrows\";i:1;s:8:\"autoplay\";i:1;s:8:\"infinite\";i:1;}}}}}'),(5459,2429,'_wp_page_template','default'),(5460,2429,'_elementor_edit_mode','builder'),(5461,2429,'_elementor_template_type','wp-page'),(5462,2429,'_elementor_version','3.24.7'),(5463,2429,'_elementor_data','[{\"id\":\"c986484\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"21\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab9e3e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.324,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cc7a78\",\"elType\":\"widget\",\"settings\":{\"title\":\"We satisfy you with innovative ideas and quality work.\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"sub_title\":\"About us\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c469998\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We exceed expectations through innovative ideas and exceptional craftsmanship.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11334c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2442360\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d195ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-01.png\",\"id\":612},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b2107e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Time manage\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c366e73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Efficiently organizing tasks to maximize productivity and meet deadlines.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d099fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c4ae19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-02.png\",\"id\":613},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ba24a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fulfill target\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bdc9adf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Achieving goals with precision and commitment, ensuring success.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ba92fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.676,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae4fae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-01.jpg\",\"id\":623}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"0c406f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/signature1.png\",\"id\":633},\"title\":\"Hanley Robin\",\"desc\":\"(Chairman and founder)\",\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to know more about us?\",\"desc\":\"Just download brochure...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-scaled.jpg\",\"id\":663},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"060\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.937},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Far East High Tech is a professional builder company\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.063},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Far East High Tech is a leading company in building and manufacturing high-quality mechanical solutions.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e9a883e\",\"elType\":\"widget\",\"settings\":{\"start_text\":\"Start\",\"end_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"history\":[{\"_id\":\"7d82651\",\"title\":\"hihi\",\"content\":\"hihi\"}]},\"elements\":[],\"widgetType\":\"ct_history\"}],\"isInner\":false}],\"isInner\":false}]'),(5464,2429,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:6;s:18:\"title_space_bottom\";i:3;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:4;s:22:\"sub_title_space_bottom\";i:3;s:15:\"sub_title_color\";i:1;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:5;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:7;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}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:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;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:10;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:3;s:13:\"margin_mobile\";i:3;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:3;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:6;s:7:\"padding\";i:6;s:14:\"padding_tablet\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:5:\"image\";i:1;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"ct_cta\";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:\"source_section\";a:4:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:4:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:14:\"slides_to_show\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:16:\"slides_to_scroll\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:6:\"arrows\";i:1;s:8:\"autoplay\";i:1;s:8:\"infinite\";i:1;}}}}}'),(5466,2430,'_wp_page_template','default'),(5467,2430,'_elementor_edit_mode','builder'),(5468,2430,'_elementor_template_type','wp-page'),(5469,2430,'_elementor_version','3.24.7'),(5470,2430,'_elementor_data','[{\"id\":\"c986484\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"21\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab9e3e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.324,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cc7a78\",\"elType\":\"widget\",\"settings\":{\"title\":\"We satisfy you with innovative ideas and quality work.\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"sub_title\":\"About us\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c469998\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We exceed expectations through innovative ideas and exceptional craftsmanship.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11334c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2442360\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d195ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-01.png\",\"id\":612},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b2107e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Time manage\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c366e73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Efficiently organizing tasks to maximize productivity and meet deadlines.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d099fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c4ae19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-02.png\",\"id\":613},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ba24a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fulfill target\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bdc9adf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Achieving goals with precision and commitment, ensuring success.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ba92fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.676,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae4fae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-01.jpg\",\"id\":623}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"0c406f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/signature1.png\",\"id\":633},\"title\":\"Hanley Robin\",\"desc\":\"(Chairman and founder)\",\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to know more about us?\",\"desc\":\"Just download brochure...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-scaled.jpg\",\"id\":663},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"060\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.937},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Far East High Tech is a professional builder company\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.063},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Far East High Tech is a leading company in building and manufacturing high-quality mechanical solutions.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e9a883e\",\"elType\":\"widget\",\"settings\":{\"start_text\":\"Start\",\"end_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"history\":[{\"_id\":\"7d82651\",\"title\":\"12th Jan, 2018\",\"content\":\"Establishment of Constrio\"},{\"_id\":\"37eb5f9\",\"title\":\"2nd Feb, 2018\",\"content\":\"Exhibition Planning & Exhibition Management\"},{\"_id\":\"2e7ebbf\",\"title\":\"8th Jul, 2018\",\"content\":\"Registered as a construction company\"}]},\"elements\":[],\"widgetType\":\"ct_history\"}],\"isInner\":false}],\"isInner\":false}]'),(5471,2430,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:6;s:18:\"title_space_bottom\";i:3;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:4;s:22:\"sub_title_space_bottom\";i:3;s:15:\"sub_title_color\";i:1;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:5;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:7;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}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:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;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:10;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:3;s:13:\"margin_mobile\";i:3;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:3;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:6;s:7:\"padding\";i:6;s:14:\"padding_tablet\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:5:\"image\";i:1;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"ct_cta\";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:\"source_section\";a:4:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:4:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:14:\"slides_to_show\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:16:\"slides_to_scroll\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:6:\"arrows\";i:1;s:8:\"autoplay\";i:1;s:8:\"infinite\";i:1;}}}}}'),(5475,24,'_edit_lock','1730104666:1'),(5485,2432,'_wp_page_template','default'),(5486,2432,'_elementor_edit_mode','builder'),(5487,2432,'_elementor_template_type','wp-page'),(5488,2432,'_elementor_version','3.8.0'),(5489,2432,'_elementor_data','[{\"id\":\"253fe5b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"a2a8d03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c431857\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":515,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d10974f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dbae7b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2f7cb3c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":38,\"spread\":0,\"color\":\"rgba(6.9999999999999964, 0, 76, 0.23)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-108\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d8771\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1bbe0fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Feel free to contact us to solve any problem!\",\"sub_title\":\"Contact us\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"147d5ff\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia.\",\"ct_icon\":{\"value\":\"fas fa-store-alt\",\"library\":\"fa-solid\"},\"_id\":\"38e4334\",\"title\":\"Our head office address:\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/info-icon-01.png\",\"id\":279}},{\"content\":\"(734) 697-2907<br\\/>\\n(843) 971-1906\",\"ct_icon\":{\"value\":\"fas fa-store-alt\",\"library\":\"fa-solid\"},\"_id\":\"f98cc4e\",\"title\":\"Call for help:\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/info-icon-02.png\",\"id\":280}},{\"content\":\"noreply@envato.com<br\\/>\\nnoreply@Constrio.com\",\"ct_icon\":{\"value\":\"fas fa-store-alt\",\"library\":\"fa-solid\"},\"_id\":\"fb16da1\",\"title\":\"Mail us for information:\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/info-icon-03.png\",\"id\":281}}],\"layout\":\"2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":true},{\"id\":\"c443a53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#EEF2F6\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b59c45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in touch!\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44b4987\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku tori\\nssimos ducimus qui blanditiis.\",\"text_color\":\"#636363\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"85609a1\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"91\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5490,2432,'_elementor_controls_usage','a:7:{s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:6:\"margin\";i:2;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:13:\"margin_mobile\";i:1;}}s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:15:\"stretch_section\";i:1;s:6:\"layout\";i:1;s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";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;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:11:\"css_classes\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:5:{s:5:\"title\";i:2;s:18:\"title_space_bottom\";i:2;s:27:\"title_typography_typography\";i:2;s:33:\"title_typography_font_size_tablet\";i:1;s:26:\"title_typography_font_size\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_ctf7\";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:\"source_section\";a:1:{s:7:\"ctf7_id\";i:1;}}}}}'),(5493,2433,'_wp_page_template','default'),(5494,2433,'_elementor_edit_mode','builder'),(5495,2433,'_elementor_template_type','wp-page'),(5496,2433,'_elementor_version','3.8.0'),(5497,2433,'_elementor_data','[{\"id\":\"253fe5b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"a2a8d03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c431857\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":515,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d10974f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dbae7b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2f7cb3c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":38,\"spread\":0,\"color\":\"rgba(6.9999999999999964, 0, 76, 0.23)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-108\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d8771\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1bbe0fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Feel free to contact us to solve any problem!\",\"sub_title\":\"Contact us\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"147d5ff\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia.\",\"ct_icon\":{\"value\":\"fas fa-store-alt\",\"library\":\"fa-solid\"},\"_id\":\"38e4334\",\"title\":\"Our head office address:\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/info-icon-01.png\",\"id\":279}},{\"content\":\"(734) 697-2907<br\\/>\\n(843) 971-1906\",\"ct_icon\":{\"value\":\"fas fa-store-alt\",\"library\":\"fa-solid\"},\"_id\":\"f98cc4e\",\"title\":\"Call for help:\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/info-icon-02.png\",\"id\":280}},{\"content\":\"noreply@envato.com<br\\/>\\nnoreply@Constrio.com\",\"ct_icon\":{\"value\":\"fas fa-store-alt\",\"library\":\"fa-solid\"},\"_id\":\"fb16da1\",\"title\":\"Mail us for information:\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/info-icon-03.png\",\"id\":281}}],\"layout\":\"2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":true},{\"id\":\"c443a53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#EEF2F6\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b59c45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in touch!\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44b4987\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku tori\\nssimos ducimus qui blanditiis.\",\"text_color\":\"#636363\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"85609a1\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"91\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5498,2433,'_elementor_controls_usage','a:7:{s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:6:\"margin\";i:2;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:13:\"margin_mobile\";i:1;}}s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:15:\"stretch_section\";i:1;s:6:\"layout\";i:1;s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";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;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:11:\"css_classes\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:5:{s:5:\"title\";i:2;s:18:\"title_space_bottom\";i:2;s:27:\"title_typography_typography\";i:2;s:33:\"title_typography_font_size_tablet\";i:1;s:26:\"title_typography_font_size\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_ctf7\";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:\"source_section\";a:1:{s:7:\"ctf7_id\";i:1;}}}}}'),(5501,2434,'_wp_page_template','default'),(5502,2434,'_elementor_edit_mode','builder'),(5503,2434,'_elementor_template_type','wp-page'),(5504,2434,'_elementor_version','3.8.0'),(5505,2434,'_elementor_data','[{\"id\":\"253fe5b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"a2a8d03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c431857\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":515,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d10974f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dbae7b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2f7cb3c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":38,\"spread\":0,\"color\":\"rgba(6.9999999999999964, 0, 76, 0.23)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-108\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d8771\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1bbe0fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Feel free to contact us to solve any problem!\",\"sub_title\":\"Contact us\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"147d5ff\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"ct_icon\":{\"value\":\"fas fa-store-alt\",\"library\":\"fa-solid\"},\"_id\":\"38e4334\",\"title\":\"Our head office address:\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/info-icon-01.png\",\"id\":279}},{\"content\":\"0968860386\",\"ct_icon\":{\"value\":\"fas fa-store-alt\",\"library\":\"fa-solid\"},\"_id\":\"f98cc4e\",\"title\":\"Call for help:\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/info-icon-02.png\",\"id\":280}}],\"layout\":\"2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":true},{\"id\":\"c443a53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#EEF2F6\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b59c45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in touch!\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44b4987\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku tori\\nssimos ducimus qui blanditiis.\",\"text_color\":\"#636363\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"85609a1\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"91\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5506,2434,'_elementor_controls_usage','a:7:{s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:6:\"margin\";i:2;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:13:\"margin_mobile\";i:1;}}s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:15:\"stretch_section\";i:1;s:6:\"layout\";i:1;s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";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;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:11:\"css_classes\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:5:{s:5:\"title\";i:2;s:18:\"title_space_bottom\";i:2;s:27:\"title_typography_typography\";i:2;s:33:\"title_typography_font_size_tablet\";i:1;s:26:\"title_typography_font_size\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_ctf7\";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:\"source_section\";a:1:{s:7:\"ctf7_id\";i:1;}}}}}'),(5515,30,'_edit_last','1'),(5516,30,'rs_page_bg_color',''),(5517,2435,'_wp_page_template','default'),(5518,2435,'_elementor_edit_mode','builder'),(5519,2435,'_elementor_template_type','wp-page'),(5520,2435,'_elementor_data','[{\"id\":\"9eaff81\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"673502da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"996e851\",\"elType\":\"widget\",\"settings\":{\"title\":\"You can learn more from our asked questions\",\"sub_title\":\"FAQ\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"15656588\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"37b6c60c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4af9be3\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":0,\"bottom\":\"46\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8731cd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f7c9b22\",\"elType\":\"widget\",\"settings\":{\"active_section\":1,\"ct_accordion\":[{\"ac_title\":\"What should I include in my personal statement?\",\"ac_content\":\"Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiusmod tempor incididunt<\\/u> ut labore.\",\"_id\":\"6d4372c\"},{\"ac_title\":\"Will membership plans be charged automatically?\",\"ac_content\":\"Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiusmod tempor incididunt<\\/u> ut labore.\",\"_id\":\"5ba9ac6\"},{\"ac_title\":\"How can I make a change to my application?\",\"ac_content\":\"Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiusmod tempor incididunt<\\/u> ut labore.\",\"_id\":\"535b837\"}]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"736fa99\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1bd3aee\",\"elType\":\"widget\",\"settings\":{\"active_section\":1,\"ct_accordion\":[{\"ac_title\":\"Where can I find out about funding?\",\"ac_content\":\"Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiusmod tempor incididunt<\\/u> ut labore.\",\"_id\":\"6d4372c\"},{\"ac_title\":\"What will happen when I\\u2019ve sent my application?\",\"ac_content\":\"Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiusmod tempor incididunt<\\/u> ut labore.\",\"_id\":\"5ba9ac6\"},{\"ac_title\":\"Can I get a free trial before I purchase?\",\"ac_content\":\"Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiusmod tempor incididunt<\\/u> ut labore.\",\"_id\":\"535b837\"}]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fd2eb3e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-contact.jpg\",\"id\":302},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"85\",\"bottom\":\"67\",\"left\":\"85\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"a4cc2b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"959d290\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have any other questions?\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"5616f45\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku tori\\nssimos ducimus qui blanditiis.\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"28\",\"bottom\":\"0\",\"left\":\"28\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d135513\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"308\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false}]'),(5521,2435,'_elementor_version','2.7.5'),(5522,2435,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;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:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_line_height\";i:2;s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";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: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:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:3;s:7:\"padding\";i:2;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:2:{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:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:2:{s:14:\"active_section\";i:2;s:12:\"ct_accordion\";i:2;}}}}s:7:\"ct_ctf7\";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:\"source_section\";a:1:{s:7:\"ctf7_id\";i:1;}}s:8:\"advanced\";a:1:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:1;}}}}}'),(5526,30,'_edit_lock','1730083597:1'),(5527,367,'_edit_lock','1730083624:1'),(5528,367,'_edit_last','1'),(5529,367,'rs_page_bg_color',''),(5530,2436,'_wp_page_template','default'),(5531,2436,'_elementor_edit_mode','builder'),(5532,2436,'_elementor_template_type','wp-page'),(5533,2436,'_elementor_version','2.7.5'),(5534,2436,'_elementor_data','[{\"id\":\"7de6c951\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6cbfc45d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"62e64003\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will satisfy you by our work ideas\",\"sub_title\":\"Testimonials\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"55ae3e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"78c0972b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dcf1934\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"23\",\"right\":0,\"bottom\":\"1\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/dot-map.png\",\"id\":405},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\"},\"elements\":[{\"id\":\"9af0579\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6ed351c\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-01.jpg\",\"id\":397},\"title\":\"Adam Chuhan\",\"position\":\"Web designer\",\"description\":\"Lorem Ipsum available, but the majority have to sufferrer tobe alterati on in som. It is a long to be established.\",\"_id\":\"f0263fb\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-02.jpg\",\"id\":398},\"title\":\"Erika Johnson\",\"position\":\"Web designer\",\"description\":\"Lorem Ipsum available, but the majority have to sufferrer tobe alterati on in som. It is a long to be established.\",\"_id\":\"63b4d11\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-03.jpg\",\"id\":399},\"title\":\"Allie Johnson\",\"position\":\"SEO manager\",\"description\":\"Lorem Ipsum available, but the majority have to sufferrer tobe alterati on in som. It is a long to be established.\",\"_id\":\"86a71af\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-04.jpg\",\"id\":400},\"title\":\"James Smith\",\"position\":\"Web designer\",\"description\":\"Lorem Ipsum available, but the majority have to sufferrer tobe alterati on in som. It is a long to be established.\",\"_id\":\"4c71093\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-05.jpg\",\"id\":401},\"title\":\"Sasha D Johnson\",\"position\":\"SEO manager\",\"description\":\"Lorem Ipsum available, but the majority have to sufferrer tobe alterati on in som. It is a long to be established.\",\"_id\":\"2720b43\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Debra L Smith\",\"position\":\"SEO manager\",\"description\":\"Lorem Ipsum available, but the majority have to sufferrer tobe alterati on in som. It is a long to be established.\",\"_id\":\"a489450\"}],\"col_md\":\"2\",\"col_lg\":\"3\",\"col_xl\":\"3\"},\"elements\":[],\"widgetType\":\"ct_testimonial_grid\"}],\"isInner\":false}],\"isInner\":false}]'),(5535,2436,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;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:16:\"content_position\";i:1;s:3:\"gap\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:2;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:4:{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:19:\"ct_testimonial_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(5539,2437,'_wp_page_template','default'),(5540,2437,'_elementor_edit_mode','builder'),(5541,2437,'_elementor_template_type','wp-post'),(5542,2437,'_elementor_version','3.24.7'),(5543,2437,'_elementor_data','[{\"id\":\"7225c724\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#00165a\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer.png\",\"id\":87},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"109cef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.3},\"elements\":[{\"id\":\"6667e1a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/fe2tech.png\",\"id\":2409,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae6ecf2\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Office: 43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}},{\"content\":\"Factory: 176\\/9 Nguy\\u1ec5n Th\\u1ecb T\\u01b0\\u01a1i, KP T\\u00e2n Ph\\u01b0\\u1edbc, P. T\\u00e2n B\\u00ecnh, D\\u0129 An city, B\\u00ecnh D\\u01b0\\u01a1ng\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"be1a6dd\"},{\"content\":\"0968860386\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"6dd7194a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Open Hours:\",\"text_color\":\"#f5b011\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"ct-text-gradient\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1e0523b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Mon - Sat: 8 am - 5 pm,<br\\/>\\nSunday: CLOSED\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"712a43be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.664,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e4e262b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Menu\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6e682e5b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"39\",\"style\":\"tow-col-light\",\"link_color_hover\":\"#f5ae0f\",\"line_color_hover\":\"#f5ae0f\",\"menu_align\":\"left\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"}],\"isInner\":false},{\"id\":\"1ab76a16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7},\"elements\":[{\"id\":\"37a5e636\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"aa15610\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#011143\",\"padding\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"040\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2487ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40d8f8a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sign up for alerts, our latest blogs, thoughts, and insights.\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d21d208\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"27383ab2\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin-box\",\"library\":\"material\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24b98c01\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"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},\"gap\":\"extended\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a6c11e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53be024\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"5990603\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"7f874a5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright @2024 Trifles. All Rights Reserved by Far East High Tech<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_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},\"_css_classes\":\"ct-copyright\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5544,2437,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:2:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:1;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:16:\"link_color_hover\";i:1;s:16:\"line_color_hover\";i:1;s:10:\"menu_align\";i:1;s:17:\"menu_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:13:\"ct_newsletter\";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:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";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:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:1;}}}}}'),(5552,2438,'_wp_page_template','default'),(5553,2438,'_elementor_edit_mode','builder'),(5554,2438,'_elementor_template_type','wp-page'),(5555,2438,'_elementor_version','3.24.7'),(5556,2438,'_elementor_data','[{\"id\":\"253fe5b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"a2a8d03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c431857\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":515,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d10974f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dbae7b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2f7cb3c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":38,\"spread\":0,\"color\":\"rgba(6.9999999999999964, 0, 76, 0.23)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-108\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d8771\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1bbe0fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Feel free to contact us to solve any problem!\",\"sub_title\":\"Contact us\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"147d5ff\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"ct_icon\":{\"value\":\"fas fa-store-alt\",\"library\":\"fa-solid\"},\"_id\":\"38e4334\",\"title\":\"Our head office address:\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/info-icon-01.png\",\"id\":279}},{\"content\":\"0968860386\",\"ct_icon\":{\"value\":\"fas fa-store-alt\",\"library\":\"fa-solid\"},\"_id\":\"f98cc4e\",\"title\":\"Call for help:\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/info-icon-02.png\",\"id\":280}}],\"layout\":\"2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":true},{\"id\":\"c443a53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#EEF2F6\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b59c45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in touch!\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44b4987\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku tori\\nssimos ducimus qui blanditiis.\",\"text_color\":\"#636363\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"85609a1\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"91\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5557,2438,'_elementor_controls_usage','a:7:{s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:6:\"margin\";i:2;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:13:\"margin_mobile\";i:1;}}s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:15:\"stretch_section\";i:1;s:6:\"layout\";i:1;s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";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;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:11:\"css_classes\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:5:{s:5:\"title\";i:2;s:18:\"title_space_bottom\";i:2;s:27:\"title_typography_typography\";i:2;s:33:\"title_typography_font_size_tablet\";i:1;s:26:\"title_typography_font_size\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_ctf7\";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:\"source_section\";a:1:{s:7:\"ctf7_id\";i:1;}}}}}'),(5561,2439,'_wp_page_template','default'),(5562,2439,'_elementor_edit_mode','builder'),(5563,2439,'_elementor_template_type','wp-page'),(5564,2439,'_elementor_version','3.24.7'),(5565,2439,'_elementor_data','[{\"id\":\"253fe5b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"a2a8d03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c431857\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":515,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d10974f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dbae7b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2f7cb3c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":38,\"spread\":0,\"color\":\"rgba(6.9999999999999964, 0, 76, 0.23)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-108\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d8771\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1bbe0fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Feel free to contact us to solve any problem!\",\"sub_title\":\"Contact us\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"147d5ff\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"ct_icon\":{\"value\":\"fas fa-store-alt\",\"library\":\"fa-solid\"},\"_id\":\"38e4334\",\"title\":\"Our head office address:\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/info-icon-01.png\",\"id\":279}},{\"content\":\"0968860386\",\"ct_icon\":{\"value\":\"fas fa-store-alt\",\"library\":\"fa-solid\"},\"_id\":\"f98cc4e\",\"title\":\"Call for help:\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/info-icon-02.png\",\"id\":280}}],\"layout\":\"2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":true},{\"id\":\"c443a53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#EEF2F6\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b59c45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in touch!\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44b4987\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku tori\\nssimos ducimus qui blanditiis.\",\"text_color\":\"#636363\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"85609a1\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"91\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5566,2439,'_elementor_controls_usage','a:7:{s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:6:\"margin\";i:2;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:13:\"margin_mobile\";i:1;}}s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:15:\"stretch_section\";i:1;s:6:\"layout\";i:1;s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";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;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:11:\"css_classes\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:5:{s:5:\"title\";i:2;s:18:\"title_space_bottom\";i:2;s:27:\"title_typography_typography\";i:2;s:33:\"title_typography_font_size_tablet\";i:1;s:26:\"title_typography_font_size\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_ctf7\";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:\"source_section\";a:1:{s:7:\"ctf7_id\";i:1;}}}}}'),(5570,2440,'_wp_page_template','default'),(5571,2440,'_elementor_edit_mode','builder'),(5572,2440,'_elementor_template_type','wp-page'),(5573,2440,'_elementor_version','3.24.7'),(5574,2440,'_elementor_data','[{\"id\":\"253fe5b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"a2a8d03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c431857\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":515,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d10974f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dbae7b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2f7cb3c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":38,\"spread\":0,\"color\":\"rgba(6.9999999999999964, 0, 76, 0.23)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-108\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d8771\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1bbe0fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Feel free to contact us to solve any problem!\",\"sub_title\":\"Contact us\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"147d5ff\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"ct_icon\":{\"value\":\"fas fa-store-alt\",\"library\":\"fa-solid\"},\"_id\":\"38e4334\",\"title\":\"Our head office address:\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/info-icon-01.png\",\"id\":279}},{\"content\":\"0968860386\",\"ct_icon\":{\"value\":\"fas fa-store-alt\",\"library\":\"fa-solid\"},\"_id\":\"f98cc4e\",\"title\":\"Call for help:\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/info-icon-02.png\",\"id\":280}}],\"layout\":\"2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":true},{\"id\":\"c443a53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#EEF2F6\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b59c45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in touch!\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44b4987\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>If you have questions or want to learn more about our services, don\\u2019t hesitate to reach out. We\\u2019re here to help!<\\/p>\",\"text_color\":\"#636363\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"85609a1\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"91\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5575,2440,'_elementor_controls_usage','a:7:{s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:6:\"margin\";i:2;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:13:\"margin_mobile\";i:1;}}s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:15:\"stretch_section\";i:1;s:6:\"layout\";i:1;s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";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;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:11:\"css_classes\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:5:{s:5:\"title\";i:2;s:18:\"title_space_bottom\";i:2;s:27:\"title_typography_typography\";i:2;s:33:\"title_typography_font_size_tablet\";i:1;s:26:\"title_typography_font_size\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_ctf7\";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:\"source_section\";a:1:{s:7:\"ctf7_id\";i:1;}}}}}'),(5581,2441,'_wp_page_template','default'),(5582,2441,'_elementor_edit_mode','builder'),(5583,2441,'_elementor_template_type','wp-page'),(5584,2441,'_elementor_version','3.24.7'),(5585,2441,'_elementor_data','[{\"id\":\"253fe5b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"a2a8d03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c431857\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":515,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d10974f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dbae7b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2f7cb3c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":38,\"spread\":0,\"color\":\"rgba(6.9999999999999964, 0, 76, 0.23)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-108\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d8771\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1bbe0fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Feel free to contact us to solve any problem!\",\"sub_title\":\"Contact us\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"147d5ff\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"ct_icon\":{\"value\":\"fas fa-store-alt\",\"library\":\"fa-solid\"},\"_id\":\"38e4334\",\"title\":\"Our head office address:\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/info-icon-01.png\",\"id\":279}},{\"content\":\"0968860386\",\"ct_icon\":{\"value\":\"fas fa-store-alt\",\"library\":\"fa-solid\"},\"_id\":\"f98cc4e\",\"title\":\"Call for help:\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/info-icon-02.png\",\"id\":280}}],\"layout\":\"2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":true},{\"id\":\"c443a53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#EEF2F6\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b59c45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in touch!\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44b4987\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>If you have questions or want to learn more about our services, don\\u2019t hesitate to reach out. We\\u2019re here to help!<\\/p>\",\"text_color\":\"#636363\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"85609a1\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"91\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5586,2441,'_elementor_controls_usage','a:7:{s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:6:\"margin\";i:2;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:13:\"margin_mobile\";i:1;}}s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:15:\"stretch_section\";i:1;s:6:\"layout\";i:1;s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";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;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:11:\"css_classes\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:5:{s:5:\"title\";i:2;s:18:\"title_space_bottom\";i:2;s:27:\"title_typography_typography\";i:2;s:33:\"title_typography_font_size_tablet\";i:1;s:26:\"title_typography_font_size\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_ctf7\";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:\"source_section\";a:1:{s:7:\"ctf7_id\";i:1;}}}}}'),(5590,2442,'_wp_page_template','default'),(5591,2442,'_elementor_edit_mode','builder'),(5592,2442,'_elementor_template_type','wp-page'),(5593,2442,'_elementor_version','3.24.7'),(5594,2442,'_elementor_data','[{\"id\":\"253fe5b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"a2a8d03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c431857\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":515,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d10974f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dbae7b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2f7cb3c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":38,\"spread\":0,\"color\":\"rgba(6.9999999999999964, 0, 76, 0.23)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-108\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d8771\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1bbe0fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Feel free to contact us to solve any problem!\",\"sub_title\":\"Contact us\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"147d5ff\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"ct_icon\":{\"value\":\"fas fa-store-alt\",\"library\":\"fa-solid\"},\"_id\":\"38e4334\",\"title\":\"Our head office address:\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/info-icon-01.png\",\"id\":279}},{\"content\":\"0968860386\",\"ct_icon\":{\"value\":\"fas fa-store-alt\",\"library\":\"fa-solid\"},\"_id\":\"f98cc4e\",\"title\":\"Call for help:\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/info-icon-02.png\",\"id\":280}}],\"layout\":\"2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":true},{\"id\":\"c443a53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#EEF2F6\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b59c45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in touch!\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44b4987\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>If you have questions or want to learn more about our services, don\\u2019t hesitate to reach out. We\\u2019re here to help!<\\/p>\",\"text_color\":\"#636363\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"85609a1\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"91\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5595,2442,'_elementor_controls_usage','a:7:{s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:6:\"margin\";i:2;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:13:\"margin_mobile\";i:1;}}s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:15:\"stretch_section\";i:1;s:6:\"layout\";i:1;s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";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;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:11:\"css_classes\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:5:{s:5:\"title\";i:2;s:18:\"title_space_bottom\";i:2;s:27:\"title_typography_typography\";i:2;s:33:\"title_typography_font_size_tablet\";i:1;s:26:\"title_typography_font_size\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_ctf7\";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:\"source_section\";a:1:{s:7:\"ctf7_id\";i:1;}}}}}'),(5599,2443,'_wp_page_template','default'),(5600,2443,'_elementor_edit_mode','builder'),(5601,2443,'_elementor_template_type','wp-page'),(5602,2443,'_elementor_version','3.24.7'),(5603,2443,'_elementor_data','[{\"id\":\"253fe5b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"a2a8d03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c431857\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":515,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d10974f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dbae7b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2f7cb3c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":38,\"spread\":0,\"color\":\"rgba(6.9999999999999964, 0, 76, 0.23)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-108\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d8771\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1bbe0fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Feel free to contact us to solve any problem!\",\"sub_title\":\"Contact us\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"147d5ff\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"ct_icon\":{\"value\":\"fas fa-store-alt\",\"library\":\"fa-solid\"},\"_id\":\"38e4334\",\"title\":\"Our head office address:\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/info-icon-01.png\",\"id\":279}},{\"content\":\"0968860386\",\"ct_icon\":{\"value\":\"fas fa-store-alt\",\"library\":\"fa-solid\"},\"_id\":\"f98cc4e\",\"title\":\"Call for help:\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/info-icon-02.png\",\"id\":280}},{\"content\":\"luutin.nmpco@gmail.com\",\"ct_icon\":{\"value\":\"fas fa-store-alt\",\"library\":\"fa-solid\"},\"title\":\"Mail us for information:\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/info-icon-03.png\",\"id\":281,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"b2b743e\"}],\"layout\":\"2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":true},{\"id\":\"c443a53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#EEF2F6\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b59c45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in touch!\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44b4987\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>If you have questions or want to learn more about our services, don\\u2019t hesitate to reach out. We\\u2019re here to help!<\\/p>\",\"text_color\":\"#636363\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"85609a1\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"91\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5604,2443,'_elementor_controls_usage','a:7:{s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:6:\"margin\";i:2;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:13:\"margin_mobile\";i:1;}}s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:15:\"stretch_section\";i:1;s:6:\"layout\";i:1;s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";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;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:11:\"css_classes\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:5:{s:5:\"title\";i:2;s:18:\"title_space_bottom\";i:2;s:27:\"title_typography_typography\";i:2;s:33:\"title_typography_font_size_tablet\";i:1;s:26:\"title_typography_font_size\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_ctf7\";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:\"source_section\";a:1:{s:7:\"ctf7_id\";i:1;}}}}}'),(5612,2446,'_wp_attached_file','2024/10/CNC.jpg'),(5613,2446,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:15:\"2024/10/CNC.jpg\";s:8:\"filesize\";i:139572;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(5621,2449,'_wp_attached_file','2024/10/Types-Of-Lathe-Operation.webp'),(5622,2449,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:840;s:6:\"height\";i:473;s:4:\"file\";s:37:\"2024/10/Types-Of-Lathe-Operation.webp\";s:8:\"filesize\";i:30426;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:{}}}'),(5630,2452,'_wp_attached_file','2024/10/istockphoto-98459248-612x612-1.jpg'),(5631,2452,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:612;s:6:\"height\";i:407;s:4:\"file\";s:42:\"2024/10/istockphoto-98459248-612x612-1.jpg\";s:8:\"filesize\";i:39360;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Getty Images\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:14:\"Andreas Arnold\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5637,2454,'_elementor_edit_mode','builder'),(5638,2454,'_elementor_template_type','wp-page'),(5639,2454,'_elementor_version','3.24.7'),(5640,2454,'_wp_page_template','default'),(5641,2454,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We assess plans and provide tailored machinery.\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our company\\u2019s strength lies in our team, who have developed groundbreaking machinery and equipment.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/signature.png\",\"id\":1520},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":150,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Awards Winner\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Satisfied Clients\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Active projects\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_14479.png\",\"id\":2269,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"title\":\"198 Award-winning machinery and equipment manufacturing company.\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We help you build your vision with our machinery.\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We approach every project with precision and value clear, simple communication.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"Engineering\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Design\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"Production\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(1,13,50,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses thrive by providing the latest machinery technology.<\\/p>\",\"text_color\":\"#d6e0fe\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#bccbfb\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#021d6c\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5642,2454,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(5646,2455,'_elementor_edit_mode','builder'),(5647,2455,'_elementor_template_type','wp-page'),(5648,2455,'_elementor_version','3.24.7'),(5649,2455,'_wp_page_template','default'),(5650,2455,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We assess plans and provide tailored machinery.\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our company\\u2019s strength lies in our team, who have developed groundbreaking machinery and equipment.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/signature.png\",\"id\":1520},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":150,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Awards Winner\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Satisfied Clients\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Active projects\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_14479.png\",\"id\":2269,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"title\":\"198 Award-winning machinery and equipment manufacturing company.\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We help you build your vision with our machinery.\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We approach every project with precision and value clear, simple communication.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"Engineering\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Design\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"Production\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(1,13,50,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses thrive by providing the latest machinery technology.<\\/p>\",\"text_color\":\"#d6e0fe\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#bccbfb\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#021d6c\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5651,2455,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(5655,2456,'_elementor_edit_mode','builder'),(5656,2456,'_elementor_template_type','wp-page'),(5657,2456,'_elementor_version','3.24.7'),(5658,2456,'_wp_page_template','default'),(5659,2456,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We assess plans and provide tailored machinery.\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our company\\u2019s strength lies in our team, who have developed groundbreaking machinery and equipment.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/signature.png\",\"id\":1520},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":150,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Awards Winner\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Satisfied Clients\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Active projects\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_14479.png\",\"id\":2269,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"title\":\"198 Award-winning machinery and equipment manufacturing company.\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We help you build your vision with our machinery.\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We approach every project with precision and value clear, simple communication.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"Engineering\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Design\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"Production\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(1,13,50,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses thrive by providing the latest machinery technology.<\\/p>\",\"text_color\":\"#d6e0fe\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#bccbfb\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#021d6c\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5660,2456,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(5666,2457,'_wp_page_template','default'),(5667,2457,'_elementor_edit_mode','builder'),(5668,2457,'_elementor_template_type','wp-post'),(5669,2457,'_elementor_version','3.24.7'),(5670,2457,'_elementor_data','[{\"id\":\"7225c724\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#00165a\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer.png\",\"id\":87},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"109cef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.3},\"elements\":[{\"id\":\"6667e1a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/fe2tech.png\",\"id\":2409,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae6ecf2\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Office: 43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}},{\"content\":\"Factory: 176\\/9 Nguy\\u1ec5n Th\\u1ecb T\\u01b0\\u01a1i, KP T\\u00e2n Ph\\u01b0\\u1edbc, P. T\\u00e2n B\\u00ecnh, D\\u0129 An city, B\\u00ecnh D\\u01b0\\u01a1ng\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"be1a6dd\"},{\"content\":\"0968860386\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"6dd7194a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Open Hours:\",\"text_color\":\"#f5b011\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"ct-text-gradient\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1e0523b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Mon - Sat: 8 am - 5 pm,<br\\/>\\nSunday: CLOSED\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"712a43be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.664,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e4e262b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Menu\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6e682e5b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"39\",\"style\":\"tow-col-light\",\"link_color_hover\":\"#f5ae0f\",\"line_color_hover\":\"#f5ae0f\",\"menu_align\":\"left\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"}],\"isInner\":false},{\"id\":\"1ab76a16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7},\"elements\":[{\"id\":\"37a5e636\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"aa15610\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#011143\",\"padding\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"040\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2487ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40d8f8a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sign up for alerts, our latest blogs, thoughts, and insights.\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d21d208\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"27383ab2\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin-box\",\"library\":\"material\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24b98c01\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"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},\"gap\":\"extended\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a6c11e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53be024\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"5990603\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"7f874a5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright @2024 Trifles. All Rights Reserved by Far East High Tech<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_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},\"_css_classes\":\"ct-copyright\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5671,2457,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:2:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:1;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:16:\"link_color_hover\";i:1;s:16:\"line_color_hover\";i:1;s:10:\"menu_align\";i:1;s:17:\"menu_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:13:\"ct_newsletter\";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:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";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:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:1;}}}}}'),(5677,2458,'_wp_page_template','default'),(5678,2458,'_elementor_edit_mode','builder'),(5679,2458,'_elementor_template_type','wp-post'),(5680,2458,'_elementor_version','3.24.7'),(5681,2458,'_elementor_data','[{\"id\":\"7225c724\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#060606E6\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer.png\",\"id\":87},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"109cef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.3},\"elements\":[{\"id\":\"6667e1a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/fe2tech.png\",\"id\":2409,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae6ecf2\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Office: 43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}},{\"content\":\"Factory: 176\\/9 Nguy\\u1ec5n Th\\u1ecb T\\u01b0\\u01a1i, KP T\\u00e2n Ph\\u01b0\\u1edbc, P. T\\u00e2n B\\u00ecnh, D\\u0129 An city, B\\u00ecnh D\\u01b0\\u01a1ng\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"be1a6dd\"},{\"content\":\"0968860386\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"712a43be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.664,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e4e262b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Menu\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6e682e5b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"39\",\"style\":\"tow-col-light\",\"link_color_hover\":\"#f5ae0f\",\"line_color_hover\":\"#f5ae0f\",\"menu_align\":\"left\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"e174b97\",\"elType\":\"widget\",\"settings\":{\"title\":\"Open Hours:\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"1e0523b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Mon - Sat: 8 am - 5 pm,<br\\/>\\nSunday: CLOSED\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ab76a16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7},\"elements\":[{\"id\":\"37a5e636\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"aa15610\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#011143\",\"padding\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"040\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2487ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40d8f8a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sign up for alerts, our latest blogs, thoughts, and insights.\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d21d208\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"27383ab2\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin-box\",\"library\":\"material\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24b98c01\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"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},\"gap\":\"extended\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a6c11e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53be024\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"5990603\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"7f874a5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright @2024 Trifles. All Rights Reserved by Far East High Tech<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_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},\"_css_classes\":\"ct-copyright\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5682,2458,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:2:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:1;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:16:\"link_color_hover\";i:1;s:16:\"line_color_hover\";i:1;s:10:\"menu_align\";i:1;s:17:\"menu_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:13:\"ct_newsletter\";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:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";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:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:1;}}}}}'),(5686,2459,'_wp_page_template','default'),(5687,2459,'_elementor_edit_mode','builder'),(5688,2459,'_elementor_template_type','wp-post'),(5689,2459,'_elementor_version','3.24.7'),(5690,2459,'_elementor_data','[{\"id\":\"7225c724\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#060606E6\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer.png\",\"id\":87},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"109cef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.3},\"elements\":[{\"id\":\"6667e1a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/fe2tech.png\",\"id\":2409,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae6ecf2\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Office: 43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}},{\"content\":\"Factory: 176\\/9 Nguy\\u1ec5n Th\\u1ecb T\\u01b0\\u01a1i, KP T\\u00e2n Ph\\u01b0\\u1edbc, P. T\\u00e2n B\\u00ecnh, D\\u0129 An city, B\\u00ecnh D\\u01b0\\u01a1ng\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"be1a6dd\"},{\"content\":\"0968860386\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"712a43be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.664,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e4e262b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Menu\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6e682e5b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"39\",\"style\":\"tow-col-light\",\"link_color_hover\":\"#f5ae0f\",\"line_color_hover\":\"#f5ae0f\",\"menu_align\":\"left\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"e174b97\",\"elType\":\"widget\",\"settings\":{\"title\":\"Open Hours:\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"1e0523b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Mon - Sat: 8 am - 5 pm,<br\\/>\\nSunday: CLOSED\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ab76a16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7},\"elements\":[{\"id\":\"37a5e636\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"aa15610\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#008684\",\"padding\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"040\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2487ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40d8f8a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sign up for alerts, our latest blogs, thoughts, and insights.\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d21d208\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"27383ab2\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin-box\",\"library\":\"material\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24b98c01\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"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},\"gap\":\"extended\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a6c11e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53be024\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"5990603\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"7f874a5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright @2024 Trifles. All Rights Reserved by Far East High Tech<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_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},\"_css_classes\":\"ct-copyright\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5691,2459,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:2:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:1;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:16:\"link_color_hover\";i:1;s:16:\"line_color_hover\";i:1;s:10:\"menu_align\";i:1;s:17:\"menu_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:13:\"ct_newsletter\";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:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";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:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:1;}}}}}'),(5695,2460,'_wp_page_template','default'),(5696,2460,'_elementor_edit_mode','builder'),(5697,2460,'_elementor_template_type','wp-post'),(5698,2460,'_elementor_version','3.24.7'),(5699,2460,'_elementor_data','[{\"id\":\"7225c724\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#060606E6\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer.png\",\"id\":87},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"109cef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.3},\"elements\":[{\"id\":\"6667e1a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/fe2tech.png\",\"id\":2409,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae6ecf2\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Office: 43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}},{\"content\":\"Factory: 176\\/9 Nguy\\u1ec5n Th\\u1ecb T\\u01b0\\u01a1i, KP T\\u00e2n Ph\\u01b0\\u1edbc, P. T\\u00e2n B\\u00ecnh, D\\u0129 An city, B\\u00ecnh D\\u01b0\\u01a1ng\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"be1a6dd\"},{\"content\":\"0968860386\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"712a43be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.664,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e4e262b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Menu\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6e682e5b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"39\",\"style\":\"tow-col-light\",\"link_color_hover\":\"#EF4D41\",\"line_color_hover\":\"#EF4D41\",\"menu_align\":\"left\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"e174b97\",\"elType\":\"widget\",\"settings\":{\"title\":\"Open Hours:\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"1e0523b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Mon - Sat: 8 am - 5 pm,<br\\/>\\nSunday: CLOSED\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ab76a16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7},\"elements\":[{\"id\":\"37a5e636\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"aa15610\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#008684\",\"padding\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"040\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2487ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40d8f8a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sign up for alerts, our latest blogs, thoughts, and insights.\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d21d208\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"27383ab2\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin-box\",\"library\":\"material\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24b98c01\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"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},\"gap\":\"extended\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a6c11e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53be024\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"5990603\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"7f874a5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright @2024 of Far East High Tech<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_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},\"_css_classes\":\"ct-copyright\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5700,2460,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:2:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:1;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:16:\"link_color_hover\";i:1;s:16:\"line_color_hover\";i:1;s:10:\"menu_align\";i:1;s:17:\"menu_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:13:\"ct_newsletter\";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:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";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:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:1;}}}}}'),(5706,2461,'_wp_page_template','default'),(5707,2461,'_elementor_edit_mode','builder'),(5708,2461,'_elementor_template_type','wp-post'),(5709,2461,'_elementor_version','3.24.7'),(5710,2461,'_elementor_data','[{\"id\":\"7225c724\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#060606E6\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer.png\",\"id\":87},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"109cef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.3},\"elements\":[{\"id\":\"6667e1a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/fe2tech.png\",\"id\":2409,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae6ecf2\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Office: 43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}},{\"content\":\"Factory: 176\\/9 Nguy\\u1ec5n Th\\u1ecb T\\u01b0\\u01a1i, KP T\\u00e2n Ph\\u01b0\\u1edbc, P. T\\u00e2n B\\u00ecnh, D\\u0129 An city, B\\u00ecnh D\\u01b0\\u01a1ng\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"be1a6dd\"},{\"content\":\"0968860386\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"712a43be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.664,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e4e262b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Menu\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6e682e5b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"39\",\"style\":\"tow-col-light\",\"link_color_hover\":\"#EF4D41\",\"line_color_hover\":\"#EF4D41\",\"menu_align\":\"left\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"e174b97\",\"elType\":\"widget\",\"settings\":{\"title\":\"Open Hours\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"1e0523b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Mon - Sat: 8 am - 5 pm,<br\\/>\\nSunday: CLOSED\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ab76a16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7},\"elements\":[{\"id\":\"37a5e636\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"aa15610\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#008684\",\"padding\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"040\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2487ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40d8f8a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sign up for alerts, our latest blogs, thoughts, and insights.\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d21d208\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"27383ab2\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin-box\",\"library\":\"material\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24b98c01\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"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},\"gap\":\"extended\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a6c11e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53be024\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"5990603\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"7f874a5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright @2024 of Far East High Tech<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_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},\"_css_classes\":\"ct-copyright\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5711,2461,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:2:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:1;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:16:\"link_color_hover\";i:1;s:16:\"line_color_hover\";i:1;s:10:\"menu_align\";i:1;s:17:\"menu_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:13:\"ct_newsletter\";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:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";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:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:1;}}}}}'),(5736,2463,'_elementor_edit_mode','builder'),(5737,2463,'_elementor_template_type','wp-page'),(5738,2463,'_elementor_version','3.24.7'),(5739,2463,'_wp_page_template','default'),(5740,2463,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We assess plans and provide tailored machinery.\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our company\\u2019s strength lies in our team, who have developed groundbreaking machinery and equipment.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/signature.png\",\"id\":1520},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":150,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Awards Winner\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Satisfied Clients\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Active projects\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_14479.png\",\"id\":2269,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"title\":\"198 Award-winning machinery and equipment manufacturing company.\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We help you build your vision with our machinery.\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We approach every project with precision and value clear, simple communication.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"Engineering\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Design\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"Production\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(1,13,50,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses thrive by providing the latest machinery technology.<\\/p>\",\"text_color\":\"#d6e0fe\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#bccbfb\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#021d6c\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5741,2463,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(5745,2464,'_elementor_edit_mode','builder'),(5746,2464,'_elementor_template_type','wp-page'),(5747,2464,'_elementor_version','3.24.7'),(5748,2464,'_wp_page_template','default'),(5749,2464,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We assess plans and provide tailored machinery.\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our company\\u2019s strength lies in our team, who have developed groundbreaking machinery and equipment.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/signature.png\",\"id\":1520},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":150,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Awards Winner\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Satisfied Clients\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Active projects\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_14479.png\",\"id\":2269,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"title\":\"198 Award-winning machinery and equipment manufacturing company.\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We help you build your vision with our machinery.\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We approach every project with precision and value clear, simple communication.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"Engineering\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Design\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"Production\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(1,13,50,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses thrive by providing the latest machinery technology.<\\/p>\",\"text_color\":\"#d6e0fe\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#bccbfb\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#021d6c\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5750,2464,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(5754,2465,'_elementor_edit_mode','builder'),(5755,2465,'_elementor_template_type','wp-page'),(5756,2465,'_elementor_version','3.24.7'),(5757,2465,'_wp_page_template','default'),(5758,2465,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We assess plans and provide tailored machinery.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our company\\u2019s strength lies in our team, who have developed groundbreaking machinery and equipment.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/signature.png\",\"id\":1520},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":150,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Awards Winner\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Satisfied Clients\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Active projects\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_14479.png\",\"id\":2269,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"title\":\"198 Award-winning machinery and equipment manufacturing company.\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We help you build your vision with our machinery.\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We approach every project with precision and value clear, simple communication.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"Engineering\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Design\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"Production\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses thrive by providing the latest machinery technology.<\\/p>\",\"text_color\":\"#d6e0fe\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#bccbfb\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#021d6c\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5759,2465,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(5763,9,'_yoast_wpseo_content_score','60'),(5764,9,'_yoast_wpseo_estimated-reading-time-minutes','4'),(5767,2466,'_elementor_edit_mode','builder'),(5768,2466,'_elementor_template_type','wp-page'),(5769,2466,'_elementor_version','3.24.7'),(5770,2466,'_wp_page_template','default'),(5771,2466,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We assess plans and provide tailored machinery.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our company\\u2019s strength lies in our team, who have developed groundbreaking machinery and equipment.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/signature.png\",\"id\":1520},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":150,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Awards Winner\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Satisfied Clients\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Active projects\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_14479.png\",\"id\":2269,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"title\":\"198 Award-winning machinery and equipment manufacturing company.\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We help you build your vision with our machinery.\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We approach every project with precision and value clear, simple communication.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"Engineering\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Design\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"Production\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses thrive by providing the latest machinery technology.<\\/p>\",\"text_color\":\"#d6e0fe\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#bccbfb\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#021d6c\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5772,2466,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(5776,2467,'_elementor_edit_mode','builder'),(5777,2467,'_elementor_template_type','wp-page'),(5778,2467,'_elementor_version','3.24.7'),(5779,2467,'_wp_page_template','default'),(5780,2467,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We assess plans and provide tailored machinery.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our company\\u2019s strength lies in our team, who have developed groundbreaking machinery and equipment.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/signature.png\",\"id\":1520},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":150,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Awards Winner\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Satisfied Clients\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Active projects\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_14479.png\",\"id\":2269,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"title\":\"198 Award-winning machinery and equipment manufacturing company.\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We help you build your vision with our machinery.\",\"title_color\":\"#00165a\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We approach every project with precision and value clear, simple communication.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"Engineering\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Design\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"Production\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses thrive by providing the latest machinery technology.<\\/p>\",\"text_color\":\"#d6e0fe\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#bccbfb\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#021d6c\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5781,2467,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(5785,2468,'_elementor_edit_mode','builder'),(5786,2468,'_elementor_template_type','wp-page'),(5787,2468,'_elementor_version','3.24.7'),(5788,2468,'_wp_page_template','default'),(5789,2468,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We assess plans and provide tailored machinery.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our company\\u2019s strength lies in our team, who have developed groundbreaking machinery and equipment.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/signature.png\",\"id\":1520},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":150,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Awards Winner\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Satisfied Clients\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Active projects\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_14479.png\",\"id\":2269,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"title\":\"198 Award-winning machinery and equipment manufacturing company.\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We help you build your vision with our machinery.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We approach every project with precision and value clear, simple communication.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"Engineering\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Design\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"Production\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses thrive by providing the latest machinery technology.<\\/p>\",\"text_color\":\"#d6e0fe\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#008684\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5790,2468,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(5796,2469,'_elementor_edit_mode','builder'),(5797,2469,'_elementor_template_type','wp-page'),(5798,2469,'_elementor_version','3.24.7'),(5799,2469,'_wp_page_template','default'),(5800,2469,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We assess plans and provide tailored machinery.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our company\\u2019s strength lies in our team, who have developed groundbreaking machinery and equipment.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/signature.png\",\"id\":1520},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":150,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Awards Winner\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Satisfied Clients\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Active projects\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_14479.png\",\"id\":2269,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"title\":\"198 Award-winning machinery and equipment manufacturing company.\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We help you build your vision with our machinery.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We approach every project with precision and value clear, simple communication.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"Engineering\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Design\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"Production\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses thrive by providing the latest machinery technology.<\\/p>\",\"text_color\":\"#d6e0fe\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#008684\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5801,2469,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(5805,2470,'_elementor_edit_mode','builder'),(5806,2470,'_elementor_template_type','wp-page'),(5807,2470,'_elementor_version','3.24.7'),(5808,2470,'_wp_page_template','default'),(5809,2470,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We assess plans and provide tailored machinery.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our company\\u2019s strength lies in our team, who have developed groundbreaking machinery and equipment.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/signature.png\",\"id\":1520},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":150,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Awards Winner\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Satisfied Clients\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Active projects\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_14479.png\",\"id\":2269,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"title\":\"198 Award-winning machinery and equipment manufacturing company.\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We help you build your vision with our machinery.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We approach every project with precision and value clear, simple communication.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"Engineering\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Design\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"Production\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses thrive by providing the latest machinery technology.<\\/p>\",\"text_color\":\"#d6e0fe\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#008684\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5810,2470,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(5814,2471,'_elementor_edit_mode','builder'),(5815,2471,'_elementor_template_type','wp-page'),(5816,2471,'_elementor_version','3.24.7'),(5817,2471,'_wp_page_template','default'),(5818,2471,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We assess plans and provide tailored machinery.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our company\\u2019s strength lies in our team, who have developed groundbreaking machinery and equipment.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/signature.png\",\"id\":1520},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":150,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Awards Winner\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Satisfied Clients\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Active projects\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_14479.png\",\"id\":2269,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"title\":\"198 Award-winning machinery and equipment manufacturing company.\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We help you build your vision with our machinery.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We approach every project with precision and value clear, simple communication.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"Engineering\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Design\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"Production\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses thrive by providing the latest machinery technology.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#008684\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5819,2471,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(5831,2472,'_wp_attached_file','2024/10/free-character-illustration-download-in-svg-png-gif-file-formats-female-lady-woman-gee-me-pack-people-illustrations-2218178.webp'),(5832,2472,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:338;s:6:\"height\";i:450;s:4:\"file\";s:136:\"2024/10/free-character-illustration-download-in-svg-png-gif-file-formats-female-lady-woman-gee-me-pack-people-illustrations-2218178.webp\";s:8:\"filesize\";i:23716;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:{}}}'),(5833,2473,'_wp_attached_file','2024/10/2218144.webp'),(5834,2473,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:338;s:6:\"height\";i:450;s:4:\"file\";s:20:\"2024/10/2218144.webp\";s:8:\"filesize\";i:10222;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:{}}}'),(5835,2474,'_wp_attached_file','2024/10/2218222.webp'),(5836,2474,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:338;s:6:\"height\";i:450;s:4:\"file\";s:20:\"2024/10/2218222.webp\";s:8:\"filesize\";i:9368;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:{}}}'),(5846,2476,'_wp_attached_file','2024/10/2218208.webp'),(5847,2476,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:338;s:6:\"height\";i:450;s:4:\"file\";s:20:\"2024/10/2218208.webp\";s:8:\"filesize\";i:10356;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:{}}}'),(5848,2477,'_wp_attached_file','2024/10/2218229.webp'),(5849,2477,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:338;s:6:\"height\";i:450;s:4:\"file\";s:20:\"2024/10/2218229.webp\";s:8:\"filesize\";i:9172;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:{}}}'),(5850,2478,'_wp_attached_file','2024/10/2218159.webp'),(5851,2478,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:338;s:6:\"height\";i:450;s:4:\"file\";s:20:\"2024/10/2218159.webp\";s:8:\"filesize\";i:8570;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:{}}}'),(5853,2479,'_wp_page_template','default'),(5854,2479,'_elementor_edit_mode','builder'),(5855,2479,'_elementor_template_type','wp-page'),(5856,2479,'_elementor_version','3.24.7'),(5857,2479,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-01.jpg\",\"id\":351},\"title\":\"Ronald Dumple\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"e562253\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-02.jpg\",\"id\":352},\"title\":\"James Smith\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"5a8d6da\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-03.jpg\",\"id\":353},\"title\":\"Charles F Johnson\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"994e0c5\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-04.jpg\",\"id\":354},\"title\":\"Jodi C Johnson\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"b254836\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-05.jpg\",\"id\":355},\"title\":\"Debra L Smith\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"2da9619\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-06.jpg\",\"id\":356},\"title\":\"Mrditch\\u00a0\\u00a0Hohan\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"18991d8\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions as your trusted partner.\",\"sub_title\":\"Our Partners\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As your trusted partner, we deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"a49fbc4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"33930a5\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"aeee6c2\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"8fc7373\"}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(5858,2479,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(5862,2480,'_wp_page_template','default'),(5863,2480,'_elementor_edit_mode','builder'),(5864,2480,'_elementor_template_type','wp-page'),(5865,2480,'_elementor_version','3.24.7'),(5866,2480,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-01.jpg\",\"id\":351},\"title\":\"Ronald Dumple\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"e562253\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-02.jpg\",\"id\":352},\"title\":\"James Smith\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"5a8d6da\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-03.jpg\",\"id\":353},\"title\":\"Charles F Johnson\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"994e0c5\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-04.jpg\",\"id\":354},\"title\":\"Jodi C Johnson\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"b254836\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-05.jpg\",\"id\":355},\"title\":\"Debra L Smith\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"2da9619\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/team-06.jpg\",\"id\":356},\"title\":\"Mrditch\\u00a0\\u00a0Hohan\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"18991d8\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions as your trusted partner.\",\"sub_title\":\"Our Partners\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As your trusted partner, we deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"a49fbc4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"33930a5\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"aeee6c2\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"8fc7373\"}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(5867,2480,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(5871,2481,'_wp_page_template','default'),(5872,2481,'_elementor_edit_mode','builder'),(5873,2481,'_elementor_template_type','wp-page'),(5874,2481,'_elementor_version','3.24.7'),(5875,2481,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218208.webp\",\"id\":2476,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Ronald Dumple\",\"position\":\"Web Designer\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"e562253\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/free-character-illustration-download-in-svg-png-gif-file-formats-female-lady-woman-gee-me-pack-people-illustrations-2218178.webp\",\"id\":2472,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"James Smith\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"5a8d6da\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218144.webp\",\"id\":2473,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Charles F Johnson\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"994e0c5\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218222.webp\",\"id\":2474,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Jodi C Johnson\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"b254836\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218229.webp\",\"id\":2477,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Debra L Smith\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"2da9619\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218159.webp\",\"id\":2478,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Mrditch\\u00a0\\u00a0Hohan\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"18991d8\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions as your trusted partner.\",\"sub_title\":\"Our Partners\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As your trusted partner, we deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"a49fbc4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"33930a5\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"aeee6c2\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"8fc7373\"}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(5876,2481,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(5880,28,'_yoast_wpseo_content_score','90'),(5881,28,'_yoast_wpseo_estimated-reading-time-minutes','4'),(5883,2482,'_wp_attached_file','2024/10/yuwa-engineering.jpg'),(5884,2482,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:256;s:6:\"height\";i:256;s:4:\"file\";s:28:\"2024/10/yuwa-engineering.jpg\";s:8:\"filesize\";i:13462;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:{}}}'),(5885,2483,'_wp_attached_file','2024/10/komatsu-kogyo.jpg'),(5886,2483,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:900;s:6:\"height\";i:900;s:4:\"file\";s:25:\"2024/10/komatsu-kogyo.jpg\";s:8:\"filesize\";i:44210;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:{}}}'),(5887,2484,'_wp_attached_file','2024/10/samsung.jpg'),(5888,2484,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:697;s:6:\"height\";i:232;s:4:\"file\";s:19:\"2024/10/samsung.jpg\";s:8:\"filesize\";i:19493;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(5889,2485,'_wp_attached_file','2024/10/kim-long-motors.png'),(5890,2485,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1586;s:6:\"height\";i:1586;s:4:\"file\";s:27:\"2024/10/kim-long-motors.png\";s:8:\"filesize\";i:582225;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:{}}}'),(5891,2486,'_wp_attached_file','2024/10/yoshimoto-vietnam.png'),(5892,2486,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:246;s:6:\"height\";i:205;s:4:\"file\";s:29:\"2024/10/yoshimoto-vietnam.png\";s:8:\"filesize\";i:3253;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:{}}}'),(5893,2487,'_wp_page_template','default'),(5894,2487,'_elementor_edit_mode','builder'),(5895,2487,'_elementor_template_type','wp-page'),(5896,2487,'_elementor_version','3.24.7'),(5897,2487,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218208.webp\",\"id\":2476,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Ronald Dumple\",\"position\":\"Web Designer\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"e562253\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/free-character-illustration-download-in-svg-png-gif-file-formats-female-lady-woman-gee-me-pack-people-illustrations-2218178.webp\",\"id\":2472,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"James Smith\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"5a8d6da\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218144.webp\",\"id\":2473,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Charles F Johnson\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"994e0c5\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218222.webp\",\"id\":2474,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Jodi C Johnson\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"b254836\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218229.webp\",\"id\":2477,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Debra L Smith\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"2da9619\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218159.webp\",\"id\":2478,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Mrditch\\u00a0\\u00a0Hohan\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"18991d8\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions as your trusted partner.\",\"sub_title\":\"Our Partners\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As your trusted partner, we deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"a49fbc4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"33930a5\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"aeee6c2\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"8fc7373\"}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(5898,2487,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(5901,2488,'_wp_page_template','default'),(5902,2488,'_elementor_edit_mode','builder'),(5903,2488,'_elementor_template_type','wp-page'),(5904,2488,'_elementor_version','3.24.7'),(5905,2488,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218208.webp\",\"id\":2476,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Ronald Dumple\",\"position\":\"Web Designer\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"e562253\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/free-character-illustration-download-in-svg-png-gif-file-formats-female-lady-woman-gee-me-pack-people-illustrations-2218178.webp\",\"id\":2472,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"James Smith\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"5a8d6da\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218144.webp\",\"id\":2473,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Charles F Johnson\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"994e0c5\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218222.webp\",\"id\":2474,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Jodi C Johnson\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"b254836\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218229.webp\",\"id\":2477,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Debra L Smith\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"2da9619\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218159.webp\",\"id\":2478,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Mrditch\\u00a0\\u00a0Hohan\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"18991d8\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions as your trusted partner.\",\"sub_title\":\"Our Partners\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As your trusted partner, we deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"a49fbc4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"33930a5\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"aeee6c2\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"8fc7373\"}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(5906,2488,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(5909,2489,'_wp_page_template','default'),(5910,2489,'_elementor_edit_mode','builder'),(5911,2489,'_elementor_template_type','wp-page'),(5912,2489,'_elementor_version','3.24.7'),(5913,2489,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218208.webp\",\"id\":2476,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Ronald Dumple\",\"position\":\"Web Designer\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"e562253\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/free-character-illustration-download-in-svg-png-gif-file-formats-female-lady-woman-gee-me-pack-people-illustrations-2218178.webp\",\"id\":2472,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"James Smith\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"5a8d6da\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218144.webp\",\"id\":2473,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Charles F Johnson\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"994e0c5\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218222.webp\",\"id\":2474,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Jodi C Johnson\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"b254836\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218229.webp\",\"id\":2477,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Debra L Smith\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"2da9619\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218159.webp\",\"id\":2478,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Mrditch\\u00a0\\u00a0Hohan\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"18991d8\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions as your trusted partner.\",\"sub_title\":\"Our Partners\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As your trusted partner, we deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Yoshimoto\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yoshimoto-vietnam.png\",\"id\":2486,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"a49fbc4\"},{\"client_name\":\"Kim Long Motors\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/kim-long-motors.png\",\"id\":2485,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"33930a5\"},{\"client_name\":\"Samsung\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/samsung.jpg\",\"id\":2484,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"aeee6c2\"},{\"client_name\":\"Komatsu Kogyo\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/komatsu-kogyo.jpg\",\"id\":2483,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8fc7373\"},{\"_id\":\"ed2e401\",\"client_name\":\"Yuwa Engineering\",\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yuwa-engineering.jpg\",\"id\":2482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(5914,2489,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(5929,2491,'_wp_page_template','default'),(5930,2491,'_elementor_edit_mode','builder'),(5931,2491,'_elementor_template_type','wp-page'),(5932,2491,'_elementor_version','3.24.7'),(5933,2491,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218208.webp\",\"id\":2476,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Ronald Dumple\",\"position\":\"Web Designer\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"e562253\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/free-character-illustration-download-in-svg-png-gif-file-formats-female-lady-woman-gee-me-pack-people-illustrations-2218178.webp\",\"id\":2472,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"James Smith\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"5a8d6da\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218144.webp\",\"id\":2473,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Charles F Johnson\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"994e0c5\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218222.webp\",\"id\":2474,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Jodi C Johnson\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"b254836\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218229.webp\",\"id\":2477,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Debra L Smith\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"2da9619\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218159.webp\",\"id\":2478,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Mrditch\\u00a0\\u00a0Hohan\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"18991d8\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions as your trusted partner.\",\"sub_title\":\"Our Partners\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As your trusted partner, we deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Yoshimoto\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yoshimoto-vietnam.png\",\"id\":2486,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"a49fbc4\"},{\"client_name\":\"Kim Long Motors\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/kim-long-motors.png\",\"id\":2485,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"33930a5\"},{\"client_name\":\"Samsung\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/samsung.jpg\",\"id\":2484,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"aeee6c2\"},{\"client_name\":\"Komatsu Kogyo\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/komatsu-kogyo.jpg\",\"id\":2483,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8fc7373\"},{\"_id\":\"ed2e401\",\"client_name\":\"Yuwa Engineering\",\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yuwa-engineering.jpg\",\"id\":2482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(5934,2491,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(5938,2492,'_wp_page_template','default'),(5939,2492,'_elementor_edit_mode','builder'),(5940,2492,'_elementor_template_type','wp-page'),(5941,2492,'_elementor_version','3.24.7'),(5942,2492,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218208.webp\",\"id\":2476,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Ronald Dumple\",\"position\":\"Web Designer\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"e562253\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/free-character-illustration-download-in-svg-png-gif-file-formats-female-lady-woman-gee-me-pack-people-illustrations-2218178.webp\",\"id\":2472,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"James Smith\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"5a8d6da\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218144.webp\",\"id\":2473,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Charles F Johnson\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"994e0c5\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218222.webp\",\"id\":2474,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Jodi C Johnson\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"b254836\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218229.webp\",\"id\":2477,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Debra L Smith\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"2da9619\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218159.webp\",\"id\":2478,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Mrditch\\u00a0\\u00a0Hohan\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"18991d8\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions as your trusted partner.\",\"sub_title\":\"Our Partners\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As your trusted partner, we deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Yoshimoto\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yoshimoto-vietnam.png\",\"id\":2486,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"a49fbc4\"},{\"client_name\":\"Kim Long Motors\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/kim-long-motors.png\",\"id\":2485,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"33930a5\"},{\"client_name\":\"Samsung\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/samsung.jpg\",\"id\":2484,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"aeee6c2\"},{\"client_name\":\"Komatsu Kogyo\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/komatsu-kogyo.jpg\",\"id\":2483,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8fc7373\"},{\"_id\":\"ed2e401\",\"client_name\":\"Yuwa Engineering\",\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yuwa-engineering.jpg\",\"id\":2482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(5943,2492,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(5947,2493,'_wp_page_template','default'),(5948,2493,'_elementor_edit_mode','builder'),(5949,2493,'_elementor_template_type','wp-page'),(5950,2493,'_elementor_version','3.24.7'),(5951,2493,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218208.webp\",\"id\":2476,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Ronald Dumple\",\"position\":\"Web Designer\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"e562253\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/free-character-illustration-download-in-svg-png-gif-file-formats-female-lady-woman-gee-me-pack-people-illustrations-2218178.webp\",\"id\":2472,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"James Smith\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"5a8d6da\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218144.webp\",\"id\":2473,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Charles F Johnson\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"994e0c5\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218222.webp\",\"id\":2474,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Jodi C Johnson\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"b254836\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218229.webp\",\"id\":2477,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Debra L Smith\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"2da9619\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218159.webp\",\"id\":2478,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Mrditch\\u00a0\\u00a0Hohan\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"18991d8\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions as your trusted partner.\",\"sub_title\":\"Our Partners\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As your trusted partner, we deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Yoshimoto\",\"client_link\":{\"url\":\"https:\\/\\/peraichi.com\\/landing_pages\\/view\\/ysvnv\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yoshimoto-vietnam.png\",\"id\":2486,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"a49fbc4\"},{\"client_name\":\"Kim Long Motors\",\"client_link\":{\"url\":\"https:\\/\\/kimlongmotor.com.vn\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/kim-long-motors.png\",\"id\":2485,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"33930a5\"},{\"client_name\":\"Samsung\",\"client_link\":{\"url\":\"https:\\/\\/www.samsung.com\\/vn\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/samsung.jpg\",\"id\":2484,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"aeee6c2\"},{\"client_name\":\"Komatsu Kogyo\",\"client_link\":{\"url\":\"https:\\/\\/komaz.co.jp\\/english\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/komatsu-kogyo.jpg\",\"id\":2483,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8fc7373\"},{\"_id\":\"ed2e401\",\"client_name\":\"Yuwa Engineering\",\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yuwa-engineering.jpg\",\"id\":2482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(5952,2493,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(5958,2494,'_wp_page_template','default'),(5959,2494,'_elementor_edit_mode','builder'),(5960,2494,'_elementor_template_type','wp-page'),(5961,2494,'_elementor_version','3.24.7'),(5962,2494,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218208.webp\",\"id\":2476,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Ronald Dumple\",\"position\":\"Web Designer\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"e562253\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/free-character-illustration-download-in-svg-png-gif-file-formats-female-lady-woman-gee-me-pack-people-illustrations-2218178.webp\",\"id\":2472,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"James Smith\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"5a8d6da\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218144.webp\",\"id\":2473,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Charles F Johnson\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"994e0c5\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218222.webp\",\"id\":2474,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Jodi C Johnson\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"b254836\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218229.webp\",\"id\":2477,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Debra L Smith\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"2da9619\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218159.webp\",\"id\":2478,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Mrditch\\u00a0\\u00a0Hohan\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"18991d8\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions as your trusted partner.\",\"sub_title\":\"Our Partners\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As your trusted partner, we deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Yoshimoto\",\"client_link\":{\"url\":\"https:\\/\\/peraichi.com\\/landing_pages\\/view\\/ysvnv\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yoshimoto-vietnam.png\",\"id\":2486,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"a49fbc4\"},{\"client_name\":\"Kim Long Motors\",\"client_link\":{\"url\":\"https:\\/\\/kimlongmotor.com.vn\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/kim-long-motors.png\",\"id\":2485,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"33930a5\"},{\"client_name\":\"Samsung\",\"client_link\":{\"url\":\"https:\\/\\/www.samsung.com\\/vn\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/samsung.jpg\",\"id\":2484,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"aeee6c2\"},{\"client_name\":\"Komatsu Kogyo\",\"client_link\":{\"url\":\"https:\\/\\/komaz.co.jp\\/english\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/komatsu-kogyo.jpg\",\"id\":2483,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8fc7373\"},{\"_id\":\"ed2e401\",\"client_name\":\"Yuwa Engineering\",\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yuwa-engineering.jpg\",\"id\":2482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(5963,2494,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(5967,2495,'_wp_page_template','default'),(5968,2495,'_elementor_edit_mode','builder'),(5969,2495,'_elementor_template_type','wp-page'),(5970,2495,'_elementor_version','3.24.7'),(5971,2495,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218208.webp\",\"id\":2476,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Ronald Dumple\",\"position\":\"Web Designer\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"e562253\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/free-character-illustration-download-in-svg-png-gif-file-formats-female-lady-woman-gee-me-pack-people-illustrations-2218178.webp\",\"id\":2472,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"James Smith\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"5a8d6da\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218144.webp\",\"id\":2473,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Charles F Johnson\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"994e0c5\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218222.webp\",\"id\":2474,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Jodi C Johnson\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"b254836\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218229.webp\",\"id\":2477,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Debra L Smith\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"2da9619\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218159.webp\",\"id\":2478,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Mrditch\\u00a0\\u00a0Hohan\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"18991d8\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions as your trusted partner.\",\"sub_title\":\"Our Partners\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As your trusted partner, we deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Yoshimoto\",\"client_link\":{\"url\":\"https:\\/\\/peraichi.com\\/landing_pages\\/view\\/ysvnv\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yoshimoto-vietnam.png\",\"id\":2486,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"a49fbc4\"},{\"client_name\":\"Kim Long Motors\",\"client_link\":{\"url\":\"https:\\/\\/kimlongmotor.com.vn\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/kim-long-motors.png\",\"id\":2485,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"33930a5\"},{\"client_name\":\"Samsung\",\"client_link\":{\"url\":\"https:\\/\\/www.samsung.com\\/vn\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/samsung.jpg\",\"id\":2484,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"aeee6c2\"},{\"client_name\":\"Komatsu Kogyo\",\"client_link\":{\"url\":\"https:\\/\\/komaz.co.jp\\/english\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/komatsu-kogyo.jpg\",\"id\":2483,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8fc7373\"},{\"_id\":\"ed2e401\",\"client_name\":\"Yuwa Engineering\",\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yuwa-engineering.jpg\",\"id\":2482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(5972,2495,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(5976,2496,'_wp_page_template','default'),(5977,2496,'_elementor_edit_mode','builder'),(5978,2496,'_elementor_template_type','wp-page'),(5979,2496,'_elementor_version','3.24.7'),(5980,2496,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218208.webp\",\"id\":2476,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Ronald Dumple\",\"position\":\"Web Designer\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"e562253\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/free-character-illustration-download-in-svg-png-gif-file-formats-female-lady-woman-gee-me-pack-people-illustrations-2218178.webp\",\"id\":2472,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"James Smith\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"5a8d6da\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218144.webp\",\"id\":2473,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Charles F Johnson\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"994e0c5\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218222.webp\",\"id\":2474,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Jodi C Johnson\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"b254836\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218229.webp\",\"id\":2477,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Debra L Smith\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"2da9619\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218159.webp\",\"id\":2478,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Mrditch\\u00a0\\u00a0Hohan\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"18991d8\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions as your trusted partner.\",\"sub_title\":\"Our Partners\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As your trusted partner, we deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Yoshimoto\",\"client_link\":{\"url\":\"https:\\/\\/www.yoshimoto-sangyo.co.jp\\/vn\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yoshimoto-vietnam.png\",\"id\":2486,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"a49fbc4\"},{\"client_name\":\"Kim Long Motors\",\"client_link\":{\"url\":\"https:\\/\\/kimlongmotor.com.vn\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/kim-long-motors.png\",\"id\":2485,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"33930a5\"},{\"client_name\":\"Samsung\",\"client_link\":{\"url\":\"https:\\/\\/www.samsung.com\\/vn\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/samsung.jpg\",\"id\":2484,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"aeee6c2\"},{\"client_name\":\"Komatsu Kogyo\",\"client_link\":{\"url\":\"https:\\/\\/komaz.co.jp\\/english\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/komatsu-kogyo.jpg\",\"id\":2483,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8fc7373\"},{\"_id\":\"ed2e401\",\"client_name\":\"Yuwa Engineering\",\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yuwa-engineering.jpg\",\"id\":2482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(5981,2496,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(5986,2497,'_wp_page_template','default'),(5987,2497,'_elementor_edit_mode','builder'),(5988,2497,'_elementor_template_type','wp-page'),(5989,2497,'_elementor_version','3.24.7'),(5990,2497,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218208.webp\",\"id\":2476,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Ronald Dumple\",\"position\":\"Web Designer\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"e562253\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/free-character-illustration-download-in-svg-png-gif-file-formats-female-lady-woman-gee-me-pack-people-illustrations-2218178.webp\",\"id\":2472,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"James Smith\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"5a8d6da\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218144.webp\",\"id\":2473,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Charles F Johnson\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"994e0c5\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218222.webp\",\"id\":2474,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Jodi C Johnson\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"b254836\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218229.webp\",\"id\":2477,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Debra L Smith\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"2da9619\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218159.webp\",\"id\":2478,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Mrditch\\u00a0\\u00a0Hohan\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"18991d8\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions as your trusted partner.\",\"sub_title\":\"Our Partners\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As your trusted partner, we deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Yoshimoto\",\"client_link\":{\"url\":\"https:\\/\\/www.yoshimoto-sangyo.co.jp\\/vn\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yoshimoto-vietnam.png\",\"id\":2486,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"a49fbc4\"},{\"client_name\":\"Kim Long Motors\",\"client_link\":{\"url\":\"https:\\/\\/kimlongmotor.com.vn\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/kim-long-motors.png\",\"id\":2485,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"33930a5\"},{\"client_name\":\"Samsung\",\"client_link\":{\"url\":\"https:\\/\\/www.samsung.com\\/vn\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/samsung.jpg\",\"id\":2484,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"aeee6c2\"},{\"client_name\":\"Komatsu Kogyo\",\"client_link\":{\"url\":\"https:\\/\\/komaz.co.jp\\/english\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/komatsu-kogyo.jpg\",\"id\":2483,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8fc7373\"},{\"_id\":\"ed2e401\",\"client_name\":\"Yuwa Engineering\",\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yuwa-engineering.jpg\",\"id\":2482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(5991,2497,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(5994,2498,'_wp_page_template','default'),(5995,2498,'_elementor_edit_mode','builder'),(5996,2498,'_elementor_template_type','wp-page'),(5997,2498,'_elementor_version','3.24.7'),(5998,2498,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218208.webp\",\"id\":2476,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Ronald Dumple\",\"position\":\"Web Designer\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"e562253\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/free-character-illustration-download-in-svg-png-gif-file-formats-female-lady-woman-gee-me-pack-people-illustrations-2218178.webp\",\"id\":2472,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"James Smith\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"5a8d6da\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218144.webp\",\"id\":2473,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Charles F Johnson\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"994e0c5\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218222.webp\",\"id\":2474,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Jodi C Johnson\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"b254836\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218229.webp\",\"id\":2477,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Debra L Smith\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"2da9619\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218159.webp\",\"id\":2478,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Mrditch\\u00a0\\u00a0Hohan\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"18991d8\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions as your trusted partner.\",\"sub_title\":\"Our Partners\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As your trusted partner, we deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Yoshimoto\",\"client_link\":{\"url\":\"https:\\/\\/www.yoshimoto-sangyo.co.jp\\/vn\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yoshimoto-vietnam.png\",\"id\":2486,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"a49fbc4\"},{\"client_name\":\"Kim Long Motors\",\"client_link\":{\"url\":\"https:\\/\\/kimlongmotor.com.vn\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/kim-long-motors.png\",\"id\":2485,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"33930a5\"},{\"client_name\":\"Samsung\",\"client_link\":{\"url\":\"https:\\/\\/www.samsung.com\\/vn\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/samsung.jpg\",\"id\":2484,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"aeee6c2\"},{\"client_name\":\"Komatsu Kogyo\",\"client_link\":{\"url\":\"https:\\/\\/komaz.co.jp\\/english\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/komatsu-kogyo.jpg\",\"id\":2483,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8fc7373\"},{\"_id\":\"ed2e401\",\"client_name\":\"Yuwa Engineering\",\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yuwa-engineering.jpg\",\"id\":2482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(5999,2498,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(6002,2499,'_wp_page_template','default'),(6003,2499,'_elementor_edit_mode','builder'),(6004,2499,'_elementor_template_type','wp-page'),(6005,2499,'_elementor_version','3.24.7'),(6006,2499,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218208.webp\",\"id\":2476,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Ronald Dumple\",\"position\":\"Web Designer\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"e562253\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/free-character-illustration-download-in-svg-png-gif-file-formats-female-lady-woman-gee-me-pack-people-illustrations-2218178.webp\",\"id\":2472,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"James Smith\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"5a8d6da\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218144.webp\",\"id\":2473,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Charles F Johnson\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"994e0c5\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218222.webp\",\"id\":2474,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Jodi C Johnson\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"b254836\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218229.webp\",\"id\":2477,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Debra L Smith\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"2da9619\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218159.webp\",\"id\":2478,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Mrditch\\u00a0\\u00a0Hohan\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"18991d8\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions as your trusted partner.\",\"sub_title\":\"Our Partners\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As your trusted partner, we deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Yoshimoto\",\"client_link\":{\"url\":\"https:\\/\\/www.yoshimoto-sangyo.co.jp\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yoshimoto-vietnam.png\",\"id\":2486,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"a49fbc4\"},{\"client_name\":\"Kim Long Motors\",\"client_link\":{\"url\":\"https:\\/\\/kimlongmotor.com.vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/kim-long-motors.png\",\"id\":2485,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"33930a5\"},{\"client_name\":\"Samsung\",\"client_link\":{\"url\":\"https:\\/\\/www.samsung.com\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/samsung.jpg\",\"id\":2484,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"aeee6c2\"},{\"client_name\":\"Komatsu Kogyo\",\"client_link\":{\"url\":\"https:\\/\\/komaz.co.jp\\/english\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/komatsu-kogyo.jpg\",\"id\":2483,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8fc7373\"},{\"_id\":\"ed2e401\",\"client_name\":\"Yuwa Engineering\",\"client_link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yuwa-engineering.jpg\",\"id\":2482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(6007,2499,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(6010,2500,'_wp_page_template','default'),(6011,2500,'_elementor_edit_mode','builder'),(6012,2500,'_elementor_template_type','wp-post'),(6013,2500,'_elementor_version','3.24.7'),(6014,2500,'_elementor_data','[{\"id\":\"7225c724\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#060606E6\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer.png\",\"id\":87},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"109cef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.3},\"elements\":[{\"id\":\"6667e1a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/fe2tech.png\",\"id\":2409,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae6ecf2\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Office: 43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}},{\"content\":\"Factory: 176\\/9 Nguy\\u1ec5n Th\\u1ecb T\\u01b0\\u01a1i, KP T\\u00e2n Ph\\u01b0\\u1edbc, P. T\\u00e2n B\\u00ecnh, D\\u0129 An city, B\\u00ecnh D\\u01b0\\u01a1ng\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"be1a6dd\"},{\"content\":\"0968860386\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"712a43be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.664,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e4e262b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Menu\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6e682e5b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"39\",\"style\":\"tow-col-light\",\"link_color_hover\":\"#EF4D41\",\"line_color_hover\":\"#EF4D41\",\"menu_align\":\"left\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"e174b97\",\"elType\":\"widget\",\"settings\":{\"title\":\"Open Hours\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"1e0523b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Mon - Sat: 8 am - 5 pm,<br\\/>\\nSunday: CLOSED\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ab76a16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7},\"elements\":[{\"id\":\"37a5e636\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"aa15610\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#008684\",\"padding\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"040\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2487ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40d8f8a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sign up for alerts, our latest blogs, thoughts, and insights.\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d21d208\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"27383ab2\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin-box\",\"library\":\"material\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24b98c01\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"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},\"gap\":\"extended\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a6c11e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53be024\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"5990603\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"7f874a5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright @2024 of Far East High Tech<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_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},\"_css_classes\":\"ct-copyright\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6015,2500,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:2:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:1;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:16:\"link_color_hover\";i:1;s:16:\"line_color_hover\";i:1;s:10:\"menu_align\";i:1;s:17:\"menu_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:13:\"ct_newsletter\";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:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";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:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:1;}}}}}'),(6019,2501,'_wp_page_template','default'),(6020,2501,'_elementor_edit_mode','builder'),(6021,2501,'_elementor_template_type','wp-post'),(6022,2501,'_elementor_version','3.24.7'),(6023,2501,'_elementor_data','[{\"id\":\"7225c724\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#060606E6\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer.png\",\"id\":87},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"109cef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.3},\"elements\":[{\"id\":\"6667e1a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/fe2tech.png\",\"id\":2409,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae6ecf2\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Office: 43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}},{\"content\":\"Factory: 176\\/9 Nguy\\u1ec5n Th\\u1ecb T\\u01b0\\u01a1i, KP T\\u00e2n Ph\\u01b0\\u1edbc, P. T\\u00e2n B\\u00ecnh, D\\u0129 An city, B\\u00ecnh D\\u01b0\\u01a1ng\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"be1a6dd\"},{\"content\":\"0968860386\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"712a43be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.664,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e4e262b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Menu\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6e682e5b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"39\",\"style\":\"tow-col-light\",\"link_color_hover\":\"#EF4D41\",\"line_color_hover\":\"#EF4D41\",\"menu_align\":\"left\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"e174b97\",\"elType\":\"widget\",\"settings\":{\"title\":\"Open Hours\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"1e0523b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Mon - Sat: 8 am - 5 pm,<br\\/>\\nSunday: CLOSED\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ab76a16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7},\"elements\":[{\"id\":\"37a5e636\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"aa15610\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#008684\",\"padding\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"040\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2487ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40d8f8a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sign up for alerts, our latest blogs, thoughts, and insights.\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d21d208\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"27383ab2\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin-box\",\"library\":\"material\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24b98c01\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"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},\"gap\":\"extended\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a6c11e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53be024\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"5990603\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"7f874a5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright @2024 of Far East High Tech<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_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},\"_css_classes\":\"ct-copyright\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6024,2501,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:2:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:1;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:16:\"link_color_hover\";i:1;s:16:\"line_color_hover\";i:1;s:10:\"menu_align\";i:1;s:17:\"menu_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:13:\"ct_newsletter\";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:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";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:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:1;}}}}}'),(6028,2502,'_wp_page_template','default'),(6029,2502,'_elementor_edit_mode','builder'),(6030,2502,'_elementor_template_type','wp-post'),(6031,2502,'_elementor_version','3.24.7'),(6032,2502,'_elementor_data','[{\"id\":\"7225c724\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#060606E6\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer.png\",\"id\":87},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"109cef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.3},\"elements\":[{\"id\":\"6667e1a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/fe2tech.png\",\"id\":2409,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae6ecf2\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Office: 43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}},{\"content\":\"Factory: 176\\/9 Nguy\\u1ec5n Th\\u1ecb T\\u01b0\\u01a1i, KP T\\u00e2n Ph\\u01b0\\u1edbc, P. T\\u00e2n B\\u00ecnh, D\\u0129 An city, B\\u00ecnh D\\u01b0\\u01a1ng\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"be1a6dd\"},{\"content\":\"0968860386\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"712a43be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.664,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e4e262b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Menu\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6e682e5b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"39\",\"style\":\"tow-col-light\",\"link_color_hover\":\"#EF4D41\",\"line_color_hover\":\"#EF4D41\",\"menu_align\":\"left\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"e174b97\",\"elType\":\"widget\",\"settings\":{\"title\":\"Open Hours\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"1e0523b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Mon - Sat: 8 am - 5 pm,<br\\/>\\nSunday: CLOSED\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ab76a16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7},\"elements\":[{\"id\":\"37a5e636\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"aa15610\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#008684\",\"padding\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"040\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2487ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40d8f8a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sign up for alerts, our latest blogs, thoughts, and insights.\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d21d208\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"27383ab2\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin-box\",\"library\":\"material\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24b98c01\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"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},\"gap\":\"extended\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a6c11e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53be024\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"5990603\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"7f874a5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright @2024 of Far East High Tech Ltd. Co.<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_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},\"_css_classes\":\"ct-copyright\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6033,2502,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:2:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:1;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:16:\"link_color_hover\";i:1;s:16:\"line_color_hover\";i:1;s:10:\"menu_align\";i:1;s:17:\"menu_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:13:\"ct_newsletter\";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:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";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:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:1;}}}}}'),(6037,799,'_yoast_wpseo_content_score','90'),(6038,799,'_yoast_wpseo_estimated-reading-time-minutes','2'),(6043,2503,'_wp_attached_file','2024/10/2218231.webp'),(6044,2503,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:338;s:6:\"height\";i:450;s:4:\"file\";s:20:\"2024/10/2218231.webp\";s:8:\"filesize\";i:10226;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:{}}}'),(6045,2504,'_wp_attached_file','2024/10/BROCHURE.pdf'),(6046,2504,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:7908530;}'),(6057,2506,'_wp_page_template','default'),(6058,2506,'_elementor_edit_mode','builder'),(6059,2506,'_elementor_template_type','wp-page'),(6060,2506,'_elementor_version','3.24.7'),(6061,2506,'_elementor_data','[{\"id\":\"c986484\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"21\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab9e3e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.324,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cc7a78\",\"elType\":\"widget\",\"settings\":{\"title\":\"We satisfy you with innovative ideas and quality work.\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"sub_title\":\"About us\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c469998\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We exceed expectations through innovative ideas and exceptional craftsmanship.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11334c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2442360\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d195ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-01.png\",\"id\":612},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b2107e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Time manage\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c366e73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Efficiently organizing tasks to maximize productivity and meet deadlines.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d099fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c4ae19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-02.png\",\"id\":613},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ba24a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fulfill target\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bdc9adf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Achieving goals with precision and commitment, ensuring success.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ba92fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.676,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae4fae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-01.jpg\",\"id\":623}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"0c406f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/signature1.png\",\"id\":633},\"title\":\"Hanley Robin\",\"desc\":\"(Chairman and founder)\",\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to know more about us?\",\"desc\":\"Just download brochure...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-scaled.jpg\",\"id\":663},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"060\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.937},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Far East High Tech is a professional builder company\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.063},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Far East High Tech is a leading company in building and manufacturing high-quality mechanical solutions.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e9a883e\",\"elType\":\"widget\",\"settings\":{\"start_text\":\"Start\",\"end_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"history\":[{\"_id\":\"7d82651\",\"title\":\"12th Jan, 2018\",\"content\":\"Establishment of Constrio\"},{\"_id\":\"37eb5f9\",\"title\":\"2nd Feb, 2018\",\"content\":\"Exhibition Planning & Exhibition Management\"},{\"_id\":\"2e7ebbf\",\"title\":\"8th Jul, 2018\",\"content\":\"Registered as a construction company\"}]},\"elements\":[],\"widgetType\":\"ct_history\"}],\"isInner\":false}],\"isInner\":false}]'),(6062,2506,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:6;s:18:\"title_space_bottom\";i:3;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:4;s:22:\"sub_title_space_bottom\";i:3;s:15:\"sub_title_color\";i:1;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:5;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:7;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}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:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;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:10;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:3;s:13:\"margin_mobile\";i:3;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:3;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:6;s:7:\"padding\";i:6;s:14:\"padding_tablet\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:5:\"image\";i:1;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"ct_cta\";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:\"source_section\";a:4:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:4:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:14:\"slides_to_show\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:16:\"slides_to_scroll\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:6:\"arrows\";i:1;s:8:\"autoplay\";i:1;s:8:\"infinite\";i:1;}}}}}'),(6066,2507,'_wp_page_template','default'),(6067,2507,'_elementor_edit_mode','builder'),(6068,2507,'_elementor_template_type','wp-page'),(6069,2507,'_elementor_version','3.24.7'),(6070,2507,'_elementor_data','[{\"id\":\"c986484\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"21\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab9e3e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.324,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cc7a78\",\"elType\":\"widget\",\"settings\":{\"title\":\"We satisfy you with innovative ideas and quality work.\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"sub_title\":\"About us\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c469998\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We exceed expectations through innovative ideas and exceptional craftsmanship.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11334c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2442360\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d195ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-01.png\",\"id\":612},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b2107e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Time manage\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c366e73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Efficiently organizing tasks to maximize productivity and meet deadlines.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d099fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c4ae19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-02.png\",\"id\":613},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ba24a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fulfill target\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bdc9adf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Achieving goals with precision and commitment, ensuring success.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ba92fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.676,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae4fae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-01.jpg\",\"id\":623}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"0c406f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/signature1.png\",\"id\":633},\"title\":\"Hanley Robin\",\"desc\":\"(Chairman and founder)\",\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to know more about us?\",\"desc\":\"Just download brochure...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-scaled.jpg\",\"id\":663},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"060\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.937},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Far East High Tech is a professional builder company\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.063},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Far East High Tech is a leading company in building and manufacturing high-quality mechanical solutions.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e9a883e\",\"elType\":\"widget\",\"settings\":{\"start_text\":\"Start\",\"end_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"history\":[{\"_id\":\"7d82651\",\"title\":\"12th Jan, 2018\",\"content\":\"Establishment of Constrio\"},{\"_id\":\"37eb5f9\",\"title\":\"2nd Feb, 2018\",\"content\":\"Exhibition Planning & Exhibition Management\"},{\"_id\":\"2e7ebbf\",\"title\":\"8th Jul, 2018\",\"content\":\"Registered as a construction company\"}]},\"elements\":[],\"widgetType\":\"ct_history\"}],\"isInner\":false}],\"isInner\":false}]'),(6071,2507,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:6;s:18:\"title_space_bottom\";i:3;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:4;s:22:\"sub_title_space_bottom\";i:3;s:15:\"sub_title_color\";i:1;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:5;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:7;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}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:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;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:10;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:3;s:13:\"margin_mobile\";i:3;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:3;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:6;s:7:\"padding\";i:6;s:14:\"padding_tablet\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:5:\"image\";i:1;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"ct_cta\";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:\"source_section\";a:4:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:4:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:14:\"slides_to_show\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:16:\"slides_to_scroll\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:6:\"arrows\";i:1;s:8:\"autoplay\";i:1;s:8:\"infinite\";i:1;}}}}}'),(6075,2508,'_wp_page_template','default'),(6076,2508,'_elementor_edit_mode','builder'),(6077,2508,'_elementor_template_type','wp-page'),(6078,2508,'_elementor_version','3.24.7'),(6079,2508,'_elementor_data','[{\"id\":\"c986484\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"21\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab9e3e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.324,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cc7a78\",\"elType\":\"widget\",\"settings\":{\"title\":\"We satisfy you with innovative ideas and quality work.\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"sub_title\":\"About us\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c469998\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We exceed expectations through innovative ideas and exceptional craftsmanship.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11334c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2442360\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d195ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-01.png\",\"id\":612},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b2107e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Time manage\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c366e73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Efficiently organizing tasks to maximize productivity and meet deadlines.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d099fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c4ae19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-02.png\",\"id\":613},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ba24a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fulfill target\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bdc9adf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Achieving goals with precision and commitment, ensuring success.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ba92fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.676,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae4fae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218231.webp\",\"id\":2503,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"0c406f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/signature1.png\",\"id\":633},\"title\":\"Tin Luu\",\"desc\":\"(Chairman and founder)\",\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to know more about us?\",\"desc\":\"Just download brochure...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"},\"btn_link\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/BROCHURE.pdf\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-scaled.jpg\",\"id\":663},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"060\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.937},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Far East High Tech is a professional builder company\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.063},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Far East High Tech is a leading company in building and manufacturing high-quality mechanical solutions.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e9a883e\",\"elType\":\"widget\",\"settings\":{\"start_text\":\"Start\",\"end_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"history\":[{\"_id\":\"7d82651\",\"title\":\"12th Jan, 2018\",\"content\":\"Establishment of Constrio\"},{\"_id\":\"37eb5f9\",\"title\":\"2nd Feb, 2018\",\"content\":\"Exhibition Planning & Exhibition Management\"},{\"_id\":\"2e7ebbf\",\"title\":\"8th Jul, 2018\",\"content\":\"Registered as a construction company\"}]},\"elements\":[],\"widgetType\":\"ct_history\"}],\"isInner\":false}],\"isInner\":false}]'),(6080,2508,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:6;s:18:\"title_space_bottom\";i:3;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:4;s:22:\"sub_title_space_bottom\";i:3;s:15:\"sub_title_color\";i:1;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:5;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:7;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}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:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;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:10;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:3;s:13:\"margin_mobile\";i:3;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:3;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:6;s:7:\"padding\";i:6;s:14:\"padding_tablet\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:5:\"image\";i:1;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"ct_cta\";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:\"source_section\";a:4:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:4:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:14:\"slides_to_show\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:16:\"slides_to_scroll\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:6:\"arrows\";i:1;s:8:\"autoplay\";i:1;s:8:\"infinite\";i:1;}}}}}'),(6084,26,'_yoast_wpseo_content_score','90'),(6085,26,'_yoast_wpseo_estimated-reading-time-minutes','2'),(6093,2511,'_elementor_edit_mode','builder'),(6094,2511,'_elementor_template_type','wp-page'),(6095,2511,'_elementor_version','3.24.7'),(6096,2511,'_wp_page_template','default');
INSERT INTO `wp_postmeta` VALUES (6097,2511,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We assess plans and provide tailored machinery.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our company\\u2019s strength lies in our team, who have developed groundbreaking machinery and equipment.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/signature.png\",\"id\":1520},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":150,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Awards Winner\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Satisfied Clients\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Active projects\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_14479.png\",\"id\":2269,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"title\":\"198 Award-winning machinery and equipment manufacturing company.\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We help you build your vision with our machinery.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We approach every project with precision and value clear, simple communication.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"Engineering\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Design\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"Production\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses thrive by providing the latest machinery technology.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#008684\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6098,2511,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(6102,2512,'_elementor_edit_mode','builder'),(6103,2512,'_elementor_template_type','wp-page'),(6104,2512,'_elementor_version','3.24.7'),(6105,2512,'_wp_page_template','default'),(6106,2512,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We assess plans and provide tailored machinery.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our company\\u2019s strength lies in our team, who have developed groundbreaking machinery and equipment.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/signature.png\",\"id\":1520},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":150,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Awards Winner\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Satisfied Clients\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Active projects\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_14479.png\",\"id\":2269,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"title\":\"198 Award-winning machinery and equipment manufacturing company.\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We help you build your vision with our machinery.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We approach every project with precision and value clear, simple communication.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"Engineering\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Design\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"Production\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses thrive by providing the latest machinery technology.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#008684\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6107,2512,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(6111,2513,'_elementor_edit_mode','builder'),(6112,2513,'_elementor_template_type','wp-page'),(6113,2513,'_elementor_version','3.24.7'),(6114,2513,'_wp_page_template','default'),(6115,2513,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We assess plans and provide tailored machinery.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our company\\u2019s strength lies in our team, who have developed groundbreaking machinery and equipment.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/signature.png\",\"id\":1520},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":150,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Awards Winner\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Satisfied Clients\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Active projects\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_14479.png\",\"id\":2269,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"title\":\"198 Award-winning machinery and equipment manufacturing company.\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We help you build your vision with our machinery.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We approach every project with precision and value clear, simple communication.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"Engineering\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Design\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"Production\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses thrive by providing the latest machinery technology.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#008684\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6116,2513,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(6122,2514,'_wp_page_template','default'),(6123,2514,'_elementor_edit_mode','builder'),(6124,2514,'_elementor_template_type','wp-post'),(6125,2514,'_elementor_version','3.24.7'),(6126,2514,'_elementor_data','[{\"id\":\"7225c724\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#060606E6\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer.png\",\"id\":87},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"109cef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.3},\"elements\":[{\"id\":\"6667e1a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/fe2tech.png\",\"id\":2409,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae6ecf2\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Office: 43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}},{\"content\":\"Factory: 176\\/9 Nguy\\u1ec5n Th\\u1ecb T\\u01b0\\u01a1i, KP T\\u00e2n Ph\\u01b0\\u1edbc, P. T\\u00e2n B\\u00ecnh, D\\u0129 An city, B\\u00ecnh D\\u01b0\\u01a1ng\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"be1a6dd\"},{\"content\":\"0968860386\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"712a43be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.664,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e4e262b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Menu\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6e682e5b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"39\",\"style\":\"tow-col-light\",\"link_color_hover\":\"#EF4D41\",\"line_color_hover\":\"#EF4D41\",\"menu_align\":\"left\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"e174b97\",\"elType\":\"widget\",\"settings\":{\"title\":\"Open Hours\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"1e0523b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Mon - Sat: 8 am - 5 pm,<br\\/>\\nSunday: CLOSED\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ab76a16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7},\"elements\":[{\"id\":\"37a5e636\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"aa15610\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#008684\",\"padding\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"040\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2487ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40d8f8a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sign up for alerts, our latest blogs, thoughts, and insights.\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d21d208\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"27383ab2\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin-box\",\"library\":\"material\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24b98c01\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"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},\"gap\":\"extended\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a6c11e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53be024\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"5990603\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"7f874a5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright @2024 of Far East High Tech Ltd. Co.<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_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},\"_css_classes\":\"ct-copyright\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6127,2514,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:2:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:1;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:16:\"link_color_hover\";i:1;s:16:\"line_color_hover\";i:1;s:10:\"menu_align\";i:1;s:17:\"menu_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:13:\"ct_newsletter\";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:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";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:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:1;}}}}}'),(6131,2515,'_wp_page_template','default'),(6132,2515,'_elementor_edit_mode','builder'),(6133,2515,'_elementor_template_type','wp-post'),(6134,2515,'_elementor_version','3.24.7'),(6135,2515,'_elementor_data','[{\"id\":\"7225c724\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#060606E6\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer.png\",\"id\":87},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"109cef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.3},\"elements\":[{\"id\":\"6667e1a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/fe2tech.png\",\"id\":2409,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae6ecf2\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Office: 43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}},{\"content\":\"Factory: 176\\/9 Nguy\\u1ec5n Th\\u1ecb T\\u01b0\\u01a1i, KP T\\u00e2n Ph\\u01b0\\u1edbc, P. T\\u00e2n B\\u00ecnh, D\\u0129 An city, B\\u00ecnh D\\u01b0\\u01a1ng\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"be1a6dd\"},{\"content\":\"0968860386\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"712a43be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.664,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e4e262b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Menu\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6e682e5b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"39\",\"style\":\"tow-col-light\",\"link_color_hover\":\"#EF4D41\",\"line_color_hover\":\"#EF4D41\",\"menu_align\":\"left\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"e174b97\",\"elType\":\"widget\",\"settings\":{\"title\":\"Open Hours\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"1e0523b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Mon - Sat: 8 am - 5 pm,<br\\/>\\nSunday: CLOSED\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ab76a16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7},\"elements\":[{\"id\":\"37a5e636\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"aa15610\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#008684\",\"padding\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"040\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2487ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40d8f8a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sign up for alerts, our latest blogs, thoughts, and insights.\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d21d208\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"27383ab2\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin-box\",\"library\":\"material\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24b98c01\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"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},\"gap\":\"extended\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a6c11e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53be024\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"5990603\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"7f874a5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright @2024 of Far East High Tech Ltd. Co.<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_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},\"_css_classes\":\"ct-copyright\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6136,2515,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:2:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:1;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:16:\"link_color_hover\";i:1;s:16:\"line_color_hover\";i:1;s:10:\"menu_align\";i:1;s:17:\"menu_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:13:\"ct_newsletter\";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:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";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:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:1;}}}}}'),(6140,2516,'_wp_page_template','default'),(6141,2516,'_elementor_edit_mode','builder'),(6142,2516,'_elementor_template_type','wp-post'),(6143,2516,'_elementor_version','3.24.7'),(6144,2516,'_elementor_data','[{\"id\":\"7225c724\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#060606E6\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer.png\",\"id\":87},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"109cef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.3},\"elements\":[{\"id\":\"6667e1a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/fe2tech.png\",\"id\":2409,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae6ecf2\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Office: 43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}},{\"content\":\"Factory: 176\\/9 Nguyen Thi Tuoi, Tan Phuoc Quarter, Tan Binh Ward, Di An City, Binh Duong\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"be1a6dd\"},{\"content\":\"0968860386\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"712a43be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.664,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e4e262b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Menu\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6e682e5b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"39\",\"style\":\"tow-col-light\",\"link_color_hover\":\"#EF4D41\",\"line_color_hover\":\"#EF4D41\",\"menu_align\":\"left\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"e174b97\",\"elType\":\"widget\",\"settings\":{\"title\":\"Open Hours\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"1e0523b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Mon - Sat: 8 am - 5 pm,<br\\/>\\nSunday: CLOSED\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ab76a16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7},\"elements\":[{\"id\":\"37a5e636\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"aa15610\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#008684\",\"padding\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"040\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2487ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40d8f8a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sign up for alerts, our latest blogs, thoughts, and insights.\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d21d208\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"27383ab2\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin-box\",\"library\":\"material\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24b98c01\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"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},\"gap\":\"extended\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a6c11e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53be024\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"5990603\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"7f874a5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright @2024 of Far East High Tech Ltd. Co.<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_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},\"_css_classes\":\"ct-copyright\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6145,2516,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:2:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:1;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:16:\"link_color_hover\";i:1;s:16:\"line_color_hover\";i:1;s:10:\"menu_align\";i:1;s:17:\"menu_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:13:\"ct_newsletter\";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:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";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:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:1;}}}}}'),(6151,2517,'_wp_page_template','default'),(6152,2517,'_elementor_edit_mode','builder'),(6153,2517,'_elementor_template_type','wp-page'),(6154,2517,'_elementor_version','3.24.7'),(6155,2517,'_elementor_data','[{\"id\":\"253fe5b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"a2a8d03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c431857\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":515,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d10974f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dbae7b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2f7cb3c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":38,\"spread\":0,\"color\":\"rgba(6.9999999999999964, 0, 76, 0.23)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-108\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d8771\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1bbe0fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Feel free to contact us to solve any problem!\",\"sub_title\":\"Contact us\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"147d5ff\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"ct_icon\":{\"value\":\"fas fa-store-alt\",\"library\":\"fa-solid\"},\"_id\":\"38e4334\",\"title\":\"Our head office address:\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/info-icon-01.png\",\"id\":279}},{\"content\":\"0968860386\",\"ct_icon\":{\"value\":\"fas fa-store-alt\",\"library\":\"fa-solid\"},\"_id\":\"f98cc4e\",\"title\":\"Call for help:\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/info-icon-02.png\",\"id\":280}},{\"content\":\"luutin.nmpco@gmail.com\",\"ct_icon\":{\"value\":\"fas fa-store-alt\",\"library\":\"fa-solid\"},\"title\":\"Mail us for information:\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/info-icon-03.png\",\"id\":281,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"b2b743e\"}],\"layout\":\"2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":true},{\"id\":\"c443a53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#EEF2F6\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b59c45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in touch!\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44b4987\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>If you have questions or want to learn more about our services, don\\u2019t hesitate to reach out. We\\u2019re here to help!<\\/p>\",\"text_color\":\"#636363\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"85609a1\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"91\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6156,2517,'_elementor_controls_usage','a:7:{s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:6:\"margin\";i:2;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:13:\"margin_mobile\";i:1;}}s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:15:\"stretch_section\";i:1;s:6:\"layout\";i:1;s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";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;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:11:\"css_classes\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:5:{s:5:\"title\";i:2;s:18:\"title_space_bottom\";i:2;s:27:\"title_typography_typography\";i:2;s:33:\"title_typography_font_size_tablet\";i:1;s:26:\"title_typography_font_size\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_ctf7\";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:\"source_section\";a:1:{s:7:\"ctf7_id\";i:1;}}}}}'),(6160,2518,'_wp_page_template','default'),(6161,2518,'_elementor_edit_mode','builder'),(6162,2518,'_elementor_template_type','wp-page'),(6163,2518,'_elementor_version','3.24.7'),(6164,2518,'_elementor_data','[{\"id\":\"253fe5b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"a2a8d03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c431857\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":515,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d10974f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dbae7b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2f7cb3c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":38,\"spread\":0,\"color\":\"rgba(6.9999999999999964, 0, 76, 0.23)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-108\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d8771\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1bbe0fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Feel free to contact us to solve any problem!\",\"sub_title\":\"Contact us\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"147d5ff\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"ct_icon\":{\"value\":\"fas fa-store-alt\",\"library\":\"fa-solid\"},\"_id\":\"38e4334\",\"title\":\"Our head office address:\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/info-icon-01.png\",\"id\":279}},{\"content\":\"0968860386\",\"ct_icon\":{\"value\":\"fas fa-store-alt\",\"library\":\"fa-solid\"},\"_id\":\"f98cc4e\",\"title\":\"Call for help:\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/info-icon-02.png\",\"id\":280}},{\"content\":\"luutin.nmpco@gmail.com\",\"ct_icon\":{\"value\":\"fas fa-store-alt\",\"library\":\"fa-solid\"},\"title\":\"Mail us for information:\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/info-icon-03.png\",\"id\":281,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"b2b743e\"}],\"layout\":\"2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":true},{\"id\":\"c443a53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#EEF2F6\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b59c45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in touch!\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44b4987\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>If you have questions or want to learn more about our services, don\\u2019t hesitate to reach out. We\\u2019re here to help!<\\/p>\",\"text_color\":\"#636363\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"85609a1\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"91\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6165,2518,'_elementor_controls_usage','a:7:{s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:6:\"margin\";i:2;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:13:\"margin_mobile\";i:1;}}s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:15:\"stretch_section\";i:1;s:6:\"layout\";i:1;s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";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;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:11:\"css_classes\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:5:{s:5:\"title\";i:2;s:18:\"title_space_bottom\";i:2;s:27:\"title_typography_typography\";i:2;s:33:\"title_typography_font_size_tablet\";i:1;s:26:\"title_typography_font_size\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_ctf7\";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:\"source_section\";a:1:{s:7:\"ctf7_id\";i:1;}}}}}'),(6169,2519,'_wp_page_template','default'),(6170,2519,'_elementor_edit_mode','builder'),(6171,2519,'_elementor_template_type','wp-page'),(6172,2519,'_elementor_version','3.24.7'),(6173,2519,'_elementor_data','[{\"id\":\"253fe5b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"a2a8d03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c431857\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":515,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d10974f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dbae7b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2f7cb3c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":38,\"spread\":0,\"color\":\"rgba(6.9999999999999964, 0, 76, 0.23)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-108\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d8771\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1bbe0fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Feel free to contact us to solve any problem!\",\"sub_title\":\"Contact us\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"147d5ff\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\",\"ct_icon\":{\"value\":\"fas fa-store-alt\",\"library\":\"fa-solid\"},\"_id\":\"38e4334\",\"title\":\"Our head office address:\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/info-icon-01.png\",\"id\":279}},{\"content\":\"0968860386\",\"ct_icon\":{\"value\":\"fas fa-store-alt\",\"library\":\"fa-solid\"},\"_id\":\"f98cc4e\",\"title\":\"Call for help:\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/info-icon-02.png\",\"id\":280}},{\"content\":\"luutin.nmpco@gmail.com\",\"ct_icon\":{\"value\":\"fas fa-store-alt\",\"library\":\"fa-solid\"},\"title\":\"Mail us for information:\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/info-icon-03.png\",\"id\":281,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"b2b743e\"}],\"layout\":\"2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":true},{\"id\":\"c443a53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#EEF2F6\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b59c45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in touch!\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44b4987\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>If you have questions or want to learn more about our services, don\\u2019t hesitate to reach out. We\\u2019re here to help!<\\/p>\",\"text_color\":\"#636363\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"85609a1\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"91\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6174,2519,'_elementor_controls_usage','a:7:{s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:6:\"margin\";i:2;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:13:\"margin_mobile\";i:1;}}s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:15:\"stretch_section\";i:1;s:6:\"layout\";i:1;s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";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;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:11:\"css_classes\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:5:{s:5:\"title\";i:2;s:18:\"title_space_bottom\";i:2;s:27:\"title_typography_typography\";i:2;s:33:\"title_typography_font_size_tablet\";i:1;s:26:\"title_typography_font_size\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_ctf7\";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:\"source_section\";a:1:{s:7:\"ctf7_id\";i:1;}}}}}'),(6178,24,'_yoast_wpseo_content_score','90'),(6179,24,'_yoast_wpseo_estimated-reading-time-minutes','1'),(6182,974,'_hash','4b8dff49217f25fdfcbfa954afd77ebc403a712f'),(6185,2520,'_wp_page_template','default'),(6186,2520,'_elementor_edit_mode','builder'),(6187,2520,'_elementor_template_type','wp-post'),(6188,2520,'_elementor_version','3.24.7'),(6189,2520,'_elementor_data','[{\"id\":\"7225c724\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#060606E6\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer.png\",\"id\":87},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"109cef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.3},\"elements\":[{\"id\":\"6667e1a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/fe2tech.png\",\"id\":2409,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae6ecf2\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Office: 43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}},{\"content\":\"Factory: 176\\/9 Nguyen Thi Tuoi, Tan Phuoc Quarter, Tan Binh Ward, Di An City, Binh Duong\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"be1a6dd\"},{\"content\":\"0968860386\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"712a43be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.664,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e4e262b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Menu\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6e682e5b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"39\",\"style\":\"tow-col-light\",\"link_color_hover\":\"#EF4D41\",\"line_color_hover\":\"#EF4D41\",\"menu_align\":\"left\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"e174b97\",\"elType\":\"widget\",\"settings\":{\"title\":\"Open Hours\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"1e0523b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Mon - Sat: 8 am - 5 pm,<br\\/>\\nSunday: CLOSED\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ab76a16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7},\"elements\":[{\"id\":\"37a5e636\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"aa15610\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#008684\",\"padding\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"040\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2487ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40d8f8a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sign up for alerts, our latest blogs, thoughts, and insights.\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d21d208\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"27383ab2\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin-box\",\"library\":\"material\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24b98c01\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"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},\"gap\":\"extended\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a6c11e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53be024\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"5990603\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"7f874a5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright @2024 of Far East High Tech Ltd. Co.<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_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},\"_css_classes\":\"ct-copyright\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6190,2520,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:2:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:1;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:16:\"link_color_hover\";i:1;s:16:\"line_color_hover\";i:1;s:10:\"menu_align\";i:1;s:17:\"menu_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:13:\"ct_newsletter\";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:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";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:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:1;}}}}}'),(6194,2521,'_wp_page_template','default'),(6195,2521,'_elementor_edit_mode','builder'),(6196,2521,'_elementor_template_type','wp-post'),(6197,2521,'_elementor_version','3.24.7'),(6198,2521,'_elementor_data','[{\"id\":\"7225c724\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#060606E6\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer.png\",\"id\":87},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"109cef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.3},\"elements\":[{\"id\":\"6667e1a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/fe2tech.png\",\"id\":2409,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae6ecf2\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Office: 43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}},{\"content\":\"Factory: 176\\/9 Nguyen Thi Tuoi, Tan Phuoc Quarter, Tan Binh Ward, Di An City, Binh Duong\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"be1a6dd\"},{\"content\":\"0968860386\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"712a43be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.664,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e4e262b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Menu\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6e682e5b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"39\",\"style\":\"tow-col-light\",\"link_color_hover\":\"#EF4D41\",\"line_color_hover\":\"#EF4D41\",\"menu_align\":\"left\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"e174b97\",\"elType\":\"widget\",\"settings\":{\"title\":\"Open Hours\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"1e0523b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Mon - Sat: 8 am - 5 pm,<br\\/>\\nSunday: CLOSED\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ab76a16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7},\"elements\":[{\"id\":\"37a5e636\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"aa15610\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#008684\",\"padding\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"040\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2487ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40d8f8a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sign up for alerts, our latest blogs, thoughts, and insights.\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d21d208\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"27383ab2\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin-box\",\"library\":\"material\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24b98c01\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"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},\"gap\":\"extended\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a6c11e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53be024\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"5990603\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"7f874a5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright @2024 of Far East High Tech Ltd. Co.<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_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},\"_css_classes\":\"ct-copyright\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6199,2521,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:2:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:1;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:16:\"link_color_hover\";i:1;s:16:\"line_color_hover\";i:1;s:10:\"menu_align\";i:1;s:17:\"menu_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:13:\"ct_newsletter\";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:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";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:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:1;}}}}}'),(6203,2522,'_wp_page_template','default'),(6204,2522,'_elementor_edit_mode','builder'),(6205,2522,'_elementor_template_type','wp-post'),(6206,2522,'_elementor_version','3.24.7'),(6207,2522,'_elementor_data','[{\"id\":\"7225c724\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#060606E6\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer.png\",\"id\":87},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"109cef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.3},\"elements\":[{\"id\":\"6667e1a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/fe2tech.png\",\"id\":2409,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae6ecf2\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Office: 43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}},{\"content\":\"Factory: 176\\/9 Nguyen Thi Tuoi, Tan Phuoc Quarter, Tan Binh Ward, Di An City, Binh Duong\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"be1a6dd\"},{\"content\":\"0968860386\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"712a43be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.664,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e4e262b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Menu\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6e682e5b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"39\",\"style\":\"tow-col-light\",\"link_color_hover\":\"#EF4D41\",\"line_color_hover\":\"#EF4D41\",\"menu_align\":\"left\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"e174b97\",\"elType\":\"widget\",\"settings\":{\"title\":\"Open Hours\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"1e0523b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Mon - Sat: 8 am - 5 pm,<br\\/>\\nSunday: CLOSED\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ab76a16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7},\"elements\":[{\"id\":\"37a5e636\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"aa15610\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#008684\",\"padding\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"040\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2487ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40d8f8a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sign up for alerts, our latest blogs, thoughts, and insights.\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d21d208\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"27383ab2\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin-box\",\"library\":\"material\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24b98c01\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"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},\"gap\":\"extended\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a6c11e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53be024\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"5990603\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"7f874a5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright @2024 of Far East High Tech Ltd. Co.<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_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},\"_css_classes\":\"ct-copyright\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6208,2522,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:2:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:1;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:16:\"link_color_hover\";i:1;s:16:\"line_color_hover\";i:1;s:10:\"menu_align\";i:1;s:17:\"menu_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:13:\"ct_newsletter\";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:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";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:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:1;}}}}}'),(6216,91,'_hash','0e702b0d8c35dc356ae8358b2f22a6a2d8855efe'),(6219,932,'_hash','48f88ea648b9a0e1f85ec60bb3a053efd7b28d0b'),(6273,2525,'_wp_page_template','default'),(6274,2525,'_elementor_edit_mode','builder'),(6275,2525,'_elementor_template_type','wp-page'),(6276,2525,'_elementor_version','3.24.7'),(6277,2525,'_elementor_data','[{\"id\":\"c986484\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"21\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab9e3e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.324,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cc7a78\",\"elType\":\"widget\",\"settings\":{\"title\":\"We satisfy you with innovative ideas and quality work.\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"sub_title\":\"About us\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c469998\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We exceed expectations through innovative ideas and exceptional craftsmanship.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11334c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2442360\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d195ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-01.png\",\"id\":612},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b2107e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Time manage\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c366e73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Efficiently organizing tasks to maximize productivity and meet deadlines.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d099fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c4ae19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-02.png\",\"id\":613},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ba24a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fulfill target\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bdc9adf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Achieving goals with precision and commitment, ensuring success.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ba92fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.676,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae4fae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218231.webp\",\"id\":2503,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"0c406f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/signature1.png\",\"id\":633},\"title\":\"Tin Luu\",\"desc\":\"(Chairman and founder)\",\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to know more about us?\",\"desc\":\"Just download brochure...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"},\"btn_link\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/BROCHURE.pdf\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-scaled.jpg\",\"id\":663},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"060\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.937},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Far East High Tech is a professional builder company\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.063},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Far East High Tech is a leading company in building and manufacturing high-quality mechanical solutions.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e9a883e\",\"elType\":\"widget\",\"settings\":{\"start_text\":\"Start\",\"end_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"history\":[{\"_id\":\"7d82651\",\"title\":\"12th Jan, 2018\",\"content\":\"Establishment of Constrio\"},{\"_id\":\"37eb5f9\",\"title\":\"2nd Feb, 2018\",\"content\":\"Exhibition Planning & Exhibition Management\"},{\"_id\":\"2e7ebbf\",\"title\":\"8th Jul, 2018\",\"content\":\"Registered as a construction company\"}]},\"elements\":[],\"widgetType\":\"ct_history\"}],\"isInner\":false}],\"isInner\":false}]'),(6278,2525,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:6;s:18:\"title_space_bottom\";i:3;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:4;s:22:\"sub_title_space_bottom\";i:3;s:15:\"sub_title_color\";i:1;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:5;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:7;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}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:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;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:10;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:3;s:13:\"margin_mobile\";i:3;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:3;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:6;s:7:\"padding\";i:6;s:14:\"padding_tablet\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:5:\"image\";i:1;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"ct_cta\";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:\"source_section\";a:4:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:4:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:14:\"slides_to_show\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:16:\"slides_to_scroll\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:6:\"arrows\";i:1;s:8:\"autoplay\";i:1;s:8:\"infinite\";i:1;}}}}}'),(6282,2526,'_wp_page_template','default'),(6283,2526,'_elementor_edit_mode','builder'),(6284,2526,'_elementor_template_type','wp-page'),(6285,2526,'_elementor_version','3.24.7'),(6286,2526,'_elementor_data','[{\"id\":\"c986484\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"21\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab9e3e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.324,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cc7a78\",\"elType\":\"widget\",\"settings\":{\"title\":\"We satisfy you with innovative ideas and quality work.\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"sub_title\":\"About us\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c469998\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We exceed expectations through innovative ideas and exceptional craftsmanship.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11334c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2442360\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d195ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-01.png\",\"id\":612},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b2107e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Time manage\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c366e73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Efficiently organizing tasks to maximize productivity and meet deadlines.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d099fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c4ae19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-02.png\",\"id\":613},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ba24a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fulfill target\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bdc9adf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Achieving goals with precision and commitment, ensuring success.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ba92fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.676,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae4fae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218231.webp\",\"id\":2503,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"0c406f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/signature1.png\",\"id\":633},\"title\":\"Tin Luu\",\"desc\":\"(Chairman and founder)\",\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to know more about us?\",\"desc\":\"Just download brochure...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"},\"btn_link\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/BROCHURE.pdf\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-scaled.jpg\",\"id\":663},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"060\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.937},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Far East High Tech is a professional builder company\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.063},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Far East High Tech is a leading company in building and manufacturing high-quality mechanical solutions.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e9a883e\",\"elType\":\"widget\",\"settings\":{\"start_text\":\"Start\",\"end_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"history\":[{\"_id\":\"7d82651\",\"title\":\"12th Jan, 2018\",\"content\":\"Establishment of Constrio\"},{\"_id\":\"37eb5f9\",\"title\":\"2nd Feb, 2018\",\"content\":\"Exhibition Planning & Exhibition Management\"},{\"_id\":\"2e7ebbf\",\"title\":\"8th Jul, 2018\",\"content\":\"Registered as a construction company\"}]},\"elements\":[],\"widgetType\":\"ct_history\"}],\"isInner\":false}],\"isInner\":false}]'),(6287,2526,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:6;s:18:\"title_space_bottom\";i:3;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:4;s:22:\"sub_title_space_bottom\";i:3;s:15:\"sub_title_color\";i:1;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:5;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:7;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}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:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;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:10;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:3;s:13:\"margin_mobile\";i:3;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:3;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:6;s:7:\"padding\";i:6;s:14:\"padding_tablet\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:5:\"image\";i:1;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"ct_cta\";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:\"source_section\";a:4:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:4:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:14:\"slides_to_show\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:16:\"slides_to_scroll\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:6:\"arrows\";i:1;s:8:\"autoplay\";i:1;s:8:\"infinite\";i:1;}}}}}'),(6291,2527,'_wp_page_template','default'),(6292,2527,'_elementor_edit_mode','builder'),(6293,2527,'_elementor_template_type','wp-page'),(6294,2527,'_elementor_version','3.24.7'),(6295,2527,'_elementor_data','[{\"id\":\"c986484\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"21\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab9e3e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.324,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cc7a78\",\"elType\":\"widget\",\"settings\":{\"title\":\"We satisfy you with innovative ideas and quality work.\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"sub_title\":\"About us\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c469998\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We exceed expectations through innovative ideas and exceptional craftsmanship.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11334c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2442360\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d195ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-01.png\",\"id\":612},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b2107e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Time manage\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c366e73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Efficiently organizing tasks to maximize productivity and meet deadlines.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d099fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c4ae19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-02.png\",\"id\":613},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ba24a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fulfill target\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bdc9adf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Achieving goals with precision and commitment, ensuring success.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ba92fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.676,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae4fae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218231.webp\",\"id\":2503,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"0c406f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/signature1.png\",\"id\":633},\"title\":\"Tin Luu\",\"desc\":\"(Chairman and founder)\",\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to know more about us?\",\"desc\":\"Just download brochure...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"},\"btn_link\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/BROCHURE.pdf\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-scaled.jpg\",\"id\":663},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"060\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.937},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Far East High Tech is a professional builder company\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.063},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Far East High Tech is a leading company in building and manufacturing high-quality mechanical solutions.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e9a883e\",\"elType\":\"widget\",\"settings\":{\"start_text\":\"Start\",\"end_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"history\":[{\"_id\":\"7d82651\",\"title\":\"12th Jan, 2021\",\"content\":\"Establishment of dedicated R&D department for mechanical innovations\"},{\"_id\":\"37eb5f9\",\"title\":\"5th Jun, 2021\",\"content\":\"Expanded into international markets, beginning with partnerships in Europe\"},{\"_id\":\"2e7ebbf\",\"title\":\"15th Mar, 2022\",\"content\":\"Released high-precision components for the aerospace sector\"},{\"_id\":\"6c49f4c\",\"title\":\"20th Oct, 2022\",\"content\":\"Achieved record sales, marking a major milestone in company growth\"},{\"_id\":\"de48600\",\"title\":\"8th Apr, 2023\",\"content\":\"Introduced automated quality control systems to improve production efficiency\"},{\"_id\":\"69693bb\",\"title\":\"15th Aug, 2023\",\"content\":\"Named a top mechanical solutions provider in the Asia-Pacific region\"}]},\"elements\":[],\"widgetType\":\"ct_history\"}],\"isInner\":false}],\"isInner\":false}]'),(6296,2527,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:6;s:18:\"title_space_bottom\";i:3;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:4;s:22:\"sub_title_space_bottom\";i:3;s:15:\"sub_title_color\";i:1;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:5;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:7;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}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:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;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:10;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:3;s:13:\"margin_mobile\";i:3;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:3;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:6;s:7:\"padding\";i:6;s:14:\"padding_tablet\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:5:\"image\";i:1;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"ct_cta\";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:\"source_section\";a:4:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:4:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:14:\"slides_to_show\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:16:\"slides_to_scroll\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:6:\"arrows\";i:1;s:8:\"autoplay\";i:1;s:8:\"infinite\";i:1;}}}}}'),(6308,2529,'_wp_page_template','default'),(6309,2529,'_elementor_edit_mode','builder'),(6310,2529,'_elementor_template_type','wp-page'),(6311,2529,'_elementor_version','3.24.7'),(6312,2529,'_elementor_data','[{\"id\":\"c986484\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"21\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab9e3e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.324,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cc7a78\",\"elType\":\"widget\",\"settings\":{\"title\":\"We satisfy you with innovative ideas and quality work.\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"sub_title\":\"About us\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c469998\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We exceed expectations through innovative ideas and exceptional craftsmanship.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11334c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2442360\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d195ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-01.png\",\"id\":612},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b2107e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Time manage\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c366e73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Efficiently organizing tasks to maximize productivity and meet deadlines.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d099fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c4ae19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-02.png\",\"id\":613},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ba24a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fulfill target\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bdc9adf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Achieving goals with precision and commitment, ensuring success.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ba92fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.676,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae4fae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218231.webp\",\"id\":2503,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"0c406f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/signature1.png\",\"id\":633},\"title\":\"Tin Luu\",\"desc\":\"(Chairman and founder)\",\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to know more about us?\",\"desc\":\"Just download brochure...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"},\"btn_link\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/BROCHURE.pdf\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-scaled.jpg\",\"id\":663},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"060\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.937},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Far East High Tech is a professional builder company\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.063},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Far East High Tech is a leading company in building and manufacturing high-quality mechanical solutions.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e9a883e\",\"elType\":\"widget\",\"settings\":{\"start_text\":\"Start\",\"end_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"history\":[{\"_id\":\"7d82651\",\"title\":\"12th Jan, 2021\",\"content\":\"Establishment of dedicated R&D department for mechanical innovations\"},{\"_id\":\"37eb5f9\",\"title\":\"5th Jun, 2021\",\"content\":\"Expanded into international markets, beginning with partnerships in Europe\"},{\"_id\":\"2e7ebbf\",\"title\":\"15th Mar, 2022\",\"content\":\"Released high-precision components for the aerospace sector\"},{\"_id\":\"6c49f4c\",\"title\":\"20th Oct, 2022\",\"content\":\"Achieved record sales, marking a major milestone in company growth\"},{\"_id\":\"de48600\",\"title\":\"8th Apr, 2023\",\"content\":\"Introduced automated quality control systems to improve production efficiency\"},{\"_id\":\"69693bb\",\"title\":\"15th Aug, 2023\",\"content\":\"Named a top mechanical solutions provider in the Asia-Pacific region\"}]},\"elements\":[],\"widgetType\":\"ct_history\"}],\"isInner\":false}],\"isInner\":false}]'),(6313,2529,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:6;s:18:\"title_space_bottom\";i:3;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:4;s:22:\"sub_title_space_bottom\";i:3;s:15:\"sub_title_color\";i:1;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:5;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:7;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}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:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;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:10;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:3;s:13:\"margin_mobile\";i:3;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:3;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:6;s:7:\"padding\";i:6;s:14:\"padding_tablet\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:5:\"image\";i:1;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"ct_cta\";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:\"source_section\";a:4:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:4:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:14:\"slides_to_show\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:16:\"slides_to_scroll\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:6:\"arrows\";i:1;s:8:\"autoplay\";i:1;s:8:\"infinite\";i:1;}}}}}'),(6316,2530,'_wp_page_template','default'),(6317,2530,'_elementor_edit_mode','builder'),(6318,2530,'_elementor_template_type','wp-page'),(6319,2530,'_elementor_version','3.24.7'),(6320,2530,'_elementor_data','[{\"id\":\"c986484\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"21\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab9e3e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.324,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cc7a78\",\"elType\":\"widget\",\"settings\":{\"title\":\"We satisfy you with innovative ideas and quality work.\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"sub_title\":\"About us\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c469998\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We exceed expectations through innovative ideas and exceptional craftsmanship.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11334c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2442360\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d195ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-01.png\",\"id\":612},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b2107e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Time manage\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c366e73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Efficiently organizing tasks to maximize productivity and meet deadlines.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d099fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c4ae19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-02.png\",\"id\":613},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ba24a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fulfill target\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bdc9adf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Achieving goals with precision and commitment, ensuring success.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ba92fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.676,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae4fae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218231.webp\",\"id\":2503,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"0c406f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/signature1.png\",\"id\":633},\"title\":\"Tin Luu\",\"desc\":\"(Chairman and founder)\",\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to know more about us?\",\"desc\":\"Just download brochure...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"},\"btn_link\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/BROCHURE.pdf\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-scaled.jpg\",\"id\":663},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"060\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.937},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Far East High Tech is a professional builder company\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.063},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Far East High Tech is a leading company in building and manufacturing high-quality mechanical solutions.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e9a883e\",\"elType\":\"widget\",\"settings\":{\"start_text\":\"Start\",\"end_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"history\":[{\"_id\":\"7d82651\",\"title\":\"12th Jan, 2021\",\"content\":\"Establishment of dedicated R&D department for mechanical innovations\"},{\"_id\":\"37eb5f9\",\"title\":\"5th Jun, 2021\",\"content\":\"Expanded into international markets, beginning with partnerships in Europe\"},{\"_id\":\"2e7ebbf\",\"title\":\"15th Mar, 2022\",\"content\":\"Released high-precision components for the aerospace sector\"},{\"_id\":\"6c49f4c\",\"title\":\"20th Oct, 2022\",\"content\":\"Achieved record sales, marking a major milestone in company growth\"},{\"_id\":\"de48600\",\"title\":\"8th Apr, 2023\",\"content\":\"Introduced automated quality control systems to improve production efficiency\"},{\"_id\":\"69693bb\",\"title\":\"15th Aug, 2023\",\"content\":\"Named a top mechanical solutions provider in the Asia-Pacific region\"}]},\"elements\":[],\"widgetType\":\"ct_history\"}],\"isInner\":false}],\"isInner\":false}]'),(6321,2530,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:6;s:18:\"title_space_bottom\";i:3;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:4;s:22:\"sub_title_space_bottom\";i:3;s:15:\"sub_title_color\";i:1;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:5;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:7;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}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:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;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:10;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:3;s:13:\"margin_mobile\";i:3;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:3;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:6;s:7:\"padding\";i:6;s:14:\"padding_tablet\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:5:\"image\";i:1;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"ct_cta\";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:\"source_section\";a:4:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:4:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:14:\"slides_to_show\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:16:\"slides_to_scroll\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:6:\"arrows\";i:1;s:8:\"autoplay\";i:1;s:8:\"infinite\";i:1;}}}}}'),(6324,2531,'_wp_page_template','default'),(6325,2531,'_elementor_edit_mode','builder'),(6326,2531,'_elementor_template_type','wp-page'),(6327,2531,'_elementor_version','3.24.7'),(6328,2531,'_elementor_data','[{\"id\":\"c986484\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"21\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab9e3e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.324,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cc7a78\",\"elType\":\"widget\",\"settings\":{\"title\":\"We satisfy you with innovative ideas and quality work.\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"sub_title\":\"About us\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c469998\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We exceed expectations through innovative ideas and exceptional craftsmanship.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11334c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2442360\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d195ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-01.png\",\"id\":612},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b2107e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Time manage\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c366e73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Efficiently organizing tasks to maximize productivity and meet deadlines.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d099fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c4ae19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-02.png\",\"id\":613},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ba24a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fulfill target\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bdc9adf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Achieving goals with precision and commitment, ensuring success.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ba92fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.676,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae4fae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218231.webp\",\"id\":2503,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"0c406f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/signature1.png\",\"id\":633},\"title\":\"Tin Luu\",\"desc\":\"(Chairman and founder)\",\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to know more about us?\",\"desc\":\"Just download brochure...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"},\"btn_link\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/BROCHURE.pdf\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-scaled.jpg\",\"id\":663},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"060\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.937},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Far East High Tech is a professional builder company\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.063},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Far East High Tech is a leading company in building and manufacturing high-quality mechanical solutions.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e9a883e\",\"elType\":\"widget\",\"settings\":{\"start_text\":\"Start\",\"end_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"history\":[{\"_id\":\"7d82651\",\"title\":\"12th Jan, 2021\",\"content\":\"Establishment of dedicated R&D department for mechanical innovations\"},{\"_id\":\"37eb5f9\",\"title\":\"5th Jun, 2021\",\"content\":\"Expanded into international markets, beginning with partnerships in Europe\"},{\"_id\":\"2e7ebbf\",\"title\":\"15th Mar, 2022\",\"content\":\"Released high-precision components for the aerospace sector\"},{\"_id\":\"6c49f4c\",\"title\":\"20th Oct, 2022\",\"content\":\"Achieved record sales, marking a major milestone in company growth\"},{\"_id\":\"de48600\",\"title\":\"8th Apr, 2023\",\"content\":\"Introduced automated quality control systems to improve production efficiency\"},{\"_id\":\"0532e1d\",\"title\":\"15th Aug, 2023\",\"content\":\"Named a top mechanical solutions provider in the Asia-Pacific region\"}]},\"elements\":[],\"widgetType\":\"ct_history\"}],\"isInner\":false}],\"isInner\":false}]'),(6329,2531,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:6;s:18:\"title_space_bottom\";i:3;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:4;s:22:\"sub_title_space_bottom\";i:3;s:15:\"sub_title_color\";i:1;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:5;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:7;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}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:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;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:10;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:3;s:13:\"margin_mobile\";i:3;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:3;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:6;s:7:\"padding\";i:6;s:14:\"padding_tablet\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:5:\"image\";i:1;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"ct_cta\";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:\"source_section\";a:4:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:4:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:14:\"slides_to_show\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:16:\"slides_to_scroll\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:6:\"arrows\";i:1;s:8:\"autoplay\";i:1;s:8:\"infinite\";i:1;}}}}}'),(6349,2538,'_wp_attached_file','2024/11/signature1.png'),(6350,2538,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:111;s:6:\"height\";i:55;s:4:\"file\";s:22:\"2024/11/signature1.png\";s:8:\"filesize\";i:885;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:{}}}'),(6352,2539,'_wp_page_template','default'),(6353,2539,'_elementor_edit_mode','builder'),(6354,2539,'_elementor_template_type','wp-page'),(6355,2539,'_elementor_version','3.24.7'),(6356,2539,'_elementor_data','[{\"id\":\"c986484\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"21\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab9e3e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.324,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cc7a78\",\"elType\":\"widget\",\"settings\":{\"title\":\"We satisfy you with innovative ideas and quality work.\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"sub_title\":\"About us\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c469998\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We exceed expectations through innovative ideas and exceptional craftsmanship.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11334c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2442360\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d195ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-01.png\",\"id\":612},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b2107e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Time manage\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c366e73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Efficiently organizing tasks to maximize productivity and meet deadlines.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d099fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c4ae19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-02.png\",\"id\":613},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ba24a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fulfill target\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bdc9adf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Achieving goals with precision and commitment, ensuring success.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ba92fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.676,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae4fae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218231.webp\",\"id\":2503,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"0c406f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/signature1.png\",\"id\":633},\"title\":\"Tin Luu\",\"desc\":\"(Chairman and founder)\",\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to know more about us?\",\"desc\":\"Just download brochure...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"},\"btn_link\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/BROCHURE.pdf\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-scaled.jpg\",\"id\":663},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"060\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.937},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Far East High Tech is a professional builder company\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.063},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Far East High Tech is a leading company in building and manufacturing high-quality mechanical solutions.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e9a883e\",\"elType\":\"widget\",\"settings\":{\"start_text\":\"Start\",\"end_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"history\":[{\"_id\":\"7d82651\",\"title\":\"12th Jan, 2021\",\"content\":\"Establishment of dedicated R&D department for mechanical innovations\"},{\"_id\":\"37eb5f9\",\"title\":\"5th Jun, 2021\",\"content\":\"Expanded into international markets, beginning with partnerships in Europe\"},{\"_id\":\"2e7ebbf\",\"title\":\"15th Mar, 2022\",\"content\":\"Released high-precision components for the aerospace sector\"},{\"_id\":\"6c49f4c\",\"title\":\"20th Oct, 2022\",\"content\":\"Achieved record sales, marking a major milestone in company growth\"},{\"_id\":\"de48600\",\"title\":\"8th Apr, 2023\",\"content\":\"Introduced automated quality control systems to improve production efficiency\"},{\"_id\":\"0532e1d\",\"title\":\"15th Aug, 2023\",\"content\":\"Named a top mechanical solutions provider in the Asia-Pacific region\"}]},\"elements\":[],\"widgetType\":\"ct_history\"}],\"isInner\":false}],\"isInner\":false}]'),(6357,2539,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:6;s:18:\"title_space_bottom\";i:3;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:4;s:22:\"sub_title_space_bottom\";i:3;s:15:\"sub_title_color\";i:1;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:5;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:7;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}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:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;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:10;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:3;s:13:\"margin_mobile\";i:3;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:3;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:6;s:7:\"padding\";i:6;s:14:\"padding_tablet\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:5:\"image\";i:1;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"ct_cta\";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:\"source_section\";a:4:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:4:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:14:\"slides_to_show\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:16:\"slides_to_scroll\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:6:\"arrows\";i:1;s:8:\"autoplay\";i:1;s:8:\"infinite\";i:1;}}}}}'),(6360,2540,'_wp_page_template','default'),(6361,2540,'_elementor_edit_mode','builder'),(6362,2540,'_elementor_template_type','wp-page'),(6363,2540,'_elementor_version','3.24.7'),(6364,2540,'_elementor_data','[{\"id\":\"c986484\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"21\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab9e3e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.324,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cc7a78\",\"elType\":\"widget\",\"settings\":{\"title\":\"We satisfy you with innovative ideas and quality work.\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"sub_title\":\"About us\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c469998\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We exceed expectations through innovative ideas and exceptional craftsmanship.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11334c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2442360\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d195ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-01.png\",\"id\":612},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b2107e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Time manage\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c366e73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Efficiently organizing tasks to maximize productivity and meet deadlines.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d099fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c4ae19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-02.png\",\"id\":613},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ba24a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fulfill target\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bdc9adf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Achieving goals with precision and commitment, ensuring success.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ba92fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.676,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae4fae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218231.webp\",\"id\":2503,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"0c406f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/signature1.png\",\"id\":633},\"title\":\"Tin Luu\",\"desc\":\"(Chairman and founder)\",\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to know more about us?\",\"desc\":\"Just download brochure...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"},\"btn_link\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/BROCHURE.pdf\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-scaled.jpg\",\"id\":663},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"060\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.937},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Far East High Tech is a professional builder company\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.063},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Far East High Tech is a leading company in building and manufacturing high-quality mechanical solutions.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e9a883e\",\"elType\":\"widget\",\"settings\":{\"start_text\":\"Start\",\"end_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"history\":[{\"_id\":\"7d82651\",\"title\":\"12th Jan, 2021\",\"content\":\"Establishment of dedicated R&D department for mechanical innovations\"},{\"_id\":\"37eb5f9\",\"title\":\"5th Jun, 2021\",\"content\":\"Expanded into international markets, beginning with partnerships in Europe\"},{\"_id\":\"2e7ebbf\",\"title\":\"15th Mar, 2022\",\"content\":\"Released high-precision components for the aerospace sector\"},{\"_id\":\"6c49f4c\",\"title\":\"20th Oct, 2022\",\"content\":\"Achieved record sales, marking a major milestone in company growth\"},{\"_id\":\"de48600\",\"title\":\"8th Apr, 2023\",\"content\":\"Introduced automated quality control systems to improve production efficiency\"},{\"_id\":\"0532e1d\",\"title\":\"15th Aug, 2023\",\"content\":\"Named a top mechanical solutions provider in the Asia-Pacific region\"}]},\"elements\":[],\"widgetType\":\"ct_history\"}],\"isInner\":false}],\"isInner\":false}]'),(6365,2540,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:6;s:18:\"title_space_bottom\";i:3;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:4;s:22:\"sub_title_space_bottom\";i:3;s:15:\"sub_title_color\";i:1;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:5;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:7;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}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:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;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:10;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:3;s:13:\"margin_mobile\";i:3;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:3;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:6;s:7:\"padding\";i:6;s:14:\"padding_tablet\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:5:\"image\";i:1;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"ct_cta\";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:\"source_section\";a:4:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:4:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:14:\"slides_to_show\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:16:\"slides_to_scroll\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:6:\"arrows\";i:1;s:8:\"autoplay\";i:1;s:8:\"infinite\";i:1;}}}}}'),(6368,2541,'_wp_page_template','default'),(6369,2541,'_elementor_edit_mode','builder'),(6370,2541,'_elementor_template_type','wp-page'),(6371,2541,'_elementor_version','3.24.7'),(6372,2541,'_elementor_data','[{\"id\":\"c986484\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"21\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab9e3e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.324,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cc7a78\",\"elType\":\"widget\",\"settings\":{\"title\":\"We satisfy you with innovative ideas and quality work.\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"sub_title\":\"About us\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c469998\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We exceed expectations through innovative ideas and exceptional craftsmanship.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11334c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2442360\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d195ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-01.png\",\"id\":612},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b2107e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Time manage\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c366e73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Efficiently organizing tasks to maximize productivity and meet deadlines.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d099fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c4ae19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-02.png\",\"id\":613},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ba24a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fulfill target\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bdc9adf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Achieving goals with precision and commitment, ensuring success.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ba92fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.676,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae4fae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218231.webp\",\"id\":2503,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"0c406f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature1.png\",\"id\":2538,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Tin Luu\",\"desc\":\"(Chairman and founder)\",\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to know more about us?\",\"desc\":\"Just download brochure...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"},\"btn_link\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/BROCHURE.pdf\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-scaled.jpg\",\"id\":663},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"060\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.937},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Far East High Tech is a professional builder company\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.063},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Far East High Tech is a leading company in building and manufacturing high-quality mechanical solutions.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e9a883e\",\"elType\":\"widget\",\"settings\":{\"start_text\":\"Start\",\"end_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"history\":[{\"_id\":\"7d82651\",\"title\":\"12th Jan, 2021\",\"content\":\"Establishment of dedicated R&D department for mechanical innovations\"},{\"_id\":\"37eb5f9\",\"title\":\"5th Jun, 2021\",\"content\":\"Expanded into international markets, beginning with partnerships in Europe\"},{\"_id\":\"2e7ebbf\",\"title\":\"15th Mar, 2022\",\"content\":\"Released high-precision components for the aerospace sector\"},{\"_id\":\"6c49f4c\",\"title\":\"20th Oct, 2022\",\"content\":\"Achieved record sales, marking a major milestone in company growth\"},{\"_id\":\"de48600\",\"title\":\"8th Apr, 2023\",\"content\":\"Introduced automated quality control systems to improve production efficiency\"},{\"_id\":\"0532e1d\",\"title\":\"15th Aug, 2023\",\"content\":\"Named a top mechanical solutions provider in the Asia-Pacific region\"}]},\"elements\":[],\"widgetType\":\"ct_history\"}],\"isInner\":false}],\"isInner\":false}]'),(6373,2541,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:6;s:18:\"title_space_bottom\";i:3;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:4;s:22:\"sub_title_space_bottom\";i:3;s:15:\"sub_title_color\";i:1;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:5;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:7;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}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:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;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:10;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:3;s:13:\"margin_mobile\";i:3;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:3;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:6;s:7:\"padding\";i:6;s:14:\"padding_tablet\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:5:\"image\";i:1;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"ct_cta\";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:\"source_section\";a:4:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:4:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:14:\"slides_to_show\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:16:\"slides_to_scroll\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:6:\"arrows\";i:1;s:8:\"autoplay\";i:1;s:8:\"infinite\";i:1;}}}}}'),(6376,2542,'_wp_attached_file','2024/11/signature.png'),(6377,2542,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:150;s:6:\"height\";i:75;s:4:\"file\";s:21:\"2024/11/signature.png\";s:8:\"filesize\";i:1031;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:{}}}'),(6378,2543,'_elementor_edit_mode','builder'),(6379,2543,'_elementor_template_type','wp-page'),(6380,2543,'_elementor_version','3.24.7'),(6381,2543,'_wp_page_template','default'),(6382,2543,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We assess plans and provide tailored machinery.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our company\\u2019s strength lies in our team, who have developed groundbreaking machinery and equipment.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/signature.png\",\"id\":1520},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":150,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Awards Winner\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Satisfied Clients\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Active projects\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_14479.png\",\"id\":2269,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"title\":\"198 Award-winning machinery and equipment manufacturing company.\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We help you build your vision with our machinery.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We approach every project with precision and value clear, simple communication.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"Engineering\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Design\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"Production\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses thrive by providing the latest machinery technology.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#008684\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6383,2543,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(6387,2544,'_elementor_edit_mode','builder'),(6388,2544,'_elementor_template_type','wp-page'),(6389,2544,'_elementor_version','3.24.7'),(6390,2544,'_wp_page_template','default'),(6391,2544,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We assess plans and provide tailored machinery.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our company\\u2019s strength lies in our team, who have developed groundbreaking machinery and equipment.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/signature.png\",\"id\":1520},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":150,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Awards Winner\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Satisfied Clients\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Active projects\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_14479.png\",\"id\":2269,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"title\":\"198 Award-winning machinery and equipment manufacturing company.\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We help you build your vision with our machinery.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We approach every project with precision and value clear, simple communication.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"Engineering\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Design\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"Production\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses thrive by providing the latest machinery technology.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#008684\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6392,2544,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(6396,2545,'_elementor_edit_mode','builder'),(6397,2545,'_elementor_template_type','wp-page'),(6398,2545,'_elementor_version','3.24.7'),(6399,2545,'_wp_page_template','default'),(6400,2545,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We assess plans and provide tailored machinery.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our company\\u2019s strength lies in our team, who have developed groundbreaking machinery and equipment.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":150,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Awards Winner\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Satisfied Clients\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Active projects\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_14479.png\",\"id\":2269,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"title\":\"198 Award-winning machinery and equipment manufacturing company.\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We help you build your vision with our machinery.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We approach every project with precision and value clear, simple communication.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"Engineering\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Design\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"Production\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses thrive by providing the latest machinery technology.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#008684\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6401,2545,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(6457,2547,'_wp_attached_file','2024/11/logo.jpg'),(6458,2547,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:208;s:6:\"height\";i:208;s:4:\"file\";s:16:\"2024/11/logo.jpg\";s:8:\"filesize\";i:9796;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:{}}}'),(6470,2550,'_wp_page_template','default'),(6471,2550,'_elementor_edit_mode','builder'),(6472,2550,'_elementor_template_type','wp-post'),(6473,2550,'_elementor_version','3.24.7'),(6474,2550,'_elementor_data','[{\"id\":\"7225c724\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#060606E6\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer.png\",\"id\":87},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"109cef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.3},\"elements\":[{\"id\":\"6667e1a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/fe2tech.png\",\"id\":2409,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae6ecf2\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Office: 43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}},{\"content\":\"Factory: 176\\/9 Nguyen Thi Tuoi, Tan Phuoc Quarter, Tan Binh Ward, Di An City, Binh Duong\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"be1a6dd\"},{\"content\":\"0968860386\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"712a43be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.664,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e4e262b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Menu\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6e682e5b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"39\",\"style\":\"tow-col-light\",\"link_color_hover\":\"#EF4D41\",\"line_color_hover\":\"#EF4D41\",\"menu_align\":\"left\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"e174b97\",\"elType\":\"widget\",\"settings\":{\"title\":\"Open Hours\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"1e0523b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Mon - Sat: 8 am - 5 pm,<br\\/>\\nSunday: CLOSED\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ab76a16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7},\"elements\":[{\"id\":\"37a5e636\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"aa15610\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#008684\",\"padding\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"040\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2487ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40d8f8a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sign up for alerts, our latest blogs, thoughts, and insights.\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d21d208\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"27383ab2\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin-box\",\"library\":\"material\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24b98c01\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"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},\"gap\":\"extended\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a6c11e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53be024\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"5990603\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"7f874a5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright @2024 of Far East High Tech Ltd. Co.<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_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},\"_css_classes\":\"ct-copyright\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6475,2550,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:2:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:1;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:16:\"link_color_hover\";i:1;s:16:\"line_color_hover\";i:1;s:10:\"menu_align\";i:1;s:17:\"menu_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:13:\"ct_newsletter\";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:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";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:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:1;}}}}}'),(6479,2551,'_wp_page_template','default'),(6480,2551,'_elementor_edit_mode','builder'),(6481,2551,'_elementor_template_type','wp-post'),(6482,2551,'_elementor_version','3.24.7'),(6483,2551,'_elementor_data','[{\"id\":\"7225c724\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#060606E6\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer.png\",\"id\":87},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"109cef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.3},\"elements\":[{\"id\":\"6667e1a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/fe2tech.png\",\"id\":2409,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae6ecf2\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Office: 43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}},{\"content\":\"Factory: 176\\/9 Nguyen Thi Tuoi, Tan Phuoc Quarter, Tan Binh Ward, Di An City, Binh Duong\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"be1a6dd\"},{\"content\":\"0968860386\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"712a43be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.664,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e4e262b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Menu\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6e682e5b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"39\",\"style\":\"tow-col-light\",\"link_color_hover\":\"#EF4D41\",\"line_color_hover\":\"#EF4D41\",\"menu_align\":\"left\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"e174b97\",\"elType\":\"widget\",\"settings\":{\"title\":\"Open Hours\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"1e0523b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Mon - Sat: 8 am - 5 pm,<br\\/>\\nSunday: CLOSED\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ab76a16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7},\"elements\":[{\"id\":\"37a5e636\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"aa15610\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#008684\",\"padding\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"040\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2487ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40d8f8a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sign up for alerts, our latest blogs, thoughts, and insights.\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d21d208\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"27383ab2\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin-box\",\"library\":\"material\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24b98c01\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"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},\"gap\":\"extended\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a6c11e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53be024\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"5990603\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"7f874a5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright @2024 of Far East High Tech Ltd. Co.<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_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},\"_css_classes\":\"ct-copyright\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6484,2551,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:2:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:1;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:16:\"link_color_hover\";i:1;s:16:\"line_color_hover\";i:1;s:10:\"menu_align\";i:1;s:17:\"menu_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:13:\"ct_newsletter\";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:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";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:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:1;}}}}}'),(6488,2552,'_wp_page_template','default'),(6489,2552,'_elementor_edit_mode','builder'),(6490,2552,'_elementor_template_type','wp-post'),(6491,2552,'_elementor_version','3.24.7'),(6492,2552,'_elementor_data','[{\"id\":\"7225c724\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#060606E6\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer.png\",\"id\":87},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"109cef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.3},\"elements\":[{\"id\":\"6667e1a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/logo.jpg\",\"id\":2547,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae6ecf2\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Office: 43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}},{\"content\":\"Factory: 176\\/9 Nguyen Thi Tuoi, Tan Phuoc Quarter, Tan Binh Ward, Di An City, Binh Duong\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"be1a6dd\"},{\"content\":\"0968860386\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"712a43be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.664,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e4e262b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Menu\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6e682e5b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"39\",\"style\":\"tow-col-light\",\"link_color_hover\":\"#EF4D41\",\"line_color_hover\":\"#EF4D41\",\"menu_align\":\"left\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"e174b97\",\"elType\":\"widget\",\"settings\":{\"title\":\"Open Hours\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"1e0523b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Mon - Sat: 8 am - 5 pm,<br\\/>\\nSunday: CLOSED\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ab76a16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7},\"elements\":[{\"id\":\"37a5e636\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"aa15610\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#008684\",\"padding\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"040\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2487ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40d8f8a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sign up for alerts, our latest blogs, thoughts, and insights.\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d21d208\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"27383ab2\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin-box\",\"library\":\"material\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24b98c01\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"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},\"gap\":\"extended\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a6c11e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53be024\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"5990603\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"7f874a5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright @2024 of Far East High Tech Ltd. Co.<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_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},\"_css_classes\":\"ct-copyright\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6493,2552,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:2:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:1;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:16:\"link_color_hover\";i:1;s:16:\"line_color_hover\";i:1;s:10:\"menu_align\";i:1;s:17:\"menu_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:13:\"ct_newsletter\";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:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";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:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:1;}}}}}'),(6512,2555,'_elementor_edit_mode','builder'),(6513,2555,'_elementor_template_type','wp-page'),(6514,2555,'_elementor_version','3.24.7'),(6515,2555,'_wp_page_template','default'),(6516,2555,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We assess plans and provide tailored machinery.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our company\\u2019s strength lies in our team, who have developed groundbreaking machinery and equipment.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":150,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Awards Winner\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Satisfied Clients\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Active projects\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_14479.png\",\"id\":2269,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"title\":\"198 Award-winning machinery and equipment manufacturing company.\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We help you build your vision with our machinery.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We approach every project with precision and value clear, simple communication.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"Engineering\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Design\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"Production\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses thrive by providing the latest machinery technology.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#008684\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6517,2555,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(6521,2556,'_elementor_edit_mode','builder'),(6522,2556,'_elementor_template_type','wp-page'),(6523,2556,'_elementor_version','3.24.7'),(6524,2556,'_wp_page_template','default'),(6525,2556,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We assess plans and provide tailored machinery.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our company\\u2019s strength lies in our team, who have developed groundbreaking machinery and equipment.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":150,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Awards Winner\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Satisfied Clients\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Active projects\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_14479.png\",\"id\":2269,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"title\":\"198 Award-winning machinery and equipment manufacturing company.\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We help you build your vision with our machinery.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We approach every project with precision and value clear, simple communication.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"Engineering\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Design\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"Production\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses thrive by providing the latest machinery technology.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#008684\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6526,2556,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(6530,2557,'_elementor_edit_mode','builder'),(6531,2557,'_elementor_template_type','wp-page'),(6532,2557,'_elementor_version','3.24.7'),(6533,2557,'_wp_page_template','default'),(6534,2557,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\",\"duration\":150},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_14479.png\",\"id\":2269,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"title\":\"198 Award-winning machinery and equipment manufacturing company.\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We help you build your vision with our machinery.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We approach every project with precision and value clear, simple communication.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"Engineering\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Design\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"Production\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses thrive by providing the latest machinery technology.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#008684\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6535,2557,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(6550,2559,'_wp_attached_file','2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg'),(6551,2559,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:1026;s:4:\"file\";s:48:\"2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\";s:8:\"filesize\";i:209214;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(6552,2560,'_wp_attached_file','2024/11/标题-1.jpg'),(6553,2560,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:900;s:6:\"height\";i:450;s:4:\"file\";s:20:\"2024/11/标题-1.jpg\";s:8:\"filesize\";i:61939;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:{}}}'),(6555,2561,'_elementor_edit_mode','builder'),(6556,2561,'_elementor_template_type','wp-page'),(6557,2561,'_elementor_version','3.24.7'),(6558,2561,'_wp_page_template','default'),(6559,2561,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\",\"duration\":150},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_14479.png\",\"id\":2269,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"title\":\"198 Award-winning machinery and equipment manufacturing company.\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We help you build your vision with our machinery.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We approach every project with precision and value clear, simple communication.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"Engineering\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Design\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"Production\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses thrive by providing the latest machinery technology.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#008684\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6560,2561,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(6564,2562,'_elementor_edit_mode','builder'),(6565,2562,'_elementor_template_type','wp-page'),(6566,2562,'_elementor_version','3.24.7'),(6567,2562,'_wp_page_template','default'),(6568,2562,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\",\"duration\":150},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_14479.png\",\"id\":2269,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"title\":\"198 Award-winning machinery and equipment manufacturing company.\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We help you build your vision with our machinery.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We approach every project with precision and value clear, simple communication.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"Engineering\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Design\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"Production\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses thrive by providing the latest machinery technology.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#008684\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6569,2562,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(6573,2563,'_elementor_edit_mode','builder'),(6574,2563,'_elementor_template_type','wp-page'),(6575,2563,'_elementor_version','3.24.7'),(6576,2563,'_wp_page_template','default'),(6577,2563,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\",\"duration\":150},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/\\u6807\\u9898-1.jpg\",\"id\":2560,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"icon_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses thrive by providing the latest machinery technology.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#008684\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6578,2563,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(6594,2565,'_elementor_edit_mode','builder'),(6595,2565,'_elementor_template_type','wp-page'),(6596,2565,'_elementor_version','3.24.7'),(6597,2565,'_wp_page_template','default'),(6598,2565,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\",\"duration\":150},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/\\u6807\\u9898-1.jpg\",\"id\":2560,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"icon_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses thrive by providing the latest machinery technology.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#008684\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6599,2565,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(6603,2566,'_elementor_edit_mode','builder'),(6604,2566,'_elementor_template_type','wp-page'),(6605,2566,'_elementor_version','3.24.7'),(6606,2566,'_wp_page_template','default'),(6607,2566,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\",\"duration\":150},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/\\u6807\\u9898-1.jpg\",\"id\":2560,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"icon_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses thrive by providing the latest machinery technology.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#008684\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6608,2566,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(6612,2567,'_elementor_edit_mode','builder'),(6613,2567,'_elementor_template_type','wp-page'),(6614,2567,'_elementor_version','3.24.7'),(6615,2567,'_wp_page_template','default'),(6616,2567,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\",\"duration\":150},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/\\u6807\\u9898-1.jpg\",\"id\":2560,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have started to open a store on Alibaba to connect with orders from around the world.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"icon_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses thrive by providing the latest machinery technology.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#008684\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6617,2567,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(6623,2568,'_elementor_edit_mode','builder'),(6624,2568,'_elementor_template_type','wp-page'),(6625,2568,'_elementor_version','3.24.7'),(6626,2568,'_wp_page_template','default'),(6627,2568,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\",\"duration\":150},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/\\u6807\\u9898-1.jpg\",\"id\":2560,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have started to open a store on Alibaba to connect with orders from around the world.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"icon_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses thrive by providing the latest machinery technology.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#008684\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6628,2568,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(6632,2569,'_elementor_edit_mode','builder'),(6633,2569,'_elementor_template_type','wp-page'),(6634,2569,'_elementor_version','3.24.7'),(6635,2569,'_wp_page_template','default'),(6636,2569,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\",\"duration\":150},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/\\u6807\\u9898-1.jpg\",\"id\":2560,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have started to open a store on Alibaba to connect with orders from around the world.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"icon_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses thrive by providing the latest machinery technology.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#008684\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6637,2569,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(6641,2570,'_elementor_edit_mode','builder'),(6642,2570,'_elementor_template_type','wp-page'),(6643,2570,'_elementor_version','3.24.7'),(6644,2570,'_wp_page_template','default'),(6645,2570,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\",\"duration\":150},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/\\u6807\\u9898-1.jpg\",\"id\":2560,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have started to open a store on Alibaba to connect with orders from around the world.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"icon_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses thrive by providing the latest machinery technology.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#008684\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6646,2570,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(6650,2571,'_wp_attached_file','2024/11/huong-dan-tu-order-alibaba-chi-t.jpg'),(6651,2571,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:400;s:4:\"file\";s:44:\"2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\";s:8:\"filesize\";i:42921;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:{}}}'),(6653,2572,'_elementor_edit_mode','builder'),(6654,2572,'_elementor_template_type','wp-page'),(6655,2572,'_elementor_version','3.24.7'),(6656,2572,'_wp_page_template','default'),(6657,2572,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\",\"duration\":150},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/\\u6807\\u9898-1.jpg\",\"id\":2560,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have started to open a store on Alibaba to connect with orders from around the world.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"icon_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses thrive by providing the latest machinery technology.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#008684\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6658,2572,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(6661,2573,'_elementor_edit_mode','builder'),(6662,2573,'_elementor_template_type','wp-page'),(6663,2573,'_elementor_version','3.24.7'),(6664,2573,'_wp_page_template','default'),(6665,2573,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\",\"duration\":150},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/\\u6807\\u9898-1.jpg\",\"id\":2560,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have started to open a store on Alibaba to connect with orders from around the world.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"icon_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses thrive by providing the latest machinery technology.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#008684\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6666,2573,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(6669,2574,'_elementor_edit_mode','builder'),(6670,2574,'_elementor_template_type','wp-page'),(6671,2574,'_elementor_version','3.24.7'),(6672,2574,'_wp_page_template','default'),(6673,2574,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\",\"duration\":150},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have started to open a store on Alibaba to connect with orders from around the world.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"icon_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses thrive by providing the latest machinery technology.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#008684\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6674,2574,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(6679,1955,'_wp_old_date','2024-10-18'),(6680,1955,'_menu_item_ct_megaprofile','0'),(6681,1955,'_menu_item_ct_icon',''),(6682,1955,'_menu_item_ct_onepage','no-one-page'),(6683,1955,'_menu_item_ct_onepage_offset',''),(6684,1955,'_menu_item_ct_custom_class',''),(6685,1955,'_menu_item_ct_menu_marker',''),(6686,2132,'_wp_old_date','2024-10-21'),(6687,2132,'_menu_item_ct_megaprofile','0'),(6688,2132,'_menu_item_ct_icon',''),(6689,2132,'_menu_item_ct_onepage','no-one-page'),(6690,2132,'_menu_item_ct_onepage_offset',''),(6691,2132,'_menu_item_ct_custom_class',''),(6692,2132,'_menu_item_ct_menu_marker',''),(6693,2131,'_wp_old_date','2024-10-21'),(6694,2131,'_menu_item_ct_megaprofile','0'),(6695,2131,'_menu_item_ct_icon',''),(6696,2131,'_menu_item_ct_onepage','no-one-page'),(6697,2131,'_menu_item_ct_onepage_offset',''),(6698,2131,'_menu_item_ct_custom_class',''),(6699,2131,'_menu_item_ct_menu_marker',''),(6700,1967,'_wp_old_date','2024-10-21'),(6701,1967,'_menu_item_ct_megaprofile','0'),(6702,1967,'_menu_item_ct_icon',''),(6703,1967,'_menu_item_ct_onepage','no-one-page'),(6704,1967,'_menu_item_ct_onepage_offset',''),(6705,1967,'_menu_item_ct_custom_class',''),(6706,1967,'_menu_item_ct_menu_marker',''),(6707,1960,'_wp_old_date','2024-10-21'),(6708,1960,'_menu_item_ct_megaprofile','0'),(6709,1960,'_menu_item_ct_icon',''),(6710,1960,'_menu_item_ct_onepage','no-one-page'),(6711,1960,'_menu_item_ct_onepage_offset',''),(6712,1960,'_menu_item_ct_custom_class',''),(6713,1960,'_menu_item_ct_menu_marker',''),(6714,2575,'_wp_attached_file','2024/11/Gia-cong-cnc-kim-loai-mang-lai-nhieu-hieu-qua-cao.jpg'),(6715,2575,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:771;s:6:\"height\";i:517;s:4:\"file\";s:61:\"2024/11/Gia-cong-cnc-kim-loai-mang-lai-nhieu-hieu-qua-cao.jpg\";s:8:\"filesize\";i:63235;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.5\";s:6:\"credit\";s:30:\"https://3d-smartsolutions.com/\";s:6:\"camera\";s:8:\"SM-N960U\";s:7:\"caption\";s:14:\"CNC kim loại\";s:17:\"created_timestamp\";s:10:\"1594666158\";s:9:\"copyright\";s:30:\"https://3d-smartsolutions.com/\";s:12:\"focal_length\";s:16:\"0.64706838131125\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:14:\"CNC kim loại\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6716,2576,'_wp_attached_file','2024/11/z5730877816945_ae68a9fd53f6d9e264072dd5b7ccc9a4.jpg'),(6717,2576,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1276;s:6:\"height\";i:956;s:4:\"file\";s:59:\"2024/11/z5730877816945_ae68a9fd53f6d9e264072dd5b7ccc9a4.jpg\";s:8:\"filesize\";i:243410;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:{}}}'),(6718,2577,'_wp_attached_file','2024/11/z5730877039706_bc9920fe3c6b725877e6f8d18f0bf53b.jpg'),(6719,2577,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:944;s:4:\"file\";s:59:\"2024/11/z5730877039706_bc9920fe3c6b725877e6f8d18f0bf53b.jpg\";s:8:\"filesize\";i:501848;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(6720,2578,'_wp_attached_file','2024/11/FEHT.png'),(6721,2578,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:963;s:6:\"height\";i:556;s:4:\"file\";s:16:\"2024/11/FEHT.png\";s:8:\"filesize\";i:973426;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:{}}}'),(6722,2579,'_wp_attached_file','2024/11/z5730877410081_d79c165708666da13a4697b171bd98f9.jpg'),(6723,2579,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1161;s:6:\"height\";i:891;s:4:\"file\";s:59:\"2024/11/z5730877410081_d79c165708666da13a4697b171bd98f9.jpg\";s:8:\"filesize\";i:221622;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:{}}}'),(6724,2580,'_wp_page_template','default'),(6725,2580,'_elementor_edit_mode','builder'),(6726,2580,'_elementor_template_type','wp-post'),(6727,2580,'_elementor_version','3.24.7'),(6728,2580,'_elementor_data','[{\"id\":\"7225c724\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#060606E6\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer.png\",\"id\":87},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"109cef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.3},\"elements\":[{\"id\":\"6667e1a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/logo.jpg\",\"id\":2547,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae6ecf2\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Office: 43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}},{\"content\":\"Factory: 176\\/9 Nguyen Thi Tuoi, Tan Phuoc Quarter, Tan Binh Ward, Di An City, Binh Duong\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"be1a6dd\"},{\"content\":\"0968860386\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"712a43be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.664,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e4e262b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Menu\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6e682e5b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"39\",\"style\":\"tow-col-light\",\"link_color_hover\":\"#EF4D41\",\"line_color_hover\":\"#EF4D41\",\"menu_align\":\"left\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"e174b97\",\"elType\":\"widget\",\"settings\":{\"title\":\"Open Hours\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"1e0523b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Mon - Sat: 8 am - 5 pm,<br\\/>\\nSunday: CLOSED\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ab76a16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7},\"elements\":[{\"id\":\"37a5e636\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"aa15610\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#008684\",\"padding\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"040\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2487ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40d8f8a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sign up for alerts, our latest blogs, thoughts, and insights.\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d21d208\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"27383ab2\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin-box\",\"library\":\"material\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24b98c01\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"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},\"gap\":\"extended\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a6c11e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53be024\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"5990603\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"7f874a5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright @2024 of Far East High Tech Ltd. Co.<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_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},\"_css_classes\":\"ct-copyright\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6729,2580,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:2:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:1;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:16:\"link_color_hover\";i:1;s:16:\"line_color_hover\";i:1;s:10:\"menu_align\";i:1;s:17:\"menu_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:13:\"ct_newsletter\";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:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";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:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:1;}}}}}'),(6733,2581,'_wp_page_template','default'),(6734,2581,'_elementor_edit_mode','builder'),(6735,2581,'_elementor_template_type','wp-post'),(6736,2581,'_elementor_version','3.24.7');
INSERT INTO `wp_postmeta` VALUES (6737,2581,'_elementor_data','[{\"id\":\"7225c724\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#060606E6\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer.png\",\"id\":87},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"109cef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.3},\"elements\":[{\"id\":\"6667e1a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/logo.jpg\",\"id\":2547,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae6ecf2\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Office: 43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}},{\"content\":\"Factory: 176\\/9 Nguyen Thi Tuoi, Tan Phuoc Quarter, Tan Binh Ward, Di An City, Binh Duong\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"be1a6dd\"},{\"content\":\"0968860386\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"712a43be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.664,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e4e262b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Menu\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6e682e5b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"39\",\"style\":\"tow-col-light\",\"link_color_hover\":\"#EF4D41\",\"line_color_hover\":\"#EF4D41\",\"menu_align\":\"left\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"e174b97\",\"elType\":\"widget\",\"settings\":{\"title\":\"Open Hours\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"1e0523b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Mon - Sat: 8 am - 5 pm,<br\\/>\\nSunday: CLOSED\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ab76a16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7},\"elements\":[{\"id\":\"37a5e636\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"aa15610\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#008684\",\"padding\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"040\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2487ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40d8f8a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sign up for alerts, our latest blogs, thoughts, and insights.\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d21d208\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"27383ab2\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin-box\",\"library\":\"material\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24b98c01\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"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},\"gap\":\"extended\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a6c11e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53be024\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"5990603\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"7f874a5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright @2024 of Far East High Tech Ltd. Co.<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_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},\"_css_classes\":\"ct-copyright\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6738,2581,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:2:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:1;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:16:\"link_color_hover\";i:1;s:16:\"line_color_hover\";i:1;s:10:\"menu_align\";i:1;s:17:\"menu_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:13:\"ct_newsletter\";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:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";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:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:1;}}}}}'),(6742,2582,'_wp_page_template','default'),(6743,2582,'_elementor_edit_mode','builder'),(6744,2582,'_elementor_template_type','wp-post'),(6745,2582,'_elementor_version','3.24.7'),(6746,2582,'_elementor_data','[{\"id\":\"7225c724\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#060606E6\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer.png\",\"id\":87},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"109cef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.3},\"elements\":[{\"id\":\"6667e1a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/logo.jpg\",\"id\":2547,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae6ecf2\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Office: 43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}},{\"content\":\"Factory: 176\\/9 Nguyen Thi Tuoi, Tan Phuoc Quarter, Tan Binh Ward, Di An City, Binh Duong\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"be1a6dd\"},{\"content\":\"0968860386\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"712a43be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.664,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e4e262b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Menu\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6e682e5b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"39\",\"style\":\"tow-col-light\",\"link_color_hover\":\"#EF4D41\",\"line_color_hover\":\"#EF4D41\",\"menu_align\":\"left\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"e174b97\",\"elType\":\"widget\",\"settings\":{\"title\":\"Open Hours\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"1e0523b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Mon - Sun: 24\\/24<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ab76a16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7},\"elements\":[{\"id\":\"37a5e636\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"aa15610\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#008684\",\"padding\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"040\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2487ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40d8f8a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sign up for alerts, our latest blogs, thoughts, and insights.\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d21d208\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"27383ab2\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin-box\",\"library\":\"material\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24b98c01\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"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},\"gap\":\"extended\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a6c11e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53be024\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"5990603\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"7f874a5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright @2024 of Far East High Tech Ltd. Co.<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_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},\"_css_classes\":\"ct-copyright\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6747,2582,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:2:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:1;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:16:\"link_color_hover\";i:1;s:16:\"line_color_hover\";i:1;s:10:\"menu_align\";i:1;s:17:\"menu_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:13:\"ct_newsletter\";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:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";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:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:1;}}}}}'),(6752,2583,'_wp_page_template','default'),(6753,2583,'_elementor_edit_mode','builder'),(6754,2583,'_elementor_template_type','wp-post'),(6755,2583,'_elementor_version','3.24.7'),(6756,2583,'_elementor_data','[{\"id\":\"7225c724\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#060606E6\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer.png\",\"id\":87},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"109cef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.3},\"elements\":[{\"id\":\"6667e1a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/logo.jpg\",\"id\":2547,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae6ecf2\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Office: 43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}},{\"content\":\"Factory: 176\\/9 Nguyen Thi Tuoi, Tan Phuoc Quarter, Tan Binh Ward, Di An City, Binh Duong\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"be1a6dd\"},{\"content\":\"0968860386\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"712a43be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.664,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e4e262b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Menu\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6e682e5b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"39\",\"style\":\"tow-col-light\",\"link_color_hover\":\"#EF4D41\",\"line_color_hover\":\"#EF4D41\",\"menu_align\":\"left\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"e174b97\",\"elType\":\"widget\",\"settings\":{\"title\":\"Open Hours\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"1e0523b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Mon - Sun: 24\\/24<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ab76a16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7},\"elements\":[{\"id\":\"37a5e636\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"aa15610\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#008684\",\"padding\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"040\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2487ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40d8f8a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sign up for alerts, our latest blogs, thoughts, and insights.\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d21d208\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"27383ab2\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin-box\",\"library\":\"material\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24b98c01\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"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},\"gap\":\"extended\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a6c11e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53be024\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"5990603\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"7f874a5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright @2024 of Far East High Tech Ltd. Co.<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_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},\"_css_classes\":\"ct-copyright\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6757,2583,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:2:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:1;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:16:\"link_color_hover\";i:1;s:16:\"line_color_hover\";i:1;s:10:\"menu_align\";i:1;s:17:\"menu_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:13:\"ct_newsletter\";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:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";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:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:1;}}}}}'),(6760,2584,'_wp_page_template','default'),(6761,2584,'_elementor_edit_mode','builder'),(6762,2584,'_elementor_template_type','wp-post'),(6763,2584,'_elementor_version','3.24.7'),(6764,2584,'_elementor_data','[{\"id\":\"7225c724\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#060606E6\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer.png\",\"id\":87},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"109cef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.3},\"elements\":[{\"id\":\"6667e1a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/logo.jpg\",\"id\":2547,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae6ecf2\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Office: 43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}},{\"content\":\"Factory: 176\\/9 Nguyen Thi Tuoi, Tan Phuoc Quarter, Tan Binh Ward, Di An City, Binh Duong\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"be1a6dd\"},{\"content\":\"0968860386\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"712a43be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.664,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e4e262b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Menu\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6e682e5b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"39\",\"style\":\"tow-col-light\",\"link_color_hover\":\"#EF4D41\",\"line_color_hover\":\"#EF4D41\",\"menu_align\":\"left\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"e174b97\",\"elType\":\"widget\",\"settings\":{\"title\":\"Open Hours\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"1e0523b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Mon - Sun: 24\\/24<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ab76a16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7},\"elements\":[{\"id\":\"37a5e636\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"aa15610\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#008684\",\"padding\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"040\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2487ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40d8f8a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sign up for alerts, our latest blogs, thoughts, and insights.\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d21d208\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"27383ab2\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin-box\",\"library\":\"material\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24b98c01\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"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},\"gap\":\"extended\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a6c11e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53be024\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"5990603\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"7f874a5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright @2024 of Far East High Tech Ltd. Co.<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_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},\"_css_classes\":\"ct-copyright\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6765,2584,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:2:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:1;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:16:\"link_color_hover\";i:1;s:16:\"line_color_hover\";i:1;s:10:\"menu_align\";i:1;s:17:\"menu_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:13:\"ct_newsletter\";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:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";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:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:1;}}}}}'),(6768,2585,'_wp_page_template','default'),(6769,2585,'_elementor_edit_mode','builder'),(6770,2585,'_elementor_template_type','wp-post'),(6771,2585,'_elementor_version','3.24.7'),(6772,2585,'_elementor_data','[{\"id\":\"7225c724\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#060606E6\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer.png\",\"id\":87},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"109cef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.3},\"elements\":[{\"id\":\"6667e1a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/logo.jpg\",\"id\":2547,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae6ecf2\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Factory 1: Khac Niem Industrial Cluster, Khac Niem Ward, Bac Ninh City, Bac Ninh Province\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}},{\"content\":\"Factory 2: 176\\/9 Nguyen Thi Tuoi, Tan Phuoc Quarter, Tan Binh Ward, Di An City, Binh Duong\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"be1a6dd\"},{\"content\":\"0968860386\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"712a43be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.664,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e4e262b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Menu\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6e682e5b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"39\",\"style\":\"tow-col-light\",\"link_color_hover\":\"#EF4D41\",\"line_color_hover\":\"#EF4D41\",\"menu_align\":\"left\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"e174b97\",\"elType\":\"widget\",\"settings\":{\"title\":\"Open Hours\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"1e0523b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Mon - Sun: 24\\/24<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ab76a16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7},\"elements\":[{\"id\":\"37a5e636\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"aa15610\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#008684\",\"padding\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"040\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2487ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40d8f8a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sign up for alerts, our latest blogs, thoughts, and insights.\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d21d208\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"27383ab2\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin-box\",\"library\":\"material\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24b98c01\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"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},\"gap\":\"extended\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a6c11e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53be024\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"5990603\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"7f874a5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright @2024 of Far East High Tech Ltd. Co.<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_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},\"_css_classes\":\"ct-copyright\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6773,2585,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:2:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:1;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:16:\"link_color_hover\";i:1;s:16:\"line_color_hover\";i:1;s:10:\"menu_align\";i:1;s:17:\"menu_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:13:\"ct_newsletter\";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:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";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:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:1;}}}}}'),(6778,2586,'_elementor_edit_mode','builder'),(6779,2586,'_elementor_template_type','wp-page'),(6780,2586,'_elementor_version','3.24.7'),(6781,2586,'_wp_page_template','default'),(6782,2586,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\",\"duration\":150},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have started to open a store on Alibaba to connect with orders from around the world.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"icon_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses thrive by providing the latest machinery technology.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#008684\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6783,2586,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(6787,2587,'_elementor_edit_mode','builder'),(6788,2587,'_elementor_template_type','wp-page'),(6789,2587,'_elementor_version','3.24.7'),(6790,2587,'_wp_page_template','default'),(6791,2587,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\",\"duration\":150},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have started to open a store on Alibaba to connect with orders from around the world.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"icon_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses thrive by providing the latest machinery technology.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#008684\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6792,2587,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(6796,2588,'_elementor_edit_mode','builder'),(6797,2588,'_elementor_template_type','wp-page'),(6798,2588,'_elementor_version','3.24.7'),(6799,2588,'_wp_page_template','default'),(6800,2588,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have started to open a store on Alibaba to connect with orders from around the world.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"icon_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses thrive by providing the latest machinery technology.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#008684\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6801,2588,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(6807,2589,'_wp_attached_file','2024/11/Finished-CNC-milled-parts-showcasing-the-precision-and-versatility-of-the-process.png'),(6808,2589,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:93:\"2024/11/Finished-CNC-milled-parts-showcasing-the-precision-and-versatility-of-the-process.png\";s:8:\"filesize\";i:140452;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:{}}}'),(6809,2590,'_wp_attached_file','2024/11/z5952363746762_6241ac4c6625581b5db9b24a1ee05f68.jpg'),(6810,2590,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:59:\"2024/11/z5952363746762_6241ac4c6625581b5db9b24a1ee05f68.jpg\";s:8:\"filesize\";i:374734;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:\"8\";s:8:\"keywords\";a:0:{}}}'),(6811,2591,'_elementor_edit_mode','builder'),(6812,2591,'_elementor_template_type','wp-page'),(6813,2591,'_elementor_version','3.24.7'),(6814,2591,'_wp_page_template','default'),(6815,2591,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have started to open a store on Alibaba to connect with orders from around the world.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"icon_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses thrive by providing the latest machinery technology.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#008684\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6816,2591,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(6820,2592,'_elementor_edit_mode','builder'),(6821,2592,'_elementor_template_type','wp-page'),(6822,2592,'_elementor_version','3.24.7'),(6823,2592,'_wp_page_template','default'),(6824,2592,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have started to open a store on Alibaba to connect with orders from around the world.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"icon_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses thrive by providing the latest machinery technology.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#008684\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6825,2592,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(6829,2593,'_elementor_edit_mode','builder'),(6830,2593,'_elementor_template_type','wp-page'),(6831,2593,'_elementor_version','3.24.7'),(6832,2593,'_wp_page_template','default'),(6833,2593,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have started to open a store on Alibaba to connect with orders from around the world.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"icon_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses thrive by providing the latest machinery technology.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#008684\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6834,2593,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(6841,2594,'_elementor_edit_mode','builder'),(6842,2594,'_elementor_template_type','wp-page'),(6843,2594,'_elementor_version','3.24.7'),(6844,2594,'_wp_page_template','default'),(6845,2594,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have started to open a store on Alibaba to connect with orders from around the world.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"icon_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses thrive by providing the latest machinery technology.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#008684\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6846,2594,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(6850,2595,'_elementor_edit_mode','builder'),(6851,2595,'_elementor_template_type','wp-page'),(6852,2595,'_elementor_version','3.24.7'),(6853,2595,'_wp_page_template','default'),(6854,2595,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have started to open a store on Alibaba to connect with orders from around the world.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"icon_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses thrive by providing the latest machinery technology.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#008684\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6855,2595,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(6859,2596,'_elementor_edit_mode','builder'),(6860,2596,'_elementor_template_type','wp-page'),(6861,2596,'_elementor_version','3.24.7'),(6862,2596,'_wp_page_template','default'),(6863,2596,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have started to open a store on Alibaba to connect with orders from around the world.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"icon_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses thrive by providing the latest machinery technology.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#008684\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6864,2596,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(6869,2597,'_elementor_edit_mode','builder'),(6870,2597,'_elementor_template_type','wp-page'),(6871,2597,'_elementor_version','3.24.7'),(6872,2597,'_wp_page_template','default'),(6873,2597,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have started to open a store on Alibaba to connect with orders from around the world.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"icon_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses thrive by providing the latest machinery technology.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#008684\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6874,2597,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(6877,2598,'_elementor_edit_mode','builder'),(6878,2598,'_elementor_template_type','wp-page'),(6879,2598,'_elementor_version','3.24.7'),(6880,2598,'_wp_page_template','default'),(6881,2598,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have started to open a store on Alibaba to connect with orders from around the world.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"icon_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help businesses thrive by providing the latest machinery technology.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#008684\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6882,2598,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(6885,2599,'_elementor_edit_mode','builder'),(6886,2599,'_elementor_template_type','wp-page'),(6887,2599,'_elementor_version','3.24.7'),(6888,2599,'_wp_page_template','default'),(6889,2599,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have started to open a store on Alibaba to connect with orders from around the world.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"icon_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always provide a sense of security in terms of quality and progress.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#008684\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6890,2599,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(6894,2600,'_elementor_edit_mode','builder'),(6895,2600,'_elementor_template_type','wp-page'),(6896,2600,'_elementor_version','3.24.7'),(6897,2600,'_wp_page_template','default'),(6898,2600,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have started to open a store on Alibaba to connect with orders from around the world.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"icon_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always provide a sense of security in terms of quality and progress.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#008684\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6899,2600,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(6902,2601,'_elementor_edit_mode','builder'),(6903,2601,'_elementor_template_type','wp-page'),(6904,2601,'_elementor_version','3.24.7'),(6905,2601,'_wp_page_template','default'),(6906,2601,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have started to open a store on Alibaba to connect with orders from around the world.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"icon_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always provide a sense of security in terms of quality and progress.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#008684\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6907,2601,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(6910,2602,'_elementor_edit_mode','builder'),(6911,2602,'_elementor_template_type','wp-page'),(6912,2602,'_elementor_version','3.24.7'),(6913,2602,'_wp_page_template','default'),(6914,2602,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have started to open a store on Alibaba to connect with orders from around the world.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"icon_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always provide a sense of security in terms of quality and progress.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#008684\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6915,2602,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(6919,2603,'_elementor_edit_mode','builder'),(6920,2603,'_elementor_template_type','wp-page'),(6921,2603,'_elementor_version','3.24.7'),(6922,2603,'_wp_page_template','default'),(6923,2603,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have started to open a store on Alibaba to connect with orders from around the world.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"icon_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always provide a sense of security in terms of quality and progress.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#008684\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6924,2603,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(6927,2604,'_elementor_edit_mode','builder'),(6928,2604,'_elementor_template_type','wp-page'),(6929,2604,'_elementor_version','3.24.7'),(6930,2604,'_wp_page_template','default'),(6931,2604,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have started to open a store on Alibaba to connect with orders from around the world.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"icon_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always provide a sense of security in terms of quality and progress.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#008684\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6932,2604,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(6935,2605,'_elementor_edit_mode','builder'),(6936,2605,'_elementor_template_type','wp-page'),(6937,2605,'_elementor_version','3.24.7'),(6938,2605,'_wp_page_template','default'),(6939,2605,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have started to open a store on Alibaba to connect with orders from around the world.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"icon_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"251e149\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"icon_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always provide a sense of security in terms of quality and progress.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#008684\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6940,2605,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(6945,2606,'_elementor_edit_mode','builder'),(6946,2606,'_elementor_template_type','wp-page'),(6947,2606,'_elementor_version','3.24.7'),(6948,2606,'_wp_page_template','default'),(6949,2606,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have started to open a store on Alibaba to connect with orders from around the world.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"icon_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"251e149\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"icon_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always provide a sense of security in terms of quality and progress.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#008684\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6950,2606,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(6954,2607,'_elementor_edit_mode','builder'),(6955,2607,'_elementor_template_type','wp-page'),(6956,2607,'_elementor_version','3.24.7'),(6957,2607,'_wp_page_template','default'),(6958,2607,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have started to open a store on Alibaba to connect with orders from around the world.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"icon_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"251e149\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"icon_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always provide a sense of security in terms of quality and progress.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#008684\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6959,2607,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(6963,2608,'_elementor_edit_mode','builder'),(6964,2608,'_elementor_template_type','wp-page'),(6965,2608,'_elementor_version','3.24.7'),(6966,2608,'_wp_page_template','default'),(6967,2608,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have started to open a store on Alibaba to connect with orders from around the world.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"icon_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"251e149\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"icon_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always provide a sense of security in terms of quality and progress.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#008684\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6968,2608,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(6974,2609,'_elementor_edit_mode','builder'),(6975,2609,'_elementor_template_type','wp-page'),(6976,2609,'_elementor_version','3.24.7'),(6977,2609,'_wp_page_template','default'),(6978,2609,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have started to open a store on Alibaba to connect with orders from around the world.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"icon_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"251e149\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"icon_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always provide a sense of security in terms of quality and progress.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#008684\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6979,2609,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(6983,2610,'_elementor_edit_mode','builder'),(6984,2610,'_elementor_template_type','wp-page'),(6985,2610,'_elementor_version','3.24.7'),(6986,2610,'_wp_page_template','default'),(6987,2610,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have started to open a store on Alibaba to connect with orders from around the world.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"icon_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"251e149\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"icon_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always provide a sense of security in terms of quality and progress.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#008684\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6988,2610,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(6992,2611,'_elementor_edit_mode','builder'),(6993,2611,'_elementor_template_type','wp-page'),(6994,2611,'_elementor_version','3.24.7'),(6995,2611,'_wp_page_template','default'),(6996,2611,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have started to open a store on Alibaba to connect with orders from around the world.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"icon_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always provide a sense of security in terms of quality and progress.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#008684\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6997,2611,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(7009,2615,'_wp_page_template','default'),(7010,2615,'_elementor_edit_mode','builder'),(7011,2615,'_elementor_template_type','wp-post'),(7012,2615,'_elementor_version','3.24.7'),(7013,2615,'_elementor_data','[{\"id\":\"7225c724\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#060606E6\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer.png\",\"id\":87},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"109cef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.3},\"elements\":[{\"id\":\"6667e1a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/logo.jpg\",\"id\":2547,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae6ecf2\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Factory 1: Khac Niem Industrial Cluster, Khac Niem Ward, Bac Ninh City, Bac Ninh Province\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}},{\"content\":\"Factory 2: 176\\/9 Nguyen Thi Tuoi, Tan Phuoc Quarter, Tan Binh Ward, Di An City, Binh Duong\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"be1a6dd\"},{\"content\":\"0968860386\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"712a43be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.664,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e4e262b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Menu\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6e682e5b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"39\",\"style\":\"tow-col-light\",\"link_color_hover\":\"#EF4D41\",\"line_color_hover\":\"#EF4D41\",\"menu_align\":\"left\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"e174b97\",\"elType\":\"widget\",\"settings\":{\"title\":\"Open Hours\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"1e0523b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Mon - Sun: 24\\/24<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ab76a16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7},\"elements\":[{\"id\":\"37a5e636\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"aa15610\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#008684\",\"padding\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"040\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2487ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40d8f8a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sign up for alerts, our latest blogs, thoughts, and insights.\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d21d208\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"27383ab2\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin-box\",\"library\":\"material\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24b98c01\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"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},\"gap\":\"extended\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a6c11e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53be024\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"5990603\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"7f874a5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright @2024 of Far East High Tech Ltd. Co.<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_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},\"_css_classes\":\"ct-copyright\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7014,2615,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:2:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:1;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:16:\"link_color_hover\";i:1;s:16:\"line_color_hover\";i:1;s:10:\"menu_align\";i:1;s:17:\"menu_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:13:\"ct_newsletter\";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:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";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:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:1;}}}}}'),(7018,2616,'_wp_page_template','default'),(7019,2616,'_elementor_edit_mode','builder'),(7020,2616,'_elementor_template_type','wp-post'),(7021,2616,'_elementor_version','3.24.7'),(7022,2616,'_elementor_data','[{\"id\":\"7225c724\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#060606E6\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer.png\",\"id\":87},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"109cef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.3},\"elements\":[{\"id\":\"6667e1a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/logo.jpg\",\"id\":2547,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae6ecf2\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Factory 1: Khac Niem Industrial Cluster, Khac Niem Ward, Bac Ninh City, Bac Ninh Province\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}},{\"content\":\"Factory 2: 176\\/9 Nguyen Thi Tuoi, Tan Phuoc Quarter, Tan Binh Ward, Di An City, Binh Duong\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"be1a6dd\"},{\"content\":\"0968860386\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"712a43be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.664,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e4e262b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Menu\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6e682e5b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"39\",\"style\":\"tow-col-light\",\"link_color_hover\":\"#EF4D41\",\"line_color_hover\":\"#EF4D41\",\"menu_align\":\"left\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"e174b97\",\"elType\":\"widget\",\"settings\":{\"title\":\"Open Hours\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"1e0523b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Mon - Sun: 24\\/24<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ab76a16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7},\"elements\":[{\"id\":\"37a5e636\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"aa15610\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#008684\",\"padding\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"040\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2487ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40d8f8a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sign up for alerts, our latest blogs, thoughts, and insights.\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d21d208\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"27383ab2\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin-box\",\"library\":\"material\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24b98c01\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"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},\"gap\":\"extended\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a6c11e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53be024\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"5990603\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"7f874a5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright @2024 of Far East High Tech Ltd. Co.<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_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},\"_css_classes\":\"ct-copyright\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7023,2616,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:2:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:1;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:16:\"link_color_hover\";i:1;s:16:\"line_color_hover\";i:1;s:10:\"menu_align\";i:1;s:17:\"menu_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:13:\"ct_newsletter\";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:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";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:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:1;}}}}}'),(7027,2617,'_wp_page_template','default'),(7028,2617,'_elementor_edit_mode','builder'),(7029,2617,'_elementor_template_type','wp-post'),(7030,2617,'_elementor_version','3.24.7'),(7031,2617,'_elementor_data','[{\"id\":\"7225c724\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#060606E6\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer.png\",\"id\":87},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"109cef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.3},\"elements\":[{\"id\":\"6667e1a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/logo.jpg\",\"id\":2547,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae6ecf2\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Factory 1: Khac Niem Industrial Cluster, Khac Niem Ward, Bac Ninh City, Bac Ninh Province\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}},{\"content\":\"Factory 2: 176\\/9 Nguyen Thi Tuoi, Tan Phuoc Quarter, Tan Binh Ward, Di An City, Binh Duong\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"be1a6dd\"},{\"content\":\"0968 86 03 86\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"712a43be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.664,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e4e262b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Menu\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6e682e5b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"39\",\"style\":\"tow-col-light\",\"link_color_hover\":\"#EF4D41\",\"line_color_hover\":\"#EF4D41\",\"menu_align\":\"left\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"e174b97\",\"elType\":\"widget\",\"settings\":{\"title\":\"Open Hours\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"1e0523b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Mon - Sun: 24\\/24<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ab76a16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7},\"elements\":[{\"id\":\"37a5e636\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"aa15610\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#008684\",\"padding\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"040\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2487ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40d8f8a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sign up for alerts, our latest blogs, thoughts, and insights.\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d21d208\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"27383ab2\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin-box\",\"library\":\"material\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24b98c01\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"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},\"gap\":\"extended\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a6c11e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53be024\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"5990603\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"7f874a5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright @2024 of Far East High Tech Ltd. Co.<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_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},\"_css_classes\":\"ct-copyright\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7032,2617,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:2:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:1;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:16:\"link_color_hover\";i:1;s:16:\"line_color_hover\";i:1;s:10:\"menu_align\";i:1;s:17:\"menu_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:13:\"ct_newsletter\";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:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";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:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:1;}}}}}'),(7048,2619,'_edit_last','1'),(7049,2619,'_edit_lock','1734419147:1'),(7050,2620,'_wp_attached_file','2024/11/cnc-milling-machining-service.jpg'),(7051,2620,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:41:\"2024/11/cnc-milling-machining-service.jpg\";s:8:\"filesize\";i:80437;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:{}}}'),(7052,2619,'_thumbnail_id','2657'),(7053,2619,'_wp_page_template','default'),(7054,2619,'service_icon',''),(7055,2619,'service_except',''),(7056,2619,'service_content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(7057,2619,'_yoast_wpseo_primary_service-category','50'),(7059,2619,'_yoast_wpseo_estimated-reading-time-minutes','3'),(7060,2622,'_edit_last','1'),(7061,2622,'_edit_lock','1734419610:1'),(7062,2623,'_wp_attached_file','2024/11/r_shutterstock_304656242.webp'),(7063,2623,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1328;s:4:\"file\";s:37:\"2024/11/r_shutterstock_304656242.webp\";s:8:\"filesize\";i:98002;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:{}}}'),(7064,2622,'_thumbnail_id','2661'),(7065,2622,'_wp_page_template','default'),(7066,2622,'service_icon',''),(7067,2622,'service_except',''),(7068,2622,'service_content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(7069,2622,'_yoast_wpseo_primary_service-category','50'),(7070,2622,'_yoast_wpseo_content_score','90'),(7071,2622,'_yoast_wpseo_estimated-reading-time-minutes','3'),(7072,2625,'_edit_last','1'),(7073,2625,'_edit_lock','1734419935:1'),(7074,2626,'_wp_attached_file','2024/11/stock-photo-operator-make-automotive-parts-by-cnc-lathe-and-cnc-grinding-process-233149603.jpg'),(7075,2626,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1382;s:4:\"file\";s:102:\"2024/11/stock-photo-operator-make-automotive-parts-by-cnc-lathe-and-cnc-grinding-process-233149603.jpg\";s:8:\"filesize\";i:101518;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Shutterstock\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:78:\"Copyright (c) 2014 Aumm graphixphoto/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:60:\"Operator,Make,Automotive,Parts,By,Cnc,Lathe,And,Cnc,Grinding\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(7076,2625,'_thumbnail_id','2655'),(7077,2625,'_wp_page_template','default'),(7078,2625,'service_icon',''),(7079,2625,'service_except',''),(7080,2625,'service_content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(7081,2625,'_yoast_wpseo_primary_service-category','50'),(7082,2625,'_yoast_wpseo_content_score','90'),(7083,2625,'_yoast_wpseo_estimated-reading-time-minutes','3'),(7084,2628,'_edit_last','1'),(7085,2628,'_edit_lock','1734420086:1'),(7086,2629,'_wp_attached_file','2024/11/shutterstock_laser-cutting-312633680-resize.jpg'),(7087,2629,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1773;s:6:\"height\";i:1182;s:4:\"file\";s:55:\"2024/11/shutterstock_laser-cutting-312633680-resize.jpg\";s:8:\"filesize\";i:175580;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:10:\"1670937214\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(7088,2628,'_thumbnail_id','2656'),(7089,2628,'_wp_page_template','default'),(7090,2628,'service_icon',''),(7091,2628,'service_except',''),(7092,2628,'service_content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(7093,2628,'_yoast_wpseo_primary_service-category','47'),(7094,2628,'_yoast_wpseo_content_score','90'),(7095,2628,'_yoast_wpseo_estimated-reading-time-minutes','2'),(7096,2631,'_edit_last','1'),(7097,2631,'_edit_lock','1734420548:1'),(7098,2632,'_wp_attached_file','2024/11/5-Types-of-Welding-Services-for-Industrial-Fabrication-1-resized-licensed.jpg'),(7099,2632,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:85:\"2024/11/5-Types-of-Welding-Services-for-Industrial-Fabrication-1-resized-licensed.jpg\";s:8:\"filesize\";i:483263;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:10:\"1567768602\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(7100,2631,'_thumbnail_id','2659'),(7101,2631,'_wp_page_template','default'),(7102,2631,'service_icon',''),(7103,2631,'service_except',''),(7104,2631,'service_content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(7105,2631,'_yoast_wpseo_primary_service-category','51'),(7106,2631,'_yoast_wpseo_content_score','90'),(7107,2631,'_yoast_wpseo_estimated-reading-time-minutes','3'),(7108,2634,'_edit_last','1'),(7109,2634,'_edit_lock','1734420694:1'),(7110,2635,'_wp_attached_file','2024/11/img-edm_wire.jpg'),(7111,2635,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:531;s:4:\"file\";s:24:\"2024/11/img-edm_wire.jpg\";s:8:\"filesize\";i:144518;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:{}}}'),(7112,2634,'_thumbnail_id','2660'),(7113,2634,'_wp_page_template','default'),(7114,2634,'service_icon',''),(7115,2634,'service_except',''),(7116,2634,'service_content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(7117,2634,'_yoast_wpseo_primary_service-category','52'),(7118,2634,'_yoast_wpseo_content_score','90'),(7119,2634,'_yoast_wpseo_estimated-reading-time-minutes','4'),(7120,2638,'_edit_last','1'),(7121,2638,'_edit_lock','1734420793:1'),(7122,2639,'_wp_attached_file','2024/11/58128630f5528e42bfdc7468fdb7746b03c5.jpg'),(7123,2639,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:540;s:4:\"file\";s:48:\"2024/11/58128630f5528e42bfdc7468fdb7746b03c5.jpg\";s:8:\"filesize\";i:394105;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:{}}}'),(7124,2638,'_thumbnail_id','2658'),(7125,2638,'_wp_page_template','default'),(7126,2638,'service_icon',''),(7127,2638,'service_except',''),(7128,2638,'service_content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(7129,2638,'_yoast_wpseo_primary_service-category','52'),(7130,2638,'_yoast_wpseo_content_score','90'),(7131,2638,'_yoast_wpseo_estimated-reading-time-minutes','1'),(7132,2642,'_edit_last','1'),(7133,2642,'_edit_lock','1734420925:1'),(7134,2643,'_wp_attached_file','2024/11/Custom-Machining-Shop_900x600.jpg'),(7135,2643,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:900;s:6:\"height\";i:600;s:4:\"file\";s:41:\"2024/11/Custom-Machining-Shop_900x600.jpg\";s:8:\"filesize\";i:91135;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:{}}}'),(7136,2642,'_thumbnail_id','2654'),(7137,2642,'_wp_page_template','default'),(7138,2642,'service_icon',''),(7139,2642,'service_except',''),(7140,2642,'service_content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(7141,2642,'_yoast_wpseo_primary_service-category','53'),(7142,2642,'_yoast_wpseo_content_score','90'),(7143,2642,'_yoast_wpseo_estimated-reading-time-minutes','1'),(7144,2645,'_elementor_edit_mode','builder'),(7145,2645,'_elementor_template_type','wp-page'),(7146,2645,'_elementor_version','3.24.7'),(7147,2645,'_wp_page_template','default'),(7148,2645,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have started to open a store on Alibaba to connect with orders from around the world.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"icon_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always provide a sense of security in terms of quality and progress.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#008684\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7149,2645,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(7153,2646,'_elementor_edit_mode','builder'),(7154,2646,'_elementor_template_type','wp-page'),(7155,2646,'_elementor_version','3.24.7'),(7156,2646,'_wp_page_template','default');
INSERT INTO `wp_postmeta` VALUES (7157,2646,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have started to open a store on Alibaba to connect with orders from around the world.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"icon_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"inspection-and-measurement-services|service-category\",\"machining-services|service-category\",\"material-forming-services|service-category\",\"surface-finishing-services|service-category\",\"welding-services|service-category\"],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always provide a sense of security in terms of quality and progress.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#008684\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7158,2646,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(7162,2647,'_elementor_edit_mode','builder'),(7163,2647,'_elementor_template_type','wp-page'),(7164,2647,'_elementor_version','3.24.7'),(7165,2647,'_wp_page_template','default'),(7166,2647,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have started to open a store on Alibaba to connect with orders from around the world.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"icon_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"cnc-machining-services|service-category\",\"material-forming-services|service-category\"],\"ct_animate\":\"wow fadeInUp\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always provide a sense of security in terms of quality and progress.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#008684\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7167,2647,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(7173,2648,'_elementor_edit_mode','builder'),(7174,2648,'_elementor_template_type','wp-page'),(7175,2648,'_elementor_version','3.24.7'),(7176,2648,'_wp_page_template','default'),(7177,2648,'_elementor_data','[{\"id\":\"0766e75\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"e82a045\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"layout\":\"2\",\"filter_default_title\":\"All\",\"button_text\":\"Read more\",\"ct_animate\":\"wow bounceInDown\",\"pagination_type\":\"loadmore\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"show_button\":\"\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}]'),(7181,2649,'_elementor_edit_mode','builder'),(7182,2649,'_elementor_template_type','wp-page'),(7183,2649,'_elementor_version','3.24.7'),(7184,2649,'_wp_page_template','default'),(7185,2649,'_elementor_data','[{\"id\":\"0766e75\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"e82a045\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"layout\":\"2\",\"filter_default_title\":\"All\",\"button_text\":\"Read more\",\"ct_animate\":\"wow bounceInDown\",\"pagination_type\":\"loadmore\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"show_button\":\"\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}]'),(7189,2650,'_elementor_edit_mode','builder'),(7190,2650,'_elementor_template_type','wp-page'),(7191,2650,'_elementor_version','3.24.7'),(7192,2650,'_wp_page_template','default'),(7193,2650,'_elementor_data','[{\"id\":\"0766e75\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"e82a045\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"layout\":\"2\",\"filter_default_title\":\"All\",\"button_text\":\"Read more\",\"ct_animate\":\"wow bounceInDown\",\"pagination_type\":\"loadmore\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"show_button\":\"\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}]'),(7197,2128,'_yoast_wpseo_content_score','90'),(7198,2128,'_yoast_wpseo_estimated-reading-time-minutes','1'),(7200,2651,'_elementor_edit_mode','builder'),(7201,2651,'_elementor_template_type','wp-page'),(7202,2651,'_elementor_version','3.24.7'),(7203,2651,'_wp_page_template','default'),(7204,2651,'_elementor_data','[{\"id\":\"0766e75\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"e82a045\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"layout\":\"2\",\"filter_default_title\":\"All\",\"button_text\":\"Read more\",\"ct_animate\":\"wow bounceInDown\",\"pagination_type\":\"loadmore\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"show_button\":\"\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}]'),(7207,2652,'_elementor_edit_mode','builder'),(7208,2652,'_elementor_template_type','wp-page'),(7209,2652,'_elementor_version','3.24.7'),(7210,2652,'_wp_page_template','default'),(7211,2652,'_elementor_data','[{\"id\":\"0766e75\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"e82a045\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"layout\":\"2\",\"filter_default_title\":\"All\",\"button_text\":\"Read more\",\"ct_animate\":\"wow bounceInDown\",\"pagination_type\":\"loadmore\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"show_button\":\"\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}]'),(7214,2653,'_elementor_edit_mode','builder'),(7215,2653,'_elementor_template_type','wp-page'),(7216,2653,'_elementor_version','3.24.7'),(7217,2653,'_wp_page_template','default'),(7218,2653,'_elementor_data','[{\"id\":\"0766e75\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"e82a045\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"layout\":\"2\",\"filter_default_title\":\"All\",\"button_text\":\"Read more\",\"ct_animate\":\"wow bounceInDown\",\"pagination_type\":\"loadmore\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"show_button\":\"\",\"source\":[\"cnc-machining-services|service-category\",\"material-forming-services|service-category\",\"metal-fabrication-services|service-category\",\"other-services|service-category\",\"precision-engineering-services|service-category\"],\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}]'),(7223,2654,'_wp_attached_file','2024/11/Other.jpg'),(7224,2654,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:500;s:4:\"file\";s:17:\"2024/11/Other.jpg\";s:8:\"filesize\";i:147904;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:{}}}'),(7225,2655,'_wp_attached_file','2024/11/tool-grinding.jpg'),(7226,2655,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1600;s:6:\"height\";i:640;s:4:\"file\";s:25:\"2024/11/tool-grinding.jpg\";s:8:\"filesize\";i:487811;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:{}}}'),(7227,2656,'_wp_attached_file','2024/11/sheet-metal.jpg'),(7228,2656,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:700;s:6:\"height\";i:467;s:4:\"file\";s:23:\"2024/11/sheet-metal.jpg\";s:8:\"filesize\";i:71775;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:27:\"©ake1150 - stock.adobe.com\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(7229,2657,'_wp_attached_file','2024/11/CNC-Milling.jpg'),(7230,2657,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:735;s:6:\"height\";i:400;s:4:\"file\";s:23:\"2024/11/CNC-Milling.jpg\";s:8:\"filesize\";i:53342;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:24:\"Getty Images/iStockphoto\";s:6:\"camera\";s:10:\"NIKON D610\";s:7:\"caption\";s:140:\"The abstract scene of  3-axis CNC machining centre and the G-code data cutting the injection mold part.The hi-precision CNC milling machine.\";s:17:\"created_timestamp\";s:10:\"1542931200\";s:9:\"copyright\";s:64:\"phuchit.a@gmail.com (phuchit.a@gmail.com (Photographer) - [None]\";s:12:\"focal_length\";s:2:\"85\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:103:\"The abstract scene of  3-axis CNC machining centre and the G-code data cutting the injection mold part.\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:25:{i:0;s:4:\"axis\";i:1;s:3:\"cam\";i:2;s:6:\"center\";i:3;s:6:\"centre\";i:4;s:13:\"cnc machining\";i:5;s:11:\"cnc milling\";i:6;s:3:\"cut\";i:7;s:3:\"end\";i:8;s:7:\"endmill\";i:9;s:6:\"g-code\";i:10;s:10:\"industrial\";i:11;s:5:\"tools\";i:12;s:7:\"tooling\";i:13;s:9:\"machining\";i:14;s:16:\"machining center\";i:15;s:11:\"information\";i:16;s:12:\"metalworking\";i:17;s:7:\"milling\";i:18;s:4:\"mold\";i:19;s:7:\"molding\";i:20;s:2:\"nc\";i:21;s:7:\"nc data\";i:22;s:7:\"process\";i:23;s:10:\"processing\";i:24;s:10:\"production\";}}}'),(7231,2658,'_wp_attached_file','2024/11/Bolt.webp'),(7232,2658,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:375;s:4:\"file\";s:17:\"2024/11/Bolt.webp\";s:8:\"filesize\";i:82552;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:{}}}'),(7233,2659,'_wp_attached_file','2024/11/Welding.webp'),(7234,2659,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:735;s:6:\"height\";i:469;s:4:\"file\";s:20:\"2024/11/Welding.webp\";s:8:\"filesize\";i:400770;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:{}}}'),(7235,2660,'_wp_attached_file','2024/11/Wire-Cut-EDM.webp'),(7236,2660,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:358;s:4:\"file\";s:25:\"2024/11/Wire-Cut-EDM.webp\";s:8:\"filesize\";i:28558;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:{}}}'),(7237,2661,'_wp_attached_file','2024/11/CNC-turning.webp'),(7238,2661,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:574;s:6:\"height\";i:386;s:4:\"file\";s:24:\"2024/11/CNC-turning.webp\";s:8:\"filesize\";i:24784;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:{}}}'),(7248,2663,'_elementor_edit_mode','builder'),(7249,2663,'_elementor_template_type','wp-page'),(7250,2663,'_elementor_version','3.24.7'),(7251,2663,'_wp_page_template','default'),(7252,2663,'_elementor_data','[{\"id\":\"fcff723\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"5603a87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2328,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9505c40d1bb3a2edfba278.jpg\"},{\"id\":2329,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/38db14d3cb6d72332b7c76.jpg\"},{\"id\":2330,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b5ed1be5c45b7d05244a93.jpg\"},{\"id\":2331,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/844e93464cf8f5a6ace9103.jpg\"},{\"id\":2332,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/795d6c55b3eb0ab553fa94.jpg\"},{\"id\":2333,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/a2e5a7ee7850c10e984190.jpg\"},{\"id\":2337,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1d260d2fd2916bcf328099.jpg\"},{\"id\":2338,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/db3e8e365188e8d6b199119.jpg\"},{\"id\":2340,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/d037ea3f35818cdfd590114.jpg\"},{\"id\":2343,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/0497279ff821417f1830122.jpg\"},{\"id\":2344,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4185a68d7933c06d9922111.jpg\"},{\"id\":2345,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2664d66209dcb082e9cd117.jpg\"},{\"id\":2346,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/995b95524aecf3b2aafd120.jpg\"},{\"id\":2348,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/96e17fe9a05719094046105.jpg\"},{\"id\":2349,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/53d3a1db7e65c73b9e74107.jpg\"},{\"id\":2350,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/46f3befa6144d81a8155123.jpg\"},{\"id\":2351,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9d24a12c7e92c7cc9e83108.jpg\"},{\"id\":2352,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9a4b7643a9fd10a349ec115.jpg\"},{\"id\":2353,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/5a19961f49a1f0ffa9b0118.jpg\"},{\"id\":2355,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/0b32f03b2f8596dbcf94112.jpg\"},{\"id\":2357,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b1c8bfc1607fd921806e129.jpg\"},{\"id\":2358,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/33ccc7ca1874a12af865132.jpg\"},{\"id\":2360,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2c7e6676b9c8009659d9126.jpg\"},{\"id\":2368,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4af3fbfb24459d1bc45484.jpg\"},{\"id\":2366,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/da27722fad9114cf4d80121.jpg\"},{\"id\":2365,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b9007d06a2b81be642a9109.jpg\"},{\"id\":2364,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/97509a5945e7fcb9a5f6113.jpg\"},{\"id\":2369,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/7cde64d6bb6802365b79102.jpg\"},{\"id\":2370,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/7ef794f14b4ff211ab5e91.jpg\"},{\"id\":2373,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/41a76fafb011094f500096.jpg\"},{\"id\":2374,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/284ee1483ef687a8dee795.jpg\"},{\"id\":2380,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/57c577cda873112d486282.jpg\"},{\"id\":2379,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/42f158f887463e18675775.jpg\"},{\"id\":2378,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/dfb58bbd5403ed5db41286.jpg\"},{\"id\":2377,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/ccd73edee160583e017187.jpg\"},{\"id\":2381,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/91a553a38c1d35436c0c83.jpg\"},{\"id\":2384,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1289df8f0031b96fe02079.jpg\"},{\"id\":2386,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/a4888f80503ee960b02f74.jpg\"},{\"id\":2392,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/e31fda1705a9bcf7e5b870.jpg\"},{\"id\":2391,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c20f0a09d5b76ce935a667.jpg\"},{\"id\":2390,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/28706f78b0c6099850d768.jpg\"},{\"id\":2389,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/79e03ae8e5565c08054772.jpg\"},{\"id\":2387,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/07c54ece9170282e716171.jpg\"},{\"id\":2388,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/8d79cb7114cfad91f4de73.jpg\"},{\"id\":2341,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/49290422db9c62c23b8d125.jpg\"},{\"id\":2356,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/f7f4c2fc1d42a41cfd53131.jpg\"},{\"id\":2362,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/62fb72f0ad4e14104d5f127.jpg\"},{\"id\":2363,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/795df95426ea9fb4c6fb116.jpg\"},{\"id\":2367,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1ab1f4b72b099257cb1897.jpg\"},{\"id\":2376,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c546934e4cf0f5aeace1100.jpg\"},{\"id\":2385,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4480b4896b37d2698b2677.jpg\"},{\"id\":2339,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b44c1144cefa77a42eeb106.jpg\"},{\"id\":2335,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/56c9f8c2277c9e22c76d98.jpg\"},{\"id\":2336,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4dc6cecf1171a82ff160101.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}]'),(7256,2664,'_elementor_edit_mode','builder'),(7257,2664,'_elementor_template_type','wp-page'),(7258,2664,'_elementor_version','3.24.7'),(7259,2664,'_wp_page_template','default'),(7260,2664,'_elementor_data','[{\"id\":\"fcff723\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"5603a87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2328,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9505c40d1bb3a2edfba278.jpg\"},{\"id\":2329,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/38db14d3cb6d72332b7c76.jpg\"},{\"id\":2330,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b5ed1be5c45b7d05244a93.jpg\"},{\"id\":2331,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/844e93464cf8f5a6ace9103.jpg\"},{\"id\":2332,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/795d6c55b3eb0ab553fa94.jpg\"},{\"id\":2333,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/a2e5a7ee7850c10e984190.jpg\"},{\"id\":2337,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1d260d2fd2916bcf328099.jpg\"},{\"id\":2338,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/db3e8e365188e8d6b199119.jpg\"},{\"id\":2340,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/d037ea3f35818cdfd590114.jpg\"},{\"id\":2343,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/0497279ff821417f1830122.jpg\"},{\"id\":2344,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4185a68d7933c06d9922111.jpg\"},{\"id\":2345,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2664d66209dcb082e9cd117.jpg\"},{\"id\":2346,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/995b95524aecf3b2aafd120.jpg\"},{\"id\":2348,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/96e17fe9a05719094046105.jpg\"},{\"id\":2349,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/53d3a1db7e65c73b9e74107.jpg\"},{\"id\":2350,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/46f3befa6144d81a8155123.jpg\"},{\"id\":2351,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9d24a12c7e92c7cc9e83108.jpg\"},{\"id\":2352,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9a4b7643a9fd10a349ec115.jpg\"},{\"id\":2353,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/5a19961f49a1f0ffa9b0118.jpg\"},{\"id\":2355,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/0b32f03b2f8596dbcf94112.jpg\"},{\"id\":2357,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b1c8bfc1607fd921806e129.jpg\"},{\"id\":2358,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/33ccc7ca1874a12af865132.jpg\"},{\"id\":2360,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2c7e6676b9c8009659d9126.jpg\"},{\"id\":2368,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4af3fbfb24459d1bc45484.jpg\"},{\"id\":2366,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/da27722fad9114cf4d80121.jpg\"},{\"id\":2365,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b9007d06a2b81be642a9109.jpg\"},{\"id\":2364,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/97509a5945e7fcb9a5f6113.jpg\"},{\"id\":2369,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/7cde64d6bb6802365b79102.jpg\"},{\"id\":2370,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/7ef794f14b4ff211ab5e91.jpg\"},{\"id\":2373,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/41a76fafb011094f500096.jpg\"},{\"id\":2374,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/284ee1483ef687a8dee795.jpg\"},{\"id\":2380,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/57c577cda873112d486282.jpg\"},{\"id\":2379,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/42f158f887463e18675775.jpg\"},{\"id\":2378,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/dfb58bbd5403ed5db41286.jpg\"},{\"id\":2377,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/ccd73edee160583e017187.jpg\"},{\"id\":2381,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/91a553a38c1d35436c0c83.jpg\"},{\"id\":2384,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1289df8f0031b96fe02079.jpg\"},{\"id\":2386,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/a4888f80503ee960b02f74.jpg\"},{\"id\":2392,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/e31fda1705a9bcf7e5b870.jpg\"},{\"id\":2391,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c20f0a09d5b76ce935a667.jpg\"},{\"id\":2390,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/28706f78b0c6099850d768.jpg\"},{\"id\":2389,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/79e03ae8e5565c08054772.jpg\"},{\"id\":2387,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/07c54ece9170282e716171.jpg\"},{\"id\":2388,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/8d79cb7114cfad91f4de73.jpg\"},{\"id\":2341,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/49290422db9c62c23b8d125.jpg\"},{\"id\":2356,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/f7f4c2fc1d42a41cfd53131.jpg\"},{\"id\":2362,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/62fb72f0ad4e14104d5f127.jpg\"},{\"id\":2363,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/795df95426ea9fb4c6fb116.jpg\"},{\"id\":2367,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1ab1f4b72b099257cb1897.jpg\"},{\"id\":2376,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c546934e4cf0f5aeace1100.jpg\"},{\"id\":2385,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4480b4896b37d2698b2677.jpg\"},{\"id\":2339,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b44c1144cefa77a42eeb106.jpg\"},{\"id\":2335,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/56c9f8c2277c9e22c76d98.jpg\"},{\"id\":2336,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4dc6cecf1171a82ff160101.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}]'),(7264,2665,'_elementor_edit_mode','builder'),(7265,2665,'_elementor_template_type','wp-page'),(7266,2665,'_elementor_version','3.24.7'),(7267,2665,'_wp_page_template','default'),(7268,2665,'_elementor_data','[{\"id\":\"fcff723\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"dee41b0\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"Our strength lies in mass production of aluminum and steel. We excel in innovation and deliver high-value products to our customers.\",\"title_tag\":\"h6\",\"sub_title\":\"Products\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"5603a87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2328,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9505c40d1bb3a2edfba278.jpg\"},{\"id\":2329,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/38db14d3cb6d72332b7c76.jpg\"},{\"id\":2330,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b5ed1be5c45b7d05244a93.jpg\"},{\"id\":2331,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/844e93464cf8f5a6ace9103.jpg\"},{\"id\":2332,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/795d6c55b3eb0ab553fa94.jpg\"},{\"id\":2333,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/a2e5a7ee7850c10e984190.jpg\"},{\"id\":2337,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1d260d2fd2916bcf328099.jpg\"},{\"id\":2338,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/db3e8e365188e8d6b199119.jpg\"},{\"id\":2340,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/d037ea3f35818cdfd590114.jpg\"},{\"id\":2343,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/0497279ff821417f1830122.jpg\"},{\"id\":2344,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4185a68d7933c06d9922111.jpg\"},{\"id\":2345,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2664d66209dcb082e9cd117.jpg\"},{\"id\":2346,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/995b95524aecf3b2aafd120.jpg\"},{\"id\":2348,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/96e17fe9a05719094046105.jpg\"},{\"id\":2349,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/53d3a1db7e65c73b9e74107.jpg\"},{\"id\":2350,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/46f3befa6144d81a8155123.jpg\"},{\"id\":2351,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9d24a12c7e92c7cc9e83108.jpg\"},{\"id\":2352,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9a4b7643a9fd10a349ec115.jpg\"},{\"id\":2353,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/5a19961f49a1f0ffa9b0118.jpg\"},{\"id\":2355,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/0b32f03b2f8596dbcf94112.jpg\"},{\"id\":2357,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b1c8bfc1607fd921806e129.jpg\"},{\"id\":2358,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/33ccc7ca1874a12af865132.jpg\"},{\"id\":2360,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2c7e6676b9c8009659d9126.jpg\"},{\"id\":2368,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4af3fbfb24459d1bc45484.jpg\"},{\"id\":2366,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/da27722fad9114cf4d80121.jpg\"},{\"id\":2365,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b9007d06a2b81be642a9109.jpg\"},{\"id\":2364,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/97509a5945e7fcb9a5f6113.jpg\"},{\"id\":2369,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/7cde64d6bb6802365b79102.jpg\"},{\"id\":2370,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/7ef794f14b4ff211ab5e91.jpg\"},{\"id\":2373,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/41a76fafb011094f500096.jpg\"},{\"id\":2374,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/284ee1483ef687a8dee795.jpg\"},{\"id\":2380,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/57c577cda873112d486282.jpg\"},{\"id\":2379,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/42f158f887463e18675775.jpg\"},{\"id\":2378,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/dfb58bbd5403ed5db41286.jpg\"},{\"id\":2377,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/ccd73edee160583e017187.jpg\"},{\"id\":2381,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/91a553a38c1d35436c0c83.jpg\"},{\"id\":2384,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1289df8f0031b96fe02079.jpg\"},{\"id\":2386,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/a4888f80503ee960b02f74.jpg\"},{\"id\":2392,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/e31fda1705a9bcf7e5b870.jpg\"},{\"id\":2391,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c20f0a09d5b76ce935a667.jpg\"},{\"id\":2390,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/28706f78b0c6099850d768.jpg\"},{\"id\":2389,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/79e03ae8e5565c08054772.jpg\"},{\"id\":2387,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/07c54ece9170282e716171.jpg\"},{\"id\":2388,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/8d79cb7114cfad91f4de73.jpg\"},{\"id\":2341,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/49290422db9c62c23b8d125.jpg\"},{\"id\":2356,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/f7f4c2fc1d42a41cfd53131.jpg\"},{\"id\":2362,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/62fb72f0ad4e14104d5f127.jpg\"},{\"id\":2363,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/795df95426ea9fb4c6fb116.jpg\"},{\"id\":2367,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1ab1f4b72b099257cb1897.jpg\"},{\"id\":2376,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c546934e4cf0f5aeace1100.jpg\"},{\"id\":2385,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4480b4896b37d2698b2677.jpg\"},{\"id\":2339,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b44c1144cefa77a42eeb106.jpg\"},{\"id\":2335,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/56c9f8c2277c9e22c76d98.jpg\"},{\"id\":2336,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4dc6cecf1171a82ff160101.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false},{\"id\":\"f6994ab\",\"elType\":\"container\",\"settings\":[],\"elements\":[],\"isInner\":false}]'),(7272,2126,'_yoast_wpseo_content_score','90'),(7273,2126,'_yoast_wpseo_estimated-reading-time-minutes','15'),(7282,2667,'_wp_attached_file','2024/11/z6074652723212_8770f028ff646f014f1e9f6efe34962e.jpg'),(7283,2667,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:59:\"2024/11/z6074652723212_8770f028ff646f014f1e9f6efe34962e.jpg\";s:8:\"filesize\";i:609283;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:{}}}'),(7284,2668,'_wp_attached_file','2024/11/z6074642763587_21ecce5d4accf371358eb4cbd73c800d.jpg'),(7285,2668,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:59:\"2024/11/z6074642763587_21ecce5d4accf371358eb4cbd73c800d.jpg\";s:8:\"filesize\";i:965285;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:{}}}'),(7286,2669,'_wp_attached_file','2024/11/z6074642849848_10b5670512096e654748e57b24a04afe.jpg'),(7287,2669,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:59:\"2024/11/z6074642849848_10b5670512096e654748e57b24a04afe.jpg\";s:8:\"filesize\";i:500961;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:{}}}'),(7288,2670,'_wp_attached_file','2024/11/z6074640758883_648a042f4b640d0f57a4441dd2109570.jpg'),(7289,2670,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:59:\"2024/11/z6074640758883_648a042f4b640d0f57a4441dd2109570.jpg\";s:8:\"filesize\";i:715390;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:{}}}'),(7290,2671,'_wp_attached_file','2024/11/z6074640849237_e7699b1bc6e38e0bf65eb3bca28ae8ca.jpg'),(7291,2671,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1441;s:4:\"file\";s:59:\"2024/11/z6074640849237_e7699b1bc6e38e0bf65eb3bca28ae8ca.jpg\";s:8:\"filesize\";i:500422;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:{}}}'),(7292,2672,'_wp_attached_file','2024/11/z6074640939718_b0ff6acad14b2ab5ed158171c76833f9.jpg'),(7293,2672,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1441;s:6:\"height\";i:2560;s:4:\"file\";s:59:\"2024/11/z6074640939718_b0ff6acad14b2ab5ed158171c76833f9.jpg\";s:8:\"filesize\";i:892709;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:{}}}'),(7294,2673,'_wp_attached_file','2024/11/z6074641052070_9efbc1586cb5e95cc54b8421a63f380e.jpg'),(7295,2673,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1441;s:4:\"file\";s:59:\"2024/11/z6074641052070_9efbc1586cb5e95cc54b8421a63f380e.jpg\";s:8:\"filesize\";i:833799;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:{}}}'),(7296,2674,'_wp_attached_file','2024/11/z6074641145273_7be5df3e1779aa04e890e40cc243cdee.jpg'),(7297,2674,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1441;s:4:\"file\";s:59:\"2024/11/z6074641145273_7be5df3e1779aa04e890e40cc243cdee.jpg\";s:8:\"filesize\";i:751602;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:{}}}'),(7298,2675,'_wp_attached_file','2024/11/z6074640653285_5a87adf57ce0c4186fe4fb1579e357b5.jpg'),(7299,2675,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:59:\"2024/11/z6074640653285_5a87adf57ce0c4186fe4fb1579e357b5.jpg\";s:8:\"filesize\";i:551336;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:{}}}'),(7300,2676,'_wp_attached_file','2024/11/z6074641173826_45ae737f70dfb2d365abb397f139d708.jpg'),(7301,2676,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:59:\"2024/11/z6074641173826_45ae737f70dfb2d365abb397f139d708.jpg\";s:8:\"filesize\";i:662023;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:{}}}'),(7302,2677,'_wp_attached_file','2024/11/z6074641293113_b4b186c67b6e7829dd2a91d730cf9aa7.jpg'),(7303,2677,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:59:\"2024/11/z6074641293113_b4b186c67b6e7829dd2a91d730cf9aa7.jpg\";s:8:\"filesize\";i:861164;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:{}}}'),(7304,2678,'_wp_attached_file','2024/11/z6074649965196_82fd76ddbbf38d64dae8af11b21537b9.jpg'),(7305,2678,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:59:\"2024/11/z6074649965196_82fd76ddbbf38d64dae8af11b21537b9.jpg\";s:8:\"filesize\";i:517014;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:{}}}'),(7306,2679,'_wp_attached_file','2024/11/z6069736575578_e0a4f5473843e58ee1a79989f367ada9.jpg'),(7307,2679,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:59:\"2024/11/z6069736575578_e0a4f5473843e58ee1a79989f367ada9.jpg\";s:8:\"filesize\";i:593428;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:{}}}'),(7308,2680,'_wp_attached_file','2024/11/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg'),(7309,2680,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:59:\"2024/11/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\";s:8:\"filesize\";i:915003;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:{}}}'),(7310,2681,'_wp_attached_file','2024/11/z6069735219679_91a6f6993146906f8465b43ddd0c2b3c.jpg'),(7311,2681,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1153;s:6:\"height\";i:2560;s:4:\"file\";s:59:\"2024/11/z6069735219679_91a6f6993146906f8465b43ddd0c2b3c.jpg\";s:8:\"filesize\";i:442524;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:{}}}'),(7312,2682,'_wp_attached_file','2024/11/z6069736761454_b98d468b133ac59ebbf5e62b693462a4.jpg'),(7313,2682,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:59:\"2024/11/z6069736761454_b98d468b133ac59ebbf5e62b693462a4.jpg\";s:8:\"filesize\";i:684580;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:{}}}'),(7314,2683,'_wp_attached_file','2024/11/z6069736784335_f93bc7820cfdc0b015c8224b9a1ace10.jpg'),(7315,2683,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:59:\"2024/11/z6069736784335_f93bc7820cfdc0b015c8224b9a1ace10.jpg\";s:8:\"filesize\";i:608105;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:{}}}'),(7316,2684,'_wp_attached_file','2024/11/z6069219941349_b0954e44a25a7d1543eb33ceeae20efb.jpg'),(7317,2684,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:59:\"2024/11/z6069219941349_b0954e44a25a7d1543eb33ceeae20efb.jpg\";s:8:\"filesize\";i:402081;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(7318,2685,'_wp_attached_file','2024/11/z6069735343201_d2922aa1680c57bfe2da9aaba121caa6.jpg'),(7319,2685,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:59:\"2024/11/z6069735343201_d2922aa1680c57bfe2da9aaba121caa6.jpg\";s:8:\"filesize\";i:958119;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:{}}}'),(7320,2686,'_wp_attached_file','2024/11/z6069735441885_088dd417b659783376adfeb006d18180.jpg'),(7321,2686,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:59:\"2024/11/z6069735441885_088dd417b659783376adfeb006d18180.jpg\";s:8:\"filesize\";i:433735;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:{}}}'),(7322,2687,'_wp_attached_file','2024/11/z6069735598101_0fdd0a773a22d6af92f694d7866b2a5a.jpg'),(7323,2687,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:59:\"2024/11/z6069735598101_0fdd0a773a22d6af92f694d7866b2a5a.jpg\";s:8:\"filesize\";i:505738;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:{}}}'),(7324,2688,'_wp_attached_file','2024/11/z6069735634632_da3df11cc1dfa978c5b70f2e44404712.jpg'),(7325,2688,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:59:\"2024/11/z6069735634632_da3df11cc1dfa978c5b70f2e44404712.jpg\";s:8:\"filesize\";i:469443;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:{}}}'),(7326,2689,'_wp_attached_file','2024/11/z6069735693987_bf7347f533ec750a2c4f9df1763b8881.jpg'),(7327,2689,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1153;s:6:\"height\";i:2065;s:4:\"file\";s:59:\"2024/11/z6069735693987_bf7347f533ec750a2c4f9df1763b8881.jpg\";s:8:\"filesize\";i:424173;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:{}}}'),(7328,2690,'_wp_attached_file','2024/11/z6069735835496_a71ac50ddac36867fca21cee8c47fe0a.jpg'),(7329,2690,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:59:\"2024/11/z6069735835496_a71ac50ddac36867fca21cee8c47fe0a.jpg\";s:8:\"filesize\";i:567571;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:{}}}'),(7330,2691,'_wp_attached_file','2024/11/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg'),(7331,2691,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:59:\"2024/11/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\";s:8:\"filesize\";i:502776;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:{}}}'),(7332,2692,'_wp_attached_file','2024/11/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg'),(7333,2692,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:59:\"2024/11/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\";s:8:\"filesize\";i:549264;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:{}}}'),(7334,2693,'_wp_attached_file','2024/11/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg'),(7335,2693,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:59:\"2024/11/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\";s:8:\"filesize\";i:749395;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:{}}}'),(7336,2694,'_wp_attached_file','2024/11/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg'),(7337,2694,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:59:\"2024/11/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\";s:8:\"filesize\";i:649145;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:{}}}'),(7338,2695,'_wp_attached_file','2024/11/z6069736324472_06f1ed1a1be2c3a5923070aff7d5e10e.jpg'),(7339,2695,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:59:\"2024/11/z6069736324472_06f1ed1a1be2c3a5923070aff7d5e10e.jpg\";s:8:\"filesize\";i:707393;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:{}}}'),(7340,2696,'_wp_attached_file','2024/11/z6069736391051_4c3cae16a8ff4f216b8d53673772dd07.jpg'),(7341,2696,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:59:\"2024/11/z6069736391051_4c3cae16a8ff4f216b8d53673772dd07.jpg\";s:8:\"filesize\";i:715608;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:{}}}'),(7342,2697,'_wp_attached_file','2024/11/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg'),(7343,2697,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1153;s:6:\"height\";i:2560;s:4:\"file\";s:59:\"2024/11/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\";s:8:\"filesize\";i:477721;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:{}}}'),(7344,2698,'_wp_attached_file','2024/11/z6069219949175_e2a105bcf223c832d6caab2d03fe0413.jpg'),(7345,2698,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:59:\"2024/11/z6069219949175_e2a105bcf223c832d6caab2d03fe0413.jpg\";s:8:\"filesize\";i:405549;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(7346,2699,'_wp_attached_file','2024/11/z5799313165266_a15253e3a3e0a2c978ed667994b8f415.jpg'),(7347,2699,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1276;s:6:\"height\";i:956;s:4:\"file\";s:59:\"2024/11/z5799313165266_a15253e3a3e0a2c978ed667994b8f415.jpg\";s:8:\"filesize\";i:298281;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(7348,2700,'_wp_attached_file','2024/11/z5799321604115_493f8355869dd3ca82a96e86e2982bfe.jpg'),(7349,2700,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:59:\"2024/11/z5799321604115_493f8355869dd3ca82a96e86e2982bfe.jpg\";s:8:\"filesize\";i:320706;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(7350,2701,'_wp_attached_file','2024/11/z5799321696024_733a85bf835aea0a8afc8b269d149700.jpg'),(7351,2701,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:59:\"2024/11/z5799321696024_733a85bf835aea0a8afc8b269d149700.jpg\";s:8:\"filesize\";i:275398;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(7352,2702,'_wp_attached_file','2024/11/z5799313179567_c3d6675a03762fb94376dc96f05389bd.jpg'),(7353,2702,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1274;s:6:\"height\";i:730;s:4:\"file\";s:59:\"2024/11/z5799313179567_c3d6675a03762fb94376dc96f05389bd.jpg\";s:8:\"filesize\";i:281675;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(7354,2703,'_wp_attached_file','2024/11/z5799313273454_ad716befaf43d2df147629d95262c520.jpg'),(7355,2703,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1276;s:6:\"height\";i:956;s:4:\"file\";s:59:\"2024/11/z5799313273454_ad716befaf43d2df147629d95262c520.jpg\";s:8:\"filesize\";i:308228;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(7356,2704,'_wp_attached_file','2024/11/z5952363716249_96b2fea5fe33f4a24d8251c8aaf225e1.jpg'),(7357,2704,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1284;s:6:\"height\";i:963;s:4:\"file\";s:59:\"2024/11/z5952363716249_96b2fea5fe33f4a24d8251c8aaf225e1.jpg\";s:8:\"filesize\";i:251879;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(7358,2705,'_wp_attached_file','2024/11/z5952363723771_9eec4d51fc1723fb669f980084e20a61.jpg'),(7359,2705,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1284;s:6:\"height\";i:963;s:4:\"file\";s:59:\"2024/11/z5952363723771_9eec4d51fc1723fb669f980084e20a61.jpg\";s:8:\"filesize\";i:226171;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(7360,2706,'_wp_attached_file','2024/11/z5952363723892_5b7200026202a1efe96596109fad6857.jpg'),(7361,2706,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:59:\"2024/11/z5952363723892_5b7200026202a1efe96596109fad6857.jpg\";s:8:\"filesize\";i:481728;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(7362,2707,'_wp_attached_file','2024/11/z5952363735361_9355fa7eb991123dc995dfaa2b4cf754.jpg'),(7363,2707,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:59:\"2024/11/z5952363735361_9355fa7eb991123dc995dfaa2b4cf754.jpg\";s:8:\"filesize\";i:357333;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(7364,2708,'_wp_attached_file','2024/11/z5952363746762_6241ac4c6625581b5db9b24a1ee05f68-1.jpg'),(7365,2708,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:61:\"2024/11/z5952363746762_6241ac4c6625581b5db9b24a1ee05f68-1.jpg\";s:8:\"filesize\";i:374734;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(7366,2709,'_wp_attached_file','2024/11/z5952363741409_d72124d9091280f6529a27a919be13c9.jpg'),(7367,2709,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1284;s:6:\"height\";i:963;s:4:\"file\";s:59:\"2024/11/z5952363741409_d72124d9091280f6529a27a919be13c9.jpg\";s:8:\"filesize\";i:263097;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(7368,2710,'_wp_attached_file','2024/11/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg'),(7369,2710,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:361;s:6:\"height\";i:326;s:4:\"file\";s:59:\"2024/11/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\";s:8:\"filesize\";i:8614;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:{}}}'),(7370,2711,'_wp_attached_file','2024/11/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg'),(7371,2711,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:59:\"2024/11/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\";s:8:\"filesize\";i:16590;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:{}}}'),(7372,2712,'_wp_attached_file','2024/11/z6069735059162_053b364ab761dc5a44279faf64395324.jpg'),(7373,2712,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:598;s:6:\"height\";i:1280;s:4:\"file\";s:59:\"2024/11/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\";s:8:\"filesize\";i:56125;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:{}}}'),(7374,2713,'_wp_attached_file','2024/11/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg'),(7375,2713,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:225;s:6:\"height\";i:225;s:4:\"file\";s:59:\"2024/11/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\";s:8:\"filesize\";i:3629;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:{}}}'),(7376,2714,'_wp_attached_file','2024/11/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg'),(7377,2714,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:512;s:6:\"height\";i:440;s:4:\"file\";s:59:\"2024/11/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\";s:8:\"filesize\";i:19163;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:{}}}'),(7378,2715,'_wp_attached_file','2024/11/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg'),(7379,2715,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:684;s:6:\"height\";i:584;s:4:\"file\";s:59:\"2024/11/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\";s:8:\"filesize\";i:48878;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:{}}}'),(7380,2716,'_wp_attached_file','2024/11/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg'),(7381,2716,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:59:\"2024/11/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\";s:8:\"filesize\";i:141451;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:{}}}'),(7382,2717,'_wp_attached_file','2024/11/z6028111300979_0052716b462843a5d1968f7870c72fd8.jpg'),(7383,2717,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:59:\"2024/11/z6028111300979_0052716b462843a5d1968f7870c72fd8.jpg\";s:8:\"filesize\";i:812141;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:{}}}'),(7384,2718,'_wp_attached_file','2024/11/z6028112000000_2440d5ae36f700840d0f0b583bbcbdfa.jpg'),(7385,2718,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:59:\"2024/11/z6028112000000_2440d5ae36f700840d0f0b583bbcbdfa.jpg\";s:8:\"filesize\";i:920138;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:{}}}'),(7386,2719,'_wp_attached_file','2024/11/z6028112670024_1806afd7d70bbbc523d63b0c61e9130b.jpg'),(7387,2719,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:59:\"2024/11/z6028112670024_1806afd7d70bbbc523d63b0c61e9130b.jpg\";s:8:\"filesize\";i:1004643;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:{}}}'),(7388,2720,'_wp_attached_file','2024/11/z6028113287912_e1aa8bdb9fe72b1fe22887ceaafc0dbd.jpg'),(7389,2720,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:59:\"2024/11/z6028113287912_e1aa8bdb9fe72b1fe22887ceaafc0dbd.jpg\";s:8:\"filesize\";i:829921;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:{}}}'),(7390,2721,'_wp_attached_file','2024/11/z6028113894704_3504e4bf093ad9f9d635c8bfa2aaaef6.jpg'),(7391,2721,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:59:\"2024/11/z6028113894704_3504e4bf093ad9f9d635c8bfa2aaaef6.jpg\";s:8:\"filesize\";i:624903;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:{}}}'),(7392,2722,'_wp_attached_file','2024/11/z6028114767739_d014b10da5088bc7d3675a6d00e77d33.jpg'),(7393,2722,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2568;s:6:\"height\";i:1926;s:4:\"file\";s:59:\"2024/11/z6028114767739_d014b10da5088bc7d3675a6d00e77d33.jpg\";s:8:\"filesize\";i:789361;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:{}}}'),(7394,2723,'_wp_attached_file','2024/11/z5799321434561_6d2cb75edba82832e0cbd90673857bd3.jpg'),(7395,2723,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:59:\"2024/11/z5799321434561_6d2cb75edba82832e0cbd90673857bd3.jpg\";s:8:\"filesize\";i:487718;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(7396,2724,'_wp_attached_file','2024/11/z5799321448088_6e6944c3ceb335897e2b4f4ad20975b7.jpg'),(7397,2724,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:59:\"2024/11/z5799321448088_6e6944c3ceb335897e2b4f4ad20975b7.jpg\";s:8:\"filesize\";i:453152;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(7398,2725,'_wp_attached_file','2024/11/z5799321548557_1a5e69a89ca37953e0c04c88e529d951.jpg'),(7399,2725,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:59:\"2024/11/z5799321548557_1a5e69a89ca37953e0c04c88e529d951.jpg\";s:8:\"filesize\";i:184181;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(7400,2726,'_wp_attached_file','2024/11/z6028109630704_29a82df97ea4ea7c37859f9667154da1.jpg'),(7401,2726,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:59:\"2024/11/z6028109630704_29a82df97ea4ea7c37859f9667154da1.jpg\";s:8:\"filesize\";i:931887;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:{}}}'),(7402,2727,'_wp_attached_file','2024/11/z6028109675984_511bb58690a73ab9cc1adcd146ca46f2.jpg'),(7403,2727,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:59:\"2024/11/z6028109675984_511bb58690a73ab9cc1adcd146ca46f2.jpg\";s:8:\"filesize\";i:1194721;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:{}}}'),(7404,2728,'_wp_attached_file','2024/11/z6028110631415_9bd375451b2242776c3fa47a5e91f3e1.jpg'),(7405,2728,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:59:\"2024/11/z6028110631415_9bd375451b2242776c3fa47a5e91f3e1.jpg\";s:8:\"filesize\";i:546756;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:{}}}'),(7406,2729,'_wp_attached_file','2024/11/z6028111167101_685de2e5395bbf8d97e4d2f8aa87fee3.jpg'),(7407,2729,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:59:\"2024/11/z6028111167101_685de2e5395bbf8d97e4d2f8aa87fee3.jpg\";s:8:\"filesize\";i:740854;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:{}}}'),(7408,2730,'_wp_attached_file','2024/11/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg'),(7409,2730,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:59:\"2024/11/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\";s:8:\"filesize\";i:696354;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:{}}}'),(7410,2731,'_wp_attached_file','2024/11/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg'),(7411,2731,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:59:\"2024/11/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\";s:8:\"filesize\";i:963349;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:{}}}'),(7412,2732,'_wp_attached_file','2024/11/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg'),(7413,2732,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:59:\"2024/11/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\";s:8:\"filesize\";i:119516;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:{}}}'),(7414,2733,'_wp_attached_file','2024/11/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg'),(7415,2733,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:59:\"2024/11/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\";s:8:\"filesize\";i:421726;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(7416,2734,'_wp_attached_file','2024/11/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg'),(7417,2734,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:59:\"2024/11/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\";s:8:\"filesize\";i:801873;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:{}}}'),(7419,2735,'_elementor_edit_mode','builder'),(7420,2735,'_elementor_template_type','wp-page'),(7421,2735,'_elementor_version','3.24.7'),(7422,2735,'_wp_page_template','default'),(7423,2735,'_elementor_data','[{\"id\":\"fcff723\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"dee41b0\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"Our strength lies in mass production of aluminum and steel. We excel in innovation and deliver high-value products to our customers.\",\"title_tag\":\"h6\",\"sub_title\":\"Products\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"5603a87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2328,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9505c40d1bb3a2edfba278.jpg\"},{\"id\":2329,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/38db14d3cb6d72332b7c76.jpg\"},{\"id\":2330,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b5ed1be5c45b7d05244a93.jpg\"},{\"id\":2331,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/844e93464cf8f5a6ace9103.jpg\"},{\"id\":2332,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/795d6c55b3eb0ab553fa94.jpg\"},{\"id\":2333,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/a2e5a7ee7850c10e984190.jpg\"},{\"id\":2337,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1d260d2fd2916bcf328099.jpg\"},{\"id\":2338,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/db3e8e365188e8d6b199119.jpg\"},{\"id\":2340,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/d037ea3f35818cdfd590114.jpg\"},{\"id\":2343,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/0497279ff821417f1830122.jpg\"},{\"id\":2344,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4185a68d7933c06d9922111.jpg\"},{\"id\":2345,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2664d66209dcb082e9cd117.jpg\"},{\"id\":2346,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/995b95524aecf3b2aafd120.jpg\"},{\"id\":2348,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/96e17fe9a05719094046105.jpg\"},{\"id\":2349,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/53d3a1db7e65c73b9e74107.jpg\"},{\"id\":2350,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/46f3befa6144d81a8155123.jpg\"},{\"id\":2351,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9d24a12c7e92c7cc9e83108.jpg\"},{\"id\":2352,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9a4b7643a9fd10a349ec115.jpg\"},{\"id\":2353,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/5a19961f49a1f0ffa9b0118.jpg\"},{\"id\":2355,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/0b32f03b2f8596dbcf94112.jpg\"},{\"id\":2357,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b1c8bfc1607fd921806e129.jpg\"},{\"id\":2358,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/33ccc7ca1874a12af865132.jpg\"},{\"id\":2360,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2c7e6676b9c8009659d9126.jpg\"},{\"id\":2368,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4af3fbfb24459d1bc45484.jpg\"},{\"id\":2366,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/da27722fad9114cf4d80121.jpg\"},{\"id\":2365,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b9007d06a2b81be642a9109.jpg\"},{\"id\":2364,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/97509a5945e7fcb9a5f6113.jpg\"},{\"id\":2369,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/7cde64d6bb6802365b79102.jpg\"},{\"id\":2370,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/7ef794f14b4ff211ab5e91.jpg\"},{\"id\":2373,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/41a76fafb011094f500096.jpg\"},{\"id\":2374,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/284ee1483ef687a8dee795.jpg\"},{\"id\":2380,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/57c577cda873112d486282.jpg\"},{\"id\":2379,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/42f158f887463e18675775.jpg\"},{\"id\":2378,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/dfb58bbd5403ed5db41286.jpg\"},{\"id\":2377,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/ccd73edee160583e017187.jpg\"},{\"id\":2381,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/91a553a38c1d35436c0c83.jpg\"},{\"id\":2384,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1289df8f0031b96fe02079.jpg\"},{\"id\":2386,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/a4888f80503ee960b02f74.jpg\"},{\"id\":2392,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/e31fda1705a9bcf7e5b870.jpg\"},{\"id\":2391,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c20f0a09d5b76ce935a667.jpg\"},{\"id\":2390,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/28706f78b0c6099850d768.jpg\"},{\"id\":2389,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/79e03ae8e5565c08054772.jpg\"},{\"id\":2387,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/07c54ece9170282e716171.jpg\"},{\"id\":2388,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/8d79cb7114cfad91f4de73.jpg\"},{\"id\":2341,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/49290422db9c62c23b8d125.jpg\"},{\"id\":2356,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/f7f4c2fc1d42a41cfd53131.jpg\"},{\"id\":2362,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/62fb72f0ad4e14104d5f127.jpg\"},{\"id\":2363,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/795df95426ea9fb4c6fb116.jpg\"},{\"id\":2367,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1ab1f4b72b099257cb1897.jpg\"},{\"id\":2376,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c546934e4cf0f5aeace1100.jpg\"},{\"id\":2385,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4480b4896b37d2698b2677.jpg\"},{\"id\":2339,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b44c1144cefa77a42eeb106.jpg\"},{\"id\":2335,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/56c9f8c2277c9e22c76d98.jpg\"},{\"id\":2336,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4dc6cecf1171a82ff160101.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false},{\"id\":\"f6994ab\",\"elType\":\"container\",\"settings\":[],\"elements\":[],\"isInner\":false}]'),(7426,2736,'_elementor_edit_mode','builder'),(7427,2736,'_elementor_template_type','wp-page'),(7428,2736,'_elementor_version','3.24.7'),(7429,2736,'_wp_page_template','default'),(7430,2736,'_elementor_data','[{\"id\":\"fcff723\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"dee41b0\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"Our strength lies in mass production of aluminum and steel. We excel in innovation and deliver high-value products to our customers.\",\"title_tag\":\"h6\",\"sub_title\":\"Products\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"5603a87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2328,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9505c40d1bb3a2edfba278.jpg\"},{\"id\":2329,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/38db14d3cb6d72332b7c76.jpg\"},{\"id\":2330,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b5ed1be5c45b7d05244a93.jpg\"},{\"id\":2331,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/844e93464cf8f5a6ace9103.jpg\"},{\"id\":2332,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/795d6c55b3eb0ab553fa94.jpg\"},{\"id\":2333,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/a2e5a7ee7850c10e984190.jpg\"},{\"id\":2337,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1d260d2fd2916bcf328099.jpg\"},{\"id\":2338,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/db3e8e365188e8d6b199119.jpg\"},{\"id\":2340,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/d037ea3f35818cdfd590114.jpg\"},{\"id\":2343,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/0497279ff821417f1830122.jpg\"},{\"id\":2344,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4185a68d7933c06d9922111.jpg\"},{\"id\":2345,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2664d66209dcb082e9cd117.jpg\"},{\"id\":2346,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/995b95524aecf3b2aafd120.jpg\"},{\"id\":2348,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/96e17fe9a05719094046105.jpg\"},{\"id\":2349,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/53d3a1db7e65c73b9e74107.jpg\"},{\"id\":2350,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/46f3befa6144d81a8155123.jpg\"},{\"id\":2351,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9d24a12c7e92c7cc9e83108.jpg\"},{\"id\":2352,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/9a4b7643a9fd10a349ec115.jpg\"},{\"id\":2353,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/5a19961f49a1f0ffa9b0118.jpg\"},{\"id\":2355,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/0b32f03b2f8596dbcf94112.jpg\"},{\"id\":2357,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b1c8bfc1607fd921806e129.jpg\"},{\"id\":2358,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/33ccc7ca1874a12af865132.jpg\"},{\"id\":2360,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2c7e6676b9c8009659d9126.jpg\"},{\"id\":2368,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4af3fbfb24459d1bc45484.jpg\"},{\"id\":2366,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/da27722fad9114cf4d80121.jpg\"},{\"id\":2365,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b9007d06a2b81be642a9109.jpg\"},{\"id\":2364,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/97509a5945e7fcb9a5f6113.jpg\"},{\"id\":2369,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/7cde64d6bb6802365b79102.jpg\"},{\"id\":2370,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/7ef794f14b4ff211ab5e91.jpg\"},{\"id\":2373,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/41a76fafb011094f500096.jpg\"},{\"id\":2374,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/284ee1483ef687a8dee795.jpg\"},{\"id\":2380,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/57c577cda873112d486282.jpg\"},{\"id\":2379,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/42f158f887463e18675775.jpg\"},{\"id\":2378,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/dfb58bbd5403ed5db41286.jpg\"},{\"id\":2377,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/ccd73edee160583e017187.jpg\"},{\"id\":2381,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/91a553a38c1d35436c0c83.jpg\"},{\"id\":2384,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1289df8f0031b96fe02079.jpg\"},{\"id\":2386,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/a4888f80503ee960b02f74.jpg\"},{\"id\":2392,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/e31fda1705a9bcf7e5b870.jpg\"},{\"id\":2391,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c20f0a09d5b76ce935a667.jpg\"},{\"id\":2390,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/28706f78b0c6099850d768.jpg\"},{\"id\":2389,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/79e03ae8e5565c08054772.jpg\"},{\"id\":2387,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/07c54ece9170282e716171.jpg\"},{\"id\":2388,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/8d79cb7114cfad91f4de73.jpg\"},{\"id\":2341,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/49290422db9c62c23b8d125.jpg\"},{\"id\":2356,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/f7f4c2fc1d42a41cfd53131.jpg\"},{\"id\":2362,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/62fb72f0ad4e14104d5f127.jpg\"},{\"id\":2363,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/795df95426ea9fb4c6fb116.jpg\"},{\"id\":2367,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/1ab1f4b72b099257cb1897.jpg\"},{\"id\":2376,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/c546934e4cf0f5aeace1100.jpg\"},{\"id\":2385,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4480b4896b37d2698b2677.jpg\"},{\"id\":2339,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/b44c1144cefa77a42eeb106.jpg\"},{\"id\":2335,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/56c9f8c2277c9e22c76d98.jpg\"},{\"id\":2336,\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/4dc6cecf1171a82ff160101.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false},{\"id\":\"f6994ab\",\"elType\":\"container\",\"settings\":[],\"elements\":[],\"isInner\":false}]'),(7433,2737,'_elementor_edit_mode','builder'),(7434,2737,'_elementor_template_type','wp-page'),(7435,2737,'_elementor_version','3.24.7'),(7436,2737,'_wp_page_template','default'),(7437,2737,'_elementor_data','[{\"id\":\"fcff723\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"dee41b0\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"Our strength lies in mass production of aluminum and steel. We excel in innovation and deliver high-value products to our customers.\",\"title_tag\":\"h5\",\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"373dfc0\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Welding\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"5603a87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2678,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074649965196_82fd76ddbbf38d64dae8af11b21537b9.jpg\"},{\"id\":2667,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074652723212_8770f028ff646f014f1e9f6efe34962e.jpg\"},{\"id\":2672,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074640939718_b0ff6acad14b2ab5ed158171c76833f9.jpg\"},{\"id\":2677,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074641293113_b4b186c67b6e7829dd2a91d730cf9aa7.jpg\"},{\"id\":2668,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074642763587_21ecce5d4accf371358eb4cbd73c800d.jpg\"},{\"id\":2669,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074642849848_10b5670512096e654748e57b24a04afe.jpg\"},{\"id\":2670,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074640758883_648a042f4b640d0f57a4441dd2109570.jpg\"},{\"id\":2671,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074640849237_e7699b1bc6e38e0bf65eb3bca28ae8ca.jpg\"},{\"id\":2673,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074641052070_9efbc1586cb5e95cc54b8421a63f380e.jpg\"},{\"id\":2674,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074641145273_7be5df3e1779aa04e890e40cc243cdee.jpg\"},{\"id\":2675,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074640653285_5a87adf57ce0c4186fe4fb1579e357b5.jpg\"},{\"id\":2676,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074641173826_45ae737f70dfb2d365abb397f139d708.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"dec4325\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Mold\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1852cc9\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2679,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736575578_e0a4f5473843e58ee1a79989f367ada9.jpg\"},{\"id\":2680,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\"},{\"id\":2681,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735219679_91a6f6993146906f8465b43ddd0c2b3c.jpg\"},{\"id\":2682,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736761454_b98d468b133ac59ebbf5e62b693462a4.jpg\"},{\"id\":2683,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736784335_f93bc7820cfdc0b015c8224b9a1ace10.jpg\"},{\"id\":2684,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069219941349_b0954e44a25a7d1543eb33ceeae20efb.jpg\"},{\"id\":2685,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735343201_d2922aa1680c57bfe2da9aaba121caa6.jpg\"},{\"id\":2686,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735441885_088dd417b659783376adfeb006d18180.jpg\"},{\"id\":2687,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735598101_0fdd0a773a22d6af92f694d7866b2a5a.jpg\"},{\"id\":2688,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735634632_da3df11cc1dfa978c5b70f2e44404712.jpg\"},{\"id\":2689,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735693987_bf7347f533ec750a2c4f9df1763b8881.jpg\"},{\"id\":2690,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735835496_a71ac50ddac36867fca21cee8c47fe0a.jpg\"},{\"id\":2691,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\"},{\"id\":2692,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\"},{\"id\":2693,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\"},{\"id\":2694,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\"},{\"id\":2695,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736324472_06f1ed1a1be2c3a5923070aff7d5e10e.jpg\"},{\"id\":2696,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736391051_4c3cae16a8ff4f216b8d53673772dd07.jpg\"},{\"id\":2697,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"ab81cda\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Machine Details\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"cd9dba9\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2698,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069219949175_e2a105bcf223c832d6caab2d03fe0413.jpg\"},{\"id\":2699,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799313165266_a15253e3a3e0a2c978ed667994b8f415.jpg\"},{\"id\":2700,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321604115_493f8355869dd3ca82a96e86e2982bfe.jpg\"},{\"id\":2701,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321696024_733a85bf835aea0a8afc8b269d149700.jpg\"},{\"id\":2702,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799313179567_c3d6675a03762fb94376dc96f05389bd.jpg\"},{\"id\":2703,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799313273454_ad716befaf43d2df147629d95262c520.jpg\"},{\"id\":2704,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363716249_96b2fea5fe33f4a24d8251c8aaf225e1.jpg\"},{\"id\":2705,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363723771_9eec4d51fc1723fb669f980084e20a61.jpg\"},{\"id\":2706,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363723892_5b7200026202a1efe96596109fad6857.jpg\"},{\"id\":2707,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363735361_9355fa7eb991123dc995dfaa2b4cf754.jpg\"},{\"id\":2708,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363746762_6241ac4c6625581b5db9b24a1ee05f68-1.jpg\"},{\"id\":2709,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363741409_d72124d9091280f6529a27a919be13c9.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"2f9b716\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Tool\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a165f68\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2710,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\"},{\"id\":2711,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\"},{\"id\":2712,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\"},{\"id\":2713,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\"},{\"id\":2714,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\"},{\"id\":2715,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\"},{\"id\":2716,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"bcd074c\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Motorbike Parts\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7eb3b87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2717,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028111300979_0052716b462843a5d1968f7870c72fd8.jpg\"},{\"id\":2718,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028112000000_2440d5ae36f700840d0f0b583bbcbdfa.jpg\"},{\"id\":2719,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028112670024_1806afd7d70bbbc523d63b0c61e9130b.jpg\"},{\"id\":2720,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028113287912_e1aa8bdb9fe72b1fe22887ceaafc0dbd.jpg\"},{\"id\":2721,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028113894704_3504e4bf093ad9f9d635c8bfa2aaaef6.jpg\"},{\"id\":2722,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028114767739_d014b10da5088bc7d3675a6d00e77d33.jpg\"},{\"id\":2723,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321434561_6d2cb75edba82832e0cbd90673857bd3.jpg\"},{\"id\":2724,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321448088_6e6944c3ceb335897e2b4f4ad20975b7.jpg\"},{\"id\":2725,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321548557_1a5e69a89ca37953e0c04c88e529d951.jpg\"},{\"id\":2726,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028109630704_29a82df97ea4ea7c37859f9667154da1.jpg\"},{\"id\":2727,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028109675984_511bb58690a73ab9cc1adcd146ca46f2.jpg\"},{\"id\":2728,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028110631415_9bd375451b2242776c3fa47a5e91f3e1.jpg\"},{\"id\":2729,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028111167101_685de2e5395bbf8d97e4d2f8aa87fee3.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"1ef8491\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Jig\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"09a76d6\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2730,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\"},{\"id\":2731,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\"},{\"id\":2732,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\"},{\"id\":2733,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\"},{\"id\":2734,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}]'),(7442,2126,'rs_page_bg_color',''),(7443,2738,'_elementor_edit_mode','builder'),(7444,2738,'_elementor_template_type','wp-page'),(7445,2738,'_elementor_version','3.24.7'),(7446,2738,'_wp_page_template','default'),(7447,2738,'_elementor_data','[{\"id\":\"fcff723\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"dee41b0\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"Our strength lies in mass production of aluminum and steel. We excel in innovation and deliver high-value products to our customers.\",\"title_tag\":\"h5\",\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"373dfc0\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Welding\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"5603a87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2678,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074649965196_82fd76ddbbf38d64dae8af11b21537b9.jpg\"},{\"id\":2667,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074652723212_8770f028ff646f014f1e9f6efe34962e.jpg\"},{\"id\":2672,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074640939718_b0ff6acad14b2ab5ed158171c76833f9.jpg\"},{\"id\":2677,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074641293113_b4b186c67b6e7829dd2a91d730cf9aa7.jpg\"},{\"id\":2668,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074642763587_21ecce5d4accf371358eb4cbd73c800d.jpg\"},{\"id\":2669,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074642849848_10b5670512096e654748e57b24a04afe.jpg\"},{\"id\":2670,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074640758883_648a042f4b640d0f57a4441dd2109570.jpg\"},{\"id\":2671,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074640849237_e7699b1bc6e38e0bf65eb3bca28ae8ca.jpg\"},{\"id\":2673,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074641052070_9efbc1586cb5e95cc54b8421a63f380e.jpg\"},{\"id\":2674,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074641145273_7be5df3e1779aa04e890e40cc243cdee.jpg\"},{\"id\":2675,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074640653285_5a87adf57ce0c4186fe4fb1579e357b5.jpg\"},{\"id\":2676,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074641173826_45ae737f70dfb2d365abb397f139d708.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"dec4325\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Mold\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1852cc9\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2679,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736575578_e0a4f5473843e58ee1a79989f367ada9.jpg\"},{\"id\":2680,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\"},{\"id\":2681,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735219679_91a6f6993146906f8465b43ddd0c2b3c.jpg\"},{\"id\":2682,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736761454_b98d468b133ac59ebbf5e62b693462a4.jpg\"},{\"id\":2683,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736784335_f93bc7820cfdc0b015c8224b9a1ace10.jpg\"},{\"id\":2684,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069219941349_b0954e44a25a7d1543eb33ceeae20efb.jpg\"},{\"id\":2685,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735343201_d2922aa1680c57bfe2da9aaba121caa6.jpg\"},{\"id\":2686,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735441885_088dd417b659783376adfeb006d18180.jpg\"},{\"id\":2687,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735598101_0fdd0a773a22d6af92f694d7866b2a5a.jpg\"},{\"id\":2688,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735634632_da3df11cc1dfa978c5b70f2e44404712.jpg\"},{\"id\":2689,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735693987_bf7347f533ec750a2c4f9df1763b8881.jpg\"},{\"id\":2690,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735835496_a71ac50ddac36867fca21cee8c47fe0a.jpg\"},{\"id\":2691,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\"},{\"id\":2692,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\"},{\"id\":2693,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\"},{\"id\":2694,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\"},{\"id\":2695,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736324472_06f1ed1a1be2c3a5923070aff7d5e10e.jpg\"},{\"id\":2696,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736391051_4c3cae16a8ff4f216b8d53673772dd07.jpg\"},{\"id\":2697,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"ab81cda\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Machine Details\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"cd9dba9\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2698,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069219949175_e2a105bcf223c832d6caab2d03fe0413.jpg\"},{\"id\":2699,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799313165266_a15253e3a3e0a2c978ed667994b8f415.jpg\"},{\"id\":2700,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321604115_493f8355869dd3ca82a96e86e2982bfe.jpg\"},{\"id\":2701,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321696024_733a85bf835aea0a8afc8b269d149700.jpg\"},{\"id\":2702,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799313179567_c3d6675a03762fb94376dc96f05389bd.jpg\"},{\"id\":2703,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799313273454_ad716befaf43d2df147629d95262c520.jpg\"},{\"id\":2704,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363716249_96b2fea5fe33f4a24d8251c8aaf225e1.jpg\"},{\"id\":2705,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363723771_9eec4d51fc1723fb669f980084e20a61.jpg\"},{\"id\":2706,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363723892_5b7200026202a1efe96596109fad6857.jpg\"},{\"id\":2707,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363735361_9355fa7eb991123dc995dfaa2b4cf754.jpg\"},{\"id\":2708,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363746762_6241ac4c6625581b5db9b24a1ee05f68-1.jpg\"},{\"id\":2709,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363741409_d72124d9091280f6529a27a919be13c9.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"2f9b716\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Tool\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a165f68\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2710,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\"},{\"id\":2711,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\"},{\"id\":2712,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\"},{\"id\":2713,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\"},{\"id\":2714,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\"},{\"id\":2715,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\"},{\"id\":2716,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"bcd074c\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Motorbike Parts\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7eb3b87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2717,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028111300979_0052716b462843a5d1968f7870c72fd8.jpg\"},{\"id\":2718,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028112000000_2440d5ae36f700840d0f0b583bbcbdfa.jpg\"},{\"id\":2719,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028112670024_1806afd7d70bbbc523d63b0c61e9130b.jpg\"},{\"id\":2720,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028113287912_e1aa8bdb9fe72b1fe22887ceaafc0dbd.jpg\"},{\"id\":2721,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028113894704_3504e4bf093ad9f9d635c8bfa2aaaef6.jpg\"},{\"id\":2722,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028114767739_d014b10da5088bc7d3675a6d00e77d33.jpg\"},{\"id\":2723,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321434561_6d2cb75edba82832e0cbd90673857bd3.jpg\"},{\"id\":2724,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321448088_6e6944c3ceb335897e2b4f4ad20975b7.jpg\"},{\"id\":2725,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321548557_1a5e69a89ca37953e0c04c88e529d951.jpg\"},{\"id\":2726,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028109630704_29a82df97ea4ea7c37859f9667154da1.jpg\"},{\"id\":2727,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028109675984_511bb58690a73ab9cc1adcd146ca46f2.jpg\"},{\"id\":2728,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028110631415_9bd375451b2242776c3fa47a5e91f3e1.jpg\"},{\"id\":2729,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028111167101_685de2e5395bbf8d97e4d2f8aa87fee3.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"1ef8491\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Jig\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"09a76d6\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2730,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\"},{\"id\":2731,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\"},{\"id\":2732,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\"},{\"id\":2733,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\"},{\"id\":2734,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}]'),(7451,2739,'_elementor_edit_mode','builder'),(7452,2739,'_elementor_template_type','wp-page'),(7453,2739,'_elementor_version','3.24.7'),(7454,2739,'_wp_page_template','default'),(7455,2739,'_elementor_data','[{\"id\":\"0766e75\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"e82a045\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"layout\":\"2\",\"filter_default_title\":\"All\",\"button_text\":\"Read more\",\"ct_animate\":\"wow bounceInDown\",\"pagination_type\":\"loadmore\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"show_button\":\"\",\"source\":[\"cnc-machining-services|service-category\",\"material-forming-services|service-category\",\"metal-fabrication-services|service-category\",\"other-services|service-category\",\"precision-engineering-services|service-category\"],\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}]'),(7459,2740,'_wp_page_template','default'),(7460,2740,'_elementor_edit_mode','builder'),(7461,2740,'_elementor_template_type','wp-page'),(7462,2740,'_elementor_version','3.24.7'),(7463,2740,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218208.webp\",\"id\":2476,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Ronald Dumple\",\"position\":\"Web Designer\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"e562253\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/free-character-illustration-download-in-svg-png-gif-file-formats-female-lady-woman-gee-me-pack-people-illustrations-2218178.webp\",\"id\":2472,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"James Smith\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"5a8d6da\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218144.webp\",\"id\":2473,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Charles F Johnson\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"994e0c5\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218222.webp\",\"id\":2474,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Jodi C Johnson\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"b254836\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218229.webp\",\"id\":2477,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Debra L Smith\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"2da9619\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218159.webp\",\"id\":2478,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Mrditch\\u00a0\\u00a0Hohan\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"18991d8\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions as your trusted partner.\",\"sub_title\":\"Our Partners\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As your trusted partner, we deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Yoshimoto\",\"client_link\":{\"url\":\"https:\\/\\/www.yoshimoto-sangyo.co.jp\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yoshimoto-vietnam.png\",\"id\":2486,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"a49fbc4\"},{\"client_name\":\"Kim Long Motors\",\"client_link\":{\"url\":\"https:\\/\\/kimlongmotor.com.vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/kim-long-motors.png\",\"id\":2485,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"33930a5\"},{\"client_name\":\"Samsung\",\"client_link\":{\"url\":\"https:\\/\\/www.samsung.com\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/samsung.jpg\",\"id\":2484,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"aeee6c2\"},{\"client_name\":\"Komatsu Kogyo\",\"client_link\":{\"url\":\"https:\\/\\/komaz.co.jp\\/english\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/komatsu-kogyo.jpg\",\"id\":2483,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8fc7373\"},{\"_id\":\"ed2e401\",\"client_name\":\"Yuwa Engineering\",\"client_link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yuwa-engineering.jpg\",\"id\":2482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(7464,2740,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(7468,2741,'_elementor_edit_mode','builder'),(7469,2741,'_elementor_template_type','wp-page'),(7470,2741,'_elementor_version','3.24.7'),(7471,2741,'_wp_page_template','default'),(7472,2741,'_elementor_data','[{\"id\":\"0766e75\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"e82a045\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"layout\":\"2\",\"filter_default_title\":\"All\",\"button_text\":\"Read more\",\"ct_animate\":\"wow bounceInDown\",\"pagination_type\":\"loadmore\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"show_button\":\"\",\"source\":[\"cnc-machining-services|service-category\",\"material-forming-services|service-category\",\"metal-fabrication-services|service-category\",\"other-services|service-category\",\"precision-engineering-services|service-category\"],\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}]'),(7486,2748,'_wp_attached_file','2024/12/logo.jpg'),(7487,2748,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:597;s:6:\"height\";i:597;s:4:\"file\";s:16:\"2024/12/logo.jpg\";s:8:\"filesize\";i:64452;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:6:\"Mr Duy\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:13:\"FEHT-LOGO.cdr\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(7493,2751,'_elementor_edit_mode','builder'),(7494,2751,'_elementor_template_type','wp-page'),(7495,2751,'_elementor_version','3.24.7'),(7496,2751,'_wp_page_template','default'),(7497,2751,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have started to open a store on Alibaba to connect with orders from around the world.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"icon_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"cnc-machining-services|service-category\",\"material-forming-services|service-category\"],\"ct_animate\":\"wow fadeInUp\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always provide a sense of security in terms of quality and progress.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#008684\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7498,2751,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(7502,2752,'_elementor_edit_mode','builder'),(7503,2752,'_elementor_template_type','wp-page'),(7504,2752,'_elementor_version','3.24.7'),(7505,2752,'_wp_page_template','default'),(7506,2752,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have started to open a store on Alibaba to connect with orders from around the world.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"icon_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#008684\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"cnc-machining-services|service-category\",\"material-forming-services|service-category\"],\"ct_animate\":\"wow fadeInUp\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always provide a sense of security in terms of quality and progress.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#008684\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7507,2752,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(7511,2753,'_elementor_edit_mode','builder'),(7512,2753,'_elementor_template_type','wp-page'),(7513,2753,'_elementor_version','3.24.7'),(7514,2753,'_wp_page_template','default'),(7515,2753,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#025262\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have started to open a store on Alibaba to connect with orders from around the world.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"icon_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#025262\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#025262\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"cnc-machining-services|service-category\",\"material-forming-services|service-category\"],\"ct_animate\":\"wow fadeInUp\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always provide a sense of security in terms of quality and progress.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#025262\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7516,2753,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(7534,2756,'_elementor_edit_mode','builder'),(7535,2756,'_elementor_template_type','wp-page'),(7536,2756,'_elementor_version','3.24.7'),(7537,2756,'_wp_page_template','default'),(7538,2756,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#025262\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have started to open a store on Alibaba to connect with orders from around the world.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"icon_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#025262\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#025262\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"cnc-machining-services|service-category\",\"material-forming-services|service-category\"],\"ct_animate\":\"wow fadeInUp\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always provide a sense of security in terms of quality and progress.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#025262\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7539,2756,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(7543,2757,'_elementor_edit_mode','builder'),(7544,2757,'_elementor_template_type','wp-page'),(7545,2757,'_elementor_version','3.24.7'),(7546,2757,'_wp_page_template','default'),(7547,2757,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#025262\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have started to open a store on Alibaba to connect with orders from around the world.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"icon_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#025262\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#025262\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"cnc-machining-services|service-category\",\"material-forming-services|service-category\"],\"ct_animate\":\"wow fadeInUp\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always provide a sense of security in terms of quality and progress.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#025262\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7548,2757,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(7552,2758,'_elementor_edit_mode','builder'),(7553,2758,'_elementor_template_type','wp-page'),(7554,2758,'_elementor_version','3.24.7'),(7555,2758,'_wp_page_template','default'),(7556,2758,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have started to open a store on Alibaba to connect with orders from around the world.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"icon_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"cnc-machining-services|service-category\",\"material-forming-services|service-category\"],\"ct_animate\":\"wow fadeInUp\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always provide a sense of security in terms of quality and progress.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#025262\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7557,2758,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(7563,2759,'_elementor_edit_mode','builder'),(7564,2759,'_elementor_template_type','wp-page'),(7565,2759,'_elementor_version','3.24.7'),(7566,2759,'_wp_page_template','default'),(7567,2759,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have started to open a store on Alibaba to connect with orders from around the world.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"icon_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"cnc-machining-services|service-category\",\"material-forming-services|service-category\"],\"ct_animate\":\"wow fadeInUp\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always provide a sense of security in terms of quality and progress.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#025262\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7568,2759,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(7572,2760,'_elementor_edit_mode','builder'),(7573,2760,'_elementor_template_type','wp-page'),(7574,2760,'_elementor_version','3.24.7'),(7575,2760,'_wp_page_template','default'),(7576,2760,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have started to open a store on Alibaba to connect with orders from around the world.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"icon_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"cnc-machining-services|service-category\",\"material-forming-services|service-category\"],\"ct_animate\":\"wow fadeInUp\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always provide a sense of security in terms of quality and progress.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#025262\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7577,2760,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(7581,2761,'_elementor_edit_mode','builder'),(7582,2761,'_elementor_template_type','wp-page'),(7583,2761,'_elementor_version','3.24.7'),(7584,2761,'_wp_page_template','default'),(7585,2761,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have started to open a store on Alibaba to connect with orders from around the world.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"icon_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"cnc-machining-services|service-category\",\"material-forming-services|service-category\"],\"ct_animate\":\"wow fadeInUp\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always provide a sense of security in terms of quality and progress.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#85B23B\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7586,2761,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(7592,2762,'_wp_page_template','default'),(7593,2762,'_elementor_edit_mode','builder'),(7594,2762,'_elementor_template_type','wp-post'),(7595,2762,'_elementor_version','3.24.7'),(7596,2762,'_elementor_data','[{\"id\":\"7225c724\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#060606E6\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer.png\",\"id\":87},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"109cef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.3},\"elements\":[{\"id\":\"6667e1a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/logo.jpg\",\"id\":2547,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae6ecf2\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Factory 1: Khac Niem Industrial Cluster, Khac Niem Ward, Bac Ninh City, Bac Ninh Province\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}},{\"content\":\"Factory 2: 176\\/9 Nguyen Thi Tuoi, Tan Phuoc Quarter, Tan Binh Ward, Di An City, Binh Duong\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"be1a6dd\"},{\"content\":\"0968 86 03 86\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"712a43be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.664,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e4e262b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Menu\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6e682e5b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"39\",\"style\":\"tow-col-light\",\"link_color_hover\":\"#EF4D41\",\"line_color_hover\":\"#EF4D41\",\"menu_align\":\"left\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"e174b97\",\"elType\":\"widget\",\"settings\":{\"title\":\"Open Hours\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"1e0523b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Mon - Sun: 24\\/24<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ab76a16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7},\"elements\":[{\"id\":\"37a5e636\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"aa15610\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#008684\",\"padding\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"040\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2487ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40d8f8a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sign up for alerts, our latest blogs, thoughts, and insights.\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d21d208\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"27383ab2\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin-box\",\"library\":\"material\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24b98c01\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"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},\"gap\":\"extended\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a6c11e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53be024\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"5990603\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"7f874a5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright @2024 of Far East High Tech Ltd. Co.<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_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},\"_css_classes\":\"ct-copyright\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7597,2762,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:2:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:1;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:16:\"link_color_hover\";i:1;s:16:\"line_color_hover\";i:1;s:10:\"menu_align\";i:1;s:17:\"menu_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:13:\"ct_newsletter\";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:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";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:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:1;}}}}}'),(7601,2763,'_wp_page_template','default'),(7602,2763,'_elementor_edit_mode','builder'),(7603,2763,'_elementor_template_type','wp-post'),(7604,2763,'_elementor_version','3.24.7'),(7605,2763,'_elementor_data','[{\"id\":\"7225c724\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#060606E6\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer.png\",\"id\":87},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"109cef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.3},\"elements\":[{\"id\":\"6667e1a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/logo.jpg\",\"id\":2547,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae6ecf2\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Factory 1: Khac Niem Industrial Cluster, Khac Niem Ward, Bac Ninh City, Bac Ninh Province\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}},{\"content\":\"Factory 2: 176\\/9 Nguyen Thi Tuoi, Tan Phuoc Quarter, Tan Binh Ward, Di An City, Binh Duong\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"be1a6dd\"},{\"content\":\"0968 86 03 86\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"712a43be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.664,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e4e262b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Menu\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6e682e5b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"39\",\"style\":\"tow-col-light\",\"link_color_hover\":\"#EF4D41\",\"line_color_hover\":\"#EF4D41\",\"menu_align\":\"left\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"e174b97\",\"elType\":\"widget\",\"settings\":{\"title\":\"Open Hours\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"1e0523b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Mon - Sun: 24\\/24<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ab76a16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7},\"elements\":[{\"id\":\"37a5e636\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"aa15610\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#008684\",\"padding\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"040\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2487ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40d8f8a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sign up for alerts, our latest blogs, thoughts, and insights.\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d21d208\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"27383ab2\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin-box\",\"library\":\"material\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24b98c01\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"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},\"gap\":\"extended\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a6c11e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53be024\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"5990603\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"7f874a5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright @2024 of Far East High Tech Ltd. Co.<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_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},\"_css_classes\":\"ct-copyright\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7606,2763,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:2:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:1;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:16:\"link_color_hover\";i:1;s:16:\"line_color_hover\";i:1;s:10:\"menu_align\";i:1;s:17:\"menu_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:13:\"ct_newsletter\";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:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";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:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:1;}}}}}'),(7610,2764,'_wp_page_template','default'),(7611,2764,'_elementor_edit_mode','builder'),(7612,2764,'_elementor_template_type','wp-post'),(7613,2764,'_elementor_version','3.24.7'),(7614,2764,'_elementor_data','[{\"id\":\"7225c724\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#060606E6\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer.png\",\"id\":87},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"109cef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.3},\"elements\":[{\"id\":\"6667e1a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/logo.jpg\",\"id\":2748,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae6ecf2\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Factory 1: Khac Niem Industrial Cluster, Khac Niem Ward, Bac Ninh City, Bac Ninh Province\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}},{\"content\":\"Factory 2: 176\\/9 Nguyen Thi Tuoi, Tan Phuoc Quarter, Tan Binh Ward, Di An City, Binh Duong\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"be1a6dd\"},{\"content\":\"0968 86 03 86\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"712a43be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.664,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e4e262b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Menu\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6e682e5b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"39\",\"style\":\"tow-col-light\",\"link_color_hover\":\"#EF4D41\",\"line_color_hover\":\"#EF4D41\",\"menu_align\":\"left\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"e174b97\",\"elType\":\"widget\",\"settings\":{\"title\":\"Open Hours\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"1e0523b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Mon - Sun: 24\\/24<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ab76a16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7},\"elements\":[{\"id\":\"37a5e636\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"aa15610\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#85B23B\",\"padding\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"040\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2487ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40d8f8a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sign up for alerts, our latest blogs, thoughts, and insights.\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d21d208\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"27383ab2\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin-box\",\"library\":\"material\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24b98c01\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"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},\"gap\":\"extended\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a6c11e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53be024\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"5990603\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"7f874a5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright @2024 of Far East High Tech Ltd. Co.<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_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},\"_css_classes\":\"ct-copyright\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7615,2764,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:2:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:1;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:16:\"link_color_hover\";i:1;s:16:\"line_color_hover\";i:1;s:10:\"menu_align\";i:1;s:17:\"menu_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:13:\"ct_newsletter\";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:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";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:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:1;}}}}}'),(7621,2765,'_wp_page_template','default'),(7622,2765,'_elementor_edit_mode','builder'),(7623,2765,'_elementor_template_type','wp-post'),(7624,2765,'_elementor_version','3.24.7'),(7625,2765,'_elementor_data','[{\"id\":\"7225c724\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#060606E6\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer.png\",\"id\":87},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"109cef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.3},\"elements\":[{\"id\":\"6667e1a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/logo.jpg\",\"id\":2748,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae6ecf2\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Factory 1: Khac Niem Industrial Cluster, Khac Niem Ward, Bac Ninh City, Bac Ninh Province\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}},{\"content\":\"Factory 2: 176\\/9 Nguyen Thi Tuoi, Tan Phuoc Quarter, Tan Binh Ward, Di An City, Binh Duong\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"be1a6dd\"},{\"content\":\"0968 86 03 86\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"712a43be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.664,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e4e262b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Menu\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6e682e5b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"39\",\"style\":\"tow-col-light\",\"link_color_hover\":\"#EF4D41\",\"line_color_hover\":\"#EF4D41\",\"menu_align\":\"left\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"e174b97\",\"elType\":\"widget\",\"settings\":{\"title\":\"Open Hours\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"1e0523b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Mon - Sun: 24\\/24<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ab76a16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7},\"elements\":[{\"id\":\"37a5e636\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"aa15610\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#85B23B\",\"padding\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"040\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2487ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40d8f8a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sign up for alerts, our latest blogs, thoughts, and insights.\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d21d208\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"27383ab2\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin-box\",\"library\":\"material\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24b98c01\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"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},\"gap\":\"extended\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a6c11e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53be024\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"5990603\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"7f874a5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright @2024 of Far East High Tech Ltd. Co.<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_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},\"_css_classes\":\"ct-copyright\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7626,2765,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:2:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:1;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:16:\"link_color_hover\";i:1;s:16:\"line_color_hover\";i:1;s:10:\"menu_align\";i:1;s:17:\"menu_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:13:\"ct_newsletter\";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:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";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:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:1;}}}}}'),(7630,2766,'_wp_page_template','default'),(7631,2766,'_elementor_edit_mode','builder'),(7632,2766,'_elementor_template_type','wp-post'),(7633,2766,'_elementor_version','3.24.7'),(7634,2766,'_elementor_data','[{\"id\":\"7225c724\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#060606E6\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer.png\",\"id\":87},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"109cef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.3},\"elements\":[{\"id\":\"6667e1a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/logo.jpg\",\"id\":2748,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae6ecf2\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Factory 1: Khac Niem Industrial Cluster, Khac Niem Ward, Bac Ninh City, Bac Ninh Province\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}},{\"content\":\"Factory 2: 176\\/9 Nguyen Thi Tuoi, Tan Phuoc Quarter, Tan Binh Ward, Di An City, Binh Duong\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"be1a6dd\"},{\"content\":\"0968 86 03 86\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"712a43be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.664,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e4e262b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Menu\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6e682e5b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"39\",\"style\":\"tow-col-light\",\"link_color_hover\":\"#EF4D41\",\"line_color_hover\":\"#EF4D41\",\"menu_align\":\"left\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"e174b97\",\"elType\":\"widget\",\"settings\":{\"title\":\"Open Hours\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"1e0523b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Mon - Sun: 24\\/24<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ab76a16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7},\"elements\":[{\"id\":\"37a5e636\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"aa15610\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#85B23B\",\"padding\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"040\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2487ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40d8f8a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sign up for alerts, our latest blogs, thoughts, and insights.\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d21d208\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"27383ab2\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin-box\",\"library\":\"material\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24b98c01\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"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},\"gap\":\"extended\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a6c11e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53be024\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"5990603\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"7f874a5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright @2024 of Far East High Tech Ltd. Co.<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_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},\"_css_classes\":\"ct-copyright\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7635,2766,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:2:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:1;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:16:\"link_color_hover\";i:1;s:16:\"line_color_hover\";i:1;s:10:\"menu_align\";i:1;s:17:\"menu_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:13:\"ct_newsletter\";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:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";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:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:1;}}}}}'),(7639,2767,'_wp_page_template','default'),(7640,2767,'_elementor_edit_mode','builder'),(7641,2767,'_elementor_template_type','wp-post'),(7642,2767,'_elementor_version','3.24.7'),(7643,2767,'_elementor_data','[{\"id\":\"7225c724\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#060606E6\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer.png\",\"id\":87},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"109cef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.3},\"elements\":[{\"id\":\"6667e1a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/logo.jpg\",\"id\":2748,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae6ecf2\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Factory 1: Khac Niem Industrial Cluster, Khac Niem Ward, Bac Ninh City, Bac Ninh Province\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}},{\"content\":\"Factory 2: 176\\/9 Nguyen Thi Tuoi, Tan Phuoc Quarter, Tan Binh Ward, Di An City, Binh Duong\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"be1a6dd\"},{\"content\":\"0968 86 03 86\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"712a43be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.664,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e4e262b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Menu\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6e682e5b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"39\",\"style\":\"tow-col-light\",\"link_color_hover\":\"#F9A244\",\"line_color_hover\":\"#F9A244\",\"menu_align\":\"left\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"e174b97\",\"elType\":\"widget\",\"settings\":{\"title\":\"Open Hours\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"1e0523b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Mon - Sun: 24\\/24<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ab76a16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7},\"elements\":[{\"id\":\"37a5e636\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"aa15610\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#85B23B\",\"padding\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"040\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2487ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40d8f8a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sign up for alerts, our latest blogs, thoughts, and insights.\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d21d208\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"27383ab2\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin-box\",\"library\":\"material\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24b98c01\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"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},\"gap\":\"extended\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a6c11e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53be024\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"5990603\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"7f874a5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright @2024 of Far East High Tech Ltd. Co.<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_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},\"_css_classes\":\"ct-copyright\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7644,2767,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:2:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:1;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:16:\"link_color_hover\";i:1;s:16:\"line_color_hover\";i:1;s:10:\"menu_align\";i:1;s:17:\"menu_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:13:\"ct_newsletter\";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:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";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:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:1;}}}}}'),(7650,2768,'_elementor_edit_mode','builder'),(7651,2768,'_elementor_template_type','wp-page'),(7652,2768,'_elementor_version','3.24.7'),(7653,2768,'_wp_page_template','default'),(7654,2768,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have started to open a store on Alibaba to connect with orders from around the world.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"icon_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"cnc-machining-services|service-category\",\"material-forming-services|service-category\"],\"ct_animate\":\"wow fadeInUp\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always provide a sense of security in terms of quality and progress.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#85B23B\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7655,2768,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(7659,2769,'_elementor_edit_mode','builder'),(7660,2769,'_elementor_template_type','wp-page'),(7661,2769,'_elementor_version','3.24.7'),(7662,2769,'_wp_page_template','default'),(7663,2769,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have started to open a store on Alibaba to connect with orders from around the world.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"icon_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"cnc-machining-services|service-category\",\"material-forming-services|service-category\"],\"ct_animate\":\"wow fadeInUp\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always provide a sense of security in terms of quality and progress.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#85B23B\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7664,2769,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(7668,2770,'_elementor_edit_mode','builder'),(7669,2770,'_elementor_template_type','wp-page'),(7670,2770,'_elementor_version','3.24.7'),(7671,2770,'_wp_page_template','default'),(7672,2770,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=oVQ4_PIqgz8\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have started to open a store on Alibaba to connect with orders from around the world.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"icon_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"cnc-machining-services|service-category\",\"material-forming-services|service-category\"],\"ct_animate\":\"wow fadeInUp\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always provide a sense of security in terms of quality and progress.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#85B23B\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7673,2770,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(7685,2785,'_wp_page_template','default'),(7686,2785,'_elementor_edit_mode','builder'),(7687,2785,'_elementor_template_type','wp-page'),(7688,2785,'_elementor_version','3.24.7'),(7689,2785,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218208.webp\",\"id\":2476,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Ronald Dumple\",\"position\":\"Web Designer\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"e562253\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/free-character-illustration-download-in-svg-png-gif-file-formats-female-lady-woman-gee-me-pack-people-illustrations-2218178.webp\",\"id\":2472,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"James Smith\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"5a8d6da\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218144.webp\",\"id\":2473,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Charles F Johnson\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"994e0c5\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218222.webp\",\"id\":2474,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Jodi C Johnson\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"b254836\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218229.webp\",\"id\":2477,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Debra L Smith\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"2da9619\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218159.webp\",\"id\":2478,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Mrditch\\u00a0\\u00a0Hohan\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"18991d8\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions as your trusted partner.\",\"sub_title\":\"Our Partners\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As your trusted partner, we deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Yoshimoto\",\"client_link\":{\"url\":\"https:\\/\\/www.yoshimoto-sangyo.co.jp\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yoshimoto-vietnam.png\",\"id\":2486,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"a49fbc4\"},{\"client_name\":\"Kim Long Motors\",\"client_link\":{\"url\":\"https:\\/\\/kimlongmotor.com.vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/kim-long-motors.png\",\"id\":2485,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"33930a5\"},{\"client_name\":\"Samsung\",\"client_link\":{\"url\":\"https:\\/\\/www.samsung.com\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/samsung.jpg\",\"id\":2484,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"aeee6c2\"},{\"client_name\":\"Komatsu Kogyo\",\"client_link\":{\"url\":\"https:\\/\\/komaz.co.jp\\/english\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/komatsu-kogyo.jpg\",\"id\":2483,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8fc7373\"},{\"_id\":\"ed2e401\",\"client_name\":\"Yuwa Engineering\",\"client_link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yuwa-engineering.jpg\",\"id\":2482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(7690,2785,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(7694,2786,'_wp_page_template','default'),(7695,2786,'_elementor_edit_mode','builder'),(7696,2786,'_elementor_template_type','wp-page'),(7697,2786,'_elementor_version','3.24.7'),(7698,2786,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218208.webp\",\"id\":2476,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Ronald Dumple\",\"position\":\"Web Designer\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"e562253\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/free-character-illustration-download-in-svg-png-gif-file-formats-female-lady-woman-gee-me-pack-people-illustrations-2218178.webp\",\"id\":2472,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"James Smith\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"5a8d6da\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218144.webp\",\"id\":2473,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Charles F Johnson\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"994e0c5\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218222.webp\",\"id\":2474,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Jodi C Johnson\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"b254836\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218229.webp\",\"id\":2477,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Debra L Smith\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"2da9619\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218159.webp\",\"id\":2478,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Mrditch\\u00a0\\u00a0Hohan\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"18991d8\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions as your trusted partner.\",\"sub_title\":\"Our Partners\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As your trusted partner, we deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Yoshimoto\",\"client_link\":{\"url\":\"https:\\/\\/www.yoshimoto-sangyo.co.jp\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yoshimoto-vietnam.png\",\"id\":2486,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"a49fbc4\"},{\"client_name\":\"Kim Long Motors\",\"client_link\":{\"url\":\"https:\\/\\/kimlongmotor.com.vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/kim-long-motors.png\",\"id\":2485,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"33930a5\"},{\"client_name\":\"Samsung\",\"client_link\":{\"url\":\"https:\\/\\/www.samsung.com\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/samsung.jpg\",\"id\":2484,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"aeee6c2\"},{\"client_name\":\"Komatsu Kogyo\",\"client_link\":{\"url\":\"https:\\/\\/komaz.co.jp\\/english\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/komatsu-kogyo.jpg\",\"id\":2483,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8fc7373\"},{\"_id\":\"ed2e401\",\"client_name\":\"Yuwa Engineering\",\"client_link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yuwa-engineering.jpg\",\"id\":2482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(7699,2786,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(7703,2787,'_wp_page_template','default'),(7704,2787,'_elementor_edit_mode','builder'),(7705,2787,'_elementor_template_type','wp-page'),(7706,2787,'_elementor_version','3.24.7'),(7707,2787,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218208.webp\",\"id\":2476,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Ronald Dumple\",\"position\":\"Web Designer\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"e562253\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/free-character-illustration-download-in-svg-png-gif-file-formats-female-lady-woman-gee-me-pack-people-illustrations-2218178.webp\",\"id\":2472,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"James Smith\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"5a8d6da\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218144.webp\",\"id\":2473,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Charles F Johnson\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"994e0c5\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218222.webp\",\"id\":2474,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Jodi C Johnson\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"b254836\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218229.webp\",\"id\":2477,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Debra L Smith\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"2da9619\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218159.webp\",\"id\":2478,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Mrditch\\u00a0\\u00a0Hohan\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"18991d8\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions as your trusted partner.\",\"sub_title\":\"Our Partners\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Yoshimoto\",\"client_link\":{\"url\":\"https:\\/\\/www.yoshimoto-sangyo.co.jp\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yoshimoto-vietnam.png\",\"id\":2486,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"a49fbc4\"},{\"client_name\":\"Kim Long Motors\",\"client_link\":{\"url\":\"https:\\/\\/kimlongmotor.com.vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/kim-long-motors.png\",\"id\":2485,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"33930a5\"},{\"client_name\":\"Samsung\",\"client_link\":{\"url\":\"https:\\/\\/www.samsung.com\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/samsung.jpg\",\"id\":2484,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"aeee6c2\"},{\"client_name\":\"Komatsu Kogyo\",\"client_link\":{\"url\":\"https:\\/\\/komaz.co.jp\\/english\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/komatsu-kogyo.jpg\",\"id\":2483,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8fc7373\"},{\"_id\":\"ed2e401\",\"client_name\":\"Yuwa Engineering\",\"client_link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yuwa-engineering.jpg\",\"id\":2482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(7708,2787,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(7712,2788,'_wp_page_template','default'),(7713,2788,'_elementor_edit_mode','builder'),(7714,2788,'_elementor_template_type','wp-page'),(7715,2788,'_elementor_version','3.24.7'),(7716,2788,'_elementor_data','[{\"id\":\"c986484\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"21\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab9e3e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.324,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cc7a78\",\"elType\":\"widget\",\"settings\":{\"title\":\"We satisfy you with innovative ideas and quality work.\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"sub_title\":\"About us\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c469998\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We exceed expectations through innovative ideas and exceptional craftsmanship.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11334c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2442360\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d195ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-01.png\",\"id\":612},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b2107e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Time manage\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c366e73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Efficiently organizing tasks to maximize productivity and meet deadlines.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d099fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c4ae19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-02.png\",\"id\":613},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ba24a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fulfill target\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bdc9adf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Achieving goals with precision and commitment, ensuring success.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ba92fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.676,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae4fae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218231.webp\",\"id\":2503,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"0c406f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature1.png\",\"id\":2538,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Tin Luu\",\"desc\":\"(Chairman and founder)\",\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to know more about us?\",\"desc\":\"Just download brochure...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"},\"btn_link\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/BROCHURE.pdf\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-scaled.jpg\",\"id\":663},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"060\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.937},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Far East High Tech is a professional builder company\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.063},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Far East High Tech is a leading company in building and manufacturing high-quality mechanical solutions.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e9a883e\",\"elType\":\"widget\",\"settings\":{\"start_text\":\"Start\",\"end_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"history\":[{\"_id\":\"7d82651\",\"title\":\"12th Jan, 2021\",\"content\":\"Establishment of dedicated R&D department for mechanical innovations\"},{\"_id\":\"37eb5f9\",\"title\":\"5th Jun, 2021\",\"content\":\"Expanded into international markets, beginning with partnerships in Europe\"},{\"_id\":\"2e7ebbf\",\"title\":\"15th Mar, 2022\",\"content\":\"Released high-precision components for the aerospace sector\"},{\"_id\":\"6c49f4c\",\"title\":\"20th Oct, 2022\",\"content\":\"Achieved record sales, marking a major milestone in company growth\"},{\"_id\":\"de48600\",\"title\":\"8th Apr, 2023\",\"content\":\"Introduced automated quality control systems to improve production efficiency\"},{\"_id\":\"0532e1d\",\"title\":\"15th Aug, 2023\",\"content\":\"Named a top mechanical solutions provider in the Asia-Pacific region\"}]},\"elements\":[],\"widgetType\":\"ct_history\"}],\"isInner\":false}],\"isInner\":false}]'),(7717,2788,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:6;s:18:\"title_space_bottom\";i:3;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:4;s:22:\"sub_title_space_bottom\";i:3;s:15:\"sub_title_color\";i:1;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:5;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:7;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}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:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;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:10;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:3;s:13:\"margin_mobile\";i:3;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:3;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:6;s:7:\"padding\";i:6;s:14:\"padding_tablet\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:5:\"image\";i:1;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"ct_cta\";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:\"source_section\";a:4:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:4:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:14:\"slides_to_show\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:16:\"slides_to_scroll\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:6:\"arrows\";i:1;s:8:\"autoplay\";i:1;s:8:\"infinite\";i:1;}}}}}'),(7721,2789,'_wp_page_template','default'),(7722,2789,'_elementor_edit_mode','builder'),(7723,2789,'_elementor_template_type','wp-page'),(7724,2789,'_elementor_version','3.24.7'),(7725,2789,'_elementor_data','[{\"id\":\"c986484\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"21\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab9e3e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.324,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cc7a78\",\"elType\":\"widget\",\"settings\":{\"title\":\"We satisfy you with innovative ideas and quality work.\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"sub_title\":\"About us\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c469998\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We exceed expectations through innovative ideas and exceptional craftsmanship.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11334c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2442360\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d195ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-01.png\",\"id\":612},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b2107e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Time manage\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c366e73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Efficiently organizing tasks to maximize productivity and meet deadlines.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d099fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c4ae19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-02.png\",\"id\":613},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ba24a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fulfill target\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bdc9adf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Achieving goals with precision and commitment, ensuring success.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ba92fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.676,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae4fae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218231.webp\",\"id\":2503,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"0c406f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature1.png\",\"id\":2538,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Tin Luu\",\"desc\":\"(Chairman and founder)\",\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to know more about us?\",\"desc\":\"Just download brochure...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"},\"btn_link\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/BROCHURE.pdf\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-scaled.jpg\",\"id\":663},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"060\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.937},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Far East High Tech is a professional builder company\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.063},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Far East High Tech is a leading company in building and manufacturing high-quality mechanical solutions.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e9a883e\",\"elType\":\"widget\",\"settings\":{\"start_text\":\"Start\",\"end_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"history\":[{\"_id\":\"7d82651\",\"title\":\"12th Jan, 2021\",\"content\":\"Establishment of dedicated R&D department for mechanical innovations\"},{\"_id\":\"37eb5f9\",\"title\":\"5th Jun, 2021\",\"content\":\"Expanded into international markets, beginning with partnerships in Europe\"},{\"_id\":\"2e7ebbf\",\"title\":\"15th Mar, 2022\",\"content\":\"Released high-precision components for the aerospace sector\"},{\"_id\":\"6c49f4c\",\"title\":\"20th Oct, 2022\",\"content\":\"Achieved record sales, marking a major milestone in company growth\"},{\"_id\":\"de48600\",\"title\":\"8th Apr, 2023\",\"content\":\"Introduced automated quality control systems to improve production efficiency\"},{\"_id\":\"0532e1d\",\"title\":\"15th Aug, 2023\",\"content\":\"Named a top mechanical solutions provider in the Asia-Pacific region\"}]},\"elements\":[],\"widgetType\":\"ct_history\"}],\"isInner\":false}],\"isInner\":false}]'),(7726,2789,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:6;s:18:\"title_space_bottom\";i:3;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:4;s:22:\"sub_title_space_bottom\";i:3;s:15:\"sub_title_color\";i:1;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:5;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:7;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}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:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;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:10;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:3;s:13:\"margin_mobile\";i:3;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:3;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:6;s:7:\"padding\";i:6;s:14:\"padding_tablet\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:5:\"image\";i:1;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"ct_cta\";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:\"source_section\";a:4:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:4:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:14:\"slides_to_show\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:16:\"slides_to_scroll\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:6:\"arrows\";i:1;s:8:\"autoplay\";i:1;s:8:\"infinite\";i:1;}}}}}'),(7730,2790,'_wp_page_template','default'),(7731,2790,'_elementor_edit_mode','builder'),(7732,2790,'_elementor_template_type','wp-page'),(7733,2790,'_elementor_version','3.24.7'),(7734,2790,'_elementor_data','[{\"id\":\"c986484\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"21\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab9e3e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.324,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cc7a78\",\"elType\":\"widget\",\"settings\":{\"title\":\"We satisfy you with innovative ideas and quality work.\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"sub_title\":\"About us\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c469998\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We exceed expectations through innovative ideas and exceptional craftsmanship.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11334c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2442360\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d195ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-01.png\",\"id\":612},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b2107e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Time manage\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c366e73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Efficiently organizing tasks to maximize productivity and meet deadlines.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d099fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c4ae19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-02.png\",\"id\":613},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ba24a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fulfill target\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bdc9adf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Achieving goals with precision and commitment, ensuring success.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ba92fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.676,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae4fae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218231.webp\",\"id\":2503,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"0c406f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature1.png\",\"id\":2538,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Tin Luu\",\"desc\":\"(Chairman and founder)\",\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to know more about us?\",\"desc\":\"Just download brochure...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"},\"btn_link\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/BROCHURE.pdf\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-scaled.jpg\",\"id\":663},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"060\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.937},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Far East High Tech is a professional builder company\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.063},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Far East High Tech is a leading company in building and manufacturing high-quality mechanical solutions.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e9a883e\",\"elType\":\"widget\",\"settings\":{\"start_text\":\"Start\",\"end_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"history\":[{\"_id\":\"7d82651\",\"title\":\"20th Nov, 2018\",\"content\":\"Far East Tech was established in Qu\\u1ebf V\\u00f5, B\\u1eafc Ninh with 5 founding members.\"},{\"_id\":\"37eb5f9\",\"title\":\"1st Apr, 2021\",\"content\":\"With the strong growth of Far East Tech, we decided to expand our branch in the South.\"},{\"_id\":\"2e7ebbf\",\"title\":\"30th Apr, 2021\",\"content\":\"We successfully acquired DMM Precision Engineering Co., Ltd. in B\\u00ecnh D\\u01b0\\u01a1ng, a company with experience in exporting goods to Japan since 2016,\\nand thus, we established a machining company in the southern region.\"},{\"_id\":\"6c49f4c\",\"title\":\"1st Jun, 2022\",\"content\":\"Far East Tech took a significant step in industrial-scale production with a 2000m2 workshop and 70 CNC machines in B\\u1eafc Ninh.\"},{\"_id\":\"de48600\",\"title\":\"2024\",\"content\":\"DMM Precision Engineering Co., Ltd. officially changed its name to Far East High Tech Co., Ltd.\\nAfter 2025: This will be a year of strong development for our company team.\"}]},\"elements\":[],\"widgetType\":\"ct_history\"}],\"isInner\":false}],\"isInner\":false}]'),(7735,2790,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:6;s:18:\"title_space_bottom\";i:3;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:4;s:22:\"sub_title_space_bottom\";i:3;s:15:\"sub_title_color\";i:1;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:5;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:7;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}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:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;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:10;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:3;s:13:\"margin_mobile\";i:3;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:3;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:6;s:7:\"padding\";i:6;s:14:\"padding_tablet\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:5:\"image\";i:1;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"ct_cta\";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:\"source_section\";a:4:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:4:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:14:\"slides_to_show\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:16:\"slides_to_scroll\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:6:\"arrows\";i:1;s:8:\"autoplay\";i:1;s:8:\"infinite\";i:1;}}}}}'),(7761,2796,'_wp_page_template','default'),(7762,2796,'_elementor_edit_mode','builder'),(7763,2796,'_elementor_template_type','wp-page'),(7764,2796,'_elementor_version','3.24.7'),(7765,2796,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218208.webp\",\"id\":2476,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Ronald Dumple\",\"position\":\"Web Designer\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"e562253\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/free-character-illustration-download-in-svg-png-gif-file-formats-female-lady-woman-gee-me-pack-people-illustrations-2218178.webp\",\"id\":2472,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"James Smith\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"5a8d6da\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218144.webp\",\"id\":2473,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Charles F Johnson\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"994e0c5\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218222.webp\",\"id\":2474,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Jodi C Johnson\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"b254836\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218229.webp\",\"id\":2477,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Debra L Smith\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"2da9619\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218159.webp\",\"id\":2478,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Mrditch\\u00a0\\u00a0Hohan\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"18991d8\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions as your trusted partner.\",\"sub_title\":\"Our Partners\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Yoshimoto\",\"client_link\":{\"url\":\"https:\\/\\/www.yoshimoto-sangyo.co.jp\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yoshimoto-vietnam.png\",\"id\":2486,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"a49fbc4\"},{\"client_name\":\"Kim Long Motors\",\"client_link\":{\"url\":\"https:\\/\\/kimlongmotor.com.vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/kim-long-motors.png\",\"id\":2485,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"33930a5\"},{\"client_name\":\"Samsung\",\"client_link\":{\"url\":\"https:\\/\\/www.samsung.com\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/samsung.jpg\",\"id\":2484,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"aeee6c2\"},{\"client_name\":\"Komatsu Kogyo\",\"client_link\":{\"url\":\"https:\\/\\/komaz.co.jp\\/english\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/komatsu-kogyo.jpg\",\"id\":2483,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8fc7373\"},{\"_id\":\"ed2e401\",\"client_name\":\"Yuwa Engineering\",\"client_link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yuwa-engineering.jpg\",\"id\":2482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(7766,2796,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(7770,2797,'_wp_page_template','default'),(7771,2797,'_elementor_edit_mode','builder'),(7772,2797,'_elementor_template_type','wp-page'),(7773,2797,'_elementor_version','3.24.7'),(7774,2797,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218208.webp\",\"id\":2476,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Ronald Dumple\",\"position\":\"Web Designer\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"e562253\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/free-character-illustration-download-in-svg-png-gif-file-formats-female-lady-woman-gee-me-pack-people-illustrations-2218178.webp\",\"id\":2472,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"James Smith\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"5a8d6da\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218144.webp\",\"id\":2473,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Charles F Johnson\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"994e0c5\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218222.webp\",\"id\":2474,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Jodi C Johnson\",\"position\":\"Web Designer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"b254836\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218229.webp\",\"id\":2477,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Debra L Smith\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"2da9619\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218159.webp\",\"id\":2478,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Mrditch\\u00a0\\u00a0Hohan\",\"position\":\"Web Developer\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-linkedin\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"18991d8\",\"email\":\"Mail: noreply@envato.com\",\"phone\":\"Call: (334) 886-3344\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions as your trusted partner.\",\"sub_title\":\"Our Partners\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Yoshimoto\",\"client_link\":{\"url\":\"https:\\/\\/www.yoshimoto-sangyo.co.jp\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yoshimoto-vietnam.png\",\"id\":2486,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"a49fbc4\"},{\"client_name\":\"Kim Long Motors\",\"client_link\":{\"url\":\"https:\\/\\/kimlongmotor.com.vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/kim-long-motors.png\",\"id\":2485,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"33930a5\"},{\"client_name\":\"Samsung\",\"client_link\":{\"url\":\"https:\\/\\/www.samsung.com\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/samsung.jpg\",\"id\":2484,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"aeee6c2\"},{\"client_name\":\"Komatsu Kogyo\",\"client_link\":{\"url\":\"https:\\/\\/komaz.co.jp\\/english\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/komatsu-kogyo.jpg\",\"id\":2483,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8fc7373\"},{\"_id\":\"ed2e401\",\"client_name\":\"Yuwa Engineering\",\"client_link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yuwa-engineering.jpg\",\"id\":2482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(7775,2797,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(7779,2798,'_wp_page_template','default'),(7780,2798,'_elementor_edit_mode','builder'),(7781,2798,'_elementor_template_type','wp-page'),(7782,2798,'_elementor_version','3.24.7'),(7783,2798,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/logo.jpg\",\"id\":2748,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"e562253\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FAR-East-Auto.jpg\",\"id\":2793,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Auto Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"5a8d6da\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/Far-East-Tool-Vina.jpg\",\"id\":2794,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tools Vina\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"994e0c5\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FE-TECH-LOGO-FINAL.png\",\"id\":2792,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Engineering\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"b254836\"},{\"image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"KS Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"2da9619\"},{\"image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"HM Company\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"18991d8\"},{\"_id\":\"1759944\",\"title\":\"HP Company\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions as your trusted partner.\",\"sub_title\":\"Our Partners\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Yoshimoto\",\"client_link\":{\"url\":\"https:\\/\\/www.yoshimoto-sangyo.co.jp\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yoshimoto-vietnam.png\",\"id\":2486,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"a49fbc4\"},{\"client_name\":\"Kim Long Motors\",\"client_link\":{\"url\":\"https:\\/\\/kimlongmotor.com.vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/kim-long-motors.png\",\"id\":2485,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"33930a5\"},{\"client_name\":\"Samsung\",\"client_link\":{\"url\":\"https:\\/\\/www.samsung.com\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/samsung.jpg\",\"id\":2484,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"aeee6c2\"},{\"client_name\":\"Komatsu Kogyo\",\"client_link\":{\"url\":\"https:\\/\\/komaz.co.jp\\/english\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/komatsu-kogyo.jpg\",\"id\":2483,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8fc7373\"},{\"_id\":\"ed2e401\",\"client_name\":\"Yuwa Engineering\",\"client_link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yuwa-engineering.jpg\",\"id\":2482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(7784,2798,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(7790,2799,'_wp_page_template','default'),(7791,2799,'_elementor_edit_mode','builder'),(7792,2799,'_elementor_template_type','wp-page'),(7793,2799,'_elementor_version','3.24.7'),(7794,2799,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/logo.jpg\",\"id\":2748,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"e562253\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FAR-East-Auto.jpg\",\"id\":2793,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Auto Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"5a8d6da\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/Far-East-Tool-Vina.jpg\",\"id\":2794,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tools Vina\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"994e0c5\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FE-TECH-LOGO-FINAL.png\",\"id\":2792,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Engineering\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"b254836\"},{\"image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"KS Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"2da9619\"},{\"image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"HM Company\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"18991d8\"},{\"_id\":\"1759944\",\"title\":\"HP Company\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions as your trusted partner.\",\"sub_title\":\"Our Partners\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Yoshimoto\",\"client_link\":{\"url\":\"https:\\/\\/www.yoshimoto-sangyo.co.jp\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yoshimoto-vietnam.png\",\"id\":2486,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"a49fbc4\"},{\"client_name\":\"Kim Long Motors\",\"client_link\":{\"url\":\"https:\\/\\/kimlongmotor.com.vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/kim-long-motors.png\",\"id\":2485,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"33930a5\"},{\"client_name\":\"Samsung\",\"client_link\":{\"url\":\"https:\\/\\/www.samsung.com\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/samsung.jpg\",\"id\":2484,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"aeee6c2\"},{\"client_name\":\"Komatsu Kogyo\",\"client_link\":{\"url\":\"https:\\/\\/komaz.co.jp\\/english\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/komatsu-kogyo.jpg\",\"id\":2483,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8fc7373\"},{\"_id\":\"ed2e401\",\"client_name\":\"Yuwa Engineering\",\"client_link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yuwa-engineering.jpg\",\"id\":2482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(7795,2799,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(7799,2800,'_wp_page_template','default'),(7800,2800,'_elementor_edit_mode','builder'),(7801,2800,'_elementor_template_type','wp-page'),(7802,2800,'_elementor_version','3.24.7'),(7803,2800,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/logo.jpg\",\"id\":2748,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"e562253\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FAR-East-Auto.jpg\",\"id\":2793,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Auto Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"5a8d6da\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/Far-East-Tool-Vina.jpg\",\"id\":2794,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tools Vina\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"994e0c5\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FE-TECH-LOGO-FINAL.png\",\"id\":2792,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Engineering\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"b254836\"},{\"image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"KS Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"2da9619\"},{\"image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"HM Company\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"18991d8\"},{\"_id\":\"1759944\",\"title\":\"HP Company\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions as your trusted partner.\",\"sub_title\":\"Our Partners\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Yoshimoto\",\"client_link\":{\"url\":\"https:\\/\\/www.yoshimoto-sangyo.co.jp\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yoshimoto-vietnam.png\",\"id\":2486,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"a49fbc4\"},{\"client_name\":\"Kim Long Motors\",\"client_link\":{\"url\":\"https:\\/\\/kimlongmotor.com.vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/kim-long-motors.png\",\"id\":2485,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"33930a5\"},{\"client_name\":\"Samsung\",\"client_link\":{\"url\":\"https:\\/\\/www.samsung.com\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/samsung.jpg\",\"id\":2484,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"aeee6c2\"},{\"client_name\":\"Komatsu Kogyo\",\"client_link\":{\"url\":\"https:\\/\\/komaz.co.jp\\/english\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/komatsu-kogyo.jpg\",\"id\":2483,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8fc7373\"},{\"_id\":\"ed2e401\",\"client_name\":\"Yuwa Engineering\",\"client_link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yuwa-engineering.jpg\",\"id\":2482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(7804,2800,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(7808,2801,'_wp_page_template','default'),(7809,2801,'_elementor_edit_mode','builder'),(7810,2801,'_elementor_template_type','wp-page'),(7811,2801,'_elementor_version','3.24.7'),(7812,2801,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/logo.jpg\",\"id\":2748,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"e562253\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FE-TECH-LOGO-FINAL.png\",\"id\":2792,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Engineering\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"b254836\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/Far-East-Tool-Vina.jpg\",\"id\":2794,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tools Vina\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"994e0c5\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FAR-East-Auto.jpg\",\"id\":2793,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Auto Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"5a8d6da\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions as your trusted partner.\",\"sub_title\":\"Our Partners\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Yoshimoto\",\"client_link\":{\"url\":\"https:\\/\\/www.yoshimoto-sangyo.co.jp\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yoshimoto-vietnam.png\",\"id\":2486,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"a49fbc4\"},{\"client_name\":\"Kim Long Motors\",\"client_link\":{\"url\":\"https:\\/\\/kimlongmotor.com.vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/kim-long-motors.png\",\"id\":2485,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"33930a5\"},{\"client_name\":\"Samsung\",\"client_link\":{\"url\":\"https:\\/\\/www.samsung.com\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/samsung.jpg\",\"id\":2484,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"aeee6c2\"},{\"client_name\":\"Komatsu Kogyo\",\"client_link\":{\"url\":\"https:\\/\\/komaz.co.jp\\/english\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/komatsu-kogyo.jpg\",\"id\":2483,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8fc7373\"},{\"_id\":\"ed2e401\",\"client_name\":\"Yuwa Engineering\",\"client_link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yuwa-engineering.jpg\",\"id\":2482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(7813,2801,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(7819,2802,'_wp_page_template','default'),(7820,2802,'_elementor_edit_mode','builder'),(7821,2802,'_elementor_template_type','wp-page'),(7822,2802,'_elementor_version','3.24.7'),(7823,2802,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/logo.jpg\",\"id\":2748,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"e562253\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FE-TECH-LOGO-FINAL.png\",\"id\":2792,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Engineering\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"b254836\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/Far-East-Tool-Vina.jpg\",\"id\":2794,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tools Vina\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"994e0c5\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FAR-East-Auto.jpg\",\"id\":2793,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Auto Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"5a8d6da\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions as your trusted partner.\",\"sub_title\":\"Our Partners\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Yoshimoto\",\"client_link\":{\"url\":\"https:\\/\\/www.yoshimoto-sangyo.co.jp\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yoshimoto-vietnam.png\",\"id\":2486,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"a49fbc4\"},{\"client_name\":\"Kim Long Motors\",\"client_link\":{\"url\":\"https:\\/\\/kimlongmotor.com.vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/kim-long-motors.png\",\"id\":2485,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"33930a5\"},{\"client_name\":\"Samsung\",\"client_link\":{\"url\":\"https:\\/\\/www.samsung.com\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/samsung.jpg\",\"id\":2484,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"aeee6c2\"},{\"client_name\":\"Komatsu Kogyo\",\"client_link\":{\"url\":\"https:\\/\\/komaz.co.jp\\/english\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/komatsu-kogyo.jpg\",\"id\":2483,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8fc7373\"},{\"_id\":\"ed2e401\",\"client_name\":\"Yuwa Engineering\",\"client_link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yuwa-engineering.jpg\",\"id\":2482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(7824,2802,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(7828,2803,'_wp_page_template','default'),(7829,2803,'_elementor_edit_mode','builder'),(7830,2803,'_elementor_template_type','wp-page'),(7831,2803,'_elementor_version','3.24.7'),(7832,2803,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/logo.jpg\",\"id\":2748,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"e562253\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FE-TECH-LOGO-FINAL.png\",\"id\":2792,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Engineering\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"b254836\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/Far-East-Tool-Vina.jpg\",\"id\":2794,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tools Vina\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"994e0c5\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FAR-East-Auto.jpg\",\"id\":2793,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Auto Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"5a8d6da\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions as your trusted partner.\",\"sub_title\":\"Our Partners\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Yoshimoto\",\"client_link\":{\"url\":\"https:\\/\\/www.yoshimoto-sangyo.co.jp\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yoshimoto-vietnam.png\",\"id\":2486,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"a49fbc4\"},{\"client_name\":\"Kim Long Motors\",\"client_link\":{\"url\":\"https:\\/\\/kimlongmotor.com.vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/kim-long-motors.png\",\"id\":2485,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"33930a5\"},{\"client_name\":\"Samsung\",\"client_link\":{\"url\":\"https:\\/\\/www.samsung.com\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/samsung.jpg\",\"id\":2484,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"aeee6c2\"},{\"client_name\":\"Komatsu Kogyo\",\"client_link\":{\"url\":\"https:\\/\\/komaz.co.jp\\/english\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/komatsu-kogyo.jpg\",\"id\":2483,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8fc7373\"},{\"_id\":\"ed2e401\",\"client_name\":\"Yuwa Engineering\",\"client_link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yuwa-engineering.jpg\",\"id\":2482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(7833,2803,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(7837,2804,'_wp_page_template','default'),(7838,2804,'_elementor_edit_mode','builder'),(7839,2804,'_elementor_template_type','wp-page'),(7840,2804,'_elementor_version','3.24.7'),(7841,2804,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/logo.jpg\",\"id\":2748,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"e562253\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FE-TECH-LOGO-FINAL.png\",\"id\":2792,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Engineering\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"b254836\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/Far-East-Tool-Vina.jpg\",\"id\":2794,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tools Vina\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"994e0c5\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FAR-East-Auto.jpg\",\"id\":2793,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Auto Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"5a8d6da\"},{\"_id\":\"e026aee\",\"title\":\"KS Tech\"},{\"_id\":\"bc708ca\",\"title\":\"HM Company\"},{\"_id\":\"465a023\",\"title\":\"HP Company\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions as your trusted partner.\",\"sub_title\":\"Our Partners\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Yoshimoto\",\"client_link\":{\"url\":\"https:\\/\\/www.yoshimoto-sangyo.co.jp\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yoshimoto-vietnam.png\",\"id\":2486,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"a49fbc4\"},{\"client_name\":\"Kim Long Motors\",\"client_link\":{\"url\":\"https:\\/\\/kimlongmotor.com.vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/kim-long-motors.png\",\"id\":2485,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"33930a5\"},{\"client_name\":\"Samsung\",\"client_link\":{\"url\":\"https:\\/\\/www.samsung.com\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/samsung.jpg\",\"id\":2484,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"aeee6c2\"},{\"client_name\":\"Komatsu Kogyo\",\"client_link\":{\"url\":\"https:\\/\\/komaz.co.jp\\/english\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/komatsu-kogyo.jpg\",\"id\":2483,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8fc7373\"},{\"_id\":\"ed2e401\",\"client_name\":\"Yuwa Engineering\",\"client_link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yuwa-engineering.jpg\",\"id\":2482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(7842,2804,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(7848,2805,'_wp_page_template','default'),(7849,2805,'_elementor_edit_mode','builder'),(7850,2805,'_elementor_template_type','wp-page'),(7851,2805,'_elementor_version','3.24.7'),(7852,2805,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/logo.jpg\",\"id\":2748,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"e562253\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FE-TECH-LOGO-FINAL.png\",\"id\":2792,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Engineering\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"b254836\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/Far-East-Tool-Vina.jpg\",\"id\":2794,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tools Vina\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"994e0c5\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FAR-East-Auto.jpg\",\"id\":2793,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Auto Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"5a8d6da\"},{\"_id\":\"e026aee\",\"title\":\"KS Tech\"},{\"_id\":\"bc708ca\",\"title\":\"HM Company\"},{\"_id\":\"465a023\",\"title\":\"HP Company\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions as your trusted partner.\",\"sub_title\":\"Our Partners\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Yoshimoto\",\"client_link\":{\"url\":\"https:\\/\\/www.yoshimoto-sangyo.co.jp\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yoshimoto-vietnam.png\",\"id\":2486,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"a49fbc4\"},{\"client_name\":\"Kim Long Motors\",\"client_link\":{\"url\":\"https:\\/\\/kimlongmotor.com.vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/kim-long-motors.png\",\"id\":2485,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"33930a5\"},{\"client_name\":\"Samsung\",\"client_link\":{\"url\":\"https:\\/\\/www.samsung.com\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/samsung.jpg\",\"id\":2484,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"aeee6c2\"},{\"client_name\":\"Komatsu Kogyo\",\"client_link\":{\"url\":\"https:\\/\\/komaz.co.jp\\/english\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/komatsu-kogyo.jpg\",\"id\":2483,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8fc7373\"},{\"_id\":\"ed2e401\",\"client_name\":\"Yuwa Engineering\",\"client_link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yuwa-engineering.jpg\",\"id\":2482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(7853,2805,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(7857,2806,'_wp_page_template','default'),(7858,2806,'_elementor_edit_mode','builder'),(7859,2806,'_elementor_template_type','wp-page'),(7860,2806,'_elementor_version','3.24.7'),(7861,2806,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/logo.jpg\",\"id\":2748,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"e562253\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FE-TECH-LOGO-FINAL.png\",\"id\":2792,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Engineering\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"b254836\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/Far-East-Tool-Vina.jpg\",\"id\":2794,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tools Vina\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"994e0c5\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FAR-East-Auto.jpg\",\"id\":2793,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Auto Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"5a8d6da\"},{\"_id\":\"e026aee\",\"title\":\"KS Tech\"},{\"_id\":\"bc708ca\",\"title\":\"HM Company\"},{\"_id\":\"465a023\",\"title\":\"HP Company\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions as your trusted partner.\",\"sub_title\":\"Our Partners\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Yoshimoto\",\"client_link\":{\"url\":\"https:\\/\\/www.yoshimoto-sangyo.co.jp\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yoshimoto-vietnam.png\",\"id\":2486,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"a49fbc4\"},{\"client_name\":\"Kim Long Motors\",\"client_link\":{\"url\":\"https:\\/\\/kimlongmotor.com.vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/kim-long-motors.png\",\"id\":2485,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"33930a5\"},{\"client_name\":\"Samsung\",\"client_link\":{\"url\":\"https:\\/\\/www.samsung.com\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/samsung.jpg\",\"id\":2484,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"aeee6c2\"},{\"client_name\":\"Komatsu Kogyo\",\"client_link\":{\"url\":\"https:\\/\\/komaz.co.jp\\/english\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/komatsu-kogyo.jpg\",\"id\":2483,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8fc7373\"},{\"_id\":\"ed2e401\",\"client_name\":\"Yuwa Engineering\",\"client_link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yuwa-engineering.jpg\",\"id\":2482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(7862,2806,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(7866,2807,'_wp_page_template','default'),(7867,2807,'_elementor_edit_mode','builder'),(7868,2807,'_elementor_template_type','wp-page'),(7869,2807,'_elementor_version','3.24.7'),(7870,2807,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/logo.jpg\",\"id\":2748,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"e562253\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FE-TECH-LOGO-FINAL.png\",\"id\":2792,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Engineering\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"b254836\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/Far-East-Tool-Vina.jpg\",\"id\":2794,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tools Vina\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"994e0c5\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions as your trusted partner.\",\"sub_title\":\"Our Partners\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Yoshimoto\",\"client_link\":{\"url\":\"https:\\/\\/www.yoshimoto-sangyo.co.jp\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yoshimoto-vietnam.png\",\"id\":2486,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"a49fbc4\"},{\"client_name\":\"Kim Long Motors\",\"client_link\":{\"url\":\"https:\\/\\/kimlongmotor.com.vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/kim-long-motors.png\",\"id\":2485,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"33930a5\"},{\"client_name\":\"Samsung\",\"client_link\":{\"url\":\"https:\\/\\/www.samsung.com\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/samsung.jpg\",\"id\":2484,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"aeee6c2\"},{\"client_name\":\"Komatsu Kogyo\",\"client_link\":{\"url\":\"https:\\/\\/komaz.co.jp\\/english\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/komatsu-kogyo.jpg\",\"id\":2483,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8fc7373\"},{\"_id\":\"ed2e401\",\"client_name\":\"Yuwa Engineering\",\"client_link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yuwa-engineering.jpg\",\"id\":2482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(7871,2807,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(7878,2809,'_wp_page_template','default'),(7879,2809,'_elementor_edit_mode','builder'),(7880,2809,'_elementor_template_type','wp-page'),(7881,2809,'_elementor_version','3.24.7'),(7882,2809,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/logo.jpg\",\"id\":2748,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"e562253\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FE-TECH-LOGO-FINAL.png\",\"id\":2792,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Engineering\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"b254836\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/Far-East-Tool-Vina.jpg\",\"id\":2794,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tools Vina\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"994e0c5\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions as your trusted partner.\",\"sub_title\":\"Our Partners\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Yoshimoto\",\"client_link\":{\"url\":\"https:\\/\\/www.yoshimoto-sangyo.co.jp\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yoshimoto-vietnam.png\",\"id\":2486,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"a49fbc4\"},{\"client_name\":\"Kim Long Motors\",\"client_link\":{\"url\":\"https:\\/\\/kimlongmotor.com.vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/kim-long-motors.png\",\"id\":2485,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"33930a5\"},{\"client_name\":\"Samsung\",\"client_link\":{\"url\":\"https:\\/\\/www.samsung.com\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/samsung.jpg\",\"id\":2484,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"aeee6c2\"},{\"client_name\":\"Komatsu Kogyo\",\"client_link\":{\"url\":\"https:\\/\\/komaz.co.jp\\/english\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/komatsu-kogyo.jpg\",\"id\":2483,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8fc7373\"},{\"_id\":\"ed2e401\",\"client_name\":\"Yuwa Engineering\",\"client_link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yuwa-engineering.jpg\",\"id\":2482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(7883,2809,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(7886,2810,'_wp_page_template','default'),(7887,2810,'_elementor_edit_mode','builder'),(7888,2810,'_elementor_template_type','wp-page'),(7889,2810,'_elementor_version','3.24.7'),(7890,2810,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/logo.jpg\",\"id\":2748,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"e562253\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FE-TECH-LOGO-FINAL.png\",\"id\":2792,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Engineering\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"b254836\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/Far-East-Tool-Vina.jpg\",\"id\":2794,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tools Vina\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"994e0c5\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions as your trusted partner.\",\"sub_title\":\"Our Partners\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Yoshimoto\",\"client_link\":{\"url\":\"https:\\/\\/www.yoshimoto-sangyo.co.jp\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yoshimoto-vietnam.png\",\"id\":2486,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"a49fbc4\"},{\"client_name\":\"Kim Long Motors\",\"client_link\":{\"url\":\"https:\\/\\/kimlongmotor.com.vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/kim-long-motors.png\",\"id\":2485,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"33930a5\"},{\"client_name\":\"Samsung\",\"client_link\":{\"url\":\"https:\\/\\/www.samsung.com\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/samsung.jpg\",\"id\":2484,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"aeee6c2\"},{\"client_name\":\"Komatsu Kogyo\",\"client_link\":{\"url\":\"https:\\/\\/komaz.co.jp\\/english\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/komatsu-kogyo.jpg\",\"id\":2483,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8fc7373\"},{\"_id\":\"ed2e401\",\"client_name\":\"Yuwa Engineering\",\"client_link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yuwa-engineering.jpg\",\"id\":2482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(7891,2810,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(7894,2811,'_wp_page_template','default'),(7895,2811,'_elementor_edit_mode','builder'),(7896,2811,'_elementor_template_type','wp-page'),(7897,2811,'_elementor_version','3.24.7'),(7898,2811,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/logo.jpg\",\"id\":2748,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"e562253\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FE-TECH-LOGO-FINAL-1.png\",\"id\":2808,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Engineering\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"b254836\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/Far-East-Tool-Vina.jpg\",\"id\":2794,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tools Vina\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"994e0c5\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions as your trusted partner.\",\"sub_title\":\"Our Partners\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Yoshimoto\",\"client_link\":{\"url\":\"https:\\/\\/www.yoshimoto-sangyo.co.jp\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yoshimoto-vietnam.png\",\"id\":2486,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"a49fbc4\"},{\"client_name\":\"Kim Long Motors\",\"client_link\":{\"url\":\"https:\\/\\/kimlongmotor.com.vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/kim-long-motors.png\",\"id\":2485,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"33930a5\"},{\"client_name\":\"Samsung\",\"client_link\":{\"url\":\"https:\\/\\/www.samsung.com\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/samsung.jpg\",\"id\":2484,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"aeee6c2\"},{\"client_name\":\"Komatsu Kogyo\",\"client_link\":{\"url\":\"https:\\/\\/komaz.co.jp\\/english\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/komatsu-kogyo.jpg\",\"id\":2483,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8fc7373\"},{\"_id\":\"ed2e401\",\"client_name\":\"Yuwa Engineering\",\"client_link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yuwa-engineering.jpg\",\"id\":2482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(7899,2811,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(7904,2812,'_wp_attached_file','2024/12/FEHT-logo.jpg'),(7905,2812,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:21:\"2024/12/FEHT-logo.jpg\";s:8:\"filesize\";i:13072;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:{}}}'),(7922,2817,'_wp_page_template','default'),(7923,2817,'_elementor_edit_mode','builder'),(7924,2817,'_elementor_template_type','wp-page'),(7925,2817,'_elementor_version','3.24.7'),(7926,2817,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/logo.jpg\",\"id\":2748,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"e562253\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FE-TECH-LOGO-FINAL-1.png\",\"id\":2808,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Engineering\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"b254836\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/Far-East-Tool-Vina.jpg\",\"id\":2794,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tools Vina\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"994e0c5\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions as your trusted partner.\",\"sub_title\":\"Our Partners\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Yoshimoto\",\"client_link\":{\"url\":\"https:\\/\\/www.yoshimoto-sangyo.co.jp\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yoshimoto-vietnam.png\",\"id\":2486,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"a49fbc4\"},{\"client_name\":\"Kim Long Motors\",\"client_link\":{\"url\":\"https:\\/\\/kimlongmotor.com.vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/kim-long-motors.png\",\"id\":2485,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"33930a5\"},{\"client_name\":\"Samsung\",\"client_link\":{\"url\":\"https:\\/\\/www.samsung.com\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/samsung.jpg\",\"id\":2484,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"aeee6c2\"},{\"client_name\":\"Komatsu Kogyo\",\"client_link\":{\"url\":\"https:\\/\\/komaz.co.jp\\/english\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/komatsu-kogyo.jpg\",\"id\":2483,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8fc7373\"},{\"_id\":\"ed2e401\",\"client_name\":\"Yuwa Engineering\",\"client_link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yuwa-engineering.jpg\",\"id\":2482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(7927,2817,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(7931,2818,'_wp_page_template','default'),(7932,2818,'_elementor_edit_mode','builder'),(7933,2818,'_elementor_template_type','wp-page'),(7934,2818,'_elementor_version','3.24.7'),(7935,2818,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/logo.jpg\",\"id\":2748,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"e562253\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FE-TECH-LOGO-FINAL-1.png\",\"id\":2808,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Engineering\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"b254836\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/Far-East-Tool-Vina.jpg\",\"id\":2794,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tools Vina\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"994e0c5\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions as your trusted partner.\",\"sub_title\":\"Our Partners\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Yoshimoto\",\"client_link\":{\"url\":\"https:\\/\\/www.yoshimoto-sangyo.co.jp\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yoshimoto-vietnam.png\",\"id\":2486,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"a49fbc4\"},{\"client_name\":\"Kim Long Motors\",\"client_link\":{\"url\":\"https:\\/\\/kimlongmotor.com.vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/kim-long-motors.png\",\"id\":2485,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"33930a5\"},{\"client_name\":\"Samsung\",\"client_link\":{\"url\":\"https:\\/\\/www.samsung.com\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/samsung.jpg\",\"id\":2484,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"aeee6c2\"},{\"client_name\":\"Komatsu Kogyo\",\"client_link\":{\"url\":\"https:\\/\\/komaz.co.jp\\/english\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/komatsu-kogyo.jpg\",\"id\":2483,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8fc7373\"},{\"_id\":\"ed2e401\",\"client_name\":\"Yuwa Engineering\",\"client_link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yuwa-engineering.jpg\",\"id\":2482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(7936,2818,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(7940,2819,'_wp_page_template','default'),(7941,2819,'_elementor_edit_mode','builder'),(7942,2819,'_elementor_template_type','wp-page'),(7943,2819,'_elementor_version','3.24.7'),(7944,2819,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FEHT-logo.jpg\",\"id\":2812,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"e562253\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FE-TECH-LOGO-FINAL.png\",\"id\":2816,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Engineering\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"b254836\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/Far-East-Tool-Vina.jpg\",\"id\":2814,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tools Vina\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"994e0c5\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions as your trusted partner.\",\"sub_title\":\"Our Partners\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Yoshimoto\",\"client_link\":{\"url\":\"https:\\/\\/www.yoshimoto-sangyo.co.jp\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yoshimoto-vietnam.png\",\"id\":2486,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"a49fbc4\"},{\"client_name\":\"Kim Long Motors\",\"client_link\":{\"url\":\"https:\\/\\/kimlongmotor.com.vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/kim-long-motors.png\",\"id\":2485,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"33930a5\"},{\"client_name\":\"Samsung\",\"client_link\":{\"url\":\"https:\\/\\/www.samsung.com\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/samsung.jpg\",\"id\":2484,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"aeee6c2\"},{\"client_name\":\"Komatsu Kogyo\",\"client_link\":{\"url\":\"https:\\/\\/komaz.co.jp\\/english\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/komatsu-kogyo.jpg\",\"id\":2483,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8fc7373\"},{\"_id\":\"ed2e401\",\"client_name\":\"Yuwa Engineering\",\"client_link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yuwa-engineering.jpg\",\"id\":2482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(7945,2819,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(7951,2820,'_wp_attached_file','2024/11/z4379673923151_1f10bec1ef168974349f66b16772c543.jpg'),(7952,2820,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:960;s:4:\"file\";s:59:\"2024/11/z4379673923151_1f10bec1ef168974349f66b16772c543.jpg\";s:8:\"filesize\";i:195265;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:{}}}'),(7953,2821,'_wp_attached_file','2024/11/z5997919286088_1aafc52570d9ee521cb7325aaa3efbbb.jpg'),(7954,2821,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:870;s:6:\"height\";i:1884;s:4:\"file\";s:59:\"2024/11/z5997919286088_1aafc52570d9ee521cb7325aaa3efbbb.jpg\";s:8:\"filesize\";i:189214;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:{}}}'),(7955,2822,'_wp_attached_file','2024/11/z6112022581961_f2a47cd330f690d0a726b0888ff80ab1.jpg'),(7956,2822,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:591;s:6:\"height\";i:1280;s:4:\"file\";s:59:\"2024/11/z6112022581961_f2a47cd330f690d0a726b0888ff80ab1.jpg\";s:8:\"filesize\";i:228872;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(7957,2823,'_wp_attached_file','2024/11/z6112022572357_0cdb065792788d3493b2e389df79a5e2.jpg'),(7958,2823,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:59:\"2024/11/z6112022572357_0cdb065792788d3493b2e389df79a5e2.jpg\";s:8:\"filesize\";i:421726;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(7959,2824,'_wp_attached_file','2024/11/z6112022611669_d154017fd0d3c02db6be468c7db9fa32.jpg'),(7960,2824,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:59:\"2024/11/z6112022611669_d154017fd0d3c02db6be468c7db9fa32.jpg\";s:8:\"filesize\";i:361511;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(7961,2825,'_wp_attached_file','2024/11/z6112035366910_4defd4ad74170bea5d4fa69518dafb6d.jpg'),(7962,2825,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:59:\"2024/11/z6112035366910_4defd4ad74170bea5d4fa69518dafb6d.jpg\";s:8:\"filesize\";i:406522;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(7963,2826,'_wp_attached_file','2024/11/z6112035331028_b1fcc3e9f1979a96aaebf343697989b4.jpg'),(7964,2826,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:960;s:4:\"file\";s:59:\"2024/11/z6112035331028_b1fcc3e9f1979a96aaebf343697989b4.jpg\";s:8:\"filesize\";i:239667;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(7965,2827,'_wp_attached_file','2024/11/z6112035303451_55cd6bcbf16c201a507ca6ac10623d02.jpg'),(7966,2827,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:960;s:4:\"file\";s:59:\"2024/11/z6112035303451_55cd6bcbf16c201a507ca6ac10623d02.jpg\";s:8:\"filesize\";i:119115;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(7967,2828,'_wp_attached_file','2024/11/z6112035333555_19b4ef8a09ed63f106da162eac3d9775.jpg'),(7968,2828,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:960;s:4:\"file\";s:59:\"2024/11/z6112035333555_19b4ef8a09ed63f106da162eac3d9775.jpg\";s:8:\"filesize\";i:270868;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(7969,2829,'_wp_attached_file','2024/11/z6112022609645_43af0256c23b3f39325ac10fe40d3200.jpg'),(7970,2829,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:59:\"2024/11/z6112022609645_43af0256c23b3f39325ac10fe40d3200.jpg\";s:8:\"filesize\";i:395859;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(7971,2830,'_wp_attached_file','2024/11/z6112035380871_0810f1b5bcdd3396a375bf5a785686ae.jpg'),(7972,2830,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1281;s:6:\"height\";i:961;s:4:\"file\";s:59:\"2024/11/z6112035380871_0810f1b5bcdd3396a375bf5a785686ae.jpg\";s:8:\"filesize\";i:479509;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(7973,2831,'_wp_attached_file','2024/11/z6112143350420_5fdf5495fc11f668a8b6e8b865a0670a.jpg'),(7974,2831,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:960;s:4:\"file\";s:59:\"2024/11/z6112143350420_5fdf5495fc11f668a8b6e8b865a0670a.jpg\";s:8:\"filesize\";i:213746;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(7975,2832,'_wp_attached_file','2024/11/z6112159599274_ed84aaa8ae44eb900b332183d18d35ff.jpg'),(7976,2832,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:960;s:4:\"file\";s:59:\"2024/11/z6112159599274_ed84aaa8ae44eb900b332183d18d35ff.jpg\";s:8:\"filesize\";i:300039;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(7977,2619,'_yoast_wpseo_content_score','90'),(7978,2844,'_wp_attached_file','2024/11/z6112523290035_3b7a728aff36d17b39821c04b01ee4d5.jpg'),(7979,2844,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:59:\"2024/11/z6112523290035_3b7a728aff36d17b39821c04b01ee4d5.jpg\";s:8:\"filesize\";i:408201;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:{}}}'),(7980,2845,'_wp_attached_file','2024/11/z6112523303443_aeb69e713b0de04bc8b594cb00fb49ca.jpg'),(7981,2845,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:59:\"2024/11/z6112523303443_aeb69e713b0de04bc8b594cb00fb49ca.jpg\";s:8:\"filesize\";i:413144;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:{}}}'),(7982,2846,'_wp_attached_file','2024/11/z6112035284762_1f2181b896dc72283dffd21ff2accf18.jpg'),(7983,2846,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:960;s:4:\"file\";s:59:\"2024/11/z6112035284762_1f2181b896dc72283dffd21ff2accf18.jpg\";s:8:\"filesize\";i:222141;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(7984,2847,'_wp_attached_file','2024/11/z6112035279331_ec2e9746f1d2b6055f9d822183a20b7b.jpg'),(7985,2847,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:960;s:4:\"file\";s:59:\"2024/11/z6112035279331_ec2e9746f1d2b6055f9d822183a20b7b.jpg\";s:8:\"filesize\";i:227815;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(7986,2848,'_wp_attached_file','2024/11/z6112035401524_aa7e2e59cf891c7dd20122738c01da99.jpg'),(7987,2848,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:59:\"2024/11/z6112035401524_aa7e2e59cf891c7dd20122738c01da99.jpg\";s:8:\"filesize\";i:205580;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(7988,2849,'_wp_attached_file','2024/11/z6112035395698_a7f89619dfa324b6009e13e700d16a52.jpg'),(7989,2849,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:59:\"2024/11/z6112035395698_a7f89619dfa324b6009e13e700d16a52.jpg\";s:8:\"filesize\";i:283212;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(7990,2850,'_wp_attached_file','2024/11/z6112035405011_b0e4efc850356273be1ea0ebf41973d5.jpg'),(7991,2850,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:591;s:4:\"file\";s:59:\"2024/11/z6112035405011_b0e4efc850356273be1ea0ebf41973d5.jpg\";s:8:\"filesize\";i:248655;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(7992,2851,'_wp_attached_file','2024/11/z6112143335944_8a90c104b6e5a3531a1b8d7a439e6db3.jpg'),(7993,2851,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:960;s:4:\"file\";s:59:\"2024/11/z6112143335944_8a90c104b6e5a3531a1b8d7a439e6db3.jpg\";s:8:\"filesize\";i:228635;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(7994,2852,'_wp_attached_file','2024/11/z6112143337763_e6237e74ed00be98c9396eb0b6012587.jpg'),(7995,2852,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:960;s:4:\"file\";s:59:\"2024/11/z6112143337763_e6237e74ed00be98c9396eb0b6012587.jpg\";s:8:\"filesize\";i:258126;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(7996,2853,'_wp_attached_file','2024/11/z6112523246386_fb69855463997d37d3a5b9189e8633a5.jpg'),(7997,2853,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:956;s:6:\"height\";i:1276;s:4:\"file\";s:59:\"2024/11/z6112523246386_fb69855463997d37d3a5b9189e8633a5.jpg\";s:8:\"filesize\";i:450859;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:10:\"1636543321\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(7998,2854,'_wp_attached_file','2024/11/z6112523253089_bd1c2eefa8e745863c395bcdd175f37c.jpg'),(7999,2854,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:591;s:4:\"file\";s:59:\"2024/11/z6112523253089_bd1c2eefa8e745863c395bcdd175f37c.jpg\";s:8:\"filesize\";i:211879;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(8000,2855,'_wp_attached_file','2024/11/z6112523265271_a713cd9cae68eb5e8623d240ee9c0f46.jpg'),(8001,2855,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:59:\"2024/11/z6112523265271_a713cd9cae68eb5e8623d240ee9c0f46.jpg\";s:8:\"filesize\";i:439831;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:{}}}'),(8002,2856,'_wp_attached_file','2024/11/z6112523276603_ec2b0734a46271e77485348ecdebe9a5.jpg'),(8003,2856,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:960;s:4:\"file\";s:59:\"2024/11/z6112523276603_ec2b0734a46271e77485348ecdebe9a5.jpg\";s:8:\"filesize\";i:308021;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(8004,2858,'_wp_attached_file','2024/11/z6112475603193_4db6faf7d997e4dfc5f44d0ee583aadf.jpg'),(8005,2858,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:59:\"2024/11/z6112475603193_4db6faf7d997e4dfc5f44d0ee583aadf.jpg\";s:8:\"filesize\";i:343846;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:{}}}'),(8006,2859,'_wp_attached_file','2024/11/z6112475604993_b73f539ad31fe52fc630284c8d45186a.jpg'),(8007,2859,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:59:\"2024/11/z6112475604993_b73f539ad31fe52fc630284c8d45186a.jpg\";s:8:\"filesize\";i:372398;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:{}}}'),(8008,2860,'_wp_attached_file','2024/11/z6112475612691_cce8a7d594d6f4dcbe56f5186a04fefb.jpg'),(8009,2860,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:59:\"2024/11/z6112475612691_cce8a7d594d6f4dcbe56f5186a04fefb.jpg\";s:8:\"filesize\";i:336288;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:{}}}'),(8010,2861,'_wp_attached_file','2024/11/z6112475615814_eaf58890986bbd9b960debe8d62378b9.jpg'),(8011,2861,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:59:\"2024/11/z6112475615814_eaf58890986bbd9b960debe8d62378b9.jpg\";s:8:\"filesize\";i:388507;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:{}}}'),(8012,2862,'_wp_attached_file','2024/11/z6112398373909_156bfb41f9711a15035cfede452ce1a9.jpg'),(8013,2862,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:720;s:4:\"file\";s:59:\"2024/11/z6112398373909_156bfb41f9711a15035cfede452ce1a9.jpg\";s:8:\"filesize\";i:119874;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:10:\"1636541713\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(8014,2863,'_wp_attached_file','2024/11/z6112398387244_688f2cffa04694e309441b36b11b142f.jpg'),(8015,2863,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:450;s:4:\"file\";s:59:\"2024/11/z6112398387244_688f2cffa04694e309441b36b11b142f.jpg\";s:8:\"filesize\";i:76048;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:10:\"1636541713\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(8016,2864,'_wp_attached_file','2024/11/z6112398406318_cba797f1e93e87ade947c770d0d40a8f.jpg'),(8017,2864,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:720;s:4:\"file\";s:59:\"2024/11/z6112398406318_cba797f1e93e87ade947c770d0d40a8f.jpg\";s:8:\"filesize\";i:163016;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:10:\"1636541712\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(8018,2865,'_wp_attached_file','2024/11/z6112398417726_5127342a763e9e24abc186f97a44aff8.jpg'),(8019,2865,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:720;s:4:\"file\";s:59:\"2024/11/z6112398417726_5127342a763e9e24abc186f97a44aff8.jpg\";s:8:\"filesize\";i:106367;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:10:\"1636541713\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(8020,2866,'_wp_attached_file','2024/11/z6112399243827_06cc313a2878998df579b1c3dcedc86d.jpg'),(8021,2866,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:451;s:6:\"height\";i:960;s:4:\"file\";s:59:\"2024/11/z6112399243827_06cc313a2878998df579b1c3dcedc86d.jpg\";s:8:\"filesize\";i:117252;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:10:\"1636543175\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(8022,2867,'_wp_attached_file','2024/11/z6112402158092_30b348ffeb1bd490d6abf2ba9eb85786.jpg'),(8023,2867,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:59:\"2024/11/z6112402158092_30b348ffeb1bd490d6abf2ba9eb85786.jpg\";s:8:\"filesize\";i:225688;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:{}}}'),(8024,2868,'_wp_attached_file','2024/11/z6112402161733_fb456855a646106f5d0896b14dc1774a.jpg'),(8025,2868,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:609;s:4:\"file\";s:59:\"2024/11/z6112402161733_fb456855a646106f5d0896b14dc1774a.jpg\";s:8:\"filesize\";i:118804;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(8026,2869,'_wp_attached_file','2024/11/z6112405304306_a9b1bb837aea79fbe537c183eb90c6c1.jpg'),(8027,2869,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:591;s:4:\"file\";s:59:\"2024/11/z6112405304306_a9b1bb837aea79fbe537c183eb90c6c1.jpg\";s:8:\"filesize\";i:196809;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(8028,2870,'_wp_attached_file','2024/11/z6112407952259_47d9353a1faa9e7f704c496b431fc2e8.jpg'),(8029,2870,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:59:\"2024/11/z6112407952259_47d9353a1faa9e7f704c496b431fc2e8.jpg\";s:8:\"filesize\";i:1842842;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:{}}}'),(8030,2871,'_wp_attached_file','2024/11/z6112407943622_643893c3e779b10c7addfe792dde6674.jpg'),(8031,2871,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:59:\"2024/11/z6112407943622_643893c3e779b10c7addfe792dde6674.jpg\";s:8:\"filesize\";i:1148105;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:{}}}'),(8032,2872,'_wp_attached_file','2024/11/z6112407932531_75c831c196d633f15a7d2ac8ca23dd73.jpg'),(8033,2872,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:59:\"2024/11/z6112407932531_75c831c196d633f15a7d2ac8ca23dd73.jpg\";s:8:\"filesize\";i:1231555;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:{}}}'),(8034,2873,'_wp_attached_file','2024/11/z6112475733731_0f87c5cb35371e36f87164b091dee9e7.jpg'),(8035,2873,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:59:\"2024/11/z6112475733731_0f87c5cb35371e36f87164b091dee9e7.jpg\";s:8:\"filesize\";i:268312;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:{}}}'),(8036,2874,'_wp_attached_file','2024/11/z6112475735545_8ad6ec49c1c9ca3aa9ad469ee5e61195.jpg'),(8037,2874,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:59:\"2024/11/z6112475735545_8ad6ec49c1c9ca3aa9ad469ee5e61195.jpg\";s:8:\"filesize\";i:242936;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:{}}}'),(8038,2875,'_wp_attached_file','2024/11/z6112475588456_c7783008f04cb1da5c4706aaf8251962.jpg'),(8039,2875,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:59:\"2024/11/z6112475588456_c7783008f04cb1da5c4706aaf8251962.jpg\";s:8:\"filesize\";i:247534;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:{}}}'),(8040,2878,'_wp_attached_file','2024/11/z4749871034728_13d43ad63eed2b6e7e1496638d7853af.jpg'),(8041,2878,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2568;s:6:\"height\";i:1926;s:4:\"file\";s:59:\"2024/11/z4749871034728_13d43ad63eed2b6e7e1496638d7853af.jpg\";s:8:\"filesize\";i:1000505;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(8042,2879,'_wp_attached_file','2024/11/z4749871031095_9182ad19e7ac8defae8c32b8cc44b440.jpg'),(8043,2879,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2568;s:6:\"height\";i:1926;s:4:\"file\";s:59:\"2024/11/z4749871031095_9182ad19e7ac8defae8c32b8cc44b440.jpg\";s:8:\"filesize\";i:755277;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(8044,2880,'_wp_attached_file','2024/11/z4749871031211_ed4fe9d663e0c07fddaaef221a1144c7.jpg'),(8045,2880,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2568;s:6:\"height\";i:1926;s:4:\"file\";s:59:\"2024/11/z4749871031211_ed4fe9d663e0c07fddaaef221a1144c7.jpg\";s:8:\"filesize\";i:677477;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(8046,2881,'_wp_attached_file','2024/11/z4614273923773_699996016c1c52f0895299d5358fe8a6.jpg'),(8047,2881,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:956;s:6:\"height\";i:1276;s:4:\"file\";s:59:\"2024/11/z4614273923773_699996016c1c52f0895299d5358fe8a6.jpg\";s:8:\"filesize\";i:211280;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(8048,2882,'_wp_attached_file','2024/11/z4614243915927_45cd79faef986c5ca9f1ed80434ca840.jpg'),(8049,2882,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:956;s:6:\"height\";i:1276;s:4:\"file\";s:59:\"2024/11/z4614243915927_45cd79faef986c5ca9f1ed80434ca840.jpg\";s:8:\"filesize\";i:152156;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(8050,2883,'_wp_attached_file','2024/11/z4859515672356_2e4104881b39c559fe9d687370a67394.jpg'),(8051,2883,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:946;s:4:\"file\";s:59:\"2024/11/z4859515672356_2e4104881b39c559fe9d687370a67394.jpg\";s:8:\"filesize\";i:487126;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(8052,2884,'_wp_attached_file','2024/11/z5095181853127_bdd8a417c860e722ad4f5e79f91dea8f.jpg'),(8053,2884,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:960;s:4:\"file\";s:59:\"2024/11/z5095181853127_bdd8a417c860e722ad4f5e79f91dea8f.jpg\";s:8:\"filesize\";i:255290;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(8054,2885,'_wp_attached_file','2024/11/z5095181851706_d23ac9a42e1be2ea98d323da1f663eaf.jpg'),(8055,2885,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:960;s:4:\"file\";s:59:\"2024/11/z5095181851706_d23ac9a42e1be2ea98d323da1f663eaf.jpg\";s:8:\"filesize\";i:278015;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(8056,2889,'_wp_attached_file','2024/11/z6112342749062_a373f44d190f5f95bac710bb2609c8dc.jpg'),(8057,2889,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:59:\"2024/11/z6112342749062_a373f44d190f5f95bac710bb2609c8dc.jpg\";s:8:\"filesize\";i:157993;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(8058,2890,'_wp_attached_file','2024/11/z6112342752051_e8e5731247c67e8d13ba9032e0df2071.jpg'),(8059,2890,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:59:\"2024/11/z6112342752051_e8e5731247c67e8d13ba9032e0df2071.jpg\";s:8:\"filesize\";i:181469;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(8060,2891,'_wp_attached_file','2024/11/z6112342758960_0cf70e0e2fc3c20f1fcdfa00de30734e.jpg'),(8061,2891,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:59:\"2024/11/z6112342758960_0cf70e0e2fc3c20f1fcdfa00de30734e.jpg\";s:8:\"filesize\";i:223443;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(8062,2892,'_wp_attached_file','2024/11/z6112342779226_b9935186416483d88d8d4a3741c445ac.jpg'),(8063,2892,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:960;s:4:\"file\";s:59:\"2024/11/z6112342779226_b9935186416483d88d8d4a3741c445ac.jpg\";s:8:\"filesize\";i:204534;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(8064,2893,'_wp_attached_file','2024/11/z6112343562589_0c62c0c2a11f68e02e7302f2022d802f.jpg'),(8065,2893,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:59:\"2024/11/z6112343562589_0c62c0c2a11f68e02e7302f2022d802f.jpg\";s:8:\"filesize\";i:193011;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(8066,2894,'_wp_attached_file','2024/11/z6112343020134_4e3fd602c682b52d16603b05d64b5b3b.jpg');
INSERT INTO `wp_postmeta` VALUES (8067,2894,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:59:\"2024/11/z6112343020134_4e3fd602c682b52d16603b05d64b5b3b.jpg\";s:8:\"filesize\";i:187389;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(8068,2895,'_wp_attached_file','2024/11/z6112343022575_b75ed6f8141de2096bd693992964bc07.jpg'),(8069,2895,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:59:\"2024/11/z6112343022575_b75ed6f8141de2096bd693992964bc07.jpg\";s:8:\"filesize\";i:190035;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(8070,2896,'_wp_attached_file','2024/11/z6112343024138_c84a3e4bb6f5d346d7a6e09e56086f61.jpg'),(8071,2896,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:583;s:6:\"height\";i:1280;s:4:\"file\";s:59:\"2024/11/z6112343024138_c84a3e4bb6f5d346d7a6e09e56086f61.jpg\";s:8:\"filesize\";i:114773;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(8072,2897,'_wp_attached_file','2024/11/z6112343028537_b1ff9fb76f888c3ed07f01643f0020f0.jpg'),(8073,2897,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:59:\"2024/11/z6112343028537_b1ff9fb76f888c3ed07f01643f0020f0.jpg\";s:8:\"filesize\";i:230642;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(8074,2898,'_wp_attached_file','2024/11/z6112160416378_bce4411fe74027d63005630fc7884a80.jpg'),(8075,2898,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:598;s:6:\"height\";i:1280;s:4:\"file\";s:59:\"2024/11/z6112160416378_bce4411fe74027d63005630fc7884a80.jpg\";s:8:\"filesize\";i:56125;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:{}}}'),(8076,2899,'_wp_attached_file','2024/11/z6112161045939_2fab496392927de92680189440d9df11.jpg'),(8077,2899,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:59:\"2024/11/z6112161045939_2fab496392927de92680189440d9df11.jpg\";s:8:\"filesize\";i:380100;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:{}}}'),(8078,2900,'_wp_attached_file','2024/11/z6112162162899_9fa7af3084979b141c9a5af02bd64b8f.jpg'),(8079,2900,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:4:\"file\";s:59:\"2024/11/z6112162162899_9fa7af3084979b141c9a5af02bd64b8f.jpg\";s:8:\"filesize\";i:293530;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:{}}}'),(8080,2901,'_wp_attached_file','2024/11/z6112162913774_3cf6b72cb16904b5c0aa22911ad9062c.jpg'),(8081,2901,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:59:\"2024/11/z6112162913774_3cf6b72cb16904b5c0aa22911ad9062c.jpg\";s:8:\"filesize\";i:893662;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:{}}}'),(8082,2903,'_wp_attached_file','2024/11/z6112380533580_58467dd3a6c609d250f917b7cb523083.jpg'),(8083,2903,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1152;s:6:\"height\";i:2560;s:4:\"file\";s:59:\"2024/11/z6112380533580_58467dd3a6c609d250f917b7cb523083.jpg\";s:8:\"filesize\";i:357596;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:{}}}'),(8084,2904,'_wp_attached_file','2024/11/z6112380547520_189c3d8c494143167c5bea938b7789c8.jpg'),(8085,2904,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1152;s:6:\"height\";i:2560;s:4:\"file\";s:59:\"2024/11/z6112380547520_189c3d8c494143167c5bea938b7789c8.jpg\";s:8:\"filesize\";i:268426;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:{}}}'),(8086,2905,'_wp_attached_file','2024/11/z6112380509099_8e38c91b9a664647d606ed55ecccc8ae.jpg'),(8087,2905,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1152;s:6:\"height\";i:2560;s:4:\"file\";s:59:\"2024/11/z6112380509099_8e38c91b9a664647d606ed55ecccc8ae.jpg\";s:8:\"filesize\";i:390023;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:{}}}'),(8088,2906,'_wp_attached_file','2024/11/z4749871065923_4d7a315a6e76ccde22ddab12dbdcd6c3.jpg'),(8089,2906,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2568;s:6:\"height\";i:1926;s:4:\"file\";s:59:\"2024/11/z4749871065923_4d7a315a6e76ccde22ddab12dbdcd6c3.jpg\";s:8:\"filesize\";i:725062;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(8090,2907,'_wp_attached_file','2024/11/z4749871059944_22ebc1e4e9fef7e1a4c18a87b17ad83f.jpg'),(8091,2907,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2568;s:6:\"height\";i:1926;s:4:\"file\";s:59:\"2024/11/z4749871059944_22ebc1e4e9fef7e1a4c18a87b17ad83f.jpg\";s:8:\"filesize\";i:955700;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(8092,2908,'_wp_attached_file','2024/11/z4749871062649_2ef68ba42152c462b7730e250fa0695b.jpg'),(8093,2908,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2568;s:6:\"height\";i:1926;s:4:\"file\";s:59:\"2024/11/z4749871062649_2ef68ba42152c462b7730e250fa0695b.jpg\";s:8:\"filesize\";i:812771;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(8094,2909,'_wp_attached_file','2024/11/z6112380520686_e42a34abefc41f7baa77f40a51e11e10.jpg'),(8095,2909,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1152;s:6:\"height\";i:2560;s:4:\"file\";s:59:\"2024/11/z6112380520686_e42a34abefc41f7baa77f40a51e11e10.jpg\";s:8:\"filesize\";i:525750;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:{}}}'),(8096,2910,'_wp_attached_file','2024/11/z6112380501656_5b9317f1571553500813fa23f5ffd678.jpg'),(8097,2910,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1152;s:6:\"height\";i:2560;s:4:\"file\";s:59:\"2024/11/z6112380501656_5b9317f1571553500813fa23f5ffd678.jpg\";s:8:\"filesize\";i:333028;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:{}}}'),(8098,2911,'_wp_attached_file','2024/11/z6112380524857_d617d3c8ff36c93a8360aeb9239dc924.jpg'),(8099,2911,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1152;s:4:\"file\";s:59:\"2024/11/z6112380524857_d617d3c8ff36c93a8360aeb9239dc924.jpg\";s:8:\"filesize\";i:511319;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:{}}}'),(8100,2915,'_wp_attached_file','2024/11/z6112427132452_1dc48d6b077820afa8c47b96d3918f22.jpg'),(8101,2915,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:59:\"2024/11/z6112427132452_1dc48d6b077820afa8c47b96d3918f22.jpg\";s:8:\"filesize\";i:647025;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:{}}}'),(8102,2916,'_wp_attached_file','2024/11/z6112427136415_a92631bc5fc9cba8b18696aacf6afcb5.jpg'),(8103,2916,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:590;s:6:\"height\";i:1280;s:4:\"file\";s:59:\"2024/11/z6112427136415_a92631bc5fc9cba8b18696aacf6afcb5.jpg\";s:8:\"filesize\";i:75631;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:{}}}'),(8104,2917,'_wp_attached_file','2024/11/z6112427143608_0e611231c1efc187f3162f79bf802d9e.jpg'),(8105,2917,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:590;s:6:\"height\";i:1280;s:4:\"file\";s:59:\"2024/11/z6112427143608_0e611231c1efc187f3162f79bf802d9e.jpg\";s:8:\"filesize\";i:122633;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:{}}}'),(8106,2918,'_wp_attached_file','2024/11/z6112427145342_1981e17957820257bc6cc69dca8d1a6a.jpg'),(8107,2918,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:590;s:6:\"height\";i:1280;s:4:\"file\";s:59:\"2024/11/z6112427145342_1981e17957820257bc6cc69dca8d1a6a.jpg\";s:8:\"filesize\";i:72056;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:{}}}'),(8108,2919,'_wp_attached_file','2024/11/z6112431685389_a7fb16bd81f123c2bfc6a16da53debf2.jpg'),(8109,2919,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:59:\"2024/11/z6112431685389_a7fb16bd81f123c2bfc6a16da53debf2.jpg\";s:8:\"filesize\";i:121416;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:{}}}'),(8110,2920,'_wp_attached_file','2024/11/z6112431686395_bfab2b01f79ca6c359bec18f3bbadd26.jpg'),(8111,2920,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:592;s:4:\"file\";s:59:\"2024/11/z6112431686395_bfab2b01f79ca6c359bec18f3bbadd26.jpg\";s:8:\"filesize\";i:342196;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:{}}}'),(8112,2921,'_wp_attached_file','2024/11/z6112035271011_4c2ce6e425aafedb041eb23967031655.jpg'),(8113,2921,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:59:\"2024/11/z6112035271011_4c2ce6e425aafedb041eb23967031655.jpg\";s:8:\"filesize\";i:320407;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(8114,2922,'_wp_attached_file','2024/11/z6112427126027_f0c082273a59f666b09963ae9bbe5130.jpg'),(8115,2922,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:59:\"2024/11/z6112427126027_f0c082273a59f666b09963ae9bbe5130.jpg\";s:8:\"filesize\";i:171408;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:{}}}'),(8116,2923,'_wp_attached_file','2024/11/z6112427126859_88eeb6c98a738fc61976f7654b6d11a9.jpg'),(8117,2923,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:59:\"2024/11/z6112427126859_88eeb6c98a738fc61976f7654b6d11a9.jpg\";s:8:\"filesize\";i:183446;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:{}}}'),(8118,2924,'_wp_attached_file','2024/11/z6112427127062_0723f7644f5d182c87b7d93725c07ce0.jpg'),(8119,2924,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:59:\"2024/11/z6112427127062_0723f7644f5d182c87b7d93725c07ce0.jpg\";s:8:\"filesize\";i:242066;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:{}}}'),(8120,2927,'_wp_attached_file','2024/11/z5960268346049_d526596f8ddfc4db5149cdf4c2a86994.jpg'),(8121,2927,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1152;s:6:\"height\";i:2560;s:4:\"file\";s:59:\"2024/11/z5960268346049_d526596f8ddfc4db5149cdf4c2a86994.jpg\";s:8:\"filesize\";i:352927;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:{}}}'),(8122,2928,'_wp_attached_file','2024/11/z6112404623542_5b0849b2bcc4cd3b845977435309590a.jpg'),(8123,2928,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:59:\"2024/11/z6112404623542_5b0849b2bcc4cd3b845977435309590a.jpg\";s:8:\"filesize\";i:288864;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(8124,2929,'_wp_attached_file','2024/11/z4585711522486_378e8c68f46ae66fae3a9ecca6d6e086.jpg'),(8125,2929,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:946;s:6:\"height\";i:2048;s:4:\"file\";s:59:\"2024/11/z4585711522486_378e8c68f46ae66fae3a9ecca6d6e086.jpg\";s:8:\"filesize\";i:425586;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(8126,2930,'_wp_attached_file','2024/11/z4449983141239_d83dcc0273bcc1b41d2586ff272b1265.jpg'),(8127,2930,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:59:\"2024/11/z4449983141239_d83dcc0273bcc1b41d2586ff272b1265.jpg\";s:8:\"filesize\";i:284571;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(8128,2931,'_wp_attached_file','2024/11/z4584726243432_c37cf14cc34559d45891cddf89e5daba.jpg'),(8129,2931,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:946;s:4:\"file\";s:59:\"2024/11/z4584726243432_c37cf14cc34559d45891cddf89e5daba.jpg\";s:8:\"filesize\";i:494597;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(8130,2932,'_wp_attached_file','2024/11/z5953231842216_872f5a7181f5ce3d18a4b1eebe17896c.jpg'),(8131,2932,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1311;s:6:\"height\";i:2560;s:4:\"file\";s:59:\"2024/11/z5953231842216_872f5a7181f5ce3d18a4b1eebe17896c.jpg\";s:8:\"filesize\";i:234619;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:{}}}'),(8144,2937,'_elementor_edit_mode','builder'),(8145,2937,'_elementor_template_type','wp-page'),(8146,2937,'_elementor_version','3.24.7'),(8147,2937,'_wp_page_template','default'),(8148,2937,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=oVQ4_PIqgz8\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have started to open a store on Alibaba to connect with orders from around the world.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"icon_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"cnc-machining-services|service-category\",\"material-forming-services|service-category\"],\"ct_animate\":\"wow fadeInUp\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always provide a sense of security in terms of quality and progress.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#85B23B\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8149,2937,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(8153,2938,'_elementor_edit_mode','builder'),(8154,2938,'_elementor_template_type','wp-page'),(8155,2938,'_elementor_version','3.24.7'),(8156,2938,'_wp_page_template','default'),(8157,2938,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=oVQ4_PIqgz8\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have started to open a store on Alibaba to connect with orders from around the world.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"icon_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/banner-icon-01.png\",\"id\":889,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"cnc-machining-services|service-category\",\"material-forming-services|service-category\"],\"ct_animate\":\"wow fadeInUp\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always provide a sense of security in terms of quality and progress.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#85B23B\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8158,2938,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(8162,2939,'_elementor_edit_mode','builder'),(8163,2939,'_elementor_template_type','wp-page'),(8164,2939,'_elementor_version','3.24.7'),(8165,2939,'_wp_page_template','default'),(8166,2939,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=oVQ4_PIqgz8\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have started to open a store on Alibaba to connect with orders from around the world.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"icon_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"cnc-machining-services|service-category\",\"material-forming-services|service-category\"],\"ct_animate\":\"wow fadeInUp\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always provide a sense of security in terms of quality and progress.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#85B23B\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8167,2939,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(8173,2940,'_elementor_edit_mode','builder'),(8174,2940,'_elementor_template_type','wp-page'),(8175,2940,'_elementor_version','3.24.7'),(8176,2940,'_wp_page_template','default'),(8177,2940,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=oVQ4_PIqgz8\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have started to open a store on Alibaba to connect with orders from around the world.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"icon_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"cnc-machining-services|service-category\",\"material-forming-services|service-category\"],\"ct_animate\":\"wow fadeInUp\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always provide a sense of security in terms of quality and progress.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#85B23B\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8178,2940,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(8182,2941,'_elementor_edit_mode','builder'),(8183,2941,'_elementor_template_type','wp-page'),(8184,2941,'_elementor_version','3.24.7'),(8185,2941,'_wp_page_template','default'),(8186,2941,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=oVQ4_PIqgz8\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have started to open a store on Alibaba to connect with orders from around the world.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"icon_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"cnc-machining-services|service-category\",\"material-forming-services|service-category\"],\"ct_animate\":\"wow fadeInUp\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always provide a sense of security in terms of quality and progress.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#85B23B\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8187,2941,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(8191,2942,'_elementor_edit_mode','builder'),(8192,2942,'_elementor_template_type','wp-page'),(8193,2942,'_elementor_version','3.24.7'),(8194,2942,'_wp_page_template','default'),(8195,2942,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=oVQ4_PIqgz8\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have started to open a store on Alibaba to connect with orders from around the world.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"icon_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"cnc-machining-services|service-category\",\"material-forming-services|service-category\"],\"ct_animate\":\"wow fadeInUp\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always provide a sense of security in terms of quality and progress.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#85B23B\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8196,2942,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(8202,2943,'_elementor_edit_mode','builder'),(8203,2943,'_elementor_template_type','wp-page'),(8204,2943,'_elementor_version','3.24.7'),(8205,2943,'_wp_page_template','default'),(8206,2943,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=oVQ4_PIqgz8\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have started to open a store on Alibaba to connect with orders from around the world.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"icon_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"cnc-machining-services|service-category\",\"material-forming-services|service-category\"],\"ct_animate\":\"wow fadeInUp\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always provide a sense of security in terms of quality and progress.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#85B23B\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8207,2943,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(8211,2944,'_elementor_edit_mode','builder'),(8212,2944,'_elementor_template_type','wp-page'),(8213,2944,'_elementor_version','3.24.7'),(8214,2944,'_wp_page_template','default'),(8215,2944,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=oVQ4_PIqgz8\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have started to open a store on Alibaba to connect with orders from around the world.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6521921\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"layout\":\"2\",\"icon_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"cnc-machining-services|service-category\",\"material-forming-services|service-category\"],\"ct_animate\":\"wow fadeInUp\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always provide a sense of security in terms of quality and progress.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#85B23B\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8216,2944,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(8220,2945,'_elementor_edit_mode','builder'),(8221,2945,'_elementor_template_type','wp-page'),(8222,2945,'_elementor_version','3.24.7'),(8223,2945,'_wp_page_template','default'),(8224,2945,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=oVQ4_PIqgz8\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have started to open a store on Alibaba to connect with orders from around the world.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0e89391\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"cnc-machining-services|service-category\",\"material-forming-services|service-category\"],\"ct_animate\":\"wow fadeInUp\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always provide a sense of security in terms of quality and progress.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#85B23B\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8225,2945,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(8249,2959,'_wp_page_template','default'),(8250,2959,'_elementor_edit_mode','builder'),(8251,2959,'_elementor_template_type','wp-post'),(8252,2959,'_elementor_version','3.24.7'),(8253,2959,'_elementor_data','[{\"id\":\"7225c724\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#060606E6\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer.png\",\"id\":87},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"109cef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.3},\"elements\":[{\"id\":\"6667e1a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/logo.jpg\",\"id\":2748,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae6ecf2\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Nh\\u00e0 m\\u00e1y 1: S\\u1ed1 4 \\u0110o\\u00e0n Th\\u1ecb Kia, \\u1ea4p \\u0110\\u00f4ng Chi\\u00eau, Ph\\u01b0\\u1eddng T\\u00e2n \\u0110\\u00f4ng Hi\\u1ec7p, Th\\u00e0nh ph\\u1ed1 D\\u0129 An, B\\u00ecnh D\\u01b0\\u01a1ng, Vi\\u1ec7t Nam\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}},{\"content\":\"Nh\\u00e0 m\\u00e1y 2: C\\u1ee5m c\\u00f4ng nghi\\u1ec7p Kh\\u1eafc Ni\\u1ec7m, Ph\\u01b0\\u1eddng Kh\\u1eafc Ni\\u1ec7m, Th\\u00e0nh ph\\u1ed1 B\\u1eafc Ninh, B\\u1eafc Ninh, Vi\\u1ec7t Nam\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"be1a6dd\"},{\"content\":\"Nh\\u00e0 m\\u00e1y 3: S\\u1ed1 1476 \\u0110\\u01b0\\u1eddng Ph\\u1ed1 V\\u00e1, Ph\\u01b0\\u1eddng H\\u1ea1p L\\u0129nh, Th\\u00e0nh ph\\u1ed1 B\\u1eafc Ninh, B\\u1eafc Ninh, Vi\\u1ec7t Nam\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9fbfa9d\"},{\"content\":\"0968 86 03 86\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"712a43be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.664,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e4e262b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Menu\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6e682e5b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"75\",\"style\":\"tow-col-light\",\"link_color_hover\":\"#F9A244\",\"line_color_hover\":\"#F9A244\",\"menu_align\":\"left\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"e174b97\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gi\\u1edd m\\u1edf c\\u1eeda\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"1e0523b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Th\\u1ee9 Hai - Ch\\u1ee7 Nh\\u1eadt: 24\\/24<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ab76a16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7},\"elements\":[{\"id\":\"37a5e636\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"aa15610\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#85B23B\",\"padding\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"040\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2487ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40d8f8a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u0110\\u0103ng k\\u00fd \\u0111\\u1ec3 nh\\u1eadn th\\u00f4ng b\\u00e1o, blog m\\u1edbi nh\\u1ea5t, \\u00fd t\\u01b0\\u1edfng v\\u00e0 g\\u00f3c nh\\u00ecn c\\u1ee7a ch\\u00fang t\\u00f4i.<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d21d208\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"27383ab2\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin-box\",\"library\":\"material\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24b98c01\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"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},\"gap\":\"extended\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a6c11e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53be024\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"5990603\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"7f874a5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright @2024 of Far East High Tech Ltd. Co.<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_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},\"_css_classes\":\"ct-copyright\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8254,2959,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:2:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:1;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:16:\"link_color_hover\";i:1;s:16:\"line_color_hover\";i:1;s:10:\"menu_align\";i:1;s:17:\"menu_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:13:\"ct_newsletter\";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:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";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:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:1;}}}}}'),(8259,2959,'_edit_last','1'),(8260,2959,'_yoast_wpseo_estimated-reading-time-minutes','2'),(8261,2960,'_elementor_edit_mode','builder'),(8262,2960,'_wp_page_template','default'),(8263,2960,'_elementor_template_type','wp-post'),(8264,2960,'_elementor_version','3.24.7'),(8265,2960,'_elementor_data','[{\"id\":\"7225c724\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#060606E6\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer.png\",\"id\":87},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"109cef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.3},\"elements\":[{\"id\":\"6667e1a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/logo.jpg\",\"id\":2748,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae6ecf2\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Factory 1: Khac Niem Industrial Cluster, Khac Niem Ward, Bac Ninh City, Bac Ninh Province\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}},{\"content\":\"Factory 2: 176\\/9 Nguyen Thi Tuoi, Tan Phuoc Quarter, Tan Binh Ward, Di An City, Binh Duong\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"be1a6dd\"},{\"content\":\"0968 86 03 86\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"712a43be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.664,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e4e262b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Menu\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6e682e5b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"39\",\"style\":\"tow-col-light\",\"link_color_hover\":\"#F9A244\",\"line_color_hover\":\"#F9A244\",\"menu_align\":\"left\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"e174b97\",\"elType\":\"widget\",\"settings\":{\"title\":\"Open Hours\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"1e0523b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Mon - Sun: 24\\/24<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ab76a16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7},\"elements\":[{\"id\":\"37a5e636\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"aa15610\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#85B23B\",\"padding\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"040\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2487ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40d8f8a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sign up for alerts, our latest blogs, thoughts, and insights.\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d21d208\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"27383ab2\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin-box\",\"library\":\"material\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24b98c01\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"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},\"gap\":\"extended\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a6c11e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53be024\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"5990603\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"7f874a5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright @2024 of Far East High Tech Ltd. Co.<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_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},\"_css_classes\":\"ct-copyright\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8266,2960,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:2:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:1;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:16:\"link_color_hover\";i:1;s:16:\"line_color_hover\";i:1;s:10:\"menu_align\";i:1;s:17:\"menu_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:13:\"ct_newsletter\";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:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";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:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:1;}}}}}'),(8270,2959,'_edit_lock','1742182693:1'),(8271,2961,'_wp_page_template','default'),(8272,2961,'_elementor_edit_mode','builder'),(8273,2961,'_elementor_template_type','wp-post'),(8274,2961,'_elementor_version','3.24.7'),(8275,2961,'_elementor_data','[{\"id\":\"7225c724\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#060606E6\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer.png\",\"id\":87},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"109cef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.3},\"elements\":[{\"id\":\"6667e1a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/logo.jpg\",\"id\":2748,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae6ecf2\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"\\u5de5\\u5834 1: \\u30d9\\u30c8\\u30ca\\u30e0\\u3001\\u30d3\\u30f3\\u30ba\\u30aa\\u30f3\\u7701\\u3001\\u30b8\\u30a2\\u30f3\\u5e02\\u3001\\u30bf\\u30f3\\u30fb\\u30c9\\u30f3\\u30fb\\u30d2\\u30a8\\u30c3\\u30d7\\u533a\\u3001\\u30c9\\u30f3\\u30c1\\u30a8\\u30a6\\u6751\\u30014\\u756a\\u5730 \\u30c9\\u30a2\\u30f3\\u30fb\\u30c6\\u30a3\\u30fb\\u30ad\\u30a2\\u901a\\u308a\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}},{\"content\":\"\\u5de5\\u5834 2: \\u30d9\\u30c8\\u30ca\\u30e0\\u3001\\u30d0\\u30af\\u30cb\\u30f3\\u7701\\u3001\\u30d0\\u30af\\u30cb\\u30f3\\u5e02\\u3001\\u30ab\\u30c3\\u30af\\u30fb\\u30cb\\u30a8\\u30e0\\u533a\\u3001\\u30ab\\u30c3\\u30af\\u30fb\\u30cb\\u30a8\\u30e0\\u5de5\\u696d\\u30af\\u30e9\\u30b9\\u30bf\\u30fc\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"be1a6dd\"},{\"content\":\"\\u5de5\\u5834 3: \\u30d9\\u30c8\\u30ca\\u30e0\\u3001\\u30d0\\u30af\\u30cb\\u30f3\\u7701\\u3001\\u30d0\\u30af\\u30cb\\u30f3\\u5e02\\u3001\\u30cf\\u30c3\\u30d7\\u30fb\\u30ea\\u30f3\\u533a\\u30011476\\u756a\\u5730 \\u30d5\\u30a9\\u30fb\\u30f4\\u30a1\\u30fc\\u901a\\u308a\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"72dbf58\"},{\"content\":\"0968 86 03 86\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"712a43be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.664,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e4e262b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Menu\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6e682e5b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"89\",\"style\":\"tow-col-light\",\"link_color_hover\":\"#F9A244\",\"line_color_hover\":\"#F9A244\",\"menu_align\":\"left\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"e174b97\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u55b6\\u696d\\u6642\\u9593\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"1e0523b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u6708\\u66dc\\u65e5\\uff5e\\u65e5\\u66dc\\u65e5\\uff1a24\\u6642\\u9593\\u55b6\\u696d<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ab76a16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7},\"elements\":[{\"id\":\"37a5e636\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"aa15610\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#85B23B\",\"padding\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"040\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2487ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40d8f8a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u901a\\u77e5\\u3001\\u6700\\u65b0\\u306e\\u30d6\\u30ed\\u30b0\\u3001\\u30a2\\u30a4\\u30c7\\u30a2\\u3001\\u6d1e\\u5bdf\\u3092\\u53d7\\u3051\\u53d6\\u308b\\u305f\\u3081\\u306b\\u30b5\\u30a4\\u30f3\\u30a2\\u30c3\\u30d7\\u3057\\u3066\\u304f\\u3060\\u3055\\u3044\\u3002<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d21d208\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"27383ab2\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin-box\",\"library\":\"material\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24b98c01\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"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},\"gap\":\"extended\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a6c11e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53be024\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"5990603\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"7f874a5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright @2024 of Far East High Tech Ltd. Co.<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_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},\"_css_classes\":\"ct-copyright\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8276,2961,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:2:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:1;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:16:\"link_color_hover\";i:1;s:16:\"line_color_hover\";i:1;s:10:\"menu_align\";i:1;s:17:\"menu_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:13:\"ct_newsletter\";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:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";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:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:1;}}}}}'),(8281,2961,'_edit_last','1'),(8282,2961,'_edit_lock','1742182732:1'),(8283,2961,'_yoast_wpseo_estimated-reading-time-minutes','2'),(8284,2962,'_elementor_edit_mode','builder'),(8285,2962,'_wp_page_template','default'),(8286,2962,'_elementor_template_type','wp-post'),(8287,2962,'_elementor_version','3.24.7'),(8288,2962,'_elementor_data','[{\"id\":\"7225c724\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#060606E6\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer.png\",\"id\":87},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"109cef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.3},\"elements\":[{\"id\":\"6667e1a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/logo.jpg\",\"id\":2748,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae6ecf2\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Factory 1: Khac Niem Industrial Cluster, Khac Niem Ward, Bac Ninh City, Bac Ninh Province\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}},{\"content\":\"Factory 2: 176\\/9 Nguyen Thi Tuoi, Tan Phuoc Quarter, Tan Binh Ward, Di An City, Binh Duong\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"be1a6dd\"},{\"content\":\"0968 86 03 86\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"712a43be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.664,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e4e262b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Menu\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6e682e5b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"39\",\"style\":\"tow-col-light\",\"link_color_hover\":\"#F9A244\",\"line_color_hover\":\"#F9A244\",\"menu_align\":\"left\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"e174b97\",\"elType\":\"widget\",\"settings\":{\"title\":\"Open Hours\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"1e0523b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Mon - Sun: 24\\/24<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ab76a16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7},\"elements\":[{\"id\":\"37a5e636\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"aa15610\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#85B23B\",\"padding\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"040\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2487ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40d8f8a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sign up for alerts, our latest blogs, thoughts, and insights.\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d21d208\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"27383ab2\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin-box\",\"library\":\"material\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24b98c01\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"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},\"gap\":\"extended\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a6c11e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53be024\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"5990603\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"7f874a5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright @2024 of Far East High Tech Ltd. Co.<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_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},\"_css_classes\":\"ct-copyright\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8289,2962,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:2:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:1;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:16:\"link_color_hover\";i:1;s:16:\"line_color_hover\";i:1;s:10:\"menu_align\";i:1;s:17:\"menu_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:13:\"ct_newsletter\";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:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";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:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:1;}}}}}'),(8293,2961,'_wp_old_slug','footer-jp'),(8294,2961,'rs_page_bg_color',''),(8295,2963,'_wp_page_template','default'),(8296,2963,'_elementor_edit_mode','builder'),(8297,2963,'_elementor_template_type','wp-post'),(8298,2963,'_elementor_version','3.24.7'),(8299,2963,'_elementor_data','[{\"id\":\"7225c724\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#060606E6\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer.png\",\"id\":87},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"109cef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.3},\"elements\":[{\"id\":\"6667e1a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/logo.jpg\",\"id\":2748,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae6ecf2\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Factory 1: Khac Niem Industrial Cluster, Khac Niem Ward, Bac Ninh City, Bac Ninh Province\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}},{\"content\":\"Factory 2: 176\\/9 Nguyen Thi Tuoi, Tan Phuoc Quarter, Tan Binh Ward, Di An City, Binh Duong\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"be1a6dd\"},{\"content\":\"0968 86 03 86\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"712a43be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.664,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e4e262b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Menu\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6e682e5b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"39\",\"style\":\"tow-col-light\",\"link_color_hover\":\"#F9A244\",\"line_color_hover\":\"#F9A244\",\"menu_align\":\"left\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"e174b97\",\"elType\":\"widget\",\"settings\":{\"title\":\"Open Hours\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"1e0523b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Mon - Sun: 24\\/24<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ab76a16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7},\"elements\":[{\"id\":\"37a5e636\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"aa15610\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#85B23B\",\"padding\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"040\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2487ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40d8f8a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sign up for alerts, our latest blogs, thoughts, and insights.\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d21d208\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"27383ab2\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin-box\",\"library\":\"material\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24b98c01\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"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},\"gap\":\"extended\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a6c11e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53be024\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"5990603\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"7f874a5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright @2024 of Far East High Tech Ltd. Co.<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_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},\"_css_classes\":\"ct-copyright\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8300,2963,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:2:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:1;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:16:\"link_color_hover\";i:1;s:16:\"line_color_hover\";i:1;s:10:\"menu_align\";i:1;s:17:\"menu_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:13:\"ct_newsletter\";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:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";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:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:1;}}}}}'),(8314,2642,'rs_page_bg_color',''),(8315,2638,'rs_page_bg_color',''),(8316,2634,'rs_page_bg_color',''),(8317,2631,'rs_page_bg_color',''),(8318,2628,'rs_page_bg_color',''),(8319,2625,'rs_page_bg_color',''),(8320,2622,'rs_page_bg_color',''),(8321,2619,'rs_page_bg_color',''),(8322,2964,'_elementor_edit_mode','builder'),(8323,2964,'_elementor_template_type','wp-page'),(8324,2964,'_elementor_version','3.24.7'),(8325,2964,'_wp_page_template','default'),(8326,2964,'_elementor_data','[{\"id\":\"0766e75\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"e82a045\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"layout\":\"2\",\"filter_default_title\":\"All\",\"button_text\":\"Read more\",\"ct_animate\":\"wow bounceInDown\",\"pagination_type\":\"loadmore\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"show_button\":\"\",\"source\":[\"cnc-machining-services|service-category\",\"material-forming-services|service-category\",\"metal-fabrication-services|service-category\",\"other-services|service-category\",\"precision-engineering-services|service-category\"],\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}]'),(8330,2965,'_elementor_edit_mode','builder'),(8331,2965,'_elementor_template_type','wp-page'),(8332,2965,'_elementor_version','3.24.7'),(8333,2965,'_wp_page_template','default'),(8334,2965,'_elementor_data','[{\"id\":\"0766e75\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"e82a045\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"layout\":\"2\",\"filter_default_title\":\"All\",\"button_text\":\"Read more\",\"ct_animate\":\"wow bounceInDown\",\"pagination_type\":\"loadmore\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"show_button\":\"\",\"source\":[\"cnc-machining-services|service-category\",\"material-forming-services|service-category\",\"metal-fabrication-services|service-category\",\"other-services|service-category\",\"precision-engineering-services|service-category\"],\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}]'),(8338,2966,'_elementor_edit_mode','builder'),(8339,2966,'_elementor_template_type','wp-page'),(8340,2966,'_elementor_version','3.24.7'),(8341,2966,'_wp_page_template','default'),(8342,2966,'_elementor_data','[{\"id\":\"0766e75\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"e82a045\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"layout\":\"2\",\"filter_default_title\":\"All\",\"button_text\":\"Read more\",\"ct_animate\":\"wow bounceInDown\",\"pagination_type\":\"loadmore\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"show_button\":\"\",\"source\":[\"en|language\",\"cnc-machining-services|service-category\",\"material-forming-services|service-category\",\"metal-fabrication-services|service-category\",\"other-services|service-category\",\"precision-engineering-services|service-category\"],\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}]'),(8347,2967,'_elementor_edit_mode','builder'),(8348,2967,'_elementor_template_type','wp-page'),(8349,2967,'_elementor_version','3.24.7'),(8350,2967,'_wp_page_template','default'),(8351,2967,'_elementor_data','[{\"id\":\"0766e75\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"e82a045\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"layout\":\"2\",\"filter_default_title\":\"All\",\"button_text\":\"Read more\",\"ct_animate\":\"wow bounceInDown\",\"pagination_type\":\"loadmore\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"show_button\":\"\",\"source\":[\"en|language\",\"cnc-machining-services|service-category\",\"material-forming-services|service-category\",\"metal-fabrication-services|service-category\",\"other-services|service-category\",\"precision-engineering-services|service-category\"],\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}]'),(8354,2968,'_elementor_edit_mode','builder'),(8355,2968,'_elementor_template_type','wp-page'),(8356,2968,'_elementor_version','3.24.7'),(8357,2968,'_wp_page_template','default'),(8358,2968,'_elementor_data','[{\"id\":\"0766e75\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"e82a045\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"layout\":\"2\",\"filter_default_title\":\"All\",\"button_text\":\"Read more\",\"ct_animate\":\"wow bounceInDown\",\"pagination_type\":\"loadmore\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"show_button\":\"\",\"source\":[\"en|language\",\"cnc-machining-services|service-category\",\"material-forming-services|service-category\",\"metal-fabrication-services|service-category\",\"other-services|service-category\",\"precision-engineering-services|service-category\"],\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}]'),(8361,2969,'_elementor_edit_mode','builder'),(8362,2969,'_elementor_template_type','wp-page'),(8363,2969,'_elementor_version','3.24.7'),(8364,2969,'_wp_page_template','default'),(8365,2969,'_elementor_data','[{\"id\":\"0766e75\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"e82a045\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"layout\":\"2\",\"filter_default_title\":\"All\",\"button_text\":\"Read more\",\"ct_animate\":\"wow bounceInDown\",\"pagination_type\":\"loadmore\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"show_button\":\"\",\"source\":[\"en|language\"],\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}]'),(8370,1955,'_wp_old_date','2024-11-25'),(8371,2132,'_wp_old_date','2024-11-25'),(8372,2131,'_wp_old_date','2024-11-25'),(8373,1967,'_wp_old_date','2024-11-25'),(8374,1960,'_wp_old_date','2024-11-25'),(8375,2971,'_menu_item_type','custom'),(8376,2971,'_menu_item_menu_item_parent','0'),(8377,2971,'_menu_item_object_id','2971'),(8378,2971,'_menu_item_object','custom'),(8379,2971,'_menu_item_target',''),(8380,2971,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(8381,2971,'_menu_item_xfn',''),(8382,2971,'_menu_item_url','#pll_switcher'),(8384,2971,'_pll_menu_item','a:6:{s:22:\"hide_if_no_translation\";i:1;s:12:\"hide_current\";i:1;s:10:\"force_home\";i:0;s:10:\"show_flags\";i:1;s:10:\"show_names\";i:1;s:8:\"dropdown\";i:1;}'),(8385,2971,'_menu_item_ct_megaprofile','0'),(8386,2971,'_menu_item_ct_icon',''),(8387,2971,'_menu_item_ct_onepage','no-one-page'),(8388,2971,'_menu_item_ct_onepage_offset',''),(8389,2971,'_menu_item_ct_custom_class',''),(8390,2971,'_menu_item_ct_menu_marker',''),(8417,2973,'_elementor_edit_mode','builder'),(8418,2973,'_elementor_template_type','wp-page'),(8419,2973,'_elementor_version','3.24.7'),(8420,2973,'_wp_page_template','default'),(8421,2973,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i cung c\\u1ea5p nhi\\u1ec1u lo\\u1ea1i s\\u1ea3n ph\\u1ea9m cho ng\\u00e0nh c\\u00f4ng nghi\\u1ec7p c\\u01a1 kh\\u00ed tr\\u00ean to\\u00e0n Vi\\u1ec7t Nam v\\u00e0 qu\\u1ed1c t\\u1ebf, \\u0111\\u1eb7c bi\\u1ec7t t\\u1ea1i c\\u00e1c th\\u1ecb tr\\u01b0\\u1eddng tr\\u1ecdng \\u0111i\\u1ec3m nh\\u01b0 Nh\\u1eadt B\\u1ea3n, H\\u00e0n Qu\\u1ed1c, Hoa K\\u1ef3 v\\u00e0 \\u00dac. Ch\\u00fang t\\u00f4i c\\u0169ng c\\u00f3 kinh nghi\\u1ec7m xu\\u1ea5t kh\\u1ea9u \\u0111\\u1ebfn c\\u00e1c th\\u1ecb tr\\u01b0\\u1eddng n\\u00e0y.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Th\\u1ebf m\\u1ea1nh l\\u1edbn nh\\u1ea5t c\\u1ee7a ch\\u00fang t\\u00f4i n\\u1eb1m \\u1edf \\u0111\\u1ed9i ng\\u0169 nh\\u00e2n l\\u1ef1c tr\\u1ebb trung, \\u0111am m\\u00ea h\\u1ecdc h\\u1ecfi, s\\u00e1ng t\\u1ea1o v\\u00e0 t\\u1ef1 tin, c\\u00f3 kh\\u1ea3 n\\u0103ng s\\u1ea3n xu\\u1ea5t \\u0111a d\\u1ea1ng c\\u00e1c s\\u1ea3n ph\\u1ea9m c\\u01a1 kh\\u00ed v\\u1edbi ch\\u1ea5t l\\u01b0\\u1ee3ng lu\\u00f4n \\u1ed5n \\u0111\\u1ecbnh.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=vUCVqLmXSPM\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Kh\\u00e1ch h\\u00e0ng\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Nh\\u00e2n s\\u1ef1\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"S\\u1ed1 \\u0111\\u01a1n h\\u00e0ng m\\u1ed7i n\\u0103m\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337},\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.trustpass.alibaba.com\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ch\\u00fang t\\u00f4i \\u0111\\u00e3 b\\u1eaft \\u0111\\u1ea7u m\\u1edf m\\u1ed9t c\\u1eeda h\\u00e0ng tr\\u00ean Alibaba \\u0111\\u1ec3 k\\u1ebft n\\u1ed1i v\\u1edbi c\\u00e1c \\u0111\\u01a1n h\\u00e0ng t\\u1eeb kh\\u1eafp n\\u01a1i tr\\u00ean th\\u1ebf gi\\u1edbi.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0e89391\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i n\\u1ed7 l\\u1ef1c tr\\u1edf th\\u00e0nh m\\u1ed9t trong nh\\u1eefng c\\u00f4ng ty ch\\u1ebf bi\\u1ebfn c\\u01a1 kh\\u00ed h\\u00e0ng \\u0111\\u1ea7u c\\u1ee7a Vi\\u1ec7t Nam, cung c\\u1ea5p ra th\\u1ecb tr\\u01b0\\u1eddng qu\\u1ed1c t\\u1ebf v\\u00e0o n\\u0103m 2030. Trong t\\u01b0\\u01a1ng lai, ch\\u00fang t\\u00f4i h\\u01b0\\u1edbng \\u0111\\u1ebfn vi\\u1ec7c s\\u1ea3n xu\\u1ea5t c\\u00e1c s\\u1ea3n ph\\u1ea9m m\\u00e1y m\\u00f3c ho\\u00e0n ch\\u1ec9nh \\u0111\\u1ec3 giao tr\\u1ef1c ti\\u1ebfp \\u0111\\u1ebfn ng\\u01b0\\u1eddi s\\u1eed d\\u1ee5ng cu\\u1ed1i.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>M\\u1ee5c ti\\u00eau \\u0111\\u1ea1t \\u0111\\u01b0\\u1ee3c v\\u00e0o n\\u0103m 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"\\u0110\\u00f4ng \\u00c1 (Nh\\u1eadt B\\u1ea3n, H\\u00e0n Qu\\u1ed1c, v.v.): Xu\\u1ea5t kh\\u1ea9u c\\u00e1c linh ki\\u1ec7n m\\u00e1y m\\u00f3c thay th\\u1ebf, ph\\u1ee5 ki\\u1ec7n xe m\\u00e1y v\\u00e0 \\u00f4 t\\u00f4, ph\\u1ee5 ki\\u1ec7n ng\\u00e0nh n\\u01b0\\u1edbc, khu\\u00f4n m\\u1eabu v\\u00e0 c\\u00e1c b\\u1ed9 ph\\u1eadn c\\u01a1 kh\\u00ed kh\\u00e1c.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Ch\\u00e2u \\u00c2u (\\u0110\\u1ee9c, Bulgaria, H\\u00e0 Lan, v.v.): S\\u1ea3n xu\\u1ea5t khu\\u00f4n jig cho v\\u00f2ng bi \\u00f4 t\\u00f4 v\\u00e0 c\\u00e1c b\\u1ed9 ph\\u1eadn h\\u1ed9p \\u0111i\\u1ec7n cho m\\u00e1y m\\u00f3c t\\u1ef1 \\u0111\\u1ed9ng h\\u00f3a.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"Hoa K\\u1ef3: C\\u00e1c s\\u1ea3n ph\\u1ea9m li\\u00ean quan \\u0111\\u1ebfn thi\\u1ebft b\\u1ecb y t\\u1ebf, quang h\\u1ecdc v\\u00e0 thi\\u1ebft b\\u1ecb \\u00e2m thanh.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"\\u00dac: S\\u1ea3n ph\\u1ea9m kim lo\\u1ea1i t\\u1ea5m.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vi\\u1ec7t Nam: M\\u00e1y t\\u1ef1 \\u0111\\u1ed9ng h\\u00f3a nh\\u1ecf; bu l\\u00f4ng xe m\\u00e1y v\\u00e0 \\u00f4 t\\u00f4; s\\u1ea3n ph\\u1ea9m trong ng\\u00e0nh d\\u1ea7u kh\\u00ed.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"C\\u00e1c th\\u1ecb tr\\u01b0\\u1eddng v\\u00e0 s\\u1ea3n ph\\u1ea9m kh\\u00e1c.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i cung c\\u1ea5p d\\u1ecbch v\\u1ee5 trong nhi\\u1ec1u l\\u0129nh v\\u1ef1c.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ch\\u00fang t\\u00f4i lu\\u00f4n \\u0111\\u00e1p \\u1ee9ng y\\u00eau c\\u1ea7u thi\\u1ebft k\\u1ebf c\\u1ee7a kh\\u00e1ch h\\u00e0ng. Ngo\\u1ea1i h\\u00ecnh v\\u00e0 k\\u00edch th\\u01b0\\u1edbc l\\u00e0 nh\\u1eefng y\\u1ebfu t\\u1ed1 ch\\u00fang t\\u00f4i coi tr\\u1ecdng nh\\u1ea5t.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"vi|language\"],\"ct_animate\":\"wow fadeInUp\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"D\\u1ecbch v\\u1ee5 kh\\u00e1c\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"C\\u00f3 c\\u00e2u h\\u1ecfi n\\u00e0o kh\\u00f4ng?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Li\\u00ean h\\u1ec7 \\u0111\\u1ec3 nh\\u1eadn b\\u00e1o gi\\u00e1:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i c\\u00f3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c \\u0111\\u01a1n gi\\u1ea3n.\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ch\\u00fang t\\u00f4i lu\\u00f4n mang \\u0111\\u1ebfn c\\u1ea3m gi\\u00e1c an t\\u00e2m v\\u1ec1 ch\\u1ea5t l\\u01b0\\u1ee3ng v\\u00e0 ti\\u1ebfn \\u0111\\u1ed9.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"T\\u00ecm ch\\u00fang t\\u00f4i\",\"description\":\"Ch\\u00fang t\\u00f4i hi\\u1ec3u t\\u1ea7m quan tr\\u1ecdng c\\u1ee7a vi\\u1ec7c x\\u1eed l\\u00fd m\\u1ed7i d\\u1ef1 \\u00e1n theo m\\u1ed9t c\\u00e1ch ti\\u1ebfp c\\u1eadn to\\u00e0n di\\u1ec7n.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"K\\u1ebft n\\u1ed1i v\\u1edbi ch\\u00fang t\\u00f4i\",\"description\":\"\\u0110i\\u1ec1u l\\u00e0m ch\\u00fang t\\u00f4i kh\\u00e1c bi\\u1ec7t so v\\u1edbi c\\u00e1c c\\u00f4ng ty kh\\u00e1c l\\u00e0 chuy\\u00ean m\\u00f4n trong vi\\u1ec7c t\\u1ea1o ra c\\u00e1c gi\\u1ea3i ph\\u00e1p t\\u00f9y ch\\u1ec9nh.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Thanh to\\u00e1n cho ch\\u00fang t\\u00f4i\",\"description\":\"Ch\\u00fang t\\u00f4i khuy\\u1ebfn kh\\u00edch m\\u1ed7i th\\u00e0nh vi\\u00ean trong \\u0111\\u1ed9i ng\\u0169 tr\\u1edf th\\u00e0nh phi\\u00ean b\\u1ea3n t\\u1ed1t nh\\u1ea5t c\\u1ee7a ch\\u00ednh m\\u00ecnh, t\\u1ea1o ra m\\u1ed9t m\\u00f4i tr\\u01b0\\u1eddng linh ho\\u1ea1t v\\u00e0 h\\u1ee3p t\\u00e1c.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"\\u0110\\u1ea1t \\u0111\\u01b0\\u1ee3c \\u01b0\\u1edbc m\\u01a1 c\\u1ee7a b\\u1ea1n\",\"description\":\"C\\u1ed1t l\\u00f5i c\\u1ee7a m\\u1ed7i doanh nghi\\u1ec7p l\\u00e0 nh\\u1eefng gi\\u1ea3i ph\\u00e1p \\u0111\\u1ed9c \\u0111\\u00e1o, truy\\u1ec1n c\\u1ea3m h\\u1ee9ng cho s\\u1ef1 \\u0111\\u1ed5i m\\u1edbi v\\u00e0 ph\\u00e1t tri\\u1ec3n.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Li\\u00ean h\\u1ec7 v\\u1edbi ch\\u00fang t\\u00f4i b\\u1ea5t c\\u1ee9 l\\u00fac n\\u00e0o n\\u1ebfu b\\u1ea1n c\\u1ea7n s\\u1ef1 gi\\u00fap \\u0111\\u1ee1...\",\"title_color\":\"#85B23B\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8422,2973,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(8426,2973,'custom_header','1'),(8427,2973,'header_layout','2'),(8428,2973,'custom_pagetitle','hide'),(8429,2973,'custom_title',''),(8430,2973,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(8431,2973,'ptitle_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(8432,2973,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(8433,2973,'content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}'),(8434,2973,'show_sidebar_page',''),(8435,2973,'sidebar_page_pos','right'),(8436,2973,'custom_footer','1'),(8437,2973,'footer_layout_custom','799'),(8438,2973,'p_logo_dark','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(8439,2973,'p_logo_light','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(8441,2973,'_edit_lock','1742180151:1'),(8442,2974,'_elementor_edit_mode','builder'),(8443,2974,'_elementor_template_type','wp-page'),(8444,2974,'_elementor_version','3.24.7'),(8445,2974,'_wp_page_template','default'),(8446,2974,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=oVQ4_PIqgz8\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have started to open a store on Alibaba to connect with orders from around the world.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0e89391\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"cnc-machining-services|service-category\",\"material-forming-services|service-category\"],\"ct_animate\":\"wow fadeInUp\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always provide a sense of security in terms of quality and progress.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#85B23B\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8447,2974,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(8451,2973,'_edit_last','1'),(8452,2973,'h_custom_menu',''),(8453,2973,'_yoast_wpseo_estimated-reading-time-minutes','5'),(8464,2976,'_elementor_edit_mode','builder'),(8465,2976,'_elementor_template_type','wp-page'),(8466,2976,'_elementor_version','3.24.7'),(8467,2976,'_wp_page_template','default'),(8468,2976,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=oVQ4_PIqgz8\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have started to open a store on Alibaba to connect with orders from around the world.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0e89391\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"cnc-machining-services|service-category\",\"material-forming-services|service-category\"],\"ct_animate\":\"wow fadeInUp\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always provide a sense of security in terms of quality and progress.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#85B23B\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8469,2976,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(8473,2977,'_elementor_edit_mode','builder'),(8474,2977,'_elementor_template_type','wp-page'),(8475,2977,'_elementor_version','3.24.7'),(8476,2977,'_wp_page_template','default'),(8477,2977,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=oVQ4_PIqgz8\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have started to open a store on Alibaba to connect with orders from around the world.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0e89391\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"cnc-machining-services|service-category\",\"material-forming-services|service-category\"],\"ct_animate\":\"wow fadeInUp\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always provide a sense of security in terms of quality and progress.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#85B23B\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8478,2977,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(8482,2978,'_elementor_edit_mode','builder'),(8483,2978,'_elementor_template_type','wp-page'),(8484,2978,'_elementor_version','3.24.7'),(8485,2978,'_wp_page_template','default'),(8486,2978,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i cung c\\u1ea5p nhi\\u1ec1u lo\\u1ea1i s\\u1ea3n ph\\u1ea9m cho ng\\u00e0nh c\\u00f4ng nghi\\u1ec7p c\\u01a1 kh\\u00ed tr\\u00ean to\\u00e0n Vi\\u1ec7t Nam v\\u00e0 qu\\u1ed1c t\\u1ebf, \\u0111\\u1eb7c bi\\u1ec7t t\\u1ea1i c\\u00e1c th\\u1ecb tr\\u01b0\\u1eddng tr\\u1ecdng \\u0111i\\u1ec3m nh\\u01b0 Nh\\u1eadt B\\u1ea3n, H\\u00e0n Qu\\u1ed1c, Hoa K\\u1ef3 v\\u00e0 \\u00dac. Ch\\u00fang t\\u00f4i c\\u0169ng c\\u00f3 kinh nghi\\u1ec7m xu\\u1ea5t kh\\u1ea9u \\u0111\\u1ebfn c\\u00e1c th\\u1ecb tr\\u01b0\\u1eddng n\\u00e0y.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Th\\u1ebf m\\u1ea1nh l\\u1edbn nh\\u1ea5t c\\u1ee7a ch\\u00fang t\\u00f4i n\\u1eb1m \\u1edf \\u0111\\u1ed9i ng\\u0169 nh\\u00e2n l\\u1ef1c tr\\u1ebb trung, \\u0111am m\\u00ea h\\u1ecdc h\\u1ecfi, s\\u00e1ng t\\u1ea1o v\\u00e0 t\\u1ef1 tin, c\\u00f3 kh\\u1ea3 n\\u0103ng s\\u1ea3n xu\\u1ea5t \\u0111a d\\u1ea1ng c\\u00e1c s\\u1ea3n ph\\u1ea9m c\\u01a1 kh\\u00ed v\\u1edbi ch\\u1ea5t l\\u01b0\\u1ee3ng lu\\u00f4n \\u1ed5n \\u0111\\u1ecbnh.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=oVQ4_PIqgz8\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Kh\\u00e1ch h\\u00e0ng\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Nh\\u00e2n s\\u1ef1\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"S\\u1ed1 \\u0111\\u01a1n h\\u00e0ng m\\u1ed7i n\\u0103m\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ch\\u00fang t\\u00f4i \\u0111\\u00e3 b\\u1eaft \\u0111\\u1ea7u m\\u1edf m\\u1ed9t c\\u1eeda h\\u00e0ng tr\\u00ean Alibaba \\u0111\\u1ec3 k\\u1ebft n\\u1ed1i v\\u1edbi c\\u00e1c \\u0111\\u01a1n h\\u00e0ng t\\u1eeb kh\\u1eafp n\\u01a1i tr\\u00ean th\\u1ebf gi\\u1edbi.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0e89391\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i n\\u1ed7 l\\u1ef1c tr\\u1edf th\\u00e0nh m\\u1ed9t trong nh\\u1eefng c\\u00f4ng ty ch\\u1ebf bi\\u1ebfn c\\u01a1 kh\\u00ed h\\u00e0ng \\u0111\\u1ea7u c\\u1ee7a Vi\\u1ec7t Nam, cung c\\u1ea5p ra th\\u1ecb tr\\u01b0\\u1eddng qu\\u1ed1c t\\u1ebf v\\u00e0o n\\u0103m 2030. Trong t\\u01b0\\u01a1ng lai, ch\\u00fang t\\u00f4i h\\u01b0\\u1edbng \\u0111\\u1ebfn vi\\u1ec7c s\\u1ea3n xu\\u1ea5t c\\u00e1c s\\u1ea3n ph\\u1ea9m m\\u00e1y m\\u00f3c ho\\u00e0n ch\\u1ec9nh \\u0111\\u1ec3 giao tr\\u1ef1c ti\\u1ebfp \\u0111\\u1ebfn ng\\u01b0\\u1eddi s\\u1eed d\\u1ee5ng cu\\u1ed1i.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>M\\u1ee5c ti\\u00eau \\u0111\\u1ea1t \\u0111\\u01b0\\u1ee3c v\\u00e0o n\\u0103m 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"\\u0110\\u00f4ng \\u00c1 (Nh\\u1eadt B\\u1ea3n, H\\u00e0n Qu\\u1ed1c, v.v.): Xu\\u1ea5t kh\\u1ea9u c\\u00e1c linh ki\\u1ec7n m\\u00e1y m\\u00f3c thay th\\u1ebf, ph\\u1ee5 ki\\u1ec7n xe m\\u00e1y v\\u00e0 \\u00f4 t\\u00f4, ph\\u1ee5 ki\\u1ec7n ng\\u00e0nh n\\u01b0\\u1edbc, khu\\u00f4n m\\u1eabu v\\u00e0 c\\u00e1c b\\u1ed9 ph\\u1eadn c\\u01a1 kh\\u00ed kh\\u00e1c.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Ch\\u00e2u \\u00c2u (\\u0110\\u1ee9c, Bulgaria, H\\u00e0 Lan, v.v.): S\\u1ea3n xu\\u1ea5t khu\\u00f4n jig cho v\\u00f2ng bi \\u00f4 t\\u00f4 v\\u00e0 c\\u00e1c b\\u1ed9 ph\\u1eadn h\\u1ed9p \\u0111i\\u1ec7n cho m\\u00e1y m\\u00f3c t\\u1ef1 \\u0111\\u1ed9ng h\\u00f3a.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"Hoa K\\u1ef3: C\\u00e1c s\\u1ea3n ph\\u1ea9m li\\u00ean quan \\u0111\\u1ebfn thi\\u1ebft b\\u1ecb y t\\u1ebf, quang h\\u1ecdc v\\u00e0 thi\\u1ebft b\\u1ecb \\u00e2m thanh.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"\\u00dac: S\\u1ea3n ph\\u1ea9m kim lo\\u1ea1i t\\u1ea5m.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vi\\u1ec7t Nam: M\\u00e1y t\\u1ef1 \\u0111\\u1ed9ng h\\u00f3a nh\\u1ecf; bu l\\u00f4ng xe m\\u00e1y v\\u00e0 \\u00f4 t\\u00f4; s\\u1ea3n ph\\u1ea9m trong ng\\u00e0nh d\\u1ea7u kh\\u00ed.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"C\\u00e1c th\\u1ecb tr\\u01b0\\u1eddng v\\u00e0 s\\u1ea3n ph\\u1ea9m kh\\u00e1c.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i cung c\\u1ea5p d\\u1ecbch v\\u1ee5 trong nhi\\u1ec1u l\\u0129nh v\\u1ef1c.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ch\\u00fang t\\u00f4i lu\\u00f4n \\u0111\\u00e1p \\u1ee9ng y\\u00eau c\\u1ea7u thi\\u1ebft k\\u1ebf c\\u1ee7a kh\\u00e1ch h\\u00e0ng. Ngo\\u1ea1i h\\u00ecnh v\\u00e0 k\\u00edch th\\u01b0\\u1edbc l\\u00e0 nh\\u1eefng y\\u1ebfu t\\u1ed1 ch\\u00fang t\\u00f4i coi tr\\u1ecdng nh\\u1ea5t.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"cnc-machining-services|service-category\",\"material-forming-services|service-category\"],\"ct_animate\":\"wow fadeInUp\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"C\\u00f3 c\\u00e2u h\\u1ecfi n\\u00e0o kh\\u00f4ng?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Li\\u00ean h\\u1ec7 \\u0111\\u1ec3 nh\\u1eadn b\\u00e1o gi\\u00e1:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i c\\u00f3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c \\u0111\\u01a1n gi\\u1ea3n.\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ch\\u00fang t\\u00f4i lu\\u00f4n mang \\u0111\\u1ebfn c\\u1ea3m gi\\u00e1c an t\\u00e2m v\\u1ec1 ch\\u1ea5t l\\u01b0\\u1ee3ng v\\u00e0 ti\\u1ebfn \\u0111\\u1ed9.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"T\\u00ecm ch\\u00fang t\\u00f4i\",\"description\":\"Ch\\u00fang t\\u00f4i hi\\u1ec3u t\\u1ea7m quan tr\\u1ecdng c\\u1ee7a vi\\u1ec7c x\\u1eed l\\u00fd m\\u1ed7i d\\u1ef1 \\u00e1n theo m\\u1ed9t c\\u00e1ch ti\\u1ebfp c\\u1eadn to\\u00e0n di\\u1ec7n.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"K\\u1ebft n\\u1ed1i v\\u1edbi ch\\u00fang t\\u00f4i\",\"description\":\"\\u0110i\\u1ec1u l\\u00e0m ch\\u00fang t\\u00f4i kh\\u00e1c bi\\u1ec7t so v\\u1edbi c\\u00e1c c\\u00f4ng ty kh\\u00e1c l\\u00e0 chuy\\u00ean m\\u00f4n trong vi\\u1ec7c t\\u1ea1o ra c\\u00e1c gi\\u1ea3i ph\\u00e1p t\\u00f9y ch\\u1ec9nh.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Thanh to\\u00e1n cho ch\\u00fang t\\u00f4i\",\"description\":\"Ch\\u00fang t\\u00f4i khuy\\u1ebfn kh\\u00edch m\\u1ed7i th\\u00e0nh vi\\u00ean trong \\u0111\\u1ed9i ng\\u0169 tr\\u1edf th\\u00e0nh phi\\u00ean b\\u1ea3n t\\u1ed1t nh\\u1ea5t c\\u1ee7a ch\\u00ednh m\\u00ecnh, t\\u1ea1o ra m\\u1ed9t m\\u00f4i tr\\u01b0\\u1eddng linh ho\\u1ea1t v\\u00e0 h\\u1ee3p t\\u00e1c.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"\\u0110\\u1ea1t \\u0111\\u01b0\\u1ee3c \\u01b0\\u1edbc m\\u01a1 c\\u1ee7a b\\u1ea1n\",\"description\":\"C\\u1ed1t l\\u00f5i c\\u1ee7a m\\u1ed7i doanh nghi\\u1ec7p l\\u00e0 nh\\u1eefng gi\\u1ea3i ph\\u00e1p \\u0111\\u1ed9c \\u0111\\u00e1o, truy\\u1ec1n c\\u1ea3m h\\u1ee9ng cho s\\u1ef1 \\u0111\\u1ed5i m\\u1edbi v\\u00e0 ph\\u00e1t tri\\u1ec3n.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Li\\u00ean h\\u1ec7 v\\u1edbi ch\\u00fang t\\u00f4i b\\u1ea5t c\\u1ee9 l\\u00fac n\\u00e0o n\\u1ebfu b\\u1ea1n c\\u1ea7n s\\u1ef1 gi\\u00fap \\u0111\\u1ee1...\",\"title_color\":\"#85B23B\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8487,2978,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(8491,2973,'_yoast_wpseo_content_score','60'),(8493,2979,'_elementor_edit_mode','builder'),(8494,2979,'_elementor_template_type','wp-page'),(8495,2979,'_elementor_version','3.24.7'),(8496,2979,'_wp_page_template','default'),(8497,2979,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i cung c\\u1ea5p nhi\\u1ec1u lo\\u1ea1i s\\u1ea3n ph\\u1ea9m cho ng\\u00e0nh c\\u00f4ng nghi\\u1ec7p c\\u01a1 kh\\u00ed tr\\u00ean to\\u00e0n Vi\\u1ec7t Nam v\\u00e0 qu\\u1ed1c t\\u1ebf, \\u0111\\u1eb7c bi\\u1ec7t t\\u1ea1i c\\u00e1c th\\u1ecb tr\\u01b0\\u1eddng tr\\u1ecdng \\u0111i\\u1ec3m nh\\u01b0 Nh\\u1eadt B\\u1ea3n, H\\u00e0n Qu\\u1ed1c, Hoa K\\u1ef3 v\\u00e0 \\u00dac. Ch\\u00fang t\\u00f4i c\\u0169ng c\\u00f3 kinh nghi\\u1ec7m xu\\u1ea5t kh\\u1ea9u \\u0111\\u1ebfn c\\u00e1c th\\u1ecb tr\\u01b0\\u1eddng n\\u00e0y.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Th\\u1ebf m\\u1ea1nh l\\u1edbn nh\\u1ea5t c\\u1ee7a ch\\u00fang t\\u00f4i n\\u1eb1m \\u1edf \\u0111\\u1ed9i ng\\u0169 nh\\u00e2n l\\u1ef1c tr\\u1ebb trung, \\u0111am m\\u00ea h\\u1ecdc h\\u1ecfi, s\\u00e1ng t\\u1ea1o v\\u00e0 t\\u1ef1 tin, c\\u00f3 kh\\u1ea3 n\\u0103ng s\\u1ea3n xu\\u1ea5t \\u0111a d\\u1ea1ng c\\u00e1c s\\u1ea3n ph\\u1ea9m c\\u01a1 kh\\u00ed v\\u1edbi ch\\u1ea5t l\\u01b0\\u1ee3ng lu\\u00f4n \\u1ed5n \\u0111\\u1ecbnh.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=oVQ4_PIqgz8\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Kh\\u00e1ch h\\u00e0ng\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Nh\\u00e2n s\\u1ef1\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"S\\u1ed1 \\u0111\\u01a1n h\\u00e0ng m\\u1ed7i n\\u0103m\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ch\\u00fang t\\u00f4i \\u0111\\u00e3 b\\u1eaft \\u0111\\u1ea7u m\\u1edf m\\u1ed9t c\\u1eeda h\\u00e0ng tr\\u00ean Alibaba \\u0111\\u1ec3 k\\u1ebft n\\u1ed1i v\\u1edbi c\\u00e1c \\u0111\\u01a1n h\\u00e0ng t\\u1eeb kh\\u1eafp n\\u01a1i tr\\u00ean th\\u1ebf gi\\u1edbi.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0e89391\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i n\\u1ed7 l\\u1ef1c tr\\u1edf th\\u00e0nh m\\u1ed9t trong nh\\u1eefng c\\u00f4ng ty ch\\u1ebf bi\\u1ebfn c\\u01a1 kh\\u00ed h\\u00e0ng \\u0111\\u1ea7u c\\u1ee7a Vi\\u1ec7t Nam, cung c\\u1ea5p ra th\\u1ecb tr\\u01b0\\u1eddng qu\\u1ed1c t\\u1ebf v\\u00e0o n\\u0103m 2030. Trong t\\u01b0\\u01a1ng lai, ch\\u00fang t\\u00f4i h\\u01b0\\u1edbng \\u0111\\u1ebfn vi\\u1ec7c s\\u1ea3n xu\\u1ea5t c\\u00e1c s\\u1ea3n ph\\u1ea9m m\\u00e1y m\\u00f3c ho\\u00e0n ch\\u1ec9nh \\u0111\\u1ec3 giao tr\\u1ef1c ti\\u1ebfp \\u0111\\u1ebfn ng\\u01b0\\u1eddi s\\u1eed d\\u1ee5ng cu\\u1ed1i.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>M\\u1ee5c ti\\u00eau \\u0111\\u1ea1t \\u0111\\u01b0\\u1ee3c v\\u00e0o n\\u0103m 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"\\u0110\\u00f4ng \\u00c1 (Nh\\u1eadt B\\u1ea3n, H\\u00e0n Qu\\u1ed1c, v.v.): Xu\\u1ea5t kh\\u1ea9u c\\u00e1c linh ki\\u1ec7n m\\u00e1y m\\u00f3c thay th\\u1ebf, ph\\u1ee5 ki\\u1ec7n xe m\\u00e1y v\\u00e0 \\u00f4 t\\u00f4, ph\\u1ee5 ki\\u1ec7n ng\\u00e0nh n\\u01b0\\u1edbc, khu\\u00f4n m\\u1eabu v\\u00e0 c\\u00e1c b\\u1ed9 ph\\u1eadn c\\u01a1 kh\\u00ed kh\\u00e1c.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Ch\\u00e2u \\u00c2u (\\u0110\\u1ee9c, Bulgaria, H\\u00e0 Lan, v.v.): S\\u1ea3n xu\\u1ea5t khu\\u00f4n jig cho v\\u00f2ng bi \\u00f4 t\\u00f4 v\\u00e0 c\\u00e1c b\\u1ed9 ph\\u1eadn h\\u1ed9p \\u0111i\\u1ec7n cho m\\u00e1y m\\u00f3c t\\u1ef1 \\u0111\\u1ed9ng h\\u00f3a.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"Hoa K\\u1ef3: C\\u00e1c s\\u1ea3n ph\\u1ea9m li\\u00ean quan \\u0111\\u1ebfn thi\\u1ebft b\\u1ecb y t\\u1ebf, quang h\\u1ecdc v\\u00e0 thi\\u1ebft b\\u1ecb \\u00e2m thanh.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"\\u00dac: S\\u1ea3n ph\\u1ea9m kim lo\\u1ea1i t\\u1ea5m.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vi\\u1ec7t Nam: M\\u00e1y t\\u1ef1 \\u0111\\u1ed9ng h\\u00f3a nh\\u1ecf; bu l\\u00f4ng xe m\\u00e1y v\\u00e0 \\u00f4 t\\u00f4; s\\u1ea3n ph\\u1ea9m trong ng\\u00e0nh d\\u1ea7u kh\\u00ed.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"C\\u00e1c th\\u1ecb tr\\u01b0\\u1eddng v\\u00e0 s\\u1ea3n ph\\u1ea9m kh\\u00e1c.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i cung c\\u1ea5p d\\u1ecbch v\\u1ee5 trong nhi\\u1ec1u l\\u0129nh v\\u1ef1c.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ch\\u00fang t\\u00f4i lu\\u00f4n \\u0111\\u00e1p \\u1ee9ng y\\u00eau c\\u1ea7u thi\\u1ebft k\\u1ebf c\\u1ee7a kh\\u00e1ch h\\u00e0ng. Ngo\\u1ea1i h\\u00ecnh v\\u00e0 k\\u00edch th\\u01b0\\u1edbc l\\u00e0 nh\\u1eefng y\\u1ebfu t\\u1ed1 ch\\u00fang t\\u00f4i coi tr\\u1ecdng nh\\u1ea5t.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"cnc-machining-services|service-category\",\"material-forming-services|service-category\"],\"ct_animate\":\"wow fadeInUp\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"C\\u00f3 c\\u00e2u h\\u1ecfi n\\u00e0o kh\\u00f4ng?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Li\\u00ean h\\u1ec7 \\u0111\\u1ec3 nh\\u1eadn b\\u00e1o gi\\u00e1:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i c\\u00f3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c \\u0111\\u01a1n gi\\u1ea3n.\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ch\\u00fang t\\u00f4i lu\\u00f4n mang \\u0111\\u1ebfn c\\u1ea3m gi\\u00e1c an t\\u00e2m v\\u1ec1 ch\\u1ea5t l\\u01b0\\u1ee3ng v\\u00e0 ti\\u1ebfn \\u0111\\u1ed9.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"T\\u00ecm ch\\u00fang t\\u00f4i\",\"description\":\"Ch\\u00fang t\\u00f4i hi\\u1ec3u t\\u1ea7m quan tr\\u1ecdng c\\u1ee7a vi\\u1ec7c x\\u1eed l\\u00fd m\\u1ed7i d\\u1ef1 \\u00e1n theo m\\u1ed9t c\\u00e1ch ti\\u1ebfp c\\u1eadn to\\u00e0n di\\u1ec7n.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"K\\u1ebft n\\u1ed1i v\\u1edbi ch\\u00fang t\\u00f4i\",\"description\":\"\\u0110i\\u1ec1u l\\u00e0m ch\\u00fang t\\u00f4i kh\\u00e1c bi\\u1ec7t so v\\u1edbi c\\u00e1c c\\u00f4ng ty kh\\u00e1c l\\u00e0 chuy\\u00ean m\\u00f4n trong vi\\u1ec7c t\\u1ea1o ra c\\u00e1c gi\\u1ea3i ph\\u00e1p t\\u00f9y ch\\u1ec9nh.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Thanh to\\u00e1n cho ch\\u00fang t\\u00f4i\",\"description\":\"Ch\\u00fang t\\u00f4i khuy\\u1ebfn kh\\u00edch m\\u1ed7i th\\u00e0nh vi\\u00ean trong \\u0111\\u1ed9i ng\\u0169 tr\\u1edf th\\u00e0nh phi\\u00ean b\\u1ea3n t\\u1ed1t nh\\u1ea5t c\\u1ee7a ch\\u00ednh m\\u00ecnh, t\\u1ea1o ra m\\u1ed9t m\\u00f4i tr\\u01b0\\u1eddng linh ho\\u1ea1t v\\u00e0 h\\u1ee3p t\\u00e1c.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"\\u0110\\u1ea1t \\u0111\\u01b0\\u1ee3c \\u01b0\\u1edbc m\\u01a1 c\\u1ee7a b\\u1ea1n\",\"description\":\"C\\u1ed1t l\\u00f5i c\\u1ee7a m\\u1ed7i doanh nghi\\u1ec7p l\\u00e0 nh\\u1eefng gi\\u1ea3i ph\\u00e1p \\u0111\\u1ed9c \\u0111\\u00e1o, truy\\u1ec1n c\\u1ea3m h\\u1ee9ng cho s\\u1ef1 \\u0111\\u1ed5i m\\u1edbi v\\u00e0 ph\\u00e1t tri\\u1ec3n.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Li\\u00ean h\\u1ec7 v\\u1edbi ch\\u00fang t\\u00f4i b\\u1ea5t c\\u1ee9 l\\u00fac n\\u00e0o n\\u1ebfu b\\u1ea1n c\\u1ea7n s\\u1ef1 gi\\u00fap \\u0111\\u1ee1...\",\"title_color\":\"#85B23B\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8498,2979,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(8501,2980,'_elementor_edit_mode','builder'),(8502,2980,'_elementor_template_type','wp-page'),(8503,2980,'_elementor_version','3.24.7'),(8504,2980,'_wp_page_template','default'),(8505,2980,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i cung c\\u1ea5p nhi\\u1ec1u lo\\u1ea1i s\\u1ea3n ph\\u1ea9m cho ng\\u00e0nh c\\u00f4ng nghi\\u1ec7p c\\u01a1 kh\\u00ed tr\\u00ean to\\u00e0n Vi\\u1ec7t Nam v\\u00e0 qu\\u1ed1c t\\u1ebf, \\u0111\\u1eb7c bi\\u1ec7t t\\u1ea1i c\\u00e1c th\\u1ecb tr\\u01b0\\u1eddng tr\\u1ecdng \\u0111i\\u1ec3m nh\\u01b0 Nh\\u1eadt B\\u1ea3n, H\\u00e0n Qu\\u1ed1c, Hoa K\\u1ef3 v\\u00e0 \\u00dac. Ch\\u00fang t\\u00f4i c\\u0169ng c\\u00f3 kinh nghi\\u1ec7m xu\\u1ea5t kh\\u1ea9u \\u0111\\u1ebfn c\\u00e1c th\\u1ecb tr\\u01b0\\u1eddng n\\u00e0y.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Th\\u1ebf m\\u1ea1nh l\\u1edbn nh\\u1ea5t c\\u1ee7a ch\\u00fang t\\u00f4i n\\u1eb1m \\u1edf \\u0111\\u1ed9i ng\\u0169 nh\\u00e2n l\\u1ef1c tr\\u1ebb trung, \\u0111am m\\u00ea h\\u1ecdc h\\u1ecfi, s\\u00e1ng t\\u1ea1o v\\u00e0 t\\u1ef1 tin, c\\u00f3 kh\\u1ea3 n\\u0103ng s\\u1ea3n xu\\u1ea5t \\u0111a d\\u1ea1ng c\\u00e1c s\\u1ea3n ph\\u1ea9m c\\u01a1 kh\\u00ed v\\u1edbi ch\\u1ea5t l\\u01b0\\u1ee3ng lu\\u00f4n \\u1ed5n \\u0111\\u1ecbnh.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=oVQ4_PIqgz8\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Kh\\u00e1ch h\\u00e0ng\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Nh\\u00e2n s\\u1ef1\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"S\\u1ed1 \\u0111\\u01a1n h\\u00e0ng m\\u1ed7i n\\u0103m\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ch\\u00fang t\\u00f4i \\u0111\\u00e3 b\\u1eaft \\u0111\\u1ea7u m\\u1edf m\\u1ed9t c\\u1eeda h\\u00e0ng tr\\u00ean Alibaba \\u0111\\u1ec3 k\\u1ebft n\\u1ed1i v\\u1edbi c\\u00e1c \\u0111\\u01a1n h\\u00e0ng t\\u1eeb kh\\u1eafp n\\u01a1i tr\\u00ean th\\u1ebf gi\\u1edbi.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0e89391\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i n\\u1ed7 l\\u1ef1c tr\\u1edf th\\u00e0nh m\\u1ed9t trong nh\\u1eefng c\\u00f4ng ty ch\\u1ebf bi\\u1ebfn c\\u01a1 kh\\u00ed h\\u00e0ng \\u0111\\u1ea7u c\\u1ee7a Vi\\u1ec7t Nam, cung c\\u1ea5p ra th\\u1ecb tr\\u01b0\\u1eddng qu\\u1ed1c t\\u1ebf v\\u00e0o n\\u0103m 2030. Trong t\\u01b0\\u01a1ng lai, ch\\u00fang t\\u00f4i h\\u01b0\\u1edbng \\u0111\\u1ebfn vi\\u1ec7c s\\u1ea3n xu\\u1ea5t c\\u00e1c s\\u1ea3n ph\\u1ea9m m\\u00e1y m\\u00f3c ho\\u00e0n ch\\u1ec9nh \\u0111\\u1ec3 giao tr\\u1ef1c ti\\u1ebfp \\u0111\\u1ebfn ng\\u01b0\\u1eddi s\\u1eed d\\u1ee5ng cu\\u1ed1i.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>M\\u1ee5c ti\\u00eau \\u0111\\u1ea1t \\u0111\\u01b0\\u1ee3c v\\u00e0o n\\u0103m 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"\\u0110\\u00f4ng \\u00c1 (Nh\\u1eadt B\\u1ea3n, H\\u00e0n Qu\\u1ed1c, v.v.): Xu\\u1ea5t kh\\u1ea9u c\\u00e1c linh ki\\u1ec7n m\\u00e1y m\\u00f3c thay th\\u1ebf, ph\\u1ee5 ki\\u1ec7n xe m\\u00e1y v\\u00e0 \\u00f4 t\\u00f4, ph\\u1ee5 ki\\u1ec7n ng\\u00e0nh n\\u01b0\\u1edbc, khu\\u00f4n m\\u1eabu v\\u00e0 c\\u00e1c b\\u1ed9 ph\\u1eadn c\\u01a1 kh\\u00ed kh\\u00e1c.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Ch\\u00e2u \\u00c2u (\\u0110\\u1ee9c, Bulgaria, H\\u00e0 Lan, v.v.): S\\u1ea3n xu\\u1ea5t khu\\u00f4n jig cho v\\u00f2ng bi \\u00f4 t\\u00f4 v\\u00e0 c\\u00e1c b\\u1ed9 ph\\u1eadn h\\u1ed9p \\u0111i\\u1ec7n cho m\\u00e1y m\\u00f3c t\\u1ef1 \\u0111\\u1ed9ng h\\u00f3a.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"Hoa K\\u1ef3: C\\u00e1c s\\u1ea3n ph\\u1ea9m li\\u00ean quan \\u0111\\u1ebfn thi\\u1ebft b\\u1ecb y t\\u1ebf, quang h\\u1ecdc v\\u00e0 thi\\u1ebft b\\u1ecb \\u00e2m thanh.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"\\u00dac: S\\u1ea3n ph\\u1ea9m kim lo\\u1ea1i t\\u1ea5m.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vi\\u1ec7t Nam: M\\u00e1y t\\u1ef1 \\u0111\\u1ed9ng h\\u00f3a nh\\u1ecf; bu l\\u00f4ng xe m\\u00e1y v\\u00e0 \\u00f4 t\\u00f4; s\\u1ea3n ph\\u1ea9m trong ng\\u00e0nh d\\u1ea7u kh\\u00ed.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"C\\u00e1c th\\u1ecb tr\\u01b0\\u1eddng v\\u00e0 s\\u1ea3n ph\\u1ea9m kh\\u00e1c.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i cung c\\u1ea5p d\\u1ecbch v\\u1ee5 trong nhi\\u1ec1u l\\u0129nh v\\u1ef1c.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ch\\u00fang t\\u00f4i lu\\u00f4n \\u0111\\u00e1p \\u1ee9ng y\\u00eau c\\u1ea7u thi\\u1ebft k\\u1ebf c\\u1ee7a kh\\u00e1ch h\\u00e0ng. Ngo\\u1ea1i h\\u00ecnh v\\u00e0 k\\u00edch th\\u01b0\\u1edbc l\\u00e0 nh\\u1eefng y\\u1ebfu t\\u1ed1 ch\\u00fang t\\u00f4i coi tr\\u1ecdng nh\\u1ea5t.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"cnc-machining-services|service-category\",\"material-forming-services|service-category\"],\"ct_animate\":\"wow fadeInUp\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"C\\u00f3 c\\u00e2u h\\u1ecfi n\\u00e0o kh\\u00f4ng?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Li\\u00ean h\\u1ec7 \\u0111\\u1ec3 nh\\u1eadn b\\u00e1o gi\\u00e1:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i c\\u00f3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c \\u0111\\u01a1n gi\\u1ea3n.\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ch\\u00fang t\\u00f4i lu\\u00f4n mang \\u0111\\u1ebfn c\\u1ea3m gi\\u00e1c an t\\u00e2m v\\u1ec1 ch\\u1ea5t l\\u01b0\\u1ee3ng v\\u00e0 ti\\u1ebfn \\u0111\\u1ed9.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"T\\u00ecm ch\\u00fang t\\u00f4i\",\"description\":\"Ch\\u00fang t\\u00f4i hi\\u1ec3u t\\u1ea7m quan tr\\u1ecdng c\\u1ee7a vi\\u1ec7c x\\u1eed l\\u00fd m\\u1ed7i d\\u1ef1 \\u00e1n theo m\\u1ed9t c\\u00e1ch ti\\u1ebfp c\\u1eadn to\\u00e0n di\\u1ec7n.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"K\\u1ebft n\\u1ed1i v\\u1edbi ch\\u00fang t\\u00f4i\",\"description\":\"\\u0110i\\u1ec1u l\\u00e0m ch\\u00fang t\\u00f4i kh\\u00e1c bi\\u1ec7t so v\\u1edbi c\\u00e1c c\\u00f4ng ty kh\\u00e1c l\\u00e0 chuy\\u00ean m\\u00f4n trong vi\\u1ec7c t\\u1ea1o ra c\\u00e1c gi\\u1ea3i ph\\u00e1p t\\u00f9y ch\\u1ec9nh.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Thanh to\\u00e1n cho ch\\u00fang t\\u00f4i\",\"description\":\"Ch\\u00fang t\\u00f4i khuy\\u1ebfn kh\\u00edch m\\u1ed7i th\\u00e0nh vi\\u00ean trong \\u0111\\u1ed9i ng\\u0169 tr\\u1edf th\\u00e0nh phi\\u00ean b\\u1ea3n t\\u1ed1t nh\\u1ea5t c\\u1ee7a ch\\u00ednh m\\u00ecnh, t\\u1ea1o ra m\\u1ed9t m\\u00f4i tr\\u01b0\\u1eddng linh ho\\u1ea1t v\\u00e0 h\\u1ee3p t\\u00e1c.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"\\u0110\\u1ea1t \\u0111\\u01b0\\u1ee3c \\u01b0\\u1edbc m\\u01a1 c\\u1ee7a b\\u1ea1n\",\"description\":\"C\\u1ed1t l\\u00f5i c\\u1ee7a m\\u1ed7i doanh nghi\\u1ec7p l\\u00e0 nh\\u1eefng gi\\u1ea3i ph\\u00e1p \\u0111\\u1ed9c \\u0111\\u00e1o, truy\\u1ec1n c\\u1ea3m h\\u1ee9ng cho s\\u1ef1 \\u0111\\u1ed5i m\\u1edbi v\\u00e0 ph\\u00e1t tri\\u1ec3n.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Li\\u00ean h\\u1ec7 v\\u1edbi ch\\u00fang t\\u00f4i b\\u1ea5t c\\u1ee9 l\\u00fac n\\u00e0o n\\u1ebfu b\\u1ea1n c\\u1ea7n s\\u1ef1 gi\\u00fap \\u0111\\u1ee1...\",\"title_color\":\"#85B23B\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8506,2980,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(8509,2981,'_elementor_edit_mode','builder'),(8510,2981,'_elementor_template_type','wp-page'),(8511,2981,'_elementor_version','3.24.7'),(8512,2981,'_wp_page_template','default'),(8513,2981,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i cung c\\u1ea5p nhi\\u1ec1u lo\\u1ea1i s\\u1ea3n ph\\u1ea9m cho ng\\u00e0nh c\\u00f4ng nghi\\u1ec7p c\\u01a1 kh\\u00ed tr\\u00ean to\\u00e0n Vi\\u1ec7t Nam v\\u00e0 qu\\u1ed1c t\\u1ebf, \\u0111\\u1eb7c bi\\u1ec7t t\\u1ea1i c\\u00e1c th\\u1ecb tr\\u01b0\\u1eddng tr\\u1ecdng \\u0111i\\u1ec3m nh\\u01b0 Nh\\u1eadt B\\u1ea3n, H\\u00e0n Qu\\u1ed1c, Hoa K\\u1ef3 v\\u00e0 \\u00dac. Ch\\u00fang t\\u00f4i c\\u0169ng c\\u00f3 kinh nghi\\u1ec7m xu\\u1ea5t kh\\u1ea9u \\u0111\\u1ebfn c\\u00e1c th\\u1ecb tr\\u01b0\\u1eddng n\\u00e0y.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Th\\u1ebf m\\u1ea1nh l\\u1edbn nh\\u1ea5t c\\u1ee7a ch\\u00fang t\\u00f4i n\\u1eb1m \\u1edf \\u0111\\u1ed9i ng\\u0169 nh\\u00e2n l\\u1ef1c tr\\u1ebb trung, \\u0111am m\\u00ea h\\u1ecdc h\\u1ecfi, s\\u00e1ng t\\u1ea1o v\\u00e0 t\\u1ef1 tin, c\\u00f3 kh\\u1ea3 n\\u0103ng s\\u1ea3n xu\\u1ea5t \\u0111a d\\u1ea1ng c\\u00e1c s\\u1ea3n ph\\u1ea9m c\\u01a1 kh\\u00ed v\\u1edbi ch\\u1ea5t l\\u01b0\\u1ee3ng lu\\u00f4n \\u1ed5n \\u0111\\u1ecbnh.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=oVQ4_PIqgz8\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Kh\\u00e1ch h\\u00e0ng\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Nh\\u00e2n s\\u1ef1\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"S\\u1ed1 \\u0111\\u01a1n h\\u00e0ng m\\u1ed7i n\\u0103m\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ch\\u00fang t\\u00f4i \\u0111\\u00e3 b\\u1eaft \\u0111\\u1ea7u m\\u1edf m\\u1ed9t c\\u1eeda h\\u00e0ng tr\\u00ean Alibaba \\u0111\\u1ec3 k\\u1ebft n\\u1ed1i v\\u1edbi c\\u00e1c \\u0111\\u01a1n h\\u00e0ng t\\u1eeb kh\\u1eafp n\\u01a1i tr\\u00ean th\\u1ebf gi\\u1edbi.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0e89391\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i n\\u1ed7 l\\u1ef1c tr\\u1edf th\\u00e0nh m\\u1ed9t trong nh\\u1eefng c\\u00f4ng ty ch\\u1ebf bi\\u1ebfn c\\u01a1 kh\\u00ed h\\u00e0ng \\u0111\\u1ea7u c\\u1ee7a Vi\\u1ec7t Nam, cung c\\u1ea5p ra th\\u1ecb tr\\u01b0\\u1eddng qu\\u1ed1c t\\u1ebf v\\u00e0o n\\u0103m 2030. Trong t\\u01b0\\u01a1ng lai, ch\\u00fang t\\u00f4i h\\u01b0\\u1edbng \\u0111\\u1ebfn vi\\u1ec7c s\\u1ea3n xu\\u1ea5t c\\u00e1c s\\u1ea3n ph\\u1ea9m m\\u00e1y m\\u00f3c ho\\u00e0n ch\\u1ec9nh \\u0111\\u1ec3 giao tr\\u1ef1c ti\\u1ebfp \\u0111\\u1ebfn ng\\u01b0\\u1eddi s\\u1eed d\\u1ee5ng cu\\u1ed1i.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>M\\u1ee5c ti\\u00eau \\u0111\\u1ea1t \\u0111\\u01b0\\u1ee3c v\\u00e0o n\\u0103m 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"\\u0110\\u00f4ng \\u00c1 (Nh\\u1eadt B\\u1ea3n, H\\u00e0n Qu\\u1ed1c, v.v.): Xu\\u1ea5t kh\\u1ea9u c\\u00e1c linh ki\\u1ec7n m\\u00e1y m\\u00f3c thay th\\u1ebf, ph\\u1ee5 ki\\u1ec7n xe m\\u00e1y v\\u00e0 \\u00f4 t\\u00f4, ph\\u1ee5 ki\\u1ec7n ng\\u00e0nh n\\u01b0\\u1edbc, khu\\u00f4n m\\u1eabu v\\u00e0 c\\u00e1c b\\u1ed9 ph\\u1eadn c\\u01a1 kh\\u00ed kh\\u00e1c.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Ch\\u00e2u \\u00c2u (\\u0110\\u1ee9c, Bulgaria, H\\u00e0 Lan, v.v.): S\\u1ea3n xu\\u1ea5t khu\\u00f4n jig cho v\\u00f2ng bi \\u00f4 t\\u00f4 v\\u00e0 c\\u00e1c b\\u1ed9 ph\\u1eadn h\\u1ed9p \\u0111i\\u1ec7n cho m\\u00e1y m\\u00f3c t\\u1ef1 \\u0111\\u1ed9ng h\\u00f3a.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"Hoa K\\u1ef3: C\\u00e1c s\\u1ea3n ph\\u1ea9m li\\u00ean quan \\u0111\\u1ebfn thi\\u1ebft b\\u1ecb y t\\u1ebf, quang h\\u1ecdc v\\u00e0 thi\\u1ebft b\\u1ecb \\u00e2m thanh.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"\\u00dac: S\\u1ea3n ph\\u1ea9m kim lo\\u1ea1i t\\u1ea5m.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vi\\u1ec7t Nam: M\\u00e1y t\\u1ef1 \\u0111\\u1ed9ng h\\u00f3a nh\\u1ecf; bu l\\u00f4ng xe m\\u00e1y v\\u00e0 \\u00f4 t\\u00f4; s\\u1ea3n ph\\u1ea9m trong ng\\u00e0nh d\\u1ea7u kh\\u00ed.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"C\\u00e1c th\\u1ecb tr\\u01b0\\u1eddng v\\u00e0 s\\u1ea3n ph\\u1ea9m kh\\u00e1c.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i cung c\\u1ea5p d\\u1ecbch v\\u1ee5 trong nhi\\u1ec1u l\\u0129nh v\\u1ef1c.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ch\\u00fang t\\u00f4i lu\\u00f4n \\u0111\\u00e1p \\u1ee9ng y\\u00eau c\\u1ea7u thi\\u1ebft k\\u1ebf c\\u1ee7a kh\\u00e1ch h\\u00e0ng. Ngo\\u1ea1i h\\u00ecnh v\\u00e0 k\\u00edch th\\u01b0\\u1edbc l\\u00e0 nh\\u1eefng y\\u1ebfu t\\u1ed1 ch\\u00fang t\\u00f4i coi tr\\u1ecdng nh\\u1ea5t.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"vi|language\"],\"ct_animate\":\"wow fadeInUp\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"C\\u00f3 c\\u00e2u h\\u1ecfi n\\u00e0o kh\\u00f4ng?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Li\\u00ean h\\u1ec7 \\u0111\\u1ec3 nh\\u1eadn b\\u00e1o gi\\u00e1:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i c\\u00f3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c \\u0111\\u01a1n gi\\u1ea3n.\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ch\\u00fang t\\u00f4i lu\\u00f4n mang \\u0111\\u1ebfn c\\u1ea3m gi\\u00e1c an t\\u00e2m v\\u1ec1 ch\\u1ea5t l\\u01b0\\u1ee3ng v\\u00e0 ti\\u1ebfn \\u0111\\u1ed9.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"T\\u00ecm ch\\u00fang t\\u00f4i\",\"description\":\"Ch\\u00fang t\\u00f4i hi\\u1ec3u t\\u1ea7m quan tr\\u1ecdng c\\u1ee7a vi\\u1ec7c x\\u1eed l\\u00fd m\\u1ed7i d\\u1ef1 \\u00e1n theo m\\u1ed9t c\\u00e1ch ti\\u1ebfp c\\u1eadn to\\u00e0n di\\u1ec7n.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"K\\u1ebft n\\u1ed1i v\\u1edbi ch\\u00fang t\\u00f4i\",\"description\":\"\\u0110i\\u1ec1u l\\u00e0m ch\\u00fang t\\u00f4i kh\\u00e1c bi\\u1ec7t so v\\u1edbi c\\u00e1c c\\u00f4ng ty kh\\u00e1c l\\u00e0 chuy\\u00ean m\\u00f4n trong vi\\u1ec7c t\\u1ea1o ra c\\u00e1c gi\\u1ea3i ph\\u00e1p t\\u00f9y ch\\u1ec9nh.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Thanh to\\u00e1n cho ch\\u00fang t\\u00f4i\",\"description\":\"Ch\\u00fang t\\u00f4i khuy\\u1ebfn kh\\u00edch m\\u1ed7i th\\u00e0nh vi\\u00ean trong \\u0111\\u1ed9i ng\\u0169 tr\\u1edf th\\u00e0nh phi\\u00ean b\\u1ea3n t\\u1ed1t nh\\u1ea5t c\\u1ee7a ch\\u00ednh m\\u00ecnh, t\\u1ea1o ra m\\u1ed9t m\\u00f4i tr\\u01b0\\u1eddng linh ho\\u1ea1t v\\u00e0 h\\u1ee3p t\\u00e1c.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"\\u0110\\u1ea1t \\u0111\\u01b0\\u1ee3c \\u01b0\\u1edbc m\\u01a1 c\\u1ee7a b\\u1ea1n\",\"description\":\"C\\u1ed1t l\\u00f5i c\\u1ee7a m\\u1ed7i doanh nghi\\u1ec7p l\\u00e0 nh\\u1eefng gi\\u1ea3i ph\\u00e1p \\u0111\\u1ed9c \\u0111\\u00e1o, truy\\u1ec1n c\\u1ea3m h\\u1ee9ng cho s\\u1ef1 \\u0111\\u1ed5i m\\u1edbi v\\u00e0 ph\\u00e1t tri\\u1ec3n.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Li\\u00ean h\\u1ec7 v\\u1edbi ch\\u00fang t\\u00f4i b\\u1ea5t c\\u1ee9 l\\u00fac n\\u00e0o n\\u1ebfu b\\u1ea1n c\\u1ea7n s\\u1ef1 gi\\u00fap \\u0111\\u1ee1...\",\"title_color\":\"#85B23B\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8514,2981,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(8519,2982,'_elementor_edit_mode','builder'),(8520,2982,'_elementor_template_type','wp-page'),(8521,2982,'_elementor_version','3.24.7'),(8522,2982,'_wp_page_template','default'),(8523,2982,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u3001\\u30d9\\u30c8\\u30ca\\u30e0\\u5168\\u571f\\u304a\\u3088\\u3073\\u4e16\\u754c\\u4e2d\\u306e\\u6a5f\\u68b0\\u7523\\u696d\\u5411\\u3051\\u306b\\u5e45\\u5e83\\u3044\\u88fd\\u54c1\\u3092\\u63d0\\u4f9b\\u3057\\u3066\\u304a\\u308a\\u3001\\u7279\\u306b\\u65e5\\u672c\\u3001\\u97d3\\u56fd\\u3001\\u30a2\\u30e1\\u30ea\\u30ab\\u3001\\u30aa\\u30fc\\u30b9\\u30c8\\u30e9\\u30ea\\u30a2\\u3068\\u3044\\u3063\\u305f\\u4e3b\\u8981\\u5e02\\u5834\\u3067\\u306e\\u53d6\\u5f15\\u306b\\u529b\\u3092\\u5165\\u308c\\u3066\\u3044\\u307e\\u3059\\u3002\\u307e\\u305f\\u3001\\u3053\\u308c\\u3089\\u306e\\u5e02\\u5834\\u3078\\u306e\\u8f38\\u51fa\\u7d4c\\u9a13\\u3082\\u8c4a\\u5bcc\\u3067\\u3059\\u3002\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306e\\u6700\\u5927\\u306e\\u5f37\\u307f\\u306f\\u3001\\u5b66\\u3076\\u3053\\u3068\\u3001\\u9769\\u65b0\\u3059\\u308b\\u3053\\u3068\\u306b\\u60c5\\u71b1\\u3092\\u6301\\u3061\\u3001\\u81ea\\u4fe1\\u3092\\u6301\\u3063\\u305f\\u82e5\\u3044\\u52b4\\u50cd\\u529b\\u306b\\u3042\\u308a\\u307e\\u3059\\u3002\\u3053\\u306e\\u30c1\\u30fc\\u30e0\\u306f\\u3001\\u5e38\\u306b\\u5b89\\u5b9a\\u3057\\u305f\\u9ad8\\u54c1\\u8cea\\u306e\\u6a5f\\u68b0\\u88fd\\u54c1\\u3092\\u591a\\u69d8\\u306b\\u88fd\\u9020\\u3059\\u308b\\u80fd\\u529b\\u3092\\u5099\\u3048\\u3066\\u3044\\u307e\\u3059\\u3002<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=vUCVqLmXSPM\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"\\u9867\\u5ba2\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"\\u4eba\\u4e8b\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"\\u5e74\\u9593\\u6ce8\\u6587\\u6570\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337},\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.trustpass.alibaba.com\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306f\\u3001\\u4e16\\u754c\\u4e2d\\u304b\\u3089\\u306e\\u6ce8\\u6587\\u3068\\u63a5\\u7d9a\\u3059\\u308b\\u305f\\u3081\\u306bAlibaba\\u306b\\u5e97\\u8217\\u3092\\u958b\\u8a2d\\u3057\\u59cb\\u3081\\u307e\\u3057\\u305f\\u3002<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0e89391\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u30012030\\u5e74\\u307e\\u3067\\u306b\\u30d9\\u30c8\\u30ca\\u30e0\\u306e\\u4e3b\\u8981\\u306a\\u6a5f\\u68b0\\u52a0\\u5de5\\u4f01\\u696d\\u306e\\u4e00\\u3064\\u3068\\u3057\\u3066\\u3001\\u56fd\\u969b\\u5e02\\u5834\\u306b\\u4f9b\\u7d66\\u3059\\u308b\\u3053\\u3068\\u3092\\u76ee\\u6307\\u3057\\u3066\\u3044\\u307e\\u3059\\u3002\\u5c06\\u6765\\u7684\\u306b\\u306f\\u3001\\u5b8c\\u6210\\u3057\\u305f\\u6a5f\\u68b0\\u88fd\\u54c1\\u3092\\u76f4\\u63a5\\u30a8\\u30f3\\u30c9\\u30e6\\u30fc\\u30b6\\u30fc\\u306b\\u63d0\\u4f9b\\u3059\\u308b\\u3053\\u3068\\u3092\\u76ee\\u6a19\\u3068\\u3057\\u3066\\u3044\\u307e\\u3059\\u3002\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2026\\u5e74\\u307e\\u3067\\u306b\\u9054\\u6210\\u3059\\u308b\\u76ee\\u6a19:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"\\u6771\\u30a2\\u30b8\\u30a2\\uff08\\u65e5\\u672c\\u3001\\u97d3\\u56fd\\u306a\\u3069\\uff09\\uff1a\\u4ea4\\u63db\\u7528\\u6a5f\\u68b0\\u90e8\\u54c1\\u3001\\u30aa\\u30fc\\u30c8\\u30d0\\u30a4\\u304a\\u3088\\u3073\\u81ea\\u52d5\\u8eca\\u306e\\u30a2\\u30af\\u30bb\\u30b5\\u30ea\\u30fc\\u3001\\u6c34\\u7523\\u696d\\u7528\\u306e\\u30d5\\u30a3\\u30c3\\u30c6\\u30a3\\u30f3\\u30b0\\u3001\\u91d1\\u578b\\u3001\\u305d\\u306e\\u4ed6\\u306e\\u6a5f\\u68b0\\u90e8\\u54c1\\u306e\\u8f38\\u51fa\\u3002\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"\\u30e8\\u30fc\\u30ed\\u30c3\\u30d1\\uff08\\u30c9\\u30a4\\u30c4\\u3001\\u30d6\\u30eb\\u30ac\\u30ea\\u30a2\\u3001\\u30aa\\u30e9\\u30f3\\u30c0\\u306a\\u3069\\uff09\\uff1a\\u81ea\\u52d5\\u8eca\\u7528\\u30d9\\u30a2\\u30ea\\u30f3\\u30b0\\u306e\\u6cbb\\u5177\\u304a\\u3088\\u3073\\u81ea\\u52d5\\u5316\\u6a5f\\u68b0\\u306e\\u96fb\\u6c17\\u30dc\\u30c3\\u30af\\u30b9\\u90e8\\u54c1\\u306e\\u751f\\u7523\\u3002\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"\\u30a2\\u30e1\\u30ea\\u30ab\\u5408\\u8846\\u56fd\\uff1a\\u533b\\u7642\\u6a5f\\u5668\\u3001\\u5149\\u5b66\\u6a5f\\u5668\\u3001\\u97f3\\u97ff\\u6a5f\\u5668\\u306b\\u95a2\\u9023\\u3059\\u308b\\u88fd\\u54c1\\u3002\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"\\u30aa\\u30fc\\u30b9\\u30c8\\u30e9\\u30ea\\u30a2\\uff1a\\u677f\\u91d1\\u88fd\\u54c1\\u3002\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"\\u30d9\\u30c8\\u30ca\\u30e0\\uff1a\\u5c0f\\u578b\\u81ea\\u52d5\\u5316\\u6a5f\\u68b0\\u3001\\u30aa\\u30fc\\u30c8\\u30d0\\u30a4\\u304a\\u3088\\u3073\\u81ea\\u52d5\\u8eca\\u306e\\u30dc\\u30eb\\u30c8\\u3001\\u77f3\\u6cb9\\u304a\\u3088\\u3073\\u30ac\\u30b9\\u7523\\u696d\\u306e\\u88fd\\u54c1\\u3002\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"\\u305d\\u306e\\u4ed6\\u306e\\u5e02\\u5834\\u3068\\u88fd\\u54c1\\u3002\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u8907\\u6570\\u306e\\u696d\\u754c\\u3067\\u30b5\\u30fc\\u30d3\\u30b9\\u3092\\u63d0\\u4f9b\\u3057\\u3066\\u3044\\u307e\\u3059\\u3002\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306f\\u5e38\\u306b\\u9867\\u5ba2\\u306e\\u30c7\\u30b6\\u30a4\\u30f3\\u8981\\u6c42\\u3092\\u6e80\\u305f\\u3057\\u307e\\u3059\\u3002\\u5916\\u89b3\\u3068\\u5bf8\\u6cd5\\u306f\\u3001\\u6700\\u3082\\u91cd\\u8981\\u8996\\u3057\\u3066\\u3044\\u308b\\u8981\\u7d20\\u3067\\u3059\\u3002<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"ja|language\"],\"ct_animate\":\"wow fadeInUp\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u305d\\u306e\\u4ed6\\u306e\\u30b5\\u30fc\\u30d3\\u30b9\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"\\u8cea\\u554f\\u304c\\u3042\\u308a\\u307e\\u3059\\u304b\\uff1f\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"\\u898b\\u7a4d\\u3082\\u308a\\u3092\\u53d6\\u5f97\\u3059\\u308b\\u305f\\u3081\\u306e\\u9023\\u7d61\\u5148\\uff1a\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u7c21\\u5358\\u306a\\u4f5c\\u696d\\u624b\\u9806\\u3092\\u6301\\u3063\\u3066\\u3044\\u307e\\u3059\\u3002\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306f\\u5e38\\u306b\\u54c1\\u8cea\\u3068\\u9032\\u6357\\u306b\\u304a\\u3044\\u3066\\u5b89\\u5fc3\\u611f\\u3092\\u63d0\\u4f9b\\u3057\\u307e\\u3059\\u3002<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"\\u79c1\\u305f\\u3061\\u3092\\u63a2\\u3059\",\"description\":\"\\u79c1\\u305f\\u3061\\u306f\\u3001\\u5404\\u30d7\\u30ed\\u30b8\\u30a7\\u30af\\u30c8\\u3092\\u7dcf\\u5408\\u7684\\u306b\\u53d6\\u308a\\u6271\\u3046\\u91cd\\u8981\\u6027\\u3092\\u7406\\u89e3\\u3057\\u3066\\u3044\\u307e\\u3059\\u3002\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"\\u79c1\\u305f\\u3061\\u3068\\u63a5\\u7d9a\\u3059\\u308b\",\"description\":\"\\u79c1\\u305f\\u3061\\u304c\\u4ed6\\u306e\\u30a8\\u30fc\\u30b8\\u30a7\\u30f3\\u30b7\\u30fc\\u3068\\u7570\\u306a\\u308b\\u70b9\\u306f\\u3001\\u30ab\\u30b9\\u30bf\\u30de\\u30a4\\u30ba\\u3055\\u308c\\u305f\\u30bd\\u30ea\\u30e5\\u30fc\\u30b7\\u30e7\\u30f3\\u3092\\u4f5c\\u6210\\u3059\\u308b\\u5c02\\u9580\\u77e5\\u8b58\\u306b\\u3042\\u308a\\u307e\\u3059\\u3002\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"\\u79c1\\u305f\\u3061\\u306b\\u652f\\u6255\\u3046\",\"description\":\"\\u79c1\\u305f\\u3061\\u306f\\u3001\\u5404\\u30c1\\u30fc\\u30e0\\u30e1\\u30f3\\u30d0\\u30fc\\u304c\\u81ea\\u5206\\u81ea\\u8eab\\u306e\\u6700\\u9ad8\\u306e\\u59ff\\u3092\\u76ee\\u6307\\u3059\\u3053\\u3068\\u3092\\u5968\\u52b1\\u3057\\u3001\\u67d4\\u8edf\\u3067\\u5354\\u529b\\u7684\\u306a\\u74b0\\u5883\\u3092\\u80b2\\u3093\\u3067\\u3044\\u307e\\u3059\\u3002\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"\\u3042\\u306a\\u305f\\u306e\\u5922\\u3092\\u5b9f\\u73fe\\u3059\\u308b\",\"description\":\"\\u3069\\u306e\\u30d3\\u30b8\\u30cd\\u30b9\\u306b\\u3082\\u3001\\u9769\\u65b0\\u3068\\u9032\\u6b69\\u3092\\u4fc3\\u3059\\u72ec\\u81ea\\u306e\\u30bd\\u30ea\\u30e5\\u30fc\\u30b7\\u30e7\\u30f3\\u304c\\u3042\\u308a\\u307e\\u3059\\u3002\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u3044\\u3064\\u3067\\u3082\\u3069\\u3093\\u306a\\u52a9\\u3051\\u304c\\u5fc5\\u8981\\u306a\\u5834\\u5408\\u3067\\u3082\\u3001\\u79c1\\u305f\\u3061\\u306b\\u3054\\u9023\\u7d61\\u304f\\u3060\\u3055\\u3044...\",\"title_color\":\"#85B23B\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8524,2982,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(8528,2982,'custom_header','1'),(8529,2982,'header_layout','2'),(8530,2982,'custom_pagetitle','hide'),(8531,2982,'custom_title',''),(8532,2982,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(8533,2982,'ptitle_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(8534,2982,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(8535,2982,'content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}'),(8536,2982,'show_sidebar_page',''),(8537,2982,'sidebar_page_pos','right'),(8538,2982,'custom_footer','1'),(8539,2982,'footer_layout_custom','799'),(8540,2982,'p_logo_dark','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(8541,2982,'p_logo_light','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(8543,2982,'_edit_lock','1742180156:1'),(8544,2983,'_elementor_edit_mode','builder'),(8545,2983,'_elementor_template_type','wp-page'),(8546,2983,'_elementor_version','3.24.7'),(8547,2983,'_wp_page_template','default'),(8548,2983,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=oVQ4_PIqgz8\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have started to open a store on Alibaba to connect with orders from around the world.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0e89391\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"cnc-machining-services|service-category\",\"material-forming-services|service-category\"],\"ct_animate\":\"wow fadeInUp\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always provide a sense of security in terms of quality and progress.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#85B23B\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8549,2983,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(8553,2982,'_edit_last','1'),(8554,2982,'h_custom_menu',''),(8555,2982,'_yoast_wpseo_estimated-reading-time-minutes','2'),(8556,2984,'_elementor_edit_mode','builder'),(8557,2984,'_elementor_template_type','wp-page'),(8558,2984,'_elementor_version','3.24.7'),(8559,2984,'_wp_page_template','default'),(8560,2984,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=oVQ4_PIqgz8\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have started to open a store on Alibaba to connect with orders from around the world.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0e89391\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"cnc-machining-services|service-category\",\"material-forming-services|service-category\"],\"ct_animate\":\"wow fadeInUp\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always provide a sense of security in terms of quality and progress.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#85B23B\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8561,2984,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(8565,2985,'_elementor_edit_mode','builder'),(8566,2985,'_elementor_template_type','wp-page'),(8567,2985,'_elementor_version','3.24.7'),(8568,2985,'_wp_page_template','default'),(8569,2985,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=oVQ4_PIqgz8\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have started to open a store on Alibaba to connect with orders from around the world.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0e89391\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"cnc-machining-services|service-category\",\"material-forming-services|service-category\"],\"ct_animate\":\"wow fadeInUp\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always provide a sense of security in terms of quality and progress.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#85B23B\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8570,2985,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(8574,2986,'_elementor_edit_mode','builder'),(8575,2986,'_elementor_template_type','wp-page'),(8576,2986,'_elementor_version','3.24.7'),(8577,2986,'_wp_page_template','default'),(8578,2986,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u3001\\u30d9\\u30c8\\u30ca\\u30e0\\u5168\\u571f\\u304a\\u3088\\u3073\\u4e16\\u754c\\u4e2d\\u306e\\u6a5f\\u68b0\\u7523\\u696d\\u5411\\u3051\\u306b\\u5e45\\u5e83\\u3044\\u88fd\\u54c1\\u3092\\u63d0\\u4f9b\\u3057\\u3066\\u304a\\u308a\\u3001\\u7279\\u306b\\u65e5\\u672c\\u3001\\u97d3\\u56fd\\u3001\\u30a2\\u30e1\\u30ea\\u30ab\\u3001\\u30aa\\u30fc\\u30b9\\u30c8\\u30e9\\u30ea\\u30a2\\u3068\\u3044\\u3063\\u305f\\u4e3b\\u8981\\u5e02\\u5834\\u3067\\u306e\\u53d6\\u5f15\\u306b\\u529b\\u3092\\u5165\\u308c\\u3066\\u3044\\u307e\\u3059\\u3002\\u307e\\u305f\\u3001\\u3053\\u308c\\u3089\\u306e\\u5e02\\u5834\\u3078\\u306e\\u8f38\\u51fa\\u7d4c\\u9a13\\u3082\\u8c4a\\u5bcc\\u3067\\u3059\\u3002\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306e\\u6700\\u5927\\u306e\\u5f37\\u307f\\u306f\\u3001\\u5b66\\u3076\\u3053\\u3068\\u3001\\u9769\\u65b0\\u3059\\u308b\\u3053\\u3068\\u306b\\u60c5\\u71b1\\u3092\\u6301\\u3061\\u3001\\u81ea\\u4fe1\\u3092\\u6301\\u3063\\u305f\\u82e5\\u3044\\u52b4\\u50cd\\u529b\\u306b\\u3042\\u308a\\u307e\\u3059\\u3002\\u3053\\u306e\\u30c1\\u30fc\\u30e0\\u306f\\u3001\\u5e38\\u306b\\u5b89\\u5b9a\\u3057\\u305f\\u9ad8\\u54c1\\u8cea\\u306e\\u6a5f\\u68b0\\u88fd\\u54c1\\u3092\\u591a\\u69d8\\u306b\\u88fd\\u9020\\u3059\\u308b\\u80fd\\u529b\\u3092\\u5099\\u3048\\u3066\\u3044\\u307e\\u3059\\u3002<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=oVQ4_PIqgz8\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"\\u9867\\u5ba2\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"\\u4eba\\u4e8b\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"\\u5e74\\u9593\\u6ce8\\u6587\\u6570\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306f\\u3001\\u4e16\\u754c\\u4e2d\\u304b\\u3089\\u306e\\u6ce8\\u6587\\u3068\\u63a5\\u7d9a\\u3059\\u308b\\u305f\\u3081\\u306bAlibaba\\u306b\\u5e97\\u8217\\u3092\\u958b\\u8a2d\\u3057\\u59cb\\u3081\\u307e\\u3057\\u305f\\u3002<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0e89391\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u30012030\\u5e74\\u307e\\u3067\\u306b\\u30d9\\u30c8\\u30ca\\u30e0\\u306e\\u4e3b\\u8981\\u306a\\u6a5f\\u68b0\\u52a0\\u5de5\\u4f01\\u696d\\u306e\\u4e00\\u3064\\u3068\\u3057\\u3066\\u3001\\u56fd\\u969b\\u5e02\\u5834\\u306b\\u4f9b\\u7d66\\u3059\\u308b\\u3053\\u3068\\u3092\\u76ee\\u6307\\u3057\\u3066\\u3044\\u307e\\u3059\\u3002\\u5c06\\u6765\\u7684\\u306b\\u306f\\u3001\\u5b8c\\u6210\\u3057\\u305f\\u6a5f\\u68b0\\u88fd\\u54c1\\u3092\\u76f4\\u63a5\\u30a8\\u30f3\\u30c9\\u30e6\\u30fc\\u30b6\\u30fc\\u306b\\u63d0\\u4f9b\\u3059\\u308b\\u3053\\u3068\\u3092\\u76ee\\u6a19\\u3068\\u3057\\u3066\\u3044\\u307e\\u3059\\u3002\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2026\\u5e74\\u307e\\u3067\\u306b\\u9054\\u6210\\u3059\\u308b\\u76ee\\u6a19:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"\\u6771\\u30a2\\u30b8\\u30a2\\uff08\\u65e5\\u672c\\u3001\\u97d3\\u56fd\\u306a\\u3069\\uff09\\uff1a\\u4ea4\\u63db\\u7528\\u6a5f\\u68b0\\u90e8\\u54c1\\u3001\\u30aa\\u30fc\\u30c8\\u30d0\\u30a4\\u304a\\u3088\\u3073\\u81ea\\u52d5\\u8eca\\u306e\\u30a2\\u30af\\u30bb\\u30b5\\u30ea\\u30fc\\u3001\\u6c34\\u7523\\u696d\\u7528\\u306e\\u30d5\\u30a3\\u30c3\\u30c6\\u30a3\\u30f3\\u30b0\\u3001\\u91d1\\u578b\\u3001\\u305d\\u306e\\u4ed6\\u306e\\u6a5f\\u68b0\\u90e8\\u54c1\\u306e\\u8f38\\u51fa\\u3002\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"\\u30e8\\u30fc\\u30ed\\u30c3\\u30d1\\uff08\\u30c9\\u30a4\\u30c4\\u3001\\u30d6\\u30eb\\u30ac\\u30ea\\u30a2\\u3001\\u30aa\\u30e9\\u30f3\\u30c0\\u306a\\u3069\\uff09\\uff1a\\u81ea\\u52d5\\u8eca\\u7528\\u30d9\\u30a2\\u30ea\\u30f3\\u30b0\\u306e\\u6cbb\\u5177\\u304a\\u3088\\u3073\\u81ea\\u52d5\\u5316\\u6a5f\\u68b0\\u306e\\u96fb\\u6c17\\u30dc\\u30c3\\u30af\\u30b9\\u90e8\\u54c1\\u306e\\u751f\\u7523\\u3002\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"\\u30a2\\u30e1\\u30ea\\u30ab\\u5408\\u8846\\u56fd\\uff1a\\u533b\\u7642\\u6a5f\\u5668\\u3001\\u5149\\u5b66\\u6a5f\\u5668\\u3001\\u97f3\\u97ff\\u6a5f\\u5668\\u306b\\u95a2\\u9023\\u3059\\u308b\\u88fd\\u54c1\\u3002\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"\\u30aa\\u30fc\\u30b9\\u30c8\\u30e9\\u30ea\\u30a2\\uff1a\\u677f\\u91d1\\u88fd\\u54c1\\u3002\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"\\u30d9\\u30c8\\u30ca\\u30e0\\uff1a\\u5c0f\\u578b\\u81ea\\u52d5\\u5316\\u6a5f\\u68b0\\u3001\\u30aa\\u30fc\\u30c8\\u30d0\\u30a4\\u304a\\u3088\\u3073\\u81ea\\u52d5\\u8eca\\u306e\\u30dc\\u30eb\\u30c8\\u3001\\u77f3\\u6cb9\\u304a\\u3088\\u3073\\u30ac\\u30b9\\u7523\\u696d\\u306e\\u88fd\\u54c1\\u3002\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"\\u305d\\u306e\\u4ed6\\u306e\\u5e02\\u5834\\u3068\\u88fd\\u54c1\\u3002\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u8907\\u6570\\u306e\\u696d\\u754c\\u3067\\u30b5\\u30fc\\u30d3\\u30b9\\u3092\\u63d0\\u4f9b\\u3057\\u3066\\u3044\\u307e\\u3059\\u3002\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306f\\u5e38\\u306b\\u9867\\u5ba2\\u306e\\u30c7\\u30b6\\u30a4\\u30f3\\u8981\\u6c42\\u3092\\u6e80\\u305f\\u3057\\u307e\\u3059\\u3002\\u5916\\u89b3\\u3068\\u5bf8\\u6cd5\\u306f\\u3001\\u6700\\u3082\\u91cd\\u8981\\u8996\\u3057\\u3066\\u3044\\u308b\\u8981\\u7d20\\u3067\\u3059\\u3002<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"cnc-machining-services|service-category\",\"material-forming-services|service-category\"],\"ct_animate\":\"wow fadeInUp\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"\\u8cea\\u554f\\u304c\\u3042\\u308a\\u307e\\u3059\\u304b\\uff1f\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"\\u898b\\u7a4d\\u3082\\u308a\\u3092\\u53d6\\u5f97\\u3059\\u308b\\u305f\\u3081\\u306e\\u9023\\u7d61\\u5148\\uff1a\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u7c21\\u5358\\u306a\\u4f5c\\u696d\\u624b\\u9806\\u3092\\u6301\\u3063\\u3066\\u3044\\u307e\\u3059\\u3002\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306f\\u5e38\\u306b\\u54c1\\u8cea\\u3068\\u9032\\u6357\\u306b\\u304a\\u3044\\u3066\\u5b89\\u5fc3\\u611f\\u3092\\u63d0\\u4f9b\\u3057\\u307e\\u3059\\u3002<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"\\u79c1\\u305f\\u3061\\u3092\\u63a2\\u3059\",\"description\":\"\\u79c1\\u305f\\u3061\\u306f\\u3001\\u5404\\u30d7\\u30ed\\u30b8\\u30a7\\u30af\\u30c8\\u3092\\u7dcf\\u5408\\u7684\\u306b\\u53d6\\u308a\\u6271\\u3046\\u91cd\\u8981\\u6027\\u3092\\u7406\\u89e3\\u3057\\u3066\\u3044\\u307e\\u3059\\u3002\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"\\u79c1\\u305f\\u3061\\u3068\\u63a5\\u7d9a\\u3059\\u308b\",\"description\":\"\\u79c1\\u305f\\u3061\\u304c\\u4ed6\\u306e\\u30a8\\u30fc\\u30b8\\u30a7\\u30f3\\u30b7\\u30fc\\u3068\\u7570\\u306a\\u308b\\u70b9\\u306f\\u3001\\u30ab\\u30b9\\u30bf\\u30de\\u30a4\\u30ba\\u3055\\u308c\\u305f\\u30bd\\u30ea\\u30e5\\u30fc\\u30b7\\u30e7\\u30f3\\u3092\\u4f5c\\u6210\\u3059\\u308b\\u5c02\\u9580\\u77e5\\u8b58\\u306b\\u3042\\u308a\\u307e\\u3059\\u3002\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"\\u79c1\\u305f\\u3061\\u306b\\u652f\\u6255\\u3046\",\"description\":\"\\u79c1\\u305f\\u3061\\u306f\\u3001\\u5404\\u30c1\\u30fc\\u30e0\\u30e1\\u30f3\\u30d0\\u30fc\\u304c\\u81ea\\u5206\\u81ea\\u8eab\\u306e\\u6700\\u9ad8\\u306e\\u59ff\\u3092\\u76ee\\u6307\\u3059\\u3053\\u3068\\u3092\\u5968\\u52b1\\u3057\\u3001\\u67d4\\u8edf\\u3067\\u5354\\u529b\\u7684\\u306a\\u74b0\\u5883\\u3092\\u80b2\\u3093\\u3067\\u3044\\u307e\\u3059\\u3002\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"\\u3042\\u306a\\u305f\\u306e\\u5922\\u3092\\u5b9f\\u73fe\\u3059\\u308b\",\"description\":\"\\u3069\\u306e\\u30d3\\u30b8\\u30cd\\u30b9\\u306b\\u3082\\u3001\\u9769\\u65b0\\u3068\\u9032\\u6b69\\u3092\\u4fc3\\u3059\\u72ec\\u81ea\\u306e\\u30bd\\u30ea\\u30e5\\u30fc\\u30b7\\u30e7\\u30f3\\u304c\\u3042\\u308a\\u307e\\u3059\\u3002\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u3044\\u3064\\u3067\\u3082\\u3069\\u3093\\u306a\\u52a9\\u3051\\u304c\\u5fc5\\u8981\\u306a\\u5834\\u5408\\u3067\\u3082\\u3001\\u79c1\\u305f\\u3061\\u306b\\u3054\\u9023\\u7d61\\u304f\\u3060\\u3055\\u3044...\",\"title_color\":\"#85B23B\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8579,2986,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(8583,2982,'_yoast_wpseo_content_score','90'),(8586,2987,'_elementor_edit_mode','builder'),(8587,2987,'_elementor_template_type','wp-page'),(8588,2987,'_elementor_version','3.24.7'),(8589,2987,'_wp_page_template','default'),(8590,2987,'_elementor_data','[{\"id\":\"0766e75\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"e82a045\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"layout\":\"2\",\"filter_default_title\":\"All\",\"button_text\":\"Read more\",\"ct_animate\":\"wow bounceInDown\",\"pagination_type\":\"loadmore\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"show_button\":\"\",\"source\":[\"vi|language\"],\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}]'),(8594,2987,'custom_header',''),(8595,2987,'header_layout','2'),(8596,2987,'p_logo_dark','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(8597,2987,'p_logo_light','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(8598,2987,'h_custom_menu',''),(8599,2987,'custom_pagetitle','themeoption'),(8600,2987,'custom_title',''),(8601,2987,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(8602,2987,'ptitle_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(8603,2987,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(8604,2987,'content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(8605,2987,'show_sidebar_page',''),(8606,2987,'sidebar_page_pos','right'),(8607,2987,'custom_footer','1'),(8608,2987,'footer_layout_custom','799'),(8610,2987,'_edit_lock','1734417251:1'),(8611,2988,'_elementor_edit_mode','builder'),(8612,2988,'_elementor_template_type','wp-page'),(8613,2988,'_elementor_version','3.24.7'),(8614,2988,'_wp_page_template','default'),(8615,2988,'_elementor_data','[{\"id\":\"0766e75\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"e82a045\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"layout\":\"2\",\"filter_default_title\":\"All\",\"button_text\":\"Read more\",\"ct_animate\":\"wow bounceInDown\",\"pagination_type\":\"loadmore\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"show_button\":\"\",\"source\":[\"en|language\"],\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}]'),(8619,2987,'_edit_last','1'),(8620,2987,'_yoast_wpseo_estimated-reading-time-minutes','1'),(8621,2989,'_elementor_edit_mode','builder'),(8622,2989,'_elementor_template_type','wp-page'),(8623,2989,'_elementor_version','3.24.7'),(8624,2989,'_wp_page_template','default'),(8625,2989,'_elementor_data','[{\"id\":\"0766e75\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"e82a045\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"layout\":\"2\",\"filter_default_title\":\"All\",\"button_text\":\"Read more\",\"ct_animate\":\"wow bounceInDown\",\"pagination_type\":\"loadmore\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"show_button\":\"\",\"source\":[\"en|language\"],\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}]'),(8629,2990,'_elementor_edit_mode','builder'),(8630,2990,'_elementor_template_type','wp-page'),(8631,2990,'_elementor_version','3.24.7'),(8632,2990,'_wp_page_template','default'),(8633,2990,'_elementor_data','[{\"id\":\"0766e75\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"e82a045\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"layout\":\"2\",\"filter_default_title\":\"All\",\"button_text\":\"Read more\",\"ct_animate\":\"wow bounceInDown\",\"pagination_type\":\"loadmore\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"show_button\":\"\",\"source\":[\"en|language\"],\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}]'),(8637,2991,'_elementor_edit_mode','builder'),(8638,2991,'_elementor_template_type','wp-page'),(8639,2991,'_elementor_version','3.24.7'),(8640,2991,'_wp_page_template','default'),(8641,2991,'_elementor_data','[{\"id\":\"0766e75\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"e82a045\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"layout\":\"2\",\"filter_default_title\":\"All\",\"button_text\":\"Read more\",\"ct_animate\":\"wow bounceInDown\",\"pagination_type\":\"loadmore\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"show_button\":\"\",\"source\":[\"en|language\"],\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}]'),(8645,2992,'_elementor_edit_mode','builder'),(8646,2992,'_elementor_template_type','wp-page'),(8647,2992,'_elementor_version','3.24.7'),(8648,2992,'_wp_page_template','default'),(8649,2992,'_elementor_data','[{\"id\":\"0766e75\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"e82a045\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"layout\":\"2\",\"filter_default_title\":\"All\",\"button_text\":\"Read more\",\"ct_animate\":\"wow bounceInDown\",\"pagination_type\":\"loadmore\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"show_button\":\"\",\"source\":[\"vi|language\"],\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}]'),(8654,2993,'_elementor_edit_mode','builder'),(8655,2993,'_elementor_template_type','wp-page'),(8656,2993,'_elementor_version','3.24.7'),(8657,2993,'_wp_page_template','default'),(8658,2993,'_elementor_data','[{\"id\":\"0766e75\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"e82a045\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"layout\":\"2\",\"filter_default_title\":\"All\",\"button_text\":\"Read more\",\"ct_animate\":\"wow bounceInDown\",\"pagination_type\":\"loadmore\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"show_button\":\"\",\"source\":[\"ja|language\"],\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}]'),(8662,2993,'custom_header',''),(8663,2993,'header_layout','2'),(8664,2993,'p_logo_dark','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(8665,2993,'p_logo_light','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(8666,2993,'h_custom_menu',''),(8667,2993,'custom_pagetitle','themeoption'),(8668,2993,'custom_title',''),(8669,2993,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(8670,2993,'ptitle_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(8671,2993,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(8672,2993,'content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(8673,2993,'show_sidebar_page',''),(8674,2993,'sidebar_page_pos','right'),(8675,2993,'custom_footer','1'),(8676,2993,'footer_layout_custom','799'),(8678,2993,'_edit_lock','1734417173:1'),(8679,2994,'_elementor_edit_mode','builder'),(8680,2994,'_elementor_template_type','wp-page'),(8681,2994,'_elementor_version','3.24.7'),(8682,2994,'_wp_page_template','default'),(8683,2994,'_elementor_data','[{\"id\":\"0766e75\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"e82a045\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"layout\":\"2\",\"filter_default_title\":\"All\",\"button_text\":\"Read more\",\"ct_animate\":\"wow bounceInDown\",\"pagination_type\":\"loadmore\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"show_button\":\"\",\"source\":[\"en|language\"],\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}]'),(8687,2993,'_edit_last','1'),(8688,2993,'_yoast_wpseo_estimated-reading-time-minutes','1'),(8689,2995,'_elementor_edit_mode','builder'),(8690,2995,'_elementor_template_type','wp-page'),(8691,2995,'_elementor_version','3.24.7'),(8692,2995,'_wp_page_template','default'),(8693,2995,'_elementor_data','[{\"id\":\"0766e75\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"e82a045\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"layout\":\"2\",\"filter_default_title\":\"All\",\"button_text\":\"Read more\",\"ct_animate\":\"wow bounceInDown\",\"pagination_type\":\"loadmore\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"show_button\":\"\",\"source\":[\"en|language\"],\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}]'),(8697,2996,'_elementor_edit_mode','builder'),(8698,2996,'_elementor_template_type','wp-page'),(8699,2996,'_elementor_version','3.24.7'),(8700,2996,'_wp_page_template','default'),(8701,2996,'_elementor_data','[{\"id\":\"0766e75\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"e82a045\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"layout\":\"2\",\"filter_default_title\":\"All\",\"button_text\":\"Read more\",\"ct_animate\":\"wow bounceInDown\",\"pagination_type\":\"loadmore\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"show_button\":\"\",\"source\":[\"en|language\"],\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}]'),(8705,2997,'_elementor_edit_mode','builder'),(8706,2997,'_elementor_template_type','wp-page'),(8707,2997,'_elementor_version','3.24.7'),(8708,2997,'_wp_page_template','default'),(8709,2997,'_elementor_data','[{\"id\":\"0766e75\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"e82a045\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"layout\":\"2\",\"filter_default_title\":\"All\",\"button_text\":\"Read more\",\"ct_animate\":\"wow bounceInDown\",\"pagination_type\":\"loadmore\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"show_button\":\"\",\"source\":[\"ja|language\"],\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}]'),(8714,2998,'_elementor_edit_mode','builder'),(8715,2998,'_elementor_template_type','wp-page'),(8716,2998,'_elementor_version','3.24.7'),(8717,2998,'_wp_page_template','default'),(8718,2998,'_elementor_data','[{\"id\":\"6a510c2\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"c94bc95\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"Th\\u1ebf m\\u1ea1nh c\\u1ee7a ch\\u00fang t\\u00f4i n\\u1eb1m \\u1edf s\\u1ea3n xu\\u1ea5t h\\u00e0ng lo\\u1ea1t nh\\u00f4m v\\u00e0 th\\u00e9p. Ch\\u00fang t\\u00f4i xu\\u1ea5t s\\u1eafc trong vi\\u1ec7c \\u0111\\u1ed5i m\\u1edbi v\\u00e0 cung c\\u1ea5p c\\u00e1c s\\u1ea3n ph\\u1ea9m c\\u00f3 gi\\u00e1 tr\\u1ecb cao cho kh\\u00e1ch h\\u00e0ng.\",\"title_tag\":\"h5\",\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9523dc6\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"\\u00d4 t\\u00f4 & Xe m\\u00e1y\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"e4eeb57\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":3190,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Ab6277516622141b68178f66bebaadd93o.jpg_350x350.jpg\"},{\"id\":3191,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A4969ef2343a244608cc511d1e7be28e2X.png_350x350.png\"},{\"id\":3192,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/H9be6461494cf4fe7998192dc483066c9v.png_350x350.png\"},{\"id\":3193,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/H4cbac47ae6cf4705b966668ca1abad509.png_350x350.png\"},{\"id\":3194,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/H6c00bd237d8b46d4b06a1cc6ef76accfE.png_350x350.png\"},{\"id\":3195,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/H71abe7a763a345ae87dcf70c25a70a32M.png_350x350.png\"},{\"id\":3196,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/2.jpg\"},{\"id\":3197,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A045fe45345664394a2a80499b4bd2117i.jpg_350x350.jpg\"},{\"id\":3198,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A86e039df1c9d4e809ea53dfd676ba67aO.jpg_350x350.jpg\"},{\"id\":3199,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A786dc427af46457ea923c41ea7688f67Q.jpg_350x350.jpg\"},{\"id\":3200,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/6.jpg\"},{\"id\":3201,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A2ed5a5c3f8f544c8910a3fe29da5e2984.jpg_350x350.jpg\"},{\"id\":3202,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A3c80646854cd4401b6b737a80e8e29f2Z.jpg_350x350.jpg\"},{\"id\":3203,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A53f94fffa0e64ba8a47330e85a179214l.jpg_350x350.jpg\"},{\"id\":3204,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Aa559aaa8e8d44868b700967e182631e0O.jpg_350x350.jpg\"},{\"id\":3205,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/4.jpg\"},{\"id\":3206,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A29209fca14e3491286a7ae2a7d535066t.jpg_350x350.jpg\"},{\"id\":3207,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Afd6e5018d54a4c319b4941af57e38fc1e.jpg_350x350.jpg\"},{\"id\":3208,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A8626df5ae89c458484cbdeab6b0a2768E.jpg_350x350.jpg\"},{\"id\":3209,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Aec2a4cd895e648b6bc7174d864e103329.jpg_350x350.jpg\"},{\"id\":3210,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/1.jpg\"},{\"id\":3211,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A5fa71b0eddf648049c5f33d331738460m.jpg_350x350.jpg\"},{\"id\":3212,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A9bc1872697d649e7a28d14c48cd6b71bq.jpg_350x350.jpg\"},{\"id\":3213,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Ad0c782b84615484d8303ad964cd302a4C.jpg_350x350.jpg\"},{\"id\":3214,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Aec3f44d2c0cf4536870b19097b5035f4A.jpg_350x350.jpg\"},{\"id\":3215,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/8.jpg\"},{\"id\":3216,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A5df619ce89ec42189a5c4d05bbba4f2dw.jpg_350x350.jpg\"},{\"id\":3217,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A9207015598ae47e4ba57d5d6755a7945J.jpg_350x350.jpg\"},{\"id\":3218,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Aa67514ca153a43208612611af15ae689t.jpg_350x350.jpg\"},{\"id\":3219,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Ac8c57af57fc04a9b8afbcf5214d8b125a.jpg_350x350.jpg\"},{\"id\":3220,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Aea1a2ea6c9d04b78977d1e8c907e721cR.jpg_350x350.jpg\"},{\"id\":3221,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/5.jpg\"},{\"id\":3222,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/7.jpg\"},{\"id\":3223,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A4fa22b3db4704145a9c8f2b6d413b4b7Y.jpg_350x350.jpg\"},{\"id\":3224,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A8cfa154ca70a46c5965e993255b53ecbg.jpg_350x350.jpg\"},{\"id\":3225,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A967c634a517c48f38c23d4766db5bba1a.jpg_350x350.jpg\"},{\"id\":3226,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A462413b6de2b401ba60e99bbe1d15e33K.jpg_350x350.jpg\"},{\"id\":3227,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A661399142a7247278bbf69a9d6007556W.jpg_350x350.jpg\"},{\"id\":3228,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/10.jpg\"},{\"id\":3229,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A16eb71f546c44c4ba00c6afe46464d593.jpg_350x350.jpg\"},{\"id\":3230,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A72a21ba969c84b98b63b985380b97ef5O.jpg_350x350.jpg\"},{\"id\":3231,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A99574ebe1a6c432abebb91680e3e227e0.jpg_350x350.jpg\"},{\"id\":3232,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Ac6d9a3b79a904eeb9c925afa374ec53aA.jpg_350x350.jpg\"},{\"id\":3233,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Adef05c3212194f259f1556cd5081ab3eg.jpg_350x350.jpg\"},{\"id\":3234,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/3.jpg\"},{\"id\":3235,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/9.jpg\"},{\"id\":3236,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A268aa8f9b65c4cdf9f45e594f2cd8ad4M.jpg_350x350.jpg\"},{\"id\":3237,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A864432f2571743689342ae173ee9dc9fd.jpg_350x350.jpg\"},{\"id\":3238,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Abd43851c92654bd99cfdca45d896fbcbB.jpg_350x350.jpg\"},{\"id\":3239,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Acdd1226298dd4613abf021bdcaad320b0.jpg_350x350.jpg\"},{\"id\":3240,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Ae91bf7f51db3402ebaff610c299e9aacF.jpg_350x350.jpg\"},{\"id\":3241,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A05f18d47e70948ae8795111d055f42fa2.jpg_350x350.jpg\"},{\"id\":3242,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A5c37792f38434388a02a0479fcbc4123T.jpg_350x350.jpg\"},{\"id\":3243,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A8c420992f47745509f4f292ac7bd2258H.jpg_350x350.jpg\"},{\"id\":3244,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A1001e63ea59149f8a81abb92d5d5fe713.jpg_350x350.jpg\"},{\"id\":3245,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A36346f881b104996b6c070b5d2cebff8u.jpg_350x350.jpg\"},{\"id\":3246,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A157183c07a764eb8957bc4cd13982808i.jpg_350x350.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"e211b12\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"C\\u00e1c b\\u1ed9 ph\\u1eadn gia c\\u00f4ng CNC\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"f3f0dbe\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":3247,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok5.jpg\"},{\"id\":3248,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok4.png\"},{\"id\":3249,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-machine22.avif\"},{\"id\":3250,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-machine3.jpg\"},{\"id\":3251,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok3.png\"},{\"id\":3252,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok1.png\"},{\"id\":3253,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok2.png\"},{\"id\":3254,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok7.png\"},{\"id\":3255,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok9.jpg\"},{\"id\":3256,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok8.jpg\"},{\"id\":3257,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z5709443476797_cb3e9e0d596ad6331366b8a711f46926.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"9da0051\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Kim lo\\u1ea1i t\\u1ea5m & Gia c\\u00f4ng\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"804badd\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":3258,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal1.jpg\"},{\"id\":3259,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal3.jpg\"},{\"id\":3260,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal4.jpg\"},{\"id\":3261,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal5.jpg\"},{\"id\":3262,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal7.jpg\"},{\"id\":3263,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal8.jpg\"},{\"id\":3264,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal9.jpg\"},{\"id\":3265,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal10.jpg\"},{\"id\":3266,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal2.png\"},{\"id\":3267,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal6.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"7a49f4c\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Linh ki\\u1ec7n khu\\u00f4n & khu\\u00f4n d\\u1eadp\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"51068f5\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":3268,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\"},{\"id\":3269,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\"},{\"id\":3270,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\"},{\"id\":3271,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\"},{\"id\":3272,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\"},{\"id\":3273,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"5e7fcce\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"\\u0110inh \\u1ed1c & Bu l\\u00f4ng c\\u00f4ng nghi\\u1ec7p\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"edd871c\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":3274,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/IMG_1237.jpeg\"},{\"id\":3275,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/DSC00822.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"b1ac8c0\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"D\\u1ee5ng c\\u1ee5\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1583ea9\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2710,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\"},{\"id\":2711,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\"},{\"id\":2712,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\"},{\"id\":2713,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\"},{\"id\":2714,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\"},{\"id\":2715,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\"},{\"id\":2716,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"2c57791\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"\\u0110\\u1ed3 g\\u00e1\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"38c84c0\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2730,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\"},{\"id\":2731,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\"},{\"id\":2732,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\"},{\"id\":2733,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\"},{\"id\":2734,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}]'),(8719,2998,'custom_header',''),(8720,2998,'header_layout','2'),(8721,2998,'p_logo_dark','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(8722,2998,'p_logo_light','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(8723,2998,'h_custom_menu',''),(8724,2998,'custom_pagetitle','themeoption'),(8725,2998,'custom_title',''),(8726,2998,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(8727,2998,'ptitle_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(8728,2998,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(8729,2998,'content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(8730,2998,'show_sidebar_page',''),(8731,2998,'sidebar_page_pos','right'),(8732,2998,'custom_footer','1'),(8733,2998,'footer_layout_custom','799'),(8735,2998,'_edit_lock','1742181722:1'),(8739,2999,'_elementor_edit_mode','builder'),(8740,2999,'_elementor_template_type','wp-page'),(8741,2999,'_elementor_version','3.24.7'),(8742,2999,'_wp_page_template','default'),(8743,2999,'_elementor_data','[{\"id\":\"fcff723\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"dee41b0\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"Our strength lies in mass production of aluminum and steel. We excel in innovation and deliver high-value products to our customers.\",\"title_tag\":\"h5\",\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"373dfc0\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Welding\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"5603a87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2678,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074649965196_82fd76ddbbf38d64dae8af11b21537b9.jpg\"},{\"id\":2667,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074652723212_8770f028ff646f014f1e9f6efe34962e.jpg\"},{\"id\":2672,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074640939718_b0ff6acad14b2ab5ed158171c76833f9.jpg\"},{\"id\":2677,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074641293113_b4b186c67b6e7829dd2a91d730cf9aa7.jpg\"},{\"id\":2668,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074642763587_21ecce5d4accf371358eb4cbd73c800d.jpg\"},{\"id\":2669,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074642849848_10b5670512096e654748e57b24a04afe.jpg\"},{\"id\":2670,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074640758883_648a042f4b640d0f57a4441dd2109570.jpg\"},{\"id\":2671,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074640849237_e7699b1bc6e38e0bf65eb3bca28ae8ca.jpg\"},{\"id\":2673,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074641052070_9efbc1586cb5e95cc54b8421a63f380e.jpg\"},{\"id\":2674,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074641145273_7be5df3e1779aa04e890e40cc243cdee.jpg\"},{\"id\":2675,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074640653285_5a87adf57ce0c4186fe4fb1579e357b5.jpg\"},{\"id\":2676,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074641173826_45ae737f70dfb2d365abb397f139d708.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"dec4325\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Mold\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1852cc9\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2679,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736575578_e0a4f5473843e58ee1a79989f367ada9.jpg\"},{\"id\":2680,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\"},{\"id\":2681,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735219679_91a6f6993146906f8465b43ddd0c2b3c.jpg\"},{\"id\":2682,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736761454_b98d468b133ac59ebbf5e62b693462a4.jpg\"},{\"id\":2683,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736784335_f93bc7820cfdc0b015c8224b9a1ace10.jpg\"},{\"id\":2684,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069219941349_b0954e44a25a7d1543eb33ceeae20efb.jpg\"},{\"id\":2685,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735343201_d2922aa1680c57bfe2da9aaba121caa6.jpg\"},{\"id\":2686,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735441885_088dd417b659783376adfeb006d18180.jpg\"},{\"id\":2687,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735598101_0fdd0a773a22d6af92f694d7866b2a5a.jpg\"},{\"id\":2688,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735634632_da3df11cc1dfa978c5b70f2e44404712.jpg\"},{\"id\":2689,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735693987_bf7347f533ec750a2c4f9df1763b8881.jpg\"},{\"id\":2690,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735835496_a71ac50ddac36867fca21cee8c47fe0a.jpg\"},{\"id\":2691,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\"},{\"id\":2692,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\"},{\"id\":2693,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\"},{\"id\":2694,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\"},{\"id\":2695,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736324472_06f1ed1a1be2c3a5923070aff7d5e10e.jpg\"},{\"id\":2696,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736391051_4c3cae16a8ff4f216b8d53673772dd07.jpg\"},{\"id\":2697,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"ab81cda\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Machine Details\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"cd9dba9\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2698,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069219949175_e2a105bcf223c832d6caab2d03fe0413.jpg\"},{\"id\":2699,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799313165266_a15253e3a3e0a2c978ed667994b8f415.jpg\"},{\"id\":2700,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321604115_493f8355869dd3ca82a96e86e2982bfe.jpg\"},{\"id\":2701,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321696024_733a85bf835aea0a8afc8b269d149700.jpg\"},{\"id\":2702,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799313179567_c3d6675a03762fb94376dc96f05389bd.jpg\"},{\"id\":2703,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799313273454_ad716befaf43d2df147629d95262c520.jpg\"},{\"id\":2704,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363716249_96b2fea5fe33f4a24d8251c8aaf225e1.jpg\"},{\"id\":2705,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363723771_9eec4d51fc1723fb669f980084e20a61.jpg\"},{\"id\":2706,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363723892_5b7200026202a1efe96596109fad6857.jpg\"},{\"id\":2707,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363735361_9355fa7eb991123dc995dfaa2b4cf754.jpg\"},{\"id\":2708,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363746762_6241ac4c6625581b5db9b24a1ee05f68-1.jpg\"},{\"id\":2709,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363741409_d72124d9091280f6529a27a919be13c9.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"2f9b716\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Tool\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a165f68\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2710,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\"},{\"id\":2711,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\"},{\"id\":2712,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\"},{\"id\":2713,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\"},{\"id\":2714,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\"},{\"id\":2715,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\"},{\"id\":2716,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"bcd074c\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Motorbike Parts\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7eb3b87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2717,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028111300979_0052716b462843a5d1968f7870c72fd8.jpg\"},{\"id\":2718,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028112000000_2440d5ae36f700840d0f0b583bbcbdfa.jpg\"},{\"id\":2719,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028112670024_1806afd7d70bbbc523d63b0c61e9130b.jpg\"},{\"id\":2720,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028113287912_e1aa8bdb9fe72b1fe22887ceaafc0dbd.jpg\"},{\"id\":2721,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028113894704_3504e4bf093ad9f9d635c8bfa2aaaef6.jpg\"},{\"id\":2722,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028114767739_d014b10da5088bc7d3675a6d00e77d33.jpg\"},{\"id\":2723,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321434561_6d2cb75edba82832e0cbd90673857bd3.jpg\"},{\"id\":2724,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321448088_6e6944c3ceb335897e2b4f4ad20975b7.jpg\"},{\"id\":2725,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321548557_1a5e69a89ca37953e0c04c88e529d951.jpg\"},{\"id\":2726,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028109630704_29a82df97ea4ea7c37859f9667154da1.jpg\"},{\"id\":2727,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028109675984_511bb58690a73ab9cc1adcd146ca46f2.jpg\"},{\"id\":2728,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028110631415_9bd375451b2242776c3fa47a5e91f3e1.jpg\"},{\"id\":2729,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028111167101_685de2e5395bbf8d97e4d2f8aa87fee3.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"1ef8491\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Jig\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"09a76d6\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2730,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\"},{\"id\":2731,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\"},{\"id\":2732,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\"},{\"id\":2733,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\"},{\"id\":2734,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}]'),(8747,2998,'_edit_last','1'),(8748,2998,'_yoast_wpseo_estimated-reading-time-minutes','20'),(8749,3000,'_elementor_edit_mode','builder'),(8750,3000,'_elementor_template_type','wp-page'),(8751,3000,'_elementor_version','3.24.7'),(8752,3000,'_wp_page_template','default'),(8753,3000,'_elementor_data','[{\"id\":\"fcff723\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"dee41b0\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"Our strength lies in mass production of aluminum and steel. We excel in innovation and deliver high-value products to our customers.\",\"title_tag\":\"h5\",\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"373dfc0\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Welding\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"5603a87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2678,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074649965196_82fd76ddbbf38d64dae8af11b21537b9.jpg\"},{\"id\":2667,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074652723212_8770f028ff646f014f1e9f6efe34962e.jpg\"},{\"id\":2672,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074640939718_b0ff6acad14b2ab5ed158171c76833f9.jpg\"},{\"id\":2677,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074641293113_b4b186c67b6e7829dd2a91d730cf9aa7.jpg\"},{\"id\":2668,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074642763587_21ecce5d4accf371358eb4cbd73c800d.jpg\"},{\"id\":2669,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074642849848_10b5670512096e654748e57b24a04afe.jpg\"},{\"id\":2670,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074640758883_648a042f4b640d0f57a4441dd2109570.jpg\"},{\"id\":2671,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074640849237_e7699b1bc6e38e0bf65eb3bca28ae8ca.jpg\"},{\"id\":2673,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074641052070_9efbc1586cb5e95cc54b8421a63f380e.jpg\"},{\"id\":2674,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074641145273_7be5df3e1779aa04e890e40cc243cdee.jpg\"},{\"id\":2675,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074640653285_5a87adf57ce0c4186fe4fb1579e357b5.jpg\"},{\"id\":2676,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074641173826_45ae737f70dfb2d365abb397f139d708.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"dec4325\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Mold\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1852cc9\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2679,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736575578_e0a4f5473843e58ee1a79989f367ada9.jpg\"},{\"id\":2680,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\"},{\"id\":2681,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735219679_91a6f6993146906f8465b43ddd0c2b3c.jpg\"},{\"id\":2682,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736761454_b98d468b133ac59ebbf5e62b693462a4.jpg\"},{\"id\":2683,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736784335_f93bc7820cfdc0b015c8224b9a1ace10.jpg\"},{\"id\":2684,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069219941349_b0954e44a25a7d1543eb33ceeae20efb.jpg\"},{\"id\":2685,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735343201_d2922aa1680c57bfe2da9aaba121caa6.jpg\"},{\"id\":2686,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735441885_088dd417b659783376adfeb006d18180.jpg\"},{\"id\":2687,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735598101_0fdd0a773a22d6af92f694d7866b2a5a.jpg\"},{\"id\":2688,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735634632_da3df11cc1dfa978c5b70f2e44404712.jpg\"},{\"id\":2689,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735693987_bf7347f533ec750a2c4f9df1763b8881.jpg\"},{\"id\":2690,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735835496_a71ac50ddac36867fca21cee8c47fe0a.jpg\"},{\"id\":2691,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\"},{\"id\":2692,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\"},{\"id\":2693,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\"},{\"id\":2694,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\"},{\"id\":2695,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736324472_06f1ed1a1be2c3a5923070aff7d5e10e.jpg\"},{\"id\":2696,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736391051_4c3cae16a8ff4f216b8d53673772dd07.jpg\"},{\"id\":2697,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"ab81cda\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Machine Details\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"cd9dba9\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2698,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069219949175_e2a105bcf223c832d6caab2d03fe0413.jpg\"},{\"id\":2699,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799313165266_a15253e3a3e0a2c978ed667994b8f415.jpg\"},{\"id\":2700,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321604115_493f8355869dd3ca82a96e86e2982bfe.jpg\"},{\"id\":2701,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321696024_733a85bf835aea0a8afc8b269d149700.jpg\"},{\"id\":2702,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799313179567_c3d6675a03762fb94376dc96f05389bd.jpg\"},{\"id\":2703,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799313273454_ad716befaf43d2df147629d95262c520.jpg\"},{\"id\":2704,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363716249_96b2fea5fe33f4a24d8251c8aaf225e1.jpg\"},{\"id\":2705,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363723771_9eec4d51fc1723fb669f980084e20a61.jpg\"},{\"id\":2706,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363723892_5b7200026202a1efe96596109fad6857.jpg\"},{\"id\":2707,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363735361_9355fa7eb991123dc995dfaa2b4cf754.jpg\"},{\"id\":2708,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363746762_6241ac4c6625581b5db9b24a1ee05f68-1.jpg\"},{\"id\":2709,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363741409_d72124d9091280f6529a27a919be13c9.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"2f9b716\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Tool\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a165f68\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2710,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\"},{\"id\":2711,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\"},{\"id\":2712,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\"},{\"id\":2713,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\"},{\"id\":2714,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\"},{\"id\":2715,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\"},{\"id\":2716,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"bcd074c\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Motorbike Parts\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7eb3b87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2717,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028111300979_0052716b462843a5d1968f7870c72fd8.jpg\"},{\"id\":2718,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028112000000_2440d5ae36f700840d0f0b583bbcbdfa.jpg\"},{\"id\":2719,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028112670024_1806afd7d70bbbc523d63b0c61e9130b.jpg\"},{\"id\":2720,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028113287912_e1aa8bdb9fe72b1fe22887ceaafc0dbd.jpg\"},{\"id\":2721,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028113894704_3504e4bf093ad9f9d635c8bfa2aaaef6.jpg\"},{\"id\":2722,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028114767739_d014b10da5088bc7d3675a6d00e77d33.jpg\"},{\"id\":2723,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321434561_6d2cb75edba82832e0cbd90673857bd3.jpg\"},{\"id\":2724,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321448088_6e6944c3ceb335897e2b4f4ad20975b7.jpg\"},{\"id\":2725,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321548557_1a5e69a89ca37953e0c04c88e529d951.jpg\"},{\"id\":2726,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028109630704_29a82df97ea4ea7c37859f9667154da1.jpg\"},{\"id\":2727,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028109675984_511bb58690a73ab9cc1adcd146ca46f2.jpg\"},{\"id\":2728,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028110631415_9bd375451b2242776c3fa47a5e91f3e1.jpg\"},{\"id\":2729,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028111167101_685de2e5395bbf8d97e4d2f8aa87fee3.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"1ef8491\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Jig\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"09a76d6\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2730,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\"},{\"id\":2731,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\"},{\"id\":2732,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\"},{\"id\":2733,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\"},{\"id\":2734,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}]'),(8757,3001,'_elementor_edit_mode','builder'),(8758,3001,'_elementor_template_type','wp-page'),(8759,3001,'_elementor_version','3.24.7'),(8760,3001,'_wp_page_template','default'),(8761,3001,'_elementor_data','[{\"id\":\"fcff723\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"dee41b0\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"Our strength lies in mass production of aluminum and steel. We excel in innovation and deliver high-value products to our customers.\",\"title_tag\":\"h5\",\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"373dfc0\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Welding\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"5603a87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2678,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074649965196_82fd76ddbbf38d64dae8af11b21537b9.jpg\"},{\"id\":2667,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074652723212_8770f028ff646f014f1e9f6efe34962e.jpg\"},{\"id\":2672,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074640939718_b0ff6acad14b2ab5ed158171c76833f9.jpg\"},{\"id\":2677,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074641293113_b4b186c67b6e7829dd2a91d730cf9aa7.jpg\"},{\"id\":2668,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074642763587_21ecce5d4accf371358eb4cbd73c800d.jpg\"},{\"id\":2669,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074642849848_10b5670512096e654748e57b24a04afe.jpg\"},{\"id\":2670,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074640758883_648a042f4b640d0f57a4441dd2109570.jpg\"},{\"id\":2671,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074640849237_e7699b1bc6e38e0bf65eb3bca28ae8ca.jpg\"},{\"id\":2673,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074641052070_9efbc1586cb5e95cc54b8421a63f380e.jpg\"},{\"id\":2674,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074641145273_7be5df3e1779aa04e890e40cc243cdee.jpg\"},{\"id\":2675,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074640653285_5a87adf57ce0c4186fe4fb1579e357b5.jpg\"},{\"id\":2676,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074641173826_45ae737f70dfb2d365abb397f139d708.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"dec4325\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Mold\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1852cc9\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2679,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736575578_e0a4f5473843e58ee1a79989f367ada9.jpg\"},{\"id\":2680,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\"},{\"id\":2681,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735219679_91a6f6993146906f8465b43ddd0c2b3c.jpg\"},{\"id\":2682,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736761454_b98d468b133ac59ebbf5e62b693462a4.jpg\"},{\"id\":2683,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736784335_f93bc7820cfdc0b015c8224b9a1ace10.jpg\"},{\"id\":2684,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069219941349_b0954e44a25a7d1543eb33ceeae20efb.jpg\"},{\"id\":2685,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735343201_d2922aa1680c57bfe2da9aaba121caa6.jpg\"},{\"id\":2686,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735441885_088dd417b659783376adfeb006d18180.jpg\"},{\"id\":2687,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735598101_0fdd0a773a22d6af92f694d7866b2a5a.jpg\"},{\"id\":2688,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735634632_da3df11cc1dfa978c5b70f2e44404712.jpg\"},{\"id\":2689,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735693987_bf7347f533ec750a2c4f9df1763b8881.jpg\"},{\"id\":2690,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735835496_a71ac50ddac36867fca21cee8c47fe0a.jpg\"},{\"id\":2691,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\"},{\"id\":2692,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\"},{\"id\":2693,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\"},{\"id\":2694,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\"},{\"id\":2695,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736324472_06f1ed1a1be2c3a5923070aff7d5e10e.jpg\"},{\"id\":2696,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736391051_4c3cae16a8ff4f216b8d53673772dd07.jpg\"},{\"id\":2697,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"ab81cda\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Machine Details\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"cd9dba9\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2698,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069219949175_e2a105bcf223c832d6caab2d03fe0413.jpg\"},{\"id\":2699,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799313165266_a15253e3a3e0a2c978ed667994b8f415.jpg\"},{\"id\":2700,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321604115_493f8355869dd3ca82a96e86e2982bfe.jpg\"},{\"id\":2701,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321696024_733a85bf835aea0a8afc8b269d149700.jpg\"},{\"id\":2702,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799313179567_c3d6675a03762fb94376dc96f05389bd.jpg\"},{\"id\":2703,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799313273454_ad716befaf43d2df147629d95262c520.jpg\"},{\"id\":2704,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363716249_96b2fea5fe33f4a24d8251c8aaf225e1.jpg\"},{\"id\":2705,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363723771_9eec4d51fc1723fb669f980084e20a61.jpg\"},{\"id\":2706,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363723892_5b7200026202a1efe96596109fad6857.jpg\"},{\"id\":2707,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363735361_9355fa7eb991123dc995dfaa2b4cf754.jpg\"},{\"id\":2708,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363746762_6241ac4c6625581b5db9b24a1ee05f68-1.jpg\"},{\"id\":2709,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363741409_d72124d9091280f6529a27a919be13c9.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"2f9b716\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Tool\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a165f68\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2710,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\"},{\"id\":2711,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\"},{\"id\":2712,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\"},{\"id\":2713,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\"},{\"id\":2714,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\"},{\"id\":2715,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\"},{\"id\":2716,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"bcd074c\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Motorbike Parts\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7eb3b87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2717,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028111300979_0052716b462843a5d1968f7870c72fd8.jpg\"},{\"id\":2718,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028112000000_2440d5ae36f700840d0f0b583bbcbdfa.jpg\"},{\"id\":2719,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028112670024_1806afd7d70bbbc523d63b0c61e9130b.jpg\"},{\"id\":2720,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028113287912_e1aa8bdb9fe72b1fe22887ceaafc0dbd.jpg\"},{\"id\":2721,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028113894704_3504e4bf093ad9f9d635c8bfa2aaaef6.jpg\"},{\"id\":2722,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028114767739_d014b10da5088bc7d3675a6d00e77d33.jpg\"},{\"id\":2723,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321434561_6d2cb75edba82832e0cbd90673857bd3.jpg\"},{\"id\":2724,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321448088_6e6944c3ceb335897e2b4f4ad20975b7.jpg\"},{\"id\":2725,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321548557_1a5e69a89ca37953e0c04c88e529d951.jpg\"},{\"id\":2726,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028109630704_29a82df97ea4ea7c37859f9667154da1.jpg\"},{\"id\":2727,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028109675984_511bb58690a73ab9cc1adcd146ca46f2.jpg\"},{\"id\":2728,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028110631415_9bd375451b2242776c3fa47a5e91f3e1.jpg\"},{\"id\":2729,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028111167101_685de2e5395bbf8d97e4d2f8aa87fee3.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"1ef8491\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Jig\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"09a76d6\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2730,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\"},{\"id\":2731,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\"},{\"id\":2732,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\"},{\"id\":2733,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\"},{\"id\":2734,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}]'),(8765,3002,'_elementor_edit_mode','builder'),(8766,3002,'_elementor_template_type','wp-page'),(8767,3002,'_elementor_version','3.24.7'),(8768,3002,'_wp_page_template','default'),(8769,3002,'_elementor_data','[{\"id\":\"fcff723\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"dee41b0\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"Th\\u1ebf m\\u1ea1nh c\\u1ee7a ch\\u00fang t\\u00f4i n\\u1eb1m \\u1edf s\\u1ea3n xu\\u1ea5t h\\u00e0ng lo\\u1ea1t nh\\u00f4m v\\u00e0 th\\u00e9p. Ch\\u00fang t\\u00f4i xu\\u1ea5t s\\u1eafc trong vi\\u1ec7c \\u0111\\u1ed5i m\\u1edbi v\\u00e0 cung c\\u1ea5p c\\u00e1c s\\u1ea3n ph\\u1ea9m c\\u00f3 gi\\u00e1 tr\\u1ecb cao cho kh\\u00e1ch h\\u00e0ng.\",\"title_tag\":\"h5\",\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"373dfc0\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"H\\u00e0n\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"5603a87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2678,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074649965196_82fd76ddbbf38d64dae8af11b21537b9.jpg\"},{\"id\":2667,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074652723212_8770f028ff646f014f1e9f6efe34962e.jpg\"},{\"id\":2672,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074640939718_b0ff6acad14b2ab5ed158171c76833f9.jpg\"},{\"id\":2677,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074641293113_b4b186c67b6e7829dd2a91d730cf9aa7.jpg\"},{\"id\":2668,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074642763587_21ecce5d4accf371358eb4cbd73c800d.jpg\"},{\"id\":2669,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074642849848_10b5670512096e654748e57b24a04afe.jpg\"},{\"id\":2670,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074640758883_648a042f4b640d0f57a4441dd2109570.jpg\"},{\"id\":2671,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074640849237_e7699b1bc6e38e0bf65eb3bca28ae8ca.jpg\"},{\"id\":2673,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074641052070_9efbc1586cb5e95cc54b8421a63f380e.jpg\"},{\"id\":2674,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074641145273_7be5df3e1779aa04e890e40cc243cdee.jpg\"},{\"id\":2675,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074640653285_5a87adf57ce0c4186fe4fb1579e357b5.jpg\"},{\"id\":2676,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074641173826_45ae737f70dfb2d365abb397f139d708.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"dec4325\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Khu\\u00f4n\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1852cc9\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2679,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736575578_e0a4f5473843e58ee1a79989f367ada9.jpg\"},{\"id\":2680,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\"},{\"id\":2681,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735219679_91a6f6993146906f8465b43ddd0c2b3c.jpg\"},{\"id\":2682,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736761454_b98d468b133ac59ebbf5e62b693462a4.jpg\"},{\"id\":2683,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736784335_f93bc7820cfdc0b015c8224b9a1ace10.jpg\"},{\"id\":2684,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069219941349_b0954e44a25a7d1543eb33ceeae20efb.jpg\"},{\"id\":2685,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735343201_d2922aa1680c57bfe2da9aaba121caa6.jpg\"},{\"id\":2686,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735441885_088dd417b659783376adfeb006d18180.jpg\"},{\"id\":2687,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735598101_0fdd0a773a22d6af92f694d7866b2a5a.jpg\"},{\"id\":2688,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735634632_da3df11cc1dfa978c5b70f2e44404712.jpg\"},{\"id\":2689,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735693987_bf7347f533ec750a2c4f9df1763b8881.jpg\"},{\"id\":2690,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735835496_a71ac50ddac36867fca21cee8c47fe0a.jpg\"},{\"id\":2691,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\"},{\"id\":2692,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\"},{\"id\":2693,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\"},{\"id\":2694,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\"},{\"id\":2695,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736324472_06f1ed1a1be2c3a5923070aff7d5e10e.jpg\"},{\"id\":2696,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736391051_4c3cae16a8ff4f216b8d53673772dd07.jpg\"},{\"id\":2697,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"ab81cda\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Chi ti\\u1ebft m\\u00e1y\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"cd9dba9\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2698,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069219949175_e2a105bcf223c832d6caab2d03fe0413.jpg\"},{\"id\":2699,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799313165266_a15253e3a3e0a2c978ed667994b8f415.jpg\"},{\"id\":2700,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321604115_493f8355869dd3ca82a96e86e2982bfe.jpg\"},{\"id\":2701,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321696024_733a85bf835aea0a8afc8b269d149700.jpg\"},{\"id\":2702,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799313179567_c3d6675a03762fb94376dc96f05389bd.jpg\"},{\"id\":2703,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799313273454_ad716befaf43d2df147629d95262c520.jpg\"},{\"id\":2704,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363716249_96b2fea5fe33f4a24d8251c8aaf225e1.jpg\"},{\"id\":2705,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363723771_9eec4d51fc1723fb669f980084e20a61.jpg\"},{\"id\":2706,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363723892_5b7200026202a1efe96596109fad6857.jpg\"},{\"id\":2707,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363735361_9355fa7eb991123dc995dfaa2b4cf754.jpg\"},{\"id\":2708,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363746762_6241ac4c6625581b5db9b24a1ee05f68-1.jpg\"},{\"id\":2709,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363741409_d72124d9091280f6529a27a919be13c9.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"2f9b716\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"D\\u1ee5ng c\\u1ee5\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a165f68\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2710,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\"},{\"id\":2711,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\"},{\"id\":2712,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\"},{\"id\":2713,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\"},{\"id\":2714,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\"},{\"id\":2715,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\"},{\"id\":2716,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"bcd074c\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Ph\\u1ee5 t\\u00f9ng xe m\\u00e1y\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7eb3b87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2717,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028111300979_0052716b462843a5d1968f7870c72fd8.jpg\"},{\"id\":2718,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028112000000_2440d5ae36f700840d0f0b583bbcbdfa.jpg\"},{\"id\":2719,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028112670024_1806afd7d70bbbc523d63b0c61e9130b.jpg\"},{\"id\":2720,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028113287912_e1aa8bdb9fe72b1fe22887ceaafc0dbd.jpg\"},{\"id\":2721,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028113894704_3504e4bf093ad9f9d635c8bfa2aaaef6.jpg\"},{\"id\":2722,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028114767739_d014b10da5088bc7d3675a6d00e77d33.jpg\"},{\"id\":2723,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321434561_6d2cb75edba82832e0cbd90673857bd3.jpg\"},{\"id\":2724,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321448088_6e6944c3ceb335897e2b4f4ad20975b7.jpg\"},{\"id\":2725,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321548557_1a5e69a89ca37953e0c04c88e529d951.jpg\"},{\"id\":2726,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028109630704_29a82df97ea4ea7c37859f9667154da1.jpg\"},{\"id\":2727,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028109675984_511bb58690a73ab9cc1adcd146ca46f2.jpg\"},{\"id\":2728,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028110631415_9bd375451b2242776c3fa47a5e91f3e1.jpg\"},{\"id\":2729,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028111167101_685de2e5395bbf8d97e4d2f8aa87fee3.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"1ef8491\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Khu\\u00f4n jig\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"09a76d6\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2730,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\"},{\"id\":2731,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\"},{\"id\":2732,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\"},{\"id\":2733,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\"},{\"id\":2734,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}]'),(8773,2998,'_yoast_wpseo_content_score','90'),(8775,3003,'_elementor_edit_mode','builder'),(8776,3003,'_elementor_template_type','wp-page'),(8777,3003,'_elementor_version','3.24.7'),(8778,3003,'_wp_page_template','default'),(8779,3003,'_elementor_data','[{\"id\":\"6ab6341\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"b748b2e\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"\\u79c1\\u305f\\u3061\\u306e\\u5f37\\u307f\\u306f\\u3001\\u30a2\\u30eb\\u30df\\u30cb\\u30a6\\u30e0\\u3068\\u92fc\\u306e\\u5927\\u91cf\\u751f\\u7523\\u306b\\u3042\\u308a\\u307e\\u3059\\u3002\\u79c1\\u305f\\u3061\\u306f\\u9769\\u65b0\\u306b\\u512a\\u308c\\u3001\\u9867\\u5ba2\\u306b\\u9ad8\\u4ed8\\u52a0\\u4fa1\\u5024\\u306e\\u88fd\\u54c1\\u3092\\u63d0\\u4f9b\\u3057\\u307e\\u3059\\u3002\",\"title_tag\":\"h5\",\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"f0b8725\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"\\u81ea\\u52d5\\u8eca\\uff06\\u30aa\\u30fc\\u30c8\\u30d0\\u30a4\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"e160294\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":3190,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Ab6277516622141b68178f66bebaadd93o.jpg_350x350.jpg\"},{\"id\":3191,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A4969ef2343a244608cc511d1e7be28e2X.png_350x350.png\"},{\"id\":3192,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/H9be6461494cf4fe7998192dc483066c9v.png_350x350.png\"},{\"id\":3193,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/H4cbac47ae6cf4705b966668ca1abad509.png_350x350.png\"},{\"id\":3194,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/H6c00bd237d8b46d4b06a1cc6ef76accfE.png_350x350.png\"},{\"id\":3195,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/H71abe7a763a345ae87dcf70c25a70a32M.png_350x350.png\"},{\"id\":3196,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/2.jpg\"},{\"id\":3197,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A045fe45345664394a2a80499b4bd2117i.jpg_350x350.jpg\"},{\"id\":3198,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A86e039df1c9d4e809ea53dfd676ba67aO.jpg_350x350.jpg\"},{\"id\":3199,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A786dc427af46457ea923c41ea7688f67Q.jpg_350x350.jpg\"},{\"id\":3200,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/6.jpg\"},{\"id\":3201,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A2ed5a5c3f8f544c8910a3fe29da5e2984.jpg_350x350.jpg\"},{\"id\":3202,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A3c80646854cd4401b6b737a80e8e29f2Z.jpg_350x350.jpg\"},{\"id\":3203,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A53f94fffa0e64ba8a47330e85a179214l.jpg_350x350.jpg\"},{\"id\":3204,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Aa559aaa8e8d44868b700967e182631e0O.jpg_350x350.jpg\"},{\"id\":3205,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/4.jpg\"},{\"id\":3206,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A29209fca14e3491286a7ae2a7d535066t.jpg_350x350.jpg\"},{\"id\":3207,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Afd6e5018d54a4c319b4941af57e38fc1e.jpg_350x350.jpg\"},{\"id\":3208,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A8626df5ae89c458484cbdeab6b0a2768E.jpg_350x350.jpg\"},{\"id\":3209,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Aec2a4cd895e648b6bc7174d864e103329.jpg_350x350.jpg\"},{\"id\":3210,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/1.jpg\"},{\"id\":3211,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A5fa71b0eddf648049c5f33d331738460m.jpg_350x350.jpg\"},{\"id\":3212,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A9bc1872697d649e7a28d14c48cd6b71bq.jpg_350x350.jpg\"},{\"id\":3213,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Ad0c782b84615484d8303ad964cd302a4C.jpg_350x350.jpg\"},{\"id\":3214,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Aec3f44d2c0cf4536870b19097b5035f4A.jpg_350x350.jpg\"},{\"id\":3215,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/8.jpg\"},{\"id\":3216,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A5df619ce89ec42189a5c4d05bbba4f2dw.jpg_350x350.jpg\"},{\"id\":3217,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A9207015598ae47e4ba57d5d6755a7945J.jpg_350x350.jpg\"},{\"id\":3218,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Aa67514ca153a43208612611af15ae689t.jpg_350x350.jpg\"},{\"id\":3219,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Ac8c57af57fc04a9b8afbcf5214d8b125a.jpg_350x350.jpg\"},{\"id\":3220,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Aea1a2ea6c9d04b78977d1e8c907e721cR.jpg_350x350.jpg\"},{\"id\":3221,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/5.jpg\"},{\"id\":3222,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/7.jpg\"},{\"id\":3223,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A4fa22b3db4704145a9c8f2b6d413b4b7Y.jpg_350x350.jpg\"},{\"id\":3224,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A8cfa154ca70a46c5965e993255b53ecbg.jpg_350x350.jpg\"},{\"id\":3225,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A967c634a517c48f38c23d4766db5bba1a.jpg_350x350.jpg\"},{\"id\":3226,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A462413b6de2b401ba60e99bbe1d15e33K.jpg_350x350.jpg\"},{\"id\":3227,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A661399142a7247278bbf69a9d6007556W.jpg_350x350.jpg\"},{\"id\":3228,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/10.jpg\"},{\"id\":3229,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A16eb71f546c44c4ba00c6afe46464d593.jpg_350x350.jpg\"},{\"id\":3230,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A72a21ba969c84b98b63b985380b97ef5O.jpg_350x350.jpg\"},{\"id\":3231,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A99574ebe1a6c432abebb91680e3e227e0.jpg_350x350.jpg\"},{\"id\":3232,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Ac6d9a3b79a904eeb9c925afa374ec53aA.jpg_350x350.jpg\"},{\"id\":3233,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Adef05c3212194f259f1556cd5081ab3eg.jpg_350x350.jpg\"},{\"id\":3234,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/3.jpg\"},{\"id\":3235,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/9.jpg\"},{\"id\":3236,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A268aa8f9b65c4cdf9f45e594f2cd8ad4M.jpg_350x350.jpg\"},{\"id\":3237,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A864432f2571743689342ae173ee9dc9fd.jpg_350x350.jpg\"},{\"id\":3238,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Abd43851c92654bd99cfdca45d896fbcbB.jpg_350x350.jpg\"},{\"id\":3239,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Acdd1226298dd4613abf021bdcaad320b0.jpg_350x350.jpg\"},{\"id\":3240,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Ae91bf7f51db3402ebaff610c299e9aacF.jpg_350x350.jpg\"},{\"id\":3241,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A05f18d47e70948ae8795111d055f42fa2.jpg_350x350.jpg\"},{\"id\":3242,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A5c37792f38434388a02a0479fcbc4123T.jpg_350x350.jpg\"},{\"id\":3243,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A8c420992f47745509f4f292ac7bd2258H.jpg_350x350.jpg\"},{\"id\":3244,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A1001e63ea59149f8a81abb92d5d5fe713.jpg_350x350.jpg\"},{\"id\":3245,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A36346f881b104996b6c070b5d2cebff8u.jpg_350x350.jpg\"},{\"id\":3246,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A157183c07a764eb8957bc4cd13982808i.jpg_350x350.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"39b6365\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"CNC\\u52a0\\u5de5\\u90e8\\u54c1\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c570843\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":3247,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok5.jpg\"},{\"id\":3248,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok4.png\"},{\"id\":3249,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-machine22.avif\"},{\"id\":3250,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-machine3.jpg\"},{\"id\":3251,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok3.png\"},{\"id\":3252,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok1.png\"},{\"id\":3253,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok2.png\"},{\"id\":3254,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok7.png\"},{\"id\":3255,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok9.jpg\"},{\"id\":3256,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok8.jpg\"},{\"id\":3257,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z5709443476797_cb3e9e0d596ad6331366b8a711f46926.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"feb6000\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"\\u677f\\u91d1\\u52a0\\u5de5\\uff06\\u88fd\\u4f5c\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1cd9da4\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":3258,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal1.jpg\"},{\"id\":3259,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal3.jpg\"},{\"id\":3260,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal4.jpg\"},{\"id\":3261,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal5.jpg\"},{\"id\":3262,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal7.jpg\"},{\"id\":3263,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal8.jpg\"},{\"id\":3264,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal9.jpg\"},{\"id\":3265,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal10.jpg\"},{\"id\":3266,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal2.png\"},{\"id\":3267,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal6.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"7414012\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"\\u91d1\\u578b\\u30fb\\u30c0\\u30a4\\u90e8\\u54c1\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2c28c08\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":3268,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\"},{\"id\":3269,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\"},{\"id\":3270,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\"},{\"id\":3271,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\"},{\"id\":3272,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\"},{\"id\":3273,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"63a19c7\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"\\u7523\\u696d\\u7528\\u30d5\\u30a1\\u30b9\\u30ca\\u30fc\\uff06\\u30dc\\u30eb\\u30c8\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"66c41e5\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":3274,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/IMG_1237.jpeg\"},{\"id\":3275,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/DSC00822.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"26abf44\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"\\u5de5\\u5177\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a432afc\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2710,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\"},{\"id\":2711,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\"},{\"id\":2712,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\"},{\"id\":2713,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\"},{\"id\":2714,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\"},{\"id\":2715,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\"},{\"id\":2716,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"cae1a49\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"\\u30b8\\u30b0\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8703d3d\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2730,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\"},{\"id\":2731,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\"},{\"id\":2732,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\"},{\"id\":2733,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\"},{\"id\":2734,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}]'),(8780,3003,'custom_header',''),(8781,3003,'header_layout','2'),(8782,3003,'p_logo_dark','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(8783,3003,'p_logo_light','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(8784,3003,'h_custom_menu',''),(8785,3003,'custom_pagetitle','themeoption'),(8786,3003,'custom_title',''),(8787,3003,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(8788,3003,'ptitle_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(8789,3003,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(8790,3003,'content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(8791,3003,'show_sidebar_page',''),(8792,3003,'sidebar_page_pos','right'),(8793,3003,'custom_footer','1'),(8794,3003,'footer_layout_custom','799'),(8796,3003,'_edit_lock','1742181714:1'),(8800,3004,'_elementor_edit_mode','builder'),(8801,3004,'_elementor_template_type','wp-page'),(8802,3004,'_elementor_version','3.24.7'),(8803,3004,'_wp_page_template','default');
INSERT INTO `wp_postmeta` VALUES (8804,3004,'_elementor_data','[{\"id\":\"fcff723\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"dee41b0\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"Our strength lies in mass production of aluminum and steel. We excel in innovation and deliver high-value products to our customers.\",\"title_tag\":\"h5\",\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"373dfc0\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Welding\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"5603a87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2678,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074649965196_82fd76ddbbf38d64dae8af11b21537b9.jpg\"},{\"id\":2667,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074652723212_8770f028ff646f014f1e9f6efe34962e.jpg\"},{\"id\":2672,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074640939718_b0ff6acad14b2ab5ed158171c76833f9.jpg\"},{\"id\":2677,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074641293113_b4b186c67b6e7829dd2a91d730cf9aa7.jpg\"},{\"id\":2668,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074642763587_21ecce5d4accf371358eb4cbd73c800d.jpg\"},{\"id\":2669,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074642849848_10b5670512096e654748e57b24a04afe.jpg\"},{\"id\":2670,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074640758883_648a042f4b640d0f57a4441dd2109570.jpg\"},{\"id\":2671,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074640849237_e7699b1bc6e38e0bf65eb3bca28ae8ca.jpg\"},{\"id\":2673,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074641052070_9efbc1586cb5e95cc54b8421a63f380e.jpg\"},{\"id\":2674,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074641145273_7be5df3e1779aa04e890e40cc243cdee.jpg\"},{\"id\":2675,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074640653285_5a87adf57ce0c4186fe4fb1579e357b5.jpg\"},{\"id\":2676,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074641173826_45ae737f70dfb2d365abb397f139d708.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"dec4325\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Mold\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1852cc9\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2679,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736575578_e0a4f5473843e58ee1a79989f367ada9.jpg\"},{\"id\":2680,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\"},{\"id\":2681,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735219679_91a6f6993146906f8465b43ddd0c2b3c.jpg\"},{\"id\":2682,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736761454_b98d468b133ac59ebbf5e62b693462a4.jpg\"},{\"id\":2683,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736784335_f93bc7820cfdc0b015c8224b9a1ace10.jpg\"},{\"id\":2684,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069219941349_b0954e44a25a7d1543eb33ceeae20efb.jpg\"},{\"id\":2685,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735343201_d2922aa1680c57bfe2da9aaba121caa6.jpg\"},{\"id\":2686,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735441885_088dd417b659783376adfeb006d18180.jpg\"},{\"id\":2687,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735598101_0fdd0a773a22d6af92f694d7866b2a5a.jpg\"},{\"id\":2688,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735634632_da3df11cc1dfa978c5b70f2e44404712.jpg\"},{\"id\":2689,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735693987_bf7347f533ec750a2c4f9df1763b8881.jpg\"},{\"id\":2690,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735835496_a71ac50ddac36867fca21cee8c47fe0a.jpg\"},{\"id\":2691,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\"},{\"id\":2692,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\"},{\"id\":2693,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\"},{\"id\":2694,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\"},{\"id\":2695,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736324472_06f1ed1a1be2c3a5923070aff7d5e10e.jpg\"},{\"id\":2696,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736391051_4c3cae16a8ff4f216b8d53673772dd07.jpg\"},{\"id\":2697,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"ab81cda\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Machine Details\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"cd9dba9\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2698,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069219949175_e2a105bcf223c832d6caab2d03fe0413.jpg\"},{\"id\":2699,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799313165266_a15253e3a3e0a2c978ed667994b8f415.jpg\"},{\"id\":2700,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321604115_493f8355869dd3ca82a96e86e2982bfe.jpg\"},{\"id\":2701,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321696024_733a85bf835aea0a8afc8b269d149700.jpg\"},{\"id\":2702,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799313179567_c3d6675a03762fb94376dc96f05389bd.jpg\"},{\"id\":2703,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799313273454_ad716befaf43d2df147629d95262c520.jpg\"},{\"id\":2704,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363716249_96b2fea5fe33f4a24d8251c8aaf225e1.jpg\"},{\"id\":2705,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363723771_9eec4d51fc1723fb669f980084e20a61.jpg\"},{\"id\":2706,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363723892_5b7200026202a1efe96596109fad6857.jpg\"},{\"id\":2707,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363735361_9355fa7eb991123dc995dfaa2b4cf754.jpg\"},{\"id\":2708,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363746762_6241ac4c6625581b5db9b24a1ee05f68-1.jpg\"},{\"id\":2709,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363741409_d72124d9091280f6529a27a919be13c9.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"2f9b716\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Tool\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a165f68\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2710,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\"},{\"id\":2711,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\"},{\"id\":2712,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\"},{\"id\":2713,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\"},{\"id\":2714,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\"},{\"id\":2715,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\"},{\"id\":2716,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"bcd074c\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Motorbike Parts\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7eb3b87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2717,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028111300979_0052716b462843a5d1968f7870c72fd8.jpg\"},{\"id\":2718,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028112000000_2440d5ae36f700840d0f0b583bbcbdfa.jpg\"},{\"id\":2719,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028112670024_1806afd7d70bbbc523d63b0c61e9130b.jpg\"},{\"id\":2720,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028113287912_e1aa8bdb9fe72b1fe22887ceaafc0dbd.jpg\"},{\"id\":2721,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028113894704_3504e4bf093ad9f9d635c8bfa2aaaef6.jpg\"},{\"id\":2722,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028114767739_d014b10da5088bc7d3675a6d00e77d33.jpg\"},{\"id\":2723,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321434561_6d2cb75edba82832e0cbd90673857bd3.jpg\"},{\"id\":2724,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321448088_6e6944c3ceb335897e2b4f4ad20975b7.jpg\"},{\"id\":2725,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321548557_1a5e69a89ca37953e0c04c88e529d951.jpg\"},{\"id\":2726,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028109630704_29a82df97ea4ea7c37859f9667154da1.jpg\"},{\"id\":2727,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028109675984_511bb58690a73ab9cc1adcd146ca46f2.jpg\"},{\"id\":2728,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028110631415_9bd375451b2242776c3fa47a5e91f3e1.jpg\"},{\"id\":2729,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028111167101_685de2e5395bbf8d97e4d2f8aa87fee3.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"1ef8491\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Jig\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"09a76d6\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2730,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\"},{\"id\":2731,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\"},{\"id\":2732,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\"},{\"id\":2733,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\"},{\"id\":2734,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}]'),(8808,3003,'_edit_last','1'),(8809,3003,'_yoast_wpseo_estimated-reading-time-minutes','20'),(8810,3005,'_elementor_edit_mode','builder'),(8811,3005,'_elementor_template_type','wp-page'),(8812,3005,'_elementor_version','3.24.7'),(8813,3005,'_wp_page_template','default'),(8814,3005,'_elementor_data','[{\"id\":\"fcff723\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"dee41b0\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"Our strength lies in mass production of aluminum and steel. We excel in innovation and deliver high-value products to our customers.\",\"title_tag\":\"h5\",\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"373dfc0\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Welding\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"5603a87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2678,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074649965196_82fd76ddbbf38d64dae8af11b21537b9.jpg\"},{\"id\":2667,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074652723212_8770f028ff646f014f1e9f6efe34962e.jpg\"},{\"id\":2672,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074640939718_b0ff6acad14b2ab5ed158171c76833f9.jpg\"},{\"id\":2677,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074641293113_b4b186c67b6e7829dd2a91d730cf9aa7.jpg\"},{\"id\":2668,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074642763587_21ecce5d4accf371358eb4cbd73c800d.jpg\"},{\"id\":2669,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074642849848_10b5670512096e654748e57b24a04afe.jpg\"},{\"id\":2670,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074640758883_648a042f4b640d0f57a4441dd2109570.jpg\"},{\"id\":2671,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074640849237_e7699b1bc6e38e0bf65eb3bca28ae8ca.jpg\"},{\"id\":2673,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074641052070_9efbc1586cb5e95cc54b8421a63f380e.jpg\"},{\"id\":2674,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074641145273_7be5df3e1779aa04e890e40cc243cdee.jpg\"},{\"id\":2675,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074640653285_5a87adf57ce0c4186fe4fb1579e357b5.jpg\"},{\"id\":2676,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074641173826_45ae737f70dfb2d365abb397f139d708.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"dec4325\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Mold\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1852cc9\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2679,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736575578_e0a4f5473843e58ee1a79989f367ada9.jpg\"},{\"id\":2680,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\"},{\"id\":2681,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735219679_91a6f6993146906f8465b43ddd0c2b3c.jpg\"},{\"id\":2682,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736761454_b98d468b133ac59ebbf5e62b693462a4.jpg\"},{\"id\":2683,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736784335_f93bc7820cfdc0b015c8224b9a1ace10.jpg\"},{\"id\":2684,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069219941349_b0954e44a25a7d1543eb33ceeae20efb.jpg\"},{\"id\":2685,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735343201_d2922aa1680c57bfe2da9aaba121caa6.jpg\"},{\"id\":2686,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735441885_088dd417b659783376adfeb006d18180.jpg\"},{\"id\":2687,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735598101_0fdd0a773a22d6af92f694d7866b2a5a.jpg\"},{\"id\":2688,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735634632_da3df11cc1dfa978c5b70f2e44404712.jpg\"},{\"id\":2689,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735693987_bf7347f533ec750a2c4f9df1763b8881.jpg\"},{\"id\":2690,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735835496_a71ac50ddac36867fca21cee8c47fe0a.jpg\"},{\"id\":2691,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\"},{\"id\":2692,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\"},{\"id\":2693,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\"},{\"id\":2694,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\"},{\"id\":2695,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736324472_06f1ed1a1be2c3a5923070aff7d5e10e.jpg\"},{\"id\":2696,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736391051_4c3cae16a8ff4f216b8d53673772dd07.jpg\"},{\"id\":2697,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"ab81cda\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Machine Details\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"cd9dba9\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2698,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069219949175_e2a105bcf223c832d6caab2d03fe0413.jpg\"},{\"id\":2699,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799313165266_a15253e3a3e0a2c978ed667994b8f415.jpg\"},{\"id\":2700,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321604115_493f8355869dd3ca82a96e86e2982bfe.jpg\"},{\"id\":2701,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321696024_733a85bf835aea0a8afc8b269d149700.jpg\"},{\"id\":2702,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799313179567_c3d6675a03762fb94376dc96f05389bd.jpg\"},{\"id\":2703,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799313273454_ad716befaf43d2df147629d95262c520.jpg\"},{\"id\":2704,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363716249_96b2fea5fe33f4a24d8251c8aaf225e1.jpg\"},{\"id\":2705,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363723771_9eec4d51fc1723fb669f980084e20a61.jpg\"},{\"id\":2706,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363723892_5b7200026202a1efe96596109fad6857.jpg\"},{\"id\":2707,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363735361_9355fa7eb991123dc995dfaa2b4cf754.jpg\"},{\"id\":2708,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363746762_6241ac4c6625581b5db9b24a1ee05f68-1.jpg\"},{\"id\":2709,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363741409_d72124d9091280f6529a27a919be13c9.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"2f9b716\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Tool\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a165f68\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2710,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\"},{\"id\":2711,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\"},{\"id\":2712,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\"},{\"id\":2713,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\"},{\"id\":2714,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\"},{\"id\":2715,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\"},{\"id\":2716,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"bcd074c\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Motorbike Parts\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7eb3b87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2717,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028111300979_0052716b462843a5d1968f7870c72fd8.jpg\"},{\"id\":2718,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028112000000_2440d5ae36f700840d0f0b583bbcbdfa.jpg\"},{\"id\":2719,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028112670024_1806afd7d70bbbc523d63b0c61e9130b.jpg\"},{\"id\":2720,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028113287912_e1aa8bdb9fe72b1fe22887ceaafc0dbd.jpg\"},{\"id\":2721,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028113894704_3504e4bf093ad9f9d635c8bfa2aaaef6.jpg\"},{\"id\":2722,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028114767739_d014b10da5088bc7d3675a6d00e77d33.jpg\"},{\"id\":2723,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321434561_6d2cb75edba82832e0cbd90673857bd3.jpg\"},{\"id\":2724,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321448088_6e6944c3ceb335897e2b4f4ad20975b7.jpg\"},{\"id\":2725,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321548557_1a5e69a89ca37953e0c04c88e529d951.jpg\"},{\"id\":2726,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028109630704_29a82df97ea4ea7c37859f9667154da1.jpg\"},{\"id\":2727,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028109675984_511bb58690a73ab9cc1adcd146ca46f2.jpg\"},{\"id\":2728,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028110631415_9bd375451b2242776c3fa47a5e91f3e1.jpg\"},{\"id\":2729,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028111167101_685de2e5395bbf8d97e4d2f8aa87fee3.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"1ef8491\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Jig\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"09a76d6\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2730,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\"},{\"id\":2731,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\"},{\"id\":2732,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\"},{\"id\":2733,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\"},{\"id\":2734,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}]'),(8818,3006,'_elementor_edit_mode','builder'),(8819,3006,'_elementor_template_type','wp-page'),(8820,3006,'_elementor_version','3.24.7'),(8821,3006,'_wp_page_template','default'),(8822,3006,'_elementor_data','[{\"id\":\"fcff723\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"dee41b0\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"Our strength lies in mass production of aluminum and steel. We excel in innovation and deliver high-value products to our customers.\",\"title_tag\":\"h5\",\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"373dfc0\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Welding\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"5603a87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2678,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074649965196_82fd76ddbbf38d64dae8af11b21537b9.jpg\"},{\"id\":2667,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074652723212_8770f028ff646f014f1e9f6efe34962e.jpg\"},{\"id\":2672,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074640939718_b0ff6acad14b2ab5ed158171c76833f9.jpg\"},{\"id\":2677,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074641293113_b4b186c67b6e7829dd2a91d730cf9aa7.jpg\"},{\"id\":2668,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074642763587_21ecce5d4accf371358eb4cbd73c800d.jpg\"},{\"id\":2669,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074642849848_10b5670512096e654748e57b24a04afe.jpg\"},{\"id\":2670,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074640758883_648a042f4b640d0f57a4441dd2109570.jpg\"},{\"id\":2671,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074640849237_e7699b1bc6e38e0bf65eb3bca28ae8ca.jpg\"},{\"id\":2673,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074641052070_9efbc1586cb5e95cc54b8421a63f380e.jpg\"},{\"id\":2674,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074641145273_7be5df3e1779aa04e890e40cc243cdee.jpg\"},{\"id\":2675,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074640653285_5a87adf57ce0c4186fe4fb1579e357b5.jpg\"},{\"id\":2676,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074641173826_45ae737f70dfb2d365abb397f139d708.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"dec4325\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Mold\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1852cc9\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2679,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736575578_e0a4f5473843e58ee1a79989f367ada9.jpg\"},{\"id\":2680,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\"},{\"id\":2681,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735219679_91a6f6993146906f8465b43ddd0c2b3c.jpg\"},{\"id\":2682,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736761454_b98d468b133ac59ebbf5e62b693462a4.jpg\"},{\"id\":2683,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736784335_f93bc7820cfdc0b015c8224b9a1ace10.jpg\"},{\"id\":2684,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069219941349_b0954e44a25a7d1543eb33ceeae20efb.jpg\"},{\"id\":2685,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735343201_d2922aa1680c57bfe2da9aaba121caa6.jpg\"},{\"id\":2686,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735441885_088dd417b659783376adfeb006d18180.jpg\"},{\"id\":2687,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735598101_0fdd0a773a22d6af92f694d7866b2a5a.jpg\"},{\"id\":2688,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735634632_da3df11cc1dfa978c5b70f2e44404712.jpg\"},{\"id\":2689,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735693987_bf7347f533ec750a2c4f9df1763b8881.jpg\"},{\"id\":2690,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735835496_a71ac50ddac36867fca21cee8c47fe0a.jpg\"},{\"id\":2691,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\"},{\"id\":2692,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\"},{\"id\":2693,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\"},{\"id\":2694,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\"},{\"id\":2695,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736324472_06f1ed1a1be2c3a5923070aff7d5e10e.jpg\"},{\"id\":2696,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736391051_4c3cae16a8ff4f216b8d53673772dd07.jpg\"},{\"id\":2697,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"ab81cda\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Machine Details\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"cd9dba9\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2698,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069219949175_e2a105bcf223c832d6caab2d03fe0413.jpg\"},{\"id\":2699,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799313165266_a15253e3a3e0a2c978ed667994b8f415.jpg\"},{\"id\":2700,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321604115_493f8355869dd3ca82a96e86e2982bfe.jpg\"},{\"id\":2701,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321696024_733a85bf835aea0a8afc8b269d149700.jpg\"},{\"id\":2702,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799313179567_c3d6675a03762fb94376dc96f05389bd.jpg\"},{\"id\":2703,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799313273454_ad716befaf43d2df147629d95262c520.jpg\"},{\"id\":2704,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363716249_96b2fea5fe33f4a24d8251c8aaf225e1.jpg\"},{\"id\":2705,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363723771_9eec4d51fc1723fb669f980084e20a61.jpg\"},{\"id\":2706,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363723892_5b7200026202a1efe96596109fad6857.jpg\"},{\"id\":2707,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363735361_9355fa7eb991123dc995dfaa2b4cf754.jpg\"},{\"id\":2708,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363746762_6241ac4c6625581b5db9b24a1ee05f68-1.jpg\"},{\"id\":2709,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363741409_d72124d9091280f6529a27a919be13c9.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"2f9b716\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Tool\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a165f68\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2710,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\"},{\"id\":2711,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\"},{\"id\":2712,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\"},{\"id\":2713,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\"},{\"id\":2714,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\"},{\"id\":2715,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\"},{\"id\":2716,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"bcd074c\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Motorbike Parts\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7eb3b87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2717,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028111300979_0052716b462843a5d1968f7870c72fd8.jpg\"},{\"id\":2718,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028112000000_2440d5ae36f700840d0f0b583bbcbdfa.jpg\"},{\"id\":2719,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028112670024_1806afd7d70bbbc523d63b0c61e9130b.jpg\"},{\"id\":2720,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028113287912_e1aa8bdb9fe72b1fe22887ceaafc0dbd.jpg\"},{\"id\":2721,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028113894704_3504e4bf093ad9f9d635c8bfa2aaaef6.jpg\"},{\"id\":2722,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028114767739_d014b10da5088bc7d3675a6d00e77d33.jpg\"},{\"id\":2723,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321434561_6d2cb75edba82832e0cbd90673857bd3.jpg\"},{\"id\":2724,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321448088_6e6944c3ceb335897e2b4f4ad20975b7.jpg\"},{\"id\":2725,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321548557_1a5e69a89ca37953e0c04c88e529d951.jpg\"},{\"id\":2726,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028109630704_29a82df97ea4ea7c37859f9667154da1.jpg\"},{\"id\":2727,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028109675984_511bb58690a73ab9cc1adcd146ca46f2.jpg\"},{\"id\":2728,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028110631415_9bd375451b2242776c3fa47a5e91f3e1.jpg\"},{\"id\":2729,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028111167101_685de2e5395bbf8d97e4d2f8aa87fee3.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"1ef8491\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Jig\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"09a76d6\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2730,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\"},{\"id\":2731,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\"},{\"id\":2732,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\"},{\"id\":2733,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\"},{\"id\":2734,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}]'),(8826,3007,'_elementor_edit_mode','builder'),(8827,3007,'_elementor_template_type','wp-page'),(8828,3007,'_elementor_version','3.24.7'),(8829,3007,'_wp_page_template','default'),(8830,3007,'_elementor_data','[{\"id\":\"fcff723\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"dee41b0\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"\\u79c1\\u305f\\u3061\\u306e\\u5f37\\u307f\\u306f\\u3001\\u30a2\\u30eb\\u30df\\u30cb\\u30a6\\u30e0\\u3068\\u92fc\\u306e\\u5927\\u91cf\\u751f\\u7523\\u306b\\u3042\\u308a\\u307e\\u3059\\u3002\\u79c1\\u305f\\u3061\\u306f\\u9769\\u65b0\\u306b\\u512a\\u308c\\u3001\\u9867\\u5ba2\\u306b\\u9ad8\\u4ed8\\u52a0\\u4fa1\\u5024\\u306e\\u88fd\\u54c1\\u3092\\u63d0\\u4f9b\\u3057\\u307e\\u3059\\u3002\",\"title_tag\":\"h5\",\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"373dfc0\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"\\u6eb6\\u63a5\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"5603a87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2678,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074649965196_82fd76ddbbf38d64dae8af11b21537b9.jpg\"},{\"id\":2667,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074652723212_8770f028ff646f014f1e9f6efe34962e.jpg\"},{\"id\":2672,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074640939718_b0ff6acad14b2ab5ed158171c76833f9.jpg\"},{\"id\":2677,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074641293113_b4b186c67b6e7829dd2a91d730cf9aa7.jpg\"},{\"id\":2668,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074642763587_21ecce5d4accf371358eb4cbd73c800d.jpg\"},{\"id\":2669,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074642849848_10b5670512096e654748e57b24a04afe.jpg\"},{\"id\":2670,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074640758883_648a042f4b640d0f57a4441dd2109570.jpg\"},{\"id\":2671,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074640849237_e7699b1bc6e38e0bf65eb3bca28ae8ca.jpg\"},{\"id\":2673,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074641052070_9efbc1586cb5e95cc54b8421a63f380e.jpg\"},{\"id\":2674,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074641145273_7be5df3e1779aa04e890e40cc243cdee.jpg\"},{\"id\":2675,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074640653285_5a87adf57ce0c4186fe4fb1579e357b5.jpg\"},{\"id\":2676,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074641173826_45ae737f70dfb2d365abb397f139d708.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"dec4325\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"\\u91d1\\u578b\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1852cc9\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2679,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736575578_e0a4f5473843e58ee1a79989f367ada9.jpg\"},{\"id\":2680,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\"},{\"id\":2681,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735219679_91a6f6993146906f8465b43ddd0c2b3c.jpg\"},{\"id\":2682,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736761454_b98d468b133ac59ebbf5e62b693462a4.jpg\"},{\"id\":2683,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736784335_f93bc7820cfdc0b015c8224b9a1ace10.jpg\"},{\"id\":2684,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069219941349_b0954e44a25a7d1543eb33ceeae20efb.jpg\"},{\"id\":2685,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735343201_d2922aa1680c57bfe2da9aaba121caa6.jpg\"},{\"id\":2686,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735441885_088dd417b659783376adfeb006d18180.jpg\"},{\"id\":2687,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735598101_0fdd0a773a22d6af92f694d7866b2a5a.jpg\"},{\"id\":2688,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735634632_da3df11cc1dfa978c5b70f2e44404712.jpg\"},{\"id\":2689,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735693987_bf7347f533ec750a2c4f9df1763b8881.jpg\"},{\"id\":2690,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735835496_a71ac50ddac36867fca21cee8c47fe0a.jpg\"},{\"id\":2691,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\"},{\"id\":2692,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\"},{\"id\":2693,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\"},{\"id\":2694,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\"},{\"id\":2695,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736324472_06f1ed1a1be2c3a5923070aff7d5e10e.jpg\"},{\"id\":2696,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736391051_4c3cae16a8ff4f216b8d53673772dd07.jpg\"},{\"id\":2697,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"ab81cda\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"\\u6a5f\\u68b0\\u306e\\u8a73\\u7d30\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"cd9dba9\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2698,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069219949175_e2a105bcf223c832d6caab2d03fe0413.jpg\"},{\"id\":2699,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799313165266_a15253e3a3e0a2c978ed667994b8f415.jpg\"},{\"id\":2700,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321604115_493f8355869dd3ca82a96e86e2982bfe.jpg\"},{\"id\":2701,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321696024_733a85bf835aea0a8afc8b269d149700.jpg\"},{\"id\":2702,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799313179567_c3d6675a03762fb94376dc96f05389bd.jpg\"},{\"id\":2703,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799313273454_ad716befaf43d2df147629d95262c520.jpg\"},{\"id\":2704,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363716249_96b2fea5fe33f4a24d8251c8aaf225e1.jpg\"},{\"id\":2705,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363723771_9eec4d51fc1723fb669f980084e20a61.jpg\"},{\"id\":2706,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363723892_5b7200026202a1efe96596109fad6857.jpg\"},{\"id\":2707,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363735361_9355fa7eb991123dc995dfaa2b4cf754.jpg\"},{\"id\":2708,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363746762_6241ac4c6625581b5db9b24a1ee05f68-1.jpg\"},{\"id\":2709,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363741409_d72124d9091280f6529a27a919be13c9.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"2f9b716\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"\\u5de5\\u5177\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a165f68\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2710,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\"},{\"id\":2711,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\"},{\"id\":2712,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\"},{\"id\":2713,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\"},{\"id\":2714,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\"},{\"id\":2715,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\"},{\"id\":2716,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"bcd074c\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"\\u30aa\\u30fc\\u30c8\\u30d0\\u30a4\\u306e\\u90e8\\u54c1\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7eb3b87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2717,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028111300979_0052716b462843a5d1968f7870c72fd8.jpg\"},{\"id\":2718,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028112000000_2440d5ae36f700840d0f0b583bbcbdfa.jpg\"},{\"id\":2719,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028112670024_1806afd7d70bbbc523d63b0c61e9130b.jpg\"},{\"id\":2720,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028113287912_e1aa8bdb9fe72b1fe22887ceaafc0dbd.jpg\"},{\"id\":2721,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028113894704_3504e4bf093ad9f9d635c8bfa2aaaef6.jpg\"},{\"id\":2722,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028114767739_d014b10da5088bc7d3675a6d00e77d33.jpg\"},{\"id\":2723,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321434561_6d2cb75edba82832e0cbd90673857bd3.jpg\"},{\"id\":2724,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321448088_6e6944c3ceb335897e2b4f4ad20975b7.jpg\"},{\"id\":2725,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321548557_1a5e69a89ca37953e0c04c88e529d951.jpg\"},{\"id\":2726,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028109630704_29a82df97ea4ea7c37859f9667154da1.jpg\"},{\"id\":2727,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028109675984_511bb58690a73ab9cc1adcd146ca46f2.jpg\"},{\"id\":2728,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028110631415_9bd375451b2242776c3fa47a5e91f3e1.jpg\"},{\"id\":2729,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028111167101_685de2e5395bbf8d97e4d2f8aa87fee3.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"1ef8491\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"\\u6cbb\\u5177\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"09a76d6\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2730,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\"},{\"id\":2731,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\"},{\"id\":2732,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\"},{\"id\":2733,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\"},{\"id\":2734,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}]'),(8834,3003,'_yoast_wpseo_content_score','90'),(8836,3008,'_wp_page_template','default'),(8837,3008,'_elementor_edit_mode','builder'),(8838,3008,'_elementor_template_type','wp-page'),(8839,3008,'_elementor_version','3.24.7'),(8840,3008,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i s\\u1ebd v\\u01b0\\u1ee3t qua mong \\u0111\\u1ee3i c\\u1ee7a b\\u1ea1n v\\u1edbi nh\\u1eefng gi\\u1ea3i ph\\u00e1p s\\u00e1ng t\\u1ea1o.\",\"sub_title\":\"\\u0110\\u1ed9i ng\\u0169 c\\u1ee7a ch\\u00fang t\\u00f4i\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ch\\u00fang t\\u00f4i cung c\\u1ea5p nh\\u1eefng gi\\u1ea3i ph\\u00e1p s\\u00e1ng t\\u1ea1o v\\u01b0\\u1ee3t xa mong \\u0111\\u1ee3i c\\u1ee7a b\\u1ea1n, \\u0111\\u1ea3m b\\u1ea3o m\\u00e1y m\\u00f3c ch\\u1ea5t l\\u01b0\\u1ee3ng cao v\\u00e0 k\\u1ebft qu\\u1ea3 xu\\u1ea5t s\\u1eafc.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FEHT-logo.jpg\",\"id\":2812,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"e562253\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FE-TECH-LOGO-FINAL.png\",\"id\":2816,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Engineering\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"b254836\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/Far-East-Tool-Vina.jpg\",\"id\":2814,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tools Vina\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"994e0c5\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i s\\u1ebd v\\u01b0\\u1ee3t qua mong \\u0111\\u1ee3i c\\u1ee7a b\\u1ea1n v\\u1edbi nh\\u1eefng gi\\u1ea3i ph\\u00e1p s\\u00e1ng t\\u1ea1o, nh\\u01b0 m\\u1ed9t \\u0111\\u1ed1i t\\u00e1c \\u0111\\u00e1ng tin c\\u1eady.\",\"sub_title\":\"C\\u00e1c \\u0111\\u1ed1i t\\u00e1c c\\u1ee7a ch\\u00fang t\\u00f4i\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ch\\u00fang t\\u00f4i cam k\\u1ebft \\u0111\\u1ea3m b\\u1ea3o ch\\u1ea5t l\\u01b0\\u1ee3ng l\\u00e2u d\\u00e0i v\\u00e0 s\\u1ef1 \\u0111\\u00fang gi\\u1edd b\\u1ec1n v\\u1eefng c\\u00f9ng c\\u00e1c \\u0111\\u1ed1i t\\u00e1c.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Yoshimoto\",\"client_link\":{\"url\":\"https:\\/\\/www.yoshimoto-sangyo.co.jp\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yoshimoto-vietnam.png\",\"id\":2486,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"a49fbc4\"},{\"client_name\":\"Kim Long Motors\",\"client_link\":{\"url\":\"https:\\/\\/kimlongmotor.com.vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/kim-long-motors.png\",\"id\":2485,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"33930a5\"},{\"client_name\":\"Samsung\",\"client_link\":{\"url\":\"https:\\/\\/www.samsung.com\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/samsung.jpg\",\"id\":2484,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"aeee6c2\"},{\"client_name\":\"Komatsu Kogyo\",\"client_link\":{\"url\":\"https:\\/\\/komaz.co.jp\\/english\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/komatsu-kogyo.jpg\",\"id\":2483,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8fc7373\"},{\"_id\":\"ed2e401\",\"client_name\":\"Yuwa Engineering\",\"client_link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yuwa-engineering.jpg\",\"id\":2482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(8841,3008,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(8842,3008,'custom_header',''),(8843,3008,'header_layout','1'),(8844,3008,'custom_pagetitle','themeoption'),(8845,3008,'custom_title',''),(8846,3008,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(8847,3008,'ptitle_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(8848,3008,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(8849,3008,'content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}'),(8850,3008,'show_sidebar_page',''),(8851,3008,'sidebar_page_pos','right'),(8852,3008,'custom_footer','1'),(8853,3008,'footer_layout_custom','799'),(8854,3008,'p_logo_dark','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(8855,3008,'p_logo_light','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(8856,3008,'h_custom_menu',''),(8858,3008,'_edit_lock','1734428148:1'),(8865,3009,'_wp_page_template','default'),(8866,3009,'_elementor_edit_mode','builder'),(8867,3009,'_elementor_template_type','wp-page'),(8868,3009,'_elementor_version','3.24.7'),(8869,3009,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FEHT-logo.jpg\",\"id\":2812,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"e562253\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FE-TECH-LOGO-FINAL.png\",\"id\":2816,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Engineering\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"b254836\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/Far-East-Tool-Vina.jpg\",\"id\":2814,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tools Vina\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"994e0c5\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions as your trusted partner.\",\"sub_title\":\"Our Partners\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Yoshimoto\",\"client_link\":{\"url\":\"https:\\/\\/www.yoshimoto-sangyo.co.jp\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yoshimoto-vietnam.png\",\"id\":2486,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"a49fbc4\"},{\"client_name\":\"Kim Long Motors\",\"client_link\":{\"url\":\"https:\\/\\/kimlongmotor.com.vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/kim-long-motors.png\",\"id\":2485,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"33930a5\"},{\"client_name\":\"Samsung\",\"client_link\":{\"url\":\"https:\\/\\/www.samsung.com\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/samsung.jpg\",\"id\":2484,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"aeee6c2\"},{\"client_name\":\"Komatsu Kogyo\",\"client_link\":{\"url\":\"https:\\/\\/komaz.co.jp\\/english\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/komatsu-kogyo.jpg\",\"id\":2483,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8fc7373\"},{\"_id\":\"ed2e401\",\"client_name\":\"Yuwa Engineering\",\"client_link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yuwa-engineering.jpg\",\"id\":2482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(8870,3009,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(8874,3008,'_edit_last','1'),(8875,3008,'_yoast_wpseo_estimated-reading-time-minutes','4'),(8876,3010,'_wp_page_template','default'),(8877,3010,'_elementor_edit_mode','builder'),(8878,3010,'_elementor_template_type','wp-page'),(8879,3010,'_elementor_version','3.24.7'),(8880,3010,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FEHT-logo.jpg\",\"id\":2812,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"e562253\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FE-TECH-LOGO-FINAL.png\",\"id\":2816,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Engineering\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"b254836\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/Far-East-Tool-Vina.jpg\",\"id\":2814,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tools Vina\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"994e0c5\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions as your trusted partner.\",\"sub_title\":\"Our Partners\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Yoshimoto\",\"client_link\":{\"url\":\"https:\\/\\/www.yoshimoto-sangyo.co.jp\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yoshimoto-vietnam.png\",\"id\":2486,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"a49fbc4\"},{\"client_name\":\"Kim Long Motors\",\"client_link\":{\"url\":\"https:\\/\\/kimlongmotor.com.vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/kim-long-motors.png\",\"id\":2485,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"33930a5\"},{\"client_name\":\"Samsung\",\"client_link\":{\"url\":\"https:\\/\\/www.samsung.com\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/samsung.jpg\",\"id\":2484,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"aeee6c2\"},{\"client_name\":\"Komatsu Kogyo\",\"client_link\":{\"url\":\"https:\\/\\/komaz.co.jp\\/english\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/komatsu-kogyo.jpg\",\"id\":2483,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8fc7373\"},{\"_id\":\"ed2e401\",\"client_name\":\"Yuwa Engineering\",\"client_link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yuwa-engineering.jpg\",\"id\":2482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(8881,3010,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(8885,3011,'_wp_page_template','default'),(8886,3011,'_elementor_edit_mode','builder'),(8887,3011,'_elementor_template_type','wp-page'),(8888,3011,'_elementor_version','3.24.7'),(8889,3011,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FEHT-logo.jpg\",\"id\":2812,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"e562253\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FE-TECH-LOGO-FINAL.png\",\"id\":2816,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Engineering\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"b254836\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/Far-East-Tool-Vina.jpg\",\"id\":2814,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tools Vina\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"994e0c5\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions as your trusted partner.\",\"sub_title\":\"Our Partners\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Yoshimoto\",\"client_link\":{\"url\":\"https:\\/\\/www.yoshimoto-sangyo.co.jp\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yoshimoto-vietnam.png\",\"id\":2486,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"a49fbc4\"},{\"client_name\":\"Kim Long Motors\",\"client_link\":{\"url\":\"https:\\/\\/kimlongmotor.com.vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/kim-long-motors.png\",\"id\":2485,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"33930a5\"},{\"client_name\":\"Samsung\",\"client_link\":{\"url\":\"https:\\/\\/www.samsung.com\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/samsung.jpg\",\"id\":2484,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"aeee6c2\"},{\"client_name\":\"Komatsu Kogyo\",\"client_link\":{\"url\":\"https:\\/\\/komaz.co.jp\\/english\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/komatsu-kogyo.jpg\",\"id\":2483,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8fc7373\"},{\"_id\":\"ed2e401\",\"client_name\":\"Yuwa Engineering\",\"client_link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yuwa-engineering.jpg\",\"id\":2482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(8890,3011,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(8894,3012,'_wp_page_template','default'),(8895,3012,'_elementor_edit_mode','builder'),(8896,3012,'_elementor_template_type','wp-page'),(8897,3012,'_elementor_version','3.24.7'),(8898,3012,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i s\\u1ebd v\\u01b0\\u1ee3t qua mong \\u0111\\u1ee3i c\\u1ee7a b\\u1ea1n v\\u1edbi nh\\u1eefng gi\\u1ea3i ph\\u00e1p s\\u00e1ng t\\u1ea1o.\",\"sub_title\":\"\\u0110\\u1ed9i ng\\u0169 c\\u1ee7a ch\\u00fang t\\u00f4i\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ch\\u00fang t\\u00f4i cung c\\u1ea5p nh\\u1eefng gi\\u1ea3i ph\\u00e1p s\\u00e1ng t\\u1ea1o v\\u01b0\\u1ee3t xa mong \\u0111\\u1ee3i c\\u1ee7a b\\u1ea1n, \\u0111\\u1ea3m b\\u1ea3o m\\u00e1y m\\u00f3c ch\\u1ea5t l\\u01b0\\u1ee3ng cao v\\u00e0 k\\u1ebft qu\\u1ea3 xu\\u1ea5t s\\u1eafc.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FEHT-logo.jpg\",\"id\":2812,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"e562253\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FE-TECH-LOGO-FINAL.png\",\"id\":2816,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Engineering\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"b254836\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/Far-East-Tool-Vina.jpg\",\"id\":2814,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tools Vina\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"994e0c5\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i s\\u1ebd v\\u01b0\\u1ee3t qua mong \\u0111\\u1ee3i c\\u1ee7a b\\u1ea1n v\\u1edbi nh\\u1eefng gi\\u1ea3i ph\\u00e1p s\\u00e1ng t\\u1ea1o, nh\\u01b0 m\\u1ed9t \\u0111\\u1ed1i t\\u00e1c \\u0111\\u00e1ng tin c\\u1eady.\",\"sub_title\":\"C\\u00e1c \\u0111\\u1ed1i t\\u00e1c c\\u1ee7a ch\\u00fang t\\u00f4i\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Yoshimoto\",\"client_link\":{\"url\":\"https:\\/\\/www.yoshimoto-sangyo.co.jp\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yoshimoto-vietnam.png\",\"id\":2486,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"a49fbc4\"},{\"client_name\":\"Kim Long Motors\",\"client_link\":{\"url\":\"https:\\/\\/kimlongmotor.com.vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/kim-long-motors.png\",\"id\":2485,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"33930a5\"},{\"client_name\":\"Samsung\",\"client_link\":{\"url\":\"https:\\/\\/www.samsung.com\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/samsung.jpg\",\"id\":2484,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"aeee6c2\"},{\"client_name\":\"Komatsu Kogyo\",\"client_link\":{\"url\":\"https:\\/\\/komaz.co.jp\\/english\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/komatsu-kogyo.jpg\",\"id\":2483,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8fc7373\"},{\"_id\":\"ed2e401\",\"client_name\":\"Yuwa Engineering\",\"client_link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yuwa-engineering.jpg\",\"id\":2482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(8899,3012,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(8903,3008,'_yoast_wpseo_content_score','90'),(8906,3013,'_wp_page_template','default'),(8907,3013,'_elementor_edit_mode','builder'),(8908,3013,'_elementor_template_type','wp-page'),(8909,3013,'_elementor_version','3.24.7'),(8910,3013,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i s\\u1ebd v\\u01b0\\u1ee3t qua mong \\u0111\\u1ee3i c\\u1ee7a b\\u1ea1n v\\u1edbi nh\\u1eefng gi\\u1ea3i ph\\u00e1p s\\u00e1ng t\\u1ea1o.\",\"sub_title\":\"\\u0110\\u1ed9i ng\\u0169 c\\u1ee7a ch\\u00fang t\\u00f4i\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ch\\u00fang t\\u00f4i cung c\\u1ea5p nh\\u1eefng gi\\u1ea3i ph\\u00e1p s\\u00e1ng t\\u1ea1o v\\u01b0\\u1ee3t xa mong \\u0111\\u1ee3i c\\u1ee7a b\\u1ea1n, \\u0111\\u1ea3m b\\u1ea3o m\\u00e1y m\\u00f3c ch\\u1ea5t l\\u01b0\\u1ee3ng cao v\\u00e0 k\\u1ebft qu\\u1ea3 xu\\u1ea5t s\\u1eafc.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FEHT-logo.jpg\",\"id\":2812,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"e562253\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FE-TECH-LOGO-FINAL.png\",\"id\":2816,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Engineering\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"b254836\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/Far-East-Tool-Vina.jpg\",\"id\":2814,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tools Vina\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"994e0c5\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i s\\u1ebd v\\u01b0\\u1ee3t qua mong \\u0111\\u1ee3i c\\u1ee7a b\\u1ea1n v\\u1edbi nh\\u1eefng gi\\u1ea3i ph\\u00e1p s\\u00e1ng t\\u1ea1o, nh\\u01b0 m\\u1ed9t \\u0111\\u1ed1i t\\u00e1c \\u0111\\u00e1ng tin c\\u1eady.\",\"sub_title\":\"C\\u00e1c \\u0111\\u1ed1i t\\u00e1c c\\u1ee7a ch\\u00fang t\\u00f4i\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Yoshimoto\",\"client_link\":{\"url\":\"https:\\/\\/www.yoshimoto-sangyo.co.jp\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yoshimoto-vietnam.png\",\"id\":2486,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"a49fbc4\"},{\"client_name\":\"Kim Long Motors\",\"client_link\":{\"url\":\"https:\\/\\/kimlongmotor.com.vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/kim-long-motors.png\",\"id\":2485,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"33930a5\"},{\"client_name\":\"Samsung\",\"client_link\":{\"url\":\"https:\\/\\/www.samsung.com\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/samsung.jpg\",\"id\":2484,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"aeee6c2\"},{\"client_name\":\"Komatsu Kogyo\",\"client_link\":{\"url\":\"https:\\/\\/komaz.co.jp\\/english\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/komatsu-kogyo.jpg\",\"id\":2483,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8fc7373\"},{\"_id\":\"ed2e401\",\"client_name\":\"Yuwa Engineering\",\"client_link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yuwa-engineering.jpg\",\"id\":2482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(8911,3013,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(8915,3014,'_wp_page_template','default'),(8916,3014,'_elementor_edit_mode','builder'),(8917,3014,'_elementor_template_type','wp-page'),(8918,3014,'_elementor_version','3.24.7'),(8919,3014,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u9769\\u65b0\\u7684\\u306a\\u30bd\\u30ea\\u30e5\\u30fc\\u30b7\\u30e7\\u30f3\\u3067\\u304a\\u5ba2\\u69d8\\u306e\\u671f\\u5f85\\u3092\\u8d85\\u3048\\u307e\\u3059\\u3002\",\"sub_title\":\"\\u79c1\\u305f\\u3061\\u306e\\u30c1\\u30fc\\u30e0\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306f\\u3001\\u304a\\u5ba2\\u69d8\\u306e\\u671f\\u5f85\\u3092\\u8d85\\u3048\\u308b\\u9769\\u65b0\\u7684\\u306a\\u30bd\\u30ea\\u30e5\\u30fc\\u30b7\\u30e7\\u30f3\\u3092\\u63d0\\u4f9b\\u3057\\u3001\\u6700\\u9ad8\\u54c1\\u8cea\\u306e\\u6a5f\\u68b0\\u3068\\u512a\\u308c\\u305f\\u7d50\\u679c\\u3092\\u4fdd\\u8a3c\\u3057\\u307e\\u3059\\u3002<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FEHT-logo.jpg\",\"id\":2812,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"e562253\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FE-TECH-LOGO-FINAL.png\",\"id\":2816,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Engineering\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"b254836\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/Far-East-Tool-Vina.jpg\",\"id\":2814,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tools Vina\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"994e0c5\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u3001\\u4fe1\\u983c\\u3067\\u304d\\u308b\\u30d1\\u30fc\\u30c8\\u30ca\\u30fc\\u3068\\u3057\\u3066\\u9769\\u65b0\\u7684\\u306a\\u30bd\\u30ea\\u30e5\\u30fc\\u30b7\\u30e7\\u30f3\\u3067\\u304a\\u5ba2\\u69d8\\u306e\\u671f\\u5f85\\u3092\\u8d85\\u3048\\u307e\\u3059\\u3002\",\"sub_title\":\"\\u79c1\\u305f\\u3061\\u306e\\u30d1\\u30fc\\u30c8\\u30ca\\u30fc \"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306f\\u3001\\u30d1\\u30fc\\u30c8\\u30ca\\u30fc\\u3068\\u306e\\u9577\\u671f\\u7684\\u3067\\u6c38\\u7d9a\\u7684\\u306a\\u54c1\\u8cea\\u3068\\u6642\\u9593\\u53b3\\u5b88\\u3092\\u78ba\\u4fdd\\u3059\\u308b\\u3053\\u3068\\u3092\\u7d04\\u675f\\u3057\\u307e\\u3059\\u3002<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Yoshimoto\",\"client_link\":{\"url\":\"https:\\/\\/www.yoshimoto-sangyo.co.jp\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yoshimoto-vietnam.png\",\"id\":2486,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"a49fbc4\"},{\"client_name\":\"Kim Long Motors\",\"client_link\":{\"url\":\"https:\\/\\/kimlongmotor.com.vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/kim-long-motors.png\",\"id\":2485,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"33930a5\"},{\"client_name\":\"Samsung\",\"client_link\":{\"url\":\"https:\\/\\/www.samsung.com\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/samsung.jpg\",\"id\":2484,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"aeee6c2\"},{\"client_name\":\"Komatsu Kogyo\",\"client_link\":{\"url\":\"https:\\/\\/komaz.co.jp\\/english\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/komatsu-kogyo.jpg\",\"id\":2483,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8fc7373\"},{\"_id\":\"ed2e401\",\"client_name\":\"Yuwa Engineering\",\"client_link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yuwa-engineering.jpg\",\"id\":2482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(8920,3014,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(8924,3014,'custom_header',''),(8925,3014,'header_layout','1'),(8926,3014,'custom_pagetitle','themeoption'),(8927,3014,'custom_title',''),(8928,3014,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(8929,3014,'ptitle_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(8930,3014,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(8931,3014,'content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}'),(8932,3014,'show_sidebar_page',''),(8933,3014,'sidebar_page_pos','right'),(8934,3014,'custom_footer','1'),(8935,3014,'footer_layout_custom','799'),(8936,3014,'p_logo_dark','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(8937,3014,'p_logo_light','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(8938,3014,'h_custom_menu',''),(8940,3014,'_edit_lock','1734428230:1'),(8941,3015,'_wp_page_template','default'),(8942,3015,'_elementor_edit_mode','builder'),(8943,3015,'_elementor_template_type','wp-page'),(8944,3015,'_elementor_version','3.24.7'),(8945,3015,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FEHT-logo.jpg\",\"id\":2812,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"e562253\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FE-TECH-LOGO-FINAL.png\",\"id\":2816,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Engineering\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"b254836\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/Far-East-Tool-Vina.jpg\",\"id\":2814,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tools Vina\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"994e0c5\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions as your trusted partner.\",\"sub_title\":\"Our Partners\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Yoshimoto\",\"client_link\":{\"url\":\"https:\\/\\/www.yoshimoto-sangyo.co.jp\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yoshimoto-vietnam.png\",\"id\":2486,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"a49fbc4\"},{\"client_name\":\"Kim Long Motors\",\"client_link\":{\"url\":\"https:\\/\\/kimlongmotor.com.vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/kim-long-motors.png\",\"id\":2485,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"33930a5\"},{\"client_name\":\"Samsung\",\"client_link\":{\"url\":\"https:\\/\\/www.samsung.com\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/samsung.jpg\",\"id\":2484,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"aeee6c2\"},{\"client_name\":\"Komatsu Kogyo\",\"client_link\":{\"url\":\"https:\\/\\/komaz.co.jp\\/english\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/komatsu-kogyo.jpg\",\"id\":2483,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8fc7373\"},{\"_id\":\"ed2e401\",\"client_name\":\"Yuwa Engineering\",\"client_link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yuwa-engineering.jpg\",\"id\":2482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(8946,3015,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(8950,3014,'_edit_last','1'),(8951,3014,'_yoast_wpseo_estimated-reading-time-minutes','4'),(8952,3016,'_wp_page_template','default'),(8953,3016,'_elementor_edit_mode','builder'),(8954,3016,'_elementor_template_type','wp-page'),(8955,3016,'_elementor_version','3.24.7'),(8956,3016,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FEHT-logo.jpg\",\"id\":2812,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"e562253\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FE-TECH-LOGO-FINAL.png\",\"id\":2816,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Engineering\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"b254836\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/Far-East-Tool-Vina.jpg\",\"id\":2814,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tools Vina\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"994e0c5\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions as your trusted partner.\",\"sub_title\":\"Our Partners\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Yoshimoto\",\"client_link\":{\"url\":\"https:\\/\\/www.yoshimoto-sangyo.co.jp\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yoshimoto-vietnam.png\",\"id\":2486,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"a49fbc4\"},{\"client_name\":\"Kim Long Motors\",\"client_link\":{\"url\":\"https:\\/\\/kimlongmotor.com.vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/kim-long-motors.png\",\"id\":2485,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"33930a5\"},{\"client_name\":\"Samsung\",\"client_link\":{\"url\":\"https:\\/\\/www.samsung.com\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/samsung.jpg\",\"id\":2484,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"aeee6c2\"},{\"client_name\":\"Komatsu Kogyo\",\"client_link\":{\"url\":\"https:\\/\\/komaz.co.jp\\/english\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/komatsu-kogyo.jpg\",\"id\":2483,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8fc7373\"},{\"_id\":\"ed2e401\",\"client_name\":\"Yuwa Engineering\",\"client_link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yuwa-engineering.jpg\",\"id\":2482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(8957,3016,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(8961,3017,'_wp_page_template','default'),(8962,3017,'_elementor_edit_mode','builder'),(8963,3017,'_elementor_template_type','wp-page'),(8964,3017,'_elementor_version','3.24.7'),(8965,3017,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FEHT-logo.jpg\",\"id\":2812,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"e562253\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FE-TECH-LOGO-FINAL.png\",\"id\":2816,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Engineering\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"b254836\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/Far-East-Tool-Vina.jpg\",\"id\":2814,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tools Vina\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"994e0c5\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions as your trusted partner.\",\"sub_title\":\"Our Partners\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Yoshimoto\",\"client_link\":{\"url\":\"https:\\/\\/www.yoshimoto-sangyo.co.jp\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yoshimoto-vietnam.png\",\"id\":2486,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"a49fbc4\"},{\"client_name\":\"Kim Long Motors\",\"client_link\":{\"url\":\"https:\\/\\/kimlongmotor.com.vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/kim-long-motors.png\",\"id\":2485,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"33930a5\"},{\"client_name\":\"Samsung\",\"client_link\":{\"url\":\"https:\\/\\/www.samsung.com\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/samsung.jpg\",\"id\":2484,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"aeee6c2\"},{\"client_name\":\"Komatsu Kogyo\",\"client_link\":{\"url\":\"https:\\/\\/komaz.co.jp\\/english\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/komatsu-kogyo.jpg\",\"id\":2483,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8fc7373\"},{\"_id\":\"ed2e401\",\"client_name\":\"Yuwa Engineering\",\"client_link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yuwa-engineering.jpg\",\"id\":2482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(8966,3017,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(8970,3018,'_wp_page_template','default'),(8971,3018,'_elementor_edit_mode','builder'),(8972,3018,'_elementor_template_type','wp-page'),(8973,3018,'_elementor_version','3.24.7'),(8974,3018,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u9769\\u65b0\\u7684\\u306a\\u30bd\\u30ea\\u30e5\\u30fc\\u30b7\\u30e7\\u30f3\\u3067\\u304a\\u5ba2\\u69d8\\u306e\\u671f\\u5f85\\u3092\\u8d85\\u3048\\u307e\\u3059\\u3002\",\"sub_title\":\"\\u79c1\\u305f\\u3061\\u306e\\u30c1\\u30fc\\u30e0\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306f\\u3001\\u304a\\u5ba2\\u69d8\\u306e\\u671f\\u5f85\\u3092\\u8d85\\u3048\\u308b\\u9769\\u65b0\\u7684\\u306a\\u30bd\\u30ea\\u30e5\\u30fc\\u30b7\\u30e7\\u30f3\\u3092\\u63d0\\u4f9b\\u3057\\u3001\\u6700\\u9ad8\\u54c1\\u8cea\\u306e\\u6a5f\\u68b0\\u3068\\u512a\\u308c\\u305f\\u7d50\\u679c\\u3092\\u4fdd\\u8a3c\\u3057\\u307e\\u3059\\u3002<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FEHT-logo.jpg\",\"id\":2812,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"e562253\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FE-TECH-LOGO-FINAL.png\",\"id\":2816,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Engineering\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"b254836\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/Far-East-Tool-Vina.jpg\",\"id\":2814,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tools Vina\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"994e0c5\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u3001\\u4fe1\\u983c\\u3067\\u304d\\u308b\\u30d1\\u30fc\\u30c8\\u30ca\\u30fc\\u3068\\u3057\\u3066\\u9769\\u65b0\\u7684\\u306a\\u30bd\\u30ea\\u30e5\\u30fc\\u30b7\\u30e7\\u30f3\\u3067\\u304a\\u5ba2\\u69d8\\u306e\\u671f\\u5f85\\u3092\\u8d85\\u3048\\u307e\\u3059\\u3002\",\"sub_title\":\"\\u79c1\\u305f\\u3061\\u306e\\u30d1\\u30fc\\u30c8\\u30ca\\u30fc \"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306f\\u3001\\u30d1\\u30fc\\u30c8\\u30ca\\u30fc\\u3068\\u306e\\u9577\\u671f\\u7684\\u3067\\u6c38\\u7d9a\\u7684\\u306a\\u54c1\\u8cea\\u3068\\u6642\\u9593\\u53b3\\u5b88\\u3092\\u78ba\\u4fdd\\u3059\\u308b\\u3053\\u3068\\u3092\\u7d04\\u675f\\u3057\\u307e\\u3059\\u3002<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Yoshimoto\",\"client_link\":{\"url\":\"https:\\/\\/www.yoshimoto-sangyo.co.jp\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yoshimoto-vietnam.png\",\"id\":2486,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"a49fbc4\"},{\"client_name\":\"Kim Long Motors\",\"client_link\":{\"url\":\"https:\\/\\/kimlongmotor.com.vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/kim-long-motors.png\",\"id\":2485,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"33930a5\"},{\"client_name\":\"Samsung\",\"client_link\":{\"url\":\"https:\\/\\/www.samsung.com\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/samsung.jpg\",\"id\":2484,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"aeee6c2\"},{\"client_name\":\"Komatsu Kogyo\",\"client_link\":{\"url\":\"https:\\/\\/komaz.co.jp\\/english\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/komatsu-kogyo.jpg\",\"id\":2483,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8fc7373\"},{\"_id\":\"ed2e401\",\"client_name\":\"Yuwa Engineering\",\"client_link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yuwa-engineering.jpg\",\"id\":2482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(8975,3018,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(8979,3014,'_yoast_wpseo_content_score','90'),(8981,3019,'_wp_page_template','default'),(8982,3019,'_elementor_edit_mode','builder'),(8983,3019,'_elementor_template_type','wp-page'),(8984,3019,'_elementor_version','3.24.7'),(8985,3019,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i s\\u1ebd v\\u01b0\\u1ee3t qua mong \\u0111\\u1ee3i c\\u1ee7a b\\u1ea1n v\\u1edbi nh\\u1eefng gi\\u1ea3i ph\\u00e1p s\\u00e1ng t\\u1ea1o.\",\"sub_title\":\"\\u0110\\u1ed9i ng\\u0169 c\\u1ee7a ch\\u00fang t\\u00f4i\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ch\\u00fang t\\u00f4i cung c\\u1ea5p nh\\u1eefng gi\\u1ea3i ph\\u00e1p s\\u00e1ng t\\u1ea1o v\\u01b0\\u1ee3t xa mong \\u0111\\u1ee3i c\\u1ee7a b\\u1ea1n, \\u0111\\u1ea3m b\\u1ea3o m\\u00e1y m\\u00f3c ch\\u1ea5t l\\u01b0\\u1ee3ng cao v\\u00e0 k\\u1ebft qu\\u1ea3 xu\\u1ea5t s\\u1eafc.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FEHT-logo.jpg\",\"id\":2812,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"e562253\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FE-TECH-LOGO-FINAL.png\",\"id\":2816,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Engineering\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"b254836\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/Far-East-Tool-Vina.jpg\",\"id\":2814,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tools Vina\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"994e0c5\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i s\\u1ebd v\\u01b0\\u1ee3t qua mong \\u0111\\u1ee3i c\\u1ee7a b\\u1ea1n v\\u1edbi nh\\u1eefng gi\\u1ea3i ph\\u00e1p s\\u00e1ng t\\u1ea1o, nh\\u01b0 m\\u1ed9t \\u0111\\u1ed1i t\\u00e1c \\u0111\\u00e1ng tin c\\u1eady.\",\"sub_title\":\"C\\u00e1c \\u0111\\u1ed1i t\\u00e1c c\\u1ee7a ch\\u00fang t\\u00f4i\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Yoshimoto\",\"client_link\":{\"url\":\"https:\\/\\/www.yoshimoto-sangyo.co.jp\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yoshimoto-vietnam.png\",\"id\":2486,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"a49fbc4\"},{\"client_name\":\"Kim Long Motors\",\"client_link\":{\"url\":\"https:\\/\\/kimlongmotor.com.vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/kim-long-motors.png\",\"id\":2485,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"33930a5\"},{\"client_name\":\"Samsung\",\"client_link\":{\"url\":\"https:\\/\\/www.samsung.com\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/samsung.jpg\",\"id\":2484,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"aeee6c2\"},{\"client_name\":\"Komatsu Kogyo\",\"client_link\":{\"url\":\"https:\\/\\/komaz.co.jp\\/english\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/komatsu-kogyo.jpg\",\"id\":2483,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8fc7373\"},{\"_id\":\"ed2e401\",\"client_name\":\"Yuwa Engineering\",\"client_link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yuwa-engineering.jpg\",\"id\":2482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(8986,3019,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(8990,3020,'_wp_page_template','default'),(8991,3020,'_elementor_edit_mode','builder'),(8992,3020,'_elementor_template_type','wp-page'),(8993,3020,'_elementor_version','3.24.7'),(8994,3020,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i s\\u1ebd v\\u01b0\\u1ee3t qua mong \\u0111\\u1ee3i c\\u1ee7a b\\u1ea1n v\\u1edbi nh\\u1eefng gi\\u1ea3i ph\\u00e1p s\\u00e1ng t\\u1ea1o.\",\"sub_title\":\"\\u0110\\u1ed9i ng\\u0169 c\\u1ee7a ch\\u00fang t\\u00f4i\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ch\\u00fang t\\u00f4i cung c\\u1ea5p nh\\u1eefng gi\\u1ea3i ph\\u00e1p s\\u00e1ng t\\u1ea1o v\\u01b0\\u1ee3t xa mong \\u0111\\u1ee3i c\\u1ee7a b\\u1ea1n, \\u0111\\u1ea3m b\\u1ea3o m\\u00e1y m\\u00f3c ch\\u1ea5t l\\u01b0\\u1ee3ng cao v\\u00e0 k\\u1ebft qu\\u1ea3 xu\\u1ea5t s\\u1eafc.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FEHT-logo.jpg\",\"id\":2812,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"e562253\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FE-TECH-LOGO-FINAL.png\",\"id\":2816,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Engineering\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"b254836\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/Far-East-Tool-Vina.jpg\",\"id\":2814,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tools Vina\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"994e0c5\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i s\\u1ebd v\\u01b0\\u1ee3t qua mong \\u0111\\u1ee3i c\\u1ee7a b\\u1ea1n v\\u1edbi nh\\u1eefng gi\\u1ea3i ph\\u00e1p s\\u00e1ng t\\u1ea1o, nh\\u01b0 m\\u1ed9t \\u0111\\u1ed1i t\\u00e1c \\u0111\\u00e1ng tin c\\u1eady.\",\"sub_title\":\"C\\u00e1c \\u0111\\u1ed1i t\\u00e1c c\\u1ee7a ch\\u00fang t\\u00f4i\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Yoshimoto\",\"client_link\":{\"url\":\"https:\\/\\/www.yoshimoto-sangyo.co.jp\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yoshimoto-vietnam.png\",\"id\":2486,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"a49fbc4\"},{\"client_name\":\"Kim Long Motors\",\"client_link\":{\"url\":\"https:\\/\\/kimlongmotor.com.vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/kim-long-motors.png\",\"id\":2485,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"33930a5\"},{\"client_name\":\"Samsung\",\"client_link\":{\"url\":\"https:\\/\\/www.samsung.com\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/samsung.jpg\",\"id\":2484,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"aeee6c2\"},{\"client_name\":\"Komatsu Kogyo\",\"client_link\":{\"url\":\"https:\\/\\/komaz.co.jp\\/english\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/komatsu-kogyo.jpg\",\"id\":2483,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8fc7373\"},{\"_id\":\"ed2e401\",\"client_name\":\"Yuwa Engineering\",\"client_link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yuwa-engineering.jpg\",\"id\":2482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(8995,3020,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(8999,3021,'_wp_page_template','default'),(9000,3021,'_elementor_edit_mode','builder'),(9001,3021,'_elementor_template_type','wp-page'),(9002,3021,'_elementor_version','3.24.7'),(9003,3021,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i s\\u1ebd v\\u01b0\\u1ee3t qua mong \\u0111\\u1ee3i c\\u1ee7a b\\u1ea1n v\\u1edbi nh\\u1eefng gi\\u1ea3i ph\\u00e1p s\\u00e1ng t\\u1ea1o.\",\"sub_title\":\"\\u0110\\u1ed9i ng\\u0169 c\\u1ee7a ch\\u00fang t\\u00f4i\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ch\\u00fang t\\u00f4i cung c\\u1ea5p nh\\u1eefng gi\\u1ea3i ph\\u00e1p s\\u00e1ng t\\u1ea1o v\\u01b0\\u1ee3t xa mong \\u0111\\u1ee3i c\\u1ee7a b\\u1ea1n, \\u0111\\u1ea3m b\\u1ea3o m\\u00e1y m\\u00f3c ch\\u1ea5t l\\u01b0\\u1ee3ng cao v\\u00e0 k\\u1ebft qu\\u1ea3 xu\\u1ea5t s\\u1eafc.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FEHT-logo.jpg\",\"id\":2812,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"e562253\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FE-TECH-LOGO-FINAL.png\",\"id\":2816,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Engineering\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"b254836\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/Far-East-Tool-Vina.jpg\",\"id\":2814,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tools Vina\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"994e0c5\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i s\\u1ebd v\\u01b0\\u1ee3t qua mong \\u0111\\u1ee3i c\\u1ee7a b\\u1ea1n v\\u1edbi nh\\u1eefng gi\\u1ea3i ph\\u00e1p s\\u00e1ng t\\u1ea1o, nh\\u01b0 m\\u1ed9t \\u0111\\u1ed1i t\\u00e1c \\u0111\\u00e1ng tin c\\u1eady.\",\"sub_title\":\"C\\u00e1c \\u0111\\u1ed1i t\\u00e1c c\\u1ee7a ch\\u00fang t\\u00f4i\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ch\\u00fang t\\u00f4i cam k\\u1ebft \\u0111\\u1ea3m b\\u1ea3o ch\\u1ea5t l\\u01b0\\u1ee3ng l\\u00e2u d\\u00e0i v\\u00e0 s\\u1ef1 \\u0111\\u00fang gi\\u1edd b\\u1ec1n v\\u1eefng c\\u00f9ng c\\u00e1c \\u0111\\u1ed1i t\\u00e1c.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Yoshimoto\",\"client_link\":{\"url\":\"https:\\/\\/www.yoshimoto-sangyo.co.jp\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yoshimoto-vietnam.png\",\"id\":2486,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"a49fbc4\"},{\"client_name\":\"Kim Long Motors\",\"client_link\":{\"url\":\"https:\\/\\/kimlongmotor.com.vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/kim-long-motors.png\",\"id\":2485,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"33930a5\"},{\"client_name\":\"Samsung\",\"client_link\":{\"url\":\"https:\\/\\/www.samsung.com\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/samsung.jpg\",\"id\":2484,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"aeee6c2\"},{\"client_name\":\"Komatsu Kogyo\",\"client_link\":{\"url\":\"https:\\/\\/komaz.co.jp\\/english\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/komatsu-kogyo.jpg\",\"id\":2483,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8fc7373\"},{\"_id\":\"ed2e401\",\"client_name\":\"Yuwa Engineering\",\"client_link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yuwa-engineering.jpg\",\"id\":2482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(9004,3021,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(9013,3022,'_wp_page_template','default'),(9014,3022,'_elementor_edit_mode','builder'),(9015,3022,'_elementor_template_type','wp-page'),(9016,3022,'_elementor_version','3.24.7'),(9017,3022,'_elementor_data','[{\"id\":\"c986484\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"21\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab9e3e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.324,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cc7a78\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i l\\u00e0m b\\u1ea1n h\\u00e0i l\\u00f2ng v\\u1edbi nh\\u1eefng \\u00fd t\\u01b0\\u1edfng s\\u00e1ng t\\u1ea1o v\\u00e0 c\\u00f4ng vi\\u1ec7c ch\\u1ea5t l\\u01b0\\u1ee3ng.\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"sub_title\":\"V\\u1ec1 ch\\u00fang t\\u00f4i\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c469998\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ch\\u00fang t\\u00f4i v\\u01b0\\u1ee3t qua mong \\u0111\\u1ee3i nh\\u1edd nh\\u1eefng \\u00fd t\\u01b0\\u1edfng s\\u00e1ng t\\u1ea1o v\\u00e0 tay ngh\\u1ec1 xu\\u1ea5t s\\u1eafc.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11334c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2442360\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d195ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-01.png\",\"id\":612},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b2107e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Qu\\u1ea3n l\\u00fd th\\u1eddi gian\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c366e73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>T\\u1ed5 ch\\u1ee9c c\\u00f4ng vi\\u1ec7c hi\\u1ec7u qu\\u1ea3 \\u0111\\u1ec3 t\\u1ed1i \\u0111a h\\u00f3a n\\u0103ng su\\u1ea5t v\\u00e0 ho\\u00e0n th\\u00e0nh \\u0111\\u00fang h\\u1ea1n.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d099fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c4ae19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-02.png\",\"id\":613},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ba24a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ho\\u00e0n th\\u00e0nh m\\u1ee5c ti\\u00eau\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bdc9adf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u0110\\u1ea1t \\u0111\\u01b0\\u1ee3c m\\u1ee5c ti\\u00eau v\\u1edbi s\\u1ef1 ch\\u00ednh x\\u00e1c v\\u00e0 cam k\\u1ebft, \\u0111\\u1ea3m b\\u1ea3o th\\u00e0nh c\\u00f4ng.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ba92fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.676,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae4fae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218231.webp\",\"id\":2503,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"0c406f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature1.png\",\"id\":2538,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Tin Luu\",\"desc\":\"(Ch\\u1ee7 t\\u1ecbch v\\u00e0 ng\\u01b0\\u1eddi s\\u00e1ng l\\u1eadp)\",\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"B\\u1ea1n mu\\u1ed1n bi\\u1ebft th\\u00eam v\\u1ec1 ch\\u00fang t\\u00f4i?\",\"desc\":\"Ch\\u1ec9 c\\u1ea7n t\\u1ea3i brochure...\",\"btn_text\":\"T\\u1ea3i Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"},\"btn_link\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/profile.pdf\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-scaled.jpg\",\"id\":663},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"060\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.937},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Far East High Tech l\\u00e0 m\\u1ed9t c\\u00f4ng ty x\\u00e2y d\\u1ef1ng chuy\\u00ean nghi\\u1ec7p.\",\"sub_title\":\"L\\u1ecbch s\\u1eed c\\u00f4ng ty\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.063},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Far East High Tech l\\u00e0 c\\u00f4ng ty h\\u00e0ng \\u0111\\u1ea7u trong vi\\u1ec7c x\\u00e2y d\\u1ef1ng v\\u00e0 s\\u1ea3n xu\\u1ea5t c\\u00e1c gi\\u1ea3i ph\\u00e1p c\\u01a1 kh\\u00ed ch\\u1ea5t l\\u01b0\\u1ee3ng cao.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e9a883e\",\"elType\":\"widget\",\"settings\":{\"start_text\":\"Start\",\"end_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"history\":[{\"_id\":\"7d82651\",\"title\":\"Ng\\u00e0y 20 th\\u00e1ng 11, 2018\",\"content\":\"Far East Tech \\u0111\\u01b0\\u1ee3c th\\u00e0nh l\\u1eadp t\\u1ea1i Qu\\u1ebf V\\u00f5, B\\u1eafc Ninh v\\u1edbi 5 th\\u00e0nh vi\\u00ean s\\u00e1ng l\\u1eadp.\"},{\"_id\":\"37eb5f9\",\"title\":\"Ng\\u00e0y 1 th\\u00e1ng 4, 2021\",\"content\":\"V\\u1edbi s\\u1ef1 ph\\u00e1t tri\\u1ec3n m\\u1ea1nh m\\u1ebd c\\u1ee7a Far East Tech, ch\\u00fang t\\u00f4i quy\\u1ebft \\u0111\\u1ecbnh m\\u1edf r\\u1ed9ng chi nh\\u00e1nh t\\u1ea1i mi\\u1ec1n Nam.\"},{\"_id\":\"2e7ebbf\",\"title\":\"Ng\\u00e0y 30 th\\u00e1ng 4, 2021\",\"content\":\"Ch\\u00fang t\\u00f4i \\u0111\\u00e3 th\\u00e0nh c\\u00f4ng trong vi\\u1ec7c ti\\u1ebfp qu\\u1ea3n c\\u00f4ng ty DMM Precision Engineering Co., Ltd. t\\u1ea1i B\\u00ecnh D\\u01b0\\u01a1ng, m\\u1ed9t c\\u00f4ng ty c\\u00f3 kinh nghi\\u1ec7m xu\\u1ea5t kh\\u1ea9u h\\u00e0ng h\\u00f3a sang Nh\\u1eadt B\\u1ea3n t\\u1eeb n\\u0103m 2016, v\\u00e0 t\\u1eeb \\u0111\\u00f3, ch\\u00fang t\\u00f4i \\u0111\\u00e3 th\\u00e0nh l\\u1eadp m\\u1ed9t c\\u00f4ng ty gia c\\u00f4ng t\\u1ea1i khu v\\u1ef1c mi\\u1ec1n Nam.\"},{\"_id\":\"6c49f4c\",\"title\":\"Ng\\u00e0y 1 th\\u00e1ng 6, 2022\",\"content\":\"Far East Tech \\u0111\\u00e3 ti\\u1ebfn m\\u1ed9t b\\u01b0\\u1edbc quan tr\\u1ecdng trong s\\u1ea3n xu\\u1ea5t quy m\\u00f4 c\\u00f4ng nghi\\u1ec7p v\\u1edbi m\\u1ed9t x\\u01b0\\u1edfng s\\u1ea3n xu\\u1ea5t r\\u1ed9ng 2000m2 v\\u00e0 70 m\\u00e1y CNC t\\u1ea1i B\\u1eafc Ninh.\"},{\"_id\":\"de48600\",\"title\":\"2024\",\"content\":\"C\\u00f4ng ty DMM Precision Engineering Co., Ltd. ch\\u00ednh th\\u1ee9c \\u0111\\u1ed5i t\\u00ean th\\u00e0nh C\\u00f4ng ty TNHH Far East High Tech.\\nSau n\\u0103m 2025: \\u0110\\u00e2y s\\u1ebd l\\u00e0 n\\u0103m ph\\u00e1t tri\\u1ec3n m\\u1ea1nh m\\u1ebd c\\u1ee7a \\u0111\\u1ed9i ng\\u0169 c\\u00f4ng ty ch\\u00fang t\\u00f4i.\"}]},\"elements\":[],\"widgetType\":\"ct_history\"}],\"isInner\":false}],\"isInner\":false}]'),(9018,3022,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:6;s:18:\"title_space_bottom\";i:3;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:4;s:22:\"sub_title_space_bottom\";i:3;s:15:\"sub_title_color\";i:1;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:5;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:7;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}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:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;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:10;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:3;s:13:\"margin_mobile\";i:3;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:3;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:6;s:7:\"padding\";i:6;s:14:\"padding_tablet\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:5:\"image\";i:1;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"ct_cta\";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:\"source_section\";a:4:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:4:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:14:\"slides_to_show\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:16:\"slides_to_scroll\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:6:\"arrows\";i:1;s:8:\"autoplay\";i:1;s:8:\"infinite\";i:1;}}}}}'),(9022,3022,'custom_header',''),(9023,3022,'header_layout','1'),(9024,3022,'custom_pagetitle','show'),(9025,3022,'custom_title','About us'),(9026,3022,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(9027,3022,'ptitle_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(9028,3022,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(9029,3022,'content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}'),(9030,3022,'show_sidebar_page',''),(9031,3022,'sidebar_page_pos','right'),(9032,3022,'custom_footer',''),(9033,3022,'footer_layout_custom',''),(9035,3022,'_edit_lock','1742181973:1'),(9036,3023,'_wp_page_template','default'),(9037,3023,'_elementor_edit_mode','builder'),(9038,3023,'_elementor_template_type','wp-page'),(9039,3023,'_elementor_version','3.24.7'),(9040,3023,'_elementor_data','[{\"id\":\"c986484\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"21\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab9e3e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.324,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cc7a78\",\"elType\":\"widget\",\"settings\":{\"title\":\"We satisfy you with innovative ideas and quality work.\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"sub_title\":\"About us\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c469998\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We exceed expectations through innovative ideas and exceptional craftsmanship.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11334c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2442360\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d195ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-01.png\",\"id\":612},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b2107e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Time manage\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c366e73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Efficiently organizing tasks to maximize productivity and meet deadlines.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d099fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c4ae19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-02.png\",\"id\":613},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ba24a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fulfill target\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bdc9adf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Achieving goals with precision and commitment, ensuring success.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ba92fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.676,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae4fae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218231.webp\",\"id\":2503,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"0c406f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature1.png\",\"id\":2538,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Tin Luu\",\"desc\":\"(Chairman and founder)\",\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to know more about us?\",\"desc\":\"Just download brochure...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"},\"btn_link\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/BROCHURE.pdf\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-scaled.jpg\",\"id\":663},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"060\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.937},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Far East High Tech is a professional builder company\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.063},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Far East High Tech is a leading company in building and manufacturing high-quality mechanical solutions.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e9a883e\",\"elType\":\"widget\",\"settings\":{\"start_text\":\"Start\",\"end_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"history\":[{\"_id\":\"7d82651\",\"title\":\"20th Nov, 2018\",\"content\":\"Far East Tech was established in Qu\\u1ebf V\\u00f5, B\\u1eafc Ninh with 5 founding members.\"},{\"_id\":\"37eb5f9\",\"title\":\"1st Apr, 2021\",\"content\":\"With the strong growth of Far East Tech, we decided to expand our branch in the South.\"},{\"_id\":\"2e7ebbf\",\"title\":\"30th Apr, 2021\",\"content\":\"We successfully acquired DMM Precision Engineering Co., Ltd. in B\\u00ecnh D\\u01b0\\u01a1ng, a company with experience in exporting goods to Japan since 2016,\\nand thus, we established a machining company in the southern region.\"},{\"_id\":\"6c49f4c\",\"title\":\"1st Jun, 2022\",\"content\":\"Far East Tech took a significant step in industrial-scale production with a 2000m2 workshop and 70 CNC machines in B\\u1eafc Ninh.\"},{\"_id\":\"de48600\",\"title\":\"2024\",\"content\":\"DMM Precision Engineering Co., Ltd. officially changed its name to Far East High Tech Co., Ltd.\\nAfter 2025: This will be a year of strong development for our company team.\"}]},\"elements\":[],\"widgetType\":\"ct_history\"}],\"isInner\":false}],\"isInner\":false}]'),(9041,3023,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:6;s:18:\"title_space_bottom\";i:3;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:4;s:22:\"sub_title_space_bottom\";i:3;s:15:\"sub_title_color\";i:1;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:5;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:7;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}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:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;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:10;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:3;s:13:\"margin_mobile\";i:3;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:3;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:6;s:7:\"padding\";i:6;s:14:\"padding_tablet\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:5:\"image\";i:1;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"ct_cta\";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:\"source_section\";a:4:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:4:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:14:\"slides_to_show\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:16:\"slides_to_scroll\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:6:\"arrows\";i:1;s:8:\"autoplay\";i:1;s:8:\"infinite\";i:1;}}}}}'),(9045,3022,'_edit_last','1'),(9046,3022,'p_logo_dark','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(9047,3022,'p_logo_light','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(9048,3022,'h_custom_menu',''),(9049,3022,'_yoast_wpseo_estimated-reading-time-minutes','3'),(9050,3024,'_wp_page_template','default'),(9051,3024,'_elementor_edit_mode','builder'),(9052,3024,'_elementor_template_type','wp-page'),(9053,3024,'_elementor_version','3.24.7'),(9054,3024,'_elementor_data','[{\"id\":\"c986484\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"21\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab9e3e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.324,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cc7a78\",\"elType\":\"widget\",\"settings\":{\"title\":\"We satisfy you with innovative ideas and quality work.\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"sub_title\":\"About us\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c469998\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We exceed expectations through innovative ideas and exceptional craftsmanship.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11334c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2442360\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d195ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-01.png\",\"id\":612},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b2107e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Time manage\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c366e73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Efficiently organizing tasks to maximize productivity and meet deadlines.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d099fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c4ae19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-02.png\",\"id\":613},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ba24a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fulfill target\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bdc9adf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Achieving goals with precision and commitment, ensuring success.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ba92fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.676,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae4fae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218231.webp\",\"id\":2503,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"0c406f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature1.png\",\"id\":2538,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Tin Luu\",\"desc\":\"(Chairman and founder)\",\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to know more about us?\",\"desc\":\"Just download brochure...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"},\"btn_link\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/BROCHURE.pdf\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-scaled.jpg\",\"id\":663},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"060\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.937},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Far East High Tech is a professional builder company\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.063},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Far East High Tech is a leading company in building and manufacturing high-quality mechanical solutions.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e9a883e\",\"elType\":\"widget\",\"settings\":{\"start_text\":\"Start\",\"end_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"history\":[{\"_id\":\"7d82651\",\"title\":\"20th Nov, 2018\",\"content\":\"Far East Tech was established in Qu\\u1ebf V\\u00f5, B\\u1eafc Ninh with 5 founding members.\"},{\"_id\":\"37eb5f9\",\"title\":\"1st Apr, 2021\",\"content\":\"With the strong growth of Far East Tech, we decided to expand our branch in the South.\"},{\"_id\":\"2e7ebbf\",\"title\":\"30th Apr, 2021\",\"content\":\"We successfully acquired DMM Precision Engineering Co., Ltd. in B\\u00ecnh D\\u01b0\\u01a1ng, a company with experience in exporting goods to Japan since 2016,\\nand thus, we established a machining company in the southern region.\"},{\"_id\":\"6c49f4c\",\"title\":\"1st Jun, 2022\",\"content\":\"Far East Tech took a significant step in industrial-scale production with a 2000m2 workshop and 70 CNC machines in B\\u1eafc Ninh.\"},{\"_id\":\"de48600\",\"title\":\"2024\",\"content\":\"DMM Precision Engineering Co., Ltd. officially changed its name to Far East High Tech Co., Ltd.\\nAfter 2025: This will be a year of strong development for our company team.\"}]},\"elements\":[],\"widgetType\":\"ct_history\"}],\"isInner\":false}],\"isInner\":false}]'),(9055,3024,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:6;s:18:\"title_space_bottom\";i:3;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:4;s:22:\"sub_title_space_bottom\";i:3;s:15:\"sub_title_color\";i:1;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:5;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:7;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}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:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;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:10;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:3;s:13:\"margin_mobile\";i:3;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:3;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:6;s:7:\"padding\";i:6;s:14:\"padding_tablet\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:5:\"image\";i:1;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"ct_cta\";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:\"source_section\";a:4:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:4:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:14:\"slides_to_show\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:16:\"slides_to_scroll\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:6:\"arrows\";i:1;s:8:\"autoplay\";i:1;s:8:\"infinite\";i:1;}}}}}'),(9059,3025,'_wp_page_template','default'),(9060,3025,'_elementor_edit_mode','builder'),(9061,3025,'_elementor_template_type','wp-page'),(9062,3025,'_elementor_version','3.24.7'),(9063,3025,'_elementor_data','[{\"id\":\"c986484\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"21\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab9e3e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.324,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cc7a78\",\"elType\":\"widget\",\"settings\":{\"title\":\"We satisfy you with innovative ideas and quality work.\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"sub_title\":\"About us\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c469998\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We exceed expectations through innovative ideas and exceptional craftsmanship.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11334c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2442360\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d195ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-01.png\",\"id\":612},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b2107e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Time manage\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c366e73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Efficiently organizing tasks to maximize productivity and meet deadlines.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d099fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c4ae19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-02.png\",\"id\":613},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ba24a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fulfill target\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bdc9adf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Achieving goals with precision and commitment, ensuring success.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ba92fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.676,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae4fae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218231.webp\",\"id\":2503,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"0c406f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature1.png\",\"id\":2538,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Tin Luu\",\"desc\":\"(Chairman and founder)\",\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to know more about us?\",\"desc\":\"Just download brochure...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"},\"btn_link\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/BROCHURE.pdf\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-scaled.jpg\",\"id\":663},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"060\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.937},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Far East High Tech is a professional builder company\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.063},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Far East High Tech is a leading company in building and manufacturing high-quality mechanical solutions.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e9a883e\",\"elType\":\"widget\",\"settings\":{\"start_text\":\"Start\",\"end_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"history\":[{\"_id\":\"7d82651\",\"title\":\"20th Nov, 2018\",\"content\":\"Far East Tech was established in Qu\\u1ebf V\\u00f5, B\\u1eafc Ninh with 5 founding members.\"},{\"_id\":\"37eb5f9\",\"title\":\"1st Apr, 2021\",\"content\":\"With the strong growth of Far East Tech, we decided to expand our branch in the South.\"},{\"_id\":\"2e7ebbf\",\"title\":\"30th Apr, 2021\",\"content\":\"We successfully acquired DMM Precision Engineering Co., Ltd. in B\\u00ecnh D\\u01b0\\u01a1ng, a company with experience in exporting goods to Japan since 2016,\\nand thus, we established a machining company in the southern region.\"},{\"_id\":\"6c49f4c\",\"title\":\"1st Jun, 2022\",\"content\":\"Far East Tech took a significant step in industrial-scale production with a 2000m2 workshop and 70 CNC machines in B\\u1eafc Ninh.\"},{\"_id\":\"de48600\",\"title\":\"2024\",\"content\":\"DMM Precision Engineering Co., Ltd. officially changed its name to Far East High Tech Co., Ltd.\\nAfter 2025: This will be a year of strong development for our company team.\"}]},\"elements\":[],\"widgetType\":\"ct_history\"}],\"isInner\":false}],\"isInner\":false}]'),(9064,3025,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:6;s:18:\"title_space_bottom\";i:3;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:4;s:22:\"sub_title_space_bottom\";i:3;s:15:\"sub_title_color\";i:1;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:5;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:7;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}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:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;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:10;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:3;s:13:\"margin_mobile\";i:3;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:3;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:6;s:7:\"padding\";i:6;s:14:\"padding_tablet\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:5:\"image\";i:1;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"ct_cta\";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:\"source_section\";a:4:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:4:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:14:\"slides_to_show\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:16:\"slides_to_scroll\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:6:\"arrows\";i:1;s:8:\"autoplay\";i:1;s:8:\"infinite\";i:1;}}}}}'),(9068,3026,'_wp_page_template','default'),(9069,3026,'_elementor_edit_mode','builder'),(9070,3026,'_elementor_template_type','wp-page'),(9071,3026,'_elementor_version','3.24.7'),(9072,3026,'_elementor_data','[{\"id\":\"c986484\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"21\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab9e3e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.324,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cc7a78\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i l\\u00e0m b\\u1ea1n h\\u00e0i l\\u00f2ng v\\u1edbi nh\\u1eefng \\u00fd t\\u01b0\\u1edfng s\\u00e1ng t\\u1ea1o v\\u00e0 c\\u00f4ng vi\\u1ec7c ch\\u1ea5t l\\u01b0\\u1ee3ng.\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"sub_title\":\"V\\u1ec1 ch\\u00fang t\\u00f4i\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c469998\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ch\\u00fang t\\u00f4i v\\u01b0\\u1ee3t qua mong \\u0111\\u1ee3i nh\\u1edd nh\\u1eefng \\u00fd t\\u01b0\\u1edfng s\\u00e1ng t\\u1ea1o v\\u00e0 tay ngh\\u1ec1 xu\\u1ea5t s\\u1eafc.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11334c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2442360\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d195ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-01.png\",\"id\":612},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b2107e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Qu\\u1ea3n l\\u00fd th\\u1eddi gian\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c366e73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>T\\u1ed5 ch\\u1ee9c c\\u00f4ng vi\\u1ec7c hi\\u1ec7u qu\\u1ea3 \\u0111\\u1ec3 t\\u1ed1i \\u0111a h\\u00f3a n\\u0103ng su\\u1ea5t v\\u00e0 ho\\u00e0n th\\u00e0nh \\u0111\\u00fang h\\u1ea1n.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d099fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c4ae19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-02.png\",\"id\":613},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ba24a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ho\\u00e0n th\\u00e0nh m\\u1ee5c ti\\u00eau\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bdc9adf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u0110\\u1ea1t \\u0111\\u01b0\\u1ee3c m\\u1ee5c ti\\u00eau v\\u1edbi s\\u1ef1 ch\\u00ednh x\\u00e1c v\\u00e0 cam k\\u1ebft, \\u0111\\u1ea3m b\\u1ea3o th\\u00e0nh c\\u00f4ng.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ba92fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.676,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae4fae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218231.webp\",\"id\":2503,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"0c406f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature1.png\",\"id\":2538,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Tin Luu\",\"desc\":\"(Ch\\u1ee7 t\\u1ecbch v\\u00e0 ng\\u01b0\\u1eddi s\\u00e1ng l\\u1eadp)\",\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"B\\u1ea1n mu\\u1ed1n bi\\u1ebft th\\u00eam v\\u1ec1 ch\\u00fang t\\u00f4i?\",\"desc\":\"Ch\\u1ec9 c\\u1ea7n t\\u1ea3i brochure...\",\"btn_text\":\"T\\u1ea3i Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"},\"btn_link\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/BROCHURE.pdf\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-scaled.jpg\",\"id\":663},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"060\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.937},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Far East High Tech l\\u00e0 m\\u1ed9t c\\u00f4ng ty x\\u00e2y d\\u1ef1ng chuy\\u00ean nghi\\u1ec7p.\",\"sub_title\":\"L\\u1ecbch s\\u1eed c\\u00f4ng ty\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.063},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Far East High Tech l\\u00e0 c\\u00f4ng ty h\\u00e0ng \\u0111\\u1ea7u trong vi\\u1ec7c x\\u00e2y d\\u1ef1ng v\\u00e0 s\\u1ea3n xu\\u1ea5t c\\u00e1c gi\\u1ea3i ph\\u00e1p c\\u01a1 kh\\u00ed ch\\u1ea5t l\\u01b0\\u1ee3ng cao.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e9a883e\",\"elType\":\"widget\",\"settings\":{\"start_text\":\"Start\",\"end_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"history\":[{\"_id\":\"7d82651\",\"title\":\"Ng\\u00e0y 20 th\\u00e1ng 11, 2018\",\"content\":\"Far East Tech \\u0111\\u01b0\\u1ee3c th\\u00e0nh l\\u1eadp t\\u1ea1i Qu\\u1ebf V\\u00f5, B\\u1eafc Ninh v\\u1edbi 5 th\\u00e0nh vi\\u00ean s\\u00e1ng l\\u1eadp.\"},{\"_id\":\"37eb5f9\",\"title\":\"Ng\\u00e0y 1 th\\u00e1ng 4, 2021\",\"content\":\"V\\u1edbi s\\u1ef1 ph\\u00e1t tri\\u1ec3n m\\u1ea1nh m\\u1ebd c\\u1ee7a Far East Tech, ch\\u00fang t\\u00f4i quy\\u1ebft \\u0111\\u1ecbnh m\\u1edf r\\u1ed9ng chi nh\\u00e1nh t\\u1ea1i mi\\u1ec1n Nam.\"},{\"_id\":\"2e7ebbf\",\"title\":\"Ng\\u00e0y 30 th\\u00e1ng 4, 2021\",\"content\":\"Ch\\u00fang t\\u00f4i \\u0111\\u00e3 th\\u00e0nh c\\u00f4ng trong vi\\u1ec7c ti\\u1ebfp qu\\u1ea3n c\\u00f4ng ty DMM Precision Engineering Co., Ltd. t\\u1ea1i B\\u00ecnh D\\u01b0\\u01a1ng, m\\u1ed9t c\\u00f4ng ty c\\u00f3 kinh nghi\\u1ec7m xu\\u1ea5t kh\\u1ea9u h\\u00e0ng h\\u00f3a sang Nh\\u1eadt B\\u1ea3n t\\u1eeb n\\u0103m 2016, v\\u00e0 t\\u1eeb \\u0111\\u00f3, ch\\u00fang t\\u00f4i \\u0111\\u00e3 th\\u00e0nh l\\u1eadp m\\u1ed9t c\\u00f4ng ty gia c\\u00f4ng t\\u1ea1i khu v\\u1ef1c mi\\u1ec1n Nam.\"},{\"_id\":\"6c49f4c\",\"title\":\"Ng\\u00e0y 1 th\\u00e1ng 6, 2022\",\"content\":\"Far East Tech \\u0111\\u00e3 ti\\u1ebfn m\\u1ed9t b\\u01b0\\u1edbc quan tr\\u1ecdng trong s\\u1ea3n xu\\u1ea5t quy m\\u00f4 c\\u00f4ng nghi\\u1ec7p v\\u1edbi m\\u1ed9t x\\u01b0\\u1edfng s\\u1ea3n xu\\u1ea5t r\\u1ed9ng 2000m2 v\\u00e0 70 m\\u00e1y CNC t\\u1ea1i B\\u1eafc Ninh.\"},{\"_id\":\"de48600\",\"title\":\"2024\",\"content\":\"C\\u00f4ng ty DMM Precision Engineering Co., Ltd. ch\\u00ednh th\\u1ee9c \\u0111\\u1ed5i t\\u00ean th\\u00e0nh C\\u00f4ng ty TNHH Far East High Tech.\\nSau n\\u0103m 2025: \\u0110\\u00e2y s\\u1ebd l\\u00e0 n\\u0103m ph\\u00e1t tri\\u1ec3n m\\u1ea1nh m\\u1ebd c\\u1ee7a \\u0111\\u1ed9i ng\\u0169 c\\u00f4ng ty ch\\u00fang t\\u00f4i.\"}]},\"elements\":[],\"widgetType\":\"ct_history\"}],\"isInner\":false}],\"isInner\":false}]'),(9073,3026,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:6;s:18:\"title_space_bottom\";i:3;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:4;s:22:\"sub_title_space_bottom\";i:3;s:15:\"sub_title_color\";i:1;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:5;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:7;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}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:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;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:10;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:3;s:13:\"margin_mobile\";i:3;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:3;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:6;s:7:\"padding\";i:6;s:14:\"padding_tablet\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:5:\"image\";i:1;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"ct_cta\";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:\"source_section\";a:4:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:4:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:14:\"slides_to_show\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:16:\"slides_to_scroll\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:6:\"arrows\";i:1;s:8:\"autoplay\";i:1;s:8:\"infinite\";i:1;}}}}}'),(9077,3022,'_yoast_wpseo_content_score','90'),(9079,26,'_edit_last','1'),(9080,26,'rs_page_bg_color',''),(9081,3027,'_wp_page_template','default'),(9082,3027,'_elementor_edit_mode','builder'),(9083,3027,'_elementor_template_type','wp-page'),(9084,3027,'_elementor_version','3.24.7'),(9085,3027,'_elementor_data','[{\"id\":\"c986484\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"21\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab9e3e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.324,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cc7a78\",\"elType\":\"widget\",\"settings\":{\"title\":\"We satisfy you with innovative ideas and quality work.\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"sub_title\":\"About us\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c469998\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We exceed expectations through innovative ideas and exceptional craftsmanship.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11334c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2442360\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d195ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-01.png\",\"id\":612},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b2107e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Time manage\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c366e73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Efficiently organizing tasks to maximize productivity and meet deadlines.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d099fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c4ae19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-02.png\",\"id\":613},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ba24a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fulfill target\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bdc9adf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Achieving goals with precision and commitment, ensuring success.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ba92fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.676,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae4fae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218231.webp\",\"id\":2503,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"0c406f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature1.png\",\"id\":2538,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Tin Luu\",\"desc\":\"(Chairman and founder)\",\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to know more about us?\",\"desc\":\"Just download brochure...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"},\"btn_link\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/BROCHURE.pdf\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-scaled.jpg\",\"id\":663},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"060\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.937},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Far East High Tech is a professional builder company\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.063},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Far East High Tech is a leading company in building and manufacturing high-quality mechanical solutions.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e9a883e\",\"elType\":\"widget\",\"settings\":{\"start_text\":\"Start\",\"end_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"history\":[{\"_id\":\"7d82651\",\"title\":\"20th Nov, 2018\",\"content\":\"Far East Tech was established in Qu\\u1ebf V\\u00f5, B\\u1eafc Ninh with 5 founding members.\"},{\"_id\":\"37eb5f9\",\"title\":\"1st Apr, 2021\",\"content\":\"With the strong growth of Far East Tech, we decided to expand our branch in the South.\"},{\"_id\":\"2e7ebbf\",\"title\":\"30th Apr, 2021\",\"content\":\"We successfully acquired DMM Precision Engineering Co., Ltd. in B\\u00ecnh D\\u01b0\\u01a1ng, a company with experience in exporting goods to Japan since 2016,\\nand thus, we established a machining company in the southern region.\"},{\"_id\":\"6c49f4c\",\"title\":\"1st Jun, 2022\",\"content\":\"Far East Tech took a significant step in industrial-scale production with a 2000m2 workshop and 70 CNC machines in B\\u1eafc Ninh.\"},{\"_id\":\"de48600\",\"title\":\"2024\",\"content\":\"DMM Precision Engineering Co., Ltd. officially changed its name to Far East High Tech Co., Ltd.\\nAfter 2025: This will be a year of strong development for our company team.\"}]},\"elements\":[],\"widgetType\":\"ct_history\"}],\"isInner\":false}],\"isInner\":false}]'),(9086,3027,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:6;s:18:\"title_space_bottom\";i:3;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:4;s:22:\"sub_title_space_bottom\";i:3;s:15:\"sub_title_color\";i:1;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:5;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:7;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}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:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;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:10;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:3;s:13:\"margin_mobile\";i:3;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:3;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:6;s:7:\"padding\";i:6;s:14:\"padding_tablet\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:5:\"image\";i:1;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"ct_cta\";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:\"source_section\";a:4:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:4:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:14:\"slides_to_show\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:16:\"slides_to_scroll\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:6:\"arrows\";i:1;s:8:\"autoplay\";i:1;s:8:\"infinite\";i:1;}}}}}'),(9090,3028,'_wp_page_template','default'),(9091,3028,'_elementor_edit_mode','builder'),(9092,3028,'_elementor_template_type','wp-page'),(9093,3028,'_elementor_version','3.24.7'),(9094,3028,'_elementor_data','[{\"id\":\"c986484\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"21\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab9e3e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.324,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cc7a78\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u3001\\u9769\\u65b0\\u7684\\u306a\\u30a2\\u30a4\\u30c7\\u30a2\\u3068\\u8cea\\u306e\\u9ad8\\u3044\\u4ed5\\u4e8b\\u3067\\u304a\\u5ba2\\u69d8\\u3092\\u6e80\\u8db3\\u3055\\u305b\\u307e\\u3059\\u3002\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"sub_title\":\"\\u79c1\\u305f\\u3061\\u306b\\u3064\\u3044\\u3066\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c469998\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306f\\u3001\\u9769\\u65b0\\u7684\\u306a\\u30a2\\u30a4\\u30c7\\u30a2\\u3068\\u5353\\u8d8a\\u3057\\u305f\\u8077\\u4eba\\u6280\\u3067\\u671f\\u5f85\\u3092\\u8d85\\u3048\\u307e\\u3059\\u3002<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11334c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2442360\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d195ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-01.png\",\"id\":612},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b2107e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u6642\\u9593\\u7ba1\\u7406\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c366e73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u751f\\u7523\\u6027\\u3092\\u6700\\u5927\\u5316\\u3057\\u3001\\u671f\\u9650\\u3092\\u5b88\\u308b\\u305f\\u3081\\u306b\\u30bf\\u30b9\\u30af\\u3092\\u52b9\\u7387\\u7684\\u306b\\u6574\\u7406\\u3057\\u307e\\u3059\\u3002<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d099fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c4ae19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-02.png\",\"id\":613},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ba24a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u76ee\\u6a19\\u3092\\u9054\\u6210\\u3059\\u308b\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bdc9adf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u7cbe\\u5ea6\\u3068\\u30b3\\u30df\\u30c3\\u30c8\\u30e1\\u30f3\\u30c8\\u3067\\u76ee\\u6a19\\u3092\\u9054\\u6210\\u3057\\u3001\\u6210\\u529f\\u3092\\u78ba\\u5b9f\\u306b\\u3057\\u307e\\u3059\\u3002<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ba92fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.676,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae4fae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218231.webp\",\"id\":2503,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"0c406f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature1.png\",\"id\":2538,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Tin Luu\",\"desc\":\"(\\u4f1a\\u9577\\u517c\\u5275\\u8a2d\\u8005)\",\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306b\\u3064\\u3044\\u3066\\u3082\\u3063\\u3068\\u77e5\\u308a\\u305f\\u3044\\u3067\\u3059\\u304b\\uff1f\",\"desc\":\"\\u30d1\\u30f3\\u30d5\\u30ec\\u30c3\\u30c8\\u3092\\u30c0\\u30a6\\u30f3\\u30ed\\u30fc\\u30c9\\u3059\\u308b\\u3060\\u3051\\u3067\\u3059...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"},\"btn_link\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/profile.pdf\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-scaled.jpg\",\"id\":663},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"060\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.937},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Far East High Tech\\u306f\\u3001\\u30d7\\u30ed\\u30d5\\u30a7\\u30c3\\u30b7\\u30e7\\u30ca\\u30eb\\u306a\\u5efa\\u8a2d\\u4f1a\\u793e\\u3067\\u3059\\u3002\",\"sub_title\":\"\\u4f1a\\u793e\\u306e\\u6b74\\u53f2\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.063},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Far East High Tech\\u306f\\u3001\\u9ad8\\u54c1\\u8cea\\u306a\\u6a5f\\u68b0\\u30bd\\u30ea\\u30e5\\u30fc\\u30b7\\u30e7\\u30f3\\u306e\\u69cb\\u7bc9\\u3068\\u88fd\\u9020\\u306b\\u304a\\u3044\\u3066\\u5148\\u99c6\\u8005\\u7684\\u306a\\u4f01\\u696d\\u3067\\u3059\\u3002<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e9a883e\",\"elType\":\"widget\",\"settings\":{\"start_text\":\"\\u958b\\u59cb\",\"end_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"history\":[{\"_id\":\"7d82651\",\"title\":\"2018\\u5e7411\\u670820\\u65e5\",\"content\":\"Far East Tech\\u306f\\u3001\\u30d9\\u30af\\u30d3\\u30f3\\u306e\\u30af\\u30a8\\u30f4\\u30a9\\u30675\\u4eba\\u306e\\u5275\\u8a2d\\u30e1\\u30f3\\u30d0\\u30fc\\u3068\\u5171\\u306b\\u8a2d\\u7acb\\u3055\\u308c\\u307e\\u3057\\u305f\\u3002\"},{\"_id\":\"37eb5f9\",\"title\":\"2021\\u5e744\\u67081\\u65e5\",\"content\":\"Far East Tech\\u306e\\u5f37\\u529b\\u306a\\u6210\\u9577\\u306b\\u4f34\\u3044\\u3001\\u79c1\\u305f\\u3061\\u306f\\u5357\\u90e8\\u306b\\u652f\\u5e97\\u3092\\u62e1\\u5927\\u3059\\u308b\\u3053\\u3068\\u3092\\u6c7a\\u5b9a\\u3057\\u307e\\u3057\\u305f\\u3002\"},{\"_id\":\"2e7ebbf\",\"title\":\"2021\\u5e744\\u670830\\u65e5\",\"content\":\"\\u79c1\\u305f\\u3061\\u306f\\u30012016\\u5e74\\u304b\\u3089\\u65e5\\u672c\\u3078\\u306e\\u8f38\\u51fa\\u7d4c\\u9a13\\u3092\\u6301\\u3064DMM Precision Engineering Co., Ltd.\\u3092\\u30d3\\u30f3 Duong\\u3067\\u8cb7\\u53ce\\u3057\\u3001\\u3053\\u308c\\u306b\\u3088\\u308a\\u5357\\u90e8\\u5730\\u57df\\u306b\\u6a5f\\u68b0\\u52a0\\u5de5\\u4f1a\\u793e\\u3092\\u8a2d\\u7acb\\u3057\\u307e\\u3057\\u305f\\u3002\"},{\"_id\":\"6c49f4c\",\"title\":\"2022\\u5e746\\u67081\\u65e5\",\"content\":\"Far East Tech\\u306f\\u3001\\u5317\\u5be7\\u306b2000m2\\u306e\\u30ef\\u30fc\\u30af\\u30b7\\u30e7\\u30c3\\u30d7\\u306870\\u53f0\\u306eCNC\\u6a5f\\u68b0\\u3092\\u5099\\u3048\\u3001\\u7523\\u696d\\u898f\\u6a21\\u306e\\u751f\\u7523\\u306b\\u304a\\u3044\\u3066\\u91cd\\u8981\\u306a\\u4e00\\u6b69\\u3092\\u8e0f\\u307f\\u51fa\\u3057\\u307e\\u3057\\u305f\\u3002\"},{\"_id\":\"de48600\",\"title\":\"2024\",\"content\":\"DMM Precision Engineering Co., Ltd.\\u306f\\u6b63\\u5f0f\\u306bFar East High Tech Co., Ltd.\\u306b\\u793e\\u540d\\u3092\\u5909\\u66f4\\u3057\\u307e\\u3057\\u305f\\u3002\\n2025\\u5e74\\u4ee5\\u964d\\uff1a\\u3053\\u308c\\u306f\\u79c1\\u305f\\u3061\\u306e\\u4f1a\\u793e\\u30c1\\u30fc\\u30e0\\u306b\\u3068\\u3063\\u3066\\u5f37\\u529b\\u306a\\u767a\\u5c55\\u306e\\u5e74\\u3068\\u306a\\u308b\\u3067\\u3057\\u3087\\u3046\\u3002\"}]},\"elements\":[],\"widgetType\":\"ct_history\"}],\"isInner\":false}],\"isInner\":false}]'),(9095,3028,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:6;s:18:\"title_space_bottom\";i:3;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:4;s:22:\"sub_title_space_bottom\";i:3;s:15:\"sub_title_color\";i:1;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:5;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:7;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}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:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;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:10;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:3;s:13:\"margin_mobile\";i:3;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:3;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:6;s:7:\"padding\";i:6;s:14:\"padding_tablet\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:5:\"image\";i:1;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"ct_cta\";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:\"source_section\";a:4:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:4:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:14:\"slides_to_show\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:16:\"slides_to_scroll\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:6:\"arrows\";i:1;s:8:\"autoplay\";i:1;s:8:\"infinite\";i:1;}}}}}'),(9099,3028,'custom_header',''),(9100,3028,'header_layout','1'),(9101,3028,'custom_pagetitle','show'),(9102,3028,'custom_title','About us'),(9103,3028,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(9104,3028,'ptitle_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(9105,3028,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(9106,3028,'content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}'),(9107,3028,'show_sidebar_page',''),(9108,3028,'sidebar_page_pos','right'),(9109,3028,'custom_footer',''),(9110,3028,'footer_layout_custom',''),(9112,3028,'_edit_lock','1742181981:1'),(9113,3029,'_wp_page_template','default'),(9114,3029,'_elementor_edit_mode','builder'),(9115,3029,'_elementor_template_type','wp-page'),(9116,3029,'_elementor_version','3.24.7'),(9117,3029,'_elementor_data','[{\"id\":\"c986484\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"21\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab9e3e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.324,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cc7a78\",\"elType\":\"widget\",\"settings\":{\"title\":\"We satisfy you with innovative ideas and quality work.\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"sub_title\":\"About us\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c469998\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We exceed expectations through innovative ideas and exceptional craftsmanship.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11334c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2442360\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d195ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-01.png\",\"id\":612},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b2107e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Time manage\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c366e73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Efficiently organizing tasks to maximize productivity and meet deadlines.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d099fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c4ae19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-02.png\",\"id\":613},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ba24a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fulfill target\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bdc9adf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Achieving goals with precision and commitment, ensuring success.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ba92fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.676,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae4fae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218231.webp\",\"id\":2503,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"0c406f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature1.png\",\"id\":2538,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Tin Luu\",\"desc\":\"(Chairman and founder)\",\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to know more about us?\",\"desc\":\"Just download brochure...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"},\"btn_link\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/BROCHURE.pdf\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-scaled.jpg\",\"id\":663},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"060\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.937},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Far East High Tech is a professional builder company\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.063},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Far East High Tech is a leading company in building and manufacturing high-quality mechanical solutions.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e9a883e\",\"elType\":\"widget\",\"settings\":{\"start_text\":\"Start\",\"end_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"history\":[{\"_id\":\"7d82651\",\"title\":\"20th Nov, 2018\",\"content\":\"Far East Tech was established in Qu\\u1ebf V\\u00f5, B\\u1eafc Ninh with 5 founding members.\"},{\"_id\":\"37eb5f9\",\"title\":\"1st Apr, 2021\",\"content\":\"With the strong growth of Far East Tech, we decided to expand our branch in the South.\"},{\"_id\":\"2e7ebbf\",\"title\":\"30th Apr, 2021\",\"content\":\"We successfully acquired DMM Precision Engineering Co., Ltd. in B\\u00ecnh D\\u01b0\\u01a1ng, a company with experience in exporting goods to Japan since 2016,\\nand thus, we established a machining company in the southern region.\"},{\"_id\":\"6c49f4c\",\"title\":\"1st Jun, 2022\",\"content\":\"Far East Tech took a significant step in industrial-scale production with a 2000m2 workshop and 70 CNC machines in B\\u1eafc Ninh.\"},{\"_id\":\"de48600\",\"title\":\"2024\",\"content\":\"DMM Precision Engineering Co., Ltd. officially changed its name to Far East High Tech Co., Ltd.\\nAfter 2025: This will be a year of strong development for our company team.\"}]},\"elements\":[],\"widgetType\":\"ct_history\"}],\"isInner\":false}],\"isInner\":false}]'),(9118,3029,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:6;s:18:\"title_space_bottom\";i:3;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:4;s:22:\"sub_title_space_bottom\";i:3;s:15:\"sub_title_color\";i:1;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:5;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:7;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}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:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;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:10;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:3;s:13:\"margin_mobile\";i:3;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:3;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:6;s:7:\"padding\";i:6;s:14:\"padding_tablet\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:5:\"image\";i:1;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"ct_cta\";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:\"source_section\";a:4:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:4:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:14:\"slides_to_show\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:16:\"slides_to_scroll\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:6:\"arrows\";i:1;s:8:\"autoplay\";i:1;s:8:\"infinite\";i:1;}}}}}'),(9122,3028,'_edit_last','1'),(9123,3028,'p_logo_dark','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(9124,3028,'p_logo_light','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(9125,3028,'h_custom_menu',''),(9126,3028,'_yoast_wpseo_estimated-reading-time-minutes','1'),(9127,3030,'_wp_page_template','default'),(9128,3030,'_elementor_edit_mode','builder'),(9129,3030,'_elementor_template_type','wp-page'),(9130,3030,'_elementor_version','3.24.7'),(9131,3030,'_elementor_data','[{\"id\":\"c986484\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"21\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab9e3e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.324,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cc7a78\",\"elType\":\"widget\",\"settings\":{\"title\":\"We satisfy you with innovative ideas and quality work.\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"sub_title\":\"About us\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c469998\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We exceed expectations through innovative ideas and exceptional craftsmanship.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11334c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2442360\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d195ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-01.png\",\"id\":612},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b2107e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Time manage\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c366e73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Efficiently organizing tasks to maximize productivity and meet deadlines.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d099fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c4ae19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-02.png\",\"id\":613},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ba24a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fulfill target\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bdc9adf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Achieving goals with precision and commitment, ensuring success.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ba92fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.676,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae4fae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218231.webp\",\"id\":2503,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"0c406f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature1.png\",\"id\":2538,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Tin Luu\",\"desc\":\"(Chairman and founder)\",\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to know more about us?\",\"desc\":\"Just download brochure...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"},\"btn_link\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/BROCHURE.pdf\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-scaled.jpg\",\"id\":663},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"060\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.937},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Far East High Tech is a professional builder company\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.063},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Far East High Tech is a leading company in building and manufacturing high-quality mechanical solutions.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e9a883e\",\"elType\":\"widget\",\"settings\":{\"start_text\":\"Start\",\"end_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"history\":[{\"_id\":\"7d82651\",\"title\":\"20th Nov, 2018\",\"content\":\"Far East Tech was established in Qu\\u1ebf V\\u00f5, B\\u1eafc Ninh with 5 founding members.\"},{\"_id\":\"37eb5f9\",\"title\":\"1st Apr, 2021\",\"content\":\"With the strong growth of Far East Tech, we decided to expand our branch in the South.\"},{\"_id\":\"2e7ebbf\",\"title\":\"30th Apr, 2021\",\"content\":\"We successfully acquired DMM Precision Engineering Co., Ltd. in B\\u00ecnh D\\u01b0\\u01a1ng, a company with experience in exporting goods to Japan since 2016,\\nand thus, we established a machining company in the southern region.\"},{\"_id\":\"6c49f4c\",\"title\":\"1st Jun, 2022\",\"content\":\"Far East Tech took a significant step in industrial-scale production with a 2000m2 workshop and 70 CNC machines in B\\u1eafc Ninh.\"},{\"_id\":\"de48600\",\"title\":\"2024\",\"content\":\"DMM Precision Engineering Co., Ltd. officially changed its name to Far East High Tech Co., Ltd.\\nAfter 2025: This will be a year of strong development for our company team.\"}]},\"elements\":[],\"widgetType\":\"ct_history\"}],\"isInner\":false}],\"isInner\":false}]'),(9132,3030,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:6;s:18:\"title_space_bottom\";i:3;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:4;s:22:\"sub_title_space_bottom\";i:3;s:15:\"sub_title_color\";i:1;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:5;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:7;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}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:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;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:10;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:3;s:13:\"margin_mobile\";i:3;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:3;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:6;s:7:\"padding\";i:6;s:14:\"padding_tablet\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:5:\"image\";i:1;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"ct_cta\";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:\"source_section\";a:4:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:4:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:14:\"slides_to_show\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:16:\"slides_to_scroll\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:6:\"arrows\";i:1;s:8:\"autoplay\";i:1;s:8:\"infinite\";i:1;}}}}}'),(9136,3031,'_wp_page_template','default'),(9137,3031,'_elementor_edit_mode','builder'),(9138,3031,'_elementor_template_type','wp-page'),(9139,3031,'_elementor_version','3.24.7'),(9140,3031,'_elementor_data','[{\"id\":\"c986484\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"21\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab9e3e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.324,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cc7a78\",\"elType\":\"widget\",\"settings\":{\"title\":\"We satisfy you with innovative ideas and quality work.\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"sub_title\":\"About us\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c469998\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We exceed expectations through innovative ideas and exceptional craftsmanship.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11334c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2442360\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d195ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-01.png\",\"id\":612},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b2107e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Time manage\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c366e73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Efficiently organizing tasks to maximize productivity and meet deadlines.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d099fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c4ae19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-02.png\",\"id\":613},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ba24a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fulfill target\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bdc9adf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Achieving goals with precision and commitment, ensuring success.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ba92fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.676,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae4fae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218231.webp\",\"id\":2503,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"0c406f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature1.png\",\"id\":2538,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Tin Luu\",\"desc\":\"(Chairman and founder)\",\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to know more about us?\",\"desc\":\"Just download brochure...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"},\"btn_link\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/BROCHURE.pdf\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-scaled.jpg\",\"id\":663},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"060\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.937},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Far East High Tech is a professional builder company\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.063},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Far East High Tech is a leading company in building and manufacturing high-quality mechanical solutions.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e9a883e\",\"elType\":\"widget\",\"settings\":{\"start_text\":\"Start\",\"end_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"history\":[{\"_id\":\"7d82651\",\"title\":\"20th Nov, 2018\",\"content\":\"Far East Tech was established in Qu\\u1ebf V\\u00f5, B\\u1eafc Ninh with 5 founding members.\"},{\"_id\":\"37eb5f9\",\"title\":\"1st Apr, 2021\",\"content\":\"With the strong growth of Far East Tech, we decided to expand our branch in the South.\"},{\"_id\":\"2e7ebbf\",\"title\":\"30th Apr, 2021\",\"content\":\"We successfully acquired DMM Precision Engineering Co., Ltd. in B\\u00ecnh D\\u01b0\\u01a1ng, a company with experience in exporting goods to Japan since 2016,\\nand thus, we established a machining company in the southern region.\"},{\"_id\":\"6c49f4c\",\"title\":\"1st Jun, 2022\",\"content\":\"Far East Tech took a significant step in industrial-scale production with a 2000m2 workshop and 70 CNC machines in B\\u1eafc Ninh.\"},{\"_id\":\"de48600\",\"title\":\"2024\",\"content\":\"DMM Precision Engineering Co., Ltd. officially changed its name to Far East High Tech Co., Ltd.\\nAfter 2025: This will be a year of strong development for our company team.\"}]},\"elements\":[],\"widgetType\":\"ct_history\"}],\"isInner\":false}],\"isInner\":false}]'),(9141,3031,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:6;s:18:\"title_space_bottom\";i:3;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:4;s:22:\"sub_title_space_bottom\";i:3;s:15:\"sub_title_color\";i:1;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:5;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:7;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}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:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;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:10;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:3;s:13:\"margin_mobile\";i:3;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:3;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:6;s:7:\"padding\";i:6;s:14:\"padding_tablet\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:5:\"image\";i:1;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"ct_cta\";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:\"source_section\";a:4:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:4:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:14:\"slides_to_show\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:16:\"slides_to_scroll\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:6:\"arrows\";i:1;s:8:\"autoplay\";i:1;s:8:\"infinite\";i:1;}}}}}'),(9145,3032,'_wp_page_template','default'),(9146,3032,'_elementor_edit_mode','builder'),(9147,3032,'_elementor_template_type','wp-page'),(9148,3032,'_elementor_version','3.24.7'),(9149,3032,'_elementor_data','[{\"id\":\"c986484\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"21\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab9e3e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.324,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cc7a78\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u3001\\u9769\\u65b0\\u7684\\u306a\\u30a2\\u30a4\\u30c7\\u30a2\\u3068\\u8cea\\u306e\\u9ad8\\u3044\\u4ed5\\u4e8b\\u3067\\u304a\\u5ba2\\u69d8\\u3092\\u6e80\\u8db3\\u3055\\u305b\\u307e\\u3059\\u3002\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"sub_title\":\"\\u79c1\\u305f\\u3061\\u306b\\u3064\\u3044\\u3066\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c469998\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306f\\u3001\\u9769\\u65b0\\u7684\\u306a\\u30a2\\u30a4\\u30c7\\u30a2\\u3068\\u5353\\u8d8a\\u3057\\u305f\\u8077\\u4eba\\u6280\\u3067\\u671f\\u5f85\\u3092\\u8d85\\u3048\\u307e\\u3059\\u3002<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11334c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2442360\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d195ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-01.png\",\"id\":612},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b2107e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u6642\\u9593\\u7ba1\\u7406\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c366e73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u751f\\u7523\\u6027\\u3092\\u6700\\u5927\\u5316\\u3057\\u3001\\u671f\\u9650\\u3092\\u5b88\\u308b\\u305f\\u3081\\u306b\\u30bf\\u30b9\\u30af\\u3092\\u52b9\\u7387\\u7684\\u306b\\u6574\\u7406\\u3057\\u307e\\u3059\\u3002<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d099fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c4ae19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-02.png\",\"id\":613},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ba24a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u76ee\\u6a19\\u3092\\u9054\\u6210\\u3059\\u308b\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bdc9adf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u7cbe\\u5ea6\\u3068\\u30b3\\u30df\\u30c3\\u30c8\\u30e1\\u30f3\\u30c8\\u3067\\u76ee\\u6a19\\u3092\\u9054\\u6210\\u3057\\u3001\\u6210\\u529f\\u3092\\u78ba\\u5b9f\\u306b\\u3057\\u307e\\u3059\\u3002<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ba92fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.676,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae4fae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218231.webp\",\"id\":2503,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"0c406f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature1.png\",\"id\":2538,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Tin Luu\",\"desc\":\"(\\u4f1a\\u9577\\u517c\\u5275\\u8a2d\\u8005)\",\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306b\\u3064\\u3044\\u3066\\u3082\\u3063\\u3068\\u77e5\\u308a\\u305f\\u3044\\u3067\\u3059\\u304b\\uff1f\",\"desc\":\"\\u30d1\\u30f3\\u30d5\\u30ec\\u30c3\\u30c8\\u3092\\u30c0\\u30a6\\u30f3\\u30ed\\u30fc\\u30c9\\u3059\\u308b\\u3060\\u3051\\u3067\\u3059...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"},\"btn_link\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/BROCHURE.pdf\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-scaled.jpg\",\"id\":663},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"060\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.937},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Far East High Tech\\u306f\\u3001\\u30d7\\u30ed\\u30d5\\u30a7\\u30c3\\u30b7\\u30e7\\u30ca\\u30eb\\u306a\\u5efa\\u8a2d\\u4f1a\\u793e\\u3067\\u3059\\u3002\",\"sub_title\":\"\\u4f1a\\u793e\\u306e\\u6b74\\u53f2\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.063},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Far East High Tech\\u306f\\u3001\\u9ad8\\u54c1\\u8cea\\u306a\\u6a5f\\u68b0\\u30bd\\u30ea\\u30e5\\u30fc\\u30b7\\u30e7\\u30f3\\u306e\\u69cb\\u7bc9\\u3068\\u88fd\\u9020\\u306b\\u304a\\u3044\\u3066\\u5148\\u99c6\\u8005\\u7684\\u306a\\u4f01\\u696d\\u3067\\u3059\\u3002<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e9a883e\",\"elType\":\"widget\",\"settings\":{\"start_text\":\"\\u958b\\u59cb\",\"end_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"history\":[{\"_id\":\"7d82651\",\"title\":\"2018\\u5e7411\\u670820\\u65e5\",\"content\":\"Far East Tech\\u306f\\u3001\\u30d9\\u30af\\u30d3\\u30f3\\u306e\\u30af\\u30a8\\u30f4\\u30a9\\u30675\\u4eba\\u306e\\u5275\\u8a2d\\u30e1\\u30f3\\u30d0\\u30fc\\u3068\\u5171\\u306b\\u8a2d\\u7acb\\u3055\\u308c\\u307e\\u3057\\u305f\\u3002\"},{\"_id\":\"37eb5f9\",\"title\":\"2021\\u5e744\\u67081\\u65e5\",\"content\":\"Far East Tech\\u306e\\u5f37\\u529b\\u306a\\u6210\\u9577\\u306b\\u4f34\\u3044\\u3001\\u79c1\\u305f\\u3061\\u306f\\u5357\\u90e8\\u306b\\u652f\\u5e97\\u3092\\u62e1\\u5927\\u3059\\u308b\\u3053\\u3068\\u3092\\u6c7a\\u5b9a\\u3057\\u307e\\u3057\\u305f\\u3002\"},{\"_id\":\"2e7ebbf\",\"title\":\"2021\\u5e744\\u670830\\u65e5\",\"content\":\"\\u79c1\\u305f\\u3061\\u306f\\u30012016\\u5e74\\u304b\\u3089\\u65e5\\u672c\\u3078\\u306e\\u8f38\\u51fa\\u7d4c\\u9a13\\u3092\\u6301\\u3064DMM Precision Engineering Co., Ltd.\\u3092\\u30d3\\u30f3 Duong\\u3067\\u8cb7\\u53ce\\u3057\\u3001\\u3053\\u308c\\u306b\\u3088\\u308a\\u5357\\u90e8\\u5730\\u57df\\u306b\\u6a5f\\u68b0\\u52a0\\u5de5\\u4f1a\\u793e\\u3092\\u8a2d\\u7acb\\u3057\\u307e\\u3057\\u305f\\u3002\"},{\"_id\":\"6c49f4c\",\"title\":\"2022\\u5e746\\u67081\\u65e5\",\"content\":\"Far East Tech\\u306f\\u3001\\u5317\\u5be7\\u306b2000m2\\u306e\\u30ef\\u30fc\\u30af\\u30b7\\u30e7\\u30c3\\u30d7\\u306870\\u53f0\\u306eCNC\\u6a5f\\u68b0\\u3092\\u5099\\u3048\\u3001\\u7523\\u696d\\u898f\\u6a21\\u306e\\u751f\\u7523\\u306b\\u304a\\u3044\\u3066\\u91cd\\u8981\\u306a\\u4e00\\u6b69\\u3092\\u8e0f\\u307f\\u51fa\\u3057\\u307e\\u3057\\u305f\\u3002\"},{\"_id\":\"de48600\",\"title\":\"2024\",\"content\":\"DMM Precision Engineering Co., Ltd.\\u306f\\u6b63\\u5f0f\\u306bFar East High Tech Co., Ltd.\\u306b\\u793e\\u540d\\u3092\\u5909\\u66f4\\u3057\\u307e\\u3057\\u305f\\u3002\\n2025\\u5e74\\u4ee5\\u964d\\uff1a\\u3053\\u308c\\u306f\\u79c1\\u305f\\u3061\\u306e\\u4f1a\\u793e\\u30c1\\u30fc\\u30e0\\u306b\\u3068\\u3063\\u3066\\u5f37\\u529b\\u306a\\u767a\\u5c55\\u306e\\u5e74\\u3068\\u306a\\u308b\\u3067\\u3057\\u3087\\u3046\\u3002\"}]},\"elements\":[],\"widgetType\":\"ct_history\"}],\"isInner\":false}],\"isInner\":false}]'),(9150,3032,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:6;s:18:\"title_space_bottom\";i:3;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:4;s:22:\"sub_title_space_bottom\";i:3;s:15:\"sub_title_color\";i:1;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:5;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:7;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}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:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;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:10;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:3;s:13:\"margin_mobile\";i:3;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:3;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:6;s:7:\"padding\";i:6;s:14:\"padding_tablet\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:5:\"image\";i:1;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"ct_cta\";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:\"source_section\";a:4:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:4:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:14:\"slides_to_show\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:16:\"slides_to_scroll\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:6:\"arrows\";i:1;s:8:\"autoplay\";i:1;s:8:\"infinite\";i:1;}}}}}'),(9154,3028,'_yoast_wpseo_content_score','90'),(9161,3033,'_wp_page_template','default'),(9162,3033,'_elementor_edit_mode','builder'),(9163,3033,'_elementor_template_type','wp-page'),(9164,3033,'_elementor_version','3.24.7'),(9165,3033,'_elementor_data','[{\"id\":\"253fe5b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"a2a8d03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c431857\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":515,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d10974f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dbae7b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2f7cb3c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":38,\"spread\":0,\"color\":\"rgba(6.9999999999999964, 0, 76, 0.23)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-108\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d8771\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1bbe0fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"H\\u00e3y tho\\u1ea3i m\\u00e1i li\\u00ean h\\u1ec7 v\\u1edbi ch\\u00fang t\\u00f4i \\u0111\\u1ec3 gi\\u1ea3i quy\\u1ebft m\\u1ecdi v\\u1ea5n \\u0111\\u1ec1!\",\"sub_title\":\"Contact us\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"147d5ff\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"S\\u1ed1 43, \\u0110\\u01b0\\u1eddng s\\u1ed1 4, Khu ph\\u1ed1 2, Ph\\u01b0\\u1eddng B\\u00ecnh Chi\\u1ec3u, Th\\u00e0nh ph\\u1ed1 Th\\u1ee7 \\u0110\\u1ee9c, TP. H\\u1ed3 Ch\\u00ed Minh\",\"ct_icon\":{\"value\":\"fas fa-store-alt\",\"library\":\"fa-solid\"},\"_id\":\"38e4334\",\"title\":\"\\u0110\\u1ecba ch\\u1ec9 v\\u0103n ph\\u00f2ng ch\\u00ednh c\\u1ee7a ch\\u00fang t\\u00f4i:\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/info-icon-01.png\",\"id\":279}},{\"content\":\"0968860386\",\"ct_icon\":{\"value\":\"fas fa-store-alt\",\"library\":\"fa-solid\"},\"_id\":\"f98cc4e\",\"title\":\"G\\u1ecdi \\u0111\\u1ec3 \\u0111\\u01b0\\u1ee3c gi\\u00fap \\u0111\\u1ee1:\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/info-icon-02.png\",\"id\":280}},{\"content\":\"luutin.nmpco@gmail.com\",\"ct_icon\":{\"value\":\"fas fa-store-alt\",\"library\":\"fa-solid\"},\"title\":\"G\\u1eedi email cho ch\\u00fang t\\u00f4i \\u0111\\u1ec3 bi\\u1ebft th\\u00eam th\\u00f4ng tin:\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/info-icon-03.png\",\"id\":281,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"b2b743e\"}],\"layout\":\"2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":true},{\"id\":\"c443a53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#EEF2F6\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b59c45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Li\\u00ean h\\u1ec7 v\\u1edbi ch\\u00fang t\\u00f4i!\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44b4987\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u1ebfu b\\u1ea1n c\\u00f3 c\\u00e2u h\\u1ecfi ho\\u1eb7c mu\\u1ed1n t\\u00ecm hi\\u1ec3u th\\u00eam v\\u1ec1 d\\u1ecbch v\\u1ee5 c\\u1ee7a ch\\u00fang t\\u00f4i, \\u0111\\u1eebng ng\\u1ea7n ng\\u1ea1i li\\u00ean h\\u1ec7. Ch\\u00fang t\\u00f4i lu\\u00f4n s\\u1eb5n s\\u00e0ng gi\\u00fap \\u0111\\u1ee1!<\\/p>\",\"text_color\":\"#636363\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"85609a1\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"91\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9166,3033,'_elementor_controls_usage','a:7:{s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:6:\"margin\";i:2;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:13:\"margin_mobile\";i:1;}}s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:15:\"stretch_section\";i:1;s:6:\"layout\";i:1;s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";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;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:11:\"css_classes\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:5:{s:5:\"title\";i:2;s:18:\"title_space_bottom\";i:2;s:27:\"title_typography_typography\";i:2;s:33:\"title_typography_font_size_tablet\";i:1;s:26:\"title_typography_font_size\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_ctf7\";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:\"source_section\";a:1:{s:7:\"ctf7_id\";i:1;}}}}}'),(9170,3033,'custom_header',''),(9171,3033,'header_layout','1'),(9172,3033,'custom_pagetitle','themeoption'),(9173,3033,'custom_title',''),(9174,3033,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(9175,3033,'ptitle_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(9176,3033,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(9177,3033,'content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}'),(9178,3033,'show_sidebar_page',''),(9179,3033,'sidebar_page_pos','right'),(9180,3033,'custom_footer',''),(9181,3033,'footer_layout_custom',''),(9183,3033,'_edit_lock','1734418749:1'),(9184,3034,'_wp_page_template','default'),(9185,3034,'_elementor_edit_mode','builder'),(9186,3034,'_elementor_template_type','wp-page'),(9187,3034,'_elementor_version','3.24.7'),(9188,3034,'_elementor_data','[{\"id\":\"253fe5b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"a2a8d03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c431857\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":515,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d10974f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dbae7b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2f7cb3c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":38,\"spread\":0,\"color\":\"rgba(6.9999999999999964, 0, 76, 0.23)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-108\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d8771\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1bbe0fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Feel free to contact us to solve any problem!\",\"sub_title\":\"Contact us\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"147d5ff\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\",\"ct_icon\":{\"value\":\"fas fa-store-alt\",\"library\":\"fa-solid\"},\"_id\":\"38e4334\",\"title\":\"Our head office address:\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/info-icon-01.png\",\"id\":279}},{\"content\":\"0968860386\",\"ct_icon\":{\"value\":\"fas fa-store-alt\",\"library\":\"fa-solid\"},\"_id\":\"f98cc4e\",\"title\":\"Call for help:\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/info-icon-02.png\",\"id\":280}},{\"content\":\"luutin.nmpco@gmail.com\",\"ct_icon\":{\"value\":\"fas fa-store-alt\",\"library\":\"fa-solid\"},\"title\":\"Mail us for information:\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/info-icon-03.png\",\"id\":281,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"b2b743e\"}],\"layout\":\"2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":true},{\"id\":\"c443a53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#EEF2F6\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b59c45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in touch!\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44b4987\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>If you have questions or want to learn more about our services, don\\u2019t hesitate to reach out. We\\u2019re here to help!<\\/p>\",\"text_color\":\"#636363\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"85609a1\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"91\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9189,3034,'_elementor_controls_usage','a:7:{s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:6:\"margin\";i:2;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:13:\"margin_mobile\";i:1;}}s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:15:\"stretch_section\";i:1;s:6:\"layout\";i:1;s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";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;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:11:\"css_classes\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:5:{s:5:\"title\";i:2;s:18:\"title_space_bottom\";i:2;s:27:\"title_typography_typography\";i:2;s:33:\"title_typography_font_size_tablet\";i:1;s:26:\"title_typography_font_size\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_ctf7\";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:\"source_section\";a:1:{s:7:\"ctf7_id\";i:1;}}}}}'),(9193,3033,'_edit_last','1'),(9194,3033,'p_logo_dark','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(9195,3033,'p_logo_light','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(9196,3033,'h_custom_menu',''),(9197,3033,'_yoast_wpseo_estimated-reading-time-minutes','2'),(9198,3035,'_wp_page_template','default'),(9199,3035,'_elementor_edit_mode','builder'),(9200,3035,'_elementor_template_type','wp-page'),(9201,3035,'_elementor_version','3.24.7'),(9202,3035,'_elementor_data','[{\"id\":\"253fe5b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"a2a8d03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c431857\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":515,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d10974f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dbae7b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2f7cb3c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":38,\"spread\":0,\"color\":\"rgba(6.9999999999999964, 0, 76, 0.23)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-108\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d8771\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1bbe0fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Feel free to contact us to solve any problem!\",\"sub_title\":\"Contact us\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"147d5ff\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\",\"ct_icon\":{\"value\":\"fas fa-store-alt\",\"library\":\"fa-solid\"},\"_id\":\"38e4334\",\"title\":\"Our head office address:\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/info-icon-01.png\",\"id\":279}},{\"content\":\"0968860386\",\"ct_icon\":{\"value\":\"fas fa-store-alt\",\"library\":\"fa-solid\"},\"_id\":\"f98cc4e\",\"title\":\"Call for help:\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/info-icon-02.png\",\"id\":280}},{\"content\":\"luutin.nmpco@gmail.com\",\"ct_icon\":{\"value\":\"fas fa-store-alt\",\"library\":\"fa-solid\"},\"title\":\"Mail us for information:\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/info-icon-03.png\",\"id\":281,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"b2b743e\"}],\"layout\":\"2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":true},{\"id\":\"c443a53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#EEF2F6\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b59c45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in touch!\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44b4987\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>If you have questions or want to learn more about our services, don\\u2019t hesitate to reach out. We\\u2019re here to help!<\\/p>\",\"text_color\":\"#636363\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"85609a1\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"91\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9203,3035,'_elementor_controls_usage','a:7:{s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:6:\"margin\";i:2;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:13:\"margin_mobile\";i:1;}}s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:15:\"stretch_section\";i:1;s:6:\"layout\";i:1;s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";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;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:11:\"css_classes\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:5:{s:5:\"title\";i:2;s:18:\"title_space_bottom\";i:2;s:27:\"title_typography_typography\";i:2;s:33:\"title_typography_font_size_tablet\";i:1;s:26:\"title_typography_font_size\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_ctf7\";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:\"source_section\";a:1:{s:7:\"ctf7_id\";i:1;}}}}}'),(9207,3036,'_wp_page_template','default'),(9208,3036,'_elementor_edit_mode','builder'),(9209,3036,'_elementor_template_type','wp-page'),(9210,3036,'_elementor_version','3.24.7'),(9211,3036,'_elementor_data','[{\"id\":\"253fe5b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"a2a8d03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c431857\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":515,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d10974f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dbae7b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2f7cb3c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":38,\"spread\":0,\"color\":\"rgba(6.9999999999999964, 0, 76, 0.23)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-108\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d8771\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1bbe0fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Feel free to contact us to solve any problem!\",\"sub_title\":\"Contact us\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"147d5ff\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\",\"ct_icon\":{\"value\":\"fas fa-store-alt\",\"library\":\"fa-solid\"},\"_id\":\"38e4334\",\"title\":\"Our head office address:\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/info-icon-01.png\",\"id\":279}},{\"content\":\"0968860386\",\"ct_icon\":{\"value\":\"fas fa-store-alt\",\"library\":\"fa-solid\"},\"_id\":\"f98cc4e\",\"title\":\"Call for help:\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/info-icon-02.png\",\"id\":280}},{\"content\":\"luutin.nmpco@gmail.com\",\"ct_icon\":{\"value\":\"fas fa-store-alt\",\"library\":\"fa-solid\"},\"title\":\"Mail us for information:\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/info-icon-03.png\",\"id\":281,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"b2b743e\"}],\"layout\":\"2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":true},{\"id\":\"c443a53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#EEF2F6\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b59c45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in touch!\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44b4987\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>If you have questions or want to learn more about our services, don\\u2019t hesitate to reach out. We\\u2019re here to help!<\\/p>\",\"text_color\":\"#636363\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"85609a1\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"91\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9212,3036,'_elementor_controls_usage','a:7:{s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:6:\"margin\";i:2;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:13:\"margin_mobile\";i:1;}}s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:15:\"stretch_section\";i:1;s:6:\"layout\";i:1;s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";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;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:11:\"css_classes\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:5:{s:5:\"title\";i:2;s:18:\"title_space_bottom\";i:2;s:27:\"title_typography_typography\";i:2;s:33:\"title_typography_font_size_tablet\";i:1;s:26:\"title_typography_font_size\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_ctf7\";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:\"source_section\";a:1:{s:7:\"ctf7_id\";i:1;}}}}}'),(9216,3037,'_wp_page_template','default'),(9217,3037,'_elementor_edit_mode','builder'),(9218,3037,'_elementor_template_type','wp-page'),(9219,3037,'_elementor_version','3.24.7'),(9220,3037,'_elementor_data','[{\"id\":\"253fe5b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"a2a8d03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c431857\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":515,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d10974f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dbae7b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2f7cb3c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":38,\"spread\":0,\"color\":\"rgba(6.9999999999999964, 0, 76, 0.23)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-108\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d8771\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1bbe0fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"H\\u00e3y tho\\u1ea3i m\\u00e1i li\\u00ean h\\u1ec7 v\\u1edbi ch\\u00fang t\\u00f4i \\u0111\\u1ec3 gi\\u1ea3i quy\\u1ebft m\\u1ecdi v\\u1ea5n \\u0111\\u1ec1!\",\"sub_title\":\"Contact us\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"147d5ff\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"S\\u1ed1 43, \\u0110\\u01b0\\u1eddng s\\u1ed1 4, Khu ph\\u1ed1 2, Ph\\u01b0\\u1eddng B\\u00ecnh Chi\\u1ec3u, Th\\u00e0nh ph\\u1ed1 Th\\u1ee7 \\u0110\\u1ee9c, TP. H\\u1ed3 Ch\\u00ed Minh\",\"ct_icon\":{\"value\":\"fas fa-store-alt\",\"library\":\"fa-solid\"},\"_id\":\"38e4334\",\"title\":\"\\u0110\\u1ecba ch\\u1ec9 v\\u0103n ph\\u00f2ng ch\\u00ednh c\\u1ee7a ch\\u00fang t\\u00f4i:\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/info-icon-01.png\",\"id\":279}},{\"content\":\"0968860386\",\"ct_icon\":{\"value\":\"fas fa-store-alt\",\"library\":\"fa-solid\"},\"_id\":\"f98cc4e\",\"title\":\"G\\u1ecdi \\u0111\\u1ec3 \\u0111\\u01b0\\u1ee3c gi\\u00fap \\u0111\\u1ee1:\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/info-icon-02.png\",\"id\":280}},{\"content\":\"luutin.nmpco@gmail.com\",\"ct_icon\":{\"value\":\"fas fa-store-alt\",\"library\":\"fa-solid\"},\"title\":\"G\\u1eedi email cho ch\\u00fang t\\u00f4i \\u0111\\u1ec3 bi\\u1ebft th\\u00eam th\\u00f4ng tin:\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/info-icon-03.png\",\"id\":281,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"b2b743e\"}],\"layout\":\"2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":true},{\"id\":\"c443a53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#EEF2F6\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b59c45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Li\\u00ean h\\u1ec7 v\\u1edbi ch\\u00fang t\\u00f4i!\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44b4987\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u1ebfu b\\u1ea1n c\\u00f3 c\\u00e2u h\\u1ecfi ho\\u1eb7c mu\\u1ed1n t\\u00ecm hi\\u1ec3u th\\u00eam v\\u1ec1 d\\u1ecbch v\\u1ee5 c\\u1ee7a ch\\u00fang t\\u00f4i, \\u0111\\u1eebng ng\\u1ea7n ng\\u1ea1i li\\u00ean h\\u1ec7. Ch\\u00fang t\\u00f4i lu\\u00f4n s\\u1eb5n s\\u00e0ng gi\\u00fap \\u0111\\u1ee1!<\\/p>\",\"text_color\":\"#636363\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"85609a1\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"91\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9221,3037,'_elementor_controls_usage','a:7:{s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:6:\"margin\";i:2;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:13:\"margin_mobile\";i:1;}}s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:15:\"stretch_section\";i:1;s:6:\"layout\";i:1;s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";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;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:11:\"css_classes\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:5:{s:5:\"title\";i:2;s:18:\"title_space_bottom\";i:2;s:27:\"title_typography_typography\";i:2;s:33:\"title_typography_font_size_tablet\";i:1;s:26:\"title_typography_font_size\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_ctf7\";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:\"source_section\";a:1:{s:7:\"ctf7_id\";i:1;}}}}}'),(9225,3033,'_yoast_wpseo_content_score','90'),(9227,3038,'_wp_page_template','default'),(9228,3038,'_elementor_edit_mode','builder'),(9229,3038,'_elementor_template_type','wp-page'),(9230,3038,'_elementor_version','3.24.7'),(9231,3038,'_elementor_data','[{\"id\":\"253fe5b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"a2a8d03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c431857\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":515,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d10974f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dbae7b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2f7cb3c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":38,\"spread\":0,\"color\":\"rgba(6.9999999999999964, 0, 76, 0.23)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-108\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d8771\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1bbe0fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u3069\\u3093\\u306a\\u554f\\u984c\\u3067\\u3082\\u89e3\\u6c7a\\u3059\\u308b\\u305f\\u3081\\u306b\\u3001\\u304a\\u6c17\\u8efd\\u306b\\u3054\\u9023\\u7d61\\u304f\\u3060\\u3055\\u3044\\uff01\",\"sub_title\":\"Contact us\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"147d5ff\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"\\u30db\\u30fc\\u30c1\\u30df\\u30f3\\u5e02\\u3001\\u30b9\\u30fc\\u30c9\\u30a5\\u30c3\\u30af\\u5e02\\u3001\\u30d3\\u30f3\\u30c1\\u30e5\\u30fc\\u533a\\u30012\\u533a\\u8857\\u90534\\u756a\\u573043\",\"ct_icon\":{\"value\":\"fas fa-store-alt\",\"library\":\"fa-solid\"},\"_id\":\"38e4334\",\"title\":\"\\u672c\\u793e\\u306e\\u4f4f\\u6240\\uff1a\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/info-icon-01.png\",\"id\":279}},{\"content\":\"0968860386\",\"ct_icon\":{\"value\":\"fas fa-store-alt\",\"library\":\"fa-solid\"},\"_id\":\"f98cc4e\",\"title\":\"\\u30b5\\u30dd\\u30fc\\u30c8\\u3092\\u547c\\u3076\\uff1a\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/info-icon-02.png\",\"id\":280}},{\"content\":\"luutin.nmpco@gmail.com\",\"ct_icon\":{\"value\":\"fas fa-store-alt\",\"library\":\"fa-solid\"},\"title\":\"\\u60c5\\u5831\\u306b\\u3064\\u3044\\u3066\\u306f\\u3001\\u79c1\\u305f\\u3061\\u306b\\u30e1\\u30fc\\u30eb\\u3057\\u3066\\u304f\\u3060\\u3055\\u3044\\uff1a\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/info-icon-03.png\",\"id\":281,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"b2b743e\"}],\"layout\":\"2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":true},{\"id\":\"c443a53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#EEF2F6\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b59c45\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u3054\\u9023\\u7d61\\u304f\\u3060\\u3055\\u3044\\uff01\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44b4987\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u8cea\\u554f\\u304c\\u3042\\u308b\\u5834\\u5408\\u3084\\u3001\\u79c1\\u305f\\u3061\\u306e\\u30b5\\u30fc\\u30d3\\u30b9\\u306b\\u3064\\u3044\\u3066\\u3082\\u3063\\u3068\\u77e5\\u308a\\u305f\\u3044\\u5834\\u5408\\u306f\\u3001\\u9060\\u616e\\u306a\\u304f\\u3054\\u9023\\u7d61\\u304f\\u3060\\u3055\\u3044\\u3002\\u304a\\u624b\\u4f1d\\u3044\\u3067\\u304d\\u308b\\u3053\\u3068\\u3092\\u697d\\u3057\\u307f\\u306b\\u3057\\u3066\\u3044\\u307e\\u3059\\uff01<\\/p>\",\"text_color\":\"#636363\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"85609a1\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"91\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9232,3038,'_elementor_controls_usage','a:7:{s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:6:\"margin\";i:2;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:13:\"margin_mobile\";i:1;}}s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:15:\"stretch_section\";i:1;s:6:\"layout\";i:1;s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";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;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:11:\"css_classes\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:5:{s:5:\"title\";i:2;s:18:\"title_space_bottom\";i:2;s:27:\"title_typography_typography\";i:2;s:33:\"title_typography_font_size_tablet\";i:1;s:26:\"title_typography_font_size\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_ctf7\";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:\"source_section\";a:1:{s:7:\"ctf7_id\";i:1;}}}}}'),(9236,3038,'custom_header',''),(9237,3038,'header_layout','1'),(9238,3038,'custom_pagetitle','themeoption'),(9239,3038,'custom_title',''),(9240,3038,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(9241,3038,'ptitle_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(9242,3038,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(9243,3038,'content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}'),(9244,3038,'show_sidebar_page',''),(9245,3038,'sidebar_page_pos','right'),(9246,3038,'custom_footer',''),(9247,3038,'footer_layout_custom',''),(9249,3038,'_edit_lock','1734419006:1'),(9250,3039,'_wp_page_template','default'),(9251,3039,'_elementor_edit_mode','builder'),(9252,3039,'_elementor_template_type','wp-page'),(9253,3039,'_elementor_version','3.24.7'),(9254,3039,'_elementor_data','[{\"id\":\"253fe5b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"a2a8d03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c431857\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":515,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d10974f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dbae7b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2f7cb3c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":38,\"spread\":0,\"color\":\"rgba(6.9999999999999964, 0, 76, 0.23)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-108\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d8771\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1bbe0fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Feel free to contact us to solve any problem!\",\"sub_title\":\"Contact us\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"147d5ff\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\",\"ct_icon\":{\"value\":\"fas fa-store-alt\",\"library\":\"fa-solid\"},\"_id\":\"38e4334\",\"title\":\"Our head office address:\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/info-icon-01.png\",\"id\":279}},{\"content\":\"0968860386\",\"ct_icon\":{\"value\":\"fas fa-store-alt\",\"library\":\"fa-solid\"},\"_id\":\"f98cc4e\",\"title\":\"Call for help:\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/info-icon-02.png\",\"id\":280}},{\"content\":\"luutin.nmpco@gmail.com\",\"ct_icon\":{\"value\":\"fas fa-store-alt\",\"library\":\"fa-solid\"},\"title\":\"Mail us for information:\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/info-icon-03.png\",\"id\":281,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"b2b743e\"}],\"layout\":\"2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":true},{\"id\":\"c443a53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#EEF2F6\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b59c45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in touch!\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44b4987\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>If you have questions or want to learn more about our services, don\\u2019t hesitate to reach out. We\\u2019re here to help!<\\/p>\",\"text_color\":\"#636363\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"85609a1\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"91\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9255,3039,'_elementor_controls_usage','a:7:{s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:6:\"margin\";i:2;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:13:\"margin_mobile\";i:1;}}s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:15:\"stretch_section\";i:1;s:6:\"layout\";i:1;s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";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;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:11:\"css_classes\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:5:{s:5:\"title\";i:2;s:18:\"title_space_bottom\";i:2;s:27:\"title_typography_typography\";i:2;s:33:\"title_typography_font_size_tablet\";i:1;s:26:\"title_typography_font_size\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_ctf7\";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:\"source_section\";a:1:{s:7:\"ctf7_id\";i:1;}}}}}'),(9259,3038,'_edit_last','1'),(9260,3038,'p_logo_dark','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(9261,3038,'p_logo_light','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(9262,3038,'h_custom_menu',''),(9263,3038,'_yoast_wpseo_estimated-reading-time-minutes','1'),(9264,3040,'_wp_page_template','default'),(9265,3040,'_elementor_edit_mode','builder'),(9266,3040,'_elementor_template_type','wp-page'),(9267,3040,'_elementor_version','3.24.7'),(9268,3040,'_elementor_data','[{\"id\":\"253fe5b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"a2a8d03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c431857\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":515,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d10974f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dbae7b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2f7cb3c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":38,\"spread\":0,\"color\":\"rgba(6.9999999999999964, 0, 76, 0.23)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-108\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d8771\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1bbe0fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Feel free to contact us to solve any problem!\",\"sub_title\":\"Contact us\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"147d5ff\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\",\"ct_icon\":{\"value\":\"fas fa-store-alt\",\"library\":\"fa-solid\"},\"_id\":\"38e4334\",\"title\":\"Our head office address:\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/info-icon-01.png\",\"id\":279}},{\"content\":\"0968860386\",\"ct_icon\":{\"value\":\"fas fa-store-alt\",\"library\":\"fa-solid\"},\"_id\":\"f98cc4e\",\"title\":\"Call for help:\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/info-icon-02.png\",\"id\":280}},{\"content\":\"luutin.nmpco@gmail.com\",\"ct_icon\":{\"value\":\"fas fa-store-alt\",\"library\":\"fa-solid\"},\"title\":\"Mail us for information:\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/info-icon-03.png\",\"id\":281,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"b2b743e\"}],\"layout\":\"2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":true},{\"id\":\"c443a53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#EEF2F6\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b59c45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in touch!\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44b4987\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>If you have questions or want to learn more about our services, don\\u2019t hesitate to reach out. We\\u2019re here to help!<\\/p>\",\"text_color\":\"#636363\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"85609a1\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"91\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9269,3040,'_elementor_controls_usage','a:7:{s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:6:\"margin\";i:2;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:13:\"margin_mobile\";i:1;}}s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:15:\"stretch_section\";i:1;s:6:\"layout\";i:1;s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";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;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:11:\"css_classes\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:5:{s:5:\"title\";i:2;s:18:\"title_space_bottom\";i:2;s:27:\"title_typography_typography\";i:2;s:33:\"title_typography_font_size_tablet\";i:1;s:26:\"title_typography_font_size\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_ctf7\";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:\"source_section\";a:1:{s:7:\"ctf7_id\";i:1;}}}}}'),(9273,3041,'_wp_page_template','default'),(9274,3041,'_elementor_edit_mode','builder'),(9275,3041,'_elementor_template_type','wp-page'),(9276,3041,'_elementor_version','3.24.7'),(9277,3041,'_elementor_data','[{\"id\":\"253fe5b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"a2a8d03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c431857\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":515,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d10974f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dbae7b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2f7cb3c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":38,\"spread\":0,\"color\":\"rgba(6.9999999999999964, 0, 76, 0.23)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-108\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d8771\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1bbe0fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Feel free to contact us to solve any problem!\",\"sub_title\":\"Contact us\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"147d5ff\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\",\"ct_icon\":{\"value\":\"fas fa-store-alt\",\"library\":\"fa-solid\"},\"_id\":\"38e4334\",\"title\":\"Our head office address:\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/info-icon-01.png\",\"id\":279}},{\"content\":\"0968860386\",\"ct_icon\":{\"value\":\"fas fa-store-alt\",\"library\":\"fa-solid\"},\"_id\":\"f98cc4e\",\"title\":\"Call for help:\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/info-icon-02.png\",\"id\":280}},{\"content\":\"luutin.nmpco@gmail.com\",\"ct_icon\":{\"value\":\"fas fa-store-alt\",\"library\":\"fa-solid\"},\"title\":\"Mail us for information:\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/info-icon-03.png\",\"id\":281,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"b2b743e\"}],\"layout\":\"2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":true},{\"id\":\"c443a53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#EEF2F6\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b59c45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in touch!\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44b4987\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>If you have questions or want to learn more about our services, don\\u2019t hesitate to reach out. We\\u2019re here to help!<\\/p>\",\"text_color\":\"#636363\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"85609a1\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"91\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9278,3041,'_elementor_controls_usage','a:7:{s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:6:\"margin\";i:2;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:13:\"margin_mobile\";i:1;}}s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:15:\"stretch_section\";i:1;s:6:\"layout\";i:1;s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";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;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:11:\"css_classes\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:5:{s:5:\"title\";i:2;s:18:\"title_space_bottom\";i:2;s:27:\"title_typography_typography\";i:2;s:33:\"title_typography_font_size_tablet\";i:1;s:26:\"title_typography_font_size\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_ctf7\";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:\"source_section\";a:1:{s:7:\"ctf7_id\";i:1;}}}}}'),(9282,3042,'_wp_page_template','default'),(9283,3042,'_elementor_edit_mode','builder'),(9284,3042,'_elementor_template_type','wp-page'),(9285,3042,'_elementor_version','3.24.7'),(9286,3042,'_elementor_data','[{\"id\":\"253fe5b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"a2a8d03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c431857\",\"elType\":\"widget\",\"settings\":{\"address\":\"43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":515,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d10974f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dbae7b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2f7cb3c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":38,\"spread\":0,\"color\":\"rgba(6.9999999999999964, 0, 76, 0.23)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-108\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c3d8771\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"70\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1bbe0fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u3069\\u3093\\u306a\\u554f\\u984c\\u3067\\u3082\\u89e3\\u6c7a\\u3059\\u308b\\u305f\\u3081\\u306b\\u3001\\u304a\\u6c17\\u8efd\\u306b\\u3054\\u9023\\u7d61\\u304f\\u3060\\u3055\\u3044\\uff01\",\"sub_title\":\"Contact us\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"147d5ff\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"\\u30db\\u30fc\\u30c1\\u30df\\u30f3\\u5e02\\u3001\\u30b9\\u30fc\\u30c9\\u30a5\\u30c3\\u30af\\u5e02\\u3001\\u30d3\\u30f3\\u30c1\\u30e5\\u30fc\\u533a\\u30012\\u533a\\u8857\\u90534\\u756a\\u573043\",\"ct_icon\":{\"value\":\"fas fa-store-alt\",\"library\":\"fa-solid\"},\"_id\":\"38e4334\",\"title\":\"\\u672c\\u793e\\u306e\\u4f4f\\u6240\\uff1a\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/info-icon-01.png\",\"id\":279}},{\"content\":\"0968860386\",\"ct_icon\":{\"value\":\"fas fa-store-alt\",\"library\":\"fa-solid\"},\"_id\":\"f98cc4e\",\"title\":\"\\u30b5\\u30dd\\u30fc\\u30c8\\u3092\\u547c\\u3076\\uff1a\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/info-icon-02.png\",\"id\":280}},{\"content\":\"luutin.nmpco@gmail.com\",\"ct_icon\":{\"value\":\"fas fa-store-alt\",\"library\":\"fa-solid\"},\"title\":\"\\u60c5\\u5831\\u306b\\u3064\\u3044\\u3066\\u306f\\u3001\\u79c1\\u305f\\u3061\\u306b\\u30e1\\u30fc\\u30eb\\u3057\\u3066\\u304f\\u3060\\u3055\\u3044\\uff1a\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/info-icon-03.png\",\"id\":281,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"b2b743e\"}],\"layout\":\"2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":true},{\"id\":\"c443a53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#EEF2F6\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b59c45\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u3054\\u9023\\u7d61\\u304f\\u3060\\u3055\\u3044\\uff01\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44b4987\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u8cea\\u554f\\u304c\\u3042\\u308b\\u5834\\u5408\\u3084\\u3001\\u79c1\\u305f\\u3061\\u306e\\u30b5\\u30fc\\u30d3\\u30b9\\u306b\\u3064\\u3044\\u3066\\u3082\\u3063\\u3068\\u77e5\\u308a\\u305f\\u3044\\u5834\\u5408\\u306f\\u3001\\u9060\\u616e\\u306a\\u304f\\u3054\\u9023\\u7d61\\u304f\\u3060\\u3055\\u3044\\u3002\\u304a\\u624b\\u4f1d\\u3044\\u3067\\u304d\\u308b\\u3053\\u3068\\u3092\\u697d\\u3057\\u307f\\u306b\\u3057\\u3066\\u3044\\u307e\\u3059\\uff01<\\/p>\",\"text_color\":\"#636363\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"85609a1\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"91\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9287,3042,'_elementor_controls_usage','a:7:{s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:6:\"margin\";i:2;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:13:\"margin_mobile\";i:1;}}s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:15:\"stretch_section\";i:1;s:6:\"layout\";i:1;s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";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;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:11:\"css_classes\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:5:{s:5:\"title\";i:2;s:18:\"title_space_bottom\";i:2;s:27:\"title_typography_typography\";i:2;s:33:\"title_typography_font_size_tablet\";i:1;s:26:\"title_typography_font_size\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_ctf7\";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:\"source_section\";a:1:{s:7:\"ctf7_id\";i:1;}}}}}'),(9291,3038,'_yoast_wpseo_content_score','90'),(9293,3043,'_thumbnail_id','2657'),(9294,3043,'_wp_page_template','default'),(9295,3043,'service_icon',''),(9296,3043,'service_except',''),(9297,3043,'service_content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(9299,3043,'_edit_last','1'),(9300,3043,'_edit_lock','1734419738:1'),(9301,3043,'_yoast_wpseo_primary_service-category',''),(9302,3043,'_yoast_wpseo_content_score','90'),(9303,3043,'_yoast_wpseo_estimated-reading-time-minutes','1'),(9304,3045,'_thumbnail_id','2657'),(9305,3045,'_wp_page_template','default'),(9306,3045,'service_icon',''),(9307,3045,'service_except',''),(9308,3045,'service_content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(9310,3045,'_edit_last','1'),(9311,3045,'_edit_lock','1734419743:1'),(9312,3045,'_yoast_wpseo_primary_service-category',''),(9313,3045,'_yoast_wpseo_content_score','90'),(9314,3045,'_yoast_wpseo_estimated-reading-time-minutes','1'),(9340,3047,'_thumbnail_id','2661'),(9341,3047,'_wp_page_template','default'),(9342,3047,'service_icon',''),(9343,3047,'service_except',''),(9344,3047,'service_content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(9346,3047,'_edit_last','1'),(9347,3047,'_edit_lock','1734419723:1'),(9348,3047,'_yoast_wpseo_primary_service-category',''),(9349,3047,'_yoast_wpseo_content_score','90'),(9350,3047,'_yoast_wpseo_estimated-reading-time-minutes','1'),(9363,3051,'_thumbnail_id','2661'),(9364,3051,'_wp_page_template','default'),(9365,3051,'service_icon',''),(9366,3051,'service_except',''),(9367,3051,'service_content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(9369,3051,'_edit_last','1'),(9370,3051,'_edit_lock','1734419568:1'),(9371,3051,'_yoast_wpseo_primary_service-category','50'),(9372,3051,'_yoast_wpseo_estimated-reading-time-minutes','1'),(9373,3047,'rs_page_bg_color',''),(9374,3043,'rs_page_bg_color',''),(9375,3045,'rs_page_bg_color',''),(9376,3053,'_thumbnail_id','2655'),(9377,3053,'_wp_page_template','default'),(9378,3053,'service_icon',''),(9379,3053,'service_except',''),(9380,3053,'service_content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(9382,3053,'_edit_last','1'),(9383,3053,'_edit_lock','1734419889:1'),(9384,3053,'_yoast_wpseo_primary_service-category','50'),(9385,3053,'_yoast_wpseo_content_score','90'),(9386,3053,'_yoast_wpseo_estimated-reading-time-minutes','3'),(9387,3055,'_thumbnail_id','2655'),(9388,3055,'_wp_page_template','default'),(9389,3055,'service_icon',''),(9390,3055,'service_except',''),(9391,3055,'service_content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(9392,3055,'_edit_last','1'),(9393,3055,'_edit_lock','1734419916:1'),(9394,3055,'_yoast_wpseo_primary_service-category','50'),(9395,3055,'_yoast_wpseo_estimated-reading-time-minutes','1'),(9396,3057,'_thumbnail_id','2656'),(9397,3057,'_wp_page_template','default'),(9398,3057,'service_icon',''),(9399,3057,'service_except',''),(9400,3057,'service_content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(9402,3057,'_edit_last','1'),(9403,3057,'_edit_lock','1734420006:1'),(9404,3057,'_yoast_wpseo_primary_service-category','47'),(9405,3057,'_yoast_wpseo_content_score','90'),(9406,3057,'_yoast_wpseo_estimated-reading-time-minutes','1'),(9407,3059,'_thumbnail_id','2656'),(9408,3059,'_wp_page_template','default'),(9409,3059,'service_icon',''),(9410,3059,'service_except',''),(9411,3059,'service_content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(9412,3059,'_edit_last','1'),(9413,3059,'_edit_lock','1734420034:1'),(9414,3059,'_yoast_wpseo_primary_service-category','47'),(9415,3059,'_yoast_wpseo_estimated-reading-time-minutes','2'),(9416,3061,'_thumbnail_id','2659'),(9417,3061,'_wp_page_template','default'),(9418,3061,'service_icon',''),(9419,3061,'service_except',''),(9420,3061,'service_content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(9422,3061,'_edit_last','1'),(9423,3061,'_edit_lock','1734420505:1'),(9424,3061,'_yoast_wpseo_primary_service-category','51'),(9425,3061,'_yoast_wpseo_content_score','90'),(9426,3061,'_yoast_wpseo_estimated-reading-time-minutes','1'),(9427,3063,'_thumbnail_id','2659'),(9428,3063,'_wp_page_template','default'),(9429,3063,'service_icon',''),(9430,3063,'service_except',''),(9431,3063,'service_content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(9432,3063,'_edit_last','1'),(9433,3063,'_edit_lock','1734420555:1'),(9434,3063,'_yoast_wpseo_primary_service-category','51'),(9435,3063,'_yoast_wpseo_content_score','90'),(9436,3063,'_yoast_wpseo_estimated-reading-time-minutes','3'),(9437,3066,'_thumbnail_id','2660'),(9438,3066,'_wp_page_template','default'),(9439,3066,'service_icon',''),(9440,3066,'service_except',''),(9441,3066,'service_content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(9443,3066,'_edit_last','1'),(9444,3066,'_edit_lock','1734420669:1'),(9445,3066,'_yoast_wpseo_primary_service-category','52'),(9446,3066,'_yoast_wpseo_content_score','90'),(9447,3066,'_yoast_wpseo_estimated-reading-time-minutes','1'),(9448,3068,'_thumbnail_id','2660'),(9449,3068,'_wp_page_template','default'),(9450,3068,'service_icon',''),(9451,3068,'service_except',''),(9452,3068,'service_content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(9453,3068,'_edit_last','1'),(9454,3068,'_edit_lock','1734420702:1'),(9455,3068,'_yoast_wpseo_primary_service-category','52'),(9456,3068,'_yoast_wpseo_estimated-reading-time-minutes','4'),(9457,3070,'_thumbnail_id','2658'),(9458,3070,'_wp_page_template','default'),(9459,3070,'service_icon',''),(9460,3070,'service_except',''),(9461,3070,'service_content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(9463,3070,'_edit_last','1'),(9464,3070,'_edit_lock','1734420777:1'),(9465,3070,'_yoast_wpseo_primary_service-category','52'),(9466,3070,'_yoast_wpseo_content_score','90'),(9467,3070,'_yoast_wpseo_estimated-reading-time-minutes','1'),(9468,3072,'_thumbnail_id','2658'),(9469,3072,'_wp_page_template','default'),(9470,3072,'service_icon',''),(9471,3072,'service_except',''),(9472,3072,'service_content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(9473,3072,'_edit_last','1'),(9474,3072,'_edit_lock','1734420799:1'),(9475,3072,'_yoast_wpseo_primary_service-category','52'),(9476,3072,'_yoast_wpseo_content_score','90'),(9477,3072,'_yoast_wpseo_estimated-reading-time-minutes','1'),(9478,3074,'_thumbnail_id','2654'),(9479,3074,'_wp_page_template','default'),(9480,3074,'service_icon',''),(9481,3074,'service_except',''),(9482,3074,'service_content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(9484,3074,'_edit_last','1'),(9485,3074,'_edit_lock','1734420886:1'),(9486,3074,'_yoast_wpseo_primary_service-category','53'),(9487,3074,'_yoast_wpseo_content_score','90'),(9488,3074,'_yoast_wpseo_estimated-reading-time-minutes','1'),(9489,3076,'_thumbnail_id','2654'),(9490,3076,'_wp_page_template','default'),(9491,3076,'service_icon',''),(9492,3076,'service_except',''),(9493,3076,'service_content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(9494,3076,'_edit_last','1'),(9495,3076,'_edit_lock','1734420925:1'),(9496,3076,'_yoast_wpseo_primary_service-category','53'),(9497,3076,'_yoast_wpseo_content_score','90'),(9498,3076,'_yoast_wpseo_estimated-reading-time-minutes','1'),(9499,3078,'_menu_item_type','post_type'),(9500,3078,'_menu_item_menu_item_parent','0'),(9501,3078,'_menu_item_object_id','2973'),(9502,3078,'_menu_item_object','page'),(9503,3078,'_menu_item_target',''),(9504,3078,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9505,3078,'_menu_item_xfn',''),(9506,3078,'_menu_item_url',''),(9517,3080,'_menu_item_type','post_type'),(9518,3080,'_menu_item_menu_item_parent','0'),(9519,3080,'_menu_item_object_id','2998'),(9520,3080,'_menu_item_object','page'),(9521,3080,'_menu_item_target',''),(9522,3080,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9523,3080,'_menu_item_xfn',''),(9524,3080,'_menu_item_url',''),(9526,3081,'_menu_item_type','post_type'),(9527,3081,'_menu_item_menu_item_parent','0'),(9528,3081,'_menu_item_object_id','3022'),(9529,3081,'_menu_item_object','page'),(9530,3081,'_menu_item_target',''),(9531,3081,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9532,3081,'_menu_item_xfn',''),(9533,3081,'_menu_item_url',''),(9535,3082,'_menu_item_type','post_type'),(9536,3082,'_menu_item_menu_item_parent','0'),(9537,3082,'_menu_item_object_id','3008'),(9538,3082,'_menu_item_object','page'),(9539,3082,'_menu_item_target',''),(9540,3082,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9541,3082,'_menu_item_xfn',''),(9542,3082,'_menu_item_url',''),(9544,3083,'_menu_item_type','post_type'),(9545,3083,'_menu_item_menu_item_parent','0'),(9546,3083,'_menu_item_object_id','2987'),(9547,3083,'_menu_item_object','page'),(9548,3083,'_menu_item_target',''),(9549,3083,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9550,3083,'_menu_item_xfn',''),(9551,3083,'_menu_item_url',''),(9553,3084,'_menu_item_type','custom'),(9554,3084,'_menu_item_menu_item_parent','0'),(9555,3084,'_menu_item_object_id','3084'),(9556,3084,'_menu_item_object','custom'),(9557,3084,'_menu_item_target',''),(9558,3084,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9559,3084,'_menu_item_xfn',''),(9560,3084,'_menu_item_url','#pll_switcher'),(9562,3078,'_menu_item_ct_megaprofile','0'),(9563,3078,'_menu_item_ct_icon',''),(9564,3078,'_menu_item_ct_onepage','no-one-page'),(9565,3078,'_menu_item_ct_onepage_offset',''),(9566,3078,'_menu_item_ct_custom_class',''),(9567,3078,'_menu_item_ct_menu_marker',''),(9568,3080,'_menu_item_ct_megaprofile','0'),(9569,3080,'_menu_item_ct_icon',''),(9570,3080,'_menu_item_ct_onepage','no-one-page'),(9571,3080,'_menu_item_ct_onepage_offset',''),(9572,3080,'_menu_item_ct_custom_class',''),(9573,3080,'_menu_item_ct_menu_marker',''),(9574,3083,'_menu_item_ct_megaprofile','0'),(9575,3083,'_menu_item_ct_icon',''),(9576,3083,'_menu_item_ct_onepage','no-one-page'),(9577,3083,'_menu_item_ct_onepage_offset',''),(9578,3083,'_menu_item_ct_custom_class',''),(9579,3083,'_menu_item_ct_menu_marker',''),(9580,3082,'_menu_item_ct_megaprofile','0'),(9581,3082,'_menu_item_ct_icon',''),(9582,3082,'_menu_item_ct_onepage','no-one-page'),(9583,3082,'_menu_item_ct_onepage_offset',''),(9584,3082,'_menu_item_ct_custom_class',''),(9585,3082,'_menu_item_ct_menu_marker',''),(9586,3081,'_menu_item_ct_megaprofile','0'),(9587,3081,'_menu_item_ct_icon',''),(9588,3081,'_menu_item_ct_onepage','no-one-page'),(9589,3081,'_menu_item_ct_onepage_offset',''),(9590,3081,'_menu_item_ct_custom_class',''),(9591,3081,'_menu_item_ct_menu_marker',''),(9592,3084,'_pll_menu_item','a:6:{s:22:\"hide_if_no_translation\";i:1;s:12:\"hide_current\";i:1;s:10:\"force_home\";i:0;s:10:\"show_flags\";i:1;s:10:\"show_names\";i:1;s:8:\"dropdown\";i:1;}'),(9594,3085,'_menu_item_type','post_type'),(9595,3085,'_menu_item_menu_item_parent','0'),(9596,3085,'_menu_item_object_id','2982'),(9597,3085,'_menu_item_object','page'),(9598,3085,'_menu_item_target',''),(9599,3085,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9600,3085,'_menu_item_xfn',''),(9601,3085,'_menu_item_url',''),(9603,3086,'_menu_item_type','post_type'),(9604,3086,'_menu_item_menu_item_parent','0'),(9605,3086,'_menu_item_object_id','3028'),(9606,3086,'_menu_item_object','page'),(9607,3086,'_menu_item_target',''),(9608,3086,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9609,3086,'_menu_item_xfn',''),(9610,3086,'_menu_item_url',''),(9612,3087,'_menu_item_type','post_type'),(9613,3087,'_menu_item_menu_item_parent','0'),(9614,3087,'_menu_item_object_id','3014'),(9615,3087,'_menu_item_object','page'),(9616,3087,'_menu_item_target',''),(9617,3087,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9618,3087,'_menu_item_xfn',''),(9619,3087,'_menu_item_url',''),(9621,3088,'_menu_item_type','post_type'),(9622,3088,'_menu_item_menu_item_parent','0'),(9623,3088,'_menu_item_object_id','3003'),(9624,3088,'_menu_item_object','page'),(9625,3088,'_menu_item_target',''),(9626,3088,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9627,3088,'_menu_item_xfn',''),(9628,3088,'_menu_item_url',''),(9630,3089,'_menu_item_type','post_type'),(9631,3089,'_menu_item_menu_item_parent','0'),(9632,3089,'_menu_item_object_id','2993'),(9633,3089,'_menu_item_object','page'),(9634,3089,'_menu_item_target',''),(9635,3089,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9636,3089,'_menu_item_xfn',''),(9637,3089,'_menu_item_url',''),(9639,3090,'_menu_item_type','custom'),(9640,3090,'_menu_item_menu_item_parent','0'),(9641,3090,'_menu_item_object_id','3090'),(9642,3090,'_menu_item_object','custom'),(9643,3090,'_menu_item_target',''),(9644,3090,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9645,3090,'_menu_item_xfn',''),(9646,3090,'_menu_item_url','#pll_switcher'),(9648,3085,'_menu_item_ct_megaprofile','0'),(9649,3085,'_menu_item_ct_icon',''),(9650,3085,'_menu_item_ct_onepage','no-one-page'),(9651,3085,'_menu_item_ct_onepage_offset',''),(9652,3085,'_menu_item_ct_custom_class',''),(9653,3085,'_menu_item_ct_menu_marker',''),(9654,3088,'_menu_item_ct_megaprofile','0'),(9655,3088,'_menu_item_ct_icon',''),(9656,3088,'_menu_item_ct_onepage','no-one-page'),(9657,3088,'_menu_item_ct_onepage_offset',''),(9658,3088,'_menu_item_ct_custom_class',''),(9659,3088,'_menu_item_ct_menu_marker',''),(9660,3089,'_menu_item_ct_megaprofile','0'),(9661,3089,'_menu_item_ct_icon',''),(9662,3089,'_menu_item_ct_onepage','no-one-page'),(9663,3089,'_menu_item_ct_onepage_offset',''),(9664,3089,'_menu_item_ct_custom_class',''),(9665,3089,'_menu_item_ct_menu_marker',''),(9666,3087,'_menu_item_ct_megaprofile','0'),(9667,3087,'_menu_item_ct_icon',''),(9668,3087,'_menu_item_ct_onepage','no-one-page'),(9669,3087,'_menu_item_ct_onepage_offset',''),(9670,3087,'_menu_item_ct_custom_class',''),(9671,3087,'_menu_item_ct_menu_marker',''),(9672,3086,'_menu_item_ct_megaprofile','0'),(9673,3086,'_menu_item_ct_icon',''),(9674,3086,'_menu_item_ct_onepage','no-one-page'),(9675,3086,'_menu_item_ct_onepage_offset',''),(9676,3086,'_menu_item_ct_custom_class',''),(9677,3086,'_menu_item_ct_menu_marker',''),(9678,3090,'_pll_menu_item','a:6:{s:22:\"hide_if_no_translation\";i:1;s:12:\"hide_current\";i:1;s:10:\"force_home\";i:0;s:10:\"show_flags\";i:1;s:10:\"show_names\";i:1;s:8:\"dropdown\";i:1;}'),(9679,3091,'_elementor_edit_mode','builder'),(9680,3091,'_elementor_template_type','wp-page'),(9681,3091,'_elementor_version','3.24.7'),(9682,3091,'_wp_page_template','default'),(9683,3091,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u3001\\u30d9\\u30c8\\u30ca\\u30e0\\u5168\\u571f\\u304a\\u3088\\u3073\\u4e16\\u754c\\u4e2d\\u306e\\u6a5f\\u68b0\\u7523\\u696d\\u5411\\u3051\\u306b\\u5e45\\u5e83\\u3044\\u88fd\\u54c1\\u3092\\u63d0\\u4f9b\\u3057\\u3066\\u304a\\u308a\\u3001\\u7279\\u306b\\u65e5\\u672c\\u3001\\u97d3\\u56fd\\u3001\\u30a2\\u30e1\\u30ea\\u30ab\\u3001\\u30aa\\u30fc\\u30b9\\u30c8\\u30e9\\u30ea\\u30a2\\u3068\\u3044\\u3063\\u305f\\u4e3b\\u8981\\u5e02\\u5834\\u3067\\u306e\\u53d6\\u5f15\\u306b\\u529b\\u3092\\u5165\\u308c\\u3066\\u3044\\u307e\\u3059\\u3002\\u307e\\u305f\\u3001\\u3053\\u308c\\u3089\\u306e\\u5e02\\u5834\\u3078\\u306e\\u8f38\\u51fa\\u7d4c\\u9a13\\u3082\\u8c4a\\u5bcc\\u3067\\u3059\\u3002\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306e\\u6700\\u5927\\u306e\\u5f37\\u307f\\u306f\\u3001\\u5b66\\u3076\\u3053\\u3068\\u3001\\u9769\\u65b0\\u3059\\u308b\\u3053\\u3068\\u306b\\u60c5\\u71b1\\u3092\\u6301\\u3061\\u3001\\u81ea\\u4fe1\\u3092\\u6301\\u3063\\u305f\\u82e5\\u3044\\u52b4\\u50cd\\u529b\\u306b\\u3042\\u308a\\u307e\\u3059\\u3002\\u3053\\u306e\\u30c1\\u30fc\\u30e0\\u306f\\u3001\\u5e38\\u306b\\u5b89\\u5b9a\\u3057\\u305f\\u9ad8\\u54c1\\u8cea\\u306e\\u6a5f\\u68b0\\u88fd\\u54c1\\u3092\\u591a\\u69d8\\u306b\\u88fd\\u9020\\u3059\\u308b\\u80fd\\u529b\\u3092\\u5099\\u3048\\u3066\\u3044\\u307e\\u3059\\u3002<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=oVQ4_PIqgz8\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"\\u9867\\u5ba2\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"\\u4eba\\u4e8b\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"\\u5e74\\u9593\\u6ce8\\u6587\\u6570\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306f\\u3001\\u4e16\\u754c\\u4e2d\\u304b\\u3089\\u306e\\u6ce8\\u6587\\u3068\\u63a5\\u7d9a\\u3059\\u308b\\u305f\\u3081\\u306bAlibaba\\u306b\\u5e97\\u8217\\u3092\\u958b\\u8a2d\\u3057\\u59cb\\u3081\\u307e\\u3057\\u305f\\u3002<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0e89391\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u30012030\\u5e74\\u307e\\u3067\\u306b\\u30d9\\u30c8\\u30ca\\u30e0\\u306e\\u4e3b\\u8981\\u306a\\u6a5f\\u68b0\\u52a0\\u5de5\\u4f01\\u696d\\u306e\\u4e00\\u3064\\u3068\\u3057\\u3066\\u3001\\u56fd\\u969b\\u5e02\\u5834\\u306b\\u4f9b\\u7d66\\u3059\\u308b\\u3053\\u3068\\u3092\\u76ee\\u6307\\u3057\\u3066\\u3044\\u307e\\u3059\\u3002\\u5c06\\u6765\\u7684\\u306b\\u306f\\u3001\\u5b8c\\u6210\\u3057\\u305f\\u6a5f\\u68b0\\u88fd\\u54c1\\u3092\\u76f4\\u63a5\\u30a8\\u30f3\\u30c9\\u30e6\\u30fc\\u30b6\\u30fc\\u306b\\u63d0\\u4f9b\\u3059\\u308b\\u3053\\u3068\\u3092\\u76ee\\u6a19\\u3068\\u3057\\u3066\\u3044\\u307e\\u3059\\u3002\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2026\\u5e74\\u307e\\u3067\\u306b\\u9054\\u6210\\u3059\\u308b\\u76ee\\u6a19:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"\\u6771\\u30a2\\u30b8\\u30a2\\uff08\\u65e5\\u672c\\u3001\\u97d3\\u56fd\\u306a\\u3069\\uff09\\uff1a\\u4ea4\\u63db\\u7528\\u6a5f\\u68b0\\u90e8\\u54c1\\u3001\\u30aa\\u30fc\\u30c8\\u30d0\\u30a4\\u304a\\u3088\\u3073\\u81ea\\u52d5\\u8eca\\u306e\\u30a2\\u30af\\u30bb\\u30b5\\u30ea\\u30fc\\u3001\\u6c34\\u7523\\u696d\\u7528\\u306e\\u30d5\\u30a3\\u30c3\\u30c6\\u30a3\\u30f3\\u30b0\\u3001\\u91d1\\u578b\\u3001\\u305d\\u306e\\u4ed6\\u306e\\u6a5f\\u68b0\\u90e8\\u54c1\\u306e\\u8f38\\u51fa\\u3002\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"\\u30e8\\u30fc\\u30ed\\u30c3\\u30d1\\uff08\\u30c9\\u30a4\\u30c4\\u3001\\u30d6\\u30eb\\u30ac\\u30ea\\u30a2\\u3001\\u30aa\\u30e9\\u30f3\\u30c0\\u306a\\u3069\\uff09\\uff1a\\u81ea\\u52d5\\u8eca\\u7528\\u30d9\\u30a2\\u30ea\\u30f3\\u30b0\\u306e\\u6cbb\\u5177\\u304a\\u3088\\u3073\\u81ea\\u52d5\\u5316\\u6a5f\\u68b0\\u306e\\u96fb\\u6c17\\u30dc\\u30c3\\u30af\\u30b9\\u90e8\\u54c1\\u306e\\u751f\\u7523\\u3002\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"\\u30a2\\u30e1\\u30ea\\u30ab\\u5408\\u8846\\u56fd\\uff1a\\u533b\\u7642\\u6a5f\\u5668\\u3001\\u5149\\u5b66\\u6a5f\\u5668\\u3001\\u97f3\\u97ff\\u6a5f\\u5668\\u306b\\u95a2\\u9023\\u3059\\u308b\\u88fd\\u54c1\\u3002\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"\\u30aa\\u30fc\\u30b9\\u30c8\\u30e9\\u30ea\\u30a2\\uff1a\\u677f\\u91d1\\u88fd\\u54c1\\u3002\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"\\u30d9\\u30c8\\u30ca\\u30e0\\uff1a\\u5c0f\\u578b\\u81ea\\u52d5\\u5316\\u6a5f\\u68b0\\u3001\\u30aa\\u30fc\\u30c8\\u30d0\\u30a4\\u304a\\u3088\\u3073\\u81ea\\u52d5\\u8eca\\u306e\\u30dc\\u30eb\\u30c8\\u3001\\u77f3\\u6cb9\\u304a\\u3088\\u3073\\u30ac\\u30b9\\u7523\\u696d\\u306e\\u88fd\\u54c1\\u3002\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"\\u305d\\u306e\\u4ed6\\u306e\\u5e02\\u5834\\u3068\\u88fd\\u54c1\\u3002\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u8907\\u6570\\u306e\\u696d\\u754c\\u3067\\u30b5\\u30fc\\u30d3\\u30b9\\u3092\\u63d0\\u4f9b\\u3057\\u3066\\u3044\\u307e\\u3059\\u3002\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306f\\u5e38\\u306b\\u9867\\u5ba2\\u306e\\u30c7\\u30b6\\u30a4\\u30f3\\u8981\\u6c42\\u3092\\u6e80\\u305f\\u3057\\u307e\\u3059\\u3002\\u5916\\u89b3\\u3068\\u5bf8\\u6cd5\\u306f\\u3001\\u6700\\u3082\\u91cd\\u8981\\u8996\\u3057\\u3066\\u3044\\u308b\\u8981\\u7d20\\u3067\\u3059\\u3002<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"cnc-machining-services|service-category\",\"material-forming-services|service-category\"],\"ct_animate\":\"wow fadeInUp\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"\\u8cea\\u554f\\u304c\\u3042\\u308a\\u307e\\u3059\\u304b\\uff1f\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"\\u898b\\u7a4d\\u3082\\u308a\\u3092\\u53d6\\u5f97\\u3059\\u308b\\u305f\\u3081\\u306e\\u9023\\u7d61\\u5148\\uff1a\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u7c21\\u5358\\u306a\\u4f5c\\u696d\\u624b\\u9806\\u3092\\u6301\\u3063\\u3066\\u3044\\u307e\\u3059\\u3002\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306f\\u5e38\\u306b\\u54c1\\u8cea\\u3068\\u9032\\u6357\\u306b\\u304a\\u3044\\u3066\\u5b89\\u5fc3\\u611f\\u3092\\u63d0\\u4f9b\\u3057\\u307e\\u3059\\u3002<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"\\u79c1\\u305f\\u3061\\u3092\\u63a2\\u3059\",\"description\":\"\\u79c1\\u305f\\u3061\\u306f\\u3001\\u5404\\u30d7\\u30ed\\u30b8\\u30a7\\u30af\\u30c8\\u3092\\u7dcf\\u5408\\u7684\\u306b\\u53d6\\u308a\\u6271\\u3046\\u91cd\\u8981\\u6027\\u3092\\u7406\\u89e3\\u3057\\u3066\\u3044\\u307e\\u3059\\u3002\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"\\u79c1\\u305f\\u3061\\u3068\\u63a5\\u7d9a\\u3059\\u308b\",\"description\":\"\\u79c1\\u305f\\u3061\\u304c\\u4ed6\\u306e\\u30a8\\u30fc\\u30b8\\u30a7\\u30f3\\u30b7\\u30fc\\u3068\\u7570\\u306a\\u308b\\u70b9\\u306f\\u3001\\u30ab\\u30b9\\u30bf\\u30de\\u30a4\\u30ba\\u3055\\u308c\\u305f\\u30bd\\u30ea\\u30e5\\u30fc\\u30b7\\u30e7\\u30f3\\u3092\\u4f5c\\u6210\\u3059\\u308b\\u5c02\\u9580\\u77e5\\u8b58\\u306b\\u3042\\u308a\\u307e\\u3059\\u3002\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"\\u79c1\\u305f\\u3061\\u306b\\u652f\\u6255\\u3046\",\"description\":\"\\u79c1\\u305f\\u3061\\u306f\\u3001\\u5404\\u30c1\\u30fc\\u30e0\\u30e1\\u30f3\\u30d0\\u30fc\\u304c\\u81ea\\u5206\\u81ea\\u8eab\\u306e\\u6700\\u9ad8\\u306e\\u59ff\\u3092\\u76ee\\u6307\\u3059\\u3053\\u3068\\u3092\\u5968\\u52b1\\u3057\\u3001\\u67d4\\u8edf\\u3067\\u5354\\u529b\\u7684\\u306a\\u74b0\\u5883\\u3092\\u80b2\\u3093\\u3067\\u3044\\u307e\\u3059\\u3002\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"\\u3042\\u306a\\u305f\\u306e\\u5922\\u3092\\u5b9f\\u73fe\\u3059\\u308b\",\"description\":\"\\u3069\\u306e\\u30d3\\u30b8\\u30cd\\u30b9\\u306b\\u3082\\u3001\\u9769\\u65b0\\u3068\\u9032\\u6b69\\u3092\\u4fc3\\u3059\\u72ec\\u81ea\\u306e\\u30bd\\u30ea\\u30e5\\u30fc\\u30b7\\u30e7\\u30f3\\u304c\\u3042\\u308a\\u307e\\u3059\\u3002\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u3044\\u3064\\u3067\\u3082\\u3069\\u3093\\u306a\\u52a9\\u3051\\u304c\\u5fc5\\u8981\\u306a\\u5834\\u5408\\u3067\\u3082\\u3001\\u79c1\\u305f\\u3061\\u306b\\u3054\\u9023\\u7d61\\u304f\\u3060\\u3055\\u3044...\",\"title_color\":\"#85B23B\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9684,3091,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(9688,3092,'_elementor_edit_mode','builder'),(9689,3092,'_elementor_template_type','wp-page'),(9690,3092,'_elementor_version','3.24.7'),(9691,3092,'_wp_page_template','default'),(9692,3092,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u3001\\u30d9\\u30c8\\u30ca\\u30e0\\u5168\\u571f\\u304a\\u3088\\u3073\\u4e16\\u754c\\u4e2d\\u306e\\u6a5f\\u68b0\\u7523\\u696d\\u5411\\u3051\\u306b\\u5e45\\u5e83\\u3044\\u88fd\\u54c1\\u3092\\u63d0\\u4f9b\\u3057\\u3066\\u304a\\u308a\\u3001\\u7279\\u306b\\u65e5\\u672c\\u3001\\u97d3\\u56fd\\u3001\\u30a2\\u30e1\\u30ea\\u30ab\\u3001\\u30aa\\u30fc\\u30b9\\u30c8\\u30e9\\u30ea\\u30a2\\u3068\\u3044\\u3063\\u305f\\u4e3b\\u8981\\u5e02\\u5834\\u3067\\u306e\\u53d6\\u5f15\\u306b\\u529b\\u3092\\u5165\\u308c\\u3066\\u3044\\u307e\\u3059\\u3002\\u307e\\u305f\\u3001\\u3053\\u308c\\u3089\\u306e\\u5e02\\u5834\\u3078\\u306e\\u8f38\\u51fa\\u7d4c\\u9a13\\u3082\\u8c4a\\u5bcc\\u3067\\u3059\\u3002\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306e\\u6700\\u5927\\u306e\\u5f37\\u307f\\u306f\\u3001\\u5b66\\u3076\\u3053\\u3068\\u3001\\u9769\\u65b0\\u3059\\u308b\\u3053\\u3068\\u306b\\u60c5\\u71b1\\u3092\\u6301\\u3061\\u3001\\u81ea\\u4fe1\\u3092\\u6301\\u3063\\u305f\\u82e5\\u3044\\u52b4\\u50cd\\u529b\\u306b\\u3042\\u308a\\u307e\\u3059\\u3002\\u3053\\u306e\\u30c1\\u30fc\\u30e0\\u306f\\u3001\\u5e38\\u306b\\u5b89\\u5b9a\\u3057\\u305f\\u9ad8\\u54c1\\u8cea\\u306e\\u6a5f\\u68b0\\u88fd\\u54c1\\u3092\\u591a\\u69d8\\u306b\\u88fd\\u9020\\u3059\\u308b\\u80fd\\u529b\\u3092\\u5099\\u3048\\u3066\\u3044\\u307e\\u3059\\u3002<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=oVQ4_PIqgz8\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"\\u9867\\u5ba2\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"\\u4eba\\u4e8b\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"\\u5e74\\u9593\\u6ce8\\u6587\\u6570\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306f\\u3001\\u4e16\\u754c\\u4e2d\\u304b\\u3089\\u306e\\u6ce8\\u6587\\u3068\\u63a5\\u7d9a\\u3059\\u308b\\u305f\\u3081\\u306bAlibaba\\u306b\\u5e97\\u8217\\u3092\\u958b\\u8a2d\\u3057\\u59cb\\u3081\\u307e\\u3057\\u305f\\u3002<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0e89391\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u30012030\\u5e74\\u307e\\u3067\\u306b\\u30d9\\u30c8\\u30ca\\u30e0\\u306e\\u4e3b\\u8981\\u306a\\u6a5f\\u68b0\\u52a0\\u5de5\\u4f01\\u696d\\u306e\\u4e00\\u3064\\u3068\\u3057\\u3066\\u3001\\u56fd\\u969b\\u5e02\\u5834\\u306b\\u4f9b\\u7d66\\u3059\\u308b\\u3053\\u3068\\u3092\\u76ee\\u6307\\u3057\\u3066\\u3044\\u307e\\u3059\\u3002\\u5c06\\u6765\\u7684\\u306b\\u306f\\u3001\\u5b8c\\u6210\\u3057\\u305f\\u6a5f\\u68b0\\u88fd\\u54c1\\u3092\\u76f4\\u63a5\\u30a8\\u30f3\\u30c9\\u30e6\\u30fc\\u30b6\\u30fc\\u306b\\u63d0\\u4f9b\\u3059\\u308b\\u3053\\u3068\\u3092\\u76ee\\u6a19\\u3068\\u3057\\u3066\\u3044\\u307e\\u3059\\u3002\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2026\\u5e74\\u307e\\u3067\\u306b\\u9054\\u6210\\u3059\\u308b\\u76ee\\u6a19:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"\\u6771\\u30a2\\u30b8\\u30a2\\uff08\\u65e5\\u672c\\u3001\\u97d3\\u56fd\\u306a\\u3069\\uff09\\uff1a\\u4ea4\\u63db\\u7528\\u6a5f\\u68b0\\u90e8\\u54c1\\u3001\\u30aa\\u30fc\\u30c8\\u30d0\\u30a4\\u304a\\u3088\\u3073\\u81ea\\u52d5\\u8eca\\u306e\\u30a2\\u30af\\u30bb\\u30b5\\u30ea\\u30fc\\u3001\\u6c34\\u7523\\u696d\\u7528\\u306e\\u30d5\\u30a3\\u30c3\\u30c6\\u30a3\\u30f3\\u30b0\\u3001\\u91d1\\u578b\\u3001\\u305d\\u306e\\u4ed6\\u306e\\u6a5f\\u68b0\\u90e8\\u54c1\\u306e\\u8f38\\u51fa\\u3002\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"\\u30e8\\u30fc\\u30ed\\u30c3\\u30d1\\uff08\\u30c9\\u30a4\\u30c4\\u3001\\u30d6\\u30eb\\u30ac\\u30ea\\u30a2\\u3001\\u30aa\\u30e9\\u30f3\\u30c0\\u306a\\u3069\\uff09\\uff1a\\u81ea\\u52d5\\u8eca\\u7528\\u30d9\\u30a2\\u30ea\\u30f3\\u30b0\\u306e\\u6cbb\\u5177\\u304a\\u3088\\u3073\\u81ea\\u52d5\\u5316\\u6a5f\\u68b0\\u306e\\u96fb\\u6c17\\u30dc\\u30c3\\u30af\\u30b9\\u90e8\\u54c1\\u306e\\u751f\\u7523\\u3002\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"\\u30a2\\u30e1\\u30ea\\u30ab\\u5408\\u8846\\u56fd\\uff1a\\u533b\\u7642\\u6a5f\\u5668\\u3001\\u5149\\u5b66\\u6a5f\\u5668\\u3001\\u97f3\\u97ff\\u6a5f\\u5668\\u306b\\u95a2\\u9023\\u3059\\u308b\\u88fd\\u54c1\\u3002\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"\\u30aa\\u30fc\\u30b9\\u30c8\\u30e9\\u30ea\\u30a2\\uff1a\\u677f\\u91d1\\u88fd\\u54c1\\u3002\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"\\u30d9\\u30c8\\u30ca\\u30e0\\uff1a\\u5c0f\\u578b\\u81ea\\u52d5\\u5316\\u6a5f\\u68b0\\u3001\\u30aa\\u30fc\\u30c8\\u30d0\\u30a4\\u304a\\u3088\\u3073\\u81ea\\u52d5\\u8eca\\u306e\\u30dc\\u30eb\\u30c8\\u3001\\u77f3\\u6cb9\\u304a\\u3088\\u3073\\u30ac\\u30b9\\u7523\\u696d\\u306e\\u88fd\\u54c1\\u3002\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"\\u305d\\u306e\\u4ed6\\u306e\\u5e02\\u5834\\u3068\\u88fd\\u54c1\\u3002\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u8907\\u6570\\u306e\\u696d\\u754c\\u3067\\u30b5\\u30fc\\u30d3\\u30b9\\u3092\\u63d0\\u4f9b\\u3057\\u3066\\u3044\\u307e\\u3059\\u3002\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306f\\u5e38\\u306b\\u9867\\u5ba2\\u306e\\u30c7\\u30b6\\u30a4\\u30f3\\u8981\\u6c42\\u3092\\u6e80\\u305f\\u3057\\u307e\\u3059\\u3002\\u5916\\u89b3\\u3068\\u5bf8\\u6cd5\\u306f\\u3001\\u6700\\u3082\\u91cd\\u8981\\u8996\\u3057\\u3066\\u3044\\u308b\\u8981\\u7d20\\u3067\\u3059\\u3002<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"cnc-machining-services|service-category\",\"material-forming-services|service-category\"],\"ct_animate\":\"wow fadeInUp\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"\\u8cea\\u554f\\u304c\\u3042\\u308a\\u307e\\u3059\\u304b\\uff1f\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"\\u898b\\u7a4d\\u3082\\u308a\\u3092\\u53d6\\u5f97\\u3059\\u308b\\u305f\\u3081\\u306e\\u9023\\u7d61\\u5148\\uff1a\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u7c21\\u5358\\u306a\\u4f5c\\u696d\\u624b\\u9806\\u3092\\u6301\\u3063\\u3066\\u3044\\u307e\\u3059\\u3002\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306f\\u5e38\\u306b\\u54c1\\u8cea\\u3068\\u9032\\u6357\\u306b\\u304a\\u3044\\u3066\\u5b89\\u5fc3\\u611f\\u3092\\u63d0\\u4f9b\\u3057\\u307e\\u3059\\u3002<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"\\u79c1\\u305f\\u3061\\u3092\\u63a2\\u3059\",\"description\":\"\\u79c1\\u305f\\u3061\\u306f\\u3001\\u5404\\u30d7\\u30ed\\u30b8\\u30a7\\u30af\\u30c8\\u3092\\u7dcf\\u5408\\u7684\\u306b\\u53d6\\u308a\\u6271\\u3046\\u91cd\\u8981\\u6027\\u3092\\u7406\\u89e3\\u3057\\u3066\\u3044\\u307e\\u3059\\u3002\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"\\u79c1\\u305f\\u3061\\u3068\\u63a5\\u7d9a\\u3059\\u308b\",\"description\":\"\\u79c1\\u305f\\u3061\\u304c\\u4ed6\\u306e\\u30a8\\u30fc\\u30b8\\u30a7\\u30f3\\u30b7\\u30fc\\u3068\\u7570\\u306a\\u308b\\u70b9\\u306f\\u3001\\u30ab\\u30b9\\u30bf\\u30de\\u30a4\\u30ba\\u3055\\u308c\\u305f\\u30bd\\u30ea\\u30e5\\u30fc\\u30b7\\u30e7\\u30f3\\u3092\\u4f5c\\u6210\\u3059\\u308b\\u5c02\\u9580\\u77e5\\u8b58\\u306b\\u3042\\u308a\\u307e\\u3059\\u3002\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"\\u79c1\\u305f\\u3061\\u306b\\u652f\\u6255\\u3046\",\"description\":\"\\u79c1\\u305f\\u3061\\u306f\\u3001\\u5404\\u30c1\\u30fc\\u30e0\\u30e1\\u30f3\\u30d0\\u30fc\\u304c\\u81ea\\u5206\\u81ea\\u8eab\\u306e\\u6700\\u9ad8\\u306e\\u59ff\\u3092\\u76ee\\u6307\\u3059\\u3053\\u3068\\u3092\\u5968\\u52b1\\u3057\\u3001\\u67d4\\u8edf\\u3067\\u5354\\u529b\\u7684\\u306a\\u74b0\\u5883\\u3092\\u80b2\\u3093\\u3067\\u3044\\u307e\\u3059\\u3002\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"\\u3042\\u306a\\u305f\\u306e\\u5922\\u3092\\u5b9f\\u73fe\\u3059\\u308b\",\"description\":\"\\u3069\\u306e\\u30d3\\u30b8\\u30cd\\u30b9\\u306b\\u3082\\u3001\\u9769\\u65b0\\u3068\\u9032\\u6b69\\u3092\\u4fc3\\u3059\\u72ec\\u81ea\\u306e\\u30bd\\u30ea\\u30e5\\u30fc\\u30b7\\u30e7\\u30f3\\u304c\\u3042\\u308a\\u307e\\u3059\\u3002\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u3044\\u3064\\u3067\\u3082\\u3069\\u3093\\u306a\\u52a9\\u3051\\u304c\\u5fc5\\u8981\\u306a\\u5834\\u5408\\u3067\\u3082\\u3001\\u79c1\\u305f\\u3061\\u306b\\u3054\\u9023\\u7d61\\u304f\\u3060\\u3055\\u3044...\",\"title_color\":\"#85B23B\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9693,3092,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(9697,3093,'_elementor_edit_mode','builder'),(9698,3093,'_elementor_template_type','wp-page'),(9699,3093,'_elementor_version','3.24.7'),(9700,3093,'_wp_page_template','default'),(9701,3093,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u3001\\u30d9\\u30c8\\u30ca\\u30e0\\u5168\\u571f\\u304a\\u3088\\u3073\\u4e16\\u754c\\u4e2d\\u306e\\u6a5f\\u68b0\\u7523\\u696d\\u5411\\u3051\\u306b\\u5e45\\u5e83\\u3044\\u88fd\\u54c1\\u3092\\u63d0\\u4f9b\\u3057\\u3066\\u304a\\u308a\\u3001\\u7279\\u306b\\u65e5\\u672c\\u3001\\u97d3\\u56fd\\u3001\\u30a2\\u30e1\\u30ea\\u30ab\\u3001\\u30aa\\u30fc\\u30b9\\u30c8\\u30e9\\u30ea\\u30a2\\u3068\\u3044\\u3063\\u305f\\u4e3b\\u8981\\u5e02\\u5834\\u3067\\u306e\\u53d6\\u5f15\\u306b\\u529b\\u3092\\u5165\\u308c\\u3066\\u3044\\u307e\\u3059\\u3002\\u307e\\u305f\\u3001\\u3053\\u308c\\u3089\\u306e\\u5e02\\u5834\\u3078\\u306e\\u8f38\\u51fa\\u7d4c\\u9a13\\u3082\\u8c4a\\u5bcc\\u3067\\u3059\\u3002\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306e\\u6700\\u5927\\u306e\\u5f37\\u307f\\u306f\\u3001\\u5b66\\u3076\\u3053\\u3068\\u3001\\u9769\\u65b0\\u3059\\u308b\\u3053\\u3068\\u306b\\u60c5\\u71b1\\u3092\\u6301\\u3061\\u3001\\u81ea\\u4fe1\\u3092\\u6301\\u3063\\u305f\\u82e5\\u3044\\u52b4\\u50cd\\u529b\\u306b\\u3042\\u308a\\u307e\\u3059\\u3002\\u3053\\u306e\\u30c1\\u30fc\\u30e0\\u306f\\u3001\\u5e38\\u306b\\u5b89\\u5b9a\\u3057\\u305f\\u9ad8\\u54c1\\u8cea\\u306e\\u6a5f\\u68b0\\u88fd\\u54c1\\u3092\\u591a\\u69d8\\u306b\\u88fd\\u9020\\u3059\\u308b\\u80fd\\u529b\\u3092\\u5099\\u3048\\u3066\\u3044\\u307e\\u3059\\u3002<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=oVQ4_PIqgz8\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"\\u9867\\u5ba2\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"\\u4eba\\u4e8b\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"\\u5e74\\u9593\\u6ce8\\u6587\\u6570\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306f\\u3001\\u4e16\\u754c\\u4e2d\\u304b\\u3089\\u306e\\u6ce8\\u6587\\u3068\\u63a5\\u7d9a\\u3059\\u308b\\u305f\\u3081\\u306bAlibaba\\u306b\\u5e97\\u8217\\u3092\\u958b\\u8a2d\\u3057\\u59cb\\u3081\\u307e\\u3057\\u305f\\u3002<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0e89391\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u30012030\\u5e74\\u307e\\u3067\\u306b\\u30d9\\u30c8\\u30ca\\u30e0\\u306e\\u4e3b\\u8981\\u306a\\u6a5f\\u68b0\\u52a0\\u5de5\\u4f01\\u696d\\u306e\\u4e00\\u3064\\u3068\\u3057\\u3066\\u3001\\u56fd\\u969b\\u5e02\\u5834\\u306b\\u4f9b\\u7d66\\u3059\\u308b\\u3053\\u3068\\u3092\\u76ee\\u6307\\u3057\\u3066\\u3044\\u307e\\u3059\\u3002\\u5c06\\u6765\\u7684\\u306b\\u306f\\u3001\\u5b8c\\u6210\\u3057\\u305f\\u6a5f\\u68b0\\u88fd\\u54c1\\u3092\\u76f4\\u63a5\\u30a8\\u30f3\\u30c9\\u30e6\\u30fc\\u30b6\\u30fc\\u306b\\u63d0\\u4f9b\\u3059\\u308b\\u3053\\u3068\\u3092\\u76ee\\u6a19\\u3068\\u3057\\u3066\\u3044\\u307e\\u3059\\u3002\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2026\\u5e74\\u307e\\u3067\\u306b\\u9054\\u6210\\u3059\\u308b\\u76ee\\u6a19:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"\\u6771\\u30a2\\u30b8\\u30a2\\uff08\\u65e5\\u672c\\u3001\\u97d3\\u56fd\\u306a\\u3069\\uff09\\uff1a\\u4ea4\\u63db\\u7528\\u6a5f\\u68b0\\u90e8\\u54c1\\u3001\\u30aa\\u30fc\\u30c8\\u30d0\\u30a4\\u304a\\u3088\\u3073\\u81ea\\u52d5\\u8eca\\u306e\\u30a2\\u30af\\u30bb\\u30b5\\u30ea\\u30fc\\u3001\\u6c34\\u7523\\u696d\\u7528\\u306e\\u30d5\\u30a3\\u30c3\\u30c6\\u30a3\\u30f3\\u30b0\\u3001\\u91d1\\u578b\\u3001\\u305d\\u306e\\u4ed6\\u306e\\u6a5f\\u68b0\\u90e8\\u54c1\\u306e\\u8f38\\u51fa\\u3002\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"\\u30e8\\u30fc\\u30ed\\u30c3\\u30d1\\uff08\\u30c9\\u30a4\\u30c4\\u3001\\u30d6\\u30eb\\u30ac\\u30ea\\u30a2\\u3001\\u30aa\\u30e9\\u30f3\\u30c0\\u306a\\u3069\\uff09\\uff1a\\u81ea\\u52d5\\u8eca\\u7528\\u30d9\\u30a2\\u30ea\\u30f3\\u30b0\\u306e\\u6cbb\\u5177\\u304a\\u3088\\u3073\\u81ea\\u52d5\\u5316\\u6a5f\\u68b0\\u306e\\u96fb\\u6c17\\u30dc\\u30c3\\u30af\\u30b9\\u90e8\\u54c1\\u306e\\u751f\\u7523\\u3002\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"\\u30a2\\u30e1\\u30ea\\u30ab\\u5408\\u8846\\u56fd\\uff1a\\u533b\\u7642\\u6a5f\\u5668\\u3001\\u5149\\u5b66\\u6a5f\\u5668\\u3001\\u97f3\\u97ff\\u6a5f\\u5668\\u306b\\u95a2\\u9023\\u3059\\u308b\\u88fd\\u54c1\\u3002\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"\\u30aa\\u30fc\\u30b9\\u30c8\\u30e9\\u30ea\\u30a2\\uff1a\\u677f\\u91d1\\u88fd\\u54c1\\u3002\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"\\u30d9\\u30c8\\u30ca\\u30e0\\uff1a\\u5c0f\\u578b\\u81ea\\u52d5\\u5316\\u6a5f\\u68b0\\u3001\\u30aa\\u30fc\\u30c8\\u30d0\\u30a4\\u304a\\u3088\\u3073\\u81ea\\u52d5\\u8eca\\u306e\\u30dc\\u30eb\\u30c8\\u3001\\u77f3\\u6cb9\\u304a\\u3088\\u3073\\u30ac\\u30b9\\u7523\\u696d\\u306e\\u88fd\\u54c1\\u3002\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"\\u305d\\u306e\\u4ed6\\u306e\\u5e02\\u5834\\u3068\\u88fd\\u54c1\\u3002\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u8907\\u6570\\u306e\\u696d\\u754c\\u3067\\u30b5\\u30fc\\u30d3\\u30b9\\u3092\\u63d0\\u4f9b\\u3057\\u3066\\u3044\\u307e\\u3059\\u3002\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306f\\u5e38\\u306b\\u9867\\u5ba2\\u306e\\u30c7\\u30b6\\u30a4\\u30f3\\u8981\\u6c42\\u3092\\u6e80\\u305f\\u3057\\u307e\\u3059\\u3002\\u5916\\u89b3\\u3068\\u5bf8\\u6cd5\\u306f\\u3001\\u6700\\u3082\\u91cd\\u8981\\u8996\\u3057\\u3066\\u3044\\u308b\\u8981\\u7d20\\u3067\\u3059\\u3002<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"ja|language\"],\"ct_animate\":\"wow fadeInUp\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"\\u8cea\\u554f\\u304c\\u3042\\u308a\\u307e\\u3059\\u304b\\uff1f\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"\\u898b\\u7a4d\\u3082\\u308a\\u3092\\u53d6\\u5f97\\u3059\\u308b\\u305f\\u3081\\u306e\\u9023\\u7d61\\u5148\\uff1a\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u7c21\\u5358\\u306a\\u4f5c\\u696d\\u624b\\u9806\\u3092\\u6301\\u3063\\u3066\\u3044\\u307e\\u3059\\u3002\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306f\\u5e38\\u306b\\u54c1\\u8cea\\u3068\\u9032\\u6357\\u306b\\u304a\\u3044\\u3066\\u5b89\\u5fc3\\u611f\\u3092\\u63d0\\u4f9b\\u3057\\u307e\\u3059\\u3002<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"\\u79c1\\u305f\\u3061\\u3092\\u63a2\\u3059\",\"description\":\"\\u79c1\\u305f\\u3061\\u306f\\u3001\\u5404\\u30d7\\u30ed\\u30b8\\u30a7\\u30af\\u30c8\\u3092\\u7dcf\\u5408\\u7684\\u306b\\u53d6\\u308a\\u6271\\u3046\\u91cd\\u8981\\u6027\\u3092\\u7406\\u89e3\\u3057\\u3066\\u3044\\u307e\\u3059\\u3002\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"\\u79c1\\u305f\\u3061\\u3068\\u63a5\\u7d9a\\u3059\\u308b\",\"description\":\"\\u79c1\\u305f\\u3061\\u304c\\u4ed6\\u306e\\u30a8\\u30fc\\u30b8\\u30a7\\u30f3\\u30b7\\u30fc\\u3068\\u7570\\u306a\\u308b\\u70b9\\u306f\\u3001\\u30ab\\u30b9\\u30bf\\u30de\\u30a4\\u30ba\\u3055\\u308c\\u305f\\u30bd\\u30ea\\u30e5\\u30fc\\u30b7\\u30e7\\u30f3\\u3092\\u4f5c\\u6210\\u3059\\u308b\\u5c02\\u9580\\u77e5\\u8b58\\u306b\\u3042\\u308a\\u307e\\u3059\\u3002\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"\\u79c1\\u305f\\u3061\\u306b\\u652f\\u6255\\u3046\",\"description\":\"\\u79c1\\u305f\\u3061\\u306f\\u3001\\u5404\\u30c1\\u30fc\\u30e0\\u30e1\\u30f3\\u30d0\\u30fc\\u304c\\u81ea\\u5206\\u81ea\\u8eab\\u306e\\u6700\\u9ad8\\u306e\\u59ff\\u3092\\u76ee\\u6307\\u3059\\u3053\\u3068\\u3092\\u5968\\u52b1\\u3057\\u3001\\u67d4\\u8edf\\u3067\\u5354\\u529b\\u7684\\u306a\\u74b0\\u5883\\u3092\\u80b2\\u3093\\u3067\\u3044\\u307e\\u3059\\u3002\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"\\u3042\\u306a\\u305f\\u306e\\u5922\\u3092\\u5b9f\\u73fe\\u3059\\u308b\",\"description\":\"\\u3069\\u306e\\u30d3\\u30b8\\u30cd\\u30b9\\u306b\\u3082\\u3001\\u9769\\u65b0\\u3068\\u9032\\u6b69\\u3092\\u4fc3\\u3059\\u72ec\\u81ea\\u306e\\u30bd\\u30ea\\u30e5\\u30fc\\u30b7\\u30e7\\u30f3\\u304c\\u3042\\u308a\\u307e\\u3059\\u3002\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u3044\\u3064\\u3067\\u3082\\u3069\\u3093\\u306a\\u52a9\\u3051\\u304c\\u5fc5\\u8981\\u306a\\u5834\\u5408\\u3067\\u3082\\u3001\\u79c1\\u305f\\u3061\\u306b\\u3054\\u9023\\u7d61\\u304f\\u3060\\u3055\\u3044...\",\"title_color\":\"#85B23B\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9702,3093,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(9706,3094,'_elementor_edit_mode','builder'),(9707,3094,'_elementor_template_type','wp-page'),(9708,3094,'_elementor_version','3.24.7'),(9709,3094,'_wp_page_template','default'),(9710,3094,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=oVQ4_PIqgz8\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have started to open a store on Alibaba to connect with orders from around the world.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0e89391\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"cnc-machining-services|service-category\",\"material-forming-services|service-category\"],\"ct_animate\":\"wow fadeInUp\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always provide a sense of security in terms of quality and progress.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#85B23B\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9711,3094,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(9715,3095,'_elementor_edit_mode','builder'),(9716,3095,'_elementor_template_type','wp-page'),(9717,3095,'_elementor_version','3.24.7'),(9718,3095,'_wp_page_template','default'),(9719,3095,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=oVQ4_PIqgz8\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have started to open a store on Alibaba to connect with orders from around the world.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0e89391\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"cnc-machining-services|service-category\",\"material-forming-services|service-category\"],\"ct_animate\":\"wow fadeInUp\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always provide a sense of security in terms of quality and progress.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#85B23B\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9720,3095,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(9724,3096,'_elementor_edit_mode','builder'),(9725,3096,'_elementor_template_type','wp-page'),(9726,3096,'_elementor_version','3.24.7'),(9727,3096,'_wp_page_template','default'),(9728,3096,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=oVQ4_PIqgz8\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have started to open a store on Alibaba to connect with orders from around the world.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0e89391\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"en|language\"],\"ct_animate\":\"wow fadeInUp\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always provide a sense of security in terms of quality and progress.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#85B23B\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9729,3096,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(9738,3097,'_wp_page_template','default'),(9739,3097,'_elementor_edit_mode','builder'),(9740,3097,'_elementor_template_type','wp-post'),(9741,3097,'_elementor_version','3.24.7'),(9742,3097,'_elementor_data','[{\"id\":\"7225c724\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#060606E6\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer.png\",\"id\":87},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"109cef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.3},\"elements\":[{\"id\":\"6667e1a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/logo.jpg\",\"id\":2748,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae6ecf2\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Factory 1: Khac Niem Industrial Cluster, Khac Niem Ward, Bac Ninh City, Bac Ninh Province\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}},{\"content\":\"Factory 2: 176\\/9 Nguyen Thi Tuoi, Tan Phuoc Quarter, Tan Binh Ward, Di An City, Binh Duong\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"be1a6dd\"},{\"content\":\"0968 86 03 86\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"712a43be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.664,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e4e262b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Menu\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6e682e5b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"39\",\"style\":\"tow-col-light\",\"link_color_hover\":\"#F9A244\",\"line_color_hover\":\"#F9A244\",\"menu_align\":\"left\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"e174b97\",\"elType\":\"widget\",\"settings\":{\"title\":\"Open Hours\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"1e0523b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Mon - Sun: 24\\/24<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ab76a16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7},\"elements\":[{\"id\":\"37a5e636\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"aa15610\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#85B23B\",\"padding\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"040\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2487ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40d8f8a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sign up for alerts, our latest blogs, thoughts, and insights.\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d21d208\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"27383ab2\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin-box\",\"library\":\"material\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24b98c01\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"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},\"gap\":\"extended\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a6c11e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53be024\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"5990603\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"7f874a5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright @2024 of Far East High Tech Ltd. Co.<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_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},\"_css_classes\":\"ct-copyright\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9743,3097,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:2:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:1;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:16:\"link_color_hover\";i:1;s:16:\"line_color_hover\";i:1;s:10:\"menu_align\";i:1;s:17:\"menu_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:13:\"ct_newsletter\";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:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";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:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:1;}}}}}'),(9746,3098,'_wp_page_template','default'),(9747,3098,'_elementor_edit_mode','builder'),(9748,3098,'_elementor_template_type','wp-post'),(9749,3098,'_elementor_version','3.24.7'),(9750,3098,'_elementor_data','[{\"id\":\"7225c724\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#060606E6\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer.png\",\"id\":87},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"109cef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.3},\"elements\":[{\"id\":\"6667e1a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/logo.jpg\",\"id\":2748,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae6ecf2\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Factory 1: Khac Niem Industrial Cluster, Khac Niem Ward, Bac Ninh City, Bac Ninh Province\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}},{\"content\":\"Factory 2: 176\\/9 Nguyen Thi Tuoi, Tan Phuoc Quarter, Tan Binh Ward, Di An City, Binh Duong\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"be1a6dd\"},{\"content\":\"0968 86 03 86\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"712a43be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.664,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e4e262b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Menu\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6e682e5b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"39\",\"style\":\"tow-col-light\",\"link_color_hover\":\"#F9A244\",\"line_color_hover\":\"#F9A244\",\"menu_align\":\"left\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"e174b97\",\"elType\":\"widget\",\"settings\":{\"title\":\"Open Hours\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"1e0523b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Mon - Sun: 24\\/24<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ab76a16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7},\"elements\":[{\"id\":\"37a5e636\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"aa15610\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#85B23B\",\"padding\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"040\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2487ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40d8f8a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sign up for alerts, our latest blogs, thoughts, and insights.\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d21d208\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"27383ab2\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin-box\",\"library\":\"material\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24b98c01\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"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},\"gap\":\"extended\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a6c11e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53be024\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"5990603\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"7f874a5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright @2024 of Far East High Tech Ltd. Co.<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_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},\"_css_classes\":\"ct-copyright\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9751,3098,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:2:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:1;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:16:\"link_color_hover\";i:1;s:16:\"line_color_hover\";i:1;s:10:\"menu_align\";i:1;s:17:\"menu_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:13:\"ct_newsletter\";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:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";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:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:1;}}}}}'),(9754,3099,'_wp_page_template','default'),(9755,3099,'_elementor_edit_mode','builder'),(9756,3099,'_elementor_template_type','wp-post'),(9757,3099,'_elementor_version','3.24.7'),(9758,3099,'_elementor_data','[{\"id\":\"7225c724\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#060606E6\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer.png\",\"id\":87},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"109cef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.3},\"elements\":[{\"id\":\"6667e1a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/logo.jpg\",\"id\":2748,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae6ecf2\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Nh\\u00e0 m\\u00e1y 1: C\\u1ee5m c\\u00f4ng nghi\\u1ec7p Kh\\u1eafc Ni\\u1ec7m, Ph\\u01b0\\u1eddng Kh\\u1eafc Ni\\u1ec7m, Th\\u00e0nh ph\\u1ed1 B\\u1eafc Ninh, T\\u1ec9nh B\\u1eafc Ninh\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}},{\"content\":\"Nh\\u00e0 m\\u00e1y 2: 176\\/9 Nguy\\u1ec5n Th\\u1ecb T\\u01b0\\u01a1i, Khu ph\\u1ed1 T\\u00e2n Ph\\u01b0\\u1edbc, Ph\\u01b0\\u1eddng T\\u00e2n B\\u00ecnh, Th\\u00e0nh ph\\u1ed1 D\\u0129 An, T\\u1ec9nh B\\u00ecnh D\\u01b0\\u01a1ng\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"be1a6dd\"},{\"content\":\"0968 86 03 86\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"712a43be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.664,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e4e262b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Menu\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6e682e5b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"75\",\"style\":\"tow-col-light\",\"link_color_hover\":\"#F9A244\",\"line_color_hover\":\"#F9A244\",\"menu_align\":\"left\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"e174b97\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gi\\u1edd m\\u1edf c\\u1eeda\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"1e0523b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Th\\u1ee9 Hai - Ch\\u1ee7 Nh\\u1eadt: 24\\/24<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ab76a16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7},\"elements\":[{\"id\":\"37a5e636\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"aa15610\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#85B23B\",\"padding\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"040\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2487ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40d8f8a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u0110\\u0103ng k\\u00fd \\u0111\\u1ec3 nh\\u1eadn th\\u00f4ng b\\u00e1o, blog m\\u1edbi nh\\u1ea5t, \\u00fd t\\u01b0\\u1edfng v\\u00e0 g\\u00f3c nh\\u00ecn c\\u1ee7a ch\\u00fang t\\u00f4i.<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d21d208\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"27383ab2\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin-box\",\"library\":\"material\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24b98c01\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"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},\"gap\":\"extended\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a6c11e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53be024\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"5990603\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"7f874a5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright @2024 of Far East High Tech Ltd. Co.<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_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},\"_css_classes\":\"ct-copyright\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9759,3099,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:2:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:1;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:16:\"link_color_hover\";i:1;s:16:\"line_color_hover\";i:1;s:10:\"menu_align\";i:1;s:17:\"menu_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:13:\"ct_newsletter\";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:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";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:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:1;}}}}}'),(9762,2959,'_yoast_wpseo_content_score','90'),(9766,3100,'_wp_page_template','default'),(9767,3100,'_elementor_edit_mode','builder'),(9768,3100,'_elementor_template_type','wp-post'),(9769,3100,'_elementor_version','3.24.7'),(9770,3100,'_elementor_data','[{\"id\":\"7225c724\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#060606E6\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer.png\",\"id\":87},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"109cef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.3},\"elements\":[{\"id\":\"6667e1a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/logo.jpg\",\"id\":2748,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae6ecf2\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Factory 1: Khac Niem Industrial Cluster, Khac Niem Ward, Bac Ninh City, Bac Ninh Province\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}},{\"content\":\"Factory 2: 176\\/9 Nguyen Thi Tuoi, Tan Phuoc Quarter, Tan Binh Ward, Di An City, Binh Duong\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"be1a6dd\"},{\"content\":\"0968 86 03 86\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"712a43be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.664,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e4e262b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Menu\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6e682e5b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"39\",\"style\":\"tow-col-light\",\"link_color_hover\":\"#F9A244\",\"line_color_hover\":\"#F9A244\",\"menu_align\":\"left\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"e174b97\",\"elType\":\"widget\",\"settings\":{\"title\":\"Open Hours\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"1e0523b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Mon - Sun: 24\\/24<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ab76a16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7},\"elements\":[{\"id\":\"37a5e636\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"aa15610\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#85B23B\",\"padding\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"040\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2487ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40d8f8a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sign up for alerts, our latest blogs, thoughts, and insights.\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d21d208\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"27383ab2\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin-box\",\"library\":\"material\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24b98c01\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"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},\"gap\":\"extended\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a6c11e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53be024\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"5990603\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"7f874a5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright @2024 of Far East High Tech Ltd. Co.<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_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},\"_css_classes\":\"ct-copyright\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9771,3100,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:2:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:1;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:16:\"link_color_hover\";i:1;s:16:\"line_color_hover\";i:1;s:10:\"menu_align\";i:1;s:17:\"menu_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:13:\"ct_newsletter\";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:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";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:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:1;}}}}}'),(9774,3101,'_wp_page_template','default'),(9775,3101,'_elementor_edit_mode','builder'),(9776,3101,'_elementor_template_type','wp-post'),(9777,3101,'_elementor_version','3.24.7'),(9778,3101,'_elementor_data','[{\"id\":\"7225c724\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#060606E6\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer.png\",\"id\":87},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"109cef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.3},\"elements\":[{\"id\":\"6667e1a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/logo.jpg\",\"id\":2748,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae6ecf2\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Factory 1: Khac Niem Industrial Cluster, Khac Niem Ward, Bac Ninh City, Bac Ninh Province\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}},{\"content\":\"Factory 2: 176\\/9 Nguyen Thi Tuoi, Tan Phuoc Quarter, Tan Binh Ward, Di An City, Binh Duong\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"be1a6dd\"},{\"content\":\"0968 86 03 86\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"712a43be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.664,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e4e262b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Menu\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6e682e5b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"39\",\"style\":\"tow-col-light\",\"link_color_hover\":\"#F9A244\",\"line_color_hover\":\"#F9A244\",\"menu_align\":\"left\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"e174b97\",\"elType\":\"widget\",\"settings\":{\"title\":\"Open Hours\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"1e0523b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Mon - Sun: 24\\/24<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ab76a16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7},\"elements\":[{\"id\":\"37a5e636\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"aa15610\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#85B23B\",\"padding\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"040\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2487ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40d8f8a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sign up for alerts, our latest blogs, thoughts, and insights.\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d21d208\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"27383ab2\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin-box\",\"library\":\"material\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24b98c01\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"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},\"gap\":\"extended\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a6c11e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53be024\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"5990603\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"7f874a5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright @2024 of Far East High Tech Ltd. Co.<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_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},\"_css_classes\":\"ct-copyright\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9779,3101,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:2:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:1;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:16:\"link_color_hover\";i:1;s:16:\"line_color_hover\";i:1;s:10:\"menu_align\";i:1;s:17:\"menu_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:13:\"ct_newsletter\";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:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";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:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:1;}}}}}'),(9782,3102,'_wp_page_template','default'),(9783,3102,'_elementor_edit_mode','builder'),(9784,3102,'_elementor_template_type','wp-post'),(9785,3102,'_elementor_version','3.24.7'),(9786,3102,'_elementor_data','[{\"id\":\"7225c724\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#060606E6\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer.png\",\"id\":87},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"109cef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.3},\"elements\":[{\"id\":\"6667e1a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/logo.jpg\",\"id\":2748,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae6ecf2\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"\\u5de5\\u58341: \\u30d0\\u30af\\u30cb\\u30f3\\u7701\\u30d0\\u30af\\u30cb\\u30f3\\u5e02\\u3001\\u30ab\\u30af\\u30cb\\u30a8\\u30e0\\u533a\\u3001\\u30ab\\u30af\\u30cb\\u30a8\\u30e0\\u5de5\\u696d\\u56e3\\u5730\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}},{\"content\":\"\\u5de5\\u58342: \\u30d3\\u30f3\\u30ba\\u30aa\\u30f3\\u7701\\u3001\\u30c7\\u30a3\\u30a2\\u30f3\\u5e02\\u3001\\u30bf\\u30f3\\u30d3\\u30f3\\u533a\\u3001\\u30bf\\u30f3\\u30d5\\u30aa\\u30c3\\u30af\\u5730\\u533a\\u3001\\u30b0\\u30a8\\u30f3\\u30fb\\u30c6\\u30a3\\u30fb\\u30c8\\u30a5\\u30fc\\u30a4176\\/9\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"be1a6dd\"},{\"content\":\"0968 86 03 86\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"712a43be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.664,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e4e262b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Menu\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6e682e5b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"89\",\"style\":\"tow-col-light\",\"link_color_hover\":\"#F9A244\",\"line_color_hover\":\"#F9A244\",\"menu_align\":\"left\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"e174b97\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u55b6\\u696d\\u6642\\u9593\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"1e0523b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u6708\\u66dc\\u65e5\\uff5e\\u65e5\\u66dc\\u65e5\\uff1a24\\u6642\\u9593\\u55b6\\u696d<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ab76a16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7},\"elements\":[{\"id\":\"37a5e636\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"aa15610\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#85B23B\",\"padding\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"040\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2487ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40d8f8a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u901a\\u77e5\\u3001\\u6700\\u65b0\\u306e\\u30d6\\u30ed\\u30b0\\u3001\\u30a2\\u30a4\\u30c7\\u30a2\\u3001\\u6d1e\\u5bdf\\u3092\\u53d7\\u3051\\u53d6\\u308b\\u305f\\u3081\\u306b\\u30b5\\u30a4\\u30f3\\u30a2\\u30c3\\u30d7\\u3057\\u3066\\u304f\\u3060\\u3055\\u3044\\u3002<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d21d208\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"27383ab2\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin-box\",\"library\":\"material\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24b98c01\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"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},\"gap\":\"extended\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a6c11e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53be024\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"5990603\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"7f874a5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright @2024 of Far East High Tech Ltd. Co.<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_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},\"_css_classes\":\"ct-copyright\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9787,3102,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:2:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:1;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:16:\"link_color_hover\";i:1;s:16:\"line_color_hover\";i:1;s:10:\"menu_align\";i:1;s:17:\"menu_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:13:\"ct_newsletter\";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:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";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:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:1;}}}}}'),(9790,2961,'_yoast_wpseo_content_score','90'),(9794,3103,'_elementor_edit_mode','builder'),(9795,3103,'_elementor_template_type','wp-page'),(9796,3103,'_elementor_version','3.24.7'),(9797,3103,'_wp_page_template','default'),(9798,3103,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i cung c\\u1ea5p nhi\\u1ec1u lo\\u1ea1i s\\u1ea3n ph\\u1ea9m cho ng\\u00e0nh c\\u00f4ng nghi\\u1ec7p c\\u01a1 kh\\u00ed tr\\u00ean to\\u00e0n Vi\\u1ec7t Nam v\\u00e0 qu\\u1ed1c t\\u1ebf, \\u0111\\u1eb7c bi\\u1ec7t t\\u1ea1i c\\u00e1c th\\u1ecb tr\\u01b0\\u1eddng tr\\u1ecdng \\u0111i\\u1ec3m nh\\u01b0 Nh\\u1eadt B\\u1ea3n, H\\u00e0n Qu\\u1ed1c, Hoa K\\u1ef3 v\\u00e0 \\u00dac. Ch\\u00fang t\\u00f4i c\\u0169ng c\\u00f3 kinh nghi\\u1ec7m xu\\u1ea5t kh\\u1ea9u \\u0111\\u1ebfn c\\u00e1c th\\u1ecb tr\\u01b0\\u1eddng n\\u00e0y.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Th\\u1ebf m\\u1ea1nh l\\u1edbn nh\\u1ea5t c\\u1ee7a ch\\u00fang t\\u00f4i n\\u1eb1m \\u1edf \\u0111\\u1ed9i ng\\u0169 nh\\u00e2n l\\u1ef1c tr\\u1ebb trung, \\u0111am m\\u00ea h\\u1ecdc h\\u1ecfi, s\\u00e1ng t\\u1ea1o v\\u00e0 t\\u1ef1 tin, c\\u00f3 kh\\u1ea3 n\\u0103ng s\\u1ea3n xu\\u1ea5t \\u0111a d\\u1ea1ng c\\u00e1c s\\u1ea3n ph\\u1ea9m c\\u01a1 kh\\u00ed v\\u1edbi ch\\u1ea5t l\\u01b0\\u1ee3ng lu\\u00f4n \\u1ed5n \\u0111\\u1ecbnh.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=oVQ4_PIqgz8\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Kh\\u00e1ch h\\u00e0ng\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Nh\\u00e2n s\\u1ef1\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"S\\u1ed1 \\u0111\\u01a1n h\\u00e0ng m\\u1ed7i n\\u0103m\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ch\\u00fang t\\u00f4i \\u0111\\u00e3 b\\u1eaft \\u0111\\u1ea7u m\\u1edf m\\u1ed9t c\\u1eeda h\\u00e0ng tr\\u00ean Alibaba \\u0111\\u1ec3 k\\u1ebft n\\u1ed1i v\\u1edbi c\\u00e1c \\u0111\\u01a1n h\\u00e0ng t\\u1eeb kh\\u1eafp n\\u01a1i tr\\u00ean th\\u1ebf gi\\u1edbi.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0e89391\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i n\\u1ed7 l\\u1ef1c tr\\u1edf th\\u00e0nh m\\u1ed9t trong nh\\u1eefng c\\u00f4ng ty ch\\u1ebf bi\\u1ebfn c\\u01a1 kh\\u00ed h\\u00e0ng \\u0111\\u1ea7u c\\u1ee7a Vi\\u1ec7t Nam, cung c\\u1ea5p ra th\\u1ecb tr\\u01b0\\u1eddng qu\\u1ed1c t\\u1ebf v\\u00e0o n\\u0103m 2030. Trong t\\u01b0\\u01a1ng lai, ch\\u00fang t\\u00f4i h\\u01b0\\u1edbng \\u0111\\u1ebfn vi\\u1ec7c s\\u1ea3n xu\\u1ea5t c\\u00e1c s\\u1ea3n ph\\u1ea9m m\\u00e1y m\\u00f3c ho\\u00e0n ch\\u1ec9nh \\u0111\\u1ec3 giao tr\\u1ef1c ti\\u1ebfp \\u0111\\u1ebfn ng\\u01b0\\u1eddi s\\u1eed d\\u1ee5ng cu\\u1ed1i.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>M\\u1ee5c ti\\u00eau \\u0111\\u1ea1t \\u0111\\u01b0\\u1ee3c v\\u00e0o n\\u0103m 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"\\u0110\\u00f4ng \\u00c1 (Nh\\u1eadt B\\u1ea3n, H\\u00e0n Qu\\u1ed1c, v.v.): Xu\\u1ea5t kh\\u1ea9u c\\u00e1c linh ki\\u1ec7n m\\u00e1y m\\u00f3c thay th\\u1ebf, ph\\u1ee5 ki\\u1ec7n xe m\\u00e1y v\\u00e0 \\u00f4 t\\u00f4, ph\\u1ee5 ki\\u1ec7n ng\\u00e0nh n\\u01b0\\u1edbc, khu\\u00f4n m\\u1eabu v\\u00e0 c\\u00e1c b\\u1ed9 ph\\u1eadn c\\u01a1 kh\\u00ed kh\\u00e1c.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Ch\\u00e2u \\u00c2u (\\u0110\\u1ee9c, Bulgaria, H\\u00e0 Lan, v.v.): S\\u1ea3n xu\\u1ea5t khu\\u00f4n jig cho v\\u00f2ng bi \\u00f4 t\\u00f4 v\\u00e0 c\\u00e1c b\\u1ed9 ph\\u1eadn h\\u1ed9p \\u0111i\\u1ec7n cho m\\u00e1y m\\u00f3c t\\u1ef1 \\u0111\\u1ed9ng h\\u00f3a.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"Hoa K\\u1ef3: C\\u00e1c s\\u1ea3n ph\\u1ea9m li\\u00ean quan \\u0111\\u1ebfn thi\\u1ebft b\\u1ecb y t\\u1ebf, quang h\\u1ecdc v\\u00e0 thi\\u1ebft b\\u1ecb \\u00e2m thanh.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"\\u00dac: S\\u1ea3n ph\\u1ea9m kim lo\\u1ea1i t\\u1ea5m.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vi\\u1ec7t Nam: M\\u00e1y t\\u1ef1 \\u0111\\u1ed9ng h\\u00f3a nh\\u1ecf; bu l\\u00f4ng xe m\\u00e1y v\\u00e0 \\u00f4 t\\u00f4; s\\u1ea3n ph\\u1ea9m trong ng\\u00e0nh d\\u1ea7u kh\\u00ed.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"C\\u00e1c th\\u1ecb tr\\u01b0\\u1eddng v\\u00e0 s\\u1ea3n ph\\u1ea9m kh\\u00e1c.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i cung c\\u1ea5p d\\u1ecbch v\\u1ee5 trong nhi\\u1ec1u l\\u0129nh v\\u1ef1c.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ch\\u00fang t\\u00f4i lu\\u00f4n \\u0111\\u00e1p \\u1ee9ng y\\u00eau c\\u1ea7u thi\\u1ebft k\\u1ebf c\\u1ee7a kh\\u00e1ch h\\u00e0ng. Ngo\\u1ea1i h\\u00ecnh v\\u00e0 k\\u00edch th\\u01b0\\u1edbc l\\u00e0 nh\\u1eefng y\\u1ebfu t\\u1ed1 ch\\u00fang t\\u00f4i coi tr\\u1ecdng nh\\u1ea5t.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"vi|language\"],\"ct_animate\":\"wow fadeInUp\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"C\\u00f3 c\\u00e2u h\\u1ecfi n\\u00e0o kh\\u00f4ng?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Li\\u00ean h\\u1ec7 \\u0111\\u1ec3 nh\\u1eadn b\\u00e1o gi\\u00e1:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i c\\u00f3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c \\u0111\\u01a1n gi\\u1ea3n.\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ch\\u00fang t\\u00f4i lu\\u00f4n mang \\u0111\\u1ebfn c\\u1ea3m gi\\u00e1c an t\\u00e2m v\\u1ec1 ch\\u1ea5t l\\u01b0\\u1ee3ng v\\u00e0 ti\\u1ebfn \\u0111\\u1ed9.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"T\\u00ecm ch\\u00fang t\\u00f4i\",\"description\":\"Ch\\u00fang t\\u00f4i hi\\u1ec3u t\\u1ea7m quan tr\\u1ecdng c\\u1ee7a vi\\u1ec7c x\\u1eed l\\u00fd m\\u1ed7i d\\u1ef1 \\u00e1n theo m\\u1ed9t c\\u00e1ch ti\\u1ebfp c\\u1eadn to\\u00e0n di\\u1ec7n.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"K\\u1ebft n\\u1ed1i v\\u1edbi ch\\u00fang t\\u00f4i\",\"description\":\"\\u0110i\\u1ec1u l\\u00e0m ch\\u00fang t\\u00f4i kh\\u00e1c bi\\u1ec7t so v\\u1edbi c\\u00e1c c\\u00f4ng ty kh\\u00e1c l\\u00e0 chuy\\u00ean m\\u00f4n trong vi\\u1ec7c t\\u1ea1o ra c\\u00e1c gi\\u1ea3i ph\\u00e1p t\\u00f9y ch\\u1ec9nh.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Thanh to\\u00e1n cho ch\\u00fang t\\u00f4i\",\"description\":\"Ch\\u00fang t\\u00f4i khuy\\u1ebfn kh\\u00edch m\\u1ed7i th\\u00e0nh vi\\u00ean trong \\u0111\\u1ed9i ng\\u0169 tr\\u1edf th\\u00e0nh phi\\u00ean b\\u1ea3n t\\u1ed1t nh\\u1ea5t c\\u1ee7a ch\\u00ednh m\\u00ecnh, t\\u1ea1o ra m\\u1ed9t m\\u00f4i tr\\u01b0\\u1eddng linh ho\\u1ea1t v\\u00e0 h\\u1ee3p t\\u00e1c.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"\\u0110\\u1ea1t \\u0111\\u01b0\\u1ee3c \\u01b0\\u1edbc m\\u01a1 c\\u1ee7a b\\u1ea1n\",\"description\":\"C\\u1ed1t l\\u00f5i c\\u1ee7a m\\u1ed7i doanh nghi\\u1ec7p l\\u00e0 nh\\u1eefng gi\\u1ea3i ph\\u00e1p \\u0111\\u1ed9c \\u0111\\u00e1o, truy\\u1ec1n c\\u1ea3m h\\u1ee9ng cho s\\u1ef1 \\u0111\\u1ed5i m\\u1edbi v\\u00e0 ph\\u00e1t tri\\u1ec3n.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Li\\u00ean h\\u1ec7 v\\u1edbi ch\\u00fang t\\u00f4i b\\u1ea5t c\\u1ee9 l\\u00fac n\\u00e0o n\\u1ebfu b\\u1ea1n c\\u1ea7n s\\u1ef1 gi\\u00fap \\u0111\\u1ee1...\",\"title_color\":\"#85B23B\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9799,3103,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(9803,3104,'_elementor_edit_mode','builder'),(9804,3104,'_elementor_template_type','wp-page'),(9805,3104,'_elementor_version','3.24.7'),(9806,3104,'_wp_page_template','default'),(9807,3104,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i cung c\\u1ea5p nhi\\u1ec1u lo\\u1ea1i s\\u1ea3n ph\\u1ea9m cho ng\\u00e0nh c\\u00f4ng nghi\\u1ec7p c\\u01a1 kh\\u00ed tr\\u00ean to\\u00e0n Vi\\u1ec7t Nam v\\u00e0 qu\\u1ed1c t\\u1ebf, \\u0111\\u1eb7c bi\\u1ec7t t\\u1ea1i c\\u00e1c th\\u1ecb tr\\u01b0\\u1eddng tr\\u1ecdng \\u0111i\\u1ec3m nh\\u01b0 Nh\\u1eadt B\\u1ea3n, H\\u00e0n Qu\\u1ed1c, Hoa K\\u1ef3 v\\u00e0 \\u00dac. Ch\\u00fang t\\u00f4i c\\u0169ng c\\u00f3 kinh nghi\\u1ec7m xu\\u1ea5t kh\\u1ea9u \\u0111\\u1ebfn c\\u00e1c th\\u1ecb tr\\u01b0\\u1eddng n\\u00e0y.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Th\\u1ebf m\\u1ea1nh l\\u1edbn nh\\u1ea5t c\\u1ee7a ch\\u00fang t\\u00f4i n\\u1eb1m \\u1edf \\u0111\\u1ed9i ng\\u0169 nh\\u00e2n l\\u1ef1c tr\\u1ebb trung, \\u0111am m\\u00ea h\\u1ecdc h\\u1ecfi, s\\u00e1ng t\\u1ea1o v\\u00e0 t\\u1ef1 tin, c\\u00f3 kh\\u1ea3 n\\u0103ng s\\u1ea3n xu\\u1ea5t \\u0111a d\\u1ea1ng c\\u00e1c s\\u1ea3n ph\\u1ea9m c\\u01a1 kh\\u00ed v\\u1edbi ch\\u1ea5t l\\u01b0\\u1ee3ng lu\\u00f4n \\u1ed5n \\u0111\\u1ecbnh.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=oVQ4_PIqgz8\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Kh\\u00e1ch h\\u00e0ng\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Nh\\u00e2n s\\u1ef1\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"S\\u1ed1 \\u0111\\u01a1n h\\u00e0ng m\\u1ed7i n\\u0103m\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ch\\u00fang t\\u00f4i \\u0111\\u00e3 b\\u1eaft \\u0111\\u1ea7u m\\u1edf m\\u1ed9t c\\u1eeda h\\u00e0ng tr\\u00ean Alibaba \\u0111\\u1ec3 k\\u1ebft n\\u1ed1i v\\u1edbi c\\u00e1c \\u0111\\u01a1n h\\u00e0ng t\\u1eeb kh\\u1eafp n\\u01a1i tr\\u00ean th\\u1ebf gi\\u1edbi.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0e89391\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i n\\u1ed7 l\\u1ef1c tr\\u1edf th\\u00e0nh m\\u1ed9t trong nh\\u1eefng c\\u00f4ng ty ch\\u1ebf bi\\u1ebfn c\\u01a1 kh\\u00ed h\\u00e0ng \\u0111\\u1ea7u c\\u1ee7a Vi\\u1ec7t Nam, cung c\\u1ea5p ra th\\u1ecb tr\\u01b0\\u1eddng qu\\u1ed1c t\\u1ebf v\\u00e0o n\\u0103m 2030. Trong t\\u01b0\\u01a1ng lai, ch\\u00fang t\\u00f4i h\\u01b0\\u1edbng \\u0111\\u1ebfn vi\\u1ec7c s\\u1ea3n xu\\u1ea5t c\\u00e1c s\\u1ea3n ph\\u1ea9m m\\u00e1y m\\u00f3c ho\\u00e0n ch\\u1ec9nh \\u0111\\u1ec3 giao tr\\u1ef1c ti\\u1ebfp \\u0111\\u1ebfn ng\\u01b0\\u1eddi s\\u1eed d\\u1ee5ng cu\\u1ed1i.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>M\\u1ee5c ti\\u00eau \\u0111\\u1ea1t \\u0111\\u01b0\\u1ee3c v\\u00e0o n\\u0103m 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"\\u0110\\u00f4ng \\u00c1 (Nh\\u1eadt B\\u1ea3n, H\\u00e0n Qu\\u1ed1c, v.v.): Xu\\u1ea5t kh\\u1ea9u c\\u00e1c linh ki\\u1ec7n m\\u00e1y m\\u00f3c thay th\\u1ebf, ph\\u1ee5 ki\\u1ec7n xe m\\u00e1y v\\u00e0 \\u00f4 t\\u00f4, ph\\u1ee5 ki\\u1ec7n ng\\u00e0nh n\\u01b0\\u1edbc, khu\\u00f4n m\\u1eabu v\\u00e0 c\\u00e1c b\\u1ed9 ph\\u1eadn c\\u01a1 kh\\u00ed kh\\u00e1c.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Ch\\u00e2u \\u00c2u (\\u0110\\u1ee9c, Bulgaria, H\\u00e0 Lan, v.v.): S\\u1ea3n xu\\u1ea5t khu\\u00f4n jig cho v\\u00f2ng bi \\u00f4 t\\u00f4 v\\u00e0 c\\u00e1c b\\u1ed9 ph\\u1eadn h\\u1ed9p \\u0111i\\u1ec7n cho m\\u00e1y m\\u00f3c t\\u1ef1 \\u0111\\u1ed9ng h\\u00f3a.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"Hoa K\\u1ef3: C\\u00e1c s\\u1ea3n ph\\u1ea9m li\\u00ean quan \\u0111\\u1ebfn thi\\u1ebft b\\u1ecb y t\\u1ebf, quang h\\u1ecdc v\\u00e0 thi\\u1ebft b\\u1ecb \\u00e2m thanh.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"\\u00dac: S\\u1ea3n ph\\u1ea9m kim lo\\u1ea1i t\\u1ea5m.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vi\\u1ec7t Nam: M\\u00e1y t\\u1ef1 \\u0111\\u1ed9ng h\\u00f3a nh\\u1ecf; bu l\\u00f4ng xe m\\u00e1y v\\u00e0 \\u00f4 t\\u00f4; s\\u1ea3n ph\\u1ea9m trong ng\\u00e0nh d\\u1ea7u kh\\u00ed.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"C\\u00e1c th\\u1ecb tr\\u01b0\\u1eddng v\\u00e0 s\\u1ea3n ph\\u1ea9m kh\\u00e1c.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i cung c\\u1ea5p d\\u1ecbch v\\u1ee5 trong nhi\\u1ec1u l\\u0129nh v\\u1ef1c.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ch\\u00fang t\\u00f4i lu\\u00f4n \\u0111\\u00e1p \\u1ee9ng y\\u00eau c\\u1ea7u thi\\u1ebft k\\u1ebf c\\u1ee7a kh\\u00e1ch h\\u00e0ng. Ngo\\u1ea1i h\\u00ecnh v\\u00e0 k\\u00edch th\\u01b0\\u1edbc l\\u00e0 nh\\u1eefng y\\u1ebfu t\\u1ed1 ch\\u00fang t\\u00f4i coi tr\\u1ecdng nh\\u1ea5t.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"vi|language\"],\"ct_animate\":\"wow fadeInUp\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"C\\u00f3 c\\u00e2u h\\u1ecfi n\\u00e0o kh\\u00f4ng?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Li\\u00ean h\\u1ec7 \\u0111\\u1ec3 nh\\u1eadn b\\u00e1o gi\\u00e1:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i c\\u00f3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c \\u0111\\u01a1n gi\\u1ea3n.\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ch\\u00fang t\\u00f4i lu\\u00f4n mang \\u0111\\u1ebfn c\\u1ea3m gi\\u00e1c an t\\u00e2m v\\u1ec1 ch\\u1ea5t l\\u01b0\\u1ee3ng v\\u00e0 ti\\u1ebfn \\u0111\\u1ed9.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"T\\u00ecm ch\\u00fang t\\u00f4i\",\"description\":\"Ch\\u00fang t\\u00f4i hi\\u1ec3u t\\u1ea7m quan tr\\u1ecdng c\\u1ee7a vi\\u1ec7c x\\u1eed l\\u00fd m\\u1ed7i d\\u1ef1 \\u00e1n theo m\\u1ed9t c\\u00e1ch ti\\u1ebfp c\\u1eadn to\\u00e0n di\\u1ec7n.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"K\\u1ebft n\\u1ed1i v\\u1edbi ch\\u00fang t\\u00f4i\",\"description\":\"\\u0110i\\u1ec1u l\\u00e0m ch\\u00fang t\\u00f4i kh\\u00e1c bi\\u1ec7t so v\\u1edbi c\\u00e1c c\\u00f4ng ty kh\\u00e1c l\\u00e0 chuy\\u00ean m\\u00f4n trong vi\\u1ec7c t\\u1ea1o ra c\\u00e1c gi\\u1ea3i ph\\u00e1p t\\u00f9y ch\\u1ec9nh.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Thanh to\\u00e1n cho ch\\u00fang t\\u00f4i\",\"description\":\"Ch\\u00fang t\\u00f4i khuy\\u1ebfn kh\\u00edch m\\u1ed7i th\\u00e0nh vi\\u00ean trong \\u0111\\u1ed9i ng\\u0169 tr\\u1edf th\\u00e0nh phi\\u00ean b\\u1ea3n t\\u1ed1t nh\\u1ea5t c\\u1ee7a ch\\u00ednh m\\u00ecnh, t\\u1ea1o ra m\\u1ed9t m\\u00f4i tr\\u01b0\\u1eddng linh ho\\u1ea1t v\\u00e0 h\\u1ee3p t\\u00e1c.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"\\u0110\\u1ea1t \\u0111\\u01b0\\u1ee3c \\u01b0\\u1edbc m\\u01a1 c\\u1ee7a b\\u1ea1n\",\"description\":\"C\\u1ed1t l\\u00f5i c\\u1ee7a m\\u1ed7i doanh nghi\\u1ec7p l\\u00e0 nh\\u1eefng gi\\u1ea3i ph\\u00e1p \\u0111\\u1ed9c \\u0111\\u00e1o, truy\\u1ec1n c\\u1ea3m h\\u1ee9ng cho s\\u1ef1 \\u0111\\u1ed5i m\\u1edbi v\\u00e0 ph\\u00e1t tri\\u1ec3n.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Li\\u00ean h\\u1ec7 v\\u1edbi ch\\u00fang t\\u00f4i b\\u1ea5t c\\u1ee9 l\\u00fac n\\u00e0o n\\u1ebfu b\\u1ea1n c\\u1ea7n s\\u1ef1 gi\\u00fap \\u0111\\u1ee1...\",\"title_color\":\"#85B23B\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9808,3104,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(9812,3105,'_elementor_edit_mode','builder'),(9813,3105,'_elementor_template_type','wp-page'),(9814,3105,'_elementor_version','3.24.7'),(9815,3105,'_wp_page_template','default'),(9816,3105,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i cung c\\u1ea5p nhi\\u1ec1u lo\\u1ea1i s\\u1ea3n ph\\u1ea9m cho ng\\u00e0nh c\\u00f4ng nghi\\u1ec7p c\\u01a1 kh\\u00ed tr\\u00ean to\\u00e0n Vi\\u1ec7t Nam v\\u00e0 qu\\u1ed1c t\\u1ebf, \\u0111\\u1eb7c bi\\u1ec7t t\\u1ea1i c\\u00e1c th\\u1ecb tr\\u01b0\\u1eddng tr\\u1ecdng \\u0111i\\u1ec3m nh\\u01b0 Nh\\u1eadt B\\u1ea3n, H\\u00e0n Qu\\u1ed1c, Hoa K\\u1ef3 v\\u00e0 \\u00dac. Ch\\u00fang t\\u00f4i c\\u0169ng c\\u00f3 kinh nghi\\u1ec7m xu\\u1ea5t kh\\u1ea9u \\u0111\\u1ebfn c\\u00e1c th\\u1ecb tr\\u01b0\\u1eddng n\\u00e0y.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Th\\u1ebf m\\u1ea1nh l\\u1edbn nh\\u1ea5t c\\u1ee7a ch\\u00fang t\\u00f4i n\\u1eb1m \\u1edf \\u0111\\u1ed9i ng\\u0169 nh\\u00e2n l\\u1ef1c tr\\u1ebb trung, \\u0111am m\\u00ea h\\u1ecdc h\\u1ecfi, s\\u00e1ng t\\u1ea1o v\\u00e0 t\\u1ef1 tin, c\\u00f3 kh\\u1ea3 n\\u0103ng s\\u1ea3n xu\\u1ea5t \\u0111a d\\u1ea1ng c\\u00e1c s\\u1ea3n ph\\u1ea9m c\\u01a1 kh\\u00ed v\\u1edbi ch\\u1ea5t l\\u01b0\\u1ee3ng lu\\u00f4n \\u1ed5n \\u0111\\u1ecbnh.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=oVQ4_PIqgz8\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Kh\\u00e1ch h\\u00e0ng\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Nh\\u00e2n s\\u1ef1\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"S\\u1ed1 \\u0111\\u01a1n h\\u00e0ng m\\u1ed7i n\\u0103m\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ch\\u00fang t\\u00f4i \\u0111\\u00e3 b\\u1eaft \\u0111\\u1ea7u m\\u1edf m\\u1ed9t c\\u1eeda h\\u00e0ng tr\\u00ean Alibaba \\u0111\\u1ec3 k\\u1ebft n\\u1ed1i v\\u1edbi c\\u00e1c \\u0111\\u01a1n h\\u00e0ng t\\u1eeb kh\\u1eafp n\\u01a1i tr\\u00ean th\\u1ebf gi\\u1edbi.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0e89391\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i n\\u1ed7 l\\u1ef1c tr\\u1edf th\\u00e0nh m\\u1ed9t trong nh\\u1eefng c\\u00f4ng ty ch\\u1ebf bi\\u1ebfn c\\u01a1 kh\\u00ed h\\u00e0ng \\u0111\\u1ea7u c\\u1ee7a Vi\\u1ec7t Nam, cung c\\u1ea5p ra th\\u1ecb tr\\u01b0\\u1eddng qu\\u1ed1c t\\u1ebf v\\u00e0o n\\u0103m 2030. Trong t\\u01b0\\u01a1ng lai, ch\\u00fang t\\u00f4i h\\u01b0\\u1edbng \\u0111\\u1ebfn vi\\u1ec7c s\\u1ea3n xu\\u1ea5t c\\u00e1c s\\u1ea3n ph\\u1ea9m m\\u00e1y m\\u00f3c ho\\u00e0n ch\\u1ec9nh \\u0111\\u1ec3 giao tr\\u1ef1c ti\\u1ebfp \\u0111\\u1ebfn ng\\u01b0\\u1eddi s\\u1eed d\\u1ee5ng cu\\u1ed1i.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>M\\u1ee5c ti\\u00eau \\u0111\\u1ea1t \\u0111\\u01b0\\u1ee3c v\\u00e0o n\\u0103m 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"\\u0110\\u00f4ng \\u00c1 (Nh\\u1eadt B\\u1ea3n, H\\u00e0n Qu\\u1ed1c, v.v.): Xu\\u1ea5t kh\\u1ea9u c\\u00e1c linh ki\\u1ec7n m\\u00e1y m\\u00f3c thay th\\u1ebf, ph\\u1ee5 ki\\u1ec7n xe m\\u00e1y v\\u00e0 \\u00f4 t\\u00f4, ph\\u1ee5 ki\\u1ec7n ng\\u00e0nh n\\u01b0\\u1edbc, khu\\u00f4n m\\u1eabu v\\u00e0 c\\u00e1c b\\u1ed9 ph\\u1eadn c\\u01a1 kh\\u00ed kh\\u00e1c.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Ch\\u00e2u \\u00c2u (\\u0110\\u1ee9c, Bulgaria, H\\u00e0 Lan, v.v.): S\\u1ea3n xu\\u1ea5t khu\\u00f4n jig cho v\\u00f2ng bi \\u00f4 t\\u00f4 v\\u00e0 c\\u00e1c b\\u1ed9 ph\\u1eadn h\\u1ed9p \\u0111i\\u1ec7n cho m\\u00e1y m\\u00f3c t\\u1ef1 \\u0111\\u1ed9ng h\\u00f3a.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"Hoa K\\u1ef3: C\\u00e1c s\\u1ea3n ph\\u1ea9m li\\u00ean quan \\u0111\\u1ebfn thi\\u1ebft b\\u1ecb y t\\u1ebf, quang h\\u1ecdc v\\u00e0 thi\\u1ebft b\\u1ecb \\u00e2m thanh.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"\\u00dac: S\\u1ea3n ph\\u1ea9m kim lo\\u1ea1i t\\u1ea5m.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vi\\u1ec7t Nam: M\\u00e1y t\\u1ef1 \\u0111\\u1ed9ng h\\u00f3a nh\\u1ecf; bu l\\u00f4ng xe m\\u00e1y v\\u00e0 \\u00f4 t\\u00f4; s\\u1ea3n ph\\u1ea9m trong ng\\u00e0nh d\\u1ea7u kh\\u00ed.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"C\\u00e1c th\\u1ecb tr\\u01b0\\u1eddng v\\u00e0 s\\u1ea3n ph\\u1ea9m kh\\u00e1c.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i cung c\\u1ea5p d\\u1ecbch v\\u1ee5 trong nhi\\u1ec1u l\\u0129nh v\\u1ef1c.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ch\\u00fang t\\u00f4i lu\\u00f4n \\u0111\\u00e1p \\u1ee9ng y\\u00eau c\\u1ea7u thi\\u1ebft k\\u1ebf c\\u1ee7a kh\\u00e1ch h\\u00e0ng. Ngo\\u1ea1i h\\u00ecnh v\\u00e0 k\\u00edch th\\u01b0\\u1edbc l\\u00e0 nh\\u1eefng y\\u1ebfu t\\u1ed1 ch\\u00fang t\\u00f4i coi tr\\u1ecdng nh\\u1ea5t.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"vi|language\"],\"ct_animate\":\"wow fadeInUp\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"D\\u1ecbch v\\u1ee5 kh\\u00e1c\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"C\\u00f3 c\\u00e2u h\\u1ecfi n\\u00e0o kh\\u00f4ng?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Li\\u00ean h\\u1ec7 \\u0111\\u1ec3 nh\\u1eadn b\\u00e1o gi\\u00e1:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i c\\u00f3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c \\u0111\\u01a1n gi\\u1ea3n.\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ch\\u00fang t\\u00f4i lu\\u00f4n mang \\u0111\\u1ebfn c\\u1ea3m gi\\u00e1c an t\\u00e2m v\\u1ec1 ch\\u1ea5t l\\u01b0\\u1ee3ng v\\u00e0 ti\\u1ebfn \\u0111\\u1ed9.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"T\\u00ecm ch\\u00fang t\\u00f4i\",\"description\":\"Ch\\u00fang t\\u00f4i hi\\u1ec3u t\\u1ea7m quan tr\\u1ecdng c\\u1ee7a vi\\u1ec7c x\\u1eed l\\u00fd m\\u1ed7i d\\u1ef1 \\u00e1n theo m\\u1ed9t c\\u00e1ch ti\\u1ebfp c\\u1eadn to\\u00e0n di\\u1ec7n.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"K\\u1ebft n\\u1ed1i v\\u1edbi ch\\u00fang t\\u00f4i\",\"description\":\"\\u0110i\\u1ec1u l\\u00e0m ch\\u00fang t\\u00f4i kh\\u00e1c bi\\u1ec7t so v\\u1edbi c\\u00e1c c\\u00f4ng ty kh\\u00e1c l\\u00e0 chuy\\u00ean m\\u00f4n trong vi\\u1ec7c t\\u1ea1o ra c\\u00e1c gi\\u1ea3i ph\\u00e1p t\\u00f9y ch\\u1ec9nh.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Thanh to\\u00e1n cho ch\\u00fang t\\u00f4i\",\"description\":\"Ch\\u00fang t\\u00f4i khuy\\u1ebfn kh\\u00edch m\\u1ed7i th\\u00e0nh vi\\u00ean trong \\u0111\\u1ed9i ng\\u0169 tr\\u1edf th\\u00e0nh phi\\u00ean b\\u1ea3n t\\u1ed1t nh\\u1ea5t c\\u1ee7a ch\\u00ednh m\\u00ecnh, t\\u1ea1o ra m\\u1ed9t m\\u00f4i tr\\u01b0\\u1eddng linh ho\\u1ea1t v\\u00e0 h\\u1ee3p t\\u00e1c.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"\\u0110\\u1ea1t \\u0111\\u01b0\\u1ee3c \\u01b0\\u1edbc m\\u01a1 c\\u1ee7a b\\u1ea1n\",\"description\":\"C\\u1ed1t l\\u00f5i c\\u1ee7a m\\u1ed7i doanh nghi\\u1ec7p l\\u00e0 nh\\u1eefng gi\\u1ea3i ph\\u00e1p \\u0111\\u1ed9c \\u0111\\u00e1o, truy\\u1ec1n c\\u1ea3m h\\u1ee9ng cho s\\u1ef1 \\u0111\\u1ed5i m\\u1edbi v\\u00e0 ph\\u00e1t tri\\u1ec3n.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Li\\u00ean h\\u1ec7 v\\u1edbi ch\\u00fang t\\u00f4i b\\u1ea5t c\\u1ee9 l\\u00fac n\\u00e0o n\\u1ebfu b\\u1ea1n c\\u1ea7n s\\u1ef1 gi\\u00fap \\u0111\\u1ee1...\",\"title_color\":\"#85B23B\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9817,3105,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(9822,3106,'_elementor_edit_mode','builder'),(9823,3106,'_elementor_template_type','wp-page'),(9824,3106,'_elementor_version','3.24.7'),(9825,3106,'_wp_page_template','default'),(9826,3106,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u3001\\u30d9\\u30c8\\u30ca\\u30e0\\u5168\\u571f\\u304a\\u3088\\u3073\\u4e16\\u754c\\u4e2d\\u306e\\u6a5f\\u68b0\\u7523\\u696d\\u5411\\u3051\\u306b\\u5e45\\u5e83\\u3044\\u88fd\\u54c1\\u3092\\u63d0\\u4f9b\\u3057\\u3066\\u304a\\u308a\\u3001\\u7279\\u306b\\u65e5\\u672c\\u3001\\u97d3\\u56fd\\u3001\\u30a2\\u30e1\\u30ea\\u30ab\\u3001\\u30aa\\u30fc\\u30b9\\u30c8\\u30e9\\u30ea\\u30a2\\u3068\\u3044\\u3063\\u305f\\u4e3b\\u8981\\u5e02\\u5834\\u3067\\u306e\\u53d6\\u5f15\\u306b\\u529b\\u3092\\u5165\\u308c\\u3066\\u3044\\u307e\\u3059\\u3002\\u307e\\u305f\\u3001\\u3053\\u308c\\u3089\\u306e\\u5e02\\u5834\\u3078\\u306e\\u8f38\\u51fa\\u7d4c\\u9a13\\u3082\\u8c4a\\u5bcc\\u3067\\u3059\\u3002\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306e\\u6700\\u5927\\u306e\\u5f37\\u307f\\u306f\\u3001\\u5b66\\u3076\\u3053\\u3068\\u3001\\u9769\\u65b0\\u3059\\u308b\\u3053\\u3068\\u306b\\u60c5\\u71b1\\u3092\\u6301\\u3061\\u3001\\u81ea\\u4fe1\\u3092\\u6301\\u3063\\u305f\\u82e5\\u3044\\u52b4\\u50cd\\u529b\\u306b\\u3042\\u308a\\u307e\\u3059\\u3002\\u3053\\u306e\\u30c1\\u30fc\\u30e0\\u306f\\u3001\\u5e38\\u306b\\u5b89\\u5b9a\\u3057\\u305f\\u9ad8\\u54c1\\u8cea\\u306e\\u6a5f\\u68b0\\u88fd\\u54c1\\u3092\\u591a\\u69d8\\u306b\\u88fd\\u9020\\u3059\\u308b\\u80fd\\u529b\\u3092\\u5099\\u3048\\u3066\\u3044\\u307e\\u3059\\u3002<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=oVQ4_PIqgz8\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"\\u9867\\u5ba2\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"\\u4eba\\u4e8b\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"\\u5e74\\u9593\\u6ce8\\u6587\\u6570\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306f\\u3001\\u4e16\\u754c\\u4e2d\\u304b\\u3089\\u306e\\u6ce8\\u6587\\u3068\\u63a5\\u7d9a\\u3059\\u308b\\u305f\\u3081\\u306bAlibaba\\u306b\\u5e97\\u8217\\u3092\\u958b\\u8a2d\\u3057\\u59cb\\u3081\\u307e\\u3057\\u305f\\u3002<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0e89391\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u30012030\\u5e74\\u307e\\u3067\\u306b\\u30d9\\u30c8\\u30ca\\u30e0\\u306e\\u4e3b\\u8981\\u306a\\u6a5f\\u68b0\\u52a0\\u5de5\\u4f01\\u696d\\u306e\\u4e00\\u3064\\u3068\\u3057\\u3066\\u3001\\u56fd\\u969b\\u5e02\\u5834\\u306b\\u4f9b\\u7d66\\u3059\\u308b\\u3053\\u3068\\u3092\\u76ee\\u6307\\u3057\\u3066\\u3044\\u307e\\u3059\\u3002\\u5c06\\u6765\\u7684\\u306b\\u306f\\u3001\\u5b8c\\u6210\\u3057\\u305f\\u6a5f\\u68b0\\u88fd\\u54c1\\u3092\\u76f4\\u63a5\\u30a8\\u30f3\\u30c9\\u30e6\\u30fc\\u30b6\\u30fc\\u306b\\u63d0\\u4f9b\\u3059\\u308b\\u3053\\u3068\\u3092\\u76ee\\u6a19\\u3068\\u3057\\u3066\\u3044\\u307e\\u3059\\u3002\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2026\\u5e74\\u307e\\u3067\\u306b\\u9054\\u6210\\u3059\\u308b\\u76ee\\u6a19:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"\\u6771\\u30a2\\u30b8\\u30a2\\uff08\\u65e5\\u672c\\u3001\\u97d3\\u56fd\\u306a\\u3069\\uff09\\uff1a\\u4ea4\\u63db\\u7528\\u6a5f\\u68b0\\u90e8\\u54c1\\u3001\\u30aa\\u30fc\\u30c8\\u30d0\\u30a4\\u304a\\u3088\\u3073\\u81ea\\u52d5\\u8eca\\u306e\\u30a2\\u30af\\u30bb\\u30b5\\u30ea\\u30fc\\u3001\\u6c34\\u7523\\u696d\\u7528\\u306e\\u30d5\\u30a3\\u30c3\\u30c6\\u30a3\\u30f3\\u30b0\\u3001\\u91d1\\u578b\\u3001\\u305d\\u306e\\u4ed6\\u306e\\u6a5f\\u68b0\\u90e8\\u54c1\\u306e\\u8f38\\u51fa\\u3002\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"\\u30e8\\u30fc\\u30ed\\u30c3\\u30d1\\uff08\\u30c9\\u30a4\\u30c4\\u3001\\u30d6\\u30eb\\u30ac\\u30ea\\u30a2\\u3001\\u30aa\\u30e9\\u30f3\\u30c0\\u306a\\u3069\\uff09\\uff1a\\u81ea\\u52d5\\u8eca\\u7528\\u30d9\\u30a2\\u30ea\\u30f3\\u30b0\\u306e\\u6cbb\\u5177\\u304a\\u3088\\u3073\\u81ea\\u52d5\\u5316\\u6a5f\\u68b0\\u306e\\u96fb\\u6c17\\u30dc\\u30c3\\u30af\\u30b9\\u90e8\\u54c1\\u306e\\u751f\\u7523\\u3002\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"\\u30a2\\u30e1\\u30ea\\u30ab\\u5408\\u8846\\u56fd\\uff1a\\u533b\\u7642\\u6a5f\\u5668\\u3001\\u5149\\u5b66\\u6a5f\\u5668\\u3001\\u97f3\\u97ff\\u6a5f\\u5668\\u306b\\u95a2\\u9023\\u3059\\u308b\\u88fd\\u54c1\\u3002\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"\\u30aa\\u30fc\\u30b9\\u30c8\\u30e9\\u30ea\\u30a2\\uff1a\\u677f\\u91d1\\u88fd\\u54c1\\u3002\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"\\u30d9\\u30c8\\u30ca\\u30e0\\uff1a\\u5c0f\\u578b\\u81ea\\u52d5\\u5316\\u6a5f\\u68b0\\u3001\\u30aa\\u30fc\\u30c8\\u30d0\\u30a4\\u304a\\u3088\\u3073\\u81ea\\u52d5\\u8eca\\u306e\\u30dc\\u30eb\\u30c8\\u3001\\u77f3\\u6cb9\\u304a\\u3088\\u3073\\u30ac\\u30b9\\u7523\\u696d\\u306e\\u88fd\\u54c1\\u3002\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"\\u305d\\u306e\\u4ed6\\u306e\\u5e02\\u5834\\u3068\\u88fd\\u54c1\\u3002\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u8907\\u6570\\u306e\\u696d\\u754c\\u3067\\u30b5\\u30fc\\u30d3\\u30b9\\u3092\\u63d0\\u4f9b\\u3057\\u3066\\u3044\\u307e\\u3059\\u3002\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306f\\u5e38\\u306b\\u9867\\u5ba2\\u306e\\u30c7\\u30b6\\u30a4\\u30f3\\u8981\\u6c42\\u3092\\u6e80\\u305f\\u3057\\u307e\\u3059\\u3002\\u5916\\u89b3\\u3068\\u5bf8\\u6cd5\\u306f\\u3001\\u6700\\u3082\\u91cd\\u8981\\u8996\\u3057\\u3066\\u3044\\u308b\\u8981\\u7d20\\u3067\\u3059\\u3002<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"ja|language\"],\"ct_animate\":\"wow fadeInUp\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"\\u8cea\\u554f\\u304c\\u3042\\u308a\\u307e\\u3059\\u304b\\uff1f\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"\\u898b\\u7a4d\\u3082\\u308a\\u3092\\u53d6\\u5f97\\u3059\\u308b\\u305f\\u3081\\u306e\\u9023\\u7d61\\u5148\\uff1a\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u7c21\\u5358\\u306a\\u4f5c\\u696d\\u624b\\u9806\\u3092\\u6301\\u3063\\u3066\\u3044\\u307e\\u3059\\u3002\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306f\\u5e38\\u306b\\u54c1\\u8cea\\u3068\\u9032\\u6357\\u306b\\u304a\\u3044\\u3066\\u5b89\\u5fc3\\u611f\\u3092\\u63d0\\u4f9b\\u3057\\u307e\\u3059\\u3002<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"\\u79c1\\u305f\\u3061\\u3092\\u63a2\\u3059\",\"description\":\"\\u79c1\\u305f\\u3061\\u306f\\u3001\\u5404\\u30d7\\u30ed\\u30b8\\u30a7\\u30af\\u30c8\\u3092\\u7dcf\\u5408\\u7684\\u306b\\u53d6\\u308a\\u6271\\u3046\\u91cd\\u8981\\u6027\\u3092\\u7406\\u89e3\\u3057\\u3066\\u3044\\u307e\\u3059\\u3002\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"\\u79c1\\u305f\\u3061\\u3068\\u63a5\\u7d9a\\u3059\\u308b\",\"description\":\"\\u79c1\\u305f\\u3061\\u304c\\u4ed6\\u306e\\u30a8\\u30fc\\u30b8\\u30a7\\u30f3\\u30b7\\u30fc\\u3068\\u7570\\u306a\\u308b\\u70b9\\u306f\\u3001\\u30ab\\u30b9\\u30bf\\u30de\\u30a4\\u30ba\\u3055\\u308c\\u305f\\u30bd\\u30ea\\u30e5\\u30fc\\u30b7\\u30e7\\u30f3\\u3092\\u4f5c\\u6210\\u3059\\u308b\\u5c02\\u9580\\u77e5\\u8b58\\u306b\\u3042\\u308a\\u307e\\u3059\\u3002\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"\\u79c1\\u305f\\u3061\\u306b\\u652f\\u6255\\u3046\",\"description\":\"\\u79c1\\u305f\\u3061\\u306f\\u3001\\u5404\\u30c1\\u30fc\\u30e0\\u30e1\\u30f3\\u30d0\\u30fc\\u304c\\u81ea\\u5206\\u81ea\\u8eab\\u306e\\u6700\\u9ad8\\u306e\\u59ff\\u3092\\u76ee\\u6307\\u3059\\u3053\\u3068\\u3092\\u5968\\u52b1\\u3057\\u3001\\u67d4\\u8edf\\u3067\\u5354\\u529b\\u7684\\u306a\\u74b0\\u5883\\u3092\\u80b2\\u3093\\u3067\\u3044\\u307e\\u3059\\u3002\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"\\u3042\\u306a\\u305f\\u306e\\u5922\\u3092\\u5b9f\\u73fe\\u3059\\u308b\",\"description\":\"\\u3069\\u306e\\u30d3\\u30b8\\u30cd\\u30b9\\u306b\\u3082\\u3001\\u9769\\u65b0\\u3068\\u9032\\u6b69\\u3092\\u4fc3\\u3059\\u72ec\\u81ea\\u306e\\u30bd\\u30ea\\u30e5\\u30fc\\u30b7\\u30e7\\u30f3\\u304c\\u3042\\u308a\\u307e\\u3059\\u3002\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u3044\\u3064\\u3067\\u3082\\u3069\\u3093\\u306a\\u52a9\\u3051\\u304c\\u5fc5\\u8981\\u306a\\u5834\\u5408\\u3067\\u3082\\u3001\\u79c1\\u305f\\u3061\\u306b\\u3054\\u9023\\u7d61\\u304f\\u3060\\u3055\\u3044...\",\"title_color\":\"#85B23B\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9827,3106,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(9831,3107,'_elementor_edit_mode','builder'),(9832,3107,'_elementor_template_type','wp-page'),(9833,3107,'_elementor_version','3.24.7'),(9834,3107,'_wp_page_template','default'),(9835,3107,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u3001\\u30d9\\u30c8\\u30ca\\u30e0\\u5168\\u571f\\u304a\\u3088\\u3073\\u4e16\\u754c\\u4e2d\\u306e\\u6a5f\\u68b0\\u7523\\u696d\\u5411\\u3051\\u306b\\u5e45\\u5e83\\u3044\\u88fd\\u54c1\\u3092\\u63d0\\u4f9b\\u3057\\u3066\\u304a\\u308a\\u3001\\u7279\\u306b\\u65e5\\u672c\\u3001\\u97d3\\u56fd\\u3001\\u30a2\\u30e1\\u30ea\\u30ab\\u3001\\u30aa\\u30fc\\u30b9\\u30c8\\u30e9\\u30ea\\u30a2\\u3068\\u3044\\u3063\\u305f\\u4e3b\\u8981\\u5e02\\u5834\\u3067\\u306e\\u53d6\\u5f15\\u306b\\u529b\\u3092\\u5165\\u308c\\u3066\\u3044\\u307e\\u3059\\u3002\\u307e\\u305f\\u3001\\u3053\\u308c\\u3089\\u306e\\u5e02\\u5834\\u3078\\u306e\\u8f38\\u51fa\\u7d4c\\u9a13\\u3082\\u8c4a\\u5bcc\\u3067\\u3059\\u3002\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306e\\u6700\\u5927\\u306e\\u5f37\\u307f\\u306f\\u3001\\u5b66\\u3076\\u3053\\u3068\\u3001\\u9769\\u65b0\\u3059\\u308b\\u3053\\u3068\\u306b\\u60c5\\u71b1\\u3092\\u6301\\u3061\\u3001\\u81ea\\u4fe1\\u3092\\u6301\\u3063\\u305f\\u82e5\\u3044\\u52b4\\u50cd\\u529b\\u306b\\u3042\\u308a\\u307e\\u3059\\u3002\\u3053\\u306e\\u30c1\\u30fc\\u30e0\\u306f\\u3001\\u5e38\\u306b\\u5b89\\u5b9a\\u3057\\u305f\\u9ad8\\u54c1\\u8cea\\u306e\\u6a5f\\u68b0\\u88fd\\u54c1\\u3092\\u591a\\u69d8\\u306b\\u88fd\\u9020\\u3059\\u308b\\u80fd\\u529b\\u3092\\u5099\\u3048\\u3066\\u3044\\u307e\\u3059\\u3002<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=oVQ4_PIqgz8\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"\\u9867\\u5ba2\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"\\u4eba\\u4e8b\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"\\u5e74\\u9593\\u6ce8\\u6587\\u6570\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306f\\u3001\\u4e16\\u754c\\u4e2d\\u304b\\u3089\\u306e\\u6ce8\\u6587\\u3068\\u63a5\\u7d9a\\u3059\\u308b\\u305f\\u3081\\u306bAlibaba\\u306b\\u5e97\\u8217\\u3092\\u958b\\u8a2d\\u3057\\u59cb\\u3081\\u307e\\u3057\\u305f\\u3002<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0e89391\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u30012030\\u5e74\\u307e\\u3067\\u306b\\u30d9\\u30c8\\u30ca\\u30e0\\u306e\\u4e3b\\u8981\\u306a\\u6a5f\\u68b0\\u52a0\\u5de5\\u4f01\\u696d\\u306e\\u4e00\\u3064\\u3068\\u3057\\u3066\\u3001\\u56fd\\u969b\\u5e02\\u5834\\u306b\\u4f9b\\u7d66\\u3059\\u308b\\u3053\\u3068\\u3092\\u76ee\\u6307\\u3057\\u3066\\u3044\\u307e\\u3059\\u3002\\u5c06\\u6765\\u7684\\u306b\\u306f\\u3001\\u5b8c\\u6210\\u3057\\u305f\\u6a5f\\u68b0\\u88fd\\u54c1\\u3092\\u76f4\\u63a5\\u30a8\\u30f3\\u30c9\\u30e6\\u30fc\\u30b6\\u30fc\\u306b\\u63d0\\u4f9b\\u3059\\u308b\\u3053\\u3068\\u3092\\u76ee\\u6a19\\u3068\\u3057\\u3066\\u3044\\u307e\\u3059\\u3002\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2026\\u5e74\\u307e\\u3067\\u306b\\u9054\\u6210\\u3059\\u308b\\u76ee\\u6a19:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"\\u6771\\u30a2\\u30b8\\u30a2\\uff08\\u65e5\\u672c\\u3001\\u97d3\\u56fd\\u306a\\u3069\\uff09\\uff1a\\u4ea4\\u63db\\u7528\\u6a5f\\u68b0\\u90e8\\u54c1\\u3001\\u30aa\\u30fc\\u30c8\\u30d0\\u30a4\\u304a\\u3088\\u3073\\u81ea\\u52d5\\u8eca\\u306e\\u30a2\\u30af\\u30bb\\u30b5\\u30ea\\u30fc\\u3001\\u6c34\\u7523\\u696d\\u7528\\u306e\\u30d5\\u30a3\\u30c3\\u30c6\\u30a3\\u30f3\\u30b0\\u3001\\u91d1\\u578b\\u3001\\u305d\\u306e\\u4ed6\\u306e\\u6a5f\\u68b0\\u90e8\\u54c1\\u306e\\u8f38\\u51fa\\u3002\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"\\u30e8\\u30fc\\u30ed\\u30c3\\u30d1\\uff08\\u30c9\\u30a4\\u30c4\\u3001\\u30d6\\u30eb\\u30ac\\u30ea\\u30a2\\u3001\\u30aa\\u30e9\\u30f3\\u30c0\\u306a\\u3069\\uff09\\uff1a\\u81ea\\u52d5\\u8eca\\u7528\\u30d9\\u30a2\\u30ea\\u30f3\\u30b0\\u306e\\u6cbb\\u5177\\u304a\\u3088\\u3073\\u81ea\\u52d5\\u5316\\u6a5f\\u68b0\\u306e\\u96fb\\u6c17\\u30dc\\u30c3\\u30af\\u30b9\\u90e8\\u54c1\\u306e\\u751f\\u7523\\u3002\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"\\u30a2\\u30e1\\u30ea\\u30ab\\u5408\\u8846\\u56fd\\uff1a\\u533b\\u7642\\u6a5f\\u5668\\u3001\\u5149\\u5b66\\u6a5f\\u5668\\u3001\\u97f3\\u97ff\\u6a5f\\u5668\\u306b\\u95a2\\u9023\\u3059\\u308b\\u88fd\\u54c1\\u3002\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"\\u30aa\\u30fc\\u30b9\\u30c8\\u30e9\\u30ea\\u30a2\\uff1a\\u677f\\u91d1\\u88fd\\u54c1\\u3002\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"\\u30d9\\u30c8\\u30ca\\u30e0\\uff1a\\u5c0f\\u578b\\u81ea\\u52d5\\u5316\\u6a5f\\u68b0\\u3001\\u30aa\\u30fc\\u30c8\\u30d0\\u30a4\\u304a\\u3088\\u3073\\u81ea\\u52d5\\u8eca\\u306e\\u30dc\\u30eb\\u30c8\\u3001\\u77f3\\u6cb9\\u304a\\u3088\\u3073\\u30ac\\u30b9\\u7523\\u696d\\u306e\\u88fd\\u54c1\\u3002\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"\\u305d\\u306e\\u4ed6\\u306e\\u5e02\\u5834\\u3068\\u88fd\\u54c1\\u3002\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u8907\\u6570\\u306e\\u696d\\u754c\\u3067\\u30b5\\u30fc\\u30d3\\u30b9\\u3092\\u63d0\\u4f9b\\u3057\\u3066\\u3044\\u307e\\u3059\\u3002\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306f\\u5e38\\u306b\\u9867\\u5ba2\\u306e\\u30c7\\u30b6\\u30a4\\u30f3\\u8981\\u6c42\\u3092\\u6e80\\u305f\\u3057\\u307e\\u3059\\u3002\\u5916\\u89b3\\u3068\\u5bf8\\u6cd5\\u306f\\u3001\\u6700\\u3082\\u91cd\\u8981\\u8996\\u3057\\u3066\\u3044\\u308b\\u8981\\u7d20\\u3067\\u3059\\u3002<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"ja|language\"],\"ct_animate\":\"wow fadeInUp\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"\\u8cea\\u554f\\u304c\\u3042\\u308a\\u307e\\u3059\\u304b\\uff1f\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"\\u898b\\u7a4d\\u3082\\u308a\\u3092\\u53d6\\u5f97\\u3059\\u308b\\u305f\\u3081\\u306e\\u9023\\u7d61\\u5148\\uff1a\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u7c21\\u5358\\u306a\\u4f5c\\u696d\\u624b\\u9806\\u3092\\u6301\\u3063\\u3066\\u3044\\u307e\\u3059\\u3002\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306f\\u5e38\\u306b\\u54c1\\u8cea\\u3068\\u9032\\u6357\\u306b\\u304a\\u3044\\u3066\\u5b89\\u5fc3\\u611f\\u3092\\u63d0\\u4f9b\\u3057\\u307e\\u3059\\u3002<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"\\u79c1\\u305f\\u3061\\u3092\\u63a2\\u3059\",\"description\":\"\\u79c1\\u305f\\u3061\\u306f\\u3001\\u5404\\u30d7\\u30ed\\u30b8\\u30a7\\u30af\\u30c8\\u3092\\u7dcf\\u5408\\u7684\\u306b\\u53d6\\u308a\\u6271\\u3046\\u91cd\\u8981\\u6027\\u3092\\u7406\\u89e3\\u3057\\u3066\\u3044\\u307e\\u3059\\u3002\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"\\u79c1\\u305f\\u3061\\u3068\\u63a5\\u7d9a\\u3059\\u308b\",\"description\":\"\\u79c1\\u305f\\u3061\\u304c\\u4ed6\\u306e\\u30a8\\u30fc\\u30b8\\u30a7\\u30f3\\u30b7\\u30fc\\u3068\\u7570\\u306a\\u308b\\u70b9\\u306f\\u3001\\u30ab\\u30b9\\u30bf\\u30de\\u30a4\\u30ba\\u3055\\u308c\\u305f\\u30bd\\u30ea\\u30e5\\u30fc\\u30b7\\u30e7\\u30f3\\u3092\\u4f5c\\u6210\\u3059\\u308b\\u5c02\\u9580\\u77e5\\u8b58\\u306b\\u3042\\u308a\\u307e\\u3059\\u3002\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"\\u79c1\\u305f\\u3061\\u306b\\u652f\\u6255\\u3046\",\"description\":\"\\u79c1\\u305f\\u3061\\u306f\\u3001\\u5404\\u30c1\\u30fc\\u30e0\\u30e1\\u30f3\\u30d0\\u30fc\\u304c\\u81ea\\u5206\\u81ea\\u8eab\\u306e\\u6700\\u9ad8\\u306e\\u59ff\\u3092\\u76ee\\u6307\\u3059\\u3053\\u3068\\u3092\\u5968\\u52b1\\u3057\\u3001\\u67d4\\u8edf\\u3067\\u5354\\u529b\\u7684\\u306a\\u74b0\\u5883\\u3092\\u80b2\\u3093\\u3067\\u3044\\u307e\\u3059\\u3002\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"\\u3042\\u306a\\u305f\\u306e\\u5922\\u3092\\u5b9f\\u73fe\\u3059\\u308b\",\"description\":\"\\u3069\\u306e\\u30d3\\u30b8\\u30cd\\u30b9\\u306b\\u3082\\u3001\\u9769\\u65b0\\u3068\\u9032\\u6b69\\u3092\\u4fc3\\u3059\\u72ec\\u81ea\\u306e\\u30bd\\u30ea\\u30e5\\u30fc\\u30b7\\u30e7\\u30f3\\u304c\\u3042\\u308a\\u307e\\u3059\\u3002\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u3044\\u3064\\u3067\\u3082\\u3069\\u3093\\u306a\\u52a9\\u3051\\u304c\\u5fc5\\u8981\\u306a\\u5834\\u5408\\u3067\\u3082\\u3001\\u79c1\\u305f\\u3061\\u306b\\u3054\\u9023\\u7d61\\u304f\\u3060\\u3055\\u3044...\",\"title_color\":\"#85B23B\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9836,3107,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(9840,3108,'_elementor_edit_mode','builder'),(9841,3108,'_elementor_template_type','wp-page'),(9842,3108,'_elementor_version','3.24.7'),(9843,3108,'_wp_page_template','default'),(9844,3108,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u3001\\u30d9\\u30c8\\u30ca\\u30e0\\u5168\\u571f\\u304a\\u3088\\u3073\\u4e16\\u754c\\u4e2d\\u306e\\u6a5f\\u68b0\\u7523\\u696d\\u5411\\u3051\\u306b\\u5e45\\u5e83\\u3044\\u88fd\\u54c1\\u3092\\u63d0\\u4f9b\\u3057\\u3066\\u304a\\u308a\\u3001\\u7279\\u306b\\u65e5\\u672c\\u3001\\u97d3\\u56fd\\u3001\\u30a2\\u30e1\\u30ea\\u30ab\\u3001\\u30aa\\u30fc\\u30b9\\u30c8\\u30e9\\u30ea\\u30a2\\u3068\\u3044\\u3063\\u305f\\u4e3b\\u8981\\u5e02\\u5834\\u3067\\u306e\\u53d6\\u5f15\\u306b\\u529b\\u3092\\u5165\\u308c\\u3066\\u3044\\u307e\\u3059\\u3002\\u307e\\u305f\\u3001\\u3053\\u308c\\u3089\\u306e\\u5e02\\u5834\\u3078\\u306e\\u8f38\\u51fa\\u7d4c\\u9a13\\u3082\\u8c4a\\u5bcc\\u3067\\u3059\\u3002\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306e\\u6700\\u5927\\u306e\\u5f37\\u307f\\u306f\\u3001\\u5b66\\u3076\\u3053\\u3068\\u3001\\u9769\\u65b0\\u3059\\u308b\\u3053\\u3068\\u306b\\u60c5\\u71b1\\u3092\\u6301\\u3061\\u3001\\u81ea\\u4fe1\\u3092\\u6301\\u3063\\u305f\\u82e5\\u3044\\u52b4\\u50cd\\u529b\\u306b\\u3042\\u308a\\u307e\\u3059\\u3002\\u3053\\u306e\\u30c1\\u30fc\\u30e0\\u306f\\u3001\\u5e38\\u306b\\u5b89\\u5b9a\\u3057\\u305f\\u9ad8\\u54c1\\u8cea\\u306e\\u6a5f\\u68b0\\u88fd\\u54c1\\u3092\\u591a\\u69d8\\u306b\\u88fd\\u9020\\u3059\\u308b\\u80fd\\u529b\\u3092\\u5099\\u3048\\u3066\\u3044\\u307e\\u3059\\u3002<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=oVQ4_PIqgz8\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"\\u9867\\u5ba2\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"\\u4eba\\u4e8b\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"\\u5e74\\u9593\\u6ce8\\u6587\\u6570\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306f\\u3001\\u4e16\\u754c\\u4e2d\\u304b\\u3089\\u306e\\u6ce8\\u6587\\u3068\\u63a5\\u7d9a\\u3059\\u308b\\u305f\\u3081\\u306bAlibaba\\u306b\\u5e97\\u8217\\u3092\\u958b\\u8a2d\\u3057\\u59cb\\u3081\\u307e\\u3057\\u305f\\u3002<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0e89391\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u30012030\\u5e74\\u307e\\u3067\\u306b\\u30d9\\u30c8\\u30ca\\u30e0\\u306e\\u4e3b\\u8981\\u306a\\u6a5f\\u68b0\\u52a0\\u5de5\\u4f01\\u696d\\u306e\\u4e00\\u3064\\u3068\\u3057\\u3066\\u3001\\u56fd\\u969b\\u5e02\\u5834\\u306b\\u4f9b\\u7d66\\u3059\\u308b\\u3053\\u3068\\u3092\\u76ee\\u6307\\u3057\\u3066\\u3044\\u307e\\u3059\\u3002\\u5c06\\u6765\\u7684\\u306b\\u306f\\u3001\\u5b8c\\u6210\\u3057\\u305f\\u6a5f\\u68b0\\u88fd\\u54c1\\u3092\\u76f4\\u63a5\\u30a8\\u30f3\\u30c9\\u30e6\\u30fc\\u30b6\\u30fc\\u306b\\u63d0\\u4f9b\\u3059\\u308b\\u3053\\u3068\\u3092\\u76ee\\u6a19\\u3068\\u3057\\u3066\\u3044\\u307e\\u3059\\u3002\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2026\\u5e74\\u307e\\u3067\\u306b\\u9054\\u6210\\u3059\\u308b\\u76ee\\u6a19:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"\\u6771\\u30a2\\u30b8\\u30a2\\uff08\\u65e5\\u672c\\u3001\\u97d3\\u56fd\\u306a\\u3069\\uff09\\uff1a\\u4ea4\\u63db\\u7528\\u6a5f\\u68b0\\u90e8\\u54c1\\u3001\\u30aa\\u30fc\\u30c8\\u30d0\\u30a4\\u304a\\u3088\\u3073\\u81ea\\u52d5\\u8eca\\u306e\\u30a2\\u30af\\u30bb\\u30b5\\u30ea\\u30fc\\u3001\\u6c34\\u7523\\u696d\\u7528\\u306e\\u30d5\\u30a3\\u30c3\\u30c6\\u30a3\\u30f3\\u30b0\\u3001\\u91d1\\u578b\\u3001\\u305d\\u306e\\u4ed6\\u306e\\u6a5f\\u68b0\\u90e8\\u54c1\\u306e\\u8f38\\u51fa\\u3002\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"\\u30e8\\u30fc\\u30ed\\u30c3\\u30d1\\uff08\\u30c9\\u30a4\\u30c4\\u3001\\u30d6\\u30eb\\u30ac\\u30ea\\u30a2\\u3001\\u30aa\\u30e9\\u30f3\\u30c0\\u306a\\u3069\\uff09\\uff1a\\u81ea\\u52d5\\u8eca\\u7528\\u30d9\\u30a2\\u30ea\\u30f3\\u30b0\\u306e\\u6cbb\\u5177\\u304a\\u3088\\u3073\\u81ea\\u52d5\\u5316\\u6a5f\\u68b0\\u306e\\u96fb\\u6c17\\u30dc\\u30c3\\u30af\\u30b9\\u90e8\\u54c1\\u306e\\u751f\\u7523\\u3002\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"\\u30a2\\u30e1\\u30ea\\u30ab\\u5408\\u8846\\u56fd\\uff1a\\u533b\\u7642\\u6a5f\\u5668\\u3001\\u5149\\u5b66\\u6a5f\\u5668\\u3001\\u97f3\\u97ff\\u6a5f\\u5668\\u306b\\u95a2\\u9023\\u3059\\u308b\\u88fd\\u54c1\\u3002\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"\\u30aa\\u30fc\\u30b9\\u30c8\\u30e9\\u30ea\\u30a2\\uff1a\\u677f\\u91d1\\u88fd\\u54c1\\u3002\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"\\u30d9\\u30c8\\u30ca\\u30e0\\uff1a\\u5c0f\\u578b\\u81ea\\u52d5\\u5316\\u6a5f\\u68b0\\u3001\\u30aa\\u30fc\\u30c8\\u30d0\\u30a4\\u304a\\u3088\\u3073\\u81ea\\u52d5\\u8eca\\u306e\\u30dc\\u30eb\\u30c8\\u3001\\u77f3\\u6cb9\\u304a\\u3088\\u3073\\u30ac\\u30b9\\u7523\\u696d\\u306e\\u88fd\\u54c1\\u3002\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"\\u305d\\u306e\\u4ed6\\u306e\\u5e02\\u5834\\u3068\\u88fd\\u54c1\\u3002\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u8907\\u6570\\u306e\\u696d\\u754c\\u3067\\u30b5\\u30fc\\u30d3\\u30b9\\u3092\\u63d0\\u4f9b\\u3057\\u3066\\u3044\\u307e\\u3059\\u3002\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306f\\u5e38\\u306b\\u9867\\u5ba2\\u306e\\u30c7\\u30b6\\u30a4\\u30f3\\u8981\\u6c42\\u3092\\u6e80\\u305f\\u3057\\u307e\\u3059\\u3002\\u5916\\u89b3\\u3068\\u5bf8\\u6cd5\\u306f\\u3001\\u6700\\u3082\\u91cd\\u8981\\u8996\\u3057\\u3066\\u3044\\u308b\\u8981\\u7d20\\u3067\\u3059\\u3002<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"ja|language\"],\"ct_animate\":\"wow fadeInUp\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u305d\\u306e\\u4ed6\\u306e\\u30b5\\u30fc\\u30d3\\u30b9\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"\\u8cea\\u554f\\u304c\\u3042\\u308a\\u307e\\u3059\\u304b\\uff1f\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"\\u898b\\u7a4d\\u3082\\u308a\\u3092\\u53d6\\u5f97\\u3059\\u308b\\u305f\\u3081\\u306e\\u9023\\u7d61\\u5148\\uff1a\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u7c21\\u5358\\u306a\\u4f5c\\u696d\\u624b\\u9806\\u3092\\u6301\\u3063\\u3066\\u3044\\u307e\\u3059\\u3002\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306f\\u5e38\\u306b\\u54c1\\u8cea\\u3068\\u9032\\u6357\\u306b\\u304a\\u3044\\u3066\\u5b89\\u5fc3\\u611f\\u3092\\u63d0\\u4f9b\\u3057\\u307e\\u3059\\u3002<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"\\u79c1\\u305f\\u3061\\u3092\\u63a2\\u3059\",\"description\":\"\\u79c1\\u305f\\u3061\\u306f\\u3001\\u5404\\u30d7\\u30ed\\u30b8\\u30a7\\u30af\\u30c8\\u3092\\u7dcf\\u5408\\u7684\\u306b\\u53d6\\u308a\\u6271\\u3046\\u91cd\\u8981\\u6027\\u3092\\u7406\\u89e3\\u3057\\u3066\\u3044\\u307e\\u3059\\u3002\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"\\u79c1\\u305f\\u3061\\u3068\\u63a5\\u7d9a\\u3059\\u308b\",\"description\":\"\\u79c1\\u305f\\u3061\\u304c\\u4ed6\\u306e\\u30a8\\u30fc\\u30b8\\u30a7\\u30f3\\u30b7\\u30fc\\u3068\\u7570\\u306a\\u308b\\u70b9\\u306f\\u3001\\u30ab\\u30b9\\u30bf\\u30de\\u30a4\\u30ba\\u3055\\u308c\\u305f\\u30bd\\u30ea\\u30e5\\u30fc\\u30b7\\u30e7\\u30f3\\u3092\\u4f5c\\u6210\\u3059\\u308b\\u5c02\\u9580\\u77e5\\u8b58\\u306b\\u3042\\u308a\\u307e\\u3059\\u3002\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"\\u79c1\\u305f\\u3061\\u306b\\u652f\\u6255\\u3046\",\"description\":\"\\u79c1\\u305f\\u3061\\u306f\\u3001\\u5404\\u30c1\\u30fc\\u30e0\\u30e1\\u30f3\\u30d0\\u30fc\\u304c\\u81ea\\u5206\\u81ea\\u8eab\\u306e\\u6700\\u9ad8\\u306e\\u59ff\\u3092\\u76ee\\u6307\\u3059\\u3053\\u3068\\u3092\\u5968\\u52b1\\u3057\\u3001\\u67d4\\u8edf\\u3067\\u5354\\u529b\\u7684\\u306a\\u74b0\\u5883\\u3092\\u80b2\\u3093\\u3067\\u3044\\u307e\\u3059\\u3002\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"\\u3042\\u306a\\u305f\\u306e\\u5922\\u3092\\u5b9f\\u73fe\\u3059\\u308b\",\"description\":\"\\u3069\\u306e\\u30d3\\u30b8\\u30cd\\u30b9\\u306b\\u3082\\u3001\\u9769\\u65b0\\u3068\\u9032\\u6b69\\u3092\\u4fc3\\u3059\\u72ec\\u81ea\\u306e\\u30bd\\u30ea\\u30e5\\u30fc\\u30b7\\u30e7\\u30f3\\u304c\\u3042\\u308a\\u307e\\u3059\\u3002\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u3044\\u3064\\u3067\\u3082\\u3069\\u3093\\u306a\\u52a9\\u3051\\u304c\\u5fc5\\u8981\\u306a\\u5834\\u5408\\u3067\\u3082\\u3001\\u79c1\\u305f\\u3061\\u306b\\u3054\\u9023\\u7d61\\u304f\\u3060\\u3055\\u3044...\",\"title_color\":\"#85B23B\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9845,3108,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(9858,3111,'_wp_page_template','default'),(9859,3111,'_elementor_edit_mode','builder'),(9860,3111,'_elementor_template_type','wp-page'),(9861,3111,'_elementor_version','3.24.7'),(9862,3111,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FEHT-logo.jpg\",\"id\":2812,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"e562253\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FE-TECH-LOGO-FINAL.png\",\"id\":2816,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Engineering\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"b254836\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/Far-East-Tool-Vina.jpg\",\"id\":2814,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tools Vina\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"994e0c5\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions as your trusted partner.\",\"sub_title\":\"Our Partners\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Yoshimoto\",\"client_link\":{\"url\":\"https:\\/\\/www.yoshimoto-sangyo.co.jp\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yoshimoto-vietnam.png\",\"id\":2486,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"a49fbc4\"},{\"client_name\":\"Kim Long Motors\",\"client_link\":{\"url\":\"https:\\/\\/kimlongmotor.com.vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/kim-long-motors.png\",\"id\":2485,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"33930a5\"},{\"client_name\":\"Samsung\",\"client_link\":{\"url\":\"https:\\/\\/www.samsung.com\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/samsung.jpg\",\"id\":2484,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"aeee6c2\"},{\"client_name\":\"Komatsu Kogyo\",\"client_link\":{\"url\":\"https:\\/\\/komaz.co.jp\\/english\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/komatsu-kogyo.jpg\",\"id\":2483,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8fc7373\"},{\"_id\":\"ed2e401\",\"client_name\":\"Yuwa Engineering\",\"client_link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yuwa-engineering.jpg\",\"id\":2482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(9863,3111,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(9867,3008,'rs_page_bg_color',''),(9868,3112,'_wp_page_template','default'),(9869,3112,'_elementor_edit_mode','builder'),(9870,3112,'_elementor_template_type','wp-page'),(9871,3112,'_elementor_version','3.24.7');
INSERT INTO `wp_postmeta` VALUES (9872,3112,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i s\\u1ebd v\\u01b0\\u1ee3t qua mong \\u0111\\u1ee3i c\\u1ee7a b\\u1ea1n v\\u1edbi nh\\u1eefng gi\\u1ea3i ph\\u00e1p s\\u00e1ng t\\u1ea1o.\",\"sub_title\":\"\\u0110\\u1ed9i ng\\u0169 c\\u1ee7a ch\\u00fang t\\u00f4i\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ch\\u00fang t\\u00f4i cung c\\u1ea5p nh\\u1eefng gi\\u1ea3i ph\\u00e1p s\\u00e1ng t\\u1ea1o v\\u01b0\\u1ee3t xa mong \\u0111\\u1ee3i c\\u1ee7a b\\u1ea1n, \\u0111\\u1ea3m b\\u1ea3o m\\u00e1y m\\u00f3c ch\\u1ea5t l\\u01b0\\u1ee3ng cao v\\u00e0 k\\u1ebft qu\\u1ea3 xu\\u1ea5t s\\u1eafc.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FEHT-logo.jpg\",\"id\":2812,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"e562253\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FE-TECH-LOGO-FINAL.png\",\"id\":2816,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Engineering\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"b254836\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/Far-East-Tool-Vina.jpg\",\"id\":2814,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tools Vina\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"994e0c5\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i s\\u1ebd v\\u01b0\\u1ee3t qua mong \\u0111\\u1ee3i c\\u1ee7a b\\u1ea1n v\\u1edbi nh\\u1eefng gi\\u1ea3i ph\\u00e1p s\\u00e1ng t\\u1ea1o, nh\\u01b0 m\\u1ed9t \\u0111\\u1ed1i t\\u00e1c \\u0111\\u00e1ng tin c\\u1eady.\",\"sub_title\":\"C\\u00e1c \\u0111\\u1ed1i t\\u00e1c c\\u1ee7a ch\\u00fang t\\u00f4i\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ch\\u00fang t\\u00f4i cam k\\u1ebft \\u0111\\u1ea3m b\\u1ea3o ch\\u1ea5t l\\u01b0\\u1ee3ng l\\u00e2u d\\u00e0i v\\u00e0 s\\u1ef1 \\u0111\\u00fang gi\\u1edd b\\u1ec1n v\\u1eefng c\\u00f9ng c\\u00e1c \\u0111\\u1ed1i t\\u00e1c.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Yoshimoto\",\"client_link\":{\"url\":\"https:\\/\\/www.yoshimoto-sangyo.co.jp\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yoshimoto-vietnam.png\",\"id\":2486,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"a49fbc4\"},{\"client_name\":\"Kim Long Motors\",\"client_link\":{\"url\":\"https:\\/\\/kimlongmotor.com.vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/kim-long-motors.png\",\"id\":2485,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"33930a5\"},{\"client_name\":\"Samsung\",\"client_link\":{\"url\":\"https:\\/\\/www.samsung.com\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/samsung.jpg\",\"id\":2484,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"aeee6c2\"},{\"client_name\":\"Komatsu Kogyo\",\"client_link\":{\"url\":\"https:\\/\\/komaz.co.jp\\/english\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/komatsu-kogyo.jpg\",\"id\":2483,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8fc7373\"},{\"_id\":\"ed2e401\",\"client_name\":\"Yuwa Engineering\",\"client_link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yuwa-engineering.jpg\",\"id\":2482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(9873,3112,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(9877,3113,'_wp_page_template','default'),(9878,3113,'_elementor_edit_mode','builder'),(9879,3113,'_elementor_template_type','wp-page'),(9880,3113,'_elementor_version','3.24.7'),(9881,3113,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i s\\u1ebd v\\u01b0\\u1ee3t qua mong \\u0111\\u1ee3i c\\u1ee7a b\\u1ea1n v\\u1edbi nh\\u1eefng gi\\u1ea3i ph\\u00e1p s\\u00e1ng t\\u1ea1o.\",\"sub_title\":\"\\u0110\\u1ed9i ng\\u0169 c\\u1ee7a ch\\u00fang t\\u00f4i\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ch\\u00fang t\\u00f4i cung c\\u1ea5p nh\\u1eefng gi\\u1ea3i ph\\u00e1p s\\u00e1ng t\\u1ea1o v\\u01b0\\u1ee3t xa mong \\u0111\\u1ee3i c\\u1ee7a b\\u1ea1n, \\u0111\\u1ea3m b\\u1ea3o m\\u00e1y m\\u00f3c ch\\u1ea5t l\\u01b0\\u1ee3ng cao v\\u00e0 k\\u1ebft qu\\u1ea3 xu\\u1ea5t s\\u1eafc.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FEHT-logo.jpg\",\"id\":2812,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"e562253\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FE-TECH-LOGO-FINAL.png\",\"id\":2816,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Engineering\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"b254836\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/Far-East-Tool-Vina.jpg\",\"id\":2814,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tools Vina\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"994e0c5\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i s\\u1ebd v\\u01b0\\u1ee3t qua mong \\u0111\\u1ee3i c\\u1ee7a b\\u1ea1n v\\u1edbi nh\\u1eefng gi\\u1ea3i ph\\u00e1p s\\u00e1ng t\\u1ea1o, nh\\u01b0 m\\u1ed9t \\u0111\\u1ed1i t\\u00e1c \\u0111\\u00e1ng tin c\\u1eady.\",\"sub_title\":\"C\\u00e1c \\u0111\\u1ed1i t\\u00e1c c\\u1ee7a ch\\u00fang t\\u00f4i\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ch\\u00fang t\\u00f4i cam k\\u1ebft \\u0111\\u1ea3m b\\u1ea3o ch\\u1ea5t l\\u01b0\\u1ee3ng l\\u00e2u d\\u00e0i v\\u00e0 s\\u1ef1 \\u0111\\u00fang gi\\u1edd b\\u1ec1n v\\u1eefng c\\u00f9ng c\\u00e1c \\u0111\\u1ed1i t\\u00e1c.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Yoshimoto\",\"client_link\":{\"url\":\"https:\\/\\/www.yoshimoto-sangyo.co.jp\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yoshimoto-vietnam.png\",\"id\":2486,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"a49fbc4\"},{\"client_name\":\"Kim Long Motors\",\"client_link\":{\"url\":\"https:\\/\\/kimlongmotor.com.vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/kim-long-motors.png\",\"id\":2485,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"33930a5\"},{\"client_name\":\"Samsung\",\"client_link\":{\"url\":\"https:\\/\\/www.samsung.com\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/samsung.jpg\",\"id\":2484,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"aeee6c2\"},{\"client_name\":\"Komatsu Kogyo\",\"client_link\":{\"url\":\"https:\\/\\/komaz.co.jp\\/english\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/komatsu-kogyo.jpg\",\"id\":2483,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8fc7373\"},{\"_id\":\"ed2e401\",\"client_name\":\"Yuwa Engineering\",\"client_link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yuwa-engineering.jpg\",\"id\":2482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(9882,3113,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(9886,3014,'rs_page_bg_color',''),(9887,3114,'_wp_page_template','default'),(9888,3114,'_elementor_edit_mode','builder'),(9889,3114,'_elementor_template_type','wp-page'),(9890,3114,'_elementor_version','3.24.7'),(9891,3114,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u9769\\u65b0\\u7684\\u306a\\u30bd\\u30ea\\u30e5\\u30fc\\u30b7\\u30e7\\u30f3\\u3067\\u304a\\u5ba2\\u69d8\\u306e\\u671f\\u5f85\\u3092\\u8d85\\u3048\\u307e\\u3059\\u3002\",\"sub_title\":\"\\u79c1\\u305f\\u3061\\u306e\\u30c1\\u30fc\\u30e0\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306f\\u3001\\u304a\\u5ba2\\u69d8\\u306e\\u671f\\u5f85\\u3092\\u8d85\\u3048\\u308b\\u9769\\u65b0\\u7684\\u306a\\u30bd\\u30ea\\u30e5\\u30fc\\u30b7\\u30e7\\u30f3\\u3092\\u63d0\\u4f9b\\u3057\\u3001\\u6700\\u9ad8\\u54c1\\u8cea\\u306e\\u6a5f\\u68b0\\u3068\\u512a\\u308c\\u305f\\u7d50\\u679c\\u3092\\u4fdd\\u8a3c\\u3057\\u307e\\u3059\\u3002<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FEHT-logo.jpg\",\"id\":2812,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"e562253\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FE-TECH-LOGO-FINAL.png\",\"id\":2816,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Engineering\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"b254836\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/Far-East-Tool-Vina.jpg\",\"id\":2814,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tools Vina\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"994e0c5\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u3001\\u4fe1\\u983c\\u3067\\u304d\\u308b\\u30d1\\u30fc\\u30c8\\u30ca\\u30fc\\u3068\\u3057\\u3066\\u9769\\u65b0\\u7684\\u306a\\u30bd\\u30ea\\u30e5\\u30fc\\u30b7\\u30e7\\u30f3\\u3067\\u304a\\u5ba2\\u69d8\\u306e\\u671f\\u5f85\\u3092\\u8d85\\u3048\\u307e\\u3059\\u3002\",\"sub_title\":\"\\u79c1\\u305f\\u3061\\u306e\\u30d1\\u30fc\\u30c8\\u30ca\\u30fc \"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306f\\u3001\\u30d1\\u30fc\\u30c8\\u30ca\\u30fc\\u3068\\u306e\\u9577\\u671f\\u7684\\u3067\\u6c38\\u7d9a\\u7684\\u306a\\u54c1\\u8cea\\u3068\\u6642\\u9593\\u53b3\\u5b88\\u3092\\u78ba\\u4fdd\\u3059\\u308b\\u3053\\u3068\\u3092\\u7d04\\u675f\\u3057\\u307e\\u3059\\u3002<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Yoshimoto\",\"client_link\":{\"url\":\"https:\\/\\/www.yoshimoto-sangyo.co.jp\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yoshimoto-vietnam.png\",\"id\":2486,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"a49fbc4\"},{\"client_name\":\"Kim Long Motors\",\"client_link\":{\"url\":\"https:\\/\\/kimlongmotor.com.vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/kim-long-motors.png\",\"id\":2485,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"33930a5\"},{\"client_name\":\"Samsung\",\"client_link\":{\"url\":\"https:\\/\\/www.samsung.com\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/samsung.jpg\",\"id\":2484,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"aeee6c2\"},{\"client_name\":\"Komatsu Kogyo\",\"client_link\":{\"url\":\"https:\\/\\/komaz.co.jp\\/english\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/komatsu-kogyo.jpg\",\"id\":2483,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8fc7373\"},{\"_id\":\"ed2e401\",\"client_name\":\"Yuwa Engineering\",\"client_link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yuwa-engineering.jpg\",\"id\":2482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(9892,3114,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(9896,3115,'_wp_page_template','default'),(9897,3115,'_elementor_edit_mode','builder'),(9898,3115,'_elementor_template_type','wp-page'),(9899,3115,'_elementor_version','3.24.7'),(9900,3115,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i s\\u1ebd v\\u01b0\\u1ee3t qua mong \\u0111\\u1ee3i c\\u1ee7a b\\u1ea1n v\\u1edbi nh\\u1eefng gi\\u1ea3i ph\\u00e1p s\\u00e1ng t\\u1ea1o.\",\"sub_title\":\"\\u0110\\u1ed9i ng\\u0169 c\\u1ee7a ch\\u00fang t\\u00f4i\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ch\\u00fang t\\u00f4i cung c\\u1ea5p nh\\u1eefng gi\\u1ea3i ph\\u00e1p s\\u00e1ng t\\u1ea1o v\\u01b0\\u1ee3t xa mong \\u0111\\u1ee3i c\\u1ee7a b\\u1ea1n, \\u0111\\u1ea3m b\\u1ea3o m\\u00e1y m\\u00f3c ch\\u1ea5t l\\u01b0\\u1ee3ng cao v\\u00e0 k\\u1ebft qu\\u1ea3 xu\\u1ea5t s\\u1eafc.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FEHT-logo.jpg\",\"id\":2812,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"e562253\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FE-TECH-LOGO-FINAL.png\",\"id\":2816,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Engineering\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"b254836\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/Far-East-Tool-Vina.jpg\",\"id\":2814,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tools Vina\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"994e0c5\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i s\\u1ebd v\\u01b0\\u1ee3t qua mong \\u0111\\u1ee3i c\\u1ee7a b\\u1ea1n v\\u1edbi nh\\u1eefng gi\\u1ea3i ph\\u00e1p s\\u00e1ng t\\u1ea1o, nh\\u01b0 m\\u1ed9t \\u0111\\u1ed1i t\\u00e1c \\u0111\\u00e1ng tin c\\u1eady.\",\"sub_title\":\"C\\u00e1c \\u0111\\u1ed1i t\\u00e1c c\\u1ee7a ch\\u00fang t\\u00f4i\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ch\\u00fang t\\u00f4i cam k\\u1ebft \\u0111\\u1ea3m b\\u1ea3o ch\\u1ea5t l\\u01b0\\u1ee3ng l\\u00e2u d\\u00e0i v\\u00e0 s\\u1ef1 \\u0111\\u00fang gi\\u1edd b\\u1ec1n v\\u1eefng c\\u00f9ng c\\u00e1c \\u0111\\u1ed1i t\\u00e1c.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Yoshimoto\",\"client_link\":{\"url\":\"https:\\/\\/www.yoshimoto-sangyo.co.jp\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yoshimoto-vietnam.png\",\"id\":2486,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"a49fbc4\"},{\"client_name\":\"Kim Long Motors\",\"client_link\":{\"url\":\"https:\\/\\/kimlongmotor.com.vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/kim-long-motors.png\",\"id\":2485,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"33930a5\"},{\"client_name\":\"Samsung\",\"client_link\":{\"url\":\"https:\\/\\/www.samsung.com\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/samsung.jpg\",\"id\":2484,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"aeee6c2\"},{\"client_name\":\"Komatsu Kogyo\",\"client_link\":{\"url\":\"https:\\/\\/komaz.co.jp\\/english\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/komatsu-kogyo.jpg\",\"id\":2483,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8fc7373\"},{\"_id\":\"ed2e401\",\"client_name\":\"Yuwa Engineering\",\"client_link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yuwa-engineering.jpg\",\"id\":2482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(9901,3115,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(9905,3116,'_wp_page_template','default'),(9906,3116,'_elementor_edit_mode','builder'),(9907,3116,'_elementor_template_type','wp-page'),(9908,3116,'_elementor_version','3.24.7'),(9909,3116,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FEHT-logo.jpg\",\"id\":2812,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"e562253\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FE-TECH-LOGO-FINAL.png\",\"id\":2816,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Engineering\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"b254836\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/Far-East-Tool-Vina.jpg\",\"id\":2814,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tools Vina\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"994e0c5\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions as your trusted partner.\",\"sub_title\":\"Our Partners\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Yoshimoto\",\"client_link\":{\"url\":\"https:\\/\\/www.yoshimoto-sangyo.co.jp\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yoshimoto-vietnam.png\",\"id\":2486,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"a49fbc4\"},{\"client_name\":\"Kim Long Motors\",\"client_link\":{\"url\":\"https:\\/\\/kimlongmotor.com.vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/kim-long-motors.png\",\"id\":2485,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"33930a5\"},{\"client_name\":\"Samsung\",\"client_link\":{\"url\":\"https:\\/\\/www.samsung.com\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/samsung.jpg\",\"id\":2484,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"aeee6c2\"},{\"client_name\":\"Komatsu Kogyo\",\"client_link\":{\"url\":\"https:\\/\\/komaz.co.jp\\/english\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/komatsu-kogyo.jpg\",\"id\":2483,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8fc7373\"},{\"_id\":\"ed2e401\",\"client_name\":\"Yuwa Engineering\",\"client_link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yuwa-engineering.jpg\",\"id\":2482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(9910,3116,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(9914,3117,'_wp_page_template','default'),(9915,3117,'_elementor_edit_mode','builder'),(9916,3117,'_elementor_template_type','wp-page'),(9917,3117,'_elementor_version','3.24.7'),(9918,3117,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u9769\\u65b0\\u7684\\u306a\\u30bd\\u30ea\\u30e5\\u30fc\\u30b7\\u30e7\\u30f3\\u3067\\u304a\\u5ba2\\u69d8\\u306e\\u671f\\u5f85\\u3092\\u8d85\\u3048\\u307e\\u3059\\u3002\",\"sub_title\":\"\\u79c1\\u305f\\u3061\\u306e\\u30c1\\u30fc\\u30e0\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306f\\u3001\\u304a\\u5ba2\\u69d8\\u306e\\u671f\\u5f85\\u3092\\u8d85\\u3048\\u308b\\u9769\\u65b0\\u7684\\u306a\\u30bd\\u30ea\\u30e5\\u30fc\\u30b7\\u30e7\\u30f3\\u3092\\u63d0\\u4f9b\\u3057\\u3001\\u6700\\u9ad8\\u54c1\\u8cea\\u306e\\u6a5f\\u68b0\\u3068\\u512a\\u308c\\u305f\\u7d50\\u679c\\u3092\\u4fdd\\u8a3c\\u3057\\u307e\\u3059\\u3002<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FEHT-logo.jpg\",\"id\":2812,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"e562253\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FE-TECH-LOGO-FINAL.png\",\"id\":2816,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Engineering\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"b254836\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/Far-East-Tool-Vina.jpg\",\"id\":2814,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tools Vina\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"994e0c5\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u3001\\u4fe1\\u983c\\u3067\\u304d\\u308b\\u30d1\\u30fc\\u30c8\\u30ca\\u30fc\\u3068\\u3057\\u3066\\u9769\\u65b0\\u7684\\u306a\\u30bd\\u30ea\\u30e5\\u30fc\\u30b7\\u30e7\\u30f3\\u3067\\u304a\\u5ba2\\u69d8\\u306e\\u671f\\u5f85\\u3092\\u8d85\\u3048\\u307e\\u3059\\u3002\",\"sub_title\":\"\\u79c1\\u305f\\u3061\\u306e\\u30d1\\u30fc\\u30c8\\u30ca\\u30fc \"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306f\\u3001\\u30d1\\u30fc\\u30c8\\u30ca\\u30fc\\u3068\\u306e\\u9577\\u671f\\u7684\\u3067\\u6c38\\u7d9a\\u7684\\u306a\\u54c1\\u8cea\\u3068\\u6642\\u9593\\u53b3\\u5b88\\u3092\\u78ba\\u4fdd\\u3059\\u308b\\u3053\\u3068\\u3092\\u7d04\\u675f\\u3057\\u307e\\u3059\\u3002<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Yoshimoto\",\"client_link\":{\"url\":\"https:\\/\\/www.yoshimoto-sangyo.co.jp\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yoshimoto-vietnam.png\",\"id\":2486,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"a49fbc4\"},{\"client_name\":\"Kim Long Motors\",\"client_link\":{\"url\":\"https:\\/\\/kimlongmotor.com.vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/kim-long-motors.png\",\"id\":2485,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"33930a5\"},{\"client_name\":\"Samsung\",\"client_link\":{\"url\":\"https:\\/\\/www.samsung.com\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/samsung.jpg\",\"id\":2484,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"aeee6c2\"},{\"client_name\":\"Komatsu Kogyo\",\"client_link\":{\"url\":\"https:\\/\\/komaz.co.jp\\/english\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/komatsu-kogyo.jpg\",\"id\":2483,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8fc7373\"},{\"_id\":\"ed2e401\",\"client_name\":\"Yuwa Engineering\",\"client_link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yuwa-engineering.jpg\",\"id\":2482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(9919,3117,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(9969,974,'_config_validation','a:1:{s:11:\"mail.sender\";a:1:{i:0;a:2:{s:4:\"code\";s:24:\"email_not_in_site_domain\";s:4:\"args\";a:3:{s:7:\"message\";s:56:\"Sender email address does not belong to the site domain.\";s:6:\"params\";a:0:{}s:4:\"link\";s:70:\"https://contactform7.com/configuration-errors/email-not-in-site-domain\";}}}}'),(9970,932,'_config_validation','a:1:{s:11:\"mail.sender\";a:1:{i:0;a:2:{s:4:\"code\";s:24:\"email_not_in_site_domain\";s:4:\"args\";a:3:{s:7:\"message\";s:56:\"Sender email address does not belong to the site domain.\";s:6:\"params\";a:0:{}s:4:\"link\";s:70:\"https://contactform7.com/configuration-errors/email-not-in-site-domain\";}}}}'),(9971,91,'_config_validation','a:1:{s:11:\"mail.sender\";a:1:{i:0;a:2:{s:4:\"code\";s:24:\"email_not_in_site_domain\";s:4:\"args\";a:3:{s:7:\"message\";s:56:\"Sender email address does not belong to the site domain.\";s:6:\"params\";a:0:{}s:4:\"link\";s:70:\"https://contactform7.com/configuration-errors/email-not-in-site-domain\";}}}}'),(9972,1644,'_elementor_css','a:6:{s:4:\"time\";i:1735095483;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:\"\";}'),(9974,9,'_elementor_page_assets','a:2:{s:6:\"styles\";a:4:{i:0;s:18:\"widget-text-editor\";i:1;s:21:\"e-animation-slideInUp\";i:2;s:12:\"widget-image\";i:3;s:18:\"widget-google_maps\";}s:7:\"scripts\";a:9:{i:0;s:16:\"jquery-numerator\";i:1;s:20:\"ct-counter-widget-js\";i:2;s:11:\"progressbar\";i:3;s:16:\"waypoints-lib-js\";i:4;s:24:\"ct-progressbar-widget-js\";i:5;s:12:\"imagesloaded\";i:6;s:7:\"isotope\";i:7;s:25:\"ct-post-masonry-widget-js\";i:8;s:22:\"ct-post-grid-widget-js\";}}'),(9977,799,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"widget-image\";i:1;s:18:\"widget-text-editor\";}}'),(9980,28,'_elementor_page_assets','a:2:{s:6:\"styles\";a:1:{i:0;s:18:\"widget-text-editor\";}s:7:\"scripts\";a:6:{i:0;s:12:\"imagesloaded\";i:1;s:7:\"isotope\";i:2;s:25:\"ct-post-masonry-widget-js\";i:3;s:22:\"ct-post-grid-widget-js\";i:4;s:12:\"jquery-slick\";i:5;s:25:\"ct-clients-list-widget-js\";}}'),(9986,3123,'_wp_page_template','default'),(9987,3123,'_elementor_edit_mode','builder'),(9988,3123,'_elementor_template_type','wp-page'),(9989,3123,'_elementor_version','3.24.7'),(9990,3123,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FEHT-logo.jpg\",\"id\":2812,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"e562253\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FE-TECH-LOGO-FINAL.png\",\"id\":2816,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Engineering\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"b254836\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/Far-East-Tool-Vina.jpg\",\"id\":2814,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tools Vina\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"994e0c5\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions as your trusted partner.\",\"sub_title\":\"Our Partners\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Yoshimoto\",\"client_link\":{\"url\":\"https:\\/\\/www.yoshimoto-sangyo.co.jp\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yoshimoto-vietnam.png\",\"id\":2486,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"a49fbc4\"},{\"client_name\":\"Kim Long Motors\",\"client_link\":{\"url\":\"https:\\/\\/kimlongmotor.com.vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/kim-long-motors.png\",\"id\":2485,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"33930a5\"},{\"client_name\":\"Samsung\",\"client_link\":{\"url\":\"https:\\/\\/www.samsung.com\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/samsung.jpg\",\"id\":2484,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"aeee6c2\"},{\"client_name\":\"Komatsu Kogyo\",\"client_link\":{\"url\":\"https:\\/\\/komaz.co.jp\\/english\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/komatsu-kogyo.jpg\",\"id\":2483,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8fc7373\"},{\"_id\":\"ed2e401\",\"client_name\":\"Yuwa Engineering\",\"client_link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yuwa-engineering.jpg\",\"id\":2482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(9991,3123,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(9992,3123,'_elementor_css','a:6:{s:4:\"time\";i:1735095488;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:\"\";}'),(9993,3123,'_elementor_page_assets','a:2:{s:6:\"styles\";a:1:{i:0;s:18:\"widget-text-editor\";}s:7:\"scripts\";a:6:{i:0;s:12:\"imagesloaded\";i:1;s:7:\"isotope\";i:2;s:25:\"ct-post-masonry-widget-js\";i:3;s:22:\"ct-post-grid-widget-js\";i:4;s:12:\"jquery-slick\";i:5;s:25:\"ct-clients-list-widget-js\";}}'),(9994,3123,'_elementor_element_cache','{\"timeout\":1735181888,\"value\":{\"content\":\"        <section class=\"elementor-section elementor-top-section elementor-element elementor-element-5ebd4da3 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"5ebd4da3\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-65bf164f\" data-id=\"65bf164f\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjcwOWM5ZmYwIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJXZSB3aWxsIGV4Y2VlZCB5b3VyIGV4cGVjdGF0aW9ucyB3aXRoIG91ciBpbm5vdmF0aXZlIHNvbHV0aW9ucy4iLCJzdWJfdGl0bGUiOiJPdXIgVGVhbSJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-565ccd46\" data-id=\"565ccd46\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-4e81685f elementor-widget elementor-widget-text-editor\" data-id=\"4e81685f\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-7d3ed03 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"7d3ed03\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-default \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-24b59b7\" data-id=\"24b59b7\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjRjMGU1NTciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X2xpc3QiOlt7ImltYWdlIjp7InVybCI6Imh0dHBzOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMTJcL0ZFSFQtbG9nby5qcGciLCJpZCI6MjgxMiwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwidGl0bGUiOiJGYXIgRWFzdCBUZWNoIiwibGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn0sInNvY2lhbCI6IltdIiwiX2lkIjoiZTU2MjI1MyJ9LHsiaW1hZ2UiOnsidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMlwvRkUtVEVDSC1MT0dPLUZJTkFMLnBuZyIsImlkIjoyODE2LCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJ0aXRsZSI6IkZhciBFYXN0IEVuZ2luZWVyaW5nIiwibGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn0sInNvY2lhbCI6IltdIiwiX2lkIjoiYjI1NDgzNiJ9LHsiaW1hZ2UiOnsidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMlwvRmFyLUVhc3QtVG9vbC1WaW5hLmpwZyIsImlkIjoyODE0LCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJ0aXRsZSI6IkZhciBFYXN0IFRvb2xzIFZpbmEiLCJsaW5rIjp7InVybCI6IiIsImlzX2V4dGVybmFsIjoiIiwibm9mb2xsb3ciOiIifSwic29jaWFsIjoiW10iLCJfaWQiOiI5OTRlMGM1In1dLCJjb2xfbGciOiIzIiwiY29sX3hsIjoiMyIsImNvbF9tZCI6IjIiLCJ0aHVtYm5haWxfY3VzdG9tX2RpbWVuc2lvbiI6eyJ3aWR0aCI6IjM1MCIsImhlaWdodCI6IjM3MSJ9fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfdGVhbV9ncmlkIn0=\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-daa7558 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"daa7558\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-050b385\" data-id=\"050b385\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImNhOGU5ODIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IldlIHdpbGwgZXhjZWVkIHlvdXIgZXhwZWN0YXRpb25zIHdpdGggb3VyIGlubm92YXRpdmUgc29sdXRpb25zIGFzIHlvdXIgdHJ1c3RlZCBwYXJ0bmVyLiIsInN1Yl90aXRsZSI6Ik91ciBQYXJ0bmVycyJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-57c8033\" data-id=\"57c8033\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-be87204 elementor-widget elementor-widget-text-editor\" data-id=\"be87204\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-a2fc248 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"a2fc248\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-5a54914\" data-id=\"5a54914\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImMyYzBjNjciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjbGllbnRzIjpbeyJjbGllbnRfbmFtZSI6Illvc2hpbW90byIsImNsaWVudF9saW5rIjp7InVybCI6Imh0dHBzOlwvXC93d3cueW9zaGltb3RvLXNhbmd5by5jby5qcFwvdm5cLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIn0sImNsaWVudF9pbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC95b3NoaW1vdG8tdmlldG5hbS5wbmciLCJpZCI6MjQ4NiwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwiX2lkIjoiYTQ5ZmJjNCJ9LHsiY2xpZW50X25hbWUiOiJLaW0gTG9uZyBNb3RvcnMiLCJjbGllbnRfbGluayI6eyJ1cmwiOiJodHRwczpcL1wva2ltbG9uZ21vdG9yLmNvbS52blwvIiwiaXNfZXh0ZXJuYWwiOiJvbiIsIm5vZm9sbG93Ijoib24ifSwiY2xpZW50X2ltYWdlIjp7InVybCI6Imh0dHBzOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMTBcL2tpbS1sb25nLW1vdG9ycy5wbmciLCJpZCI6MjQ4NSwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwiX2lkIjoiMzM5MzBhNSJ9LHsiY2xpZW50X25hbWUiOiJTYW1zdW5nIiwiY2xpZW50X2xpbmsiOnsidXJsIjoiaHR0cHM6XC9cL3d3dy5zYW1zdW5nLmNvbVwvdm5cLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIn0sImNsaWVudF9pbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9zYW1zdW5nLmpwZyIsImlkIjoyNDg0LCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJfaWQiOiJhZWVlNmMyIn0seyJjbGllbnRfbmFtZSI6IktvbWF0c3UgS29neW8iLCJjbGllbnRfbGluayI6eyJ1cmwiOiJodHRwczpcL1wva29tYXouY28uanBcL2VuZ2xpc2hcLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIn0sImNsaWVudF9pbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9rb21hdHN1LWtvZ3lvLmpwZyIsImlkIjoyNDgzLCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJfaWQiOiI4ZmM3MzczIn0seyJfaWQiOiJlZDJlNDAxIiwiY2xpZW50X25hbWUiOiJZdXdhIEVuZ2luZWVyaW5nIiwiY2xpZW50X2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiJvbiIsIm5vZm9sbG93Ijoib24iLCJjdXN0b21fYXR0cmlidXRlcyI6IiJ9LCJjbGllbnRfaW1hZ2UiOnsidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwveXV3YS1lbmdpbmVlcmluZy5qcGciLCJpZCI6MjQ4Miwic2l6ZSI6IiIsImFsdCI6IiIsInNvdXJjZSI6ImxpYnJhcnkifX1dLCJzbGlkZXNfdG9fc2hvdyI6IjQiLCJzbGlkZXNfdG9fc2Nyb2xsIjoiMSIsImF1dG9wbGF5IjoidHJ1ZSIsImF1dG9wbGF5X3NwZWVkIjo4MDAwLCJpbmZpbml0ZSI6InRydWUiLCJzcGVlZCI6ODAwLCJzbGlkZXNfdG9fc2hvd19tb2JpbGUiOiIyIiwic2xpZGVzX3RvX3Njcm9sbF9tb2JpbGUiOiIxIiwic2xpZGVzX3RvX3Nob3dfdGFibGV0IjoiMyIsInNsaWRlc190b19zY3JvbGxfdGFibGV0IjoiMSIsImN0X2FuaW1hdGUiOiJ3b3cgem9vbUluIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2NsaWVudHNfbGlzdCJ9\"]            </div>n        </div>n                    </div>n        </section>n        \",\"scripts\":[\"imagesloaded\",\"isotope\",\"ct-post-masonry-widget-js\",\"ct-post-grid-widget-js\",\"jquery-slick\",\"ct-clients-list-widget-js\"],\"styles\":[\"widget-text-editor\"]}}'),(9995,3124,'_wp_page_template','default'),(9996,3124,'_elementor_edit_mode','builder'),(9997,3124,'_elementor_template_type','wp-page'),(9998,3124,'_elementor_version','3.24.7'),(9999,3124,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FEHT-logo.jpg\",\"id\":2812,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"e562253\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FE-TECH-LOGO-FINAL.png\",\"id\":2816,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Engineering\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"b254836\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/Far-East-Tool-Vina.jpg\",\"id\":2814,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tools Vina\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"994e0c5\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions as your trusted partner.\",\"sub_title\":\"Our Partners\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Yoshimoto\",\"client_link\":{\"url\":\"https:\\/\\/www.yoshimoto-sangyo.co.jp\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yoshimoto-vietnam.png\",\"id\":2486,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"a49fbc4\"},{\"client_name\":\"Kim Long Motors\",\"client_link\":{\"url\":\"https:\\/\\/kimlongmotor.com.vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/kim-long-motors.png\",\"id\":2485,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"33930a5\"},{\"client_name\":\"Samsung\",\"client_link\":{\"url\":\"https:\\/\\/www.samsung.com\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/samsung.jpg\",\"id\":2484,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"aeee6c2\"},{\"client_name\":\"Komatsu Kogyo\",\"client_link\":{\"url\":\"https:\\/\\/komaz.co.jp\\/english\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/komatsu-kogyo.jpg\",\"id\":2483,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8fc7373\"},{\"_id\":\"ed2e401\",\"client_name\":\"Yuwa Engineering\",\"client_link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yuwa-engineering.jpg\",\"id\":2482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10000,3124,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(10001,3124,'_elementor_css','a:6:{s:4:\"time\";i:1735095488;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:\"\";}'),(10002,3124,'_elementor_page_assets','a:2:{s:6:\"styles\";a:1:{i:0;s:18:\"widget-text-editor\";}s:7:\"scripts\";a:6:{i:0;s:12:\"imagesloaded\";i:1;s:7:\"isotope\";i:2;s:25:\"ct-post-masonry-widget-js\";i:3;s:22:\"ct-post-grid-widget-js\";i:4;s:12:\"jquery-slick\";i:5;s:25:\"ct-clients-list-widget-js\";}}'),(10003,3124,'_elementor_element_cache','{\"timeout\":1735181888,\"value\":{\"content\":\"        <section class=\"elementor-section elementor-top-section elementor-element elementor-element-5ebd4da3 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"5ebd4da3\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-65bf164f\" data-id=\"65bf164f\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjcwOWM5ZmYwIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJXZSB3aWxsIGV4Y2VlZCB5b3VyIGV4cGVjdGF0aW9ucyB3aXRoIG91ciBpbm5vdmF0aXZlIHNvbHV0aW9ucy4iLCJzdWJfdGl0bGUiOiJPdXIgVGVhbSJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-565ccd46\" data-id=\"565ccd46\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-4e81685f elementor-widget elementor-widget-text-editor\" data-id=\"4e81685f\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-7d3ed03 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"7d3ed03\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-default \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-24b59b7\" data-id=\"24b59b7\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjRjMGU1NTciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X2xpc3QiOlt7ImltYWdlIjp7InVybCI6Imh0dHBzOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMTJcL0ZFSFQtbG9nby5qcGciLCJpZCI6MjgxMiwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwidGl0bGUiOiJGYXIgRWFzdCBUZWNoIiwibGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn0sInNvY2lhbCI6IltdIiwiX2lkIjoiZTU2MjI1MyJ9LHsiaW1hZ2UiOnsidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMlwvRkUtVEVDSC1MT0dPLUZJTkFMLnBuZyIsImlkIjoyODE2LCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJ0aXRsZSI6IkZhciBFYXN0IEVuZ2luZWVyaW5nIiwibGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn0sInNvY2lhbCI6IltdIiwiX2lkIjoiYjI1NDgzNiJ9LHsiaW1hZ2UiOnsidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMlwvRmFyLUVhc3QtVG9vbC1WaW5hLmpwZyIsImlkIjoyODE0LCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJ0aXRsZSI6IkZhciBFYXN0IFRvb2xzIFZpbmEiLCJsaW5rIjp7InVybCI6IiIsImlzX2V4dGVybmFsIjoiIiwibm9mb2xsb3ciOiIifSwic29jaWFsIjoiW10iLCJfaWQiOiI5OTRlMGM1In1dLCJjb2xfbGciOiIzIiwiY29sX3hsIjoiMyIsImNvbF9tZCI6IjIiLCJ0aHVtYm5haWxfY3VzdG9tX2RpbWVuc2lvbiI6eyJ3aWR0aCI6IjM1MCIsImhlaWdodCI6IjM3MSJ9fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfdGVhbV9ncmlkIn0=\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-daa7558 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"daa7558\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-050b385\" data-id=\"050b385\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImNhOGU5ODIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IldlIHdpbGwgZXhjZWVkIHlvdXIgZXhwZWN0YXRpb25zIHdpdGggb3VyIGlubm92YXRpdmUgc29sdXRpb25zIGFzIHlvdXIgdHJ1c3RlZCBwYXJ0bmVyLiIsInN1Yl90aXRsZSI6Ik91ciBQYXJ0bmVycyJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-57c8033\" data-id=\"57c8033\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-be87204 elementor-widget elementor-widget-text-editor\" data-id=\"be87204\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-a2fc248 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"a2fc248\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-5a54914\" data-id=\"5a54914\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImMyYzBjNjciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjbGllbnRzIjpbeyJjbGllbnRfbmFtZSI6Illvc2hpbW90byIsImNsaWVudF9saW5rIjp7InVybCI6Imh0dHBzOlwvXC93d3cueW9zaGltb3RvLXNhbmd5by5jby5qcFwvdm5cLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIn0sImNsaWVudF9pbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC95b3NoaW1vdG8tdmlldG5hbS5wbmciLCJpZCI6MjQ4NiwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwiX2lkIjoiYTQ5ZmJjNCJ9LHsiY2xpZW50X25hbWUiOiJLaW0gTG9uZyBNb3RvcnMiLCJjbGllbnRfbGluayI6eyJ1cmwiOiJodHRwczpcL1wva2ltbG9uZ21vdG9yLmNvbS52blwvIiwiaXNfZXh0ZXJuYWwiOiJvbiIsIm5vZm9sbG93Ijoib24ifSwiY2xpZW50X2ltYWdlIjp7InVybCI6Imh0dHBzOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMTBcL2tpbS1sb25nLW1vdG9ycy5wbmciLCJpZCI6MjQ4NSwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwiX2lkIjoiMzM5MzBhNSJ9LHsiY2xpZW50X25hbWUiOiJTYW1zdW5nIiwiY2xpZW50X2xpbmsiOnsidXJsIjoiaHR0cHM6XC9cL3d3dy5zYW1zdW5nLmNvbVwvdm5cLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIn0sImNsaWVudF9pbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9zYW1zdW5nLmpwZyIsImlkIjoyNDg0LCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJfaWQiOiJhZWVlNmMyIn0seyJjbGllbnRfbmFtZSI6IktvbWF0c3UgS29neW8iLCJjbGllbnRfbGluayI6eyJ1cmwiOiJodHRwczpcL1wva29tYXouY28uanBcL2VuZ2xpc2hcLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIn0sImNsaWVudF9pbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9rb21hdHN1LWtvZ3lvLmpwZyIsImlkIjoyNDgzLCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJfaWQiOiI4ZmM3MzczIn0seyJfaWQiOiJlZDJlNDAxIiwiY2xpZW50X25hbWUiOiJZdXdhIEVuZ2luZWVyaW5nIiwiY2xpZW50X2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiJvbiIsIm5vZm9sbG93Ijoib24iLCJjdXN0b21fYXR0cmlidXRlcyI6IiJ9LCJjbGllbnRfaW1hZ2UiOnsidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwveXV3YS1lbmdpbmVlcmluZy5qcGciLCJpZCI6MjQ4Miwic2l6ZSI6IiIsImFsdCI6IiIsInNvdXJjZSI6ImxpYnJhcnkifX1dLCJzbGlkZXNfdG9fc2hvdyI6IjQiLCJzbGlkZXNfdG9fc2Nyb2xsIjoiMSIsImF1dG9wbGF5IjoidHJ1ZSIsImF1dG9wbGF5X3NwZWVkIjo4MDAwLCJpbmZpbml0ZSI6InRydWUiLCJzcGVlZCI6ODAwLCJzbGlkZXNfdG9fc2hvd19tb2JpbGUiOiIyIiwic2xpZGVzX3RvX3Njcm9sbF9tb2JpbGUiOiIxIiwic2xpZGVzX3RvX3Nob3dfdGFibGV0IjoiMyIsInNsaWRlc190b19zY3JvbGxfdGFibGV0IjoiMSIsImN0X2FuaW1hdGUiOiJ3b3cgem9vbUluIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2NsaWVudHNfbGlzdCJ9\"]            </div>n        </div>n                    </div>n        </section>n        \",\"scripts\":[\"imagesloaded\",\"isotope\",\"ct-post-masonry-widget-js\",\"ct-post-grid-widget-js\",\"jquery-slick\",\"ct-clients-list-widget-js\"],\"styles\":[\"widget-text-editor\"]}}'),(10004,3125,'_wp_page_template','default'),(10005,3125,'_elementor_edit_mode','builder'),(10006,3125,'_elementor_template_type','wp-page'),(10007,3125,'_elementor_version','3.24.7'),(10008,3125,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FE-TECH-LOGO-FINAL.png\",\"id\":2816,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"e562253\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FEE.png\",\"id\":3121,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Engineering\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"b254836\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FETS.png\",\"id\":3122,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tools Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"994e0c5\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions as your trusted partner.\",\"sub_title\":\"Our Partners\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Yoshimoto\",\"client_link\":{\"url\":\"https:\\/\\/www.yoshimoto-sangyo.co.jp\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yoshimoto-vietnam.png\",\"id\":2486,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"a49fbc4\"},{\"client_name\":\"Kim Long Motors\",\"client_link\":{\"url\":\"https:\\/\\/kimlongmotor.com.vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/kim-long-motors.png\",\"id\":2485,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"33930a5\"},{\"client_name\":\"Samsung\",\"client_link\":{\"url\":\"https:\\/\\/www.samsung.com\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/samsung.jpg\",\"id\":2484,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"aeee6c2\"},{\"client_name\":\"Komatsu Kogyo\",\"client_link\":{\"url\":\"https:\\/\\/komaz.co.jp\\/english\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/komatsu-kogyo.jpg\",\"id\":2483,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8fc7373\"},{\"_id\":\"ed2e401\",\"client_name\":\"Yuwa Engineering\",\"client_link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yuwa-engineering.jpg\",\"id\":2482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10009,3125,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(10010,3125,'_elementor_css','a:6:{s:4:\"time\";i:1735095488;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:\"\";}'),(10011,3125,'_elementor_page_assets','a:2:{s:6:\"styles\";a:1:{i:0;s:18:\"widget-text-editor\";}s:7:\"scripts\";a:6:{i:0;s:12:\"imagesloaded\";i:1;s:7:\"isotope\";i:2;s:25:\"ct-post-masonry-widget-js\";i:3;s:22:\"ct-post-grid-widget-js\";i:4;s:12:\"jquery-slick\";i:5;s:25:\"ct-clients-list-widget-js\";}}'),(10012,3125,'_elementor_element_cache','{\"timeout\":1735181888,\"value\":{\"content\":\"        <section class=\"elementor-section elementor-top-section elementor-element elementor-element-5ebd4da3 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"5ebd4da3\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-65bf164f\" data-id=\"65bf164f\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjcwOWM5ZmYwIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJXZSB3aWxsIGV4Y2VlZCB5b3VyIGV4cGVjdGF0aW9ucyB3aXRoIG91ciBpbm5vdmF0aXZlIHNvbHV0aW9ucy4iLCJzdWJfdGl0bGUiOiJPdXIgVGVhbSJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-565ccd46\" data-id=\"565ccd46\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-4e81685f elementor-widget elementor-widget-text-editor\" data-id=\"4e81685f\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-7d3ed03 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"7d3ed03\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-default \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-24b59b7\" data-id=\"24b59b7\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjRjMGU1NTciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X2xpc3QiOlt7ImltYWdlIjp7InVybCI6Imh0dHBzOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMTJcL0ZFSFQtbG9nby5qcGciLCJpZCI6MjgxMiwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwidGl0bGUiOiJGYXIgRWFzdCBUZWNoIiwibGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn0sInNvY2lhbCI6IltdIiwiX2lkIjoiZTU2MjI1MyJ9LHsiaW1hZ2UiOnsidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMlwvRkUtVEVDSC1MT0dPLUZJTkFMLnBuZyIsImlkIjoyODE2LCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJ0aXRsZSI6IkZhciBFYXN0IEVuZ2luZWVyaW5nIiwibGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn0sInNvY2lhbCI6IltdIiwiX2lkIjoiYjI1NDgzNiJ9LHsiaW1hZ2UiOnsidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMlwvRmFyLUVhc3QtVG9vbC1WaW5hLmpwZyIsImlkIjoyODE0LCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJ0aXRsZSI6IkZhciBFYXN0IFRvb2xzIFZpbmEiLCJsaW5rIjp7InVybCI6IiIsImlzX2V4dGVybmFsIjoiIiwibm9mb2xsb3ciOiIifSwic29jaWFsIjoiW10iLCJfaWQiOiI5OTRlMGM1In1dLCJjb2xfbGciOiIzIiwiY29sX3hsIjoiMyIsImNvbF9tZCI6IjIiLCJ0aHVtYm5haWxfY3VzdG9tX2RpbWVuc2lvbiI6eyJ3aWR0aCI6IjM1MCIsImhlaWdodCI6IjM3MSJ9fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfdGVhbV9ncmlkIn0=\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-daa7558 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"daa7558\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-050b385\" data-id=\"050b385\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImNhOGU5ODIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IldlIHdpbGwgZXhjZWVkIHlvdXIgZXhwZWN0YXRpb25zIHdpdGggb3VyIGlubm92YXRpdmUgc29sdXRpb25zIGFzIHlvdXIgdHJ1c3RlZCBwYXJ0bmVyLiIsInN1Yl90aXRsZSI6Ik91ciBQYXJ0bmVycyJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-57c8033\" data-id=\"57c8033\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-be87204 elementor-widget elementor-widget-text-editor\" data-id=\"be87204\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-a2fc248 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"a2fc248\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-5a54914\" data-id=\"5a54914\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImMyYzBjNjciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjbGllbnRzIjpbeyJjbGllbnRfbmFtZSI6Illvc2hpbW90byIsImNsaWVudF9saW5rIjp7InVybCI6Imh0dHBzOlwvXC93d3cueW9zaGltb3RvLXNhbmd5by5jby5qcFwvdm5cLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIn0sImNsaWVudF9pbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC95b3NoaW1vdG8tdmlldG5hbS5wbmciLCJpZCI6MjQ4NiwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwiX2lkIjoiYTQ5ZmJjNCJ9LHsiY2xpZW50X25hbWUiOiJLaW0gTG9uZyBNb3RvcnMiLCJjbGllbnRfbGluayI6eyJ1cmwiOiJodHRwczpcL1wva2ltbG9uZ21vdG9yLmNvbS52blwvIiwiaXNfZXh0ZXJuYWwiOiJvbiIsIm5vZm9sbG93Ijoib24ifSwiY2xpZW50X2ltYWdlIjp7InVybCI6Imh0dHBzOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMTBcL2tpbS1sb25nLW1vdG9ycy5wbmciLCJpZCI6MjQ4NSwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwiX2lkIjoiMzM5MzBhNSJ9LHsiY2xpZW50X25hbWUiOiJTYW1zdW5nIiwiY2xpZW50X2xpbmsiOnsidXJsIjoiaHR0cHM6XC9cL3d3dy5zYW1zdW5nLmNvbVwvdm5cLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIn0sImNsaWVudF9pbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9zYW1zdW5nLmpwZyIsImlkIjoyNDg0LCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJfaWQiOiJhZWVlNmMyIn0seyJjbGllbnRfbmFtZSI6IktvbWF0c3UgS29neW8iLCJjbGllbnRfbGluayI6eyJ1cmwiOiJodHRwczpcL1wva29tYXouY28uanBcL2VuZ2xpc2hcLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIn0sImNsaWVudF9pbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9rb21hdHN1LWtvZ3lvLmpwZyIsImlkIjoyNDgzLCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJfaWQiOiI4ZmM3MzczIn0seyJfaWQiOiJlZDJlNDAxIiwiY2xpZW50X25hbWUiOiJZdXdhIEVuZ2luZWVyaW5nIiwiY2xpZW50X2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiJvbiIsIm5vZm9sbG93Ijoib24iLCJjdXN0b21fYXR0cmlidXRlcyI6IiJ9LCJjbGllbnRfaW1hZ2UiOnsidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwveXV3YS1lbmdpbmVlcmluZy5qcGciLCJpZCI6MjQ4Miwic2l6ZSI6IiIsImFsdCI6IiIsInNvdXJjZSI6ImxpYnJhcnkifX1dLCJzbGlkZXNfdG9fc2hvdyI6IjQiLCJzbGlkZXNfdG9fc2Nyb2xsIjoiMSIsImF1dG9wbGF5IjoidHJ1ZSIsImF1dG9wbGF5X3NwZWVkIjo4MDAwLCJpbmZpbml0ZSI6InRydWUiLCJzcGVlZCI6ODAwLCJzbGlkZXNfdG9fc2hvd19tb2JpbGUiOiIyIiwic2xpZGVzX3RvX3Njcm9sbF9tb2JpbGUiOiIxIiwic2xpZGVzX3RvX3Nob3dfdGFibGV0IjoiMyIsInNsaWRlc190b19zY3JvbGxfdGFibGV0IjoiMSIsImN0X2FuaW1hdGUiOiJ3b3cgem9vbUluIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2NsaWVudHNfbGlzdCJ9\"]            </div>n        </div>n                    </div>n        </section>n        \",\"scripts\":[\"imagesloaded\",\"isotope\",\"ct-post-masonry-widget-js\",\"ct-post-grid-widget-js\",\"jquery-slick\",\"ct-clients-list-widget-js\"],\"styles\":[\"widget-text-editor\"]}}'),(10013,2128,'_elementor_css','a:6:{s:4:\"time\";i:1735095742;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:\"\";}'),(10028,3128,'_wp_page_template','default'),(10029,3128,'_elementor_edit_mode','builder'),(10030,3128,'_elementor_template_type','wp-page'),(10031,3128,'_elementor_version','3.24.7'),(10032,3128,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FE-TECH-LOGO-FINAL.png\",\"id\":2816,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"e562253\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FEE.png\",\"id\":3121,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Engineering\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"b254836\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FETS.png\",\"id\":3122,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tools Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"994e0c5\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions as your trusted partner.\",\"sub_title\":\"Our Partners\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Yoshimoto\",\"client_link\":{\"url\":\"https:\\/\\/www.yoshimoto-sangyo.co.jp\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yoshimoto-vietnam.png\",\"id\":2486,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"a49fbc4\"},{\"client_name\":\"Kim Long Motors\",\"client_link\":{\"url\":\"https:\\/\\/kimlongmotor.com.vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/kim-long-motors.png\",\"id\":2485,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"33930a5\"},{\"client_name\":\"Samsung\",\"client_link\":{\"url\":\"https:\\/\\/www.samsung.com\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/samsung.jpg\",\"id\":2484,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"aeee6c2\"},{\"client_name\":\"Komatsu Kogyo\",\"client_link\":{\"url\":\"https:\\/\\/komaz.co.jp\\/english\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/komatsu-kogyo.jpg\",\"id\":2483,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8fc7373\"},{\"_id\":\"ed2e401\",\"client_name\":\"Yuwa Engineering\",\"client_link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yuwa-engineering.jpg\",\"id\":2482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10033,3128,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(10034,3128,'_elementor_page_assets','a:2:{s:6:\"styles\";a:1:{i:0;s:18:\"widget-text-editor\";}s:7:\"scripts\";a:6:{i:0;s:12:\"imagesloaded\";i:1;s:7:\"isotope\";i:2;s:25:\"ct-post-masonry-widget-js\";i:3;s:22:\"ct-post-grid-widget-js\";i:4;s:12:\"jquery-slick\";i:5;s:25:\"ct-clients-list-widget-js\";}}'),(10035,3128,'_elementor_element_cache','{\"timeout\":1735182144,\"value\":{\"content\":\"        <section class=\"elementor-section elementor-top-section elementor-element elementor-element-5ebd4da3 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"5ebd4da3\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-65bf164f\" data-id=\"65bf164f\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjcwOWM5ZmYwIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJXZSB3aWxsIGV4Y2VlZCB5b3VyIGV4cGVjdGF0aW9ucyB3aXRoIG91ciBpbm5vdmF0aXZlIHNvbHV0aW9ucy4iLCJzdWJfdGl0bGUiOiJPdXIgVGVhbSJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-565ccd46\" data-id=\"565ccd46\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-4e81685f elementor-widget elementor-widget-text-editor\" data-id=\"4e81685f\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-7d3ed03 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"7d3ed03\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-default \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-24b59b7\" data-id=\"24b59b7\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjRjMGU1NTciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X2xpc3QiOlt7ImltYWdlIjp7InVybCI6Imh0dHBzOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMTJcL0ZFLVRFQ0gtTE9HTy1GSU5BTC5wbmciLCJpZCI6MjgxNiwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwidGl0bGUiOiJGYXIgRWFzdCBUZWNoIiwibGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn0sInNvY2lhbCI6IltdIiwiX2lkIjoiZTU2MjI1MyJ9LHsiaW1hZ2UiOnsidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMlwvRkVFLnBuZyIsImlkIjozMTIxLCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJ0aXRsZSI6IkZhciBFYXN0IEVuZ2luZWVyaW5nIiwibGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn0sInNvY2lhbCI6IltdIiwiX2lkIjoiYjI1NDgzNiJ9LHsiaW1hZ2UiOnsidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMlwvRkVUUy5wbmciLCJpZCI6MzEyMiwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwidGl0bGUiOiJGYXIgRWFzdCBUb29scyBUZWNoIiwibGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn0sInNvY2lhbCI6IltdIiwiX2lkIjoiOTk0ZTBjNSJ9XSwiY29sX2xnIjoiMyIsImNvbF94bCI6IjMiLCJjb2xfbWQiOiIyIiwidGh1bWJuYWlsX2N1c3RvbV9kaW1lbnNpb24iOnsid2lkdGgiOiIzNTAiLCJoZWlnaHQiOiIzNzEifX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X3RlYW1fZ3JpZCJ9\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-daa7558 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"daa7558\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-050b385\" data-id=\"050b385\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImNhOGU5ODIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IldlIHdpbGwgZXhjZWVkIHlvdXIgZXhwZWN0YXRpb25zIHdpdGggb3VyIGlubm92YXRpdmUgc29sdXRpb25zIGFzIHlvdXIgdHJ1c3RlZCBwYXJ0bmVyLiIsInN1Yl90aXRsZSI6Ik91ciBQYXJ0bmVycyJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-57c8033\" data-id=\"57c8033\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-be87204 elementor-widget elementor-widget-text-editor\" data-id=\"be87204\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-a2fc248 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"a2fc248\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-5a54914\" data-id=\"5a54914\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImMyYzBjNjciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjbGllbnRzIjpbeyJjbGllbnRfbmFtZSI6Illvc2hpbW90byIsImNsaWVudF9saW5rIjp7InVybCI6Imh0dHBzOlwvXC93d3cueW9zaGltb3RvLXNhbmd5by5jby5qcFwvdm5cLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIn0sImNsaWVudF9pbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC95b3NoaW1vdG8tdmlldG5hbS5wbmciLCJpZCI6MjQ4NiwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwiX2lkIjoiYTQ5ZmJjNCJ9LHsiY2xpZW50X25hbWUiOiJLaW0gTG9uZyBNb3RvcnMiLCJjbGllbnRfbGluayI6eyJ1cmwiOiJodHRwczpcL1wva2ltbG9uZ21vdG9yLmNvbS52blwvIiwiaXNfZXh0ZXJuYWwiOiJvbiIsIm5vZm9sbG93Ijoib24ifSwiY2xpZW50X2ltYWdlIjp7InVybCI6Imh0dHBzOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMTBcL2tpbS1sb25nLW1vdG9ycy5wbmciLCJpZCI6MjQ4NSwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwiX2lkIjoiMzM5MzBhNSJ9LHsiY2xpZW50X25hbWUiOiJTYW1zdW5nIiwiY2xpZW50X2xpbmsiOnsidXJsIjoiaHR0cHM6XC9cL3d3dy5zYW1zdW5nLmNvbVwvdm5cLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIn0sImNsaWVudF9pbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9zYW1zdW5nLmpwZyIsImlkIjoyNDg0LCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJfaWQiOiJhZWVlNmMyIn0seyJjbGllbnRfbmFtZSI6IktvbWF0c3UgS29neW8iLCJjbGllbnRfbGluayI6eyJ1cmwiOiJodHRwczpcL1wva29tYXouY28uanBcL2VuZ2xpc2hcLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIn0sImNsaWVudF9pbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9rb21hdHN1LWtvZ3lvLmpwZyIsImlkIjoyNDgzLCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJfaWQiOiI4ZmM3MzczIn0seyJfaWQiOiJlZDJlNDAxIiwiY2xpZW50X25hbWUiOiJZdXdhIEVuZ2luZWVyaW5nIiwiY2xpZW50X2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiJvbiIsIm5vZm9sbG93Ijoib24iLCJjdXN0b21fYXR0cmlidXRlcyI6IiJ9LCJjbGllbnRfaW1hZ2UiOnsidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwveXV3YS1lbmdpbmVlcmluZy5qcGciLCJpZCI6MjQ4Miwic2l6ZSI6IiIsImFsdCI6IiIsInNvdXJjZSI6ImxpYnJhcnkifX1dLCJzbGlkZXNfdG9fc2hvdyI6IjQiLCJzbGlkZXNfdG9fc2Nyb2xsIjoiMSIsImF1dG9wbGF5IjoidHJ1ZSIsImF1dG9wbGF5X3NwZWVkIjo4MDAwLCJpbmZpbml0ZSI6InRydWUiLCJzcGVlZCI6ODAwLCJzbGlkZXNfdG9fc2hvd19tb2JpbGUiOiIyIiwic2xpZGVzX3RvX3Njcm9sbF9tb2JpbGUiOiIxIiwic2xpZGVzX3RvX3Nob3dfdGFibGV0IjoiMyIsInNsaWRlc190b19zY3JvbGxfdGFibGV0IjoiMSIsImN0X2FuaW1hdGUiOiJ3b3cgem9vbUluIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2NsaWVudHNfbGlzdCJ9\"]            </div>n        </div>n                    </div>n        </section>n        \",\"scripts\":[],\"styles\":[]}}'),(10036,3128,'_elementor_css','a:6:{s:4:\"time\";i:1735096278;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:\"\";}'),(10037,3129,'_wp_page_template','default'),(10038,3129,'_elementor_edit_mode','builder'),(10039,3129,'_elementor_template_type','wp-page'),(10040,3129,'_elementor_version','3.24.7'),(10041,3129,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FE-TECH-LOGO-FINAL.png\",\"id\":2816,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"e562253\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FEE.png\",\"id\":3121,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Engineering\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"b254836\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FETS.png\",\"id\":3122,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tools Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"994e0c5\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions as your trusted partner.\",\"sub_title\":\"Our Partners\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Yoshimoto\",\"client_link\":{\"url\":\"https:\\/\\/www.yoshimoto-sangyo.co.jp\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yoshimoto-vietnam.png\",\"id\":2486,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"a49fbc4\"},{\"client_name\":\"Kim Long Motors\",\"client_link\":{\"url\":\"https:\\/\\/kimlongmotor.com.vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/kim-long-motors.png\",\"id\":2485,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"33930a5\"},{\"client_name\":\"Samsung\",\"client_link\":{\"url\":\"https:\\/\\/www.samsung.com\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/samsung.jpg\",\"id\":2484,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"aeee6c2\"},{\"client_name\":\"Komatsu Kogyo\",\"client_link\":{\"url\":\"https:\\/\\/komaz.co.jp\\/english\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/komatsu-kogyo.jpg\",\"id\":2483,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8fc7373\"},{\"_id\":\"ed2e401\",\"client_name\":\"Yuwa Engineering\",\"client_link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yuwa-engineering.jpg\",\"id\":2482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10042,3129,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(10043,3129,'_elementor_page_assets','a:2:{s:6:\"styles\";a:1:{i:0;s:18:\"widget-text-editor\";}s:7:\"scripts\";a:6:{i:0;s:12:\"imagesloaded\";i:1;s:7:\"isotope\";i:2;s:25:\"ct-post-masonry-widget-js\";i:3;s:22:\"ct-post-grid-widget-js\";i:4;s:12:\"jquery-slick\";i:5;s:25:\"ct-clients-list-widget-js\";}}'),(10044,3129,'_elementor_element_cache','{\"timeout\":1735182144,\"value\":{\"content\":\"        <section class=\"elementor-section elementor-top-section elementor-element elementor-element-5ebd4da3 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"5ebd4da3\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-65bf164f\" data-id=\"65bf164f\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjcwOWM5ZmYwIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJXZSB3aWxsIGV4Y2VlZCB5b3VyIGV4cGVjdGF0aW9ucyB3aXRoIG91ciBpbm5vdmF0aXZlIHNvbHV0aW9ucy4iLCJzdWJfdGl0bGUiOiJPdXIgVGVhbSJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-565ccd46\" data-id=\"565ccd46\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-4e81685f elementor-widget elementor-widget-text-editor\" data-id=\"4e81685f\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-7d3ed03 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"7d3ed03\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-default \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-24b59b7\" data-id=\"24b59b7\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjRjMGU1NTciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X2xpc3QiOlt7ImltYWdlIjp7InVybCI6Imh0dHBzOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMTJcL0ZFLVRFQ0gtTE9HTy1GSU5BTC5wbmciLCJpZCI6MjgxNiwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwidGl0bGUiOiJGYXIgRWFzdCBUZWNoIiwibGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn0sInNvY2lhbCI6IltdIiwiX2lkIjoiZTU2MjI1MyJ9LHsiaW1hZ2UiOnsidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMlwvRkVFLnBuZyIsImlkIjozMTIxLCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJ0aXRsZSI6IkZhciBFYXN0IEVuZ2luZWVyaW5nIiwibGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn0sInNvY2lhbCI6IltdIiwiX2lkIjoiYjI1NDgzNiJ9LHsiaW1hZ2UiOnsidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMlwvRkVUUy5wbmciLCJpZCI6MzEyMiwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwidGl0bGUiOiJGYXIgRWFzdCBUb29scyBUZWNoIiwibGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn0sInNvY2lhbCI6IltdIiwiX2lkIjoiOTk0ZTBjNSJ9XSwiY29sX2xnIjoiMyIsImNvbF94bCI6IjMiLCJjb2xfbWQiOiIyIiwidGh1bWJuYWlsX2N1c3RvbV9kaW1lbnNpb24iOnsid2lkdGgiOiIzNTAiLCJoZWlnaHQiOiIzNzEifX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X3RlYW1fZ3JpZCJ9\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-daa7558 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"daa7558\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-050b385\" data-id=\"050b385\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImNhOGU5ODIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IldlIHdpbGwgZXhjZWVkIHlvdXIgZXhwZWN0YXRpb25zIHdpdGggb3VyIGlubm92YXRpdmUgc29sdXRpb25zIGFzIHlvdXIgdHJ1c3RlZCBwYXJ0bmVyLiIsInN1Yl90aXRsZSI6Ik91ciBQYXJ0bmVycyJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-57c8033\" data-id=\"57c8033\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-be87204 elementor-widget elementor-widget-text-editor\" data-id=\"be87204\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-a2fc248 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"a2fc248\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-5a54914\" data-id=\"5a54914\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImMyYzBjNjciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjbGllbnRzIjpbeyJjbGllbnRfbmFtZSI6Illvc2hpbW90byIsImNsaWVudF9saW5rIjp7InVybCI6Imh0dHBzOlwvXC93d3cueW9zaGltb3RvLXNhbmd5by5jby5qcFwvdm5cLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIn0sImNsaWVudF9pbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC95b3NoaW1vdG8tdmlldG5hbS5wbmciLCJpZCI6MjQ4NiwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwiX2lkIjoiYTQ5ZmJjNCJ9LHsiY2xpZW50X25hbWUiOiJLaW0gTG9uZyBNb3RvcnMiLCJjbGllbnRfbGluayI6eyJ1cmwiOiJodHRwczpcL1wva2ltbG9uZ21vdG9yLmNvbS52blwvIiwiaXNfZXh0ZXJuYWwiOiJvbiIsIm5vZm9sbG93Ijoib24ifSwiY2xpZW50X2ltYWdlIjp7InVybCI6Imh0dHBzOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMTBcL2tpbS1sb25nLW1vdG9ycy5wbmciLCJpZCI6MjQ4NSwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwiX2lkIjoiMzM5MzBhNSJ9LHsiY2xpZW50X25hbWUiOiJTYW1zdW5nIiwiY2xpZW50X2xpbmsiOnsidXJsIjoiaHR0cHM6XC9cL3d3dy5zYW1zdW5nLmNvbVwvdm5cLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIn0sImNsaWVudF9pbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9zYW1zdW5nLmpwZyIsImlkIjoyNDg0LCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJfaWQiOiJhZWVlNmMyIn0seyJjbGllbnRfbmFtZSI6IktvbWF0c3UgS29neW8iLCJjbGllbnRfbGluayI6eyJ1cmwiOiJodHRwczpcL1wva29tYXouY28uanBcL2VuZ2xpc2hcLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIn0sImNsaWVudF9pbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9rb21hdHN1LWtvZ3lvLmpwZyIsImlkIjoyNDgzLCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJfaWQiOiI4ZmM3MzczIn0seyJfaWQiOiJlZDJlNDAxIiwiY2xpZW50X25hbWUiOiJZdXdhIEVuZ2luZWVyaW5nIiwiY2xpZW50X2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiJvbiIsIm5vZm9sbG93Ijoib24iLCJjdXN0b21fYXR0cmlidXRlcyI6IiJ9LCJjbGllbnRfaW1hZ2UiOnsidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwveXV3YS1lbmdpbmVlcmluZy5qcGciLCJpZCI6MjQ4Miwic2l6ZSI6IiIsImFsdCI6IiIsInNvdXJjZSI6ImxpYnJhcnkifX1dLCJzbGlkZXNfdG9fc2hvdyI6IjQiLCJzbGlkZXNfdG9fc2Nyb2xsIjoiMSIsImF1dG9wbGF5IjoidHJ1ZSIsImF1dG9wbGF5X3NwZWVkIjo4MDAwLCJpbmZpbml0ZSI6InRydWUiLCJzcGVlZCI6ODAwLCJzbGlkZXNfdG9fc2hvd19tb2JpbGUiOiIyIiwic2xpZGVzX3RvX3Njcm9sbF9tb2JpbGUiOiIxIiwic2xpZGVzX3RvX3Nob3dfdGFibGV0IjoiMyIsInNsaWRlc190b19zY3JvbGxfdGFibGV0IjoiMSIsImN0X2FuaW1hdGUiOiJ3b3cgem9vbUluIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2NsaWVudHNfbGlzdCJ9\"]            </div>n        </div>n                    </div>n        </section>n        \",\"scripts\":[],\"styles\":[]}}'),(10045,3129,'_elementor_css','a:6:{s:4:\"time\";i:1735096278;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:\"\";}'),(10046,3130,'_wp_page_template','default'),(10047,3130,'_elementor_edit_mode','builder'),(10048,3130,'_elementor_template_type','wp-page'),(10049,3130,'_elementor_version','3.24.7'),(10050,3130,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"e562253\"},{\"image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Engineering\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"b254836\"},{\"image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tools Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"994e0c5\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions as your trusted partner.\",\"sub_title\":\"Our Partners\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Yoshimoto\",\"client_link\":{\"url\":\"https:\\/\\/www.yoshimoto-sangyo.co.jp\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yoshimoto-vietnam.png\",\"id\":2486,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"a49fbc4\"},{\"client_name\":\"Kim Long Motors\",\"client_link\":{\"url\":\"https:\\/\\/kimlongmotor.com.vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/kim-long-motors.png\",\"id\":2485,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"33930a5\"},{\"client_name\":\"Samsung\",\"client_link\":{\"url\":\"https:\\/\\/www.samsung.com\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/samsung.jpg\",\"id\":2484,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"aeee6c2\"},{\"client_name\":\"Komatsu Kogyo\",\"client_link\":{\"url\":\"https:\\/\\/komaz.co.jp\\/english\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/komatsu-kogyo.jpg\",\"id\":2483,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8fc7373\"},{\"_id\":\"ed2e401\",\"client_name\":\"Yuwa Engineering\",\"client_link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yuwa-engineering.jpg\",\"id\":2482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10051,3130,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(10052,3130,'_elementor_page_assets','a:2:{s:6:\"styles\";a:1:{i:0;s:18:\"widget-text-editor\";}s:7:\"scripts\";a:6:{i:0;s:12:\"imagesloaded\";i:1;s:7:\"isotope\";i:2;s:25:\"ct-post-masonry-widget-js\";i:3;s:22:\"ct-post-grid-widget-js\";i:4;s:12:\"jquery-slick\";i:5;s:25:\"ct-clients-list-widget-js\";}}'),(10053,3130,'_elementor_element_cache','{\"timeout\":1735182144,\"value\":{\"content\":\"        <section class=\"elementor-section elementor-top-section elementor-element elementor-element-5ebd4da3 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"5ebd4da3\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-65bf164f\" data-id=\"65bf164f\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjcwOWM5ZmYwIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJXZSB3aWxsIGV4Y2VlZCB5b3VyIGV4cGVjdGF0aW9ucyB3aXRoIG91ciBpbm5vdmF0aXZlIHNvbHV0aW9ucy4iLCJzdWJfdGl0bGUiOiJPdXIgVGVhbSJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-565ccd46\" data-id=\"565ccd46\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-4e81685f elementor-widget elementor-widget-text-editor\" data-id=\"4e81685f\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-7d3ed03 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"7d3ed03\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-default \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-24b59b7\" data-id=\"24b59b7\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjRjMGU1NTciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X2xpc3QiOlt7ImltYWdlIjp7InVybCI6Imh0dHBzOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMTJcL0ZFLVRFQ0gtTE9HTy1GSU5BTC5wbmciLCJpZCI6MjgxNiwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwidGl0bGUiOiJGYXIgRWFzdCBUZWNoIiwibGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn0sInNvY2lhbCI6IltdIiwiX2lkIjoiZTU2MjI1MyJ9LHsiaW1hZ2UiOnsidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMlwvRkVFLnBuZyIsImlkIjozMTIxLCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJ0aXRsZSI6IkZhciBFYXN0IEVuZ2luZWVyaW5nIiwibGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn0sInNvY2lhbCI6IltdIiwiX2lkIjoiYjI1NDgzNiJ9LHsiaW1hZ2UiOnsidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMlwvRkVUUy5wbmciLCJpZCI6MzEyMiwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwidGl0bGUiOiJGYXIgRWFzdCBUb29scyBUZWNoIiwibGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn0sInNvY2lhbCI6IltdIiwiX2lkIjoiOTk0ZTBjNSJ9XSwiY29sX2xnIjoiMyIsImNvbF94bCI6IjMiLCJjb2xfbWQiOiIyIiwidGh1bWJuYWlsX2N1c3RvbV9kaW1lbnNpb24iOnsid2lkdGgiOiIzNTAiLCJoZWlnaHQiOiIzNzEifX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X3RlYW1fZ3JpZCJ9\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-daa7558 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"daa7558\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-050b385\" data-id=\"050b385\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImNhOGU5ODIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IldlIHdpbGwgZXhjZWVkIHlvdXIgZXhwZWN0YXRpb25zIHdpdGggb3VyIGlubm92YXRpdmUgc29sdXRpb25zIGFzIHlvdXIgdHJ1c3RlZCBwYXJ0bmVyLiIsInN1Yl90aXRsZSI6Ik91ciBQYXJ0bmVycyJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-57c8033\" data-id=\"57c8033\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-be87204 elementor-widget elementor-widget-text-editor\" data-id=\"be87204\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-a2fc248 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"a2fc248\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-5a54914\" data-id=\"5a54914\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImMyYzBjNjciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjbGllbnRzIjpbeyJjbGllbnRfbmFtZSI6Illvc2hpbW90byIsImNsaWVudF9saW5rIjp7InVybCI6Imh0dHBzOlwvXC93d3cueW9zaGltb3RvLXNhbmd5by5jby5qcFwvdm5cLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIn0sImNsaWVudF9pbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC95b3NoaW1vdG8tdmlldG5hbS5wbmciLCJpZCI6MjQ4NiwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwiX2lkIjoiYTQ5ZmJjNCJ9LHsiY2xpZW50X25hbWUiOiJLaW0gTG9uZyBNb3RvcnMiLCJjbGllbnRfbGluayI6eyJ1cmwiOiJodHRwczpcL1wva2ltbG9uZ21vdG9yLmNvbS52blwvIiwiaXNfZXh0ZXJuYWwiOiJvbiIsIm5vZm9sbG93Ijoib24ifSwiY2xpZW50X2ltYWdlIjp7InVybCI6Imh0dHBzOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMTBcL2tpbS1sb25nLW1vdG9ycy5wbmciLCJpZCI6MjQ4NSwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwiX2lkIjoiMzM5MzBhNSJ9LHsiY2xpZW50X25hbWUiOiJTYW1zdW5nIiwiY2xpZW50X2xpbmsiOnsidXJsIjoiaHR0cHM6XC9cL3d3dy5zYW1zdW5nLmNvbVwvdm5cLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIn0sImNsaWVudF9pbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9zYW1zdW5nLmpwZyIsImlkIjoyNDg0LCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJfaWQiOiJhZWVlNmMyIn0seyJjbGllbnRfbmFtZSI6IktvbWF0c3UgS29neW8iLCJjbGllbnRfbGluayI6eyJ1cmwiOiJodHRwczpcL1wva29tYXouY28uanBcL2VuZ2xpc2hcLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIn0sImNsaWVudF9pbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9rb21hdHN1LWtvZ3lvLmpwZyIsImlkIjoyNDgzLCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJfaWQiOiI4ZmM3MzczIn0seyJfaWQiOiJlZDJlNDAxIiwiY2xpZW50X25hbWUiOiJZdXdhIEVuZ2luZWVyaW5nIiwiY2xpZW50X2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiJvbiIsIm5vZm9sbG93Ijoib24iLCJjdXN0b21fYXR0cmlidXRlcyI6IiJ9LCJjbGllbnRfaW1hZ2UiOnsidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwveXV3YS1lbmdpbmVlcmluZy5qcGciLCJpZCI6MjQ4Miwic2l6ZSI6IiIsImFsdCI6IiIsInNvdXJjZSI6ImxpYnJhcnkifX1dLCJzbGlkZXNfdG9fc2hvdyI6IjQiLCJzbGlkZXNfdG9fc2Nyb2xsIjoiMSIsImF1dG9wbGF5IjoidHJ1ZSIsImF1dG9wbGF5X3NwZWVkIjo4MDAwLCJpbmZpbml0ZSI6InRydWUiLCJzcGVlZCI6ODAwLCJzbGlkZXNfdG9fc2hvd19tb2JpbGUiOiIyIiwic2xpZGVzX3RvX3Njcm9sbF9tb2JpbGUiOiIxIiwic2xpZGVzX3RvX3Nob3dfdGFibGV0IjoiMyIsInNsaWRlc190b19zY3JvbGxfdGFibGV0IjoiMSIsImN0X2FuaW1hdGUiOiJ3b3cgem9vbUluIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2NsaWVudHNfbGlzdCJ9\"]            </div>n        </div>n                    </div>n        </section>n        \",\"scripts\":[],\"styles\":[]}}'),(10054,3130,'_elementor_css','a:6:{s:4:\"time\";i:1735096278;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:\"\";}'),(10057,3131,'_wp_attached_file','2024/12/FEE.jpg'),(10058,3131,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:301;s:6:\"height\";i:301;s:4:\"file\";s:15:\"2024/12/FEE.jpg\";s:8:\"filesize\";i:15719;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:{}}}'),(10061,3133,'_wp_attached_file','2024/12/FETS.png'),(10062,3133,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:301;s:6:\"height\";i:301;s:4:\"file\";s:16:\"2024/12/FETS.png\";s:8:\"filesize\";i:7273;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:{}}}'),(10063,3134,'_wp_page_template','default'),(10064,3134,'_elementor_edit_mode','builder'),(10065,3134,'_elementor_template_type','wp-page'),(10066,3134,'_elementor_version','3.24.7'),(10067,3134,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"e562253\"},{\"image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Engineering\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"b254836\"},{\"image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tools Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"994e0c5\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions as your trusted partner.\",\"sub_title\":\"Our Partners\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Yoshimoto\",\"client_link\":{\"url\":\"https:\\/\\/www.yoshimoto-sangyo.co.jp\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yoshimoto-vietnam.png\",\"id\":2486,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"a49fbc4\"},{\"client_name\":\"Kim Long Motors\",\"client_link\":{\"url\":\"https:\\/\\/kimlongmotor.com.vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/kim-long-motors.png\",\"id\":2485,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"33930a5\"},{\"client_name\":\"Samsung\",\"client_link\":{\"url\":\"https:\\/\\/www.samsung.com\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/samsung.jpg\",\"id\":2484,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"aeee6c2\"},{\"client_name\":\"Komatsu Kogyo\",\"client_link\":{\"url\":\"https:\\/\\/komaz.co.jp\\/english\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/komatsu-kogyo.jpg\",\"id\":2483,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8fc7373\"},{\"_id\":\"ed2e401\",\"client_name\":\"Yuwa Engineering\",\"client_link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yuwa-engineering.jpg\",\"id\":2482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10068,3134,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(10069,3134,'_elementor_page_assets','a:2:{s:6:\"styles\";a:1:{i:0;s:18:\"widget-text-editor\";}s:7:\"scripts\";a:6:{i:0;s:12:\"imagesloaded\";i:1;s:7:\"isotope\";i:2;s:25:\"ct-post-masonry-widget-js\";i:3;s:22:\"ct-post-grid-widget-js\";i:4;s:12:\"jquery-slick\";i:5;s:25:\"ct-clients-list-widget-js\";}}'),(10070,3134,'_elementor_css','a:6:{s:4:\"time\";i:1735096282;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:\"\";}'),(10071,3134,'_elementor_element_cache','{\"timeout\":1735182682,\"value\":{\"content\":\"        <section class=\"elementor-section elementor-top-section elementor-element elementor-element-5ebd4da3 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"5ebd4da3\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-65bf164f\" data-id=\"65bf164f\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjcwOWM5ZmYwIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJXZSB3aWxsIGV4Y2VlZCB5b3VyIGV4cGVjdGF0aW9ucyB3aXRoIG91ciBpbm5vdmF0aXZlIHNvbHV0aW9ucy4iLCJzdWJfdGl0bGUiOiJPdXIgVGVhbSJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-565ccd46\" data-id=\"565ccd46\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-4e81685f elementor-widget elementor-widget-text-editor\" data-id=\"4e81685f\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-7d3ed03 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"7d3ed03\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-default \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-24b59b7\" data-id=\"24b59b7\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjRjMGU1NTciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X2xpc3QiOlt7ImltYWdlIjp7InVybCI6IiIsImlkIjoiIiwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwidGl0bGUiOiJGYXIgRWFzdCBUZWNoIiwibGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn0sInNvY2lhbCI6IltdIiwiX2lkIjoiZTU2MjI1MyJ9LHsiaW1hZ2UiOnsidXJsIjoiIiwiaWQiOiIiLCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJ0aXRsZSI6IkZhciBFYXN0IEVuZ2luZWVyaW5nIiwibGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn0sInNvY2lhbCI6IltdIiwiX2lkIjoiYjI1NDgzNiJ9LHsiaW1hZ2UiOnsidXJsIjoiIiwiaWQiOiIiLCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJ0aXRsZSI6IkZhciBFYXN0IFRvb2xzIFRlY2giLCJsaW5rIjp7InVybCI6IiIsImlzX2V4dGVybmFsIjoiIiwibm9mb2xsb3ciOiIifSwic29jaWFsIjoiW10iLCJfaWQiOiI5OTRlMGM1In1dLCJjb2xfbGciOiIzIiwiY29sX3hsIjoiMyIsImNvbF9tZCI6IjIiLCJ0aHVtYm5haWxfY3VzdG9tX2RpbWVuc2lvbiI6eyJ3aWR0aCI6IjM1MCIsImhlaWdodCI6IjM3MSJ9fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfdGVhbV9ncmlkIn0=\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-daa7558 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"daa7558\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-050b385\" data-id=\"050b385\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImNhOGU5ODIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IldlIHdpbGwgZXhjZWVkIHlvdXIgZXhwZWN0YXRpb25zIHdpdGggb3VyIGlubm92YXRpdmUgc29sdXRpb25zIGFzIHlvdXIgdHJ1c3RlZCBwYXJ0bmVyLiIsInN1Yl90aXRsZSI6Ik91ciBQYXJ0bmVycyJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-57c8033\" data-id=\"57c8033\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-be87204 elementor-widget elementor-widget-text-editor\" data-id=\"be87204\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-a2fc248 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"a2fc248\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-5a54914\" data-id=\"5a54914\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImMyYzBjNjciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjbGllbnRzIjpbeyJjbGllbnRfbmFtZSI6Illvc2hpbW90byIsImNsaWVudF9saW5rIjp7InVybCI6Imh0dHBzOlwvXC93d3cueW9zaGltb3RvLXNhbmd5by5jby5qcFwvdm5cLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIn0sImNsaWVudF9pbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC95b3NoaW1vdG8tdmlldG5hbS5wbmciLCJpZCI6MjQ4NiwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwiX2lkIjoiYTQ5ZmJjNCJ9LHsiY2xpZW50X25hbWUiOiJLaW0gTG9uZyBNb3RvcnMiLCJjbGllbnRfbGluayI6eyJ1cmwiOiJodHRwczpcL1wva2ltbG9uZ21vdG9yLmNvbS52blwvIiwiaXNfZXh0ZXJuYWwiOiJvbiIsIm5vZm9sbG93Ijoib24ifSwiY2xpZW50X2ltYWdlIjp7InVybCI6Imh0dHBzOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMTBcL2tpbS1sb25nLW1vdG9ycy5wbmciLCJpZCI6MjQ4NSwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwiX2lkIjoiMzM5MzBhNSJ9LHsiY2xpZW50X25hbWUiOiJTYW1zdW5nIiwiY2xpZW50X2xpbmsiOnsidXJsIjoiaHR0cHM6XC9cL3d3dy5zYW1zdW5nLmNvbVwvdm5cLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIn0sImNsaWVudF9pbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9zYW1zdW5nLmpwZyIsImlkIjoyNDg0LCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJfaWQiOiJhZWVlNmMyIn0seyJjbGllbnRfbmFtZSI6IktvbWF0c3UgS29neW8iLCJjbGllbnRfbGluayI6eyJ1cmwiOiJodHRwczpcL1wva29tYXouY28uanBcL2VuZ2xpc2hcLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIn0sImNsaWVudF9pbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9rb21hdHN1LWtvZ3lvLmpwZyIsImlkIjoyNDgzLCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJfaWQiOiI4ZmM3MzczIn0seyJfaWQiOiJlZDJlNDAxIiwiY2xpZW50X25hbWUiOiJZdXdhIEVuZ2luZWVyaW5nIiwiY2xpZW50X2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiJvbiIsIm5vZm9sbG93Ijoib24iLCJjdXN0b21fYXR0cmlidXRlcyI6IiJ9LCJjbGllbnRfaW1hZ2UiOnsidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwveXV3YS1lbmdpbmVlcmluZy5qcGciLCJpZCI6MjQ4Miwic2l6ZSI6IiIsImFsdCI6IiIsInNvdXJjZSI6ImxpYnJhcnkifX1dLCJzbGlkZXNfdG9fc2hvdyI6IjQiLCJzbGlkZXNfdG9fc2Nyb2xsIjoiMSIsImF1dG9wbGF5IjoidHJ1ZSIsImF1dG9wbGF5X3NwZWVkIjo4MDAwLCJpbmZpbml0ZSI6InRydWUiLCJzcGVlZCI6ODAwLCJzbGlkZXNfdG9fc2hvd19tb2JpbGUiOiIyIiwic2xpZGVzX3RvX3Njcm9sbF9tb2JpbGUiOiIxIiwic2xpZGVzX3RvX3Nob3dfdGFibGV0IjoiMyIsInNsaWRlc190b19zY3JvbGxfdGFibGV0IjoiMSIsImN0X2FuaW1hdGUiOiJ3b3cgem9vbUluIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2NsaWVudHNfbGlzdCJ9\"]            </div>n        </div>n                    </div>n        </section>n        \",\"scripts\":[],\"styles\":[]}}'),(10072,3135,'_wp_page_template','default'),(10073,3135,'_elementor_edit_mode','builder'),(10074,3135,'_elementor_template_type','wp-page'),(10075,3135,'_elementor_version','3.24.7'),(10076,3135,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"e562253\"},{\"image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Engineering\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"b254836\"},{\"image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tools Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"994e0c5\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions as your trusted partner.\",\"sub_title\":\"Our Partners\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Yoshimoto\",\"client_link\":{\"url\":\"https:\\/\\/www.yoshimoto-sangyo.co.jp\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yoshimoto-vietnam.png\",\"id\":2486,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"a49fbc4\"},{\"client_name\":\"Kim Long Motors\",\"client_link\":{\"url\":\"https:\\/\\/kimlongmotor.com.vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/kim-long-motors.png\",\"id\":2485,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"33930a5\"},{\"client_name\":\"Samsung\",\"client_link\":{\"url\":\"https:\\/\\/www.samsung.com\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/samsung.jpg\",\"id\":2484,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"aeee6c2\"},{\"client_name\":\"Komatsu Kogyo\",\"client_link\":{\"url\":\"https:\\/\\/komaz.co.jp\\/english\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/komatsu-kogyo.jpg\",\"id\":2483,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8fc7373\"},{\"_id\":\"ed2e401\",\"client_name\":\"Yuwa Engineering\",\"client_link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yuwa-engineering.jpg\",\"id\":2482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10077,3135,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(10078,3135,'_elementor_page_assets','a:2:{s:6:\"styles\";a:1:{i:0;s:18:\"widget-text-editor\";}s:7:\"scripts\";a:6:{i:0;s:12:\"imagesloaded\";i:1;s:7:\"isotope\";i:2;s:25:\"ct-post-masonry-widget-js\";i:3;s:22:\"ct-post-grid-widget-js\";i:4;s:12:\"jquery-slick\";i:5;s:25:\"ct-clients-list-widget-js\";}}'),(10079,3135,'_elementor_css','a:6:{s:4:\"time\";i:1735096282;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:\"\";}'),(10080,3135,'_elementor_element_cache','{\"timeout\":1735182682,\"value\":{\"content\":\"        <section class=\"elementor-section elementor-top-section elementor-element elementor-element-5ebd4da3 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"5ebd4da3\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-65bf164f\" data-id=\"65bf164f\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjcwOWM5ZmYwIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJXZSB3aWxsIGV4Y2VlZCB5b3VyIGV4cGVjdGF0aW9ucyB3aXRoIG91ciBpbm5vdmF0aXZlIHNvbHV0aW9ucy4iLCJzdWJfdGl0bGUiOiJPdXIgVGVhbSJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-565ccd46\" data-id=\"565ccd46\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-4e81685f elementor-widget elementor-widget-text-editor\" data-id=\"4e81685f\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-7d3ed03 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"7d3ed03\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-default \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-24b59b7\" data-id=\"24b59b7\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjRjMGU1NTciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X2xpc3QiOlt7ImltYWdlIjp7InVybCI6IiIsImlkIjoiIiwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwidGl0bGUiOiJGYXIgRWFzdCBUZWNoIiwibGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn0sInNvY2lhbCI6IltdIiwiX2lkIjoiZTU2MjI1MyJ9LHsiaW1hZ2UiOnsidXJsIjoiIiwiaWQiOiIiLCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJ0aXRsZSI6IkZhciBFYXN0IEVuZ2luZWVyaW5nIiwibGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn0sInNvY2lhbCI6IltdIiwiX2lkIjoiYjI1NDgzNiJ9LHsiaW1hZ2UiOnsidXJsIjoiIiwiaWQiOiIiLCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJ0aXRsZSI6IkZhciBFYXN0IFRvb2xzIFRlY2giLCJsaW5rIjp7InVybCI6IiIsImlzX2V4dGVybmFsIjoiIiwibm9mb2xsb3ciOiIifSwic29jaWFsIjoiW10iLCJfaWQiOiI5OTRlMGM1In1dLCJjb2xfbGciOiIzIiwiY29sX3hsIjoiMyIsImNvbF9tZCI6IjIiLCJ0aHVtYm5haWxfY3VzdG9tX2RpbWVuc2lvbiI6eyJ3aWR0aCI6IjM1MCIsImhlaWdodCI6IjM3MSJ9fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfdGVhbV9ncmlkIn0=\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-daa7558 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"daa7558\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-050b385\" data-id=\"050b385\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImNhOGU5ODIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IldlIHdpbGwgZXhjZWVkIHlvdXIgZXhwZWN0YXRpb25zIHdpdGggb3VyIGlubm92YXRpdmUgc29sdXRpb25zIGFzIHlvdXIgdHJ1c3RlZCBwYXJ0bmVyLiIsInN1Yl90aXRsZSI6Ik91ciBQYXJ0bmVycyJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-57c8033\" data-id=\"57c8033\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-be87204 elementor-widget elementor-widget-text-editor\" data-id=\"be87204\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-a2fc248 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"a2fc248\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-5a54914\" data-id=\"5a54914\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImMyYzBjNjciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjbGllbnRzIjpbeyJjbGllbnRfbmFtZSI6Illvc2hpbW90byIsImNsaWVudF9saW5rIjp7InVybCI6Imh0dHBzOlwvXC93d3cueW9zaGltb3RvLXNhbmd5by5jby5qcFwvdm5cLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIn0sImNsaWVudF9pbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC95b3NoaW1vdG8tdmlldG5hbS5wbmciLCJpZCI6MjQ4NiwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwiX2lkIjoiYTQ5ZmJjNCJ9LHsiY2xpZW50X25hbWUiOiJLaW0gTG9uZyBNb3RvcnMiLCJjbGllbnRfbGluayI6eyJ1cmwiOiJodHRwczpcL1wva2ltbG9uZ21vdG9yLmNvbS52blwvIiwiaXNfZXh0ZXJuYWwiOiJvbiIsIm5vZm9sbG93Ijoib24ifSwiY2xpZW50X2ltYWdlIjp7InVybCI6Imh0dHBzOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMTBcL2tpbS1sb25nLW1vdG9ycy5wbmciLCJpZCI6MjQ4NSwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwiX2lkIjoiMzM5MzBhNSJ9LHsiY2xpZW50X25hbWUiOiJTYW1zdW5nIiwiY2xpZW50X2xpbmsiOnsidXJsIjoiaHR0cHM6XC9cL3d3dy5zYW1zdW5nLmNvbVwvdm5cLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIn0sImNsaWVudF9pbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9zYW1zdW5nLmpwZyIsImlkIjoyNDg0LCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJfaWQiOiJhZWVlNmMyIn0seyJjbGllbnRfbmFtZSI6IktvbWF0c3UgS29neW8iLCJjbGllbnRfbGluayI6eyJ1cmwiOiJodHRwczpcL1wva29tYXouY28uanBcL2VuZ2xpc2hcLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIn0sImNsaWVudF9pbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9rb21hdHN1LWtvZ3lvLmpwZyIsImlkIjoyNDgzLCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJfaWQiOiI4ZmM3MzczIn0seyJfaWQiOiJlZDJlNDAxIiwiY2xpZW50X25hbWUiOiJZdXdhIEVuZ2luZWVyaW5nIiwiY2xpZW50X2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiJvbiIsIm5vZm9sbG93Ijoib24iLCJjdXN0b21fYXR0cmlidXRlcyI6IiJ9LCJjbGllbnRfaW1hZ2UiOnsidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwveXV3YS1lbmdpbmVlcmluZy5qcGciLCJpZCI6MjQ4Miwic2l6ZSI6IiIsImFsdCI6IiIsInNvdXJjZSI6ImxpYnJhcnkifX1dLCJzbGlkZXNfdG9fc2hvdyI6IjQiLCJzbGlkZXNfdG9fc2Nyb2xsIjoiMSIsImF1dG9wbGF5IjoidHJ1ZSIsImF1dG9wbGF5X3NwZWVkIjo4MDAwLCJpbmZpbml0ZSI6InRydWUiLCJzcGVlZCI6ODAwLCJzbGlkZXNfdG9fc2hvd19tb2JpbGUiOiIyIiwic2xpZGVzX3RvX3Njcm9sbF9tb2JpbGUiOiIxIiwic2xpZGVzX3RvX3Nob3dfdGFibGV0IjoiMyIsInNsaWRlc190b19zY3JvbGxfdGFibGV0IjoiMSIsImN0X2FuaW1hdGUiOiJ3b3cgem9vbUluIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2NsaWVudHNfbGlzdCJ9\"]            </div>n        </div>n                    </div>n        </section>n        \",\"scripts\":[],\"styles\":[]}}'),(10081,3136,'_wp_page_template','default'),(10082,3136,'_elementor_edit_mode','builder'),(10083,3136,'_elementor_template_type','wp-page'),(10084,3136,'_elementor_version','3.24.7'),(10085,3136,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FET.png\",\"id\":3132,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"e562253\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FEE.jpg\",\"id\":3131,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Engineering\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"b254836\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FETS.png\",\"id\":3133,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tools Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"994e0c5\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions as your trusted partner.\",\"sub_title\":\"Our Partners\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Yoshimoto\",\"client_link\":{\"url\":\"https:\\/\\/www.yoshimoto-sangyo.co.jp\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yoshimoto-vietnam.png\",\"id\":2486,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"a49fbc4\"},{\"client_name\":\"Kim Long Motors\",\"client_link\":{\"url\":\"https:\\/\\/kimlongmotor.com.vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/kim-long-motors.png\",\"id\":2485,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"33930a5\"},{\"client_name\":\"Samsung\",\"client_link\":{\"url\":\"https:\\/\\/www.samsung.com\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/samsung.jpg\",\"id\":2484,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"aeee6c2\"},{\"client_name\":\"Komatsu Kogyo\",\"client_link\":{\"url\":\"https:\\/\\/komaz.co.jp\\/english\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/komatsu-kogyo.jpg\",\"id\":2483,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8fc7373\"},{\"_id\":\"ed2e401\",\"client_name\":\"Yuwa Engineering\",\"client_link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yuwa-engineering.jpg\",\"id\":2482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10086,3136,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(10087,3136,'_elementor_page_assets','a:2:{s:6:\"styles\";a:1:{i:0;s:18:\"widget-text-editor\";}s:7:\"scripts\";a:6:{i:0;s:12:\"imagesloaded\";i:1;s:7:\"isotope\";i:2;s:25:\"ct-post-masonry-widget-js\";i:3;s:22:\"ct-post-grid-widget-js\";i:4;s:12:\"jquery-slick\";i:5;s:25:\"ct-clients-list-widget-js\";}}'),(10088,3136,'_elementor_css','a:6:{s:4:\"time\";i:1735096282;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:\"\";}'),(10089,3136,'_elementor_element_cache','{\"timeout\":1735182682,\"value\":{\"content\":\"        <section class=\"elementor-section elementor-top-section elementor-element elementor-element-5ebd4da3 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"5ebd4da3\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-65bf164f\" data-id=\"65bf164f\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjcwOWM5ZmYwIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJXZSB3aWxsIGV4Y2VlZCB5b3VyIGV4cGVjdGF0aW9ucyB3aXRoIG91ciBpbm5vdmF0aXZlIHNvbHV0aW9ucy4iLCJzdWJfdGl0bGUiOiJPdXIgVGVhbSJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-565ccd46\" data-id=\"565ccd46\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-4e81685f elementor-widget elementor-widget-text-editor\" data-id=\"4e81685f\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-7d3ed03 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"7d3ed03\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-default \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-24b59b7\" data-id=\"24b59b7\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjRjMGU1NTciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X2xpc3QiOlt7ImltYWdlIjp7InVybCI6IiIsImlkIjoiIiwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwidGl0bGUiOiJGYXIgRWFzdCBUZWNoIiwibGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn0sInNvY2lhbCI6IltdIiwiX2lkIjoiZTU2MjI1MyJ9LHsiaW1hZ2UiOnsidXJsIjoiIiwiaWQiOiIiLCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJ0aXRsZSI6IkZhciBFYXN0IEVuZ2luZWVyaW5nIiwibGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn0sInNvY2lhbCI6IltdIiwiX2lkIjoiYjI1NDgzNiJ9LHsiaW1hZ2UiOnsidXJsIjoiIiwiaWQiOiIiLCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJ0aXRsZSI6IkZhciBFYXN0IFRvb2xzIFRlY2giLCJsaW5rIjp7InVybCI6IiIsImlzX2V4dGVybmFsIjoiIiwibm9mb2xsb3ciOiIifSwic29jaWFsIjoiW10iLCJfaWQiOiI5OTRlMGM1In1dLCJjb2xfbGciOiIzIiwiY29sX3hsIjoiMyIsImNvbF9tZCI6IjIiLCJ0aHVtYm5haWxfY3VzdG9tX2RpbWVuc2lvbiI6eyJ3aWR0aCI6IjM1MCIsImhlaWdodCI6IjM3MSJ9fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfdGVhbV9ncmlkIn0=\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-daa7558 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"daa7558\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-050b385\" data-id=\"050b385\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImNhOGU5ODIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IldlIHdpbGwgZXhjZWVkIHlvdXIgZXhwZWN0YXRpb25zIHdpdGggb3VyIGlubm92YXRpdmUgc29sdXRpb25zIGFzIHlvdXIgdHJ1c3RlZCBwYXJ0bmVyLiIsInN1Yl90aXRsZSI6Ik91ciBQYXJ0bmVycyJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-57c8033\" data-id=\"57c8033\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-be87204 elementor-widget elementor-widget-text-editor\" data-id=\"be87204\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-a2fc248 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"a2fc248\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-5a54914\" data-id=\"5a54914\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImMyYzBjNjciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjbGllbnRzIjpbeyJjbGllbnRfbmFtZSI6Illvc2hpbW90byIsImNsaWVudF9saW5rIjp7InVybCI6Imh0dHBzOlwvXC93d3cueW9zaGltb3RvLXNhbmd5by5jby5qcFwvdm5cLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIn0sImNsaWVudF9pbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC95b3NoaW1vdG8tdmlldG5hbS5wbmciLCJpZCI6MjQ4NiwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwiX2lkIjoiYTQ5ZmJjNCJ9LHsiY2xpZW50X25hbWUiOiJLaW0gTG9uZyBNb3RvcnMiLCJjbGllbnRfbGluayI6eyJ1cmwiOiJodHRwczpcL1wva2ltbG9uZ21vdG9yLmNvbS52blwvIiwiaXNfZXh0ZXJuYWwiOiJvbiIsIm5vZm9sbG93Ijoib24ifSwiY2xpZW50X2ltYWdlIjp7InVybCI6Imh0dHBzOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMTBcL2tpbS1sb25nLW1vdG9ycy5wbmciLCJpZCI6MjQ4NSwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwiX2lkIjoiMzM5MzBhNSJ9LHsiY2xpZW50X25hbWUiOiJTYW1zdW5nIiwiY2xpZW50X2xpbmsiOnsidXJsIjoiaHR0cHM6XC9cL3d3dy5zYW1zdW5nLmNvbVwvdm5cLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIn0sImNsaWVudF9pbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9zYW1zdW5nLmpwZyIsImlkIjoyNDg0LCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJfaWQiOiJhZWVlNmMyIn0seyJjbGllbnRfbmFtZSI6IktvbWF0c3UgS29neW8iLCJjbGllbnRfbGluayI6eyJ1cmwiOiJodHRwczpcL1wva29tYXouY28uanBcL2VuZ2xpc2hcLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIn0sImNsaWVudF9pbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9rb21hdHN1LWtvZ3lvLmpwZyIsImlkIjoyNDgzLCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJfaWQiOiI4ZmM3MzczIn0seyJfaWQiOiJlZDJlNDAxIiwiY2xpZW50X25hbWUiOiJZdXdhIEVuZ2luZWVyaW5nIiwiY2xpZW50X2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiJvbiIsIm5vZm9sbG93Ijoib24iLCJjdXN0b21fYXR0cmlidXRlcyI6IiJ9LCJjbGllbnRfaW1hZ2UiOnsidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwveXV3YS1lbmdpbmVlcmluZy5qcGciLCJpZCI6MjQ4Miwic2l6ZSI6IiIsImFsdCI6IiIsInNvdXJjZSI6ImxpYnJhcnkifX1dLCJzbGlkZXNfdG9fc2hvdyI6IjQiLCJzbGlkZXNfdG9fc2Nyb2xsIjoiMSIsImF1dG9wbGF5IjoidHJ1ZSIsImF1dG9wbGF5X3NwZWVkIjo4MDAwLCJpbmZpbml0ZSI6InRydWUiLCJzcGVlZCI6ODAwLCJzbGlkZXNfdG9fc2hvd19tb2JpbGUiOiIyIiwic2xpZGVzX3RvX3Njcm9sbF9tb2JpbGUiOiIxIiwic2xpZGVzX3RvX3Nob3dfdGFibGV0IjoiMyIsInNsaWRlc190b19zY3JvbGxfdGFibGV0IjoiMSIsImN0X2FuaW1hdGUiOiJ3b3cgem9vbUluIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2NsaWVudHNfbGlzdCJ9\"]            </div>n        </div>n                    </div>n        </section>n        \",\"scripts\":[],\"styles\":[]}}'),(10098,3140,'_wp_page_template','default'),(10099,3140,'_elementor_edit_mode','builder'),(10100,3140,'_elementor_template_type','wp-page'),(10101,3140,'_elementor_version','3.24.7'),(10102,3140,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FET.png\",\"id\":3132,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"e562253\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FEE.jpg\",\"id\":3131,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Engineering\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"b254836\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FETS.png\",\"id\":3133,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tools Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"994e0c5\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions as your trusted partner.\",\"sub_title\":\"Our Partners\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Yoshimoto\",\"client_link\":{\"url\":\"https:\\/\\/www.yoshimoto-sangyo.co.jp\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yoshimoto-vietnam.png\",\"id\":2486,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"a49fbc4\"},{\"client_name\":\"Kim Long Motors\",\"client_link\":{\"url\":\"https:\\/\\/kimlongmotor.com.vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/kim-long-motors.png\",\"id\":2485,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"33930a5\"},{\"client_name\":\"Samsung\",\"client_link\":{\"url\":\"https:\\/\\/www.samsung.com\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/samsung.jpg\",\"id\":2484,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"aeee6c2\"},{\"client_name\":\"Komatsu Kogyo\",\"client_link\":{\"url\":\"https:\\/\\/komaz.co.jp\\/english\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/komatsu-kogyo.jpg\",\"id\":2483,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8fc7373\"},{\"_id\":\"ed2e401\",\"client_name\":\"Yuwa Engineering\",\"client_link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yuwa-engineering.jpg\",\"id\":2482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10103,3140,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(10104,3140,'_elementor_page_assets','a:2:{s:6:\"styles\";a:1:{i:0;s:18:\"widget-text-editor\";}s:7:\"scripts\";a:6:{i:0;s:12:\"imagesloaded\";i:1;s:7:\"isotope\";i:2;s:25:\"ct-post-masonry-widget-js\";i:3;s:22:\"ct-post-grid-widget-js\";i:4;s:12:\"jquery-slick\";i:5;s:25:\"ct-clients-list-widget-js\";}}'),(10105,3140,'_elementor_css','a:6:{s:4:\"time\";i:1735097867;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:\"\";}'),(10106,3140,'_elementor_element_cache','{\"timeout\":1735184267,\"value\":{\"content\":\"        <section class=\"elementor-section elementor-top-section elementor-element elementor-element-5ebd4da3 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"5ebd4da3\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-65bf164f\" data-id=\"65bf164f\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjcwOWM5ZmYwIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJXZSB3aWxsIGV4Y2VlZCB5b3VyIGV4cGVjdGF0aW9ucyB3aXRoIG91ciBpbm5vdmF0aXZlIHNvbHV0aW9ucy4iLCJzdWJfdGl0bGUiOiJPdXIgVGVhbSJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-565ccd46\" data-id=\"565ccd46\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-4e81685f elementor-widget elementor-widget-text-editor\" data-id=\"4e81685f\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-7d3ed03 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"7d3ed03\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-default \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-24b59b7\" data-id=\"24b59b7\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjRjMGU1NTciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X2xpc3QiOlt7ImltYWdlIjp7InVybCI6Imh0dHBzOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMTJcL0ZFVC5wbmciLCJpZCI6MzEzMiwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwidGl0bGUiOiJGYXIgRWFzdCBUZWNoIiwibGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn0sInNvY2lhbCI6IltdIiwiX2lkIjoiZTU2MjI1MyJ9LHsiaW1hZ2UiOnsidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMlwvRkVFLmpwZyIsImlkIjozMTMxLCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJ0aXRsZSI6IkZhciBFYXN0IEVuZ2luZWVyaW5nIiwibGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn0sInNvY2lhbCI6IltdIiwiX2lkIjoiYjI1NDgzNiJ9LHsiaW1hZ2UiOnsidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMlwvRkVUUy5wbmciLCJpZCI6MzEzMywiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwidGl0bGUiOiJGYXIgRWFzdCBUb29scyBUZWNoIiwibGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn0sInNvY2lhbCI6IltdIiwiX2lkIjoiOTk0ZTBjNSJ9XSwiY29sX2xnIjoiMyIsImNvbF94bCI6IjMiLCJjb2xfbWQiOiIyIiwidGh1bWJuYWlsX2N1c3RvbV9kaW1lbnNpb24iOnsid2lkdGgiOiIzNTAiLCJoZWlnaHQiOiIzNzEifX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X3RlYW1fZ3JpZCJ9\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-daa7558 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"daa7558\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-050b385\" data-id=\"050b385\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImNhOGU5ODIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IldlIHdpbGwgZXhjZWVkIHlvdXIgZXhwZWN0YXRpb25zIHdpdGggb3VyIGlubm92YXRpdmUgc29sdXRpb25zIGFzIHlvdXIgdHJ1c3RlZCBwYXJ0bmVyLiIsInN1Yl90aXRsZSI6Ik91ciBQYXJ0bmVycyJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-57c8033\" data-id=\"57c8033\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-be87204 elementor-widget elementor-widget-text-editor\" data-id=\"be87204\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-a2fc248 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"a2fc248\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-5a54914\" data-id=\"5a54914\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImMyYzBjNjciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjbGllbnRzIjpbeyJjbGllbnRfbmFtZSI6Illvc2hpbW90byIsImNsaWVudF9saW5rIjp7InVybCI6Imh0dHBzOlwvXC93d3cueW9zaGltb3RvLXNhbmd5by5jby5qcFwvdm5cLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIn0sImNsaWVudF9pbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC95b3NoaW1vdG8tdmlldG5hbS5wbmciLCJpZCI6MjQ4NiwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwiX2lkIjoiYTQ5ZmJjNCJ9LHsiY2xpZW50X25hbWUiOiJLaW0gTG9uZyBNb3RvcnMiLCJjbGllbnRfbGluayI6eyJ1cmwiOiJodHRwczpcL1wva2ltbG9uZ21vdG9yLmNvbS52blwvIiwiaXNfZXh0ZXJuYWwiOiJvbiIsIm5vZm9sbG93Ijoib24ifSwiY2xpZW50X2ltYWdlIjp7InVybCI6Imh0dHBzOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMTBcL2tpbS1sb25nLW1vdG9ycy5wbmciLCJpZCI6MjQ4NSwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwiX2lkIjoiMzM5MzBhNSJ9LHsiY2xpZW50X25hbWUiOiJTYW1zdW5nIiwiY2xpZW50X2xpbmsiOnsidXJsIjoiaHR0cHM6XC9cL3d3dy5zYW1zdW5nLmNvbVwvdm5cLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIn0sImNsaWVudF9pbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9zYW1zdW5nLmpwZyIsImlkIjoyNDg0LCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJfaWQiOiJhZWVlNmMyIn0seyJjbGllbnRfbmFtZSI6IktvbWF0c3UgS29neW8iLCJjbGllbnRfbGluayI6eyJ1cmwiOiJodHRwczpcL1wva29tYXouY28uanBcL2VuZ2xpc2hcLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIn0sImNsaWVudF9pbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9rb21hdHN1LWtvZ3lvLmpwZyIsImlkIjoyNDgzLCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJfaWQiOiI4ZmM3MzczIn0seyJfaWQiOiJlZDJlNDAxIiwiY2xpZW50X25hbWUiOiJZdXdhIEVuZ2luZWVyaW5nIiwiY2xpZW50X2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiJvbiIsIm5vZm9sbG93Ijoib24iLCJjdXN0b21fYXR0cmlidXRlcyI6IiJ9LCJjbGllbnRfaW1hZ2UiOnsidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwveXV3YS1lbmdpbmVlcmluZy5qcGciLCJpZCI6MjQ4Miwic2l6ZSI6IiIsImFsdCI6IiIsInNvdXJjZSI6ImxpYnJhcnkifX1dLCJzbGlkZXNfdG9fc2hvdyI6IjQiLCJzbGlkZXNfdG9fc2Nyb2xsIjoiMSIsImF1dG9wbGF5IjoidHJ1ZSIsImF1dG9wbGF5X3NwZWVkIjo4MDAwLCJpbmZpbml0ZSI6InRydWUiLCJzcGVlZCI6ODAwLCJzbGlkZXNfdG9fc2hvd19tb2JpbGUiOiIyIiwic2xpZGVzX3RvX3Njcm9sbF9tb2JpbGUiOiIxIiwic2xpZGVzX3RvX3Nob3dfdGFibGV0IjoiMyIsInNsaWRlc190b19zY3JvbGxfdGFibGV0IjoiMSIsImN0X2FuaW1hdGUiOiJ3b3cgem9vbUluIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2NsaWVudHNfbGlzdCJ9\"]            </div>n        </div>n                    </div>n        </section>n        \",\"scripts\":[],\"styles\":[]}}'),(10107,3141,'_wp_page_template','default'),(10108,3141,'_elementor_edit_mode','builder'),(10109,3141,'_elementor_template_type','wp-page'),(10110,3141,'_elementor_version','3.24.7'),(10111,3141,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FET.png\",\"id\":3132,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"e562253\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FEE.jpg\",\"id\":3131,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Engineering\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"b254836\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FETS.png\",\"id\":3133,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tools Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"994e0c5\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions as your trusted partner.\",\"sub_title\":\"Our Partners\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Yoshimoto\",\"client_link\":{\"url\":\"https:\\/\\/www.yoshimoto-sangyo.co.jp\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yoshimoto-vietnam.png\",\"id\":2486,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"a49fbc4\"},{\"client_name\":\"Kim Long Motors\",\"client_link\":{\"url\":\"https:\\/\\/kimlongmotor.com.vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/kim-long-motors.png\",\"id\":2485,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"33930a5\"},{\"client_name\":\"Samsung\",\"client_link\":{\"url\":\"https:\\/\\/www.samsung.com\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/samsung.jpg\",\"id\":2484,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"aeee6c2\"},{\"client_name\":\"Komatsu Kogyo\",\"client_link\":{\"url\":\"https:\\/\\/komaz.co.jp\\/english\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/komatsu-kogyo.jpg\",\"id\":2483,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8fc7373\"},{\"_id\":\"ed2e401\",\"client_name\":\"Yuwa Engineering\",\"client_link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yuwa-engineering.jpg\",\"id\":2482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10112,3141,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(10113,3141,'_elementor_page_assets','a:2:{s:6:\"styles\";a:1:{i:0;s:18:\"widget-text-editor\";}s:7:\"scripts\";a:6:{i:0;s:12:\"imagesloaded\";i:1;s:7:\"isotope\";i:2;s:25:\"ct-post-masonry-widget-js\";i:3;s:22:\"ct-post-grid-widget-js\";i:4;s:12:\"jquery-slick\";i:5;s:25:\"ct-clients-list-widget-js\";}}'),(10114,3141,'_elementor_css','a:6:{s:4:\"time\";i:1735097867;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:\"\";}'),(10115,3141,'_elementor_element_cache','{\"timeout\":1735184267,\"value\":{\"content\":\"        <section class=\"elementor-section elementor-top-section elementor-element elementor-element-5ebd4da3 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"5ebd4da3\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-65bf164f\" data-id=\"65bf164f\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjcwOWM5ZmYwIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJXZSB3aWxsIGV4Y2VlZCB5b3VyIGV4cGVjdGF0aW9ucyB3aXRoIG91ciBpbm5vdmF0aXZlIHNvbHV0aW9ucy4iLCJzdWJfdGl0bGUiOiJPdXIgVGVhbSJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-565ccd46\" data-id=\"565ccd46\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-4e81685f elementor-widget elementor-widget-text-editor\" data-id=\"4e81685f\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-7d3ed03 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"7d3ed03\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-default \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-24b59b7\" data-id=\"24b59b7\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjRjMGU1NTciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X2xpc3QiOlt7ImltYWdlIjp7InVybCI6Imh0dHBzOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMTJcL0ZFVC5wbmciLCJpZCI6MzEzMiwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwidGl0bGUiOiJGYXIgRWFzdCBUZWNoIiwibGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn0sInNvY2lhbCI6IltdIiwiX2lkIjoiZTU2MjI1MyJ9LHsiaW1hZ2UiOnsidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMlwvRkVFLmpwZyIsImlkIjozMTMxLCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJ0aXRsZSI6IkZhciBFYXN0IEVuZ2luZWVyaW5nIiwibGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn0sInNvY2lhbCI6IltdIiwiX2lkIjoiYjI1NDgzNiJ9LHsiaW1hZ2UiOnsidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMlwvRkVUUy5wbmciLCJpZCI6MzEzMywiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwidGl0bGUiOiJGYXIgRWFzdCBUb29scyBUZWNoIiwibGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn0sInNvY2lhbCI6IltdIiwiX2lkIjoiOTk0ZTBjNSJ9XSwiY29sX2xnIjoiMyIsImNvbF94bCI6IjMiLCJjb2xfbWQiOiIyIiwidGh1bWJuYWlsX2N1c3RvbV9kaW1lbnNpb24iOnsid2lkdGgiOiIzNTAiLCJoZWlnaHQiOiIzNzEifX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X3RlYW1fZ3JpZCJ9\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-daa7558 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"daa7558\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-050b385\" data-id=\"050b385\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImNhOGU5ODIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IldlIHdpbGwgZXhjZWVkIHlvdXIgZXhwZWN0YXRpb25zIHdpdGggb3VyIGlubm92YXRpdmUgc29sdXRpb25zIGFzIHlvdXIgdHJ1c3RlZCBwYXJ0bmVyLiIsInN1Yl90aXRsZSI6Ik91ciBQYXJ0bmVycyJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-57c8033\" data-id=\"57c8033\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-be87204 elementor-widget elementor-widget-text-editor\" data-id=\"be87204\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-a2fc248 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"a2fc248\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-5a54914\" data-id=\"5a54914\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImMyYzBjNjciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjbGllbnRzIjpbeyJjbGllbnRfbmFtZSI6Illvc2hpbW90byIsImNsaWVudF9saW5rIjp7InVybCI6Imh0dHBzOlwvXC93d3cueW9zaGltb3RvLXNhbmd5by5jby5qcFwvdm5cLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIn0sImNsaWVudF9pbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC95b3NoaW1vdG8tdmlldG5hbS5wbmciLCJpZCI6MjQ4NiwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwiX2lkIjoiYTQ5ZmJjNCJ9LHsiY2xpZW50X25hbWUiOiJLaW0gTG9uZyBNb3RvcnMiLCJjbGllbnRfbGluayI6eyJ1cmwiOiJodHRwczpcL1wva2ltbG9uZ21vdG9yLmNvbS52blwvIiwiaXNfZXh0ZXJuYWwiOiJvbiIsIm5vZm9sbG93Ijoib24ifSwiY2xpZW50X2ltYWdlIjp7InVybCI6Imh0dHBzOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMTBcL2tpbS1sb25nLW1vdG9ycy5wbmciLCJpZCI6MjQ4NSwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwiX2lkIjoiMzM5MzBhNSJ9LHsiY2xpZW50X25hbWUiOiJTYW1zdW5nIiwiY2xpZW50X2xpbmsiOnsidXJsIjoiaHR0cHM6XC9cL3d3dy5zYW1zdW5nLmNvbVwvdm5cLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIn0sImNsaWVudF9pbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9zYW1zdW5nLmpwZyIsImlkIjoyNDg0LCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJfaWQiOiJhZWVlNmMyIn0seyJjbGllbnRfbmFtZSI6IktvbWF0c3UgS29neW8iLCJjbGllbnRfbGluayI6eyJ1cmwiOiJodHRwczpcL1wva29tYXouY28uanBcL2VuZ2xpc2hcLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIn0sImNsaWVudF9pbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9rb21hdHN1LWtvZ3lvLmpwZyIsImlkIjoyNDgzLCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJfaWQiOiI4ZmM3MzczIn0seyJfaWQiOiJlZDJlNDAxIiwiY2xpZW50X25hbWUiOiJZdXdhIEVuZ2luZWVyaW5nIiwiY2xpZW50X2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiJvbiIsIm5vZm9sbG93Ijoib24iLCJjdXN0b21fYXR0cmlidXRlcyI6IiJ9LCJjbGllbnRfaW1hZ2UiOnsidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwveXV3YS1lbmdpbmVlcmluZy5qcGciLCJpZCI6MjQ4Miwic2l6ZSI6IiIsImFsdCI6IiIsInNvdXJjZSI6ImxpYnJhcnkifX1dLCJzbGlkZXNfdG9fc2hvdyI6IjQiLCJzbGlkZXNfdG9fc2Nyb2xsIjoiMSIsImF1dG9wbGF5IjoidHJ1ZSIsImF1dG9wbGF5X3NwZWVkIjo4MDAwLCJpbmZpbml0ZSI6InRydWUiLCJzcGVlZCI6ODAwLCJzbGlkZXNfdG9fc2hvd19tb2JpbGUiOiIyIiwic2xpZGVzX3RvX3Njcm9sbF9tb2JpbGUiOiIxIiwic2xpZGVzX3RvX3Nob3dfdGFibGV0IjoiMyIsInNsaWRlc190b19zY3JvbGxfdGFibGV0IjoiMSIsImN0X2FuaW1hdGUiOiJ3b3cgem9vbUluIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2NsaWVudHNfbGlzdCJ9\"]            </div>n        </div>n                    </div>n        </section>n        \",\"scripts\":[],\"styles\":[]}}'),(10116,3142,'_wp_page_template','default'),(10117,3142,'_elementor_edit_mode','builder'),(10118,3142,'_elementor_template_type','wp-page'),(10119,3142,'_elementor_version','3.24.7'),(10120,3142,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FET-1.png\",\"id\":3138,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"e562253\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FEE-1.jpg\",\"id\":3139,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Engineering\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"b254836\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FETS-1.png\",\"id\":3137,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tools Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"994e0c5\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions as your trusted partner.\",\"sub_title\":\"Our Partners\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Yoshimoto\",\"client_link\":{\"url\":\"https:\\/\\/www.yoshimoto-sangyo.co.jp\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yoshimoto-vietnam.png\",\"id\":2486,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"a49fbc4\"},{\"client_name\":\"Kim Long Motors\",\"client_link\":{\"url\":\"https:\\/\\/kimlongmotor.com.vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/kim-long-motors.png\",\"id\":2485,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"33930a5\"},{\"client_name\":\"Samsung\",\"client_link\":{\"url\":\"https:\\/\\/www.samsung.com\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/samsung.jpg\",\"id\":2484,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"aeee6c2\"},{\"client_name\":\"Komatsu Kogyo\",\"client_link\":{\"url\":\"https:\\/\\/komaz.co.jp\\/english\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/komatsu-kogyo.jpg\",\"id\":2483,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8fc7373\"},{\"_id\":\"ed2e401\",\"client_name\":\"Yuwa Engineering\",\"client_link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yuwa-engineering.jpg\",\"id\":2482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10121,3142,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(10122,3142,'_elementor_page_assets','a:2:{s:6:\"styles\";a:1:{i:0;s:18:\"widget-text-editor\";}s:7:\"scripts\";a:6:{i:0;s:12:\"imagesloaded\";i:1;s:7:\"isotope\";i:2;s:25:\"ct-post-masonry-widget-js\";i:3;s:22:\"ct-post-grid-widget-js\";i:4;s:12:\"jquery-slick\";i:5;s:25:\"ct-clients-list-widget-js\";}}'),(10123,3142,'_elementor_css','a:6:{s:4:\"time\";i:1735097867;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:\"\";}'),(10124,3142,'_elementor_element_cache','{\"timeout\":1735184267,\"value\":{\"content\":\"        <section class=\"elementor-section elementor-top-section elementor-element elementor-element-5ebd4da3 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"5ebd4da3\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-65bf164f\" data-id=\"65bf164f\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjcwOWM5ZmYwIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJXZSB3aWxsIGV4Y2VlZCB5b3VyIGV4cGVjdGF0aW9ucyB3aXRoIG91ciBpbm5vdmF0aXZlIHNvbHV0aW9ucy4iLCJzdWJfdGl0bGUiOiJPdXIgVGVhbSJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-565ccd46\" data-id=\"565ccd46\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-4e81685f elementor-widget elementor-widget-text-editor\" data-id=\"4e81685f\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-7d3ed03 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"7d3ed03\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-default \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-24b59b7\" data-id=\"24b59b7\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjRjMGU1NTciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X2xpc3QiOlt7ImltYWdlIjp7InVybCI6Imh0dHBzOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMTJcL0ZFVC5wbmciLCJpZCI6MzEzMiwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwidGl0bGUiOiJGYXIgRWFzdCBUZWNoIiwibGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn0sInNvY2lhbCI6IltdIiwiX2lkIjoiZTU2MjI1MyJ9LHsiaW1hZ2UiOnsidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMlwvRkVFLmpwZyIsImlkIjozMTMxLCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJ0aXRsZSI6IkZhciBFYXN0IEVuZ2luZWVyaW5nIiwibGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn0sInNvY2lhbCI6IltdIiwiX2lkIjoiYjI1NDgzNiJ9LHsiaW1hZ2UiOnsidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMlwvRkVUUy5wbmciLCJpZCI6MzEzMywiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwidGl0bGUiOiJGYXIgRWFzdCBUb29scyBUZWNoIiwibGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn0sInNvY2lhbCI6IltdIiwiX2lkIjoiOTk0ZTBjNSJ9XSwiY29sX2xnIjoiMyIsImNvbF94bCI6IjMiLCJjb2xfbWQiOiIyIiwidGh1bWJuYWlsX2N1c3RvbV9kaW1lbnNpb24iOnsid2lkdGgiOiIzNTAiLCJoZWlnaHQiOiIzNzEifX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X3RlYW1fZ3JpZCJ9\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-daa7558 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"daa7558\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-050b385\" data-id=\"050b385\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImNhOGU5ODIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IldlIHdpbGwgZXhjZWVkIHlvdXIgZXhwZWN0YXRpb25zIHdpdGggb3VyIGlubm92YXRpdmUgc29sdXRpb25zIGFzIHlvdXIgdHJ1c3RlZCBwYXJ0bmVyLiIsInN1Yl90aXRsZSI6Ik91ciBQYXJ0bmVycyJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-57c8033\" data-id=\"57c8033\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-be87204 elementor-widget elementor-widget-text-editor\" data-id=\"be87204\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-a2fc248 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"a2fc248\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-5a54914\" data-id=\"5a54914\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImMyYzBjNjciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjbGllbnRzIjpbeyJjbGllbnRfbmFtZSI6Illvc2hpbW90byIsImNsaWVudF9saW5rIjp7InVybCI6Imh0dHBzOlwvXC93d3cueW9zaGltb3RvLXNhbmd5by5jby5qcFwvdm5cLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIn0sImNsaWVudF9pbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC95b3NoaW1vdG8tdmlldG5hbS5wbmciLCJpZCI6MjQ4NiwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwiX2lkIjoiYTQ5ZmJjNCJ9LHsiY2xpZW50X25hbWUiOiJLaW0gTG9uZyBNb3RvcnMiLCJjbGllbnRfbGluayI6eyJ1cmwiOiJodHRwczpcL1wva2ltbG9uZ21vdG9yLmNvbS52blwvIiwiaXNfZXh0ZXJuYWwiOiJvbiIsIm5vZm9sbG93Ijoib24ifSwiY2xpZW50X2ltYWdlIjp7InVybCI6Imh0dHBzOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMTBcL2tpbS1sb25nLW1vdG9ycy5wbmciLCJpZCI6MjQ4NSwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwiX2lkIjoiMzM5MzBhNSJ9LHsiY2xpZW50X25hbWUiOiJTYW1zdW5nIiwiY2xpZW50X2xpbmsiOnsidXJsIjoiaHR0cHM6XC9cL3d3dy5zYW1zdW5nLmNvbVwvdm5cLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIn0sImNsaWVudF9pbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9zYW1zdW5nLmpwZyIsImlkIjoyNDg0LCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJfaWQiOiJhZWVlNmMyIn0seyJjbGllbnRfbmFtZSI6IktvbWF0c3UgS29neW8iLCJjbGllbnRfbGluayI6eyJ1cmwiOiJodHRwczpcL1wva29tYXouY28uanBcL2VuZ2xpc2hcLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIn0sImNsaWVudF9pbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9rb21hdHN1LWtvZ3lvLmpwZyIsImlkIjoyNDgzLCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJfaWQiOiI4ZmM3MzczIn0seyJfaWQiOiJlZDJlNDAxIiwiY2xpZW50X25hbWUiOiJZdXdhIEVuZ2luZWVyaW5nIiwiY2xpZW50X2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiJvbiIsIm5vZm9sbG93Ijoib24iLCJjdXN0b21fYXR0cmlidXRlcyI6IiJ9LCJjbGllbnRfaW1hZ2UiOnsidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwveXV3YS1lbmdpbmVlcmluZy5qcGciLCJpZCI6MjQ4Miwic2l6ZSI6IiIsImFsdCI6IiIsInNvdXJjZSI6ImxpYnJhcnkifX1dLCJzbGlkZXNfdG9fc2hvdyI6IjQiLCJzbGlkZXNfdG9fc2Nyb2xsIjoiMSIsImF1dG9wbGF5IjoidHJ1ZSIsImF1dG9wbGF5X3NwZWVkIjo4MDAwLCJpbmZpbml0ZSI6InRydWUiLCJzcGVlZCI6ODAwLCJzbGlkZXNfdG9fc2hvd19tb2JpbGUiOiIyIiwic2xpZGVzX3RvX3Njcm9sbF9tb2JpbGUiOiIxIiwic2xpZGVzX3RvX3Nob3dfdGFibGV0IjoiMyIsInNsaWRlc190b19zY3JvbGxfdGFibGV0IjoiMSIsImN0X2FuaW1hdGUiOiJ3b3cgem9vbUluIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2NsaWVudHNfbGlzdCJ9\"]            </div>n        </div>n                    </div>n        </section>n        \",\"scripts\":[],\"styles\":[]}}'),(10139,3145,'_wp_page_template','default'),(10140,3145,'_elementor_edit_mode','builder'),(10141,3145,'_elementor_template_type','wp-page'),(10142,3145,'_elementor_version','3.24.7'),(10143,3145,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FET-1.png\",\"id\":3138,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"e562253\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FEE-1.jpg\",\"id\":3139,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Engineering\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"b254836\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FETS-1.png\",\"id\":3137,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tools Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"994e0c5\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions as your trusted partner.\",\"sub_title\":\"Our Partners\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Yoshimoto\",\"client_link\":{\"url\":\"https:\\/\\/www.yoshimoto-sangyo.co.jp\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yoshimoto-vietnam.png\",\"id\":2486,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"a49fbc4\"},{\"client_name\":\"Kim Long Motors\",\"client_link\":{\"url\":\"https:\\/\\/kimlongmotor.com.vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/kim-long-motors.png\",\"id\":2485,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"33930a5\"},{\"client_name\":\"Samsung\",\"client_link\":{\"url\":\"https:\\/\\/www.samsung.com\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/samsung.jpg\",\"id\":2484,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"aeee6c2\"},{\"client_name\":\"Komatsu Kogyo\",\"client_link\":{\"url\":\"https:\\/\\/komaz.co.jp\\/english\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/komatsu-kogyo.jpg\",\"id\":2483,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8fc7373\"},{\"_id\":\"ed2e401\",\"client_name\":\"Yuwa Engineering\",\"client_link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yuwa-engineering.jpg\",\"id\":2482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10144,3145,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(10145,3145,'_elementor_page_assets','a:2:{s:6:\"styles\";a:1:{i:0;s:18:\"widget-text-editor\";}s:7:\"scripts\";a:6:{i:0;s:12:\"imagesloaded\";i:1;s:7:\"isotope\";i:2;s:25:\"ct-post-masonry-widget-js\";i:3;s:22:\"ct-post-grid-widget-js\";i:4;s:12:\"jquery-slick\";i:5;s:25:\"ct-clients-list-widget-js\";}}'),(10146,3145,'_elementor_element_cache','{\"timeout\":1735184657,\"value\":{\"content\":\"        <section class=\"elementor-section elementor-top-section elementor-element elementor-element-5ebd4da3 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"5ebd4da3\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-65bf164f\" data-id=\"65bf164f\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjcwOWM5ZmYwIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJXZSB3aWxsIGV4Y2VlZCB5b3VyIGV4cGVjdGF0aW9ucyB3aXRoIG91ciBpbm5vdmF0aXZlIHNvbHV0aW9ucy4iLCJzdWJfdGl0bGUiOiJPdXIgVGVhbSJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-565ccd46\" data-id=\"565ccd46\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-4e81685f elementor-widget elementor-widget-text-editor\" data-id=\"4e81685f\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-7d3ed03 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"7d3ed03\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-default \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-24b59b7\" data-id=\"24b59b7\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjRjMGU1NTciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X2xpc3QiOlt7ImltYWdlIjp7InVybCI6Imh0dHBzOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMTJcL0ZFVC0xLnBuZyIsImlkIjozMTM4LCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJ0aXRsZSI6IkZhciBFYXN0IFRlY2giLCJsaW5rIjp7InVybCI6IiIsImlzX2V4dGVybmFsIjoiIiwibm9mb2xsb3ciOiIifSwic29jaWFsIjoiW10iLCJfaWQiOiJlNTYyMjUzIn0seyJpbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEyXC9GRUUtMS5qcGciLCJpZCI6MzEzOSwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwidGl0bGUiOiJGYXIgRWFzdCBFbmdpbmVlcmluZyIsImxpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9LCJzb2NpYWwiOiJbXSIsIl9pZCI6ImIyNTQ4MzYifSx7ImltYWdlIjp7InVybCI6Imh0dHBzOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMTJcL0ZFVFMtMS5wbmciLCJpZCI6MzEzNywiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwidGl0bGUiOiJGYXIgRWFzdCBUb29scyBUZWNoIiwibGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn0sInNvY2lhbCI6IltdIiwiX2lkIjoiOTk0ZTBjNSJ9XSwiY29sX2xnIjoiMyIsImNvbF94bCI6IjMiLCJjb2xfbWQiOiIyIiwidGh1bWJuYWlsX2N1c3RvbV9kaW1lbnNpb24iOnsid2lkdGgiOiIzNTAiLCJoZWlnaHQiOiIzNzEifX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X3RlYW1fZ3JpZCJ9\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-daa7558 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"daa7558\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-050b385\" data-id=\"050b385\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImNhOGU5ODIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IldlIHdpbGwgZXhjZWVkIHlvdXIgZXhwZWN0YXRpb25zIHdpdGggb3VyIGlubm92YXRpdmUgc29sdXRpb25zIGFzIHlvdXIgdHJ1c3RlZCBwYXJ0bmVyLiIsInN1Yl90aXRsZSI6Ik91ciBQYXJ0bmVycyJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-57c8033\" data-id=\"57c8033\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-be87204 elementor-widget elementor-widget-text-editor\" data-id=\"be87204\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-a2fc248 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"a2fc248\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-5a54914\" data-id=\"5a54914\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImMyYzBjNjciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjbGllbnRzIjpbeyJjbGllbnRfbmFtZSI6Illvc2hpbW90byIsImNsaWVudF9saW5rIjp7InVybCI6Imh0dHBzOlwvXC93d3cueW9zaGltb3RvLXNhbmd5by5jby5qcFwvdm5cLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIn0sImNsaWVudF9pbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC95b3NoaW1vdG8tdmlldG5hbS5wbmciLCJpZCI6MjQ4NiwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwiX2lkIjoiYTQ5ZmJjNCJ9LHsiY2xpZW50X25hbWUiOiJLaW0gTG9uZyBNb3RvcnMiLCJjbGllbnRfbGluayI6eyJ1cmwiOiJodHRwczpcL1wva2ltbG9uZ21vdG9yLmNvbS52blwvIiwiaXNfZXh0ZXJuYWwiOiJvbiIsIm5vZm9sbG93Ijoib24ifSwiY2xpZW50X2ltYWdlIjp7InVybCI6Imh0dHBzOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMTBcL2tpbS1sb25nLW1vdG9ycy5wbmciLCJpZCI6MjQ4NSwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwiX2lkIjoiMzM5MzBhNSJ9LHsiY2xpZW50X25hbWUiOiJTYW1zdW5nIiwiY2xpZW50X2xpbmsiOnsidXJsIjoiaHR0cHM6XC9cL3d3dy5zYW1zdW5nLmNvbVwvdm5cLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIn0sImNsaWVudF9pbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9zYW1zdW5nLmpwZyIsImlkIjoyNDg0LCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJfaWQiOiJhZWVlNmMyIn0seyJjbGllbnRfbmFtZSI6IktvbWF0c3UgS29neW8iLCJjbGllbnRfbGluayI6eyJ1cmwiOiJodHRwczpcL1wva29tYXouY28uanBcL2VuZ2xpc2hcLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIn0sImNsaWVudF9pbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9rb21hdHN1LWtvZ3lvLmpwZyIsImlkIjoyNDgzLCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJfaWQiOiI4ZmM3MzczIn0seyJfaWQiOiJlZDJlNDAxIiwiY2xpZW50X25hbWUiOiJZdXdhIEVuZ2luZWVyaW5nIiwiY2xpZW50X2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiJvbiIsIm5vZm9sbG93Ijoib24iLCJjdXN0b21fYXR0cmlidXRlcyI6IiJ9LCJjbGllbnRfaW1hZ2UiOnsidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwveXV3YS1lbmdpbmVlcmluZy5qcGciLCJpZCI6MjQ4Miwic2l6ZSI6IiIsImFsdCI6IiIsInNvdXJjZSI6ImxpYnJhcnkifX1dLCJzbGlkZXNfdG9fc2hvdyI6IjQiLCJzbGlkZXNfdG9fc2Nyb2xsIjoiMSIsImF1dG9wbGF5IjoidHJ1ZSIsImF1dG9wbGF5X3NwZWVkIjo4MDAwLCJpbmZpbml0ZSI6InRydWUiLCJzcGVlZCI6ODAwLCJzbGlkZXNfdG9fc2hvd19tb2JpbGUiOiIyIiwic2xpZGVzX3RvX3Njcm9sbF9tb2JpbGUiOiIxIiwic2xpZGVzX3RvX3Nob3dfdGFibGV0IjoiMyIsInNsaWRlc190b19zY3JvbGxfdGFibGV0IjoiMSIsImN0X2FuaW1hdGUiOiJ3b3cgem9vbUluIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2NsaWVudHNfbGlzdCJ9\"]            </div>n        </div>n                    </div>n        </section>n        \",\"scripts\":[],\"styles\":[]}}'),(10147,3145,'_elementor_css','a:6:{s:4:\"time\";i:1735098499;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:\"\";}'),(10148,3146,'_wp_page_template','default'),(10149,3146,'_elementor_edit_mode','builder'),(10150,3146,'_elementor_template_type','wp-page'),(10151,3146,'_elementor_version','3.24.7'),(10152,3146,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FET-1.png\",\"id\":3138,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"e562253\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FEE-1.jpg\",\"id\":3139,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Engineering\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"b254836\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FETS-1.png\",\"id\":3137,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tools Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"994e0c5\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions as your trusted partner.\",\"sub_title\":\"Our Partners\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Yoshimoto\",\"client_link\":{\"url\":\"https:\\/\\/www.yoshimoto-sangyo.co.jp\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yoshimoto-vietnam.png\",\"id\":2486,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"a49fbc4\"},{\"client_name\":\"Kim Long Motors\",\"client_link\":{\"url\":\"https:\\/\\/kimlongmotor.com.vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/kim-long-motors.png\",\"id\":2485,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"33930a5\"},{\"client_name\":\"Samsung\",\"client_link\":{\"url\":\"https:\\/\\/www.samsung.com\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/samsung.jpg\",\"id\":2484,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"aeee6c2\"},{\"client_name\":\"Komatsu Kogyo\",\"client_link\":{\"url\":\"https:\\/\\/komaz.co.jp\\/english\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/komatsu-kogyo.jpg\",\"id\":2483,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8fc7373\"},{\"_id\":\"ed2e401\",\"client_name\":\"Yuwa Engineering\",\"client_link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yuwa-engineering.jpg\",\"id\":2482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10153,3146,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(10154,3146,'_elementor_page_assets','a:2:{s:6:\"styles\";a:1:{i:0;s:18:\"widget-text-editor\";}s:7:\"scripts\";a:6:{i:0;s:12:\"imagesloaded\";i:1;s:7:\"isotope\";i:2;s:25:\"ct-post-masonry-widget-js\";i:3;s:22:\"ct-post-grid-widget-js\";i:4;s:12:\"jquery-slick\";i:5;s:25:\"ct-clients-list-widget-js\";}}'),(10155,3146,'_elementor_element_cache','{\"timeout\":1735184657,\"value\":{\"content\":\"        <section class=\"elementor-section elementor-top-section elementor-element elementor-element-5ebd4da3 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"5ebd4da3\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-65bf164f\" data-id=\"65bf164f\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjcwOWM5ZmYwIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJXZSB3aWxsIGV4Y2VlZCB5b3VyIGV4cGVjdGF0aW9ucyB3aXRoIG91ciBpbm5vdmF0aXZlIHNvbHV0aW9ucy4iLCJzdWJfdGl0bGUiOiJPdXIgVGVhbSJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-565ccd46\" data-id=\"565ccd46\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-4e81685f elementor-widget elementor-widget-text-editor\" data-id=\"4e81685f\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-7d3ed03 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"7d3ed03\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-default \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-24b59b7\" data-id=\"24b59b7\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjRjMGU1NTciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X2xpc3QiOlt7ImltYWdlIjp7InVybCI6Imh0dHBzOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMTJcL0ZFVC0xLnBuZyIsImlkIjozMTM4LCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJ0aXRsZSI6IkZhciBFYXN0IFRlY2giLCJsaW5rIjp7InVybCI6IiIsImlzX2V4dGVybmFsIjoiIiwibm9mb2xsb3ciOiIifSwic29jaWFsIjoiW10iLCJfaWQiOiJlNTYyMjUzIn0seyJpbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEyXC9GRUUtMS5qcGciLCJpZCI6MzEzOSwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwidGl0bGUiOiJGYXIgRWFzdCBFbmdpbmVlcmluZyIsImxpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9LCJzb2NpYWwiOiJbXSIsIl9pZCI6ImIyNTQ4MzYifSx7ImltYWdlIjp7InVybCI6Imh0dHBzOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMTJcL0ZFVFMtMS5wbmciLCJpZCI6MzEzNywiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwidGl0bGUiOiJGYXIgRWFzdCBUb29scyBUZWNoIiwibGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn0sInNvY2lhbCI6IltdIiwiX2lkIjoiOTk0ZTBjNSJ9XSwiY29sX2xnIjoiMyIsImNvbF94bCI6IjMiLCJjb2xfbWQiOiIyIiwidGh1bWJuYWlsX2N1c3RvbV9kaW1lbnNpb24iOnsid2lkdGgiOiIzNTAiLCJoZWlnaHQiOiIzNzEifX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X3RlYW1fZ3JpZCJ9\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-daa7558 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"daa7558\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-050b385\" data-id=\"050b385\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImNhOGU5ODIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IldlIHdpbGwgZXhjZWVkIHlvdXIgZXhwZWN0YXRpb25zIHdpdGggb3VyIGlubm92YXRpdmUgc29sdXRpb25zIGFzIHlvdXIgdHJ1c3RlZCBwYXJ0bmVyLiIsInN1Yl90aXRsZSI6Ik91ciBQYXJ0bmVycyJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-57c8033\" data-id=\"57c8033\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-be87204 elementor-widget elementor-widget-text-editor\" data-id=\"be87204\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-a2fc248 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"a2fc248\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-5a54914\" data-id=\"5a54914\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImMyYzBjNjciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjbGllbnRzIjpbeyJjbGllbnRfbmFtZSI6Illvc2hpbW90byIsImNsaWVudF9saW5rIjp7InVybCI6Imh0dHBzOlwvXC93d3cueW9zaGltb3RvLXNhbmd5by5jby5qcFwvdm5cLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIn0sImNsaWVudF9pbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC95b3NoaW1vdG8tdmlldG5hbS5wbmciLCJpZCI6MjQ4NiwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwiX2lkIjoiYTQ5ZmJjNCJ9LHsiY2xpZW50X25hbWUiOiJLaW0gTG9uZyBNb3RvcnMiLCJjbGllbnRfbGluayI6eyJ1cmwiOiJodHRwczpcL1wva2ltbG9uZ21vdG9yLmNvbS52blwvIiwiaXNfZXh0ZXJuYWwiOiJvbiIsIm5vZm9sbG93Ijoib24ifSwiY2xpZW50X2ltYWdlIjp7InVybCI6Imh0dHBzOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMTBcL2tpbS1sb25nLW1vdG9ycy5wbmciLCJpZCI6MjQ4NSwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwiX2lkIjoiMzM5MzBhNSJ9LHsiY2xpZW50X25hbWUiOiJTYW1zdW5nIiwiY2xpZW50X2xpbmsiOnsidXJsIjoiaHR0cHM6XC9cL3d3dy5zYW1zdW5nLmNvbVwvdm5cLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIn0sImNsaWVudF9pbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9zYW1zdW5nLmpwZyIsImlkIjoyNDg0LCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJfaWQiOiJhZWVlNmMyIn0seyJjbGllbnRfbmFtZSI6IktvbWF0c3UgS29neW8iLCJjbGllbnRfbGluayI6eyJ1cmwiOiJodHRwczpcL1wva29tYXouY28uanBcL2VuZ2xpc2hcLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIn0sImNsaWVudF9pbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9rb21hdHN1LWtvZ3lvLmpwZyIsImlkIjoyNDgzLCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJfaWQiOiI4ZmM3MzczIn0seyJfaWQiOiJlZDJlNDAxIiwiY2xpZW50X25hbWUiOiJZdXdhIEVuZ2luZWVyaW5nIiwiY2xpZW50X2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiJvbiIsIm5vZm9sbG93Ijoib24iLCJjdXN0b21fYXR0cmlidXRlcyI6IiJ9LCJjbGllbnRfaW1hZ2UiOnsidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwveXV3YS1lbmdpbmVlcmluZy5qcGciLCJpZCI6MjQ4Miwic2l6ZSI6IiIsImFsdCI6IiIsInNvdXJjZSI6ImxpYnJhcnkifX1dLCJzbGlkZXNfdG9fc2hvdyI6IjQiLCJzbGlkZXNfdG9fc2Nyb2xsIjoiMSIsImF1dG9wbGF5IjoidHJ1ZSIsImF1dG9wbGF5X3NwZWVkIjo4MDAwLCJpbmZpbml0ZSI6InRydWUiLCJzcGVlZCI6ODAwLCJzbGlkZXNfdG9fc2hvd19tb2JpbGUiOiIyIiwic2xpZGVzX3RvX3Njcm9sbF9tb2JpbGUiOiIxIiwic2xpZGVzX3RvX3Nob3dfdGFibGV0IjoiMyIsInNsaWRlc190b19zY3JvbGxfdGFibGV0IjoiMSIsImN0X2FuaW1hdGUiOiJ3b3cgem9vbUluIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2NsaWVudHNfbGlzdCJ9\"]            </div>n        </div>n                    </div>n        </section>n        \",\"scripts\":[],\"styles\":[]}}'),(10156,3146,'_elementor_css','a:6:{s:4:\"time\";i:1735098499;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:\"\";}'),(10157,3147,'_wp_page_template','default'),(10158,3147,'_elementor_edit_mode','builder'),(10159,3147,'_elementor_template_type','wp-page'),(10160,3147,'_elementor_version','3.24.7'),(10161,3147,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FET.png\",\"id\":3132,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"e562253\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FEE.jpg\",\"id\":3131,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Engineering\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"b254836\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FETS.png\",\"id\":3133,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tools Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"994e0c5\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions as your trusted partner.\",\"sub_title\":\"Our Partners\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Yoshimoto\",\"client_link\":{\"url\":\"https:\\/\\/www.yoshimoto-sangyo.co.jp\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yoshimoto-vietnam.png\",\"id\":2486,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"a49fbc4\"},{\"client_name\":\"Kim Long Motors\",\"client_link\":{\"url\":\"https:\\/\\/kimlongmotor.com.vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/kim-long-motors.png\",\"id\":2485,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"33930a5\"},{\"client_name\":\"Samsung\",\"client_link\":{\"url\":\"https:\\/\\/www.samsung.com\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/samsung.jpg\",\"id\":2484,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"aeee6c2\"},{\"client_name\":\"Komatsu Kogyo\",\"client_link\":{\"url\":\"https:\\/\\/komaz.co.jp\\/english\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/komatsu-kogyo.jpg\",\"id\":2483,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8fc7373\"},{\"_id\":\"ed2e401\",\"client_name\":\"Yuwa Engineering\",\"client_link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yuwa-engineering.jpg\",\"id\":2482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10162,3147,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(10163,3147,'_elementor_page_assets','a:2:{s:6:\"styles\";a:1:{i:0;s:18:\"widget-text-editor\";}s:7:\"scripts\";a:6:{i:0;s:12:\"imagesloaded\";i:1;s:7:\"isotope\";i:2;s:25:\"ct-post-masonry-widget-js\";i:3;s:22:\"ct-post-grid-widget-js\";i:4;s:12:\"jquery-slick\";i:5;s:25:\"ct-clients-list-widget-js\";}}'),(10164,3147,'_elementor_element_cache','{\"timeout\":1735184657,\"value\":{\"content\":\"        <section class=\"elementor-section elementor-top-section elementor-element elementor-element-5ebd4da3 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"5ebd4da3\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-65bf164f\" data-id=\"65bf164f\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjcwOWM5ZmYwIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJXZSB3aWxsIGV4Y2VlZCB5b3VyIGV4cGVjdGF0aW9ucyB3aXRoIG91ciBpbm5vdmF0aXZlIHNvbHV0aW9ucy4iLCJzdWJfdGl0bGUiOiJPdXIgVGVhbSJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-565ccd46\" data-id=\"565ccd46\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-4e81685f elementor-widget elementor-widget-text-editor\" data-id=\"4e81685f\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-7d3ed03 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"7d3ed03\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-default \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-24b59b7\" data-id=\"24b59b7\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjRjMGU1NTciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X2xpc3QiOlt7ImltYWdlIjp7InVybCI6Imh0dHBzOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMTJcL0ZFVC0xLnBuZyIsImlkIjozMTM4LCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJ0aXRsZSI6IkZhciBFYXN0IFRlY2giLCJsaW5rIjp7InVybCI6IiIsImlzX2V4dGVybmFsIjoiIiwibm9mb2xsb3ciOiIifSwic29jaWFsIjoiW10iLCJfaWQiOiJlNTYyMjUzIn0seyJpbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEyXC9GRUUtMS5qcGciLCJpZCI6MzEzOSwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwidGl0bGUiOiJGYXIgRWFzdCBFbmdpbmVlcmluZyIsImxpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9LCJzb2NpYWwiOiJbXSIsIl9pZCI6ImIyNTQ4MzYifSx7ImltYWdlIjp7InVybCI6Imh0dHBzOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMTJcL0ZFVFMtMS5wbmciLCJpZCI6MzEzNywiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwidGl0bGUiOiJGYXIgRWFzdCBUb29scyBUZWNoIiwibGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn0sInNvY2lhbCI6IltdIiwiX2lkIjoiOTk0ZTBjNSJ9XSwiY29sX2xnIjoiMyIsImNvbF94bCI6IjMiLCJjb2xfbWQiOiIyIiwidGh1bWJuYWlsX2N1c3RvbV9kaW1lbnNpb24iOnsid2lkdGgiOiIzNTAiLCJoZWlnaHQiOiIzNzEifX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X3RlYW1fZ3JpZCJ9\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-daa7558 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"daa7558\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-050b385\" data-id=\"050b385\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImNhOGU5ODIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IldlIHdpbGwgZXhjZWVkIHlvdXIgZXhwZWN0YXRpb25zIHdpdGggb3VyIGlubm92YXRpdmUgc29sdXRpb25zIGFzIHlvdXIgdHJ1c3RlZCBwYXJ0bmVyLiIsInN1Yl90aXRsZSI6Ik91ciBQYXJ0bmVycyJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-57c8033\" data-id=\"57c8033\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-be87204 elementor-widget elementor-widget-text-editor\" data-id=\"be87204\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-a2fc248 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"a2fc248\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-5a54914\" data-id=\"5a54914\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImMyYzBjNjciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjbGllbnRzIjpbeyJjbGllbnRfbmFtZSI6Illvc2hpbW90byIsImNsaWVudF9saW5rIjp7InVybCI6Imh0dHBzOlwvXC93d3cueW9zaGltb3RvLXNhbmd5by5jby5qcFwvdm5cLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIn0sImNsaWVudF9pbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC95b3NoaW1vdG8tdmlldG5hbS5wbmciLCJpZCI6MjQ4NiwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwiX2lkIjoiYTQ5ZmJjNCJ9LHsiY2xpZW50X25hbWUiOiJLaW0gTG9uZyBNb3RvcnMiLCJjbGllbnRfbGluayI6eyJ1cmwiOiJodHRwczpcL1wva2ltbG9uZ21vdG9yLmNvbS52blwvIiwiaXNfZXh0ZXJuYWwiOiJvbiIsIm5vZm9sbG93Ijoib24ifSwiY2xpZW50X2ltYWdlIjp7InVybCI6Imh0dHBzOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMTBcL2tpbS1sb25nLW1vdG9ycy5wbmciLCJpZCI6MjQ4NSwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwiX2lkIjoiMzM5MzBhNSJ9LHsiY2xpZW50X25hbWUiOiJTYW1zdW5nIiwiY2xpZW50X2xpbmsiOnsidXJsIjoiaHR0cHM6XC9cL3d3dy5zYW1zdW5nLmNvbVwvdm5cLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIn0sImNsaWVudF9pbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9zYW1zdW5nLmpwZyIsImlkIjoyNDg0LCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJfaWQiOiJhZWVlNmMyIn0seyJjbGllbnRfbmFtZSI6IktvbWF0c3UgS29neW8iLCJjbGllbnRfbGluayI6eyJ1cmwiOiJodHRwczpcL1wva29tYXouY28uanBcL2VuZ2xpc2hcLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIn0sImNsaWVudF9pbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9rb21hdHN1LWtvZ3lvLmpwZyIsImlkIjoyNDgzLCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJfaWQiOiI4ZmM3MzczIn0seyJfaWQiOiJlZDJlNDAxIiwiY2xpZW50X25hbWUiOiJZdXdhIEVuZ2luZWVyaW5nIiwiY2xpZW50X2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiJvbiIsIm5vZm9sbG93Ijoib24iLCJjdXN0b21fYXR0cmlidXRlcyI6IiJ9LCJjbGllbnRfaW1hZ2UiOnsidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwveXV3YS1lbmdpbmVlcmluZy5qcGciLCJpZCI6MjQ4Miwic2l6ZSI6IiIsImFsdCI6IiIsInNvdXJjZSI6ImxpYnJhcnkifX1dLCJzbGlkZXNfdG9fc2hvdyI6IjQiLCJzbGlkZXNfdG9fc2Nyb2xsIjoiMSIsImF1dG9wbGF5IjoidHJ1ZSIsImF1dG9wbGF5X3NwZWVkIjo4MDAwLCJpbmZpbml0ZSI6InRydWUiLCJzcGVlZCI6ODAwLCJzbGlkZXNfdG9fc2hvd19tb2JpbGUiOiIyIiwic2xpZGVzX3RvX3Njcm9sbF9tb2JpbGUiOiIxIiwic2xpZGVzX3RvX3Nob3dfdGFibGV0IjoiMyIsInNsaWRlc190b19zY3JvbGxfdGFibGV0IjoiMSIsImN0X2FuaW1hdGUiOiJ3b3cgem9vbUluIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2NsaWVudHNfbGlzdCJ9\"]            </div>n        </div>n                    </div>n        </section>n        \",\"scripts\":[],\"styles\":[]}}'),(10165,3147,'_elementor_css','a:6:{s:4:\"time\";i:1735098499;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:\"\";}'),(10169,3148,'_wp_page_template','default'),(10170,3148,'_elementor_edit_mode','builder'),(10171,3148,'_elementor_template_type','wp-page'),(10172,3148,'_elementor_version','3.24.7'),(10173,3148,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FET.png\",\"id\":3132,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"e562253\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FEE.jpg\",\"id\":3131,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Engineering\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"b254836\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FETS.png\",\"id\":3133,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tools Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"994e0c5\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions as your trusted partner.\",\"sub_title\":\"Our Partners\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Yoshimoto\",\"client_link\":{\"url\":\"https:\\/\\/www.yoshimoto-sangyo.co.jp\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yoshimoto-vietnam.png\",\"id\":2486,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"a49fbc4\"},{\"client_name\":\"Kim Long Motors\",\"client_link\":{\"url\":\"https:\\/\\/kimlongmotor.com.vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/kim-long-motors.png\",\"id\":2485,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"33930a5\"},{\"client_name\":\"Samsung\",\"client_link\":{\"url\":\"https:\\/\\/www.samsung.com\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/samsung.jpg\",\"id\":2484,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"aeee6c2\"},{\"client_name\":\"Komatsu Kogyo\",\"client_link\":{\"url\":\"https:\\/\\/komaz.co.jp\\/english\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/komatsu-kogyo.jpg\",\"id\":2483,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8fc7373\"},{\"_id\":\"ed2e401\",\"client_name\":\"Yuwa Engineering\",\"client_link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yuwa-engineering.jpg\",\"id\":2482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10174,3148,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(10175,3148,'_elementor_page_assets','a:2:{s:6:\"styles\";a:1:{i:0;s:18:\"widget-text-editor\";}s:7:\"scripts\";a:6:{i:0;s:12:\"imagesloaded\";i:1;s:7:\"isotope\";i:2;s:25:\"ct-post-masonry-widget-js\";i:3;s:22:\"ct-post-grid-widget-js\";i:4;s:12:\"jquery-slick\";i:5;s:25:\"ct-clients-list-widget-js\";}}'),(10176,3148,'_elementor_css','a:6:{s:4:\"time\";i:1735098507;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:\"\";}'),(10177,3148,'_elementor_element_cache','{\"timeout\":1735184907,\"value\":{\"content\":\"        <section class=\"elementor-section elementor-top-section elementor-element elementor-element-5ebd4da3 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"5ebd4da3\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-65bf164f\" data-id=\"65bf164f\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjcwOWM5ZmYwIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJXZSB3aWxsIGV4Y2VlZCB5b3VyIGV4cGVjdGF0aW9ucyB3aXRoIG91ciBpbm5vdmF0aXZlIHNvbHV0aW9ucy4iLCJzdWJfdGl0bGUiOiJPdXIgVGVhbSJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-565ccd46\" data-id=\"565ccd46\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-4e81685f elementor-widget elementor-widget-text-editor\" data-id=\"4e81685f\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-7d3ed03 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"7d3ed03\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-default \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-24b59b7\" data-id=\"24b59b7\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap\">n                    n                    </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-daa7558 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"daa7558\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-050b385\" data-id=\"050b385\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImNhOGU5ODIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IldlIHdpbGwgZXhjZWVkIHlvdXIgZXhwZWN0YXRpb25zIHdpdGggb3VyIGlubm92YXRpdmUgc29sdXRpb25zIGFzIHlvdXIgdHJ1c3RlZCBwYXJ0bmVyLiIsInN1Yl90aXRsZSI6Ik91ciBQYXJ0bmVycyJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-57c8033\" data-id=\"57c8033\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-be87204 elementor-widget elementor-widget-text-editor\" data-id=\"be87204\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-a2fc248 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"a2fc248\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-5a54914\" data-id=\"5a54914\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImMyYzBjNjciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjbGllbnRzIjpbeyJjbGllbnRfbmFtZSI6Illvc2hpbW90byIsImNsaWVudF9saW5rIjp7InVybCI6Imh0dHBzOlwvXC93d3cueW9zaGltb3RvLXNhbmd5by5jby5qcFwvdm5cLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIn0sImNsaWVudF9pbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC95b3NoaW1vdG8tdmlldG5hbS5wbmciLCJpZCI6MjQ4NiwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwiX2lkIjoiYTQ5ZmJjNCJ9LHsiY2xpZW50X25hbWUiOiJLaW0gTG9uZyBNb3RvcnMiLCJjbGllbnRfbGluayI6eyJ1cmwiOiJodHRwczpcL1wva2ltbG9uZ21vdG9yLmNvbS52blwvIiwiaXNfZXh0ZXJuYWwiOiJvbiIsIm5vZm9sbG93Ijoib24ifSwiY2xpZW50X2ltYWdlIjp7InVybCI6Imh0dHBzOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMTBcL2tpbS1sb25nLW1vdG9ycy5wbmciLCJpZCI6MjQ4NSwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwiX2lkIjoiMzM5MzBhNSJ9LHsiY2xpZW50X25hbWUiOiJTYW1zdW5nIiwiY2xpZW50X2xpbmsiOnsidXJsIjoiaHR0cHM6XC9cL3d3dy5zYW1zdW5nLmNvbVwvdm5cLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIn0sImNsaWVudF9pbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9zYW1zdW5nLmpwZyIsImlkIjoyNDg0LCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJfaWQiOiJhZWVlNmMyIn0seyJjbGllbnRfbmFtZSI6IktvbWF0c3UgS29neW8iLCJjbGllbnRfbGluayI6eyJ1cmwiOiJodHRwczpcL1wva29tYXouY28uanBcL2VuZ2xpc2hcLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIn0sImNsaWVudF9pbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9rb21hdHN1LWtvZ3lvLmpwZyIsImlkIjoyNDgzLCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJfaWQiOiI4ZmM3MzczIn0seyJfaWQiOiJlZDJlNDAxIiwiY2xpZW50X25hbWUiOiJZdXdhIEVuZ2luZWVyaW5nIiwiY2xpZW50X2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiJvbiIsIm5vZm9sbG93Ijoib24iLCJjdXN0b21fYXR0cmlidXRlcyI6IiJ9LCJjbGllbnRfaW1hZ2UiOnsidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwveXV3YS1lbmdpbmVlcmluZy5qcGciLCJpZCI6MjQ4Miwic2l6ZSI6IiIsImFsdCI6IiIsInNvdXJjZSI6ImxpYnJhcnkifX1dLCJzbGlkZXNfdG9fc2hvdyI6IjQiLCJzbGlkZXNfdG9fc2Nyb2xsIjoiMSIsImF1dG9wbGF5IjoidHJ1ZSIsImF1dG9wbGF5X3NwZWVkIjo4MDAwLCJpbmZpbml0ZSI6InRydWUiLCJzcGVlZCI6ODAwLCJzbGlkZXNfdG9fc2hvd19tb2JpbGUiOiIyIiwic2xpZGVzX3RvX3Njcm9sbF9tb2JpbGUiOiIxIiwic2xpZGVzX3RvX3Nob3dfdGFibGV0IjoiMyIsInNsaWRlc190b19zY3JvbGxfdGFibGV0IjoiMSIsImN0X2FuaW1hdGUiOiJ3b3cgem9vbUluIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2NsaWVudHNfbGlzdCJ9\"]            </div>n        </div>n                    </div>n        </section>n        \",\"scripts\":[],\"styles\":[]}}'),(10178,3149,'_wp_page_template','default'),(10179,3149,'_elementor_edit_mode','builder'),(10180,3149,'_elementor_template_type','wp-page'),(10181,3149,'_elementor_version','3.24.7'),(10182,3149,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FET.png\",\"id\":3132,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"e562253\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FEE.jpg\",\"id\":3131,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Engineering\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"b254836\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FETS.png\",\"id\":3133,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tools Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"994e0c5\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions as your trusted partner.\",\"sub_title\":\"Our Partners\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Yoshimoto\",\"client_link\":{\"url\":\"https:\\/\\/www.yoshimoto-sangyo.co.jp\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yoshimoto-vietnam.png\",\"id\":2486,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"a49fbc4\"},{\"client_name\":\"Kim Long Motors\",\"client_link\":{\"url\":\"https:\\/\\/kimlongmotor.com.vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/kim-long-motors.png\",\"id\":2485,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"33930a5\"},{\"client_name\":\"Samsung\",\"client_link\":{\"url\":\"https:\\/\\/www.samsung.com\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/samsung.jpg\",\"id\":2484,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"aeee6c2\"},{\"client_name\":\"Komatsu Kogyo\",\"client_link\":{\"url\":\"https:\\/\\/komaz.co.jp\\/english\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/komatsu-kogyo.jpg\",\"id\":2483,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8fc7373\"},{\"_id\":\"ed2e401\",\"client_name\":\"Yuwa Engineering\",\"client_link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yuwa-engineering.jpg\",\"id\":2482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10183,3149,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(10184,3149,'_elementor_page_assets','a:2:{s:6:\"styles\";a:1:{i:0;s:18:\"widget-text-editor\";}s:7:\"scripts\";a:6:{i:0;s:12:\"imagesloaded\";i:1;s:7:\"isotope\";i:2;s:25:\"ct-post-masonry-widget-js\";i:3;s:22:\"ct-post-grid-widget-js\";i:4;s:12:\"jquery-slick\";i:5;s:25:\"ct-clients-list-widget-js\";}}'),(10185,3149,'_elementor_css','a:6:{s:4:\"time\";i:1735098507;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:\"\";}'),(10186,3149,'_elementor_element_cache','{\"timeout\":1735184907,\"value\":{\"content\":\"        <section class=\"elementor-section elementor-top-section elementor-element elementor-element-5ebd4da3 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"5ebd4da3\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-65bf164f\" data-id=\"65bf164f\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjcwOWM5ZmYwIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJXZSB3aWxsIGV4Y2VlZCB5b3VyIGV4cGVjdGF0aW9ucyB3aXRoIG91ciBpbm5vdmF0aXZlIHNvbHV0aW9ucy4iLCJzdWJfdGl0bGUiOiJPdXIgVGVhbSJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-565ccd46\" data-id=\"565ccd46\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-4e81685f elementor-widget elementor-widget-text-editor\" data-id=\"4e81685f\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-7d3ed03 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"7d3ed03\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-default \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-24b59b7\" data-id=\"24b59b7\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap\">n                    n                    </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-daa7558 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"daa7558\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-050b385\" data-id=\"050b385\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImNhOGU5ODIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IldlIHdpbGwgZXhjZWVkIHlvdXIgZXhwZWN0YXRpb25zIHdpdGggb3VyIGlubm92YXRpdmUgc29sdXRpb25zIGFzIHlvdXIgdHJ1c3RlZCBwYXJ0bmVyLiIsInN1Yl90aXRsZSI6Ik91ciBQYXJ0bmVycyJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-57c8033\" data-id=\"57c8033\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-be87204 elementor-widget elementor-widget-text-editor\" data-id=\"be87204\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-a2fc248 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"a2fc248\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-5a54914\" data-id=\"5a54914\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImMyYzBjNjciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjbGllbnRzIjpbeyJjbGllbnRfbmFtZSI6Illvc2hpbW90byIsImNsaWVudF9saW5rIjp7InVybCI6Imh0dHBzOlwvXC93d3cueW9zaGltb3RvLXNhbmd5by5jby5qcFwvdm5cLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIn0sImNsaWVudF9pbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC95b3NoaW1vdG8tdmlldG5hbS5wbmciLCJpZCI6MjQ4NiwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwiX2lkIjoiYTQ5ZmJjNCJ9LHsiY2xpZW50X25hbWUiOiJLaW0gTG9uZyBNb3RvcnMiLCJjbGllbnRfbGluayI6eyJ1cmwiOiJodHRwczpcL1wva2ltbG9uZ21vdG9yLmNvbS52blwvIiwiaXNfZXh0ZXJuYWwiOiJvbiIsIm5vZm9sbG93Ijoib24ifSwiY2xpZW50X2ltYWdlIjp7InVybCI6Imh0dHBzOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMTBcL2tpbS1sb25nLW1vdG9ycy5wbmciLCJpZCI6MjQ4NSwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwiX2lkIjoiMzM5MzBhNSJ9LHsiY2xpZW50X25hbWUiOiJTYW1zdW5nIiwiY2xpZW50X2xpbmsiOnsidXJsIjoiaHR0cHM6XC9cL3d3dy5zYW1zdW5nLmNvbVwvdm5cLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIn0sImNsaWVudF9pbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9zYW1zdW5nLmpwZyIsImlkIjoyNDg0LCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJfaWQiOiJhZWVlNmMyIn0seyJjbGllbnRfbmFtZSI6IktvbWF0c3UgS29neW8iLCJjbGllbnRfbGluayI6eyJ1cmwiOiJodHRwczpcL1wva29tYXouY28uanBcL2VuZ2xpc2hcLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIn0sImNsaWVudF9pbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9rb21hdHN1LWtvZ3lvLmpwZyIsImlkIjoyNDgzLCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJfaWQiOiI4ZmM3MzczIn0seyJfaWQiOiJlZDJlNDAxIiwiY2xpZW50X25hbWUiOiJZdXdhIEVuZ2luZWVyaW5nIiwiY2xpZW50X2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiJvbiIsIm5vZm9sbG93Ijoib24iLCJjdXN0b21fYXR0cmlidXRlcyI6IiJ9LCJjbGllbnRfaW1hZ2UiOnsidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwveXV3YS1lbmdpbmVlcmluZy5qcGciLCJpZCI6MjQ4Miwic2l6ZSI6IiIsImFsdCI6IiIsInNvdXJjZSI6ImxpYnJhcnkifX1dLCJzbGlkZXNfdG9fc2hvdyI6IjQiLCJzbGlkZXNfdG9fc2Nyb2xsIjoiMSIsImF1dG9wbGF5IjoidHJ1ZSIsImF1dG9wbGF5X3NwZWVkIjo4MDAwLCJpbmZpbml0ZSI6InRydWUiLCJzcGVlZCI6ODAwLCJzbGlkZXNfdG9fc2hvd19tb2JpbGUiOiIyIiwic2xpZGVzX3RvX3Njcm9sbF9tb2JpbGUiOiIxIiwic2xpZGVzX3RvX3Nob3dfdGFibGV0IjoiMyIsInNsaWRlc190b19zY3JvbGxfdGFibGV0IjoiMSIsImN0X2FuaW1hdGUiOiJ3b3cgem9vbUluIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2NsaWVudHNfbGlzdCJ9\"]            </div>n        </div>n                    </div>n        </section>n        \",\"scripts\":[],\"styles\":[]}}'),(10187,3150,'_wp_page_template','default'),(10188,3150,'_elementor_edit_mode','builder'),(10189,3150,'_elementor_template_type','wp-page'),(10190,3150,'_elementor_version','3.24.7'),(10191,3150,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FET.png\",\"id\":3132,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"e562253\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FEE.jpg\",\"id\":3131,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Engineering\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"b254836\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FETS.png\",\"id\":3133,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tools Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"994e0c5\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions as your trusted partner.\",\"sub_title\":\"Our Partners\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Yoshimoto\",\"client_link\":{\"url\":\"https:\\/\\/www.yoshimoto-sangyo.co.jp\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yoshimoto-vietnam.png\",\"id\":2486,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"a49fbc4\"},{\"client_name\":\"Kim Long Motors\",\"client_link\":{\"url\":\"https:\\/\\/kimlongmotor.com.vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/kim-long-motors.png\",\"id\":2485,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"33930a5\"},{\"client_name\":\"Samsung\",\"client_link\":{\"url\":\"https:\\/\\/www.samsung.com\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/samsung.jpg\",\"id\":2484,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"aeee6c2\"},{\"client_name\":\"Komatsu Kogyo\",\"client_link\":{\"url\":\"https:\\/\\/komaz.co.jp\\/english\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/komatsu-kogyo.jpg\",\"id\":2483,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8fc7373\"},{\"_id\":\"ed2e401\",\"client_name\":\"Yuwa Engineering\",\"client_link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yuwa-engineering.jpg\",\"id\":2482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10192,3150,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(10193,3150,'_elementor_page_assets','a:2:{s:6:\"styles\";a:1:{i:0;s:18:\"widget-text-editor\";}s:7:\"scripts\";a:6:{i:0;s:12:\"imagesloaded\";i:1;s:7:\"isotope\";i:2;s:25:\"ct-post-masonry-widget-js\";i:3;s:22:\"ct-post-grid-widget-js\";i:4;s:12:\"jquery-slick\";i:5;s:25:\"ct-clients-list-widget-js\";}}'),(10194,3150,'_elementor_css','a:6:{s:4:\"time\";i:1735098507;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:\"\";}'),(10195,3150,'_elementor_element_cache','{\"timeout\":1735184907,\"value\":{\"content\":\"        <section class=\"elementor-section elementor-top-section elementor-element elementor-element-5ebd4da3 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"5ebd4da3\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-65bf164f\" data-id=\"65bf164f\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjcwOWM5ZmYwIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJXZSB3aWxsIGV4Y2VlZCB5b3VyIGV4cGVjdGF0aW9ucyB3aXRoIG91ciBpbm5vdmF0aXZlIHNvbHV0aW9ucy4iLCJzdWJfdGl0bGUiOiJPdXIgVGVhbSJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-565ccd46\" data-id=\"565ccd46\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-4e81685f elementor-widget elementor-widget-text-editor\" data-id=\"4e81685f\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-7d3ed03 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"7d3ed03\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-default \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-24b59b7\" data-id=\"24b59b7\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap\">n                    n                    </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-daa7558 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"daa7558\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-050b385\" data-id=\"050b385\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImNhOGU5ODIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IldlIHdpbGwgZXhjZWVkIHlvdXIgZXhwZWN0YXRpb25zIHdpdGggb3VyIGlubm92YXRpdmUgc29sdXRpb25zIGFzIHlvdXIgdHJ1c3RlZCBwYXJ0bmVyLiIsInN1Yl90aXRsZSI6Ik91ciBQYXJ0bmVycyJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-57c8033\" data-id=\"57c8033\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-be87204 elementor-widget elementor-widget-text-editor\" data-id=\"be87204\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-a2fc248 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"a2fc248\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-5a54914\" data-id=\"5a54914\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImMyYzBjNjciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjbGllbnRzIjpbeyJjbGllbnRfbmFtZSI6Illvc2hpbW90byIsImNsaWVudF9saW5rIjp7InVybCI6Imh0dHBzOlwvXC93d3cueW9zaGltb3RvLXNhbmd5by5jby5qcFwvdm5cLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIn0sImNsaWVudF9pbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC95b3NoaW1vdG8tdmlldG5hbS5wbmciLCJpZCI6MjQ4NiwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwiX2lkIjoiYTQ5ZmJjNCJ9LHsiY2xpZW50X25hbWUiOiJLaW0gTG9uZyBNb3RvcnMiLCJjbGllbnRfbGluayI6eyJ1cmwiOiJodHRwczpcL1wva2ltbG9uZ21vdG9yLmNvbS52blwvIiwiaXNfZXh0ZXJuYWwiOiJvbiIsIm5vZm9sbG93Ijoib24ifSwiY2xpZW50X2ltYWdlIjp7InVybCI6Imh0dHBzOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMTBcL2tpbS1sb25nLW1vdG9ycy5wbmciLCJpZCI6MjQ4NSwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwiX2lkIjoiMzM5MzBhNSJ9LHsiY2xpZW50X25hbWUiOiJTYW1zdW5nIiwiY2xpZW50X2xpbmsiOnsidXJsIjoiaHR0cHM6XC9cL3d3dy5zYW1zdW5nLmNvbVwvdm5cLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIn0sImNsaWVudF9pbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9zYW1zdW5nLmpwZyIsImlkIjoyNDg0LCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJfaWQiOiJhZWVlNmMyIn0seyJjbGllbnRfbmFtZSI6IktvbWF0c3UgS29neW8iLCJjbGllbnRfbGluayI6eyJ1cmwiOiJodHRwczpcL1wva29tYXouY28uanBcL2VuZ2xpc2hcLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIn0sImNsaWVudF9pbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9rb21hdHN1LWtvZ3lvLmpwZyIsImlkIjoyNDgzLCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJfaWQiOiI4ZmM3MzczIn0seyJfaWQiOiJlZDJlNDAxIiwiY2xpZW50X25hbWUiOiJZdXdhIEVuZ2luZWVyaW5nIiwiY2xpZW50X2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiJvbiIsIm5vZm9sbG93Ijoib24iLCJjdXN0b21fYXR0cmlidXRlcyI6IiJ9LCJjbGllbnRfaW1hZ2UiOnsidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwveXV3YS1lbmdpbmVlcmluZy5qcGciLCJpZCI6MjQ4Miwic2l6ZSI6IiIsImFsdCI6IiIsInNvdXJjZSI6ImxpYnJhcnkifX1dLCJzbGlkZXNfdG9fc2hvdyI6IjQiLCJzbGlkZXNfdG9fc2Nyb2xsIjoiMSIsImF1dG9wbGF5IjoidHJ1ZSIsImF1dG9wbGF5X3NwZWVkIjo4MDAwLCJpbmZpbml0ZSI6InRydWUiLCJzcGVlZCI6ODAwLCJzbGlkZXNfdG9fc2hvd19tb2JpbGUiOiIyIiwic2xpZGVzX3RvX3Njcm9sbF9tb2JpbGUiOiIxIiwic2xpZGVzX3RvX3Nob3dfdGFibGV0IjoiMyIsInNsaWRlc190b19zY3JvbGxfdGFibGV0IjoiMSIsImN0X2FuaW1hdGUiOiJ3b3cgem9vbUluIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2NsaWVudHNfbGlzdCJ9\"]            </div>n        </div>n                    </div>n        </section>n        \",\"scripts\":[],\"styles\":[]}}'),(10198,3151,'_wp_attached_file','2024/12/FET.png'),(10199,3151,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:15:\"2024/12/FET.png\";s:8:\"filesize\";i:14877;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:{}}}'),(10200,3152,'_wp_page_template','default'),(10201,3152,'_elementor_edit_mode','builder'),(10202,3152,'_elementor_template_type','wp-page'),(10203,3152,'_elementor_version','3.24.7'),(10204,3152,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FET.png\",\"id\":3132,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"e562253\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FEE.jpg\",\"id\":3131,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Engineering\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"b254836\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FETS.png\",\"id\":3133,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tools Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"994e0c5\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions as your trusted partner.\",\"sub_title\":\"Our Partners\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Yoshimoto\",\"client_link\":{\"url\":\"https:\\/\\/www.yoshimoto-sangyo.co.jp\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yoshimoto-vietnam.png\",\"id\":2486,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"a49fbc4\"},{\"client_name\":\"Kim Long Motors\",\"client_link\":{\"url\":\"https:\\/\\/kimlongmotor.com.vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/kim-long-motors.png\",\"id\":2485,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"33930a5\"},{\"client_name\":\"Samsung\",\"client_link\":{\"url\":\"https:\\/\\/www.samsung.com\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/samsung.jpg\",\"id\":2484,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"aeee6c2\"},{\"client_name\":\"Komatsu Kogyo\",\"client_link\":{\"url\":\"https:\\/\\/komaz.co.jp\\/english\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/komatsu-kogyo.jpg\",\"id\":2483,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8fc7373\"},{\"_id\":\"ed2e401\",\"client_name\":\"Yuwa Engineering\",\"client_link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yuwa-engineering.jpg\",\"id\":2482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10205,3152,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(10206,3152,'_elementor_page_assets','a:2:{s:6:\"styles\";a:1:{i:0;s:18:\"widget-text-editor\";}s:7:\"scripts\";a:6:{i:0;s:12:\"imagesloaded\";i:1;s:7:\"isotope\";i:2;s:25:\"ct-post-masonry-widget-js\";i:3;s:22:\"ct-post-grid-widget-js\";i:4;s:12:\"jquery-slick\";i:5;s:25:\"ct-clients-list-widget-js\";}}'),(10207,3152,'_elementor_css','a:6:{s:4:\"time\";i:1735098568;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:\"\";}'),(10208,3152,'_elementor_element_cache','{\"timeout\":1735184968,\"value\":{\"content\":\"        <section class=\"elementor-section elementor-top-section elementor-element elementor-element-5ebd4da3 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"5ebd4da3\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-65bf164f\" data-id=\"65bf164f\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjcwOWM5ZmYwIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJXZSB3aWxsIGV4Y2VlZCB5b3VyIGV4cGVjdGF0aW9ucyB3aXRoIG91ciBpbm5vdmF0aXZlIHNvbHV0aW9ucy4iLCJzdWJfdGl0bGUiOiJPdXIgVGVhbSJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-565ccd46\" data-id=\"565ccd46\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-4e81685f elementor-widget elementor-widget-text-editor\" data-id=\"4e81685f\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-7d3ed03 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"7d3ed03\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-default \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-24b59b7\" data-id=\"24b59b7\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjRjMGU1NTciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X2xpc3QiOlt7ImltYWdlIjp7InVybCI6Imh0dHBzOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMTJcL0ZFVC5wbmciLCJpZCI6MzEzMiwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwidGl0bGUiOiJGYXIgRWFzdCBUZWNoIiwibGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn0sInNvY2lhbCI6IltdIiwiX2lkIjoiZTU2MjI1MyJ9LHsiaW1hZ2UiOnsidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMlwvRkVFLmpwZyIsImlkIjozMTMxLCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJ0aXRsZSI6IkZhciBFYXN0IEVuZ2luZWVyaW5nIiwibGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn0sInNvY2lhbCI6IltdIiwiX2lkIjoiYjI1NDgzNiJ9LHsiaW1hZ2UiOnsidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMlwvRkVUUy5wbmciLCJpZCI6MzEzMywiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwidGl0bGUiOiJGYXIgRWFzdCBUb29scyBUZWNoIiwibGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn0sInNvY2lhbCI6IltdIiwiX2lkIjoiOTk0ZTBjNSJ9XSwiY29sX2xnIjoiMyIsImNvbF94bCI6IjMiLCJjb2xfbWQiOiIyIiwidGh1bWJuYWlsX2N1c3RvbV9kaW1lbnNpb24iOnsid2lkdGgiOiIzNTAiLCJoZWlnaHQiOiIzNzEifX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X3RlYW1fZ3JpZCJ9\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-daa7558 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"daa7558\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-050b385\" data-id=\"050b385\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImNhOGU5ODIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IldlIHdpbGwgZXhjZWVkIHlvdXIgZXhwZWN0YXRpb25zIHdpdGggb3VyIGlubm92YXRpdmUgc29sdXRpb25zIGFzIHlvdXIgdHJ1c3RlZCBwYXJ0bmVyLiIsInN1Yl90aXRsZSI6Ik91ciBQYXJ0bmVycyJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-57c8033\" data-id=\"57c8033\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-be87204 elementor-widget elementor-widget-text-editor\" data-id=\"be87204\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-a2fc248 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"a2fc248\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-5a54914\" data-id=\"5a54914\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImMyYzBjNjciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjbGllbnRzIjpbeyJjbGllbnRfbmFtZSI6Illvc2hpbW90byIsImNsaWVudF9saW5rIjp7InVybCI6Imh0dHBzOlwvXC93d3cueW9zaGltb3RvLXNhbmd5by5jby5qcFwvdm5cLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIn0sImNsaWVudF9pbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC95b3NoaW1vdG8tdmlldG5hbS5wbmciLCJpZCI6MjQ4NiwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwiX2lkIjoiYTQ5ZmJjNCJ9LHsiY2xpZW50X25hbWUiOiJLaW0gTG9uZyBNb3RvcnMiLCJjbGllbnRfbGluayI6eyJ1cmwiOiJodHRwczpcL1wva2ltbG9uZ21vdG9yLmNvbS52blwvIiwiaXNfZXh0ZXJuYWwiOiJvbiIsIm5vZm9sbG93Ijoib24ifSwiY2xpZW50X2ltYWdlIjp7InVybCI6Imh0dHBzOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMTBcL2tpbS1sb25nLW1vdG9ycy5wbmciLCJpZCI6MjQ4NSwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwiX2lkIjoiMzM5MzBhNSJ9LHsiY2xpZW50X25hbWUiOiJTYW1zdW5nIiwiY2xpZW50X2xpbmsiOnsidXJsIjoiaHR0cHM6XC9cL3d3dy5zYW1zdW5nLmNvbVwvdm5cLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIn0sImNsaWVudF9pbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9zYW1zdW5nLmpwZyIsImlkIjoyNDg0LCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJfaWQiOiJhZWVlNmMyIn0seyJjbGllbnRfbmFtZSI6IktvbWF0c3UgS29neW8iLCJjbGllbnRfbGluayI6eyJ1cmwiOiJodHRwczpcL1wva29tYXouY28uanBcL2VuZ2xpc2hcLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIn0sImNsaWVudF9pbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9rb21hdHN1LWtvZ3lvLmpwZyIsImlkIjoyNDgzLCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJfaWQiOiI4ZmM3MzczIn0seyJfaWQiOiJlZDJlNDAxIiwiY2xpZW50X25hbWUiOiJZdXdhIEVuZ2luZWVyaW5nIiwiY2xpZW50X2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiJvbiIsIm5vZm9sbG93Ijoib24iLCJjdXN0b21fYXR0cmlidXRlcyI6IiJ9LCJjbGllbnRfaW1hZ2UiOnsidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwveXV3YS1lbmdpbmVlcmluZy5qcGciLCJpZCI6MjQ4Miwic2l6ZSI6IiIsImFsdCI6IiIsInNvdXJjZSI6ImxpYnJhcnkifX1dLCJzbGlkZXNfdG9fc2hvdyI6IjQiLCJzbGlkZXNfdG9fc2Nyb2xsIjoiMSIsImF1dG9wbGF5IjoidHJ1ZSIsImF1dG9wbGF5X3NwZWVkIjo4MDAwLCJpbmZpbml0ZSI6InRydWUiLCJzcGVlZCI6ODAwLCJzbGlkZXNfdG9fc2hvd19tb2JpbGUiOiIyIiwic2xpZGVzX3RvX3Njcm9sbF9tb2JpbGUiOiIxIiwic2xpZGVzX3RvX3Nob3dfdGFibGV0IjoiMyIsInNsaWRlc190b19zY3JvbGxfdGFibGV0IjoiMSIsImN0X2FuaW1hdGUiOiJ3b3cgem9vbUluIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2NsaWVudHNfbGlzdCJ9\"]            </div>n        </div>n                    </div>n        </section>n        \",\"scripts\":[],\"styles\":[]}}'),(10209,3153,'_wp_page_template','default'),(10210,3153,'_elementor_edit_mode','builder'),(10211,3153,'_elementor_template_type','wp-page'),(10212,3153,'_elementor_version','3.24.7'),(10213,3153,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FET.png\",\"id\":3132,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"e562253\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FEE.jpg\",\"id\":3131,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Engineering\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"b254836\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FETS.png\",\"id\":3133,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tools Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"994e0c5\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions as your trusted partner.\",\"sub_title\":\"Our Partners\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Yoshimoto\",\"client_link\":{\"url\":\"https:\\/\\/www.yoshimoto-sangyo.co.jp\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yoshimoto-vietnam.png\",\"id\":2486,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"a49fbc4\"},{\"client_name\":\"Kim Long Motors\",\"client_link\":{\"url\":\"https:\\/\\/kimlongmotor.com.vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/kim-long-motors.png\",\"id\":2485,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"33930a5\"},{\"client_name\":\"Samsung\",\"client_link\":{\"url\":\"https:\\/\\/www.samsung.com\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/samsung.jpg\",\"id\":2484,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"aeee6c2\"},{\"client_name\":\"Komatsu Kogyo\",\"client_link\":{\"url\":\"https:\\/\\/komaz.co.jp\\/english\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/komatsu-kogyo.jpg\",\"id\":2483,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8fc7373\"},{\"_id\":\"ed2e401\",\"client_name\":\"Yuwa Engineering\",\"client_link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yuwa-engineering.jpg\",\"id\":2482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10214,3153,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(10215,3153,'_elementor_page_assets','a:2:{s:6:\"styles\";a:1:{i:0;s:18:\"widget-text-editor\";}s:7:\"scripts\";a:6:{i:0;s:12:\"imagesloaded\";i:1;s:7:\"isotope\";i:2;s:25:\"ct-post-masonry-widget-js\";i:3;s:22:\"ct-post-grid-widget-js\";i:4;s:12:\"jquery-slick\";i:5;s:25:\"ct-clients-list-widget-js\";}}'),(10216,3153,'_elementor_css','a:6:{s:4:\"time\";i:1735098568;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:\"\";}'),(10217,3153,'_elementor_element_cache','{\"timeout\":1735184968,\"value\":{\"content\":\"        <section class=\"elementor-section elementor-top-section elementor-element elementor-element-5ebd4da3 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"5ebd4da3\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-65bf164f\" data-id=\"65bf164f\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjcwOWM5ZmYwIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJXZSB3aWxsIGV4Y2VlZCB5b3VyIGV4cGVjdGF0aW9ucyB3aXRoIG91ciBpbm5vdmF0aXZlIHNvbHV0aW9ucy4iLCJzdWJfdGl0bGUiOiJPdXIgVGVhbSJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-565ccd46\" data-id=\"565ccd46\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-4e81685f elementor-widget elementor-widget-text-editor\" data-id=\"4e81685f\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-7d3ed03 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"7d3ed03\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-default \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-24b59b7\" data-id=\"24b59b7\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjRjMGU1NTciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X2xpc3QiOlt7ImltYWdlIjp7InVybCI6Imh0dHBzOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMTJcL0ZFVC5wbmciLCJpZCI6MzEzMiwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwidGl0bGUiOiJGYXIgRWFzdCBUZWNoIiwibGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn0sInNvY2lhbCI6IltdIiwiX2lkIjoiZTU2MjI1MyJ9LHsiaW1hZ2UiOnsidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMlwvRkVFLmpwZyIsImlkIjozMTMxLCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJ0aXRsZSI6IkZhciBFYXN0IEVuZ2luZWVyaW5nIiwibGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn0sInNvY2lhbCI6IltdIiwiX2lkIjoiYjI1NDgzNiJ9LHsiaW1hZ2UiOnsidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMlwvRkVUUy5wbmciLCJpZCI6MzEzMywiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwidGl0bGUiOiJGYXIgRWFzdCBUb29scyBUZWNoIiwibGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn0sInNvY2lhbCI6IltdIiwiX2lkIjoiOTk0ZTBjNSJ9XSwiY29sX2xnIjoiMyIsImNvbF94bCI6IjMiLCJjb2xfbWQiOiIyIiwidGh1bWJuYWlsX2N1c3RvbV9kaW1lbnNpb24iOnsid2lkdGgiOiIzNTAiLCJoZWlnaHQiOiIzNzEifX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X3RlYW1fZ3JpZCJ9\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-daa7558 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"daa7558\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-050b385\" data-id=\"050b385\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImNhOGU5ODIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IldlIHdpbGwgZXhjZWVkIHlvdXIgZXhwZWN0YXRpb25zIHdpdGggb3VyIGlubm92YXRpdmUgc29sdXRpb25zIGFzIHlvdXIgdHJ1c3RlZCBwYXJ0bmVyLiIsInN1Yl90aXRsZSI6Ik91ciBQYXJ0bmVycyJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-57c8033\" data-id=\"57c8033\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-be87204 elementor-widget elementor-widget-text-editor\" data-id=\"be87204\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-a2fc248 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"a2fc248\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-5a54914\" data-id=\"5a54914\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImMyYzBjNjciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjbGllbnRzIjpbeyJjbGllbnRfbmFtZSI6Illvc2hpbW90byIsImNsaWVudF9saW5rIjp7InVybCI6Imh0dHBzOlwvXC93d3cueW9zaGltb3RvLXNhbmd5by5jby5qcFwvdm5cLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIn0sImNsaWVudF9pbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC95b3NoaW1vdG8tdmlldG5hbS5wbmciLCJpZCI6MjQ4NiwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwiX2lkIjoiYTQ5ZmJjNCJ9LHsiY2xpZW50X25hbWUiOiJLaW0gTG9uZyBNb3RvcnMiLCJjbGllbnRfbGluayI6eyJ1cmwiOiJodHRwczpcL1wva2ltbG9uZ21vdG9yLmNvbS52blwvIiwiaXNfZXh0ZXJuYWwiOiJvbiIsIm5vZm9sbG93Ijoib24ifSwiY2xpZW50X2ltYWdlIjp7InVybCI6Imh0dHBzOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMTBcL2tpbS1sb25nLW1vdG9ycy5wbmciLCJpZCI6MjQ4NSwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwiX2lkIjoiMzM5MzBhNSJ9LHsiY2xpZW50X25hbWUiOiJTYW1zdW5nIiwiY2xpZW50X2xpbmsiOnsidXJsIjoiaHR0cHM6XC9cL3d3dy5zYW1zdW5nLmNvbVwvdm5cLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIn0sImNsaWVudF9pbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9zYW1zdW5nLmpwZyIsImlkIjoyNDg0LCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJfaWQiOiJhZWVlNmMyIn0seyJjbGllbnRfbmFtZSI6IktvbWF0c3UgS29neW8iLCJjbGllbnRfbGluayI6eyJ1cmwiOiJodHRwczpcL1wva29tYXouY28uanBcL2VuZ2xpc2hcLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIn0sImNsaWVudF9pbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9rb21hdHN1LWtvZ3lvLmpwZyIsImlkIjoyNDgzLCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJfaWQiOiI4ZmM3MzczIn0seyJfaWQiOiJlZDJlNDAxIiwiY2xpZW50X25hbWUiOiJZdXdhIEVuZ2luZWVyaW5nIiwiY2xpZW50X2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiJvbiIsIm5vZm9sbG93Ijoib24iLCJjdXN0b21fYXR0cmlidXRlcyI6IiJ9LCJjbGllbnRfaW1hZ2UiOnsidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwveXV3YS1lbmdpbmVlcmluZy5qcGciLCJpZCI6MjQ4Miwic2l6ZSI6IiIsImFsdCI6IiIsInNvdXJjZSI6ImxpYnJhcnkifX1dLCJzbGlkZXNfdG9fc2hvdyI6IjQiLCJzbGlkZXNfdG9fc2Nyb2xsIjoiMSIsImF1dG9wbGF5IjoidHJ1ZSIsImF1dG9wbGF5X3NwZWVkIjo4MDAwLCJpbmZpbml0ZSI6InRydWUiLCJzcGVlZCI6ODAwLCJzbGlkZXNfdG9fc2hvd19tb2JpbGUiOiIyIiwic2xpZGVzX3RvX3Njcm9sbF9tb2JpbGUiOiIxIiwic2xpZGVzX3RvX3Nob3dfdGFibGV0IjoiMyIsInNsaWRlc190b19zY3JvbGxfdGFibGV0IjoiMSIsImN0X2FuaW1hdGUiOiJ3b3cgem9vbUluIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2NsaWVudHNfbGlzdCJ9\"]            </div>n        </div>n                    </div>n        </section>n        \",\"scripts\":[],\"styles\":[]}}'),(10218,3154,'_wp_page_template','default'),(10219,3154,'_elementor_edit_mode','builder'),(10220,3154,'_elementor_template_type','wp-page'),(10221,3154,'_elementor_version','3.24.7'),(10222,3154,'_elementor_data','[{\"id\":\"5ebd4da3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bf164f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"709c9ff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions.\",\"sub_title\":\"Our Team\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"565ccd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e81685f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d3ed03\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"24b59b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c0e557\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FET.png\",\"id\":3151,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"e562253\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FEE.jpg\",\"id\":3131,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Engineering\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"b254836\"},{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/FETS.png\",\"id\":3133,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Far East Tools Tech\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"994e0c5\"}],\"col_lg\":\"3\",\"col_xl\":\"3\",\"col_md\":\"2\",\"thumbnail_custom_dimension\":{\"width\":\"350\",\"height\":\"371\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daa7558\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"80\",\"bottom\":\"15\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"050b385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8e982\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will exceed your expectations with our innovative solutions as your trusted partner.\",\"sub_title\":\"Our Partners\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"57c8033\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"be87204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2fc248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"5a54914\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2c0c67\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Yoshimoto\",\"client_link\":{\"url\":\"https:\\/\\/www.yoshimoto-sangyo.co.jp\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yoshimoto-vietnam.png\",\"id\":2486,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"a49fbc4\"},{\"client_name\":\"Kim Long Motors\",\"client_link\":{\"url\":\"https:\\/\\/kimlongmotor.com.vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/kim-long-motors.png\",\"id\":2485,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"33930a5\"},{\"client_name\":\"Samsung\",\"client_link\":{\"url\":\"https:\\/\\/www.samsung.com\\/vn\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/samsung.jpg\",\"id\":2484,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"aeee6c2\"},{\"client_name\":\"Komatsu Kogyo\",\"client_link\":{\"url\":\"https:\\/\\/komaz.co.jp\\/english\\/\",\"is_external\":\"on\",\"nofollow\":\"on\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/komatsu-kogyo.jpg\",\"id\":2483,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8fc7373\"},{\"_id\":\"ed2e401\",\"client_name\":\"Yuwa Engineering\",\"client_link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/yuwa-engineering.jpg\",\"id\":2482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"slides_to_show_tablet\":\"3\",\"slides_to_scroll_tablet\":\"1\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10223,3154,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";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:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";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:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_md\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}}'),(10224,3154,'_elementor_page_assets','a:2:{s:6:\"styles\";a:1:{i:0;s:18:\"widget-text-editor\";}s:7:\"scripts\";a:6:{i:0;s:12:\"imagesloaded\";i:1;s:7:\"isotope\";i:2;s:25:\"ct-post-masonry-widget-js\";i:3;s:22:\"ct-post-grid-widget-js\";i:4;s:12:\"jquery-slick\";i:5;s:25:\"ct-clients-list-widget-js\";}}'),(10225,3154,'_elementor_css','a:6:{s:4:\"time\";i:1735098568;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:\"\";}'),(10226,3154,'_elementor_element_cache','{\"timeout\":1735184968,\"value\":{\"content\":\"        <section class=\"elementor-section elementor-top-section elementor-element elementor-element-5ebd4da3 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"5ebd4da3\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-65bf164f\" data-id=\"65bf164f\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjcwOWM5ZmYwIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJXZSB3aWxsIGV4Y2VlZCB5b3VyIGV4cGVjdGF0aW9ucyB3aXRoIG91ciBpbm5vdmF0aXZlIHNvbHV0aW9ucy4iLCJzdWJfdGl0bGUiOiJPdXIgVGVhbSJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-565ccd46\" data-id=\"565ccd46\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-4e81685f elementor-widget elementor-widget-text-editor\" data-id=\"4e81685f\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-7d3ed03 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"7d3ed03\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-default \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-24b59b7\" data-id=\"24b59b7\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjRjMGU1NTciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X2xpc3QiOlt7ImltYWdlIjp7InVybCI6Imh0dHBzOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMTJcL0ZFVC5wbmciLCJpZCI6MzEzMiwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwidGl0bGUiOiJGYXIgRWFzdCBUZWNoIiwibGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn0sInNvY2lhbCI6IltdIiwiX2lkIjoiZTU2MjI1MyJ9LHsiaW1hZ2UiOnsidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMlwvRkVFLmpwZyIsImlkIjozMTMxLCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJ0aXRsZSI6IkZhciBFYXN0IEVuZ2luZWVyaW5nIiwibGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn0sInNvY2lhbCI6IltdIiwiX2lkIjoiYjI1NDgzNiJ9LHsiaW1hZ2UiOnsidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMlwvRkVUUy5wbmciLCJpZCI6MzEzMywiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwidGl0bGUiOiJGYXIgRWFzdCBUb29scyBUZWNoIiwibGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn0sInNvY2lhbCI6IltdIiwiX2lkIjoiOTk0ZTBjNSJ9XSwiY29sX2xnIjoiMyIsImNvbF94bCI6IjMiLCJjb2xfbWQiOiIyIiwidGh1bWJuYWlsX2N1c3RvbV9kaW1lbnNpb24iOnsid2lkdGgiOiIzNTAiLCJoZWlnaHQiOiIzNzEifX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X3RlYW1fZ3JpZCJ9\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-daa7558 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"daa7558\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-050b385\" data-id=\"050b385\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImNhOGU5ODIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IldlIHdpbGwgZXhjZWVkIHlvdXIgZXhwZWN0YXRpb25zIHdpdGggb3VyIGlubm92YXRpdmUgc29sdXRpb25zIGFzIHlvdXIgdHJ1c3RlZCBwYXJ0bmVyLiIsInN1Yl90aXRsZSI6Ik91ciBQYXJ0bmVycyJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-57c8033\" data-id=\"57c8033\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-be87204 elementor-widget elementor-widget-text-editor\" data-id=\"be87204\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-a2fc248 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"a2fc248\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-5a54914\" data-id=\"5a54914\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImMyYzBjNjciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjbGllbnRzIjpbeyJjbGllbnRfbmFtZSI6Illvc2hpbW90byIsImNsaWVudF9saW5rIjp7InVybCI6Imh0dHBzOlwvXC93d3cueW9zaGltb3RvLXNhbmd5by5jby5qcFwvdm5cLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIn0sImNsaWVudF9pbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC95b3NoaW1vdG8tdmlldG5hbS5wbmciLCJpZCI6MjQ4NiwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwiX2lkIjoiYTQ5ZmJjNCJ9LHsiY2xpZW50X25hbWUiOiJLaW0gTG9uZyBNb3RvcnMiLCJjbGllbnRfbGluayI6eyJ1cmwiOiJodHRwczpcL1wva2ltbG9uZ21vdG9yLmNvbS52blwvIiwiaXNfZXh0ZXJuYWwiOiJvbiIsIm5vZm9sbG93Ijoib24ifSwiY2xpZW50X2ltYWdlIjp7InVybCI6Imh0dHBzOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMTBcL2tpbS1sb25nLW1vdG9ycy5wbmciLCJpZCI6MjQ4NSwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwiX2lkIjoiMzM5MzBhNSJ9LHsiY2xpZW50X25hbWUiOiJTYW1zdW5nIiwiY2xpZW50X2xpbmsiOnsidXJsIjoiaHR0cHM6XC9cL3d3dy5zYW1zdW5nLmNvbVwvdm5cLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIn0sImNsaWVudF9pbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9zYW1zdW5nLmpwZyIsImlkIjoyNDg0LCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJfaWQiOiJhZWVlNmMyIn0seyJjbGllbnRfbmFtZSI6IktvbWF0c3UgS29neW8iLCJjbGllbnRfbGluayI6eyJ1cmwiOiJodHRwczpcL1wva29tYXouY28uanBcL2VuZ2xpc2hcLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIn0sImNsaWVudF9pbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9rb21hdHN1LWtvZ3lvLmpwZyIsImlkIjoyNDgzLCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJfaWQiOiI4ZmM3MzczIn0seyJfaWQiOiJlZDJlNDAxIiwiY2xpZW50X25hbWUiOiJZdXdhIEVuZ2luZWVyaW5nIiwiY2xpZW50X2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiJvbiIsIm5vZm9sbG93Ijoib24iLCJjdXN0b21fYXR0cmlidXRlcyI6IiJ9LCJjbGllbnRfaW1hZ2UiOnsidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwveXV3YS1lbmdpbmVlcmluZy5qcGciLCJpZCI6MjQ4Miwic2l6ZSI6IiIsImFsdCI6IiIsInNvdXJjZSI6ImxpYnJhcnkifX1dLCJzbGlkZXNfdG9fc2hvdyI6IjQiLCJzbGlkZXNfdG9fc2Nyb2xsIjoiMSIsImF1dG9wbGF5IjoidHJ1ZSIsImF1dG9wbGF5X3NwZWVkIjo4MDAwLCJpbmZpbml0ZSI6InRydWUiLCJzcGVlZCI6ODAwLCJzbGlkZXNfdG9fc2hvd19tb2JpbGUiOiIyIiwic2xpZGVzX3RvX3Njcm9sbF9tb2JpbGUiOiIxIiwic2xpZGVzX3RvX3Nob3dfdGFibGV0IjoiMyIsInNsaWRlc190b19zY3JvbGxfdGFibGV0IjoiMSIsImN0X2FuaW1hdGUiOiJ3b3cgem9vbUluIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2NsaWVudHNfbGlzdCJ9\"]            </div>n        </div>n                    </div>n        </section>n        \",\"scripts\":[],\"styles\":[]}}'),(10227,28,'_elementor_css','a:6:{s:4:\"time\";i:1735098845;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:\"\";}'),(10228,28,'_elementor_element_cache','{\"timeout\":1746569300,\"value\":{\"content\":\"        <section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-5ebd4da3 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"5ebd4da3\\\" data-element_type=\\\"section\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-65bf164f\\\" data-id=\\\"65bf164f\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6IjcwOWM5ZmYwIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJXZSB3aWxsIGV4Y2VlZCB5b3VyIGV4cGVjdGF0aW9ucyB3aXRoIG91ciBpbm5vdmF0aXZlIHNvbHV0aW9ucy4iLCJzdWJfdGl0bGUiOiJPdXIgVGVhbSJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\\\"]            <\\/div>\\n        <\\/div>\\n                <div class=\\\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-565ccd46\\\" data-id=\\\"565ccd46\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        \\t\\t<div class=\\\"elementor-element elementor-element-4e81685f elementor-widget elementor-widget-text-editor\\\" data-id=\\\"4e81685f\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                <section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-7d3ed03 elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"7d3ed03\\\" data-element_type=\\\"section\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-default \\\">\\n                    <div class=\\\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-24b59b7\\\" data-id=\\\"24b59b7\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6IjRjMGU1NTciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X2xpc3QiOlt7ImltYWdlIjp7InVybCI6Imh0dHBzOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMTJcL0ZFVC5wbmciLCJpZCI6MzE1MSwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwidGl0bGUiOiJGYXIgRWFzdCBUZWNoIiwibGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn0sInNvY2lhbCI6IltdIiwiX2lkIjoiZTU2MjI1MyJ9LHsiaW1hZ2UiOnsidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMlwvRkVFLmpwZyIsImlkIjozMTMxLCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJ0aXRsZSI6IkZhciBFYXN0IEVuZ2luZWVyaW5nIiwibGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn0sInNvY2lhbCI6IltdIiwiX2lkIjoiYjI1NDgzNiJ9LHsiaW1hZ2UiOnsidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMlwvRkVUUy5wbmciLCJpZCI6MzEzMywiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwidGl0bGUiOiJGYXIgRWFzdCBUb29scyBUZWNoIiwibGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn0sInNvY2lhbCI6IltdIiwiX2lkIjoiOTk0ZTBjNSJ9XSwiY29sX2xnIjoiMyIsImNvbF94bCI6IjMiLCJjb2xfbWQiOiIyIiwidGh1bWJuYWlsX2N1c3RvbV9kaW1lbnNpb24iOnsid2lkdGgiOiIzNTAiLCJoZWlnaHQiOiIzNzEifX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X3RlYW1fZ3JpZCJ9\\\"]            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                <section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-daa7558 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"daa7558\\\" data-element_type=\\\"section\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-050b385\\\" data-id=\\\"050b385\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6ImNhOGU5ODIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IldlIHdpbGwgZXhjZWVkIHlvdXIgZXhwZWN0YXRpb25zIHdpdGggb3VyIGlubm92YXRpdmUgc29sdXRpb25zIGFzIHlvdXIgdHJ1c3RlZCBwYXJ0bmVyLiIsInN1Yl90aXRsZSI6Ik91ciBQYXJ0bmVycyJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\\\"]            <\\/div>\\n        <\\/div>\\n                <div class=\\\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-57c8033\\\" data-id=\\\"57c8033\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        \\t\\t<div class=\\\"elementor-element elementor-element-be87204 elementor-widget elementor-widget-text-editor\\\" data-id=\\\"be87204\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                <section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-a2fc248 elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"a2fc248\\\" data-element_type=\\\"section\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-5a54914\\\" data-id=\\\"5a54914\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6ImMyYzBjNjciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjbGllbnRzIjpbeyJjbGllbnRfbmFtZSI6Illvc2hpbW90byIsImNsaWVudF9saW5rIjp7InVybCI6Imh0dHBzOlwvXC93d3cueW9zaGltb3RvLXNhbmd5by5jby5qcFwvdm5cLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIn0sImNsaWVudF9pbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC95b3NoaW1vdG8tdmlldG5hbS5wbmciLCJpZCI6MjQ4NiwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwiX2lkIjoiYTQ5ZmJjNCJ9LHsiY2xpZW50X25hbWUiOiJLaW0gTG9uZyBNb3RvcnMiLCJjbGllbnRfbGluayI6eyJ1cmwiOiJodHRwczpcL1wva2ltbG9uZ21vdG9yLmNvbS52blwvIiwiaXNfZXh0ZXJuYWwiOiJvbiIsIm5vZm9sbG93Ijoib24ifSwiY2xpZW50X2ltYWdlIjp7InVybCI6Imh0dHBzOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMTBcL2tpbS1sb25nLW1vdG9ycy5wbmciLCJpZCI6MjQ4NSwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwiX2lkIjoiMzM5MzBhNSJ9LHsiY2xpZW50X25hbWUiOiJTYW1zdW5nIiwiY2xpZW50X2xpbmsiOnsidXJsIjoiaHR0cHM6XC9cL3d3dy5zYW1zdW5nLmNvbVwvdm5cLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIn0sImNsaWVudF9pbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9zYW1zdW5nLmpwZyIsImlkIjoyNDg0LCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJfaWQiOiJhZWVlNmMyIn0seyJjbGllbnRfbmFtZSI6IktvbWF0c3UgS29neW8iLCJjbGllbnRfbGluayI6eyJ1cmwiOiJodHRwczpcL1wva29tYXouY28uanBcL2VuZ2xpc2hcLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIn0sImNsaWVudF9pbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9rb21hdHN1LWtvZ3lvLmpwZyIsImlkIjoyNDgzLCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJfaWQiOiI4ZmM3MzczIn0seyJfaWQiOiJlZDJlNDAxIiwiY2xpZW50X25hbWUiOiJZdXdhIEVuZ2luZWVyaW5nIiwiY2xpZW50X2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiJvbiIsIm5vZm9sbG93Ijoib24iLCJjdXN0b21fYXR0cmlidXRlcyI6IiJ9LCJjbGllbnRfaW1hZ2UiOnsidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwveXV3YS1lbmdpbmVlcmluZy5qcGciLCJpZCI6MjQ4Miwic2l6ZSI6IiIsImFsdCI6IiIsInNvdXJjZSI6ImxpYnJhcnkifX1dLCJzbGlkZXNfdG9fc2hvdyI6IjQiLCJzbGlkZXNfdG9fc2Nyb2xsIjoiMSIsImF1dG9wbGF5IjoidHJ1ZSIsImF1dG9wbGF5X3NwZWVkIjo4MDAwLCJpbmZpbml0ZSI6InRydWUiLCJzcGVlZCI6ODAwLCJzbGlkZXNfdG9fc2hvd19tb2JpbGUiOiIyIiwic2xpZGVzX3RvX3Njcm9sbF9tb2JpbGUiOiIxIiwic2xpZGVzX3RvX3Nob3dfdGFibGV0IjoiMyIsInNsaWRlc190b19zY3JvbGxfdGFibGV0IjoiMSIsImN0X2FuaW1hdGUiOiJ3b3cgem9vbUluIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2NsaWVudHNfbGlzdCJ9\\\"]            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n        \",\"scripts\":[],\"styles\":[]}}'),(10230,2973,'_elementor_page_assets','a:2:{s:6:\"styles\";a:4:{i:0;s:18:\"widget-text-editor\";i:1;s:21:\"e-animation-slideInUp\";i:2;s:12:\"widget-image\";i:3;s:18:\"widget-google_maps\";}s:7:\"scripts\";a:9:{i:0;s:16:\"jquery-numerator\";i:1;s:20:\"ct-counter-widget-js\";i:2;s:11:\"progressbar\";i:3;s:16:\"waypoints-lib-js\";i:4;s:24:\"ct-progressbar-widget-js\";i:5;s:12:\"imagesloaded\";i:6;s:7:\"isotope\";i:7;s:25:\"ct-post-masonry-widget-js\";i:8;s:22:\"ct-post-grid-widget-js\";}}'),(10233,2959,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"widget-image\";i:1;s:18:\"widget-text-editor\";}}'),(10236,2982,'_elementor_page_assets','a:2:{s:6:\"styles\";a:4:{i:0;s:18:\"widget-text-editor\";i:1;s:21:\"e-animation-slideInUp\";i:2;s:12:\"widget-image\";i:3;s:18:\"widget-google_maps\";}s:7:\"scripts\";a:9:{i:0;s:16:\"jquery-numerator\";i:1;s:20:\"ct-counter-widget-js\";i:2;s:11:\"progressbar\";i:3;s:16:\"waypoints-lib-js\";i:4;s:24:\"ct-progressbar-widget-js\";i:5;s:12:\"imagesloaded\";i:6;s:7:\"isotope\";i:7;s:25:\"ct-post-masonry-widget-js\";i:8;s:22:\"ct-post-grid-widget-js\";}}'),(10239,2961,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"widget-image\";i:1;s:18:\"widget-text-editor\";}}'),(10241,3156,'_elementor_edit_mode','builder'),(10242,3156,'_elementor_template_type','wp-page'),(10243,3156,'_elementor_version','3.24.7'),(10244,3156,'_wp_page_template','default'),(10245,3156,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=oVQ4_PIqgz8\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have started to open a store on Alibaba to connect with orders from around the world.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0e89391\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"en|language\"],\"ct_animate\":\"wow fadeInUp\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always provide a sense of security in terms of quality and progress.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#85B23B\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(10246,3156,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(10247,3156,'_elementor_css','a:6:{s:4:\"time\";i:1735095484;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:8:\"material\";i:1;s:8:\"flaticon\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(10248,3156,'_elementor_page_assets','a:2:{s:6:\"styles\";a:4:{i:0;s:18:\"widget-text-editor\";i:1;s:21:\"e-animation-slideInUp\";i:2;s:12:\"widget-image\";i:3;s:18:\"widget-google_maps\";}s:7:\"scripts\";a:9:{i:0;s:16:\"jquery-numerator\";i:1;s:20:\"ct-counter-widget-js\";i:2;s:11:\"progressbar\";i:3;s:16:\"waypoints-lib-js\";i:4;s:24:\"ct-progressbar-widget-js\";i:5;s:12:\"imagesloaded\";i:6;s:7:\"isotope\";i:7;s:25:\"ct-post-masonry-widget-js\";i:8;s:22:\"ct-post-grid-widget-js\";}}'),(10249,3156,'_elementor_element_cache','{\"timeout\":1742263432,\"value\":{\"content\":\"        <section class=\"elementor-section elementor-top-section elementor-element elementor-element-2d2b67a elementor-section-stretched elementor-section-full_width slider-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"2d2b67a\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-no \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-d1bb387\" data-id=\"d1bb387\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImNjODZmNGQiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJyZXZzbGlkZXJ0aXRsZSI6IkhvbWUgMSIsInNob3J0Y29kZSI6IltyZXZfc2xpZGVyIGFsaWFzPVwiaG9tZS0xXCJdW1wvcmV2X3NsaWRlcl0ifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoic2xpZGVyX3Jldm9sdXRpb24ifQ==\"]        <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-2cea906 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"2cea906\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-8e117d0\" data-id=\"8e117d0\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjI0YjYyY2MiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IldlIHByb3ZpZGUgYSB3aWRlIHJhbmdlIG9mIHByb2R1Y3RzIGZvciB0aGUgbWVjaGFuaWNhbCBpbmR1c3RyeSBhY3Jvc3MgVmlldG5hbSBhbmQgd29ybGR3aWRlLCBlc3BlY2lhbGx5IGluIGtleSBtYXJrZXRzIHN1Y2ggYXMgSmFwYW4sIFNvdXRoIEtvcmVhLCB0aGUgVW5pdGVkIFN0YXRlcywgYW5kIEF1c3RyYWxpYS4gV2UgYWxzbyBoYXZlIGV4cGVyaWVuY2UgaW4gZXhwb3J0aW5nIHRvIHRoZXNlIG1hcmtldHMuIiwidGl0bGVfY29sb3IiOiIjODVCMjNCIiwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzYsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHQiOnsidW5pdCI6InB4Iiwic2l6ZSI6NDgsInNpemVzIjpbXX0sInN0eWxlIjoic3QtbGluZS1sZWZ0IiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMTYiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjoyNiwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzQsInNpemVzIjpbXX0sImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluVXAifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-909b449 wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"909b449\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>tttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImM0YTIwMjgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJpbWFnZSI6eyJ1cmwiOiIiLCJpZCI6IiJ9LCJ2aWRlb19saW5rIjoiaHR0cHM6XC9cL3d3dy55b3V0dWJlLmNvbVwvd2F0Y2g/dj1vVlE0X1BJcWd6OCIsImJ0bl92aWRlb19zdHlsZSI6InN0eWxlMyIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMzEiLCJyaWdodCI6IjM4IiwiYm90dG9tIjoiMCIsImxlZnQiOiI3OCIsImlzTGlua2VkIjpmYWxzZX0sIl9jc3NfY2xhc3NlcyI6ImVsLWlubGluZSB3b3cgZmFkZUluUmlnaHQiLCJfbWFyZ2luX3RhYmxldCI6eyJ1bml0IjoicHgiLCJ0b3AiOiIzMSIsInJpZ2h0IjoiMjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjY4IiwiaXNMaW5rZWQiOmZhbHNlfSwiX2FuaW1hdGlvbiI6InNsaWRlSW5VcCIsIl9tYXJnaW5fbW9iaWxlIjp7InVuaXQiOiJweCIsInRvcCI6IjMxIiwicmlnaHQiOiIyMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF92aWRlb19wbGF5ZXIifQ==\"]tt<div class=\"elementor-element elementor-element-1fd7931 el-inline wow fadeInRight elementor-invisible elementor-widget elementor-widget-image\" data-id=\"1fd7931\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;slideInUp&quot;}\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" class=\"attachment-full size-full wp-image-2542\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-4fff345\" data-id=\"4fff345\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjU5MGYxYmUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjo1MCwic3VmZml4IjoiKyIsInRob3VzYW5kX3NlcGFyYXRvciI6IiIsInRob3VzYW5kX3NlcGFyYXRvcl9jaGFyIjoiICIsInRpdGxlIjoiQ3VzdG9tZXIiLCJzaG93X2ljb24iOiJ0cnVlIiwiY291bnRlcl9pY29uIjp7InZhbHVlIjoibWF0ZXJpYWwgem1kaSB6bWRpLWFzc2lnbm1lbnQtY2hlY2siLCJsaWJyYXJ5IjoibWF0ZXJpYWwifSwibnVtYmVyX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjQxIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJfY3NzX2NsYXNzZXMiOiJ0ZXh0LWNlbnRlci1zbSIsImljb25fdHlwZSI6ImltYWdlIiwiaWNvbl9pbWFnZSI6eyJ1cmwiOiJodHRwOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAxOVwvMTJcL2NvdW50ZXItaWNvbi0wMS5wbmciLCJpZCI6MTUxNX0sIl9hbmltYXRpb24iOiJub25lIiwiY3RfYW5pbWF0ZSI6IndvdyBmYWRlSW5VcCJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9jb3VudGVyIn0=\"][elementor-element data=\"eyJpZCI6IjdhNWYyMzkiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjoyMDAsInN1ZmZpeCI6IisiLCJ0aG91c2FuZF9zZXBhcmF0b3IiOiIiLCJ0aG91c2FuZF9zZXBhcmF0b3JfY2hhciI6IiAiLCJ0aXRsZSI6IlBlcnNvbm5lbCIsInNob3dfaWNvbiI6InRydWUiLCJjb3VudGVyX2ljb24iOnsidmFsdWUiOiJtYXRlcmlhbCB6bWRpIHptZGktYXNzaWdubWVudC1jaGVjayIsImxpYnJhcnkiOiJtYXRlcmlhbCJ9LCJudW1iZXJfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiNDEiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sIl9jc3NfY2xhc3NlcyI6InRleHQtY2VudGVyLXNtIiwiaWNvbl90eXBlIjoiaW1hZ2UiLCJpY29uX2ltYWdlIjp7InVybCI6Imh0dHA6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDE5XC8xMlwvY291bnRlci1pY29uLTAyLnBuZyIsImlkIjoxNTE2fSwiX2FuaW1hdGlvbiI6Im5vbmUiLCJjdF9hbmltYXRlIjoid293IGZhZGVJblVwIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2NvdW50ZXIifQ==\"][elementor-element data=\"eyJpZCI6IjA0NTMxYzgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjoyMDAwLCJzdWZmaXgiOiIrIiwidGhvdXNhbmRfc2VwYXJhdG9yIjoiIiwidGhvdXNhbmRfc2VwYXJhdG9yX2NoYXIiOiIgIiwidGl0bGUiOiJPZGVycyBwZXIgeWVhciIsInNob3dfaWNvbiI6InRydWUiLCJjb3VudGVyX2ljb24iOnsidmFsdWUiOiJtYXRlcmlhbCB6bWRpIHptZGktYXNzaWdubWVudC1jaGVjayIsImxpYnJhcnkiOiJtYXRlcmlhbCJ9LCJudW1iZXJfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiNDEiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sIl9jc3NfY2xhc3NlcyI6InRleHQtY2VudGVyLXNtIiwiaWNvbl90eXBlIjoiaW1hZ2UiLCJpY29uX2ltYWdlIjp7InVybCI6Imh0dHA6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDE5XC8xMlwvY291bnRlci1pY29uLTAzLnBuZyIsImlkIjoxNTE3fSwiX2FuaW1hdGlvbiI6Im5vbmUiLCJjdF9hbmltYXRlIjoid293IGZhZGVJblVwIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2NvdW50ZXIifQ==\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-348ba48\" data-id=\"348ba48\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-ed7e1d0 wow fadeInUp elementor-widget elementor-widget-image\" data-id=\"ed7e1d0\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" class=\"attachment-full size-full wp-image-2571\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntttt<div class=\"elementor-element elementor-element-3b54db6 wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"3b54db6\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-8b70e78 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"8b70e78\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-c2b95bd\" data-id=\"c2b95bd\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-b5a8ba3 elementor-widget elementor-widget-image\" data-id=\"b5a8ba3\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" class=\"attachment-full size-full wp-image-2268\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntttt<div class=\"elementor-element elementor-element-0e89391 elementor-widget elementor-widget-image\" data-id=\"0e89391\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" class=\"attachment-full size-full wp-image-2559\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-de7136f\" data-id=\"de7136f\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6Ijg0MDdhYmUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IldlIHN0cml2ZSB0byBiZWNvbWUgb25lIG9mIFZpZXRuYW0ncyBsZWFkaW5nIG1lY2hhbmljYWwgcHJvY2Vzc2luZyBjb21wYW5pZXMsIHN1cHBseWluZyB0aGUgaW50ZXJuYXRpb25hbCBtYXJrZXQgYnkgMjAzMC4gSW4gdGhlIGZ1dHVyZSwgd2UgYWltIHRvIHByb2R1Y2UgYSBjb21wbGV0ZSBtYWNoaW5lcnkgcHJvZHVjdCB0byBkZWxpdmVyIGRpcmVjdGx5IHRvIGVuZC11c2Vycy4iLCJ0aXRsZV9jb2xvciI6IiM4NUIyM0IiLCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZSI6eyJ1bml0IjoicHgiLCJzaXplIjozNiwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodCI6eyJ1bml0IjoicHgiLCJzaXplIjo0OCwic2l6ZXMiOltdfSwic3R5bGUiOiJzdC1saW5lLWxlZnQiLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6Ii05IiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwidGl0bGVfc3BhY2VfYm90dG9tIjp7InVuaXQiOiJweCIsInNpemUiOjE3LCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzAsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjM4LCJzaXplcyI6W119LCJjdF9hbmltYXRlIjoid293IGZsaXBJblgiLCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV9tb2JpbGUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MjgsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfbW9iaWxlIjp7InVuaXQiOiJweCIsInNpemUiOjM0LCJzaXplcyI6W119fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-0c8497c wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"0c8497c\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Goals to achieve by 2026:</p>tttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6IjQ3NTRlZDYiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJwcm9ncmVzc2Jhcl9saXN0IjpbeyJ0aXRsZSI6IkVhc3QgQXNpYSAoSmFwYW4sIFNvdXRoIEtvcmVhLCBldGMuKTogRXhwb3J0IG9mIHJlcGxhY2VtZW50IG1hY2hpbmVyeSBjb21wb25lbnRzLCBtb3RvcmN5Y2xlIGFuZCBjYXIgYWNjZXNzb3JpZXMsIHdhdGVyIGluZHVzdHJ5IGZpdHRpbmdzLCBtb2xkcywgYW5kIG90aGVyIG1lY2hhbmljYWwgcGFydHMuIiwicHJvZ3Jlc3NfdHlwZSI6IiIsInBlcmNlbnQiOnsidW5pdCI6IiUiLCJzaXplIjozMCwic2l6ZXMiOltdfSwiZGlzcGxheV9wZXJjZW50YWdlIjoiaGlkZSIsImlubmVyX3RleHQiOiJXZWIgRGVzaWduZXIiLCJfaWQiOiI4YjRiY2Q2In0seyJ0aXRsZSI6IkV1cm9wZSAoR2VybWFueSwgQnVsZ2FyaWEsIHRoZSBOZXRoZXJsYW5kcywgZXRjLik6IFByb2R1Y3Rpb24gamlncyBmb3IgYXV0b21vdGl2ZSBiZWFyaW5ncywgYW5kIGVsZWN0cmljYWwgYm94IGNvbXBvbmVudHMgZm9yIGF1dG9tYXRpb24gbWFjaGluZXJ5LiIsInByb2dyZXNzX3R5cGUiOiIiLCJwZXJjZW50Ijp7InVuaXQiOiIlIiwic2l6ZSI6MTAsInNpemVzIjpbXX0sImRpc3BsYXlfcGVyY2VudGFnZSI6ImhpZGUiLCJpbm5lcl90ZXh0IjoiV2ViIERlc2lnbmVyIiwiX2lkIjoiNmUwZjg3NyJ9LHsidGl0bGUiOiJVbml0ZWQgU3RhdGVzOiBQcm9kdWN0cyByZWxhdGVkIHRvIG1lZGljYWwgaW5zdHJ1bWVudHMsIG9wdGljcywgYW5kIGF1ZGlvIGVxdWlwbWVudC4iLCJwcm9ncmVzc190eXBlIjoiIiwicGVyY2VudCI6eyJ1bml0IjoiJSIsInNpemUiOjMwLCJzaXplcyI6W119LCJkaXNwbGF5X3BlcmNlbnRhZ2UiOiJzaG93IiwiX2lkIjoiMjIyZWI4MSJ9LHsiX2lkIjoiNWVlY2NiNiIsInRpdGxlIjoiQXVzdHJhbGlhOiBTaGVldCBtZXRhbCBwcm9kdWN0cy4iLCJwZXJjZW50Ijp7InVuaXQiOiIlIiwic2l6ZSI6OCwic2l6ZXMiOltdfX0seyJfaWQiOiIxMGU1NzUwIiwidGl0bGUiOiJWaWV0bmFtOiBTbWFsbCBhdXRvbWF0aW9uIG1hY2hpbmVzOyBtb3RvcmN5Y2xlIGFuZCBjYXIgYm9sdHM7IHByb2R1Y3RzIGluIHRoZSBvaWwgYW5kIGdhcyBpbmR1c3RyeS4iLCJwZXJjZW50Ijp7InVuaXQiOiIlIiwic2l6ZSI6MjAsInNpemVzIjpbXX19LHsiX2lkIjoiZTE3YTE5NSIsInRpdGxlIjoiT3RoZXIgbWFya2V0cyBhbmQgcHJvZHVjdHMuIiwicGVyY2VudCI6eyJ1bml0IjoiJSIsInNpemUiOjIsInNpemVzIjpbXX19XSwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiI3OCIsImlzTGlua2VkIjpmYWxzZX0sIl9tYXJnaW5fbW9iaWxlIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6dHJ1ZX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9wcm9ncmVzc2JhciJ9\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-b6145ce elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"b6145ce\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-e65d58b\" data-id=\"e65d58b\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjljZDU1ZGQiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IldlIG9mZmVyIHNlcnZpY2VzIGFjcm9zcyBtdWx0aXBsZSBzZWN0b3JzIiwidGl0bGVfY29sb3IiOiIjODVCMjNCIiwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzYsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHQiOnsidW5pdCI6InB4Iiwic2l6ZSI6NDgsInNpemVzIjpbXX0sInN0eWxlIjoic3QtbGluZS1sZWZ0IiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOnRydWV9LCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzAsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjM4LCJzaXplcyI6W119LCJjdF9hbmltYXRlIjoid293IGZhZGVJbkxlZnQiLCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV9tb2JpbGUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MjgsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfbW9iaWxlIjp7InVuaXQiOiJweCIsInNpemUiOjM0LCJzaXplcyI6W119fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-2067062\" data-id=\"2067062\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-956a238 wow fadeInRight elementor-widget elementor-widget-text-editor\" data-id=\"956a238\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>We always meet our customers&#8217; design requirements. Appearance and dimensions are what we consider most important.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-74328b6b elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"74328b6b\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4b9c9796\" data-id=\"4b9c9796\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjFjYTNiNmM1IiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsibGF5b3V0IjoiNCIsImxpbWl0Ijo0LCJmaWx0ZXJfZGVmYXVsdF90aXRsZSI6IkFsbCIsImNvbF9zbSI6IjEiLCJjb2xfbWQiOiIyIiwiY29sX2xnIjoiMiIsImNvbF94bCI6IjIiLCJidXR0b25fdGV4dCI6IlJlYWQgbW9yZSIsInNvdXJjZSI6WyJlbnxsYW5ndWFnZSJdLCJjdF9hbmltYXRlIjoid293IGZhZGVJblVwIiwib3JkZXIiOiJhc2MifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3Rfc2VydmljZV9ncmlkIn0=\"][elementor-element data=\"eyJpZCI6IjI5NzFiOGIzIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGV4dCI6Ik1vcmUgc2VydmljZXMiLCJsaW5rIjp7InVybCI6Ilwvc2VydmljZXMiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn0sImFsaWduIjoiY2VudGVyIiwiYnRuX2ljb24iOnsidmFsdWUiOiJtYXRlcmlhbCB6bWRpIHptZGktc2V0dGluZ3MiLCJsaWJyYXJ5IjoibWF0ZXJpYWwifSwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiItMTAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJzdHlsZSI6ImJ0bi1wcmVzZXQzIiwiX2FuaW1hdGlvbiI6Im5vbmUifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfYnV0dG9uIn0=\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-f43d465 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"f43d465\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-5310bd3\" data-id=\"5310bd3\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImJjZmM3MzUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjdGY3X2lkIjoiOTMyIiwibGF5b3V0IjoiMiIsImN0ZjdfdGl0bGUiOiJIYXZlIGFueSBxdWVzdGlvbnM/IiwiY3RmN19kZXNjcmlwdGlvbiI6IkNhbGw6IDgwMCAyNTAgMzY5IiwiY3RmN19waG9uZSI6IjxzcGFuPkNhbGw6PFwvc3Bhbj4gMDk2ODg2MDM4NiIsImVsX3RpdGxlIjoiQ29udGFjdCBmb3IgZ2V0dGluZyBxdW90ZToiLCJjdF9hbmltYXRlIjoid293IGZsaXBJblgifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY3RmNyJ9\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-a9b49c5 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"a9b49c5\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n                            <div class=\"elementor-background-overlay\"></div>n                n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-1dcb85a\" data-id=\"1dcb85a\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n                <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-6c560a6 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"6c560a6\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-e82cd67\" data-id=\"e82cd67\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImVmNDE1MTEiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IldlIGhhdmUgc29tZSBlYXN5IHdvcmtpbmcgcHJvY2VkdXJlIiwidGl0bGVfY29sb3IiOiIjZmZmZmZmIiwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzYsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHQiOnsidW5pdCI6InB4Iiwic2l6ZSI6NDgsInNpemVzIjpbXX0sInN0eWxlIjoic3QtbGluZS1sZWZ0IiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOnRydWV9LCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzAsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjM4LCJzaXplcyI6W119LCJjdF9hbmltYXRlIjoid293IGZhZGVJbkxlZnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-3a08737\" data-id=\"3a08737\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-7aa11c2 wow fadeInRight elementor-widget elementor-widget-text-editor\" data-id=\"7aa11c2\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>We always provide a sense of security in terms of quality and progress.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n        [elementor-element data=\"eyJpZCI6IjlkNWVhMzIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X2xpc3QiOlt7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi1yZXNlYXJjaCIsImxpYnJhcnkiOiJmbGF0aWNvbiJ9LCJfaWQiOiIwNTVmZWYyIiwidGl0bGUiOiJGaW5kIHVzIiwiZGVzY3JpcHRpb24iOiJXZSB1bmRlcnN0YW5kIHRoZSBpbXBvcnRhbmNlIG9mIGhhbmRsaW5nIGVhY2ggcHJvamVjdCB3aXRoIGEgaG9saXN0aWMgYXBwcm9hY2guIiwiYnRuX2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9fSx7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi1uZXR3b3JrIiwibGlicmFyeSI6ImZsYXRpY29uIn0sIl9pZCI6IjM5ZTE0YjgiLCJ0aXRsZSI6IkNvbm5lY3Qgd2l0aCB1cyIsImRlc2NyaXB0aW9uIjoiV2hhdCBzZXRzIHVzIGFwYXJ0IGZyb20gb3RoZXIgYWdlbmNpZXMgaXMgb3VyIGV4cGVydGlzZSBpbiBjcmVhdGluZyB0YWlsb3JlZCBzb2x1dGlvbnMuIiwiYnRuX2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9fSx7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi13YWxsZXQiLCJsaWJyYXJ5IjoiZmxhdGljb24ifSwiX2lkIjoiZjVlMTBlOCIsInRpdGxlIjoiUGF5bWVudCB1cyIsImRlc2NyaXB0aW9uIjoiV2UgZW5jb3VyYWdlIGV2ZXJ5IHRlYW0gbWVtYmVyIHRvIGJlIHRoZWlyIGJlc3Qgc2VsZiwgZm9zdGVyaW5nIGEgZmxleGlibGUgYW5kIGNvbGxhYm9yYXRpdmUgZW52aXJvbm1lbnQuIiwiYnRuX2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9fSx7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi10YXJnZXQiLCJsaWJyYXJ5IjoiZmxhdGljb24ifSwiX2lkIjoiODgzOTk2OSIsInRpdGxlIjoiR2V0IHlvdXIgZHJlYW0iLCJkZXNjcmlwdGlvbiI6IkF0IGl0cyBjb3JlLCBldmVyeSBidXNpbmVzcyBoYXMgdW5pcXVlIHNvbHV0aW9ucyB0aGF0IGluc3BpcmUgaW5ub3ZhdGlvbiBhbmQgcHJvZ3Jlc3MuIiwiYnRuX2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9fV0sInRpdGxlX2NvbG9yIjoiI2ZmZmZmZiIsImRlc2NyaXB0aW9uX2NvbG9yIjoiI0ZGRkZGRiIsImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X3Byb2Nlc3MifQ==\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-79ee8ab elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"79ee8ab\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4af1814\" data-id=\"4af1814\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n                <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-505fb45 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"505fb45\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-7223f1c\" data-id=\"7223f1c\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-e7c238e elementor-widget elementor-widget-google_maps\" data-id=\"e7c238e\" data-element_type=\"widget\" data-widget_type=\"google_maps.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-custom-embed\">nttt<iframe loading=\"lazy\"ntttttsrc=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"nttttttitle=\"10u00b057&#039;11.2&quot;N 106u00b045&#039;13.0&quot;E\"ntttttaria-label=\"10u00b057&#039;11.2&quot;N 106u00b045&#039;13.0&quot;E\"nttt></iframe>ntt</div>ntttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-0225539\" data-id=\"0225539\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjUxZDU0M2EiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkNvbnRhY3QgdXMgZm9yIGFueSBraW5kIG9mIGhlbHAgYXQgYW55IHRpbWUuLi4iLCJ0aXRsZV9jb2xvciI6IiM4NUIyM0IiLCJfcGFkZGluZyI6eyJ1bml0IjoiJSIsInRvcCI6IjAiLCJyaWdodCI6IjUiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV9zcGFjZV9ib3R0b20iOnsidW5pdCI6InB4Iiwic2l6ZSI6MzMsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjozMCwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzgsInNpemVzIjpbXX0sImN0X2FuaW1hdGUiOiJ3b3cgZmxpcEluWCIsIl9wYWRkaW5nX3RhYmxldCI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"][elementor-element data=\"eyJpZCI6ImVkMGRjMWIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjdGY3X2lkIjoiOTc0Iiwic3R5bGVfbDEiOiJzdHlsZTIifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY3RmNyJ9\"]            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                    </div>n        </section>n        \",\"scripts\":[],\"styles\":[]}}'),(10250,3157,'_elementor_edit_mode','builder'),(10251,3157,'_elementor_template_type','wp-page'),(10252,3157,'_elementor_version','3.24.7'),(10253,3157,'_wp_page_template','default'),(10254,3157,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=oVQ4_PIqgz8\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have started to open a store on Alibaba to connect with orders from around the world.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0e89391\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"en|language\"],\"ct_animate\":\"wow fadeInUp\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always provide a sense of security in terms of quality and progress.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#85B23B\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(10255,3157,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(10256,3157,'_elementor_css','a:6:{s:4:\"time\";i:1735095484;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:8:\"material\";i:1;s:8:\"flaticon\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(10257,3157,'_elementor_page_assets','a:2:{s:6:\"styles\";a:4:{i:0;s:18:\"widget-text-editor\";i:1;s:21:\"e-animation-slideInUp\";i:2;s:12:\"widget-image\";i:3;s:18:\"widget-google_maps\";}s:7:\"scripts\";a:9:{i:0;s:16:\"jquery-numerator\";i:1;s:20:\"ct-counter-widget-js\";i:2;s:11:\"progressbar\";i:3;s:16:\"waypoints-lib-js\";i:4;s:24:\"ct-progressbar-widget-js\";i:5;s:12:\"imagesloaded\";i:6;s:7:\"isotope\";i:7;s:25:\"ct-post-masonry-widget-js\";i:8;s:22:\"ct-post-grid-widget-js\";}}'),(10258,3157,'_elementor_element_cache','{\"timeout\":1742263432,\"value\":{\"content\":\"        <section class=\"elementor-section elementor-top-section elementor-element elementor-element-2d2b67a elementor-section-stretched elementor-section-full_width slider-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"2d2b67a\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-no \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-d1bb387\" data-id=\"d1bb387\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImNjODZmNGQiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJyZXZzbGlkZXJ0aXRsZSI6IkhvbWUgMSIsInNob3J0Y29kZSI6IltyZXZfc2xpZGVyIGFsaWFzPVwiaG9tZS0xXCJdW1wvcmV2X3NsaWRlcl0ifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoic2xpZGVyX3Jldm9sdXRpb24ifQ==\"]        <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-2cea906 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"2cea906\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-8e117d0\" data-id=\"8e117d0\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjI0YjYyY2MiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IldlIHByb3ZpZGUgYSB3aWRlIHJhbmdlIG9mIHByb2R1Y3RzIGZvciB0aGUgbWVjaGFuaWNhbCBpbmR1c3RyeSBhY3Jvc3MgVmlldG5hbSBhbmQgd29ybGR3aWRlLCBlc3BlY2lhbGx5IGluIGtleSBtYXJrZXRzIHN1Y2ggYXMgSmFwYW4sIFNvdXRoIEtvcmVhLCB0aGUgVW5pdGVkIFN0YXRlcywgYW5kIEF1c3RyYWxpYS4gV2UgYWxzbyBoYXZlIGV4cGVyaWVuY2UgaW4gZXhwb3J0aW5nIHRvIHRoZXNlIG1hcmtldHMuIiwidGl0bGVfY29sb3IiOiIjODVCMjNCIiwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzYsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHQiOnsidW5pdCI6InB4Iiwic2l6ZSI6NDgsInNpemVzIjpbXX0sInN0eWxlIjoic3QtbGluZS1sZWZ0IiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMTYiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjoyNiwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzQsInNpemVzIjpbXX0sImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluVXAifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-909b449 wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"909b449\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>tttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImM0YTIwMjgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJpbWFnZSI6eyJ1cmwiOiIiLCJpZCI6IiJ9LCJ2aWRlb19saW5rIjoiaHR0cHM6XC9cL3d3dy55b3V0dWJlLmNvbVwvd2F0Y2g/dj1vVlE0X1BJcWd6OCIsImJ0bl92aWRlb19zdHlsZSI6InN0eWxlMyIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMzEiLCJyaWdodCI6IjM4IiwiYm90dG9tIjoiMCIsImxlZnQiOiI3OCIsImlzTGlua2VkIjpmYWxzZX0sIl9jc3NfY2xhc3NlcyI6ImVsLWlubGluZSB3b3cgZmFkZUluUmlnaHQiLCJfbWFyZ2luX3RhYmxldCI6eyJ1bml0IjoicHgiLCJ0b3AiOiIzMSIsInJpZ2h0IjoiMjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjY4IiwiaXNMaW5rZWQiOmZhbHNlfSwiX2FuaW1hdGlvbiI6InNsaWRlSW5VcCIsIl9tYXJnaW5fbW9iaWxlIjp7InVuaXQiOiJweCIsInRvcCI6IjMxIiwicmlnaHQiOiIyMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF92aWRlb19wbGF5ZXIifQ==\"]tt<div class=\"elementor-element elementor-element-1fd7931 el-inline wow fadeInRight elementor-invisible elementor-widget elementor-widget-image\" data-id=\"1fd7931\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;slideInUp&quot;}\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" class=\"attachment-full size-full wp-image-2542\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-4fff345\" data-id=\"4fff345\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjU5MGYxYmUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjo1MCwic3VmZml4IjoiKyIsInRob3VzYW5kX3NlcGFyYXRvciI6IiIsInRob3VzYW5kX3NlcGFyYXRvcl9jaGFyIjoiICIsInRpdGxlIjoiQ3VzdG9tZXIiLCJzaG93X2ljb24iOiJ0cnVlIiwiY291bnRlcl9pY29uIjp7InZhbHVlIjoibWF0ZXJpYWwgem1kaSB6bWRpLWFzc2lnbm1lbnQtY2hlY2siLCJsaWJyYXJ5IjoibWF0ZXJpYWwifSwibnVtYmVyX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjQxIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJfY3NzX2NsYXNzZXMiOiJ0ZXh0LWNlbnRlci1zbSIsImljb25fdHlwZSI6ImltYWdlIiwiaWNvbl9pbWFnZSI6eyJ1cmwiOiJodHRwOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAxOVwvMTJcL2NvdW50ZXItaWNvbi0wMS5wbmciLCJpZCI6MTUxNX0sIl9hbmltYXRpb24iOiJub25lIiwiY3RfYW5pbWF0ZSI6IndvdyBmYWRlSW5VcCJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9jb3VudGVyIn0=\"][elementor-element data=\"eyJpZCI6IjdhNWYyMzkiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjoyMDAsInN1ZmZpeCI6IisiLCJ0aG91c2FuZF9zZXBhcmF0b3IiOiIiLCJ0aG91c2FuZF9zZXBhcmF0b3JfY2hhciI6IiAiLCJ0aXRsZSI6IlBlcnNvbm5lbCIsInNob3dfaWNvbiI6InRydWUiLCJjb3VudGVyX2ljb24iOnsidmFsdWUiOiJtYXRlcmlhbCB6bWRpIHptZGktYXNzaWdubWVudC1jaGVjayIsImxpYnJhcnkiOiJtYXRlcmlhbCJ9LCJudW1iZXJfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiNDEiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sIl9jc3NfY2xhc3NlcyI6InRleHQtY2VudGVyLXNtIiwiaWNvbl90eXBlIjoiaW1hZ2UiLCJpY29uX2ltYWdlIjp7InVybCI6Imh0dHA6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDE5XC8xMlwvY291bnRlci1pY29uLTAyLnBuZyIsImlkIjoxNTE2fSwiX2FuaW1hdGlvbiI6Im5vbmUiLCJjdF9hbmltYXRlIjoid293IGZhZGVJblVwIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2NvdW50ZXIifQ==\"][elementor-element data=\"eyJpZCI6IjA0NTMxYzgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjoyMDAwLCJzdWZmaXgiOiIrIiwidGhvdXNhbmRfc2VwYXJhdG9yIjoiIiwidGhvdXNhbmRfc2VwYXJhdG9yX2NoYXIiOiIgIiwidGl0bGUiOiJPZGVycyBwZXIgeWVhciIsInNob3dfaWNvbiI6InRydWUiLCJjb3VudGVyX2ljb24iOnsidmFsdWUiOiJtYXRlcmlhbCB6bWRpIHptZGktYXNzaWdubWVudC1jaGVjayIsImxpYnJhcnkiOiJtYXRlcmlhbCJ9LCJudW1iZXJfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiNDEiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sIl9jc3NfY2xhc3NlcyI6InRleHQtY2VudGVyLXNtIiwiaWNvbl90eXBlIjoiaW1hZ2UiLCJpY29uX2ltYWdlIjp7InVybCI6Imh0dHA6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDE5XC8xMlwvY291bnRlci1pY29uLTAzLnBuZyIsImlkIjoxNTE3fSwiX2FuaW1hdGlvbiI6Im5vbmUiLCJjdF9hbmltYXRlIjoid293IGZhZGVJblVwIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2NvdW50ZXIifQ==\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-348ba48\" data-id=\"348ba48\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-ed7e1d0 wow fadeInUp elementor-widget elementor-widget-image\" data-id=\"ed7e1d0\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" class=\"attachment-full size-full wp-image-2571\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntttt<div class=\"elementor-element elementor-element-3b54db6 wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"3b54db6\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-8b70e78 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"8b70e78\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-c2b95bd\" data-id=\"c2b95bd\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-b5a8ba3 elementor-widget elementor-widget-image\" data-id=\"b5a8ba3\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" class=\"attachment-full size-full wp-image-2268\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntttt<div class=\"elementor-element elementor-element-0e89391 elementor-widget elementor-widget-image\" data-id=\"0e89391\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" class=\"attachment-full size-full wp-image-2559\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-de7136f\" data-id=\"de7136f\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6Ijg0MDdhYmUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IldlIHN0cml2ZSB0byBiZWNvbWUgb25lIG9mIFZpZXRuYW0ncyBsZWFkaW5nIG1lY2hhbmljYWwgcHJvY2Vzc2luZyBjb21wYW5pZXMsIHN1cHBseWluZyB0aGUgaW50ZXJuYXRpb25hbCBtYXJrZXQgYnkgMjAzMC4gSW4gdGhlIGZ1dHVyZSwgd2UgYWltIHRvIHByb2R1Y2UgYSBjb21wbGV0ZSBtYWNoaW5lcnkgcHJvZHVjdCB0byBkZWxpdmVyIGRpcmVjdGx5IHRvIGVuZC11c2Vycy4iLCJ0aXRsZV9jb2xvciI6IiM4NUIyM0IiLCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZSI6eyJ1bml0IjoicHgiLCJzaXplIjozNiwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodCI6eyJ1bml0IjoicHgiLCJzaXplIjo0OCwic2l6ZXMiOltdfSwic3R5bGUiOiJzdC1saW5lLWxlZnQiLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6Ii05IiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwidGl0bGVfc3BhY2VfYm90dG9tIjp7InVuaXQiOiJweCIsInNpemUiOjE3LCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzAsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjM4LCJzaXplcyI6W119LCJjdF9hbmltYXRlIjoid293IGZsaXBJblgiLCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV9tb2JpbGUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MjgsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfbW9iaWxlIjp7InVuaXQiOiJweCIsInNpemUiOjM0LCJzaXplcyI6W119fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-0c8497c wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"0c8497c\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Goals to achieve by 2026:</p>tttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6IjQ3NTRlZDYiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJwcm9ncmVzc2Jhcl9saXN0IjpbeyJ0aXRsZSI6IkVhc3QgQXNpYSAoSmFwYW4sIFNvdXRoIEtvcmVhLCBldGMuKTogRXhwb3J0IG9mIHJlcGxhY2VtZW50IG1hY2hpbmVyeSBjb21wb25lbnRzLCBtb3RvcmN5Y2xlIGFuZCBjYXIgYWNjZXNzb3JpZXMsIHdhdGVyIGluZHVzdHJ5IGZpdHRpbmdzLCBtb2xkcywgYW5kIG90aGVyIG1lY2hhbmljYWwgcGFydHMuIiwicHJvZ3Jlc3NfdHlwZSI6IiIsInBlcmNlbnQiOnsidW5pdCI6IiUiLCJzaXplIjozMCwic2l6ZXMiOltdfSwiZGlzcGxheV9wZXJjZW50YWdlIjoiaGlkZSIsImlubmVyX3RleHQiOiJXZWIgRGVzaWduZXIiLCJfaWQiOiI4YjRiY2Q2In0seyJ0aXRsZSI6IkV1cm9wZSAoR2VybWFueSwgQnVsZ2FyaWEsIHRoZSBOZXRoZXJsYW5kcywgZXRjLik6IFByb2R1Y3Rpb24gamlncyBmb3IgYXV0b21vdGl2ZSBiZWFyaW5ncywgYW5kIGVsZWN0cmljYWwgYm94IGNvbXBvbmVudHMgZm9yIGF1dG9tYXRpb24gbWFjaGluZXJ5LiIsInByb2dyZXNzX3R5cGUiOiIiLCJwZXJjZW50Ijp7InVuaXQiOiIlIiwic2l6ZSI6MTAsInNpemVzIjpbXX0sImRpc3BsYXlfcGVyY2VudGFnZSI6ImhpZGUiLCJpbm5lcl90ZXh0IjoiV2ViIERlc2lnbmVyIiwiX2lkIjoiNmUwZjg3NyJ9LHsidGl0bGUiOiJVbml0ZWQgU3RhdGVzOiBQcm9kdWN0cyByZWxhdGVkIHRvIG1lZGljYWwgaW5zdHJ1bWVudHMsIG9wdGljcywgYW5kIGF1ZGlvIGVxdWlwbWVudC4iLCJwcm9ncmVzc190eXBlIjoiIiwicGVyY2VudCI6eyJ1bml0IjoiJSIsInNpemUiOjMwLCJzaXplcyI6W119LCJkaXNwbGF5X3BlcmNlbnRhZ2UiOiJzaG93IiwiX2lkIjoiMjIyZWI4MSJ9LHsiX2lkIjoiNWVlY2NiNiIsInRpdGxlIjoiQXVzdHJhbGlhOiBTaGVldCBtZXRhbCBwcm9kdWN0cy4iLCJwZXJjZW50Ijp7InVuaXQiOiIlIiwic2l6ZSI6OCwic2l6ZXMiOltdfX0seyJfaWQiOiIxMGU1NzUwIiwidGl0bGUiOiJWaWV0bmFtOiBTbWFsbCBhdXRvbWF0aW9uIG1hY2hpbmVzOyBtb3RvcmN5Y2xlIGFuZCBjYXIgYm9sdHM7IHByb2R1Y3RzIGluIHRoZSBvaWwgYW5kIGdhcyBpbmR1c3RyeS4iLCJwZXJjZW50Ijp7InVuaXQiOiIlIiwic2l6ZSI6MjAsInNpemVzIjpbXX19LHsiX2lkIjoiZTE3YTE5NSIsInRpdGxlIjoiT3RoZXIgbWFya2V0cyBhbmQgcHJvZHVjdHMuIiwicGVyY2VudCI6eyJ1bml0IjoiJSIsInNpemUiOjIsInNpemVzIjpbXX19XSwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiI3OCIsImlzTGlua2VkIjpmYWxzZX0sIl9tYXJnaW5fbW9iaWxlIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6dHJ1ZX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9wcm9ncmVzc2JhciJ9\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-b6145ce elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"b6145ce\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-e65d58b\" data-id=\"e65d58b\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjljZDU1ZGQiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IldlIG9mZmVyIHNlcnZpY2VzIGFjcm9zcyBtdWx0aXBsZSBzZWN0b3JzIiwidGl0bGVfY29sb3IiOiIjODVCMjNCIiwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzYsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHQiOnsidW5pdCI6InB4Iiwic2l6ZSI6NDgsInNpemVzIjpbXX0sInN0eWxlIjoic3QtbGluZS1sZWZ0IiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOnRydWV9LCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzAsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjM4LCJzaXplcyI6W119LCJjdF9hbmltYXRlIjoid293IGZhZGVJbkxlZnQiLCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV9tb2JpbGUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MjgsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfbW9iaWxlIjp7InVuaXQiOiJweCIsInNpemUiOjM0LCJzaXplcyI6W119fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-2067062\" data-id=\"2067062\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-956a238 wow fadeInRight elementor-widget elementor-widget-text-editor\" data-id=\"956a238\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>We always meet our customers&#8217; design requirements. Appearance and dimensions are what we consider most important.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-74328b6b elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"74328b6b\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4b9c9796\" data-id=\"4b9c9796\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjFjYTNiNmM1IiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsibGF5b3V0IjoiNCIsImxpbWl0Ijo0LCJmaWx0ZXJfZGVmYXVsdF90aXRsZSI6IkFsbCIsImNvbF9zbSI6IjEiLCJjb2xfbWQiOiIyIiwiY29sX2xnIjoiMiIsImNvbF94bCI6IjIiLCJidXR0b25fdGV4dCI6IlJlYWQgbW9yZSIsInNvdXJjZSI6WyJlbnxsYW5ndWFnZSJdLCJjdF9hbmltYXRlIjoid293IGZhZGVJblVwIiwib3JkZXIiOiJhc2MifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3Rfc2VydmljZV9ncmlkIn0=\"][elementor-element data=\"eyJpZCI6IjI5NzFiOGIzIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGV4dCI6Ik1vcmUgc2VydmljZXMiLCJsaW5rIjp7InVybCI6Ilwvc2VydmljZXMiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn0sImFsaWduIjoiY2VudGVyIiwiYnRuX2ljb24iOnsidmFsdWUiOiJtYXRlcmlhbCB6bWRpIHptZGktc2V0dGluZ3MiLCJsaWJyYXJ5IjoibWF0ZXJpYWwifSwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiItMTAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJzdHlsZSI6ImJ0bi1wcmVzZXQzIiwiX2FuaW1hdGlvbiI6Im5vbmUifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfYnV0dG9uIn0=\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-f43d465 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"f43d465\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-5310bd3\" data-id=\"5310bd3\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImJjZmM3MzUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjdGY3X2lkIjoiOTMyIiwibGF5b3V0IjoiMiIsImN0ZjdfdGl0bGUiOiJIYXZlIGFueSBxdWVzdGlvbnM/IiwiY3RmN19kZXNjcmlwdGlvbiI6IkNhbGw6IDgwMCAyNTAgMzY5IiwiY3RmN19waG9uZSI6IjxzcGFuPkNhbGw6PFwvc3Bhbj4gMDk2ODg2MDM4NiIsImVsX3RpdGxlIjoiQ29udGFjdCBmb3IgZ2V0dGluZyBxdW90ZToiLCJjdF9hbmltYXRlIjoid293IGZsaXBJblgifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY3RmNyJ9\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-a9b49c5 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"a9b49c5\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n                            <div class=\"elementor-background-overlay\"></div>n                n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-1dcb85a\" data-id=\"1dcb85a\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n                <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-6c560a6 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"6c560a6\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-e82cd67\" data-id=\"e82cd67\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImVmNDE1MTEiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IldlIGhhdmUgc29tZSBlYXN5IHdvcmtpbmcgcHJvY2VkdXJlIiwidGl0bGVfY29sb3IiOiIjZmZmZmZmIiwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzYsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHQiOnsidW5pdCI6InB4Iiwic2l6ZSI6NDgsInNpemVzIjpbXX0sInN0eWxlIjoic3QtbGluZS1sZWZ0IiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOnRydWV9LCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzAsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjM4LCJzaXplcyI6W119LCJjdF9hbmltYXRlIjoid293IGZhZGVJbkxlZnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-3a08737\" data-id=\"3a08737\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-7aa11c2 wow fadeInRight elementor-widget elementor-widget-text-editor\" data-id=\"7aa11c2\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>We always provide a sense of security in terms of quality and progress.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n        [elementor-element data=\"eyJpZCI6IjlkNWVhMzIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X2xpc3QiOlt7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi1yZXNlYXJjaCIsImxpYnJhcnkiOiJmbGF0aWNvbiJ9LCJfaWQiOiIwNTVmZWYyIiwidGl0bGUiOiJGaW5kIHVzIiwiZGVzY3JpcHRpb24iOiJXZSB1bmRlcnN0YW5kIHRoZSBpbXBvcnRhbmNlIG9mIGhhbmRsaW5nIGVhY2ggcHJvamVjdCB3aXRoIGEgaG9saXN0aWMgYXBwcm9hY2guIiwiYnRuX2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9fSx7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi1uZXR3b3JrIiwibGlicmFyeSI6ImZsYXRpY29uIn0sIl9pZCI6IjM5ZTE0YjgiLCJ0aXRsZSI6IkNvbm5lY3Qgd2l0aCB1cyIsImRlc2NyaXB0aW9uIjoiV2hhdCBzZXRzIHVzIGFwYXJ0IGZyb20gb3RoZXIgYWdlbmNpZXMgaXMgb3VyIGV4cGVydGlzZSBpbiBjcmVhdGluZyB0YWlsb3JlZCBzb2x1dGlvbnMuIiwiYnRuX2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9fSx7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi13YWxsZXQiLCJsaWJyYXJ5IjoiZmxhdGljb24ifSwiX2lkIjoiZjVlMTBlOCIsInRpdGxlIjoiUGF5bWVudCB1cyIsImRlc2NyaXB0aW9uIjoiV2UgZW5jb3VyYWdlIGV2ZXJ5IHRlYW0gbWVtYmVyIHRvIGJlIHRoZWlyIGJlc3Qgc2VsZiwgZm9zdGVyaW5nIGEgZmxleGlibGUgYW5kIGNvbGxhYm9yYXRpdmUgZW52aXJvbm1lbnQuIiwiYnRuX2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9fSx7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi10YXJnZXQiLCJsaWJyYXJ5IjoiZmxhdGljb24ifSwiX2lkIjoiODgzOTk2OSIsInRpdGxlIjoiR2V0IHlvdXIgZHJlYW0iLCJkZXNjcmlwdGlvbiI6IkF0IGl0cyBjb3JlLCBldmVyeSBidXNpbmVzcyBoYXMgdW5pcXVlIHNvbHV0aW9ucyB0aGF0IGluc3BpcmUgaW5ub3ZhdGlvbiBhbmQgcHJvZ3Jlc3MuIiwiYnRuX2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9fV0sInRpdGxlX2NvbG9yIjoiI2ZmZmZmZiIsImRlc2NyaXB0aW9uX2NvbG9yIjoiI0ZGRkZGRiIsImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X3Byb2Nlc3MifQ==\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-79ee8ab elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"79ee8ab\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4af1814\" data-id=\"4af1814\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n                <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-505fb45 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"505fb45\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-7223f1c\" data-id=\"7223f1c\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-e7c238e elementor-widget elementor-widget-google_maps\" data-id=\"e7c238e\" data-element_type=\"widget\" data-widget_type=\"google_maps.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-custom-embed\">nttt<iframe loading=\"lazy\"ntttttsrc=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"nttttttitle=\"10u00b057&#039;11.2&quot;N 106u00b045&#039;13.0&quot;E\"ntttttaria-label=\"10u00b057&#039;11.2&quot;N 106u00b045&#039;13.0&quot;E\"nttt></iframe>ntt</div>ntttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-0225539\" data-id=\"0225539\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjUxZDU0M2EiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkNvbnRhY3QgdXMgZm9yIGFueSBraW5kIG9mIGhlbHAgYXQgYW55IHRpbWUuLi4iLCJ0aXRsZV9jb2xvciI6IiM4NUIyM0IiLCJfcGFkZGluZyI6eyJ1bml0IjoiJSIsInRvcCI6IjAiLCJyaWdodCI6IjUiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV9zcGFjZV9ib3R0b20iOnsidW5pdCI6InB4Iiwic2l6ZSI6MzMsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjozMCwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzgsInNpemVzIjpbXX0sImN0X2FuaW1hdGUiOiJ3b3cgZmxpcEluWCIsIl9wYWRkaW5nX3RhYmxldCI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"][elementor-element data=\"eyJpZCI6ImVkMGRjMWIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjdGY3X2lkIjoiOTc0Iiwic3R5bGVfbDEiOiJzdHlsZTIifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY3RmNyJ9\"]            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                    </div>n        </section>n        \",\"scripts\":[],\"styles\":[]}}'),(10259,3158,'_elementor_edit_mode','builder'),(10260,3158,'_elementor_template_type','wp-page'),(10261,3158,'_elementor_version','3.24.7'),(10262,3158,'_wp_page_template','default'),(10263,3158,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/youtu.be\\/vUCVqLmXSPM?si=NDYrSC8zPIUGPj3lhttps:\\/\\/youtu.be\\/vUCVqLmXSPM?si=NDYrSC8zPIUGPj3l\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have started to open a store on Alibaba to connect with orders from around the world.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0e89391\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"en|language\"],\"ct_animate\":\"wow fadeInUp\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always provide a sense of security in terms of quality and progress.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#85B23B\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(10264,3158,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(10265,3158,'_elementor_css','a:6:{s:4:\"time\";i:1735095484;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:8:\"material\";i:1;s:8:\"flaticon\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(10266,3158,'_elementor_page_assets','a:2:{s:6:\"styles\";a:4:{i:0;s:18:\"widget-text-editor\";i:1;s:21:\"e-animation-slideInUp\";i:2;s:12:\"widget-image\";i:3;s:18:\"widget-google_maps\";}s:7:\"scripts\";a:9:{i:0;s:16:\"jquery-numerator\";i:1;s:20:\"ct-counter-widget-js\";i:2;s:11:\"progressbar\";i:3;s:16:\"waypoints-lib-js\";i:4;s:24:\"ct-progressbar-widget-js\";i:5;s:12:\"imagesloaded\";i:6;s:7:\"isotope\";i:7;s:25:\"ct-post-masonry-widget-js\";i:8;s:22:\"ct-post-grid-widget-js\";}}'),(10267,3158,'_elementor_element_cache','{\"timeout\":1742263432,\"value\":{\"content\":\"        <section class=\"elementor-section elementor-top-section elementor-element elementor-element-2d2b67a elementor-section-stretched elementor-section-full_width slider-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"2d2b67a\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-no \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-d1bb387\" data-id=\"d1bb387\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImNjODZmNGQiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJyZXZzbGlkZXJ0aXRsZSI6IkhvbWUgMSIsInNob3J0Y29kZSI6IltyZXZfc2xpZGVyIGFsaWFzPVwiaG9tZS0xXCJdW1wvcmV2X3NsaWRlcl0ifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoic2xpZGVyX3Jldm9sdXRpb24ifQ==\"]        <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-2cea906 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"2cea906\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-8e117d0\" data-id=\"8e117d0\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjI0YjYyY2MiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IldlIHByb3ZpZGUgYSB3aWRlIHJhbmdlIG9mIHByb2R1Y3RzIGZvciB0aGUgbWVjaGFuaWNhbCBpbmR1c3RyeSBhY3Jvc3MgVmlldG5hbSBhbmQgd29ybGR3aWRlLCBlc3BlY2lhbGx5IGluIGtleSBtYXJrZXRzIHN1Y2ggYXMgSmFwYW4sIFNvdXRoIEtvcmVhLCB0aGUgVW5pdGVkIFN0YXRlcywgYW5kIEF1c3RyYWxpYS4gV2UgYWxzbyBoYXZlIGV4cGVyaWVuY2UgaW4gZXhwb3J0aW5nIHRvIHRoZXNlIG1hcmtldHMuIiwidGl0bGVfY29sb3IiOiIjODVCMjNCIiwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzYsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHQiOnsidW5pdCI6InB4Iiwic2l6ZSI6NDgsInNpemVzIjpbXX0sInN0eWxlIjoic3QtbGluZS1sZWZ0IiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMTYiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjoyNiwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzQsInNpemVzIjpbXX0sImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluVXAifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-909b449 wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"909b449\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>tttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImM0YTIwMjgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJpbWFnZSI6eyJ1cmwiOiIiLCJpZCI6IiJ9LCJ2aWRlb19saW5rIjoiaHR0cHM6XC9cL3d3dy55b3V0dWJlLmNvbVwvd2F0Y2g/dj1vVlE0X1BJcWd6OCIsImJ0bl92aWRlb19zdHlsZSI6InN0eWxlMyIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMzEiLCJyaWdodCI6IjM4IiwiYm90dG9tIjoiMCIsImxlZnQiOiI3OCIsImlzTGlua2VkIjpmYWxzZX0sIl9jc3NfY2xhc3NlcyI6ImVsLWlubGluZSB3b3cgZmFkZUluUmlnaHQiLCJfbWFyZ2luX3RhYmxldCI6eyJ1bml0IjoicHgiLCJ0b3AiOiIzMSIsInJpZ2h0IjoiMjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjY4IiwiaXNMaW5rZWQiOmZhbHNlfSwiX2FuaW1hdGlvbiI6InNsaWRlSW5VcCIsIl9tYXJnaW5fbW9iaWxlIjp7InVuaXQiOiJweCIsInRvcCI6IjMxIiwicmlnaHQiOiIyMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF92aWRlb19wbGF5ZXIifQ==\"]tt<div class=\"elementor-element elementor-element-1fd7931 el-inline wow fadeInRight elementor-invisible elementor-widget elementor-widget-image\" data-id=\"1fd7931\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;slideInUp&quot;}\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" class=\"attachment-full size-full wp-image-2542\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-4fff345\" data-id=\"4fff345\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjU5MGYxYmUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjo1MCwic3VmZml4IjoiKyIsInRob3VzYW5kX3NlcGFyYXRvciI6IiIsInRob3VzYW5kX3NlcGFyYXRvcl9jaGFyIjoiICIsInRpdGxlIjoiQ3VzdG9tZXIiLCJzaG93X2ljb24iOiJ0cnVlIiwiY291bnRlcl9pY29uIjp7InZhbHVlIjoibWF0ZXJpYWwgem1kaSB6bWRpLWFzc2lnbm1lbnQtY2hlY2siLCJsaWJyYXJ5IjoibWF0ZXJpYWwifSwibnVtYmVyX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjQxIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJfY3NzX2NsYXNzZXMiOiJ0ZXh0LWNlbnRlci1zbSIsImljb25fdHlwZSI6ImltYWdlIiwiaWNvbl9pbWFnZSI6eyJ1cmwiOiJodHRwOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAxOVwvMTJcL2NvdW50ZXItaWNvbi0wMS5wbmciLCJpZCI6MTUxNX0sIl9hbmltYXRpb24iOiJub25lIiwiY3RfYW5pbWF0ZSI6IndvdyBmYWRlSW5VcCJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9jb3VudGVyIn0=\"][elementor-element data=\"eyJpZCI6IjdhNWYyMzkiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjoyMDAsInN1ZmZpeCI6IisiLCJ0aG91c2FuZF9zZXBhcmF0b3IiOiIiLCJ0aG91c2FuZF9zZXBhcmF0b3JfY2hhciI6IiAiLCJ0aXRsZSI6IlBlcnNvbm5lbCIsInNob3dfaWNvbiI6InRydWUiLCJjb3VudGVyX2ljb24iOnsidmFsdWUiOiJtYXRlcmlhbCB6bWRpIHptZGktYXNzaWdubWVudC1jaGVjayIsImxpYnJhcnkiOiJtYXRlcmlhbCJ9LCJudW1iZXJfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiNDEiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sIl9jc3NfY2xhc3NlcyI6InRleHQtY2VudGVyLXNtIiwiaWNvbl90eXBlIjoiaW1hZ2UiLCJpY29uX2ltYWdlIjp7InVybCI6Imh0dHA6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDE5XC8xMlwvY291bnRlci1pY29uLTAyLnBuZyIsImlkIjoxNTE2fSwiX2FuaW1hdGlvbiI6Im5vbmUiLCJjdF9hbmltYXRlIjoid293IGZhZGVJblVwIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2NvdW50ZXIifQ==\"][elementor-element data=\"eyJpZCI6IjA0NTMxYzgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjoyMDAwLCJzdWZmaXgiOiIrIiwidGhvdXNhbmRfc2VwYXJhdG9yIjoiIiwidGhvdXNhbmRfc2VwYXJhdG9yX2NoYXIiOiIgIiwidGl0bGUiOiJPZGVycyBwZXIgeWVhciIsInNob3dfaWNvbiI6InRydWUiLCJjb3VudGVyX2ljb24iOnsidmFsdWUiOiJtYXRlcmlhbCB6bWRpIHptZGktYXNzaWdubWVudC1jaGVjayIsImxpYnJhcnkiOiJtYXRlcmlhbCJ9LCJudW1iZXJfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiNDEiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sIl9jc3NfY2xhc3NlcyI6InRleHQtY2VudGVyLXNtIiwiaWNvbl90eXBlIjoiaW1hZ2UiLCJpY29uX2ltYWdlIjp7InVybCI6Imh0dHA6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDE5XC8xMlwvY291bnRlci1pY29uLTAzLnBuZyIsImlkIjoxNTE3fSwiX2FuaW1hdGlvbiI6Im5vbmUiLCJjdF9hbmltYXRlIjoid293IGZhZGVJblVwIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2NvdW50ZXIifQ==\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-348ba48\" data-id=\"348ba48\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-ed7e1d0 wow fadeInUp elementor-widget elementor-widget-image\" data-id=\"ed7e1d0\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" class=\"attachment-full size-full wp-image-2571\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntttt<div class=\"elementor-element elementor-element-3b54db6 wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"3b54db6\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-8b70e78 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"8b70e78\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-c2b95bd\" data-id=\"c2b95bd\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-b5a8ba3 elementor-widget elementor-widget-image\" data-id=\"b5a8ba3\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" class=\"attachment-full size-full wp-image-2268\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntttt<div class=\"elementor-element elementor-element-0e89391 elementor-widget elementor-widget-image\" data-id=\"0e89391\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" class=\"attachment-full size-full wp-image-2559\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-de7136f\" data-id=\"de7136f\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6Ijg0MDdhYmUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IldlIHN0cml2ZSB0byBiZWNvbWUgb25lIG9mIFZpZXRuYW0ncyBsZWFkaW5nIG1lY2hhbmljYWwgcHJvY2Vzc2luZyBjb21wYW5pZXMsIHN1cHBseWluZyB0aGUgaW50ZXJuYXRpb25hbCBtYXJrZXQgYnkgMjAzMC4gSW4gdGhlIGZ1dHVyZSwgd2UgYWltIHRvIHByb2R1Y2UgYSBjb21wbGV0ZSBtYWNoaW5lcnkgcHJvZHVjdCB0byBkZWxpdmVyIGRpcmVjdGx5IHRvIGVuZC11c2Vycy4iLCJ0aXRsZV9jb2xvciI6IiM4NUIyM0IiLCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZSI6eyJ1bml0IjoicHgiLCJzaXplIjozNiwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodCI6eyJ1bml0IjoicHgiLCJzaXplIjo0OCwic2l6ZXMiOltdfSwic3R5bGUiOiJzdC1saW5lLWxlZnQiLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6Ii05IiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwidGl0bGVfc3BhY2VfYm90dG9tIjp7InVuaXQiOiJweCIsInNpemUiOjE3LCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzAsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjM4LCJzaXplcyI6W119LCJjdF9hbmltYXRlIjoid293IGZsaXBJblgiLCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV9tb2JpbGUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MjgsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfbW9iaWxlIjp7InVuaXQiOiJweCIsInNpemUiOjM0LCJzaXplcyI6W119fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-0c8497c wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"0c8497c\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Goals to achieve by 2026:</p>tttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6IjQ3NTRlZDYiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJwcm9ncmVzc2Jhcl9saXN0IjpbeyJ0aXRsZSI6IkVhc3QgQXNpYSAoSmFwYW4sIFNvdXRoIEtvcmVhLCBldGMuKTogRXhwb3J0IG9mIHJlcGxhY2VtZW50IG1hY2hpbmVyeSBjb21wb25lbnRzLCBtb3RvcmN5Y2xlIGFuZCBjYXIgYWNjZXNzb3JpZXMsIHdhdGVyIGluZHVzdHJ5IGZpdHRpbmdzLCBtb2xkcywgYW5kIG90aGVyIG1lY2hhbmljYWwgcGFydHMuIiwicHJvZ3Jlc3NfdHlwZSI6IiIsInBlcmNlbnQiOnsidW5pdCI6IiUiLCJzaXplIjozMCwic2l6ZXMiOltdfSwiZGlzcGxheV9wZXJjZW50YWdlIjoiaGlkZSIsImlubmVyX3RleHQiOiJXZWIgRGVzaWduZXIiLCJfaWQiOiI4YjRiY2Q2In0seyJ0aXRsZSI6IkV1cm9wZSAoR2VybWFueSwgQnVsZ2FyaWEsIHRoZSBOZXRoZXJsYW5kcywgZXRjLik6IFByb2R1Y3Rpb24gamlncyBmb3IgYXV0b21vdGl2ZSBiZWFyaW5ncywgYW5kIGVsZWN0cmljYWwgYm94IGNvbXBvbmVudHMgZm9yIGF1dG9tYXRpb24gbWFjaGluZXJ5LiIsInByb2dyZXNzX3R5cGUiOiIiLCJwZXJjZW50Ijp7InVuaXQiOiIlIiwic2l6ZSI6MTAsInNpemVzIjpbXX0sImRpc3BsYXlfcGVyY2VudGFnZSI6ImhpZGUiLCJpbm5lcl90ZXh0IjoiV2ViIERlc2lnbmVyIiwiX2lkIjoiNmUwZjg3NyJ9LHsidGl0bGUiOiJVbml0ZWQgU3RhdGVzOiBQcm9kdWN0cyByZWxhdGVkIHRvIG1lZGljYWwgaW5zdHJ1bWVudHMsIG9wdGljcywgYW5kIGF1ZGlvIGVxdWlwbWVudC4iLCJwcm9ncmVzc190eXBlIjoiIiwicGVyY2VudCI6eyJ1bml0IjoiJSIsInNpemUiOjMwLCJzaXplcyI6W119LCJkaXNwbGF5X3BlcmNlbnRhZ2UiOiJzaG93IiwiX2lkIjoiMjIyZWI4MSJ9LHsiX2lkIjoiNWVlY2NiNiIsInRpdGxlIjoiQXVzdHJhbGlhOiBTaGVldCBtZXRhbCBwcm9kdWN0cy4iLCJwZXJjZW50Ijp7InVuaXQiOiIlIiwic2l6ZSI6OCwic2l6ZXMiOltdfX0seyJfaWQiOiIxMGU1NzUwIiwidGl0bGUiOiJWaWV0bmFtOiBTbWFsbCBhdXRvbWF0aW9uIG1hY2hpbmVzOyBtb3RvcmN5Y2xlIGFuZCBjYXIgYm9sdHM7IHByb2R1Y3RzIGluIHRoZSBvaWwgYW5kIGdhcyBpbmR1c3RyeS4iLCJwZXJjZW50Ijp7InVuaXQiOiIlIiwic2l6ZSI6MjAsInNpemVzIjpbXX19LHsiX2lkIjoiZTE3YTE5NSIsInRpdGxlIjoiT3RoZXIgbWFya2V0cyBhbmQgcHJvZHVjdHMuIiwicGVyY2VudCI6eyJ1bml0IjoiJSIsInNpemUiOjIsInNpemVzIjpbXX19XSwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiI3OCIsImlzTGlua2VkIjpmYWxzZX0sIl9tYXJnaW5fbW9iaWxlIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6dHJ1ZX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9wcm9ncmVzc2JhciJ9\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-b6145ce elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"b6145ce\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-e65d58b\" data-id=\"e65d58b\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjljZDU1ZGQiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IldlIG9mZmVyIHNlcnZpY2VzIGFjcm9zcyBtdWx0aXBsZSBzZWN0b3JzIiwidGl0bGVfY29sb3IiOiIjODVCMjNCIiwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzYsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHQiOnsidW5pdCI6InB4Iiwic2l6ZSI6NDgsInNpemVzIjpbXX0sInN0eWxlIjoic3QtbGluZS1sZWZ0IiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOnRydWV9LCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzAsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjM4LCJzaXplcyI6W119LCJjdF9hbmltYXRlIjoid293IGZhZGVJbkxlZnQiLCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV9tb2JpbGUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MjgsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfbW9iaWxlIjp7InVuaXQiOiJweCIsInNpemUiOjM0LCJzaXplcyI6W119fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-2067062\" data-id=\"2067062\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-956a238 wow fadeInRight elementor-widget elementor-widget-text-editor\" data-id=\"956a238\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>We always meet our customers&#8217; design requirements. Appearance and dimensions are what we consider most important.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-74328b6b elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"74328b6b\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4b9c9796\" data-id=\"4b9c9796\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjFjYTNiNmM1IiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsibGF5b3V0IjoiNCIsImxpbWl0Ijo0LCJmaWx0ZXJfZGVmYXVsdF90aXRsZSI6IkFsbCIsImNvbF9zbSI6IjEiLCJjb2xfbWQiOiIyIiwiY29sX2xnIjoiMiIsImNvbF94bCI6IjIiLCJidXR0b25fdGV4dCI6IlJlYWQgbW9yZSIsInNvdXJjZSI6WyJlbnxsYW5ndWFnZSJdLCJjdF9hbmltYXRlIjoid293IGZhZGVJblVwIiwib3JkZXIiOiJhc2MifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3Rfc2VydmljZV9ncmlkIn0=\"][elementor-element data=\"eyJpZCI6IjI5NzFiOGIzIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGV4dCI6Ik1vcmUgc2VydmljZXMiLCJsaW5rIjp7InVybCI6Ilwvc2VydmljZXMiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn0sImFsaWduIjoiY2VudGVyIiwiYnRuX2ljb24iOnsidmFsdWUiOiJtYXRlcmlhbCB6bWRpIHptZGktc2V0dGluZ3MiLCJsaWJyYXJ5IjoibWF0ZXJpYWwifSwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiItMTAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJzdHlsZSI6ImJ0bi1wcmVzZXQzIiwiX2FuaW1hdGlvbiI6Im5vbmUifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfYnV0dG9uIn0=\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-f43d465 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"f43d465\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-5310bd3\" data-id=\"5310bd3\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImJjZmM3MzUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjdGY3X2lkIjoiOTMyIiwibGF5b3V0IjoiMiIsImN0ZjdfdGl0bGUiOiJIYXZlIGFueSBxdWVzdGlvbnM/IiwiY3RmN19kZXNjcmlwdGlvbiI6IkNhbGw6IDgwMCAyNTAgMzY5IiwiY3RmN19waG9uZSI6IjxzcGFuPkNhbGw6PFwvc3Bhbj4gMDk2ODg2MDM4NiIsImVsX3RpdGxlIjoiQ29udGFjdCBmb3IgZ2V0dGluZyBxdW90ZToiLCJjdF9hbmltYXRlIjoid293IGZsaXBJblgifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY3RmNyJ9\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-a9b49c5 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"a9b49c5\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n                            <div class=\"elementor-background-overlay\"></div>n                n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-1dcb85a\" data-id=\"1dcb85a\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n                <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-6c560a6 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"6c560a6\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-e82cd67\" data-id=\"e82cd67\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImVmNDE1MTEiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IldlIGhhdmUgc29tZSBlYXN5IHdvcmtpbmcgcHJvY2VkdXJlIiwidGl0bGVfY29sb3IiOiIjZmZmZmZmIiwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzYsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHQiOnsidW5pdCI6InB4Iiwic2l6ZSI6NDgsInNpemVzIjpbXX0sInN0eWxlIjoic3QtbGluZS1sZWZ0IiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOnRydWV9LCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzAsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjM4LCJzaXplcyI6W119LCJjdF9hbmltYXRlIjoid293IGZhZGVJbkxlZnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-3a08737\" data-id=\"3a08737\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-7aa11c2 wow fadeInRight elementor-widget elementor-widget-text-editor\" data-id=\"7aa11c2\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>We always provide a sense of security in terms of quality and progress.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n        [elementor-element data=\"eyJpZCI6IjlkNWVhMzIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X2xpc3QiOlt7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi1yZXNlYXJjaCIsImxpYnJhcnkiOiJmbGF0aWNvbiJ9LCJfaWQiOiIwNTVmZWYyIiwidGl0bGUiOiJGaW5kIHVzIiwiZGVzY3JpcHRpb24iOiJXZSB1bmRlcnN0YW5kIHRoZSBpbXBvcnRhbmNlIG9mIGhhbmRsaW5nIGVhY2ggcHJvamVjdCB3aXRoIGEgaG9saXN0aWMgYXBwcm9hY2guIiwiYnRuX2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9fSx7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi1uZXR3b3JrIiwibGlicmFyeSI6ImZsYXRpY29uIn0sIl9pZCI6IjM5ZTE0YjgiLCJ0aXRsZSI6IkNvbm5lY3Qgd2l0aCB1cyIsImRlc2NyaXB0aW9uIjoiV2hhdCBzZXRzIHVzIGFwYXJ0IGZyb20gb3RoZXIgYWdlbmNpZXMgaXMgb3VyIGV4cGVydGlzZSBpbiBjcmVhdGluZyB0YWlsb3JlZCBzb2x1dGlvbnMuIiwiYnRuX2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9fSx7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi13YWxsZXQiLCJsaWJyYXJ5IjoiZmxhdGljb24ifSwiX2lkIjoiZjVlMTBlOCIsInRpdGxlIjoiUGF5bWVudCB1cyIsImRlc2NyaXB0aW9uIjoiV2UgZW5jb3VyYWdlIGV2ZXJ5IHRlYW0gbWVtYmVyIHRvIGJlIHRoZWlyIGJlc3Qgc2VsZiwgZm9zdGVyaW5nIGEgZmxleGlibGUgYW5kIGNvbGxhYm9yYXRpdmUgZW52aXJvbm1lbnQuIiwiYnRuX2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9fSx7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi10YXJnZXQiLCJsaWJyYXJ5IjoiZmxhdGljb24ifSwiX2lkIjoiODgzOTk2OSIsInRpdGxlIjoiR2V0IHlvdXIgZHJlYW0iLCJkZXNjcmlwdGlvbiI6IkF0IGl0cyBjb3JlLCBldmVyeSBidXNpbmVzcyBoYXMgdW5pcXVlIHNvbHV0aW9ucyB0aGF0IGluc3BpcmUgaW5ub3ZhdGlvbiBhbmQgcHJvZ3Jlc3MuIiwiYnRuX2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9fV0sInRpdGxlX2NvbG9yIjoiI2ZmZmZmZiIsImRlc2NyaXB0aW9uX2NvbG9yIjoiI0ZGRkZGRiIsImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X3Byb2Nlc3MifQ==\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-79ee8ab elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"79ee8ab\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4af1814\" data-id=\"4af1814\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n                <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-505fb45 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"505fb45\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-7223f1c\" data-id=\"7223f1c\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-e7c238e elementor-widget elementor-widget-google_maps\" data-id=\"e7c238e\" data-element_type=\"widget\" data-widget_type=\"google_maps.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-custom-embed\">nttt<iframe loading=\"lazy\"ntttttsrc=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"nttttttitle=\"10u00b057&#039;11.2&quot;N 106u00b045&#039;13.0&quot;E\"ntttttaria-label=\"10u00b057&#039;11.2&quot;N 106u00b045&#039;13.0&quot;E\"nttt></iframe>ntt</div>ntttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-0225539\" data-id=\"0225539\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjUxZDU0M2EiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkNvbnRhY3QgdXMgZm9yIGFueSBraW5kIG9mIGhlbHAgYXQgYW55IHRpbWUuLi4iLCJ0aXRsZV9jb2xvciI6IiM4NUIyM0IiLCJfcGFkZGluZyI6eyJ1bml0IjoiJSIsInRvcCI6IjAiLCJyaWdodCI6IjUiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV9zcGFjZV9ib3R0b20iOnsidW5pdCI6InB4Iiwic2l6ZSI6MzMsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjozMCwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzgsInNpemVzIjpbXX0sImN0X2FuaW1hdGUiOiJ3b3cgZmxpcEluWCIsIl9wYWRkaW5nX3RhYmxldCI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"][elementor-element data=\"eyJpZCI6ImVkMGRjMWIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjdGY3X2lkIjoiOTc0Iiwic3R5bGVfbDEiOiJzdHlsZTIifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY3RmNyJ9\"]            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                    </div>n        </section>n        \",\"scripts\":[],\"styles\":[]}}'),(10268,3159,'_elementor_edit_mode','builder'),(10269,3159,'_elementor_template_type','wp-page'),(10270,3159,'_elementor_version','3.24.7'),(10271,3159,'_wp_page_template','default'),(10272,3159,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i cung c\\u1ea5p nhi\\u1ec1u lo\\u1ea1i s\\u1ea3n ph\\u1ea9m cho ng\\u00e0nh c\\u00f4ng nghi\\u1ec7p c\\u01a1 kh\\u00ed tr\\u00ean to\\u00e0n Vi\\u1ec7t Nam v\\u00e0 qu\\u1ed1c t\\u1ebf, \\u0111\\u1eb7c bi\\u1ec7t t\\u1ea1i c\\u00e1c th\\u1ecb tr\\u01b0\\u1eddng tr\\u1ecdng \\u0111i\\u1ec3m nh\\u01b0 Nh\\u1eadt B\\u1ea3n, H\\u00e0n Qu\\u1ed1c, Hoa K\\u1ef3 v\\u00e0 \\u00dac. Ch\\u00fang t\\u00f4i c\\u0169ng c\\u00f3 kinh nghi\\u1ec7m xu\\u1ea5t kh\\u1ea9u \\u0111\\u1ebfn c\\u00e1c th\\u1ecb tr\\u01b0\\u1eddng n\\u00e0y.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Th\\u1ebf m\\u1ea1nh l\\u1edbn nh\\u1ea5t c\\u1ee7a ch\\u00fang t\\u00f4i n\\u1eb1m \\u1edf \\u0111\\u1ed9i ng\\u0169 nh\\u00e2n l\\u1ef1c tr\\u1ebb trung, \\u0111am m\\u00ea h\\u1ecdc h\\u1ecfi, s\\u00e1ng t\\u1ea1o v\\u00e0 t\\u1ef1 tin, c\\u00f3 kh\\u1ea3 n\\u0103ng s\\u1ea3n xu\\u1ea5t \\u0111a d\\u1ea1ng c\\u00e1c s\\u1ea3n ph\\u1ea9m c\\u01a1 kh\\u00ed v\\u1edbi ch\\u1ea5t l\\u01b0\\u1ee3ng lu\\u00f4n \\u1ed5n \\u0111\\u1ecbnh.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=oVQ4_PIqgz8\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Kh\\u00e1ch h\\u00e0ng\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Nh\\u00e2n s\\u1ef1\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"S\\u1ed1 \\u0111\\u01a1n h\\u00e0ng m\\u1ed7i n\\u0103m\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ch\\u00fang t\\u00f4i \\u0111\\u00e3 b\\u1eaft \\u0111\\u1ea7u m\\u1edf m\\u1ed9t c\\u1eeda h\\u00e0ng tr\\u00ean Alibaba \\u0111\\u1ec3 k\\u1ebft n\\u1ed1i v\\u1edbi c\\u00e1c \\u0111\\u01a1n h\\u00e0ng t\\u1eeb kh\\u1eafp n\\u01a1i tr\\u00ean th\\u1ebf gi\\u1edbi.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0e89391\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i n\\u1ed7 l\\u1ef1c tr\\u1edf th\\u00e0nh m\\u1ed9t trong nh\\u1eefng c\\u00f4ng ty ch\\u1ebf bi\\u1ebfn c\\u01a1 kh\\u00ed h\\u00e0ng \\u0111\\u1ea7u c\\u1ee7a Vi\\u1ec7t Nam, cung c\\u1ea5p ra th\\u1ecb tr\\u01b0\\u1eddng qu\\u1ed1c t\\u1ebf v\\u00e0o n\\u0103m 2030. Trong t\\u01b0\\u01a1ng lai, ch\\u00fang t\\u00f4i h\\u01b0\\u1edbng \\u0111\\u1ebfn vi\\u1ec7c s\\u1ea3n xu\\u1ea5t c\\u00e1c s\\u1ea3n ph\\u1ea9m m\\u00e1y m\\u00f3c ho\\u00e0n ch\\u1ec9nh \\u0111\\u1ec3 giao tr\\u1ef1c ti\\u1ebfp \\u0111\\u1ebfn ng\\u01b0\\u1eddi s\\u1eed d\\u1ee5ng cu\\u1ed1i.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>M\\u1ee5c ti\\u00eau \\u0111\\u1ea1t \\u0111\\u01b0\\u1ee3c v\\u00e0o n\\u0103m 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"\\u0110\\u00f4ng \\u00c1 (Nh\\u1eadt B\\u1ea3n, H\\u00e0n Qu\\u1ed1c, v.v.): Xu\\u1ea5t kh\\u1ea9u c\\u00e1c linh ki\\u1ec7n m\\u00e1y m\\u00f3c thay th\\u1ebf, ph\\u1ee5 ki\\u1ec7n xe m\\u00e1y v\\u00e0 \\u00f4 t\\u00f4, ph\\u1ee5 ki\\u1ec7n ng\\u00e0nh n\\u01b0\\u1edbc, khu\\u00f4n m\\u1eabu v\\u00e0 c\\u00e1c b\\u1ed9 ph\\u1eadn c\\u01a1 kh\\u00ed kh\\u00e1c.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Ch\\u00e2u \\u00c2u (\\u0110\\u1ee9c, Bulgaria, H\\u00e0 Lan, v.v.): S\\u1ea3n xu\\u1ea5t khu\\u00f4n jig cho v\\u00f2ng bi \\u00f4 t\\u00f4 v\\u00e0 c\\u00e1c b\\u1ed9 ph\\u1eadn h\\u1ed9p \\u0111i\\u1ec7n cho m\\u00e1y m\\u00f3c t\\u1ef1 \\u0111\\u1ed9ng h\\u00f3a.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"Hoa K\\u1ef3: C\\u00e1c s\\u1ea3n ph\\u1ea9m li\\u00ean quan \\u0111\\u1ebfn thi\\u1ebft b\\u1ecb y t\\u1ebf, quang h\\u1ecdc v\\u00e0 thi\\u1ebft b\\u1ecb \\u00e2m thanh.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"\\u00dac: S\\u1ea3n ph\\u1ea9m kim lo\\u1ea1i t\\u1ea5m.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vi\\u1ec7t Nam: M\\u00e1y t\\u1ef1 \\u0111\\u1ed9ng h\\u00f3a nh\\u1ecf; bu l\\u00f4ng xe m\\u00e1y v\\u00e0 \\u00f4 t\\u00f4; s\\u1ea3n ph\\u1ea9m trong ng\\u00e0nh d\\u1ea7u kh\\u00ed.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"C\\u00e1c th\\u1ecb tr\\u01b0\\u1eddng v\\u00e0 s\\u1ea3n ph\\u1ea9m kh\\u00e1c.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i cung c\\u1ea5p d\\u1ecbch v\\u1ee5 trong nhi\\u1ec1u l\\u0129nh v\\u1ef1c.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ch\\u00fang t\\u00f4i lu\\u00f4n \\u0111\\u00e1p \\u1ee9ng y\\u00eau c\\u1ea7u thi\\u1ebft k\\u1ebf c\\u1ee7a kh\\u00e1ch h\\u00e0ng. Ngo\\u1ea1i h\\u00ecnh v\\u00e0 k\\u00edch th\\u01b0\\u1edbc l\\u00e0 nh\\u1eefng y\\u1ebfu t\\u1ed1 ch\\u00fang t\\u00f4i coi tr\\u1ecdng nh\\u1ea5t.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"vi|language\"],\"ct_animate\":\"wow fadeInUp\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"D\\u1ecbch v\\u1ee5 kh\\u00e1c\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"C\\u00f3 c\\u00e2u h\\u1ecfi n\\u00e0o kh\\u00f4ng?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Li\\u00ean h\\u1ec7 \\u0111\\u1ec3 nh\\u1eadn b\\u00e1o gi\\u00e1:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i c\\u00f3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c \\u0111\\u01a1n gi\\u1ea3n.\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ch\\u00fang t\\u00f4i lu\\u00f4n mang \\u0111\\u1ebfn c\\u1ea3m gi\\u00e1c an t\\u00e2m v\\u1ec1 ch\\u1ea5t l\\u01b0\\u1ee3ng v\\u00e0 ti\\u1ebfn \\u0111\\u1ed9.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"T\\u00ecm ch\\u00fang t\\u00f4i\",\"description\":\"Ch\\u00fang t\\u00f4i hi\\u1ec3u t\\u1ea7m quan tr\\u1ecdng c\\u1ee7a vi\\u1ec7c x\\u1eed l\\u00fd m\\u1ed7i d\\u1ef1 \\u00e1n theo m\\u1ed9t c\\u00e1ch ti\\u1ebfp c\\u1eadn to\\u00e0n di\\u1ec7n.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"K\\u1ebft n\\u1ed1i v\\u1edbi ch\\u00fang t\\u00f4i\",\"description\":\"\\u0110i\\u1ec1u l\\u00e0m ch\\u00fang t\\u00f4i kh\\u00e1c bi\\u1ec7t so v\\u1edbi c\\u00e1c c\\u00f4ng ty kh\\u00e1c l\\u00e0 chuy\\u00ean m\\u00f4n trong vi\\u1ec7c t\\u1ea1o ra c\\u00e1c gi\\u1ea3i ph\\u00e1p t\\u00f9y ch\\u1ec9nh.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Thanh to\\u00e1n cho ch\\u00fang t\\u00f4i\",\"description\":\"Ch\\u00fang t\\u00f4i khuy\\u1ebfn kh\\u00edch m\\u1ed7i th\\u00e0nh vi\\u00ean trong \\u0111\\u1ed9i ng\\u0169 tr\\u1edf th\\u00e0nh phi\\u00ean b\\u1ea3n t\\u1ed1t nh\\u1ea5t c\\u1ee7a ch\\u00ednh m\\u00ecnh, t\\u1ea1o ra m\\u1ed9t m\\u00f4i tr\\u01b0\\u1eddng linh ho\\u1ea1t v\\u00e0 h\\u1ee3p t\\u00e1c.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"\\u0110\\u1ea1t \\u0111\\u01b0\\u1ee3c \\u01b0\\u1edbc m\\u01a1 c\\u1ee7a b\\u1ea1n\",\"description\":\"C\\u1ed1t l\\u00f5i c\\u1ee7a m\\u1ed7i doanh nghi\\u1ec7p l\\u00e0 nh\\u1eefng gi\\u1ea3i ph\\u00e1p \\u0111\\u1ed9c \\u0111\\u00e1o, truy\\u1ec1n c\\u1ea3m h\\u1ee9ng cho s\\u1ef1 \\u0111\\u1ed5i m\\u1edbi v\\u00e0 ph\\u00e1t tri\\u1ec3n.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Li\\u00ean h\\u1ec7 v\\u1edbi ch\\u00fang t\\u00f4i b\\u1ea5t c\\u1ee9 l\\u00fac n\\u00e0o n\\u1ebfu b\\u1ea1n c\\u1ea7n s\\u1ef1 gi\\u00fap \\u0111\\u1ee1...\",\"title_color\":\"#85B23B\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(10273,3159,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(10274,3159,'_elementor_css','a:6:{s:4:\"time\";i:1742177087;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:8:\"material\";i:1;s:8:\"flaticon\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(10275,3159,'_elementor_page_assets','a:2:{s:6:\"styles\";a:4:{i:0;s:18:\"widget-text-editor\";i:1;s:21:\"e-animation-slideInUp\";i:2;s:12:\"widget-image\";i:3;s:18:\"widget-google_maps\";}s:7:\"scripts\";a:9:{i:0;s:16:\"jquery-numerator\";i:1;s:20:\"ct-counter-widget-js\";i:2;s:11:\"progressbar\";i:3;s:16:\"waypoints-lib-js\";i:4;s:24:\"ct-progressbar-widget-js\";i:5;s:12:\"imagesloaded\";i:6;s:7:\"isotope\";i:7;s:25:\"ct-post-masonry-widget-js\";i:8;s:22:\"ct-post-grid-widget-js\";}}'),(10276,3159,'_elementor_element_cache','{\"timeout\":1742263487,\"value\":{\"content\":\"        <section class=\"elementor-section elementor-top-section elementor-element elementor-element-2d2b67a elementor-section-stretched elementor-section-full_width slider-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"2d2b67a\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-no \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-d1bb387\" data-id=\"d1bb387\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImNjODZmNGQiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJyZXZzbGlkZXJ0aXRsZSI6IkhvbWUgMSIsInNob3J0Y29kZSI6IltyZXZfc2xpZGVyIGFsaWFzPVwiaG9tZS0xXCJdW1wvcmV2X3NsaWRlcl0ifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoic2xpZGVyX3Jldm9sdXRpb24ifQ==\"]        <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-2cea906 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"2cea906\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-8e117d0\" data-id=\"8e117d0\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjI0YjYyY2MiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkNoXHUwMGZhbmcgdFx1MDBmNGkgY3VuZyBjXHUxZWE1cCBuaGlcdTFlYzF1IGxvXHUxZWExaSBzXHUxZWEzbiBwaFx1MWVhOW0gY2hvIG5nXHUwMGUwbmggY1x1MDBmNG5nIG5naGlcdTFlYzdwIGNcdTAxYTEga2hcdTAwZWQgdHJcdTAwZWFuIHRvXHUwMGUwbiBWaVx1MWVjN3QgTmFtIHZcdTAwZTAgcXVcdTFlZDFjIHRcdTFlYmYsIFx1MDExMVx1MWViN2MgYmlcdTFlYzd0IHRcdTFlYTFpIGNcdTAwZTFjIHRoXHUxZWNiIHRyXHUwMWIwXHUxZWRkbmcgdHJcdTFlY2RuZyBcdTAxMTFpXHUxZWMzbSBuaFx1MDFiMCBOaFx1MWVhZHQgQlx1MWVhM24sIEhcdTAwZTBuIFF1XHUxZWQxYywgSG9hIEtcdTFlZjMgdlx1MDBlMCBcdTAwZGFjLiBDaFx1MDBmYW5nIHRcdTAwZjRpIGNcdTAxNjluZyBjXHUwMGYzIGtpbmggbmdoaVx1MWVjN20geHVcdTFlYTV0IGtoXHUxZWE5dSBcdTAxMTFcdTFlYmZuIGNcdTAwZTFjIHRoXHUxZWNiIHRyXHUwMWIwXHUxZWRkbmcgblx1MDBlMHkuIiwidGl0bGVfY29sb3IiOiIjODVCMjNCIiwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzYsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHQiOnsidW5pdCI6InB4Iiwic2l6ZSI6NDgsInNpemVzIjpbXX0sInN0eWxlIjoic3QtbGluZS1sZWZ0IiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMTYiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjoyNiwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzQsInNpemVzIjpbXX0sImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluVXAifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-909b449 wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"909b449\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Thu1ebf mu1ea1nh lu1edbn nhu1ea5t cu1ee7a chu00fang tu00f4i nu1eb1m u1edf u0111u1ed9i ngu0169 nhu00e2n lu1ef1c tru1ebb trung, u0111am mu00ea hu1ecdc hu1ecfi, su00e1ng tu1ea1o vu00e0 tu1ef1 tin, cu00f3 khu1ea3 nu0103ng su1ea3n xuu1ea5t u0111a du1ea1ng cu00e1c su1ea3n phu1ea9m cu01a1 khu00ed vu1edbi chu1ea5t lu01b0u1ee3ng luu00f4n u1ed5n u0111u1ecbnh.</p>tttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImM0YTIwMjgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJpbWFnZSI6eyJ1cmwiOiIiLCJpZCI6IiJ9LCJ2aWRlb19saW5rIjoiaHR0cHM6XC9cL3d3dy55b3V0dWJlLmNvbVwvd2F0Y2g/dj1vVlE0X1BJcWd6OCIsImJ0bl92aWRlb19zdHlsZSI6InN0eWxlMyIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMzEiLCJyaWdodCI6IjM4IiwiYm90dG9tIjoiMCIsImxlZnQiOiI3OCIsImlzTGlua2VkIjpmYWxzZX0sIl9jc3NfY2xhc3NlcyI6ImVsLWlubGluZSB3b3cgZmFkZUluUmlnaHQiLCJfbWFyZ2luX3RhYmxldCI6eyJ1bml0IjoicHgiLCJ0b3AiOiIzMSIsInJpZ2h0IjoiMjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjY4IiwiaXNMaW5rZWQiOmZhbHNlfSwiX2FuaW1hdGlvbiI6InNsaWRlSW5VcCIsIl9tYXJnaW5fbW9iaWxlIjp7InVuaXQiOiJweCIsInRvcCI6IjMxIiwicmlnaHQiOiIyMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF92aWRlb19wbGF5ZXIifQ==\"]tt<div class=\"elementor-element elementor-element-1fd7931 el-inline wow fadeInRight elementor-invisible elementor-widget elementor-widget-image\" data-id=\"1fd7931\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;slideInUp&quot;}\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" class=\"attachment-full size-full wp-image-2542\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-4fff345\" data-id=\"4fff345\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjU5MGYxYmUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjo1MCwic3VmZml4IjoiKyIsInRob3VzYW5kX3NlcGFyYXRvciI6IiIsInRob3VzYW5kX3NlcGFyYXRvcl9jaGFyIjoiICIsInRpdGxlIjoiS2hcdTAwZTFjaCBoXHUwMGUwbmciLCJzaG93X2ljb24iOiJ0cnVlIiwiY291bnRlcl9pY29uIjp7InZhbHVlIjoibWF0ZXJpYWwgem1kaSB6bWRpLWFzc2lnbm1lbnQtY2hlY2siLCJsaWJyYXJ5IjoibWF0ZXJpYWwifSwibnVtYmVyX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjQxIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJfY3NzX2NsYXNzZXMiOiJ0ZXh0LWNlbnRlci1zbSIsImljb25fdHlwZSI6ImltYWdlIiwiaWNvbl9pbWFnZSI6eyJ1cmwiOiJodHRwOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAxOVwvMTJcL2NvdW50ZXItaWNvbi0wMS5wbmciLCJpZCI6MTUxNX0sIl9hbmltYXRpb24iOiJub25lIiwiY3RfYW5pbWF0ZSI6IndvdyBmYWRlSW5VcCJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9jb3VudGVyIn0=\"][elementor-element data=\"eyJpZCI6IjdhNWYyMzkiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjoyMDAsInN1ZmZpeCI6IisiLCJ0aG91c2FuZF9zZXBhcmF0b3IiOiIiLCJ0aG91c2FuZF9zZXBhcmF0b3JfY2hhciI6IiAiLCJ0aXRsZSI6Ik5oXHUwMGUybiBzXHUxZWYxIiwic2hvd19pY29uIjoidHJ1ZSIsImNvdW50ZXJfaWNvbiI6eyJ2YWx1ZSI6Im1hdGVyaWFsIHptZGkgem1kaS1hc3NpZ25tZW50LWNoZWNrIiwibGlicmFyeSI6Im1hdGVyaWFsIn0sIm51bWJlcl90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiI0MSIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwiX2Nzc19jbGFzc2VzIjoidGV4dC1jZW50ZXItc20iLCJpY29uX3R5cGUiOiJpbWFnZSIsImljb25faW1hZ2UiOnsidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMTlcLzEyXC9jb3VudGVyLWljb24tMDIucG5nIiwiaWQiOjE1MTZ9LCJfYW5pbWF0aW9uIjoibm9uZSIsImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluVXAifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY291bnRlciJ9\"][elementor-element data=\"eyJpZCI6IjA0NTMxYzgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjoyMDAwLCJzdWZmaXgiOiIrIiwidGhvdXNhbmRfc2VwYXJhdG9yIjoiIiwidGhvdXNhbmRfc2VwYXJhdG9yX2NoYXIiOiIgIiwidGl0bGUiOiJTXHUxZWQxIFx1MDExMVx1MDFhMW4gaFx1MDBlMG5nIG1cdTFlZDdpIG5cdTAxMDNtIiwic2hvd19pY29uIjoidHJ1ZSIsImNvdW50ZXJfaWNvbiI6eyJ2YWx1ZSI6Im1hdGVyaWFsIHptZGkgem1kaS1hc3NpZ25tZW50LWNoZWNrIiwibGlicmFyeSI6Im1hdGVyaWFsIn0sIm51bWJlcl90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiI0MSIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwiX2Nzc19jbGFzc2VzIjoidGV4dC1jZW50ZXItc20iLCJpY29uX3R5cGUiOiJpbWFnZSIsImljb25faW1hZ2UiOnsidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMTlcLzEyXC9jb3VudGVyLWljb24tMDMucG5nIiwiaWQiOjE1MTd9LCJfYW5pbWF0aW9uIjoibm9uZSIsImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluVXAifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY291bnRlciJ9\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-348ba48\" data-id=\"348ba48\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-ed7e1d0 wow fadeInUp elementor-widget elementor-widget-image\" data-id=\"ed7e1d0\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" class=\"attachment-full size-full wp-image-2571\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntttt<div class=\"elementor-element elementor-element-3b54db6 wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"3b54db6\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Chu00fang tu00f4i u0111u00e3 bu1eaft u0111u1ea7u mu1edf mu1ed9t cu1eeda hu00e0ng tru00ean Alibaba u0111u1ec3 ku1ebft nu1ed1i vu1edbi cu00e1c u0111u01a1n hu00e0ng tu1eeb khu1eafp nu01a1i tru00ean thu1ebf giu1edbi.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-8b70e78 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"8b70e78\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-c2b95bd\" data-id=\"c2b95bd\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-b5a8ba3 elementor-widget elementor-widget-image\" data-id=\"b5a8ba3\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" class=\"attachment-full size-full wp-image-2268\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntttt<div class=\"elementor-element elementor-element-0e89391 elementor-widget elementor-widget-image\" data-id=\"0e89391\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" class=\"attachment-full size-full wp-image-2559\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-de7136f\" data-id=\"de7136f\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6Ijg0MDdhYmUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkNoXHUwMGZhbmcgdFx1MDBmNGkgblx1MWVkNyBsXHUxZWYxYyB0clx1MWVkZiB0aFx1MDBlMG5oIG1cdTFlZDl0IHRyb25nIG5oXHUxZWVmbmcgY1x1MDBmNG5nIHR5IGNoXHUxZWJmIGJpXHUxZWJmbiBjXHUwMWExIGtoXHUwMGVkIGhcdTAwZTBuZyBcdTAxMTFcdTFlYTd1IGNcdTFlZTdhIFZpXHUxZWM3dCBOYW0sIGN1bmcgY1x1MWVhNXAgcmEgdGhcdTFlY2IgdHJcdTAxYjBcdTFlZGRuZyBxdVx1MWVkMWMgdFx1MWViZiB2XHUwMGUwbyBuXHUwMTAzbSAyMDMwLiBUcm9uZyB0XHUwMWIwXHUwMWExbmcgbGFpLCBjaFx1MDBmYW5nIHRcdTAwZjRpIGhcdTAxYjBcdTFlZGJuZyBcdTAxMTFcdTFlYmZuIHZpXHUxZWM3YyBzXHUxZWEzbiB4dVx1MWVhNXQgY1x1MDBlMWMgc1x1MWVhM24gcGhcdTFlYTltIG1cdTAwZTF5IG1cdTAwZjNjIGhvXHUwMGUwbiBjaFx1MWVjOW5oIFx1MDExMVx1MWVjMyBnaWFvIHRyXHUxZWYxYyB0aVx1MWViZnAgXHUwMTExXHUxZWJmbiBuZ1x1MDFiMFx1MWVkZGkgc1x1MWVlZCBkXHUxZWU1bmcgY3VcdTFlZDFpLiIsInRpdGxlX2NvbG9yIjoiIzg1QjIzQiIsInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplIjp7InVuaXQiOiJweCIsInNpemUiOjM2LCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0Ijp7InVuaXQiOiJweCIsInNpemUiOjQ4LCJzaXplcyI6W119LCJzdHlsZSI6InN0LWxpbmUtbGVmdCIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiLTkiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV9zcGFjZV9ib3R0b20iOnsidW5pdCI6InB4Iiwic2l6ZSI6MTcsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjozMCwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzgsInNpemVzIjpbXX0sImN0X2FuaW1hdGUiOiJ3b3cgZmxpcEluWCIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX21vYmlsZSI6eyJ1bml0IjoicHgiLCJzaXplIjoyOCwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF9tb2JpbGUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzQsInNpemVzIjpbXX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]tt<div class=\"elementor-element elementor-element-0c8497c wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"0c8497c\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Mu1ee5c tiu00eau u0111u1ea1t u0111u01b0u1ee3c vu00e0o nu0103m 2026:</p>tttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6IjQ3NTRlZDYiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJwcm9ncmVzc2Jhcl9saXN0IjpbeyJ0aXRsZSI6Ilx1MDExMFx1MDBmNG5nIFx1MDBjMSAoTmhcdTFlYWR0IEJcdTFlYTNuLCBIXHUwMGUwbiBRdVx1MWVkMWMsIHYudi4pOiBYdVx1MWVhNXQga2hcdTFlYTl1IGNcdTAwZTFjIGxpbmgga2lcdTFlYzduIG1cdTAwZTF5IG1cdTAwZjNjIHRoYXkgdGhcdTFlYmYsIHBoXHUxZWU1IGtpXHUxZWM3biB4ZSBtXHUwMGUxeSB2XHUwMGUwIFx1MDBmNCB0XHUwMGY0LCBwaFx1MWVlNSBraVx1MWVjN24gbmdcdTAwZTBuaCBuXHUwMWIwXHUxZWRiYywga2h1XHUwMGY0biBtXHUxZWFidSB2XHUwMGUwIGNcdTAwZTFjIGJcdTFlZDkgcGhcdTFlYWRuIGNcdTAxYTEga2hcdTAwZWQga2hcdTAwZTFjLiIsInByb2dyZXNzX3R5cGUiOiIiLCJwZXJjZW50Ijp7InVuaXQiOiIlIiwic2l6ZSI6MzAsInNpemVzIjpbXX0sImRpc3BsYXlfcGVyY2VudGFnZSI6ImhpZGUiLCJpbm5lcl90ZXh0IjoiV2ViIERlc2lnbmVyIiwiX2lkIjoiOGI0YmNkNiJ9LHsidGl0bGUiOiJDaFx1MDBlMnUgXHUwMGMydSAoXHUwMTEwXHUxZWU5YywgQnVsZ2FyaWEsIEhcdTAwZTAgTGFuLCB2LnYuKTogU1x1MWVhM24geHVcdTFlYTV0IGtodVx1MDBmNG4gamlnIGNobyB2XHUwMGYybmcgYmkgXHUwMGY0IHRcdTAwZjQgdlx1MDBlMCBjXHUwMGUxYyBiXHUxZWQ5IHBoXHUxZWFkbiBoXHUxZWQ5cCBcdTAxMTFpXHUxZWM3biBjaG8gbVx1MDBlMXkgbVx1MDBmM2MgdFx1MWVmMSBcdTAxMTFcdTFlZDluZyBoXHUwMGYzYS4iLCJwcm9ncmVzc190eXBlIjoiIiwicGVyY2VudCI6eyJ1bml0IjoiJSIsInNpemUiOjEwLCJzaXplcyI6W119LCJkaXNwbGF5X3BlcmNlbnRhZ2UiOiJoaWRlIiwiaW5uZXJfdGV4dCI6IldlYiBEZXNpZ25lciIsIl9pZCI6IjZlMGY4NzcifSx7InRpdGxlIjoiSG9hIEtcdTFlZjM6IENcdTAwZTFjIHNcdTFlYTNuIHBoXHUxZWE5bSBsaVx1MDBlYW4gcXVhbiBcdTAxMTFcdTFlYmZuIHRoaVx1MWViZnQgYlx1MWVjYiB5IHRcdTFlYmYsIHF1YW5nIGhcdTFlY2RjIHZcdTAwZTAgdGhpXHUxZWJmdCBiXHUxZWNiIFx1MDBlMm0gdGhhbmguIiwicHJvZ3Jlc3NfdHlwZSI6IiIsInBlcmNlbnQiOnsidW5pdCI6IiUiLCJzaXplIjozMCwic2l6ZXMiOltdfSwiZGlzcGxheV9wZXJjZW50YWdlIjoic2hvdyIsIl9pZCI6IjIyMmViODEifSx7Il9pZCI6IjVlZWNjYjYiLCJ0aXRsZSI6Ilx1MDBkYWM6IFNcdTFlYTNuIHBoXHUxZWE5bSBraW0gbG9cdTFlYTFpIHRcdTFlYTVtLiIsInBlcmNlbnQiOnsidW5pdCI6IiUiLCJzaXplIjo4LCJzaXplcyI6W119fSx7Il9pZCI6IjEwZTU3NTAiLCJ0aXRsZSI6IlZpXHUxZWM3dCBOYW06IE1cdTAwZTF5IHRcdTFlZjEgXHUwMTExXHUxZWQ5bmcgaFx1MDBmM2EgbmhcdTFlY2Y7IGJ1IGxcdTAwZjRuZyB4ZSBtXHUwMGUxeSB2XHUwMGUwIFx1MDBmNCB0XHUwMGY0OyBzXHUxZWEzbiBwaFx1MWVhOW0gdHJvbmcgbmdcdTAwZTBuaCBkXHUxZWE3dSBraFx1MDBlZC4iLCJwZXJjZW50Ijp7InVuaXQiOiIlIiwic2l6ZSI6MjAsInNpemVzIjpbXX19LHsiX2lkIjoiZTE3YTE5NSIsInRpdGxlIjoiQ1x1MDBlMWMgdGhcdTFlY2IgdHJcdTAxYjBcdTFlZGRuZyB2XHUwMGUwIHNcdTFlYTNuIHBoXHUxZWE5bSBraFx1MDBlMWMuIiwicGVyY2VudCI6eyJ1bml0IjoiJSIsInNpemUiOjIsInNpemVzIjpbXX19XSwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiI3OCIsImlzTGlua2VkIjpmYWxzZX0sIl9tYXJnaW5fbW9iaWxlIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6dHJ1ZX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9wcm9ncmVzc2JhciJ9\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-b6145ce elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"b6145ce\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-e65d58b\" data-id=\"e65d58b\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjljZDU1ZGQiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkNoXHUwMGZhbmcgdFx1MDBmNGkgY3VuZyBjXHUxZWE1cCBkXHUxZWNiY2ggdlx1MWVlNSB0cm9uZyBuaGlcdTFlYzF1IGxcdTAxMjluaCB2XHUxZWYxYy4iLCJ0aXRsZV9jb2xvciI6IiM4NUIyM0IiLCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZSI6eyJ1bml0IjoicHgiLCJzaXplIjozNiwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodCI6eyJ1bml0IjoicHgiLCJzaXplIjo0OCwic2l6ZXMiOltdfSwic3R5bGUiOiJzdC1saW5lLWxlZnQiLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6dHJ1ZX0sInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjozMCwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzgsInNpemVzIjpbXX0sImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluTGVmdCIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX21vYmlsZSI6eyJ1bml0IjoicHgiLCJzaXplIjoyOCwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF9tb2JpbGUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzQsInNpemVzIjpbXX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-2067062\" data-id=\"2067062\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-956a238 wow fadeInRight elementor-widget elementor-widget-text-editor\" data-id=\"956a238\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Chu00fang tu00f4i luu00f4n u0111u00e1p u1ee9ng yu00eau cu1ea7u thiu1ebft ku1ebf cu1ee7a khu00e1ch hu00e0ng. Ngou1ea1i hu00ecnh vu00e0 ku00edch thu01b0u1edbc lu00e0 nhu1eefng yu1ebfu tu1ed1 chu00fang tu00f4i coi tru1ecdng nhu1ea5t.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-74328b6b elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"74328b6b\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4b9c9796\" data-id=\"4b9c9796\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjFjYTNiNmM1IiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsibGF5b3V0IjoiNCIsImxpbWl0Ijo0LCJmaWx0ZXJfZGVmYXVsdF90aXRsZSI6IkFsbCIsImNvbF9zbSI6IjEiLCJjb2xfbWQiOiIyIiwiY29sX2xnIjoiMiIsImNvbF94bCI6IjIiLCJidXR0b25fdGV4dCI6IlJlYWQgbW9yZSIsInNvdXJjZSI6WyJ2aXxsYW5ndWFnZSJdLCJjdF9hbmltYXRlIjoid293IGZhZGVJblVwIiwib3JkZXIiOiJhc2MifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3Rfc2VydmljZV9ncmlkIn0=\"][elementor-element data=\"eyJpZCI6IjI5NzFiOGIzIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGV4dCI6IkRcdTFlY2JjaCB2XHUxZWU1IGtoXHUwMGUxYyIsImxpbmsiOnsidXJsIjoiXC9zZXJ2aWNlcyIsImlzX2V4dGVybmFsIjoiIiwibm9mb2xsb3ciOiIifSwiYWxpZ24iOiJjZW50ZXIiLCJidG5faWNvbiI6eyJ2YWx1ZSI6Im1hdGVyaWFsIHptZGkgem1kaS1zZXR0aW5ncyIsImxpYnJhcnkiOiJtYXRlcmlhbCJ9LCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6Ii0xMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sInN0eWxlIjoiYnRuLXByZXNldDMiLCJfYW5pbWF0aW9uIjoibm9uZSJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9idXR0b24ifQ==\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-f43d465 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"f43d465\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-5310bd3\" data-id=\"5310bd3\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImJjZmM3MzUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjdGY3X2lkIjoiOTMyIiwibGF5b3V0IjoiMiIsImN0ZjdfdGl0bGUiOiJDXHUwMGYzIGNcdTAwZTJ1IGhcdTFlY2ZpIG5cdTAwZTBvIGtoXHUwMGY0bmc/IiwiY3RmN19kZXNjcmlwdGlvbiI6IkNhbGw6IDgwMCAyNTAgMzY5IiwiY3RmN19waG9uZSI6IjxzcGFuPkNhbGw6PFwvc3Bhbj4gMDk2ODg2MDM4NiIsImVsX3RpdGxlIjoiTGlcdTAwZWFuIGhcdTFlYzcgXHUwMTExXHUxZWMzIG5oXHUxZWFkbiBiXHUwMGUxbyBnaVx1MDBlMToiLCJjdF9hbmltYXRlIjoid293IGZsaXBJblgifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY3RmNyJ9\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-a9b49c5 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"a9b49c5\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n                            <div class=\"elementor-background-overlay\"></div>n                n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-1dcb85a\" data-id=\"1dcb85a\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n                <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-6c560a6 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"6c560a6\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-e82cd67\" data-id=\"e82cd67\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImVmNDE1MTEiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkNoXHUwMGZhbmcgdFx1MDBmNGkgY1x1MDBmMyBxdXkgdHJcdTAwZWNuaCBsXHUwMGUwbSB2aVx1MWVjN2MgXHUwMTExXHUwMWExbiBnaVx1MWVhM24uIiwidGl0bGVfY29sb3IiOiIjZmZmZmZmIiwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzYsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHQiOnsidW5pdCI6InB4Iiwic2l6ZSI6NDgsInNpemVzIjpbXX0sInN0eWxlIjoic3QtbGluZS1sZWZ0IiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOnRydWV9LCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzAsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjM4LCJzaXplcyI6W119LCJjdF9hbmltYXRlIjoid293IGZhZGVJbkxlZnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-3a08737\" data-id=\"3a08737\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-7aa11c2 wow fadeInRight elementor-widget elementor-widget-text-editor\" data-id=\"7aa11c2\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Chu00fang tu00f4i luu00f4n mang u0111u1ebfn cu1ea3m giu00e1c an tu00e2m vu1ec1 chu1ea5t lu01b0u1ee3ng vu00e0 tiu1ebfn u0111u1ed9.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n        [elementor-element data=\"eyJpZCI6IjlkNWVhMzIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X2xpc3QiOlt7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi1yZXNlYXJjaCIsImxpYnJhcnkiOiJmbGF0aWNvbiJ9LCJfaWQiOiIwNTVmZWYyIiwidGl0bGUiOiJUXHUwMGVjbSBjaFx1MDBmYW5nIHRcdTAwZjRpIiwiZGVzY3JpcHRpb24iOiJDaFx1MDBmYW5nIHRcdTAwZjRpIGhpXHUxZWMzdSB0XHUxZWE3bSBxdWFuIHRyXHUxZWNkbmcgY1x1MWVlN2EgdmlcdTFlYzdjIHhcdTFlZWQgbFx1MDBmZCBtXHUxZWQ3aSBkXHUxZWYxIFx1MDBlMW4gdGhlbyBtXHUxZWQ5dCBjXHUwMGUxY2ggdGlcdTFlYmZwIGNcdTFlYWRuIHRvXHUwMGUwbiBkaVx1MWVjN24uIiwiYnRuX2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9fSx7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi1uZXR3b3JrIiwibGlicmFyeSI6ImZsYXRpY29uIn0sIl9pZCI6IjM5ZTE0YjgiLCJ0aXRsZSI6IktcdTFlYmZ0IG5cdTFlZDFpIHZcdTFlZGJpIGNoXHUwMGZhbmcgdFx1MDBmNGkiLCJkZXNjcmlwdGlvbiI6Ilx1MDExMGlcdTFlYzF1IGxcdTAwZTBtIGNoXHUwMGZhbmcgdFx1MDBmNGkga2hcdTAwZTFjIGJpXHUxZWM3dCBzbyB2XHUxZWRiaSBjXHUwMGUxYyBjXHUwMGY0bmcgdHkga2hcdTAwZTFjIGxcdTAwZTAgY2h1eVx1MDBlYW4gbVx1MDBmNG4gdHJvbmcgdmlcdTFlYzdjIHRcdTFlYTFvIHJhIGNcdTAwZTFjIGdpXHUxZWEzaSBwaFx1MDBlMXAgdFx1MDBmOXkgY2hcdTFlYzluaC4iLCJidG5fbGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn19LHsiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZsYXRpY29uIGZsYXRpY29uLXdhbGxldCIsImxpYnJhcnkiOiJmbGF0aWNvbiJ9LCJfaWQiOiJmNWUxMGU4IiwidGl0bGUiOiJUaGFuaCB0b1x1MDBlMW4gY2hvIGNoXHUwMGZhbmcgdFx1MDBmNGkiLCJkZXNjcmlwdGlvbiI6IkNoXHUwMGZhbmcgdFx1MDBmNGkga2h1eVx1MWViZm4ga2hcdTAwZWRjaCBtXHUxZWQ3aSB0aFx1MDBlMG5oIHZpXHUwMGVhbiB0cm9uZyBcdTAxMTFcdTFlZDlpIG5nXHUwMTY5IHRyXHUxZWRmIHRoXHUwMGUwbmggcGhpXHUwMGVhbiBiXHUxZWEzbiB0XHUxZWQxdCBuaFx1MWVhNXQgY1x1MWVlN2EgY2hcdTAwZWRuaCBtXHUwMGVjbmgsIHRcdTFlYTFvIHJhIG1cdTFlZDl0IG1cdTAwZjRpIHRyXHUwMWIwXHUxZWRkbmcgbGluaCBob1x1MWVhMXQgdlx1MDBlMCBoXHUxZWUzcCB0XHUwMGUxYy4iLCJidG5fbGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn19LHsiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZsYXRpY29uIGZsYXRpY29uLXRhcmdldCIsImxpYnJhcnkiOiJmbGF0aWNvbiJ9LCJfaWQiOiI4ODM5OTY5IiwidGl0bGUiOiJcdTAxMTBcdTFlYTF0IFx1MDExMVx1MDFiMFx1MWVlM2MgXHUwMWIwXHUxZWRiYyBtXHUwMWExIGNcdTFlZTdhIGJcdTFlYTFuIiwiZGVzY3JpcHRpb24iOiJDXHUxZWQxdCBsXHUwMGY1aSBjXHUxZWU3YSBtXHUxZWQ3aSBkb2FuaCBuZ2hpXHUxZWM3cCBsXHUwMGUwIG5oXHUxZWVmbmcgZ2lcdTFlYTNpIHBoXHUwMGUxcCBcdTAxMTFcdTFlZDljIFx1MDExMVx1MDBlMW8sIHRydXlcdTFlYzFuIGNcdTFlYTNtIGhcdTFlZTluZyBjaG8gc1x1MWVmMSBcdTAxMTFcdTFlZDVpIG1cdTFlZGJpIHZcdTAwZTAgcGhcdTAwZTF0IHRyaVx1MWVjM24uIiwiYnRuX2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9fV0sInRpdGxlX2NvbG9yIjoiI2ZmZmZmZiIsImRlc2NyaXB0aW9uX2NvbG9yIjoiI0ZGRkZGRiIsImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X3Byb2Nlc3MifQ==\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-79ee8ab elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"79ee8ab\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4af1814\" data-id=\"4af1814\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n                <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-505fb45 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"505fb45\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-7223f1c\" data-id=\"7223f1c\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-e7c238e elementor-widget elementor-widget-google_maps\" data-id=\"e7c238e\" data-element_type=\"widget\" data-widget_type=\"google_maps.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-custom-embed\">nttt<iframe loading=\"lazy\"ntttttsrc=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"nttttttitle=\"10u00b057&#039;11.2&quot;N 106u00b045&#039;13.0&quot;E\"ntttttaria-label=\"10u00b057&#039;11.2&quot;N 106u00b045&#039;13.0&quot;E\"nttt></iframe>ntt</div>ntttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-0225539\" data-id=\"0225539\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjUxZDU0M2EiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkxpXHUwMGVhbiBoXHUxZWM3IHZcdTFlZGJpIGNoXHUwMGZhbmcgdFx1MDBmNGkgYlx1MWVhNXQgY1x1MWVlOSBsXHUwMGZhYyBuXHUwMGUwbyBuXHUxZWJmdSBiXHUxZWExbiBjXHUxZWE3biBzXHUxZWYxIGdpXHUwMGZhcCBcdTAxMTFcdTFlZTEuLi4iLCJ0aXRsZV9jb2xvciI6IiM4NUIyM0IiLCJfcGFkZGluZyI6eyJ1bml0IjoiJSIsInRvcCI6IjAiLCJyaWdodCI6IjUiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV9zcGFjZV9ib3R0b20iOnsidW5pdCI6InB4Iiwic2l6ZSI6MzMsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjozMCwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzgsInNpemVzIjpbXX0sImN0X2FuaW1hdGUiOiJ3b3cgZmxpcEluWCIsIl9wYWRkaW5nX3RhYmxldCI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"][elementor-element data=\"eyJpZCI6ImVkMGRjMWIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjdGY3X2lkIjoiOTc0Iiwic3R5bGVfbDEiOiJzdHlsZTIifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY3RmNyJ9\"]            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                    </div>n        </section>n        \",\"scripts\":[\"jquery-numerator\",\"ct-counter-widget-js\",\"ct-progressbar-widget-js\",\"imagesloaded\",\"isotope\",\"ct-post-masonry-widget-js\",\"ct-post-grid-widget-js\"],\"styles\":[\"widget-text-editor\",\"e-animation-slideInUp\",\"widget-image\",\"widget-google_maps\"]}}'),(10277,3160,'_elementor_edit_mode','builder'),(10278,3160,'_elementor_template_type','wp-page'),(10279,3160,'_elementor_version','3.24.7'),(10280,3160,'_wp_page_template','default'),(10281,3160,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i cung c\\u1ea5p nhi\\u1ec1u lo\\u1ea1i s\\u1ea3n ph\\u1ea9m cho ng\\u00e0nh c\\u00f4ng nghi\\u1ec7p c\\u01a1 kh\\u00ed tr\\u00ean to\\u00e0n Vi\\u1ec7t Nam v\\u00e0 qu\\u1ed1c t\\u1ebf, \\u0111\\u1eb7c bi\\u1ec7t t\\u1ea1i c\\u00e1c th\\u1ecb tr\\u01b0\\u1eddng tr\\u1ecdng \\u0111i\\u1ec3m nh\\u01b0 Nh\\u1eadt B\\u1ea3n, H\\u00e0n Qu\\u1ed1c, Hoa K\\u1ef3 v\\u00e0 \\u00dac. Ch\\u00fang t\\u00f4i c\\u0169ng c\\u00f3 kinh nghi\\u1ec7m xu\\u1ea5t kh\\u1ea9u \\u0111\\u1ebfn c\\u00e1c th\\u1ecb tr\\u01b0\\u1eddng n\\u00e0y.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Th\\u1ebf m\\u1ea1nh l\\u1edbn nh\\u1ea5t c\\u1ee7a ch\\u00fang t\\u00f4i n\\u1eb1m \\u1edf \\u0111\\u1ed9i ng\\u0169 nh\\u00e2n l\\u1ef1c tr\\u1ebb trung, \\u0111am m\\u00ea h\\u1ecdc h\\u1ecfi, s\\u00e1ng t\\u1ea1o v\\u00e0 t\\u1ef1 tin, c\\u00f3 kh\\u1ea3 n\\u0103ng s\\u1ea3n xu\\u1ea5t \\u0111a d\\u1ea1ng c\\u00e1c s\\u1ea3n ph\\u1ea9m c\\u01a1 kh\\u00ed v\\u1edbi ch\\u1ea5t l\\u01b0\\u1ee3ng lu\\u00f4n \\u1ed5n \\u0111\\u1ecbnh.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=oVQ4_PIqgz8\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Kh\\u00e1ch h\\u00e0ng\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Nh\\u00e2n s\\u1ef1\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"S\\u1ed1 \\u0111\\u01a1n h\\u00e0ng m\\u1ed7i n\\u0103m\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ch\\u00fang t\\u00f4i \\u0111\\u00e3 b\\u1eaft \\u0111\\u1ea7u m\\u1edf m\\u1ed9t c\\u1eeda h\\u00e0ng tr\\u00ean Alibaba \\u0111\\u1ec3 k\\u1ebft n\\u1ed1i v\\u1edbi c\\u00e1c \\u0111\\u01a1n h\\u00e0ng t\\u1eeb kh\\u1eafp n\\u01a1i tr\\u00ean th\\u1ebf gi\\u1edbi.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0e89391\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i n\\u1ed7 l\\u1ef1c tr\\u1edf th\\u00e0nh m\\u1ed9t trong nh\\u1eefng c\\u00f4ng ty ch\\u1ebf bi\\u1ebfn c\\u01a1 kh\\u00ed h\\u00e0ng \\u0111\\u1ea7u c\\u1ee7a Vi\\u1ec7t Nam, cung c\\u1ea5p ra th\\u1ecb tr\\u01b0\\u1eddng qu\\u1ed1c t\\u1ebf v\\u00e0o n\\u0103m 2030. Trong t\\u01b0\\u01a1ng lai, ch\\u00fang t\\u00f4i h\\u01b0\\u1edbng \\u0111\\u1ebfn vi\\u1ec7c s\\u1ea3n xu\\u1ea5t c\\u00e1c s\\u1ea3n ph\\u1ea9m m\\u00e1y m\\u00f3c ho\\u00e0n ch\\u1ec9nh \\u0111\\u1ec3 giao tr\\u1ef1c ti\\u1ebfp \\u0111\\u1ebfn ng\\u01b0\\u1eddi s\\u1eed d\\u1ee5ng cu\\u1ed1i.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>M\\u1ee5c ti\\u00eau \\u0111\\u1ea1t \\u0111\\u01b0\\u1ee3c v\\u00e0o n\\u0103m 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"\\u0110\\u00f4ng \\u00c1 (Nh\\u1eadt B\\u1ea3n, H\\u00e0n Qu\\u1ed1c, v.v.): Xu\\u1ea5t kh\\u1ea9u c\\u00e1c linh ki\\u1ec7n m\\u00e1y m\\u00f3c thay th\\u1ebf, ph\\u1ee5 ki\\u1ec7n xe m\\u00e1y v\\u00e0 \\u00f4 t\\u00f4, ph\\u1ee5 ki\\u1ec7n ng\\u00e0nh n\\u01b0\\u1edbc, khu\\u00f4n m\\u1eabu v\\u00e0 c\\u00e1c b\\u1ed9 ph\\u1eadn c\\u01a1 kh\\u00ed kh\\u00e1c.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Ch\\u00e2u \\u00c2u (\\u0110\\u1ee9c, Bulgaria, H\\u00e0 Lan, v.v.): S\\u1ea3n xu\\u1ea5t khu\\u00f4n jig cho v\\u00f2ng bi \\u00f4 t\\u00f4 v\\u00e0 c\\u00e1c b\\u1ed9 ph\\u1eadn h\\u1ed9p \\u0111i\\u1ec7n cho m\\u00e1y m\\u00f3c t\\u1ef1 \\u0111\\u1ed9ng h\\u00f3a.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"Hoa K\\u1ef3: C\\u00e1c s\\u1ea3n ph\\u1ea9m li\\u00ean quan \\u0111\\u1ebfn thi\\u1ebft b\\u1ecb y t\\u1ebf, quang h\\u1ecdc v\\u00e0 thi\\u1ebft b\\u1ecb \\u00e2m thanh.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"\\u00dac: S\\u1ea3n ph\\u1ea9m kim lo\\u1ea1i t\\u1ea5m.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vi\\u1ec7t Nam: M\\u00e1y t\\u1ef1 \\u0111\\u1ed9ng h\\u00f3a nh\\u1ecf; bu l\\u00f4ng xe m\\u00e1y v\\u00e0 \\u00f4 t\\u00f4; s\\u1ea3n ph\\u1ea9m trong ng\\u00e0nh d\\u1ea7u kh\\u00ed.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"C\\u00e1c th\\u1ecb tr\\u01b0\\u1eddng v\\u00e0 s\\u1ea3n ph\\u1ea9m kh\\u00e1c.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i cung c\\u1ea5p d\\u1ecbch v\\u1ee5 trong nhi\\u1ec1u l\\u0129nh v\\u1ef1c.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ch\\u00fang t\\u00f4i lu\\u00f4n \\u0111\\u00e1p \\u1ee9ng y\\u00eau c\\u1ea7u thi\\u1ebft k\\u1ebf c\\u1ee7a kh\\u00e1ch h\\u00e0ng. Ngo\\u1ea1i h\\u00ecnh v\\u00e0 k\\u00edch th\\u01b0\\u1edbc l\\u00e0 nh\\u1eefng y\\u1ebfu t\\u1ed1 ch\\u00fang t\\u00f4i coi tr\\u1ecdng nh\\u1ea5t.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"vi|language\"],\"ct_animate\":\"wow fadeInUp\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"D\\u1ecbch v\\u1ee5 kh\\u00e1c\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"C\\u00f3 c\\u00e2u h\\u1ecfi n\\u00e0o kh\\u00f4ng?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Li\\u00ean h\\u1ec7 \\u0111\\u1ec3 nh\\u1eadn b\\u00e1o gi\\u00e1:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i c\\u00f3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c \\u0111\\u01a1n gi\\u1ea3n.\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ch\\u00fang t\\u00f4i lu\\u00f4n mang \\u0111\\u1ebfn c\\u1ea3m gi\\u00e1c an t\\u00e2m v\\u1ec1 ch\\u1ea5t l\\u01b0\\u1ee3ng v\\u00e0 ti\\u1ebfn \\u0111\\u1ed9.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"T\\u00ecm ch\\u00fang t\\u00f4i\",\"description\":\"Ch\\u00fang t\\u00f4i hi\\u1ec3u t\\u1ea7m quan tr\\u1ecdng c\\u1ee7a vi\\u1ec7c x\\u1eed l\\u00fd m\\u1ed7i d\\u1ef1 \\u00e1n theo m\\u1ed9t c\\u00e1ch ti\\u1ebfp c\\u1eadn to\\u00e0n di\\u1ec7n.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"K\\u1ebft n\\u1ed1i v\\u1edbi ch\\u00fang t\\u00f4i\",\"description\":\"\\u0110i\\u1ec1u l\\u00e0m ch\\u00fang t\\u00f4i kh\\u00e1c bi\\u1ec7t so v\\u1edbi c\\u00e1c c\\u00f4ng ty kh\\u00e1c l\\u00e0 chuy\\u00ean m\\u00f4n trong vi\\u1ec7c t\\u1ea1o ra c\\u00e1c gi\\u1ea3i ph\\u00e1p t\\u00f9y ch\\u1ec9nh.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Thanh to\\u00e1n cho ch\\u00fang t\\u00f4i\",\"description\":\"Ch\\u00fang t\\u00f4i khuy\\u1ebfn kh\\u00edch m\\u1ed7i th\\u00e0nh vi\\u00ean trong \\u0111\\u1ed9i ng\\u0169 tr\\u1edf th\\u00e0nh phi\\u00ean b\\u1ea3n t\\u1ed1t nh\\u1ea5t c\\u1ee7a ch\\u00ednh m\\u00ecnh, t\\u1ea1o ra m\\u1ed9t m\\u00f4i tr\\u01b0\\u1eddng linh ho\\u1ea1t v\\u00e0 h\\u1ee3p t\\u00e1c.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"\\u0110\\u1ea1t \\u0111\\u01b0\\u1ee3c \\u01b0\\u1edbc m\\u01a1 c\\u1ee7a b\\u1ea1n\",\"description\":\"C\\u1ed1t l\\u00f5i c\\u1ee7a m\\u1ed7i doanh nghi\\u1ec7p l\\u00e0 nh\\u1eefng gi\\u1ea3i ph\\u00e1p \\u0111\\u1ed9c \\u0111\\u00e1o, truy\\u1ec1n c\\u1ea3m h\\u1ee9ng cho s\\u1ef1 \\u0111\\u1ed5i m\\u1edbi v\\u00e0 ph\\u00e1t tri\\u1ec3n.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Li\\u00ean h\\u1ec7 v\\u1edbi ch\\u00fang t\\u00f4i b\\u1ea5t c\\u1ee9 l\\u00fac n\\u00e0o n\\u1ebfu b\\u1ea1n c\\u1ea7n s\\u1ef1 gi\\u00fap \\u0111\\u1ee1...\",\"title_color\":\"#85B23B\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(10282,3160,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(10283,3160,'_elementor_css','a:6:{s:4:\"time\";i:1742177087;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:8:\"material\";i:1;s:8:\"flaticon\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(10284,3160,'_elementor_page_assets','a:2:{s:6:\"styles\";a:4:{i:0;s:18:\"widget-text-editor\";i:1;s:21:\"e-animation-slideInUp\";i:2;s:12:\"widget-image\";i:3;s:18:\"widget-google_maps\";}s:7:\"scripts\";a:9:{i:0;s:16:\"jquery-numerator\";i:1;s:20:\"ct-counter-widget-js\";i:2;s:11:\"progressbar\";i:3;s:16:\"waypoints-lib-js\";i:4;s:24:\"ct-progressbar-widget-js\";i:5;s:12:\"imagesloaded\";i:6;s:7:\"isotope\";i:7;s:25:\"ct-post-masonry-widget-js\";i:8;s:22:\"ct-post-grid-widget-js\";}}'),(10285,3160,'_elementor_element_cache','{\"timeout\":1742263487,\"value\":{\"content\":\"        <section class=\"elementor-section elementor-top-section elementor-element elementor-element-2d2b67a elementor-section-stretched elementor-section-full_width slider-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"2d2b67a\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-no \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-d1bb387\" data-id=\"d1bb387\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImNjODZmNGQiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJyZXZzbGlkZXJ0aXRsZSI6IkhvbWUgMSIsInNob3J0Y29kZSI6IltyZXZfc2xpZGVyIGFsaWFzPVwiaG9tZS0xXCJdW1wvcmV2X3NsaWRlcl0ifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoic2xpZGVyX3Jldm9sdXRpb24ifQ==\"]        <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-2cea906 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"2cea906\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-8e117d0\" data-id=\"8e117d0\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjI0YjYyY2MiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkNoXHUwMGZhbmcgdFx1MDBmNGkgY3VuZyBjXHUxZWE1cCBuaGlcdTFlYzF1IGxvXHUxZWExaSBzXHUxZWEzbiBwaFx1MWVhOW0gY2hvIG5nXHUwMGUwbmggY1x1MDBmNG5nIG5naGlcdTFlYzdwIGNcdTAxYTEga2hcdTAwZWQgdHJcdTAwZWFuIHRvXHUwMGUwbiBWaVx1MWVjN3QgTmFtIHZcdTAwZTAgcXVcdTFlZDFjIHRcdTFlYmYsIFx1MDExMVx1MWViN2MgYmlcdTFlYzd0IHRcdTFlYTFpIGNcdTAwZTFjIHRoXHUxZWNiIHRyXHUwMWIwXHUxZWRkbmcgdHJcdTFlY2RuZyBcdTAxMTFpXHUxZWMzbSBuaFx1MDFiMCBOaFx1MWVhZHQgQlx1MWVhM24sIEhcdTAwZTBuIFF1XHUxZWQxYywgSG9hIEtcdTFlZjMgdlx1MDBlMCBcdTAwZGFjLiBDaFx1MDBmYW5nIHRcdTAwZjRpIGNcdTAxNjluZyBjXHUwMGYzIGtpbmggbmdoaVx1MWVjN20geHVcdTFlYTV0IGtoXHUxZWE5dSBcdTAxMTFcdTFlYmZuIGNcdTAwZTFjIHRoXHUxZWNiIHRyXHUwMWIwXHUxZWRkbmcgblx1MDBlMHkuIiwidGl0bGVfY29sb3IiOiIjODVCMjNCIiwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzYsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHQiOnsidW5pdCI6InB4Iiwic2l6ZSI6NDgsInNpemVzIjpbXX0sInN0eWxlIjoic3QtbGluZS1sZWZ0IiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMTYiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjoyNiwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzQsInNpemVzIjpbXX0sImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluVXAifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-909b449 wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"909b449\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Thu1ebf mu1ea1nh lu1edbn nhu1ea5t cu1ee7a chu00fang tu00f4i nu1eb1m u1edf u0111u1ed9i ngu0169 nhu00e2n lu1ef1c tru1ebb trung, u0111am mu00ea hu1ecdc hu1ecfi, su00e1ng tu1ea1o vu00e0 tu1ef1 tin, cu00f3 khu1ea3 nu0103ng su1ea3n xuu1ea5t u0111a du1ea1ng cu00e1c su1ea3n phu1ea9m cu01a1 khu00ed vu1edbi chu1ea5t lu01b0u1ee3ng luu00f4n u1ed5n u0111u1ecbnh.</p>tttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImM0YTIwMjgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJpbWFnZSI6eyJ1cmwiOiIiLCJpZCI6IiJ9LCJ2aWRlb19saW5rIjoiaHR0cHM6XC9cL3d3dy55b3V0dWJlLmNvbVwvd2F0Y2g/dj1vVlE0X1BJcWd6OCIsImJ0bl92aWRlb19zdHlsZSI6InN0eWxlMyIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMzEiLCJyaWdodCI6IjM4IiwiYm90dG9tIjoiMCIsImxlZnQiOiI3OCIsImlzTGlua2VkIjpmYWxzZX0sIl9jc3NfY2xhc3NlcyI6ImVsLWlubGluZSB3b3cgZmFkZUluUmlnaHQiLCJfbWFyZ2luX3RhYmxldCI6eyJ1bml0IjoicHgiLCJ0b3AiOiIzMSIsInJpZ2h0IjoiMjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjY4IiwiaXNMaW5rZWQiOmZhbHNlfSwiX2FuaW1hdGlvbiI6InNsaWRlSW5VcCIsIl9tYXJnaW5fbW9iaWxlIjp7InVuaXQiOiJweCIsInRvcCI6IjMxIiwicmlnaHQiOiIyMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF92aWRlb19wbGF5ZXIifQ==\"]tt<div class=\"elementor-element elementor-element-1fd7931 el-inline wow fadeInRight elementor-invisible elementor-widget elementor-widget-image\" data-id=\"1fd7931\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;slideInUp&quot;}\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" class=\"attachment-full size-full wp-image-2542\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-4fff345\" data-id=\"4fff345\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjU5MGYxYmUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjo1MCwic3VmZml4IjoiKyIsInRob3VzYW5kX3NlcGFyYXRvciI6IiIsInRob3VzYW5kX3NlcGFyYXRvcl9jaGFyIjoiICIsInRpdGxlIjoiS2hcdTAwZTFjaCBoXHUwMGUwbmciLCJzaG93X2ljb24iOiJ0cnVlIiwiY291bnRlcl9pY29uIjp7InZhbHVlIjoibWF0ZXJpYWwgem1kaSB6bWRpLWFzc2lnbm1lbnQtY2hlY2siLCJsaWJyYXJ5IjoibWF0ZXJpYWwifSwibnVtYmVyX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjQxIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJfY3NzX2NsYXNzZXMiOiJ0ZXh0LWNlbnRlci1zbSIsImljb25fdHlwZSI6ImltYWdlIiwiaWNvbl9pbWFnZSI6eyJ1cmwiOiJodHRwOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAxOVwvMTJcL2NvdW50ZXItaWNvbi0wMS5wbmciLCJpZCI6MTUxNX0sIl9hbmltYXRpb24iOiJub25lIiwiY3RfYW5pbWF0ZSI6IndvdyBmYWRlSW5VcCJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9jb3VudGVyIn0=\"][elementor-element data=\"eyJpZCI6IjdhNWYyMzkiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjoyMDAsInN1ZmZpeCI6IisiLCJ0aG91c2FuZF9zZXBhcmF0b3IiOiIiLCJ0aG91c2FuZF9zZXBhcmF0b3JfY2hhciI6IiAiLCJ0aXRsZSI6Ik5oXHUwMGUybiBzXHUxZWYxIiwic2hvd19pY29uIjoidHJ1ZSIsImNvdW50ZXJfaWNvbiI6eyJ2YWx1ZSI6Im1hdGVyaWFsIHptZGkgem1kaS1hc3NpZ25tZW50LWNoZWNrIiwibGlicmFyeSI6Im1hdGVyaWFsIn0sIm51bWJlcl90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiI0MSIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwiX2Nzc19jbGFzc2VzIjoidGV4dC1jZW50ZXItc20iLCJpY29uX3R5cGUiOiJpbWFnZSIsImljb25faW1hZ2UiOnsidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMTlcLzEyXC9jb3VudGVyLWljb24tMDIucG5nIiwiaWQiOjE1MTZ9LCJfYW5pbWF0aW9uIjoibm9uZSIsImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluVXAifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY291bnRlciJ9\"][elementor-element data=\"eyJpZCI6IjA0NTMxYzgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjoyMDAwLCJzdWZmaXgiOiIrIiwidGhvdXNhbmRfc2VwYXJhdG9yIjoiIiwidGhvdXNhbmRfc2VwYXJhdG9yX2NoYXIiOiIgIiwidGl0bGUiOiJTXHUxZWQxIFx1MDExMVx1MDFhMW4gaFx1MDBlMG5nIG1cdTFlZDdpIG5cdTAxMDNtIiwic2hvd19pY29uIjoidHJ1ZSIsImNvdW50ZXJfaWNvbiI6eyJ2YWx1ZSI6Im1hdGVyaWFsIHptZGkgem1kaS1hc3NpZ25tZW50LWNoZWNrIiwibGlicmFyeSI6Im1hdGVyaWFsIn0sIm51bWJlcl90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiI0MSIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwiX2Nzc19jbGFzc2VzIjoidGV4dC1jZW50ZXItc20iLCJpY29uX3R5cGUiOiJpbWFnZSIsImljb25faW1hZ2UiOnsidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMTlcLzEyXC9jb3VudGVyLWljb24tMDMucG5nIiwiaWQiOjE1MTd9LCJfYW5pbWF0aW9uIjoibm9uZSIsImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluVXAifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY291bnRlciJ9\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-348ba48\" data-id=\"348ba48\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-ed7e1d0 wow fadeInUp elementor-widget elementor-widget-image\" data-id=\"ed7e1d0\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" class=\"attachment-full size-full wp-image-2571\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntttt<div class=\"elementor-element elementor-element-3b54db6 wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"3b54db6\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Chu00fang tu00f4i u0111u00e3 bu1eaft u0111u1ea7u mu1edf mu1ed9t cu1eeda hu00e0ng tru00ean Alibaba u0111u1ec3 ku1ebft nu1ed1i vu1edbi cu00e1c u0111u01a1n hu00e0ng tu1eeb khu1eafp nu01a1i tru00ean thu1ebf giu1edbi.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-8b70e78 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"8b70e78\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-c2b95bd\" data-id=\"c2b95bd\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-b5a8ba3 elementor-widget elementor-widget-image\" data-id=\"b5a8ba3\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" class=\"attachment-full size-full wp-image-2268\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntttt<div class=\"elementor-element elementor-element-0e89391 elementor-widget elementor-widget-image\" data-id=\"0e89391\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" class=\"attachment-full size-full wp-image-2559\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-de7136f\" data-id=\"de7136f\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6Ijg0MDdhYmUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkNoXHUwMGZhbmcgdFx1MDBmNGkgblx1MWVkNyBsXHUxZWYxYyB0clx1MWVkZiB0aFx1MDBlMG5oIG1cdTFlZDl0IHRyb25nIG5oXHUxZWVmbmcgY1x1MDBmNG5nIHR5IGNoXHUxZWJmIGJpXHUxZWJmbiBjXHUwMWExIGtoXHUwMGVkIGhcdTAwZTBuZyBcdTAxMTFcdTFlYTd1IGNcdTFlZTdhIFZpXHUxZWM3dCBOYW0sIGN1bmcgY1x1MWVhNXAgcmEgdGhcdTFlY2IgdHJcdTAxYjBcdTFlZGRuZyBxdVx1MWVkMWMgdFx1MWViZiB2XHUwMGUwbyBuXHUwMTAzbSAyMDMwLiBUcm9uZyB0XHUwMWIwXHUwMWExbmcgbGFpLCBjaFx1MDBmYW5nIHRcdTAwZjRpIGhcdTAxYjBcdTFlZGJuZyBcdTAxMTFcdTFlYmZuIHZpXHUxZWM3YyBzXHUxZWEzbiB4dVx1MWVhNXQgY1x1MDBlMWMgc1x1MWVhM24gcGhcdTFlYTltIG1cdTAwZTF5IG1cdTAwZjNjIGhvXHUwMGUwbiBjaFx1MWVjOW5oIFx1MDExMVx1MWVjMyBnaWFvIHRyXHUxZWYxYyB0aVx1MWViZnAgXHUwMTExXHUxZWJmbiBuZ1x1MDFiMFx1MWVkZGkgc1x1MWVlZCBkXHUxZWU1bmcgY3VcdTFlZDFpLiIsInRpdGxlX2NvbG9yIjoiIzg1QjIzQiIsInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplIjp7InVuaXQiOiJweCIsInNpemUiOjM2LCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0Ijp7InVuaXQiOiJweCIsInNpemUiOjQ4LCJzaXplcyI6W119LCJzdHlsZSI6InN0LWxpbmUtbGVmdCIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiLTkiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV9zcGFjZV9ib3R0b20iOnsidW5pdCI6InB4Iiwic2l6ZSI6MTcsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjozMCwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzgsInNpemVzIjpbXX0sImN0X2FuaW1hdGUiOiJ3b3cgZmxpcEluWCIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX21vYmlsZSI6eyJ1bml0IjoicHgiLCJzaXplIjoyOCwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF9tb2JpbGUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzQsInNpemVzIjpbXX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]tt<div class=\"elementor-element elementor-element-0c8497c wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"0c8497c\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Mu1ee5c tiu00eau u0111u1ea1t u0111u01b0u1ee3c vu00e0o nu0103m 2026:</p>tttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6IjQ3NTRlZDYiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJwcm9ncmVzc2Jhcl9saXN0IjpbeyJ0aXRsZSI6Ilx1MDExMFx1MDBmNG5nIFx1MDBjMSAoTmhcdTFlYWR0IEJcdTFlYTNuLCBIXHUwMGUwbiBRdVx1MWVkMWMsIHYudi4pOiBYdVx1MWVhNXQga2hcdTFlYTl1IGNcdTAwZTFjIGxpbmgga2lcdTFlYzduIG1cdTAwZTF5IG1cdTAwZjNjIHRoYXkgdGhcdTFlYmYsIHBoXHUxZWU1IGtpXHUxZWM3biB4ZSBtXHUwMGUxeSB2XHUwMGUwIFx1MDBmNCB0XHUwMGY0LCBwaFx1MWVlNSBraVx1MWVjN24gbmdcdTAwZTBuaCBuXHUwMWIwXHUxZWRiYywga2h1XHUwMGY0biBtXHUxZWFidSB2XHUwMGUwIGNcdTAwZTFjIGJcdTFlZDkgcGhcdTFlYWRuIGNcdTAxYTEga2hcdTAwZWQga2hcdTAwZTFjLiIsInByb2dyZXNzX3R5cGUiOiIiLCJwZXJjZW50Ijp7InVuaXQiOiIlIiwic2l6ZSI6MzAsInNpemVzIjpbXX0sImRpc3BsYXlfcGVyY2VudGFnZSI6ImhpZGUiLCJpbm5lcl90ZXh0IjoiV2ViIERlc2lnbmVyIiwiX2lkIjoiOGI0YmNkNiJ9LHsidGl0bGUiOiJDaFx1MDBlMnUgXHUwMGMydSAoXHUwMTEwXHUxZWU5YywgQnVsZ2FyaWEsIEhcdTAwZTAgTGFuLCB2LnYuKTogU1x1MWVhM24geHVcdTFlYTV0IGtodVx1MDBmNG4gamlnIGNobyB2XHUwMGYybmcgYmkgXHUwMGY0IHRcdTAwZjQgdlx1MDBlMCBjXHUwMGUxYyBiXHUxZWQ5IHBoXHUxZWFkbiBoXHUxZWQ5cCBcdTAxMTFpXHUxZWM3biBjaG8gbVx1MDBlMXkgbVx1MDBmM2MgdFx1MWVmMSBcdTAxMTFcdTFlZDluZyBoXHUwMGYzYS4iLCJwcm9ncmVzc190eXBlIjoiIiwicGVyY2VudCI6eyJ1bml0IjoiJSIsInNpemUiOjEwLCJzaXplcyI6W119LCJkaXNwbGF5X3BlcmNlbnRhZ2UiOiJoaWRlIiwiaW5uZXJfdGV4dCI6IldlYiBEZXNpZ25lciIsIl9pZCI6IjZlMGY4NzcifSx7InRpdGxlIjoiSG9hIEtcdTFlZjM6IENcdTAwZTFjIHNcdTFlYTNuIHBoXHUxZWE5bSBsaVx1MDBlYW4gcXVhbiBcdTAxMTFcdTFlYmZuIHRoaVx1MWViZnQgYlx1MWVjYiB5IHRcdTFlYmYsIHF1YW5nIGhcdTFlY2RjIHZcdTAwZTAgdGhpXHUxZWJmdCBiXHUxZWNiIFx1MDBlMm0gdGhhbmguIiwicHJvZ3Jlc3NfdHlwZSI6IiIsInBlcmNlbnQiOnsidW5pdCI6IiUiLCJzaXplIjozMCwic2l6ZXMiOltdfSwiZGlzcGxheV9wZXJjZW50YWdlIjoic2hvdyIsIl9pZCI6IjIyMmViODEifSx7Il9pZCI6IjVlZWNjYjYiLCJ0aXRsZSI6Ilx1MDBkYWM6IFNcdTFlYTNuIHBoXHUxZWE5bSBraW0gbG9cdTFlYTFpIHRcdTFlYTVtLiIsInBlcmNlbnQiOnsidW5pdCI6IiUiLCJzaXplIjo4LCJzaXplcyI6W119fSx7Il9pZCI6IjEwZTU3NTAiLCJ0aXRsZSI6IlZpXHUxZWM3dCBOYW06IE1cdTAwZTF5IHRcdTFlZjEgXHUwMTExXHUxZWQ5bmcgaFx1MDBmM2EgbmhcdTFlY2Y7IGJ1IGxcdTAwZjRuZyB4ZSBtXHUwMGUxeSB2XHUwMGUwIFx1MDBmNCB0XHUwMGY0OyBzXHUxZWEzbiBwaFx1MWVhOW0gdHJvbmcgbmdcdTAwZTBuaCBkXHUxZWE3dSBraFx1MDBlZC4iLCJwZXJjZW50Ijp7InVuaXQiOiIlIiwic2l6ZSI6MjAsInNpemVzIjpbXX19LHsiX2lkIjoiZTE3YTE5NSIsInRpdGxlIjoiQ1x1MDBlMWMgdGhcdTFlY2IgdHJcdTAxYjBcdTFlZGRuZyB2XHUwMGUwIHNcdTFlYTNuIHBoXHUxZWE5bSBraFx1MDBlMWMuIiwicGVyY2VudCI6eyJ1bml0IjoiJSIsInNpemUiOjIsInNpemVzIjpbXX19XSwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiI3OCIsImlzTGlua2VkIjpmYWxzZX0sIl9tYXJnaW5fbW9iaWxlIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6dHJ1ZX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9wcm9ncmVzc2JhciJ9\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-b6145ce elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"b6145ce\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-e65d58b\" data-id=\"e65d58b\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjljZDU1ZGQiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkNoXHUwMGZhbmcgdFx1MDBmNGkgY3VuZyBjXHUxZWE1cCBkXHUxZWNiY2ggdlx1MWVlNSB0cm9uZyBuaGlcdTFlYzF1IGxcdTAxMjluaCB2XHUxZWYxYy4iLCJ0aXRsZV9jb2xvciI6IiM4NUIyM0IiLCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZSI6eyJ1bml0IjoicHgiLCJzaXplIjozNiwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodCI6eyJ1bml0IjoicHgiLCJzaXplIjo0OCwic2l6ZXMiOltdfSwic3R5bGUiOiJzdC1saW5lLWxlZnQiLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6dHJ1ZX0sInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjozMCwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzgsInNpemVzIjpbXX0sImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluTGVmdCIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX21vYmlsZSI6eyJ1bml0IjoicHgiLCJzaXplIjoyOCwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF9tb2JpbGUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzQsInNpemVzIjpbXX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-2067062\" data-id=\"2067062\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-956a238 wow fadeInRight elementor-widget elementor-widget-text-editor\" data-id=\"956a238\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Chu00fang tu00f4i luu00f4n u0111u00e1p u1ee9ng yu00eau cu1ea7u thiu1ebft ku1ebf cu1ee7a khu00e1ch hu00e0ng. Ngou1ea1i hu00ecnh vu00e0 ku00edch thu01b0u1edbc lu00e0 nhu1eefng yu1ebfu tu1ed1 chu00fang tu00f4i coi tru1ecdng nhu1ea5t.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-74328b6b elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"74328b6b\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4b9c9796\" data-id=\"4b9c9796\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjFjYTNiNmM1IiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsibGF5b3V0IjoiNCIsImxpbWl0Ijo0LCJmaWx0ZXJfZGVmYXVsdF90aXRsZSI6IkFsbCIsImNvbF9zbSI6IjEiLCJjb2xfbWQiOiIyIiwiY29sX2xnIjoiMiIsImNvbF94bCI6IjIiLCJidXR0b25fdGV4dCI6IlJlYWQgbW9yZSIsInNvdXJjZSI6WyJ2aXxsYW5ndWFnZSJdLCJjdF9hbmltYXRlIjoid293IGZhZGVJblVwIiwib3JkZXIiOiJhc2MifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3Rfc2VydmljZV9ncmlkIn0=\"][elementor-element data=\"eyJpZCI6IjI5NzFiOGIzIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGV4dCI6IkRcdTFlY2JjaCB2XHUxZWU1IGtoXHUwMGUxYyIsImxpbmsiOnsidXJsIjoiXC9zZXJ2aWNlcyIsImlzX2V4dGVybmFsIjoiIiwibm9mb2xsb3ciOiIifSwiYWxpZ24iOiJjZW50ZXIiLCJidG5faWNvbiI6eyJ2YWx1ZSI6Im1hdGVyaWFsIHptZGkgem1kaS1zZXR0aW5ncyIsImxpYnJhcnkiOiJtYXRlcmlhbCJ9LCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6Ii0xMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sInN0eWxlIjoiYnRuLXByZXNldDMiLCJfYW5pbWF0aW9uIjoibm9uZSJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9idXR0b24ifQ==\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-f43d465 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"f43d465\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-5310bd3\" data-id=\"5310bd3\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImJjZmM3MzUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjdGY3X2lkIjoiOTMyIiwibGF5b3V0IjoiMiIsImN0ZjdfdGl0bGUiOiJDXHUwMGYzIGNcdTAwZTJ1IGhcdTFlY2ZpIG5cdTAwZTBvIGtoXHUwMGY0bmc/IiwiY3RmN19kZXNjcmlwdGlvbiI6IkNhbGw6IDgwMCAyNTAgMzY5IiwiY3RmN19waG9uZSI6IjxzcGFuPkNhbGw6PFwvc3Bhbj4gMDk2ODg2MDM4NiIsImVsX3RpdGxlIjoiTGlcdTAwZWFuIGhcdTFlYzcgXHUwMTExXHUxZWMzIG5oXHUxZWFkbiBiXHUwMGUxbyBnaVx1MDBlMToiLCJjdF9hbmltYXRlIjoid293IGZsaXBJblgifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY3RmNyJ9\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-a9b49c5 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"a9b49c5\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n                            <div class=\"elementor-background-overlay\"></div>n                n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-1dcb85a\" data-id=\"1dcb85a\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n                <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-6c560a6 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"6c560a6\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-e82cd67\" data-id=\"e82cd67\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImVmNDE1MTEiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkNoXHUwMGZhbmcgdFx1MDBmNGkgY1x1MDBmMyBxdXkgdHJcdTAwZWNuaCBsXHUwMGUwbSB2aVx1MWVjN2MgXHUwMTExXHUwMWExbiBnaVx1MWVhM24uIiwidGl0bGVfY29sb3IiOiIjZmZmZmZmIiwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzYsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHQiOnsidW5pdCI6InB4Iiwic2l6ZSI6NDgsInNpemVzIjpbXX0sInN0eWxlIjoic3QtbGluZS1sZWZ0IiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOnRydWV9LCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzAsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjM4LCJzaXplcyI6W119LCJjdF9hbmltYXRlIjoid293IGZhZGVJbkxlZnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-3a08737\" data-id=\"3a08737\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-7aa11c2 wow fadeInRight elementor-widget elementor-widget-text-editor\" data-id=\"7aa11c2\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Chu00fang tu00f4i luu00f4n mang u0111u1ebfn cu1ea3m giu00e1c an tu00e2m vu1ec1 chu1ea5t lu01b0u1ee3ng vu00e0 tiu1ebfn u0111u1ed9.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n        [elementor-element data=\"eyJpZCI6IjlkNWVhMzIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X2xpc3QiOlt7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi1yZXNlYXJjaCIsImxpYnJhcnkiOiJmbGF0aWNvbiJ9LCJfaWQiOiIwNTVmZWYyIiwidGl0bGUiOiJUXHUwMGVjbSBjaFx1MDBmYW5nIHRcdTAwZjRpIiwiZGVzY3JpcHRpb24iOiJDaFx1MDBmYW5nIHRcdTAwZjRpIGhpXHUxZWMzdSB0XHUxZWE3bSBxdWFuIHRyXHUxZWNkbmcgY1x1MWVlN2EgdmlcdTFlYzdjIHhcdTFlZWQgbFx1MDBmZCBtXHUxZWQ3aSBkXHUxZWYxIFx1MDBlMW4gdGhlbyBtXHUxZWQ5dCBjXHUwMGUxY2ggdGlcdTFlYmZwIGNcdTFlYWRuIHRvXHUwMGUwbiBkaVx1MWVjN24uIiwiYnRuX2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9fSx7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi1uZXR3b3JrIiwibGlicmFyeSI6ImZsYXRpY29uIn0sIl9pZCI6IjM5ZTE0YjgiLCJ0aXRsZSI6IktcdTFlYmZ0IG5cdTFlZDFpIHZcdTFlZGJpIGNoXHUwMGZhbmcgdFx1MDBmNGkiLCJkZXNjcmlwdGlvbiI6Ilx1MDExMGlcdTFlYzF1IGxcdTAwZTBtIGNoXHUwMGZhbmcgdFx1MDBmNGkga2hcdTAwZTFjIGJpXHUxZWM3dCBzbyB2XHUxZWRiaSBjXHUwMGUxYyBjXHUwMGY0bmcgdHkga2hcdTAwZTFjIGxcdTAwZTAgY2h1eVx1MDBlYW4gbVx1MDBmNG4gdHJvbmcgdmlcdTFlYzdjIHRcdTFlYTFvIHJhIGNcdTAwZTFjIGdpXHUxZWEzaSBwaFx1MDBlMXAgdFx1MDBmOXkgY2hcdTFlYzluaC4iLCJidG5fbGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn19LHsiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZsYXRpY29uIGZsYXRpY29uLXdhbGxldCIsImxpYnJhcnkiOiJmbGF0aWNvbiJ9LCJfaWQiOiJmNWUxMGU4IiwidGl0bGUiOiJUaGFuaCB0b1x1MDBlMW4gY2hvIGNoXHUwMGZhbmcgdFx1MDBmNGkiLCJkZXNjcmlwdGlvbiI6IkNoXHUwMGZhbmcgdFx1MDBmNGkga2h1eVx1MWViZm4ga2hcdTAwZWRjaCBtXHUxZWQ3aSB0aFx1MDBlMG5oIHZpXHUwMGVhbiB0cm9uZyBcdTAxMTFcdTFlZDlpIG5nXHUwMTY5IHRyXHUxZWRmIHRoXHUwMGUwbmggcGhpXHUwMGVhbiBiXHUxZWEzbiB0XHUxZWQxdCBuaFx1MWVhNXQgY1x1MWVlN2EgY2hcdTAwZWRuaCBtXHUwMGVjbmgsIHRcdTFlYTFvIHJhIG1cdTFlZDl0IG1cdTAwZjRpIHRyXHUwMWIwXHUxZWRkbmcgbGluaCBob1x1MWVhMXQgdlx1MDBlMCBoXHUxZWUzcCB0XHUwMGUxYy4iLCJidG5fbGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn19LHsiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZsYXRpY29uIGZsYXRpY29uLXRhcmdldCIsImxpYnJhcnkiOiJmbGF0aWNvbiJ9LCJfaWQiOiI4ODM5OTY5IiwidGl0bGUiOiJcdTAxMTBcdTFlYTF0IFx1MDExMVx1MDFiMFx1MWVlM2MgXHUwMWIwXHUxZWRiYyBtXHUwMWExIGNcdTFlZTdhIGJcdTFlYTFuIiwiZGVzY3JpcHRpb24iOiJDXHUxZWQxdCBsXHUwMGY1aSBjXHUxZWU3YSBtXHUxZWQ3aSBkb2FuaCBuZ2hpXHUxZWM3cCBsXHUwMGUwIG5oXHUxZWVmbmcgZ2lcdTFlYTNpIHBoXHUwMGUxcCBcdTAxMTFcdTFlZDljIFx1MDExMVx1MDBlMW8sIHRydXlcdTFlYzFuIGNcdTFlYTNtIGhcdTFlZTluZyBjaG8gc1x1MWVmMSBcdTAxMTFcdTFlZDVpIG1cdTFlZGJpIHZcdTAwZTAgcGhcdTAwZTF0IHRyaVx1MWVjM24uIiwiYnRuX2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9fV0sInRpdGxlX2NvbG9yIjoiI2ZmZmZmZiIsImRlc2NyaXB0aW9uX2NvbG9yIjoiI0ZGRkZGRiIsImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X3Byb2Nlc3MifQ==\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-79ee8ab elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"79ee8ab\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4af1814\" data-id=\"4af1814\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n                <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-505fb45 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"505fb45\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-7223f1c\" data-id=\"7223f1c\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-e7c238e elementor-widget elementor-widget-google_maps\" data-id=\"e7c238e\" data-element_type=\"widget\" data-widget_type=\"google_maps.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-custom-embed\">nttt<iframe loading=\"lazy\"ntttttsrc=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"nttttttitle=\"10u00b057&#039;11.2&quot;N 106u00b045&#039;13.0&quot;E\"ntttttaria-label=\"10u00b057&#039;11.2&quot;N 106u00b045&#039;13.0&quot;E\"nttt></iframe>ntt</div>ntttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-0225539\" data-id=\"0225539\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjUxZDU0M2EiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkxpXHUwMGVhbiBoXHUxZWM3IHZcdTFlZGJpIGNoXHUwMGZhbmcgdFx1MDBmNGkgYlx1MWVhNXQgY1x1MWVlOSBsXHUwMGZhYyBuXHUwMGUwbyBuXHUxZWJmdSBiXHUxZWExbiBjXHUxZWE3biBzXHUxZWYxIGdpXHUwMGZhcCBcdTAxMTFcdTFlZTEuLi4iLCJ0aXRsZV9jb2xvciI6IiM4NUIyM0IiLCJfcGFkZGluZyI6eyJ1bml0IjoiJSIsInRvcCI6IjAiLCJyaWdodCI6IjUiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV9zcGFjZV9ib3R0b20iOnsidW5pdCI6InB4Iiwic2l6ZSI6MzMsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjozMCwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzgsInNpemVzIjpbXX0sImN0X2FuaW1hdGUiOiJ3b3cgZmxpcEluWCIsIl9wYWRkaW5nX3RhYmxldCI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"][elementor-element data=\"eyJpZCI6ImVkMGRjMWIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjdGY3X2lkIjoiOTc0Iiwic3R5bGVfbDEiOiJzdHlsZTIifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY3RmNyJ9\"]            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                    </div>n        </section>n        \",\"scripts\":[\"jquery-numerator\",\"ct-counter-widget-js\",\"ct-progressbar-widget-js\",\"imagesloaded\",\"isotope\",\"ct-post-masonry-widget-js\",\"ct-post-grid-widget-js\"],\"styles\":[\"widget-text-editor\",\"e-animation-slideInUp\",\"widget-image\",\"widget-google_maps\"]}}'),(10286,3161,'_elementor_edit_mode','builder'),(10287,3161,'_elementor_template_type','wp-page'),(10288,3161,'_elementor_version','3.24.7'),(10289,3161,'_wp_page_template','default'),(10290,3161,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i cung c\\u1ea5p nhi\\u1ec1u lo\\u1ea1i s\\u1ea3n ph\\u1ea9m cho ng\\u00e0nh c\\u00f4ng nghi\\u1ec7p c\\u01a1 kh\\u00ed tr\\u00ean to\\u00e0n Vi\\u1ec7t Nam v\\u00e0 qu\\u1ed1c t\\u1ebf, \\u0111\\u1eb7c bi\\u1ec7t t\\u1ea1i c\\u00e1c th\\u1ecb tr\\u01b0\\u1eddng tr\\u1ecdng \\u0111i\\u1ec3m nh\\u01b0 Nh\\u1eadt B\\u1ea3n, H\\u00e0n Qu\\u1ed1c, Hoa K\\u1ef3 v\\u00e0 \\u00dac. Ch\\u00fang t\\u00f4i c\\u0169ng c\\u00f3 kinh nghi\\u1ec7m xu\\u1ea5t kh\\u1ea9u \\u0111\\u1ebfn c\\u00e1c th\\u1ecb tr\\u01b0\\u1eddng n\\u00e0y.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Th\\u1ebf m\\u1ea1nh l\\u1edbn nh\\u1ea5t c\\u1ee7a ch\\u00fang t\\u00f4i n\\u1eb1m \\u1edf \\u0111\\u1ed9i ng\\u0169 nh\\u00e2n l\\u1ef1c tr\\u1ebb trung, \\u0111am m\\u00ea h\\u1ecdc h\\u1ecfi, s\\u00e1ng t\\u1ea1o v\\u00e0 t\\u1ef1 tin, c\\u00f3 kh\\u1ea3 n\\u0103ng s\\u1ea3n xu\\u1ea5t \\u0111a d\\u1ea1ng c\\u00e1c s\\u1ea3n ph\\u1ea9m c\\u01a1 kh\\u00ed v\\u1edbi ch\\u1ea5t l\\u01b0\\u1ee3ng lu\\u00f4n \\u1ed5n \\u0111\\u1ecbnh.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/youtu.be\\/vUCVqLmXSPM?si=NDYrSC8zPIUGPj3l\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Kh\\u00e1ch h\\u00e0ng\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Nh\\u00e2n s\\u1ef1\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"S\\u1ed1 \\u0111\\u01a1n h\\u00e0ng m\\u1ed7i n\\u0103m\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ch\\u00fang t\\u00f4i \\u0111\\u00e3 b\\u1eaft \\u0111\\u1ea7u m\\u1edf m\\u1ed9t c\\u1eeda h\\u00e0ng tr\\u00ean Alibaba \\u0111\\u1ec3 k\\u1ebft n\\u1ed1i v\\u1edbi c\\u00e1c \\u0111\\u01a1n h\\u00e0ng t\\u1eeb kh\\u1eafp n\\u01a1i tr\\u00ean th\\u1ebf gi\\u1edbi.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0e89391\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i n\\u1ed7 l\\u1ef1c tr\\u1edf th\\u00e0nh m\\u1ed9t trong nh\\u1eefng c\\u00f4ng ty ch\\u1ebf bi\\u1ebfn c\\u01a1 kh\\u00ed h\\u00e0ng \\u0111\\u1ea7u c\\u1ee7a Vi\\u1ec7t Nam, cung c\\u1ea5p ra th\\u1ecb tr\\u01b0\\u1eddng qu\\u1ed1c t\\u1ebf v\\u00e0o n\\u0103m 2030. Trong t\\u01b0\\u01a1ng lai, ch\\u00fang t\\u00f4i h\\u01b0\\u1edbng \\u0111\\u1ebfn vi\\u1ec7c s\\u1ea3n xu\\u1ea5t c\\u00e1c s\\u1ea3n ph\\u1ea9m m\\u00e1y m\\u00f3c ho\\u00e0n ch\\u1ec9nh \\u0111\\u1ec3 giao tr\\u1ef1c ti\\u1ebfp \\u0111\\u1ebfn ng\\u01b0\\u1eddi s\\u1eed d\\u1ee5ng cu\\u1ed1i.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>M\\u1ee5c ti\\u00eau \\u0111\\u1ea1t \\u0111\\u01b0\\u1ee3c v\\u00e0o n\\u0103m 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"\\u0110\\u00f4ng \\u00c1 (Nh\\u1eadt B\\u1ea3n, H\\u00e0n Qu\\u1ed1c, v.v.): Xu\\u1ea5t kh\\u1ea9u c\\u00e1c linh ki\\u1ec7n m\\u00e1y m\\u00f3c thay th\\u1ebf, ph\\u1ee5 ki\\u1ec7n xe m\\u00e1y v\\u00e0 \\u00f4 t\\u00f4, ph\\u1ee5 ki\\u1ec7n ng\\u00e0nh n\\u01b0\\u1edbc, khu\\u00f4n m\\u1eabu v\\u00e0 c\\u00e1c b\\u1ed9 ph\\u1eadn c\\u01a1 kh\\u00ed kh\\u00e1c.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Ch\\u00e2u \\u00c2u (\\u0110\\u1ee9c, Bulgaria, H\\u00e0 Lan, v.v.): S\\u1ea3n xu\\u1ea5t khu\\u00f4n jig cho v\\u00f2ng bi \\u00f4 t\\u00f4 v\\u00e0 c\\u00e1c b\\u1ed9 ph\\u1eadn h\\u1ed9p \\u0111i\\u1ec7n cho m\\u00e1y m\\u00f3c t\\u1ef1 \\u0111\\u1ed9ng h\\u00f3a.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"Hoa K\\u1ef3: C\\u00e1c s\\u1ea3n ph\\u1ea9m li\\u00ean quan \\u0111\\u1ebfn thi\\u1ebft b\\u1ecb y t\\u1ebf, quang h\\u1ecdc v\\u00e0 thi\\u1ebft b\\u1ecb \\u00e2m thanh.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"\\u00dac: S\\u1ea3n ph\\u1ea9m kim lo\\u1ea1i t\\u1ea5m.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vi\\u1ec7t Nam: M\\u00e1y t\\u1ef1 \\u0111\\u1ed9ng h\\u00f3a nh\\u1ecf; bu l\\u00f4ng xe m\\u00e1y v\\u00e0 \\u00f4 t\\u00f4; s\\u1ea3n ph\\u1ea9m trong ng\\u00e0nh d\\u1ea7u kh\\u00ed.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"C\\u00e1c th\\u1ecb tr\\u01b0\\u1eddng v\\u00e0 s\\u1ea3n ph\\u1ea9m kh\\u00e1c.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i cung c\\u1ea5p d\\u1ecbch v\\u1ee5 trong nhi\\u1ec1u l\\u0129nh v\\u1ef1c.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ch\\u00fang t\\u00f4i lu\\u00f4n \\u0111\\u00e1p \\u1ee9ng y\\u00eau c\\u1ea7u thi\\u1ebft k\\u1ebf c\\u1ee7a kh\\u00e1ch h\\u00e0ng. Ngo\\u1ea1i h\\u00ecnh v\\u00e0 k\\u00edch th\\u01b0\\u1edbc l\\u00e0 nh\\u1eefng y\\u1ebfu t\\u1ed1 ch\\u00fang t\\u00f4i coi tr\\u1ecdng nh\\u1ea5t.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"vi|language\"],\"ct_animate\":\"wow fadeInUp\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"D\\u1ecbch v\\u1ee5 kh\\u00e1c\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"C\\u00f3 c\\u00e2u h\\u1ecfi n\\u00e0o kh\\u00f4ng?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Li\\u00ean h\\u1ec7 \\u0111\\u1ec3 nh\\u1eadn b\\u00e1o gi\\u00e1:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i c\\u00f3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c \\u0111\\u01a1n gi\\u1ea3n.\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ch\\u00fang t\\u00f4i lu\\u00f4n mang \\u0111\\u1ebfn c\\u1ea3m gi\\u00e1c an t\\u00e2m v\\u1ec1 ch\\u1ea5t l\\u01b0\\u1ee3ng v\\u00e0 ti\\u1ebfn \\u0111\\u1ed9.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"T\\u00ecm ch\\u00fang t\\u00f4i\",\"description\":\"Ch\\u00fang t\\u00f4i hi\\u1ec3u t\\u1ea7m quan tr\\u1ecdng c\\u1ee7a vi\\u1ec7c x\\u1eed l\\u00fd m\\u1ed7i d\\u1ef1 \\u00e1n theo m\\u1ed9t c\\u00e1ch ti\\u1ebfp c\\u1eadn to\\u00e0n di\\u1ec7n.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"K\\u1ebft n\\u1ed1i v\\u1edbi ch\\u00fang t\\u00f4i\",\"description\":\"\\u0110i\\u1ec1u l\\u00e0m ch\\u00fang t\\u00f4i kh\\u00e1c bi\\u1ec7t so v\\u1edbi c\\u00e1c c\\u00f4ng ty kh\\u00e1c l\\u00e0 chuy\\u00ean m\\u00f4n trong vi\\u1ec7c t\\u1ea1o ra c\\u00e1c gi\\u1ea3i ph\\u00e1p t\\u00f9y ch\\u1ec9nh.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Thanh to\\u00e1n cho ch\\u00fang t\\u00f4i\",\"description\":\"Ch\\u00fang t\\u00f4i khuy\\u1ebfn kh\\u00edch m\\u1ed7i th\\u00e0nh vi\\u00ean trong \\u0111\\u1ed9i ng\\u0169 tr\\u1edf th\\u00e0nh phi\\u00ean b\\u1ea3n t\\u1ed1t nh\\u1ea5t c\\u1ee7a ch\\u00ednh m\\u00ecnh, t\\u1ea1o ra m\\u1ed9t m\\u00f4i tr\\u01b0\\u1eddng linh ho\\u1ea1t v\\u00e0 h\\u1ee3p t\\u00e1c.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"\\u0110\\u1ea1t \\u0111\\u01b0\\u1ee3c \\u01b0\\u1edbc m\\u01a1 c\\u1ee7a b\\u1ea1n\",\"description\":\"C\\u1ed1t l\\u00f5i c\\u1ee7a m\\u1ed7i doanh nghi\\u1ec7p l\\u00e0 nh\\u1eefng gi\\u1ea3i ph\\u00e1p \\u0111\\u1ed9c \\u0111\\u00e1o, truy\\u1ec1n c\\u1ea3m h\\u1ee9ng cho s\\u1ef1 \\u0111\\u1ed5i m\\u1edbi v\\u00e0 ph\\u00e1t tri\\u1ec3n.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Li\\u00ean h\\u1ec7 v\\u1edbi ch\\u00fang t\\u00f4i b\\u1ea5t c\\u1ee9 l\\u00fac n\\u00e0o n\\u1ebfu b\\u1ea1n c\\u1ea7n s\\u1ef1 gi\\u00fap \\u0111\\u1ee1...\",\"title_color\":\"#85B23B\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(10291,3161,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(10292,3161,'_elementor_css','a:6:{s:4:\"time\";i:1742177087;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:8:\"material\";i:1;s:8:\"flaticon\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(10293,3161,'_elementor_page_assets','a:2:{s:6:\"styles\";a:4:{i:0;s:18:\"widget-text-editor\";i:1;s:21:\"e-animation-slideInUp\";i:2;s:12:\"widget-image\";i:3;s:18:\"widget-google_maps\";}s:7:\"scripts\";a:9:{i:0;s:16:\"jquery-numerator\";i:1;s:20:\"ct-counter-widget-js\";i:2;s:11:\"progressbar\";i:3;s:16:\"waypoints-lib-js\";i:4;s:24:\"ct-progressbar-widget-js\";i:5;s:12:\"imagesloaded\";i:6;s:7:\"isotope\";i:7;s:25:\"ct-post-masonry-widget-js\";i:8;s:22:\"ct-post-grid-widget-js\";}}'),(10294,3161,'_elementor_element_cache','{\"timeout\":1742263487,\"value\":{\"content\":\"        <section class=\"elementor-section elementor-top-section elementor-element elementor-element-2d2b67a elementor-section-stretched elementor-section-full_width slider-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"2d2b67a\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-no \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-d1bb387\" data-id=\"d1bb387\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImNjODZmNGQiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJyZXZzbGlkZXJ0aXRsZSI6IkhvbWUgMSIsInNob3J0Y29kZSI6IltyZXZfc2xpZGVyIGFsaWFzPVwiaG9tZS0xXCJdW1wvcmV2X3NsaWRlcl0ifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoic2xpZGVyX3Jldm9sdXRpb24ifQ==\"]        <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-2cea906 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"2cea906\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-8e117d0\" data-id=\"8e117d0\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjI0YjYyY2MiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkNoXHUwMGZhbmcgdFx1MDBmNGkgY3VuZyBjXHUxZWE1cCBuaGlcdTFlYzF1IGxvXHUxZWExaSBzXHUxZWEzbiBwaFx1MWVhOW0gY2hvIG5nXHUwMGUwbmggY1x1MDBmNG5nIG5naGlcdTFlYzdwIGNcdTAxYTEga2hcdTAwZWQgdHJcdTAwZWFuIHRvXHUwMGUwbiBWaVx1MWVjN3QgTmFtIHZcdTAwZTAgcXVcdTFlZDFjIHRcdTFlYmYsIFx1MDExMVx1MWViN2MgYmlcdTFlYzd0IHRcdTFlYTFpIGNcdTAwZTFjIHRoXHUxZWNiIHRyXHUwMWIwXHUxZWRkbmcgdHJcdTFlY2RuZyBcdTAxMTFpXHUxZWMzbSBuaFx1MDFiMCBOaFx1MWVhZHQgQlx1MWVhM24sIEhcdTAwZTBuIFF1XHUxZWQxYywgSG9hIEtcdTFlZjMgdlx1MDBlMCBcdTAwZGFjLiBDaFx1MDBmYW5nIHRcdTAwZjRpIGNcdTAxNjluZyBjXHUwMGYzIGtpbmggbmdoaVx1MWVjN20geHVcdTFlYTV0IGtoXHUxZWE5dSBcdTAxMTFcdTFlYmZuIGNcdTAwZTFjIHRoXHUxZWNiIHRyXHUwMWIwXHUxZWRkbmcgblx1MDBlMHkuIiwidGl0bGVfY29sb3IiOiIjODVCMjNCIiwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzYsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHQiOnsidW5pdCI6InB4Iiwic2l6ZSI6NDgsInNpemVzIjpbXX0sInN0eWxlIjoic3QtbGluZS1sZWZ0IiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMTYiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjoyNiwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzQsInNpemVzIjpbXX0sImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluVXAifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-909b449 wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"909b449\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Thu1ebf mu1ea1nh lu1edbn nhu1ea5t cu1ee7a chu00fang tu00f4i nu1eb1m u1edf u0111u1ed9i ngu0169 nhu00e2n lu1ef1c tru1ebb trung, u0111am mu00ea hu1ecdc hu1ecfi, su00e1ng tu1ea1o vu00e0 tu1ef1 tin, cu00f3 khu1ea3 nu0103ng su1ea3n xuu1ea5t u0111a du1ea1ng cu00e1c su1ea3n phu1ea9m cu01a1 khu00ed vu1edbi chu1ea5t lu01b0u1ee3ng luu00f4n u1ed5n u0111u1ecbnh.</p>tttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImM0YTIwMjgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJpbWFnZSI6eyJ1cmwiOiIiLCJpZCI6IiJ9LCJ2aWRlb19saW5rIjoiaHR0cHM6XC9cL3d3dy55b3V0dWJlLmNvbVwvd2F0Y2g/dj1vVlE0X1BJcWd6OCIsImJ0bl92aWRlb19zdHlsZSI6InN0eWxlMyIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMzEiLCJyaWdodCI6IjM4IiwiYm90dG9tIjoiMCIsImxlZnQiOiI3OCIsImlzTGlua2VkIjpmYWxzZX0sIl9jc3NfY2xhc3NlcyI6ImVsLWlubGluZSB3b3cgZmFkZUluUmlnaHQiLCJfbWFyZ2luX3RhYmxldCI6eyJ1bml0IjoicHgiLCJ0b3AiOiIzMSIsInJpZ2h0IjoiMjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjY4IiwiaXNMaW5rZWQiOmZhbHNlfSwiX2FuaW1hdGlvbiI6InNsaWRlSW5VcCIsIl9tYXJnaW5fbW9iaWxlIjp7InVuaXQiOiJweCIsInRvcCI6IjMxIiwicmlnaHQiOiIyMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF92aWRlb19wbGF5ZXIifQ==\"]tt<div class=\"elementor-element elementor-element-1fd7931 el-inline wow fadeInRight elementor-invisible elementor-widget elementor-widget-image\" data-id=\"1fd7931\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;slideInUp&quot;}\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" class=\"attachment-full size-full wp-image-2542\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-4fff345\" data-id=\"4fff345\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjU5MGYxYmUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjo1MCwic3VmZml4IjoiKyIsInRob3VzYW5kX3NlcGFyYXRvciI6IiIsInRob3VzYW5kX3NlcGFyYXRvcl9jaGFyIjoiICIsInRpdGxlIjoiS2hcdTAwZTFjaCBoXHUwMGUwbmciLCJzaG93X2ljb24iOiJ0cnVlIiwiY291bnRlcl9pY29uIjp7InZhbHVlIjoibWF0ZXJpYWwgem1kaSB6bWRpLWFzc2lnbm1lbnQtY2hlY2siLCJsaWJyYXJ5IjoibWF0ZXJpYWwifSwibnVtYmVyX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjQxIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJfY3NzX2NsYXNzZXMiOiJ0ZXh0LWNlbnRlci1zbSIsImljb25fdHlwZSI6ImltYWdlIiwiaWNvbl9pbWFnZSI6eyJ1cmwiOiJodHRwOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAxOVwvMTJcL2NvdW50ZXItaWNvbi0wMS5wbmciLCJpZCI6MTUxNX0sIl9hbmltYXRpb24iOiJub25lIiwiY3RfYW5pbWF0ZSI6IndvdyBmYWRlSW5VcCJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9jb3VudGVyIn0=\"][elementor-element data=\"eyJpZCI6IjdhNWYyMzkiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjoyMDAsInN1ZmZpeCI6IisiLCJ0aG91c2FuZF9zZXBhcmF0b3IiOiIiLCJ0aG91c2FuZF9zZXBhcmF0b3JfY2hhciI6IiAiLCJ0aXRsZSI6Ik5oXHUwMGUybiBzXHUxZWYxIiwic2hvd19pY29uIjoidHJ1ZSIsImNvdW50ZXJfaWNvbiI6eyJ2YWx1ZSI6Im1hdGVyaWFsIHptZGkgem1kaS1hc3NpZ25tZW50LWNoZWNrIiwibGlicmFyeSI6Im1hdGVyaWFsIn0sIm51bWJlcl90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiI0MSIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwiX2Nzc19jbGFzc2VzIjoidGV4dC1jZW50ZXItc20iLCJpY29uX3R5cGUiOiJpbWFnZSIsImljb25faW1hZ2UiOnsidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMTlcLzEyXC9jb3VudGVyLWljb24tMDIucG5nIiwiaWQiOjE1MTZ9LCJfYW5pbWF0aW9uIjoibm9uZSIsImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluVXAifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY291bnRlciJ9\"][elementor-element data=\"eyJpZCI6IjA0NTMxYzgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjoyMDAwLCJzdWZmaXgiOiIrIiwidGhvdXNhbmRfc2VwYXJhdG9yIjoiIiwidGhvdXNhbmRfc2VwYXJhdG9yX2NoYXIiOiIgIiwidGl0bGUiOiJTXHUxZWQxIFx1MDExMVx1MDFhMW4gaFx1MDBlMG5nIG1cdTFlZDdpIG5cdTAxMDNtIiwic2hvd19pY29uIjoidHJ1ZSIsImNvdW50ZXJfaWNvbiI6eyJ2YWx1ZSI6Im1hdGVyaWFsIHptZGkgem1kaS1hc3NpZ25tZW50LWNoZWNrIiwibGlicmFyeSI6Im1hdGVyaWFsIn0sIm51bWJlcl90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiI0MSIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwiX2Nzc19jbGFzc2VzIjoidGV4dC1jZW50ZXItc20iLCJpY29uX3R5cGUiOiJpbWFnZSIsImljb25faW1hZ2UiOnsidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMTlcLzEyXC9jb3VudGVyLWljb24tMDMucG5nIiwiaWQiOjE1MTd9LCJfYW5pbWF0aW9uIjoibm9uZSIsImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluVXAifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY291bnRlciJ9\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-348ba48\" data-id=\"348ba48\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-ed7e1d0 wow fadeInUp elementor-widget elementor-widget-image\" data-id=\"ed7e1d0\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" class=\"attachment-full size-full wp-image-2571\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntttt<div class=\"elementor-element elementor-element-3b54db6 wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"3b54db6\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Chu00fang tu00f4i u0111u00e3 bu1eaft u0111u1ea7u mu1edf mu1ed9t cu1eeda hu00e0ng tru00ean Alibaba u0111u1ec3 ku1ebft nu1ed1i vu1edbi cu00e1c u0111u01a1n hu00e0ng tu1eeb khu1eafp nu01a1i tru00ean thu1ebf giu1edbi.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-8b70e78 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"8b70e78\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-c2b95bd\" data-id=\"c2b95bd\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-b5a8ba3 elementor-widget elementor-widget-image\" data-id=\"b5a8ba3\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" class=\"attachment-full size-full wp-image-2268\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntttt<div class=\"elementor-element elementor-element-0e89391 elementor-widget elementor-widget-image\" data-id=\"0e89391\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" class=\"attachment-full size-full wp-image-2559\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-de7136f\" data-id=\"de7136f\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6Ijg0MDdhYmUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkNoXHUwMGZhbmcgdFx1MDBmNGkgblx1MWVkNyBsXHUxZWYxYyB0clx1MWVkZiB0aFx1MDBlMG5oIG1cdTFlZDl0IHRyb25nIG5oXHUxZWVmbmcgY1x1MDBmNG5nIHR5IGNoXHUxZWJmIGJpXHUxZWJmbiBjXHUwMWExIGtoXHUwMGVkIGhcdTAwZTBuZyBcdTAxMTFcdTFlYTd1IGNcdTFlZTdhIFZpXHUxZWM3dCBOYW0sIGN1bmcgY1x1MWVhNXAgcmEgdGhcdTFlY2IgdHJcdTAxYjBcdTFlZGRuZyBxdVx1MWVkMWMgdFx1MWViZiB2XHUwMGUwbyBuXHUwMTAzbSAyMDMwLiBUcm9uZyB0XHUwMWIwXHUwMWExbmcgbGFpLCBjaFx1MDBmYW5nIHRcdTAwZjRpIGhcdTAxYjBcdTFlZGJuZyBcdTAxMTFcdTFlYmZuIHZpXHUxZWM3YyBzXHUxZWEzbiB4dVx1MWVhNXQgY1x1MDBlMWMgc1x1MWVhM24gcGhcdTFlYTltIG1cdTAwZTF5IG1cdTAwZjNjIGhvXHUwMGUwbiBjaFx1MWVjOW5oIFx1MDExMVx1MWVjMyBnaWFvIHRyXHUxZWYxYyB0aVx1MWViZnAgXHUwMTExXHUxZWJmbiBuZ1x1MDFiMFx1MWVkZGkgc1x1MWVlZCBkXHUxZWU1bmcgY3VcdTFlZDFpLiIsInRpdGxlX2NvbG9yIjoiIzg1QjIzQiIsInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplIjp7InVuaXQiOiJweCIsInNpemUiOjM2LCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0Ijp7InVuaXQiOiJweCIsInNpemUiOjQ4LCJzaXplcyI6W119LCJzdHlsZSI6InN0LWxpbmUtbGVmdCIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiLTkiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV9zcGFjZV9ib3R0b20iOnsidW5pdCI6InB4Iiwic2l6ZSI6MTcsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjozMCwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzgsInNpemVzIjpbXX0sImN0X2FuaW1hdGUiOiJ3b3cgZmxpcEluWCIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX21vYmlsZSI6eyJ1bml0IjoicHgiLCJzaXplIjoyOCwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF9tb2JpbGUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzQsInNpemVzIjpbXX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]tt<div class=\"elementor-element elementor-element-0c8497c wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"0c8497c\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Mu1ee5c tiu00eau u0111u1ea1t u0111u01b0u1ee3c vu00e0o nu0103m 2026:</p>tttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6IjQ3NTRlZDYiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJwcm9ncmVzc2Jhcl9saXN0IjpbeyJ0aXRsZSI6Ilx1MDExMFx1MDBmNG5nIFx1MDBjMSAoTmhcdTFlYWR0IEJcdTFlYTNuLCBIXHUwMGUwbiBRdVx1MWVkMWMsIHYudi4pOiBYdVx1MWVhNXQga2hcdTFlYTl1IGNcdTAwZTFjIGxpbmgga2lcdTFlYzduIG1cdTAwZTF5IG1cdTAwZjNjIHRoYXkgdGhcdTFlYmYsIHBoXHUxZWU1IGtpXHUxZWM3biB4ZSBtXHUwMGUxeSB2XHUwMGUwIFx1MDBmNCB0XHUwMGY0LCBwaFx1MWVlNSBraVx1MWVjN24gbmdcdTAwZTBuaCBuXHUwMWIwXHUxZWRiYywga2h1XHUwMGY0biBtXHUxZWFidSB2XHUwMGUwIGNcdTAwZTFjIGJcdTFlZDkgcGhcdTFlYWRuIGNcdTAxYTEga2hcdTAwZWQga2hcdTAwZTFjLiIsInByb2dyZXNzX3R5cGUiOiIiLCJwZXJjZW50Ijp7InVuaXQiOiIlIiwic2l6ZSI6MzAsInNpemVzIjpbXX0sImRpc3BsYXlfcGVyY2VudGFnZSI6ImhpZGUiLCJpbm5lcl90ZXh0IjoiV2ViIERlc2lnbmVyIiwiX2lkIjoiOGI0YmNkNiJ9LHsidGl0bGUiOiJDaFx1MDBlMnUgXHUwMGMydSAoXHUwMTEwXHUxZWU5YywgQnVsZ2FyaWEsIEhcdTAwZTAgTGFuLCB2LnYuKTogU1x1MWVhM24geHVcdTFlYTV0IGtodVx1MDBmNG4gamlnIGNobyB2XHUwMGYybmcgYmkgXHUwMGY0IHRcdTAwZjQgdlx1MDBlMCBjXHUwMGUxYyBiXHUxZWQ5IHBoXHUxZWFkbiBoXHUxZWQ5cCBcdTAxMTFpXHUxZWM3biBjaG8gbVx1MDBlMXkgbVx1MDBmM2MgdFx1MWVmMSBcdTAxMTFcdTFlZDluZyBoXHUwMGYzYS4iLCJwcm9ncmVzc190eXBlIjoiIiwicGVyY2VudCI6eyJ1bml0IjoiJSIsInNpemUiOjEwLCJzaXplcyI6W119LCJkaXNwbGF5X3BlcmNlbnRhZ2UiOiJoaWRlIiwiaW5uZXJfdGV4dCI6IldlYiBEZXNpZ25lciIsIl9pZCI6IjZlMGY4NzcifSx7InRpdGxlIjoiSG9hIEtcdTFlZjM6IENcdTAwZTFjIHNcdTFlYTNuIHBoXHUxZWE5bSBsaVx1MDBlYW4gcXVhbiBcdTAxMTFcdTFlYmZuIHRoaVx1MWViZnQgYlx1MWVjYiB5IHRcdTFlYmYsIHF1YW5nIGhcdTFlY2RjIHZcdTAwZTAgdGhpXHUxZWJmdCBiXHUxZWNiIFx1MDBlMm0gdGhhbmguIiwicHJvZ3Jlc3NfdHlwZSI6IiIsInBlcmNlbnQiOnsidW5pdCI6IiUiLCJzaXplIjozMCwic2l6ZXMiOltdfSwiZGlzcGxheV9wZXJjZW50YWdlIjoic2hvdyIsIl9pZCI6IjIyMmViODEifSx7Il9pZCI6IjVlZWNjYjYiLCJ0aXRsZSI6Ilx1MDBkYWM6IFNcdTFlYTNuIHBoXHUxZWE5bSBraW0gbG9cdTFlYTFpIHRcdTFlYTVtLiIsInBlcmNlbnQiOnsidW5pdCI6IiUiLCJzaXplIjo4LCJzaXplcyI6W119fSx7Il9pZCI6IjEwZTU3NTAiLCJ0aXRsZSI6IlZpXHUxZWM3dCBOYW06IE1cdTAwZTF5IHRcdTFlZjEgXHUwMTExXHUxZWQ5bmcgaFx1MDBmM2EgbmhcdTFlY2Y7IGJ1IGxcdTAwZjRuZyB4ZSBtXHUwMGUxeSB2XHUwMGUwIFx1MDBmNCB0XHUwMGY0OyBzXHUxZWEzbiBwaFx1MWVhOW0gdHJvbmcgbmdcdTAwZTBuaCBkXHUxZWE3dSBraFx1MDBlZC4iLCJwZXJjZW50Ijp7InVuaXQiOiIlIiwic2l6ZSI6MjAsInNpemVzIjpbXX19LHsiX2lkIjoiZTE3YTE5NSIsInRpdGxlIjoiQ1x1MDBlMWMgdGhcdTFlY2IgdHJcdTAxYjBcdTFlZGRuZyB2XHUwMGUwIHNcdTFlYTNuIHBoXHUxZWE5bSBraFx1MDBlMWMuIiwicGVyY2VudCI6eyJ1bml0IjoiJSIsInNpemUiOjIsInNpemVzIjpbXX19XSwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiI3OCIsImlzTGlua2VkIjpmYWxzZX0sIl9tYXJnaW5fbW9iaWxlIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6dHJ1ZX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9wcm9ncmVzc2JhciJ9\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-b6145ce elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"b6145ce\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-e65d58b\" data-id=\"e65d58b\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjljZDU1ZGQiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkNoXHUwMGZhbmcgdFx1MDBmNGkgY3VuZyBjXHUxZWE1cCBkXHUxZWNiY2ggdlx1MWVlNSB0cm9uZyBuaGlcdTFlYzF1IGxcdTAxMjluaCB2XHUxZWYxYy4iLCJ0aXRsZV9jb2xvciI6IiM4NUIyM0IiLCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZSI6eyJ1bml0IjoicHgiLCJzaXplIjozNiwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodCI6eyJ1bml0IjoicHgiLCJzaXplIjo0OCwic2l6ZXMiOltdfSwic3R5bGUiOiJzdC1saW5lLWxlZnQiLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6dHJ1ZX0sInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjozMCwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzgsInNpemVzIjpbXX0sImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluTGVmdCIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX21vYmlsZSI6eyJ1bml0IjoicHgiLCJzaXplIjoyOCwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF9tb2JpbGUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzQsInNpemVzIjpbXX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-2067062\" data-id=\"2067062\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-956a238 wow fadeInRight elementor-widget elementor-widget-text-editor\" data-id=\"956a238\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Chu00fang tu00f4i luu00f4n u0111u00e1p u1ee9ng yu00eau cu1ea7u thiu1ebft ku1ebf cu1ee7a khu00e1ch hu00e0ng. Ngou1ea1i hu00ecnh vu00e0 ku00edch thu01b0u1edbc lu00e0 nhu1eefng yu1ebfu tu1ed1 chu00fang tu00f4i coi tru1ecdng nhu1ea5t.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-74328b6b elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"74328b6b\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4b9c9796\" data-id=\"4b9c9796\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjFjYTNiNmM1IiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsibGF5b3V0IjoiNCIsImxpbWl0Ijo0LCJmaWx0ZXJfZGVmYXVsdF90aXRsZSI6IkFsbCIsImNvbF9zbSI6IjEiLCJjb2xfbWQiOiIyIiwiY29sX2xnIjoiMiIsImNvbF94bCI6IjIiLCJidXR0b25fdGV4dCI6IlJlYWQgbW9yZSIsInNvdXJjZSI6WyJ2aXxsYW5ndWFnZSJdLCJjdF9hbmltYXRlIjoid293IGZhZGVJblVwIiwib3JkZXIiOiJhc2MifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3Rfc2VydmljZV9ncmlkIn0=\"][elementor-element data=\"eyJpZCI6IjI5NzFiOGIzIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGV4dCI6IkRcdTFlY2JjaCB2XHUxZWU1IGtoXHUwMGUxYyIsImxpbmsiOnsidXJsIjoiXC9zZXJ2aWNlcyIsImlzX2V4dGVybmFsIjoiIiwibm9mb2xsb3ciOiIifSwiYWxpZ24iOiJjZW50ZXIiLCJidG5faWNvbiI6eyJ2YWx1ZSI6Im1hdGVyaWFsIHptZGkgem1kaS1zZXR0aW5ncyIsImxpYnJhcnkiOiJtYXRlcmlhbCJ9LCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6Ii0xMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sInN0eWxlIjoiYnRuLXByZXNldDMiLCJfYW5pbWF0aW9uIjoibm9uZSJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9idXR0b24ifQ==\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-f43d465 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"f43d465\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-5310bd3\" data-id=\"5310bd3\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImJjZmM3MzUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjdGY3X2lkIjoiOTMyIiwibGF5b3V0IjoiMiIsImN0ZjdfdGl0bGUiOiJDXHUwMGYzIGNcdTAwZTJ1IGhcdTFlY2ZpIG5cdTAwZTBvIGtoXHUwMGY0bmc/IiwiY3RmN19kZXNjcmlwdGlvbiI6IkNhbGw6IDgwMCAyNTAgMzY5IiwiY3RmN19waG9uZSI6IjxzcGFuPkNhbGw6PFwvc3Bhbj4gMDk2ODg2MDM4NiIsImVsX3RpdGxlIjoiTGlcdTAwZWFuIGhcdTFlYzcgXHUwMTExXHUxZWMzIG5oXHUxZWFkbiBiXHUwMGUxbyBnaVx1MDBlMToiLCJjdF9hbmltYXRlIjoid293IGZsaXBJblgifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY3RmNyJ9\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-a9b49c5 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"a9b49c5\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n                            <div class=\"elementor-background-overlay\"></div>n                n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-1dcb85a\" data-id=\"1dcb85a\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n                <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-6c560a6 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"6c560a6\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-e82cd67\" data-id=\"e82cd67\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImVmNDE1MTEiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkNoXHUwMGZhbmcgdFx1MDBmNGkgY1x1MDBmMyBxdXkgdHJcdTAwZWNuaCBsXHUwMGUwbSB2aVx1MWVjN2MgXHUwMTExXHUwMWExbiBnaVx1MWVhM24uIiwidGl0bGVfY29sb3IiOiIjZmZmZmZmIiwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzYsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHQiOnsidW5pdCI6InB4Iiwic2l6ZSI6NDgsInNpemVzIjpbXX0sInN0eWxlIjoic3QtbGluZS1sZWZ0IiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOnRydWV9LCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzAsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjM4LCJzaXplcyI6W119LCJjdF9hbmltYXRlIjoid293IGZhZGVJbkxlZnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-3a08737\" data-id=\"3a08737\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-7aa11c2 wow fadeInRight elementor-widget elementor-widget-text-editor\" data-id=\"7aa11c2\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Chu00fang tu00f4i luu00f4n mang u0111u1ebfn cu1ea3m giu00e1c an tu00e2m vu1ec1 chu1ea5t lu01b0u1ee3ng vu00e0 tiu1ebfn u0111u1ed9.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n        [elementor-element data=\"eyJpZCI6IjlkNWVhMzIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X2xpc3QiOlt7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi1yZXNlYXJjaCIsImxpYnJhcnkiOiJmbGF0aWNvbiJ9LCJfaWQiOiIwNTVmZWYyIiwidGl0bGUiOiJUXHUwMGVjbSBjaFx1MDBmYW5nIHRcdTAwZjRpIiwiZGVzY3JpcHRpb24iOiJDaFx1MDBmYW5nIHRcdTAwZjRpIGhpXHUxZWMzdSB0XHUxZWE3bSBxdWFuIHRyXHUxZWNkbmcgY1x1MWVlN2EgdmlcdTFlYzdjIHhcdTFlZWQgbFx1MDBmZCBtXHUxZWQ3aSBkXHUxZWYxIFx1MDBlMW4gdGhlbyBtXHUxZWQ5dCBjXHUwMGUxY2ggdGlcdTFlYmZwIGNcdTFlYWRuIHRvXHUwMGUwbiBkaVx1MWVjN24uIiwiYnRuX2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9fSx7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi1uZXR3b3JrIiwibGlicmFyeSI6ImZsYXRpY29uIn0sIl9pZCI6IjM5ZTE0YjgiLCJ0aXRsZSI6IktcdTFlYmZ0IG5cdTFlZDFpIHZcdTFlZGJpIGNoXHUwMGZhbmcgdFx1MDBmNGkiLCJkZXNjcmlwdGlvbiI6Ilx1MDExMGlcdTFlYzF1IGxcdTAwZTBtIGNoXHUwMGZhbmcgdFx1MDBmNGkga2hcdTAwZTFjIGJpXHUxZWM3dCBzbyB2XHUxZWRiaSBjXHUwMGUxYyBjXHUwMGY0bmcgdHkga2hcdTAwZTFjIGxcdTAwZTAgY2h1eVx1MDBlYW4gbVx1MDBmNG4gdHJvbmcgdmlcdTFlYzdjIHRcdTFlYTFvIHJhIGNcdTAwZTFjIGdpXHUxZWEzaSBwaFx1MDBlMXAgdFx1MDBmOXkgY2hcdTFlYzluaC4iLCJidG5fbGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn19LHsiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZsYXRpY29uIGZsYXRpY29uLXdhbGxldCIsImxpYnJhcnkiOiJmbGF0aWNvbiJ9LCJfaWQiOiJmNWUxMGU4IiwidGl0bGUiOiJUaGFuaCB0b1x1MDBlMW4gY2hvIGNoXHUwMGZhbmcgdFx1MDBmNGkiLCJkZXNjcmlwdGlvbiI6IkNoXHUwMGZhbmcgdFx1MDBmNGkga2h1eVx1MWViZm4ga2hcdTAwZWRjaCBtXHUxZWQ3aSB0aFx1MDBlMG5oIHZpXHUwMGVhbiB0cm9uZyBcdTAxMTFcdTFlZDlpIG5nXHUwMTY5IHRyXHUxZWRmIHRoXHUwMGUwbmggcGhpXHUwMGVhbiBiXHUxZWEzbiB0XHUxZWQxdCBuaFx1MWVhNXQgY1x1MWVlN2EgY2hcdTAwZWRuaCBtXHUwMGVjbmgsIHRcdTFlYTFvIHJhIG1cdTFlZDl0IG1cdTAwZjRpIHRyXHUwMWIwXHUxZWRkbmcgbGluaCBob1x1MWVhMXQgdlx1MDBlMCBoXHUxZWUzcCB0XHUwMGUxYy4iLCJidG5fbGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn19LHsiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZsYXRpY29uIGZsYXRpY29uLXRhcmdldCIsImxpYnJhcnkiOiJmbGF0aWNvbiJ9LCJfaWQiOiI4ODM5OTY5IiwidGl0bGUiOiJcdTAxMTBcdTFlYTF0IFx1MDExMVx1MDFiMFx1MWVlM2MgXHUwMWIwXHUxZWRiYyBtXHUwMWExIGNcdTFlZTdhIGJcdTFlYTFuIiwiZGVzY3JpcHRpb24iOiJDXHUxZWQxdCBsXHUwMGY1aSBjXHUxZWU3YSBtXHUxZWQ3aSBkb2FuaCBuZ2hpXHUxZWM3cCBsXHUwMGUwIG5oXHUxZWVmbmcgZ2lcdTFlYTNpIHBoXHUwMGUxcCBcdTAxMTFcdTFlZDljIFx1MDExMVx1MDBlMW8sIHRydXlcdTFlYzFuIGNcdTFlYTNtIGhcdTFlZTluZyBjaG8gc1x1MWVmMSBcdTAxMTFcdTFlZDVpIG1cdTFlZGJpIHZcdTAwZTAgcGhcdTAwZTF0IHRyaVx1MWVjM24uIiwiYnRuX2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9fV0sInRpdGxlX2NvbG9yIjoiI2ZmZmZmZiIsImRlc2NyaXB0aW9uX2NvbG9yIjoiI0ZGRkZGRiIsImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X3Byb2Nlc3MifQ==\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-79ee8ab elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"79ee8ab\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4af1814\" data-id=\"4af1814\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n                <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-505fb45 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"505fb45\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-7223f1c\" data-id=\"7223f1c\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-e7c238e elementor-widget elementor-widget-google_maps\" data-id=\"e7c238e\" data-element_type=\"widget\" data-widget_type=\"google_maps.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-custom-embed\">nttt<iframe loading=\"lazy\"ntttttsrc=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"nttttttitle=\"10u00b057&#039;11.2&quot;N 106u00b045&#039;13.0&quot;E\"ntttttaria-label=\"10u00b057&#039;11.2&quot;N 106u00b045&#039;13.0&quot;E\"nttt></iframe>ntt</div>ntttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-0225539\" data-id=\"0225539\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjUxZDU0M2EiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkxpXHUwMGVhbiBoXHUxZWM3IHZcdTFlZGJpIGNoXHUwMGZhbmcgdFx1MDBmNGkgYlx1MWVhNXQgY1x1MWVlOSBsXHUwMGZhYyBuXHUwMGUwbyBuXHUxZWJmdSBiXHUxZWExbiBjXHUxZWE3biBzXHUxZWYxIGdpXHUwMGZhcCBcdTAxMTFcdTFlZTEuLi4iLCJ0aXRsZV9jb2xvciI6IiM4NUIyM0IiLCJfcGFkZGluZyI6eyJ1bml0IjoiJSIsInRvcCI6IjAiLCJyaWdodCI6IjUiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV9zcGFjZV9ib3R0b20iOnsidW5pdCI6InB4Iiwic2l6ZSI6MzMsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjozMCwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzgsInNpemVzIjpbXX0sImN0X2FuaW1hdGUiOiJ3b3cgZmxpcEluWCIsIl9wYWRkaW5nX3RhYmxldCI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"][elementor-element data=\"eyJpZCI6ImVkMGRjMWIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjdGY3X2lkIjoiOTc0Iiwic3R5bGVfbDEiOiJzdHlsZTIifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY3RmNyJ9\"]            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                    </div>n        </section>n        \",\"scripts\":[\"jquery-numerator\",\"ct-counter-widget-js\",\"ct-progressbar-widget-js\",\"imagesloaded\",\"isotope\",\"ct-post-masonry-widget-js\",\"ct-post-grid-widget-js\"],\"styles\":[\"widget-text-editor\",\"e-animation-slideInUp\",\"widget-image\",\"widget-google_maps\"]}}'),(10295,3162,'_elementor_edit_mode','builder'),(10296,3162,'_elementor_template_type','wp-page'),(10297,3162,'_elementor_version','3.24.7'),(10298,3162,'_wp_page_template','default'),(10299,3162,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u3001\\u30d9\\u30c8\\u30ca\\u30e0\\u5168\\u571f\\u304a\\u3088\\u3073\\u4e16\\u754c\\u4e2d\\u306e\\u6a5f\\u68b0\\u7523\\u696d\\u5411\\u3051\\u306b\\u5e45\\u5e83\\u3044\\u88fd\\u54c1\\u3092\\u63d0\\u4f9b\\u3057\\u3066\\u304a\\u308a\\u3001\\u7279\\u306b\\u65e5\\u672c\\u3001\\u97d3\\u56fd\\u3001\\u30a2\\u30e1\\u30ea\\u30ab\\u3001\\u30aa\\u30fc\\u30b9\\u30c8\\u30e9\\u30ea\\u30a2\\u3068\\u3044\\u3063\\u305f\\u4e3b\\u8981\\u5e02\\u5834\\u3067\\u306e\\u53d6\\u5f15\\u306b\\u529b\\u3092\\u5165\\u308c\\u3066\\u3044\\u307e\\u3059\\u3002\\u307e\\u305f\\u3001\\u3053\\u308c\\u3089\\u306e\\u5e02\\u5834\\u3078\\u306e\\u8f38\\u51fa\\u7d4c\\u9a13\\u3082\\u8c4a\\u5bcc\\u3067\\u3059\\u3002\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306e\\u6700\\u5927\\u306e\\u5f37\\u307f\\u306f\\u3001\\u5b66\\u3076\\u3053\\u3068\\u3001\\u9769\\u65b0\\u3059\\u308b\\u3053\\u3068\\u306b\\u60c5\\u71b1\\u3092\\u6301\\u3061\\u3001\\u81ea\\u4fe1\\u3092\\u6301\\u3063\\u305f\\u82e5\\u3044\\u52b4\\u50cd\\u529b\\u306b\\u3042\\u308a\\u307e\\u3059\\u3002\\u3053\\u306e\\u30c1\\u30fc\\u30e0\\u306f\\u3001\\u5e38\\u306b\\u5b89\\u5b9a\\u3057\\u305f\\u9ad8\\u54c1\\u8cea\\u306e\\u6a5f\\u68b0\\u88fd\\u54c1\\u3092\\u591a\\u69d8\\u306b\\u88fd\\u9020\\u3059\\u308b\\u80fd\\u529b\\u3092\\u5099\\u3048\\u3066\\u3044\\u307e\\u3059\\u3002<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=oVQ4_PIqgz8\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"\\u9867\\u5ba2\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"\\u4eba\\u4e8b\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"\\u5e74\\u9593\\u6ce8\\u6587\\u6570\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306f\\u3001\\u4e16\\u754c\\u4e2d\\u304b\\u3089\\u306e\\u6ce8\\u6587\\u3068\\u63a5\\u7d9a\\u3059\\u308b\\u305f\\u3081\\u306bAlibaba\\u306b\\u5e97\\u8217\\u3092\\u958b\\u8a2d\\u3057\\u59cb\\u3081\\u307e\\u3057\\u305f\\u3002<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0e89391\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u30012030\\u5e74\\u307e\\u3067\\u306b\\u30d9\\u30c8\\u30ca\\u30e0\\u306e\\u4e3b\\u8981\\u306a\\u6a5f\\u68b0\\u52a0\\u5de5\\u4f01\\u696d\\u306e\\u4e00\\u3064\\u3068\\u3057\\u3066\\u3001\\u56fd\\u969b\\u5e02\\u5834\\u306b\\u4f9b\\u7d66\\u3059\\u308b\\u3053\\u3068\\u3092\\u76ee\\u6307\\u3057\\u3066\\u3044\\u307e\\u3059\\u3002\\u5c06\\u6765\\u7684\\u306b\\u306f\\u3001\\u5b8c\\u6210\\u3057\\u305f\\u6a5f\\u68b0\\u88fd\\u54c1\\u3092\\u76f4\\u63a5\\u30a8\\u30f3\\u30c9\\u30e6\\u30fc\\u30b6\\u30fc\\u306b\\u63d0\\u4f9b\\u3059\\u308b\\u3053\\u3068\\u3092\\u76ee\\u6a19\\u3068\\u3057\\u3066\\u3044\\u307e\\u3059\\u3002\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2026\\u5e74\\u307e\\u3067\\u306b\\u9054\\u6210\\u3059\\u308b\\u76ee\\u6a19:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"\\u6771\\u30a2\\u30b8\\u30a2\\uff08\\u65e5\\u672c\\u3001\\u97d3\\u56fd\\u306a\\u3069\\uff09\\uff1a\\u4ea4\\u63db\\u7528\\u6a5f\\u68b0\\u90e8\\u54c1\\u3001\\u30aa\\u30fc\\u30c8\\u30d0\\u30a4\\u304a\\u3088\\u3073\\u81ea\\u52d5\\u8eca\\u306e\\u30a2\\u30af\\u30bb\\u30b5\\u30ea\\u30fc\\u3001\\u6c34\\u7523\\u696d\\u7528\\u306e\\u30d5\\u30a3\\u30c3\\u30c6\\u30a3\\u30f3\\u30b0\\u3001\\u91d1\\u578b\\u3001\\u305d\\u306e\\u4ed6\\u306e\\u6a5f\\u68b0\\u90e8\\u54c1\\u306e\\u8f38\\u51fa\\u3002\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"\\u30e8\\u30fc\\u30ed\\u30c3\\u30d1\\uff08\\u30c9\\u30a4\\u30c4\\u3001\\u30d6\\u30eb\\u30ac\\u30ea\\u30a2\\u3001\\u30aa\\u30e9\\u30f3\\u30c0\\u306a\\u3069\\uff09\\uff1a\\u81ea\\u52d5\\u8eca\\u7528\\u30d9\\u30a2\\u30ea\\u30f3\\u30b0\\u306e\\u6cbb\\u5177\\u304a\\u3088\\u3073\\u81ea\\u52d5\\u5316\\u6a5f\\u68b0\\u306e\\u96fb\\u6c17\\u30dc\\u30c3\\u30af\\u30b9\\u90e8\\u54c1\\u306e\\u751f\\u7523\\u3002\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"\\u30a2\\u30e1\\u30ea\\u30ab\\u5408\\u8846\\u56fd\\uff1a\\u533b\\u7642\\u6a5f\\u5668\\u3001\\u5149\\u5b66\\u6a5f\\u5668\\u3001\\u97f3\\u97ff\\u6a5f\\u5668\\u306b\\u95a2\\u9023\\u3059\\u308b\\u88fd\\u54c1\\u3002\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"\\u30aa\\u30fc\\u30b9\\u30c8\\u30e9\\u30ea\\u30a2\\uff1a\\u677f\\u91d1\\u88fd\\u54c1\\u3002\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"\\u30d9\\u30c8\\u30ca\\u30e0\\uff1a\\u5c0f\\u578b\\u81ea\\u52d5\\u5316\\u6a5f\\u68b0\\u3001\\u30aa\\u30fc\\u30c8\\u30d0\\u30a4\\u304a\\u3088\\u3073\\u81ea\\u52d5\\u8eca\\u306e\\u30dc\\u30eb\\u30c8\\u3001\\u77f3\\u6cb9\\u304a\\u3088\\u3073\\u30ac\\u30b9\\u7523\\u696d\\u306e\\u88fd\\u54c1\\u3002\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"\\u305d\\u306e\\u4ed6\\u306e\\u5e02\\u5834\\u3068\\u88fd\\u54c1\\u3002\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u8907\\u6570\\u306e\\u696d\\u754c\\u3067\\u30b5\\u30fc\\u30d3\\u30b9\\u3092\\u63d0\\u4f9b\\u3057\\u3066\\u3044\\u307e\\u3059\\u3002\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306f\\u5e38\\u306b\\u9867\\u5ba2\\u306e\\u30c7\\u30b6\\u30a4\\u30f3\\u8981\\u6c42\\u3092\\u6e80\\u305f\\u3057\\u307e\\u3059\\u3002\\u5916\\u89b3\\u3068\\u5bf8\\u6cd5\\u306f\\u3001\\u6700\\u3082\\u91cd\\u8981\\u8996\\u3057\\u3066\\u3044\\u308b\\u8981\\u7d20\\u3067\\u3059\\u3002<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"ja|language\"],\"ct_animate\":\"wow fadeInUp\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u305d\\u306e\\u4ed6\\u306e\\u30b5\\u30fc\\u30d3\\u30b9\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"\\u8cea\\u554f\\u304c\\u3042\\u308a\\u307e\\u3059\\u304b\\uff1f\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"\\u898b\\u7a4d\\u3082\\u308a\\u3092\\u53d6\\u5f97\\u3059\\u308b\\u305f\\u3081\\u306e\\u9023\\u7d61\\u5148\\uff1a\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u7c21\\u5358\\u306a\\u4f5c\\u696d\\u624b\\u9806\\u3092\\u6301\\u3063\\u3066\\u3044\\u307e\\u3059\\u3002\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306f\\u5e38\\u306b\\u54c1\\u8cea\\u3068\\u9032\\u6357\\u306b\\u304a\\u3044\\u3066\\u5b89\\u5fc3\\u611f\\u3092\\u63d0\\u4f9b\\u3057\\u307e\\u3059\\u3002<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"\\u79c1\\u305f\\u3061\\u3092\\u63a2\\u3059\",\"description\":\"\\u79c1\\u305f\\u3061\\u306f\\u3001\\u5404\\u30d7\\u30ed\\u30b8\\u30a7\\u30af\\u30c8\\u3092\\u7dcf\\u5408\\u7684\\u306b\\u53d6\\u308a\\u6271\\u3046\\u91cd\\u8981\\u6027\\u3092\\u7406\\u89e3\\u3057\\u3066\\u3044\\u307e\\u3059\\u3002\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"\\u79c1\\u305f\\u3061\\u3068\\u63a5\\u7d9a\\u3059\\u308b\",\"description\":\"\\u79c1\\u305f\\u3061\\u304c\\u4ed6\\u306e\\u30a8\\u30fc\\u30b8\\u30a7\\u30f3\\u30b7\\u30fc\\u3068\\u7570\\u306a\\u308b\\u70b9\\u306f\\u3001\\u30ab\\u30b9\\u30bf\\u30de\\u30a4\\u30ba\\u3055\\u308c\\u305f\\u30bd\\u30ea\\u30e5\\u30fc\\u30b7\\u30e7\\u30f3\\u3092\\u4f5c\\u6210\\u3059\\u308b\\u5c02\\u9580\\u77e5\\u8b58\\u306b\\u3042\\u308a\\u307e\\u3059\\u3002\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"\\u79c1\\u305f\\u3061\\u306b\\u652f\\u6255\\u3046\",\"description\":\"\\u79c1\\u305f\\u3061\\u306f\\u3001\\u5404\\u30c1\\u30fc\\u30e0\\u30e1\\u30f3\\u30d0\\u30fc\\u304c\\u81ea\\u5206\\u81ea\\u8eab\\u306e\\u6700\\u9ad8\\u306e\\u59ff\\u3092\\u76ee\\u6307\\u3059\\u3053\\u3068\\u3092\\u5968\\u52b1\\u3057\\u3001\\u67d4\\u8edf\\u3067\\u5354\\u529b\\u7684\\u306a\\u74b0\\u5883\\u3092\\u80b2\\u3093\\u3067\\u3044\\u307e\\u3059\\u3002\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"\\u3042\\u306a\\u305f\\u306e\\u5922\\u3092\\u5b9f\\u73fe\\u3059\\u308b\",\"description\":\"\\u3069\\u306e\\u30d3\\u30b8\\u30cd\\u30b9\\u306b\\u3082\\u3001\\u9769\\u65b0\\u3068\\u9032\\u6b69\\u3092\\u4fc3\\u3059\\u72ec\\u81ea\\u306e\\u30bd\\u30ea\\u30e5\\u30fc\\u30b7\\u30e7\\u30f3\\u304c\\u3042\\u308a\\u307e\\u3059\\u3002\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u3044\\u3064\\u3067\\u3082\\u3069\\u3093\\u306a\\u52a9\\u3051\\u304c\\u5fc5\\u8981\\u306a\\u5834\\u5408\\u3067\\u3082\\u3001\\u79c1\\u305f\\u3061\\u306b\\u3054\\u9023\\u7d61\\u304f\\u3060\\u3055\\u3044...\",\"title_color\":\"#85B23B\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(10300,3162,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(10301,3162,'_elementor_css','a:6:{s:4:\"time\";i:1742177092;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:8:\"material\";i:1;s:8:\"flaticon\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(10302,3162,'_elementor_page_assets','a:2:{s:6:\"styles\";a:4:{i:0;s:18:\"widget-text-editor\";i:1;s:21:\"e-animation-slideInUp\";i:2;s:12:\"widget-image\";i:3;s:18:\"widget-google_maps\";}s:7:\"scripts\";a:9:{i:0;s:16:\"jquery-numerator\";i:1;s:20:\"ct-counter-widget-js\";i:2;s:11:\"progressbar\";i:3;s:16:\"waypoints-lib-js\";i:4;s:24:\"ct-progressbar-widget-js\";i:5;s:12:\"imagesloaded\";i:6;s:7:\"isotope\";i:7;s:25:\"ct-post-masonry-widget-js\";i:8;s:22:\"ct-post-grid-widget-js\";}}'),(10303,3162,'_elementor_element_cache','{\"timeout\":1742263492,\"value\":{\"content\":\"        <section class=\"elementor-section elementor-top-section elementor-element elementor-element-2d2b67a elementor-section-stretched elementor-section-full_width slider-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"2d2b67a\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-no \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-d1bb387\" data-id=\"d1bb387\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImNjODZmNGQiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJyZXZzbGlkZXJ0aXRsZSI6IkhvbWUgMSIsInNob3J0Y29kZSI6IltyZXZfc2xpZGVyIGFsaWFzPVwiaG9tZS0xXCJdW1wvcmV2X3NsaWRlcl0ifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoic2xpZGVyX3Jldm9sdXRpb24ifQ==\"]        <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-2cea906 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"2cea906\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-8e117d0\" data-id=\"8e117d0\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjI0YjYyY2MiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Zlx1MzAwMVx1MzBkOVx1MzBjOFx1MzBjYVx1MzBlMFx1NTE2OFx1NTcxZlx1MzA0YVx1MzA4OFx1MzA3M1x1NGUxNlx1NzU0Y1x1NGUyZFx1MzA2ZVx1NmE1Zlx1NjhiMFx1NzUyM1x1Njk2ZFx1NTQxMVx1MzA1MVx1MzA2Ylx1NWU0NVx1NWU4M1x1MzA0NFx1ODhmZFx1NTRjMVx1MzA5Mlx1NjNkMFx1NGY5Ylx1MzA1N1x1MzA2Nlx1MzA0YVx1MzA4YVx1MzAwMVx1NzI3OVx1MzA2Ylx1NjVlNVx1NjcyY1x1MzAwMVx1OTdkM1x1NTZmZFx1MzAwMVx1MzBhMlx1MzBlMVx1MzBlYVx1MzBhYlx1MzAwMVx1MzBhYVx1MzBmY1x1MzBiOVx1MzBjOFx1MzBlOVx1MzBlYVx1MzBhMlx1MzA2OFx1MzA0NFx1MzA2M1x1MzA1Zlx1NGUzYlx1ODk4MVx1NWUwMlx1NTgzNFx1MzA2N1x1MzA2ZVx1NTNkNlx1NWYxNVx1MzA2Ylx1NTI5Ylx1MzA5Mlx1NTE2NVx1MzA4Y1x1MzA2Nlx1MzA0NFx1MzA3ZVx1MzA1OVx1MzAwMlx1MzA3ZVx1MzA1Zlx1MzAwMVx1MzA1M1x1MzA4Y1x1MzA4OVx1MzA2ZVx1NWUwMlx1NTgzNFx1MzA3OFx1MzA2ZVx1OGYzOFx1NTFmYVx1N2Q0Y1x1OWExM1x1MzA4Mlx1OGM0YVx1NWJjY1x1MzA2N1x1MzA1OVx1MzAwMiIsInRpdGxlX2NvbG9yIjoiIzg1QjIzQiIsInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplIjp7InVuaXQiOiJweCIsInNpemUiOjM2LCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0Ijp7InVuaXQiOiJweCIsInNpemUiOjQ4LCJzaXplcyI6W119LCJzdHlsZSI6InN0LWxpbmUtbGVmdCIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjE2IiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MjYsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjM0LCJzaXplcyI6W119LCJjdF9hbmltYXRlIjoid293IGZhZGVJblVwIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"]tt<div class=\"elementor-element elementor-element-909b449 wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"909b449\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>u79c1u305fu3061u306eu6700u5927u306eu5f37u307fu306fu3001u5b66u3076u3053u3068u3001u9769u65b0u3059u308bu3053u3068u306bu60c5u71b1u3092u6301u3061u3001u81eau4fe1u3092u6301u3063u305fu82e5u3044u52b4u50cdu529bu306bu3042u308au307eu3059u3002u3053u306eu30c1u30fcu30e0u306fu3001u5e38u306bu5b89u5b9au3057u305fu9ad8u54c1u8ceau306eu6a5fu68b0u88fdu54c1u3092u591au69d8u306bu88fdu9020u3059u308bu80fdu529bu3092u5099u3048u3066u3044u307eu3059u3002</p>tttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImM0YTIwMjgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJpbWFnZSI6eyJ1cmwiOiIiLCJpZCI6IiJ9LCJ2aWRlb19saW5rIjoiaHR0cHM6XC9cL3d3dy55b3V0dWJlLmNvbVwvd2F0Y2g/dj1vVlE0X1BJcWd6OCIsImJ0bl92aWRlb19zdHlsZSI6InN0eWxlMyIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMzEiLCJyaWdodCI6IjM4IiwiYm90dG9tIjoiMCIsImxlZnQiOiI3OCIsImlzTGlua2VkIjpmYWxzZX0sIl9jc3NfY2xhc3NlcyI6ImVsLWlubGluZSB3b3cgZmFkZUluUmlnaHQiLCJfbWFyZ2luX3RhYmxldCI6eyJ1bml0IjoicHgiLCJ0b3AiOiIzMSIsInJpZ2h0IjoiMjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjY4IiwiaXNMaW5rZWQiOmZhbHNlfSwiX2FuaW1hdGlvbiI6InNsaWRlSW5VcCIsIl9tYXJnaW5fbW9iaWxlIjp7InVuaXQiOiJweCIsInRvcCI6IjMxIiwicmlnaHQiOiIyMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF92aWRlb19wbGF5ZXIifQ==\"]tt<div class=\"elementor-element elementor-element-1fd7931 el-inline wow fadeInRight elementor-invisible elementor-widget elementor-widget-image\" data-id=\"1fd7931\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;slideInUp&quot;}\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" class=\"attachment-full size-full wp-image-2542\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-4fff345\" data-id=\"4fff345\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjU5MGYxYmUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjo1MCwic3VmZml4IjoiKyIsInRob3VzYW5kX3NlcGFyYXRvciI6IiIsInRob3VzYW5kX3NlcGFyYXRvcl9jaGFyIjoiICIsInRpdGxlIjoiXHU5ODY3XHU1YmEyIiwic2hvd19pY29uIjoidHJ1ZSIsImNvdW50ZXJfaWNvbiI6eyJ2YWx1ZSI6Im1hdGVyaWFsIHptZGkgem1kaS1hc3NpZ25tZW50LWNoZWNrIiwibGlicmFyeSI6Im1hdGVyaWFsIn0sIm51bWJlcl90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiI0MSIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwiX2Nzc19jbGFzc2VzIjoidGV4dC1jZW50ZXItc20iLCJpY29uX3R5cGUiOiJpbWFnZSIsImljb25faW1hZ2UiOnsidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMTlcLzEyXC9jb3VudGVyLWljb24tMDEucG5nIiwiaWQiOjE1MTV9LCJfYW5pbWF0aW9uIjoibm9uZSIsImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluVXAifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY291bnRlciJ9\"][elementor-element data=\"eyJpZCI6IjdhNWYyMzkiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjoyMDAsInN1ZmZpeCI6IisiLCJ0aG91c2FuZF9zZXBhcmF0b3IiOiIiLCJ0aG91c2FuZF9zZXBhcmF0b3JfY2hhciI6IiAiLCJ0aXRsZSI6Ilx1NGViYVx1NGU4YiIsInNob3dfaWNvbiI6InRydWUiLCJjb3VudGVyX2ljb24iOnsidmFsdWUiOiJtYXRlcmlhbCB6bWRpIHptZGktYXNzaWdubWVudC1jaGVjayIsImxpYnJhcnkiOiJtYXRlcmlhbCJ9LCJudW1iZXJfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiNDEiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sIl9jc3NfY2xhc3NlcyI6InRleHQtY2VudGVyLXNtIiwiaWNvbl90eXBlIjoiaW1hZ2UiLCJpY29uX2ltYWdlIjp7InVybCI6Imh0dHA6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDE5XC8xMlwvY291bnRlci1pY29uLTAyLnBuZyIsImlkIjoxNTE2fSwiX2FuaW1hdGlvbiI6Im5vbmUiLCJjdF9hbmltYXRlIjoid293IGZhZGVJblVwIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2NvdW50ZXIifQ==\"][elementor-element data=\"eyJpZCI6IjA0NTMxYzgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjoyMDAwLCJzdWZmaXgiOiIrIiwidGhvdXNhbmRfc2VwYXJhdG9yIjoiIiwidGhvdXNhbmRfc2VwYXJhdG9yX2NoYXIiOiIgIiwidGl0bGUiOiJcdTVlNzRcdTk1OTNcdTZjZThcdTY1ODdcdTY1NzAiLCJzaG93X2ljb24iOiJ0cnVlIiwiY291bnRlcl9pY29uIjp7InZhbHVlIjoibWF0ZXJpYWwgem1kaSB6bWRpLWFzc2lnbm1lbnQtY2hlY2siLCJsaWJyYXJ5IjoibWF0ZXJpYWwifSwibnVtYmVyX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjQxIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJfY3NzX2NsYXNzZXMiOiJ0ZXh0LWNlbnRlci1zbSIsImljb25fdHlwZSI6ImltYWdlIiwiaWNvbl9pbWFnZSI6eyJ1cmwiOiJodHRwOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAxOVwvMTJcL2NvdW50ZXItaWNvbi0wMy5wbmciLCJpZCI6MTUxN30sIl9hbmltYXRpb24iOiJub25lIiwiY3RfYW5pbWF0ZSI6IndvdyBmYWRlSW5VcCJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9jb3VudGVyIn0=\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-348ba48\" data-id=\"348ba48\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-ed7e1d0 wow fadeInUp elementor-widget elementor-widget-image\" data-id=\"ed7e1d0\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" class=\"attachment-full size-full wp-image-2571\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntttt<div class=\"elementor-element elementor-element-3b54db6 wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"3b54db6\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>u79c1u305fu3061u306fu3001u4e16u754cu4e2du304bu3089u306eu6ce8u6587u3068u63a5u7d9au3059u308bu305fu3081u306bAlibabau306bu5e97u8217u3092u958bu8a2du3057u59cbu3081u307eu3057u305fu3002</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-8b70e78 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"8b70e78\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-c2b95bd\" data-id=\"c2b95bd\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-b5a8ba3 elementor-widget elementor-widget-image\" data-id=\"b5a8ba3\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" class=\"attachment-full size-full wp-image-2268\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntttt<div class=\"elementor-element elementor-element-0e89391 elementor-widget elementor-widget-image\" data-id=\"0e89391\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" class=\"attachment-full size-full wp-image-2559\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-de7136f\" data-id=\"de7136f\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6Ijg0MDdhYmUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Zlx1MzAwMTIwMzBcdTVlNzRcdTMwN2VcdTMwNjdcdTMwNmJcdTMwZDlcdTMwYzhcdTMwY2FcdTMwZTBcdTMwNmVcdTRlM2JcdTg5ODFcdTMwNmFcdTZhNWZcdTY4YjBcdTUyYTBcdTVkZTVcdTRmMDFcdTY5NmRcdTMwNmVcdTRlMDBcdTMwNjRcdTMwNjhcdTMwNTdcdTMwNjZcdTMwMDFcdTU2ZmRcdTk2OWJcdTVlMDJcdTU4MzRcdTMwNmJcdTRmOWJcdTdkNjZcdTMwNTlcdTMwOGJcdTMwNTNcdTMwNjhcdTMwOTJcdTc2ZWVcdTYzMDdcdTMwNTdcdTMwNjZcdTMwNDRcdTMwN2VcdTMwNTlcdTMwMDJcdTVjMDZcdTY3NjVcdTc2ODRcdTMwNmJcdTMwNmZcdTMwMDFcdTViOGNcdTYyMTBcdTMwNTdcdTMwNWZcdTZhNWZcdTY4YjBcdTg4ZmRcdTU0YzFcdTMwOTJcdTc2ZjRcdTYzYTVcdTMwYThcdTMwZjNcdTMwYzlcdTMwZTZcdTMwZmNcdTMwYjZcdTMwZmNcdTMwNmJcdTYzZDBcdTRmOWJcdTMwNTlcdTMwOGJcdTMwNTNcdTMwNjhcdTMwOTJcdTc2ZWVcdTZhMTlcdTMwNjhcdTMwNTdcdTMwNjZcdTMwNDRcdTMwN2VcdTMwNTlcdTMwMDIiLCJ0aXRsZV9jb2xvciI6IiM4NUIyM0IiLCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZSI6eyJ1bml0IjoicHgiLCJzaXplIjozNiwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodCI6eyJ1bml0IjoicHgiLCJzaXplIjo0OCwic2l6ZXMiOltdfSwic3R5bGUiOiJzdC1saW5lLWxlZnQiLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6Ii05IiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwidGl0bGVfc3BhY2VfYm90dG9tIjp7InVuaXQiOiJweCIsInNpemUiOjE3LCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzAsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjM4LCJzaXplcyI6W119LCJjdF9hbmltYXRlIjoid293IGZsaXBJblgiLCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV9tb2JpbGUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MjgsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfbW9iaWxlIjp7InVuaXQiOiJweCIsInNpemUiOjM0LCJzaXplcyI6W119fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-0c8497c wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"0c8497c\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>2026u5e74u307eu3067u306bu9054u6210u3059u308bu76eeu6a19:</p>tttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6IjQ3NTRlZDYiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJwcm9ncmVzc2Jhcl9saXN0IjpbeyJ0aXRsZSI6Ilx1Njc3MVx1MzBhMlx1MzBiOFx1MzBhMlx1ZmYwOFx1NjVlNVx1NjcyY1x1MzAwMVx1OTdkM1x1NTZmZFx1MzA2YVx1MzA2OVx1ZmYwOVx1ZmYxYVx1NGVhNFx1NjNkYlx1NzUyOFx1NmE1Zlx1NjhiMFx1OTBlOFx1NTRjMVx1MzAwMVx1MzBhYVx1MzBmY1x1MzBjOFx1MzBkMFx1MzBhNFx1MzA0YVx1MzA4OFx1MzA3M1x1ODFlYVx1NTJkNVx1OGVjYVx1MzA2ZVx1MzBhMlx1MzBhZlx1MzBiYlx1MzBiNVx1MzBlYVx1MzBmY1x1MzAwMVx1NmMzNFx1NzUyM1x1Njk2ZFx1NzUyOFx1MzA2ZVx1MzBkNVx1MzBhM1x1MzBjM1x1MzBjNlx1MzBhM1x1MzBmM1x1MzBiMFx1MzAwMVx1OTFkMVx1NTc4Ylx1MzAwMVx1MzA1ZFx1MzA2ZVx1NGVkNlx1MzA2ZVx1NmE1Zlx1NjhiMFx1OTBlOFx1NTRjMVx1MzA2ZVx1OGYzOFx1NTFmYVx1MzAwMiIsInByb2dyZXNzX3R5cGUiOiIiLCJwZXJjZW50Ijp7InVuaXQiOiIlIiwic2l6ZSI6MzAsInNpemVzIjpbXX0sImRpc3BsYXlfcGVyY2VudGFnZSI6ImhpZGUiLCJpbm5lcl90ZXh0IjoiV2ViIERlc2lnbmVyIiwiX2lkIjoiOGI0YmNkNiJ9LHsidGl0bGUiOiJcdTMwZThcdTMwZmNcdTMwZWRcdTMwYzNcdTMwZDFcdWZmMDhcdTMwYzlcdTMwYTRcdTMwYzRcdTMwMDFcdTMwZDZcdTMwZWJcdTMwYWNcdTMwZWFcdTMwYTJcdTMwMDFcdTMwYWFcdTMwZTlcdTMwZjNcdTMwYzBcdTMwNmFcdTMwNjlcdWZmMDlcdWZmMWFcdTgxZWFcdTUyZDVcdThlY2FcdTc1MjhcdTMwZDlcdTMwYTJcdTMwZWFcdTMwZjNcdTMwYjBcdTMwNmVcdTZjYmJcdTUxNzdcdTMwNGFcdTMwODhcdTMwNzNcdTgxZWFcdTUyZDVcdTUzMTZcdTZhNWZcdTY4YjBcdTMwNmVcdTk2ZmJcdTZjMTdcdTMwZGNcdTMwYzNcdTMwYWZcdTMwYjlcdTkwZThcdTU0YzFcdTMwNmVcdTc1MWZcdTc1MjNcdTMwMDIiLCJwcm9ncmVzc190eXBlIjoiIiwicGVyY2VudCI6eyJ1bml0IjoiJSIsInNpemUiOjEwLCJzaXplcyI6W119LCJkaXNwbGF5X3BlcmNlbnRhZ2UiOiJoaWRlIiwiaW5uZXJfdGV4dCI6IldlYiBEZXNpZ25lciIsIl9pZCI6IjZlMGY4NzcifSx7InRpdGxlIjoiXHUzMGEyXHUzMGUxXHUzMGVhXHUzMGFiXHU1NDA4XHU4ODQ2XHU1NmZkXHVmZjFhXHU1MzNiXHU3NjQyXHU2YTVmXHU1NjY4XHUzMDAxXHU1MTQ5XHU1YjY2XHU2YTVmXHU1NjY4XHUzMDAxXHU5N2YzXHU5N2ZmXHU2YTVmXHU1NjY4XHUzMDZiXHU5NWEyXHU5MDIzXHUzMDU5XHUzMDhiXHU4OGZkXHU1NGMxXHUzMDAyIiwicHJvZ3Jlc3NfdHlwZSI6IiIsInBlcmNlbnQiOnsidW5pdCI6IiUiLCJzaXplIjozMCwic2l6ZXMiOltdfSwiZGlzcGxheV9wZXJjZW50YWdlIjoic2hvdyIsIl9pZCI6IjIyMmViODEifSx7Il9pZCI6IjVlZWNjYjYiLCJ0aXRsZSI6Ilx1MzBhYVx1MzBmY1x1MzBiOVx1MzBjOFx1MzBlOVx1MzBlYVx1MzBhMlx1ZmYxYVx1Njc3Zlx1OTFkMVx1ODhmZFx1NTRjMVx1MzAwMiIsInBlcmNlbnQiOnsidW5pdCI6IiUiLCJzaXplIjo4LCJzaXplcyI6W119fSx7Il9pZCI6IjEwZTU3NTAiLCJ0aXRsZSI6Ilx1MzBkOVx1MzBjOFx1MzBjYVx1MzBlMFx1ZmYxYVx1NWMwZlx1NTc4Ylx1ODFlYVx1NTJkNVx1NTMxNlx1NmE1Zlx1NjhiMFx1MzAwMVx1MzBhYVx1MzBmY1x1MzBjOFx1MzBkMFx1MzBhNFx1MzA0YVx1MzA4OFx1MzA3M1x1ODFlYVx1NTJkNVx1OGVjYVx1MzA2ZVx1MzBkY1x1MzBlYlx1MzBjOFx1MzAwMVx1NzdmM1x1NmNiOVx1MzA0YVx1MzA4OFx1MzA3M1x1MzBhY1x1MzBiOVx1NzUyM1x1Njk2ZFx1MzA2ZVx1ODhmZFx1NTRjMVx1MzAwMiIsInBlcmNlbnQiOnsidW5pdCI6IiUiLCJzaXplIjoyMCwic2l6ZXMiOltdfX0seyJfaWQiOiJlMTdhMTk1IiwidGl0bGUiOiJcdTMwNWRcdTMwNmVcdTRlZDZcdTMwNmVcdTVlMDJcdTU4MzRcdTMwNjhcdTg4ZmRcdTU0YzFcdTMwMDIiLCJwZXJjZW50Ijp7InVuaXQiOiIlIiwic2l6ZSI6Miwic2l6ZXMiOltdfX1dLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6Ijc4IiwiaXNMaW5rZWQiOmZhbHNlfSwiX21hcmdpbl9tb2JpbGUiOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjp0cnVlfX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X3Byb2dyZXNzYmFyIn0=\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-b6145ce elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"b6145ce\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-e65d58b\" data-id=\"e65d58b\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjljZDU1ZGQiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Zlx1ODkwN1x1NjU3MFx1MzA2ZVx1Njk2ZFx1NzU0Y1x1MzA2N1x1MzBiNVx1MzBmY1x1MzBkM1x1MzBiOVx1MzA5Mlx1NjNkMFx1NGY5Ylx1MzA1N1x1MzA2Nlx1MzA0NFx1MzA3ZVx1MzA1OVx1MzAwMiIsInRpdGxlX2NvbG9yIjoiIzg1QjIzQiIsInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplIjp7InVuaXQiOiJweCIsInNpemUiOjM2LCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0Ijp7InVuaXQiOiJweCIsInNpemUiOjQ4LCJzaXplcyI6W119LCJzdHlsZSI6InN0LWxpbmUtbGVmdCIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjp0cnVlfSwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemVfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjMwLCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0X3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjozOCwic2l6ZXMiOltdfSwiY3RfYW5pbWF0ZSI6IndvdyBmYWRlSW5MZWZ0IiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemVfbW9iaWxlIjp7InVuaXQiOiJweCIsInNpemUiOjI4LCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0X21vYmlsZSI6eyJ1bml0IjoicHgiLCJzaXplIjozNCwic2l6ZXMiOltdfX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-2067062\" data-id=\"2067062\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-956a238 wow fadeInRight elementor-widget elementor-widget-text-editor\" data-id=\"956a238\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>u79c1u305fu3061u306fu5e38u306bu9867u5ba2u306eu30c7u30b6u30a4u30f3u8981u6c42u3092u6e80u305fu3057u307eu3059u3002u5916u89b3u3068u5bf8u6cd5u306fu3001u6700u3082u91cdu8981u8996u3057u3066u3044u308bu8981u7d20u3067u3059u3002</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-74328b6b elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"74328b6b\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4b9c9796\" data-id=\"4b9c9796\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjFjYTNiNmM1IiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsibGF5b3V0IjoiNCIsImxpbWl0Ijo0LCJmaWx0ZXJfZGVmYXVsdF90aXRsZSI6IkFsbCIsImNvbF9zbSI6IjEiLCJjb2xfbWQiOiIyIiwiY29sX2xnIjoiMiIsImNvbF94bCI6IjIiLCJidXR0b25fdGV4dCI6IlJlYWQgbW9yZSIsInNvdXJjZSI6WyJqYXxsYW5ndWFnZSJdLCJjdF9hbmltYXRlIjoid293IGZhZGVJblVwIiwib3JkZXIiOiJhc2MifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3Rfc2VydmljZV9ncmlkIn0=\"][elementor-element data=\"eyJpZCI6IjI5NzFiOGIzIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGV4dCI6Ilx1MzA1ZFx1MzA2ZVx1NGVkNlx1MzA2ZVx1MzBiNVx1MzBmY1x1MzBkM1x1MzBiOSIsImxpbmsiOnsidXJsIjoiXC9zZXJ2aWNlcyIsImlzX2V4dGVybmFsIjoiIiwibm9mb2xsb3ciOiIifSwiYWxpZ24iOiJjZW50ZXIiLCJidG5faWNvbiI6eyJ2YWx1ZSI6Im1hdGVyaWFsIHptZGkgem1kaS1zZXR0aW5ncyIsImxpYnJhcnkiOiJtYXRlcmlhbCJ9LCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6Ii0xMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sInN0eWxlIjoiYnRuLXByZXNldDMiLCJfYW5pbWF0aW9uIjoibm9uZSJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9idXR0b24ifQ==\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-f43d465 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"f43d465\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-5310bd3\" data-id=\"5310bd3\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImJjZmM3MzUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjdGY3X2lkIjoiOTMyIiwibGF5b3V0IjoiMiIsImN0ZjdfdGl0bGUiOiJcdThjZWFcdTU1NGZcdTMwNGNcdTMwNDJcdTMwOGFcdTMwN2VcdTMwNTlcdTMwNGJcdWZmMWYiLCJjdGY3X2Rlc2NyaXB0aW9uIjoiQ2FsbDogODAwIDI1MCAzNjkiLCJjdGY3X3Bob25lIjoiPHNwYW4+Q2FsbDo8XC9zcGFuPiAwOTY4ODYwMzg2IiwiZWxfdGl0bGUiOiJcdTg5OGJcdTdhNGRcdTMwODJcdTMwOGFcdTMwOTJcdTUzZDZcdTVmOTdcdTMwNTlcdTMwOGJcdTMwNWZcdTMwODFcdTMwNmVcdTkwMjNcdTdkNjFcdTUxNDhcdWZmMWEiLCJjdF9hbmltYXRlIjoid293IGZsaXBJblgifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY3RmNyJ9\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-a9b49c5 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"a9b49c5\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n                            <div class=\"elementor-background-overlay\"></div>n                n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-1dcb85a\" data-id=\"1dcb85a\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n                <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-6c560a6 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"6c560a6\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-e82cd67\" data-id=\"e82cd67\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImVmNDE1MTEiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Zlx1N2MyMVx1NTM1OFx1MzA2YVx1NGY1Y1x1Njk2ZFx1NjI0Ylx1OTgwNlx1MzA5Mlx1NjMwMVx1MzA2M1x1MzA2Nlx1MzA0NFx1MzA3ZVx1MzA1OVx1MzAwMiIsInRpdGxlX2NvbG9yIjoiI2ZmZmZmZiIsInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplIjp7InVuaXQiOiJweCIsInNpemUiOjM2LCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0Ijp7InVuaXQiOiJweCIsInNpemUiOjQ4LCJzaXplcyI6W119LCJzdHlsZSI6InN0LWxpbmUtbGVmdCIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjp0cnVlfSwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemVfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjMwLCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0X3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjozOCwic2l6ZXMiOltdfSwiY3RfYW5pbWF0ZSI6IndvdyBmYWRlSW5MZWZ0In0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-3a08737\" data-id=\"3a08737\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-7aa11c2 wow fadeInRight elementor-widget elementor-widget-text-editor\" data-id=\"7aa11c2\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>u79c1u305fu3061u306fu5e38u306bu54c1u8ceau3068u9032u6357u306bu304au3044u3066u5b89u5fc3u611fu3092u63d0u4f9bu3057u307eu3059u3002</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n        [elementor-element data=\"eyJpZCI6IjlkNWVhMzIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X2xpc3QiOlt7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi1yZXNlYXJjaCIsImxpYnJhcnkiOiJmbGF0aWNvbiJ9LCJfaWQiOiIwNTVmZWYyIiwidGl0bGUiOiJcdTc5YzFcdTMwNWZcdTMwNjFcdTMwOTJcdTYzYTJcdTMwNTkiLCJkZXNjcmlwdGlvbiI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Zlx1MzAwMVx1NTQwNFx1MzBkN1x1MzBlZFx1MzBiOFx1MzBhN1x1MzBhZlx1MzBjOFx1MzA5Mlx1N2RjZlx1NTQwOFx1NzY4NFx1MzA2Ylx1NTNkNlx1MzA4YVx1NjI3MVx1MzA0Nlx1OTFjZFx1ODk4MVx1NjAyN1x1MzA5Mlx1NzQwNlx1ODllM1x1MzA1N1x1MzA2Nlx1MzA0NFx1MzA3ZVx1MzA1OVx1MzAwMiIsImJ0bl9saW5rIjp7InVybCI6IiIsImlzX2V4dGVybmFsIjoiIiwibm9mb2xsb3ciOiIifX0seyJjdF9pY29uIjp7InZhbHVlIjoiZmxhdGljb24gZmxhdGljb24tbmV0d29yayIsImxpYnJhcnkiOiJmbGF0aWNvbiJ9LCJfaWQiOiIzOWUxNGI4IiwidGl0bGUiOiJcdTc5YzFcdTMwNWZcdTMwNjFcdTMwNjhcdTYzYTVcdTdkOWFcdTMwNTlcdTMwOGIiLCJkZXNjcmlwdGlvbiI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA0Y1x1NGVkNlx1MzA2ZVx1MzBhOFx1MzBmY1x1MzBiOFx1MzBhN1x1MzBmM1x1MzBiN1x1MzBmY1x1MzA2OFx1NzU3MFx1MzA2YVx1MzA4Ylx1NzBiOVx1MzA2Zlx1MzAwMVx1MzBhYlx1MzBiOVx1MzBiZlx1MzBkZVx1MzBhNFx1MzBiYVx1MzA1NVx1MzA4Y1x1MzA1Zlx1MzBiZFx1MzBlYVx1MzBlNVx1MzBmY1x1MzBiN1x1MzBlN1x1MzBmM1x1MzA5Mlx1NGY1Y1x1NjIxMFx1MzA1OVx1MzA4Ylx1NWMwMlx1OTU4MFx1NzdlNVx1OGI1OFx1MzA2Ylx1MzA0Mlx1MzA4YVx1MzA3ZVx1MzA1OVx1MzAwMiIsImJ0bl9saW5rIjp7InVybCI6IiIsImlzX2V4dGVybmFsIjoiIiwibm9mb2xsb3ciOiIifX0seyJjdF9pY29uIjp7InZhbHVlIjoiZmxhdGljb24gZmxhdGljb24td2FsbGV0IiwibGlicmFyeSI6ImZsYXRpY29uIn0sIl9pZCI6ImY1ZTEwZTgiLCJ0aXRsZSI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Ylx1NjUyZlx1NjI1NVx1MzA0NiIsImRlc2NyaXB0aW9uIjoiXHU3OWMxXHUzMDVmXHUzMDYxXHUzMDZmXHUzMDAxXHU1NDA0XHUzMGMxXHUzMGZjXHUzMGUwXHUzMGUxXHUzMGYzXHUzMGQwXHUzMGZjXHUzMDRjXHU4MWVhXHU1MjA2XHU4MWVhXHU4ZWFiXHUzMDZlXHU2NzAwXHU5YWQ4XHUzMDZlXHU1OWZmXHUzMDkyXHU3NmVlXHU2MzA3XHUzMDU5XHUzMDUzXHUzMDY4XHUzMDkyXHU1OTY4XHU1MmIxXHUzMDU3XHUzMDAxXHU2N2Q0XHU4ZWRmXHUzMDY3XHU1MzU0XHU1MjliXHU3Njg0XHUzMDZhXHU3NGIwXHU1ODgzXHUzMDkyXHU4MGIyXHUzMDkzXHUzMDY3XHUzMDQ0XHUzMDdlXHUzMDU5XHUzMDAyIiwiYnRuX2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9fSx7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi10YXJnZXQiLCJsaWJyYXJ5IjoiZmxhdGljb24ifSwiX2lkIjoiODgzOTk2OSIsInRpdGxlIjoiXHUzMDQyXHUzMDZhXHUzMDVmXHUzMDZlXHU1OTIyXHUzMDkyXHU1YjlmXHU3M2ZlXHUzMDU5XHUzMDhiIiwiZGVzY3JpcHRpb24iOiJcdTMwNjlcdTMwNmVcdTMwZDNcdTMwYjhcdTMwY2RcdTMwYjlcdTMwNmJcdTMwODJcdTMwMDFcdTk3NjlcdTY1YjBcdTMwNjhcdTkwMzJcdTZiNjlcdTMwOTJcdTRmYzNcdTMwNTlcdTcyZWNcdTgxZWFcdTMwNmVcdTMwYmRcdTMwZWFcdTMwZTVcdTMwZmNcdTMwYjdcdTMwZTdcdTMwZjNcdTMwNGNcdTMwNDJcdTMwOGFcdTMwN2VcdTMwNTlcdTMwMDIiLCJidG5fbGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn19XSwidGl0bGVfY29sb3IiOiIjZmZmZmZmIiwiZGVzY3JpcHRpb25fY29sb3IiOiIjRkZGRkZGIiwiY3RfYW5pbWF0ZSI6IndvdyBmYWRlSW4ifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfcHJvY2VzcyJ9\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-79ee8ab elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"79ee8ab\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4af1814\" data-id=\"4af1814\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n                <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-505fb45 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"505fb45\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-7223f1c\" data-id=\"7223f1c\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-e7c238e elementor-widget elementor-widget-google_maps\" data-id=\"e7c238e\" data-element_type=\"widget\" data-widget_type=\"google_maps.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-custom-embed\">nttt<iframe loading=\"lazy\"ntttttsrc=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"nttttttitle=\"10u00b057&#039;11.2&quot;N 106u00b045&#039;13.0&quot;E\"ntttttaria-label=\"10u00b057&#039;11.2&quot;N 106u00b045&#039;13.0&quot;E\"nttt></iframe>ntt</div>ntttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-0225539\" data-id=\"0225539\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjUxZDU0M2EiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1MzA0NFx1MzA2NFx1MzA2N1x1MzA4Mlx1MzA2OVx1MzA5M1x1MzA2YVx1NTJhOVx1MzA1MVx1MzA0Y1x1NWZjNVx1ODk4MVx1MzA2YVx1NTgzNFx1NTQwOFx1MzA2N1x1MzA4Mlx1MzAwMVx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Ylx1MzA1NFx1OTAyM1x1N2Q2MVx1MzA0Zlx1MzA2MFx1MzA1NVx1MzA0NC4uLiIsInRpdGxlX2NvbG9yIjoiIzg1QjIzQiIsIl9wYWRkaW5nIjp7InVuaXQiOiIlIiwidG9wIjoiMCIsInJpZ2h0IjoiNSIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sInRpdGxlX3NwYWNlX2JvdHRvbSI6eyJ1bml0IjoicHgiLCJzaXplIjozMywic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemVfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjMwLCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0X3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjozOCwic2l6ZXMiOltdfSwiY3RfYW5pbWF0ZSI6IndvdyBmbGlwSW5YIiwiX3BhZGRpbmdfdGFibGV0Ijp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"][elementor-element data=\"eyJpZCI6ImVkMGRjMWIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjdGY3X2lkIjoiOTc0Iiwic3R5bGVfbDEiOiJzdHlsZTIifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY3RmNyJ9\"]            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                    </div>n        </section>n        \",\"scripts\":[\"jquery-numerator\",\"ct-counter-widget-js\",\"ct-progressbar-widget-js\",\"imagesloaded\",\"isotope\",\"ct-post-masonry-widget-js\",\"ct-post-grid-widget-js\"],\"styles\":[\"widget-text-editor\",\"e-animation-slideInUp\",\"widget-image\",\"widget-google_maps\"]}}'),(10304,3163,'_elementor_edit_mode','builder'),(10305,3163,'_elementor_template_type','wp-page'),(10306,3163,'_elementor_version','3.24.7'),(10307,3163,'_wp_page_template','default'),(10308,3163,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u3001\\u30d9\\u30c8\\u30ca\\u30e0\\u5168\\u571f\\u304a\\u3088\\u3073\\u4e16\\u754c\\u4e2d\\u306e\\u6a5f\\u68b0\\u7523\\u696d\\u5411\\u3051\\u306b\\u5e45\\u5e83\\u3044\\u88fd\\u54c1\\u3092\\u63d0\\u4f9b\\u3057\\u3066\\u304a\\u308a\\u3001\\u7279\\u306b\\u65e5\\u672c\\u3001\\u97d3\\u56fd\\u3001\\u30a2\\u30e1\\u30ea\\u30ab\\u3001\\u30aa\\u30fc\\u30b9\\u30c8\\u30e9\\u30ea\\u30a2\\u3068\\u3044\\u3063\\u305f\\u4e3b\\u8981\\u5e02\\u5834\\u3067\\u306e\\u53d6\\u5f15\\u306b\\u529b\\u3092\\u5165\\u308c\\u3066\\u3044\\u307e\\u3059\\u3002\\u307e\\u305f\\u3001\\u3053\\u308c\\u3089\\u306e\\u5e02\\u5834\\u3078\\u306e\\u8f38\\u51fa\\u7d4c\\u9a13\\u3082\\u8c4a\\u5bcc\\u3067\\u3059\\u3002\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306e\\u6700\\u5927\\u306e\\u5f37\\u307f\\u306f\\u3001\\u5b66\\u3076\\u3053\\u3068\\u3001\\u9769\\u65b0\\u3059\\u308b\\u3053\\u3068\\u306b\\u60c5\\u71b1\\u3092\\u6301\\u3061\\u3001\\u81ea\\u4fe1\\u3092\\u6301\\u3063\\u305f\\u82e5\\u3044\\u52b4\\u50cd\\u529b\\u306b\\u3042\\u308a\\u307e\\u3059\\u3002\\u3053\\u306e\\u30c1\\u30fc\\u30e0\\u306f\\u3001\\u5e38\\u306b\\u5b89\\u5b9a\\u3057\\u305f\\u9ad8\\u54c1\\u8cea\\u306e\\u6a5f\\u68b0\\u88fd\\u54c1\\u3092\\u591a\\u69d8\\u306b\\u88fd\\u9020\\u3059\\u308b\\u80fd\\u529b\\u3092\\u5099\\u3048\\u3066\\u3044\\u307e\\u3059\\u3002<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=oVQ4_PIqgz8\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"\\u9867\\u5ba2\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"\\u4eba\\u4e8b\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"\\u5e74\\u9593\\u6ce8\\u6587\\u6570\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306f\\u3001\\u4e16\\u754c\\u4e2d\\u304b\\u3089\\u306e\\u6ce8\\u6587\\u3068\\u63a5\\u7d9a\\u3059\\u308b\\u305f\\u3081\\u306bAlibaba\\u306b\\u5e97\\u8217\\u3092\\u958b\\u8a2d\\u3057\\u59cb\\u3081\\u307e\\u3057\\u305f\\u3002<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0e89391\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u30012030\\u5e74\\u307e\\u3067\\u306b\\u30d9\\u30c8\\u30ca\\u30e0\\u306e\\u4e3b\\u8981\\u306a\\u6a5f\\u68b0\\u52a0\\u5de5\\u4f01\\u696d\\u306e\\u4e00\\u3064\\u3068\\u3057\\u3066\\u3001\\u56fd\\u969b\\u5e02\\u5834\\u306b\\u4f9b\\u7d66\\u3059\\u308b\\u3053\\u3068\\u3092\\u76ee\\u6307\\u3057\\u3066\\u3044\\u307e\\u3059\\u3002\\u5c06\\u6765\\u7684\\u306b\\u306f\\u3001\\u5b8c\\u6210\\u3057\\u305f\\u6a5f\\u68b0\\u88fd\\u54c1\\u3092\\u76f4\\u63a5\\u30a8\\u30f3\\u30c9\\u30e6\\u30fc\\u30b6\\u30fc\\u306b\\u63d0\\u4f9b\\u3059\\u308b\\u3053\\u3068\\u3092\\u76ee\\u6a19\\u3068\\u3057\\u3066\\u3044\\u307e\\u3059\\u3002\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2026\\u5e74\\u307e\\u3067\\u306b\\u9054\\u6210\\u3059\\u308b\\u76ee\\u6a19:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"\\u6771\\u30a2\\u30b8\\u30a2\\uff08\\u65e5\\u672c\\u3001\\u97d3\\u56fd\\u306a\\u3069\\uff09\\uff1a\\u4ea4\\u63db\\u7528\\u6a5f\\u68b0\\u90e8\\u54c1\\u3001\\u30aa\\u30fc\\u30c8\\u30d0\\u30a4\\u304a\\u3088\\u3073\\u81ea\\u52d5\\u8eca\\u306e\\u30a2\\u30af\\u30bb\\u30b5\\u30ea\\u30fc\\u3001\\u6c34\\u7523\\u696d\\u7528\\u306e\\u30d5\\u30a3\\u30c3\\u30c6\\u30a3\\u30f3\\u30b0\\u3001\\u91d1\\u578b\\u3001\\u305d\\u306e\\u4ed6\\u306e\\u6a5f\\u68b0\\u90e8\\u54c1\\u306e\\u8f38\\u51fa\\u3002\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"\\u30e8\\u30fc\\u30ed\\u30c3\\u30d1\\uff08\\u30c9\\u30a4\\u30c4\\u3001\\u30d6\\u30eb\\u30ac\\u30ea\\u30a2\\u3001\\u30aa\\u30e9\\u30f3\\u30c0\\u306a\\u3069\\uff09\\uff1a\\u81ea\\u52d5\\u8eca\\u7528\\u30d9\\u30a2\\u30ea\\u30f3\\u30b0\\u306e\\u6cbb\\u5177\\u304a\\u3088\\u3073\\u81ea\\u52d5\\u5316\\u6a5f\\u68b0\\u306e\\u96fb\\u6c17\\u30dc\\u30c3\\u30af\\u30b9\\u90e8\\u54c1\\u306e\\u751f\\u7523\\u3002\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"\\u30a2\\u30e1\\u30ea\\u30ab\\u5408\\u8846\\u56fd\\uff1a\\u533b\\u7642\\u6a5f\\u5668\\u3001\\u5149\\u5b66\\u6a5f\\u5668\\u3001\\u97f3\\u97ff\\u6a5f\\u5668\\u306b\\u95a2\\u9023\\u3059\\u308b\\u88fd\\u54c1\\u3002\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"\\u30aa\\u30fc\\u30b9\\u30c8\\u30e9\\u30ea\\u30a2\\uff1a\\u677f\\u91d1\\u88fd\\u54c1\\u3002\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"\\u30d9\\u30c8\\u30ca\\u30e0\\uff1a\\u5c0f\\u578b\\u81ea\\u52d5\\u5316\\u6a5f\\u68b0\\u3001\\u30aa\\u30fc\\u30c8\\u30d0\\u30a4\\u304a\\u3088\\u3073\\u81ea\\u52d5\\u8eca\\u306e\\u30dc\\u30eb\\u30c8\\u3001\\u77f3\\u6cb9\\u304a\\u3088\\u3073\\u30ac\\u30b9\\u7523\\u696d\\u306e\\u88fd\\u54c1\\u3002\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"\\u305d\\u306e\\u4ed6\\u306e\\u5e02\\u5834\\u3068\\u88fd\\u54c1\\u3002\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u8907\\u6570\\u306e\\u696d\\u754c\\u3067\\u30b5\\u30fc\\u30d3\\u30b9\\u3092\\u63d0\\u4f9b\\u3057\\u3066\\u3044\\u307e\\u3059\\u3002\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306f\\u5e38\\u306b\\u9867\\u5ba2\\u306e\\u30c7\\u30b6\\u30a4\\u30f3\\u8981\\u6c42\\u3092\\u6e80\\u305f\\u3057\\u307e\\u3059\\u3002\\u5916\\u89b3\\u3068\\u5bf8\\u6cd5\\u306f\\u3001\\u6700\\u3082\\u91cd\\u8981\\u8996\\u3057\\u3066\\u3044\\u308b\\u8981\\u7d20\\u3067\\u3059\\u3002<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"ja|language\"],\"ct_animate\":\"wow fadeInUp\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u305d\\u306e\\u4ed6\\u306e\\u30b5\\u30fc\\u30d3\\u30b9\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"\\u8cea\\u554f\\u304c\\u3042\\u308a\\u307e\\u3059\\u304b\\uff1f\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"\\u898b\\u7a4d\\u3082\\u308a\\u3092\\u53d6\\u5f97\\u3059\\u308b\\u305f\\u3081\\u306e\\u9023\\u7d61\\u5148\\uff1a\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u7c21\\u5358\\u306a\\u4f5c\\u696d\\u624b\\u9806\\u3092\\u6301\\u3063\\u3066\\u3044\\u307e\\u3059\\u3002\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306f\\u5e38\\u306b\\u54c1\\u8cea\\u3068\\u9032\\u6357\\u306b\\u304a\\u3044\\u3066\\u5b89\\u5fc3\\u611f\\u3092\\u63d0\\u4f9b\\u3057\\u307e\\u3059\\u3002<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"\\u79c1\\u305f\\u3061\\u3092\\u63a2\\u3059\",\"description\":\"\\u79c1\\u305f\\u3061\\u306f\\u3001\\u5404\\u30d7\\u30ed\\u30b8\\u30a7\\u30af\\u30c8\\u3092\\u7dcf\\u5408\\u7684\\u306b\\u53d6\\u308a\\u6271\\u3046\\u91cd\\u8981\\u6027\\u3092\\u7406\\u89e3\\u3057\\u3066\\u3044\\u307e\\u3059\\u3002\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"\\u79c1\\u305f\\u3061\\u3068\\u63a5\\u7d9a\\u3059\\u308b\",\"description\":\"\\u79c1\\u305f\\u3061\\u304c\\u4ed6\\u306e\\u30a8\\u30fc\\u30b8\\u30a7\\u30f3\\u30b7\\u30fc\\u3068\\u7570\\u306a\\u308b\\u70b9\\u306f\\u3001\\u30ab\\u30b9\\u30bf\\u30de\\u30a4\\u30ba\\u3055\\u308c\\u305f\\u30bd\\u30ea\\u30e5\\u30fc\\u30b7\\u30e7\\u30f3\\u3092\\u4f5c\\u6210\\u3059\\u308b\\u5c02\\u9580\\u77e5\\u8b58\\u306b\\u3042\\u308a\\u307e\\u3059\\u3002\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"\\u79c1\\u305f\\u3061\\u306b\\u652f\\u6255\\u3046\",\"description\":\"\\u79c1\\u305f\\u3061\\u306f\\u3001\\u5404\\u30c1\\u30fc\\u30e0\\u30e1\\u30f3\\u30d0\\u30fc\\u304c\\u81ea\\u5206\\u81ea\\u8eab\\u306e\\u6700\\u9ad8\\u306e\\u59ff\\u3092\\u76ee\\u6307\\u3059\\u3053\\u3068\\u3092\\u5968\\u52b1\\u3057\\u3001\\u67d4\\u8edf\\u3067\\u5354\\u529b\\u7684\\u306a\\u74b0\\u5883\\u3092\\u80b2\\u3093\\u3067\\u3044\\u307e\\u3059\\u3002\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"\\u3042\\u306a\\u305f\\u306e\\u5922\\u3092\\u5b9f\\u73fe\\u3059\\u308b\",\"description\":\"\\u3069\\u306e\\u30d3\\u30b8\\u30cd\\u30b9\\u306b\\u3082\\u3001\\u9769\\u65b0\\u3068\\u9032\\u6b69\\u3092\\u4fc3\\u3059\\u72ec\\u81ea\\u306e\\u30bd\\u30ea\\u30e5\\u30fc\\u30b7\\u30e7\\u30f3\\u304c\\u3042\\u308a\\u307e\\u3059\\u3002\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u3044\\u3064\\u3067\\u3082\\u3069\\u3093\\u306a\\u52a9\\u3051\\u304c\\u5fc5\\u8981\\u306a\\u5834\\u5408\\u3067\\u3082\\u3001\\u79c1\\u305f\\u3061\\u306b\\u3054\\u9023\\u7d61\\u304f\\u3060\\u3055\\u3044...\",\"title_color\":\"#85B23B\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(10309,3163,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(10310,3163,'_elementor_css','a:6:{s:4:\"time\";i:1742177092;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:8:\"material\";i:1;s:8:\"flaticon\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(10311,3163,'_elementor_page_assets','a:2:{s:6:\"styles\";a:4:{i:0;s:18:\"widget-text-editor\";i:1;s:21:\"e-animation-slideInUp\";i:2;s:12:\"widget-image\";i:3;s:18:\"widget-google_maps\";}s:7:\"scripts\";a:9:{i:0;s:16:\"jquery-numerator\";i:1;s:20:\"ct-counter-widget-js\";i:2;s:11:\"progressbar\";i:3;s:16:\"waypoints-lib-js\";i:4;s:24:\"ct-progressbar-widget-js\";i:5;s:12:\"imagesloaded\";i:6;s:7:\"isotope\";i:7;s:25:\"ct-post-masonry-widget-js\";i:8;s:22:\"ct-post-grid-widget-js\";}}');
INSERT INTO `wp_postmeta` VALUES (10312,3163,'_elementor_element_cache','{\"timeout\":1742263492,\"value\":{\"content\":\"        <section class=\"elementor-section elementor-top-section elementor-element elementor-element-2d2b67a elementor-section-stretched elementor-section-full_width slider-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"2d2b67a\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-no \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-d1bb387\" data-id=\"d1bb387\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImNjODZmNGQiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJyZXZzbGlkZXJ0aXRsZSI6IkhvbWUgMSIsInNob3J0Y29kZSI6IltyZXZfc2xpZGVyIGFsaWFzPVwiaG9tZS0xXCJdW1wvcmV2X3NsaWRlcl0ifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoic2xpZGVyX3Jldm9sdXRpb24ifQ==\"]        <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-2cea906 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"2cea906\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-8e117d0\" data-id=\"8e117d0\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjI0YjYyY2MiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Zlx1MzAwMVx1MzBkOVx1MzBjOFx1MzBjYVx1MzBlMFx1NTE2OFx1NTcxZlx1MzA0YVx1MzA4OFx1MzA3M1x1NGUxNlx1NzU0Y1x1NGUyZFx1MzA2ZVx1NmE1Zlx1NjhiMFx1NzUyM1x1Njk2ZFx1NTQxMVx1MzA1MVx1MzA2Ylx1NWU0NVx1NWU4M1x1MzA0NFx1ODhmZFx1NTRjMVx1MzA5Mlx1NjNkMFx1NGY5Ylx1MzA1N1x1MzA2Nlx1MzA0YVx1MzA4YVx1MzAwMVx1NzI3OVx1MzA2Ylx1NjVlNVx1NjcyY1x1MzAwMVx1OTdkM1x1NTZmZFx1MzAwMVx1MzBhMlx1MzBlMVx1MzBlYVx1MzBhYlx1MzAwMVx1MzBhYVx1MzBmY1x1MzBiOVx1MzBjOFx1MzBlOVx1MzBlYVx1MzBhMlx1MzA2OFx1MzA0NFx1MzA2M1x1MzA1Zlx1NGUzYlx1ODk4MVx1NWUwMlx1NTgzNFx1MzA2N1x1MzA2ZVx1NTNkNlx1NWYxNVx1MzA2Ylx1NTI5Ylx1MzA5Mlx1NTE2NVx1MzA4Y1x1MzA2Nlx1MzA0NFx1MzA3ZVx1MzA1OVx1MzAwMlx1MzA3ZVx1MzA1Zlx1MzAwMVx1MzA1M1x1MzA4Y1x1MzA4OVx1MzA2ZVx1NWUwMlx1NTgzNFx1MzA3OFx1MzA2ZVx1OGYzOFx1NTFmYVx1N2Q0Y1x1OWExM1x1MzA4Mlx1OGM0YVx1NWJjY1x1MzA2N1x1MzA1OVx1MzAwMiIsInRpdGxlX2NvbG9yIjoiIzg1QjIzQiIsInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplIjp7InVuaXQiOiJweCIsInNpemUiOjM2LCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0Ijp7InVuaXQiOiJweCIsInNpemUiOjQ4LCJzaXplcyI6W119LCJzdHlsZSI6InN0LWxpbmUtbGVmdCIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjE2IiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MjYsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjM0LCJzaXplcyI6W119LCJjdF9hbmltYXRlIjoid293IGZhZGVJblVwIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"]tt<div class=\"elementor-element elementor-element-909b449 wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"909b449\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>u79c1u305fu3061u306eu6700u5927u306eu5f37u307fu306fu3001u5b66u3076u3053u3068u3001u9769u65b0u3059u308bu3053u3068u306bu60c5u71b1u3092u6301u3061u3001u81eau4fe1u3092u6301u3063u305fu82e5u3044u52b4u50cdu529bu306bu3042u308au307eu3059u3002u3053u306eu30c1u30fcu30e0u306fu3001u5e38u306bu5b89u5b9au3057u305fu9ad8u54c1u8ceau306eu6a5fu68b0u88fdu54c1u3092u591au69d8u306bu88fdu9020u3059u308bu80fdu529bu3092u5099u3048u3066u3044u307eu3059u3002</p>tttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImM0YTIwMjgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJpbWFnZSI6eyJ1cmwiOiIiLCJpZCI6IiJ9LCJ2aWRlb19saW5rIjoiaHR0cHM6XC9cL3d3dy55b3V0dWJlLmNvbVwvd2F0Y2g/dj1vVlE0X1BJcWd6OCIsImJ0bl92aWRlb19zdHlsZSI6InN0eWxlMyIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMzEiLCJyaWdodCI6IjM4IiwiYm90dG9tIjoiMCIsImxlZnQiOiI3OCIsImlzTGlua2VkIjpmYWxzZX0sIl9jc3NfY2xhc3NlcyI6ImVsLWlubGluZSB3b3cgZmFkZUluUmlnaHQiLCJfbWFyZ2luX3RhYmxldCI6eyJ1bml0IjoicHgiLCJ0b3AiOiIzMSIsInJpZ2h0IjoiMjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjY4IiwiaXNMaW5rZWQiOmZhbHNlfSwiX2FuaW1hdGlvbiI6InNsaWRlSW5VcCIsIl9tYXJnaW5fbW9iaWxlIjp7InVuaXQiOiJweCIsInRvcCI6IjMxIiwicmlnaHQiOiIyMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF92aWRlb19wbGF5ZXIifQ==\"]tt<div class=\"elementor-element elementor-element-1fd7931 el-inline wow fadeInRight elementor-invisible elementor-widget elementor-widget-image\" data-id=\"1fd7931\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;slideInUp&quot;}\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" class=\"attachment-full size-full wp-image-2542\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-4fff345\" data-id=\"4fff345\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjU5MGYxYmUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjo1MCwic3VmZml4IjoiKyIsInRob3VzYW5kX3NlcGFyYXRvciI6IiIsInRob3VzYW5kX3NlcGFyYXRvcl9jaGFyIjoiICIsInRpdGxlIjoiXHU5ODY3XHU1YmEyIiwic2hvd19pY29uIjoidHJ1ZSIsImNvdW50ZXJfaWNvbiI6eyJ2YWx1ZSI6Im1hdGVyaWFsIHptZGkgem1kaS1hc3NpZ25tZW50LWNoZWNrIiwibGlicmFyeSI6Im1hdGVyaWFsIn0sIm51bWJlcl90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiI0MSIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwiX2Nzc19jbGFzc2VzIjoidGV4dC1jZW50ZXItc20iLCJpY29uX3R5cGUiOiJpbWFnZSIsImljb25faW1hZ2UiOnsidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMTlcLzEyXC9jb3VudGVyLWljb24tMDEucG5nIiwiaWQiOjE1MTV9LCJfYW5pbWF0aW9uIjoibm9uZSIsImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluVXAifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY291bnRlciJ9\"][elementor-element data=\"eyJpZCI6IjdhNWYyMzkiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjoyMDAsInN1ZmZpeCI6IisiLCJ0aG91c2FuZF9zZXBhcmF0b3IiOiIiLCJ0aG91c2FuZF9zZXBhcmF0b3JfY2hhciI6IiAiLCJ0aXRsZSI6Ilx1NGViYVx1NGU4YiIsInNob3dfaWNvbiI6InRydWUiLCJjb3VudGVyX2ljb24iOnsidmFsdWUiOiJtYXRlcmlhbCB6bWRpIHptZGktYXNzaWdubWVudC1jaGVjayIsImxpYnJhcnkiOiJtYXRlcmlhbCJ9LCJudW1iZXJfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiNDEiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sIl9jc3NfY2xhc3NlcyI6InRleHQtY2VudGVyLXNtIiwiaWNvbl90eXBlIjoiaW1hZ2UiLCJpY29uX2ltYWdlIjp7InVybCI6Imh0dHA6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDE5XC8xMlwvY291bnRlci1pY29uLTAyLnBuZyIsImlkIjoxNTE2fSwiX2FuaW1hdGlvbiI6Im5vbmUiLCJjdF9hbmltYXRlIjoid293IGZhZGVJblVwIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2NvdW50ZXIifQ==\"][elementor-element data=\"eyJpZCI6IjA0NTMxYzgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjoyMDAwLCJzdWZmaXgiOiIrIiwidGhvdXNhbmRfc2VwYXJhdG9yIjoiIiwidGhvdXNhbmRfc2VwYXJhdG9yX2NoYXIiOiIgIiwidGl0bGUiOiJcdTVlNzRcdTk1OTNcdTZjZThcdTY1ODdcdTY1NzAiLCJzaG93X2ljb24iOiJ0cnVlIiwiY291bnRlcl9pY29uIjp7InZhbHVlIjoibWF0ZXJpYWwgem1kaSB6bWRpLWFzc2lnbm1lbnQtY2hlY2siLCJsaWJyYXJ5IjoibWF0ZXJpYWwifSwibnVtYmVyX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjQxIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJfY3NzX2NsYXNzZXMiOiJ0ZXh0LWNlbnRlci1zbSIsImljb25fdHlwZSI6ImltYWdlIiwiaWNvbl9pbWFnZSI6eyJ1cmwiOiJodHRwOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAxOVwvMTJcL2NvdW50ZXItaWNvbi0wMy5wbmciLCJpZCI6MTUxN30sIl9hbmltYXRpb24iOiJub25lIiwiY3RfYW5pbWF0ZSI6IndvdyBmYWRlSW5VcCJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9jb3VudGVyIn0=\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-348ba48\" data-id=\"348ba48\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-ed7e1d0 wow fadeInUp elementor-widget elementor-widget-image\" data-id=\"ed7e1d0\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" class=\"attachment-full size-full wp-image-2571\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntttt<div class=\"elementor-element elementor-element-3b54db6 wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"3b54db6\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>u79c1u305fu3061u306fu3001u4e16u754cu4e2du304bu3089u306eu6ce8u6587u3068u63a5u7d9au3059u308bu305fu3081u306bAlibabau306bu5e97u8217u3092u958bu8a2du3057u59cbu3081u307eu3057u305fu3002</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-8b70e78 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"8b70e78\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-c2b95bd\" data-id=\"c2b95bd\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-b5a8ba3 elementor-widget elementor-widget-image\" data-id=\"b5a8ba3\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" class=\"attachment-full size-full wp-image-2268\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntttt<div class=\"elementor-element elementor-element-0e89391 elementor-widget elementor-widget-image\" data-id=\"0e89391\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" class=\"attachment-full size-full wp-image-2559\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-de7136f\" data-id=\"de7136f\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6Ijg0MDdhYmUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Zlx1MzAwMTIwMzBcdTVlNzRcdTMwN2VcdTMwNjdcdTMwNmJcdTMwZDlcdTMwYzhcdTMwY2FcdTMwZTBcdTMwNmVcdTRlM2JcdTg5ODFcdTMwNmFcdTZhNWZcdTY4YjBcdTUyYTBcdTVkZTVcdTRmMDFcdTY5NmRcdTMwNmVcdTRlMDBcdTMwNjRcdTMwNjhcdTMwNTdcdTMwNjZcdTMwMDFcdTU2ZmRcdTk2OWJcdTVlMDJcdTU4MzRcdTMwNmJcdTRmOWJcdTdkNjZcdTMwNTlcdTMwOGJcdTMwNTNcdTMwNjhcdTMwOTJcdTc2ZWVcdTYzMDdcdTMwNTdcdTMwNjZcdTMwNDRcdTMwN2VcdTMwNTlcdTMwMDJcdTVjMDZcdTY3NjVcdTc2ODRcdTMwNmJcdTMwNmZcdTMwMDFcdTViOGNcdTYyMTBcdTMwNTdcdTMwNWZcdTZhNWZcdTY4YjBcdTg4ZmRcdTU0YzFcdTMwOTJcdTc2ZjRcdTYzYTVcdTMwYThcdTMwZjNcdTMwYzlcdTMwZTZcdTMwZmNcdTMwYjZcdTMwZmNcdTMwNmJcdTYzZDBcdTRmOWJcdTMwNTlcdTMwOGJcdTMwNTNcdTMwNjhcdTMwOTJcdTc2ZWVcdTZhMTlcdTMwNjhcdTMwNTdcdTMwNjZcdTMwNDRcdTMwN2VcdTMwNTlcdTMwMDIiLCJ0aXRsZV9jb2xvciI6IiM4NUIyM0IiLCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZSI6eyJ1bml0IjoicHgiLCJzaXplIjozNiwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodCI6eyJ1bml0IjoicHgiLCJzaXplIjo0OCwic2l6ZXMiOltdfSwic3R5bGUiOiJzdC1saW5lLWxlZnQiLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6Ii05IiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwidGl0bGVfc3BhY2VfYm90dG9tIjp7InVuaXQiOiJweCIsInNpemUiOjE3LCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzAsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjM4LCJzaXplcyI6W119LCJjdF9hbmltYXRlIjoid293IGZsaXBJblgiLCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV9tb2JpbGUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MjgsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfbW9iaWxlIjp7InVuaXQiOiJweCIsInNpemUiOjM0LCJzaXplcyI6W119fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-0c8497c wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"0c8497c\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>2026u5e74u307eu3067u306bu9054u6210u3059u308bu76eeu6a19:</p>tttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6IjQ3NTRlZDYiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJwcm9ncmVzc2Jhcl9saXN0IjpbeyJ0aXRsZSI6Ilx1Njc3MVx1MzBhMlx1MzBiOFx1MzBhMlx1ZmYwOFx1NjVlNVx1NjcyY1x1MzAwMVx1OTdkM1x1NTZmZFx1MzA2YVx1MzA2OVx1ZmYwOVx1ZmYxYVx1NGVhNFx1NjNkYlx1NzUyOFx1NmE1Zlx1NjhiMFx1OTBlOFx1NTRjMVx1MzAwMVx1MzBhYVx1MzBmY1x1MzBjOFx1MzBkMFx1MzBhNFx1MzA0YVx1MzA4OFx1MzA3M1x1ODFlYVx1NTJkNVx1OGVjYVx1MzA2ZVx1MzBhMlx1MzBhZlx1MzBiYlx1MzBiNVx1MzBlYVx1MzBmY1x1MzAwMVx1NmMzNFx1NzUyM1x1Njk2ZFx1NzUyOFx1MzA2ZVx1MzBkNVx1MzBhM1x1MzBjM1x1MzBjNlx1MzBhM1x1MzBmM1x1MzBiMFx1MzAwMVx1OTFkMVx1NTc4Ylx1MzAwMVx1MzA1ZFx1MzA2ZVx1NGVkNlx1MzA2ZVx1NmE1Zlx1NjhiMFx1OTBlOFx1NTRjMVx1MzA2ZVx1OGYzOFx1NTFmYVx1MzAwMiIsInByb2dyZXNzX3R5cGUiOiIiLCJwZXJjZW50Ijp7InVuaXQiOiIlIiwic2l6ZSI6MzAsInNpemVzIjpbXX0sImRpc3BsYXlfcGVyY2VudGFnZSI6ImhpZGUiLCJpbm5lcl90ZXh0IjoiV2ViIERlc2lnbmVyIiwiX2lkIjoiOGI0YmNkNiJ9LHsidGl0bGUiOiJcdTMwZThcdTMwZmNcdTMwZWRcdTMwYzNcdTMwZDFcdWZmMDhcdTMwYzlcdTMwYTRcdTMwYzRcdTMwMDFcdTMwZDZcdTMwZWJcdTMwYWNcdTMwZWFcdTMwYTJcdTMwMDFcdTMwYWFcdTMwZTlcdTMwZjNcdTMwYzBcdTMwNmFcdTMwNjlcdWZmMDlcdWZmMWFcdTgxZWFcdTUyZDVcdThlY2FcdTc1MjhcdTMwZDlcdTMwYTJcdTMwZWFcdTMwZjNcdTMwYjBcdTMwNmVcdTZjYmJcdTUxNzdcdTMwNGFcdTMwODhcdTMwNzNcdTgxZWFcdTUyZDVcdTUzMTZcdTZhNWZcdTY4YjBcdTMwNmVcdTk2ZmJcdTZjMTdcdTMwZGNcdTMwYzNcdTMwYWZcdTMwYjlcdTkwZThcdTU0YzFcdTMwNmVcdTc1MWZcdTc1MjNcdTMwMDIiLCJwcm9ncmVzc190eXBlIjoiIiwicGVyY2VudCI6eyJ1bml0IjoiJSIsInNpemUiOjEwLCJzaXplcyI6W119LCJkaXNwbGF5X3BlcmNlbnRhZ2UiOiJoaWRlIiwiaW5uZXJfdGV4dCI6IldlYiBEZXNpZ25lciIsIl9pZCI6IjZlMGY4NzcifSx7InRpdGxlIjoiXHUzMGEyXHUzMGUxXHUzMGVhXHUzMGFiXHU1NDA4XHU4ODQ2XHU1NmZkXHVmZjFhXHU1MzNiXHU3NjQyXHU2YTVmXHU1NjY4XHUzMDAxXHU1MTQ5XHU1YjY2XHU2YTVmXHU1NjY4XHUzMDAxXHU5N2YzXHU5N2ZmXHU2YTVmXHU1NjY4XHUzMDZiXHU5NWEyXHU5MDIzXHUzMDU5XHUzMDhiXHU4OGZkXHU1NGMxXHUzMDAyIiwicHJvZ3Jlc3NfdHlwZSI6IiIsInBlcmNlbnQiOnsidW5pdCI6IiUiLCJzaXplIjozMCwic2l6ZXMiOltdfSwiZGlzcGxheV9wZXJjZW50YWdlIjoic2hvdyIsIl9pZCI6IjIyMmViODEifSx7Il9pZCI6IjVlZWNjYjYiLCJ0aXRsZSI6Ilx1MzBhYVx1MzBmY1x1MzBiOVx1MzBjOFx1MzBlOVx1MzBlYVx1MzBhMlx1ZmYxYVx1Njc3Zlx1OTFkMVx1ODhmZFx1NTRjMVx1MzAwMiIsInBlcmNlbnQiOnsidW5pdCI6IiUiLCJzaXplIjo4LCJzaXplcyI6W119fSx7Il9pZCI6IjEwZTU3NTAiLCJ0aXRsZSI6Ilx1MzBkOVx1MzBjOFx1MzBjYVx1MzBlMFx1ZmYxYVx1NWMwZlx1NTc4Ylx1ODFlYVx1NTJkNVx1NTMxNlx1NmE1Zlx1NjhiMFx1MzAwMVx1MzBhYVx1MzBmY1x1MzBjOFx1MzBkMFx1MzBhNFx1MzA0YVx1MzA4OFx1MzA3M1x1ODFlYVx1NTJkNVx1OGVjYVx1MzA2ZVx1MzBkY1x1MzBlYlx1MzBjOFx1MzAwMVx1NzdmM1x1NmNiOVx1MzA0YVx1MzA4OFx1MzA3M1x1MzBhY1x1MzBiOVx1NzUyM1x1Njk2ZFx1MzA2ZVx1ODhmZFx1NTRjMVx1MzAwMiIsInBlcmNlbnQiOnsidW5pdCI6IiUiLCJzaXplIjoyMCwic2l6ZXMiOltdfX0seyJfaWQiOiJlMTdhMTk1IiwidGl0bGUiOiJcdTMwNWRcdTMwNmVcdTRlZDZcdTMwNmVcdTVlMDJcdTU4MzRcdTMwNjhcdTg4ZmRcdTU0YzFcdTMwMDIiLCJwZXJjZW50Ijp7InVuaXQiOiIlIiwic2l6ZSI6Miwic2l6ZXMiOltdfX1dLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6Ijc4IiwiaXNMaW5rZWQiOmZhbHNlfSwiX21hcmdpbl9tb2JpbGUiOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjp0cnVlfX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X3Byb2dyZXNzYmFyIn0=\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-b6145ce elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"b6145ce\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-e65d58b\" data-id=\"e65d58b\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjljZDU1ZGQiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Zlx1ODkwN1x1NjU3MFx1MzA2ZVx1Njk2ZFx1NzU0Y1x1MzA2N1x1MzBiNVx1MzBmY1x1MzBkM1x1MzBiOVx1MzA5Mlx1NjNkMFx1NGY5Ylx1MzA1N1x1MzA2Nlx1MzA0NFx1MzA3ZVx1MzA1OVx1MzAwMiIsInRpdGxlX2NvbG9yIjoiIzg1QjIzQiIsInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplIjp7InVuaXQiOiJweCIsInNpemUiOjM2LCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0Ijp7InVuaXQiOiJweCIsInNpemUiOjQ4LCJzaXplcyI6W119LCJzdHlsZSI6InN0LWxpbmUtbGVmdCIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjp0cnVlfSwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemVfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjMwLCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0X3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjozOCwic2l6ZXMiOltdfSwiY3RfYW5pbWF0ZSI6IndvdyBmYWRlSW5MZWZ0IiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemVfbW9iaWxlIjp7InVuaXQiOiJweCIsInNpemUiOjI4LCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0X21vYmlsZSI6eyJ1bml0IjoicHgiLCJzaXplIjozNCwic2l6ZXMiOltdfX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-2067062\" data-id=\"2067062\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-956a238 wow fadeInRight elementor-widget elementor-widget-text-editor\" data-id=\"956a238\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>u79c1u305fu3061u306fu5e38u306bu9867u5ba2u306eu30c7u30b6u30a4u30f3u8981u6c42u3092u6e80u305fu3057u307eu3059u3002u5916u89b3u3068u5bf8u6cd5u306fu3001u6700u3082u91cdu8981u8996u3057u3066u3044u308bu8981u7d20u3067u3059u3002</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-74328b6b elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"74328b6b\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4b9c9796\" data-id=\"4b9c9796\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjFjYTNiNmM1IiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsibGF5b3V0IjoiNCIsImxpbWl0Ijo0LCJmaWx0ZXJfZGVmYXVsdF90aXRsZSI6IkFsbCIsImNvbF9zbSI6IjEiLCJjb2xfbWQiOiIyIiwiY29sX2xnIjoiMiIsImNvbF94bCI6IjIiLCJidXR0b25fdGV4dCI6IlJlYWQgbW9yZSIsInNvdXJjZSI6WyJqYXxsYW5ndWFnZSJdLCJjdF9hbmltYXRlIjoid293IGZhZGVJblVwIiwib3JkZXIiOiJhc2MifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3Rfc2VydmljZV9ncmlkIn0=\"][elementor-element data=\"eyJpZCI6IjI5NzFiOGIzIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGV4dCI6Ilx1MzA1ZFx1MzA2ZVx1NGVkNlx1MzA2ZVx1MzBiNVx1MzBmY1x1MzBkM1x1MzBiOSIsImxpbmsiOnsidXJsIjoiXC9zZXJ2aWNlcyIsImlzX2V4dGVybmFsIjoiIiwibm9mb2xsb3ciOiIifSwiYWxpZ24iOiJjZW50ZXIiLCJidG5faWNvbiI6eyJ2YWx1ZSI6Im1hdGVyaWFsIHptZGkgem1kaS1zZXR0aW5ncyIsImxpYnJhcnkiOiJtYXRlcmlhbCJ9LCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6Ii0xMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sInN0eWxlIjoiYnRuLXByZXNldDMiLCJfYW5pbWF0aW9uIjoibm9uZSJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9idXR0b24ifQ==\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-f43d465 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"f43d465\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-5310bd3\" data-id=\"5310bd3\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImJjZmM3MzUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjdGY3X2lkIjoiOTMyIiwibGF5b3V0IjoiMiIsImN0ZjdfdGl0bGUiOiJcdThjZWFcdTU1NGZcdTMwNGNcdTMwNDJcdTMwOGFcdTMwN2VcdTMwNTlcdTMwNGJcdWZmMWYiLCJjdGY3X2Rlc2NyaXB0aW9uIjoiQ2FsbDogODAwIDI1MCAzNjkiLCJjdGY3X3Bob25lIjoiPHNwYW4+Q2FsbDo8XC9zcGFuPiAwOTY4ODYwMzg2IiwiZWxfdGl0bGUiOiJcdTg5OGJcdTdhNGRcdTMwODJcdTMwOGFcdTMwOTJcdTUzZDZcdTVmOTdcdTMwNTlcdTMwOGJcdTMwNWZcdTMwODFcdTMwNmVcdTkwMjNcdTdkNjFcdTUxNDhcdWZmMWEiLCJjdF9hbmltYXRlIjoid293IGZsaXBJblgifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY3RmNyJ9\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-a9b49c5 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"a9b49c5\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n                            <div class=\"elementor-background-overlay\"></div>n                n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-1dcb85a\" data-id=\"1dcb85a\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n                <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-6c560a6 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"6c560a6\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-e82cd67\" data-id=\"e82cd67\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImVmNDE1MTEiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Zlx1N2MyMVx1NTM1OFx1MzA2YVx1NGY1Y1x1Njk2ZFx1NjI0Ylx1OTgwNlx1MzA5Mlx1NjMwMVx1MzA2M1x1MzA2Nlx1MzA0NFx1MzA3ZVx1MzA1OVx1MzAwMiIsInRpdGxlX2NvbG9yIjoiI2ZmZmZmZiIsInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplIjp7InVuaXQiOiJweCIsInNpemUiOjM2LCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0Ijp7InVuaXQiOiJweCIsInNpemUiOjQ4LCJzaXplcyI6W119LCJzdHlsZSI6InN0LWxpbmUtbGVmdCIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjp0cnVlfSwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemVfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjMwLCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0X3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjozOCwic2l6ZXMiOltdfSwiY3RfYW5pbWF0ZSI6IndvdyBmYWRlSW5MZWZ0In0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-3a08737\" data-id=\"3a08737\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-7aa11c2 wow fadeInRight elementor-widget elementor-widget-text-editor\" data-id=\"7aa11c2\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>u79c1u305fu3061u306fu5e38u306bu54c1u8ceau3068u9032u6357u306bu304au3044u3066u5b89u5fc3u611fu3092u63d0u4f9bu3057u307eu3059u3002</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n        [elementor-element data=\"eyJpZCI6IjlkNWVhMzIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X2xpc3QiOlt7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi1yZXNlYXJjaCIsImxpYnJhcnkiOiJmbGF0aWNvbiJ9LCJfaWQiOiIwNTVmZWYyIiwidGl0bGUiOiJcdTc5YzFcdTMwNWZcdTMwNjFcdTMwOTJcdTYzYTJcdTMwNTkiLCJkZXNjcmlwdGlvbiI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Zlx1MzAwMVx1NTQwNFx1MzBkN1x1MzBlZFx1MzBiOFx1MzBhN1x1MzBhZlx1MzBjOFx1MzA5Mlx1N2RjZlx1NTQwOFx1NzY4NFx1MzA2Ylx1NTNkNlx1MzA4YVx1NjI3MVx1MzA0Nlx1OTFjZFx1ODk4MVx1NjAyN1x1MzA5Mlx1NzQwNlx1ODllM1x1MzA1N1x1MzA2Nlx1MzA0NFx1MzA3ZVx1MzA1OVx1MzAwMiIsImJ0bl9saW5rIjp7InVybCI6IiIsImlzX2V4dGVybmFsIjoiIiwibm9mb2xsb3ciOiIifX0seyJjdF9pY29uIjp7InZhbHVlIjoiZmxhdGljb24gZmxhdGljb24tbmV0d29yayIsImxpYnJhcnkiOiJmbGF0aWNvbiJ9LCJfaWQiOiIzOWUxNGI4IiwidGl0bGUiOiJcdTc5YzFcdTMwNWZcdTMwNjFcdTMwNjhcdTYzYTVcdTdkOWFcdTMwNTlcdTMwOGIiLCJkZXNjcmlwdGlvbiI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA0Y1x1NGVkNlx1MzA2ZVx1MzBhOFx1MzBmY1x1MzBiOFx1MzBhN1x1MzBmM1x1MzBiN1x1MzBmY1x1MzA2OFx1NzU3MFx1MzA2YVx1MzA4Ylx1NzBiOVx1MzA2Zlx1MzAwMVx1MzBhYlx1MzBiOVx1MzBiZlx1MzBkZVx1MzBhNFx1MzBiYVx1MzA1NVx1MzA4Y1x1MzA1Zlx1MzBiZFx1MzBlYVx1MzBlNVx1MzBmY1x1MzBiN1x1MzBlN1x1MzBmM1x1MzA5Mlx1NGY1Y1x1NjIxMFx1MzA1OVx1MzA4Ylx1NWMwMlx1OTU4MFx1NzdlNVx1OGI1OFx1MzA2Ylx1MzA0Mlx1MzA4YVx1MzA3ZVx1MzA1OVx1MzAwMiIsImJ0bl9saW5rIjp7InVybCI6IiIsImlzX2V4dGVybmFsIjoiIiwibm9mb2xsb3ciOiIifX0seyJjdF9pY29uIjp7InZhbHVlIjoiZmxhdGljb24gZmxhdGljb24td2FsbGV0IiwibGlicmFyeSI6ImZsYXRpY29uIn0sIl9pZCI6ImY1ZTEwZTgiLCJ0aXRsZSI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Ylx1NjUyZlx1NjI1NVx1MzA0NiIsImRlc2NyaXB0aW9uIjoiXHU3OWMxXHUzMDVmXHUzMDYxXHUzMDZmXHUzMDAxXHU1NDA0XHUzMGMxXHUzMGZjXHUzMGUwXHUzMGUxXHUzMGYzXHUzMGQwXHUzMGZjXHUzMDRjXHU4MWVhXHU1MjA2XHU4MWVhXHU4ZWFiXHUzMDZlXHU2NzAwXHU5YWQ4XHUzMDZlXHU1OWZmXHUzMDkyXHU3NmVlXHU2MzA3XHUzMDU5XHUzMDUzXHUzMDY4XHUzMDkyXHU1OTY4XHU1MmIxXHUzMDU3XHUzMDAxXHU2N2Q0XHU4ZWRmXHUzMDY3XHU1MzU0XHU1MjliXHU3Njg0XHUzMDZhXHU3NGIwXHU1ODgzXHUzMDkyXHU4MGIyXHUzMDkzXHUzMDY3XHUzMDQ0XHUzMDdlXHUzMDU5XHUzMDAyIiwiYnRuX2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9fSx7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi10YXJnZXQiLCJsaWJyYXJ5IjoiZmxhdGljb24ifSwiX2lkIjoiODgzOTk2OSIsInRpdGxlIjoiXHUzMDQyXHUzMDZhXHUzMDVmXHUzMDZlXHU1OTIyXHUzMDkyXHU1YjlmXHU3M2ZlXHUzMDU5XHUzMDhiIiwiZGVzY3JpcHRpb24iOiJcdTMwNjlcdTMwNmVcdTMwZDNcdTMwYjhcdTMwY2RcdTMwYjlcdTMwNmJcdTMwODJcdTMwMDFcdTk3NjlcdTY1YjBcdTMwNjhcdTkwMzJcdTZiNjlcdTMwOTJcdTRmYzNcdTMwNTlcdTcyZWNcdTgxZWFcdTMwNmVcdTMwYmRcdTMwZWFcdTMwZTVcdTMwZmNcdTMwYjdcdTMwZTdcdTMwZjNcdTMwNGNcdTMwNDJcdTMwOGFcdTMwN2VcdTMwNTlcdTMwMDIiLCJidG5fbGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn19XSwidGl0bGVfY29sb3IiOiIjZmZmZmZmIiwiZGVzY3JpcHRpb25fY29sb3IiOiIjRkZGRkZGIiwiY3RfYW5pbWF0ZSI6IndvdyBmYWRlSW4ifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfcHJvY2VzcyJ9\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-79ee8ab elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"79ee8ab\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4af1814\" data-id=\"4af1814\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n                <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-505fb45 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"505fb45\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-7223f1c\" data-id=\"7223f1c\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-e7c238e elementor-widget elementor-widget-google_maps\" data-id=\"e7c238e\" data-element_type=\"widget\" data-widget_type=\"google_maps.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-custom-embed\">nttt<iframe loading=\"lazy\"ntttttsrc=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"nttttttitle=\"10u00b057&#039;11.2&quot;N 106u00b045&#039;13.0&quot;E\"ntttttaria-label=\"10u00b057&#039;11.2&quot;N 106u00b045&#039;13.0&quot;E\"nttt></iframe>ntt</div>ntttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-0225539\" data-id=\"0225539\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjUxZDU0M2EiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1MzA0NFx1MzA2NFx1MzA2N1x1MzA4Mlx1MzA2OVx1MzA5M1x1MzA2YVx1NTJhOVx1MzA1MVx1MzA0Y1x1NWZjNVx1ODk4MVx1MzA2YVx1NTgzNFx1NTQwOFx1MzA2N1x1MzA4Mlx1MzAwMVx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Ylx1MzA1NFx1OTAyM1x1N2Q2MVx1MzA0Zlx1MzA2MFx1MzA1NVx1MzA0NC4uLiIsInRpdGxlX2NvbG9yIjoiIzg1QjIzQiIsIl9wYWRkaW5nIjp7InVuaXQiOiIlIiwidG9wIjoiMCIsInJpZ2h0IjoiNSIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sInRpdGxlX3NwYWNlX2JvdHRvbSI6eyJ1bml0IjoicHgiLCJzaXplIjozMywic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemVfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjMwLCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0X3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjozOCwic2l6ZXMiOltdfSwiY3RfYW5pbWF0ZSI6IndvdyBmbGlwSW5YIiwiX3BhZGRpbmdfdGFibGV0Ijp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"][elementor-element data=\"eyJpZCI6ImVkMGRjMWIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjdGY3X2lkIjoiOTc0Iiwic3R5bGVfbDEiOiJzdHlsZTIifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY3RmNyJ9\"]            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                    </div>n        </section>n        \",\"scripts\":[\"jquery-numerator\",\"ct-counter-widget-js\",\"ct-progressbar-widget-js\",\"imagesloaded\",\"isotope\",\"ct-post-masonry-widget-js\",\"ct-post-grid-widget-js\"],\"styles\":[\"widget-text-editor\",\"e-animation-slideInUp\",\"widget-image\",\"widget-google_maps\"]}}'),(10313,3164,'_elementor_edit_mode','builder'),(10314,3164,'_elementor_template_type','wp-page'),(10315,3164,'_elementor_version','3.24.7'),(10316,3164,'_wp_page_template','default'),(10317,3164,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u3001\\u30d9\\u30c8\\u30ca\\u30e0\\u5168\\u571f\\u304a\\u3088\\u3073\\u4e16\\u754c\\u4e2d\\u306e\\u6a5f\\u68b0\\u7523\\u696d\\u5411\\u3051\\u306b\\u5e45\\u5e83\\u3044\\u88fd\\u54c1\\u3092\\u63d0\\u4f9b\\u3057\\u3066\\u304a\\u308a\\u3001\\u7279\\u306b\\u65e5\\u672c\\u3001\\u97d3\\u56fd\\u3001\\u30a2\\u30e1\\u30ea\\u30ab\\u3001\\u30aa\\u30fc\\u30b9\\u30c8\\u30e9\\u30ea\\u30a2\\u3068\\u3044\\u3063\\u305f\\u4e3b\\u8981\\u5e02\\u5834\\u3067\\u306e\\u53d6\\u5f15\\u306b\\u529b\\u3092\\u5165\\u308c\\u3066\\u3044\\u307e\\u3059\\u3002\\u307e\\u305f\\u3001\\u3053\\u308c\\u3089\\u306e\\u5e02\\u5834\\u3078\\u306e\\u8f38\\u51fa\\u7d4c\\u9a13\\u3082\\u8c4a\\u5bcc\\u3067\\u3059\\u3002\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306e\\u6700\\u5927\\u306e\\u5f37\\u307f\\u306f\\u3001\\u5b66\\u3076\\u3053\\u3068\\u3001\\u9769\\u65b0\\u3059\\u308b\\u3053\\u3068\\u306b\\u60c5\\u71b1\\u3092\\u6301\\u3061\\u3001\\u81ea\\u4fe1\\u3092\\u6301\\u3063\\u305f\\u82e5\\u3044\\u52b4\\u50cd\\u529b\\u306b\\u3042\\u308a\\u307e\\u3059\\u3002\\u3053\\u306e\\u30c1\\u30fc\\u30e0\\u306f\\u3001\\u5e38\\u306b\\u5b89\\u5b9a\\u3057\\u305f\\u9ad8\\u54c1\\u8cea\\u306e\\u6a5f\\u68b0\\u88fd\\u54c1\\u3092\\u591a\\u69d8\\u306b\\u88fd\\u9020\\u3059\\u308b\\u80fd\\u529b\\u3092\\u5099\\u3048\\u3066\\u3044\\u307e\\u3059\\u3002<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/youtu.be\\/vUCVqLmXSPM?si=NDYrSC8zPIUGPj3l\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"\\u9867\\u5ba2\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"\\u4eba\\u4e8b\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"\\u5e74\\u9593\\u6ce8\\u6587\\u6570\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306f\\u3001\\u4e16\\u754c\\u4e2d\\u304b\\u3089\\u306e\\u6ce8\\u6587\\u3068\\u63a5\\u7d9a\\u3059\\u308b\\u305f\\u3081\\u306bAlibaba\\u306b\\u5e97\\u8217\\u3092\\u958b\\u8a2d\\u3057\\u59cb\\u3081\\u307e\\u3057\\u305f\\u3002<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0e89391\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u30012030\\u5e74\\u307e\\u3067\\u306b\\u30d9\\u30c8\\u30ca\\u30e0\\u306e\\u4e3b\\u8981\\u306a\\u6a5f\\u68b0\\u52a0\\u5de5\\u4f01\\u696d\\u306e\\u4e00\\u3064\\u3068\\u3057\\u3066\\u3001\\u56fd\\u969b\\u5e02\\u5834\\u306b\\u4f9b\\u7d66\\u3059\\u308b\\u3053\\u3068\\u3092\\u76ee\\u6307\\u3057\\u3066\\u3044\\u307e\\u3059\\u3002\\u5c06\\u6765\\u7684\\u306b\\u306f\\u3001\\u5b8c\\u6210\\u3057\\u305f\\u6a5f\\u68b0\\u88fd\\u54c1\\u3092\\u76f4\\u63a5\\u30a8\\u30f3\\u30c9\\u30e6\\u30fc\\u30b6\\u30fc\\u306b\\u63d0\\u4f9b\\u3059\\u308b\\u3053\\u3068\\u3092\\u76ee\\u6a19\\u3068\\u3057\\u3066\\u3044\\u307e\\u3059\\u3002\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2026\\u5e74\\u307e\\u3067\\u306b\\u9054\\u6210\\u3059\\u308b\\u76ee\\u6a19:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"\\u6771\\u30a2\\u30b8\\u30a2\\uff08\\u65e5\\u672c\\u3001\\u97d3\\u56fd\\u306a\\u3069\\uff09\\uff1a\\u4ea4\\u63db\\u7528\\u6a5f\\u68b0\\u90e8\\u54c1\\u3001\\u30aa\\u30fc\\u30c8\\u30d0\\u30a4\\u304a\\u3088\\u3073\\u81ea\\u52d5\\u8eca\\u306e\\u30a2\\u30af\\u30bb\\u30b5\\u30ea\\u30fc\\u3001\\u6c34\\u7523\\u696d\\u7528\\u306e\\u30d5\\u30a3\\u30c3\\u30c6\\u30a3\\u30f3\\u30b0\\u3001\\u91d1\\u578b\\u3001\\u305d\\u306e\\u4ed6\\u306e\\u6a5f\\u68b0\\u90e8\\u54c1\\u306e\\u8f38\\u51fa\\u3002\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"\\u30e8\\u30fc\\u30ed\\u30c3\\u30d1\\uff08\\u30c9\\u30a4\\u30c4\\u3001\\u30d6\\u30eb\\u30ac\\u30ea\\u30a2\\u3001\\u30aa\\u30e9\\u30f3\\u30c0\\u306a\\u3069\\uff09\\uff1a\\u81ea\\u52d5\\u8eca\\u7528\\u30d9\\u30a2\\u30ea\\u30f3\\u30b0\\u306e\\u6cbb\\u5177\\u304a\\u3088\\u3073\\u81ea\\u52d5\\u5316\\u6a5f\\u68b0\\u306e\\u96fb\\u6c17\\u30dc\\u30c3\\u30af\\u30b9\\u90e8\\u54c1\\u306e\\u751f\\u7523\\u3002\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"\\u30a2\\u30e1\\u30ea\\u30ab\\u5408\\u8846\\u56fd\\uff1a\\u533b\\u7642\\u6a5f\\u5668\\u3001\\u5149\\u5b66\\u6a5f\\u5668\\u3001\\u97f3\\u97ff\\u6a5f\\u5668\\u306b\\u95a2\\u9023\\u3059\\u308b\\u88fd\\u54c1\\u3002\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"\\u30aa\\u30fc\\u30b9\\u30c8\\u30e9\\u30ea\\u30a2\\uff1a\\u677f\\u91d1\\u88fd\\u54c1\\u3002\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"\\u30d9\\u30c8\\u30ca\\u30e0\\uff1a\\u5c0f\\u578b\\u81ea\\u52d5\\u5316\\u6a5f\\u68b0\\u3001\\u30aa\\u30fc\\u30c8\\u30d0\\u30a4\\u304a\\u3088\\u3073\\u81ea\\u52d5\\u8eca\\u306e\\u30dc\\u30eb\\u30c8\\u3001\\u77f3\\u6cb9\\u304a\\u3088\\u3073\\u30ac\\u30b9\\u7523\\u696d\\u306e\\u88fd\\u54c1\\u3002\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"\\u305d\\u306e\\u4ed6\\u306e\\u5e02\\u5834\\u3068\\u88fd\\u54c1\\u3002\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u8907\\u6570\\u306e\\u696d\\u754c\\u3067\\u30b5\\u30fc\\u30d3\\u30b9\\u3092\\u63d0\\u4f9b\\u3057\\u3066\\u3044\\u307e\\u3059\\u3002\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306f\\u5e38\\u306b\\u9867\\u5ba2\\u306e\\u30c7\\u30b6\\u30a4\\u30f3\\u8981\\u6c42\\u3092\\u6e80\\u305f\\u3057\\u307e\\u3059\\u3002\\u5916\\u89b3\\u3068\\u5bf8\\u6cd5\\u306f\\u3001\\u6700\\u3082\\u91cd\\u8981\\u8996\\u3057\\u3066\\u3044\\u308b\\u8981\\u7d20\\u3067\\u3059\\u3002<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"ja|language\"],\"ct_animate\":\"wow fadeInUp\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u305d\\u306e\\u4ed6\\u306e\\u30b5\\u30fc\\u30d3\\u30b9\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"\\u8cea\\u554f\\u304c\\u3042\\u308a\\u307e\\u3059\\u304b\\uff1f\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"\\u898b\\u7a4d\\u3082\\u308a\\u3092\\u53d6\\u5f97\\u3059\\u308b\\u305f\\u3081\\u306e\\u9023\\u7d61\\u5148\\uff1a\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u7c21\\u5358\\u306a\\u4f5c\\u696d\\u624b\\u9806\\u3092\\u6301\\u3063\\u3066\\u3044\\u307e\\u3059\\u3002\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306f\\u5e38\\u306b\\u54c1\\u8cea\\u3068\\u9032\\u6357\\u306b\\u304a\\u3044\\u3066\\u5b89\\u5fc3\\u611f\\u3092\\u63d0\\u4f9b\\u3057\\u307e\\u3059\\u3002<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"\\u79c1\\u305f\\u3061\\u3092\\u63a2\\u3059\",\"description\":\"\\u79c1\\u305f\\u3061\\u306f\\u3001\\u5404\\u30d7\\u30ed\\u30b8\\u30a7\\u30af\\u30c8\\u3092\\u7dcf\\u5408\\u7684\\u306b\\u53d6\\u308a\\u6271\\u3046\\u91cd\\u8981\\u6027\\u3092\\u7406\\u89e3\\u3057\\u3066\\u3044\\u307e\\u3059\\u3002\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"\\u79c1\\u305f\\u3061\\u3068\\u63a5\\u7d9a\\u3059\\u308b\",\"description\":\"\\u79c1\\u305f\\u3061\\u304c\\u4ed6\\u306e\\u30a8\\u30fc\\u30b8\\u30a7\\u30f3\\u30b7\\u30fc\\u3068\\u7570\\u306a\\u308b\\u70b9\\u306f\\u3001\\u30ab\\u30b9\\u30bf\\u30de\\u30a4\\u30ba\\u3055\\u308c\\u305f\\u30bd\\u30ea\\u30e5\\u30fc\\u30b7\\u30e7\\u30f3\\u3092\\u4f5c\\u6210\\u3059\\u308b\\u5c02\\u9580\\u77e5\\u8b58\\u306b\\u3042\\u308a\\u307e\\u3059\\u3002\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"\\u79c1\\u305f\\u3061\\u306b\\u652f\\u6255\\u3046\",\"description\":\"\\u79c1\\u305f\\u3061\\u306f\\u3001\\u5404\\u30c1\\u30fc\\u30e0\\u30e1\\u30f3\\u30d0\\u30fc\\u304c\\u81ea\\u5206\\u81ea\\u8eab\\u306e\\u6700\\u9ad8\\u306e\\u59ff\\u3092\\u76ee\\u6307\\u3059\\u3053\\u3068\\u3092\\u5968\\u52b1\\u3057\\u3001\\u67d4\\u8edf\\u3067\\u5354\\u529b\\u7684\\u306a\\u74b0\\u5883\\u3092\\u80b2\\u3093\\u3067\\u3044\\u307e\\u3059\\u3002\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"\\u3042\\u306a\\u305f\\u306e\\u5922\\u3092\\u5b9f\\u73fe\\u3059\\u308b\",\"description\":\"\\u3069\\u306e\\u30d3\\u30b8\\u30cd\\u30b9\\u306b\\u3082\\u3001\\u9769\\u65b0\\u3068\\u9032\\u6b69\\u3092\\u4fc3\\u3059\\u72ec\\u81ea\\u306e\\u30bd\\u30ea\\u30e5\\u30fc\\u30b7\\u30e7\\u30f3\\u304c\\u3042\\u308a\\u307e\\u3059\\u3002\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u3044\\u3064\\u3067\\u3082\\u3069\\u3093\\u306a\\u52a9\\u3051\\u304c\\u5fc5\\u8981\\u306a\\u5834\\u5408\\u3067\\u3082\\u3001\\u79c1\\u305f\\u3061\\u306b\\u3054\\u9023\\u7d61\\u304f\\u3060\\u3055\\u3044...\",\"title_color\":\"#85B23B\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(10318,3164,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(10319,3164,'_elementor_css','a:6:{s:4:\"time\";i:1742177092;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:8:\"material\";i:1;s:8:\"flaticon\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(10320,3164,'_elementor_page_assets','a:2:{s:6:\"styles\";a:4:{i:0;s:18:\"widget-text-editor\";i:1;s:21:\"e-animation-slideInUp\";i:2;s:12:\"widget-image\";i:3;s:18:\"widget-google_maps\";}s:7:\"scripts\";a:9:{i:0;s:16:\"jquery-numerator\";i:1;s:20:\"ct-counter-widget-js\";i:2;s:11:\"progressbar\";i:3;s:16:\"waypoints-lib-js\";i:4;s:24:\"ct-progressbar-widget-js\";i:5;s:12:\"imagesloaded\";i:6;s:7:\"isotope\";i:7;s:25:\"ct-post-masonry-widget-js\";i:8;s:22:\"ct-post-grid-widget-js\";}}'),(10321,3164,'_elementor_element_cache','{\"timeout\":1742263492,\"value\":{\"content\":\"        <section class=\"elementor-section elementor-top-section elementor-element elementor-element-2d2b67a elementor-section-stretched elementor-section-full_width slider-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"2d2b67a\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-no \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-d1bb387\" data-id=\"d1bb387\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImNjODZmNGQiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJyZXZzbGlkZXJ0aXRsZSI6IkhvbWUgMSIsInNob3J0Y29kZSI6IltyZXZfc2xpZGVyIGFsaWFzPVwiaG9tZS0xXCJdW1wvcmV2X3NsaWRlcl0ifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoic2xpZGVyX3Jldm9sdXRpb24ifQ==\"]        <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-2cea906 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"2cea906\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-8e117d0\" data-id=\"8e117d0\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjI0YjYyY2MiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Zlx1MzAwMVx1MzBkOVx1MzBjOFx1MzBjYVx1MzBlMFx1NTE2OFx1NTcxZlx1MzA0YVx1MzA4OFx1MzA3M1x1NGUxNlx1NzU0Y1x1NGUyZFx1MzA2ZVx1NmE1Zlx1NjhiMFx1NzUyM1x1Njk2ZFx1NTQxMVx1MzA1MVx1MzA2Ylx1NWU0NVx1NWU4M1x1MzA0NFx1ODhmZFx1NTRjMVx1MzA5Mlx1NjNkMFx1NGY5Ylx1MzA1N1x1MzA2Nlx1MzA0YVx1MzA4YVx1MzAwMVx1NzI3OVx1MzA2Ylx1NjVlNVx1NjcyY1x1MzAwMVx1OTdkM1x1NTZmZFx1MzAwMVx1MzBhMlx1MzBlMVx1MzBlYVx1MzBhYlx1MzAwMVx1MzBhYVx1MzBmY1x1MzBiOVx1MzBjOFx1MzBlOVx1MzBlYVx1MzBhMlx1MzA2OFx1MzA0NFx1MzA2M1x1MzA1Zlx1NGUzYlx1ODk4MVx1NWUwMlx1NTgzNFx1MzA2N1x1MzA2ZVx1NTNkNlx1NWYxNVx1MzA2Ylx1NTI5Ylx1MzA5Mlx1NTE2NVx1MzA4Y1x1MzA2Nlx1MzA0NFx1MzA3ZVx1MzA1OVx1MzAwMlx1MzA3ZVx1MzA1Zlx1MzAwMVx1MzA1M1x1MzA4Y1x1MzA4OVx1MzA2ZVx1NWUwMlx1NTgzNFx1MzA3OFx1MzA2ZVx1OGYzOFx1NTFmYVx1N2Q0Y1x1OWExM1x1MzA4Mlx1OGM0YVx1NWJjY1x1MzA2N1x1MzA1OVx1MzAwMiIsInRpdGxlX2NvbG9yIjoiIzg1QjIzQiIsInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplIjp7InVuaXQiOiJweCIsInNpemUiOjM2LCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0Ijp7InVuaXQiOiJweCIsInNpemUiOjQ4LCJzaXplcyI6W119LCJzdHlsZSI6InN0LWxpbmUtbGVmdCIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjE2IiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MjYsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjM0LCJzaXplcyI6W119LCJjdF9hbmltYXRlIjoid293IGZhZGVJblVwIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"]tt<div class=\"elementor-element elementor-element-909b449 wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"909b449\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>u79c1u305fu3061u306eu6700u5927u306eu5f37u307fu306fu3001u5b66u3076u3053u3068u3001u9769u65b0u3059u308bu3053u3068u306bu60c5u71b1u3092u6301u3061u3001u81eau4fe1u3092u6301u3063u305fu82e5u3044u52b4u50cdu529bu306bu3042u308au307eu3059u3002u3053u306eu30c1u30fcu30e0u306fu3001u5e38u306bu5b89u5b9au3057u305fu9ad8u54c1u8ceau306eu6a5fu68b0u88fdu54c1u3092u591au69d8u306bu88fdu9020u3059u308bu80fdu529bu3092u5099u3048u3066u3044u307eu3059u3002</p>tttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImM0YTIwMjgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJpbWFnZSI6eyJ1cmwiOiIiLCJpZCI6IiJ9LCJ2aWRlb19saW5rIjoiaHR0cHM6XC9cL3d3dy55b3V0dWJlLmNvbVwvd2F0Y2g/dj1vVlE0X1BJcWd6OCIsImJ0bl92aWRlb19zdHlsZSI6InN0eWxlMyIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMzEiLCJyaWdodCI6IjM4IiwiYm90dG9tIjoiMCIsImxlZnQiOiI3OCIsImlzTGlua2VkIjpmYWxzZX0sIl9jc3NfY2xhc3NlcyI6ImVsLWlubGluZSB3b3cgZmFkZUluUmlnaHQiLCJfbWFyZ2luX3RhYmxldCI6eyJ1bml0IjoicHgiLCJ0b3AiOiIzMSIsInJpZ2h0IjoiMjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjY4IiwiaXNMaW5rZWQiOmZhbHNlfSwiX2FuaW1hdGlvbiI6InNsaWRlSW5VcCIsIl9tYXJnaW5fbW9iaWxlIjp7InVuaXQiOiJweCIsInRvcCI6IjMxIiwicmlnaHQiOiIyMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF92aWRlb19wbGF5ZXIifQ==\"]tt<div class=\"elementor-element elementor-element-1fd7931 el-inline wow fadeInRight elementor-invisible elementor-widget elementor-widget-image\" data-id=\"1fd7931\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;slideInUp&quot;}\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" class=\"attachment-full size-full wp-image-2542\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-4fff345\" data-id=\"4fff345\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjU5MGYxYmUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjo1MCwic3VmZml4IjoiKyIsInRob3VzYW5kX3NlcGFyYXRvciI6IiIsInRob3VzYW5kX3NlcGFyYXRvcl9jaGFyIjoiICIsInRpdGxlIjoiXHU5ODY3XHU1YmEyIiwic2hvd19pY29uIjoidHJ1ZSIsImNvdW50ZXJfaWNvbiI6eyJ2YWx1ZSI6Im1hdGVyaWFsIHptZGkgem1kaS1hc3NpZ25tZW50LWNoZWNrIiwibGlicmFyeSI6Im1hdGVyaWFsIn0sIm51bWJlcl90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiI0MSIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwiX2Nzc19jbGFzc2VzIjoidGV4dC1jZW50ZXItc20iLCJpY29uX3R5cGUiOiJpbWFnZSIsImljb25faW1hZ2UiOnsidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMTlcLzEyXC9jb3VudGVyLWljb24tMDEucG5nIiwiaWQiOjE1MTV9LCJfYW5pbWF0aW9uIjoibm9uZSIsImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluVXAifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY291bnRlciJ9\"][elementor-element data=\"eyJpZCI6IjdhNWYyMzkiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjoyMDAsInN1ZmZpeCI6IisiLCJ0aG91c2FuZF9zZXBhcmF0b3IiOiIiLCJ0aG91c2FuZF9zZXBhcmF0b3JfY2hhciI6IiAiLCJ0aXRsZSI6Ilx1NGViYVx1NGU4YiIsInNob3dfaWNvbiI6InRydWUiLCJjb3VudGVyX2ljb24iOnsidmFsdWUiOiJtYXRlcmlhbCB6bWRpIHptZGktYXNzaWdubWVudC1jaGVjayIsImxpYnJhcnkiOiJtYXRlcmlhbCJ9LCJudW1iZXJfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiNDEiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sIl9jc3NfY2xhc3NlcyI6InRleHQtY2VudGVyLXNtIiwiaWNvbl90eXBlIjoiaW1hZ2UiLCJpY29uX2ltYWdlIjp7InVybCI6Imh0dHA6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDE5XC8xMlwvY291bnRlci1pY29uLTAyLnBuZyIsImlkIjoxNTE2fSwiX2FuaW1hdGlvbiI6Im5vbmUiLCJjdF9hbmltYXRlIjoid293IGZhZGVJblVwIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2NvdW50ZXIifQ==\"][elementor-element data=\"eyJpZCI6IjA0NTMxYzgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjoyMDAwLCJzdWZmaXgiOiIrIiwidGhvdXNhbmRfc2VwYXJhdG9yIjoiIiwidGhvdXNhbmRfc2VwYXJhdG9yX2NoYXIiOiIgIiwidGl0bGUiOiJcdTVlNzRcdTk1OTNcdTZjZThcdTY1ODdcdTY1NzAiLCJzaG93X2ljb24iOiJ0cnVlIiwiY291bnRlcl9pY29uIjp7InZhbHVlIjoibWF0ZXJpYWwgem1kaSB6bWRpLWFzc2lnbm1lbnQtY2hlY2siLCJsaWJyYXJ5IjoibWF0ZXJpYWwifSwibnVtYmVyX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjQxIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJfY3NzX2NsYXNzZXMiOiJ0ZXh0LWNlbnRlci1zbSIsImljb25fdHlwZSI6ImltYWdlIiwiaWNvbl9pbWFnZSI6eyJ1cmwiOiJodHRwOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAxOVwvMTJcL2NvdW50ZXItaWNvbi0wMy5wbmciLCJpZCI6MTUxN30sIl9hbmltYXRpb24iOiJub25lIiwiY3RfYW5pbWF0ZSI6IndvdyBmYWRlSW5VcCJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9jb3VudGVyIn0=\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-348ba48\" data-id=\"348ba48\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-ed7e1d0 wow fadeInUp elementor-widget elementor-widget-image\" data-id=\"ed7e1d0\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" class=\"attachment-full size-full wp-image-2571\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntttt<div class=\"elementor-element elementor-element-3b54db6 wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"3b54db6\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>u79c1u305fu3061u306fu3001u4e16u754cu4e2du304bu3089u306eu6ce8u6587u3068u63a5u7d9au3059u308bu305fu3081u306bAlibabau306bu5e97u8217u3092u958bu8a2du3057u59cbu3081u307eu3057u305fu3002</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-8b70e78 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"8b70e78\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-c2b95bd\" data-id=\"c2b95bd\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-b5a8ba3 elementor-widget elementor-widget-image\" data-id=\"b5a8ba3\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" class=\"attachment-full size-full wp-image-2268\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntttt<div class=\"elementor-element elementor-element-0e89391 elementor-widget elementor-widget-image\" data-id=\"0e89391\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" class=\"attachment-full size-full wp-image-2559\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-de7136f\" data-id=\"de7136f\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6Ijg0MDdhYmUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Zlx1MzAwMTIwMzBcdTVlNzRcdTMwN2VcdTMwNjdcdTMwNmJcdTMwZDlcdTMwYzhcdTMwY2FcdTMwZTBcdTMwNmVcdTRlM2JcdTg5ODFcdTMwNmFcdTZhNWZcdTY4YjBcdTUyYTBcdTVkZTVcdTRmMDFcdTY5NmRcdTMwNmVcdTRlMDBcdTMwNjRcdTMwNjhcdTMwNTdcdTMwNjZcdTMwMDFcdTU2ZmRcdTk2OWJcdTVlMDJcdTU4MzRcdTMwNmJcdTRmOWJcdTdkNjZcdTMwNTlcdTMwOGJcdTMwNTNcdTMwNjhcdTMwOTJcdTc2ZWVcdTYzMDdcdTMwNTdcdTMwNjZcdTMwNDRcdTMwN2VcdTMwNTlcdTMwMDJcdTVjMDZcdTY3NjVcdTc2ODRcdTMwNmJcdTMwNmZcdTMwMDFcdTViOGNcdTYyMTBcdTMwNTdcdTMwNWZcdTZhNWZcdTY4YjBcdTg4ZmRcdTU0YzFcdTMwOTJcdTc2ZjRcdTYzYTVcdTMwYThcdTMwZjNcdTMwYzlcdTMwZTZcdTMwZmNcdTMwYjZcdTMwZmNcdTMwNmJcdTYzZDBcdTRmOWJcdTMwNTlcdTMwOGJcdTMwNTNcdTMwNjhcdTMwOTJcdTc2ZWVcdTZhMTlcdTMwNjhcdTMwNTdcdTMwNjZcdTMwNDRcdTMwN2VcdTMwNTlcdTMwMDIiLCJ0aXRsZV9jb2xvciI6IiM4NUIyM0IiLCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZSI6eyJ1bml0IjoicHgiLCJzaXplIjozNiwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodCI6eyJ1bml0IjoicHgiLCJzaXplIjo0OCwic2l6ZXMiOltdfSwic3R5bGUiOiJzdC1saW5lLWxlZnQiLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6Ii05IiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwidGl0bGVfc3BhY2VfYm90dG9tIjp7InVuaXQiOiJweCIsInNpemUiOjE3LCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzAsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjM4LCJzaXplcyI6W119LCJjdF9hbmltYXRlIjoid293IGZsaXBJblgiLCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV9tb2JpbGUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MjgsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfbW9iaWxlIjp7InVuaXQiOiJweCIsInNpemUiOjM0LCJzaXplcyI6W119fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-0c8497c wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"0c8497c\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>2026u5e74u307eu3067u306bu9054u6210u3059u308bu76eeu6a19:</p>tttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6IjQ3NTRlZDYiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJwcm9ncmVzc2Jhcl9saXN0IjpbeyJ0aXRsZSI6Ilx1Njc3MVx1MzBhMlx1MzBiOFx1MzBhMlx1ZmYwOFx1NjVlNVx1NjcyY1x1MzAwMVx1OTdkM1x1NTZmZFx1MzA2YVx1MzA2OVx1ZmYwOVx1ZmYxYVx1NGVhNFx1NjNkYlx1NzUyOFx1NmE1Zlx1NjhiMFx1OTBlOFx1NTRjMVx1MzAwMVx1MzBhYVx1MzBmY1x1MzBjOFx1MzBkMFx1MzBhNFx1MzA0YVx1MzA4OFx1MzA3M1x1ODFlYVx1NTJkNVx1OGVjYVx1MzA2ZVx1MzBhMlx1MzBhZlx1MzBiYlx1MzBiNVx1MzBlYVx1MzBmY1x1MzAwMVx1NmMzNFx1NzUyM1x1Njk2ZFx1NzUyOFx1MzA2ZVx1MzBkNVx1MzBhM1x1MzBjM1x1MzBjNlx1MzBhM1x1MzBmM1x1MzBiMFx1MzAwMVx1OTFkMVx1NTc4Ylx1MzAwMVx1MzA1ZFx1MzA2ZVx1NGVkNlx1MzA2ZVx1NmE1Zlx1NjhiMFx1OTBlOFx1NTRjMVx1MzA2ZVx1OGYzOFx1NTFmYVx1MzAwMiIsInByb2dyZXNzX3R5cGUiOiIiLCJwZXJjZW50Ijp7InVuaXQiOiIlIiwic2l6ZSI6MzAsInNpemVzIjpbXX0sImRpc3BsYXlfcGVyY2VudGFnZSI6ImhpZGUiLCJpbm5lcl90ZXh0IjoiV2ViIERlc2lnbmVyIiwiX2lkIjoiOGI0YmNkNiJ9LHsidGl0bGUiOiJcdTMwZThcdTMwZmNcdTMwZWRcdTMwYzNcdTMwZDFcdWZmMDhcdTMwYzlcdTMwYTRcdTMwYzRcdTMwMDFcdTMwZDZcdTMwZWJcdTMwYWNcdTMwZWFcdTMwYTJcdTMwMDFcdTMwYWFcdTMwZTlcdTMwZjNcdTMwYzBcdTMwNmFcdTMwNjlcdWZmMDlcdWZmMWFcdTgxZWFcdTUyZDVcdThlY2FcdTc1MjhcdTMwZDlcdTMwYTJcdTMwZWFcdTMwZjNcdTMwYjBcdTMwNmVcdTZjYmJcdTUxNzdcdTMwNGFcdTMwODhcdTMwNzNcdTgxZWFcdTUyZDVcdTUzMTZcdTZhNWZcdTY4YjBcdTMwNmVcdTk2ZmJcdTZjMTdcdTMwZGNcdTMwYzNcdTMwYWZcdTMwYjlcdTkwZThcdTU0YzFcdTMwNmVcdTc1MWZcdTc1MjNcdTMwMDIiLCJwcm9ncmVzc190eXBlIjoiIiwicGVyY2VudCI6eyJ1bml0IjoiJSIsInNpemUiOjEwLCJzaXplcyI6W119LCJkaXNwbGF5X3BlcmNlbnRhZ2UiOiJoaWRlIiwiaW5uZXJfdGV4dCI6IldlYiBEZXNpZ25lciIsIl9pZCI6IjZlMGY4NzcifSx7InRpdGxlIjoiXHUzMGEyXHUzMGUxXHUzMGVhXHUzMGFiXHU1NDA4XHU4ODQ2XHU1NmZkXHVmZjFhXHU1MzNiXHU3NjQyXHU2YTVmXHU1NjY4XHUzMDAxXHU1MTQ5XHU1YjY2XHU2YTVmXHU1NjY4XHUzMDAxXHU5N2YzXHU5N2ZmXHU2YTVmXHU1NjY4XHUzMDZiXHU5NWEyXHU5MDIzXHUzMDU5XHUzMDhiXHU4OGZkXHU1NGMxXHUzMDAyIiwicHJvZ3Jlc3NfdHlwZSI6IiIsInBlcmNlbnQiOnsidW5pdCI6IiUiLCJzaXplIjozMCwic2l6ZXMiOltdfSwiZGlzcGxheV9wZXJjZW50YWdlIjoic2hvdyIsIl9pZCI6IjIyMmViODEifSx7Il9pZCI6IjVlZWNjYjYiLCJ0aXRsZSI6Ilx1MzBhYVx1MzBmY1x1MzBiOVx1MzBjOFx1MzBlOVx1MzBlYVx1MzBhMlx1ZmYxYVx1Njc3Zlx1OTFkMVx1ODhmZFx1NTRjMVx1MzAwMiIsInBlcmNlbnQiOnsidW5pdCI6IiUiLCJzaXplIjo4LCJzaXplcyI6W119fSx7Il9pZCI6IjEwZTU3NTAiLCJ0aXRsZSI6Ilx1MzBkOVx1MzBjOFx1MzBjYVx1MzBlMFx1ZmYxYVx1NWMwZlx1NTc4Ylx1ODFlYVx1NTJkNVx1NTMxNlx1NmE1Zlx1NjhiMFx1MzAwMVx1MzBhYVx1MzBmY1x1MzBjOFx1MzBkMFx1MzBhNFx1MzA0YVx1MzA4OFx1MzA3M1x1ODFlYVx1NTJkNVx1OGVjYVx1MzA2ZVx1MzBkY1x1MzBlYlx1MzBjOFx1MzAwMVx1NzdmM1x1NmNiOVx1MzA0YVx1MzA4OFx1MzA3M1x1MzBhY1x1MzBiOVx1NzUyM1x1Njk2ZFx1MzA2ZVx1ODhmZFx1NTRjMVx1MzAwMiIsInBlcmNlbnQiOnsidW5pdCI6IiUiLCJzaXplIjoyMCwic2l6ZXMiOltdfX0seyJfaWQiOiJlMTdhMTk1IiwidGl0bGUiOiJcdTMwNWRcdTMwNmVcdTRlZDZcdTMwNmVcdTVlMDJcdTU4MzRcdTMwNjhcdTg4ZmRcdTU0YzFcdTMwMDIiLCJwZXJjZW50Ijp7InVuaXQiOiIlIiwic2l6ZSI6Miwic2l6ZXMiOltdfX1dLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6Ijc4IiwiaXNMaW5rZWQiOmZhbHNlfSwiX21hcmdpbl9tb2JpbGUiOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjp0cnVlfX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X3Byb2dyZXNzYmFyIn0=\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-b6145ce elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"b6145ce\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-e65d58b\" data-id=\"e65d58b\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjljZDU1ZGQiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Zlx1ODkwN1x1NjU3MFx1MzA2ZVx1Njk2ZFx1NzU0Y1x1MzA2N1x1MzBiNVx1MzBmY1x1MzBkM1x1MzBiOVx1MzA5Mlx1NjNkMFx1NGY5Ylx1MzA1N1x1MzA2Nlx1MzA0NFx1MzA3ZVx1MzA1OVx1MzAwMiIsInRpdGxlX2NvbG9yIjoiIzg1QjIzQiIsInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplIjp7InVuaXQiOiJweCIsInNpemUiOjM2LCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0Ijp7InVuaXQiOiJweCIsInNpemUiOjQ4LCJzaXplcyI6W119LCJzdHlsZSI6InN0LWxpbmUtbGVmdCIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjp0cnVlfSwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemVfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjMwLCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0X3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjozOCwic2l6ZXMiOltdfSwiY3RfYW5pbWF0ZSI6IndvdyBmYWRlSW5MZWZ0IiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemVfbW9iaWxlIjp7InVuaXQiOiJweCIsInNpemUiOjI4LCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0X21vYmlsZSI6eyJ1bml0IjoicHgiLCJzaXplIjozNCwic2l6ZXMiOltdfX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-2067062\" data-id=\"2067062\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-956a238 wow fadeInRight elementor-widget elementor-widget-text-editor\" data-id=\"956a238\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>u79c1u305fu3061u306fu5e38u306bu9867u5ba2u306eu30c7u30b6u30a4u30f3u8981u6c42u3092u6e80u305fu3057u307eu3059u3002u5916u89b3u3068u5bf8u6cd5u306fu3001u6700u3082u91cdu8981u8996u3057u3066u3044u308bu8981u7d20u3067u3059u3002</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-74328b6b elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"74328b6b\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4b9c9796\" data-id=\"4b9c9796\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjFjYTNiNmM1IiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsibGF5b3V0IjoiNCIsImxpbWl0Ijo0LCJmaWx0ZXJfZGVmYXVsdF90aXRsZSI6IkFsbCIsImNvbF9zbSI6IjEiLCJjb2xfbWQiOiIyIiwiY29sX2xnIjoiMiIsImNvbF94bCI6IjIiLCJidXR0b25fdGV4dCI6IlJlYWQgbW9yZSIsInNvdXJjZSI6WyJqYXxsYW5ndWFnZSJdLCJjdF9hbmltYXRlIjoid293IGZhZGVJblVwIiwib3JkZXIiOiJhc2MifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3Rfc2VydmljZV9ncmlkIn0=\"][elementor-element data=\"eyJpZCI6IjI5NzFiOGIzIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGV4dCI6Ilx1MzA1ZFx1MzA2ZVx1NGVkNlx1MzA2ZVx1MzBiNVx1MzBmY1x1MzBkM1x1MzBiOSIsImxpbmsiOnsidXJsIjoiXC9zZXJ2aWNlcyIsImlzX2V4dGVybmFsIjoiIiwibm9mb2xsb3ciOiIifSwiYWxpZ24iOiJjZW50ZXIiLCJidG5faWNvbiI6eyJ2YWx1ZSI6Im1hdGVyaWFsIHptZGkgem1kaS1zZXR0aW5ncyIsImxpYnJhcnkiOiJtYXRlcmlhbCJ9LCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6Ii0xMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sInN0eWxlIjoiYnRuLXByZXNldDMiLCJfYW5pbWF0aW9uIjoibm9uZSJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9idXR0b24ifQ==\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-f43d465 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"f43d465\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-5310bd3\" data-id=\"5310bd3\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImJjZmM3MzUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjdGY3X2lkIjoiOTMyIiwibGF5b3V0IjoiMiIsImN0ZjdfdGl0bGUiOiJcdThjZWFcdTU1NGZcdTMwNGNcdTMwNDJcdTMwOGFcdTMwN2VcdTMwNTlcdTMwNGJcdWZmMWYiLCJjdGY3X2Rlc2NyaXB0aW9uIjoiQ2FsbDogODAwIDI1MCAzNjkiLCJjdGY3X3Bob25lIjoiPHNwYW4+Q2FsbDo8XC9zcGFuPiAwOTY4ODYwMzg2IiwiZWxfdGl0bGUiOiJcdTg5OGJcdTdhNGRcdTMwODJcdTMwOGFcdTMwOTJcdTUzZDZcdTVmOTdcdTMwNTlcdTMwOGJcdTMwNWZcdTMwODFcdTMwNmVcdTkwMjNcdTdkNjFcdTUxNDhcdWZmMWEiLCJjdF9hbmltYXRlIjoid293IGZsaXBJblgifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY3RmNyJ9\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-a9b49c5 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"a9b49c5\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n                            <div class=\"elementor-background-overlay\"></div>n                n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-1dcb85a\" data-id=\"1dcb85a\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n                <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-6c560a6 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"6c560a6\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-e82cd67\" data-id=\"e82cd67\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImVmNDE1MTEiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Zlx1N2MyMVx1NTM1OFx1MzA2YVx1NGY1Y1x1Njk2ZFx1NjI0Ylx1OTgwNlx1MzA5Mlx1NjMwMVx1MzA2M1x1MzA2Nlx1MzA0NFx1MzA3ZVx1MzA1OVx1MzAwMiIsInRpdGxlX2NvbG9yIjoiI2ZmZmZmZiIsInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplIjp7InVuaXQiOiJweCIsInNpemUiOjM2LCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0Ijp7InVuaXQiOiJweCIsInNpemUiOjQ4LCJzaXplcyI6W119LCJzdHlsZSI6InN0LWxpbmUtbGVmdCIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjp0cnVlfSwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemVfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjMwLCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0X3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjozOCwic2l6ZXMiOltdfSwiY3RfYW5pbWF0ZSI6IndvdyBmYWRlSW5MZWZ0In0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-3a08737\" data-id=\"3a08737\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-7aa11c2 wow fadeInRight elementor-widget elementor-widget-text-editor\" data-id=\"7aa11c2\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>u79c1u305fu3061u306fu5e38u306bu54c1u8ceau3068u9032u6357u306bu304au3044u3066u5b89u5fc3u611fu3092u63d0u4f9bu3057u307eu3059u3002</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n        [elementor-element data=\"eyJpZCI6IjlkNWVhMzIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X2xpc3QiOlt7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi1yZXNlYXJjaCIsImxpYnJhcnkiOiJmbGF0aWNvbiJ9LCJfaWQiOiIwNTVmZWYyIiwidGl0bGUiOiJcdTc5YzFcdTMwNWZcdTMwNjFcdTMwOTJcdTYzYTJcdTMwNTkiLCJkZXNjcmlwdGlvbiI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Zlx1MzAwMVx1NTQwNFx1MzBkN1x1MzBlZFx1MzBiOFx1MzBhN1x1MzBhZlx1MzBjOFx1MzA5Mlx1N2RjZlx1NTQwOFx1NzY4NFx1MzA2Ylx1NTNkNlx1MzA4YVx1NjI3MVx1MzA0Nlx1OTFjZFx1ODk4MVx1NjAyN1x1MzA5Mlx1NzQwNlx1ODllM1x1MzA1N1x1MzA2Nlx1MzA0NFx1MzA3ZVx1MzA1OVx1MzAwMiIsImJ0bl9saW5rIjp7InVybCI6IiIsImlzX2V4dGVybmFsIjoiIiwibm9mb2xsb3ciOiIifX0seyJjdF9pY29uIjp7InZhbHVlIjoiZmxhdGljb24gZmxhdGljb24tbmV0d29yayIsImxpYnJhcnkiOiJmbGF0aWNvbiJ9LCJfaWQiOiIzOWUxNGI4IiwidGl0bGUiOiJcdTc5YzFcdTMwNWZcdTMwNjFcdTMwNjhcdTYzYTVcdTdkOWFcdTMwNTlcdTMwOGIiLCJkZXNjcmlwdGlvbiI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA0Y1x1NGVkNlx1MzA2ZVx1MzBhOFx1MzBmY1x1MzBiOFx1MzBhN1x1MzBmM1x1MzBiN1x1MzBmY1x1MzA2OFx1NzU3MFx1MzA2YVx1MzA4Ylx1NzBiOVx1MzA2Zlx1MzAwMVx1MzBhYlx1MzBiOVx1MzBiZlx1MzBkZVx1MzBhNFx1MzBiYVx1MzA1NVx1MzA4Y1x1MzA1Zlx1MzBiZFx1MzBlYVx1MzBlNVx1MzBmY1x1MzBiN1x1MzBlN1x1MzBmM1x1MzA5Mlx1NGY1Y1x1NjIxMFx1MzA1OVx1MzA4Ylx1NWMwMlx1OTU4MFx1NzdlNVx1OGI1OFx1MzA2Ylx1MzA0Mlx1MzA4YVx1MzA3ZVx1MzA1OVx1MzAwMiIsImJ0bl9saW5rIjp7InVybCI6IiIsImlzX2V4dGVybmFsIjoiIiwibm9mb2xsb3ciOiIifX0seyJjdF9pY29uIjp7InZhbHVlIjoiZmxhdGljb24gZmxhdGljb24td2FsbGV0IiwibGlicmFyeSI6ImZsYXRpY29uIn0sIl9pZCI6ImY1ZTEwZTgiLCJ0aXRsZSI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Ylx1NjUyZlx1NjI1NVx1MzA0NiIsImRlc2NyaXB0aW9uIjoiXHU3OWMxXHUzMDVmXHUzMDYxXHUzMDZmXHUzMDAxXHU1NDA0XHUzMGMxXHUzMGZjXHUzMGUwXHUzMGUxXHUzMGYzXHUzMGQwXHUzMGZjXHUzMDRjXHU4MWVhXHU1MjA2XHU4MWVhXHU4ZWFiXHUzMDZlXHU2NzAwXHU5YWQ4XHUzMDZlXHU1OWZmXHUzMDkyXHU3NmVlXHU2MzA3XHUzMDU5XHUzMDUzXHUzMDY4XHUzMDkyXHU1OTY4XHU1MmIxXHUzMDU3XHUzMDAxXHU2N2Q0XHU4ZWRmXHUzMDY3XHU1MzU0XHU1MjliXHU3Njg0XHUzMDZhXHU3NGIwXHU1ODgzXHUzMDkyXHU4MGIyXHUzMDkzXHUzMDY3XHUzMDQ0XHUzMDdlXHUzMDU5XHUzMDAyIiwiYnRuX2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9fSx7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi10YXJnZXQiLCJsaWJyYXJ5IjoiZmxhdGljb24ifSwiX2lkIjoiODgzOTk2OSIsInRpdGxlIjoiXHUzMDQyXHUzMDZhXHUzMDVmXHUzMDZlXHU1OTIyXHUzMDkyXHU1YjlmXHU3M2ZlXHUzMDU5XHUzMDhiIiwiZGVzY3JpcHRpb24iOiJcdTMwNjlcdTMwNmVcdTMwZDNcdTMwYjhcdTMwY2RcdTMwYjlcdTMwNmJcdTMwODJcdTMwMDFcdTk3NjlcdTY1YjBcdTMwNjhcdTkwMzJcdTZiNjlcdTMwOTJcdTRmYzNcdTMwNTlcdTcyZWNcdTgxZWFcdTMwNmVcdTMwYmRcdTMwZWFcdTMwZTVcdTMwZmNcdTMwYjdcdTMwZTdcdTMwZjNcdTMwNGNcdTMwNDJcdTMwOGFcdTMwN2VcdTMwNTlcdTMwMDIiLCJidG5fbGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn19XSwidGl0bGVfY29sb3IiOiIjZmZmZmZmIiwiZGVzY3JpcHRpb25fY29sb3IiOiIjRkZGRkZGIiwiY3RfYW5pbWF0ZSI6IndvdyBmYWRlSW4ifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfcHJvY2VzcyJ9\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-79ee8ab elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"79ee8ab\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4af1814\" data-id=\"4af1814\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n                <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-505fb45 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"505fb45\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-7223f1c\" data-id=\"7223f1c\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-e7c238e elementor-widget elementor-widget-google_maps\" data-id=\"e7c238e\" data-element_type=\"widget\" data-widget_type=\"google_maps.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-custom-embed\">nttt<iframe loading=\"lazy\"ntttttsrc=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"nttttttitle=\"10u00b057&#039;11.2&quot;N 106u00b045&#039;13.0&quot;E\"ntttttaria-label=\"10u00b057&#039;11.2&quot;N 106u00b045&#039;13.0&quot;E\"nttt></iframe>ntt</div>ntttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-0225539\" data-id=\"0225539\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjUxZDU0M2EiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1MzA0NFx1MzA2NFx1MzA2N1x1MzA4Mlx1MzA2OVx1MzA5M1x1MzA2YVx1NTJhOVx1MzA1MVx1MzA0Y1x1NWZjNVx1ODk4MVx1MzA2YVx1NTgzNFx1NTQwOFx1MzA2N1x1MzA4Mlx1MzAwMVx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Ylx1MzA1NFx1OTAyM1x1N2Q2MVx1MzA0Zlx1MzA2MFx1MzA1NVx1MzA0NC4uLiIsInRpdGxlX2NvbG9yIjoiIzg1QjIzQiIsIl9wYWRkaW5nIjp7InVuaXQiOiIlIiwidG9wIjoiMCIsInJpZ2h0IjoiNSIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sInRpdGxlX3NwYWNlX2JvdHRvbSI6eyJ1bml0IjoicHgiLCJzaXplIjozMywic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemVfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjMwLCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0X3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjozOCwic2l6ZXMiOltdfSwiY3RfYW5pbWF0ZSI6IndvdyBmbGlwSW5YIiwiX3BhZGRpbmdfdGFibGV0Ijp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"][elementor-element data=\"eyJpZCI6ImVkMGRjMWIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjdGY3X2lkIjoiOTc0Iiwic3R5bGVfbDEiOiJzdHlsZTIifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY3RmNyJ9\"]            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                    </div>n        </section>n        \",\"scripts\":[\"jquery-numerator\",\"ct-counter-widget-js\",\"ct-progressbar-widget-js\",\"imagesloaded\",\"isotope\",\"ct-post-masonry-widget-js\",\"ct-post-grid-widget-js\"],\"styles\":[\"widget-text-editor\",\"e-animation-slideInUp\",\"widget-image\",\"widget-google_maps\"]}}'),(10324,3165,'_elementor_edit_mode','builder'),(10325,3165,'_elementor_template_type','wp-page'),(10326,3165,'_elementor_version','3.24.7'),(10327,3165,'_wp_page_template','default'),(10328,3165,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u3001\\u30d9\\u30c8\\u30ca\\u30e0\\u5168\\u571f\\u304a\\u3088\\u3073\\u4e16\\u754c\\u4e2d\\u306e\\u6a5f\\u68b0\\u7523\\u696d\\u5411\\u3051\\u306b\\u5e45\\u5e83\\u3044\\u88fd\\u54c1\\u3092\\u63d0\\u4f9b\\u3057\\u3066\\u304a\\u308a\\u3001\\u7279\\u306b\\u65e5\\u672c\\u3001\\u97d3\\u56fd\\u3001\\u30a2\\u30e1\\u30ea\\u30ab\\u3001\\u30aa\\u30fc\\u30b9\\u30c8\\u30e9\\u30ea\\u30a2\\u3068\\u3044\\u3063\\u305f\\u4e3b\\u8981\\u5e02\\u5834\\u3067\\u306e\\u53d6\\u5f15\\u306b\\u529b\\u3092\\u5165\\u308c\\u3066\\u3044\\u307e\\u3059\\u3002\\u307e\\u305f\\u3001\\u3053\\u308c\\u3089\\u306e\\u5e02\\u5834\\u3078\\u306e\\u8f38\\u51fa\\u7d4c\\u9a13\\u3082\\u8c4a\\u5bcc\\u3067\\u3059\\u3002\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306e\\u6700\\u5927\\u306e\\u5f37\\u307f\\u306f\\u3001\\u5b66\\u3076\\u3053\\u3068\\u3001\\u9769\\u65b0\\u3059\\u308b\\u3053\\u3068\\u306b\\u60c5\\u71b1\\u3092\\u6301\\u3061\\u3001\\u81ea\\u4fe1\\u3092\\u6301\\u3063\\u305f\\u82e5\\u3044\\u52b4\\u50cd\\u529b\\u306b\\u3042\\u308a\\u307e\\u3059\\u3002\\u3053\\u306e\\u30c1\\u30fc\\u30e0\\u306f\\u3001\\u5e38\\u306b\\u5b89\\u5b9a\\u3057\\u305f\\u9ad8\\u54c1\\u8cea\\u306e\\u6a5f\\u68b0\\u88fd\\u54c1\\u3092\\u591a\\u69d8\\u306b\\u88fd\\u9020\\u3059\\u308b\\u80fd\\u529b\\u3092\\u5099\\u3048\\u3066\\u3044\\u307e\\u3059\\u3002<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/youtu.be\\/vUCVqLmXSPM?si=NDYrSC8zPIUGPj3l\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"\\u9867\\u5ba2\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"\\u4eba\\u4e8b\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"\\u5e74\\u9593\\u6ce8\\u6587\\u6570\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306f\\u3001\\u4e16\\u754c\\u4e2d\\u304b\\u3089\\u306e\\u6ce8\\u6587\\u3068\\u63a5\\u7d9a\\u3059\\u308b\\u305f\\u3081\\u306bAlibaba\\u306b\\u5e97\\u8217\\u3092\\u958b\\u8a2d\\u3057\\u59cb\\u3081\\u307e\\u3057\\u305f\\u3002<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0e89391\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u30012030\\u5e74\\u307e\\u3067\\u306b\\u30d9\\u30c8\\u30ca\\u30e0\\u306e\\u4e3b\\u8981\\u306a\\u6a5f\\u68b0\\u52a0\\u5de5\\u4f01\\u696d\\u306e\\u4e00\\u3064\\u3068\\u3057\\u3066\\u3001\\u56fd\\u969b\\u5e02\\u5834\\u306b\\u4f9b\\u7d66\\u3059\\u308b\\u3053\\u3068\\u3092\\u76ee\\u6307\\u3057\\u3066\\u3044\\u307e\\u3059\\u3002\\u5c06\\u6765\\u7684\\u306b\\u306f\\u3001\\u5b8c\\u6210\\u3057\\u305f\\u6a5f\\u68b0\\u88fd\\u54c1\\u3092\\u76f4\\u63a5\\u30a8\\u30f3\\u30c9\\u30e6\\u30fc\\u30b6\\u30fc\\u306b\\u63d0\\u4f9b\\u3059\\u308b\\u3053\\u3068\\u3092\\u76ee\\u6a19\\u3068\\u3057\\u3066\\u3044\\u307e\\u3059\\u3002\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2026\\u5e74\\u307e\\u3067\\u306b\\u9054\\u6210\\u3059\\u308b\\u76ee\\u6a19:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"\\u6771\\u30a2\\u30b8\\u30a2\\uff08\\u65e5\\u672c\\u3001\\u97d3\\u56fd\\u306a\\u3069\\uff09\\uff1a\\u4ea4\\u63db\\u7528\\u6a5f\\u68b0\\u90e8\\u54c1\\u3001\\u30aa\\u30fc\\u30c8\\u30d0\\u30a4\\u304a\\u3088\\u3073\\u81ea\\u52d5\\u8eca\\u306e\\u30a2\\u30af\\u30bb\\u30b5\\u30ea\\u30fc\\u3001\\u6c34\\u7523\\u696d\\u7528\\u306e\\u30d5\\u30a3\\u30c3\\u30c6\\u30a3\\u30f3\\u30b0\\u3001\\u91d1\\u578b\\u3001\\u305d\\u306e\\u4ed6\\u306e\\u6a5f\\u68b0\\u90e8\\u54c1\\u306e\\u8f38\\u51fa\\u3002\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"\\u30e8\\u30fc\\u30ed\\u30c3\\u30d1\\uff08\\u30c9\\u30a4\\u30c4\\u3001\\u30d6\\u30eb\\u30ac\\u30ea\\u30a2\\u3001\\u30aa\\u30e9\\u30f3\\u30c0\\u306a\\u3069\\uff09\\uff1a\\u81ea\\u52d5\\u8eca\\u7528\\u30d9\\u30a2\\u30ea\\u30f3\\u30b0\\u306e\\u6cbb\\u5177\\u304a\\u3088\\u3073\\u81ea\\u52d5\\u5316\\u6a5f\\u68b0\\u306e\\u96fb\\u6c17\\u30dc\\u30c3\\u30af\\u30b9\\u90e8\\u54c1\\u306e\\u751f\\u7523\\u3002\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"\\u30a2\\u30e1\\u30ea\\u30ab\\u5408\\u8846\\u56fd\\uff1a\\u533b\\u7642\\u6a5f\\u5668\\u3001\\u5149\\u5b66\\u6a5f\\u5668\\u3001\\u97f3\\u97ff\\u6a5f\\u5668\\u306b\\u95a2\\u9023\\u3059\\u308b\\u88fd\\u54c1\\u3002\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"\\u30aa\\u30fc\\u30b9\\u30c8\\u30e9\\u30ea\\u30a2\\uff1a\\u677f\\u91d1\\u88fd\\u54c1\\u3002\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"\\u30d9\\u30c8\\u30ca\\u30e0\\uff1a\\u5c0f\\u578b\\u81ea\\u52d5\\u5316\\u6a5f\\u68b0\\u3001\\u30aa\\u30fc\\u30c8\\u30d0\\u30a4\\u304a\\u3088\\u3073\\u81ea\\u52d5\\u8eca\\u306e\\u30dc\\u30eb\\u30c8\\u3001\\u77f3\\u6cb9\\u304a\\u3088\\u3073\\u30ac\\u30b9\\u7523\\u696d\\u306e\\u88fd\\u54c1\\u3002\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"\\u305d\\u306e\\u4ed6\\u306e\\u5e02\\u5834\\u3068\\u88fd\\u54c1\\u3002\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u8907\\u6570\\u306e\\u696d\\u754c\\u3067\\u30b5\\u30fc\\u30d3\\u30b9\\u3092\\u63d0\\u4f9b\\u3057\\u3066\\u3044\\u307e\\u3059\\u3002\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306f\\u5e38\\u306b\\u9867\\u5ba2\\u306e\\u30c7\\u30b6\\u30a4\\u30f3\\u8981\\u6c42\\u3092\\u6e80\\u305f\\u3057\\u307e\\u3059\\u3002\\u5916\\u89b3\\u3068\\u5bf8\\u6cd5\\u306f\\u3001\\u6700\\u3082\\u91cd\\u8981\\u8996\\u3057\\u3066\\u3044\\u308b\\u8981\\u7d20\\u3067\\u3059\\u3002<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"ja|language\"],\"ct_animate\":\"wow fadeInUp\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u305d\\u306e\\u4ed6\\u306e\\u30b5\\u30fc\\u30d3\\u30b9\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"\\u8cea\\u554f\\u304c\\u3042\\u308a\\u307e\\u3059\\u304b\\uff1f\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"\\u898b\\u7a4d\\u3082\\u308a\\u3092\\u53d6\\u5f97\\u3059\\u308b\\u305f\\u3081\\u306e\\u9023\\u7d61\\u5148\\uff1a\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u7c21\\u5358\\u306a\\u4f5c\\u696d\\u624b\\u9806\\u3092\\u6301\\u3063\\u3066\\u3044\\u307e\\u3059\\u3002\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306f\\u5e38\\u306b\\u54c1\\u8cea\\u3068\\u9032\\u6357\\u306b\\u304a\\u3044\\u3066\\u5b89\\u5fc3\\u611f\\u3092\\u63d0\\u4f9b\\u3057\\u307e\\u3059\\u3002<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"\\u79c1\\u305f\\u3061\\u3092\\u63a2\\u3059\",\"description\":\"\\u79c1\\u305f\\u3061\\u306f\\u3001\\u5404\\u30d7\\u30ed\\u30b8\\u30a7\\u30af\\u30c8\\u3092\\u7dcf\\u5408\\u7684\\u306b\\u53d6\\u308a\\u6271\\u3046\\u91cd\\u8981\\u6027\\u3092\\u7406\\u89e3\\u3057\\u3066\\u3044\\u307e\\u3059\\u3002\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"\\u79c1\\u305f\\u3061\\u3068\\u63a5\\u7d9a\\u3059\\u308b\",\"description\":\"\\u79c1\\u305f\\u3061\\u304c\\u4ed6\\u306e\\u30a8\\u30fc\\u30b8\\u30a7\\u30f3\\u30b7\\u30fc\\u3068\\u7570\\u306a\\u308b\\u70b9\\u306f\\u3001\\u30ab\\u30b9\\u30bf\\u30de\\u30a4\\u30ba\\u3055\\u308c\\u305f\\u30bd\\u30ea\\u30e5\\u30fc\\u30b7\\u30e7\\u30f3\\u3092\\u4f5c\\u6210\\u3059\\u308b\\u5c02\\u9580\\u77e5\\u8b58\\u306b\\u3042\\u308a\\u307e\\u3059\\u3002\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"\\u79c1\\u305f\\u3061\\u306b\\u652f\\u6255\\u3046\",\"description\":\"\\u79c1\\u305f\\u3061\\u306f\\u3001\\u5404\\u30c1\\u30fc\\u30e0\\u30e1\\u30f3\\u30d0\\u30fc\\u304c\\u81ea\\u5206\\u81ea\\u8eab\\u306e\\u6700\\u9ad8\\u306e\\u59ff\\u3092\\u76ee\\u6307\\u3059\\u3053\\u3068\\u3092\\u5968\\u52b1\\u3057\\u3001\\u67d4\\u8edf\\u3067\\u5354\\u529b\\u7684\\u306a\\u74b0\\u5883\\u3092\\u80b2\\u3093\\u3067\\u3044\\u307e\\u3059\\u3002\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"\\u3042\\u306a\\u305f\\u306e\\u5922\\u3092\\u5b9f\\u73fe\\u3059\\u308b\",\"description\":\"\\u3069\\u306e\\u30d3\\u30b8\\u30cd\\u30b9\\u306b\\u3082\\u3001\\u9769\\u65b0\\u3068\\u9032\\u6b69\\u3092\\u4fc3\\u3059\\u72ec\\u81ea\\u306e\\u30bd\\u30ea\\u30e5\\u30fc\\u30b7\\u30e7\\u30f3\\u304c\\u3042\\u308a\\u307e\\u3059\\u3002\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u3044\\u3064\\u3067\\u3082\\u3069\\u3093\\u306a\\u52a9\\u3051\\u304c\\u5fc5\\u8981\\u306a\\u5834\\u5408\\u3067\\u3082\\u3001\\u79c1\\u305f\\u3061\\u306b\\u3054\\u9023\\u7d61\\u304f\\u3060\\u3055\\u3044...\",\"title_color\":\"#85B23B\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(10329,3165,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(10330,3165,'_elementor_page_assets','a:2:{s:6:\"styles\";a:4:{i:0;s:18:\"widget-text-editor\";i:1;s:21:\"e-animation-slideInUp\";i:2;s:12:\"widget-image\";i:3;s:18:\"widget-google_maps\";}s:7:\"scripts\";a:9:{i:0;s:16:\"jquery-numerator\";i:1;s:20:\"ct-counter-widget-js\";i:2;s:11:\"progressbar\";i:3;s:16:\"waypoints-lib-js\";i:4;s:24:\"ct-progressbar-widget-js\";i:5;s:12:\"imagesloaded\";i:6;s:7:\"isotope\";i:7;s:25:\"ct-post-masonry-widget-js\";i:8;s:22:\"ct-post-grid-widget-js\";}}'),(10331,3165,'_elementor_css','a:6:{s:4:\"time\";i:1742179356;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:8:\"material\";i:1;s:8:\"flaticon\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(10332,3165,'_elementor_element_cache','{\"timeout\":1742265757,\"value\":{\"content\":\"        <section class=\"elementor-section elementor-top-section elementor-element elementor-element-2d2b67a elementor-section-stretched elementor-section-full_width slider-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"2d2b67a\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-no \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-d1bb387\" data-id=\"d1bb387\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImNjODZmNGQiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJyZXZzbGlkZXJ0aXRsZSI6IkhvbWUgMSIsInNob3J0Y29kZSI6IltyZXZfc2xpZGVyIGFsaWFzPVwiaG9tZS0xXCJdW1wvcmV2X3NsaWRlcl0ifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoic2xpZGVyX3Jldm9sdXRpb24ifQ==\"]        <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-2cea906 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"2cea906\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-8e117d0\" data-id=\"8e117d0\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjI0YjYyY2MiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Zlx1MzAwMVx1MzBkOVx1MzBjOFx1MzBjYVx1MzBlMFx1NTE2OFx1NTcxZlx1MzA0YVx1MzA4OFx1MzA3M1x1NGUxNlx1NzU0Y1x1NGUyZFx1MzA2ZVx1NmE1Zlx1NjhiMFx1NzUyM1x1Njk2ZFx1NTQxMVx1MzA1MVx1MzA2Ylx1NWU0NVx1NWU4M1x1MzA0NFx1ODhmZFx1NTRjMVx1MzA5Mlx1NjNkMFx1NGY5Ylx1MzA1N1x1MzA2Nlx1MzA0YVx1MzA4YVx1MzAwMVx1NzI3OVx1MzA2Ylx1NjVlNVx1NjcyY1x1MzAwMVx1OTdkM1x1NTZmZFx1MzAwMVx1MzBhMlx1MzBlMVx1MzBlYVx1MzBhYlx1MzAwMVx1MzBhYVx1MzBmY1x1MzBiOVx1MzBjOFx1MzBlOVx1MzBlYVx1MzBhMlx1MzA2OFx1MzA0NFx1MzA2M1x1MzA1Zlx1NGUzYlx1ODk4MVx1NWUwMlx1NTgzNFx1MzA2N1x1MzA2ZVx1NTNkNlx1NWYxNVx1MzA2Ylx1NTI5Ylx1MzA5Mlx1NTE2NVx1MzA4Y1x1MzA2Nlx1MzA0NFx1MzA3ZVx1MzA1OVx1MzAwMlx1MzA3ZVx1MzA1Zlx1MzAwMVx1MzA1M1x1MzA4Y1x1MzA4OVx1MzA2ZVx1NWUwMlx1NTgzNFx1MzA3OFx1MzA2ZVx1OGYzOFx1NTFmYVx1N2Q0Y1x1OWExM1x1MzA4Mlx1OGM0YVx1NWJjY1x1MzA2N1x1MzA1OVx1MzAwMiIsInRpdGxlX2NvbG9yIjoiIzg1QjIzQiIsInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplIjp7InVuaXQiOiJweCIsInNpemUiOjM2LCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0Ijp7InVuaXQiOiJweCIsInNpemUiOjQ4LCJzaXplcyI6W119LCJzdHlsZSI6InN0LWxpbmUtbGVmdCIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjE2IiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MjYsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjM0LCJzaXplcyI6W119LCJjdF9hbmltYXRlIjoid293IGZhZGVJblVwIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"]tt<div class=\"elementor-element elementor-element-909b449 wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"909b449\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>u79c1u305fu3061u306eu6700u5927u306eu5f37u307fu306fu3001u5b66u3076u3053u3068u3001u9769u65b0u3059u308bu3053u3068u306bu60c5u71b1u3092u6301u3061u3001u81eau4fe1u3092u6301u3063u305fu82e5u3044u52b4u50cdu529bu306bu3042u308au307eu3059u3002u3053u306eu30c1u30fcu30e0u306fu3001u5e38u306bu5b89u5b9au3057u305fu9ad8u54c1u8ceau306eu6a5fu68b0u88fdu54c1u3092u591au69d8u306bu88fdu9020u3059u308bu80fdu529bu3092u5099u3048u3066u3044u307eu3059u3002</p>tttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImM0YTIwMjgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJpbWFnZSI6eyJ1cmwiOiIiLCJpZCI6IiJ9LCJ2aWRlb19saW5rIjoiaHR0cHM6XC9cL3lvdXR1LmJlXC92VUNWcUxtWFNQTT9zaT1ORFlyU0M4elBJVUdQajNsIiwiYnRuX3ZpZGVvX3N0eWxlIjoic3R5bGUzIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIzMSIsInJpZ2h0IjoiMzgiLCJib3R0b20iOiIwIiwibGVmdCI6Ijc4IiwiaXNMaW5rZWQiOmZhbHNlfSwiX2Nzc19jbGFzc2VzIjoiZWwtaW5saW5lIHdvdyBmYWRlSW5SaWdodCIsIl9tYXJnaW5fdGFibGV0Ijp7InVuaXQiOiJweCIsInRvcCI6IjMxIiwicmlnaHQiOiIyMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiNjgiLCJpc0xpbmtlZCI6ZmFsc2V9LCJfYW5pbWF0aW9uIjoic2xpZGVJblVwIiwiX21hcmdpbl9tb2JpbGUiOnsidW5pdCI6InB4IiwidG9wIjoiMzEiLCJyaWdodCI6IjIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X3ZpZGVvX3BsYXllciJ9\"]tt<div class=\"elementor-element elementor-element-1fd7931 el-inline wow fadeInRight elementor-invisible elementor-widget elementor-widget-image\" data-id=\"1fd7931\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;slideInUp&quot;}\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" class=\"attachment-full size-full wp-image-2542\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-4fff345\" data-id=\"4fff345\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjU5MGYxYmUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjo1MCwic3VmZml4IjoiKyIsInRob3VzYW5kX3NlcGFyYXRvciI6IiIsInRob3VzYW5kX3NlcGFyYXRvcl9jaGFyIjoiICIsInRpdGxlIjoiXHU5ODY3XHU1YmEyIiwic2hvd19pY29uIjoidHJ1ZSIsImNvdW50ZXJfaWNvbiI6eyJ2YWx1ZSI6Im1hdGVyaWFsIHptZGkgem1kaS1hc3NpZ25tZW50LWNoZWNrIiwibGlicmFyeSI6Im1hdGVyaWFsIn0sIm51bWJlcl90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiI0MSIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwiX2Nzc19jbGFzc2VzIjoidGV4dC1jZW50ZXItc20iLCJpY29uX3R5cGUiOiJpbWFnZSIsImljb25faW1hZ2UiOnsidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMTlcLzEyXC9jb3VudGVyLWljb24tMDEucG5nIiwiaWQiOjE1MTV9LCJfYW5pbWF0aW9uIjoibm9uZSIsImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluVXAifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY291bnRlciJ9\"][elementor-element data=\"eyJpZCI6IjdhNWYyMzkiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjoyMDAsInN1ZmZpeCI6IisiLCJ0aG91c2FuZF9zZXBhcmF0b3IiOiIiLCJ0aG91c2FuZF9zZXBhcmF0b3JfY2hhciI6IiAiLCJ0aXRsZSI6Ilx1NGViYVx1NGU4YiIsInNob3dfaWNvbiI6InRydWUiLCJjb3VudGVyX2ljb24iOnsidmFsdWUiOiJtYXRlcmlhbCB6bWRpIHptZGktYXNzaWdubWVudC1jaGVjayIsImxpYnJhcnkiOiJtYXRlcmlhbCJ9LCJudW1iZXJfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiNDEiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sIl9jc3NfY2xhc3NlcyI6InRleHQtY2VudGVyLXNtIiwiaWNvbl90eXBlIjoiaW1hZ2UiLCJpY29uX2ltYWdlIjp7InVybCI6Imh0dHA6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDE5XC8xMlwvY291bnRlci1pY29uLTAyLnBuZyIsImlkIjoxNTE2fSwiX2FuaW1hdGlvbiI6Im5vbmUiLCJjdF9hbmltYXRlIjoid293IGZhZGVJblVwIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2NvdW50ZXIifQ==\"][elementor-element data=\"eyJpZCI6IjA0NTMxYzgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjoyMDAwLCJzdWZmaXgiOiIrIiwidGhvdXNhbmRfc2VwYXJhdG9yIjoiIiwidGhvdXNhbmRfc2VwYXJhdG9yX2NoYXIiOiIgIiwidGl0bGUiOiJcdTVlNzRcdTk1OTNcdTZjZThcdTY1ODdcdTY1NzAiLCJzaG93X2ljb24iOiJ0cnVlIiwiY291bnRlcl9pY29uIjp7InZhbHVlIjoibWF0ZXJpYWwgem1kaSB6bWRpLWFzc2lnbm1lbnQtY2hlY2siLCJsaWJyYXJ5IjoibWF0ZXJpYWwifSwibnVtYmVyX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjQxIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJfY3NzX2NsYXNzZXMiOiJ0ZXh0LWNlbnRlci1zbSIsImljb25fdHlwZSI6ImltYWdlIiwiaWNvbl9pbWFnZSI6eyJ1cmwiOiJodHRwOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAxOVwvMTJcL2NvdW50ZXItaWNvbi0wMy5wbmciLCJpZCI6MTUxN30sIl9hbmltYXRpb24iOiJub25lIiwiY3RfYW5pbWF0ZSI6IndvdyBmYWRlSW5VcCJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9jb3VudGVyIn0=\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-348ba48\" data-id=\"348ba48\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-ed7e1d0 wow fadeInUp elementor-widget elementor-widget-image\" data-id=\"ed7e1d0\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" class=\"attachment-full size-full wp-image-2571\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntttt<div class=\"elementor-element elementor-element-3b54db6 wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"3b54db6\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>u79c1u305fu3061u306fu3001u4e16u754cu4e2du304bu3089u306eu6ce8u6587u3068u63a5u7d9au3059u308bu305fu3081u306bAlibabau306bu5e97u8217u3092u958bu8a2du3057u59cbu3081u307eu3057u305fu3002</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-8b70e78 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"8b70e78\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-c2b95bd\" data-id=\"c2b95bd\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-b5a8ba3 elementor-widget elementor-widget-image\" data-id=\"b5a8ba3\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" class=\"attachment-full size-full wp-image-2268\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntttt<div class=\"elementor-element elementor-element-0e89391 elementor-widget elementor-widget-image\" data-id=\"0e89391\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" class=\"attachment-full size-full wp-image-2559\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-de7136f\" data-id=\"de7136f\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6Ijg0MDdhYmUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Zlx1MzAwMTIwMzBcdTVlNzRcdTMwN2VcdTMwNjdcdTMwNmJcdTMwZDlcdTMwYzhcdTMwY2FcdTMwZTBcdTMwNmVcdTRlM2JcdTg5ODFcdTMwNmFcdTZhNWZcdTY4YjBcdTUyYTBcdTVkZTVcdTRmMDFcdTY5NmRcdTMwNmVcdTRlMDBcdTMwNjRcdTMwNjhcdTMwNTdcdTMwNjZcdTMwMDFcdTU2ZmRcdTk2OWJcdTVlMDJcdTU4MzRcdTMwNmJcdTRmOWJcdTdkNjZcdTMwNTlcdTMwOGJcdTMwNTNcdTMwNjhcdTMwOTJcdTc2ZWVcdTYzMDdcdTMwNTdcdTMwNjZcdTMwNDRcdTMwN2VcdTMwNTlcdTMwMDJcdTVjMDZcdTY3NjVcdTc2ODRcdTMwNmJcdTMwNmZcdTMwMDFcdTViOGNcdTYyMTBcdTMwNTdcdTMwNWZcdTZhNWZcdTY4YjBcdTg4ZmRcdTU0YzFcdTMwOTJcdTc2ZjRcdTYzYTVcdTMwYThcdTMwZjNcdTMwYzlcdTMwZTZcdTMwZmNcdTMwYjZcdTMwZmNcdTMwNmJcdTYzZDBcdTRmOWJcdTMwNTlcdTMwOGJcdTMwNTNcdTMwNjhcdTMwOTJcdTc2ZWVcdTZhMTlcdTMwNjhcdTMwNTdcdTMwNjZcdTMwNDRcdTMwN2VcdTMwNTlcdTMwMDIiLCJ0aXRsZV9jb2xvciI6IiM4NUIyM0IiLCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZSI6eyJ1bml0IjoicHgiLCJzaXplIjozNiwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodCI6eyJ1bml0IjoicHgiLCJzaXplIjo0OCwic2l6ZXMiOltdfSwic3R5bGUiOiJzdC1saW5lLWxlZnQiLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6Ii05IiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwidGl0bGVfc3BhY2VfYm90dG9tIjp7InVuaXQiOiJweCIsInNpemUiOjE3LCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzAsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjM4LCJzaXplcyI6W119LCJjdF9hbmltYXRlIjoid293IGZsaXBJblgiLCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV9tb2JpbGUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MjgsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfbW9iaWxlIjp7InVuaXQiOiJweCIsInNpemUiOjM0LCJzaXplcyI6W119fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-0c8497c wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"0c8497c\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>2026u5e74u307eu3067u306bu9054u6210u3059u308bu76eeu6a19:</p>tttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6IjQ3NTRlZDYiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJwcm9ncmVzc2Jhcl9saXN0IjpbeyJ0aXRsZSI6Ilx1Njc3MVx1MzBhMlx1MzBiOFx1MzBhMlx1ZmYwOFx1NjVlNVx1NjcyY1x1MzAwMVx1OTdkM1x1NTZmZFx1MzA2YVx1MzA2OVx1ZmYwOVx1ZmYxYVx1NGVhNFx1NjNkYlx1NzUyOFx1NmE1Zlx1NjhiMFx1OTBlOFx1NTRjMVx1MzAwMVx1MzBhYVx1MzBmY1x1MzBjOFx1MzBkMFx1MzBhNFx1MzA0YVx1MzA4OFx1MzA3M1x1ODFlYVx1NTJkNVx1OGVjYVx1MzA2ZVx1MzBhMlx1MzBhZlx1MzBiYlx1MzBiNVx1MzBlYVx1MzBmY1x1MzAwMVx1NmMzNFx1NzUyM1x1Njk2ZFx1NzUyOFx1MzA2ZVx1MzBkNVx1MzBhM1x1MzBjM1x1MzBjNlx1MzBhM1x1MzBmM1x1MzBiMFx1MzAwMVx1OTFkMVx1NTc4Ylx1MzAwMVx1MzA1ZFx1MzA2ZVx1NGVkNlx1MzA2ZVx1NmE1Zlx1NjhiMFx1OTBlOFx1NTRjMVx1MzA2ZVx1OGYzOFx1NTFmYVx1MzAwMiIsInByb2dyZXNzX3R5cGUiOiIiLCJwZXJjZW50Ijp7InVuaXQiOiIlIiwic2l6ZSI6MzAsInNpemVzIjpbXX0sImRpc3BsYXlfcGVyY2VudGFnZSI6ImhpZGUiLCJpbm5lcl90ZXh0IjoiV2ViIERlc2lnbmVyIiwiX2lkIjoiOGI0YmNkNiJ9LHsidGl0bGUiOiJcdTMwZThcdTMwZmNcdTMwZWRcdTMwYzNcdTMwZDFcdWZmMDhcdTMwYzlcdTMwYTRcdTMwYzRcdTMwMDFcdTMwZDZcdTMwZWJcdTMwYWNcdTMwZWFcdTMwYTJcdTMwMDFcdTMwYWFcdTMwZTlcdTMwZjNcdTMwYzBcdTMwNmFcdTMwNjlcdWZmMDlcdWZmMWFcdTgxZWFcdTUyZDVcdThlY2FcdTc1MjhcdTMwZDlcdTMwYTJcdTMwZWFcdTMwZjNcdTMwYjBcdTMwNmVcdTZjYmJcdTUxNzdcdTMwNGFcdTMwODhcdTMwNzNcdTgxZWFcdTUyZDVcdTUzMTZcdTZhNWZcdTY4YjBcdTMwNmVcdTk2ZmJcdTZjMTdcdTMwZGNcdTMwYzNcdTMwYWZcdTMwYjlcdTkwZThcdTU0YzFcdTMwNmVcdTc1MWZcdTc1MjNcdTMwMDIiLCJwcm9ncmVzc190eXBlIjoiIiwicGVyY2VudCI6eyJ1bml0IjoiJSIsInNpemUiOjEwLCJzaXplcyI6W119LCJkaXNwbGF5X3BlcmNlbnRhZ2UiOiJoaWRlIiwiaW5uZXJfdGV4dCI6IldlYiBEZXNpZ25lciIsIl9pZCI6IjZlMGY4NzcifSx7InRpdGxlIjoiXHUzMGEyXHUzMGUxXHUzMGVhXHUzMGFiXHU1NDA4XHU4ODQ2XHU1NmZkXHVmZjFhXHU1MzNiXHU3NjQyXHU2YTVmXHU1NjY4XHUzMDAxXHU1MTQ5XHU1YjY2XHU2YTVmXHU1NjY4XHUzMDAxXHU5N2YzXHU5N2ZmXHU2YTVmXHU1NjY4XHUzMDZiXHU5NWEyXHU5MDIzXHUzMDU5XHUzMDhiXHU4OGZkXHU1NGMxXHUzMDAyIiwicHJvZ3Jlc3NfdHlwZSI6IiIsInBlcmNlbnQiOnsidW5pdCI6IiUiLCJzaXplIjozMCwic2l6ZXMiOltdfSwiZGlzcGxheV9wZXJjZW50YWdlIjoic2hvdyIsIl9pZCI6IjIyMmViODEifSx7Il9pZCI6IjVlZWNjYjYiLCJ0aXRsZSI6Ilx1MzBhYVx1MzBmY1x1MzBiOVx1MzBjOFx1MzBlOVx1MzBlYVx1MzBhMlx1ZmYxYVx1Njc3Zlx1OTFkMVx1ODhmZFx1NTRjMVx1MzAwMiIsInBlcmNlbnQiOnsidW5pdCI6IiUiLCJzaXplIjo4LCJzaXplcyI6W119fSx7Il9pZCI6IjEwZTU3NTAiLCJ0aXRsZSI6Ilx1MzBkOVx1MzBjOFx1MzBjYVx1MzBlMFx1ZmYxYVx1NWMwZlx1NTc4Ylx1ODFlYVx1NTJkNVx1NTMxNlx1NmE1Zlx1NjhiMFx1MzAwMVx1MzBhYVx1MzBmY1x1MzBjOFx1MzBkMFx1MzBhNFx1MzA0YVx1MzA4OFx1MzA3M1x1ODFlYVx1NTJkNVx1OGVjYVx1MzA2ZVx1MzBkY1x1MzBlYlx1MzBjOFx1MzAwMVx1NzdmM1x1NmNiOVx1MzA0YVx1MzA4OFx1MzA3M1x1MzBhY1x1MzBiOVx1NzUyM1x1Njk2ZFx1MzA2ZVx1ODhmZFx1NTRjMVx1MzAwMiIsInBlcmNlbnQiOnsidW5pdCI6IiUiLCJzaXplIjoyMCwic2l6ZXMiOltdfX0seyJfaWQiOiJlMTdhMTk1IiwidGl0bGUiOiJcdTMwNWRcdTMwNmVcdTRlZDZcdTMwNmVcdTVlMDJcdTU4MzRcdTMwNjhcdTg4ZmRcdTU0YzFcdTMwMDIiLCJwZXJjZW50Ijp7InVuaXQiOiIlIiwic2l6ZSI6Miwic2l6ZXMiOltdfX1dLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6Ijc4IiwiaXNMaW5rZWQiOmZhbHNlfSwiX21hcmdpbl9tb2JpbGUiOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjp0cnVlfX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X3Byb2dyZXNzYmFyIn0=\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-b6145ce elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"b6145ce\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-e65d58b\" data-id=\"e65d58b\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjljZDU1ZGQiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Zlx1ODkwN1x1NjU3MFx1MzA2ZVx1Njk2ZFx1NzU0Y1x1MzA2N1x1MzBiNVx1MzBmY1x1MzBkM1x1MzBiOVx1MzA5Mlx1NjNkMFx1NGY5Ylx1MzA1N1x1MzA2Nlx1MzA0NFx1MzA3ZVx1MzA1OVx1MzAwMiIsInRpdGxlX2NvbG9yIjoiIzg1QjIzQiIsInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplIjp7InVuaXQiOiJweCIsInNpemUiOjM2LCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0Ijp7InVuaXQiOiJweCIsInNpemUiOjQ4LCJzaXplcyI6W119LCJzdHlsZSI6InN0LWxpbmUtbGVmdCIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjp0cnVlfSwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemVfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjMwLCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0X3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjozOCwic2l6ZXMiOltdfSwiY3RfYW5pbWF0ZSI6IndvdyBmYWRlSW5MZWZ0IiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemVfbW9iaWxlIjp7InVuaXQiOiJweCIsInNpemUiOjI4LCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0X21vYmlsZSI6eyJ1bml0IjoicHgiLCJzaXplIjozNCwic2l6ZXMiOltdfX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-2067062\" data-id=\"2067062\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-956a238 wow fadeInRight elementor-widget elementor-widget-text-editor\" data-id=\"956a238\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>u79c1u305fu3061u306fu5e38u306bu9867u5ba2u306eu30c7u30b6u30a4u30f3u8981u6c42u3092u6e80u305fu3057u307eu3059u3002u5916u89b3u3068u5bf8u6cd5u306fu3001u6700u3082u91cdu8981u8996u3057u3066u3044u308bu8981u7d20u3067u3059u3002</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-74328b6b elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"74328b6b\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4b9c9796\" data-id=\"4b9c9796\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjFjYTNiNmM1IiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsibGF5b3V0IjoiNCIsImxpbWl0Ijo0LCJmaWx0ZXJfZGVmYXVsdF90aXRsZSI6IkFsbCIsImNvbF9zbSI6IjEiLCJjb2xfbWQiOiIyIiwiY29sX2xnIjoiMiIsImNvbF94bCI6IjIiLCJidXR0b25fdGV4dCI6IlJlYWQgbW9yZSIsInNvdXJjZSI6WyJqYXxsYW5ndWFnZSJdLCJjdF9hbmltYXRlIjoid293IGZhZGVJblVwIiwib3JkZXIiOiJhc2MifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3Rfc2VydmljZV9ncmlkIn0=\"][elementor-element data=\"eyJpZCI6IjI5NzFiOGIzIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGV4dCI6Ilx1MzA1ZFx1MzA2ZVx1NGVkNlx1MzA2ZVx1MzBiNVx1MzBmY1x1MzBkM1x1MzBiOSIsImxpbmsiOnsidXJsIjoiXC9zZXJ2aWNlcyIsImlzX2V4dGVybmFsIjoiIiwibm9mb2xsb3ciOiIifSwiYWxpZ24iOiJjZW50ZXIiLCJidG5faWNvbiI6eyJ2YWx1ZSI6Im1hdGVyaWFsIHptZGkgem1kaS1zZXR0aW5ncyIsImxpYnJhcnkiOiJtYXRlcmlhbCJ9LCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6Ii0xMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sInN0eWxlIjoiYnRuLXByZXNldDMiLCJfYW5pbWF0aW9uIjoibm9uZSJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9idXR0b24ifQ==\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-f43d465 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"f43d465\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-5310bd3\" data-id=\"5310bd3\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImJjZmM3MzUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjdGY3X2lkIjoiOTMyIiwibGF5b3V0IjoiMiIsImN0ZjdfdGl0bGUiOiJcdThjZWFcdTU1NGZcdTMwNGNcdTMwNDJcdTMwOGFcdTMwN2VcdTMwNTlcdTMwNGJcdWZmMWYiLCJjdGY3X2Rlc2NyaXB0aW9uIjoiQ2FsbDogODAwIDI1MCAzNjkiLCJjdGY3X3Bob25lIjoiPHNwYW4+Q2FsbDo8XC9zcGFuPiAwOTY4ODYwMzg2IiwiZWxfdGl0bGUiOiJcdTg5OGJcdTdhNGRcdTMwODJcdTMwOGFcdTMwOTJcdTUzZDZcdTVmOTdcdTMwNTlcdTMwOGJcdTMwNWZcdTMwODFcdTMwNmVcdTkwMjNcdTdkNjFcdTUxNDhcdWZmMWEiLCJjdF9hbmltYXRlIjoid293IGZsaXBJblgifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY3RmNyJ9\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-a9b49c5 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"a9b49c5\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n                            <div class=\"elementor-background-overlay\"></div>n                n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-1dcb85a\" data-id=\"1dcb85a\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n                <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-6c560a6 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"6c560a6\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-e82cd67\" data-id=\"e82cd67\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImVmNDE1MTEiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Zlx1N2MyMVx1NTM1OFx1MzA2YVx1NGY1Y1x1Njk2ZFx1NjI0Ylx1OTgwNlx1MzA5Mlx1NjMwMVx1MzA2M1x1MzA2Nlx1MzA0NFx1MzA3ZVx1MzA1OVx1MzAwMiIsInRpdGxlX2NvbG9yIjoiI2ZmZmZmZiIsInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplIjp7InVuaXQiOiJweCIsInNpemUiOjM2LCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0Ijp7InVuaXQiOiJweCIsInNpemUiOjQ4LCJzaXplcyI6W119LCJzdHlsZSI6InN0LWxpbmUtbGVmdCIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjp0cnVlfSwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemVfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjMwLCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0X3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjozOCwic2l6ZXMiOltdfSwiY3RfYW5pbWF0ZSI6IndvdyBmYWRlSW5MZWZ0In0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-3a08737\" data-id=\"3a08737\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-7aa11c2 wow fadeInRight elementor-widget elementor-widget-text-editor\" data-id=\"7aa11c2\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>u79c1u305fu3061u306fu5e38u306bu54c1u8ceau3068u9032u6357u306bu304au3044u3066u5b89u5fc3u611fu3092u63d0u4f9bu3057u307eu3059u3002</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n        [elementor-element data=\"eyJpZCI6IjlkNWVhMzIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X2xpc3QiOlt7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi1yZXNlYXJjaCIsImxpYnJhcnkiOiJmbGF0aWNvbiJ9LCJfaWQiOiIwNTVmZWYyIiwidGl0bGUiOiJcdTc5YzFcdTMwNWZcdTMwNjFcdTMwOTJcdTYzYTJcdTMwNTkiLCJkZXNjcmlwdGlvbiI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Zlx1MzAwMVx1NTQwNFx1MzBkN1x1MzBlZFx1MzBiOFx1MzBhN1x1MzBhZlx1MzBjOFx1MzA5Mlx1N2RjZlx1NTQwOFx1NzY4NFx1MzA2Ylx1NTNkNlx1MzA4YVx1NjI3MVx1MzA0Nlx1OTFjZFx1ODk4MVx1NjAyN1x1MzA5Mlx1NzQwNlx1ODllM1x1MzA1N1x1MzA2Nlx1MzA0NFx1MzA3ZVx1MzA1OVx1MzAwMiIsImJ0bl9saW5rIjp7InVybCI6IiIsImlzX2V4dGVybmFsIjoiIiwibm9mb2xsb3ciOiIifX0seyJjdF9pY29uIjp7InZhbHVlIjoiZmxhdGljb24gZmxhdGljb24tbmV0d29yayIsImxpYnJhcnkiOiJmbGF0aWNvbiJ9LCJfaWQiOiIzOWUxNGI4IiwidGl0bGUiOiJcdTc5YzFcdTMwNWZcdTMwNjFcdTMwNjhcdTYzYTVcdTdkOWFcdTMwNTlcdTMwOGIiLCJkZXNjcmlwdGlvbiI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA0Y1x1NGVkNlx1MzA2ZVx1MzBhOFx1MzBmY1x1MzBiOFx1MzBhN1x1MzBmM1x1MzBiN1x1MzBmY1x1MzA2OFx1NzU3MFx1MzA2YVx1MzA4Ylx1NzBiOVx1MzA2Zlx1MzAwMVx1MzBhYlx1MzBiOVx1MzBiZlx1MzBkZVx1MzBhNFx1MzBiYVx1MzA1NVx1MzA4Y1x1MzA1Zlx1MzBiZFx1MzBlYVx1MzBlNVx1MzBmY1x1MzBiN1x1MzBlN1x1MzBmM1x1MzA5Mlx1NGY1Y1x1NjIxMFx1MzA1OVx1MzA4Ylx1NWMwMlx1OTU4MFx1NzdlNVx1OGI1OFx1MzA2Ylx1MzA0Mlx1MzA4YVx1MzA3ZVx1MzA1OVx1MzAwMiIsImJ0bl9saW5rIjp7InVybCI6IiIsImlzX2V4dGVybmFsIjoiIiwibm9mb2xsb3ciOiIifX0seyJjdF9pY29uIjp7InZhbHVlIjoiZmxhdGljb24gZmxhdGljb24td2FsbGV0IiwibGlicmFyeSI6ImZsYXRpY29uIn0sIl9pZCI6ImY1ZTEwZTgiLCJ0aXRsZSI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Ylx1NjUyZlx1NjI1NVx1MzA0NiIsImRlc2NyaXB0aW9uIjoiXHU3OWMxXHUzMDVmXHUzMDYxXHUzMDZmXHUzMDAxXHU1NDA0XHUzMGMxXHUzMGZjXHUzMGUwXHUzMGUxXHUzMGYzXHUzMGQwXHUzMGZjXHUzMDRjXHU4MWVhXHU1MjA2XHU4MWVhXHU4ZWFiXHUzMDZlXHU2NzAwXHU5YWQ4XHUzMDZlXHU1OWZmXHUzMDkyXHU3NmVlXHU2MzA3XHUzMDU5XHUzMDUzXHUzMDY4XHUzMDkyXHU1OTY4XHU1MmIxXHUzMDU3XHUzMDAxXHU2N2Q0XHU4ZWRmXHUzMDY3XHU1MzU0XHU1MjliXHU3Njg0XHUzMDZhXHU3NGIwXHU1ODgzXHUzMDkyXHU4MGIyXHUzMDkzXHUzMDY3XHUzMDQ0XHUzMDdlXHUzMDU5XHUzMDAyIiwiYnRuX2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9fSx7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi10YXJnZXQiLCJsaWJyYXJ5IjoiZmxhdGljb24ifSwiX2lkIjoiODgzOTk2OSIsInRpdGxlIjoiXHUzMDQyXHUzMDZhXHUzMDVmXHUzMDZlXHU1OTIyXHUzMDkyXHU1YjlmXHU3M2ZlXHUzMDU5XHUzMDhiIiwiZGVzY3JpcHRpb24iOiJcdTMwNjlcdTMwNmVcdTMwZDNcdTMwYjhcdTMwY2RcdTMwYjlcdTMwNmJcdTMwODJcdTMwMDFcdTk3NjlcdTY1YjBcdTMwNjhcdTkwMzJcdTZiNjlcdTMwOTJcdTRmYzNcdTMwNTlcdTcyZWNcdTgxZWFcdTMwNmVcdTMwYmRcdTMwZWFcdTMwZTVcdTMwZmNcdTMwYjdcdTMwZTdcdTMwZjNcdTMwNGNcdTMwNDJcdTMwOGFcdTMwN2VcdTMwNTlcdTMwMDIiLCJidG5fbGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn19XSwidGl0bGVfY29sb3IiOiIjZmZmZmZmIiwiZGVzY3JpcHRpb25fY29sb3IiOiIjRkZGRkZGIiwiY3RfYW5pbWF0ZSI6IndvdyBmYWRlSW4ifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfcHJvY2VzcyJ9\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-79ee8ab elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"79ee8ab\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4af1814\" data-id=\"4af1814\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n                <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-505fb45 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"505fb45\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-7223f1c\" data-id=\"7223f1c\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-e7c238e elementor-widget elementor-widget-google_maps\" data-id=\"e7c238e\" data-element_type=\"widget\" data-widget_type=\"google_maps.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-custom-embed\">nttt<iframe loading=\"lazy\"ntttttsrc=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"nttttttitle=\"10u00b057&#039;11.2&quot;N 106u00b045&#039;13.0&quot;E\"ntttttaria-label=\"10u00b057&#039;11.2&quot;N 106u00b045&#039;13.0&quot;E\"nttt></iframe>ntt</div>ntttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-0225539\" data-id=\"0225539\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjUxZDU0M2EiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1MzA0NFx1MzA2NFx1MzA2N1x1MzA4Mlx1MzA2OVx1MzA5M1x1MzA2YVx1NTJhOVx1MzA1MVx1MzA0Y1x1NWZjNVx1ODk4MVx1MzA2YVx1NTgzNFx1NTQwOFx1MzA2N1x1MzA4Mlx1MzAwMVx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Ylx1MzA1NFx1OTAyM1x1N2Q2MVx1MzA0Zlx1MzA2MFx1MzA1NVx1MzA0NC4uLiIsInRpdGxlX2NvbG9yIjoiIzg1QjIzQiIsIl9wYWRkaW5nIjp7InVuaXQiOiIlIiwidG9wIjoiMCIsInJpZ2h0IjoiNSIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sInRpdGxlX3NwYWNlX2JvdHRvbSI6eyJ1bml0IjoicHgiLCJzaXplIjozMywic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemVfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjMwLCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0X3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjozOCwic2l6ZXMiOltdfSwiY3RfYW5pbWF0ZSI6IndvdyBmbGlwSW5YIiwiX3BhZGRpbmdfdGFibGV0Ijp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"][elementor-element data=\"eyJpZCI6ImVkMGRjMWIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjdGY3X2lkIjoiOTc0Iiwic3R5bGVfbDEiOiJzdHlsZTIifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY3RmNyJ9\"]            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                    </div>n        </section>n        \",\"scripts\":[],\"styles\":[]}}'),(10333,3166,'_elementor_edit_mode','builder'),(10334,3166,'_elementor_template_type','wp-page'),(10335,3166,'_elementor_version','3.24.7'),(10336,3166,'_wp_page_template','default'),(10337,3166,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u3001\\u30d9\\u30c8\\u30ca\\u30e0\\u5168\\u571f\\u304a\\u3088\\u3073\\u4e16\\u754c\\u4e2d\\u306e\\u6a5f\\u68b0\\u7523\\u696d\\u5411\\u3051\\u306b\\u5e45\\u5e83\\u3044\\u88fd\\u54c1\\u3092\\u63d0\\u4f9b\\u3057\\u3066\\u304a\\u308a\\u3001\\u7279\\u306b\\u65e5\\u672c\\u3001\\u97d3\\u56fd\\u3001\\u30a2\\u30e1\\u30ea\\u30ab\\u3001\\u30aa\\u30fc\\u30b9\\u30c8\\u30e9\\u30ea\\u30a2\\u3068\\u3044\\u3063\\u305f\\u4e3b\\u8981\\u5e02\\u5834\\u3067\\u306e\\u53d6\\u5f15\\u306b\\u529b\\u3092\\u5165\\u308c\\u3066\\u3044\\u307e\\u3059\\u3002\\u307e\\u305f\\u3001\\u3053\\u308c\\u3089\\u306e\\u5e02\\u5834\\u3078\\u306e\\u8f38\\u51fa\\u7d4c\\u9a13\\u3082\\u8c4a\\u5bcc\\u3067\\u3059\\u3002\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306e\\u6700\\u5927\\u306e\\u5f37\\u307f\\u306f\\u3001\\u5b66\\u3076\\u3053\\u3068\\u3001\\u9769\\u65b0\\u3059\\u308b\\u3053\\u3068\\u306b\\u60c5\\u71b1\\u3092\\u6301\\u3061\\u3001\\u81ea\\u4fe1\\u3092\\u6301\\u3063\\u305f\\u82e5\\u3044\\u52b4\\u50cd\\u529b\\u306b\\u3042\\u308a\\u307e\\u3059\\u3002\\u3053\\u306e\\u30c1\\u30fc\\u30e0\\u306f\\u3001\\u5e38\\u306b\\u5b89\\u5b9a\\u3057\\u305f\\u9ad8\\u54c1\\u8cea\\u306e\\u6a5f\\u68b0\\u88fd\\u54c1\\u3092\\u591a\\u69d8\\u306b\\u88fd\\u9020\\u3059\\u308b\\u80fd\\u529b\\u3092\\u5099\\u3048\\u3066\\u3044\\u307e\\u3059\\u3002<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/youtu.be\\/vUCVqLmXSPM?si=NDYrSC8zPIUGPj3l\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"\\u9867\\u5ba2\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"\\u4eba\\u4e8b\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"\\u5e74\\u9593\\u6ce8\\u6587\\u6570\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306f\\u3001\\u4e16\\u754c\\u4e2d\\u304b\\u3089\\u306e\\u6ce8\\u6587\\u3068\\u63a5\\u7d9a\\u3059\\u308b\\u305f\\u3081\\u306bAlibaba\\u306b\\u5e97\\u8217\\u3092\\u958b\\u8a2d\\u3057\\u59cb\\u3081\\u307e\\u3057\\u305f\\u3002<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0e89391\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u30012030\\u5e74\\u307e\\u3067\\u306b\\u30d9\\u30c8\\u30ca\\u30e0\\u306e\\u4e3b\\u8981\\u306a\\u6a5f\\u68b0\\u52a0\\u5de5\\u4f01\\u696d\\u306e\\u4e00\\u3064\\u3068\\u3057\\u3066\\u3001\\u56fd\\u969b\\u5e02\\u5834\\u306b\\u4f9b\\u7d66\\u3059\\u308b\\u3053\\u3068\\u3092\\u76ee\\u6307\\u3057\\u3066\\u3044\\u307e\\u3059\\u3002\\u5c06\\u6765\\u7684\\u306b\\u306f\\u3001\\u5b8c\\u6210\\u3057\\u305f\\u6a5f\\u68b0\\u88fd\\u54c1\\u3092\\u76f4\\u63a5\\u30a8\\u30f3\\u30c9\\u30e6\\u30fc\\u30b6\\u30fc\\u306b\\u63d0\\u4f9b\\u3059\\u308b\\u3053\\u3068\\u3092\\u76ee\\u6a19\\u3068\\u3057\\u3066\\u3044\\u307e\\u3059\\u3002\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2026\\u5e74\\u307e\\u3067\\u306b\\u9054\\u6210\\u3059\\u308b\\u76ee\\u6a19:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"\\u6771\\u30a2\\u30b8\\u30a2\\uff08\\u65e5\\u672c\\u3001\\u97d3\\u56fd\\u306a\\u3069\\uff09\\uff1a\\u4ea4\\u63db\\u7528\\u6a5f\\u68b0\\u90e8\\u54c1\\u3001\\u30aa\\u30fc\\u30c8\\u30d0\\u30a4\\u304a\\u3088\\u3073\\u81ea\\u52d5\\u8eca\\u306e\\u30a2\\u30af\\u30bb\\u30b5\\u30ea\\u30fc\\u3001\\u6c34\\u7523\\u696d\\u7528\\u306e\\u30d5\\u30a3\\u30c3\\u30c6\\u30a3\\u30f3\\u30b0\\u3001\\u91d1\\u578b\\u3001\\u305d\\u306e\\u4ed6\\u306e\\u6a5f\\u68b0\\u90e8\\u54c1\\u306e\\u8f38\\u51fa\\u3002\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"\\u30e8\\u30fc\\u30ed\\u30c3\\u30d1\\uff08\\u30c9\\u30a4\\u30c4\\u3001\\u30d6\\u30eb\\u30ac\\u30ea\\u30a2\\u3001\\u30aa\\u30e9\\u30f3\\u30c0\\u306a\\u3069\\uff09\\uff1a\\u81ea\\u52d5\\u8eca\\u7528\\u30d9\\u30a2\\u30ea\\u30f3\\u30b0\\u306e\\u6cbb\\u5177\\u304a\\u3088\\u3073\\u81ea\\u52d5\\u5316\\u6a5f\\u68b0\\u306e\\u96fb\\u6c17\\u30dc\\u30c3\\u30af\\u30b9\\u90e8\\u54c1\\u306e\\u751f\\u7523\\u3002\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"\\u30a2\\u30e1\\u30ea\\u30ab\\u5408\\u8846\\u56fd\\uff1a\\u533b\\u7642\\u6a5f\\u5668\\u3001\\u5149\\u5b66\\u6a5f\\u5668\\u3001\\u97f3\\u97ff\\u6a5f\\u5668\\u306b\\u95a2\\u9023\\u3059\\u308b\\u88fd\\u54c1\\u3002\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"\\u30aa\\u30fc\\u30b9\\u30c8\\u30e9\\u30ea\\u30a2\\uff1a\\u677f\\u91d1\\u88fd\\u54c1\\u3002\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"\\u30d9\\u30c8\\u30ca\\u30e0\\uff1a\\u5c0f\\u578b\\u81ea\\u52d5\\u5316\\u6a5f\\u68b0\\u3001\\u30aa\\u30fc\\u30c8\\u30d0\\u30a4\\u304a\\u3088\\u3073\\u81ea\\u52d5\\u8eca\\u306e\\u30dc\\u30eb\\u30c8\\u3001\\u77f3\\u6cb9\\u304a\\u3088\\u3073\\u30ac\\u30b9\\u7523\\u696d\\u306e\\u88fd\\u54c1\\u3002\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"\\u305d\\u306e\\u4ed6\\u306e\\u5e02\\u5834\\u3068\\u88fd\\u54c1\\u3002\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u8907\\u6570\\u306e\\u696d\\u754c\\u3067\\u30b5\\u30fc\\u30d3\\u30b9\\u3092\\u63d0\\u4f9b\\u3057\\u3066\\u3044\\u307e\\u3059\\u3002\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306f\\u5e38\\u306b\\u9867\\u5ba2\\u306e\\u30c7\\u30b6\\u30a4\\u30f3\\u8981\\u6c42\\u3092\\u6e80\\u305f\\u3057\\u307e\\u3059\\u3002\\u5916\\u89b3\\u3068\\u5bf8\\u6cd5\\u306f\\u3001\\u6700\\u3082\\u91cd\\u8981\\u8996\\u3057\\u3066\\u3044\\u308b\\u8981\\u7d20\\u3067\\u3059\\u3002<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"ja|language\"],\"ct_animate\":\"wow fadeInUp\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u305d\\u306e\\u4ed6\\u306e\\u30b5\\u30fc\\u30d3\\u30b9\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"\\u8cea\\u554f\\u304c\\u3042\\u308a\\u307e\\u3059\\u304b\\uff1f\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"\\u898b\\u7a4d\\u3082\\u308a\\u3092\\u53d6\\u5f97\\u3059\\u308b\\u305f\\u3081\\u306e\\u9023\\u7d61\\u5148\\uff1a\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u7c21\\u5358\\u306a\\u4f5c\\u696d\\u624b\\u9806\\u3092\\u6301\\u3063\\u3066\\u3044\\u307e\\u3059\\u3002\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306f\\u5e38\\u306b\\u54c1\\u8cea\\u3068\\u9032\\u6357\\u306b\\u304a\\u3044\\u3066\\u5b89\\u5fc3\\u611f\\u3092\\u63d0\\u4f9b\\u3057\\u307e\\u3059\\u3002<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"\\u79c1\\u305f\\u3061\\u3092\\u63a2\\u3059\",\"description\":\"\\u79c1\\u305f\\u3061\\u306f\\u3001\\u5404\\u30d7\\u30ed\\u30b8\\u30a7\\u30af\\u30c8\\u3092\\u7dcf\\u5408\\u7684\\u306b\\u53d6\\u308a\\u6271\\u3046\\u91cd\\u8981\\u6027\\u3092\\u7406\\u89e3\\u3057\\u3066\\u3044\\u307e\\u3059\\u3002\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"\\u79c1\\u305f\\u3061\\u3068\\u63a5\\u7d9a\\u3059\\u308b\",\"description\":\"\\u79c1\\u305f\\u3061\\u304c\\u4ed6\\u306e\\u30a8\\u30fc\\u30b8\\u30a7\\u30f3\\u30b7\\u30fc\\u3068\\u7570\\u306a\\u308b\\u70b9\\u306f\\u3001\\u30ab\\u30b9\\u30bf\\u30de\\u30a4\\u30ba\\u3055\\u308c\\u305f\\u30bd\\u30ea\\u30e5\\u30fc\\u30b7\\u30e7\\u30f3\\u3092\\u4f5c\\u6210\\u3059\\u308b\\u5c02\\u9580\\u77e5\\u8b58\\u306b\\u3042\\u308a\\u307e\\u3059\\u3002\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"\\u79c1\\u305f\\u3061\\u306b\\u652f\\u6255\\u3046\",\"description\":\"\\u79c1\\u305f\\u3061\\u306f\\u3001\\u5404\\u30c1\\u30fc\\u30e0\\u30e1\\u30f3\\u30d0\\u30fc\\u304c\\u81ea\\u5206\\u81ea\\u8eab\\u306e\\u6700\\u9ad8\\u306e\\u59ff\\u3092\\u76ee\\u6307\\u3059\\u3053\\u3068\\u3092\\u5968\\u52b1\\u3057\\u3001\\u67d4\\u8edf\\u3067\\u5354\\u529b\\u7684\\u306a\\u74b0\\u5883\\u3092\\u80b2\\u3093\\u3067\\u3044\\u307e\\u3059\\u3002\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"\\u3042\\u306a\\u305f\\u306e\\u5922\\u3092\\u5b9f\\u73fe\\u3059\\u308b\",\"description\":\"\\u3069\\u306e\\u30d3\\u30b8\\u30cd\\u30b9\\u306b\\u3082\\u3001\\u9769\\u65b0\\u3068\\u9032\\u6b69\\u3092\\u4fc3\\u3059\\u72ec\\u81ea\\u306e\\u30bd\\u30ea\\u30e5\\u30fc\\u30b7\\u30e7\\u30f3\\u304c\\u3042\\u308a\\u307e\\u3059\\u3002\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u3044\\u3064\\u3067\\u3082\\u3069\\u3093\\u306a\\u52a9\\u3051\\u304c\\u5fc5\\u8981\\u306a\\u5834\\u5408\\u3067\\u3082\\u3001\\u79c1\\u305f\\u3061\\u306b\\u3054\\u9023\\u7d61\\u304f\\u3060\\u3055\\u3044...\",\"title_color\":\"#85B23B\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(10338,3166,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(10339,3166,'_elementor_page_assets','a:2:{s:6:\"styles\";a:4:{i:0;s:18:\"widget-text-editor\";i:1;s:21:\"e-animation-slideInUp\";i:2;s:12:\"widget-image\";i:3;s:18:\"widget-google_maps\";}s:7:\"scripts\";a:9:{i:0;s:16:\"jquery-numerator\";i:1;s:20:\"ct-counter-widget-js\";i:2;s:11:\"progressbar\";i:3;s:16:\"waypoints-lib-js\";i:4;s:24:\"ct-progressbar-widget-js\";i:5;s:12:\"imagesloaded\";i:6;s:7:\"isotope\";i:7;s:25:\"ct-post-masonry-widget-js\";i:8;s:22:\"ct-post-grid-widget-js\";}}'),(10340,3166,'_elementor_css','a:6:{s:4:\"time\";i:1742179356;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:8:\"material\";i:1;s:8:\"flaticon\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(10341,3166,'_elementor_element_cache','{\"timeout\":1742265757,\"value\":{\"content\":\"        <section class=\"elementor-section elementor-top-section elementor-element elementor-element-2d2b67a elementor-section-stretched elementor-section-full_width slider-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"2d2b67a\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-no \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-d1bb387\" data-id=\"d1bb387\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImNjODZmNGQiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJyZXZzbGlkZXJ0aXRsZSI6IkhvbWUgMSIsInNob3J0Y29kZSI6IltyZXZfc2xpZGVyIGFsaWFzPVwiaG9tZS0xXCJdW1wvcmV2X3NsaWRlcl0ifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoic2xpZGVyX3Jldm9sdXRpb24ifQ==\"]        <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-2cea906 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"2cea906\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-8e117d0\" data-id=\"8e117d0\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjI0YjYyY2MiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Zlx1MzAwMVx1MzBkOVx1MzBjOFx1MzBjYVx1MzBlMFx1NTE2OFx1NTcxZlx1MzA0YVx1MzA4OFx1MzA3M1x1NGUxNlx1NzU0Y1x1NGUyZFx1MzA2ZVx1NmE1Zlx1NjhiMFx1NzUyM1x1Njk2ZFx1NTQxMVx1MzA1MVx1MzA2Ylx1NWU0NVx1NWU4M1x1MzA0NFx1ODhmZFx1NTRjMVx1MzA5Mlx1NjNkMFx1NGY5Ylx1MzA1N1x1MzA2Nlx1MzA0YVx1MzA4YVx1MzAwMVx1NzI3OVx1MzA2Ylx1NjVlNVx1NjcyY1x1MzAwMVx1OTdkM1x1NTZmZFx1MzAwMVx1MzBhMlx1MzBlMVx1MzBlYVx1MzBhYlx1MzAwMVx1MzBhYVx1MzBmY1x1MzBiOVx1MzBjOFx1MzBlOVx1MzBlYVx1MzBhMlx1MzA2OFx1MzA0NFx1MzA2M1x1MzA1Zlx1NGUzYlx1ODk4MVx1NWUwMlx1NTgzNFx1MzA2N1x1MzA2ZVx1NTNkNlx1NWYxNVx1MzA2Ylx1NTI5Ylx1MzA5Mlx1NTE2NVx1MzA4Y1x1MzA2Nlx1MzA0NFx1MzA3ZVx1MzA1OVx1MzAwMlx1MzA3ZVx1MzA1Zlx1MzAwMVx1MzA1M1x1MzA4Y1x1MzA4OVx1MzA2ZVx1NWUwMlx1NTgzNFx1MzA3OFx1MzA2ZVx1OGYzOFx1NTFmYVx1N2Q0Y1x1OWExM1x1MzA4Mlx1OGM0YVx1NWJjY1x1MzA2N1x1MzA1OVx1MzAwMiIsInRpdGxlX2NvbG9yIjoiIzg1QjIzQiIsInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplIjp7InVuaXQiOiJweCIsInNpemUiOjM2LCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0Ijp7InVuaXQiOiJweCIsInNpemUiOjQ4LCJzaXplcyI6W119LCJzdHlsZSI6InN0LWxpbmUtbGVmdCIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjE2IiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MjYsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjM0LCJzaXplcyI6W119LCJjdF9hbmltYXRlIjoid293IGZhZGVJblVwIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"]tt<div class=\"elementor-element elementor-element-909b449 wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"909b449\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>u79c1u305fu3061u306eu6700u5927u306eu5f37u307fu306fu3001u5b66u3076u3053u3068u3001u9769u65b0u3059u308bu3053u3068u306bu60c5u71b1u3092u6301u3061u3001u81eau4fe1u3092u6301u3063u305fu82e5u3044u52b4u50cdu529bu306bu3042u308au307eu3059u3002u3053u306eu30c1u30fcu30e0u306fu3001u5e38u306bu5b89u5b9au3057u305fu9ad8u54c1u8ceau306eu6a5fu68b0u88fdu54c1u3092u591au69d8u306bu88fdu9020u3059u308bu80fdu529bu3092u5099u3048u3066u3044u307eu3059u3002</p>tttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImM0YTIwMjgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJpbWFnZSI6eyJ1cmwiOiIiLCJpZCI6IiJ9LCJ2aWRlb19saW5rIjoiaHR0cHM6XC9cL3lvdXR1LmJlXC92VUNWcUxtWFNQTT9zaT1ORFlyU0M4elBJVUdQajNsIiwiYnRuX3ZpZGVvX3N0eWxlIjoic3R5bGUzIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIzMSIsInJpZ2h0IjoiMzgiLCJib3R0b20iOiIwIiwibGVmdCI6Ijc4IiwiaXNMaW5rZWQiOmZhbHNlfSwiX2Nzc19jbGFzc2VzIjoiZWwtaW5saW5lIHdvdyBmYWRlSW5SaWdodCIsIl9tYXJnaW5fdGFibGV0Ijp7InVuaXQiOiJweCIsInRvcCI6IjMxIiwicmlnaHQiOiIyMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiNjgiLCJpc0xpbmtlZCI6ZmFsc2V9LCJfYW5pbWF0aW9uIjoic2xpZGVJblVwIiwiX21hcmdpbl9tb2JpbGUiOnsidW5pdCI6InB4IiwidG9wIjoiMzEiLCJyaWdodCI6IjIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X3ZpZGVvX3BsYXllciJ9\"]tt<div class=\"elementor-element elementor-element-1fd7931 el-inline wow fadeInRight elementor-invisible elementor-widget elementor-widget-image\" data-id=\"1fd7931\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;slideInUp&quot;}\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" class=\"attachment-full size-full wp-image-2542\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-4fff345\" data-id=\"4fff345\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjU5MGYxYmUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjo1MCwic3VmZml4IjoiKyIsInRob3VzYW5kX3NlcGFyYXRvciI6IiIsInRob3VzYW5kX3NlcGFyYXRvcl9jaGFyIjoiICIsInRpdGxlIjoiXHU5ODY3XHU1YmEyIiwic2hvd19pY29uIjoidHJ1ZSIsImNvdW50ZXJfaWNvbiI6eyJ2YWx1ZSI6Im1hdGVyaWFsIHptZGkgem1kaS1hc3NpZ25tZW50LWNoZWNrIiwibGlicmFyeSI6Im1hdGVyaWFsIn0sIm51bWJlcl90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiI0MSIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwiX2Nzc19jbGFzc2VzIjoidGV4dC1jZW50ZXItc20iLCJpY29uX3R5cGUiOiJpbWFnZSIsImljb25faW1hZ2UiOnsidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMTlcLzEyXC9jb3VudGVyLWljb24tMDEucG5nIiwiaWQiOjE1MTV9LCJfYW5pbWF0aW9uIjoibm9uZSIsImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluVXAifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY291bnRlciJ9\"][elementor-element data=\"eyJpZCI6IjdhNWYyMzkiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjoyMDAsInN1ZmZpeCI6IisiLCJ0aG91c2FuZF9zZXBhcmF0b3IiOiIiLCJ0aG91c2FuZF9zZXBhcmF0b3JfY2hhciI6IiAiLCJ0aXRsZSI6Ilx1NGViYVx1NGU4YiIsInNob3dfaWNvbiI6InRydWUiLCJjb3VudGVyX2ljb24iOnsidmFsdWUiOiJtYXRlcmlhbCB6bWRpIHptZGktYXNzaWdubWVudC1jaGVjayIsImxpYnJhcnkiOiJtYXRlcmlhbCJ9LCJudW1iZXJfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiNDEiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sIl9jc3NfY2xhc3NlcyI6InRleHQtY2VudGVyLXNtIiwiaWNvbl90eXBlIjoiaW1hZ2UiLCJpY29uX2ltYWdlIjp7InVybCI6Imh0dHA6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDE5XC8xMlwvY291bnRlci1pY29uLTAyLnBuZyIsImlkIjoxNTE2fSwiX2FuaW1hdGlvbiI6Im5vbmUiLCJjdF9hbmltYXRlIjoid293IGZhZGVJblVwIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2NvdW50ZXIifQ==\"][elementor-element data=\"eyJpZCI6IjA0NTMxYzgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjoyMDAwLCJzdWZmaXgiOiIrIiwidGhvdXNhbmRfc2VwYXJhdG9yIjoiIiwidGhvdXNhbmRfc2VwYXJhdG9yX2NoYXIiOiIgIiwidGl0bGUiOiJcdTVlNzRcdTk1OTNcdTZjZThcdTY1ODdcdTY1NzAiLCJzaG93X2ljb24iOiJ0cnVlIiwiY291bnRlcl9pY29uIjp7InZhbHVlIjoibWF0ZXJpYWwgem1kaSB6bWRpLWFzc2lnbm1lbnQtY2hlY2siLCJsaWJyYXJ5IjoibWF0ZXJpYWwifSwibnVtYmVyX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjQxIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJfY3NzX2NsYXNzZXMiOiJ0ZXh0LWNlbnRlci1zbSIsImljb25fdHlwZSI6ImltYWdlIiwiaWNvbl9pbWFnZSI6eyJ1cmwiOiJodHRwOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAxOVwvMTJcL2NvdW50ZXItaWNvbi0wMy5wbmciLCJpZCI6MTUxN30sIl9hbmltYXRpb24iOiJub25lIiwiY3RfYW5pbWF0ZSI6IndvdyBmYWRlSW5VcCJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9jb3VudGVyIn0=\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-348ba48\" data-id=\"348ba48\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-ed7e1d0 wow fadeInUp elementor-widget elementor-widget-image\" data-id=\"ed7e1d0\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" class=\"attachment-full size-full wp-image-2571\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntttt<div class=\"elementor-element elementor-element-3b54db6 wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"3b54db6\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>u79c1u305fu3061u306fu3001u4e16u754cu4e2du304bu3089u306eu6ce8u6587u3068u63a5u7d9au3059u308bu305fu3081u306bAlibabau306bu5e97u8217u3092u958bu8a2du3057u59cbu3081u307eu3057u305fu3002</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-8b70e78 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"8b70e78\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-c2b95bd\" data-id=\"c2b95bd\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-b5a8ba3 elementor-widget elementor-widget-image\" data-id=\"b5a8ba3\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" class=\"attachment-full size-full wp-image-2268\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntttt<div class=\"elementor-element elementor-element-0e89391 elementor-widget elementor-widget-image\" data-id=\"0e89391\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" class=\"attachment-full size-full wp-image-2559\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-de7136f\" data-id=\"de7136f\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6Ijg0MDdhYmUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Zlx1MzAwMTIwMzBcdTVlNzRcdTMwN2VcdTMwNjdcdTMwNmJcdTMwZDlcdTMwYzhcdTMwY2FcdTMwZTBcdTMwNmVcdTRlM2JcdTg5ODFcdTMwNmFcdTZhNWZcdTY4YjBcdTUyYTBcdTVkZTVcdTRmMDFcdTY5NmRcdTMwNmVcdTRlMDBcdTMwNjRcdTMwNjhcdTMwNTdcdTMwNjZcdTMwMDFcdTU2ZmRcdTk2OWJcdTVlMDJcdTU4MzRcdTMwNmJcdTRmOWJcdTdkNjZcdTMwNTlcdTMwOGJcdTMwNTNcdTMwNjhcdTMwOTJcdTc2ZWVcdTYzMDdcdTMwNTdcdTMwNjZcdTMwNDRcdTMwN2VcdTMwNTlcdTMwMDJcdTVjMDZcdTY3NjVcdTc2ODRcdTMwNmJcdTMwNmZcdTMwMDFcdTViOGNcdTYyMTBcdTMwNTdcdTMwNWZcdTZhNWZcdTY4YjBcdTg4ZmRcdTU0YzFcdTMwOTJcdTc2ZjRcdTYzYTVcdTMwYThcdTMwZjNcdTMwYzlcdTMwZTZcdTMwZmNcdTMwYjZcdTMwZmNcdTMwNmJcdTYzZDBcdTRmOWJcdTMwNTlcdTMwOGJcdTMwNTNcdTMwNjhcdTMwOTJcdTc2ZWVcdTZhMTlcdTMwNjhcdTMwNTdcdTMwNjZcdTMwNDRcdTMwN2VcdTMwNTlcdTMwMDIiLCJ0aXRsZV9jb2xvciI6IiM4NUIyM0IiLCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZSI6eyJ1bml0IjoicHgiLCJzaXplIjozNiwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodCI6eyJ1bml0IjoicHgiLCJzaXplIjo0OCwic2l6ZXMiOltdfSwic3R5bGUiOiJzdC1saW5lLWxlZnQiLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6Ii05IiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwidGl0bGVfc3BhY2VfYm90dG9tIjp7InVuaXQiOiJweCIsInNpemUiOjE3LCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzAsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjM4LCJzaXplcyI6W119LCJjdF9hbmltYXRlIjoid293IGZsaXBJblgiLCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV9tb2JpbGUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MjgsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfbW9iaWxlIjp7InVuaXQiOiJweCIsInNpemUiOjM0LCJzaXplcyI6W119fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-0c8497c wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"0c8497c\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>2026u5e74u307eu3067u306bu9054u6210u3059u308bu76eeu6a19:</p>tttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6IjQ3NTRlZDYiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJwcm9ncmVzc2Jhcl9saXN0IjpbeyJ0aXRsZSI6Ilx1Njc3MVx1MzBhMlx1MzBiOFx1MzBhMlx1ZmYwOFx1NjVlNVx1NjcyY1x1MzAwMVx1OTdkM1x1NTZmZFx1MzA2YVx1MzA2OVx1ZmYwOVx1ZmYxYVx1NGVhNFx1NjNkYlx1NzUyOFx1NmE1Zlx1NjhiMFx1OTBlOFx1NTRjMVx1MzAwMVx1MzBhYVx1MzBmY1x1MzBjOFx1MzBkMFx1MzBhNFx1MzA0YVx1MzA4OFx1MzA3M1x1ODFlYVx1NTJkNVx1OGVjYVx1MzA2ZVx1MzBhMlx1MzBhZlx1MzBiYlx1MzBiNVx1MzBlYVx1MzBmY1x1MzAwMVx1NmMzNFx1NzUyM1x1Njk2ZFx1NzUyOFx1MzA2ZVx1MzBkNVx1MzBhM1x1MzBjM1x1MzBjNlx1MzBhM1x1MzBmM1x1MzBiMFx1MzAwMVx1OTFkMVx1NTc4Ylx1MzAwMVx1MzA1ZFx1MzA2ZVx1NGVkNlx1MzA2ZVx1NmE1Zlx1NjhiMFx1OTBlOFx1NTRjMVx1MzA2ZVx1OGYzOFx1NTFmYVx1MzAwMiIsInByb2dyZXNzX3R5cGUiOiIiLCJwZXJjZW50Ijp7InVuaXQiOiIlIiwic2l6ZSI6MzAsInNpemVzIjpbXX0sImRpc3BsYXlfcGVyY2VudGFnZSI6ImhpZGUiLCJpbm5lcl90ZXh0IjoiV2ViIERlc2lnbmVyIiwiX2lkIjoiOGI0YmNkNiJ9LHsidGl0bGUiOiJcdTMwZThcdTMwZmNcdTMwZWRcdTMwYzNcdTMwZDFcdWZmMDhcdTMwYzlcdTMwYTRcdTMwYzRcdTMwMDFcdTMwZDZcdTMwZWJcdTMwYWNcdTMwZWFcdTMwYTJcdTMwMDFcdTMwYWFcdTMwZTlcdTMwZjNcdTMwYzBcdTMwNmFcdTMwNjlcdWZmMDlcdWZmMWFcdTgxZWFcdTUyZDVcdThlY2FcdTc1MjhcdTMwZDlcdTMwYTJcdTMwZWFcdTMwZjNcdTMwYjBcdTMwNmVcdTZjYmJcdTUxNzdcdTMwNGFcdTMwODhcdTMwNzNcdTgxZWFcdTUyZDVcdTUzMTZcdTZhNWZcdTY4YjBcdTMwNmVcdTk2ZmJcdTZjMTdcdTMwZGNcdTMwYzNcdTMwYWZcdTMwYjlcdTkwZThcdTU0YzFcdTMwNmVcdTc1MWZcdTc1MjNcdTMwMDIiLCJwcm9ncmVzc190eXBlIjoiIiwicGVyY2VudCI6eyJ1bml0IjoiJSIsInNpemUiOjEwLCJzaXplcyI6W119LCJkaXNwbGF5X3BlcmNlbnRhZ2UiOiJoaWRlIiwiaW5uZXJfdGV4dCI6IldlYiBEZXNpZ25lciIsIl9pZCI6IjZlMGY4NzcifSx7InRpdGxlIjoiXHUzMGEyXHUzMGUxXHUzMGVhXHUzMGFiXHU1NDA4XHU4ODQ2XHU1NmZkXHVmZjFhXHU1MzNiXHU3NjQyXHU2YTVmXHU1NjY4XHUzMDAxXHU1MTQ5XHU1YjY2XHU2YTVmXHU1NjY4XHUzMDAxXHU5N2YzXHU5N2ZmXHU2YTVmXHU1NjY4XHUzMDZiXHU5NWEyXHU5MDIzXHUzMDU5XHUzMDhiXHU4OGZkXHU1NGMxXHUzMDAyIiwicHJvZ3Jlc3NfdHlwZSI6IiIsInBlcmNlbnQiOnsidW5pdCI6IiUiLCJzaXplIjozMCwic2l6ZXMiOltdfSwiZGlzcGxheV9wZXJjZW50YWdlIjoic2hvdyIsIl9pZCI6IjIyMmViODEifSx7Il9pZCI6IjVlZWNjYjYiLCJ0aXRsZSI6Ilx1MzBhYVx1MzBmY1x1MzBiOVx1MzBjOFx1MzBlOVx1MzBlYVx1MzBhMlx1ZmYxYVx1Njc3Zlx1OTFkMVx1ODhmZFx1NTRjMVx1MzAwMiIsInBlcmNlbnQiOnsidW5pdCI6IiUiLCJzaXplIjo4LCJzaXplcyI6W119fSx7Il9pZCI6IjEwZTU3NTAiLCJ0aXRsZSI6Ilx1MzBkOVx1MzBjOFx1MzBjYVx1MzBlMFx1ZmYxYVx1NWMwZlx1NTc4Ylx1ODFlYVx1NTJkNVx1NTMxNlx1NmE1Zlx1NjhiMFx1MzAwMVx1MzBhYVx1MzBmY1x1MzBjOFx1MzBkMFx1MzBhNFx1MzA0YVx1MzA4OFx1MzA3M1x1ODFlYVx1NTJkNVx1OGVjYVx1MzA2ZVx1MzBkY1x1MzBlYlx1MzBjOFx1MzAwMVx1NzdmM1x1NmNiOVx1MzA0YVx1MzA4OFx1MzA3M1x1MzBhY1x1MzBiOVx1NzUyM1x1Njk2ZFx1MzA2ZVx1ODhmZFx1NTRjMVx1MzAwMiIsInBlcmNlbnQiOnsidW5pdCI6IiUiLCJzaXplIjoyMCwic2l6ZXMiOltdfX0seyJfaWQiOiJlMTdhMTk1IiwidGl0bGUiOiJcdTMwNWRcdTMwNmVcdTRlZDZcdTMwNmVcdTVlMDJcdTU4MzRcdTMwNjhcdTg4ZmRcdTU0YzFcdTMwMDIiLCJwZXJjZW50Ijp7InVuaXQiOiIlIiwic2l6ZSI6Miwic2l6ZXMiOltdfX1dLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6Ijc4IiwiaXNMaW5rZWQiOmZhbHNlfSwiX21hcmdpbl9tb2JpbGUiOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjp0cnVlfX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X3Byb2dyZXNzYmFyIn0=\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-b6145ce elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"b6145ce\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-e65d58b\" data-id=\"e65d58b\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjljZDU1ZGQiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Zlx1ODkwN1x1NjU3MFx1MzA2ZVx1Njk2ZFx1NzU0Y1x1MzA2N1x1MzBiNVx1MzBmY1x1MzBkM1x1MzBiOVx1MzA5Mlx1NjNkMFx1NGY5Ylx1MzA1N1x1MzA2Nlx1MzA0NFx1MzA3ZVx1MzA1OVx1MzAwMiIsInRpdGxlX2NvbG9yIjoiIzg1QjIzQiIsInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplIjp7InVuaXQiOiJweCIsInNpemUiOjM2LCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0Ijp7InVuaXQiOiJweCIsInNpemUiOjQ4LCJzaXplcyI6W119LCJzdHlsZSI6InN0LWxpbmUtbGVmdCIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjp0cnVlfSwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemVfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjMwLCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0X3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjozOCwic2l6ZXMiOltdfSwiY3RfYW5pbWF0ZSI6IndvdyBmYWRlSW5MZWZ0IiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemVfbW9iaWxlIjp7InVuaXQiOiJweCIsInNpemUiOjI4LCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0X21vYmlsZSI6eyJ1bml0IjoicHgiLCJzaXplIjozNCwic2l6ZXMiOltdfX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-2067062\" data-id=\"2067062\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-956a238 wow fadeInRight elementor-widget elementor-widget-text-editor\" data-id=\"956a238\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>u79c1u305fu3061u306fu5e38u306bu9867u5ba2u306eu30c7u30b6u30a4u30f3u8981u6c42u3092u6e80u305fu3057u307eu3059u3002u5916u89b3u3068u5bf8u6cd5u306fu3001u6700u3082u91cdu8981u8996u3057u3066u3044u308bu8981u7d20u3067u3059u3002</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-74328b6b elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"74328b6b\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4b9c9796\" data-id=\"4b9c9796\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjFjYTNiNmM1IiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsibGF5b3V0IjoiNCIsImxpbWl0Ijo0LCJmaWx0ZXJfZGVmYXVsdF90aXRsZSI6IkFsbCIsImNvbF9zbSI6IjEiLCJjb2xfbWQiOiIyIiwiY29sX2xnIjoiMiIsImNvbF94bCI6IjIiLCJidXR0b25fdGV4dCI6IlJlYWQgbW9yZSIsInNvdXJjZSI6WyJqYXxsYW5ndWFnZSJdLCJjdF9hbmltYXRlIjoid293IGZhZGVJblVwIiwib3JkZXIiOiJhc2MifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3Rfc2VydmljZV9ncmlkIn0=\"][elementor-element data=\"eyJpZCI6IjI5NzFiOGIzIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGV4dCI6Ilx1MzA1ZFx1MzA2ZVx1NGVkNlx1MzA2ZVx1MzBiNVx1MzBmY1x1MzBkM1x1MzBiOSIsImxpbmsiOnsidXJsIjoiXC9zZXJ2aWNlcyIsImlzX2V4dGVybmFsIjoiIiwibm9mb2xsb3ciOiIifSwiYWxpZ24iOiJjZW50ZXIiLCJidG5faWNvbiI6eyJ2YWx1ZSI6Im1hdGVyaWFsIHptZGkgem1kaS1zZXR0aW5ncyIsImxpYnJhcnkiOiJtYXRlcmlhbCJ9LCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6Ii0xMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sInN0eWxlIjoiYnRuLXByZXNldDMiLCJfYW5pbWF0aW9uIjoibm9uZSJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9idXR0b24ifQ==\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-f43d465 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"f43d465\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-5310bd3\" data-id=\"5310bd3\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImJjZmM3MzUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjdGY3X2lkIjoiOTMyIiwibGF5b3V0IjoiMiIsImN0ZjdfdGl0bGUiOiJcdThjZWFcdTU1NGZcdTMwNGNcdTMwNDJcdTMwOGFcdTMwN2VcdTMwNTlcdTMwNGJcdWZmMWYiLCJjdGY3X2Rlc2NyaXB0aW9uIjoiQ2FsbDogODAwIDI1MCAzNjkiLCJjdGY3X3Bob25lIjoiPHNwYW4+Q2FsbDo8XC9zcGFuPiAwOTY4ODYwMzg2IiwiZWxfdGl0bGUiOiJcdTg5OGJcdTdhNGRcdTMwODJcdTMwOGFcdTMwOTJcdTUzZDZcdTVmOTdcdTMwNTlcdTMwOGJcdTMwNWZcdTMwODFcdTMwNmVcdTkwMjNcdTdkNjFcdTUxNDhcdWZmMWEiLCJjdF9hbmltYXRlIjoid293IGZsaXBJblgifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY3RmNyJ9\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-a9b49c5 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"a9b49c5\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n                            <div class=\"elementor-background-overlay\"></div>n                n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-1dcb85a\" data-id=\"1dcb85a\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n                <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-6c560a6 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"6c560a6\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-e82cd67\" data-id=\"e82cd67\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImVmNDE1MTEiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Zlx1N2MyMVx1NTM1OFx1MzA2YVx1NGY1Y1x1Njk2ZFx1NjI0Ylx1OTgwNlx1MzA5Mlx1NjMwMVx1MzA2M1x1MzA2Nlx1MzA0NFx1MzA3ZVx1MzA1OVx1MzAwMiIsInRpdGxlX2NvbG9yIjoiI2ZmZmZmZiIsInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplIjp7InVuaXQiOiJweCIsInNpemUiOjM2LCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0Ijp7InVuaXQiOiJweCIsInNpemUiOjQ4LCJzaXplcyI6W119LCJzdHlsZSI6InN0LWxpbmUtbGVmdCIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjp0cnVlfSwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemVfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjMwLCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0X3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjozOCwic2l6ZXMiOltdfSwiY3RfYW5pbWF0ZSI6IndvdyBmYWRlSW5MZWZ0In0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-3a08737\" data-id=\"3a08737\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-7aa11c2 wow fadeInRight elementor-widget elementor-widget-text-editor\" data-id=\"7aa11c2\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>u79c1u305fu3061u306fu5e38u306bu54c1u8ceau3068u9032u6357u306bu304au3044u3066u5b89u5fc3u611fu3092u63d0u4f9bu3057u307eu3059u3002</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n        [elementor-element data=\"eyJpZCI6IjlkNWVhMzIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X2xpc3QiOlt7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi1yZXNlYXJjaCIsImxpYnJhcnkiOiJmbGF0aWNvbiJ9LCJfaWQiOiIwNTVmZWYyIiwidGl0bGUiOiJcdTc5YzFcdTMwNWZcdTMwNjFcdTMwOTJcdTYzYTJcdTMwNTkiLCJkZXNjcmlwdGlvbiI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Zlx1MzAwMVx1NTQwNFx1MzBkN1x1MzBlZFx1MzBiOFx1MzBhN1x1MzBhZlx1MzBjOFx1MzA5Mlx1N2RjZlx1NTQwOFx1NzY4NFx1MzA2Ylx1NTNkNlx1MzA4YVx1NjI3MVx1MzA0Nlx1OTFjZFx1ODk4MVx1NjAyN1x1MzA5Mlx1NzQwNlx1ODllM1x1MzA1N1x1MzA2Nlx1MzA0NFx1MzA3ZVx1MzA1OVx1MzAwMiIsImJ0bl9saW5rIjp7InVybCI6IiIsImlzX2V4dGVybmFsIjoiIiwibm9mb2xsb3ciOiIifX0seyJjdF9pY29uIjp7InZhbHVlIjoiZmxhdGljb24gZmxhdGljb24tbmV0d29yayIsImxpYnJhcnkiOiJmbGF0aWNvbiJ9LCJfaWQiOiIzOWUxNGI4IiwidGl0bGUiOiJcdTc5YzFcdTMwNWZcdTMwNjFcdTMwNjhcdTYzYTVcdTdkOWFcdTMwNTlcdTMwOGIiLCJkZXNjcmlwdGlvbiI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA0Y1x1NGVkNlx1MzA2ZVx1MzBhOFx1MzBmY1x1MzBiOFx1MzBhN1x1MzBmM1x1MzBiN1x1MzBmY1x1MzA2OFx1NzU3MFx1MzA2YVx1MzA4Ylx1NzBiOVx1MzA2Zlx1MzAwMVx1MzBhYlx1MzBiOVx1MzBiZlx1MzBkZVx1MzBhNFx1MzBiYVx1MzA1NVx1MzA4Y1x1MzA1Zlx1MzBiZFx1MzBlYVx1MzBlNVx1MzBmY1x1MzBiN1x1MzBlN1x1MzBmM1x1MzA5Mlx1NGY1Y1x1NjIxMFx1MzA1OVx1MzA4Ylx1NWMwMlx1OTU4MFx1NzdlNVx1OGI1OFx1MzA2Ylx1MzA0Mlx1MzA4YVx1MzA3ZVx1MzA1OVx1MzAwMiIsImJ0bl9saW5rIjp7InVybCI6IiIsImlzX2V4dGVybmFsIjoiIiwibm9mb2xsb3ciOiIifX0seyJjdF9pY29uIjp7InZhbHVlIjoiZmxhdGljb24gZmxhdGljb24td2FsbGV0IiwibGlicmFyeSI6ImZsYXRpY29uIn0sIl9pZCI6ImY1ZTEwZTgiLCJ0aXRsZSI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Ylx1NjUyZlx1NjI1NVx1MzA0NiIsImRlc2NyaXB0aW9uIjoiXHU3OWMxXHUzMDVmXHUzMDYxXHUzMDZmXHUzMDAxXHU1NDA0XHUzMGMxXHUzMGZjXHUzMGUwXHUzMGUxXHUzMGYzXHUzMGQwXHUzMGZjXHUzMDRjXHU4MWVhXHU1MjA2XHU4MWVhXHU4ZWFiXHUzMDZlXHU2NzAwXHU5YWQ4XHUzMDZlXHU1OWZmXHUzMDkyXHU3NmVlXHU2MzA3XHUzMDU5XHUzMDUzXHUzMDY4XHUzMDkyXHU1OTY4XHU1MmIxXHUzMDU3XHUzMDAxXHU2N2Q0XHU4ZWRmXHUzMDY3XHU1MzU0XHU1MjliXHU3Njg0XHUzMDZhXHU3NGIwXHU1ODgzXHUzMDkyXHU4MGIyXHUzMDkzXHUzMDY3XHUzMDQ0XHUzMDdlXHUzMDU5XHUzMDAyIiwiYnRuX2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9fSx7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi10YXJnZXQiLCJsaWJyYXJ5IjoiZmxhdGljb24ifSwiX2lkIjoiODgzOTk2OSIsInRpdGxlIjoiXHUzMDQyXHUzMDZhXHUzMDVmXHUzMDZlXHU1OTIyXHUzMDkyXHU1YjlmXHU3M2ZlXHUzMDU5XHUzMDhiIiwiZGVzY3JpcHRpb24iOiJcdTMwNjlcdTMwNmVcdTMwZDNcdTMwYjhcdTMwY2RcdTMwYjlcdTMwNmJcdTMwODJcdTMwMDFcdTk3NjlcdTY1YjBcdTMwNjhcdTkwMzJcdTZiNjlcdTMwOTJcdTRmYzNcdTMwNTlcdTcyZWNcdTgxZWFcdTMwNmVcdTMwYmRcdTMwZWFcdTMwZTVcdTMwZmNcdTMwYjdcdTMwZTdcdTMwZjNcdTMwNGNcdTMwNDJcdTMwOGFcdTMwN2VcdTMwNTlcdTMwMDIiLCJidG5fbGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn19XSwidGl0bGVfY29sb3IiOiIjZmZmZmZmIiwiZGVzY3JpcHRpb25fY29sb3IiOiIjRkZGRkZGIiwiY3RfYW5pbWF0ZSI6IndvdyBmYWRlSW4ifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfcHJvY2VzcyJ9\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-79ee8ab elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"79ee8ab\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4af1814\" data-id=\"4af1814\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n                <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-505fb45 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"505fb45\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-7223f1c\" data-id=\"7223f1c\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-e7c238e elementor-widget elementor-widget-google_maps\" data-id=\"e7c238e\" data-element_type=\"widget\" data-widget_type=\"google_maps.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-custom-embed\">nttt<iframe loading=\"lazy\"ntttttsrc=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"nttttttitle=\"10u00b057&#039;11.2&quot;N 106u00b045&#039;13.0&quot;E\"ntttttaria-label=\"10u00b057&#039;11.2&quot;N 106u00b045&#039;13.0&quot;E\"nttt></iframe>ntt</div>ntttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-0225539\" data-id=\"0225539\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjUxZDU0M2EiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1MzA0NFx1MzA2NFx1MzA2N1x1MzA4Mlx1MzA2OVx1MzA5M1x1MzA2YVx1NTJhOVx1MzA1MVx1MzA0Y1x1NWZjNVx1ODk4MVx1MzA2YVx1NTgzNFx1NTQwOFx1MzA2N1x1MzA4Mlx1MzAwMVx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Ylx1MzA1NFx1OTAyM1x1N2Q2MVx1MzA0Zlx1MzA2MFx1MzA1NVx1MzA0NC4uLiIsInRpdGxlX2NvbG9yIjoiIzg1QjIzQiIsIl9wYWRkaW5nIjp7InVuaXQiOiIlIiwidG9wIjoiMCIsInJpZ2h0IjoiNSIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sInRpdGxlX3NwYWNlX2JvdHRvbSI6eyJ1bml0IjoicHgiLCJzaXplIjozMywic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemVfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjMwLCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0X3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjozOCwic2l6ZXMiOltdfSwiY3RfYW5pbWF0ZSI6IndvdyBmbGlwSW5YIiwiX3BhZGRpbmdfdGFibGV0Ijp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"][elementor-element data=\"eyJpZCI6ImVkMGRjMWIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjdGY3X2lkIjoiOTc0Iiwic3R5bGVfbDEiOiJzdHlsZTIifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY3RmNyJ9\"]            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                    </div>n        </section>n        \",\"scripts\":[],\"styles\":[]}}'),(10342,3167,'_elementor_edit_mode','builder'),(10343,3167,'_elementor_template_type','wp-page'),(10344,3167,'_elementor_version','3.24.7'),(10345,3167,'_wp_page_template','default'),(10346,3167,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u3001\\u30d9\\u30c8\\u30ca\\u30e0\\u5168\\u571f\\u304a\\u3088\\u3073\\u4e16\\u754c\\u4e2d\\u306e\\u6a5f\\u68b0\\u7523\\u696d\\u5411\\u3051\\u306b\\u5e45\\u5e83\\u3044\\u88fd\\u54c1\\u3092\\u63d0\\u4f9b\\u3057\\u3066\\u304a\\u308a\\u3001\\u7279\\u306b\\u65e5\\u672c\\u3001\\u97d3\\u56fd\\u3001\\u30a2\\u30e1\\u30ea\\u30ab\\u3001\\u30aa\\u30fc\\u30b9\\u30c8\\u30e9\\u30ea\\u30a2\\u3068\\u3044\\u3063\\u305f\\u4e3b\\u8981\\u5e02\\u5834\\u3067\\u306e\\u53d6\\u5f15\\u306b\\u529b\\u3092\\u5165\\u308c\\u3066\\u3044\\u307e\\u3059\\u3002\\u307e\\u305f\\u3001\\u3053\\u308c\\u3089\\u306e\\u5e02\\u5834\\u3078\\u306e\\u8f38\\u51fa\\u7d4c\\u9a13\\u3082\\u8c4a\\u5bcc\\u3067\\u3059\\u3002\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306e\\u6700\\u5927\\u306e\\u5f37\\u307f\\u306f\\u3001\\u5b66\\u3076\\u3053\\u3068\\u3001\\u9769\\u65b0\\u3059\\u308b\\u3053\\u3068\\u306b\\u60c5\\u71b1\\u3092\\u6301\\u3061\\u3001\\u81ea\\u4fe1\\u3092\\u6301\\u3063\\u305f\\u82e5\\u3044\\u52b4\\u50cd\\u529b\\u306b\\u3042\\u308a\\u307e\\u3059\\u3002\\u3053\\u306e\\u30c1\\u30fc\\u30e0\\u306f\\u3001\\u5e38\\u306b\\u5b89\\u5b9a\\u3057\\u305f\\u9ad8\\u54c1\\u8cea\\u306e\\u6a5f\\u68b0\\u88fd\\u54c1\\u3092\\u591a\\u69d8\\u306b\\u88fd\\u9020\\u3059\\u308b\\u80fd\\u529b\\u3092\\u5099\\u3048\\u3066\\u3044\\u307e\\u3059\\u3002<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=vUCVqLmXSPM\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"\\u9867\\u5ba2\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"\\u4eba\\u4e8b\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"\\u5e74\\u9593\\u6ce8\\u6587\\u6570\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306f\\u3001\\u4e16\\u754c\\u4e2d\\u304b\\u3089\\u306e\\u6ce8\\u6587\\u3068\\u63a5\\u7d9a\\u3059\\u308b\\u305f\\u3081\\u306bAlibaba\\u306b\\u5e97\\u8217\\u3092\\u958b\\u8a2d\\u3057\\u59cb\\u3081\\u307e\\u3057\\u305f\\u3002<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0e89391\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u30012030\\u5e74\\u307e\\u3067\\u306b\\u30d9\\u30c8\\u30ca\\u30e0\\u306e\\u4e3b\\u8981\\u306a\\u6a5f\\u68b0\\u52a0\\u5de5\\u4f01\\u696d\\u306e\\u4e00\\u3064\\u3068\\u3057\\u3066\\u3001\\u56fd\\u969b\\u5e02\\u5834\\u306b\\u4f9b\\u7d66\\u3059\\u308b\\u3053\\u3068\\u3092\\u76ee\\u6307\\u3057\\u3066\\u3044\\u307e\\u3059\\u3002\\u5c06\\u6765\\u7684\\u306b\\u306f\\u3001\\u5b8c\\u6210\\u3057\\u305f\\u6a5f\\u68b0\\u88fd\\u54c1\\u3092\\u76f4\\u63a5\\u30a8\\u30f3\\u30c9\\u30e6\\u30fc\\u30b6\\u30fc\\u306b\\u63d0\\u4f9b\\u3059\\u308b\\u3053\\u3068\\u3092\\u76ee\\u6a19\\u3068\\u3057\\u3066\\u3044\\u307e\\u3059\\u3002\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2026\\u5e74\\u307e\\u3067\\u306b\\u9054\\u6210\\u3059\\u308b\\u76ee\\u6a19:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"\\u6771\\u30a2\\u30b8\\u30a2\\uff08\\u65e5\\u672c\\u3001\\u97d3\\u56fd\\u306a\\u3069\\uff09\\uff1a\\u4ea4\\u63db\\u7528\\u6a5f\\u68b0\\u90e8\\u54c1\\u3001\\u30aa\\u30fc\\u30c8\\u30d0\\u30a4\\u304a\\u3088\\u3073\\u81ea\\u52d5\\u8eca\\u306e\\u30a2\\u30af\\u30bb\\u30b5\\u30ea\\u30fc\\u3001\\u6c34\\u7523\\u696d\\u7528\\u306e\\u30d5\\u30a3\\u30c3\\u30c6\\u30a3\\u30f3\\u30b0\\u3001\\u91d1\\u578b\\u3001\\u305d\\u306e\\u4ed6\\u306e\\u6a5f\\u68b0\\u90e8\\u54c1\\u306e\\u8f38\\u51fa\\u3002\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"\\u30e8\\u30fc\\u30ed\\u30c3\\u30d1\\uff08\\u30c9\\u30a4\\u30c4\\u3001\\u30d6\\u30eb\\u30ac\\u30ea\\u30a2\\u3001\\u30aa\\u30e9\\u30f3\\u30c0\\u306a\\u3069\\uff09\\uff1a\\u81ea\\u52d5\\u8eca\\u7528\\u30d9\\u30a2\\u30ea\\u30f3\\u30b0\\u306e\\u6cbb\\u5177\\u304a\\u3088\\u3073\\u81ea\\u52d5\\u5316\\u6a5f\\u68b0\\u306e\\u96fb\\u6c17\\u30dc\\u30c3\\u30af\\u30b9\\u90e8\\u54c1\\u306e\\u751f\\u7523\\u3002\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"\\u30a2\\u30e1\\u30ea\\u30ab\\u5408\\u8846\\u56fd\\uff1a\\u533b\\u7642\\u6a5f\\u5668\\u3001\\u5149\\u5b66\\u6a5f\\u5668\\u3001\\u97f3\\u97ff\\u6a5f\\u5668\\u306b\\u95a2\\u9023\\u3059\\u308b\\u88fd\\u54c1\\u3002\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"\\u30aa\\u30fc\\u30b9\\u30c8\\u30e9\\u30ea\\u30a2\\uff1a\\u677f\\u91d1\\u88fd\\u54c1\\u3002\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"\\u30d9\\u30c8\\u30ca\\u30e0\\uff1a\\u5c0f\\u578b\\u81ea\\u52d5\\u5316\\u6a5f\\u68b0\\u3001\\u30aa\\u30fc\\u30c8\\u30d0\\u30a4\\u304a\\u3088\\u3073\\u81ea\\u52d5\\u8eca\\u306e\\u30dc\\u30eb\\u30c8\\u3001\\u77f3\\u6cb9\\u304a\\u3088\\u3073\\u30ac\\u30b9\\u7523\\u696d\\u306e\\u88fd\\u54c1\\u3002\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"\\u305d\\u306e\\u4ed6\\u306e\\u5e02\\u5834\\u3068\\u88fd\\u54c1\\u3002\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u8907\\u6570\\u306e\\u696d\\u754c\\u3067\\u30b5\\u30fc\\u30d3\\u30b9\\u3092\\u63d0\\u4f9b\\u3057\\u3066\\u3044\\u307e\\u3059\\u3002\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306f\\u5e38\\u306b\\u9867\\u5ba2\\u306e\\u30c7\\u30b6\\u30a4\\u30f3\\u8981\\u6c42\\u3092\\u6e80\\u305f\\u3057\\u307e\\u3059\\u3002\\u5916\\u89b3\\u3068\\u5bf8\\u6cd5\\u306f\\u3001\\u6700\\u3082\\u91cd\\u8981\\u8996\\u3057\\u3066\\u3044\\u308b\\u8981\\u7d20\\u3067\\u3059\\u3002<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"ja|language\"],\"ct_animate\":\"wow fadeInUp\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u305d\\u306e\\u4ed6\\u306e\\u30b5\\u30fc\\u30d3\\u30b9\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"\\u8cea\\u554f\\u304c\\u3042\\u308a\\u307e\\u3059\\u304b\\uff1f\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"\\u898b\\u7a4d\\u3082\\u308a\\u3092\\u53d6\\u5f97\\u3059\\u308b\\u305f\\u3081\\u306e\\u9023\\u7d61\\u5148\\uff1a\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u7c21\\u5358\\u306a\\u4f5c\\u696d\\u624b\\u9806\\u3092\\u6301\\u3063\\u3066\\u3044\\u307e\\u3059\\u3002\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306f\\u5e38\\u306b\\u54c1\\u8cea\\u3068\\u9032\\u6357\\u306b\\u304a\\u3044\\u3066\\u5b89\\u5fc3\\u611f\\u3092\\u63d0\\u4f9b\\u3057\\u307e\\u3059\\u3002<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"\\u79c1\\u305f\\u3061\\u3092\\u63a2\\u3059\",\"description\":\"\\u79c1\\u305f\\u3061\\u306f\\u3001\\u5404\\u30d7\\u30ed\\u30b8\\u30a7\\u30af\\u30c8\\u3092\\u7dcf\\u5408\\u7684\\u306b\\u53d6\\u308a\\u6271\\u3046\\u91cd\\u8981\\u6027\\u3092\\u7406\\u89e3\\u3057\\u3066\\u3044\\u307e\\u3059\\u3002\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"\\u79c1\\u305f\\u3061\\u3068\\u63a5\\u7d9a\\u3059\\u308b\",\"description\":\"\\u79c1\\u305f\\u3061\\u304c\\u4ed6\\u306e\\u30a8\\u30fc\\u30b8\\u30a7\\u30f3\\u30b7\\u30fc\\u3068\\u7570\\u306a\\u308b\\u70b9\\u306f\\u3001\\u30ab\\u30b9\\u30bf\\u30de\\u30a4\\u30ba\\u3055\\u308c\\u305f\\u30bd\\u30ea\\u30e5\\u30fc\\u30b7\\u30e7\\u30f3\\u3092\\u4f5c\\u6210\\u3059\\u308b\\u5c02\\u9580\\u77e5\\u8b58\\u306b\\u3042\\u308a\\u307e\\u3059\\u3002\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"\\u79c1\\u305f\\u3061\\u306b\\u652f\\u6255\\u3046\",\"description\":\"\\u79c1\\u305f\\u3061\\u306f\\u3001\\u5404\\u30c1\\u30fc\\u30e0\\u30e1\\u30f3\\u30d0\\u30fc\\u304c\\u81ea\\u5206\\u81ea\\u8eab\\u306e\\u6700\\u9ad8\\u306e\\u59ff\\u3092\\u76ee\\u6307\\u3059\\u3053\\u3068\\u3092\\u5968\\u52b1\\u3057\\u3001\\u67d4\\u8edf\\u3067\\u5354\\u529b\\u7684\\u306a\\u74b0\\u5883\\u3092\\u80b2\\u3093\\u3067\\u3044\\u307e\\u3059\\u3002\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"\\u3042\\u306a\\u305f\\u306e\\u5922\\u3092\\u5b9f\\u73fe\\u3059\\u308b\",\"description\":\"\\u3069\\u306e\\u30d3\\u30b8\\u30cd\\u30b9\\u306b\\u3082\\u3001\\u9769\\u65b0\\u3068\\u9032\\u6b69\\u3092\\u4fc3\\u3059\\u72ec\\u81ea\\u306e\\u30bd\\u30ea\\u30e5\\u30fc\\u30b7\\u30e7\\u30f3\\u304c\\u3042\\u308a\\u307e\\u3059\\u3002\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u3044\\u3064\\u3067\\u3082\\u3069\\u3093\\u306a\\u52a9\\u3051\\u304c\\u5fc5\\u8981\\u306a\\u5834\\u5408\\u3067\\u3082\\u3001\\u79c1\\u305f\\u3061\\u306b\\u3054\\u9023\\u7d61\\u304f\\u3060\\u3055\\u3044...\",\"title_color\":\"#85B23B\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(10347,3167,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(10348,3167,'_elementor_page_assets','a:2:{s:6:\"styles\";a:4:{i:0;s:18:\"widget-text-editor\";i:1;s:21:\"e-animation-slideInUp\";i:2;s:12:\"widget-image\";i:3;s:18:\"widget-google_maps\";}s:7:\"scripts\";a:9:{i:0;s:16:\"jquery-numerator\";i:1;s:20:\"ct-counter-widget-js\";i:2;s:11:\"progressbar\";i:3;s:16:\"waypoints-lib-js\";i:4;s:24:\"ct-progressbar-widget-js\";i:5;s:12:\"imagesloaded\";i:6;s:7:\"isotope\";i:7;s:25:\"ct-post-masonry-widget-js\";i:8;s:22:\"ct-post-grid-widget-js\";}}'),(10349,3167,'_elementor_css','a:6:{s:4:\"time\";i:1742179356;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:8:\"material\";i:1;s:8:\"flaticon\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(10350,3167,'_elementor_element_cache','{\"timeout\":1742265757,\"value\":{\"content\":\"        <section class=\"elementor-section elementor-top-section elementor-element elementor-element-2d2b67a elementor-section-stretched elementor-section-full_width slider-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"2d2b67a\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-no \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-d1bb387\" data-id=\"d1bb387\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImNjODZmNGQiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJyZXZzbGlkZXJ0aXRsZSI6IkhvbWUgMSIsInNob3J0Y29kZSI6IltyZXZfc2xpZGVyIGFsaWFzPVwiaG9tZS0xXCJdW1wvcmV2X3NsaWRlcl0ifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoic2xpZGVyX3Jldm9sdXRpb24ifQ==\"]        <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-2cea906 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"2cea906\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-8e117d0\" data-id=\"8e117d0\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjI0YjYyY2MiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Zlx1MzAwMVx1MzBkOVx1MzBjOFx1MzBjYVx1MzBlMFx1NTE2OFx1NTcxZlx1MzA0YVx1MzA4OFx1MzA3M1x1NGUxNlx1NzU0Y1x1NGUyZFx1MzA2ZVx1NmE1Zlx1NjhiMFx1NzUyM1x1Njk2ZFx1NTQxMVx1MzA1MVx1MzA2Ylx1NWU0NVx1NWU4M1x1MzA0NFx1ODhmZFx1NTRjMVx1MzA5Mlx1NjNkMFx1NGY5Ylx1MzA1N1x1MzA2Nlx1MzA0YVx1MzA4YVx1MzAwMVx1NzI3OVx1MzA2Ylx1NjVlNVx1NjcyY1x1MzAwMVx1OTdkM1x1NTZmZFx1MzAwMVx1MzBhMlx1MzBlMVx1MzBlYVx1MzBhYlx1MzAwMVx1MzBhYVx1MzBmY1x1MzBiOVx1MzBjOFx1MzBlOVx1MzBlYVx1MzBhMlx1MzA2OFx1MzA0NFx1MzA2M1x1MzA1Zlx1NGUzYlx1ODk4MVx1NWUwMlx1NTgzNFx1MzA2N1x1MzA2ZVx1NTNkNlx1NWYxNVx1MzA2Ylx1NTI5Ylx1MzA5Mlx1NTE2NVx1MzA4Y1x1MzA2Nlx1MzA0NFx1MzA3ZVx1MzA1OVx1MzAwMlx1MzA3ZVx1MzA1Zlx1MzAwMVx1MzA1M1x1MzA4Y1x1MzA4OVx1MzA2ZVx1NWUwMlx1NTgzNFx1MzA3OFx1MzA2ZVx1OGYzOFx1NTFmYVx1N2Q0Y1x1OWExM1x1MzA4Mlx1OGM0YVx1NWJjY1x1MzA2N1x1MzA1OVx1MzAwMiIsInRpdGxlX2NvbG9yIjoiIzg1QjIzQiIsInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplIjp7InVuaXQiOiJweCIsInNpemUiOjM2LCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0Ijp7InVuaXQiOiJweCIsInNpemUiOjQ4LCJzaXplcyI6W119LCJzdHlsZSI6InN0LWxpbmUtbGVmdCIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjE2IiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MjYsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjM0LCJzaXplcyI6W119LCJjdF9hbmltYXRlIjoid293IGZhZGVJblVwIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"]tt<div class=\"elementor-element elementor-element-909b449 wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"909b449\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>u79c1u305fu3061u306eu6700u5927u306eu5f37u307fu306fu3001u5b66u3076u3053u3068u3001u9769u65b0u3059u308bu3053u3068u306bu60c5u71b1u3092u6301u3061u3001u81eau4fe1u3092u6301u3063u305fu82e5u3044u52b4u50cdu529bu306bu3042u308au307eu3059u3002u3053u306eu30c1u30fcu30e0u306fu3001u5e38u306bu5b89u5b9au3057u305fu9ad8u54c1u8ceau306eu6a5fu68b0u88fdu54c1u3092u591au69d8u306bu88fdu9020u3059u308bu80fdu529bu3092u5099u3048u3066u3044u307eu3059u3002</p>tttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImM0YTIwMjgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJpbWFnZSI6eyJ1cmwiOiIiLCJpZCI6IiJ9LCJ2aWRlb19saW5rIjoiaHR0cHM6XC9cL3lvdXR1LmJlXC92VUNWcUxtWFNQTT9zaT1ORFlyU0M4elBJVUdQajNsIiwiYnRuX3ZpZGVvX3N0eWxlIjoic3R5bGUzIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIzMSIsInJpZ2h0IjoiMzgiLCJib3R0b20iOiIwIiwibGVmdCI6Ijc4IiwiaXNMaW5rZWQiOmZhbHNlfSwiX2Nzc19jbGFzc2VzIjoiZWwtaW5saW5lIHdvdyBmYWRlSW5SaWdodCIsIl9tYXJnaW5fdGFibGV0Ijp7InVuaXQiOiJweCIsInRvcCI6IjMxIiwicmlnaHQiOiIyMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiNjgiLCJpc0xpbmtlZCI6ZmFsc2V9LCJfYW5pbWF0aW9uIjoic2xpZGVJblVwIiwiX21hcmdpbl9tb2JpbGUiOnsidW5pdCI6InB4IiwidG9wIjoiMzEiLCJyaWdodCI6IjIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X3ZpZGVvX3BsYXllciJ9\"]tt<div class=\"elementor-element elementor-element-1fd7931 el-inline wow fadeInRight elementor-invisible elementor-widget elementor-widget-image\" data-id=\"1fd7931\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;slideInUp&quot;}\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" class=\"attachment-full size-full wp-image-2542\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-4fff345\" data-id=\"4fff345\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjU5MGYxYmUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjo1MCwic3VmZml4IjoiKyIsInRob3VzYW5kX3NlcGFyYXRvciI6IiIsInRob3VzYW5kX3NlcGFyYXRvcl9jaGFyIjoiICIsInRpdGxlIjoiXHU5ODY3XHU1YmEyIiwic2hvd19pY29uIjoidHJ1ZSIsImNvdW50ZXJfaWNvbiI6eyJ2YWx1ZSI6Im1hdGVyaWFsIHptZGkgem1kaS1hc3NpZ25tZW50LWNoZWNrIiwibGlicmFyeSI6Im1hdGVyaWFsIn0sIm51bWJlcl90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiI0MSIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwiX2Nzc19jbGFzc2VzIjoidGV4dC1jZW50ZXItc20iLCJpY29uX3R5cGUiOiJpbWFnZSIsImljb25faW1hZ2UiOnsidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMTlcLzEyXC9jb3VudGVyLWljb24tMDEucG5nIiwiaWQiOjE1MTV9LCJfYW5pbWF0aW9uIjoibm9uZSIsImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluVXAifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY291bnRlciJ9\"][elementor-element data=\"eyJpZCI6IjdhNWYyMzkiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjoyMDAsInN1ZmZpeCI6IisiLCJ0aG91c2FuZF9zZXBhcmF0b3IiOiIiLCJ0aG91c2FuZF9zZXBhcmF0b3JfY2hhciI6IiAiLCJ0aXRsZSI6Ilx1NGViYVx1NGU4YiIsInNob3dfaWNvbiI6InRydWUiLCJjb3VudGVyX2ljb24iOnsidmFsdWUiOiJtYXRlcmlhbCB6bWRpIHptZGktYXNzaWdubWVudC1jaGVjayIsImxpYnJhcnkiOiJtYXRlcmlhbCJ9LCJudW1iZXJfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiNDEiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sIl9jc3NfY2xhc3NlcyI6InRleHQtY2VudGVyLXNtIiwiaWNvbl90eXBlIjoiaW1hZ2UiLCJpY29uX2ltYWdlIjp7InVybCI6Imh0dHA6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDE5XC8xMlwvY291bnRlci1pY29uLTAyLnBuZyIsImlkIjoxNTE2fSwiX2FuaW1hdGlvbiI6Im5vbmUiLCJjdF9hbmltYXRlIjoid293IGZhZGVJblVwIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2NvdW50ZXIifQ==\"][elementor-element data=\"eyJpZCI6IjA0NTMxYzgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjoyMDAwLCJzdWZmaXgiOiIrIiwidGhvdXNhbmRfc2VwYXJhdG9yIjoiIiwidGhvdXNhbmRfc2VwYXJhdG9yX2NoYXIiOiIgIiwidGl0bGUiOiJcdTVlNzRcdTk1OTNcdTZjZThcdTY1ODdcdTY1NzAiLCJzaG93X2ljb24iOiJ0cnVlIiwiY291bnRlcl9pY29uIjp7InZhbHVlIjoibWF0ZXJpYWwgem1kaSB6bWRpLWFzc2lnbm1lbnQtY2hlY2siLCJsaWJyYXJ5IjoibWF0ZXJpYWwifSwibnVtYmVyX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjQxIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJfY3NzX2NsYXNzZXMiOiJ0ZXh0LWNlbnRlci1zbSIsImljb25fdHlwZSI6ImltYWdlIiwiaWNvbl9pbWFnZSI6eyJ1cmwiOiJodHRwOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAxOVwvMTJcL2NvdW50ZXItaWNvbi0wMy5wbmciLCJpZCI6MTUxN30sIl9hbmltYXRpb24iOiJub25lIiwiY3RfYW5pbWF0ZSI6IndvdyBmYWRlSW5VcCJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9jb3VudGVyIn0=\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-348ba48\" data-id=\"348ba48\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-ed7e1d0 wow fadeInUp elementor-widget elementor-widget-image\" data-id=\"ed7e1d0\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" class=\"attachment-full size-full wp-image-2571\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntttt<div class=\"elementor-element elementor-element-3b54db6 wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"3b54db6\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>u79c1u305fu3061u306fu3001u4e16u754cu4e2du304bu3089u306eu6ce8u6587u3068u63a5u7d9au3059u308bu305fu3081u306bAlibabau306bu5e97u8217u3092u958bu8a2du3057u59cbu3081u307eu3057u305fu3002</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-8b70e78 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"8b70e78\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-c2b95bd\" data-id=\"c2b95bd\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-b5a8ba3 elementor-widget elementor-widget-image\" data-id=\"b5a8ba3\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" class=\"attachment-full size-full wp-image-2268\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntttt<div class=\"elementor-element elementor-element-0e89391 elementor-widget elementor-widget-image\" data-id=\"0e89391\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" class=\"attachment-full size-full wp-image-2559\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-de7136f\" data-id=\"de7136f\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6Ijg0MDdhYmUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Zlx1MzAwMTIwMzBcdTVlNzRcdTMwN2VcdTMwNjdcdTMwNmJcdTMwZDlcdTMwYzhcdTMwY2FcdTMwZTBcdTMwNmVcdTRlM2JcdTg5ODFcdTMwNmFcdTZhNWZcdTY4YjBcdTUyYTBcdTVkZTVcdTRmMDFcdTY5NmRcdTMwNmVcdTRlMDBcdTMwNjRcdTMwNjhcdTMwNTdcdTMwNjZcdTMwMDFcdTU2ZmRcdTk2OWJcdTVlMDJcdTU4MzRcdTMwNmJcdTRmOWJcdTdkNjZcdTMwNTlcdTMwOGJcdTMwNTNcdTMwNjhcdTMwOTJcdTc2ZWVcdTYzMDdcdTMwNTdcdTMwNjZcdTMwNDRcdTMwN2VcdTMwNTlcdTMwMDJcdTVjMDZcdTY3NjVcdTc2ODRcdTMwNmJcdTMwNmZcdTMwMDFcdTViOGNcdTYyMTBcdTMwNTdcdTMwNWZcdTZhNWZcdTY4YjBcdTg4ZmRcdTU0YzFcdTMwOTJcdTc2ZjRcdTYzYTVcdTMwYThcdTMwZjNcdTMwYzlcdTMwZTZcdTMwZmNcdTMwYjZcdTMwZmNcdTMwNmJcdTYzZDBcdTRmOWJcdTMwNTlcdTMwOGJcdTMwNTNcdTMwNjhcdTMwOTJcdTc2ZWVcdTZhMTlcdTMwNjhcdTMwNTdcdTMwNjZcdTMwNDRcdTMwN2VcdTMwNTlcdTMwMDIiLCJ0aXRsZV9jb2xvciI6IiM4NUIyM0IiLCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZSI6eyJ1bml0IjoicHgiLCJzaXplIjozNiwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodCI6eyJ1bml0IjoicHgiLCJzaXplIjo0OCwic2l6ZXMiOltdfSwic3R5bGUiOiJzdC1saW5lLWxlZnQiLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6Ii05IiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwidGl0bGVfc3BhY2VfYm90dG9tIjp7InVuaXQiOiJweCIsInNpemUiOjE3LCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzAsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjM4LCJzaXplcyI6W119LCJjdF9hbmltYXRlIjoid293IGZsaXBJblgiLCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV9tb2JpbGUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MjgsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfbW9iaWxlIjp7InVuaXQiOiJweCIsInNpemUiOjM0LCJzaXplcyI6W119fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-0c8497c wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"0c8497c\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>2026u5e74u307eu3067u306bu9054u6210u3059u308bu76eeu6a19:</p>tttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6IjQ3NTRlZDYiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJwcm9ncmVzc2Jhcl9saXN0IjpbeyJ0aXRsZSI6Ilx1Njc3MVx1MzBhMlx1MzBiOFx1MzBhMlx1ZmYwOFx1NjVlNVx1NjcyY1x1MzAwMVx1OTdkM1x1NTZmZFx1MzA2YVx1MzA2OVx1ZmYwOVx1ZmYxYVx1NGVhNFx1NjNkYlx1NzUyOFx1NmE1Zlx1NjhiMFx1OTBlOFx1NTRjMVx1MzAwMVx1MzBhYVx1MzBmY1x1MzBjOFx1MzBkMFx1MzBhNFx1MzA0YVx1MzA4OFx1MzA3M1x1ODFlYVx1NTJkNVx1OGVjYVx1MzA2ZVx1MzBhMlx1MzBhZlx1MzBiYlx1MzBiNVx1MzBlYVx1MzBmY1x1MzAwMVx1NmMzNFx1NzUyM1x1Njk2ZFx1NzUyOFx1MzA2ZVx1MzBkNVx1MzBhM1x1MzBjM1x1MzBjNlx1MzBhM1x1MzBmM1x1MzBiMFx1MzAwMVx1OTFkMVx1NTc4Ylx1MzAwMVx1MzA1ZFx1MzA2ZVx1NGVkNlx1MzA2ZVx1NmE1Zlx1NjhiMFx1OTBlOFx1NTRjMVx1MzA2ZVx1OGYzOFx1NTFmYVx1MzAwMiIsInByb2dyZXNzX3R5cGUiOiIiLCJwZXJjZW50Ijp7InVuaXQiOiIlIiwic2l6ZSI6MzAsInNpemVzIjpbXX0sImRpc3BsYXlfcGVyY2VudGFnZSI6ImhpZGUiLCJpbm5lcl90ZXh0IjoiV2ViIERlc2lnbmVyIiwiX2lkIjoiOGI0YmNkNiJ9LHsidGl0bGUiOiJcdTMwZThcdTMwZmNcdTMwZWRcdTMwYzNcdTMwZDFcdWZmMDhcdTMwYzlcdTMwYTRcdTMwYzRcdTMwMDFcdTMwZDZcdTMwZWJcdTMwYWNcdTMwZWFcdTMwYTJcdTMwMDFcdTMwYWFcdTMwZTlcdTMwZjNcdTMwYzBcdTMwNmFcdTMwNjlcdWZmMDlcdWZmMWFcdTgxZWFcdTUyZDVcdThlY2FcdTc1MjhcdTMwZDlcdTMwYTJcdTMwZWFcdTMwZjNcdTMwYjBcdTMwNmVcdTZjYmJcdTUxNzdcdTMwNGFcdTMwODhcdTMwNzNcdTgxZWFcdTUyZDVcdTUzMTZcdTZhNWZcdTY4YjBcdTMwNmVcdTk2ZmJcdTZjMTdcdTMwZGNcdTMwYzNcdTMwYWZcdTMwYjlcdTkwZThcdTU0YzFcdTMwNmVcdTc1MWZcdTc1MjNcdTMwMDIiLCJwcm9ncmVzc190eXBlIjoiIiwicGVyY2VudCI6eyJ1bml0IjoiJSIsInNpemUiOjEwLCJzaXplcyI6W119LCJkaXNwbGF5X3BlcmNlbnRhZ2UiOiJoaWRlIiwiaW5uZXJfdGV4dCI6IldlYiBEZXNpZ25lciIsIl9pZCI6IjZlMGY4NzcifSx7InRpdGxlIjoiXHUzMGEyXHUzMGUxXHUzMGVhXHUzMGFiXHU1NDA4XHU4ODQ2XHU1NmZkXHVmZjFhXHU1MzNiXHU3NjQyXHU2YTVmXHU1NjY4XHUzMDAxXHU1MTQ5XHU1YjY2XHU2YTVmXHU1NjY4XHUzMDAxXHU5N2YzXHU5N2ZmXHU2YTVmXHU1NjY4XHUzMDZiXHU5NWEyXHU5MDIzXHUzMDU5XHUzMDhiXHU4OGZkXHU1NGMxXHUzMDAyIiwicHJvZ3Jlc3NfdHlwZSI6IiIsInBlcmNlbnQiOnsidW5pdCI6IiUiLCJzaXplIjozMCwic2l6ZXMiOltdfSwiZGlzcGxheV9wZXJjZW50YWdlIjoic2hvdyIsIl9pZCI6IjIyMmViODEifSx7Il9pZCI6IjVlZWNjYjYiLCJ0aXRsZSI6Ilx1MzBhYVx1MzBmY1x1MzBiOVx1MzBjOFx1MzBlOVx1MzBlYVx1MzBhMlx1ZmYxYVx1Njc3Zlx1OTFkMVx1ODhmZFx1NTRjMVx1MzAwMiIsInBlcmNlbnQiOnsidW5pdCI6IiUiLCJzaXplIjo4LCJzaXplcyI6W119fSx7Il9pZCI6IjEwZTU3NTAiLCJ0aXRsZSI6Ilx1MzBkOVx1MzBjOFx1MzBjYVx1MzBlMFx1ZmYxYVx1NWMwZlx1NTc4Ylx1ODFlYVx1NTJkNVx1NTMxNlx1NmE1Zlx1NjhiMFx1MzAwMVx1MzBhYVx1MzBmY1x1MzBjOFx1MzBkMFx1MzBhNFx1MzA0YVx1MzA4OFx1MzA3M1x1ODFlYVx1NTJkNVx1OGVjYVx1MzA2ZVx1MzBkY1x1MzBlYlx1MzBjOFx1MzAwMVx1NzdmM1x1NmNiOVx1MzA0YVx1MzA4OFx1MzA3M1x1MzBhY1x1MzBiOVx1NzUyM1x1Njk2ZFx1MzA2ZVx1ODhmZFx1NTRjMVx1MzAwMiIsInBlcmNlbnQiOnsidW5pdCI6IiUiLCJzaXplIjoyMCwic2l6ZXMiOltdfX0seyJfaWQiOiJlMTdhMTk1IiwidGl0bGUiOiJcdTMwNWRcdTMwNmVcdTRlZDZcdTMwNmVcdTVlMDJcdTU4MzRcdTMwNjhcdTg4ZmRcdTU0YzFcdTMwMDIiLCJwZXJjZW50Ijp7InVuaXQiOiIlIiwic2l6ZSI6Miwic2l6ZXMiOltdfX1dLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6Ijc4IiwiaXNMaW5rZWQiOmZhbHNlfSwiX21hcmdpbl9tb2JpbGUiOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjp0cnVlfX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X3Byb2dyZXNzYmFyIn0=\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-b6145ce elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"b6145ce\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-e65d58b\" data-id=\"e65d58b\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjljZDU1ZGQiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Zlx1ODkwN1x1NjU3MFx1MzA2ZVx1Njk2ZFx1NzU0Y1x1MzA2N1x1MzBiNVx1MzBmY1x1MzBkM1x1MzBiOVx1MzA5Mlx1NjNkMFx1NGY5Ylx1MzA1N1x1MzA2Nlx1MzA0NFx1MzA3ZVx1MzA1OVx1MzAwMiIsInRpdGxlX2NvbG9yIjoiIzg1QjIzQiIsInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplIjp7InVuaXQiOiJweCIsInNpemUiOjM2LCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0Ijp7InVuaXQiOiJweCIsInNpemUiOjQ4LCJzaXplcyI6W119LCJzdHlsZSI6InN0LWxpbmUtbGVmdCIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjp0cnVlfSwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemVfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjMwLCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0X3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjozOCwic2l6ZXMiOltdfSwiY3RfYW5pbWF0ZSI6IndvdyBmYWRlSW5MZWZ0IiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemVfbW9iaWxlIjp7InVuaXQiOiJweCIsInNpemUiOjI4LCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0X21vYmlsZSI6eyJ1bml0IjoicHgiLCJzaXplIjozNCwic2l6ZXMiOltdfX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-2067062\" data-id=\"2067062\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-956a238 wow fadeInRight elementor-widget elementor-widget-text-editor\" data-id=\"956a238\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>u79c1u305fu3061u306fu5e38u306bu9867u5ba2u306eu30c7u30b6u30a4u30f3u8981u6c42u3092u6e80u305fu3057u307eu3059u3002u5916u89b3u3068u5bf8u6cd5u306fu3001u6700u3082u91cdu8981u8996u3057u3066u3044u308bu8981u7d20u3067u3059u3002</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-74328b6b elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"74328b6b\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4b9c9796\" data-id=\"4b9c9796\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjFjYTNiNmM1IiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsibGF5b3V0IjoiNCIsImxpbWl0Ijo0LCJmaWx0ZXJfZGVmYXVsdF90aXRsZSI6IkFsbCIsImNvbF9zbSI6IjEiLCJjb2xfbWQiOiIyIiwiY29sX2xnIjoiMiIsImNvbF94bCI6IjIiLCJidXR0b25fdGV4dCI6IlJlYWQgbW9yZSIsInNvdXJjZSI6WyJqYXxsYW5ndWFnZSJdLCJjdF9hbmltYXRlIjoid293IGZhZGVJblVwIiwib3JkZXIiOiJhc2MifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3Rfc2VydmljZV9ncmlkIn0=\"][elementor-element data=\"eyJpZCI6IjI5NzFiOGIzIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGV4dCI6Ilx1MzA1ZFx1MzA2ZVx1NGVkNlx1MzA2ZVx1MzBiNVx1MzBmY1x1MzBkM1x1MzBiOSIsImxpbmsiOnsidXJsIjoiXC9zZXJ2aWNlcyIsImlzX2V4dGVybmFsIjoiIiwibm9mb2xsb3ciOiIifSwiYWxpZ24iOiJjZW50ZXIiLCJidG5faWNvbiI6eyJ2YWx1ZSI6Im1hdGVyaWFsIHptZGkgem1kaS1zZXR0aW5ncyIsImxpYnJhcnkiOiJtYXRlcmlhbCJ9LCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6Ii0xMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sInN0eWxlIjoiYnRuLXByZXNldDMiLCJfYW5pbWF0aW9uIjoibm9uZSJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9idXR0b24ifQ==\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-f43d465 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"f43d465\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-5310bd3\" data-id=\"5310bd3\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImJjZmM3MzUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjdGY3X2lkIjoiOTMyIiwibGF5b3V0IjoiMiIsImN0ZjdfdGl0bGUiOiJcdThjZWFcdTU1NGZcdTMwNGNcdTMwNDJcdTMwOGFcdTMwN2VcdTMwNTlcdTMwNGJcdWZmMWYiLCJjdGY3X2Rlc2NyaXB0aW9uIjoiQ2FsbDogODAwIDI1MCAzNjkiLCJjdGY3X3Bob25lIjoiPHNwYW4+Q2FsbDo8XC9zcGFuPiAwOTY4ODYwMzg2IiwiZWxfdGl0bGUiOiJcdTg5OGJcdTdhNGRcdTMwODJcdTMwOGFcdTMwOTJcdTUzZDZcdTVmOTdcdTMwNTlcdTMwOGJcdTMwNWZcdTMwODFcdTMwNmVcdTkwMjNcdTdkNjFcdTUxNDhcdWZmMWEiLCJjdF9hbmltYXRlIjoid293IGZsaXBJblgifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY3RmNyJ9\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-a9b49c5 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"a9b49c5\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n                            <div class=\"elementor-background-overlay\"></div>n                n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-1dcb85a\" data-id=\"1dcb85a\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n                <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-6c560a6 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"6c560a6\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-e82cd67\" data-id=\"e82cd67\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImVmNDE1MTEiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Zlx1N2MyMVx1NTM1OFx1MzA2YVx1NGY1Y1x1Njk2ZFx1NjI0Ylx1OTgwNlx1MzA5Mlx1NjMwMVx1MzA2M1x1MzA2Nlx1MzA0NFx1MzA3ZVx1MzA1OVx1MzAwMiIsInRpdGxlX2NvbG9yIjoiI2ZmZmZmZiIsInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplIjp7InVuaXQiOiJweCIsInNpemUiOjM2LCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0Ijp7InVuaXQiOiJweCIsInNpemUiOjQ4LCJzaXplcyI6W119LCJzdHlsZSI6InN0LWxpbmUtbGVmdCIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjp0cnVlfSwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemVfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjMwLCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0X3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjozOCwic2l6ZXMiOltdfSwiY3RfYW5pbWF0ZSI6IndvdyBmYWRlSW5MZWZ0In0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-3a08737\" data-id=\"3a08737\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-7aa11c2 wow fadeInRight elementor-widget elementor-widget-text-editor\" data-id=\"7aa11c2\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>u79c1u305fu3061u306fu5e38u306bu54c1u8ceau3068u9032u6357u306bu304au3044u3066u5b89u5fc3u611fu3092u63d0u4f9bu3057u307eu3059u3002</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n        [elementor-element data=\"eyJpZCI6IjlkNWVhMzIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X2xpc3QiOlt7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi1yZXNlYXJjaCIsImxpYnJhcnkiOiJmbGF0aWNvbiJ9LCJfaWQiOiIwNTVmZWYyIiwidGl0bGUiOiJcdTc5YzFcdTMwNWZcdTMwNjFcdTMwOTJcdTYzYTJcdTMwNTkiLCJkZXNjcmlwdGlvbiI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Zlx1MzAwMVx1NTQwNFx1MzBkN1x1MzBlZFx1MzBiOFx1MzBhN1x1MzBhZlx1MzBjOFx1MzA5Mlx1N2RjZlx1NTQwOFx1NzY4NFx1MzA2Ylx1NTNkNlx1MzA4YVx1NjI3MVx1MzA0Nlx1OTFjZFx1ODk4MVx1NjAyN1x1MzA5Mlx1NzQwNlx1ODllM1x1MzA1N1x1MzA2Nlx1MzA0NFx1MzA3ZVx1MzA1OVx1MzAwMiIsImJ0bl9saW5rIjp7InVybCI6IiIsImlzX2V4dGVybmFsIjoiIiwibm9mb2xsb3ciOiIifX0seyJjdF9pY29uIjp7InZhbHVlIjoiZmxhdGljb24gZmxhdGljb24tbmV0d29yayIsImxpYnJhcnkiOiJmbGF0aWNvbiJ9LCJfaWQiOiIzOWUxNGI4IiwidGl0bGUiOiJcdTc5YzFcdTMwNWZcdTMwNjFcdTMwNjhcdTYzYTVcdTdkOWFcdTMwNTlcdTMwOGIiLCJkZXNjcmlwdGlvbiI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA0Y1x1NGVkNlx1MzA2ZVx1MzBhOFx1MzBmY1x1MzBiOFx1MzBhN1x1MzBmM1x1MzBiN1x1MzBmY1x1MzA2OFx1NzU3MFx1MzA2YVx1MzA4Ylx1NzBiOVx1MzA2Zlx1MzAwMVx1MzBhYlx1MzBiOVx1MzBiZlx1MzBkZVx1MzBhNFx1MzBiYVx1MzA1NVx1MzA4Y1x1MzA1Zlx1MzBiZFx1MzBlYVx1MzBlNVx1MzBmY1x1MzBiN1x1MzBlN1x1MzBmM1x1MzA5Mlx1NGY1Y1x1NjIxMFx1MzA1OVx1MzA4Ylx1NWMwMlx1OTU4MFx1NzdlNVx1OGI1OFx1MzA2Ylx1MzA0Mlx1MzA4YVx1MzA3ZVx1MzA1OVx1MzAwMiIsImJ0bl9saW5rIjp7InVybCI6IiIsImlzX2V4dGVybmFsIjoiIiwibm9mb2xsb3ciOiIifX0seyJjdF9pY29uIjp7InZhbHVlIjoiZmxhdGljb24gZmxhdGljb24td2FsbGV0IiwibGlicmFyeSI6ImZsYXRpY29uIn0sIl9pZCI6ImY1ZTEwZTgiLCJ0aXRsZSI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Ylx1NjUyZlx1NjI1NVx1MzA0NiIsImRlc2NyaXB0aW9uIjoiXHU3OWMxXHUzMDVmXHUzMDYxXHUzMDZmXHUzMDAxXHU1NDA0XHUzMGMxXHUzMGZjXHUzMGUwXHUzMGUxXHUzMGYzXHUzMGQwXHUzMGZjXHUzMDRjXHU4MWVhXHU1MjA2XHU4MWVhXHU4ZWFiXHUzMDZlXHU2NzAwXHU5YWQ4XHUzMDZlXHU1OWZmXHUzMDkyXHU3NmVlXHU2MzA3XHUzMDU5XHUzMDUzXHUzMDY4XHUzMDkyXHU1OTY4XHU1MmIxXHUzMDU3XHUzMDAxXHU2N2Q0XHU4ZWRmXHUzMDY3XHU1MzU0XHU1MjliXHU3Njg0XHUzMDZhXHU3NGIwXHU1ODgzXHUzMDkyXHU4MGIyXHUzMDkzXHUzMDY3XHUzMDQ0XHUzMDdlXHUzMDU5XHUzMDAyIiwiYnRuX2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9fSx7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi10YXJnZXQiLCJsaWJyYXJ5IjoiZmxhdGljb24ifSwiX2lkIjoiODgzOTk2OSIsInRpdGxlIjoiXHUzMDQyXHUzMDZhXHUzMDVmXHUzMDZlXHU1OTIyXHUzMDkyXHU1YjlmXHU3M2ZlXHUzMDU5XHUzMDhiIiwiZGVzY3JpcHRpb24iOiJcdTMwNjlcdTMwNmVcdTMwZDNcdTMwYjhcdTMwY2RcdTMwYjlcdTMwNmJcdTMwODJcdTMwMDFcdTk3NjlcdTY1YjBcdTMwNjhcdTkwMzJcdTZiNjlcdTMwOTJcdTRmYzNcdTMwNTlcdTcyZWNcdTgxZWFcdTMwNmVcdTMwYmRcdTMwZWFcdTMwZTVcdTMwZmNcdTMwYjdcdTMwZTdcdTMwZjNcdTMwNGNcdTMwNDJcdTMwOGFcdTMwN2VcdTMwNTlcdTMwMDIiLCJidG5fbGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn19XSwidGl0bGVfY29sb3IiOiIjZmZmZmZmIiwiZGVzY3JpcHRpb25fY29sb3IiOiIjRkZGRkZGIiwiY3RfYW5pbWF0ZSI6IndvdyBmYWRlSW4ifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfcHJvY2VzcyJ9\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-79ee8ab elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"79ee8ab\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4af1814\" data-id=\"4af1814\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n                <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-505fb45 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"505fb45\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-7223f1c\" data-id=\"7223f1c\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-e7c238e elementor-widget elementor-widget-google_maps\" data-id=\"e7c238e\" data-element_type=\"widget\" data-widget_type=\"google_maps.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-custom-embed\">nttt<iframe loading=\"lazy\"ntttttsrc=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"nttttttitle=\"10u00b057&#039;11.2&quot;N 106u00b045&#039;13.0&quot;E\"ntttttaria-label=\"10u00b057&#039;11.2&quot;N 106u00b045&#039;13.0&quot;E\"nttt></iframe>ntt</div>ntttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-0225539\" data-id=\"0225539\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjUxZDU0M2EiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1MzA0NFx1MzA2NFx1MzA2N1x1MzA4Mlx1MzA2OVx1MzA5M1x1MzA2YVx1NTJhOVx1MzA1MVx1MzA0Y1x1NWZjNVx1ODk4MVx1MzA2YVx1NTgzNFx1NTQwOFx1MzA2N1x1MzA4Mlx1MzAwMVx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Ylx1MzA1NFx1OTAyM1x1N2Q2MVx1MzA0Zlx1MzA2MFx1MzA1NVx1MzA0NC4uLiIsInRpdGxlX2NvbG9yIjoiIzg1QjIzQiIsIl9wYWRkaW5nIjp7InVuaXQiOiIlIiwidG9wIjoiMCIsInJpZ2h0IjoiNSIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sInRpdGxlX3NwYWNlX2JvdHRvbSI6eyJ1bml0IjoicHgiLCJzaXplIjozMywic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemVfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjMwLCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0X3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjozOCwic2l6ZXMiOltdfSwiY3RfYW5pbWF0ZSI6IndvdyBmbGlwSW5YIiwiX3BhZGRpbmdfdGFibGV0Ijp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"][elementor-element data=\"eyJpZCI6ImVkMGRjMWIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjdGY3X2lkIjoiOTc0Iiwic3R5bGVfbDEiOiJzdHlsZTIifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY3RmNyJ9\"]            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                    </div>n        </section>n        \",\"scripts\":[],\"styles\":[]}}'),(10357,3168,'_elementor_edit_mode','builder'),(10358,3168,'_elementor_template_type','wp-page'),(10359,3168,'_elementor_version','3.24.7'),(10360,3168,'_wp_page_template','default'),(10361,3168,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/youtu.be\\/vUCVqLmXSPM?si=NDYrSC8zPIUGPj3lhttps:\\/\\/youtu.be\\/vUCVqLmXSPM?si=NDYrSC8zPIUGPj3l\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have started to open a store on Alibaba to connect with orders from around the world.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0e89391\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"en|language\"],\"ct_animate\":\"wow fadeInUp\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always provide a sense of security in terms of quality and progress.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#85B23B\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(10362,3168,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(10363,3168,'_elementor_page_assets','a:2:{s:6:\"styles\";a:4:{i:0;s:18:\"widget-text-editor\";i:1;s:21:\"e-animation-slideInUp\";i:2;s:12:\"widget-image\";i:3;s:18:\"widget-google_maps\";}s:7:\"scripts\";a:9:{i:0;s:16:\"jquery-numerator\";i:1;s:20:\"ct-counter-widget-js\";i:2;s:11:\"progressbar\";i:3;s:16:\"waypoints-lib-js\";i:4;s:24:\"ct-progressbar-widget-js\";i:5;s:12:\"imagesloaded\";i:6;s:7:\"isotope\";i:7;s:25:\"ct-post-masonry-widget-js\";i:8;s:22:\"ct-post-grid-widget-js\";}}'),(10364,3168,'_elementor_css','a:6:{s:4:\"time\";i:1742179428;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:8:\"material\";i:1;s:8:\"flaticon\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(10365,3168,'_elementor_element_cache','{\"timeout\":1742265829,\"value\":{\"content\":\"        <section class=\"elementor-section elementor-top-section elementor-element elementor-element-2d2b67a elementor-section-stretched elementor-section-full_width slider-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"2d2b67a\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-no \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-d1bb387\" data-id=\"d1bb387\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImNjODZmNGQiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJyZXZzbGlkZXJ0aXRsZSI6IkhvbWUgMSIsInNob3J0Y29kZSI6IltyZXZfc2xpZGVyIGFsaWFzPVwiaG9tZS0xXCJdW1wvcmV2X3NsaWRlcl0ifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoic2xpZGVyX3Jldm9sdXRpb24ifQ==\"]        <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-2cea906 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"2cea906\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-8e117d0\" data-id=\"8e117d0\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjI0YjYyY2MiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IldlIHByb3ZpZGUgYSB3aWRlIHJhbmdlIG9mIHByb2R1Y3RzIGZvciB0aGUgbWVjaGFuaWNhbCBpbmR1c3RyeSBhY3Jvc3MgVmlldG5hbSBhbmQgd29ybGR3aWRlLCBlc3BlY2lhbGx5IGluIGtleSBtYXJrZXRzIHN1Y2ggYXMgSmFwYW4sIFNvdXRoIEtvcmVhLCB0aGUgVW5pdGVkIFN0YXRlcywgYW5kIEF1c3RyYWxpYS4gV2UgYWxzbyBoYXZlIGV4cGVyaWVuY2UgaW4gZXhwb3J0aW5nIHRvIHRoZXNlIG1hcmtldHMuIiwidGl0bGVfY29sb3IiOiIjODVCMjNCIiwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzYsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHQiOnsidW5pdCI6InB4Iiwic2l6ZSI6NDgsInNpemVzIjpbXX0sInN0eWxlIjoic3QtbGluZS1sZWZ0IiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMTYiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjoyNiwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzQsInNpemVzIjpbXX0sImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluVXAifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-909b449 wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"909b449\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>tttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImM0YTIwMjgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJpbWFnZSI6eyJ1cmwiOiIiLCJpZCI6IiJ9LCJ2aWRlb19saW5rIjoiaHR0cHM6XC9cL3lvdXR1LmJlXC92VUNWcUxtWFNQTT9zaT1ORFlyU0M4elBJVUdQajNsaHR0cHM6XC9cL3lvdXR1LmJlXC92VUNWcUxtWFNQTT9zaT1ORFlyU0M4elBJVUdQajNsIiwiYnRuX3ZpZGVvX3N0eWxlIjoic3R5bGUzIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIzMSIsInJpZ2h0IjoiMzgiLCJib3R0b20iOiIwIiwibGVmdCI6Ijc4IiwiaXNMaW5rZWQiOmZhbHNlfSwiX2Nzc19jbGFzc2VzIjoiZWwtaW5saW5lIHdvdyBmYWRlSW5SaWdodCIsIl9tYXJnaW5fdGFibGV0Ijp7InVuaXQiOiJweCIsInRvcCI6IjMxIiwicmlnaHQiOiIyMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiNjgiLCJpc0xpbmtlZCI6ZmFsc2V9LCJfYW5pbWF0aW9uIjoic2xpZGVJblVwIiwiX21hcmdpbl9tb2JpbGUiOnsidW5pdCI6InB4IiwidG9wIjoiMzEiLCJyaWdodCI6IjIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X3ZpZGVvX3BsYXllciJ9\"]tt<div class=\"elementor-element elementor-element-1fd7931 el-inline wow fadeInRight elementor-invisible elementor-widget elementor-widget-image\" data-id=\"1fd7931\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;slideInUp&quot;}\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" class=\"attachment-full size-full wp-image-2542\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-4fff345\" data-id=\"4fff345\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjU5MGYxYmUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjo1MCwic3VmZml4IjoiKyIsInRob3VzYW5kX3NlcGFyYXRvciI6IiIsInRob3VzYW5kX3NlcGFyYXRvcl9jaGFyIjoiICIsInRpdGxlIjoiQ3VzdG9tZXIiLCJzaG93X2ljb24iOiJ0cnVlIiwiY291bnRlcl9pY29uIjp7InZhbHVlIjoibWF0ZXJpYWwgem1kaSB6bWRpLWFzc2lnbm1lbnQtY2hlY2siLCJsaWJyYXJ5IjoibWF0ZXJpYWwifSwibnVtYmVyX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjQxIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJfY3NzX2NsYXNzZXMiOiJ0ZXh0LWNlbnRlci1zbSIsImljb25fdHlwZSI6ImltYWdlIiwiaWNvbl9pbWFnZSI6eyJ1cmwiOiJodHRwOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAxOVwvMTJcL2NvdW50ZXItaWNvbi0wMS5wbmciLCJpZCI6MTUxNX0sIl9hbmltYXRpb24iOiJub25lIiwiY3RfYW5pbWF0ZSI6IndvdyBmYWRlSW5VcCJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9jb3VudGVyIn0=\"][elementor-element data=\"eyJpZCI6IjdhNWYyMzkiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjoyMDAsInN1ZmZpeCI6IisiLCJ0aG91c2FuZF9zZXBhcmF0b3IiOiIiLCJ0aG91c2FuZF9zZXBhcmF0b3JfY2hhciI6IiAiLCJ0aXRsZSI6IlBlcnNvbm5lbCIsInNob3dfaWNvbiI6InRydWUiLCJjb3VudGVyX2ljb24iOnsidmFsdWUiOiJtYXRlcmlhbCB6bWRpIHptZGktYXNzaWdubWVudC1jaGVjayIsImxpYnJhcnkiOiJtYXRlcmlhbCJ9LCJudW1iZXJfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiNDEiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sIl9jc3NfY2xhc3NlcyI6InRleHQtY2VudGVyLXNtIiwiaWNvbl90eXBlIjoiaW1hZ2UiLCJpY29uX2ltYWdlIjp7InVybCI6Imh0dHA6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDE5XC8xMlwvY291bnRlci1pY29uLTAyLnBuZyIsImlkIjoxNTE2fSwiX2FuaW1hdGlvbiI6Im5vbmUiLCJjdF9hbmltYXRlIjoid293IGZhZGVJblVwIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2NvdW50ZXIifQ==\"][elementor-element data=\"eyJpZCI6IjA0NTMxYzgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjoyMDAwLCJzdWZmaXgiOiIrIiwidGhvdXNhbmRfc2VwYXJhdG9yIjoiIiwidGhvdXNhbmRfc2VwYXJhdG9yX2NoYXIiOiIgIiwidGl0bGUiOiJPZGVycyBwZXIgeWVhciIsInNob3dfaWNvbiI6InRydWUiLCJjb3VudGVyX2ljb24iOnsidmFsdWUiOiJtYXRlcmlhbCB6bWRpIHptZGktYXNzaWdubWVudC1jaGVjayIsImxpYnJhcnkiOiJtYXRlcmlhbCJ9LCJudW1iZXJfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiNDEiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sIl9jc3NfY2xhc3NlcyI6InRleHQtY2VudGVyLXNtIiwiaWNvbl90eXBlIjoiaW1hZ2UiLCJpY29uX2ltYWdlIjp7InVybCI6Imh0dHA6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDE5XC8xMlwvY291bnRlci1pY29uLTAzLnBuZyIsImlkIjoxNTE3fSwiX2FuaW1hdGlvbiI6Im5vbmUiLCJjdF9hbmltYXRlIjoid293IGZhZGVJblVwIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2NvdW50ZXIifQ==\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-348ba48\" data-id=\"348ba48\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-ed7e1d0 wow fadeInUp elementor-widget elementor-widget-image\" data-id=\"ed7e1d0\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" class=\"attachment-full size-full wp-image-2571\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntttt<div class=\"elementor-element elementor-element-3b54db6 wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"3b54db6\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-8b70e78 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"8b70e78\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-c2b95bd\" data-id=\"c2b95bd\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-b5a8ba3 elementor-widget elementor-widget-image\" data-id=\"b5a8ba3\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" class=\"attachment-full size-full wp-image-2268\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntttt<div class=\"elementor-element elementor-element-0e89391 elementor-widget elementor-widget-image\" data-id=\"0e89391\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" class=\"attachment-full size-full wp-image-2559\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-de7136f\" data-id=\"de7136f\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6Ijg0MDdhYmUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IldlIHN0cml2ZSB0byBiZWNvbWUgb25lIG9mIFZpZXRuYW0ncyBsZWFkaW5nIG1lY2hhbmljYWwgcHJvY2Vzc2luZyBjb21wYW5pZXMsIHN1cHBseWluZyB0aGUgaW50ZXJuYXRpb25hbCBtYXJrZXQgYnkgMjAzMC4gSW4gdGhlIGZ1dHVyZSwgd2UgYWltIHRvIHByb2R1Y2UgYSBjb21wbGV0ZSBtYWNoaW5lcnkgcHJvZHVjdCB0byBkZWxpdmVyIGRpcmVjdGx5IHRvIGVuZC11c2Vycy4iLCJ0aXRsZV9jb2xvciI6IiM4NUIyM0IiLCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZSI6eyJ1bml0IjoicHgiLCJzaXplIjozNiwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodCI6eyJ1bml0IjoicHgiLCJzaXplIjo0OCwic2l6ZXMiOltdfSwic3R5bGUiOiJzdC1saW5lLWxlZnQiLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6Ii05IiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwidGl0bGVfc3BhY2VfYm90dG9tIjp7InVuaXQiOiJweCIsInNpemUiOjE3LCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzAsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjM4LCJzaXplcyI6W119LCJjdF9hbmltYXRlIjoid293IGZsaXBJblgiLCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV9tb2JpbGUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MjgsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfbW9iaWxlIjp7InVuaXQiOiJweCIsInNpemUiOjM0LCJzaXplcyI6W119fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-0c8497c wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"0c8497c\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Goals to achieve by 2026:</p>tttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6IjQ3NTRlZDYiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJwcm9ncmVzc2Jhcl9saXN0IjpbeyJ0aXRsZSI6IkVhc3QgQXNpYSAoSmFwYW4sIFNvdXRoIEtvcmVhLCBldGMuKTogRXhwb3J0IG9mIHJlcGxhY2VtZW50IG1hY2hpbmVyeSBjb21wb25lbnRzLCBtb3RvcmN5Y2xlIGFuZCBjYXIgYWNjZXNzb3JpZXMsIHdhdGVyIGluZHVzdHJ5IGZpdHRpbmdzLCBtb2xkcywgYW5kIG90aGVyIG1lY2hhbmljYWwgcGFydHMuIiwicHJvZ3Jlc3NfdHlwZSI6IiIsInBlcmNlbnQiOnsidW5pdCI6IiUiLCJzaXplIjozMCwic2l6ZXMiOltdfSwiZGlzcGxheV9wZXJjZW50YWdlIjoiaGlkZSIsImlubmVyX3RleHQiOiJXZWIgRGVzaWduZXIiLCJfaWQiOiI4YjRiY2Q2In0seyJ0aXRsZSI6IkV1cm9wZSAoR2VybWFueSwgQnVsZ2FyaWEsIHRoZSBOZXRoZXJsYW5kcywgZXRjLik6IFByb2R1Y3Rpb24gamlncyBmb3IgYXV0b21vdGl2ZSBiZWFyaW5ncywgYW5kIGVsZWN0cmljYWwgYm94IGNvbXBvbmVudHMgZm9yIGF1dG9tYXRpb24gbWFjaGluZXJ5LiIsInByb2dyZXNzX3R5cGUiOiIiLCJwZXJjZW50Ijp7InVuaXQiOiIlIiwic2l6ZSI6MTAsInNpemVzIjpbXX0sImRpc3BsYXlfcGVyY2VudGFnZSI6ImhpZGUiLCJpbm5lcl90ZXh0IjoiV2ViIERlc2lnbmVyIiwiX2lkIjoiNmUwZjg3NyJ9LHsidGl0bGUiOiJVbml0ZWQgU3RhdGVzOiBQcm9kdWN0cyByZWxhdGVkIHRvIG1lZGljYWwgaW5zdHJ1bWVudHMsIG9wdGljcywgYW5kIGF1ZGlvIGVxdWlwbWVudC4iLCJwcm9ncmVzc190eXBlIjoiIiwicGVyY2VudCI6eyJ1bml0IjoiJSIsInNpemUiOjMwLCJzaXplcyI6W119LCJkaXNwbGF5X3BlcmNlbnRhZ2UiOiJzaG93IiwiX2lkIjoiMjIyZWI4MSJ9LHsiX2lkIjoiNWVlY2NiNiIsInRpdGxlIjoiQXVzdHJhbGlhOiBTaGVldCBtZXRhbCBwcm9kdWN0cy4iLCJwZXJjZW50Ijp7InVuaXQiOiIlIiwic2l6ZSI6OCwic2l6ZXMiOltdfX0seyJfaWQiOiIxMGU1NzUwIiwidGl0bGUiOiJWaWV0bmFtOiBTbWFsbCBhdXRvbWF0aW9uIG1hY2hpbmVzOyBtb3RvcmN5Y2xlIGFuZCBjYXIgYm9sdHM7IHByb2R1Y3RzIGluIHRoZSBvaWwgYW5kIGdhcyBpbmR1c3RyeS4iLCJwZXJjZW50Ijp7InVuaXQiOiIlIiwic2l6ZSI6MjAsInNpemVzIjpbXX19LHsiX2lkIjoiZTE3YTE5NSIsInRpdGxlIjoiT3RoZXIgbWFya2V0cyBhbmQgcHJvZHVjdHMuIiwicGVyY2VudCI6eyJ1bml0IjoiJSIsInNpemUiOjIsInNpemVzIjpbXX19XSwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiI3OCIsImlzTGlua2VkIjpmYWxzZX0sIl9tYXJnaW5fbW9iaWxlIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6dHJ1ZX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9wcm9ncmVzc2JhciJ9\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-b6145ce elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"b6145ce\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-e65d58b\" data-id=\"e65d58b\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjljZDU1ZGQiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IldlIG9mZmVyIHNlcnZpY2VzIGFjcm9zcyBtdWx0aXBsZSBzZWN0b3JzIiwidGl0bGVfY29sb3IiOiIjODVCMjNCIiwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzYsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHQiOnsidW5pdCI6InB4Iiwic2l6ZSI6NDgsInNpemVzIjpbXX0sInN0eWxlIjoic3QtbGluZS1sZWZ0IiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOnRydWV9LCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzAsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjM4LCJzaXplcyI6W119LCJjdF9hbmltYXRlIjoid293IGZhZGVJbkxlZnQiLCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV9tb2JpbGUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MjgsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfbW9iaWxlIjp7InVuaXQiOiJweCIsInNpemUiOjM0LCJzaXplcyI6W119fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-2067062\" data-id=\"2067062\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-956a238 wow fadeInRight elementor-widget elementor-widget-text-editor\" data-id=\"956a238\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>We always meet our customers&#8217; design requirements. Appearance and dimensions are what we consider most important.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-74328b6b elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"74328b6b\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4b9c9796\" data-id=\"4b9c9796\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjFjYTNiNmM1IiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsibGF5b3V0IjoiNCIsImxpbWl0Ijo0LCJmaWx0ZXJfZGVmYXVsdF90aXRsZSI6IkFsbCIsImNvbF9zbSI6IjEiLCJjb2xfbWQiOiIyIiwiY29sX2xnIjoiMiIsImNvbF94bCI6IjIiLCJidXR0b25fdGV4dCI6IlJlYWQgbW9yZSIsInNvdXJjZSI6WyJlbnxsYW5ndWFnZSJdLCJjdF9hbmltYXRlIjoid293IGZhZGVJblVwIiwib3JkZXIiOiJhc2MifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3Rfc2VydmljZV9ncmlkIn0=\"][elementor-element data=\"eyJpZCI6IjI5NzFiOGIzIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGV4dCI6Ik1vcmUgc2VydmljZXMiLCJsaW5rIjp7InVybCI6Ilwvc2VydmljZXMiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn0sImFsaWduIjoiY2VudGVyIiwiYnRuX2ljb24iOnsidmFsdWUiOiJtYXRlcmlhbCB6bWRpIHptZGktc2V0dGluZ3MiLCJsaWJyYXJ5IjoibWF0ZXJpYWwifSwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiItMTAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJzdHlsZSI6ImJ0bi1wcmVzZXQzIiwiX2FuaW1hdGlvbiI6Im5vbmUifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfYnV0dG9uIn0=\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-f43d465 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"f43d465\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-5310bd3\" data-id=\"5310bd3\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImJjZmM3MzUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjdGY3X2lkIjoiOTMyIiwibGF5b3V0IjoiMiIsImN0ZjdfdGl0bGUiOiJIYXZlIGFueSBxdWVzdGlvbnM/IiwiY3RmN19kZXNjcmlwdGlvbiI6IkNhbGw6IDgwMCAyNTAgMzY5IiwiY3RmN19waG9uZSI6IjxzcGFuPkNhbGw6PFwvc3Bhbj4gMDk2ODg2MDM4NiIsImVsX3RpdGxlIjoiQ29udGFjdCBmb3IgZ2V0dGluZyBxdW90ZToiLCJjdF9hbmltYXRlIjoid293IGZsaXBJblgifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY3RmNyJ9\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-a9b49c5 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"a9b49c5\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n                            <div class=\"elementor-background-overlay\"></div>n                n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-1dcb85a\" data-id=\"1dcb85a\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n                <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-6c560a6 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"6c560a6\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-e82cd67\" data-id=\"e82cd67\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImVmNDE1MTEiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IldlIGhhdmUgc29tZSBlYXN5IHdvcmtpbmcgcHJvY2VkdXJlIiwidGl0bGVfY29sb3IiOiIjZmZmZmZmIiwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzYsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHQiOnsidW5pdCI6InB4Iiwic2l6ZSI6NDgsInNpemVzIjpbXX0sInN0eWxlIjoic3QtbGluZS1sZWZ0IiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOnRydWV9LCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzAsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjM4LCJzaXplcyI6W119LCJjdF9hbmltYXRlIjoid293IGZhZGVJbkxlZnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-3a08737\" data-id=\"3a08737\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-7aa11c2 wow fadeInRight elementor-widget elementor-widget-text-editor\" data-id=\"7aa11c2\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>We always provide a sense of security in terms of quality and progress.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n        [elementor-element data=\"eyJpZCI6IjlkNWVhMzIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X2xpc3QiOlt7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi1yZXNlYXJjaCIsImxpYnJhcnkiOiJmbGF0aWNvbiJ9LCJfaWQiOiIwNTVmZWYyIiwidGl0bGUiOiJGaW5kIHVzIiwiZGVzY3JpcHRpb24iOiJXZSB1bmRlcnN0YW5kIHRoZSBpbXBvcnRhbmNlIG9mIGhhbmRsaW5nIGVhY2ggcHJvamVjdCB3aXRoIGEgaG9saXN0aWMgYXBwcm9hY2guIiwiYnRuX2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9fSx7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi1uZXR3b3JrIiwibGlicmFyeSI6ImZsYXRpY29uIn0sIl9pZCI6IjM5ZTE0YjgiLCJ0aXRsZSI6IkNvbm5lY3Qgd2l0aCB1cyIsImRlc2NyaXB0aW9uIjoiV2hhdCBzZXRzIHVzIGFwYXJ0IGZyb20gb3RoZXIgYWdlbmNpZXMgaXMgb3VyIGV4cGVydGlzZSBpbiBjcmVhdGluZyB0YWlsb3JlZCBzb2x1dGlvbnMuIiwiYnRuX2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9fSx7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi13YWxsZXQiLCJsaWJyYXJ5IjoiZmxhdGljb24ifSwiX2lkIjoiZjVlMTBlOCIsInRpdGxlIjoiUGF5bWVudCB1cyIsImRlc2NyaXB0aW9uIjoiV2UgZW5jb3VyYWdlIGV2ZXJ5IHRlYW0gbWVtYmVyIHRvIGJlIHRoZWlyIGJlc3Qgc2VsZiwgZm9zdGVyaW5nIGEgZmxleGlibGUgYW5kIGNvbGxhYm9yYXRpdmUgZW52aXJvbm1lbnQuIiwiYnRuX2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9fSx7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi10YXJnZXQiLCJsaWJyYXJ5IjoiZmxhdGljb24ifSwiX2lkIjoiODgzOTk2OSIsInRpdGxlIjoiR2V0IHlvdXIgZHJlYW0iLCJkZXNjcmlwdGlvbiI6IkF0IGl0cyBjb3JlLCBldmVyeSBidXNpbmVzcyBoYXMgdW5pcXVlIHNvbHV0aW9ucyB0aGF0IGluc3BpcmUgaW5ub3ZhdGlvbiBhbmQgcHJvZ3Jlc3MuIiwiYnRuX2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9fV0sInRpdGxlX2NvbG9yIjoiI2ZmZmZmZiIsImRlc2NyaXB0aW9uX2NvbG9yIjoiI0ZGRkZGRiIsImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X3Byb2Nlc3MifQ==\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-79ee8ab elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"79ee8ab\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4af1814\" data-id=\"4af1814\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n                <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-505fb45 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"505fb45\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-7223f1c\" data-id=\"7223f1c\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-e7c238e elementor-widget elementor-widget-google_maps\" data-id=\"e7c238e\" data-element_type=\"widget\" data-widget_type=\"google_maps.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-custom-embed\">nttt<iframe loading=\"lazy\"ntttttsrc=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"nttttttitle=\"10u00b057&#039;11.2&quot;N 106u00b045&#039;13.0&quot;E\"ntttttaria-label=\"10u00b057&#039;11.2&quot;N 106u00b045&#039;13.0&quot;E\"nttt></iframe>ntt</div>ntttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-0225539\" data-id=\"0225539\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjUxZDU0M2EiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkNvbnRhY3QgdXMgZm9yIGFueSBraW5kIG9mIGhlbHAgYXQgYW55IHRpbWUuLi4iLCJ0aXRsZV9jb2xvciI6IiM4NUIyM0IiLCJfcGFkZGluZyI6eyJ1bml0IjoiJSIsInRvcCI6IjAiLCJyaWdodCI6IjUiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV9zcGFjZV9ib3R0b20iOnsidW5pdCI6InB4Iiwic2l6ZSI6MzMsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjozMCwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzgsInNpemVzIjpbXX0sImN0X2FuaW1hdGUiOiJ3b3cgZmxpcEluWCIsIl9wYWRkaW5nX3RhYmxldCI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"][elementor-element data=\"eyJpZCI6ImVkMGRjMWIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjdGY3X2lkIjoiOTc0Iiwic3R5bGVfbDEiOiJzdHlsZTIifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY3RmNyJ9\"]            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                    </div>n        </section>n        \",\"scripts\":[],\"styles\":[]}}'),(10366,3169,'_elementor_edit_mode','builder'),(10367,3169,'_elementor_template_type','wp-page'),(10368,3169,'_elementor_version','3.24.7'),(10369,3169,'_wp_page_template','default'),(10370,3169,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/youtu.be\\/vUCVqLmXSPM?si=NDYrSC8zPIUGPj3lhttps:\\/\\/youtu.be\\/vUCVqLmXSPM?si=NDYrSC8zPIUGPj3l\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have started to open a store on Alibaba to connect with orders from around the world.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0e89391\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"en|language\"],\"ct_animate\":\"wow fadeInUp\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always provide a sense of security in terms of quality and progress.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#85B23B\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(10371,3169,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(10372,3169,'_elementor_page_assets','a:2:{s:6:\"styles\";a:4:{i:0;s:18:\"widget-text-editor\";i:1;s:21:\"e-animation-slideInUp\";i:2;s:12:\"widget-image\";i:3;s:18:\"widget-google_maps\";}s:7:\"scripts\";a:9:{i:0;s:16:\"jquery-numerator\";i:1;s:20:\"ct-counter-widget-js\";i:2;s:11:\"progressbar\";i:3;s:16:\"waypoints-lib-js\";i:4;s:24:\"ct-progressbar-widget-js\";i:5;s:12:\"imagesloaded\";i:6;s:7:\"isotope\";i:7;s:25:\"ct-post-masonry-widget-js\";i:8;s:22:\"ct-post-grid-widget-js\";}}'),(10373,3169,'_elementor_css','a:6:{s:4:\"time\";i:1742179428;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:8:\"material\";i:1;s:8:\"flaticon\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(10374,3169,'_elementor_element_cache','{\"timeout\":1742265829,\"value\":{\"content\":\"        <section class=\"elementor-section elementor-top-section elementor-element elementor-element-2d2b67a elementor-section-stretched elementor-section-full_width slider-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"2d2b67a\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-no \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-d1bb387\" data-id=\"d1bb387\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImNjODZmNGQiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJyZXZzbGlkZXJ0aXRsZSI6IkhvbWUgMSIsInNob3J0Y29kZSI6IltyZXZfc2xpZGVyIGFsaWFzPVwiaG9tZS0xXCJdW1wvcmV2X3NsaWRlcl0ifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoic2xpZGVyX3Jldm9sdXRpb24ifQ==\"]        <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-2cea906 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"2cea906\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-8e117d0\" data-id=\"8e117d0\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjI0YjYyY2MiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IldlIHByb3ZpZGUgYSB3aWRlIHJhbmdlIG9mIHByb2R1Y3RzIGZvciB0aGUgbWVjaGFuaWNhbCBpbmR1c3RyeSBhY3Jvc3MgVmlldG5hbSBhbmQgd29ybGR3aWRlLCBlc3BlY2lhbGx5IGluIGtleSBtYXJrZXRzIHN1Y2ggYXMgSmFwYW4sIFNvdXRoIEtvcmVhLCB0aGUgVW5pdGVkIFN0YXRlcywgYW5kIEF1c3RyYWxpYS4gV2UgYWxzbyBoYXZlIGV4cGVyaWVuY2UgaW4gZXhwb3J0aW5nIHRvIHRoZXNlIG1hcmtldHMuIiwidGl0bGVfY29sb3IiOiIjODVCMjNCIiwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzYsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHQiOnsidW5pdCI6InB4Iiwic2l6ZSI6NDgsInNpemVzIjpbXX0sInN0eWxlIjoic3QtbGluZS1sZWZ0IiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMTYiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjoyNiwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzQsInNpemVzIjpbXX0sImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluVXAifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-909b449 wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"909b449\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>tttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImM0YTIwMjgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJpbWFnZSI6eyJ1cmwiOiIiLCJpZCI6IiJ9LCJ2aWRlb19saW5rIjoiaHR0cHM6XC9cL3lvdXR1LmJlXC92VUNWcUxtWFNQTT9zaT1ORFlyU0M4elBJVUdQajNsaHR0cHM6XC9cL3lvdXR1LmJlXC92VUNWcUxtWFNQTT9zaT1ORFlyU0M4elBJVUdQajNsIiwiYnRuX3ZpZGVvX3N0eWxlIjoic3R5bGUzIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIzMSIsInJpZ2h0IjoiMzgiLCJib3R0b20iOiIwIiwibGVmdCI6Ijc4IiwiaXNMaW5rZWQiOmZhbHNlfSwiX2Nzc19jbGFzc2VzIjoiZWwtaW5saW5lIHdvdyBmYWRlSW5SaWdodCIsIl9tYXJnaW5fdGFibGV0Ijp7InVuaXQiOiJweCIsInRvcCI6IjMxIiwicmlnaHQiOiIyMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiNjgiLCJpc0xpbmtlZCI6ZmFsc2V9LCJfYW5pbWF0aW9uIjoic2xpZGVJblVwIiwiX21hcmdpbl9tb2JpbGUiOnsidW5pdCI6InB4IiwidG9wIjoiMzEiLCJyaWdodCI6IjIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X3ZpZGVvX3BsYXllciJ9\"]tt<div class=\"elementor-element elementor-element-1fd7931 el-inline wow fadeInRight elementor-invisible elementor-widget elementor-widget-image\" data-id=\"1fd7931\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;slideInUp&quot;}\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" class=\"attachment-full size-full wp-image-2542\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-4fff345\" data-id=\"4fff345\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjU5MGYxYmUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjo1MCwic3VmZml4IjoiKyIsInRob3VzYW5kX3NlcGFyYXRvciI6IiIsInRob3VzYW5kX3NlcGFyYXRvcl9jaGFyIjoiICIsInRpdGxlIjoiQ3VzdG9tZXIiLCJzaG93X2ljb24iOiJ0cnVlIiwiY291bnRlcl9pY29uIjp7InZhbHVlIjoibWF0ZXJpYWwgem1kaSB6bWRpLWFzc2lnbm1lbnQtY2hlY2siLCJsaWJyYXJ5IjoibWF0ZXJpYWwifSwibnVtYmVyX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjQxIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJfY3NzX2NsYXNzZXMiOiJ0ZXh0LWNlbnRlci1zbSIsImljb25fdHlwZSI6ImltYWdlIiwiaWNvbl9pbWFnZSI6eyJ1cmwiOiJodHRwOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAxOVwvMTJcL2NvdW50ZXItaWNvbi0wMS5wbmciLCJpZCI6MTUxNX0sIl9hbmltYXRpb24iOiJub25lIiwiY3RfYW5pbWF0ZSI6IndvdyBmYWRlSW5VcCJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9jb3VudGVyIn0=\"][elementor-element data=\"eyJpZCI6IjdhNWYyMzkiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjoyMDAsInN1ZmZpeCI6IisiLCJ0aG91c2FuZF9zZXBhcmF0b3IiOiIiLCJ0aG91c2FuZF9zZXBhcmF0b3JfY2hhciI6IiAiLCJ0aXRsZSI6IlBlcnNvbm5lbCIsInNob3dfaWNvbiI6InRydWUiLCJjb3VudGVyX2ljb24iOnsidmFsdWUiOiJtYXRlcmlhbCB6bWRpIHptZGktYXNzaWdubWVudC1jaGVjayIsImxpYnJhcnkiOiJtYXRlcmlhbCJ9LCJudW1iZXJfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiNDEiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sIl9jc3NfY2xhc3NlcyI6InRleHQtY2VudGVyLXNtIiwiaWNvbl90eXBlIjoiaW1hZ2UiLCJpY29uX2ltYWdlIjp7InVybCI6Imh0dHA6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDE5XC8xMlwvY291bnRlci1pY29uLTAyLnBuZyIsImlkIjoxNTE2fSwiX2FuaW1hdGlvbiI6Im5vbmUiLCJjdF9hbmltYXRlIjoid293IGZhZGVJblVwIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2NvdW50ZXIifQ==\"][elementor-element data=\"eyJpZCI6IjA0NTMxYzgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjoyMDAwLCJzdWZmaXgiOiIrIiwidGhvdXNhbmRfc2VwYXJhdG9yIjoiIiwidGhvdXNhbmRfc2VwYXJhdG9yX2NoYXIiOiIgIiwidGl0bGUiOiJPZGVycyBwZXIgeWVhciIsInNob3dfaWNvbiI6InRydWUiLCJjb3VudGVyX2ljb24iOnsidmFsdWUiOiJtYXRlcmlhbCB6bWRpIHptZGktYXNzaWdubWVudC1jaGVjayIsImxpYnJhcnkiOiJtYXRlcmlhbCJ9LCJudW1iZXJfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiNDEiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sIl9jc3NfY2xhc3NlcyI6InRleHQtY2VudGVyLXNtIiwiaWNvbl90eXBlIjoiaW1hZ2UiLCJpY29uX2ltYWdlIjp7InVybCI6Imh0dHA6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDE5XC8xMlwvY291bnRlci1pY29uLTAzLnBuZyIsImlkIjoxNTE3fSwiX2FuaW1hdGlvbiI6Im5vbmUiLCJjdF9hbmltYXRlIjoid293IGZhZGVJblVwIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2NvdW50ZXIifQ==\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-348ba48\" data-id=\"348ba48\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-ed7e1d0 wow fadeInUp elementor-widget elementor-widget-image\" data-id=\"ed7e1d0\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" class=\"attachment-full size-full wp-image-2571\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntttt<div class=\"elementor-element elementor-element-3b54db6 wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"3b54db6\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-8b70e78 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"8b70e78\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-c2b95bd\" data-id=\"c2b95bd\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-b5a8ba3 elementor-widget elementor-widget-image\" data-id=\"b5a8ba3\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" class=\"attachment-full size-full wp-image-2268\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntttt<div class=\"elementor-element elementor-element-0e89391 elementor-widget elementor-widget-image\" data-id=\"0e89391\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" class=\"attachment-full size-full wp-image-2559\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-de7136f\" data-id=\"de7136f\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6Ijg0MDdhYmUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IldlIHN0cml2ZSB0byBiZWNvbWUgb25lIG9mIFZpZXRuYW0ncyBsZWFkaW5nIG1lY2hhbmljYWwgcHJvY2Vzc2luZyBjb21wYW5pZXMsIHN1cHBseWluZyB0aGUgaW50ZXJuYXRpb25hbCBtYXJrZXQgYnkgMjAzMC4gSW4gdGhlIGZ1dHVyZSwgd2UgYWltIHRvIHByb2R1Y2UgYSBjb21wbGV0ZSBtYWNoaW5lcnkgcHJvZHVjdCB0byBkZWxpdmVyIGRpcmVjdGx5IHRvIGVuZC11c2Vycy4iLCJ0aXRsZV9jb2xvciI6IiM4NUIyM0IiLCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZSI6eyJ1bml0IjoicHgiLCJzaXplIjozNiwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodCI6eyJ1bml0IjoicHgiLCJzaXplIjo0OCwic2l6ZXMiOltdfSwic3R5bGUiOiJzdC1saW5lLWxlZnQiLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6Ii05IiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwidGl0bGVfc3BhY2VfYm90dG9tIjp7InVuaXQiOiJweCIsInNpemUiOjE3LCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzAsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjM4LCJzaXplcyI6W119LCJjdF9hbmltYXRlIjoid293IGZsaXBJblgiLCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV9tb2JpbGUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MjgsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfbW9iaWxlIjp7InVuaXQiOiJweCIsInNpemUiOjM0LCJzaXplcyI6W119fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-0c8497c wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"0c8497c\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Goals to achieve by 2026:</p>tttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6IjQ3NTRlZDYiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJwcm9ncmVzc2Jhcl9saXN0IjpbeyJ0aXRsZSI6IkVhc3QgQXNpYSAoSmFwYW4sIFNvdXRoIEtvcmVhLCBldGMuKTogRXhwb3J0IG9mIHJlcGxhY2VtZW50IG1hY2hpbmVyeSBjb21wb25lbnRzLCBtb3RvcmN5Y2xlIGFuZCBjYXIgYWNjZXNzb3JpZXMsIHdhdGVyIGluZHVzdHJ5IGZpdHRpbmdzLCBtb2xkcywgYW5kIG90aGVyIG1lY2hhbmljYWwgcGFydHMuIiwicHJvZ3Jlc3NfdHlwZSI6IiIsInBlcmNlbnQiOnsidW5pdCI6IiUiLCJzaXplIjozMCwic2l6ZXMiOltdfSwiZGlzcGxheV9wZXJjZW50YWdlIjoiaGlkZSIsImlubmVyX3RleHQiOiJXZWIgRGVzaWduZXIiLCJfaWQiOiI4YjRiY2Q2In0seyJ0aXRsZSI6IkV1cm9wZSAoR2VybWFueSwgQnVsZ2FyaWEsIHRoZSBOZXRoZXJsYW5kcywgZXRjLik6IFByb2R1Y3Rpb24gamlncyBmb3IgYXV0b21vdGl2ZSBiZWFyaW5ncywgYW5kIGVsZWN0cmljYWwgYm94IGNvbXBvbmVudHMgZm9yIGF1dG9tYXRpb24gbWFjaGluZXJ5LiIsInByb2dyZXNzX3R5cGUiOiIiLCJwZXJjZW50Ijp7InVuaXQiOiIlIiwic2l6ZSI6MTAsInNpemVzIjpbXX0sImRpc3BsYXlfcGVyY2VudGFnZSI6ImhpZGUiLCJpbm5lcl90ZXh0IjoiV2ViIERlc2lnbmVyIiwiX2lkIjoiNmUwZjg3NyJ9LHsidGl0bGUiOiJVbml0ZWQgU3RhdGVzOiBQcm9kdWN0cyByZWxhdGVkIHRvIG1lZGljYWwgaW5zdHJ1bWVudHMsIG9wdGljcywgYW5kIGF1ZGlvIGVxdWlwbWVudC4iLCJwcm9ncmVzc190eXBlIjoiIiwicGVyY2VudCI6eyJ1bml0IjoiJSIsInNpemUiOjMwLCJzaXplcyI6W119LCJkaXNwbGF5X3BlcmNlbnRhZ2UiOiJzaG93IiwiX2lkIjoiMjIyZWI4MSJ9LHsiX2lkIjoiNWVlY2NiNiIsInRpdGxlIjoiQXVzdHJhbGlhOiBTaGVldCBtZXRhbCBwcm9kdWN0cy4iLCJwZXJjZW50Ijp7InVuaXQiOiIlIiwic2l6ZSI6OCwic2l6ZXMiOltdfX0seyJfaWQiOiIxMGU1NzUwIiwidGl0bGUiOiJWaWV0bmFtOiBTbWFsbCBhdXRvbWF0aW9uIG1hY2hpbmVzOyBtb3RvcmN5Y2xlIGFuZCBjYXIgYm9sdHM7IHByb2R1Y3RzIGluIHRoZSBvaWwgYW5kIGdhcyBpbmR1c3RyeS4iLCJwZXJjZW50Ijp7InVuaXQiOiIlIiwic2l6ZSI6MjAsInNpemVzIjpbXX19LHsiX2lkIjoiZTE3YTE5NSIsInRpdGxlIjoiT3RoZXIgbWFya2V0cyBhbmQgcHJvZHVjdHMuIiwicGVyY2VudCI6eyJ1bml0IjoiJSIsInNpemUiOjIsInNpemVzIjpbXX19XSwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiI3OCIsImlzTGlua2VkIjpmYWxzZX0sIl9tYXJnaW5fbW9iaWxlIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6dHJ1ZX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9wcm9ncmVzc2JhciJ9\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-b6145ce elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"b6145ce\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-e65d58b\" data-id=\"e65d58b\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjljZDU1ZGQiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IldlIG9mZmVyIHNlcnZpY2VzIGFjcm9zcyBtdWx0aXBsZSBzZWN0b3JzIiwidGl0bGVfY29sb3IiOiIjODVCMjNCIiwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzYsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHQiOnsidW5pdCI6InB4Iiwic2l6ZSI6NDgsInNpemVzIjpbXX0sInN0eWxlIjoic3QtbGluZS1sZWZ0IiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOnRydWV9LCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzAsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjM4LCJzaXplcyI6W119LCJjdF9hbmltYXRlIjoid293IGZhZGVJbkxlZnQiLCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV9tb2JpbGUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MjgsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfbW9iaWxlIjp7InVuaXQiOiJweCIsInNpemUiOjM0LCJzaXplcyI6W119fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-2067062\" data-id=\"2067062\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-956a238 wow fadeInRight elementor-widget elementor-widget-text-editor\" data-id=\"956a238\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>We always meet our customers&#8217; design requirements. Appearance and dimensions are what we consider most important.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-74328b6b elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"74328b6b\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4b9c9796\" data-id=\"4b9c9796\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjFjYTNiNmM1IiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsibGF5b3V0IjoiNCIsImxpbWl0Ijo0LCJmaWx0ZXJfZGVmYXVsdF90aXRsZSI6IkFsbCIsImNvbF9zbSI6IjEiLCJjb2xfbWQiOiIyIiwiY29sX2xnIjoiMiIsImNvbF94bCI6IjIiLCJidXR0b25fdGV4dCI6IlJlYWQgbW9yZSIsInNvdXJjZSI6WyJlbnxsYW5ndWFnZSJdLCJjdF9hbmltYXRlIjoid293IGZhZGVJblVwIiwib3JkZXIiOiJhc2MifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3Rfc2VydmljZV9ncmlkIn0=\"][elementor-element data=\"eyJpZCI6IjI5NzFiOGIzIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGV4dCI6Ik1vcmUgc2VydmljZXMiLCJsaW5rIjp7InVybCI6Ilwvc2VydmljZXMiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn0sImFsaWduIjoiY2VudGVyIiwiYnRuX2ljb24iOnsidmFsdWUiOiJtYXRlcmlhbCB6bWRpIHptZGktc2V0dGluZ3MiLCJsaWJyYXJ5IjoibWF0ZXJpYWwifSwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiItMTAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJzdHlsZSI6ImJ0bi1wcmVzZXQzIiwiX2FuaW1hdGlvbiI6Im5vbmUifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfYnV0dG9uIn0=\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-f43d465 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"f43d465\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-5310bd3\" data-id=\"5310bd3\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImJjZmM3MzUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjdGY3X2lkIjoiOTMyIiwibGF5b3V0IjoiMiIsImN0ZjdfdGl0bGUiOiJIYXZlIGFueSBxdWVzdGlvbnM/IiwiY3RmN19kZXNjcmlwdGlvbiI6IkNhbGw6IDgwMCAyNTAgMzY5IiwiY3RmN19waG9uZSI6IjxzcGFuPkNhbGw6PFwvc3Bhbj4gMDk2ODg2MDM4NiIsImVsX3RpdGxlIjoiQ29udGFjdCBmb3IgZ2V0dGluZyBxdW90ZToiLCJjdF9hbmltYXRlIjoid293IGZsaXBJblgifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY3RmNyJ9\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-a9b49c5 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"a9b49c5\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n                            <div class=\"elementor-background-overlay\"></div>n                n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-1dcb85a\" data-id=\"1dcb85a\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n                <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-6c560a6 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"6c560a6\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-e82cd67\" data-id=\"e82cd67\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImVmNDE1MTEiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IldlIGhhdmUgc29tZSBlYXN5IHdvcmtpbmcgcHJvY2VkdXJlIiwidGl0bGVfY29sb3IiOiIjZmZmZmZmIiwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzYsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHQiOnsidW5pdCI6InB4Iiwic2l6ZSI6NDgsInNpemVzIjpbXX0sInN0eWxlIjoic3QtbGluZS1sZWZ0IiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOnRydWV9LCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzAsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjM4LCJzaXplcyI6W119LCJjdF9hbmltYXRlIjoid293IGZhZGVJbkxlZnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-3a08737\" data-id=\"3a08737\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-7aa11c2 wow fadeInRight elementor-widget elementor-widget-text-editor\" data-id=\"7aa11c2\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>We always provide a sense of security in terms of quality and progress.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n        [elementor-element data=\"eyJpZCI6IjlkNWVhMzIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X2xpc3QiOlt7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi1yZXNlYXJjaCIsImxpYnJhcnkiOiJmbGF0aWNvbiJ9LCJfaWQiOiIwNTVmZWYyIiwidGl0bGUiOiJGaW5kIHVzIiwiZGVzY3JpcHRpb24iOiJXZSB1bmRlcnN0YW5kIHRoZSBpbXBvcnRhbmNlIG9mIGhhbmRsaW5nIGVhY2ggcHJvamVjdCB3aXRoIGEgaG9saXN0aWMgYXBwcm9hY2guIiwiYnRuX2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9fSx7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi1uZXR3b3JrIiwibGlicmFyeSI6ImZsYXRpY29uIn0sIl9pZCI6IjM5ZTE0YjgiLCJ0aXRsZSI6IkNvbm5lY3Qgd2l0aCB1cyIsImRlc2NyaXB0aW9uIjoiV2hhdCBzZXRzIHVzIGFwYXJ0IGZyb20gb3RoZXIgYWdlbmNpZXMgaXMgb3VyIGV4cGVydGlzZSBpbiBjcmVhdGluZyB0YWlsb3JlZCBzb2x1dGlvbnMuIiwiYnRuX2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9fSx7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi13YWxsZXQiLCJsaWJyYXJ5IjoiZmxhdGljb24ifSwiX2lkIjoiZjVlMTBlOCIsInRpdGxlIjoiUGF5bWVudCB1cyIsImRlc2NyaXB0aW9uIjoiV2UgZW5jb3VyYWdlIGV2ZXJ5IHRlYW0gbWVtYmVyIHRvIGJlIHRoZWlyIGJlc3Qgc2VsZiwgZm9zdGVyaW5nIGEgZmxleGlibGUgYW5kIGNvbGxhYm9yYXRpdmUgZW52aXJvbm1lbnQuIiwiYnRuX2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9fSx7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi10YXJnZXQiLCJsaWJyYXJ5IjoiZmxhdGljb24ifSwiX2lkIjoiODgzOTk2OSIsInRpdGxlIjoiR2V0IHlvdXIgZHJlYW0iLCJkZXNjcmlwdGlvbiI6IkF0IGl0cyBjb3JlLCBldmVyeSBidXNpbmVzcyBoYXMgdW5pcXVlIHNvbHV0aW9ucyB0aGF0IGluc3BpcmUgaW5ub3ZhdGlvbiBhbmQgcHJvZ3Jlc3MuIiwiYnRuX2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9fV0sInRpdGxlX2NvbG9yIjoiI2ZmZmZmZiIsImRlc2NyaXB0aW9uX2NvbG9yIjoiI0ZGRkZGRiIsImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X3Byb2Nlc3MifQ==\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-79ee8ab elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"79ee8ab\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4af1814\" data-id=\"4af1814\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n                <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-505fb45 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"505fb45\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-7223f1c\" data-id=\"7223f1c\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-e7c238e elementor-widget elementor-widget-google_maps\" data-id=\"e7c238e\" data-element_type=\"widget\" data-widget_type=\"google_maps.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-custom-embed\">nttt<iframe loading=\"lazy\"ntttttsrc=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"nttttttitle=\"10u00b057&#039;11.2&quot;N 106u00b045&#039;13.0&quot;E\"ntttttaria-label=\"10u00b057&#039;11.2&quot;N 106u00b045&#039;13.0&quot;E\"nttt></iframe>ntt</div>ntttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-0225539\" data-id=\"0225539\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjUxZDU0M2EiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkNvbnRhY3QgdXMgZm9yIGFueSBraW5kIG9mIGhlbHAgYXQgYW55IHRpbWUuLi4iLCJ0aXRsZV9jb2xvciI6IiM4NUIyM0IiLCJfcGFkZGluZyI6eyJ1bml0IjoiJSIsInRvcCI6IjAiLCJyaWdodCI6IjUiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV9zcGFjZV9ib3R0b20iOnsidW5pdCI6InB4Iiwic2l6ZSI6MzMsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjozMCwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzgsInNpemVzIjpbXX0sImN0X2FuaW1hdGUiOiJ3b3cgZmxpcEluWCIsIl9wYWRkaW5nX3RhYmxldCI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"][elementor-element data=\"eyJpZCI6ImVkMGRjMWIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjdGY3X2lkIjoiOTc0Iiwic3R5bGVfbDEiOiJzdHlsZTIifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY3RmNyJ9\"]            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                    </div>n        </section>n        \",\"scripts\":[],\"styles\":[]}}'),(10375,3170,'_elementor_edit_mode','builder'),(10376,3170,'_elementor_template_type','wp-page'),(10377,3170,'_elementor_version','3.24.7'),(10378,3170,'_wp_page_template','default'),(10379,3170,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=vUCVqLmXSPM\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have started to open a store on Alibaba to connect with orders from around the world.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0e89391\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"en|language\"],\"ct_animate\":\"wow fadeInUp\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always provide a sense of security in terms of quality and progress.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#85B23B\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(10380,3170,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(10381,3170,'_elementor_page_assets','a:2:{s:6:\"styles\";a:4:{i:0;s:18:\"widget-text-editor\";i:1;s:21:\"e-animation-slideInUp\";i:2;s:12:\"widget-image\";i:3;s:18:\"widget-google_maps\";}s:7:\"scripts\";a:9:{i:0;s:16:\"jquery-numerator\";i:1;s:20:\"ct-counter-widget-js\";i:2;s:11:\"progressbar\";i:3;s:16:\"waypoints-lib-js\";i:4;s:24:\"ct-progressbar-widget-js\";i:5;s:12:\"imagesloaded\";i:6;s:7:\"isotope\";i:7;s:25:\"ct-post-masonry-widget-js\";i:8;s:22:\"ct-post-grid-widget-js\";}}'),(10382,3170,'_elementor_css','a:6:{s:4:\"time\";i:1742179428;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:8:\"material\";i:1;s:8:\"flaticon\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(10383,3170,'_elementor_element_cache','{\"timeout\":1742265829,\"value\":{\"content\":\"        <section class=\"elementor-section elementor-top-section elementor-element elementor-element-2d2b67a elementor-section-stretched elementor-section-full_width slider-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"2d2b67a\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-no \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-d1bb387\" data-id=\"d1bb387\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImNjODZmNGQiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJyZXZzbGlkZXJ0aXRsZSI6IkhvbWUgMSIsInNob3J0Y29kZSI6IltyZXZfc2xpZGVyIGFsaWFzPVwiaG9tZS0xXCJdW1wvcmV2X3NsaWRlcl0ifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoic2xpZGVyX3Jldm9sdXRpb24ifQ==\"]        <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-2cea906 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"2cea906\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-8e117d0\" data-id=\"8e117d0\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjI0YjYyY2MiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IldlIHByb3ZpZGUgYSB3aWRlIHJhbmdlIG9mIHByb2R1Y3RzIGZvciB0aGUgbWVjaGFuaWNhbCBpbmR1c3RyeSBhY3Jvc3MgVmlldG5hbSBhbmQgd29ybGR3aWRlLCBlc3BlY2lhbGx5IGluIGtleSBtYXJrZXRzIHN1Y2ggYXMgSmFwYW4sIFNvdXRoIEtvcmVhLCB0aGUgVW5pdGVkIFN0YXRlcywgYW5kIEF1c3RyYWxpYS4gV2UgYWxzbyBoYXZlIGV4cGVyaWVuY2UgaW4gZXhwb3J0aW5nIHRvIHRoZXNlIG1hcmtldHMuIiwidGl0bGVfY29sb3IiOiIjODVCMjNCIiwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzYsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHQiOnsidW5pdCI6InB4Iiwic2l6ZSI6NDgsInNpemVzIjpbXX0sInN0eWxlIjoic3QtbGluZS1sZWZ0IiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMTYiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjoyNiwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzQsInNpemVzIjpbXX0sImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluVXAifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-909b449 wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"909b449\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>tttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImM0YTIwMjgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJpbWFnZSI6eyJ1cmwiOiIiLCJpZCI6IiJ9LCJ2aWRlb19saW5rIjoiaHR0cHM6XC9cL3lvdXR1LmJlXC92VUNWcUxtWFNQTT9zaT1ORFlyU0M4elBJVUdQajNsaHR0cHM6XC9cL3lvdXR1LmJlXC92VUNWcUxtWFNQTT9zaT1ORFlyU0M4elBJVUdQajNsIiwiYnRuX3ZpZGVvX3N0eWxlIjoic3R5bGUzIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIzMSIsInJpZ2h0IjoiMzgiLCJib3R0b20iOiIwIiwibGVmdCI6Ijc4IiwiaXNMaW5rZWQiOmZhbHNlfSwiX2Nzc19jbGFzc2VzIjoiZWwtaW5saW5lIHdvdyBmYWRlSW5SaWdodCIsIl9tYXJnaW5fdGFibGV0Ijp7InVuaXQiOiJweCIsInRvcCI6IjMxIiwicmlnaHQiOiIyMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiNjgiLCJpc0xpbmtlZCI6ZmFsc2V9LCJfYW5pbWF0aW9uIjoic2xpZGVJblVwIiwiX21hcmdpbl9tb2JpbGUiOnsidW5pdCI6InB4IiwidG9wIjoiMzEiLCJyaWdodCI6IjIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X3ZpZGVvX3BsYXllciJ9\"]tt<div class=\"elementor-element elementor-element-1fd7931 el-inline wow fadeInRight elementor-invisible elementor-widget elementor-widget-image\" data-id=\"1fd7931\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;slideInUp&quot;}\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" class=\"attachment-full size-full wp-image-2542\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-4fff345\" data-id=\"4fff345\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjU5MGYxYmUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjo1MCwic3VmZml4IjoiKyIsInRob3VzYW5kX3NlcGFyYXRvciI6IiIsInRob3VzYW5kX3NlcGFyYXRvcl9jaGFyIjoiICIsInRpdGxlIjoiQ3VzdG9tZXIiLCJzaG93X2ljb24iOiJ0cnVlIiwiY291bnRlcl9pY29uIjp7InZhbHVlIjoibWF0ZXJpYWwgem1kaSB6bWRpLWFzc2lnbm1lbnQtY2hlY2siLCJsaWJyYXJ5IjoibWF0ZXJpYWwifSwibnVtYmVyX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjQxIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJfY3NzX2NsYXNzZXMiOiJ0ZXh0LWNlbnRlci1zbSIsImljb25fdHlwZSI6ImltYWdlIiwiaWNvbl9pbWFnZSI6eyJ1cmwiOiJodHRwOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAxOVwvMTJcL2NvdW50ZXItaWNvbi0wMS5wbmciLCJpZCI6MTUxNX0sIl9hbmltYXRpb24iOiJub25lIiwiY3RfYW5pbWF0ZSI6IndvdyBmYWRlSW5VcCJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9jb3VudGVyIn0=\"][elementor-element data=\"eyJpZCI6IjdhNWYyMzkiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjoyMDAsInN1ZmZpeCI6IisiLCJ0aG91c2FuZF9zZXBhcmF0b3IiOiIiLCJ0aG91c2FuZF9zZXBhcmF0b3JfY2hhciI6IiAiLCJ0aXRsZSI6IlBlcnNvbm5lbCIsInNob3dfaWNvbiI6InRydWUiLCJjb3VudGVyX2ljb24iOnsidmFsdWUiOiJtYXRlcmlhbCB6bWRpIHptZGktYXNzaWdubWVudC1jaGVjayIsImxpYnJhcnkiOiJtYXRlcmlhbCJ9LCJudW1iZXJfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiNDEiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sIl9jc3NfY2xhc3NlcyI6InRleHQtY2VudGVyLXNtIiwiaWNvbl90eXBlIjoiaW1hZ2UiLCJpY29uX2ltYWdlIjp7InVybCI6Imh0dHA6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDE5XC8xMlwvY291bnRlci1pY29uLTAyLnBuZyIsImlkIjoxNTE2fSwiX2FuaW1hdGlvbiI6Im5vbmUiLCJjdF9hbmltYXRlIjoid293IGZhZGVJblVwIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2NvdW50ZXIifQ==\"][elementor-element data=\"eyJpZCI6IjA0NTMxYzgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjoyMDAwLCJzdWZmaXgiOiIrIiwidGhvdXNhbmRfc2VwYXJhdG9yIjoiIiwidGhvdXNhbmRfc2VwYXJhdG9yX2NoYXIiOiIgIiwidGl0bGUiOiJPZGVycyBwZXIgeWVhciIsInNob3dfaWNvbiI6InRydWUiLCJjb3VudGVyX2ljb24iOnsidmFsdWUiOiJtYXRlcmlhbCB6bWRpIHptZGktYXNzaWdubWVudC1jaGVjayIsImxpYnJhcnkiOiJtYXRlcmlhbCJ9LCJudW1iZXJfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiNDEiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sIl9jc3NfY2xhc3NlcyI6InRleHQtY2VudGVyLXNtIiwiaWNvbl90eXBlIjoiaW1hZ2UiLCJpY29uX2ltYWdlIjp7InVybCI6Imh0dHA6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDE5XC8xMlwvY291bnRlci1pY29uLTAzLnBuZyIsImlkIjoxNTE3fSwiX2FuaW1hdGlvbiI6Im5vbmUiLCJjdF9hbmltYXRlIjoid293IGZhZGVJblVwIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2NvdW50ZXIifQ==\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-348ba48\" data-id=\"348ba48\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-ed7e1d0 wow fadeInUp elementor-widget elementor-widget-image\" data-id=\"ed7e1d0\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" class=\"attachment-full size-full wp-image-2571\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntttt<div class=\"elementor-element elementor-element-3b54db6 wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"3b54db6\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-8b70e78 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"8b70e78\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-c2b95bd\" data-id=\"c2b95bd\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-b5a8ba3 elementor-widget elementor-widget-image\" data-id=\"b5a8ba3\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" class=\"attachment-full size-full wp-image-2268\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntttt<div class=\"elementor-element elementor-element-0e89391 elementor-widget elementor-widget-image\" data-id=\"0e89391\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" class=\"attachment-full size-full wp-image-2559\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-de7136f\" data-id=\"de7136f\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6Ijg0MDdhYmUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IldlIHN0cml2ZSB0byBiZWNvbWUgb25lIG9mIFZpZXRuYW0ncyBsZWFkaW5nIG1lY2hhbmljYWwgcHJvY2Vzc2luZyBjb21wYW5pZXMsIHN1cHBseWluZyB0aGUgaW50ZXJuYXRpb25hbCBtYXJrZXQgYnkgMjAzMC4gSW4gdGhlIGZ1dHVyZSwgd2UgYWltIHRvIHByb2R1Y2UgYSBjb21wbGV0ZSBtYWNoaW5lcnkgcHJvZHVjdCB0byBkZWxpdmVyIGRpcmVjdGx5IHRvIGVuZC11c2Vycy4iLCJ0aXRsZV9jb2xvciI6IiM4NUIyM0IiLCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZSI6eyJ1bml0IjoicHgiLCJzaXplIjozNiwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodCI6eyJ1bml0IjoicHgiLCJzaXplIjo0OCwic2l6ZXMiOltdfSwic3R5bGUiOiJzdC1saW5lLWxlZnQiLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6Ii05IiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwidGl0bGVfc3BhY2VfYm90dG9tIjp7InVuaXQiOiJweCIsInNpemUiOjE3LCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzAsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjM4LCJzaXplcyI6W119LCJjdF9hbmltYXRlIjoid293IGZsaXBJblgiLCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV9tb2JpbGUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MjgsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfbW9iaWxlIjp7InVuaXQiOiJweCIsInNpemUiOjM0LCJzaXplcyI6W119fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-0c8497c wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"0c8497c\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Goals to achieve by 2026:</p>tttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6IjQ3NTRlZDYiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJwcm9ncmVzc2Jhcl9saXN0IjpbeyJ0aXRsZSI6IkVhc3QgQXNpYSAoSmFwYW4sIFNvdXRoIEtvcmVhLCBldGMuKTogRXhwb3J0IG9mIHJlcGxhY2VtZW50IG1hY2hpbmVyeSBjb21wb25lbnRzLCBtb3RvcmN5Y2xlIGFuZCBjYXIgYWNjZXNzb3JpZXMsIHdhdGVyIGluZHVzdHJ5IGZpdHRpbmdzLCBtb2xkcywgYW5kIG90aGVyIG1lY2hhbmljYWwgcGFydHMuIiwicHJvZ3Jlc3NfdHlwZSI6IiIsInBlcmNlbnQiOnsidW5pdCI6IiUiLCJzaXplIjozMCwic2l6ZXMiOltdfSwiZGlzcGxheV9wZXJjZW50YWdlIjoiaGlkZSIsImlubmVyX3RleHQiOiJXZWIgRGVzaWduZXIiLCJfaWQiOiI4YjRiY2Q2In0seyJ0aXRsZSI6IkV1cm9wZSAoR2VybWFueSwgQnVsZ2FyaWEsIHRoZSBOZXRoZXJsYW5kcywgZXRjLik6IFByb2R1Y3Rpb24gamlncyBmb3IgYXV0b21vdGl2ZSBiZWFyaW5ncywgYW5kIGVsZWN0cmljYWwgYm94IGNvbXBvbmVudHMgZm9yIGF1dG9tYXRpb24gbWFjaGluZXJ5LiIsInByb2dyZXNzX3R5cGUiOiIiLCJwZXJjZW50Ijp7InVuaXQiOiIlIiwic2l6ZSI6MTAsInNpemVzIjpbXX0sImRpc3BsYXlfcGVyY2VudGFnZSI6ImhpZGUiLCJpbm5lcl90ZXh0IjoiV2ViIERlc2lnbmVyIiwiX2lkIjoiNmUwZjg3NyJ9LHsidGl0bGUiOiJVbml0ZWQgU3RhdGVzOiBQcm9kdWN0cyByZWxhdGVkIHRvIG1lZGljYWwgaW5zdHJ1bWVudHMsIG9wdGljcywgYW5kIGF1ZGlvIGVxdWlwbWVudC4iLCJwcm9ncmVzc190eXBlIjoiIiwicGVyY2VudCI6eyJ1bml0IjoiJSIsInNpemUiOjMwLCJzaXplcyI6W119LCJkaXNwbGF5X3BlcmNlbnRhZ2UiOiJzaG93IiwiX2lkIjoiMjIyZWI4MSJ9LHsiX2lkIjoiNWVlY2NiNiIsInRpdGxlIjoiQXVzdHJhbGlhOiBTaGVldCBtZXRhbCBwcm9kdWN0cy4iLCJwZXJjZW50Ijp7InVuaXQiOiIlIiwic2l6ZSI6OCwic2l6ZXMiOltdfX0seyJfaWQiOiIxMGU1NzUwIiwidGl0bGUiOiJWaWV0bmFtOiBTbWFsbCBhdXRvbWF0aW9uIG1hY2hpbmVzOyBtb3RvcmN5Y2xlIGFuZCBjYXIgYm9sdHM7IHByb2R1Y3RzIGluIHRoZSBvaWwgYW5kIGdhcyBpbmR1c3RyeS4iLCJwZXJjZW50Ijp7InVuaXQiOiIlIiwic2l6ZSI6MjAsInNpemVzIjpbXX19LHsiX2lkIjoiZTE3YTE5NSIsInRpdGxlIjoiT3RoZXIgbWFya2V0cyBhbmQgcHJvZHVjdHMuIiwicGVyY2VudCI6eyJ1bml0IjoiJSIsInNpemUiOjIsInNpemVzIjpbXX19XSwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiI3OCIsImlzTGlua2VkIjpmYWxzZX0sIl9tYXJnaW5fbW9iaWxlIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6dHJ1ZX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9wcm9ncmVzc2JhciJ9\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-b6145ce elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"b6145ce\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-e65d58b\" data-id=\"e65d58b\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjljZDU1ZGQiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IldlIG9mZmVyIHNlcnZpY2VzIGFjcm9zcyBtdWx0aXBsZSBzZWN0b3JzIiwidGl0bGVfY29sb3IiOiIjODVCMjNCIiwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzYsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHQiOnsidW5pdCI6InB4Iiwic2l6ZSI6NDgsInNpemVzIjpbXX0sInN0eWxlIjoic3QtbGluZS1sZWZ0IiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOnRydWV9LCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzAsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjM4LCJzaXplcyI6W119LCJjdF9hbmltYXRlIjoid293IGZhZGVJbkxlZnQiLCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV9tb2JpbGUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MjgsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfbW9iaWxlIjp7InVuaXQiOiJweCIsInNpemUiOjM0LCJzaXplcyI6W119fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-2067062\" data-id=\"2067062\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-956a238 wow fadeInRight elementor-widget elementor-widget-text-editor\" data-id=\"956a238\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>We always meet our customers&#8217; design requirements. Appearance and dimensions are what we consider most important.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-74328b6b elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"74328b6b\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4b9c9796\" data-id=\"4b9c9796\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjFjYTNiNmM1IiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsibGF5b3V0IjoiNCIsImxpbWl0Ijo0LCJmaWx0ZXJfZGVmYXVsdF90aXRsZSI6IkFsbCIsImNvbF9zbSI6IjEiLCJjb2xfbWQiOiIyIiwiY29sX2xnIjoiMiIsImNvbF94bCI6IjIiLCJidXR0b25fdGV4dCI6IlJlYWQgbW9yZSIsInNvdXJjZSI6WyJlbnxsYW5ndWFnZSJdLCJjdF9hbmltYXRlIjoid293IGZhZGVJblVwIiwib3JkZXIiOiJhc2MifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3Rfc2VydmljZV9ncmlkIn0=\"][elementor-element data=\"eyJpZCI6IjI5NzFiOGIzIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGV4dCI6Ik1vcmUgc2VydmljZXMiLCJsaW5rIjp7InVybCI6Ilwvc2VydmljZXMiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn0sImFsaWduIjoiY2VudGVyIiwiYnRuX2ljb24iOnsidmFsdWUiOiJtYXRlcmlhbCB6bWRpIHptZGktc2V0dGluZ3MiLCJsaWJyYXJ5IjoibWF0ZXJpYWwifSwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiItMTAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJzdHlsZSI6ImJ0bi1wcmVzZXQzIiwiX2FuaW1hdGlvbiI6Im5vbmUifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfYnV0dG9uIn0=\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-f43d465 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"f43d465\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-5310bd3\" data-id=\"5310bd3\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImJjZmM3MzUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjdGY3X2lkIjoiOTMyIiwibGF5b3V0IjoiMiIsImN0ZjdfdGl0bGUiOiJIYXZlIGFueSBxdWVzdGlvbnM/IiwiY3RmN19kZXNjcmlwdGlvbiI6IkNhbGw6IDgwMCAyNTAgMzY5IiwiY3RmN19waG9uZSI6IjxzcGFuPkNhbGw6PFwvc3Bhbj4gMDk2ODg2MDM4NiIsImVsX3RpdGxlIjoiQ29udGFjdCBmb3IgZ2V0dGluZyBxdW90ZToiLCJjdF9hbmltYXRlIjoid293IGZsaXBJblgifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY3RmNyJ9\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-a9b49c5 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"a9b49c5\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n                            <div class=\"elementor-background-overlay\"></div>n                n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-1dcb85a\" data-id=\"1dcb85a\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n                <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-6c560a6 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"6c560a6\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-e82cd67\" data-id=\"e82cd67\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImVmNDE1MTEiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IldlIGhhdmUgc29tZSBlYXN5IHdvcmtpbmcgcHJvY2VkdXJlIiwidGl0bGVfY29sb3IiOiIjZmZmZmZmIiwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzYsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHQiOnsidW5pdCI6InB4Iiwic2l6ZSI6NDgsInNpemVzIjpbXX0sInN0eWxlIjoic3QtbGluZS1sZWZ0IiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOnRydWV9LCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzAsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjM4LCJzaXplcyI6W119LCJjdF9hbmltYXRlIjoid293IGZhZGVJbkxlZnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-3a08737\" data-id=\"3a08737\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-7aa11c2 wow fadeInRight elementor-widget elementor-widget-text-editor\" data-id=\"7aa11c2\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>We always provide a sense of security in terms of quality and progress.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n        [elementor-element data=\"eyJpZCI6IjlkNWVhMzIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X2xpc3QiOlt7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi1yZXNlYXJjaCIsImxpYnJhcnkiOiJmbGF0aWNvbiJ9LCJfaWQiOiIwNTVmZWYyIiwidGl0bGUiOiJGaW5kIHVzIiwiZGVzY3JpcHRpb24iOiJXZSB1bmRlcnN0YW5kIHRoZSBpbXBvcnRhbmNlIG9mIGhhbmRsaW5nIGVhY2ggcHJvamVjdCB3aXRoIGEgaG9saXN0aWMgYXBwcm9hY2guIiwiYnRuX2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9fSx7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi1uZXR3b3JrIiwibGlicmFyeSI6ImZsYXRpY29uIn0sIl9pZCI6IjM5ZTE0YjgiLCJ0aXRsZSI6IkNvbm5lY3Qgd2l0aCB1cyIsImRlc2NyaXB0aW9uIjoiV2hhdCBzZXRzIHVzIGFwYXJ0IGZyb20gb3RoZXIgYWdlbmNpZXMgaXMgb3VyIGV4cGVydGlzZSBpbiBjcmVhdGluZyB0YWlsb3JlZCBzb2x1dGlvbnMuIiwiYnRuX2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9fSx7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi13YWxsZXQiLCJsaWJyYXJ5IjoiZmxhdGljb24ifSwiX2lkIjoiZjVlMTBlOCIsInRpdGxlIjoiUGF5bWVudCB1cyIsImRlc2NyaXB0aW9uIjoiV2UgZW5jb3VyYWdlIGV2ZXJ5IHRlYW0gbWVtYmVyIHRvIGJlIHRoZWlyIGJlc3Qgc2VsZiwgZm9zdGVyaW5nIGEgZmxleGlibGUgYW5kIGNvbGxhYm9yYXRpdmUgZW52aXJvbm1lbnQuIiwiYnRuX2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9fSx7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi10YXJnZXQiLCJsaWJyYXJ5IjoiZmxhdGljb24ifSwiX2lkIjoiODgzOTk2OSIsInRpdGxlIjoiR2V0IHlvdXIgZHJlYW0iLCJkZXNjcmlwdGlvbiI6IkF0IGl0cyBjb3JlLCBldmVyeSBidXNpbmVzcyBoYXMgdW5pcXVlIHNvbHV0aW9ucyB0aGF0IGluc3BpcmUgaW5ub3ZhdGlvbiBhbmQgcHJvZ3Jlc3MuIiwiYnRuX2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9fV0sInRpdGxlX2NvbG9yIjoiI2ZmZmZmZiIsImRlc2NyaXB0aW9uX2NvbG9yIjoiI0ZGRkZGRiIsImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X3Byb2Nlc3MifQ==\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-79ee8ab elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"79ee8ab\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4af1814\" data-id=\"4af1814\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n                <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-505fb45 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"505fb45\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-7223f1c\" data-id=\"7223f1c\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-e7c238e elementor-widget elementor-widget-google_maps\" data-id=\"e7c238e\" data-element_type=\"widget\" data-widget_type=\"google_maps.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-custom-embed\">nttt<iframe loading=\"lazy\"ntttttsrc=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"nttttttitle=\"10u00b057&#039;11.2&quot;N 106u00b045&#039;13.0&quot;E\"ntttttaria-label=\"10u00b057&#039;11.2&quot;N 106u00b045&#039;13.0&quot;E\"nttt></iframe>ntt</div>ntttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-0225539\" data-id=\"0225539\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjUxZDU0M2EiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkNvbnRhY3QgdXMgZm9yIGFueSBraW5kIG9mIGhlbHAgYXQgYW55IHRpbWUuLi4iLCJ0aXRsZV9jb2xvciI6IiM4NUIyM0IiLCJfcGFkZGluZyI6eyJ1bml0IjoiJSIsInRvcCI6IjAiLCJyaWdodCI6IjUiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV9zcGFjZV9ib3R0b20iOnsidW5pdCI6InB4Iiwic2l6ZSI6MzMsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjozMCwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzgsInNpemVzIjpbXX0sImN0X2FuaW1hdGUiOiJ3b3cgZmxpcEluWCIsIl9wYWRkaW5nX3RhYmxldCI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"][elementor-element data=\"eyJpZCI6ImVkMGRjMWIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjdGY3X2lkIjoiOTc0Iiwic3R5bGVfbDEiOiJzdHlsZTIifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY3RmNyJ9\"]            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                    </div>n        </section>n        \",\"scripts\":[],\"styles\":[]}}'),(10384,3171,'_elementor_edit_mode','builder'),(10385,3171,'_elementor_template_type','wp-page'),(10386,3171,'_elementor_version','3.24.7'),(10387,3171,'_wp_page_template','default'),(10388,3171,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i cung c\\u1ea5p nhi\\u1ec1u lo\\u1ea1i s\\u1ea3n ph\\u1ea9m cho ng\\u00e0nh c\\u00f4ng nghi\\u1ec7p c\\u01a1 kh\\u00ed tr\\u00ean to\\u00e0n Vi\\u1ec7t Nam v\\u00e0 qu\\u1ed1c t\\u1ebf, \\u0111\\u1eb7c bi\\u1ec7t t\\u1ea1i c\\u00e1c th\\u1ecb tr\\u01b0\\u1eddng tr\\u1ecdng \\u0111i\\u1ec3m nh\\u01b0 Nh\\u1eadt B\\u1ea3n, H\\u00e0n Qu\\u1ed1c, Hoa K\\u1ef3 v\\u00e0 \\u00dac. Ch\\u00fang t\\u00f4i c\\u0169ng c\\u00f3 kinh nghi\\u1ec7m xu\\u1ea5t kh\\u1ea9u \\u0111\\u1ebfn c\\u00e1c th\\u1ecb tr\\u01b0\\u1eddng n\\u00e0y.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Th\\u1ebf m\\u1ea1nh l\\u1edbn nh\\u1ea5t c\\u1ee7a ch\\u00fang t\\u00f4i n\\u1eb1m \\u1edf \\u0111\\u1ed9i ng\\u0169 nh\\u00e2n l\\u1ef1c tr\\u1ebb trung, \\u0111am m\\u00ea h\\u1ecdc h\\u1ecfi, s\\u00e1ng t\\u1ea1o v\\u00e0 t\\u1ef1 tin, c\\u00f3 kh\\u1ea3 n\\u0103ng s\\u1ea3n xu\\u1ea5t \\u0111a d\\u1ea1ng c\\u00e1c s\\u1ea3n ph\\u1ea9m c\\u01a1 kh\\u00ed v\\u1edbi ch\\u1ea5t l\\u01b0\\u1ee3ng lu\\u00f4n \\u1ed5n \\u0111\\u1ecbnh.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/youtu.be\\/vUCVqLmXSPM?si=NDYrSC8zPIUGPj3l\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Kh\\u00e1ch h\\u00e0ng\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Nh\\u00e2n s\\u1ef1\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"S\\u1ed1 \\u0111\\u01a1n h\\u00e0ng m\\u1ed7i n\\u0103m\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ch\\u00fang t\\u00f4i \\u0111\\u00e3 b\\u1eaft \\u0111\\u1ea7u m\\u1edf m\\u1ed9t c\\u1eeda h\\u00e0ng tr\\u00ean Alibaba \\u0111\\u1ec3 k\\u1ebft n\\u1ed1i v\\u1edbi c\\u00e1c \\u0111\\u01a1n h\\u00e0ng t\\u1eeb kh\\u1eafp n\\u01a1i tr\\u00ean th\\u1ebf gi\\u1edbi.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0e89391\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i n\\u1ed7 l\\u1ef1c tr\\u1edf th\\u00e0nh m\\u1ed9t trong nh\\u1eefng c\\u00f4ng ty ch\\u1ebf bi\\u1ebfn c\\u01a1 kh\\u00ed h\\u00e0ng \\u0111\\u1ea7u c\\u1ee7a Vi\\u1ec7t Nam, cung c\\u1ea5p ra th\\u1ecb tr\\u01b0\\u1eddng qu\\u1ed1c t\\u1ebf v\\u00e0o n\\u0103m 2030. Trong t\\u01b0\\u01a1ng lai, ch\\u00fang t\\u00f4i h\\u01b0\\u1edbng \\u0111\\u1ebfn vi\\u1ec7c s\\u1ea3n xu\\u1ea5t c\\u00e1c s\\u1ea3n ph\\u1ea9m m\\u00e1y m\\u00f3c ho\\u00e0n ch\\u1ec9nh \\u0111\\u1ec3 giao tr\\u1ef1c ti\\u1ebfp \\u0111\\u1ebfn ng\\u01b0\\u1eddi s\\u1eed d\\u1ee5ng cu\\u1ed1i.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>M\\u1ee5c ti\\u00eau \\u0111\\u1ea1t \\u0111\\u01b0\\u1ee3c v\\u00e0o n\\u0103m 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"\\u0110\\u00f4ng \\u00c1 (Nh\\u1eadt B\\u1ea3n, H\\u00e0n Qu\\u1ed1c, v.v.): Xu\\u1ea5t kh\\u1ea9u c\\u00e1c linh ki\\u1ec7n m\\u00e1y m\\u00f3c thay th\\u1ebf, ph\\u1ee5 ki\\u1ec7n xe m\\u00e1y v\\u00e0 \\u00f4 t\\u00f4, ph\\u1ee5 ki\\u1ec7n ng\\u00e0nh n\\u01b0\\u1edbc, khu\\u00f4n m\\u1eabu v\\u00e0 c\\u00e1c b\\u1ed9 ph\\u1eadn c\\u01a1 kh\\u00ed kh\\u00e1c.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Ch\\u00e2u \\u00c2u (\\u0110\\u1ee9c, Bulgaria, H\\u00e0 Lan, v.v.): S\\u1ea3n xu\\u1ea5t khu\\u00f4n jig cho v\\u00f2ng bi \\u00f4 t\\u00f4 v\\u00e0 c\\u00e1c b\\u1ed9 ph\\u1eadn h\\u1ed9p \\u0111i\\u1ec7n cho m\\u00e1y m\\u00f3c t\\u1ef1 \\u0111\\u1ed9ng h\\u00f3a.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"Hoa K\\u1ef3: C\\u00e1c s\\u1ea3n ph\\u1ea9m li\\u00ean quan \\u0111\\u1ebfn thi\\u1ebft b\\u1ecb y t\\u1ebf, quang h\\u1ecdc v\\u00e0 thi\\u1ebft b\\u1ecb \\u00e2m thanh.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"\\u00dac: S\\u1ea3n ph\\u1ea9m kim lo\\u1ea1i t\\u1ea5m.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vi\\u1ec7t Nam: M\\u00e1y t\\u1ef1 \\u0111\\u1ed9ng h\\u00f3a nh\\u1ecf; bu l\\u00f4ng xe m\\u00e1y v\\u00e0 \\u00f4 t\\u00f4; s\\u1ea3n ph\\u1ea9m trong ng\\u00e0nh d\\u1ea7u kh\\u00ed.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"C\\u00e1c th\\u1ecb tr\\u01b0\\u1eddng v\\u00e0 s\\u1ea3n ph\\u1ea9m kh\\u00e1c.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i cung c\\u1ea5p d\\u1ecbch v\\u1ee5 trong nhi\\u1ec1u l\\u0129nh v\\u1ef1c.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ch\\u00fang t\\u00f4i lu\\u00f4n \\u0111\\u00e1p \\u1ee9ng y\\u00eau c\\u1ea7u thi\\u1ebft k\\u1ebf c\\u1ee7a kh\\u00e1ch h\\u00e0ng. Ngo\\u1ea1i h\\u00ecnh v\\u00e0 k\\u00edch th\\u01b0\\u1edbc l\\u00e0 nh\\u1eefng y\\u1ebfu t\\u1ed1 ch\\u00fang t\\u00f4i coi tr\\u1ecdng nh\\u1ea5t.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"vi|language\"],\"ct_animate\":\"wow fadeInUp\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"D\\u1ecbch v\\u1ee5 kh\\u00e1c\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"C\\u00f3 c\\u00e2u h\\u1ecfi n\\u00e0o kh\\u00f4ng?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Li\\u00ean h\\u1ec7 \\u0111\\u1ec3 nh\\u1eadn b\\u00e1o gi\\u00e1:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i c\\u00f3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c \\u0111\\u01a1n gi\\u1ea3n.\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ch\\u00fang t\\u00f4i lu\\u00f4n mang \\u0111\\u1ebfn c\\u1ea3m gi\\u00e1c an t\\u00e2m v\\u1ec1 ch\\u1ea5t l\\u01b0\\u1ee3ng v\\u00e0 ti\\u1ebfn \\u0111\\u1ed9.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"T\\u00ecm ch\\u00fang t\\u00f4i\",\"description\":\"Ch\\u00fang t\\u00f4i hi\\u1ec3u t\\u1ea7m quan tr\\u1ecdng c\\u1ee7a vi\\u1ec7c x\\u1eed l\\u00fd m\\u1ed7i d\\u1ef1 \\u00e1n theo m\\u1ed9t c\\u00e1ch ti\\u1ebfp c\\u1eadn to\\u00e0n di\\u1ec7n.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"K\\u1ebft n\\u1ed1i v\\u1edbi ch\\u00fang t\\u00f4i\",\"description\":\"\\u0110i\\u1ec1u l\\u00e0m ch\\u00fang t\\u00f4i kh\\u00e1c bi\\u1ec7t so v\\u1edbi c\\u00e1c c\\u00f4ng ty kh\\u00e1c l\\u00e0 chuy\\u00ean m\\u00f4n trong vi\\u1ec7c t\\u1ea1o ra c\\u00e1c gi\\u1ea3i ph\\u00e1p t\\u00f9y ch\\u1ec9nh.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Thanh to\\u00e1n cho ch\\u00fang t\\u00f4i\",\"description\":\"Ch\\u00fang t\\u00f4i khuy\\u1ebfn kh\\u00edch m\\u1ed7i th\\u00e0nh vi\\u00ean trong \\u0111\\u1ed9i ng\\u0169 tr\\u1edf th\\u00e0nh phi\\u00ean b\\u1ea3n t\\u1ed1t nh\\u1ea5t c\\u1ee7a ch\\u00ednh m\\u00ecnh, t\\u1ea1o ra m\\u1ed9t m\\u00f4i tr\\u01b0\\u1eddng linh ho\\u1ea1t v\\u00e0 h\\u1ee3p t\\u00e1c.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"\\u0110\\u1ea1t \\u0111\\u01b0\\u1ee3c \\u01b0\\u1edbc m\\u01a1 c\\u1ee7a b\\u1ea1n\",\"description\":\"C\\u1ed1t l\\u00f5i c\\u1ee7a m\\u1ed7i doanh nghi\\u1ec7p l\\u00e0 nh\\u1eefng gi\\u1ea3i ph\\u00e1p \\u0111\\u1ed9c \\u0111\\u00e1o, truy\\u1ec1n c\\u1ea3m h\\u1ee9ng cho s\\u1ef1 \\u0111\\u1ed5i m\\u1edbi v\\u00e0 ph\\u00e1t tri\\u1ec3n.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Li\\u00ean h\\u1ec7 v\\u1edbi ch\\u00fang t\\u00f4i b\\u1ea5t c\\u1ee9 l\\u00fac n\\u00e0o n\\u1ebfu b\\u1ea1n c\\u1ea7n s\\u1ef1 gi\\u00fap \\u0111\\u1ee1...\",\"title_color\":\"#85B23B\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(10389,3171,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(10390,3171,'_elementor_page_assets','a:2:{s:6:\"styles\";a:4:{i:0;s:18:\"widget-text-editor\";i:1;s:21:\"e-animation-slideInUp\";i:2;s:12:\"widget-image\";i:3;s:18:\"widget-google_maps\";}s:7:\"scripts\";a:9:{i:0;s:16:\"jquery-numerator\";i:1;s:20:\"ct-counter-widget-js\";i:2;s:11:\"progressbar\";i:3;s:16:\"waypoints-lib-js\";i:4;s:24:\"ct-progressbar-widget-js\";i:5;s:12:\"imagesloaded\";i:6;s:7:\"isotope\";i:7;s:25:\"ct-post-masonry-widget-js\";i:8;s:22:\"ct-post-grid-widget-js\";}}'),(10391,3171,'_elementor_css','a:6:{s:4:\"time\";i:1742179438;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:8:\"material\";i:1;s:8:\"flaticon\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(10392,3171,'_elementor_element_cache','{\"timeout\":1742265839,\"value\":{\"content\":\"        <section class=\"elementor-section elementor-top-section elementor-element elementor-element-2d2b67a elementor-section-stretched elementor-section-full_width slider-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"2d2b67a\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-no \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-d1bb387\" data-id=\"d1bb387\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImNjODZmNGQiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJyZXZzbGlkZXJ0aXRsZSI6IkhvbWUgMSIsInNob3J0Y29kZSI6IltyZXZfc2xpZGVyIGFsaWFzPVwiaG9tZS0xXCJdW1wvcmV2X3NsaWRlcl0ifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoic2xpZGVyX3Jldm9sdXRpb24ifQ==\"]        <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-2cea906 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"2cea906\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-8e117d0\" data-id=\"8e117d0\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjI0YjYyY2MiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkNoXHUwMGZhbmcgdFx1MDBmNGkgY3VuZyBjXHUxZWE1cCBuaGlcdTFlYzF1IGxvXHUxZWExaSBzXHUxZWEzbiBwaFx1MWVhOW0gY2hvIG5nXHUwMGUwbmggY1x1MDBmNG5nIG5naGlcdTFlYzdwIGNcdTAxYTEga2hcdTAwZWQgdHJcdTAwZWFuIHRvXHUwMGUwbiBWaVx1MWVjN3QgTmFtIHZcdTAwZTAgcXVcdTFlZDFjIHRcdTFlYmYsIFx1MDExMVx1MWViN2MgYmlcdTFlYzd0IHRcdTFlYTFpIGNcdTAwZTFjIHRoXHUxZWNiIHRyXHUwMWIwXHUxZWRkbmcgdHJcdTFlY2RuZyBcdTAxMTFpXHUxZWMzbSBuaFx1MDFiMCBOaFx1MWVhZHQgQlx1MWVhM24sIEhcdTAwZTBuIFF1XHUxZWQxYywgSG9hIEtcdTFlZjMgdlx1MDBlMCBcdTAwZGFjLiBDaFx1MDBmYW5nIHRcdTAwZjRpIGNcdTAxNjluZyBjXHUwMGYzIGtpbmggbmdoaVx1MWVjN20geHVcdTFlYTV0IGtoXHUxZWE5dSBcdTAxMTFcdTFlYmZuIGNcdTAwZTFjIHRoXHUxZWNiIHRyXHUwMWIwXHUxZWRkbmcgblx1MDBlMHkuIiwidGl0bGVfY29sb3IiOiIjODVCMjNCIiwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzYsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHQiOnsidW5pdCI6InB4Iiwic2l6ZSI6NDgsInNpemVzIjpbXX0sInN0eWxlIjoic3QtbGluZS1sZWZ0IiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMTYiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjoyNiwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzQsInNpemVzIjpbXX0sImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluVXAifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-909b449 wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"909b449\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Thu1ebf mu1ea1nh lu1edbn nhu1ea5t cu1ee7a chu00fang tu00f4i nu1eb1m u1edf u0111u1ed9i ngu0169 nhu00e2n lu1ef1c tru1ebb trung, u0111am mu00ea hu1ecdc hu1ecfi, su00e1ng tu1ea1o vu00e0 tu1ef1 tin, cu00f3 khu1ea3 nu0103ng su1ea3n xuu1ea5t u0111a du1ea1ng cu00e1c su1ea3n phu1ea9m cu01a1 khu00ed vu1edbi chu1ea5t lu01b0u1ee3ng luu00f4n u1ed5n u0111u1ecbnh.</p>tttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImM0YTIwMjgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJpbWFnZSI6eyJ1cmwiOiIiLCJpZCI6IiJ9LCJ2aWRlb19saW5rIjoiaHR0cHM6XC9cL3lvdXR1LmJlXC92VUNWcUxtWFNQTT9zaT1ORFlyU0M4elBJVUdQajNsIiwiYnRuX3ZpZGVvX3N0eWxlIjoic3R5bGUzIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIzMSIsInJpZ2h0IjoiMzgiLCJib3R0b20iOiIwIiwibGVmdCI6Ijc4IiwiaXNMaW5rZWQiOmZhbHNlfSwiX2Nzc19jbGFzc2VzIjoiZWwtaW5saW5lIHdvdyBmYWRlSW5SaWdodCIsIl9tYXJnaW5fdGFibGV0Ijp7InVuaXQiOiJweCIsInRvcCI6IjMxIiwicmlnaHQiOiIyMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiNjgiLCJpc0xpbmtlZCI6ZmFsc2V9LCJfYW5pbWF0aW9uIjoic2xpZGVJblVwIiwiX21hcmdpbl9tb2JpbGUiOnsidW5pdCI6InB4IiwidG9wIjoiMzEiLCJyaWdodCI6IjIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X3ZpZGVvX3BsYXllciJ9\"]tt<div class=\"elementor-element elementor-element-1fd7931 el-inline wow fadeInRight elementor-invisible elementor-widget elementor-widget-image\" data-id=\"1fd7931\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;slideInUp&quot;}\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" class=\"attachment-full size-full wp-image-2542\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-4fff345\" data-id=\"4fff345\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjU5MGYxYmUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjo1MCwic3VmZml4IjoiKyIsInRob3VzYW5kX3NlcGFyYXRvciI6IiIsInRob3VzYW5kX3NlcGFyYXRvcl9jaGFyIjoiICIsInRpdGxlIjoiS2hcdTAwZTFjaCBoXHUwMGUwbmciLCJzaG93X2ljb24iOiJ0cnVlIiwiY291bnRlcl9pY29uIjp7InZhbHVlIjoibWF0ZXJpYWwgem1kaSB6bWRpLWFzc2lnbm1lbnQtY2hlY2siLCJsaWJyYXJ5IjoibWF0ZXJpYWwifSwibnVtYmVyX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjQxIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJfY3NzX2NsYXNzZXMiOiJ0ZXh0LWNlbnRlci1zbSIsImljb25fdHlwZSI6ImltYWdlIiwiaWNvbl9pbWFnZSI6eyJ1cmwiOiJodHRwOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAxOVwvMTJcL2NvdW50ZXItaWNvbi0wMS5wbmciLCJpZCI6MTUxNX0sIl9hbmltYXRpb24iOiJub25lIiwiY3RfYW5pbWF0ZSI6IndvdyBmYWRlSW5VcCJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9jb3VudGVyIn0=\"][elementor-element data=\"eyJpZCI6IjdhNWYyMzkiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjoyMDAsInN1ZmZpeCI6IisiLCJ0aG91c2FuZF9zZXBhcmF0b3IiOiIiLCJ0aG91c2FuZF9zZXBhcmF0b3JfY2hhciI6IiAiLCJ0aXRsZSI6Ik5oXHUwMGUybiBzXHUxZWYxIiwic2hvd19pY29uIjoidHJ1ZSIsImNvdW50ZXJfaWNvbiI6eyJ2YWx1ZSI6Im1hdGVyaWFsIHptZGkgem1kaS1hc3NpZ25tZW50LWNoZWNrIiwibGlicmFyeSI6Im1hdGVyaWFsIn0sIm51bWJlcl90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiI0MSIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwiX2Nzc19jbGFzc2VzIjoidGV4dC1jZW50ZXItc20iLCJpY29uX3R5cGUiOiJpbWFnZSIsImljb25faW1hZ2UiOnsidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMTlcLzEyXC9jb3VudGVyLWljb24tMDIucG5nIiwiaWQiOjE1MTZ9LCJfYW5pbWF0aW9uIjoibm9uZSIsImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluVXAifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY291bnRlciJ9\"][elementor-element data=\"eyJpZCI6IjA0NTMxYzgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjoyMDAwLCJzdWZmaXgiOiIrIiwidGhvdXNhbmRfc2VwYXJhdG9yIjoiIiwidGhvdXNhbmRfc2VwYXJhdG9yX2NoYXIiOiIgIiwidGl0bGUiOiJTXHUxZWQxIFx1MDExMVx1MDFhMW4gaFx1MDBlMG5nIG1cdTFlZDdpIG5cdTAxMDNtIiwic2hvd19pY29uIjoidHJ1ZSIsImNvdW50ZXJfaWNvbiI6eyJ2YWx1ZSI6Im1hdGVyaWFsIHptZGkgem1kaS1hc3NpZ25tZW50LWNoZWNrIiwibGlicmFyeSI6Im1hdGVyaWFsIn0sIm51bWJlcl90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiI0MSIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwiX2Nzc19jbGFzc2VzIjoidGV4dC1jZW50ZXItc20iLCJpY29uX3R5cGUiOiJpbWFnZSIsImljb25faW1hZ2UiOnsidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMTlcLzEyXC9jb3VudGVyLWljb24tMDMucG5nIiwiaWQiOjE1MTd9LCJfYW5pbWF0aW9uIjoibm9uZSIsImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluVXAifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY291bnRlciJ9\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-348ba48\" data-id=\"348ba48\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-ed7e1d0 wow fadeInUp elementor-widget elementor-widget-image\" data-id=\"ed7e1d0\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" class=\"attachment-full size-full wp-image-2571\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntttt<div class=\"elementor-element elementor-element-3b54db6 wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"3b54db6\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Chu00fang tu00f4i u0111u00e3 bu1eaft u0111u1ea7u mu1edf mu1ed9t cu1eeda hu00e0ng tru00ean Alibaba u0111u1ec3 ku1ebft nu1ed1i vu1edbi cu00e1c u0111u01a1n hu00e0ng tu1eeb khu1eafp nu01a1i tru00ean thu1ebf giu1edbi.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-8b70e78 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"8b70e78\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-c2b95bd\" data-id=\"c2b95bd\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-b5a8ba3 elementor-widget elementor-widget-image\" data-id=\"b5a8ba3\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" class=\"attachment-full size-full wp-image-2268\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntttt<div class=\"elementor-element elementor-element-0e89391 elementor-widget elementor-widget-image\" data-id=\"0e89391\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" class=\"attachment-full size-full wp-image-2559\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-de7136f\" data-id=\"de7136f\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6Ijg0MDdhYmUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkNoXHUwMGZhbmcgdFx1MDBmNGkgblx1MWVkNyBsXHUxZWYxYyB0clx1MWVkZiB0aFx1MDBlMG5oIG1cdTFlZDl0IHRyb25nIG5oXHUxZWVmbmcgY1x1MDBmNG5nIHR5IGNoXHUxZWJmIGJpXHUxZWJmbiBjXHUwMWExIGtoXHUwMGVkIGhcdTAwZTBuZyBcdTAxMTFcdTFlYTd1IGNcdTFlZTdhIFZpXHUxZWM3dCBOYW0sIGN1bmcgY1x1MWVhNXAgcmEgdGhcdTFlY2IgdHJcdTAxYjBcdTFlZGRuZyBxdVx1MWVkMWMgdFx1MWViZiB2XHUwMGUwbyBuXHUwMTAzbSAyMDMwLiBUcm9uZyB0XHUwMWIwXHUwMWExbmcgbGFpLCBjaFx1MDBmYW5nIHRcdTAwZjRpIGhcdTAxYjBcdTFlZGJuZyBcdTAxMTFcdTFlYmZuIHZpXHUxZWM3YyBzXHUxZWEzbiB4dVx1MWVhNXQgY1x1MDBlMWMgc1x1MWVhM24gcGhcdTFlYTltIG1cdTAwZTF5IG1cdTAwZjNjIGhvXHUwMGUwbiBjaFx1MWVjOW5oIFx1MDExMVx1MWVjMyBnaWFvIHRyXHUxZWYxYyB0aVx1MWViZnAgXHUwMTExXHUxZWJmbiBuZ1x1MDFiMFx1MWVkZGkgc1x1MWVlZCBkXHUxZWU1bmcgY3VcdTFlZDFpLiIsInRpdGxlX2NvbG9yIjoiIzg1QjIzQiIsInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplIjp7InVuaXQiOiJweCIsInNpemUiOjM2LCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0Ijp7InVuaXQiOiJweCIsInNpemUiOjQ4LCJzaXplcyI6W119LCJzdHlsZSI6InN0LWxpbmUtbGVmdCIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiLTkiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV9zcGFjZV9ib3R0b20iOnsidW5pdCI6InB4Iiwic2l6ZSI6MTcsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjozMCwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzgsInNpemVzIjpbXX0sImN0X2FuaW1hdGUiOiJ3b3cgZmxpcEluWCIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX21vYmlsZSI6eyJ1bml0IjoicHgiLCJzaXplIjoyOCwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF9tb2JpbGUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzQsInNpemVzIjpbXX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]tt<div class=\"elementor-element elementor-element-0c8497c wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"0c8497c\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Mu1ee5c tiu00eau u0111u1ea1t u0111u01b0u1ee3c vu00e0o nu0103m 2026:</p>tttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6IjQ3NTRlZDYiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJwcm9ncmVzc2Jhcl9saXN0IjpbeyJ0aXRsZSI6Ilx1MDExMFx1MDBmNG5nIFx1MDBjMSAoTmhcdTFlYWR0IEJcdTFlYTNuLCBIXHUwMGUwbiBRdVx1MWVkMWMsIHYudi4pOiBYdVx1MWVhNXQga2hcdTFlYTl1IGNcdTAwZTFjIGxpbmgga2lcdTFlYzduIG1cdTAwZTF5IG1cdTAwZjNjIHRoYXkgdGhcdTFlYmYsIHBoXHUxZWU1IGtpXHUxZWM3biB4ZSBtXHUwMGUxeSB2XHUwMGUwIFx1MDBmNCB0XHUwMGY0LCBwaFx1MWVlNSBraVx1MWVjN24gbmdcdTAwZTBuaCBuXHUwMWIwXHUxZWRiYywga2h1XHUwMGY0biBtXHUxZWFidSB2XHUwMGUwIGNcdTAwZTFjIGJcdTFlZDkgcGhcdTFlYWRuIGNcdTAxYTEga2hcdTAwZWQga2hcdTAwZTFjLiIsInByb2dyZXNzX3R5cGUiOiIiLCJwZXJjZW50Ijp7InVuaXQiOiIlIiwic2l6ZSI6MzAsInNpemVzIjpbXX0sImRpc3BsYXlfcGVyY2VudGFnZSI6ImhpZGUiLCJpbm5lcl90ZXh0IjoiV2ViIERlc2lnbmVyIiwiX2lkIjoiOGI0YmNkNiJ9LHsidGl0bGUiOiJDaFx1MDBlMnUgXHUwMGMydSAoXHUwMTEwXHUxZWU5YywgQnVsZ2FyaWEsIEhcdTAwZTAgTGFuLCB2LnYuKTogU1x1MWVhM24geHVcdTFlYTV0IGtodVx1MDBmNG4gamlnIGNobyB2XHUwMGYybmcgYmkgXHUwMGY0IHRcdTAwZjQgdlx1MDBlMCBjXHUwMGUxYyBiXHUxZWQ5IHBoXHUxZWFkbiBoXHUxZWQ5cCBcdTAxMTFpXHUxZWM3biBjaG8gbVx1MDBlMXkgbVx1MDBmM2MgdFx1MWVmMSBcdTAxMTFcdTFlZDluZyBoXHUwMGYzYS4iLCJwcm9ncmVzc190eXBlIjoiIiwicGVyY2VudCI6eyJ1bml0IjoiJSIsInNpemUiOjEwLCJzaXplcyI6W119LCJkaXNwbGF5X3BlcmNlbnRhZ2UiOiJoaWRlIiwiaW5uZXJfdGV4dCI6IldlYiBEZXNpZ25lciIsIl9pZCI6IjZlMGY4NzcifSx7InRpdGxlIjoiSG9hIEtcdTFlZjM6IENcdTAwZTFjIHNcdTFlYTNuIHBoXHUxZWE5bSBsaVx1MDBlYW4gcXVhbiBcdTAxMTFcdTFlYmZuIHRoaVx1MWViZnQgYlx1MWVjYiB5IHRcdTFlYmYsIHF1YW5nIGhcdTFlY2RjIHZcdTAwZTAgdGhpXHUxZWJmdCBiXHUxZWNiIFx1MDBlMm0gdGhhbmguIiwicHJvZ3Jlc3NfdHlwZSI6IiIsInBlcmNlbnQiOnsidW5pdCI6IiUiLCJzaXplIjozMCwic2l6ZXMiOltdfSwiZGlzcGxheV9wZXJjZW50YWdlIjoic2hvdyIsIl9pZCI6IjIyMmViODEifSx7Il9pZCI6IjVlZWNjYjYiLCJ0aXRsZSI6Ilx1MDBkYWM6IFNcdTFlYTNuIHBoXHUxZWE5bSBraW0gbG9cdTFlYTFpIHRcdTFlYTVtLiIsInBlcmNlbnQiOnsidW5pdCI6IiUiLCJzaXplIjo4LCJzaXplcyI6W119fSx7Il9pZCI6IjEwZTU3NTAiLCJ0aXRsZSI6IlZpXHUxZWM3dCBOYW06IE1cdTAwZTF5IHRcdTFlZjEgXHUwMTExXHUxZWQ5bmcgaFx1MDBmM2EgbmhcdTFlY2Y7IGJ1IGxcdTAwZjRuZyB4ZSBtXHUwMGUxeSB2XHUwMGUwIFx1MDBmNCB0XHUwMGY0OyBzXHUxZWEzbiBwaFx1MWVhOW0gdHJvbmcgbmdcdTAwZTBuaCBkXHUxZWE3dSBraFx1MDBlZC4iLCJwZXJjZW50Ijp7InVuaXQiOiIlIiwic2l6ZSI6MjAsInNpemVzIjpbXX19LHsiX2lkIjoiZTE3YTE5NSIsInRpdGxlIjoiQ1x1MDBlMWMgdGhcdTFlY2IgdHJcdTAxYjBcdTFlZGRuZyB2XHUwMGUwIHNcdTFlYTNuIHBoXHUxZWE5bSBraFx1MDBlMWMuIiwicGVyY2VudCI6eyJ1bml0IjoiJSIsInNpemUiOjIsInNpemVzIjpbXX19XSwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiI3OCIsImlzTGlua2VkIjpmYWxzZX0sIl9tYXJnaW5fbW9iaWxlIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6dHJ1ZX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9wcm9ncmVzc2JhciJ9\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-b6145ce elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"b6145ce\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-e65d58b\" data-id=\"e65d58b\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjljZDU1ZGQiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkNoXHUwMGZhbmcgdFx1MDBmNGkgY3VuZyBjXHUxZWE1cCBkXHUxZWNiY2ggdlx1MWVlNSB0cm9uZyBuaGlcdTFlYzF1IGxcdTAxMjluaCB2XHUxZWYxYy4iLCJ0aXRsZV9jb2xvciI6IiM4NUIyM0IiLCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZSI6eyJ1bml0IjoicHgiLCJzaXplIjozNiwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodCI6eyJ1bml0IjoicHgiLCJzaXplIjo0OCwic2l6ZXMiOltdfSwic3R5bGUiOiJzdC1saW5lLWxlZnQiLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6dHJ1ZX0sInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjozMCwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzgsInNpemVzIjpbXX0sImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluTGVmdCIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX21vYmlsZSI6eyJ1bml0IjoicHgiLCJzaXplIjoyOCwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF9tb2JpbGUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzQsInNpemVzIjpbXX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-2067062\" data-id=\"2067062\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-956a238 wow fadeInRight elementor-widget elementor-widget-text-editor\" data-id=\"956a238\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Chu00fang tu00f4i luu00f4n u0111u00e1p u1ee9ng yu00eau cu1ea7u thiu1ebft ku1ebf cu1ee7a khu00e1ch hu00e0ng. Ngou1ea1i hu00ecnh vu00e0 ku00edch thu01b0u1edbc lu00e0 nhu1eefng yu1ebfu tu1ed1 chu00fang tu00f4i coi tru1ecdng nhu1ea5t.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-74328b6b elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"74328b6b\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4b9c9796\" data-id=\"4b9c9796\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjFjYTNiNmM1IiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsibGF5b3V0IjoiNCIsImxpbWl0Ijo0LCJmaWx0ZXJfZGVmYXVsdF90aXRsZSI6IkFsbCIsImNvbF9zbSI6IjEiLCJjb2xfbWQiOiIyIiwiY29sX2xnIjoiMiIsImNvbF94bCI6IjIiLCJidXR0b25fdGV4dCI6IlJlYWQgbW9yZSIsInNvdXJjZSI6WyJ2aXxsYW5ndWFnZSJdLCJjdF9hbmltYXRlIjoid293IGZhZGVJblVwIiwib3JkZXIiOiJhc2MifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3Rfc2VydmljZV9ncmlkIn0=\"][elementor-element data=\"eyJpZCI6IjI5NzFiOGIzIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGV4dCI6IkRcdTFlY2JjaCB2XHUxZWU1IGtoXHUwMGUxYyIsImxpbmsiOnsidXJsIjoiXC9zZXJ2aWNlcyIsImlzX2V4dGVybmFsIjoiIiwibm9mb2xsb3ciOiIifSwiYWxpZ24iOiJjZW50ZXIiLCJidG5faWNvbiI6eyJ2YWx1ZSI6Im1hdGVyaWFsIHptZGkgem1kaS1zZXR0aW5ncyIsImxpYnJhcnkiOiJtYXRlcmlhbCJ9LCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6Ii0xMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sInN0eWxlIjoiYnRuLXByZXNldDMiLCJfYW5pbWF0aW9uIjoibm9uZSJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9idXR0b24ifQ==\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-f43d465 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"f43d465\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-5310bd3\" data-id=\"5310bd3\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImJjZmM3MzUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjdGY3X2lkIjoiOTMyIiwibGF5b3V0IjoiMiIsImN0ZjdfdGl0bGUiOiJDXHUwMGYzIGNcdTAwZTJ1IGhcdTFlY2ZpIG5cdTAwZTBvIGtoXHUwMGY0bmc/IiwiY3RmN19kZXNjcmlwdGlvbiI6IkNhbGw6IDgwMCAyNTAgMzY5IiwiY3RmN19waG9uZSI6IjxzcGFuPkNhbGw6PFwvc3Bhbj4gMDk2ODg2MDM4NiIsImVsX3RpdGxlIjoiTGlcdTAwZWFuIGhcdTFlYzcgXHUwMTExXHUxZWMzIG5oXHUxZWFkbiBiXHUwMGUxbyBnaVx1MDBlMToiLCJjdF9hbmltYXRlIjoid293IGZsaXBJblgifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY3RmNyJ9\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-a9b49c5 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"a9b49c5\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n                            <div class=\"elementor-background-overlay\"></div>n                n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-1dcb85a\" data-id=\"1dcb85a\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n                <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-6c560a6 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"6c560a6\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-e82cd67\" data-id=\"e82cd67\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImVmNDE1MTEiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkNoXHUwMGZhbmcgdFx1MDBmNGkgY1x1MDBmMyBxdXkgdHJcdTAwZWNuaCBsXHUwMGUwbSB2aVx1MWVjN2MgXHUwMTExXHUwMWExbiBnaVx1MWVhM24uIiwidGl0bGVfY29sb3IiOiIjZmZmZmZmIiwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzYsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHQiOnsidW5pdCI6InB4Iiwic2l6ZSI6NDgsInNpemVzIjpbXX0sInN0eWxlIjoic3QtbGluZS1sZWZ0IiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOnRydWV9LCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzAsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjM4LCJzaXplcyI6W119LCJjdF9hbmltYXRlIjoid293IGZhZGVJbkxlZnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-3a08737\" data-id=\"3a08737\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-7aa11c2 wow fadeInRight elementor-widget elementor-widget-text-editor\" data-id=\"7aa11c2\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Chu00fang tu00f4i luu00f4n mang u0111u1ebfn cu1ea3m giu00e1c an tu00e2m vu1ec1 chu1ea5t lu01b0u1ee3ng vu00e0 tiu1ebfn u0111u1ed9.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n        [elementor-element data=\"eyJpZCI6IjlkNWVhMzIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X2xpc3QiOlt7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi1yZXNlYXJjaCIsImxpYnJhcnkiOiJmbGF0aWNvbiJ9LCJfaWQiOiIwNTVmZWYyIiwidGl0bGUiOiJUXHUwMGVjbSBjaFx1MDBmYW5nIHRcdTAwZjRpIiwiZGVzY3JpcHRpb24iOiJDaFx1MDBmYW5nIHRcdTAwZjRpIGhpXHUxZWMzdSB0XHUxZWE3bSBxdWFuIHRyXHUxZWNkbmcgY1x1MWVlN2EgdmlcdTFlYzdjIHhcdTFlZWQgbFx1MDBmZCBtXHUxZWQ3aSBkXHUxZWYxIFx1MDBlMW4gdGhlbyBtXHUxZWQ5dCBjXHUwMGUxY2ggdGlcdTFlYmZwIGNcdTFlYWRuIHRvXHUwMGUwbiBkaVx1MWVjN24uIiwiYnRuX2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9fSx7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi1uZXR3b3JrIiwibGlicmFyeSI6ImZsYXRpY29uIn0sIl9pZCI6IjM5ZTE0YjgiLCJ0aXRsZSI6IktcdTFlYmZ0IG5cdTFlZDFpIHZcdTFlZGJpIGNoXHUwMGZhbmcgdFx1MDBmNGkiLCJkZXNjcmlwdGlvbiI6Ilx1MDExMGlcdTFlYzF1IGxcdTAwZTBtIGNoXHUwMGZhbmcgdFx1MDBmNGkga2hcdTAwZTFjIGJpXHUxZWM3dCBzbyB2XHUxZWRiaSBjXHUwMGUxYyBjXHUwMGY0bmcgdHkga2hcdTAwZTFjIGxcdTAwZTAgY2h1eVx1MDBlYW4gbVx1MDBmNG4gdHJvbmcgdmlcdTFlYzdjIHRcdTFlYTFvIHJhIGNcdTAwZTFjIGdpXHUxZWEzaSBwaFx1MDBlMXAgdFx1MDBmOXkgY2hcdTFlYzluaC4iLCJidG5fbGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn19LHsiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZsYXRpY29uIGZsYXRpY29uLXdhbGxldCIsImxpYnJhcnkiOiJmbGF0aWNvbiJ9LCJfaWQiOiJmNWUxMGU4IiwidGl0bGUiOiJUaGFuaCB0b1x1MDBlMW4gY2hvIGNoXHUwMGZhbmcgdFx1MDBmNGkiLCJkZXNjcmlwdGlvbiI6IkNoXHUwMGZhbmcgdFx1MDBmNGkga2h1eVx1MWViZm4ga2hcdTAwZWRjaCBtXHUxZWQ3aSB0aFx1MDBlMG5oIHZpXHUwMGVhbiB0cm9uZyBcdTAxMTFcdTFlZDlpIG5nXHUwMTY5IHRyXHUxZWRmIHRoXHUwMGUwbmggcGhpXHUwMGVhbiBiXHUxZWEzbiB0XHUxZWQxdCBuaFx1MWVhNXQgY1x1MWVlN2EgY2hcdTAwZWRuaCBtXHUwMGVjbmgsIHRcdTFlYTFvIHJhIG1cdTFlZDl0IG1cdTAwZjRpIHRyXHUwMWIwXHUxZWRkbmcgbGluaCBob1x1MWVhMXQgdlx1MDBlMCBoXHUxZWUzcCB0XHUwMGUxYy4iLCJidG5fbGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn19LHsiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZsYXRpY29uIGZsYXRpY29uLXRhcmdldCIsImxpYnJhcnkiOiJmbGF0aWNvbiJ9LCJfaWQiOiI4ODM5OTY5IiwidGl0bGUiOiJcdTAxMTBcdTFlYTF0IFx1MDExMVx1MDFiMFx1MWVlM2MgXHUwMWIwXHUxZWRiYyBtXHUwMWExIGNcdTFlZTdhIGJcdTFlYTFuIiwiZGVzY3JpcHRpb24iOiJDXHUxZWQxdCBsXHUwMGY1aSBjXHUxZWU3YSBtXHUxZWQ3aSBkb2FuaCBuZ2hpXHUxZWM3cCBsXHUwMGUwIG5oXHUxZWVmbmcgZ2lcdTFlYTNpIHBoXHUwMGUxcCBcdTAxMTFcdTFlZDljIFx1MDExMVx1MDBlMW8sIHRydXlcdTFlYzFuIGNcdTFlYTNtIGhcdTFlZTluZyBjaG8gc1x1MWVmMSBcdTAxMTFcdTFlZDVpIG1cdTFlZGJpIHZcdTAwZTAgcGhcdTAwZTF0IHRyaVx1MWVjM24uIiwiYnRuX2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9fV0sInRpdGxlX2NvbG9yIjoiI2ZmZmZmZiIsImRlc2NyaXB0aW9uX2NvbG9yIjoiI0ZGRkZGRiIsImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X3Byb2Nlc3MifQ==\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-79ee8ab elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"79ee8ab\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4af1814\" data-id=\"4af1814\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n                <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-505fb45 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"505fb45\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-7223f1c\" data-id=\"7223f1c\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-e7c238e elementor-widget elementor-widget-google_maps\" data-id=\"e7c238e\" data-element_type=\"widget\" data-widget_type=\"google_maps.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-custom-embed\">nttt<iframe loading=\"lazy\"ntttttsrc=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"nttttttitle=\"10u00b057&#039;11.2&quot;N 106u00b045&#039;13.0&quot;E\"ntttttaria-label=\"10u00b057&#039;11.2&quot;N 106u00b045&#039;13.0&quot;E\"nttt></iframe>ntt</div>ntttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-0225539\" data-id=\"0225539\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjUxZDU0M2EiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkxpXHUwMGVhbiBoXHUxZWM3IHZcdTFlZGJpIGNoXHUwMGZhbmcgdFx1MDBmNGkgYlx1MWVhNXQgY1x1MWVlOSBsXHUwMGZhYyBuXHUwMGUwbyBuXHUxZWJmdSBiXHUxZWExbiBjXHUxZWE3biBzXHUxZWYxIGdpXHUwMGZhcCBcdTAxMTFcdTFlZTEuLi4iLCJ0aXRsZV9jb2xvciI6IiM4NUIyM0IiLCJfcGFkZGluZyI6eyJ1bml0IjoiJSIsInRvcCI6IjAiLCJyaWdodCI6IjUiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV9zcGFjZV9ib3R0b20iOnsidW5pdCI6InB4Iiwic2l6ZSI6MzMsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjozMCwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzgsInNpemVzIjpbXX0sImN0X2FuaW1hdGUiOiJ3b3cgZmxpcEluWCIsIl9wYWRkaW5nX3RhYmxldCI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"][elementor-element data=\"eyJpZCI6ImVkMGRjMWIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjdGY3X2lkIjoiOTc0Iiwic3R5bGVfbDEiOiJzdHlsZTIifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY3RmNyJ9\"]            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                    </div>n        </section>n        \",\"scripts\":[],\"styles\":[]}}'),(10393,3172,'_elementor_edit_mode','builder'),(10394,3172,'_elementor_template_type','wp-page'),(10395,3172,'_elementor_version','3.24.7'),(10396,3172,'_wp_page_template','default'),(10397,3172,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i cung c\\u1ea5p nhi\\u1ec1u lo\\u1ea1i s\\u1ea3n ph\\u1ea9m cho ng\\u00e0nh c\\u00f4ng nghi\\u1ec7p c\\u01a1 kh\\u00ed tr\\u00ean to\\u00e0n Vi\\u1ec7t Nam v\\u00e0 qu\\u1ed1c t\\u1ebf, \\u0111\\u1eb7c bi\\u1ec7t t\\u1ea1i c\\u00e1c th\\u1ecb tr\\u01b0\\u1eddng tr\\u1ecdng \\u0111i\\u1ec3m nh\\u01b0 Nh\\u1eadt B\\u1ea3n, H\\u00e0n Qu\\u1ed1c, Hoa K\\u1ef3 v\\u00e0 \\u00dac. Ch\\u00fang t\\u00f4i c\\u0169ng c\\u00f3 kinh nghi\\u1ec7m xu\\u1ea5t kh\\u1ea9u \\u0111\\u1ebfn c\\u00e1c th\\u1ecb tr\\u01b0\\u1eddng n\\u00e0y.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Th\\u1ebf m\\u1ea1nh l\\u1edbn nh\\u1ea5t c\\u1ee7a ch\\u00fang t\\u00f4i n\\u1eb1m \\u1edf \\u0111\\u1ed9i ng\\u0169 nh\\u00e2n l\\u1ef1c tr\\u1ebb trung, \\u0111am m\\u00ea h\\u1ecdc h\\u1ecfi, s\\u00e1ng t\\u1ea1o v\\u00e0 t\\u1ef1 tin, c\\u00f3 kh\\u1ea3 n\\u0103ng s\\u1ea3n xu\\u1ea5t \\u0111a d\\u1ea1ng c\\u00e1c s\\u1ea3n ph\\u1ea9m c\\u01a1 kh\\u00ed v\\u1edbi ch\\u1ea5t l\\u01b0\\u1ee3ng lu\\u00f4n \\u1ed5n \\u0111\\u1ecbnh.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/youtu.be\\/vUCVqLmXSPM?si=NDYrSC8zPIUGPj3l\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Kh\\u00e1ch h\\u00e0ng\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Nh\\u00e2n s\\u1ef1\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"S\\u1ed1 \\u0111\\u01a1n h\\u00e0ng m\\u1ed7i n\\u0103m\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ch\\u00fang t\\u00f4i \\u0111\\u00e3 b\\u1eaft \\u0111\\u1ea7u m\\u1edf m\\u1ed9t c\\u1eeda h\\u00e0ng tr\\u00ean Alibaba \\u0111\\u1ec3 k\\u1ebft n\\u1ed1i v\\u1edbi c\\u00e1c \\u0111\\u01a1n h\\u00e0ng t\\u1eeb kh\\u1eafp n\\u01a1i tr\\u00ean th\\u1ebf gi\\u1edbi.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0e89391\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i n\\u1ed7 l\\u1ef1c tr\\u1edf th\\u00e0nh m\\u1ed9t trong nh\\u1eefng c\\u00f4ng ty ch\\u1ebf bi\\u1ebfn c\\u01a1 kh\\u00ed h\\u00e0ng \\u0111\\u1ea7u c\\u1ee7a Vi\\u1ec7t Nam, cung c\\u1ea5p ra th\\u1ecb tr\\u01b0\\u1eddng qu\\u1ed1c t\\u1ebf v\\u00e0o n\\u0103m 2030. Trong t\\u01b0\\u01a1ng lai, ch\\u00fang t\\u00f4i h\\u01b0\\u1edbng \\u0111\\u1ebfn vi\\u1ec7c s\\u1ea3n xu\\u1ea5t c\\u00e1c s\\u1ea3n ph\\u1ea9m m\\u00e1y m\\u00f3c ho\\u00e0n ch\\u1ec9nh \\u0111\\u1ec3 giao tr\\u1ef1c ti\\u1ebfp \\u0111\\u1ebfn ng\\u01b0\\u1eddi s\\u1eed d\\u1ee5ng cu\\u1ed1i.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>M\\u1ee5c ti\\u00eau \\u0111\\u1ea1t \\u0111\\u01b0\\u1ee3c v\\u00e0o n\\u0103m 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"\\u0110\\u00f4ng \\u00c1 (Nh\\u1eadt B\\u1ea3n, H\\u00e0n Qu\\u1ed1c, v.v.): Xu\\u1ea5t kh\\u1ea9u c\\u00e1c linh ki\\u1ec7n m\\u00e1y m\\u00f3c thay th\\u1ebf, ph\\u1ee5 ki\\u1ec7n xe m\\u00e1y v\\u00e0 \\u00f4 t\\u00f4, ph\\u1ee5 ki\\u1ec7n ng\\u00e0nh n\\u01b0\\u1edbc, khu\\u00f4n m\\u1eabu v\\u00e0 c\\u00e1c b\\u1ed9 ph\\u1eadn c\\u01a1 kh\\u00ed kh\\u00e1c.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Ch\\u00e2u \\u00c2u (\\u0110\\u1ee9c, Bulgaria, H\\u00e0 Lan, v.v.): S\\u1ea3n xu\\u1ea5t khu\\u00f4n jig cho v\\u00f2ng bi \\u00f4 t\\u00f4 v\\u00e0 c\\u00e1c b\\u1ed9 ph\\u1eadn h\\u1ed9p \\u0111i\\u1ec7n cho m\\u00e1y m\\u00f3c t\\u1ef1 \\u0111\\u1ed9ng h\\u00f3a.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"Hoa K\\u1ef3: C\\u00e1c s\\u1ea3n ph\\u1ea9m li\\u00ean quan \\u0111\\u1ebfn thi\\u1ebft b\\u1ecb y t\\u1ebf, quang h\\u1ecdc v\\u00e0 thi\\u1ebft b\\u1ecb \\u00e2m thanh.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"\\u00dac: S\\u1ea3n ph\\u1ea9m kim lo\\u1ea1i t\\u1ea5m.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vi\\u1ec7t Nam: M\\u00e1y t\\u1ef1 \\u0111\\u1ed9ng h\\u00f3a nh\\u1ecf; bu l\\u00f4ng xe m\\u00e1y v\\u00e0 \\u00f4 t\\u00f4; s\\u1ea3n ph\\u1ea9m trong ng\\u00e0nh d\\u1ea7u kh\\u00ed.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"C\\u00e1c th\\u1ecb tr\\u01b0\\u1eddng v\\u00e0 s\\u1ea3n ph\\u1ea9m kh\\u00e1c.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i cung c\\u1ea5p d\\u1ecbch v\\u1ee5 trong nhi\\u1ec1u l\\u0129nh v\\u1ef1c.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ch\\u00fang t\\u00f4i lu\\u00f4n \\u0111\\u00e1p \\u1ee9ng y\\u00eau c\\u1ea7u thi\\u1ebft k\\u1ebf c\\u1ee7a kh\\u00e1ch h\\u00e0ng. Ngo\\u1ea1i h\\u00ecnh v\\u00e0 k\\u00edch th\\u01b0\\u1edbc l\\u00e0 nh\\u1eefng y\\u1ebfu t\\u1ed1 ch\\u00fang t\\u00f4i coi tr\\u1ecdng nh\\u1ea5t.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"vi|language\"],\"ct_animate\":\"wow fadeInUp\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"D\\u1ecbch v\\u1ee5 kh\\u00e1c\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"C\\u00f3 c\\u00e2u h\\u1ecfi n\\u00e0o kh\\u00f4ng?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Li\\u00ean h\\u1ec7 \\u0111\\u1ec3 nh\\u1eadn b\\u00e1o gi\\u00e1:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i c\\u00f3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c \\u0111\\u01a1n gi\\u1ea3n.\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ch\\u00fang t\\u00f4i lu\\u00f4n mang \\u0111\\u1ebfn c\\u1ea3m gi\\u00e1c an t\\u00e2m v\\u1ec1 ch\\u1ea5t l\\u01b0\\u1ee3ng v\\u00e0 ti\\u1ebfn \\u0111\\u1ed9.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"T\\u00ecm ch\\u00fang t\\u00f4i\",\"description\":\"Ch\\u00fang t\\u00f4i hi\\u1ec3u t\\u1ea7m quan tr\\u1ecdng c\\u1ee7a vi\\u1ec7c x\\u1eed l\\u00fd m\\u1ed7i d\\u1ef1 \\u00e1n theo m\\u1ed9t c\\u00e1ch ti\\u1ebfp c\\u1eadn to\\u00e0n di\\u1ec7n.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"K\\u1ebft n\\u1ed1i v\\u1edbi ch\\u00fang t\\u00f4i\",\"description\":\"\\u0110i\\u1ec1u l\\u00e0m ch\\u00fang t\\u00f4i kh\\u00e1c bi\\u1ec7t so v\\u1edbi c\\u00e1c c\\u00f4ng ty kh\\u00e1c l\\u00e0 chuy\\u00ean m\\u00f4n trong vi\\u1ec7c t\\u1ea1o ra c\\u00e1c gi\\u1ea3i ph\\u00e1p t\\u00f9y ch\\u1ec9nh.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Thanh to\\u00e1n cho ch\\u00fang t\\u00f4i\",\"description\":\"Ch\\u00fang t\\u00f4i khuy\\u1ebfn kh\\u00edch m\\u1ed7i th\\u00e0nh vi\\u00ean trong \\u0111\\u1ed9i ng\\u0169 tr\\u1edf th\\u00e0nh phi\\u00ean b\\u1ea3n t\\u1ed1t nh\\u1ea5t c\\u1ee7a ch\\u00ednh m\\u00ecnh, t\\u1ea1o ra m\\u1ed9t m\\u00f4i tr\\u01b0\\u1eddng linh ho\\u1ea1t v\\u00e0 h\\u1ee3p t\\u00e1c.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"\\u0110\\u1ea1t \\u0111\\u01b0\\u1ee3c \\u01b0\\u1edbc m\\u01a1 c\\u1ee7a b\\u1ea1n\",\"description\":\"C\\u1ed1t l\\u00f5i c\\u1ee7a m\\u1ed7i doanh nghi\\u1ec7p l\\u00e0 nh\\u1eefng gi\\u1ea3i ph\\u00e1p \\u0111\\u1ed9c \\u0111\\u00e1o, truy\\u1ec1n c\\u1ea3m h\\u1ee9ng cho s\\u1ef1 \\u0111\\u1ed5i m\\u1edbi v\\u00e0 ph\\u00e1t tri\\u1ec3n.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Li\\u00ean h\\u1ec7 v\\u1edbi ch\\u00fang t\\u00f4i b\\u1ea5t c\\u1ee9 l\\u00fac n\\u00e0o n\\u1ebfu b\\u1ea1n c\\u1ea7n s\\u1ef1 gi\\u00fap \\u0111\\u1ee1...\",\"title_color\":\"#85B23B\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(10398,3172,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(10399,3172,'_elementor_page_assets','a:2:{s:6:\"styles\";a:4:{i:0;s:18:\"widget-text-editor\";i:1;s:21:\"e-animation-slideInUp\";i:2;s:12:\"widget-image\";i:3;s:18:\"widget-google_maps\";}s:7:\"scripts\";a:9:{i:0;s:16:\"jquery-numerator\";i:1;s:20:\"ct-counter-widget-js\";i:2;s:11:\"progressbar\";i:3;s:16:\"waypoints-lib-js\";i:4;s:24:\"ct-progressbar-widget-js\";i:5;s:12:\"imagesloaded\";i:6;s:7:\"isotope\";i:7;s:25:\"ct-post-masonry-widget-js\";i:8;s:22:\"ct-post-grid-widget-js\";}}'),(10400,3172,'_elementor_css','a:6:{s:4:\"time\";i:1742179438;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:8:\"material\";i:1;s:8:\"flaticon\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(10401,3172,'_elementor_element_cache','{\"timeout\":1742265839,\"value\":{\"content\":\"        <section class=\"elementor-section elementor-top-section elementor-element elementor-element-2d2b67a elementor-section-stretched elementor-section-full_width slider-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"2d2b67a\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-no \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-d1bb387\" data-id=\"d1bb387\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImNjODZmNGQiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJyZXZzbGlkZXJ0aXRsZSI6IkhvbWUgMSIsInNob3J0Y29kZSI6IltyZXZfc2xpZGVyIGFsaWFzPVwiaG9tZS0xXCJdW1wvcmV2X3NsaWRlcl0ifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoic2xpZGVyX3Jldm9sdXRpb24ifQ==\"]        <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-2cea906 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"2cea906\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-8e117d0\" data-id=\"8e117d0\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjI0YjYyY2MiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkNoXHUwMGZhbmcgdFx1MDBmNGkgY3VuZyBjXHUxZWE1cCBuaGlcdTFlYzF1IGxvXHUxZWExaSBzXHUxZWEzbiBwaFx1MWVhOW0gY2hvIG5nXHUwMGUwbmggY1x1MDBmNG5nIG5naGlcdTFlYzdwIGNcdTAxYTEga2hcdTAwZWQgdHJcdTAwZWFuIHRvXHUwMGUwbiBWaVx1MWVjN3QgTmFtIHZcdTAwZTAgcXVcdTFlZDFjIHRcdTFlYmYsIFx1MDExMVx1MWViN2MgYmlcdTFlYzd0IHRcdTFlYTFpIGNcdTAwZTFjIHRoXHUxZWNiIHRyXHUwMWIwXHUxZWRkbmcgdHJcdTFlY2RuZyBcdTAxMTFpXHUxZWMzbSBuaFx1MDFiMCBOaFx1MWVhZHQgQlx1MWVhM24sIEhcdTAwZTBuIFF1XHUxZWQxYywgSG9hIEtcdTFlZjMgdlx1MDBlMCBcdTAwZGFjLiBDaFx1MDBmYW5nIHRcdTAwZjRpIGNcdTAxNjluZyBjXHUwMGYzIGtpbmggbmdoaVx1MWVjN20geHVcdTFlYTV0IGtoXHUxZWE5dSBcdTAxMTFcdTFlYmZuIGNcdTAwZTFjIHRoXHUxZWNiIHRyXHUwMWIwXHUxZWRkbmcgblx1MDBlMHkuIiwidGl0bGVfY29sb3IiOiIjODVCMjNCIiwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzYsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHQiOnsidW5pdCI6InB4Iiwic2l6ZSI6NDgsInNpemVzIjpbXX0sInN0eWxlIjoic3QtbGluZS1sZWZ0IiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMTYiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjoyNiwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzQsInNpemVzIjpbXX0sImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluVXAifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-909b449 wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"909b449\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Thu1ebf mu1ea1nh lu1edbn nhu1ea5t cu1ee7a chu00fang tu00f4i nu1eb1m u1edf u0111u1ed9i ngu0169 nhu00e2n lu1ef1c tru1ebb trung, u0111am mu00ea hu1ecdc hu1ecfi, su00e1ng tu1ea1o vu00e0 tu1ef1 tin, cu00f3 khu1ea3 nu0103ng su1ea3n xuu1ea5t u0111a du1ea1ng cu00e1c su1ea3n phu1ea9m cu01a1 khu00ed vu1edbi chu1ea5t lu01b0u1ee3ng luu00f4n u1ed5n u0111u1ecbnh.</p>tttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImM0YTIwMjgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJpbWFnZSI6eyJ1cmwiOiIiLCJpZCI6IiJ9LCJ2aWRlb19saW5rIjoiaHR0cHM6XC9cL3lvdXR1LmJlXC92VUNWcUxtWFNQTT9zaT1ORFlyU0M4elBJVUdQajNsIiwiYnRuX3ZpZGVvX3N0eWxlIjoic3R5bGUzIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIzMSIsInJpZ2h0IjoiMzgiLCJib3R0b20iOiIwIiwibGVmdCI6Ijc4IiwiaXNMaW5rZWQiOmZhbHNlfSwiX2Nzc19jbGFzc2VzIjoiZWwtaW5saW5lIHdvdyBmYWRlSW5SaWdodCIsIl9tYXJnaW5fdGFibGV0Ijp7InVuaXQiOiJweCIsInRvcCI6IjMxIiwicmlnaHQiOiIyMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiNjgiLCJpc0xpbmtlZCI6ZmFsc2V9LCJfYW5pbWF0aW9uIjoic2xpZGVJblVwIiwiX21hcmdpbl9tb2JpbGUiOnsidW5pdCI6InB4IiwidG9wIjoiMzEiLCJyaWdodCI6IjIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X3ZpZGVvX3BsYXllciJ9\"]tt<div class=\"elementor-element elementor-element-1fd7931 el-inline wow fadeInRight elementor-invisible elementor-widget elementor-widget-image\" data-id=\"1fd7931\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;slideInUp&quot;}\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" class=\"attachment-full size-full wp-image-2542\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-4fff345\" data-id=\"4fff345\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjU5MGYxYmUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjo1MCwic3VmZml4IjoiKyIsInRob3VzYW5kX3NlcGFyYXRvciI6IiIsInRob3VzYW5kX3NlcGFyYXRvcl9jaGFyIjoiICIsInRpdGxlIjoiS2hcdTAwZTFjaCBoXHUwMGUwbmciLCJzaG93X2ljb24iOiJ0cnVlIiwiY291bnRlcl9pY29uIjp7InZhbHVlIjoibWF0ZXJpYWwgem1kaSB6bWRpLWFzc2lnbm1lbnQtY2hlY2siLCJsaWJyYXJ5IjoibWF0ZXJpYWwifSwibnVtYmVyX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjQxIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJfY3NzX2NsYXNzZXMiOiJ0ZXh0LWNlbnRlci1zbSIsImljb25fdHlwZSI6ImltYWdlIiwiaWNvbl9pbWFnZSI6eyJ1cmwiOiJodHRwOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAxOVwvMTJcL2NvdW50ZXItaWNvbi0wMS5wbmciLCJpZCI6MTUxNX0sIl9hbmltYXRpb24iOiJub25lIiwiY3RfYW5pbWF0ZSI6IndvdyBmYWRlSW5VcCJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9jb3VudGVyIn0=\"][elementor-element data=\"eyJpZCI6IjdhNWYyMzkiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjoyMDAsInN1ZmZpeCI6IisiLCJ0aG91c2FuZF9zZXBhcmF0b3IiOiIiLCJ0aG91c2FuZF9zZXBhcmF0b3JfY2hhciI6IiAiLCJ0aXRsZSI6Ik5oXHUwMGUybiBzXHUxZWYxIiwic2hvd19pY29uIjoidHJ1ZSIsImNvdW50ZXJfaWNvbiI6eyJ2YWx1ZSI6Im1hdGVyaWFsIHptZGkgem1kaS1hc3NpZ25tZW50LWNoZWNrIiwibGlicmFyeSI6Im1hdGVyaWFsIn0sIm51bWJlcl90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiI0MSIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwiX2Nzc19jbGFzc2VzIjoidGV4dC1jZW50ZXItc20iLCJpY29uX3R5cGUiOiJpbWFnZSIsImljb25faW1hZ2UiOnsidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMTlcLzEyXC9jb3VudGVyLWljb24tMDIucG5nIiwiaWQiOjE1MTZ9LCJfYW5pbWF0aW9uIjoibm9uZSIsImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluVXAifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY291bnRlciJ9\"][elementor-element data=\"eyJpZCI6IjA0NTMxYzgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjoyMDAwLCJzdWZmaXgiOiIrIiwidGhvdXNhbmRfc2VwYXJhdG9yIjoiIiwidGhvdXNhbmRfc2VwYXJhdG9yX2NoYXIiOiIgIiwidGl0bGUiOiJTXHUxZWQxIFx1MDExMVx1MDFhMW4gaFx1MDBlMG5nIG1cdTFlZDdpIG5cdTAxMDNtIiwic2hvd19pY29uIjoidHJ1ZSIsImNvdW50ZXJfaWNvbiI6eyJ2YWx1ZSI6Im1hdGVyaWFsIHptZGkgem1kaS1hc3NpZ25tZW50LWNoZWNrIiwibGlicmFyeSI6Im1hdGVyaWFsIn0sIm51bWJlcl90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiI0MSIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwiX2Nzc19jbGFzc2VzIjoidGV4dC1jZW50ZXItc20iLCJpY29uX3R5cGUiOiJpbWFnZSIsImljb25faW1hZ2UiOnsidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMTlcLzEyXC9jb3VudGVyLWljb24tMDMucG5nIiwiaWQiOjE1MTd9LCJfYW5pbWF0aW9uIjoibm9uZSIsImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluVXAifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY291bnRlciJ9\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-348ba48\" data-id=\"348ba48\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-ed7e1d0 wow fadeInUp elementor-widget elementor-widget-image\" data-id=\"ed7e1d0\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" class=\"attachment-full size-full wp-image-2571\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntttt<div class=\"elementor-element elementor-element-3b54db6 wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"3b54db6\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Chu00fang tu00f4i u0111u00e3 bu1eaft u0111u1ea7u mu1edf mu1ed9t cu1eeda hu00e0ng tru00ean Alibaba u0111u1ec3 ku1ebft nu1ed1i vu1edbi cu00e1c u0111u01a1n hu00e0ng tu1eeb khu1eafp nu01a1i tru00ean thu1ebf giu1edbi.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-8b70e78 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"8b70e78\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-c2b95bd\" data-id=\"c2b95bd\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-b5a8ba3 elementor-widget elementor-widget-image\" data-id=\"b5a8ba3\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" class=\"attachment-full size-full wp-image-2268\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntttt<div class=\"elementor-element elementor-element-0e89391 elementor-widget elementor-widget-image\" data-id=\"0e89391\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" class=\"attachment-full size-full wp-image-2559\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-de7136f\" data-id=\"de7136f\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6Ijg0MDdhYmUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkNoXHUwMGZhbmcgdFx1MDBmNGkgblx1MWVkNyBsXHUxZWYxYyB0clx1MWVkZiB0aFx1MDBlMG5oIG1cdTFlZDl0IHRyb25nIG5oXHUxZWVmbmcgY1x1MDBmNG5nIHR5IGNoXHUxZWJmIGJpXHUxZWJmbiBjXHUwMWExIGtoXHUwMGVkIGhcdTAwZTBuZyBcdTAxMTFcdTFlYTd1IGNcdTFlZTdhIFZpXHUxZWM3dCBOYW0sIGN1bmcgY1x1MWVhNXAgcmEgdGhcdTFlY2IgdHJcdTAxYjBcdTFlZGRuZyBxdVx1MWVkMWMgdFx1MWViZiB2XHUwMGUwbyBuXHUwMTAzbSAyMDMwLiBUcm9uZyB0XHUwMWIwXHUwMWExbmcgbGFpLCBjaFx1MDBmYW5nIHRcdTAwZjRpIGhcdTAxYjBcdTFlZGJuZyBcdTAxMTFcdTFlYmZuIHZpXHUxZWM3YyBzXHUxZWEzbiB4dVx1MWVhNXQgY1x1MDBlMWMgc1x1MWVhM24gcGhcdTFlYTltIG1cdTAwZTF5IG1cdTAwZjNjIGhvXHUwMGUwbiBjaFx1MWVjOW5oIFx1MDExMVx1MWVjMyBnaWFvIHRyXHUxZWYxYyB0aVx1MWViZnAgXHUwMTExXHUxZWJmbiBuZ1x1MDFiMFx1MWVkZGkgc1x1MWVlZCBkXHUxZWU1bmcgY3VcdTFlZDFpLiIsInRpdGxlX2NvbG9yIjoiIzg1QjIzQiIsInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplIjp7InVuaXQiOiJweCIsInNpemUiOjM2LCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0Ijp7InVuaXQiOiJweCIsInNpemUiOjQ4LCJzaXplcyI6W119LCJzdHlsZSI6InN0LWxpbmUtbGVmdCIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiLTkiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV9zcGFjZV9ib3R0b20iOnsidW5pdCI6InB4Iiwic2l6ZSI6MTcsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjozMCwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzgsInNpemVzIjpbXX0sImN0X2FuaW1hdGUiOiJ3b3cgZmxpcEluWCIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX21vYmlsZSI6eyJ1bml0IjoicHgiLCJzaXplIjoyOCwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF9tb2JpbGUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzQsInNpemVzIjpbXX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]tt<div class=\"elementor-element elementor-element-0c8497c wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"0c8497c\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Mu1ee5c tiu00eau u0111u1ea1t u0111u01b0u1ee3c vu00e0o nu0103m 2026:</p>tttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6IjQ3NTRlZDYiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJwcm9ncmVzc2Jhcl9saXN0IjpbeyJ0aXRsZSI6Ilx1MDExMFx1MDBmNG5nIFx1MDBjMSAoTmhcdTFlYWR0IEJcdTFlYTNuLCBIXHUwMGUwbiBRdVx1MWVkMWMsIHYudi4pOiBYdVx1MWVhNXQga2hcdTFlYTl1IGNcdTAwZTFjIGxpbmgga2lcdTFlYzduIG1cdTAwZTF5IG1cdTAwZjNjIHRoYXkgdGhcdTFlYmYsIHBoXHUxZWU1IGtpXHUxZWM3biB4ZSBtXHUwMGUxeSB2XHUwMGUwIFx1MDBmNCB0XHUwMGY0LCBwaFx1MWVlNSBraVx1MWVjN24gbmdcdTAwZTBuaCBuXHUwMWIwXHUxZWRiYywga2h1XHUwMGY0biBtXHUxZWFidSB2XHUwMGUwIGNcdTAwZTFjIGJcdTFlZDkgcGhcdTFlYWRuIGNcdTAxYTEga2hcdTAwZWQga2hcdTAwZTFjLiIsInByb2dyZXNzX3R5cGUiOiIiLCJwZXJjZW50Ijp7InVuaXQiOiIlIiwic2l6ZSI6MzAsInNpemVzIjpbXX0sImRpc3BsYXlfcGVyY2VudGFnZSI6ImhpZGUiLCJpbm5lcl90ZXh0IjoiV2ViIERlc2lnbmVyIiwiX2lkIjoiOGI0YmNkNiJ9LHsidGl0bGUiOiJDaFx1MDBlMnUgXHUwMGMydSAoXHUwMTEwXHUxZWU5YywgQnVsZ2FyaWEsIEhcdTAwZTAgTGFuLCB2LnYuKTogU1x1MWVhM24geHVcdTFlYTV0IGtodVx1MDBmNG4gamlnIGNobyB2XHUwMGYybmcgYmkgXHUwMGY0IHRcdTAwZjQgdlx1MDBlMCBjXHUwMGUxYyBiXHUxZWQ5IHBoXHUxZWFkbiBoXHUxZWQ5cCBcdTAxMTFpXHUxZWM3biBjaG8gbVx1MDBlMXkgbVx1MDBmM2MgdFx1MWVmMSBcdTAxMTFcdTFlZDluZyBoXHUwMGYzYS4iLCJwcm9ncmVzc190eXBlIjoiIiwicGVyY2VudCI6eyJ1bml0IjoiJSIsInNpemUiOjEwLCJzaXplcyI6W119LCJkaXNwbGF5X3BlcmNlbnRhZ2UiOiJoaWRlIiwiaW5uZXJfdGV4dCI6IldlYiBEZXNpZ25lciIsIl9pZCI6IjZlMGY4NzcifSx7InRpdGxlIjoiSG9hIEtcdTFlZjM6IENcdTAwZTFjIHNcdTFlYTNuIHBoXHUxZWE5bSBsaVx1MDBlYW4gcXVhbiBcdTAxMTFcdTFlYmZuIHRoaVx1MWViZnQgYlx1MWVjYiB5IHRcdTFlYmYsIHF1YW5nIGhcdTFlY2RjIHZcdTAwZTAgdGhpXHUxZWJmdCBiXHUxZWNiIFx1MDBlMm0gdGhhbmguIiwicHJvZ3Jlc3NfdHlwZSI6IiIsInBlcmNlbnQiOnsidW5pdCI6IiUiLCJzaXplIjozMCwic2l6ZXMiOltdfSwiZGlzcGxheV9wZXJjZW50YWdlIjoic2hvdyIsIl9pZCI6IjIyMmViODEifSx7Il9pZCI6IjVlZWNjYjYiLCJ0aXRsZSI6Ilx1MDBkYWM6IFNcdTFlYTNuIHBoXHUxZWE5bSBraW0gbG9cdTFlYTFpIHRcdTFlYTVtLiIsInBlcmNlbnQiOnsidW5pdCI6IiUiLCJzaXplIjo4LCJzaXplcyI6W119fSx7Il9pZCI6IjEwZTU3NTAiLCJ0aXRsZSI6IlZpXHUxZWM3dCBOYW06IE1cdTAwZTF5IHRcdTFlZjEgXHUwMTExXHUxZWQ5bmcgaFx1MDBmM2EgbmhcdTFlY2Y7IGJ1IGxcdTAwZjRuZyB4ZSBtXHUwMGUxeSB2XHUwMGUwIFx1MDBmNCB0XHUwMGY0OyBzXHUxZWEzbiBwaFx1MWVhOW0gdHJvbmcgbmdcdTAwZTBuaCBkXHUxZWE3dSBraFx1MDBlZC4iLCJwZXJjZW50Ijp7InVuaXQiOiIlIiwic2l6ZSI6MjAsInNpemVzIjpbXX19LHsiX2lkIjoiZTE3YTE5NSIsInRpdGxlIjoiQ1x1MDBlMWMgdGhcdTFlY2IgdHJcdTAxYjBcdTFlZGRuZyB2XHUwMGUwIHNcdTFlYTNuIHBoXHUxZWE5bSBraFx1MDBlMWMuIiwicGVyY2VudCI6eyJ1bml0IjoiJSIsInNpemUiOjIsInNpemVzIjpbXX19XSwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiI3OCIsImlzTGlua2VkIjpmYWxzZX0sIl9tYXJnaW5fbW9iaWxlIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6dHJ1ZX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9wcm9ncmVzc2JhciJ9\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-b6145ce elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"b6145ce\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-e65d58b\" data-id=\"e65d58b\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjljZDU1ZGQiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkNoXHUwMGZhbmcgdFx1MDBmNGkgY3VuZyBjXHUxZWE1cCBkXHUxZWNiY2ggdlx1MWVlNSB0cm9uZyBuaGlcdTFlYzF1IGxcdTAxMjluaCB2XHUxZWYxYy4iLCJ0aXRsZV9jb2xvciI6IiM4NUIyM0IiLCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZSI6eyJ1bml0IjoicHgiLCJzaXplIjozNiwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodCI6eyJ1bml0IjoicHgiLCJzaXplIjo0OCwic2l6ZXMiOltdfSwic3R5bGUiOiJzdC1saW5lLWxlZnQiLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6dHJ1ZX0sInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjozMCwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzgsInNpemVzIjpbXX0sImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluTGVmdCIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX21vYmlsZSI6eyJ1bml0IjoicHgiLCJzaXplIjoyOCwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF9tb2JpbGUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzQsInNpemVzIjpbXX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-2067062\" data-id=\"2067062\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-956a238 wow fadeInRight elementor-widget elementor-widget-text-editor\" data-id=\"956a238\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Chu00fang tu00f4i luu00f4n u0111u00e1p u1ee9ng yu00eau cu1ea7u thiu1ebft ku1ebf cu1ee7a khu00e1ch hu00e0ng. Ngou1ea1i hu00ecnh vu00e0 ku00edch thu01b0u1edbc lu00e0 nhu1eefng yu1ebfu tu1ed1 chu00fang tu00f4i coi tru1ecdng nhu1ea5t.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-74328b6b elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"74328b6b\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4b9c9796\" data-id=\"4b9c9796\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjFjYTNiNmM1IiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsibGF5b3V0IjoiNCIsImxpbWl0Ijo0LCJmaWx0ZXJfZGVmYXVsdF90aXRsZSI6IkFsbCIsImNvbF9zbSI6IjEiLCJjb2xfbWQiOiIyIiwiY29sX2xnIjoiMiIsImNvbF94bCI6IjIiLCJidXR0b25fdGV4dCI6IlJlYWQgbW9yZSIsInNvdXJjZSI6WyJ2aXxsYW5ndWFnZSJdLCJjdF9hbmltYXRlIjoid293IGZhZGVJblVwIiwib3JkZXIiOiJhc2MifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3Rfc2VydmljZV9ncmlkIn0=\"][elementor-element data=\"eyJpZCI6IjI5NzFiOGIzIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGV4dCI6IkRcdTFlY2JjaCB2XHUxZWU1IGtoXHUwMGUxYyIsImxpbmsiOnsidXJsIjoiXC9zZXJ2aWNlcyIsImlzX2V4dGVybmFsIjoiIiwibm9mb2xsb3ciOiIifSwiYWxpZ24iOiJjZW50ZXIiLCJidG5faWNvbiI6eyJ2YWx1ZSI6Im1hdGVyaWFsIHptZGkgem1kaS1zZXR0aW5ncyIsImxpYnJhcnkiOiJtYXRlcmlhbCJ9LCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6Ii0xMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sInN0eWxlIjoiYnRuLXByZXNldDMiLCJfYW5pbWF0aW9uIjoibm9uZSJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9idXR0b24ifQ==\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-f43d465 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"f43d465\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-5310bd3\" data-id=\"5310bd3\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImJjZmM3MzUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjdGY3X2lkIjoiOTMyIiwibGF5b3V0IjoiMiIsImN0ZjdfdGl0bGUiOiJDXHUwMGYzIGNcdTAwZTJ1IGhcdTFlY2ZpIG5cdTAwZTBvIGtoXHUwMGY0bmc/IiwiY3RmN19kZXNjcmlwdGlvbiI6IkNhbGw6IDgwMCAyNTAgMzY5IiwiY3RmN19waG9uZSI6IjxzcGFuPkNhbGw6PFwvc3Bhbj4gMDk2ODg2MDM4NiIsImVsX3RpdGxlIjoiTGlcdTAwZWFuIGhcdTFlYzcgXHUwMTExXHUxZWMzIG5oXHUxZWFkbiBiXHUwMGUxbyBnaVx1MDBlMToiLCJjdF9hbmltYXRlIjoid293IGZsaXBJblgifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY3RmNyJ9\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-a9b49c5 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"a9b49c5\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n                            <div class=\"elementor-background-overlay\"></div>n                n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-1dcb85a\" data-id=\"1dcb85a\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n                <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-6c560a6 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"6c560a6\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-e82cd67\" data-id=\"e82cd67\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImVmNDE1MTEiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkNoXHUwMGZhbmcgdFx1MDBmNGkgY1x1MDBmMyBxdXkgdHJcdTAwZWNuaCBsXHUwMGUwbSB2aVx1MWVjN2MgXHUwMTExXHUwMWExbiBnaVx1MWVhM24uIiwidGl0bGVfY29sb3IiOiIjZmZmZmZmIiwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzYsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHQiOnsidW5pdCI6InB4Iiwic2l6ZSI6NDgsInNpemVzIjpbXX0sInN0eWxlIjoic3QtbGluZS1sZWZ0IiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOnRydWV9LCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzAsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjM4LCJzaXplcyI6W119LCJjdF9hbmltYXRlIjoid293IGZhZGVJbkxlZnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-3a08737\" data-id=\"3a08737\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-7aa11c2 wow fadeInRight elementor-widget elementor-widget-text-editor\" data-id=\"7aa11c2\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Chu00fang tu00f4i luu00f4n mang u0111u1ebfn cu1ea3m giu00e1c an tu00e2m vu1ec1 chu1ea5t lu01b0u1ee3ng vu00e0 tiu1ebfn u0111u1ed9.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n        [elementor-element data=\"eyJpZCI6IjlkNWVhMzIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X2xpc3QiOlt7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi1yZXNlYXJjaCIsImxpYnJhcnkiOiJmbGF0aWNvbiJ9LCJfaWQiOiIwNTVmZWYyIiwidGl0bGUiOiJUXHUwMGVjbSBjaFx1MDBmYW5nIHRcdTAwZjRpIiwiZGVzY3JpcHRpb24iOiJDaFx1MDBmYW5nIHRcdTAwZjRpIGhpXHUxZWMzdSB0XHUxZWE3bSBxdWFuIHRyXHUxZWNkbmcgY1x1MWVlN2EgdmlcdTFlYzdjIHhcdTFlZWQgbFx1MDBmZCBtXHUxZWQ3aSBkXHUxZWYxIFx1MDBlMW4gdGhlbyBtXHUxZWQ5dCBjXHUwMGUxY2ggdGlcdTFlYmZwIGNcdTFlYWRuIHRvXHUwMGUwbiBkaVx1MWVjN24uIiwiYnRuX2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9fSx7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi1uZXR3b3JrIiwibGlicmFyeSI6ImZsYXRpY29uIn0sIl9pZCI6IjM5ZTE0YjgiLCJ0aXRsZSI6IktcdTFlYmZ0IG5cdTFlZDFpIHZcdTFlZGJpIGNoXHUwMGZhbmcgdFx1MDBmNGkiLCJkZXNjcmlwdGlvbiI6Ilx1MDExMGlcdTFlYzF1IGxcdTAwZTBtIGNoXHUwMGZhbmcgdFx1MDBmNGkga2hcdTAwZTFjIGJpXHUxZWM3dCBzbyB2XHUxZWRiaSBjXHUwMGUxYyBjXHUwMGY0bmcgdHkga2hcdTAwZTFjIGxcdTAwZTAgY2h1eVx1MDBlYW4gbVx1MDBmNG4gdHJvbmcgdmlcdTFlYzdjIHRcdTFlYTFvIHJhIGNcdTAwZTFjIGdpXHUxZWEzaSBwaFx1MDBlMXAgdFx1MDBmOXkgY2hcdTFlYzluaC4iLCJidG5fbGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn19LHsiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZsYXRpY29uIGZsYXRpY29uLXdhbGxldCIsImxpYnJhcnkiOiJmbGF0aWNvbiJ9LCJfaWQiOiJmNWUxMGU4IiwidGl0bGUiOiJUaGFuaCB0b1x1MDBlMW4gY2hvIGNoXHUwMGZhbmcgdFx1MDBmNGkiLCJkZXNjcmlwdGlvbiI6IkNoXHUwMGZhbmcgdFx1MDBmNGkga2h1eVx1MWViZm4ga2hcdTAwZWRjaCBtXHUxZWQ3aSB0aFx1MDBlMG5oIHZpXHUwMGVhbiB0cm9uZyBcdTAxMTFcdTFlZDlpIG5nXHUwMTY5IHRyXHUxZWRmIHRoXHUwMGUwbmggcGhpXHUwMGVhbiBiXHUxZWEzbiB0XHUxZWQxdCBuaFx1MWVhNXQgY1x1MWVlN2EgY2hcdTAwZWRuaCBtXHUwMGVjbmgsIHRcdTFlYTFvIHJhIG1cdTFlZDl0IG1cdTAwZjRpIHRyXHUwMWIwXHUxZWRkbmcgbGluaCBob1x1MWVhMXQgdlx1MDBlMCBoXHUxZWUzcCB0XHUwMGUxYy4iLCJidG5fbGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn19LHsiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZsYXRpY29uIGZsYXRpY29uLXRhcmdldCIsImxpYnJhcnkiOiJmbGF0aWNvbiJ9LCJfaWQiOiI4ODM5OTY5IiwidGl0bGUiOiJcdTAxMTBcdTFlYTF0IFx1MDExMVx1MDFiMFx1MWVlM2MgXHUwMWIwXHUxZWRiYyBtXHUwMWExIGNcdTFlZTdhIGJcdTFlYTFuIiwiZGVzY3JpcHRpb24iOiJDXHUxZWQxdCBsXHUwMGY1aSBjXHUxZWU3YSBtXHUxZWQ3aSBkb2FuaCBuZ2hpXHUxZWM3cCBsXHUwMGUwIG5oXHUxZWVmbmcgZ2lcdTFlYTNpIHBoXHUwMGUxcCBcdTAxMTFcdTFlZDljIFx1MDExMVx1MDBlMW8sIHRydXlcdTFlYzFuIGNcdTFlYTNtIGhcdTFlZTluZyBjaG8gc1x1MWVmMSBcdTAxMTFcdTFlZDVpIG1cdTFlZGJpIHZcdTAwZTAgcGhcdTAwZTF0IHRyaVx1MWVjM24uIiwiYnRuX2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9fV0sInRpdGxlX2NvbG9yIjoiI2ZmZmZmZiIsImRlc2NyaXB0aW9uX2NvbG9yIjoiI0ZGRkZGRiIsImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X3Byb2Nlc3MifQ==\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-79ee8ab elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"79ee8ab\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4af1814\" data-id=\"4af1814\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n                <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-505fb45 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"505fb45\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-7223f1c\" data-id=\"7223f1c\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-e7c238e elementor-widget elementor-widget-google_maps\" data-id=\"e7c238e\" data-element_type=\"widget\" data-widget_type=\"google_maps.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-custom-embed\">nttt<iframe loading=\"lazy\"ntttttsrc=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"nttttttitle=\"10u00b057&#039;11.2&quot;N 106u00b045&#039;13.0&quot;E\"ntttttaria-label=\"10u00b057&#039;11.2&quot;N 106u00b045&#039;13.0&quot;E\"nttt></iframe>ntt</div>ntttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-0225539\" data-id=\"0225539\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjUxZDU0M2EiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkxpXHUwMGVhbiBoXHUxZWM3IHZcdTFlZGJpIGNoXHUwMGZhbmcgdFx1MDBmNGkgYlx1MWVhNXQgY1x1MWVlOSBsXHUwMGZhYyBuXHUwMGUwbyBuXHUxZWJmdSBiXHUxZWExbiBjXHUxZWE3biBzXHUxZWYxIGdpXHUwMGZhcCBcdTAxMTFcdTFlZTEuLi4iLCJ0aXRsZV9jb2xvciI6IiM4NUIyM0IiLCJfcGFkZGluZyI6eyJ1bml0IjoiJSIsInRvcCI6IjAiLCJyaWdodCI6IjUiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV9zcGFjZV9ib3R0b20iOnsidW5pdCI6InB4Iiwic2l6ZSI6MzMsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjozMCwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzgsInNpemVzIjpbXX0sImN0X2FuaW1hdGUiOiJ3b3cgZmxpcEluWCIsIl9wYWRkaW5nX3RhYmxldCI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"][elementor-element data=\"eyJpZCI6ImVkMGRjMWIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjdGY3X2lkIjoiOTc0Iiwic3R5bGVfbDEiOiJzdHlsZTIifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY3RmNyJ9\"]            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                    </div>n        </section>n        \",\"scripts\":[],\"styles\":[]}}'),(10402,3173,'_elementor_edit_mode','builder'),(10403,3173,'_elementor_template_type','wp-page'),(10404,3173,'_elementor_version','3.24.7'),(10405,3173,'_wp_page_template','default'),(10406,3173,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i cung c\\u1ea5p nhi\\u1ec1u lo\\u1ea1i s\\u1ea3n ph\\u1ea9m cho ng\\u00e0nh c\\u00f4ng nghi\\u1ec7p c\\u01a1 kh\\u00ed tr\\u00ean to\\u00e0n Vi\\u1ec7t Nam v\\u00e0 qu\\u1ed1c t\\u1ebf, \\u0111\\u1eb7c bi\\u1ec7t t\\u1ea1i c\\u00e1c th\\u1ecb tr\\u01b0\\u1eddng tr\\u1ecdng \\u0111i\\u1ec3m nh\\u01b0 Nh\\u1eadt B\\u1ea3n, H\\u00e0n Qu\\u1ed1c, Hoa K\\u1ef3 v\\u00e0 \\u00dac. Ch\\u00fang t\\u00f4i c\\u0169ng c\\u00f3 kinh nghi\\u1ec7m xu\\u1ea5t kh\\u1ea9u \\u0111\\u1ebfn c\\u00e1c th\\u1ecb tr\\u01b0\\u1eddng n\\u00e0y.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Th\\u1ebf m\\u1ea1nh l\\u1edbn nh\\u1ea5t c\\u1ee7a ch\\u00fang t\\u00f4i n\\u1eb1m \\u1edf \\u0111\\u1ed9i ng\\u0169 nh\\u00e2n l\\u1ef1c tr\\u1ebb trung, \\u0111am m\\u00ea h\\u1ecdc h\\u1ecfi, s\\u00e1ng t\\u1ea1o v\\u00e0 t\\u1ef1 tin, c\\u00f3 kh\\u1ea3 n\\u0103ng s\\u1ea3n xu\\u1ea5t \\u0111a d\\u1ea1ng c\\u00e1c s\\u1ea3n ph\\u1ea9m c\\u01a1 kh\\u00ed v\\u1edbi ch\\u1ea5t l\\u01b0\\u1ee3ng lu\\u00f4n \\u1ed5n \\u0111\\u1ecbnh.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=vUCVqLmXSPM\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Kh\\u00e1ch h\\u00e0ng\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Nh\\u00e2n s\\u1ef1\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"S\\u1ed1 \\u0111\\u01a1n h\\u00e0ng m\\u1ed7i n\\u0103m\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ch\\u00fang t\\u00f4i \\u0111\\u00e3 b\\u1eaft \\u0111\\u1ea7u m\\u1edf m\\u1ed9t c\\u1eeda h\\u00e0ng tr\\u00ean Alibaba \\u0111\\u1ec3 k\\u1ebft n\\u1ed1i v\\u1edbi c\\u00e1c \\u0111\\u01a1n h\\u00e0ng t\\u1eeb kh\\u1eafp n\\u01a1i tr\\u00ean th\\u1ebf gi\\u1edbi.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0e89391\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i n\\u1ed7 l\\u1ef1c tr\\u1edf th\\u00e0nh m\\u1ed9t trong nh\\u1eefng c\\u00f4ng ty ch\\u1ebf bi\\u1ebfn c\\u01a1 kh\\u00ed h\\u00e0ng \\u0111\\u1ea7u c\\u1ee7a Vi\\u1ec7t Nam, cung c\\u1ea5p ra th\\u1ecb tr\\u01b0\\u1eddng qu\\u1ed1c t\\u1ebf v\\u00e0o n\\u0103m 2030. Trong t\\u01b0\\u01a1ng lai, ch\\u00fang t\\u00f4i h\\u01b0\\u1edbng \\u0111\\u1ebfn vi\\u1ec7c s\\u1ea3n xu\\u1ea5t c\\u00e1c s\\u1ea3n ph\\u1ea9m m\\u00e1y m\\u00f3c ho\\u00e0n ch\\u1ec9nh \\u0111\\u1ec3 giao tr\\u1ef1c ti\\u1ebfp \\u0111\\u1ebfn ng\\u01b0\\u1eddi s\\u1eed d\\u1ee5ng cu\\u1ed1i.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>M\\u1ee5c ti\\u00eau \\u0111\\u1ea1t \\u0111\\u01b0\\u1ee3c v\\u00e0o n\\u0103m 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"\\u0110\\u00f4ng \\u00c1 (Nh\\u1eadt B\\u1ea3n, H\\u00e0n Qu\\u1ed1c, v.v.): Xu\\u1ea5t kh\\u1ea9u c\\u00e1c linh ki\\u1ec7n m\\u00e1y m\\u00f3c thay th\\u1ebf, ph\\u1ee5 ki\\u1ec7n xe m\\u00e1y v\\u00e0 \\u00f4 t\\u00f4, ph\\u1ee5 ki\\u1ec7n ng\\u00e0nh n\\u01b0\\u1edbc, khu\\u00f4n m\\u1eabu v\\u00e0 c\\u00e1c b\\u1ed9 ph\\u1eadn c\\u01a1 kh\\u00ed kh\\u00e1c.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Ch\\u00e2u \\u00c2u (\\u0110\\u1ee9c, Bulgaria, H\\u00e0 Lan, v.v.): S\\u1ea3n xu\\u1ea5t khu\\u00f4n jig cho v\\u00f2ng bi \\u00f4 t\\u00f4 v\\u00e0 c\\u00e1c b\\u1ed9 ph\\u1eadn h\\u1ed9p \\u0111i\\u1ec7n cho m\\u00e1y m\\u00f3c t\\u1ef1 \\u0111\\u1ed9ng h\\u00f3a.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"Hoa K\\u1ef3: C\\u00e1c s\\u1ea3n ph\\u1ea9m li\\u00ean quan \\u0111\\u1ebfn thi\\u1ebft b\\u1ecb y t\\u1ebf, quang h\\u1ecdc v\\u00e0 thi\\u1ebft b\\u1ecb \\u00e2m thanh.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"\\u00dac: S\\u1ea3n ph\\u1ea9m kim lo\\u1ea1i t\\u1ea5m.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vi\\u1ec7t Nam: M\\u00e1y t\\u1ef1 \\u0111\\u1ed9ng h\\u00f3a nh\\u1ecf; bu l\\u00f4ng xe m\\u00e1y v\\u00e0 \\u00f4 t\\u00f4; s\\u1ea3n ph\\u1ea9m trong ng\\u00e0nh d\\u1ea7u kh\\u00ed.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"C\\u00e1c th\\u1ecb tr\\u01b0\\u1eddng v\\u00e0 s\\u1ea3n ph\\u1ea9m kh\\u00e1c.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i cung c\\u1ea5p d\\u1ecbch v\\u1ee5 trong nhi\\u1ec1u l\\u0129nh v\\u1ef1c.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ch\\u00fang t\\u00f4i lu\\u00f4n \\u0111\\u00e1p \\u1ee9ng y\\u00eau c\\u1ea7u thi\\u1ebft k\\u1ebf c\\u1ee7a kh\\u00e1ch h\\u00e0ng. Ngo\\u1ea1i h\\u00ecnh v\\u00e0 k\\u00edch th\\u01b0\\u1edbc l\\u00e0 nh\\u1eefng y\\u1ebfu t\\u1ed1 ch\\u00fang t\\u00f4i coi tr\\u1ecdng nh\\u1ea5t.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"vi|language\"],\"ct_animate\":\"wow fadeInUp\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"D\\u1ecbch v\\u1ee5 kh\\u00e1c\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"C\\u00f3 c\\u00e2u h\\u1ecfi n\\u00e0o kh\\u00f4ng?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Li\\u00ean h\\u1ec7 \\u0111\\u1ec3 nh\\u1eadn b\\u00e1o gi\\u00e1:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i c\\u00f3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c \\u0111\\u01a1n gi\\u1ea3n.\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ch\\u00fang t\\u00f4i lu\\u00f4n mang \\u0111\\u1ebfn c\\u1ea3m gi\\u00e1c an t\\u00e2m v\\u1ec1 ch\\u1ea5t l\\u01b0\\u1ee3ng v\\u00e0 ti\\u1ebfn \\u0111\\u1ed9.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"T\\u00ecm ch\\u00fang t\\u00f4i\",\"description\":\"Ch\\u00fang t\\u00f4i hi\\u1ec3u t\\u1ea7m quan tr\\u1ecdng c\\u1ee7a vi\\u1ec7c x\\u1eed l\\u00fd m\\u1ed7i d\\u1ef1 \\u00e1n theo m\\u1ed9t c\\u00e1ch ti\\u1ebfp c\\u1eadn to\\u00e0n di\\u1ec7n.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"K\\u1ebft n\\u1ed1i v\\u1edbi ch\\u00fang t\\u00f4i\",\"description\":\"\\u0110i\\u1ec1u l\\u00e0m ch\\u00fang t\\u00f4i kh\\u00e1c bi\\u1ec7t so v\\u1edbi c\\u00e1c c\\u00f4ng ty kh\\u00e1c l\\u00e0 chuy\\u00ean m\\u00f4n trong vi\\u1ec7c t\\u1ea1o ra c\\u00e1c gi\\u1ea3i ph\\u00e1p t\\u00f9y ch\\u1ec9nh.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Thanh to\\u00e1n cho ch\\u00fang t\\u00f4i\",\"description\":\"Ch\\u00fang t\\u00f4i khuy\\u1ebfn kh\\u00edch m\\u1ed7i th\\u00e0nh vi\\u00ean trong \\u0111\\u1ed9i ng\\u0169 tr\\u1edf th\\u00e0nh phi\\u00ean b\\u1ea3n t\\u1ed1t nh\\u1ea5t c\\u1ee7a ch\\u00ednh m\\u00ecnh, t\\u1ea1o ra m\\u1ed9t m\\u00f4i tr\\u01b0\\u1eddng linh ho\\u1ea1t v\\u00e0 h\\u1ee3p t\\u00e1c.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"\\u0110\\u1ea1t \\u0111\\u01b0\\u1ee3c \\u01b0\\u1edbc m\\u01a1 c\\u1ee7a b\\u1ea1n\",\"description\":\"C\\u1ed1t l\\u00f5i c\\u1ee7a m\\u1ed7i doanh nghi\\u1ec7p l\\u00e0 nh\\u1eefng gi\\u1ea3i ph\\u00e1p \\u0111\\u1ed9c \\u0111\\u00e1o, truy\\u1ec1n c\\u1ea3m h\\u1ee9ng cho s\\u1ef1 \\u0111\\u1ed5i m\\u1edbi v\\u00e0 ph\\u00e1t tri\\u1ec3n.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Li\\u00ean h\\u1ec7 v\\u1edbi ch\\u00fang t\\u00f4i b\\u1ea5t c\\u1ee9 l\\u00fac n\\u00e0o n\\u1ebfu b\\u1ea1n c\\u1ea7n s\\u1ef1 gi\\u00fap \\u0111\\u1ee1...\",\"title_color\":\"#85B23B\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(10407,3173,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(10408,3173,'_elementor_page_assets','a:2:{s:6:\"styles\";a:4:{i:0;s:18:\"widget-text-editor\";i:1;s:21:\"e-animation-slideInUp\";i:2;s:12:\"widget-image\";i:3;s:18:\"widget-google_maps\";}s:7:\"scripts\";a:9:{i:0;s:16:\"jquery-numerator\";i:1;s:20:\"ct-counter-widget-js\";i:2;s:11:\"progressbar\";i:3;s:16:\"waypoints-lib-js\";i:4;s:24:\"ct-progressbar-widget-js\";i:5;s:12:\"imagesloaded\";i:6;s:7:\"isotope\";i:7;s:25:\"ct-post-masonry-widget-js\";i:8;s:22:\"ct-post-grid-widget-js\";}}'),(10409,3173,'_elementor_css','a:6:{s:4:\"time\";i:1742179438;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:8:\"material\";i:1;s:8:\"flaticon\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(10410,3173,'_elementor_element_cache','{\"timeout\":1742265839,\"value\":{\"content\":\"        <section class=\"elementor-section elementor-top-section elementor-element elementor-element-2d2b67a elementor-section-stretched elementor-section-full_width slider-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"2d2b67a\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-no \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-d1bb387\" data-id=\"d1bb387\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImNjODZmNGQiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJyZXZzbGlkZXJ0aXRsZSI6IkhvbWUgMSIsInNob3J0Y29kZSI6IltyZXZfc2xpZGVyIGFsaWFzPVwiaG9tZS0xXCJdW1wvcmV2X3NsaWRlcl0ifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoic2xpZGVyX3Jldm9sdXRpb24ifQ==\"]        <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-2cea906 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"2cea906\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-8e117d0\" data-id=\"8e117d0\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjI0YjYyY2MiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkNoXHUwMGZhbmcgdFx1MDBmNGkgY3VuZyBjXHUxZWE1cCBuaGlcdTFlYzF1IGxvXHUxZWExaSBzXHUxZWEzbiBwaFx1MWVhOW0gY2hvIG5nXHUwMGUwbmggY1x1MDBmNG5nIG5naGlcdTFlYzdwIGNcdTAxYTEga2hcdTAwZWQgdHJcdTAwZWFuIHRvXHUwMGUwbiBWaVx1MWVjN3QgTmFtIHZcdTAwZTAgcXVcdTFlZDFjIHRcdTFlYmYsIFx1MDExMVx1MWViN2MgYmlcdTFlYzd0IHRcdTFlYTFpIGNcdTAwZTFjIHRoXHUxZWNiIHRyXHUwMWIwXHUxZWRkbmcgdHJcdTFlY2RuZyBcdTAxMTFpXHUxZWMzbSBuaFx1MDFiMCBOaFx1MWVhZHQgQlx1MWVhM24sIEhcdTAwZTBuIFF1XHUxZWQxYywgSG9hIEtcdTFlZjMgdlx1MDBlMCBcdTAwZGFjLiBDaFx1MDBmYW5nIHRcdTAwZjRpIGNcdTAxNjluZyBjXHUwMGYzIGtpbmggbmdoaVx1MWVjN20geHVcdTFlYTV0IGtoXHUxZWE5dSBcdTAxMTFcdTFlYmZuIGNcdTAwZTFjIHRoXHUxZWNiIHRyXHUwMWIwXHUxZWRkbmcgblx1MDBlMHkuIiwidGl0bGVfY29sb3IiOiIjODVCMjNCIiwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzYsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHQiOnsidW5pdCI6InB4Iiwic2l6ZSI6NDgsInNpemVzIjpbXX0sInN0eWxlIjoic3QtbGluZS1sZWZ0IiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMTYiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjoyNiwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzQsInNpemVzIjpbXX0sImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluVXAifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-909b449 wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"909b449\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Thu1ebf mu1ea1nh lu1edbn nhu1ea5t cu1ee7a chu00fang tu00f4i nu1eb1m u1edf u0111u1ed9i ngu0169 nhu00e2n lu1ef1c tru1ebb trung, u0111am mu00ea hu1ecdc hu1ecfi, su00e1ng tu1ea1o vu00e0 tu1ef1 tin, cu00f3 khu1ea3 nu0103ng su1ea3n xuu1ea5t u0111a du1ea1ng cu00e1c su1ea3n phu1ea9m cu01a1 khu00ed vu1edbi chu1ea5t lu01b0u1ee3ng luu00f4n u1ed5n u0111u1ecbnh.</p>tttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImM0YTIwMjgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJpbWFnZSI6eyJ1cmwiOiIiLCJpZCI6IiJ9LCJ2aWRlb19saW5rIjoiaHR0cHM6XC9cL3lvdXR1LmJlXC92VUNWcUxtWFNQTT9zaT1ORFlyU0M4elBJVUdQajNsIiwiYnRuX3ZpZGVvX3N0eWxlIjoic3R5bGUzIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIzMSIsInJpZ2h0IjoiMzgiLCJib3R0b20iOiIwIiwibGVmdCI6Ijc4IiwiaXNMaW5rZWQiOmZhbHNlfSwiX2Nzc19jbGFzc2VzIjoiZWwtaW5saW5lIHdvdyBmYWRlSW5SaWdodCIsIl9tYXJnaW5fdGFibGV0Ijp7InVuaXQiOiJweCIsInRvcCI6IjMxIiwicmlnaHQiOiIyMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiNjgiLCJpc0xpbmtlZCI6ZmFsc2V9LCJfYW5pbWF0aW9uIjoic2xpZGVJblVwIiwiX21hcmdpbl9tb2JpbGUiOnsidW5pdCI6InB4IiwidG9wIjoiMzEiLCJyaWdodCI6IjIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X3ZpZGVvX3BsYXllciJ9\"]tt<div class=\"elementor-element elementor-element-1fd7931 el-inline wow fadeInRight elementor-invisible elementor-widget elementor-widget-image\" data-id=\"1fd7931\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;slideInUp&quot;}\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" class=\"attachment-full size-full wp-image-2542\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-4fff345\" data-id=\"4fff345\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjU5MGYxYmUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjo1MCwic3VmZml4IjoiKyIsInRob3VzYW5kX3NlcGFyYXRvciI6IiIsInRob3VzYW5kX3NlcGFyYXRvcl9jaGFyIjoiICIsInRpdGxlIjoiS2hcdTAwZTFjaCBoXHUwMGUwbmciLCJzaG93X2ljb24iOiJ0cnVlIiwiY291bnRlcl9pY29uIjp7InZhbHVlIjoibWF0ZXJpYWwgem1kaSB6bWRpLWFzc2lnbm1lbnQtY2hlY2siLCJsaWJyYXJ5IjoibWF0ZXJpYWwifSwibnVtYmVyX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjQxIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJfY3NzX2NsYXNzZXMiOiJ0ZXh0LWNlbnRlci1zbSIsImljb25fdHlwZSI6ImltYWdlIiwiaWNvbl9pbWFnZSI6eyJ1cmwiOiJodHRwOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAxOVwvMTJcL2NvdW50ZXItaWNvbi0wMS5wbmciLCJpZCI6MTUxNX0sIl9hbmltYXRpb24iOiJub25lIiwiY3RfYW5pbWF0ZSI6IndvdyBmYWRlSW5VcCJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9jb3VudGVyIn0=\"][elementor-element data=\"eyJpZCI6IjdhNWYyMzkiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjoyMDAsInN1ZmZpeCI6IisiLCJ0aG91c2FuZF9zZXBhcmF0b3IiOiIiLCJ0aG91c2FuZF9zZXBhcmF0b3JfY2hhciI6IiAiLCJ0aXRsZSI6Ik5oXHUwMGUybiBzXHUxZWYxIiwic2hvd19pY29uIjoidHJ1ZSIsImNvdW50ZXJfaWNvbiI6eyJ2YWx1ZSI6Im1hdGVyaWFsIHptZGkgem1kaS1hc3NpZ25tZW50LWNoZWNrIiwibGlicmFyeSI6Im1hdGVyaWFsIn0sIm51bWJlcl90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiI0MSIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwiX2Nzc19jbGFzc2VzIjoidGV4dC1jZW50ZXItc20iLCJpY29uX3R5cGUiOiJpbWFnZSIsImljb25faW1hZ2UiOnsidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMTlcLzEyXC9jb3VudGVyLWljb24tMDIucG5nIiwiaWQiOjE1MTZ9LCJfYW5pbWF0aW9uIjoibm9uZSIsImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluVXAifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY291bnRlciJ9\"][elementor-element data=\"eyJpZCI6IjA0NTMxYzgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjoyMDAwLCJzdWZmaXgiOiIrIiwidGhvdXNhbmRfc2VwYXJhdG9yIjoiIiwidGhvdXNhbmRfc2VwYXJhdG9yX2NoYXIiOiIgIiwidGl0bGUiOiJTXHUxZWQxIFx1MDExMVx1MDFhMW4gaFx1MDBlMG5nIG1cdTFlZDdpIG5cdTAxMDNtIiwic2hvd19pY29uIjoidHJ1ZSIsImNvdW50ZXJfaWNvbiI6eyJ2YWx1ZSI6Im1hdGVyaWFsIHptZGkgem1kaS1hc3NpZ25tZW50LWNoZWNrIiwibGlicmFyeSI6Im1hdGVyaWFsIn0sIm51bWJlcl90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiI0MSIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwiX2Nzc19jbGFzc2VzIjoidGV4dC1jZW50ZXItc20iLCJpY29uX3R5cGUiOiJpbWFnZSIsImljb25faW1hZ2UiOnsidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMTlcLzEyXC9jb3VudGVyLWljb24tMDMucG5nIiwiaWQiOjE1MTd9LCJfYW5pbWF0aW9uIjoibm9uZSIsImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluVXAifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY291bnRlciJ9\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-348ba48\" data-id=\"348ba48\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-ed7e1d0 wow fadeInUp elementor-widget elementor-widget-image\" data-id=\"ed7e1d0\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" class=\"attachment-full size-full wp-image-2571\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntttt<div class=\"elementor-element elementor-element-3b54db6 wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"3b54db6\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Chu00fang tu00f4i u0111u00e3 bu1eaft u0111u1ea7u mu1edf mu1ed9t cu1eeda hu00e0ng tru00ean Alibaba u0111u1ec3 ku1ebft nu1ed1i vu1edbi cu00e1c u0111u01a1n hu00e0ng tu1eeb khu1eafp nu01a1i tru00ean thu1ebf giu1edbi.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-8b70e78 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"8b70e78\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-c2b95bd\" data-id=\"c2b95bd\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-b5a8ba3 elementor-widget elementor-widget-image\" data-id=\"b5a8ba3\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" class=\"attachment-full size-full wp-image-2268\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntttt<div class=\"elementor-element elementor-element-0e89391 elementor-widget elementor-widget-image\" data-id=\"0e89391\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" class=\"attachment-full size-full wp-image-2559\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-de7136f\" data-id=\"de7136f\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6Ijg0MDdhYmUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkNoXHUwMGZhbmcgdFx1MDBmNGkgblx1MWVkNyBsXHUxZWYxYyB0clx1MWVkZiB0aFx1MDBlMG5oIG1cdTFlZDl0IHRyb25nIG5oXHUxZWVmbmcgY1x1MDBmNG5nIHR5IGNoXHUxZWJmIGJpXHUxZWJmbiBjXHUwMWExIGtoXHUwMGVkIGhcdTAwZTBuZyBcdTAxMTFcdTFlYTd1IGNcdTFlZTdhIFZpXHUxZWM3dCBOYW0sIGN1bmcgY1x1MWVhNXAgcmEgdGhcdTFlY2IgdHJcdTAxYjBcdTFlZGRuZyBxdVx1MWVkMWMgdFx1MWViZiB2XHUwMGUwbyBuXHUwMTAzbSAyMDMwLiBUcm9uZyB0XHUwMWIwXHUwMWExbmcgbGFpLCBjaFx1MDBmYW5nIHRcdTAwZjRpIGhcdTAxYjBcdTFlZGJuZyBcdTAxMTFcdTFlYmZuIHZpXHUxZWM3YyBzXHUxZWEzbiB4dVx1MWVhNXQgY1x1MDBlMWMgc1x1MWVhM24gcGhcdTFlYTltIG1cdTAwZTF5IG1cdTAwZjNjIGhvXHUwMGUwbiBjaFx1MWVjOW5oIFx1MDExMVx1MWVjMyBnaWFvIHRyXHUxZWYxYyB0aVx1MWViZnAgXHUwMTExXHUxZWJmbiBuZ1x1MDFiMFx1MWVkZGkgc1x1MWVlZCBkXHUxZWU1bmcgY3VcdTFlZDFpLiIsInRpdGxlX2NvbG9yIjoiIzg1QjIzQiIsInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplIjp7InVuaXQiOiJweCIsInNpemUiOjM2LCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0Ijp7InVuaXQiOiJweCIsInNpemUiOjQ4LCJzaXplcyI6W119LCJzdHlsZSI6InN0LWxpbmUtbGVmdCIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiLTkiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV9zcGFjZV9ib3R0b20iOnsidW5pdCI6InB4Iiwic2l6ZSI6MTcsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjozMCwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzgsInNpemVzIjpbXX0sImN0X2FuaW1hdGUiOiJ3b3cgZmxpcEluWCIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX21vYmlsZSI6eyJ1bml0IjoicHgiLCJzaXplIjoyOCwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF9tb2JpbGUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzQsInNpemVzIjpbXX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]tt<div class=\"elementor-element elementor-element-0c8497c wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"0c8497c\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Mu1ee5c tiu00eau u0111u1ea1t u0111u01b0u1ee3c vu00e0o nu0103m 2026:</p>tttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6IjQ3NTRlZDYiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJwcm9ncmVzc2Jhcl9saXN0IjpbeyJ0aXRsZSI6Ilx1MDExMFx1MDBmNG5nIFx1MDBjMSAoTmhcdTFlYWR0IEJcdTFlYTNuLCBIXHUwMGUwbiBRdVx1MWVkMWMsIHYudi4pOiBYdVx1MWVhNXQga2hcdTFlYTl1IGNcdTAwZTFjIGxpbmgga2lcdTFlYzduIG1cdTAwZTF5IG1cdTAwZjNjIHRoYXkgdGhcdTFlYmYsIHBoXHUxZWU1IGtpXHUxZWM3biB4ZSBtXHUwMGUxeSB2XHUwMGUwIFx1MDBmNCB0XHUwMGY0LCBwaFx1MWVlNSBraVx1MWVjN24gbmdcdTAwZTBuaCBuXHUwMWIwXHUxZWRiYywga2h1XHUwMGY0biBtXHUxZWFidSB2XHUwMGUwIGNcdTAwZTFjIGJcdTFlZDkgcGhcdTFlYWRuIGNcdTAxYTEga2hcdTAwZWQga2hcdTAwZTFjLiIsInByb2dyZXNzX3R5cGUiOiIiLCJwZXJjZW50Ijp7InVuaXQiOiIlIiwic2l6ZSI6MzAsInNpemVzIjpbXX0sImRpc3BsYXlfcGVyY2VudGFnZSI6ImhpZGUiLCJpbm5lcl90ZXh0IjoiV2ViIERlc2lnbmVyIiwiX2lkIjoiOGI0YmNkNiJ9LHsidGl0bGUiOiJDaFx1MDBlMnUgXHUwMGMydSAoXHUwMTEwXHUxZWU5YywgQnVsZ2FyaWEsIEhcdTAwZTAgTGFuLCB2LnYuKTogU1x1MWVhM24geHVcdTFlYTV0IGtodVx1MDBmNG4gamlnIGNobyB2XHUwMGYybmcgYmkgXHUwMGY0IHRcdTAwZjQgdlx1MDBlMCBjXHUwMGUxYyBiXHUxZWQ5IHBoXHUxZWFkbiBoXHUxZWQ5cCBcdTAxMTFpXHUxZWM3biBjaG8gbVx1MDBlMXkgbVx1MDBmM2MgdFx1MWVmMSBcdTAxMTFcdTFlZDluZyBoXHUwMGYzYS4iLCJwcm9ncmVzc190eXBlIjoiIiwicGVyY2VudCI6eyJ1bml0IjoiJSIsInNpemUiOjEwLCJzaXplcyI6W119LCJkaXNwbGF5X3BlcmNlbnRhZ2UiOiJoaWRlIiwiaW5uZXJfdGV4dCI6IldlYiBEZXNpZ25lciIsIl9pZCI6IjZlMGY4NzcifSx7InRpdGxlIjoiSG9hIEtcdTFlZjM6IENcdTAwZTFjIHNcdTFlYTNuIHBoXHUxZWE5bSBsaVx1MDBlYW4gcXVhbiBcdTAxMTFcdTFlYmZuIHRoaVx1MWViZnQgYlx1MWVjYiB5IHRcdTFlYmYsIHF1YW5nIGhcdTFlY2RjIHZcdTAwZTAgdGhpXHUxZWJmdCBiXHUxZWNiIFx1MDBlMm0gdGhhbmguIiwicHJvZ3Jlc3NfdHlwZSI6IiIsInBlcmNlbnQiOnsidW5pdCI6IiUiLCJzaXplIjozMCwic2l6ZXMiOltdfSwiZGlzcGxheV9wZXJjZW50YWdlIjoic2hvdyIsIl9pZCI6IjIyMmViODEifSx7Il9pZCI6IjVlZWNjYjYiLCJ0aXRsZSI6Ilx1MDBkYWM6IFNcdTFlYTNuIHBoXHUxZWE5bSBraW0gbG9cdTFlYTFpIHRcdTFlYTVtLiIsInBlcmNlbnQiOnsidW5pdCI6IiUiLCJzaXplIjo4LCJzaXplcyI6W119fSx7Il9pZCI6IjEwZTU3NTAiLCJ0aXRsZSI6IlZpXHUxZWM3dCBOYW06IE1cdTAwZTF5IHRcdTFlZjEgXHUwMTExXHUxZWQ5bmcgaFx1MDBmM2EgbmhcdTFlY2Y7IGJ1IGxcdTAwZjRuZyB4ZSBtXHUwMGUxeSB2XHUwMGUwIFx1MDBmNCB0XHUwMGY0OyBzXHUxZWEzbiBwaFx1MWVhOW0gdHJvbmcgbmdcdTAwZTBuaCBkXHUxZWE3dSBraFx1MDBlZC4iLCJwZXJjZW50Ijp7InVuaXQiOiIlIiwic2l6ZSI6MjAsInNpemVzIjpbXX19LHsiX2lkIjoiZTE3YTE5NSIsInRpdGxlIjoiQ1x1MDBlMWMgdGhcdTFlY2IgdHJcdTAxYjBcdTFlZGRuZyB2XHUwMGUwIHNcdTFlYTNuIHBoXHUxZWE5bSBraFx1MDBlMWMuIiwicGVyY2VudCI6eyJ1bml0IjoiJSIsInNpemUiOjIsInNpemVzIjpbXX19XSwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiI3OCIsImlzTGlua2VkIjpmYWxzZX0sIl9tYXJnaW5fbW9iaWxlIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6dHJ1ZX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9wcm9ncmVzc2JhciJ9\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-b6145ce elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"b6145ce\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-e65d58b\" data-id=\"e65d58b\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjljZDU1ZGQiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkNoXHUwMGZhbmcgdFx1MDBmNGkgY3VuZyBjXHUxZWE1cCBkXHUxZWNiY2ggdlx1MWVlNSB0cm9uZyBuaGlcdTFlYzF1IGxcdTAxMjluaCB2XHUxZWYxYy4iLCJ0aXRsZV9jb2xvciI6IiM4NUIyM0IiLCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZSI6eyJ1bml0IjoicHgiLCJzaXplIjozNiwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodCI6eyJ1bml0IjoicHgiLCJzaXplIjo0OCwic2l6ZXMiOltdfSwic3R5bGUiOiJzdC1saW5lLWxlZnQiLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6dHJ1ZX0sInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjozMCwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzgsInNpemVzIjpbXX0sImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluTGVmdCIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX21vYmlsZSI6eyJ1bml0IjoicHgiLCJzaXplIjoyOCwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF9tb2JpbGUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzQsInNpemVzIjpbXX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-2067062\" data-id=\"2067062\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-956a238 wow fadeInRight elementor-widget elementor-widget-text-editor\" data-id=\"956a238\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Chu00fang tu00f4i luu00f4n u0111u00e1p u1ee9ng yu00eau cu1ea7u thiu1ebft ku1ebf cu1ee7a khu00e1ch hu00e0ng. Ngou1ea1i hu00ecnh vu00e0 ku00edch thu01b0u1edbc lu00e0 nhu1eefng yu1ebfu tu1ed1 chu00fang tu00f4i coi tru1ecdng nhu1ea5t.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-74328b6b elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"74328b6b\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4b9c9796\" data-id=\"4b9c9796\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjFjYTNiNmM1IiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsibGF5b3V0IjoiNCIsImxpbWl0Ijo0LCJmaWx0ZXJfZGVmYXVsdF90aXRsZSI6IkFsbCIsImNvbF9zbSI6IjEiLCJjb2xfbWQiOiIyIiwiY29sX2xnIjoiMiIsImNvbF94bCI6IjIiLCJidXR0b25fdGV4dCI6IlJlYWQgbW9yZSIsInNvdXJjZSI6WyJ2aXxsYW5ndWFnZSJdLCJjdF9hbmltYXRlIjoid293IGZhZGVJblVwIiwib3JkZXIiOiJhc2MifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3Rfc2VydmljZV9ncmlkIn0=\"][elementor-element data=\"eyJpZCI6IjI5NzFiOGIzIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGV4dCI6IkRcdTFlY2JjaCB2XHUxZWU1IGtoXHUwMGUxYyIsImxpbmsiOnsidXJsIjoiXC9zZXJ2aWNlcyIsImlzX2V4dGVybmFsIjoiIiwibm9mb2xsb3ciOiIifSwiYWxpZ24iOiJjZW50ZXIiLCJidG5faWNvbiI6eyJ2YWx1ZSI6Im1hdGVyaWFsIHptZGkgem1kaS1zZXR0aW5ncyIsImxpYnJhcnkiOiJtYXRlcmlhbCJ9LCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6Ii0xMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sInN0eWxlIjoiYnRuLXByZXNldDMiLCJfYW5pbWF0aW9uIjoibm9uZSJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9idXR0b24ifQ==\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-f43d465 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"f43d465\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-5310bd3\" data-id=\"5310bd3\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImJjZmM3MzUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjdGY3X2lkIjoiOTMyIiwibGF5b3V0IjoiMiIsImN0ZjdfdGl0bGUiOiJDXHUwMGYzIGNcdTAwZTJ1IGhcdTFlY2ZpIG5cdTAwZTBvIGtoXHUwMGY0bmc/IiwiY3RmN19kZXNjcmlwdGlvbiI6IkNhbGw6IDgwMCAyNTAgMzY5IiwiY3RmN19waG9uZSI6IjxzcGFuPkNhbGw6PFwvc3Bhbj4gMDk2ODg2MDM4NiIsImVsX3RpdGxlIjoiTGlcdTAwZWFuIGhcdTFlYzcgXHUwMTExXHUxZWMzIG5oXHUxZWFkbiBiXHUwMGUxbyBnaVx1MDBlMToiLCJjdF9hbmltYXRlIjoid293IGZsaXBJblgifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY3RmNyJ9\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-a9b49c5 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"a9b49c5\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n                            <div class=\"elementor-background-overlay\"></div>n                n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-1dcb85a\" data-id=\"1dcb85a\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n                <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-6c560a6 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"6c560a6\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-e82cd67\" data-id=\"e82cd67\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImVmNDE1MTEiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkNoXHUwMGZhbmcgdFx1MDBmNGkgY1x1MDBmMyBxdXkgdHJcdTAwZWNuaCBsXHUwMGUwbSB2aVx1MWVjN2MgXHUwMTExXHUwMWExbiBnaVx1MWVhM24uIiwidGl0bGVfY29sb3IiOiIjZmZmZmZmIiwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzYsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHQiOnsidW5pdCI6InB4Iiwic2l6ZSI6NDgsInNpemVzIjpbXX0sInN0eWxlIjoic3QtbGluZS1sZWZ0IiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOnRydWV9LCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzAsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjM4LCJzaXplcyI6W119LCJjdF9hbmltYXRlIjoid293IGZhZGVJbkxlZnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-3a08737\" data-id=\"3a08737\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-7aa11c2 wow fadeInRight elementor-widget elementor-widget-text-editor\" data-id=\"7aa11c2\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Chu00fang tu00f4i luu00f4n mang u0111u1ebfn cu1ea3m giu00e1c an tu00e2m vu1ec1 chu1ea5t lu01b0u1ee3ng vu00e0 tiu1ebfn u0111u1ed9.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n        [elementor-element data=\"eyJpZCI6IjlkNWVhMzIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X2xpc3QiOlt7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi1yZXNlYXJjaCIsImxpYnJhcnkiOiJmbGF0aWNvbiJ9LCJfaWQiOiIwNTVmZWYyIiwidGl0bGUiOiJUXHUwMGVjbSBjaFx1MDBmYW5nIHRcdTAwZjRpIiwiZGVzY3JpcHRpb24iOiJDaFx1MDBmYW5nIHRcdTAwZjRpIGhpXHUxZWMzdSB0XHUxZWE3bSBxdWFuIHRyXHUxZWNkbmcgY1x1MWVlN2EgdmlcdTFlYzdjIHhcdTFlZWQgbFx1MDBmZCBtXHUxZWQ3aSBkXHUxZWYxIFx1MDBlMW4gdGhlbyBtXHUxZWQ5dCBjXHUwMGUxY2ggdGlcdTFlYmZwIGNcdTFlYWRuIHRvXHUwMGUwbiBkaVx1MWVjN24uIiwiYnRuX2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9fSx7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi1uZXR3b3JrIiwibGlicmFyeSI6ImZsYXRpY29uIn0sIl9pZCI6IjM5ZTE0YjgiLCJ0aXRsZSI6IktcdTFlYmZ0IG5cdTFlZDFpIHZcdTFlZGJpIGNoXHUwMGZhbmcgdFx1MDBmNGkiLCJkZXNjcmlwdGlvbiI6Ilx1MDExMGlcdTFlYzF1IGxcdTAwZTBtIGNoXHUwMGZhbmcgdFx1MDBmNGkga2hcdTAwZTFjIGJpXHUxZWM3dCBzbyB2XHUxZWRiaSBjXHUwMGUxYyBjXHUwMGY0bmcgdHkga2hcdTAwZTFjIGxcdTAwZTAgY2h1eVx1MDBlYW4gbVx1MDBmNG4gdHJvbmcgdmlcdTFlYzdjIHRcdTFlYTFvIHJhIGNcdTAwZTFjIGdpXHUxZWEzaSBwaFx1MDBlMXAgdFx1MDBmOXkgY2hcdTFlYzluaC4iLCJidG5fbGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn19LHsiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZsYXRpY29uIGZsYXRpY29uLXdhbGxldCIsImxpYnJhcnkiOiJmbGF0aWNvbiJ9LCJfaWQiOiJmNWUxMGU4IiwidGl0bGUiOiJUaGFuaCB0b1x1MDBlMW4gY2hvIGNoXHUwMGZhbmcgdFx1MDBmNGkiLCJkZXNjcmlwdGlvbiI6IkNoXHUwMGZhbmcgdFx1MDBmNGkga2h1eVx1MWViZm4ga2hcdTAwZWRjaCBtXHUxZWQ3aSB0aFx1MDBlMG5oIHZpXHUwMGVhbiB0cm9uZyBcdTAxMTFcdTFlZDlpIG5nXHUwMTY5IHRyXHUxZWRmIHRoXHUwMGUwbmggcGhpXHUwMGVhbiBiXHUxZWEzbiB0XHUxZWQxdCBuaFx1MWVhNXQgY1x1MWVlN2EgY2hcdTAwZWRuaCBtXHUwMGVjbmgsIHRcdTFlYTFvIHJhIG1cdTFlZDl0IG1cdTAwZjRpIHRyXHUwMWIwXHUxZWRkbmcgbGluaCBob1x1MWVhMXQgdlx1MDBlMCBoXHUxZWUzcCB0XHUwMGUxYy4iLCJidG5fbGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn19LHsiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZsYXRpY29uIGZsYXRpY29uLXRhcmdldCIsImxpYnJhcnkiOiJmbGF0aWNvbiJ9LCJfaWQiOiI4ODM5OTY5IiwidGl0bGUiOiJcdTAxMTBcdTFlYTF0IFx1MDExMVx1MDFiMFx1MWVlM2MgXHUwMWIwXHUxZWRiYyBtXHUwMWExIGNcdTFlZTdhIGJcdTFlYTFuIiwiZGVzY3JpcHRpb24iOiJDXHUxZWQxdCBsXHUwMGY1aSBjXHUxZWU3YSBtXHUxZWQ3aSBkb2FuaCBuZ2hpXHUxZWM3cCBsXHUwMGUwIG5oXHUxZWVmbmcgZ2lcdTFlYTNpIHBoXHUwMGUxcCBcdTAxMTFcdTFlZDljIFx1MDExMVx1MDBlMW8sIHRydXlcdTFlYzFuIGNcdTFlYTNtIGhcdTFlZTluZyBjaG8gc1x1MWVmMSBcdTAxMTFcdTFlZDVpIG1cdTFlZGJpIHZcdTAwZTAgcGhcdTAwZTF0IHRyaVx1MWVjM24uIiwiYnRuX2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9fV0sInRpdGxlX2NvbG9yIjoiI2ZmZmZmZiIsImRlc2NyaXB0aW9uX2NvbG9yIjoiI0ZGRkZGRiIsImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X3Byb2Nlc3MifQ==\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-79ee8ab elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"79ee8ab\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4af1814\" data-id=\"4af1814\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n                <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-505fb45 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"505fb45\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-7223f1c\" data-id=\"7223f1c\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-e7c238e elementor-widget elementor-widget-google_maps\" data-id=\"e7c238e\" data-element_type=\"widget\" data-widget_type=\"google_maps.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-custom-embed\">nttt<iframe loading=\"lazy\"ntttttsrc=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"nttttttitle=\"10u00b057&#039;11.2&quot;N 106u00b045&#039;13.0&quot;E\"ntttttaria-label=\"10u00b057&#039;11.2&quot;N 106u00b045&#039;13.0&quot;E\"nttt></iframe>ntt</div>ntttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-0225539\" data-id=\"0225539\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjUxZDU0M2EiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkxpXHUwMGVhbiBoXHUxZWM3IHZcdTFlZGJpIGNoXHUwMGZhbmcgdFx1MDBmNGkgYlx1MWVhNXQgY1x1MWVlOSBsXHUwMGZhYyBuXHUwMGUwbyBuXHUxZWJmdSBiXHUxZWExbiBjXHUxZWE3biBzXHUxZWYxIGdpXHUwMGZhcCBcdTAxMTFcdTFlZTEuLi4iLCJ0aXRsZV9jb2xvciI6IiM4NUIyM0IiLCJfcGFkZGluZyI6eyJ1bml0IjoiJSIsInRvcCI6IjAiLCJyaWdodCI6IjUiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV9zcGFjZV9ib3R0b20iOnsidW5pdCI6InB4Iiwic2l6ZSI6MzMsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjozMCwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzgsInNpemVzIjpbXX0sImN0X2FuaW1hdGUiOiJ3b3cgZmxpcEluWCIsIl9wYWRkaW5nX3RhYmxldCI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"][elementor-element data=\"eyJpZCI6ImVkMGRjMWIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjdGY3X2lkIjoiOTc0Iiwic3R5bGVfbDEiOiJzdHlsZTIifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY3RmNyJ9\"]            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                    </div>n        </section>n        \",\"scripts\":[],\"styles\":[]}}'),(10415,3174,'_wp_attached_file','2025/03/20250222_154721.jpg'),(10416,3174,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2992;s:6:\"height\";i:2992;s:4:\"file\";s:27:\"2025/03/20250222_154721.jpg\";s:8:\"filesize\";i:960231;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:{}}}'),(10417,3175,'_wp_attached_file','2025/03/DSC00846.jpg'),(10418,3175,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:6000;s:6:\"height\";i:4000;s:4:\"file\";s:20:\"2025/03/DSC00846.jpg\";s:8:\"filesize\";i:14433594;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(10419,3176,'_wp_attached_file','2025/03/DSC00833-2.jpg'),(10420,3176,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:4192;s:6:\"height\";i:2795;s:4:\"file\";s:22:\"2025/03/DSC00833-2.jpg\";s:8:\"filesize\";i:1840269;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:{}}}'),(10421,3177,'_wp_attached_file','2025/03/DSC00842-2.jpg'),(10422,3177,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:6000;s:6:\"height\";i:4000;s:4:\"file\";s:22:\"2025/03/DSC00842-2.jpg\";s:8:\"filesize\";i:13715837;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(10423,3178,'_wp_attached_file','2025/03/DSC00817-3.jpg'),(10424,3178,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:4192;s:6:\"height\";i:2795;s:4:\"file\";s:22:\"2025/03/DSC00817-3.jpg\";s:8:\"filesize\";i:2109917;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:{}}}'),(10435,3180,'_elementor_edit_mode','builder'),(10436,3180,'_elementor_template_type','wp-page'),(10437,3180,'_elementor_version','3.24.7'),(10438,3180,'_wp_page_template','default'),(10439,3180,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=vUCVqLmXSPM\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have started to open a store on Alibaba to connect with orders from around the world.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0e89391\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"en|language\"],\"ct_animate\":\"wow fadeInUp\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always provide a sense of security in terms of quality and progress.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#85B23B\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(10440,3180,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(10441,3180,'_elementor_page_assets','a:2:{s:6:\"styles\";a:4:{i:0;s:18:\"widget-text-editor\";i:1;s:21:\"e-animation-slideInUp\";i:2;s:12:\"widget-image\";i:3;s:18:\"widget-google_maps\";}s:7:\"scripts\";a:9:{i:0;s:16:\"jquery-numerator\";i:1;s:20:\"ct-counter-widget-js\";i:2;s:11:\"progressbar\";i:3;s:16:\"waypoints-lib-js\";i:4;s:24:\"ct-progressbar-widget-js\";i:5;s:12:\"imagesloaded\";i:6;s:7:\"isotope\";i:7;s:25:\"ct-post-masonry-widget-js\";i:8;s:22:\"ct-post-grid-widget-js\";}}'),(10442,3180,'_elementor_element_cache','{\"timeout\":1742265880,\"value\":{\"content\":\"        <section class=\"elementor-section elementor-top-section elementor-element elementor-element-2d2b67a elementor-section-stretched elementor-section-full_width slider-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"2d2b67a\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-no \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-d1bb387\" data-id=\"d1bb387\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImNjODZmNGQiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJyZXZzbGlkZXJ0aXRsZSI6IkhvbWUgMSIsInNob3J0Y29kZSI6IltyZXZfc2xpZGVyIGFsaWFzPVwiaG9tZS0xXCJdW1wvcmV2X3NsaWRlcl0ifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoic2xpZGVyX3Jldm9sdXRpb24ifQ==\"]        <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-2cea906 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"2cea906\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-8e117d0\" data-id=\"8e117d0\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjI0YjYyY2MiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IldlIHByb3ZpZGUgYSB3aWRlIHJhbmdlIG9mIHByb2R1Y3RzIGZvciB0aGUgbWVjaGFuaWNhbCBpbmR1c3RyeSBhY3Jvc3MgVmlldG5hbSBhbmQgd29ybGR3aWRlLCBlc3BlY2lhbGx5IGluIGtleSBtYXJrZXRzIHN1Y2ggYXMgSmFwYW4sIFNvdXRoIEtvcmVhLCB0aGUgVW5pdGVkIFN0YXRlcywgYW5kIEF1c3RyYWxpYS4gV2UgYWxzbyBoYXZlIGV4cGVyaWVuY2UgaW4gZXhwb3J0aW5nIHRvIHRoZXNlIG1hcmtldHMuIiwidGl0bGVfY29sb3IiOiIjODVCMjNCIiwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzYsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHQiOnsidW5pdCI6InB4Iiwic2l6ZSI6NDgsInNpemVzIjpbXX0sInN0eWxlIjoic3QtbGluZS1sZWZ0IiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMTYiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjoyNiwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzQsInNpemVzIjpbXX0sImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluVXAifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-909b449 wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"909b449\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>tttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImM0YTIwMjgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJpbWFnZSI6eyJ1cmwiOiIiLCJpZCI6IiJ9LCJ2aWRlb19saW5rIjoiaHR0cHM6XC9cL3d3dy55b3V0dWJlLmNvbVwvd2F0Y2g/dj12VUNWcUxtWFNQTSIsImJ0bl92aWRlb19zdHlsZSI6InN0eWxlMyIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMzEiLCJyaWdodCI6IjM4IiwiYm90dG9tIjoiMCIsImxlZnQiOiI3OCIsImlzTGlua2VkIjpmYWxzZX0sIl9jc3NfY2xhc3NlcyI6ImVsLWlubGluZSB3b3cgZmFkZUluUmlnaHQiLCJfbWFyZ2luX3RhYmxldCI6eyJ1bml0IjoicHgiLCJ0b3AiOiIzMSIsInJpZ2h0IjoiMjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjY4IiwiaXNMaW5rZWQiOmZhbHNlfSwiX2FuaW1hdGlvbiI6InNsaWRlSW5VcCIsIl9tYXJnaW5fbW9iaWxlIjp7InVuaXQiOiJweCIsInRvcCI6IjMxIiwicmlnaHQiOiIyMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF92aWRlb19wbGF5ZXIifQ==\"]tt<div class=\"elementor-element elementor-element-1fd7931 el-inline wow fadeInRight elementor-invisible elementor-widget elementor-widget-image\" data-id=\"1fd7931\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;slideInUp&quot;}\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" class=\"attachment-full size-full wp-image-2542\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-4fff345\" data-id=\"4fff345\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjU5MGYxYmUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjo1MCwic3VmZml4IjoiKyIsInRob3VzYW5kX3NlcGFyYXRvciI6IiIsInRob3VzYW5kX3NlcGFyYXRvcl9jaGFyIjoiICIsInRpdGxlIjoiQ3VzdG9tZXIiLCJzaG93X2ljb24iOiJ0cnVlIiwiY291bnRlcl9pY29uIjp7InZhbHVlIjoibWF0ZXJpYWwgem1kaSB6bWRpLWFzc2lnbm1lbnQtY2hlY2siLCJsaWJyYXJ5IjoibWF0ZXJpYWwifSwibnVtYmVyX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjQxIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJfY3NzX2NsYXNzZXMiOiJ0ZXh0LWNlbnRlci1zbSIsImljb25fdHlwZSI6ImltYWdlIiwiaWNvbl9pbWFnZSI6eyJ1cmwiOiJodHRwOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAxOVwvMTJcL2NvdW50ZXItaWNvbi0wMS5wbmciLCJpZCI6MTUxNX0sIl9hbmltYXRpb24iOiJub25lIiwiY3RfYW5pbWF0ZSI6IndvdyBmYWRlSW5VcCJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9jb3VudGVyIn0=\"][elementor-element data=\"eyJpZCI6IjdhNWYyMzkiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjoyMDAsInN1ZmZpeCI6IisiLCJ0aG91c2FuZF9zZXBhcmF0b3IiOiIiLCJ0aG91c2FuZF9zZXBhcmF0b3JfY2hhciI6IiAiLCJ0aXRsZSI6IlBlcnNvbm5lbCIsInNob3dfaWNvbiI6InRydWUiLCJjb3VudGVyX2ljb24iOnsidmFsdWUiOiJtYXRlcmlhbCB6bWRpIHptZGktYXNzaWdubWVudC1jaGVjayIsImxpYnJhcnkiOiJtYXRlcmlhbCJ9LCJudW1iZXJfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiNDEiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sIl9jc3NfY2xhc3NlcyI6InRleHQtY2VudGVyLXNtIiwiaWNvbl90eXBlIjoiaW1hZ2UiLCJpY29uX2ltYWdlIjp7InVybCI6Imh0dHA6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDE5XC8xMlwvY291bnRlci1pY29uLTAyLnBuZyIsImlkIjoxNTE2fSwiX2FuaW1hdGlvbiI6Im5vbmUiLCJjdF9hbmltYXRlIjoid293IGZhZGVJblVwIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2NvdW50ZXIifQ==\"][elementor-element data=\"eyJpZCI6IjA0NTMxYzgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjoyMDAwLCJzdWZmaXgiOiIrIiwidGhvdXNhbmRfc2VwYXJhdG9yIjoiIiwidGhvdXNhbmRfc2VwYXJhdG9yX2NoYXIiOiIgIiwidGl0bGUiOiJPZGVycyBwZXIgeWVhciIsInNob3dfaWNvbiI6InRydWUiLCJjb3VudGVyX2ljb24iOnsidmFsdWUiOiJtYXRlcmlhbCB6bWRpIHptZGktYXNzaWdubWVudC1jaGVjayIsImxpYnJhcnkiOiJtYXRlcmlhbCJ9LCJudW1iZXJfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiNDEiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sIl9jc3NfY2xhc3NlcyI6InRleHQtY2VudGVyLXNtIiwiaWNvbl90eXBlIjoiaW1hZ2UiLCJpY29uX2ltYWdlIjp7InVybCI6Imh0dHA6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDE5XC8xMlwvY291bnRlci1pY29uLTAzLnBuZyIsImlkIjoxNTE3fSwiX2FuaW1hdGlvbiI6Im5vbmUiLCJjdF9hbmltYXRlIjoid293IGZhZGVJblVwIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2NvdW50ZXIifQ==\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-348ba48\" data-id=\"348ba48\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-ed7e1d0 wow fadeInUp elementor-widget elementor-widget-image\" data-id=\"ed7e1d0\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" class=\"attachment-full size-full wp-image-2571\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntttt<div class=\"elementor-element elementor-element-3b54db6 wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"3b54db6\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-8b70e78 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"8b70e78\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-c2b95bd\" data-id=\"c2b95bd\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-b5a8ba3 elementor-widget elementor-widget-image\" data-id=\"b5a8ba3\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" class=\"attachment-full size-full wp-image-2268\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntttt<div class=\"elementor-element elementor-element-0e89391 elementor-widget elementor-widget-image\" data-id=\"0e89391\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" class=\"attachment-full size-full wp-image-2559\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-de7136f\" data-id=\"de7136f\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6Ijg0MDdhYmUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IldlIHN0cml2ZSB0byBiZWNvbWUgb25lIG9mIFZpZXRuYW0ncyBsZWFkaW5nIG1lY2hhbmljYWwgcHJvY2Vzc2luZyBjb21wYW5pZXMsIHN1cHBseWluZyB0aGUgaW50ZXJuYXRpb25hbCBtYXJrZXQgYnkgMjAzMC4gSW4gdGhlIGZ1dHVyZSwgd2UgYWltIHRvIHByb2R1Y2UgYSBjb21wbGV0ZSBtYWNoaW5lcnkgcHJvZHVjdCB0byBkZWxpdmVyIGRpcmVjdGx5IHRvIGVuZC11c2Vycy4iLCJ0aXRsZV9jb2xvciI6IiM4NUIyM0IiLCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZSI6eyJ1bml0IjoicHgiLCJzaXplIjozNiwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodCI6eyJ1bml0IjoicHgiLCJzaXplIjo0OCwic2l6ZXMiOltdfSwic3R5bGUiOiJzdC1saW5lLWxlZnQiLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6Ii05IiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwidGl0bGVfc3BhY2VfYm90dG9tIjp7InVuaXQiOiJweCIsInNpemUiOjE3LCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzAsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjM4LCJzaXplcyI6W119LCJjdF9hbmltYXRlIjoid293IGZsaXBJblgiLCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV9tb2JpbGUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MjgsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfbW9iaWxlIjp7InVuaXQiOiJweCIsInNpemUiOjM0LCJzaXplcyI6W119fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-0c8497c wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"0c8497c\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Goals to achieve by 2026:</p>tttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6IjQ3NTRlZDYiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJwcm9ncmVzc2Jhcl9saXN0IjpbeyJ0aXRsZSI6IkVhc3QgQXNpYSAoSmFwYW4sIFNvdXRoIEtvcmVhLCBldGMuKTogRXhwb3J0IG9mIHJlcGxhY2VtZW50IG1hY2hpbmVyeSBjb21wb25lbnRzLCBtb3RvcmN5Y2xlIGFuZCBjYXIgYWNjZXNzb3JpZXMsIHdhdGVyIGluZHVzdHJ5IGZpdHRpbmdzLCBtb2xkcywgYW5kIG90aGVyIG1lY2hhbmljYWwgcGFydHMuIiwicHJvZ3Jlc3NfdHlwZSI6IiIsInBlcmNlbnQiOnsidW5pdCI6IiUiLCJzaXplIjozMCwic2l6ZXMiOltdfSwiZGlzcGxheV9wZXJjZW50YWdlIjoiaGlkZSIsImlubmVyX3RleHQiOiJXZWIgRGVzaWduZXIiLCJfaWQiOiI4YjRiY2Q2In0seyJ0aXRsZSI6IkV1cm9wZSAoR2VybWFueSwgQnVsZ2FyaWEsIHRoZSBOZXRoZXJsYW5kcywgZXRjLik6IFByb2R1Y3Rpb24gamlncyBmb3IgYXV0b21vdGl2ZSBiZWFyaW5ncywgYW5kIGVsZWN0cmljYWwgYm94IGNvbXBvbmVudHMgZm9yIGF1dG9tYXRpb24gbWFjaGluZXJ5LiIsInByb2dyZXNzX3R5cGUiOiIiLCJwZXJjZW50Ijp7InVuaXQiOiIlIiwic2l6ZSI6MTAsInNpemVzIjpbXX0sImRpc3BsYXlfcGVyY2VudGFnZSI6ImhpZGUiLCJpbm5lcl90ZXh0IjoiV2ViIERlc2lnbmVyIiwiX2lkIjoiNmUwZjg3NyJ9LHsidGl0bGUiOiJVbml0ZWQgU3RhdGVzOiBQcm9kdWN0cyByZWxhdGVkIHRvIG1lZGljYWwgaW5zdHJ1bWVudHMsIG9wdGljcywgYW5kIGF1ZGlvIGVxdWlwbWVudC4iLCJwcm9ncmVzc190eXBlIjoiIiwicGVyY2VudCI6eyJ1bml0IjoiJSIsInNpemUiOjMwLCJzaXplcyI6W119LCJkaXNwbGF5X3BlcmNlbnRhZ2UiOiJzaG93IiwiX2lkIjoiMjIyZWI4MSJ9LHsiX2lkIjoiNWVlY2NiNiIsInRpdGxlIjoiQXVzdHJhbGlhOiBTaGVldCBtZXRhbCBwcm9kdWN0cy4iLCJwZXJjZW50Ijp7InVuaXQiOiIlIiwic2l6ZSI6OCwic2l6ZXMiOltdfX0seyJfaWQiOiIxMGU1NzUwIiwidGl0bGUiOiJWaWV0bmFtOiBTbWFsbCBhdXRvbWF0aW9uIG1hY2hpbmVzOyBtb3RvcmN5Y2xlIGFuZCBjYXIgYm9sdHM7IHByb2R1Y3RzIGluIHRoZSBvaWwgYW5kIGdhcyBpbmR1c3RyeS4iLCJwZXJjZW50Ijp7InVuaXQiOiIlIiwic2l6ZSI6MjAsInNpemVzIjpbXX19LHsiX2lkIjoiZTE3YTE5NSIsInRpdGxlIjoiT3RoZXIgbWFya2V0cyBhbmQgcHJvZHVjdHMuIiwicGVyY2VudCI6eyJ1bml0IjoiJSIsInNpemUiOjIsInNpemVzIjpbXX19XSwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiI3OCIsImlzTGlua2VkIjpmYWxzZX0sIl9tYXJnaW5fbW9iaWxlIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6dHJ1ZX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9wcm9ncmVzc2JhciJ9\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-b6145ce elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"b6145ce\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-e65d58b\" data-id=\"e65d58b\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjljZDU1ZGQiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IldlIG9mZmVyIHNlcnZpY2VzIGFjcm9zcyBtdWx0aXBsZSBzZWN0b3JzIiwidGl0bGVfY29sb3IiOiIjODVCMjNCIiwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzYsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHQiOnsidW5pdCI6InB4Iiwic2l6ZSI6NDgsInNpemVzIjpbXX0sInN0eWxlIjoic3QtbGluZS1sZWZ0IiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOnRydWV9LCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzAsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjM4LCJzaXplcyI6W119LCJjdF9hbmltYXRlIjoid293IGZhZGVJbkxlZnQiLCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV9tb2JpbGUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MjgsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfbW9iaWxlIjp7InVuaXQiOiJweCIsInNpemUiOjM0LCJzaXplcyI6W119fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-2067062\" data-id=\"2067062\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-956a238 wow fadeInRight elementor-widget elementor-widget-text-editor\" data-id=\"956a238\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>We always meet our customers&#8217; design requirements. Appearance and dimensions are what we consider most important.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-74328b6b elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"74328b6b\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4b9c9796\" data-id=\"4b9c9796\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjFjYTNiNmM1IiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsibGF5b3V0IjoiNCIsImxpbWl0Ijo0LCJmaWx0ZXJfZGVmYXVsdF90aXRsZSI6IkFsbCIsImNvbF9zbSI6IjEiLCJjb2xfbWQiOiIyIiwiY29sX2xnIjoiMiIsImNvbF94bCI6IjIiLCJidXR0b25fdGV4dCI6IlJlYWQgbW9yZSIsInNvdXJjZSI6WyJlbnxsYW5ndWFnZSJdLCJjdF9hbmltYXRlIjoid293IGZhZGVJblVwIiwib3JkZXIiOiJhc2MifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3Rfc2VydmljZV9ncmlkIn0=\"][elementor-element data=\"eyJpZCI6IjI5NzFiOGIzIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGV4dCI6Ik1vcmUgc2VydmljZXMiLCJsaW5rIjp7InVybCI6Ilwvc2VydmljZXMiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn0sImFsaWduIjoiY2VudGVyIiwiYnRuX2ljb24iOnsidmFsdWUiOiJtYXRlcmlhbCB6bWRpIHptZGktc2V0dGluZ3MiLCJsaWJyYXJ5IjoibWF0ZXJpYWwifSwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiItMTAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJzdHlsZSI6ImJ0bi1wcmVzZXQzIiwiX2FuaW1hdGlvbiI6Im5vbmUifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfYnV0dG9uIn0=\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-f43d465 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"f43d465\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-5310bd3\" data-id=\"5310bd3\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImJjZmM3MzUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjdGY3X2lkIjoiOTMyIiwibGF5b3V0IjoiMiIsImN0ZjdfdGl0bGUiOiJIYXZlIGFueSBxdWVzdGlvbnM/IiwiY3RmN19kZXNjcmlwdGlvbiI6IkNhbGw6IDgwMCAyNTAgMzY5IiwiY3RmN19waG9uZSI6IjxzcGFuPkNhbGw6PFwvc3Bhbj4gMDk2ODg2MDM4NiIsImVsX3RpdGxlIjoiQ29udGFjdCBmb3IgZ2V0dGluZyBxdW90ZToiLCJjdF9hbmltYXRlIjoid293IGZsaXBJblgifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY3RmNyJ9\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-a9b49c5 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"a9b49c5\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n                            <div class=\"elementor-background-overlay\"></div>n                n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-1dcb85a\" data-id=\"1dcb85a\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n                <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-6c560a6 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"6c560a6\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-e82cd67\" data-id=\"e82cd67\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImVmNDE1MTEiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IldlIGhhdmUgc29tZSBlYXN5IHdvcmtpbmcgcHJvY2VkdXJlIiwidGl0bGVfY29sb3IiOiIjZmZmZmZmIiwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzYsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHQiOnsidW5pdCI6InB4Iiwic2l6ZSI6NDgsInNpemVzIjpbXX0sInN0eWxlIjoic3QtbGluZS1sZWZ0IiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOnRydWV9LCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzAsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjM4LCJzaXplcyI6W119LCJjdF9hbmltYXRlIjoid293IGZhZGVJbkxlZnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-3a08737\" data-id=\"3a08737\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-7aa11c2 wow fadeInRight elementor-widget elementor-widget-text-editor\" data-id=\"7aa11c2\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>We always provide a sense of security in terms of quality and progress.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n        [elementor-element data=\"eyJpZCI6IjlkNWVhMzIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X2xpc3QiOlt7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi1yZXNlYXJjaCIsImxpYnJhcnkiOiJmbGF0aWNvbiJ9LCJfaWQiOiIwNTVmZWYyIiwidGl0bGUiOiJGaW5kIHVzIiwiZGVzY3JpcHRpb24iOiJXZSB1bmRlcnN0YW5kIHRoZSBpbXBvcnRhbmNlIG9mIGhhbmRsaW5nIGVhY2ggcHJvamVjdCB3aXRoIGEgaG9saXN0aWMgYXBwcm9hY2guIiwiYnRuX2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9fSx7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi1uZXR3b3JrIiwibGlicmFyeSI6ImZsYXRpY29uIn0sIl9pZCI6IjM5ZTE0YjgiLCJ0aXRsZSI6IkNvbm5lY3Qgd2l0aCB1cyIsImRlc2NyaXB0aW9uIjoiV2hhdCBzZXRzIHVzIGFwYXJ0IGZyb20gb3RoZXIgYWdlbmNpZXMgaXMgb3VyIGV4cGVydGlzZSBpbiBjcmVhdGluZyB0YWlsb3JlZCBzb2x1dGlvbnMuIiwiYnRuX2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9fSx7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi13YWxsZXQiLCJsaWJyYXJ5IjoiZmxhdGljb24ifSwiX2lkIjoiZjVlMTBlOCIsInRpdGxlIjoiUGF5bWVudCB1cyIsImRlc2NyaXB0aW9uIjoiV2UgZW5jb3VyYWdlIGV2ZXJ5IHRlYW0gbWVtYmVyIHRvIGJlIHRoZWlyIGJlc3Qgc2VsZiwgZm9zdGVyaW5nIGEgZmxleGlibGUgYW5kIGNvbGxhYm9yYXRpdmUgZW52aXJvbm1lbnQuIiwiYnRuX2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9fSx7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi10YXJnZXQiLCJsaWJyYXJ5IjoiZmxhdGljb24ifSwiX2lkIjoiODgzOTk2OSIsInRpdGxlIjoiR2V0IHlvdXIgZHJlYW0iLCJkZXNjcmlwdGlvbiI6IkF0IGl0cyBjb3JlLCBldmVyeSBidXNpbmVzcyBoYXMgdW5pcXVlIHNvbHV0aW9ucyB0aGF0IGluc3BpcmUgaW5ub3ZhdGlvbiBhbmQgcHJvZ3Jlc3MuIiwiYnRuX2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9fV0sInRpdGxlX2NvbG9yIjoiI2ZmZmZmZiIsImRlc2NyaXB0aW9uX2NvbG9yIjoiI0ZGRkZGRiIsImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X3Byb2Nlc3MifQ==\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-79ee8ab elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"79ee8ab\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4af1814\" data-id=\"4af1814\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n                <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-505fb45 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"505fb45\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-7223f1c\" data-id=\"7223f1c\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-e7c238e elementor-widget elementor-widget-google_maps\" data-id=\"e7c238e\" data-element_type=\"widget\" data-widget_type=\"google_maps.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-custom-embed\">nttt<iframe loading=\"lazy\"ntttttsrc=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"nttttttitle=\"10u00b057&#039;11.2&quot;N 106u00b045&#039;13.0&quot;E\"ntttttaria-label=\"10u00b057&#039;11.2&quot;N 106u00b045&#039;13.0&quot;E\"nttt></iframe>ntt</div>ntttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-0225539\" data-id=\"0225539\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjUxZDU0M2EiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkNvbnRhY3QgdXMgZm9yIGFueSBraW5kIG9mIGhlbHAgYXQgYW55IHRpbWUuLi4iLCJ0aXRsZV9jb2xvciI6IiM4NUIyM0IiLCJfcGFkZGluZyI6eyJ1bml0IjoiJSIsInRvcCI6IjAiLCJyaWdodCI6IjUiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV9zcGFjZV9ib3R0b20iOnsidW5pdCI6InB4Iiwic2l6ZSI6MzMsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjozMCwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzgsInNpemVzIjpbXX0sImN0X2FuaW1hdGUiOiJ3b3cgZmxpcEluWCIsIl9wYWRkaW5nX3RhYmxldCI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"][elementor-element data=\"eyJpZCI6ImVkMGRjMWIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjdGY3X2lkIjoiOTc0Iiwic3R5bGVfbDEiOiJzdHlsZTIifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY3RmNyJ9\"]            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                    </div>n        </section>n        \",\"scripts\":[],\"styles\":[]}}'),(10443,3180,'_elementor_css','a:6:{s:4:\"time\";i:1742180052;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:8:\"material\";i:1;s:8:\"flaticon\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(10444,3181,'_elementor_edit_mode','builder'),(10445,3181,'_elementor_template_type','wp-page'),(10446,3181,'_elementor_version','3.24.7'),(10447,3181,'_wp_page_template','default'),(10448,3181,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=vUCVqLmXSPM\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have started to open a store on Alibaba to connect with orders from around the world.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0e89391\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"en|language\"],\"ct_animate\":\"wow fadeInUp\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always provide a sense of security in terms of quality and progress.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#85B23B\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(10449,3181,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(10450,3181,'_elementor_page_assets','a:2:{s:6:\"styles\";a:4:{i:0;s:18:\"widget-text-editor\";i:1;s:21:\"e-animation-slideInUp\";i:2;s:12:\"widget-image\";i:3;s:18:\"widget-google_maps\";}s:7:\"scripts\";a:9:{i:0;s:16:\"jquery-numerator\";i:1;s:20:\"ct-counter-widget-js\";i:2;s:11:\"progressbar\";i:3;s:16:\"waypoints-lib-js\";i:4;s:24:\"ct-progressbar-widget-js\";i:5;s:12:\"imagesloaded\";i:6;s:7:\"isotope\";i:7;s:25:\"ct-post-masonry-widget-js\";i:8;s:22:\"ct-post-grid-widget-js\";}}'),(10451,3181,'_elementor_element_cache','{\"timeout\":1742265880,\"value\":{\"content\":\"        <section class=\"elementor-section elementor-top-section elementor-element elementor-element-2d2b67a elementor-section-stretched elementor-section-full_width slider-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"2d2b67a\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-no \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-d1bb387\" data-id=\"d1bb387\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImNjODZmNGQiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJyZXZzbGlkZXJ0aXRsZSI6IkhvbWUgMSIsInNob3J0Y29kZSI6IltyZXZfc2xpZGVyIGFsaWFzPVwiaG9tZS0xXCJdW1wvcmV2X3NsaWRlcl0ifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoic2xpZGVyX3Jldm9sdXRpb24ifQ==\"]        <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-2cea906 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"2cea906\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-8e117d0\" data-id=\"8e117d0\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjI0YjYyY2MiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IldlIHByb3ZpZGUgYSB3aWRlIHJhbmdlIG9mIHByb2R1Y3RzIGZvciB0aGUgbWVjaGFuaWNhbCBpbmR1c3RyeSBhY3Jvc3MgVmlldG5hbSBhbmQgd29ybGR3aWRlLCBlc3BlY2lhbGx5IGluIGtleSBtYXJrZXRzIHN1Y2ggYXMgSmFwYW4sIFNvdXRoIEtvcmVhLCB0aGUgVW5pdGVkIFN0YXRlcywgYW5kIEF1c3RyYWxpYS4gV2UgYWxzbyBoYXZlIGV4cGVyaWVuY2UgaW4gZXhwb3J0aW5nIHRvIHRoZXNlIG1hcmtldHMuIiwidGl0bGVfY29sb3IiOiIjODVCMjNCIiwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzYsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHQiOnsidW5pdCI6InB4Iiwic2l6ZSI6NDgsInNpemVzIjpbXX0sInN0eWxlIjoic3QtbGluZS1sZWZ0IiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMTYiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjoyNiwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzQsInNpemVzIjpbXX0sImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluVXAifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-909b449 wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"909b449\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>tttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImM0YTIwMjgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJpbWFnZSI6eyJ1cmwiOiIiLCJpZCI6IiJ9LCJ2aWRlb19saW5rIjoiaHR0cHM6XC9cL3d3dy55b3V0dWJlLmNvbVwvd2F0Y2g/dj12VUNWcUxtWFNQTSIsImJ0bl92aWRlb19zdHlsZSI6InN0eWxlMyIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMzEiLCJyaWdodCI6IjM4IiwiYm90dG9tIjoiMCIsImxlZnQiOiI3OCIsImlzTGlua2VkIjpmYWxzZX0sIl9jc3NfY2xhc3NlcyI6ImVsLWlubGluZSB3b3cgZmFkZUluUmlnaHQiLCJfbWFyZ2luX3RhYmxldCI6eyJ1bml0IjoicHgiLCJ0b3AiOiIzMSIsInJpZ2h0IjoiMjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjY4IiwiaXNMaW5rZWQiOmZhbHNlfSwiX2FuaW1hdGlvbiI6InNsaWRlSW5VcCIsIl9tYXJnaW5fbW9iaWxlIjp7InVuaXQiOiJweCIsInRvcCI6IjMxIiwicmlnaHQiOiIyMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF92aWRlb19wbGF5ZXIifQ==\"]tt<div class=\"elementor-element elementor-element-1fd7931 el-inline wow fadeInRight elementor-invisible elementor-widget elementor-widget-image\" data-id=\"1fd7931\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;slideInUp&quot;}\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" class=\"attachment-full size-full wp-image-2542\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-4fff345\" data-id=\"4fff345\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjU5MGYxYmUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjo1MCwic3VmZml4IjoiKyIsInRob3VzYW5kX3NlcGFyYXRvciI6IiIsInRob3VzYW5kX3NlcGFyYXRvcl9jaGFyIjoiICIsInRpdGxlIjoiQ3VzdG9tZXIiLCJzaG93X2ljb24iOiJ0cnVlIiwiY291bnRlcl9pY29uIjp7InZhbHVlIjoibWF0ZXJpYWwgem1kaSB6bWRpLWFzc2lnbm1lbnQtY2hlY2siLCJsaWJyYXJ5IjoibWF0ZXJpYWwifSwibnVtYmVyX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjQxIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJfY3NzX2NsYXNzZXMiOiJ0ZXh0LWNlbnRlci1zbSIsImljb25fdHlwZSI6ImltYWdlIiwiaWNvbl9pbWFnZSI6eyJ1cmwiOiJodHRwOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAxOVwvMTJcL2NvdW50ZXItaWNvbi0wMS5wbmciLCJpZCI6MTUxNX0sIl9hbmltYXRpb24iOiJub25lIiwiY3RfYW5pbWF0ZSI6IndvdyBmYWRlSW5VcCJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9jb3VudGVyIn0=\"][elementor-element data=\"eyJpZCI6IjdhNWYyMzkiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjoyMDAsInN1ZmZpeCI6IisiLCJ0aG91c2FuZF9zZXBhcmF0b3IiOiIiLCJ0aG91c2FuZF9zZXBhcmF0b3JfY2hhciI6IiAiLCJ0aXRsZSI6IlBlcnNvbm5lbCIsInNob3dfaWNvbiI6InRydWUiLCJjb3VudGVyX2ljb24iOnsidmFsdWUiOiJtYXRlcmlhbCB6bWRpIHptZGktYXNzaWdubWVudC1jaGVjayIsImxpYnJhcnkiOiJtYXRlcmlhbCJ9LCJudW1iZXJfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiNDEiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sIl9jc3NfY2xhc3NlcyI6InRleHQtY2VudGVyLXNtIiwiaWNvbl90eXBlIjoiaW1hZ2UiLCJpY29uX2ltYWdlIjp7InVybCI6Imh0dHA6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDE5XC8xMlwvY291bnRlci1pY29uLTAyLnBuZyIsImlkIjoxNTE2fSwiX2FuaW1hdGlvbiI6Im5vbmUiLCJjdF9hbmltYXRlIjoid293IGZhZGVJblVwIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2NvdW50ZXIifQ==\"][elementor-element data=\"eyJpZCI6IjA0NTMxYzgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjoyMDAwLCJzdWZmaXgiOiIrIiwidGhvdXNhbmRfc2VwYXJhdG9yIjoiIiwidGhvdXNhbmRfc2VwYXJhdG9yX2NoYXIiOiIgIiwidGl0bGUiOiJPZGVycyBwZXIgeWVhciIsInNob3dfaWNvbiI6InRydWUiLCJjb3VudGVyX2ljb24iOnsidmFsdWUiOiJtYXRlcmlhbCB6bWRpIHptZGktYXNzaWdubWVudC1jaGVjayIsImxpYnJhcnkiOiJtYXRlcmlhbCJ9LCJudW1iZXJfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiNDEiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sIl9jc3NfY2xhc3NlcyI6InRleHQtY2VudGVyLXNtIiwiaWNvbl90eXBlIjoiaW1hZ2UiLCJpY29uX2ltYWdlIjp7InVybCI6Imh0dHA6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDE5XC8xMlwvY291bnRlci1pY29uLTAzLnBuZyIsImlkIjoxNTE3fSwiX2FuaW1hdGlvbiI6Im5vbmUiLCJjdF9hbmltYXRlIjoid293IGZhZGVJblVwIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2NvdW50ZXIifQ==\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-348ba48\" data-id=\"348ba48\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-ed7e1d0 wow fadeInUp elementor-widget elementor-widget-image\" data-id=\"ed7e1d0\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" class=\"attachment-full size-full wp-image-2571\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntttt<div class=\"elementor-element elementor-element-3b54db6 wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"3b54db6\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-8b70e78 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"8b70e78\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-c2b95bd\" data-id=\"c2b95bd\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-b5a8ba3 elementor-widget elementor-widget-image\" data-id=\"b5a8ba3\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" class=\"attachment-full size-full wp-image-2268\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntttt<div class=\"elementor-element elementor-element-0e89391 elementor-widget elementor-widget-image\" data-id=\"0e89391\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" class=\"attachment-full size-full wp-image-2559\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-de7136f\" data-id=\"de7136f\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6Ijg0MDdhYmUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IldlIHN0cml2ZSB0byBiZWNvbWUgb25lIG9mIFZpZXRuYW0ncyBsZWFkaW5nIG1lY2hhbmljYWwgcHJvY2Vzc2luZyBjb21wYW5pZXMsIHN1cHBseWluZyB0aGUgaW50ZXJuYXRpb25hbCBtYXJrZXQgYnkgMjAzMC4gSW4gdGhlIGZ1dHVyZSwgd2UgYWltIHRvIHByb2R1Y2UgYSBjb21wbGV0ZSBtYWNoaW5lcnkgcHJvZHVjdCB0byBkZWxpdmVyIGRpcmVjdGx5IHRvIGVuZC11c2Vycy4iLCJ0aXRsZV9jb2xvciI6IiM4NUIyM0IiLCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZSI6eyJ1bml0IjoicHgiLCJzaXplIjozNiwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodCI6eyJ1bml0IjoicHgiLCJzaXplIjo0OCwic2l6ZXMiOltdfSwic3R5bGUiOiJzdC1saW5lLWxlZnQiLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6Ii05IiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwidGl0bGVfc3BhY2VfYm90dG9tIjp7InVuaXQiOiJweCIsInNpemUiOjE3LCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzAsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjM4LCJzaXplcyI6W119LCJjdF9hbmltYXRlIjoid293IGZsaXBJblgiLCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV9tb2JpbGUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MjgsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfbW9iaWxlIjp7InVuaXQiOiJweCIsInNpemUiOjM0LCJzaXplcyI6W119fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-0c8497c wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"0c8497c\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Goals to achieve by 2026:</p>tttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6IjQ3NTRlZDYiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJwcm9ncmVzc2Jhcl9saXN0IjpbeyJ0aXRsZSI6IkVhc3QgQXNpYSAoSmFwYW4sIFNvdXRoIEtvcmVhLCBldGMuKTogRXhwb3J0IG9mIHJlcGxhY2VtZW50IG1hY2hpbmVyeSBjb21wb25lbnRzLCBtb3RvcmN5Y2xlIGFuZCBjYXIgYWNjZXNzb3JpZXMsIHdhdGVyIGluZHVzdHJ5IGZpdHRpbmdzLCBtb2xkcywgYW5kIG90aGVyIG1lY2hhbmljYWwgcGFydHMuIiwicHJvZ3Jlc3NfdHlwZSI6IiIsInBlcmNlbnQiOnsidW5pdCI6IiUiLCJzaXplIjozMCwic2l6ZXMiOltdfSwiZGlzcGxheV9wZXJjZW50YWdlIjoiaGlkZSIsImlubmVyX3RleHQiOiJXZWIgRGVzaWduZXIiLCJfaWQiOiI4YjRiY2Q2In0seyJ0aXRsZSI6IkV1cm9wZSAoR2VybWFueSwgQnVsZ2FyaWEsIHRoZSBOZXRoZXJsYW5kcywgZXRjLik6IFByb2R1Y3Rpb24gamlncyBmb3IgYXV0b21vdGl2ZSBiZWFyaW5ncywgYW5kIGVsZWN0cmljYWwgYm94IGNvbXBvbmVudHMgZm9yIGF1dG9tYXRpb24gbWFjaGluZXJ5LiIsInByb2dyZXNzX3R5cGUiOiIiLCJwZXJjZW50Ijp7InVuaXQiOiIlIiwic2l6ZSI6MTAsInNpemVzIjpbXX0sImRpc3BsYXlfcGVyY2VudGFnZSI6ImhpZGUiLCJpbm5lcl90ZXh0IjoiV2ViIERlc2lnbmVyIiwiX2lkIjoiNmUwZjg3NyJ9LHsidGl0bGUiOiJVbml0ZWQgU3RhdGVzOiBQcm9kdWN0cyByZWxhdGVkIHRvIG1lZGljYWwgaW5zdHJ1bWVudHMsIG9wdGljcywgYW5kIGF1ZGlvIGVxdWlwbWVudC4iLCJwcm9ncmVzc190eXBlIjoiIiwicGVyY2VudCI6eyJ1bml0IjoiJSIsInNpemUiOjMwLCJzaXplcyI6W119LCJkaXNwbGF5X3BlcmNlbnRhZ2UiOiJzaG93IiwiX2lkIjoiMjIyZWI4MSJ9LHsiX2lkIjoiNWVlY2NiNiIsInRpdGxlIjoiQXVzdHJhbGlhOiBTaGVldCBtZXRhbCBwcm9kdWN0cy4iLCJwZXJjZW50Ijp7InVuaXQiOiIlIiwic2l6ZSI6OCwic2l6ZXMiOltdfX0seyJfaWQiOiIxMGU1NzUwIiwidGl0bGUiOiJWaWV0bmFtOiBTbWFsbCBhdXRvbWF0aW9uIG1hY2hpbmVzOyBtb3RvcmN5Y2xlIGFuZCBjYXIgYm9sdHM7IHByb2R1Y3RzIGluIHRoZSBvaWwgYW5kIGdhcyBpbmR1c3RyeS4iLCJwZXJjZW50Ijp7InVuaXQiOiIlIiwic2l6ZSI6MjAsInNpemVzIjpbXX19LHsiX2lkIjoiZTE3YTE5NSIsInRpdGxlIjoiT3RoZXIgbWFya2V0cyBhbmQgcHJvZHVjdHMuIiwicGVyY2VudCI6eyJ1bml0IjoiJSIsInNpemUiOjIsInNpemVzIjpbXX19XSwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiI3OCIsImlzTGlua2VkIjpmYWxzZX0sIl9tYXJnaW5fbW9iaWxlIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6dHJ1ZX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9wcm9ncmVzc2JhciJ9\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-b6145ce elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"b6145ce\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-e65d58b\" data-id=\"e65d58b\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjljZDU1ZGQiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IldlIG9mZmVyIHNlcnZpY2VzIGFjcm9zcyBtdWx0aXBsZSBzZWN0b3JzIiwidGl0bGVfY29sb3IiOiIjODVCMjNCIiwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzYsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHQiOnsidW5pdCI6InB4Iiwic2l6ZSI6NDgsInNpemVzIjpbXX0sInN0eWxlIjoic3QtbGluZS1sZWZ0IiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOnRydWV9LCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzAsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjM4LCJzaXplcyI6W119LCJjdF9hbmltYXRlIjoid293IGZhZGVJbkxlZnQiLCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV9tb2JpbGUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MjgsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfbW9iaWxlIjp7InVuaXQiOiJweCIsInNpemUiOjM0LCJzaXplcyI6W119fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-2067062\" data-id=\"2067062\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-956a238 wow fadeInRight elementor-widget elementor-widget-text-editor\" data-id=\"956a238\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>We always meet our customers&#8217; design requirements. Appearance and dimensions are what we consider most important.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-74328b6b elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"74328b6b\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4b9c9796\" data-id=\"4b9c9796\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjFjYTNiNmM1IiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsibGF5b3V0IjoiNCIsImxpbWl0Ijo0LCJmaWx0ZXJfZGVmYXVsdF90aXRsZSI6IkFsbCIsImNvbF9zbSI6IjEiLCJjb2xfbWQiOiIyIiwiY29sX2xnIjoiMiIsImNvbF94bCI6IjIiLCJidXR0b25fdGV4dCI6IlJlYWQgbW9yZSIsInNvdXJjZSI6WyJlbnxsYW5ndWFnZSJdLCJjdF9hbmltYXRlIjoid293IGZhZGVJblVwIiwib3JkZXIiOiJhc2MifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3Rfc2VydmljZV9ncmlkIn0=\"][elementor-element data=\"eyJpZCI6IjI5NzFiOGIzIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGV4dCI6Ik1vcmUgc2VydmljZXMiLCJsaW5rIjp7InVybCI6Ilwvc2VydmljZXMiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn0sImFsaWduIjoiY2VudGVyIiwiYnRuX2ljb24iOnsidmFsdWUiOiJtYXRlcmlhbCB6bWRpIHptZGktc2V0dGluZ3MiLCJsaWJyYXJ5IjoibWF0ZXJpYWwifSwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiItMTAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJzdHlsZSI6ImJ0bi1wcmVzZXQzIiwiX2FuaW1hdGlvbiI6Im5vbmUifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfYnV0dG9uIn0=\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-f43d465 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"f43d465\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-5310bd3\" data-id=\"5310bd3\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImJjZmM3MzUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjdGY3X2lkIjoiOTMyIiwibGF5b3V0IjoiMiIsImN0ZjdfdGl0bGUiOiJIYXZlIGFueSBxdWVzdGlvbnM/IiwiY3RmN19kZXNjcmlwdGlvbiI6IkNhbGw6IDgwMCAyNTAgMzY5IiwiY3RmN19waG9uZSI6IjxzcGFuPkNhbGw6PFwvc3Bhbj4gMDk2ODg2MDM4NiIsImVsX3RpdGxlIjoiQ29udGFjdCBmb3IgZ2V0dGluZyBxdW90ZToiLCJjdF9hbmltYXRlIjoid293IGZsaXBJblgifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY3RmNyJ9\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-a9b49c5 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"a9b49c5\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n                            <div class=\"elementor-background-overlay\"></div>n                n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-1dcb85a\" data-id=\"1dcb85a\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n                <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-6c560a6 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"6c560a6\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-e82cd67\" data-id=\"e82cd67\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImVmNDE1MTEiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IldlIGhhdmUgc29tZSBlYXN5IHdvcmtpbmcgcHJvY2VkdXJlIiwidGl0bGVfY29sb3IiOiIjZmZmZmZmIiwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzYsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHQiOnsidW5pdCI6InB4Iiwic2l6ZSI6NDgsInNpemVzIjpbXX0sInN0eWxlIjoic3QtbGluZS1sZWZ0IiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOnRydWV9LCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzAsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjM4LCJzaXplcyI6W119LCJjdF9hbmltYXRlIjoid293IGZhZGVJbkxlZnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-3a08737\" data-id=\"3a08737\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-7aa11c2 wow fadeInRight elementor-widget elementor-widget-text-editor\" data-id=\"7aa11c2\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>We always provide a sense of security in terms of quality and progress.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n        [elementor-element data=\"eyJpZCI6IjlkNWVhMzIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X2xpc3QiOlt7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi1yZXNlYXJjaCIsImxpYnJhcnkiOiJmbGF0aWNvbiJ9LCJfaWQiOiIwNTVmZWYyIiwidGl0bGUiOiJGaW5kIHVzIiwiZGVzY3JpcHRpb24iOiJXZSB1bmRlcnN0YW5kIHRoZSBpbXBvcnRhbmNlIG9mIGhhbmRsaW5nIGVhY2ggcHJvamVjdCB3aXRoIGEgaG9saXN0aWMgYXBwcm9hY2guIiwiYnRuX2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9fSx7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi1uZXR3b3JrIiwibGlicmFyeSI6ImZsYXRpY29uIn0sIl9pZCI6IjM5ZTE0YjgiLCJ0aXRsZSI6IkNvbm5lY3Qgd2l0aCB1cyIsImRlc2NyaXB0aW9uIjoiV2hhdCBzZXRzIHVzIGFwYXJ0IGZyb20gb3RoZXIgYWdlbmNpZXMgaXMgb3VyIGV4cGVydGlzZSBpbiBjcmVhdGluZyB0YWlsb3JlZCBzb2x1dGlvbnMuIiwiYnRuX2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9fSx7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi13YWxsZXQiLCJsaWJyYXJ5IjoiZmxhdGljb24ifSwiX2lkIjoiZjVlMTBlOCIsInRpdGxlIjoiUGF5bWVudCB1cyIsImRlc2NyaXB0aW9uIjoiV2UgZW5jb3VyYWdlIGV2ZXJ5IHRlYW0gbWVtYmVyIHRvIGJlIHRoZWlyIGJlc3Qgc2VsZiwgZm9zdGVyaW5nIGEgZmxleGlibGUgYW5kIGNvbGxhYm9yYXRpdmUgZW52aXJvbm1lbnQuIiwiYnRuX2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9fSx7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi10YXJnZXQiLCJsaWJyYXJ5IjoiZmxhdGljb24ifSwiX2lkIjoiODgzOTk2OSIsInRpdGxlIjoiR2V0IHlvdXIgZHJlYW0iLCJkZXNjcmlwdGlvbiI6IkF0IGl0cyBjb3JlLCBldmVyeSBidXNpbmVzcyBoYXMgdW5pcXVlIHNvbHV0aW9ucyB0aGF0IGluc3BpcmUgaW5ub3ZhdGlvbiBhbmQgcHJvZ3Jlc3MuIiwiYnRuX2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9fV0sInRpdGxlX2NvbG9yIjoiI2ZmZmZmZiIsImRlc2NyaXB0aW9uX2NvbG9yIjoiI0ZGRkZGRiIsImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X3Byb2Nlc3MifQ==\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-79ee8ab elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"79ee8ab\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4af1814\" data-id=\"4af1814\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n                <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-505fb45 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"505fb45\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-7223f1c\" data-id=\"7223f1c\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-e7c238e elementor-widget elementor-widget-google_maps\" data-id=\"e7c238e\" data-element_type=\"widget\" data-widget_type=\"google_maps.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-custom-embed\">nttt<iframe loading=\"lazy\"ntttttsrc=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"nttttttitle=\"10u00b057&#039;11.2&quot;N 106u00b045&#039;13.0&quot;E\"ntttttaria-label=\"10u00b057&#039;11.2&quot;N 106u00b045&#039;13.0&quot;E\"nttt></iframe>ntt</div>ntttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-0225539\" data-id=\"0225539\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjUxZDU0M2EiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkNvbnRhY3QgdXMgZm9yIGFueSBraW5kIG9mIGhlbHAgYXQgYW55IHRpbWUuLi4iLCJ0aXRsZV9jb2xvciI6IiM4NUIyM0IiLCJfcGFkZGluZyI6eyJ1bml0IjoiJSIsInRvcCI6IjAiLCJyaWdodCI6IjUiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV9zcGFjZV9ib3R0b20iOnsidW5pdCI6InB4Iiwic2l6ZSI6MzMsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjozMCwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzgsInNpemVzIjpbXX0sImN0X2FuaW1hdGUiOiJ3b3cgZmxpcEluWCIsIl9wYWRkaW5nX3RhYmxldCI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"][elementor-element data=\"eyJpZCI6ImVkMGRjMWIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjdGY3X2lkIjoiOTc0Iiwic3R5bGVfbDEiOiJzdHlsZTIifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY3RmNyJ9\"]            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                    </div>n        </section>n        \",\"scripts\":[],\"styles\":[]}}'),(10452,3181,'_elementor_css','a:6:{s:4:\"time\";i:1742180052;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:8:\"material\";i:1;s:8:\"flaticon\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(10453,3182,'_elementor_edit_mode','builder'),(10454,3182,'_elementor_template_type','wp-page'),(10455,3182,'_elementor_version','3.24.7'),(10456,3182,'_wp_page_template','default'),(10457,3182,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=vUCVqLmXSPM\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Customer\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Personnel\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Oders per year\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337},\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.trustpass.alibaba.com\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have started to open a store on Alibaba to connect with orders from around the world.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0e89391\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Goals to achieve by 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"United States: Products related to medical instruments, optics, and audio equipment.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"Australia: Sheet metal products.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"Other markets and products.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer services across multiple sectors\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"en|language\"],\"ct_animate\":\"wow fadeInUp\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"More services\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"Have any questions?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Contact for getting quote:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have some easy working procedure\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We always provide a sense of security in terms of quality and progress.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"Find us\",\"description\":\"We understand the importance of handling each project with a holistic approach.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"Connect with us\",\"description\":\"What sets us apart from other agencies is our expertise in creating tailored solutions.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Payment us\",\"description\":\"We encourage every team member to be their best self, fostering a flexible and collaborative environment.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"Get your dream\",\"description\":\"At its core, every business has unique solutions that inspire innovation and progress.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us for any kind of help at any time...\",\"title_color\":\"#85B23B\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(10458,3182,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(10459,3182,'_elementor_page_assets','a:2:{s:6:\"styles\";a:4:{i:0;s:18:\"widget-text-editor\";i:1;s:21:\"e-animation-slideInUp\";i:2;s:12:\"widget-image\";i:3;s:18:\"widget-google_maps\";}s:7:\"scripts\";a:9:{i:0;s:16:\"jquery-numerator\";i:1;s:20:\"ct-counter-widget-js\";i:2;s:11:\"progressbar\";i:3;s:16:\"waypoints-lib-js\";i:4;s:24:\"ct-progressbar-widget-js\";i:5;s:12:\"imagesloaded\";i:6;s:7:\"isotope\";i:7;s:25:\"ct-post-masonry-widget-js\";i:8;s:22:\"ct-post-grid-widget-js\";}}'),(10460,3182,'_elementor_element_cache','{\"timeout\":1742265880,\"value\":{\"content\":\"        <section class=\"elementor-section elementor-top-section elementor-element elementor-element-2d2b67a elementor-section-stretched elementor-section-full_width slider-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"2d2b67a\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-no \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-d1bb387\" data-id=\"d1bb387\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImNjODZmNGQiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJyZXZzbGlkZXJ0aXRsZSI6IkhvbWUgMSIsInNob3J0Y29kZSI6IltyZXZfc2xpZGVyIGFsaWFzPVwiaG9tZS0xXCJdW1wvcmV2X3NsaWRlcl0ifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoic2xpZGVyX3Jldm9sdXRpb24ifQ==\"]        <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-2cea906 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"2cea906\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-8e117d0\" data-id=\"8e117d0\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjI0YjYyY2MiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IldlIHByb3ZpZGUgYSB3aWRlIHJhbmdlIG9mIHByb2R1Y3RzIGZvciB0aGUgbWVjaGFuaWNhbCBpbmR1c3RyeSBhY3Jvc3MgVmlldG5hbSBhbmQgd29ybGR3aWRlLCBlc3BlY2lhbGx5IGluIGtleSBtYXJrZXRzIHN1Y2ggYXMgSmFwYW4sIFNvdXRoIEtvcmVhLCB0aGUgVW5pdGVkIFN0YXRlcywgYW5kIEF1c3RyYWxpYS4gV2UgYWxzbyBoYXZlIGV4cGVyaWVuY2UgaW4gZXhwb3J0aW5nIHRvIHRoZXNlIG1hcmtldHMuIiwidGl0bGVfY29sb3IiOiIjODVCMjNCIiwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzYsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHQiOnsidW5pdCI6InB4Iiwic2l6ZSI6NDgsInNpemVzIjpbXX0sInN0eWxlIjoic3QtbGluZS1sZWZ0IiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMTYiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjoyNiwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzQsInNpemVzIjpbXX0sImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluVXAifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-909b449 wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"909b449\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>tttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImM0YTIwMjgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJpbWFnZSI6eyJ1cmwiOiIiLCJpZCI6IiJ9LCJ2aWRlb19saW5rIjoiaHR0cHM6XC9cL3d3dy55b3V0dWJlLmNvbVwvd2F0Y2g/dj12VUNWcUxtWFNQTSIsImJ0bl92aWRlb19zdHlsZSI6InN0eWxlMyIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMzEiLCJyaWdodCI6IjM4IiwiYm90dG9tIjoiMCIsImxlZnQiOiI3OCIsImlzTGlua2VkIjpmYWxzZX0sIl9jc3NfY2xhc3NlcyI6ImVsLWlubGluZSB3b3cgZmFkZUluUmlnaHQiLCJfbWFyZ2luX3RhYmxldCI6eyJ1bml0IjoicHgiLCJ0b3AiOiIzMSIsInJpZ2h0IjoiMjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjY4IiwiaXNMaW5rZWQiOmZhbHNlfSwiX2FuaW1hdGlvbiI6InNsaWRlSW5VcCIsIl9tYXJnaW5fbW9iaWxlIjp7InVuaXQiOiJweCIsInRvcCI6IjMxIiwicmlnaHQiOiIyMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF92aWRlb19wbGF5ZXIifQ==\"]tt<div class=\"elementor-element elementor-element-1fd7931 el-inline wow fadeInRight elementor-invisible elementor-widget elementor-widget-image\" data-id=\"1fd7931\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;slideInUp&quot;}\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" class=\"attachment-full size-full wp-image-2542\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-4fff345\" data-id=\"4fff345\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjU5MGYxYmUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjo1MCwic3VmZml4IjoiKyIsInRob3VzYW5kX3NlcGFyYXRvciI6IiIsInRob3VzYW5kX3NlcGFyYXRvcl9jaGFyIjoiICIsInRpdGxlIjoiQ3VzdG9tZXIiLCJzaG93X2ljb24iOiJ0cnVlIiwiY291bnRlcl9pY29uIjp7InZhbHVlIjoibWF0ZXJpYWwgem1kaSB6bWRpLWFzc2lnbm1lbnQtY2hlY2siLCJsaWJyYXJ5IjoibWF0ZXJpYWwifSwibnVtYmVyX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjQxIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJfY3NzX2NsYXNzZXMiOiJ0ZXh0LWNlbnRlci1zbSIsImljb25fdHlwZSI6ImltYWdlIiwiaWNvbl9pbWFnZSI6eyJ1cmwiOiJodHRwOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAxOVwvMTJcL2NvdW50ZXItaWNvbi0wMS5wbmciLCJpZCI6MTUxNX0sIl9hbmltYXRpb24iOiJub25lIiwiY3RfYW5pbWF0ZSI6IndvdyBmYWRlSW5VcCJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9jb3VudGVyIn0=\"][elementor-element data=\"eyJpZCI6IjdhNWYyMzkiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjoyMDAsInN1ZmZpeCI6IisiLCJ0aG91c2FuZF9zZXBhcmF0b3IiOiIiLCJ0aG91c2FuZF9zZXBhcmF0b3JfY2hhciI6IiAiLCJ0aXRsZSI6IlBlcnNvbm5lbCIsInNob3dfaWNvbiI6InRydWUiLCJjb3VudGVyX2ljb24iOnsidmFsdWUiOiJtYXRlcmlhbCB6bWRpIHptZGktYXNzaWdubWVudC1jaGVjayIsImxpYnJhcnkiOiJtYXRlcmlhbCJ9LCJudW1iZXJfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiNDEiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sIl9jc3NfY2xhc3NlcyI6InRleHQtY2VudGVyLXNtIiwiaWNvbl90eXBlIjoiaW1hZ2UiLCJpY29uX2ltYWdlIjp7InVybCI6Imh0dHA6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDE5XC8xMlwvY291bnRlci1pY29uLTAyLnBuZyIsImlkIjoxNTE2fSwiX2FuaW1hdGlvbiI6Im5vbmUiLCJjdF9hbmltYXRlIjoid293IGZhZGVJblVwIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2NvdW50ZXIifQ==\"][elementor-element data=\"eyJpZCI6IjA0NTMxYzgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjoyMDAwLCJzdWZmaXgiOiIrIiwidGhvdXNhbmRfc2VwYXJhdG9yIjoiIiwidGhvdXNhbmRfc2VwYXJhdG9yX2NoYXIiOiIgIiwidGl0bGUiOiJPZGVycyBwZXIgeWVhciIsInNob3dfaWNvbiI6InRydWUiLCJjb3VudGVyX2ljb24iOnsidmFsdWUiOiJtYXRlcmlhbCB6bWRpIHptZGktYXNzaWdubWVudC1jaGVjayIsImxpYnJhcnkiOiJtYXRlcmlhbCJ9LCJudW1iZXJfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiNDEiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sIl9jc3NfY2xhc3NlcyI6InRleHQtY2VudGVyLXNtIiwiaWNvbl90eXBlIjoiaW1hZ2UiLCJpY29uX2ltYWdlIjp7InVybCI6Imh0dHA6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDE5XC8xMlwvY291bnRlci1pY29uLTAzLnBuZyIsImlkIjoxNTE3fSwiX2FuaW1hdGlvbiI6Im5vbmUiLCJjdF9hbmltYXRlIjoid293IGZhZGVJblVwIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2NvdW50ZXIifQ==\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-348ba48\" data-id=\"348ba48\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-ed7e1d0 wow fadeInUp elementor-widget elementor-widget-image\" data-id=\"ed7e1d0\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" class=\"attachment-full size-full wp-image-2571\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntttt<div class=\"elementor-element elementor-element-3b54db6 wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"3b54db6\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-8b70e78 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"8b70e78\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-c2b95bd\" data-id=\"c2b95bd\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-b5a8ba3 elementor-widget elementor-widget-image\" data-id=\"b5a8ba3\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" class=\"attachment-full size-full wp-image-2268\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntttt<div class=\"elementor-element elementor-element-0e89391 elementor-widget elementor-widget-image\" data-id=\"0e89391\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" class=\"attachment-full size-full wp-image-2559\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-de7136f\" data-id=\"de7136f\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6Ijg0MDdhYmUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IldlIHN0cml2ZSB0byBiZWNvbWUgb25lIG9mIFZpZXRuYW0ncyBsZWFkaW5nIG1lY2hhbmljYWwgcHJvY2Vzc2luZyBjb21wYW5pZXMsIHN1cHBseWluZyB0aGUgaW50ZXJuYXRpb25hbCBtYXJrZXQgYnkgMjAzMC4gSW4gdGhlIGZ1dHVyZSwgd2UgYWltIHRvIHByb2R1Y2UgYSBjb21wbGV0ZSBtYWNoaW5lcnkgcHJvZHVjdCB0byBkZWxpdmVyIGRpcmVjdGx5IHRvIGVuZC11c2Vycy4iLCJ0aXRsZV9jb2xvciI6IiM4NUIyM0IiLCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZSI6eyJ1bml0IjoicHgiLCJzaXplIjozNiwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodCI6eyJ1bml0IjoicHgiLCJzaXplIjo0OCwic2l6ZXMiOltdfSwic3R5bGUiOiJzdC1saW5lLWxlZnQiLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6Ii05IiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwidGl0bGVfc3BhY2VfYm90dG9tIjp7InVuaXQiOiJweCIsInNpemUiOjE3LCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzAsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjM4LCJzaXplcyI6W119LCJjdF9hbmltYXRlIjoid293IGZsaXBJblgiLCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV9tb2JpbGUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MjgsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfbW9iaWxlIjp7InVuaXQiOiJweCIsInNpemUiOjM0LCJzaXplcyI6W119fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-0c8497c wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"0c8497c\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Goals to achieve by 2026:</p>tttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6IjQ3NTRlZDYiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJwcm9ncmVzc2Jhcl9saXN0IjpbeyJ0aXRsZSI6IkVhc3QgQXNpYSAoSmFwYW4sIFNvdXRoIEtvcmVhLCBldGMuKTogRXhwb3J0IG9mIHJlcGxhY2VtZW50IG1hY2hpbmVyeSBjb21wb25lbnRzLCBtb3RvcmN5Y2xlIGFuZCBjYXIgYWNjZXNzb3JpZXMsIHdhdGVyIGluZHVzdHJ5IGZpdHRpbmdzLCBtb2xkcywgYW5kIG90aGVyIG1lY2hhbmljYWwgcGFydHMuIiwicHJvZ3Jlc3NfdHlwZSI6IiIsInBlcmNlbnQiOnsidW5pdCI6IiUiLCJzaXplIjozMCwic2l6ZXMiOltdfSwiZGlzcGxheV9wZXJjZW50YWdlIjoiaGlkZSIsImlubmVyX3RleHQiOiJXZWIgRGVzaWduZXIiLCJfaWQiOiI4YjRiY2Q2In0seyJ0aXRsZSI6IkV1cm9wZSAoR2VybWFueSwgQnVsZ2FyaWEsIHRoZSBOZXRoZXJsYW5kcywgZXRjLik6IFByb2R1Y3Rpb24gamlncyBmb3IgYXV0b21vdGl2ZSBiZWFyaW5ncywgYW5kIGVsZWN0cmljYWwgYm94IGNvbXBvbmVudHMgZm9yIGF1dG9tYXRpb24gbWFjaGluZXJ5LiIsInByb2dyZXNzX3R5cGUiOiIiLCJwZXJjZW50Ijp7InVuaXQiOiIlIiwic2l6ZSI6MTAsInNpemVzIjpbXX0sImRpc3BsYXlfcGVyY2VudGFnZSI6ImhpZGUiLCJpbm5lcl90ZXh0IjoiV2ViIERlc2lnbmVyIiwiX2lkIjoiNmUwZjg3NyJ9LHsidGl0bGUiOiJVbml0ZWQgU3RhdGVzOiBQcm9kdWN0cyByZWxhdGVkIHRvIG1lZGljYWwgaW5zdHJ1bWVudHMsIG9wdGljcywgYW5kIGF1ZGlvIGVxdWlwbWVudC4iLCJwcm9ncmVzc190eXBlIjoiIiwicGVyY2VudCI6eyJ1bml0IjoiJSIsInNpemUiOjMwLCJzaXplcyI6W119LCJkaXNwbGF5X3BlcmNlbnRhZ2UiOiJzaG93IiwiX2lkIjoiMjIyZWI4MSJ9LHsiX2lkIjoiNWVlY2NiNiIsInRpdGxlIjoiQXVzdHJhbGlhOiBTaGVldCBtZXRhbCBwcm9kdWN0cy4iLCJwZXJjZW50Ijp7InVuaXQiOiIlIiwic2l6ZSI6OCwic2l6ZXMiOltdfX0seyJfaWQiOiIxMGU1NzUwIiwidGl0bGUiOiJWaWV0bmFtOiBTbWFsbCBhdXRvbWF0aW9uIG1hY2hpbmVzOyBtb3RvcmN5Y2xlIGFuZCBjYXIgYm9sdHM7IHByb2R1Y3RzIGluIHRoZSBvaWwgYW5kIGdhcyBpbmR1c3RyeS4iLCJwZXJjZW50Ijp7InVuaXQiOiIlIiwic2l6ZSI6MjAsInNpemVzIjpbXX19LHsiX2lkIjoiZTE3YTE5NSIsInRpdGxlIjoiT3RoZXIgbWFya2V0cyBhbmQgcHJvZHVjdHMuIiwicGVyY2VudCI6eyJ1bml0IjoiJSIsInNpemUiOjIsInNpemVzIjpbXX19XSwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiI3OCIsImlzTGlua2VkIjpmYWxzZX0sIl9tYXJnaW5fbW9iaWxlIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6dHJ1ZX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9wcm9ncmVzc2JhciJ9\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-b6145ce elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"b6145ce\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-e65d58b\" data-id=\"e65d58b\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjljZDU1ZGQiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IldlIG9mZmVyIHNlcnZpY2VzIGFjcm9zcyBtdWx0aXBsZSBzZWN0b3JzIiwidGl0bGVfY29sb3IiOiIjODVCMjNCIiwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzYsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHQiOnsidW5pdCI6InB4Iiwic2l6ZSI6NDgsInNpemVzIjpbXX0sInN0eWxlIjoic3QtbGluZS1sZWZ0IiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOnRydWV9LCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzAsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjM4LCJzaXplcyI6W119LCJjdF9hbmltYXRlIjoid293IGZhZGVJbkxlZnQiLCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV9tb2JpbGUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MjgsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfbW9iaWxlIjp7InVuaXQiOiJweCIsInNpemUiOjM0LCJzaXplcyI6W119fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-2067062\" data-id=\"2067062\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-956a238 wow fadeInRight elementor-widget elementor-widget-text-editor\" data-id=\"956a238\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>We always meet our customers&#8217; design requirements. Appearance and dimensions are what we consider most important.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-74328b6b elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"74328b6b\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4b9c9796\" data-id=\"4b9c9796\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjFjYTNiNmM1IiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsibGF5b3V0IjoiNCIsImxpbWl0Ijo0LCJmaWx0ZXJfZGVmYXVsdF90aXRsZSI6IkFsbCIsImNvbF9zbSI6IjEiLCJjb2xfbWQiOiIyIiwiY29sX2xnIjoiMiIsImNvbF94bCI6IjIiLCJidXR0b25fdGV4dCI6IlJlYWQgbW9yZSIsInNvdXJjZSI6WyJlbnxsYW5ndWFnZSJdLCJjdF9hbmltYXRlIjoid293IGZhZGVJblVwIiwib3JkZXIiOiJhc2MifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3Rfc2VydmljZV9ncmlkIn0=\"][elementor-element data=\"eyJpZCI6IjI5NzFiOGIzIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGV4dCI6Ik1vcmUgc2VydmljZXMiLCJsaW5rIjp7InVybCI6Ilwvc2VydmljZXMiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn0sImFsaWduIjoiY2VudGVyIiwiYnRuX2ljb24iOnsidmFsdWUiOiJtYXRlcmlhbCB6bWRpIHptZGktc2V0dGluZ3MiLCJsaWJyYXJ5IjoibWF0ZXJpYWwifSwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiItMTAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJzdHlsZSI6ImJ0bi1wcmVzZXQzIiwiX2FuaW1hdGlvbiI6Im5vbmUifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfYnV0dG9uIn0=\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-f43d465 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"f43d465\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-5310bd3\" data-id=\"5310bd3\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImJjZmM3MzUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjdGY3X2lkIjoiOTMyIiwibGF5b3V0IjoiMiIsImN0ZjdfdGl0bGUiOiJIYXZlIGFueSBxdWVzdGlvbnM/IiwiY3RmN19kZXNjcmlwdGlvbiI6IkNhbGw6IDgwMCAyNTAgMzY5IiwiY3RmN19waG9uZSI6IjxzcGFuPkNhbGw6PFwvc3Bhbj4gMDk2ODg2MDM4NiIsImVsX3RpdGxlIjoiQ29udGFjdCBmb3IgZ2V0dGluZyBxdW90ZToiLCJjdF9hbmltYXRlIjoid293IGZsaXBJblgifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY3RmNyJ9\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-a9b49c5 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"a9b49c5\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n                            <div class=\"elementor-background-overlay\"></div>n                n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-1dcb85a\" data-id=\"1dcb85a\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n                <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-6c560a6 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"6c560a6\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-e82cd67\" data-id=\"e82cd67\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImVmNDE1MTEiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IldlIGhhdmUgc29tZSBlYXN5IHdvcmtpbmcgcHJvY2VkdXJlIiwidGl0bGVfY29sb3IiOiIjZmZmZmZmIiwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzYsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHQiOnsidW5pdCI6InB4Iiwic2l6ZSI6NDgsInNpemVzIjpbXX0sInN0eWxlIjoic3QtbGluZS1sZWZ0IiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOnRydWV9LCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzAsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjM4LCJzaXplcyI6W119LCJjdF9hbmltYXRlIjoid293IGZhZGVJbkxlZnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-3a08737\" data-id=\"3a08737\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-7aa11c2 wow fadeInRight elementor-widget elementor-widget-text-editor\" data-id=\"7aa11c2\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>We always provide a sense of security in terms of quality and progress.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n        [elementor-element data=\"eyJpZCI6IjlkNWVhMzIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X2xpc3QiOlt7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi1yZXNlYXJjaCIsImxpYnJhcnkiOiJmbGF0aWNvbiJ9LCJfaWQiOiIwNTVmZWYyIiwidGl0bGUiOiJGaW5kIHVzIiwiZGVzY3JpcHRpb24iOiJXZSB1bmRlcnN0YW5kIHRoZSBpbXBvcnRhbmNlIG9mIGhhbmRsaW5nIGVhY2ggcHJvamVjdCB3aXRoIGEgaG9saXN0aWMgYXBwcm9hY2guIiwiYnRuX2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9fSx7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi1uZXR3b3JrIiwibGlicmFyeSI6ImZsYXRpY29uIn0sIl9pZCI6IjM5ZTE0YjgiLCJ0aXRsZSI6IkNvbm5lY3Qgd2l0aCB1cyIsImRlc2NyaXB0aW9uIjoiV2hhdCBzZXRzIHVzIGFwYXJ0IGZyb20gb3RoZXIgYWdlbmNpZXMgaXMgb3VyIGV4cGVydGlzZSBpbiBjcmVhdGluZyB0YWlsb3JlZCBzb2x1dGlvbnMuIiwiYnRuX2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9fSx7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi13YWxsZXQiLCJsaWJyYXJ5IjoiZmxhdGljb24ifSwiX2lkIjoiZjVlMTBlOCIsInRpdGxlIjoiUGF5bWVudCB1cyIsImRlc2NyaXB0aW9uIjoiV2UgZW5jb3VyYWdlIGV2ZXJ5IHRlYW0gbWVtYmVyIHRvIGJlIHRoZWlyIGJlc3Qgc2VsZiwgZm9zdGVyaW5nIGEgZmxleGlibGUgYW5kIGNvbGxhYm9yYXRpdmUgZW52aXJvbm1lbnQuIiwiYnRuX2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9fSx7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi10YXJnZXQiLCJsaWJyYXJ5IjoiZmxhdGljb24ifSwiX2lkIjoiODgzOTk2OSIsInRpdGxlIjoiR2V0IHlvdXIgZHJlYW0iLCJkZXNjcmlwdGlvbiI6IkF0IGl0cyBjb3JlLCBldmVyeSBidXNpbmVzcyBoYXMgdW5pcXVlIHNvbHV0aW9ucyB0aGF0IGluc3BpcmUgaW5ub3ZhdGlvbiBhbmQgcHJvZ3Jlc3MuIiwiYnRuX2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9fV0sInRpdGxlX2NvbG9yIjoiI2ZmZmZmZiIsImRlc2NyaXB0aW9uX2NvbG9yIjoiI0ZGRkZGRiIsImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X3Byb2Nlc3MifQ==\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-79ee8ab elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"79ee8ab\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4af1814\" data-id=\"4af1814\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n                <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-505fb45 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"505fb45\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-7223f1c\" data-id=\"7223f1c\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-e7c238e elementor-widget elementor-widget-google_maps\" data-id=\"e7c238e\" data-element_type=\"widget\" data-widget_type=\"google_maps.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-custom-embed\">nttt<iframe loading=\"lazy\"ntttttsrc=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"nttttttitle=\"10u00b057&#039;11.2&quot;N 106u00b045&#039;13.0&quot;E\"ntttttaria-label=\"10u00b057&#039;11.2&quot;N 106u00b045&#039;13.0&quot;E\"nttt></iframe>ntt</div>ntttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-0225539\" data-id=\"0225539\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjUxZDU0M2EiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkNvbnRhY3QgdXMgZm9yIGFueSBraW5kIG9mIGhlbHAgYXQgYW55IHRpbWUuLi4iLCJ0aXRsZV9jb2xvciI6IiM4NUIyM0IiLCJfcGFkZGluZyI6eyJ1bml0IjoiJSIsInRvcCI6IjAiLCJyaWdodCI6IjUiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV9zcGFjZV9ib3R0b20iOnsidW5pdCI6InB4Iiwic2l6ZSI6MzMsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjozMCwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzgsInNpemVzIjpbXX0sImN0X2FuaW1hdGUiOiJ3b3cgZmxpcEluWCIsIl9wYWRkaW5nX3RhYmxldCI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"][elementor-element data=\"eyJpZCI6ImVkMGRjMWIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjdGY3X2lkIjoiOTc0Iiwic3R5bGVfbDEiOiJzdHlsZTIifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY3RmNyJ9\"]            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                    </div>n        </section>n        \",\"scripts\":[],\"styles\":[]}}'),(10461,3182,'_elementor_css','a:6:{s:4:\"time\";i:1742180052;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:8:\"material\";i:1;s:8:\"flaticon\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(10462,9,'_elementor_css','a:6:{s:4:\"time\";i:1742180063;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:8:\"material\";i:1;s:8:\"flaticon\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(10463,9,'_elementor_element_cache','{\"timeout\":1746541152,\"value\":{\"content\":\"        <section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-2d2b67a elementor-section-stretched elementor-section-full_width slider-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"2d2b67a\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;}\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-no \\\">\\n                    <div class=\\\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-d1bb387\\\" data-id=\\\"d1bb387\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6ImNjODZmNGQiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJyZXZzbGlkZXJ0aXRsZSI6IkhvbWUgMSIsInNob3J0Y29kZSI6IltyZXZfc2xpZGVyIGFsaWFzPVwiaG9tZS0xXCJdW1wvcmV2X3NsaWRlcl0ifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoic2xpZGVyX3Jldm9sdXRpb24ifQ==\\\"]        <section class=\\\"elementor-section elementor-inner-section elementor-element elementor-element-2cea906 elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"2cea906\\\" data-element_type=\\\"section\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-8e117d0\\\" data-id=\\\"8e117d0\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6IjI0YjYyY2MiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IldlIHByb3ZpZGUgYSB3aWRlIHJhbmdlIG9mIHByb2R1Y3RzIGZvciB0aGUgbWVjaGFuaWNhbCBpbmR1c3RyeSBhY3Jvc3MgVmlldG5hbSBhbmQgd29ybGR3aWRlLCBlc3BlY2lhbGx5IGluIGtleSBtYXJrZXRzIHN1Y2ggYXMgSmFwYW4sIFNvdXRoIEtvcmVhLCB0aGUgVW5pdGVkIFN0YXRlcywgYW5kIEF1c3RyYWxpYS4gV2UgYWxzbyBoYXZlIGV4cGVyaWVuY2UgaW4gZXhwb3J0aW5nIHRvIHRoZXNlIG1hcmtldHMuIiwidGl0bGVfY29sb3IiOiIjODVCMjNCIiwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzYsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHQiOnsidW5pdCI6InB4Iiwic2l6ZSI6NDgsInNpemVzIjpbXX0sInN0eWxlIjoic3QtbGluZS1sZWZ0IiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMTYiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjoyNiwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzQsInNpemVzIjpbXX0sImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluVXAifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-909b449 wow fadeInUp elementor-widget elementor-widget-text-editor\\\" data-id=\\\"909b449\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element data=\\\"eyJpZCI6ImM0YTIwMjgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJpbWFnZSI6eyJ1cmwiOiIiLCJpZCI6IiJ9LCJ2aWRlb19saW5rIjoiaHR0cHM6XC9cL3d3dy55b3V0dWJlLmNvbVwvd2F0Y2g\\/dj12VUNWcUxtWFNQTSIsImJ0bl92aWRlb19zdHlsZSI6InN0eWxlMyIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMzEiLCJyaWdodCI6IjM4IiwiYm90dG9tIjoiMCIsImxlZnQiOiI3OCIsImlzTGlua2VkIjpmYWxzZX0sIl9jc3NfY2xhc3NlcyI6ImVsLWlubGluZSB3b3cgZmFkZUluUmlnaHQiLCJfbWFyZ2luX3RhYmxldCI6eyJ1bml0IjoicHgiLCJ0b3AiOiIzMSIsInJpZ2h0IjoiMjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjY4IiwiaXNMaW5rZWQiOmZhbHNlfSwiX2FuaW1hdGlvbiI6InNsaWRlSW5VcCIsIl9tYXJnaW5fbW9iaWxlIjp7InVuaXQiOiJweCIsInRvcCI6IjMxIiwicmlnaHQiOiIyMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF92aWRlb19wbGF5ZXIifQ==\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-1fd7931 el-inline wow fadeInRight elementor-invisible elementor-widget elementor-widget-image\\\" data-id=\\\"1fd7931\\\" data-element_type=\\\"widget\\\" data-settings=\\\"{&quot;_animation&quot;:&quot;slideInUp&quot;}\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"150\\\" height=\\\"75\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\\\" class=\\\"attachment-full size-full wp-image-2542\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t            <\\/div>\\n        <\\/div>\\n                <div class=\\\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-4fff345\\\" data-id=\\\"4fff345\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6IjU5MGYxYmUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjo1MCwic3VmZml4IjoiKyIsInRob3VzYW5kX3NlcGFyYXRvciI6IiIsInRob3VzYW5kX3NlcGFyYXRvcl9jaGFyIjoiICIsInRpdGxlIjoiQ3VzdG9tZXIiLCJzaG93X2ljb24iOiJ0cnVlIiwiY291bnRlcl9pY29uIjp7InZhbHVlIjoibWF0ZXJpYWwgem1kaSB6bWRpLWFzc2lnbm1lbnQtY2hlY2siLCJsaWJyYXJ5IjoibWF0ZXJpYWwifSwibnVtYmVyX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjQxIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJfY3NzX2NsYXNzZXMiOiJ0ZXh0LWNlbnRlci1zbSIsImljb25fdHlwZSI6ImltYWdlIiwiaWNvbl9pbWFnZSI6eyJ1cmwiOiJodHRwOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAxOVwvMTJcL2NvdW50ZXItaWNvbi0wMS5wbmciLCJpZCI6MTUxNX0sIl9hbmltYXRpb24iOiJub25lIiwiY3RfYW5pbWF0ZSI6IndvdyBmYWRlSW5VcCJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9jb3VudGVyIn0=\\\"][elementor-element data=\\\"eyJpZCI6IjdhNWYyMzkiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjoyMDAsInN1ZmZpeCI6IisiLCJ0aG91c2FuZF9zZXBhcmF0b3IiOiIiLCJ0aG91c2FuZF9zZXBhcmF0b3JfY2hhciI6IiAiLCJ0aXRsZSI6IlBlcnNvbm5lbCIsInNob3dfaWNvbiI6InRydWUiLCJjb3VudGVyX2ljb24iOnsidmFsdWUiOiJtYXRlcmlhbCB6bWRpIHptZGktYXNzaWdubWVudC1jaGVjayIsImxpYnJhcnkiOiJtYXRlcmlhbCJ9LCJudW1iZXJfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiNDEiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sIl9jc3NfY2xhc3NlcyI6InRleHQtY2VudGVyLXNtIiwiaWNvbl90eXBlIjoiaW1hZ2UiLCJpY29uX2ltYWdlIjp7InVybCI6Imh0dHA6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDE5XC8xMlwvY291bnRlci1pY29uLTAyLnBuZyIsImlkIjoxNTE2fSwiX2FuaW1hdGlvbiI6Im5vbmUiLCJjdF9hbmltYXRlIjoid293IGZhZGVJblVwIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2NvdW50ZXIifQ==\\\"][elementor-element data=\\\"eyJpZCI6IjA0NTMxYzgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjoyMDAwLCJzdWZmaXgiOiIrIiwidGhvdXNhbmRfc2VwYXJhdG9yIjoiIiwidGhvdXNhbmRfc2VwYXJhdG9yX2NoYXIiOiIgIiwidGl0bGUiOiJPZGVycyBwZXIgeWVhciIsInNob3dfaWNvbiI6InRydWUiLCJjb3VudGVyX2ljb24iOnsidmFsdWUiOiJtYXRlcmlhbCB6bWRpIHptZGktYXNzaWdubWVudC1jaGVjayIsImxpYnJhcnkiOiJtYXRlcmlhbCJ9LCJudW1iZXJfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiNDEiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sIl9jc3NfY2xhc3NlcyI6InRleHQtY2VudGVyLXNtIiwiaWNvbl90eXBlIjoiaW1hZ2UiLCJpY29uX2ltYWdlIjp7InVybCI6Imh0dHA6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDE5XC8xMlwvY291bnRlci1pY29uLTAzLnBuZyIsImlkIjoxNTE3fSwiX2FuaW1hdGlvbiI6Im5vbmUiLCJjdF9hbmltYXRlIjoid293IGZhZGVJblVwIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2NvdW50ZXIifQ==\\\"]            <\\/div>\\n        <\\/div>\\n                <div class=\\\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-348ba48\\\" data-id=\\\"348ba48\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        \\t\\t<div class=\\\"elementor-element elementor-element-ed7e1d0 wow fadeInUp elementor-widget elementor-widget-image\\\" data-id=\\\"ed7e1d0\\\" data-element_type=\\\"widget\\\" data-settings=\\\"{&quot;_animation&quot;:&quot;none&quot;}\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"http:\\/\\/fe2tech.trustpass.alibaba.com\\/\\\" target=\\\"_blank\\\" rel=\\\"nofollow\\\">\\n\\t\\t\\t\\t\\t\\t\\t<img width=\\\"600\\\" height=\\\"400\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\\\" class=\\\"attachment-full size-full wp-image-2571\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-3b54db6 wow fadeInUp elementor-widget elementor-widget-text-editor\\\" data-id=\\\"3b54db6\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>We have started to open a store on Alibaba to connect with orders from around the world.<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                    <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                <section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-8b70e78 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"8b70e78\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-c2b95bd\\\" data-id=\\\"c2b95bd\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        \\t\\t<div class=\\\"elementor-element elementor-element-b5a8ba3 elementor-widget elementor-widget-image\\\" data-id=\\\"b5a8ba3\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"2000\\\" height=\\\"2000\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\\\" class=\\\"attachment-full size-full wp-image-2268\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-0e89391 elementor-widget elementor-widget-image\\\" data-id=\\\"0e89391\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"1280\\\" height=\\\"1026\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\\\" class=\\\"attachment-full size-full wp-image-2559\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t            <\\/div>\\n        <\\/div>\\n                <div class=\\\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-de7136f\\\" data-id=\\\"de7136f\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6Ijg0MDdhYmUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IldlIHN0cml2ZSB0byBiZWNvbWUgb25lIG9mIFZpZXRuYW0ncyBsZWFkaW5nIG1lY2hhbmljYWwgcHJvY2Vzc2luZyBjb21wYW5pZXMsIHN1cHBseWluZyB0aGUgaW50ZXJuYXRpb25hbCBtYXJrZXQgYnkgMjAzMC4gSW4gdGhlIGZ1dHVyZSwgd2UgYWltIHRvIHByb2R1Y2UgYSBjb21wbGV0ZSBtYWNoaW5lcnkgcHJvZHVjdCB0byBkZWxpdmVyIGRpcmVjdGx5IHRvIGVuZC11c2Vycy4iLCJ0aXRsZV9jb2xvciI6IiM4NUIyM0IiLCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZSI6eyJ1bml0IjoicHgiLCJzaXplIjozNiwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodCI6eyJ1bml0IjoicHgiLCJzaXplIjo0OCwic2l6ZXMiOltdfSwic3R5bGUiOiJzdC1saW5lLWxlZnQiLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6Ii05IiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwidGl0bGVfc3BhY2VfYm90dG9tIjp7InVuaXQiOiJweCIsInNpemUiOjE3LCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzAsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjM4LCJzaXplcyI6W119LCJjdF9hbmltYXRlIjoid293IGZsaXBJblgiLCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV9tb2JpbGUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MjgsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfbW9iaWxlIjp7InVuaXQiOiJweCIsInNpemUiOjM0LCJzaXplcyI6W119fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-0c8497c wow fadeInUp elementor-widget elementor-widget-text-editor\\\" data-id=\\\"0c8497c\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>Goals to achieve by 2026:<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element data=\\\"eyJpZCI6IjQ3NTRlZDYiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJwcm9ncmVzc2Jhcl9saXN0IjpbeyJ0aXRsZSI6IkVhc3QgQXNpYSAoSmFwYW4sIFNvdXRoIEtvcmVhLCBldGMuKTogRXhwb3J0IG9mIHJlcGxhY2VtZW50IG1hY2hpbmVyeSBjb21wb25lbnRzLCBtb3RvcmN5Y2xlIGFuZCBjYXIgYWNjZXNzb3JpZXMsIHdhdGVyIGluZHVzdHJ5IGZpdHRpbmdzLCBtb2xkcywgYW5kIG90aGVyIG1lY2hhbmljYWwgcGFydHMuIiwicHJvZ3Jlc3NfdHlwZSI6IiIsInBlcmNlbnQiOnsidW5pdCI6IiUiLCJzaXplIjozMCwic2l6ZXMiOltdfSwiZGlzcGxheV9wZXJjZW50YWdlIjoiaGlkZSIsImlubmVyX3RleHQiOiJXZWIgRGVzaWduZXIiLCJfaWQiOiI4YjRiY2Q2In0seyJ0aXRsZSI6IkV1cm9wZSAoR2VybWFueSwgQnVsZ2FyaWEsIHRoZSBOZXRoZXJsYW5kcywgZXRjLik6IFByb2R1Y3Rpb24gamlncyBmb3IgYXV0b21vdGl2ZSBiZWFyaW5ncywgYW5kIGVsZWN0cmljYWwgYm94IGNvbXBvbmVudHMgZm9yIGF1dG9tYXRpb24gbWFjaGluZXJ5LiIsInByb2dyZXNzX3R5cGUiOiIiLCJwZXJjZW50Ijp7InVuaXQiOiIlIiwic2l6ZSI6MTAsInNpemVzIjpbXX0sImRpc3BsYXlfcGVyY2VudGFnZSI6ImhpZGUiLCJpbm5lcl90ZXh0IjoiV2ViIERlc2lnbmVyIiwiX2lkIjoiNmUwZjg3NyJ9LHsidGl0bGUiOiJVbml0ZWQgU3RhdGVzOiBQcm9kdWN0cyByZWxhdGVkIHRvIG1lZGljYWwgaW5zdHJ1bWVudHMsIG9wdGljcywgYW5kIGF1ZGlvIGVxdWlwbWVudC4iLCJwcm9ncmVzc190eXBlIjoiIiwicGVyY2VudCI6eyJ1bml0IjoiJSIsInNpemUiOjMwLCJzaXplcyI6W119LCJkaXNwbGF5X3BlcmNlbnRhZ2UiOiJzaG93IiwiX2lkIjoiMjIyZWI4MSJ9LHsiX2lkIjoiNWVlY2NiNiIsInRpdGxlIjoiQXVzdHJhbGlhOiBTaGVldCBtZXRhbCBwcm9kdWN0cy4iLCJwZXJjZW50Ijp7InVuaXQiOiIlIiwic2l6ZSI6OCwic2l6ZXMiOltdfX0seyJfaWQiOiIxMGU1NzUwIiwidGl0bGUiOiJWaWV0bmFtOiBTbWFsbCBhdXRvbWF0aW9uIG1hY2hpbmVzOyBtb3RvcmN5Y2xlIGFuZCBjYXIgYm9sdHM7IHByb2R1Y3RzIGluIHRoZSBvaWwgYW5kIGdhcyBpbmR1c3RyeS4iLCJwZXJjZW50Ijp7InVuaXQiOiIlIiwic2l6ZSI6MjAsInNpemVzIjpbXX19LHsiX2lkIjoiZTE3YTE5NSIsInRpdGxlIjoiT3RoZXIgbWFya2V0cyBhbmQgcHJvZHVjdHMuIiwicGVyY2VudCI6eyJ1bml0IjoiJSIsInNpemUiOjIsInNpemVzIjpbXX19XSwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiI3OCIsImlzTGlua2VkIjpmYWxzZX0sIl9tYXJnaW5fbW9iaWxlIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6dHJ1ZX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9wcm9ncmVzc2JhciJ9\\\"]            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                <section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-b6145ce elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"b6145ce\\\" data-element_type=\\\"section\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-e65d58b\\\" data-id=\\\"e65d58b\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6IjljZDU1ZGQiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IldlIG9mZmVyIHNlcnZpY2VzIGFjcm9zcyBtdWx0aXBsZSBzZWN0b3JzIiwidGl0bGVfY29sb3IiOiIjODVCMjNCIiwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzYsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHQiOnsidW5pdCI6InB4Iiwic2l6ZSI6NDgsInNpemVzIjpbXX0sInN0eWxlIjoic3QtbGluZS1sZWZ0IiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOnRydWV9LCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzAsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjM4LCJzaXplcyI6W119LCJjdF9hbmltYXRlIjoid293IGZhZGVJbkxlZnQiLCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV9tb2JpbGUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MjgsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfbW9iaWxlIjp7InVuaXQiOiJweCIsInNpemUiOjM0LCJzaXplcyI6W119fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\\\"]            <\\/div>\\n        <\\/div>\\n                <div class=\\\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-2067062\\\" data-id=\\\"2067062\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        \\t\\t<div class=\\\"elementor-element elementor-element-956a238 wow fadeInRight elementor-widget elementor-widget-text-editor\\\" data-id=\\\"956a238\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>We always meet our customers&#8217; design requirements. Appearance and dimensions are what we consider most important.<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                <section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-74328b6b elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"74328b6b\\\" data-element_type=\\\"section\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4b9c9796\\\" data-id=\\\"4b9c9796\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6IjFjYTNiNmM1IiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsibGF5b3V0IjoiNCIsImxpbWl0Ijo0LCJmaWx0ZXJfZGVmYXVsdF90aXRsZSI6IkFsbCIsImNvbF9zbSI6IjEiLCJjb2xfbWQiOiIyIiwiY29sX2xnIjoiMiIsImNvbF94bCI6IjIiLCJidXR0b25fdGV4dCI6IlJlYWQgbW9yZSIsInNvdXJjZSI6WyJlbnxsYW5ndWFnZSJdLCJjdF9hbmltYXRlIjoid293IGZhZGVJblVwIiwib3JkZXIiOiJhc2MifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3Rfc2VydmljZV9ncmlkIn0=\\\"][elementor-element data=\\\"eyJpZCI6IjI5NzFiOGIzIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGV4dCI6Ik1vcmUgc2VydmljZXMiLCJsaW5rIjp7InVybCI6Ilwvc2VydmljZXMiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn0sImFsaWduIjoiY2VudGVyIiwiYnRuX2ljb24iOnsidmFsdWUiOiJtYXRlcmlhbCB6bWRpIHptZGktc2V0dGluZ3MiLCJsaWJyYXJ5IjoibWF0ZXJpYWwifSwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiItMTAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJzdHlsZSI6ImJ0bi1wcmVzZXQzIiwiX2FuaW1hdGlvbiI6Im5vbmUifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfYnV0dG9uIn0=\\\"]            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                <section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-f43d465 elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"f43d465\\\" data-element_type=\\\"section\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-5310bd3\\\" data-id=\\\"5310bd3\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6ImJjZmM3MzUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjdGY3X2lkIjoiOTMyIiwibGF5b3V0IjoiMiIsImN0ZjdfdGl0bGUiOiJIYXZlIGFueSBxdWVzdGlvbnM\\/IiwiY3RmN19kZXNjcmlwdGlvbiI6IkNhbGw6IDgwMCAyNTAgMzY5IiwiY3RmN19waG9uZSI6IjxzcGFuPkNhbGw6PFwvc3Bhbj4gMDk2ODg2MDM4NiIsImVsX3RpdGxlIjoiQ29udGFjdCBmb3IgZ2V0dGluZyBxdW90ZToiLCJjdF9hbmltYXRlIjoid293IGZsaXBJblgifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY3RmNyJ9\\\"]            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                <section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-a9b49c5 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"a9b49c5\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n                            <div class=\\\"elementor-background-overlay\\\"><\\/div>\\n                \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-1dcb85a\\\" data-id=\\\"1dcb85a\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n                <section class=\\\"elementor-section elementor-inner-section elementor-element elementor-element-6c560a6 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"6c560a6\\\" data-element_type=\\\"section\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-e82cd67\\\" data-id=\\\"e82cd67\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6ImVmNDE1MTEiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IldlIGhhdmUgc29tZSBlYXN5IHdvcmtpbmcgcHJvY2VkdXJlIiwidGl0bGVfY29sb3IiOiIjZmZmZmZmIiwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzYsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHQiOnsidW5pdCI6InB4Iiwic2l6ZSI6NDgsInNpemVzIjpbXX0sInN0eWxlIjoic3QtbGluZS1sZWZ0IiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOnRydWV9LCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzAsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjM4LCJzaXplcyI6W119LCJjdF9hbmltYXRlIjoid293IGZhZGVJbkxlZnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\\\"]            <\\/div>\\n        <\\/div>\\n                <div class=\\\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-3a08737\\\" data-id=\\\"3a08737\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        \\t\\t<div class=\\\"elementor-element elementor-element-7aa11c2 wow fadeInRight elementor-widget elementor-widget-text-editor\\\" data-id=\\\"7aa11c2\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>We always provide a sense of security in terms of quality and progress.<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n        [elementor-element data=\\\"eyJpZCI6IjlkNWVhMzIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X2xpc3QiOlt7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi1yZXNlYXJjaCIsImxpYnJhcnkiOiJmbGF0aWNvbiJ9LCJfaWQiOiIwNTVmZWYyIiwidGl0bGUiOiJGaW5kIHVzIiwiZGVzY3JpcHRpb24iOiJXZSB1bmRlcnN0YW5kIHRoZSBpbXBvcnRhbmNlIG9mIGhhbmRsaW5nIGVhY2ggcHJvamVjdCB3aXRoIGEgaG9saXN0aWMgYXBwcm9hY2guIiwiYnRuX2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9fSx7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi1uZXR3b3JrIiwibGlicmFyeSI6ImZsYXRpY29uIn0sIl9pZCI6IjM5ZTE0YjgiLCJ0aXRsZSI6IkNvbm5lY3Qgd2l0aCB1cyIsImRlc2NyaXB0aW9uIjoiV2hhdCBzZXRzIHVzIGFwYXJ0IGZyb20gb3RoZXIgYWdlbmNpZXMgaXMgb3VyIGV4cGVydGlzZSBpbiBjcmVhdGluZyB0YWlsb3JlZCBzb2x1dGlvbnMuIiwiYnRuX2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9fSx7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi13YWxsZXQiLCJsaWJyYXJ5IjoiZmxhdGljb24ifSwiX2lkIjoiZjVlMTBlOCIsInRpdGxlIjoiUGF5bWVudCB1cyIsImRlc2NyaXB0aW9uIjoiV2UgZW5jb3VyYWdlIGV2ZXJ5IHRlYW0gbWVtYmVyIHRvIGJlIHRoZWlyIGJlc3Qgc2VsZiwgZm9zdGVyaW5nIGEgZmxleGlibGUgYW5kIGNvbGxhYm9yYXRpdmUgZW52aXJvbm1lbnQuIiwiYnRuX2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9fSx7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi10YXJnZXQiLCJsaWJyYXJ5IjoiZmxhdGljb24ifSwiX2lkIjoiODgzOTk2OSIsInRpdGxlIjoiR2V0IHlvdXIgZHJlYW0iLCJkZXNjcmlwdGlvbiI6IkF0IGl0cyBjb3JlLCBldmVyeSBidXNpbmVzcyBoYXMgdW5pcXVlIHNvbHV0aW9ucyB0aGF0IGluc3BpcmUgaW5ub3ZhdGlvbiBhbmQgcHJvZ3Jlc3MuIiwiYnRuX2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9fV0sInRpdGxlX2NvbG9yIjoiI2ZmZmZmZiIsImRlc2NyaXB0aW9uX2NvbG9yIjoiI0ZGRkZGRiIsImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X3Byb2Nlc3MifQ==\\\"]            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                <section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-79ee8ab elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"79ee8ab\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4af1814\\\" data-id=\\\"4af1814\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n                <section class=\\\"elementor-section elementor-inner-section elementor-element elementor-element-505fb45 elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"505fb45\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-7223f1c\\\" data-id=\\\"7223f1c\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        \\t\\t<div class=\\\"elementor-element elementor-element-e7c238e elementor-widget elementor-widget-google_maps\\\" data-id=\\\"e7c238e\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"google_maps.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-custom-embed\\\">\\n\\t\\t\\t<iframe loading=\\\"lazy\\\"\\n\\t\\t\\t\\t\\tsrc=\\\"https:\\/\\/maps.google.com\\/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\\\"\\n\\t\\t\\t\\t\\ttitle=\\\"10\\u00b057&#039;11.2&quot;N 106\\u00b045&#039;13.0&quot;E\\\"\\n\\t\\t\\t\\t\\taria-label=\\\"10\\u00b057&#039;11.2&quot;N 106\\u00b045&#039;13.0&quot;E\\\"\\n\\t\\t\\t><\\/iframe>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t            <\\/div>\\n        <\\/div>\\n                <div class=\\\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-0225539\\\" data-id=\\\"0225539\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6IjUxZDU0M2EiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkNvbnRhY3QgdXMgZm9yIGFueSBraW5kIG9mIGhlbHAgYXQgYW55IHRpbWUuLi4iLCJ0aXRsZV9jb2xvciI6IiM4NUIyM0IiLCJfcGFkZGluZyI6eyJ1bml0IjoiJSIsInRvcCI6IjAiLCJyaWdodCI6IjUiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV9zcGFjZV9ib3R0b20iOnsidW5pdCI6InB4Iiwic2l6ZSI6MzMsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjozMCwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzgsInNpemVzIjpbXX0sImN0X2FuaW1hdGUiOiJ3b3cgZmxpcEluWCIsIl9wYWRkaW5nX3RhYmxldCI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\\\"][elementor-element data=\\\"eyJpZCI6ImVkMGRjMWIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjdGY3X2lkIjoiOTc0Iiwic3R5bGVfbDEiOiJzdHlsZTIifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY3RmNyJ9\\\"]            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                    <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n        \",\"scripts\":[],\"styles\":[]}}'),(10464,3183,'_elementor_edit_mode','builder'),(10465,3183,'_elementor_template_type','wp-page'),(10466,3183,'_elementor_version','3.24.7'),(10467,3183,'_wp_page_template','default'),(10468,3183,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i cung c\\u1ea5p nhi\\u1ec1u lo\\u1ea1i s\\u1ea3n ph\\u1ea9m cho ng\\u00e0nh c\\u00f4ng nghi\\u1ec7p c\\u01a1 kh\\u00ed tr\\u00ean to\\u00e0n Vi\\u1ec7t Nam v\\u00e0 qu\\u1ed1c t\\u1ebf, \\u0111\\u1eb7c bi\\u1ec7t t\\u1ea1i c\\u00e1c th\\u1ecb tr\\u01b0\\u1eddng tr\\u1ecdng \\u0111i\\u1ec3m nh\\u01b0 Nh\\u1eadt B\\u1ea3n, H\\u00e0n Qu\\u1ed1c, Hoa K\\u1ef3 v\\u00e0 \\u00dac. Ch\\u00fang t\\u00f4i c\\u0169ng c\\u00f3 kinh nghi\\u1ec7m xu\\u1ea5t kh\\u1ea9u \\u0111\\u1ebfn c\\u00e1c th\\u1ecb tr\\u01b0\\u1eddng n\\u00e0y.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Th\\u1ebf m\\u1ea1nh l\\u1edbn nh\\u1ea5t c\\u1ee7a ch\\u00fang t\\u00f4i n\\u1eb1m \\u1edf \\u0111\\u1ed9i ng\\u0169 nh\\u00e2n l\\u1ef1c tr\\u1ebb trung, \\u0111am m\\u00ea h\\u1ecdc h\\u1ecfi, s\\u00e1ng t\\u1ea1o v\\u00e0 t\\u1ef1 tin, c\\u00f3 kh\\u1ea3 n\\u0103ng s\\u1ea3n xu\\u1ea5t \\u0111a d\\u1ea1ng c\\u00e1c s\\u1ea3n ph\\u1ea9m c\\u01a1 kh\\u00ed v\\u1edbi ch\\u1ea5t l\\u01b0\\u1ee3ng lu\\u00f4n \\u1ed5n \\u0111\\u1ecbnh.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=vUCVqLmXSPM\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Kh\\u00e1ch h\\u00e0ng\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Nh\\u00e2n s\\u1ef1\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"S\\u1ed1 \\u0111\\u01a1n h\\u00e0ng m\\u1ed7i n\\u0103m\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ch\\u00fang t\\u00f4i \\u0111\\u00e3 b\\u1eaft \\u0111\\u1ea7u m\\u1edf m\\u1ed9t c\\u1eeda h\\u00e0ng tr\\u00ean Alibaba \\u0111\\u1ec3 k\\u1ebft n\\u1ed1i v\\u1edbi c\\u00e1c \\u0111\\u01a1n h\\u00e0ng t\\u1eeb kh\\u1eafp n\\u01a1i tr\\u00ean th\\u1ebf gi\\u1edbi.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0e89391\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i n\\u1ed7 l\\u1ef1c tr\\u1edf th\\u00e0nh m\\u1ed9t trong nh\\u1eefng c\\u00f4ng ty ch\\u1ebf bi\\u1ebfn c\\u01a1 kh\\u00ed h\\u00e0ng \\u0111\\u1ea7u c\\u1ee7a Vi\\u1ec7t Nam, cung c\\u1ea5p ra th\\u1ecb tr\\u01b0\\u1eddng qu\\u1ed1c t\\u1ebf v\\u00e0o n\\u0103m 2030. Trong t\\u01b0\\u01a1ng lai, ch\\u00fang t\\u00f4i h\\u01b0\\u1edbng \\u0111\\u1ebfn vi\\u1ec7c s\\u1ea3n xu\\u1ea5t c\\u00e1c s\\u1ea3n ph\\u1ea9m m\\u00e1y m\\u00f3c ho\\u00e0n ch\\u1ec9nh \\u0111\\u1ec3 giao tr\\u1ef1c ti\\u1ebfp \\u0111\\u1ebfn ng\\u01b0\\u1eddi s\\u1eed d\\u1ee5ng cu\\u1ed1i.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>M\\u1ee5c ti\\u00eau \\u0111\\u1ea1t \\u0111\\u01b0\\u1ee3c v\\u00e0o n\\u0103m 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"\\u0110\\u00f4ng \\u00c1 (Nh\\u1eadt B\\u1ea3n, H\\u00e0n Qu\\u1ed1c, v.v.): Xu\\u1ea5t kh\\u1ea9u c\\u00e1c linh ki\\u1ec7n m\\u00e1y m\\u00f3c thay th\\u1ebf, ph\\u1ee5 ki\\u1ec7n xe m\\u00e1y v\\u00e0 \\u00f4 t\\u00f4, ph\\u1ee5 ki\\u1ec7n ng\\u00e0nh n\\u01b0\\u1edbc, khu\\u00f4n m\\u1eabu v\\u00e0 c\\u00e1c b\\u1ed9 ph\\u1eadn c\\u01a1 kh\\u00ed kh\\u00e1c.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Ch\\u00e2u \\u00c2u (\\u0110\\u1ee9c, Bulgaria, H\\u00e0 Lan, v.v.): S\\u1ea3n xu\\u1ea5t khu\\u00f4n jig cho v\\u00f2ng bi \\u00f4 t\\u00f4 v\\u00e0 c\\u00e1c b\\u1ed9 ph\\u1eadn h\\u1ed9p \\u0111i\\u1ec7n cho m\\u00e1y m\\u00f3c t\\u1ef1 \\u0111\\u1ed9ng h\\u00f3a.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"Hoa K\\u1ef3: C\\u00e1c s\\u1ea3n ph\\u1ea9m li\\u00ean quan \\u0111\\u1ebfn thi\\u1ebft b\\u1ecb y t\\u1ebf, quang h\\u1ecdc v\\u00e0 thi\\u1ebft b\\u1ecb \\u00e2m thanh.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"\\u00dac: S\\u1ea3n ph\\u1ea9m kim lo\\u1ea1i t\\u1ea5m.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vi\\u1ec7t Nam: M\\u00e1y t\\u1ef1 \\u0111\\u1ed9ng h\\u00f3a nh\\u1ecf; bu l\\u00f4ng xe m\\u00e1y v\\u00e0 \\u00f4 t\\u00f4; s\\u1ea3n ph\\u1ea9m trong ng\\u00e0nh d\\u1ea7u kh\\u00ed.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"C\\u00e1c th\\u1ecb tr\\u01b0\\u1eddng v\\u00e0 s\\u1ea3n ph\\u1ea9m kh\\u00e1c.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i cung c\\u1ea5p d\\u1ecbch v\\u1ee5 trong nhi\\u1ec1u l\\u0129nh v\\u1ef1c.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ch\\u00fang t\\u00f4i lu\\u00f4n \\u0111\\u00e1p \\u1ee9ng y\\u00eau c\\u1ea7u thi\\u1ebft k\\u1ebf c\\u1ee7a kh\\u00e1ch h\\u00e0ng. Ngo\\u1ea1i h\\u00ecnh v\\u00e0 k\\u00edch th\\u01b0\\u1edbc l\\u00e0 nh\\u1eefng y\\u1ebfu t\\u1ed1 ch\\u00fang t\\u00f4i coi tr\\u1ecdng nh\\u1ea5t.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"vi|language\"],\"ct_animate\":\"wow fadeInUp\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"D\\u1ecbch v\\u1ee5 kh\\u00e1c\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"C\\u00f3 c\\u00e2u h\\u1ecfi n\\u00e0o kh\\u00f4ng?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Li\\u00ean h\\u1ec7 \\u0111\\u1ec3 nh\\u1eadn b\\u00e1o gi\\u00e1:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i c\\u00f3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c \\u0111\\u01a1n gi\\u1ea3n.\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ch\\u00fang t\\u00f4i lu\\u00f4n mang \\u0111\\u1ebfn c\\u1ea3m gi\\u00e1c an t\\u00e2m v\\u1ec1 ch\\u1ea5t l\\u01b0\\u1ee3ng v\\u00e0 ti\\u1ebfn \\u0111\\u1ed9.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"T\\u00ecm ch\\u00fang t\\u00f4i\",\"description\":\"Ch\\u00fang t\\u00f4i hi\\u1ec3u t\\u1ea7m quan tr\\u1ecdng c\\u1ee7a vi\\u1ec7c x\\u1eed l\\u00fd m\\u1ed7i d\\u1ef1 \\u00e1n theo m\\u1ed9t c\\u00e1ch ti\\u1ebfp c\\u1eadn to\\u00e0n di\\u1ec7n.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"K\\u1ebft n\\u1ed1i v\\u1edbi ch\\u00fang t\\u00f4i\",\"description\":\"\\u0110i\\u1ec1u l\\u00e0m ch\\u00fang t\\u00f4i kh\\u00e1c bi\\u1ec7t so v\\u1edbi c\\u00e1c c\\u00f4ng ty kh\\u00e1c l\\u00e0 chuy\\u00ean m\\u00f4n trong vi\\u1ec7c t\\u1ea1o ra c\\u00e1c gi\\u1ea3i ph\\u00e1p t\\u00f9y ch\\u1ec9nh.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Thanh to\\u00e1n cho ch\\u00fang t\\u00f4i\",\"description\":\"Ch\\u00fang t\\u00f4i khuy\\u1ebfn kh\\u00edch m\\u1ed7i th\\u00e0nh vi\\u00ean trong \\u0111\\u1ed9i ng\\u0169 tr\\u1edf th\\u00e0nh phi\\u00ean b\\u1ea3n t\\u1ed1t nh\\u1ea5t c\\u1ee7a ch\\u00ednh m\\u00ecnh, t\\u1ea1o ra m\\u1ed9t m\\u00f4i tr\\u01b0\\u1eddng linh ho\\u1ea1t v\\u00e0 h\\u1ee3p t\\u00e1c.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"\\u0110\\u1ea1t \\u0111\\u01b0\\u1ee3c \\u01b0\\u1edbc m\\u01a1 c\\u1ee7a b\\u1ea1n\",\"description\":\"C\\u1ed1t l\\u00f5i c\\u1ee7a m\\u1ed7i doanh nghi\\u1ec7p l\\u00e0 nh\\u1eefng gi\\u1ea3i ph\\u00e1p \\u0111\\u1ed9c \\u0111\\u00e1o, truy\\u1ec1n c\\u1ea3m h\\u1ee9ng cho s\\u1ef1 \\u0111\\u1ed5i m\\u1edbi v\\u00e0 ph\\u00e1t tri\\u1ec3n.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Li\\u00ean h\\u1ec7 v\\u1edbi ch\\u00fang t\\u00f4i b\\u1ea5t c\\u1ee9 l\\u00fac n\\u00e0o n\\u1ebfu b\\u1ea1n c\\u1ea7n s\\u1ef1 gi\\u00fap \\u0111\\u1ee1...\",\"title_color\":\"#85B23B\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(10469,3183,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(10470,3183,'_elementor_page_assets','a:2:{s:6:\"styles\";a:4:{i:0;s:18:\"widget-text-editor\";i:1;s:21:\"e-animation-slideInUp\";i:2;s:12:\"widget-image\";i:3;s:18:\"widget-google_maps\";}s:7:\"scripts\";a:9:{i:0;s:16:\"jquery-numerator\";i:1;s:20:\"ct-counter-widget-js\";i:2;s:11:\"progressbar\";i:3;s:16:\"waypoints-lib-js\";i:4;s:24:\"ct-progressbar-widget-js\";i:5;s:12:\"imagesloaded\";i:6;s:7:\"isotope\";i:7;s:25:\"ct-post-masonry-widget-js\";i:8;s:22:\"ct-post-grid-widget-js\";}}'),(10471,3183,'_elementor_css','a:6:{s:4:\"time\";i:1742179514;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:8:\"material\";i:1;s:8:\"flaticon\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}');
INSERT INTO `wp_postmeta` VALUES (10472,3183,'_elementor_element_cache','{\"timeout\":1742265914,\"value\":{\"content\":\"        <section class=\"elementor-section elementor-top-section elementor-element elementor-element-2d2b67a elementor-section-stretched elementor-section-full_width slider-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"2d2b67a\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-no \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-d1bb387\" data-id=\"d1bb387\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImNjODZmNGQiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJyZXZzbGlkZXJ0aXRsZSI6IkhvbWUgMSIsInNob3J0Y29kZSI6IltyZXZfc2xpZGVyIGFsaWFzPVwiaG9tZS0xXCJdW1wvcmV2X3NsaWRlcl0ifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoic2xpZGVyX3Jldm9sdXRpb24ifQ==\"]        <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-2cea906 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"2cea906\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-8e117d0\" data-id=\"8e117d0\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjI0YjYyY2MiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkNoXHUwMGZhbmcgdFx1MDBmNGkgY3VuZyBjXHUxZWE1cCBuaGlcdTFlYzF1IGxvXHUxZWExaSBzXHUxZWEzbiBwaFx1MWVhOW0gY2hvIG5nXHUwMGUwbmggY1x1MDBmNG5nIG5naGlcdTFlYzdwIGNcdTAxYTEga2hcdTAwZWQgdHJcdTAwZWFuIHRvXHUwMGUwbiBWaVx1MWVjN3QgTmFtIHZcdTAwZTAgcXVcdTFlZDFjIHRcdTFlYmYsIFx1MDExMVx1MWViN2MgYmlcdTFlYzd0IHRcdTFlYTFpIGNcdTAwZTFjIHRoXHUxZWNiIHRyXHUwMWIwXHUxZWRkbmcgdHJcdTFlY2RuZyBcdTAxMTFpXHUxZWMzbSBuaFx1MDFiMCBOaFx1MWVhZHQgQlx1MWVhM24sIEhcdTAwZTBuIFF1XHUxZWQxYywgSG9hIEtcdTFlZjMgdlx1MDBlMCBcdTAwZGFjLiBDaFx1MDBmYW5nIHRcdTAwZjRpIGNcdTAxNjluZyBjXHUwMGYzIGtpbmggbmdoaVx1MWVjN20geHVcdTFlYTV0IGtoXHUxZWE5dSBcdTAxMTFcdTFlYmZuIGNcdTAwZTFjIHRoXHUxZWNiIHRyXHUwMWIwXHUxZWRkbmcgblx1MDBlMHkuIiwidGl0bGVfY29sb3IiOiIjODVCMjNCIiwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzYsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHQiOnsidW5pdCI6InB4Iiwic2l6ZSI6NDgsInNpemVzIjpbXX0sInN0eWxlIjoic3QtbGluZS1sZWZ0IiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMTYiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjoyNiwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzQsInNpemVzIjpbXX0sImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluVXAifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-909b449 wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"909b449\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Thu1ebf mu1ea1nh lu1edbn nhu1ea5t cu1ee7a chu00fang tu00f4i nu1eb1m u1edf u0111u1ed9i ngu0169 nhu00e2n lu1ef1c tru1ebb trung, u0111am mu00ea hu1ecdc hu1ecfi, su00e1ng tu1ea1o vu00e0 tu1ef1 tin, cu00f3 khu1ea3 nu0103ng su1ea3n xuu1ea5t u0111a du1ea1ng cu00e1c su1ea3n phu1ea9m cu01a1 khu00ed vu1edbi chu1ea5t lu01b0u1ee3ng luu00f4n u1ed5n u0111u1ecbnh.</p>tttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImM0YTIwMjgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJpbWFnZSI6eyJ1cmwiOiIiLCJpZCI6IiJ9LCJ2aWRlb19saW5rIjoiaHR0cHM6XC9cL3d3dy55b3V0dWJlLmNvbVwvd2F0Y2g/dj12VUNWcUxtWFNQTSIsImJ0bl92aWRlb19zdHlsZSI6InN0eWxlMyIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMzEiLCJyaWdodCI6IjM4IiwiYm90dG9tIjoiMCIsImxlZnQiOiI3OCIsImlzTGlua2VkIjpmYWxzZX0sIl9jc3NfY2xhc3NlcyI6ImVsLWlubGluZSB3b3cgZmFkZUluUmlnaHQiLCJfbWFyZ2luX3RhYmxldCI6eyJ1bml0IjoicHgiLCJ0b3AiOiIzMSIsInJpZ2h0IjoiMjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjY4IiwiaXNMaW5rZWQiOmZhbHNlfSwiX2FuaW1hdGlvbiI6InNsaWRlSW5VcCIsIl9tYXJnaW5fbW9iaWxlIjp7InVuaXQiOiJweCIsInRvcCI6IjMxIiwicmlnaHQiOiIyMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF92aWRlb19wbGF5ZXIifQ==\"]tt<div class=\"elementor-element elementor-element-1fd7931 el-inline wow fadeInRight elementor-invisible elementor-widget elementor-widget-image\" data-id=\"1fd7931\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;slideInUp&quot;}\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" class=\"attachment-full size-full wp-image-2542\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-4fff345\" data-id=\"4fff345\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjU5MGYxYmUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjo1MCwic3VmZml4IjoiKyIsInRob3VzYW5kX3NlcGFyYXRvciI6IiIsInRob3VzYW5kX3NlcGFyYXRvcl9jaGFyIjoiICIsInRpdGxlIjoiS2hcdTAwZTFjaCBoXHUwMGUwbmciLCJzaG93X2ljb24iOiJ0cnVlIiwiY291bnRlcl9pY29uIjp7InZhbHVlIjoibWF0ZXJpYWwgem1kaSB6bWRpLWFzc2lnbm1lbnQtY2hlY2siLCJsaWJyYXJ5IjoibWF0ZXJpYWwifSwibnVtYmVyX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjQxIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJfY3NzX2NsYXNzZXMiOiJ0ZXh0LWNlbnRlci1zbSIsImljb25fdHlwZSI6ImltYWdlIiwiaWNvbl9pbWFnZSI6eyJ1cmwiOiJodHRwOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAxOVwvMTJcL2NvdW50ZXItaWNvbi0wMS5wbmciLCJpZCI6MTUxNX0sIl9hbmltYXRpb24iOiJub25lIiwiY3RfYW5pbWF0ZSI6IndvdyBmYWRlSW5VcCJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9jb3VudGVyIn0=\"][elementor-element data=\"eyJpZCI6IjdhNWYyMzkiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjoyMDAsInN1ZmZpeCI6IisiLCJ0aG91c2FuZF9zZXBhcmF0b3IiOiIiLCJ0aG91c2FuZF9zZXBhcmF0b3JfY2hhciI6IiAiLCJ0aXRsZSI6Ik5oXHUwMGUybiBzXHUxZWYxIiwic2hvd19pY29uIjoidHJ1ZSIsImNvdW50ZXJfaWNvbiI6eyJ2YWx1ZSI6Im1hdGVyaWFsIHptZGkgem1kaS1hc3NpZ25tZW50LWNoZWNrIiwibGlicmFyeSI6Im1hdGVyaWFsIn0sIm51bWJlcl90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiI0MSIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwiX2Nzc19jbGFzc2VzIjoidGV4dC1jZW50ZXItc20iLCJpY29uX3R5cGUiOiJpbWFnZSIsImljb25faW1hZ2UiOnsidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMTlcLzEyXC9jb3VudGVyLWljb24tMDIucG5nIiwiaWQiOjE1MTZ9LCJfYW5pbWF0aW9uIjoibm9uZSIsImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluVXAifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY291bnRlciJ9\"][elementor-element data=\"eyJpZCI6IjA0NTMxYzgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjoyMDAwLCJzdWZmaXgiOiIrIiwidGhvdXNhbmRfc2VwYXJhdG9yIjoiIiwidGhvdXNhbmRfc2VwYXJhdG9yX2NoYXIiOiIgIiwidGl0bGUiOiJTXHUxZWQxIFx1MDExMVx1MDFhMW4gaFx1MDBlMG5nIG1cdTFlZDdpIG5cdTAxMDNtIiwic2hvd19pY29uIjoidHJ1ZSIsImNvdW50ZXJfaWNvbiI6eyJ2YWx1ZSI6Im1hdGVyaWFsIHptZGkgem1kaS1hc3NpZ25tZW50LWNoZWNrIiwibGlicmFyeSI6Im1hdGVyaWFsIn0sIm51bWJlcl90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiI0MSIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwiX2Nzc19jbGFzc2VzIjoidGV4dC1jZW50ZXItc20iLCJpY29uX3R5cGUiOiJpbWFnZSIsImljb25faW1hZ2UiOnsidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMTlcLzEyXC9jb3VudGVyLWljb24tMDMucG5nIiwiaWQiOjE1MTd9LCJfYW5pbWF0aW9uIjoibm9uZSIsImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluVXAifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY291bnRlciJ9\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-348ba48\" data-id=\"348ba48\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-ed7e1d0 wow fadeInUp elementor-widget elementor-widget-image\" data-id=\"ed7e1d0\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" class=\"attachment-full size-full wp-image-2571\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntttt<div class=\"elementor-element elementor-element-3b54db6 wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"3b54db6\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Chu00fang tu00f4i u0111u00e3 bu1eaft u0111u1ea7u mu1edf mu1ed9t cu1eeda hu00e0ng tru00ean Alibaba u0111u1ec3 ku1ebft nu1ed1i vu1edbi cu00e1c u0111u01a1n hu00e0ng tu1eeb khu1eafp nu01a1i tru00ean thu1ebf giu1edbi.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-8b70e78 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"8b70e78\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-c2b95bd\" data-id=\"c2b95bd\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-b5a8ba3 elementor-widget elementor-widget-image\" data-id=\"b5a8ba3\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" class=\"attachment-full size-full wp-image-2268\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntttt<div class=\"elementor-element elementor-element-0e89391 elementor-widget elementor-widget-image\" data-id=\"0e89391\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" class=\"attachment-full size-full wp-image-2559\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-de7136f\" data-id=\"de7136f\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6Ijg0MDdhYmUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkNoXHUwMGZhbmcgdFx1MDBmNGkgblx1MWVkNyBsXHUxZWYxYyB0clx1MWVkZiB0aFx1MDBlMG5oIG1cdTFlZDl0IHRyb25nIG5oXHUxZWVmbmcgY1x1MDBmNG5nIHR5IGNoXHUxZWJmIGJpXHUxZWJmbiBjXHUwMWExIGtoXHUwMGVkIGhcdTAwZTBuZyBcdTAxMTFcdTFlYTd1IGNcdTFlZTdhIFZpXHUxZWM3dCBOYW0sIGN1bmcgY1x1MWVhNXAgcmEgdGhcdTFlY2IgdHJcdTAxYjBcdTFlZGRuZyBxdVx1MWVkMWMgdFx1MWViZiB2XHUwMGUwbyBuXHUwMTAzbSAyMDMwLiBUcm9uZyB0XHUwMWIwXHUwMWExbmcgbGFpLCBjaFx1MDBmYW5nIHRcdTAwZjRpIGhcdTAxYjBcdTFlZGJuZyBcdTAxMTFcdTFlYmZuIHZpXHUxZWM3YyBzXHUxZWEzbiB4dVx1MWVhNXQgY1x1MDBlMWMgc1x1MWVhM24gcGhcdTFlYTltIG1cdTAwZTF5IG1cdTAwZjNjIGhvXHUwMGUwbiBjaFx1MWVjOW5oIFx1MDExMVx1MWVjMyBnaWFvIHRyXHUxZWYxYyB0aVx1MWViZnAgXHUwMTExXHUxZWJmbiBuZ1x1MDFiMFx1MWVkZGkgc1x1MWVlZCBkXHUxZWU1bmcgY3VcdTFlZDFpLiIsInRpdGxlX2NvbG9yIjoiIzg1QjIzQiIsInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplIjp7InVuaXQiOiJweCIsInNpemUiOjM2LCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0Ijp7InVuaXQiOiJweCIsInNpemUiOjQ4LCJzaXplcyI6W119LCJzdHlsZSI6InN0LWxpbmUtbGVmdCIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiLTkiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV9zcGFjZV9ib3R0b20iOnsidW5pdCI6InB4Iiwic2l6ZSI6MTcsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjozMCwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzgsInNpemVzIjpbXX0sImN0X2FuaW1hdGUiOiJ3b3cgZmxpcEluWCIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX21vYmlsZSI6eyJ1bml0IjoicHgiLCJzaXplIjoyOCwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF9tb2JpbGUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzQsInNpemVzIjpbXX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]tt<div class=\"elementor-element elementor-element-0c8497c wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"0c8497c\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Mu1ee5c tiu00eau u0111u1ea1t u0111u01b0u1ee3c vu00e0o nu0103m 2026:</p>tttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6IjQ3NTRlZDYiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJwcm9ncmVzc2Jhcl9saXN0IjpbeyJ0aXRsZSI6Ilx1MDExMFx1MDBmNG5nIFx1MDBjMSAoTmhcdTFlYWR0IEJcdTFlYTNuLCBIXHUwMGUwbiBRdVx1MWVkMWMsIHYudi4pOiBYdVx1MWVhNXQga2hcdTFlYTl1IGNcdTAwZTFjIGxpbmgga2lcdTFlYzduIG1cdTAwZTF5IG1cdTAwZjNjIHRoYXkgdGhcdTFlYmYsIHBoXHUxZWU1IGtpXHUxZWM3biB4ZSBtXHUwMGUxeSB2XHUwMGUwIFx1MDBmNCB0XHUwMGY0LCBwaFx1MWVlNSBraVx1MWVjN24gbmdcdTAwZTBuaCBuXHUwMWIwXHUxZWRiYywga2h1XHUwMGY0biBtXHUxZWFidSB2XHUwMGUwIGNcdTAwZTFjIGJcdTFlZDkgcGhcdTFlYWRuIGNcdTAxYTEga2hcdTAwZWQga2hcdTAwZTFjLiIsInByb2dyZXNzX3R5cGUiOiIiLCJwZXJjZW50Ijp7InVuaXQiOiIlIiwic2l6ZSI6MzAsInNpemVzIjpbXX0sImRpc3BsYXlfcGVyY2VudGFnZSI6ImhpZGUiLCJpbm5lcl90ZXh0IjoiV2ViIERlc2lnbmVyIiwiX2lkIjoiOGI0YmNkNiJ9LHsidGl0bGUiOiJDaFx1MDBlMnUgXHUwMGMydSAoXHUwMTEwXHUxZWU5YywgQnVsZ2FyaWEsIEhcdTAwZTAgTGFuLCB2LnYuKTogU1x1MWVhM24geHVcdTFlYTV0IGtodVx1MDBmNG4gamlnIGNobyB2XHUwMGYybmcgYmkgXHUwMGY0IHRcdTAwZjQgdlx1MDBlMCBjXHUwMGUxYyBiXHUxZWQ5IHBoXHUxZWFkbiBoXHUxZWQ5cCBcdTAxMTFpXHUxZWM3biBjaG8gbVx1MDBlMXkgbVx1MDBmM2MgdFx1MWVmMSBcdTAxMTFcdTFlZDluZyBoXHUwMGYzYS4iLCJwcm9ncmVzc190eXBlIjoiIiwicGVyY2VudCI6eyJ1bml0IjoiJSIsInNpemUiOjEwLCJzaXplcyI6W119LCJkaXNwbGF5X3BlcmNlbnRhZ2UiOiJoaWRlIiwiaW5uZXJfdGV4dCI6IldlYiBEZXNpZ25lciIsIl9pZCI6IjZlMGY4NzcifSx7InRpdGxlIjoiSG9hIEtcdTFlZjM6IENcdTAwZTFjIHNcdTFlYTNuIHBoXHUxZWE5bSBsaVx1MDBlYW4gcXVhbiBcdTAxMTFcdTFlYmZuIHRoaVx1MWViZnQgYlx1MWVjYiB5IHRcdTFlYmYsIHF1YW5nIGhcdTFlY2RjIHZcdTAwZTAgdGhpXHUxZWJmdCBiXHUxZWNiIFx1MDBlMm0gdGhhbmguIiwicHJvZ3Jlc3NfdHlwZSI6IiIsInBlcmNlbnQiOnsidW5pdCI6IiUiLCJzaXplIjozMCwic2l6ZXMiOltdfSwiZGlzcGxheV9wZXJjZW50YWdlIjoic2hvdyIsIl9pZCI6IjIyMmViODEifSx7Il9pZCI6IjVlZWNjYjYiLCJ0aXRsZSI6Ilx1MDBkYWM6IFNcdTFlYTNuIHBoXHUxZWE5bSBraW0gbG9cdTFlYTFpIHRcdTFlYTVtLiIsInBlcmNlbnQiOnsidW5pdCI6IiUiLCJzaXplIjo4LCJzaXplcyI6W119fSx7Il9pZCI6IjEwZTU3NTAiLCJ0aXRsZSI6IlZpXHUxZWM3dCBOYW06IE1cdTAwZTF5IHRcdTFlZjEgXHUwMTExXHUxZWQ5bmcgaFx1MDBmM2EgbmhcdTFlY2Y7IGJ1IGxcdTAwZjRuZyB4ZSBtXHUwMGUxeSB2XHUwMGUwIFx1MDBmNCB0XHUwMGY0OyBzXHUxZWEzbiBwaFx1MWVhOW0gdHJvbmcgbmdcdTAwZTBuaCBkXHUxZWE3dSBraFx1MDBlZC4iLCJwZXJjZW50Ijp7InVuaXQiOiIlIiwic2l6ZSI6MjAsInNpemVzIjpbXX19LHsiX2lkIjoiZTE3YTE5NSIsInRpdGxlIjoiQ1x1MDBlMWMgdGhcdTFlY2IgdHJcdTAxYjBcdTFlZGRuZyB2XHUwMGUwIHNcdTFlYTNuIHBoXHUxZWE5bSBraFx1MDBlMWMuIiwicGVyY2VudCI6eyJ1bml0IjoiJSIsInNpemUiOjIsInNpemVzIjpbXX19XSwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiI3OCIsImlzTGlua2VkIjpmYWxzZX0sIl9tYXJnaW5fbW9iaWxlIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6dHJ1ZX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9wcm9ncmVzc2JhciJ9\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-b6145ce elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"b6145ce\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-e65d58b\" data-id=\"e65d58b\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjljZDU1ZGQiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkNoXHUwMGZhbmcgdFx1MDBmNGkgY3VuZyBjXHUxZWE1cCBkXHUxZWNiY2ggdlx1MWVlNSB0cm9uZyBuaGlcdTFlYzF1IGxcdTAxMjluaCB2XHUxZWYxYy4iLCJ0aXRsZV9jb2xvciI6IiM4NUIyM0IiLCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZSI6eyJ1bml0IjoicHgiLCJzaXplIjozNiwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodCI6eyJ1bml0IjoicHgiLCJzaXplIjo0OCwic2l6ZXMiOltdfSwic3R5bGUiOiJzdC1saW5lLWxlZnQiLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6dHJ1ZX0sInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjozMCwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzgsInNpemVzIjpbXX0sImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluTGVmdCIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX21vYmlsZSI6eyJ1bml0IjoicHgiLCJzaXplIjoyOCwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF9tb2JpbGUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzQsInNpemVzIjpbXX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-2067062\" data-id=\"2067062\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-956a238 wow fadeInRight elementor-widget elementor-widget-text-editor\" data-id=\"956a238\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Chu00fang tu00f4i luu00f4n u0111u00e1p u1ee9ng yu00eau cu1ea7u thiu1ebft ku1ebf cu1ee7a khu00e1ch hu00e0ng. Ngou1ea1i hu00ecnh vu00e0 ku00edch thu01b0u1edbc lu00e0 nhu1eefng yu1ebfu tu1ed1 chu00fang tu00f4i coi tru1ecdng nhu1ea5t.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-74328b6b elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"74328b6b\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4b9c9796\" data-id=\"4b9c9796\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjFjYTNiNmM1IiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsibGF5b3V0IjoiNCIsImxpbWl0Ijo0LCJmaWx0ZXJfZGVmYXVsdF90aXRsZSI6IkFsbCIsImNvbF9zbSI6IjEiLCJjb2xfbWQiOiIyIiwiY29sX2xnIjoiMiIsImNvbF94bCI6IjIiLCJidXR0b25fdGV4dCI6IlJlYWQgbW9yZSIsInNvdXJjZSI6WyJ2aXxsYW5ndWFnZSJdLCJjdF9hbmltYXRlIjoid293IGZhZGVJblVwIiwib3JkZXIiOiJhc2MifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3Rfc2VydmljZV9ncmlkIn0=\"][elementor-element data=\"eyJpZCI6IjI5NzFiOGIzIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGV4dCI6IkRcdTFlY2JjaCB2XHUxZWU1IGtoXHUwMGUxYyIsImxpbmsiOnsidXJsIjoiXC9zZXJ2aWNlcyIsImlzX2V4dGVybmFsIjoiIiwibm9mb2xsb3ciOiIifSwiYWxpZ24iOiJjZW50ZXIiLCJidG5faWNvbiI6eyJ2YWx1ZSI6Im1hdGVyaWFsIHptZGkgem1kaS1zZXR0aW5ncyIsImxpYnJhcnkiOiJtYXRlcmlhbCJ9LCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6Ii0xMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sInN0eWxlIjoiYnRuLXByZXNldDMiLCJfYW5pbWF0aW9uIjoibm9uZSJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9idXR0b24ifQ==\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-f43d465 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"f43d465\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-5310bd3\" data-id=\"5310bd3\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImJjZmM3MzUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjdGY3X2lkIjoiOTMyIiwibGF5b3V0IjoiMiIsImN0ZjdfdGl0bGUiOiJDXHUwMGYzIGNcdTAwZTJ1IGhcdTFlY2ZpIG5cdTAwZTBvIGtoXHUwMGY0bmc/IiwiY3RmN19kZXNjcmlwdGlvbiI6IkNhbGw6IDgwMCAyNTAgMzY5IiwiY3RmN19waG9uZSI6IjxzcGFuPkNhbGw6PFwvc3Bhbj4gMDk2ODg2MDM4NiIsImVsX3RpdGxlIjoiTGlcdTAwZWFuIGhcdTFlYzcgXHUwMTExXHUxZWMzIG5oXHUxZWFkbiBiXHUwMGUxbyBnaVx1MDBlMToiLCJjdF9hbmltYXRlIjoid293IGZsaXBJblgifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY3RmNyJ9\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-a9b49c5 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"a9b49c5\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n                            <div class=\"elementor-background-overlay\"></div>n                n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-1dcb85a\" data-id=\"1dcb85a\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n                <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-6c560a6 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"6c560a6\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-e82cd67\" data-id=\"e82cd67\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImVmNDE1MTEiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkNoXHUwMGZhbmcgdFx1MDBmNGkgY1x1MDBmMyBxdXkgdHJcdTAwZWNuaCBsXHUwMGUwbSB2aVx1MWVjN2MgXHUwMTExXHUwMWExbiBnaVx1MWVhM24uIiwidGl0bGVfY29sb3IiOiIjZmZmZmZmIiwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzYsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHQiOnsidW5pdCI6InB4Iiwic2l6ZSI6NDgsInNpemVzIjpbXX0sInN0eWxlIjoic3QtbGluZS1sZWZ0IiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOnRydWV9LCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzAsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjM4LCJzaXplcyI6W119LCJjdF9hbmltYXRlIjoid293IGZhZGVJbkxlZnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-3a08737\" data-id=\"3a08737\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-7aa11c2 wow fadeInRight elementor-widget elementor-widget-text-editor\" data-id=\"7aa11c2\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Chu00fang tu00f4i luu00f4n mang u0111u1ebfn cu1ea3m giu00e1c an tu00e2m vu1ec1 chu1ea5t lu01b0u1ee3ng vu00e0 tiu1ebfn u0111u1ed9.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n        [elementor-element data=\"eyJpZCI6IjlkNWVhMzIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X2xpc3QiOlt7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi1yZXNlYXJjaCIsImxpYnJhcnkiOiJmbGF0aWNvbiJ9LCJfaWQiOiIwNTVmZWYyIiwidGl0bGUiOiJUXHUwMGVjbSBjaFx1MDBmYW5nIHRcdTAwZjRpIiwiZGVzY3JpcHRpb24iOiJDaFx1MDBmYW5nIHRcdTAwZjRpIGhpXHUxZWMzdSB0XHUxZWE3bSBxdWFuIHRyXHUxZWNkbmcgY1x1MWVlN2EgdmlcdTFlYzdjIHhcdTFlZWQgbFx1MDBmZCBtXHUxZWQ3aSBkXHUxZWYxIFx1MDBlMW4gdGhlbyBtXHUxZWQ5dCBjXHUwMGUxY2ggdGlcdTFlYmZwIGNcdTFlYWRuIHRvXHUwMGUwbiBkaVx1MWVjN24uIiwiYnRuX2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9fSx7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi1uZXR3b3JrIiwibGlicmFyeSI6ImZsYXRpY29uIn0sIl9pZCI6IjM5ZTE0YjgiLCJ0aXRsZSI6IktcdTFlYmZ0IG5cdTFlZDFpIHZcdTFlZGJpIGNoXHUwMGZhbmcgdFx1MDBmNGkiLCJkZXNjcmlwdGlvbiI6Ilx1MDExMGlcdTFlYzF1IGxcdTAwZTBtIGNoXHUwMGZhbmcgdFx1MDBmNGkga2hcdTAwZTFjIGJpXHUxZWM3dCBzbyB2XHUxZWRiaSBjXHUwMGUxYyBjXHUwMGY0bmcgdHkga2hcdTAwZTFjIGxcdTAwZTAgY2h1eVx1MDBlYW4gbVx1MDBmNG4gdHJvbmcgdmlcdTFlYzdjIHRcdTFlYTFvIHJhIGNcdTAwZTFjIGdpXHUxZWEzaSBwaFx1MDBlMXAgdFx1MDBmOXkgY2hcdTFlYzluaC4iLCJidG5fbGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn19LHsiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZsYXRpY29uIGZsYXRpY29uLXdhbGxldCIsImxpYnJhcnkiOiJmbGF0aWNvbiJ9LCJfaWQiOiJmNWUxMGU4IiwidGl0bGUiOiJUaGFuaCB0b1x1MDBlMW4gY2hvIGNoXHUwMGZhbmcgdFx1MDBmNGkiLCJkZXNjcmlwdGlvbiI6IkNoXHUwMGZhbmcgdFx1MDBmNGkga2h1eVx1MWViZm4ga2hcdTAwZWRjaCBtXHUxZWQ3aSB0aFx1MDBlMG5oIHZpXHUwMGVhbiB0cm9uZyBcdTAxMTFcdTFlZDlpIG5nXHUwMTY5IHRyXHUxZWRmIHRoXHUwMGUwbmggcGhpXHUwMGVhbiBiXHUxZWEzbiB0XHUxZWQxdCBuaFx1MWVhNXQgY1x1MWVlN2EgY2hcdTAwZWRuaCBtXHUwMGVjbmgsIHRcdTFlYTFvIHJhIG1cdTFlZDl0IG1cdTAwZjRpIHRyXHUwMWIwXHUxZWRkbmcgbGluaCBob1x1MWVhMXQgdlx1MDBlMCBoXHUxZWUzcCB0XHUwMGUxYy4iLCJidG5fbGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn19LHsiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZsYXRpY29uIGZsYXRpY29uLXRhcmdldCIsImxpYnJhcnkiOiJmbGF0aWNvbiJ9LCJfaWQiOiI4ODM5OTY5IiwidGl0bGUiOiJcdTAxMTBcdTFlYTF0IFx1MDExMVx1MDFiMFx1MWVlM2MgXHUwMWIwXHUxZWRiYyBtXHUwMWExIGNcdTFlZTdhIGJcdTFlYTFuIiwiZGVzY3JpcHRpb24iOiJDXHUxZWQxdCBsXHUwMGY1aSBjXHUxZWU3YSBtXHUxZWQ3aSBkb2FuaCBuZ2hpXHUxZWM3cCBsXHUwMGUwIG5oXHUxZWVmbmcgZ2lcdTFlYTNpIHBoXHUwMGUxcCBcdTAxMTFcdTFlZDljIFx1MDExMVx1MDBlMW8sIHRydXlcdTFlYzFuIGNcdTFlYTNtIGhcdTFlZTluZyBjaG8gc1x1MWVmMSBcdTAxMTFcdTFlZDVpIG1cdTFlZGJpIHZcdTAwZTAgcGhcdTAwZTF0IHRyaVx1MWVjM24uIiwiYnRuX2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9fV0sInRpdGxlX2NvbG9yIjoiI2ZmZmZmZiIsImRlc2NyaXB0aW9uX2NvbG9yIjoiI0ZGRkZGRiIsImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X3Byb2Nlc3MifQ==\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-79ee8ab elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"79ee8ab\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4af1814\" data-id=\"4af1814\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n                <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-505fb45 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"505fb45\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-7223f1c\" data-id=\"7223f1c\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-e7c238e elementor-widget elementor-widget-google_maps\" data-id=\"e7c238e\" data-element_type=\"widget\" data-widget_type=\"google_maps.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-custom-embed\">nttt<iframe loading=\"lazy\"ntttttsrc=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"nttttttitle=\"10u00b057&#039;11.2&quot;N 106u00b045&#039;13.0&quot;E\"ntttttaria-label=\"10u00b057&#039;11.2&quot;N 106u00b045&#039;13.0&quot;E\"nttt></iframe>ntt</div>ntttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-0225539\" data-id=\"0225539\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjUxZDU0M2EiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkxpXHUwMGVhbiBoXHUxZWM3IHZcdTFlZGJpIGNoXHUwMGZhbmcgdFx1MDBmNGkgYlx1MWVhNXQgY1x1MWVlOSBsXHUwMGZhYyBuXHUwMGUwbyBuXHUxZWJmdSBiXHUxZWExbiBjXHUxZWE3biBzXHUxZWYxIGdpXHUwMGZhcCBcdTAxMTFcdTFlZTEuLi4iLCJ0aXRsZV9jb2xvciI6IiM4NUIyM0IiLCJfcGFkZGluZyI6eyJ1bml0IjoiJSIsInRvcCI6IjAiLCJyaWdodCI6IjUiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV9zcGFjZV9ib3R0b20iOnsidW5pdCI6InB4Iiwic2l6ZSI6MzMsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjozMCwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzgsInNpemVzIjpbXX0sImN0X2FuaW1hdGUiOiJ3b3cgZmxpcEluWCIsIl9wYWRkaW5nX3RhYmxldCI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"][elementor-element data=\"eyJpZCI6ImVkMGRjMWIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjdGY3X2lkIjoiOTc0Iiwic3R5bGVfbDEiOiJzdHlsZTIifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY3RmNyJ9\"]            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                    </div>n        </section>n        \",\"scripts\":[],\"styles\":[]}}'),(10473,3184,'_elementor_edit_mode','builder'),(10474,3184,'_elementor_template_type','wp-page'),(10475,3184,'_elementor_version','3.24.7'),(10476,3184,'_wp_page_template','default'),(10477,3184,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i cung c\\u1ea5p nhi\\u1ec1u lo\\u1ea1i s\\u1ea3n ph\\u1ea9m cho ng\\u00e0nh c\\u00f4ng nghi\\u1ec7p c\\u01a1 kh\\u00ed tr\\u00ean to\\u00e0n Vi\\u1ec7t Nam v\\u00e0 qu\\u1ed1c t\\u1ebf, \\u0111\\u1eb7c bi\\u1ec7t t\\u1ea1i c\\u00e1c th\\u1ecb tr\\u01b0\\u1eddng tr\\u1ecdng \\u0111i\\u1ec3m nh\\u01b0 Nh\\u1eadt B\\u1ea3n, H\\u00e0n Qu\\u1ed1c, Hoa K\\u1ef3 v\\u00e0 \\u00dac. Ch\\u00fang t\\u00f4i c\\u0169ng c\\u00f3 kinh nghi\\u1ec7m xu\\u1ea5t kh\\u1ea9u \\u0111\\u1ebfn c\\u00e1c th\\u1ecb tr\\u01b0\\u1eddng n\\u00e0y.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Th\\u1ebf m\\u1ea1nh l\\u1edbn nh\\u1ea5t c\\u1ee7a ch\\u00fang t\\u00f4i n\\u1eb1m \\u1edf \\u0111\\u1ed9i ng\\u0169 nh\\u00e2n l\\u1ef1c tr\\u1ebb trung, \\u0111am m\\u00ea h\\u1ecdc h\\u1ecfi, s\\u00e1ng t\\u1ea1o v\\u00e0 t\\u1ef1 tin, c\\u00f3 kh\\u1ea3 n\\u0103ng s\\u1ea3n xu\\u1ea5t \\u0111a d\\u1ea1ng c\\u00e1c s\\u1ea3n ph\\u1ea9m c\\u01a1 kh\\u00ed v\\u1edbi ch\\u1ea5t l\\u01b0\\u1ee3ng lu\\u00f4n \\u1ed5n \\u0111\\u1ecbnh.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=vUCVqLmXSPM\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Kh\\u00e1ch h\\u00e0ng\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Nh\\u00e2n s\\u1ef1\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"S\\u1ed1 \\u0111\\u01a1n h\\u00e0ng m\\u1ed7i n\\u0103m\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ch\\u00fang t\\u00f4i \\u0111\\u00e3 b\\u1eaft \\u0111\\u1ea7u m\\u1edf m\\u1ed9t c\\u1eeda h\\u00e0ng tr\\u00ean Alibaba \\u0111\\u1ec3 k\\u1ebft n\\u1ed1i v\\u1edbi c\\u00e1c \\u0111\\u01a1n h\\u00e0ng t\\u1eeb kh\\u1eafp n\\u01a1i tr\\u00ean th\\u1ebf gi\\u1edbi.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0e89391\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i n\\u1ed7 l\\u1ef1c tr\\u1edf th\\u00e0nh m\\u1ed9t trong nh\\u1eefng c\\u00f4ng ty ch\\u1ebf bi\\u1ebfn c\\u01a1 kh\\u00ed h\\u00e0ng \\u0111\\u1ea7u c\\u1ee7a Vi\\u1ec7t Nam, cung c\\u1ea5p ra th\\u1ecb tr\\u01b0\\u1eddng qu\\u1ed1c t\\u1ebf v\\u00e0o n\\u0103m 2030. Trong t\\u01b0\\u01a1ng lai, ch\\u00fang t\\u00f4i h\\u01b0\\u1edbng \\u0111\\u1ebfn vi\\u1ec7c s\\u1ea3n xu\\u1ea5t c\\u00e1c s\\u1ea3n ph\\u1ea9m m\\u00e1y m\\u00f3c ho\\u00e0n ch\\u1ec9nh \\u0111\\u1ec3 giao tr\\u1ef1c ti\\u1ebfp \\u0111\\u1ebfn ng\\u01b0\\u1eddi s\\u1eed d\\u1ee5ng cu\\u1ed1i.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>M\\u1ee5c ti\\u00eau \\u0111\\u1ea1t \\u0111\\u01b0\\u1ee3c v\\u00e0o n\\u0103m 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"\\u0110\\u00f4ng \\u00c1 (Nh\\u1eadt B\\u1ea3n, H\\u00e0n Qu\\u1ed1c, v.v.): Xu\\u1ea5t kh\\u1ea9u c\\u00e1c linh ki\\u1ec7n m\\u00e1y m\\u00f3c thay th\\u1ebf, ph\\u1ee5 ki\\u1ec7n xe m\\u00e1y v\\u00e0 \\u00f4 t\\u00f4, ph\\u1ee5 ki\\u1ec7n ng\\u00e0nh n\\u01b0\\u1edbc, khu\\u00f4n m\\u1eabu v\\u00e0 c\\u00e1c b\\u1ed9 ph\\u1eadn c\\u01a1 kh\\u00ed kh\\u00e1c.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Ch\\u00e2u \\u00c2u (\\u0110\\u1ee9c, Bulgaria, H\\u00e0 Lan, v.v.): S\\u1ea3n xu\\u1ea5t khu\\u00f4n jig cho v\\u00f2ng bi \\u00f4 t\\u00f4 v\\u00e0 c\\u00e1c b\\u1ed9 ph\\u1eadn h\\u1ed9p \\u0111i\\u1ec7n cho m\\u00e1y m\\u00f3c t\\u1ef1 \\u0111\\u1ed9ng h\\u00f3a.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"Hoa K\\u1ef3: C\\u00e1c s\\u1ea3n ph\\u1ea9m li\\u00ean quan \\u0111\\u1ebfn thi\\u1ebft b\\u1ecb y t\\u1ebf, quang h\\u1ecdc v\\u00e0 thi\\u1ebft b\\u1ecb \\u00e2m thanh.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"\\u00dac: S\\u1ea3n ph\\u1ea9m kim lo\\u1ea1i t\\u1ea5m.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vi\\u1ec7t Nam: M\\u00e1y t\\u1ef1 \\u0111\\u1ed9ng h\\u00f3a nh\\u1ecf; bu l\\u00f4ng xe m\\u00e1y v\\u00e0 \\u00f4 t\\u00f4; s\\u1ea3n ph\\u1ea9m trong ng\\u00e0nh d\\u1ea7u kh\\u00ed.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"C\\u00e1c th\\u1ecb tr\\u01b0\\u1eddng v\\u00e0 s\\u1ea3n ph\\u1ea9m kh\\u00e1c.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i cung c\\u1ea5p d\\u1ecbch v\\u1ee5 trong nhi\\u1ec1u l\\u0129nh v\\u1ef1c.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ch\\u00fang t\\u00f4i lu\\u00f4n \\u0111\\u00e1p \\u1ee9ng y\\u00eau c\\u1ea7u thi\\u1ebft k\\u1ebf c\\u1ee7a kh\\u00e1ch h\\u00e0ng. Ngo\\u1ea1i h\\u00ecnh v\\u00e0 k\\u00edch th\\u01b0\\u1edbc l\\u00e0 nh\\u1eefng y\\u1ebfu t\\u1ed1 ch\\u00fang t\\u00f4i coi tr\\u1ecdng nh\\u1ea5t.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"vi|language\"],\"ct_animate\":\"wow fadeInUp\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"D\\u1ecbch v\\u1ee5 kh\\u00e1c\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"C\\u00f3 c\\u00e2u h\\u1ecfi n\\u00e0o kh\\u00f4ng?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Li\\u00ean h\\u1ec7 \\u0111\\u1ec3 nh\\u1eadn b\\u00e1o gi\\u00e1:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i c\\u00f3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c \\u0111\\u01a1n gi\\u1ea3n.\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ch\\u00fang t\\u00f4i lu\\u00f4n mang \\u0111\\u1ebfn c\\u1ea3m gi\\u00e1c an t\\u00e2m v\\u1ec1 ch\\u1ea5t l\\u01b0\\u1ee3ng v\\u00e0 ti\\u1ebfn \\u0111\\u1ed9.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"T\\u00ecm ch\\u00fang t\\u00f4i\",\"description\":\"Ch\\u00fang t\\u00f4i hi\\u1ec3u t\\u1ea7m quan tr\\u1ecdng c\\u1ee7a vi\\u1ec7c x\\u1eed l\\u00fd m\\u1ed7i d\\u1ef1 \\u00e1n theo m\\u1ed9t c\\u00e1ch ti\\u1ebfp c\\u1eadn to\\u00e0n di\\u1ec7n.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"K\\u1ebft n\\u1ed1i v\\u1edbi ch\\u00fang t\\u00f4i\",\"description\":\"\\u0110i\\u1ec1u l\\u00e0m ch\\u00fang t\\u00f4i kh\\u00e1c bi\\u1ec7t so v\\u1edbi c\\u00e1c c\\u00f4ng ty kh\\u00e1c l\\u00e0 chuy\\u00ean m\\u00f4n trong vi\\u1ec7c t\\u1ea1o ra c\\u00e1c gi\\u1ea3i ph\\u00e1p t\\u00f9y ch\\u1ec9nh.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Thanh to\\u00e1n cho ch\\u00fang t\\u00f4i\",\"description\":\"Ch\\u00fang t\\u00f4i khuy\\u1ebfn kh\\u00edch m\\u1ed7i th\\u00e0nh vi\\u00ean trong \\u0111\\u1ed9i ng\\u0169 tr\\u1edf th\\u00e0nh phi\\u00ean b\\u1ea3n t\\u1ed1t nh\\u1ea5t c\\u1ee7a ch\\u00ednh m\\u00ecnh, t\\u1ea1o ra m\\u1ed9t m\\u00f4i tr\\u01b0\\u1eddng linh ho\\u1ea1t v\\u00e0 h\\u1ee3p t\\u00e1c.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"\\u0110\\u1ea1t \\u0111\\u01b0\\u1ee3c \\u01b0\\u1edbc m\\u01a1 c\\u1ee7a b\\u1ea1n\",\"description\":\"C\\u1ed1t l\\u00f5i c\\u1ee7a m\\u1ed7i doanh nghi\\u1ec7p l\\u00e0 nh\\u1eefng gi\\u1ea3i ph\\u00e1p \\u0111\\u1ed9c \\u0111\\u00e1o, truy\\u1ec1n c\\u1ea3m h\\u1ee9ng cho s\\u1ef1 \\u0111\\u1ed5i m\\u1edbi v\\u00e0 ph\\u00e1t tri\\u1ec3n.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Li\\u00ean h\\u1ec7 v\\u1edbi ch\\u00fang t\\u00f4i b\\u1ea5t c\\u1ee9 l\\u00fac n\\u00e0o n\\u1ebfu b\\u1ea1n c\\u1ea7n s\\u1ef1 gi\\u00fap \\u0111\\u1ee1...\",\"title_color\":\"#85B23B\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(10478,3184,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(10479,3184,'_elementor_page_assets','a:2:{s:6:\"styles\";a:4:{i:0;s:18:\"widget-text-editor\";i:1;s:21:\"e-animation-slideInUp\";i:2;s:12:\"widget-image\";i:3;s:18:\"widget-google_maps\";}s:7:\"scripts\";a:9:{i:0;s:16:\"jquery-numerator\";i:1;s:20:\"ct-counter-widget-js\";i:2;s:11:\"progressbar\";i:3;s:16:\"waypoints-lib-js\";i:4;s:24:\"ct-progressbar-widget-js\";i:5;s:12:\"imagesloaded\";i:6;s:7:\"isotope\";i:7;s:25:\"ct-post-masonry-widget-js\";i:8;s:22:\"ct-post-grid-widget-js\";}}'),(10480,3184,'_elementor_css','a:6:{s:4:\"time\";i:1742179514;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:8:\"material\";i:1;s:8:\"flaticon\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(10481,3184,'_elementor_element_cache','{\"timeout\":1742265914,\"value\":{\"content\":\"        <section class=\"elementor-section elementor-top-section elementor-element elementor-element-2d2b67a elementor-section-stretched elementor-section-full_width slider-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"2d2b67a\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-no \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-d1bb387\" data-id=\"d1bb387\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImNjODZmNGQiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJyZXZzbGlkZXJ0aXRsZSI6IkhvbWUgMSIsInNob3J0Y29kZSI6IltyZXZfc2xpZGVyIGFsaWFzPVwiaG9tZS0xXCJdW1wvcmV2X3NsaWRlcl0ifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoic2xpZGVyX3Jldm9sdXRpb24ifQ==\"]        <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-2cea906 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"2cea906\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-8e117d0\" data-id=\"8e117d0\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjI0YjYyY2MiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkNoXHUwMGZhbmcgdFx1MDBmNGkgY3VuZyBjXHUxZWE1cCBuaGlcdTFlYzF1IGxvXHUxZWExaSBzXHUxZWEzbiBwaFx1MWVhOW0gY2hvIG5nXHUwMGUwbmggY1x1MDBmNG5nIG5naGlcdTFlYzdwIGNcdTAxYTEga2hcdTAwZWQgdHJcdTAwZWFuIHRvXHUwMGUwbiBWaVx1MWVjN3QgTmFtIHZcdTAwZTAgcXVcdTFlZDFjIHRcdTFlYmYsIFx1MDExMVx1MWViN2MgYmlcdTFlYzd0IHRcdTFlYTFpIGNcdTAwZTFjIHRoXHUxZWNiIHRyXHUwMWIwXHUxZWRkbmcgdHJcdTFlY2RuZyBcdTAxMTFpXHUxZWMzbSBuaFx1MDFiMCBOaFx1MWVhZHQgQlx1MWVhM24sIEhcdTAwZTBuIFF1XHUxZWQxYywgSG9hIEtcdTFlZjMgdlx1MDBlMCBcdTAwZGFjLiBDaFx1MDBmYW5nIHRcdTAwZjRpIGNcdTAxNjluZyBjXHUwMGYzIGtpbmggbmdoaVx1MWVjN20geHVcdTFlYTV0IGtoXHUxZWE5dSBcdTAxMTFcdTFlYmZuIGNcdTAwZTFjIHRoXHUxZWNiIHRyXHUwMWIwXHUxZWRkbmcgblx1MDBlMHkuIiwidGl0bGVfY29sb3IiOiIjODVCMjNCIiwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzYsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHQiOnsidW5pdCI6InB4Iiwic2l6ZSI6NDgsInNpemVzIjpbXX0sInN0eWxlIjoic3QtbGluZS1sZWZ0IiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMTYiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjoyNiwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzQsInNpemVzIjpbXX0sImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluVXAifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-909b449 wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"909b449\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Thu1ebf mu1ea1nh lu1edbn nhu1ea5t cu1ee7a chu00fang tu00f4i nu1eb1m u1edf u0111u1ed9i ngu0169 nhu00e2n lu1ef1c tru1ebb trung, u0111am mu00ea hu1ecdc hu1ecfi, su00e1ng tu1ea1o vu00e0 tu1ef1 tin, cu00f3 khu1ea3 nu0103ng su1ea3n xuu1ea5t u0111a du1ea1ng cu00e1c su1ea3n phu1ea9m cu01a1 khu00ed vu1edbi chu1ea5t lu01b0u1ee3ng luu00f4n u1ed5n u0111u1ecbnh.</p>tttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImM0YTIwMjgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJpbWFnZSI6eyJ1cmwiOiIiLCJpZCI6IiJ9LCJ2aWRlb19saW5rIjoiaHR0cHM6XC9cL3d3dy55b3V0dWJlLmNvbVwvd2F0Y2g/dj12VUNWcUxtWFNQTSIsImJ0bl92aWRlb19zdHlsZSI6InN0eWxlMyIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMzEiLCJyaWdodCI6IjM4IiwiYm90dG9tIjoiMCIsImxlZnQiOiI3OCIsImlzTGlua2VkIjpmYWxzZX0sIl9jc3NfY2xhc3NlcyI6ImVsLWlubGluZSB3b3cgZmFkZUluUmlnaHQiLCJfbWFyZ2luX3RhYmxldCI6eyJ1bml0IjoicHgiLCJ0b3AiOiIzMSIsInJpZ2h0IjoiMjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjY4IiwiaXNMaW5rZWQiOmZhbHNlfSwiX2FuaW1hdGlvbiI6InNsaWRlSW5VcCIsIl9tYXJnaW5fbW9iaWxlIjp7InVuaXQiOiJweCIsInRvcCI6IjMxIiwicmlnaHQiOiIyMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF92aWRlb19wbGF5ZXIifQ==\"]tt<div class=\"elementor-element elementor-element-1fd7931 el-inline wow fadeInRight elementor-invisible elementor-widget elementor-widget-image\" data-id=\"1fd7931\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;slideInUp&quot;}\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" class=\"attachment-full size-full wp-image-2542\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-4fff345\" data-id=\"4fff345\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjU5MGYxYmUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjo1MCwic3VmZml4IjoiKyIsInRob3VzYW5kX3NlcGFyYXRvciI6IiIsInRob3VzYW5kX3NlcGFyYXRvcl9jaGFyIjoiICIsInRpdGxlIjoiS2hcdTAwZTFjaCBoXHUwMGUwbmciLCJzaG93X2ljb24iOiJ0cnVlIiwiY291bnRlcl9pY29uIjp7InZhbHVlIjoibWF0ZXJpYWwgem1kaSB6bWRpLWFzc2lnbm1lbnQtY2hlY2siLCJsaWJyYXJ5IjoibWF0ZXJpYWwifSwibnVtYmVyX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjQxIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJfY3NzX2NsYXNzZXMiOiJ0ZXh0LWNlbnRlci1zbSIsImljb25fdHlwZSI6ImltYWdlIiwiaWNvbl9pbWFnZSI6eyJ1cmwiOiJodHRwOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAxOVwvMTJcL2NvdW50ZXItaWNvbi0wMS5wbmciLCJpZCI6MTUxNX0sIl9hbmltYXRpb24iOiJub25lIiwiY3RfYW5pbWF0ZSI6IndvdyBmYWRlSW5VcCJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9jb3VudGVyIn0=\"][elementor-element data=\"eyJpZCI6IjdhNWYyMzkiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjoyMDAsInN1ZmZpeCI6IisiLCJ0aG91c2FuZF9zZXBhcmF0b3IiOiIiLCJ0aG91c2FuZF9zZXBhcmF0b3JfY2hhciI6IiAiLCJ0aXRsZSI6Ik5oXHUwMGUybiBzXHUxZWYxIiwic2hvd19pY29uIjoidHJ1ZSIsImNvdW50ZXJfaWNvbiI6eyJ2YWx1ZSI6Im1hdGVyaWFsIHptZGkgem1kaS1hc3NpZ25tZW50LWNoZWNrIiwibGlicmFyeSI6Im1hdGVyaWFsIn0sIm51bWJlcl90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiI0MSIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwiX2Nzc19jbGFzc2VzIjoidGV4dC1jZW50ZXItc20iLCJpY29uX3R5cGUiOiJpbWFnZSIsImljb25faW1hZ2UiOnsidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMTlcLzEyXC9jb3VudGVyLWljb24tMDIucG5nIiwiaWQiOjE1MTZ9LCJfYW5pbWF0aW9uIjoibm9uZSIsImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluVXAifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY291bnRlciJ9\"][elementor-element data=\"eyJpZCI6IjA0NTMxYzgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjoyMDAwLCJzdWZmaXgiOiIrIiwidGhvdXNhbmRfc2VwYXJhdG9yIjoiIiwidGhvdXNhbmRfc2VwYXJhdG9yX2NoYXIiOiIgIiwidGl0bGUiOiJTXHUxZWQxIFx1MDExMVx1MDFhMW4gaFx1MDBlMG5nIG1cdTFlZDdpIG5cdTAxMDNtIiwic2hvd19pY29uIjoidHJ1ZSIsImNvdW50ZXJfaWNvbiI6eyJ2YWx1ZSI6Im1hdGVyaWFsIHptZGkgem1kaS1hc3NpZ25tZW50LWNoZWNrIiwibGlicmFyeSI6Im1hdGVyaWFsIn0sIm51bWJlcl90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiI0MSIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwiX2Nzc19jbGFzc2VzIjoidGV4dC1jZW50ZXItc20iLCJpY29uX3R5cGUiOiJpbWFnZSIsImljb25faW1hZ2UiOnsidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMTlcLzEyXC9jb3VudGVyLWljb24tMDMucG5nIiwiaWQiOjE1MTd9LCJfYW5pbWF0aW9uIjoibm9uZSIsImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluVXAifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY291bnRlciJ9\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-348ba48\" data-id=\"348ba48\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-ed7e1d0 wow fadeInUp elementor-widget elementor-widget-image\" data-id=\"ed7e1d0\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" class=\"attachment-full size-full wp-image-2571\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntttt<div class=\"elementor-element elementor-element-3b54db6 wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"3b54db6\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Chu00fang tu00f4i u0111u00e3 bu1eaft u0111u1ea7u mu1edf mu1ed9t cu1eeda hu00e0ng tru00ean Alibaba u0111u1ec3 ku1ebft nu1ed1i vu1edbi cu00e1c u0111u01a1n hu00e0ng tu1eeb khu1eafp nu01a1i tru00ean thu1ebf giu1edbi.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-8b70e78 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"8b70e78\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-c2b95bd\" data-id=\"c2b95bd\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-b5a8ba3 elementor-widget elementor-widget-image\" data-id=\"b5a8ba3\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" class=\"attachment-full size-full wp-image-2268\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntttt<div class=\"elementor-element elementor-element-0e89391 elementor-widget elementor-widget-image\" data-id=\"0e89391\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" class=\"attachment-full size-full wp-image-2559\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-de7136f\" data-id=\"de7136f\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6Ijg0MDdhYmUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkNoXHUwMGZhbmcgdFx1MDBmNGkgblx1MWVkNyBsXHUxZWYxYyB0clx1MWVkZiB0aFx1MDBlMG5oIG1cdTFlZDl0IHRyb25nIG5oXHUxZWVmbmcgY1x1MDBmNG5nIHR5IGNoXHUxZWJmIGJpXHUxZWJmbiBjXHUwMWExIGtoXHUwMGVkIGhcdTAwZTBuZyBcdTAxMTFcdTFlYTd1IGNcdTFlZTdhIFZpXHUxZWM3dCBOYW0sIGN1bmcgY1x1MWVhNXAgcmEgdGhcdTFlY2IgdHJcdTAxYjBcdTFlZGRuZyBxdVx1MWVkMWMgdFx1MWViZiB2XHUwMGUwbyBuXHUwMTAzbSAyMDMwLiBUcm9uZyB0XHUwMWIwXHUwMWExbmcgbGFpLCBjaFx1MDBmYW5nIHRcdTAwZjRpIGhcdTAxYjBcdTFlZGJuZyBcdTAxMTFcdTFlYmZuIHZpXHUxZWM3YyBzXHUxZWEzbiB4dVx1MWVhNXQgY1x1MDBlMWMgc1x1MWVhM24gcGhcdTFlYTltIG1cdTAwZTF5IG1cdTAwZjNjIGhvXHUwMGUwbiBjaFx1MWVjOW5oIFx1MDExMVx1MWVjMyBnaWFvIHRyXHUxZWYxYyB0aVx1MWViZnAgXHUwMTExXHUxZWJmbiBuZ1x1MDFiMFx1MWVkZGkgc1x1MWVlZCBkXHUxZWU1bmcgY3VcdTFlZDFpLiIsInRpdGxlX2NvbG9yIjoiIzg1QjIzQiIsInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplIjp7InVuaXQiOiJweCIsInNpemUiOjM2LCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0Ijp7InVuaXQiOiJweCIsInNpemUiOjQ4LCJzaXplcyI6W119LCJzdHlsZSI6InN0LWxpbmUtbGVmdCIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiLTkiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV9zcGFjZV9ib3R0b20iOnsidW5pdCI6InB4Iiwic2l6ZSI6MTcsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjozMCwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzgsInNpemVzIjpbXX0sImN0X2FuaW1hdGUiOiJ3b3cgZmxpcEluWCIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX21vYmlsZSI6eyJ1bml0IjoicHgiLCJzaXplIjoyOCwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF9tb2JpbGUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzQsInNpemVzIjpbXX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]tt<div class=\"elementor-element elementor-element-0c8497c wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"0c8497c\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Mu1ee5c tiu00eau u0111u1ea1t u0111u01b0u1ee3c vu00e0o nu0103m 2026:</p>tttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6IjQ3NTRlZDYiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJwcm9ncmVzc2Jhcl9saXN0IjpbeyJ0aXRsZSI6Ilx1MDExMFx1MDBmNG5nIFx1MDBjMSAoTmhcdTFlYWR0IEJcdTFlYTNuLCBIXHUwMGUwbiBRdVx1MWVkMWMsIHYudi4pOiBYdVx1MWVhNXQga2hcdTFlYTl1IGNcdTAwZTFjIGxpbmgga2lcdTFlYzduIG1cdTAwZTF5IG1cdTAwZjNjIHRoYXkgdGhcdTFlYmYsIHBoXHUxZWU1IGtpXHUxZWM3biB4ZSBtXHUwMGUxeSB2XHUwMGUwIFx1MDBmNCB0XHUwMGY0LCBwaFx1MWVlNSBraVx1MWVjN24gbmdcdTAwZTBuaCBuXHUwMWIwXHUxZWRiYywga2h1XHUwMGY0biBtXHUxZWFidSB2XHUwMGUwIGNcdTAwZTFjIGJcdTFlZDkgcGhcdTFlYWRuIGNcdTAxYTEga2hcdTAwZWQga2hcdTAwZTFjLiIsInByb2dyZXNzX3R5cGUiOiIiLCJwZXJjZW50Ijp7InVuaXQiOiIlIiwic2l6ZSI6MzAsInNpemVzIjpbXX0sImRpc3BsYXlfcGVyY2VudGFnZSI6ImhpZGUiLCJpbm5lcl90ZXh0IjoiV2ViIERlc2lnbmVyIiwiX2lkIjoiOGI0YmNkNiJ9LHsidGl0bGUiOiJDaFx1MDBlMnUgXHUwMGMydSAoXHUwMTEwXHUxZWU5YywgQnVsZ2FyaWEsIEhcdTAwZTAgTGFuLCB2LnYuKTogU1x1MWVhM24geHVcdTFlYTV0IGtodVx1MDBmNG4gamlnIGNobyB2XHUwMGYybmcgYmkgXHUwMGY0IHRcdTAwZjQgdlx1MDBlMCBjXHUwMGUxYyBiXHUxZWQ5IHBoXHUxZWFkbiBoXHUxZWQ5cCBcdTAxMTFpXHUxZWM3biBjaG8gbVx1MDBlMXkgbVx1MDBmM2MgdFx1MWVmMSBcdTAxMTFcdTFlZDluZyBoXHUwMGYzYS4iLCJwcm9ncmVzc190eXBlIjoiIiwicGVyY2VudCI6eyJ1bml0IjoiJSIsInNpemUiOjEwLCJzaXplcyI6W119LCJkaXNwbGF5X3BlcmNlbnRhZ2UiOiJoaWRlIiwiaW5uZXJfdGV4dCI6IldlYiBEZXNpZ25lciIsIl9pZCI6IjZlMGY4NzcifSx7InRpdGxlIjoiSG9hIEtcdTFlZjM6IENcdTAwZTFjIHNcdTFlYTNuIHBoXHUxZWE5bSBsaVx1MDBlYW4gcXVhbiBcdTAxMTFcdTFlYmZuIHRoaVx1MWViZnQgYlx1MWVjYiB5IHRcdTFlYmYsIHF1YW5nIGhcdTFlY2RjIHZcdTAwZTAgdGhpXHUxZWJmdCBiXHUxZWNiIFx1MDBlMm0gdGhhbmguIiwicHJvZ3Jlc3NfdHlwZSI6IiIsInBlcmNlbnQiOnsidW5pdCI6IiUiLCJzaXplIjozMCwic2l6ZXMiOltdfSwiZGlzcGxheV9wZXJjZW50YWdlIjoic2hvdyIsIl9pZCI6IjIyMmViODEifSx7Il9pZCI6IjVlZWNjYjYiLCJ0aXRsZSI6Ilx1MDBkYWM6IFNcdTFlYTNuIHBoXHUxZWE5bSBraW0gbG9cdTFlYTFpIHRcdTFlYTVtLiIsInBlcmNlbnQiOnsidW5pdCI6IiUiLCJzaXplIjo4LCJzaXplcyI6W119fSx7Il9pZCI6IjEwZTU3NTAiLCJ0aXRsZSI6IlZpXHUxZWM3dCBOYW06IE1cdTAwZTF5IHRcdTFlZjEgXHUwMTExXHUxZWQ5bmcgaFx1MDBmM2EgbmhcdTFlY2Y7IGJ1IGxcdTAwZjRuZyB4ZSBtXHUwMGUxeSB2XHUwMGUwIFx1MDBmNCB0XHUwMGY0OyBzXHUxZWEzbiBwaFx1MWVhOW0gdHJvbmcgbmdcdTAwZTBuaCBkXHUxZWE3dSBraFx1MDBlZC4iLCJwZXJjZW50Ijp7InVuaXQiOiIlIiwic2l6ZSI6MjAsInNpemVzIjpbXX19LHsiX2lkIjoiZTE3YTE5NSIsInRpdGxlIjoiQ1x1MDBlMWMgdGhcdTFlY2IgdHJcdTAxYjBcdTFlZGRuZyB2XHUwMGUwIHNcdTFlYTNuIHBoXHUxZWE5bSBraFx1MDBlMWMuIiwicGVyY2VudCI6eyJ1bml0IjoiJSIsInNpemUiOjIsInNpemVzIjpbXX19XSwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiI3OCIsImlzTGlua2VkIjpmYWxzZX0sIl9tYXJnaW5fbW9iaWxlIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6dHJ1ZX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9wcm9ncmVzc2JhciJ9\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-b6145ce elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"b6145ce\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-e65d58b\" data-id=\"e65d58b\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjljZDU1ZGQiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkNoXHUwMGZhbmcgdFx1MDBmNGkgY3VuZyBjXHUxZWE1cCBkXHUxZWNiY2ggdlx1MWVlNSB0cm9uZyBuaGlcdTFlYzF1IGxcdTAxMjluaCB2XHUxZWYxYy4iLCJ0aXRsZV9jb2xvciI6IiM4NUIyM0IiLCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZSI6eyJ1bml0IjoicHgiLCJzaXplIjozNiwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodCI6eyJ1bml0IjoicHgiLCJzaXplIjo0OCwic2l6ZXMiOltdfSwic3R5bGUiOiJzdC1saW5lLWxlZnQiLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6dHJ1ZX0sInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjozMCwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzgsInNpemVzIjpbXX0sImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluTGVmdCIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX21vYmlsZSI6eyJ1bml0IjoicHgiLCJzaXplIjoyOCwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF9tb2JpbGUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzQsInNpemVzIjpbXX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-2067062\" data-id=\"2067062\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-956a238 wow fadeInRight elementor-widget elementor-widget-text-editor\" data-id=\"956a238\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Chu00fang tu00f4i luu00f4n u0111u00e1p u1ee9ng yu00eau cu1ea7u thiu1ebft ku1ebf cu1ee7a khu00e1ch hu00e0ng. Ngou1ea1i hu00ecnh vu00e0 ku00edch thu01b0u1edbc lu00e0 nhu1eefng yu1ebfu tu1ed1 chu00fang tu00f4i coi tru1ecdng nhu1ea5t.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-74328b6b elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"74328b6b\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4b9c9796\" data-id=\"4b9c9796\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjFjYTNiNmM1IiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsibGF5b3V0IjoiNCIsImxpbWl0Ijo0LCJmaWx0ZXJfZGVmYXVsdF90aXRsZSI6IkFsbCIsImNvbF9zbSI6IjEiLCJjb2xfbWQiOiIyIiwiY29sX2xnIjoiMiIsImNvbF94bCI6IjIiLCJidXR0b25fdGV4dCI6IlJlYWQgbW9yZSIsInNvdXJjZSI6WyJ2aXxsYW5ndWFnZSJdLCJjdF9hbmltYXRlIjoid293IGZhZGVJblVwIiwib3JkZXIiOiJhc2MifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3Rfc2VydmljZV9ncmlkIn0=\"][elementor-element data=\"eyJpZCI6IjI5NzFiOGIzIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGV4dCI6IkRcdTFlY2JjaCB2XHUxZWU1IGtoXHUwMGUxYyIsImxpbmsiOnsidXJsIjoiXC9zZXJ2aWNlcyIsImlzX2V4dGVybmFsIjoiIiwibm9mb2xsb3ciOiIifSwiYWxpZ24iOiJjZW50ZXIiLCJidG5faWNvbiI6eyJ2YWx1ZSI6Im1hdGVyaWFsIHptZGkgem1kaS1zZXR0aW5ncyIsImxpYnJhcnkiOiJtYXRlcmlhbCJ9LCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6Ii0xMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sInN0eWxlIjoiYnRuLXByZXNldDMiLCJfYW5pbWF0aW9uIjoibm9uZSJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9idXR0b24ifQ==\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-f43d465 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"f43d465\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-5310bd3\" data-id=\"5310bd3\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImJjZmM3MzUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjdGY3X2lkIjoiOTMyIiwibGF5b3V0IjoiMiIsImN0ZjdfdGl0bGUiOiJDXHUwMGYzIGNcdTAwZTJ1IGhcdTFlY2ZpIG5cdTAwZTBvIGtoXHUwMGY0bmc/IiwiY3RmN19kZXNjcmlwdGlvbiI6IkNhbGw6IDgwMCAyNTAgMzY5IiwiY3RmN19waG9uZSI6IjxzcGFuPkNhbGw6PFwvc3Bhbj4gMDk2ODg2MDM4NiIsImVsX3RpdGxlIjoiTGlcdTAwZWFuIGhcdTFlYzcgXHUwMTExXHUxZWMzIG5oXHUxZWFkbiBiXHUwMGUxbyBnaVx1MDBlMToiLCJjdF9hbmltYXRlIjoid293IGZsaXBJblgifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY3RmNyJ9\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-a9b49c5 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"a9b49c5\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n                            <div class=\"elementor-background-overlay\"></div>n                n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-1dcb85a\" data-id=\"1dcb85a\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n                <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-6c560a6 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"6c560a6\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-e82cd67\" data-id=\"e82cd67\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImVmNDE1MTEiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkNoXHUwMGZhbmcgdFx1MDBmNGkgY1x1MDBmMyBxdXkgdHJcdTAwZWNuaCBsXHUwMGUwbSB2aVx1MWVjN2MgXHUwMTExXHUwMWExbiBnaVx1MWVhM24uIiwidGl0bGVfY29sb3IiOiIjZmZmZmZmIiwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzYsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHQiOnsidW5pdCI6InB4Iiwic2l6ZSI6NDgsInNpemVzIjpbXX0sInN0eWxlIjoic3QtbGluZS1sZWZ0IiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOnRydWV9LCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzAsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjM4LCJzaXplcyI6W119LCJjdF9hbmltYXRlIjoid293IGZhZGVJbkxlZnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-3a08737\" data-id=\"3a08737\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-7aa11c2 wow fadeInRight elementor-widget elementor-widget-text-editor\" data-id=\"7aa11c2\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Chu00fang tu00f4i luu00f4n mang u0111u1ebfn cu1ea3m giu00e1c an tu00e2m vu1ec1 chu1ea5t lu01b0u1ee3ng vu00e0 tiu1ebfn u0111u1ed9.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n        [elementor-element data=\"eyJpZCI6IjlkNWVhMzIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X2xpc3QiOlt7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi1yZXNlYXJjaCIsImxpYnJhcnkiOiJmbGF0aWNvbiJ9LCJfaWQiOiIwNTVmZWYyIiwidGl0bGUiOiJUXHUwMGVjbSBjaFx1MDBmYW5nIHRcdTAwZjRpIiwiZGVzY3JpcHRpb24iOiJDaFx1MDBmYW5nIHRcdTAwZjRpIGhpXHUxZWMzdSB0XHUxZWE3bSBxdWFuIHRyXHUxZWNkbmcgY1x1MWVlN2EgdmlcdTFlYzdjIHhcdTFlZWQgbFx1MDBmZCBtXHUxZWQ3aSBkXHUxZWYxIFx1MDBlMW4gdGhlbyBtXHUxZWQ5dCBjXHUwMGUxY2ggdGlcdTFlYmZwIGNcdTFlYWRuIHRvXHUwMGUwbiBkaVx1MWVjN24uIiwiYnRuX2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9fSx7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi1uZXR3b3JrIiwibGlicmFyeSI6ImZsYXRpY29uIn0sIl9pZCI6IjM5ZTE0YjgiLCJ0aXRsZSI6IktcdTFlYmZ0IG5cdTFlZDFpIHZcdTFlZGJpIGNoXHUwMGZhbmcgdFx1MDBmNGkiLCJkZXNjcmlwdGlvbiI6Ilx1MDExMGlcdTFlYzF1IGxcdTAwZTBtIGNoXHUwMGZhbmcgdFx1MDBmNGkga2hcdTAwZTFjIGJpXHUxZWM3dCBzbyB2XHUxZWRiaSBjXHUwMGUxYyBjXHUwMGY0bmcgdHkga2hcdTAwZTFjIGxcdTAwZTAgY2h1eVx1MDBlYW4gbVx1MDBmNG4gdHJvbmcgdmlcdTFlYzdjIHRcdTFlYTFvIHJhIGNcdTAwZTFjIGdpXHUxZWEzaSBwaFx1MDBlMXAgdFx1MDBmOXkgY2hcdTFlYzluaC4iLCJidG5fbGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn19LHsiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZsYXRpY29uIGZsYXRpY29uLXdhbGxldCIsImxpYnJhcnkiOiJmbGF0aWNvbiJ9LCJfaWQiOiJmNWUxMGU4IiwidGl0bGUiOiJUaGFuaCB0b1x1MDBlMW4gY2hvIGNoXHUwMGZhbmcgdFx1MDBmNGkiLCJkZXNjcmlwdGlvbiI6IkNoXHUwMGZhbmcgdFx1MDBmNGkga2h1eVx1MWViZm4ga2hcdTAwZWRjaCBtXHUxZWQ3aSB0aFx1MDBlMG5oIHZpXHUwMGVhbiB0cm9uZyBcdTAxMTFcdTFlZDlpIG5nXHUwMTY5IHRyXHUxZWRmIHRoXHUwMGUwbmggcGhpXHUwMGVhbiBiXHUxZWEzbiB0XHUxZWQxdCBuaFx1MWVhNXQgY1x1MWVlN2EgY2hcdTAwZWRuaCBtXHUwMGVjbmgsIHRcdTFlYTFvIHJhIG1cdTFlZDl0IG1cdTAwZjRpIHRyXHUwMWIwXHUxZWRkbmcgbGluaCBob1x1MWVhMXQgdlx1MDBlMCBoXHUxZWUzcCB0XHUwMGUxYy4iLCJidG5fbGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn19LHsiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZsYXRpY29uIGZsYXRpY29uLXRhcmdldCIsImxpYnJhcnkiOiJmbGF0aWNvbiJ9LCJfaWQiOiI4ODM5OTY5IiwidGl0bGUiOiJcdTAxMTBcdTFlYTF0IFx1MDExMVx1MDFiMFx1MWVlM2MgXHUwMWIwXHUxZWRiYyBtXHUwMWExIGNcdTFlZTdhIGJcdTFlYTFuIiwiZGVzY3JpcHRpb24iOiJDXHUxZWQxdCBsXHUwMGY1aSBjXHUxZWU3YSBtXHUxZWQ3aSBkb2FuaCBuZ2hpXHUxZWM3cCBsXHUwMGUwIG5oXHUxZWVmbmcgZ2lcdTFlYTNpIHBoXHUwMGUxcCBcdTAxMTFcdTFlZDljIFx1MDExMVx1MDBlMW8sIHRydXlcdTFlYzFuIGNcdTFlYTNtIGhcdTFlZTluZyBjaG8gc1x1MWVmMSBcdTAxMTFcdTFlZDVpIG1cdTFlZGJpIHZcdTAwZTAgcGhcdTAwZTF0IHRyaVx1MWVjM24uIiwiYnRuX2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9fV0sInRpdGxlX2NvbG9yIjoiI2ZmZmZmZiIsImRlc2NyaXB0aW9uX2NvbG9yIjoiI0ZGRkZGRiIsImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X3Byb2Nlc3MifQ==\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-79ee8ab elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"79ee8ab\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4af1814\" data-id=\"4af1814\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n                <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-505fb45 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"505fb45\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-7223f1c\" data-id=\"7223f1c\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-e7c238e elementor-widget elementor-widget-google_maps\" data-id=\"e7c238e\" data-element_type=\"widget\" data-widget_type=\"google_maps.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-custom-embed\">nttt<iframe loading=\"lazy\"ntttttsrc=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"nttttttitle=\"10u00b057&#039;11.2&quot;N 106u00b045&#039;13.0&quot;E\"ntttttaria-label=\"10u00b057&#039;11.2&quot;N 106u00b045&#039;13.0&quot;E\"nttt></iframe>ntt</div>ntttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-0225539\" data-id=\"0225539\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjUxZDU0M2EiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkxpXHUwMGVhbiBoXHUxZWM3IHZcdTFlZGJpIGNoXHUwMGZhbmcgdFx1MDBmNGkgYlx1MWVhNXQgY1x1MWVlOSBsXHUwMGZhYyBuXHUwMGUwbyBuXHUxZWJmdSBiXHUxZWExbiBjXHUxZWE3biBzXHUxZWYxIGdpXHUwMGZhcCBcdTAxMTFcdTFlZTEuLi4iLCJ0aXRsZV9jb2xvciI6IiM4NUIyM0IiLCJfcGFkZGluZyI6eyJ1bml0IjoiJSIsInRvcCI6IjAiLCJyaWdodCI6IjUiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV9zcGFjZV9ib3R0b20iOnsidW5pdCI6InB4Iiwic2l6ZSI6MzMsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjozMCwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzgsInNpemVzIjpbXX0sImN0X2FuaW1hdGUiOiJ3b3cgZmxpcEluWCIsIl9wYWRkaW5nX3RhYmxldCI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"][elementor-element data=\"eyJpZCI6ImVkMGRjMWIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjdGY3X2lkIjoiOTc0Iiwic3R5bGVfbDEiOiJzdHlsZTIifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY3RmNyJ9\"]            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                    </div>n        </section>n        \",\"scripts\":[],\"styles\":[]}}'),(10482,3185,'_elementor_edit_mode','builder'),(10483,3185,'_elementor_template_type','wp-page'),(10484,3185,'_elementor_version','3.24.7'),(10485,3185,'_wp_page_template','default'),(10486,3185,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i cung c\\u1ea5p nhi\\u1ec1u lo\\u1ea1i s\\u1ea3n ph\\u1ea9m cho ng\\u00e0nh c\\u00f4ng nghi\\u1ec7p c\\u01a1 kh\\u00ed tr\\u00ean to\\u00e0n Vi\\u1ec7t Nam v\\u00e0 qu\\u1ed1c t\\u1ebf, \\u0111\\u1eb7c bi\\u1ec7t t\\u1ea1i c\\u00e1c th\\u1ecb tr\\u01b0\\u1eddng tr\\u1ecdng \\u0111i\\u1ec3m nh\\u01b0 Nh\\u1eadt B\\u1ea3n, H\\u00e0n Qu\\u1ed1c, Hoa K\\u1ef3 v\\u00e0 \\u00dac. Ch\\u00fang t\\u00f4i c\\u0169ng c\\u00f3 kinh nghi\\u1ec7m xu\\u1ea5t kh\\u1ea9u \\u0111\\u1ebfn c\\u00e1c th\\u1ecb tr\\u01b0\\u1eddng n\\u00e0y.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Th\\u1ebf m\\u1ea1nh l\\u1edbn nh\\u1ea5t c\\u1ee7a ch\\u00fang t\\u00f4i n\\u1eb1m \\u1edf \\u0111\\u1ed9i ng\\u0169 nh\\u00e2n l\\u1ef1c tr\\u1ebb trung, \\u0111am m\\u00ea h\\u1ecdc h\\u1ecfi, s\\u00e1ng t\\u1ea1o v\\u00e0 t\\u1ef1 tin, c\\u00f3 kh\\u1ea3 n\\u0103ng s\\u1ea3n xu\\u1ea5t \\u0111a d\\u1ea1ng c\\u00e1c s\\u1ea3n ph\\u1ea9m c\\u01a1 kh\\u00ed v\\u1edbi ch\\u1ea5t l\\u01b0\\u1ee3ng lu\\u00f4n \\u1ed5n \\u0111\\u1ecbnh.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=vUCVqLmXSPM\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Kh\\u00e1ch h\\u00e0ng\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"Nh\\u00e2n s\\u1ef1\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"S\\u1ed1 \\u0111\\u01a1n h\\u00e0ng m\\u1ed7i n\\u0103m\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337},\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.trustpass.alibaba.com\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ch\\u00fang t\\u00f4i \\u0111\\u00e3 b\\u1eaft \\u0111\\u1ea7u m\\u1edf m\\u1ed9t c\\u1eeda h\\u00e0ng tr\\u00ean Alibaba \\u0111\\u1ec3 k\\u1ebft n\\u1ed1i v\\u1edbi c\\u00e1c \\u0111\\u01a1n h\\u00e0ng t\\u1eeb kh\\u1eafp n\\u01a1i tr\\u00ean th\\u1ebf gi\\u1edbi.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0e89391\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i n\\u1ed7 l\\u1ef1c tr\\u1edf th\\u00e0nh m\\u1ed9t trong nh\\u1eefng c\\u00f4ng ty ch\\u1ebf bi\\u1ebfn c\\u01a1 kh\\u00ed h\\u00e0ng \\u0111\\u1ea7u c\\u1ee7a Vi\\u1ec7t Nam, cung c\\u1ea5p ra th\\u1ecb tr\\u01b0\\u1eddng qu\\u1ed1c t\\u1ebf v\\u00e0o n\\u0103m 2030. Trong t\\u01b0\\u01a1ng lai, ch\\u00fang t\\u00f4i h\\u01b0\\u1edbng \\u0111\\u1ebfn vi\\u1ec7c s\\u1ea3n xu\\u1ea5t c\\u00e1c s\\u1ea3n ph\\u1ea9m m\\u00e1y m\\u00f3c ho\\u00e0n ch\\u1ec9nh \\u0111\\u1ec3 giao tr\\u1ef1c ti\\u1ebfp \\u0111\\u1ebfn ng\\u01b0\\u1eddi s\\u1eed d\\u1ee5ng cu\\u1ed1i.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>M\\u1ee5c ti\\u00eau \\u0111\\u1ea1t \\u0111\\u01b0\\u1ee3c v\\u00e0o n\\u0103m 2026:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"\\u0110\\u00f4ng \\u00c1 (Nh\\u1eadt B\\u1ea3n, H\\u00e0n Qu\\u1ed1c, v.v.): Xu\\u1ea5t kh\\u1ea9u c\\u00e1c linh ki\\u1ec7n m\\u00e1y m\\u00f3c thay th\\u1ebf, ph\\u1ee5 ki\\u1ec7n xe m\\u00e1y v\\u00e0 \\u00f4 t\\u00f4, ph\\u1ee5 ki\\u1ec7n ng\\u00e0nh n\\u01b0\\u1edbc, khu\\u00f4n m\\u1eabu v\\u00e0 c\\u00e1c b\\u1ed9 ph\\u1eadn c\\u01a1 kh\\u00ed kh\\u00e1c.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"Ch\\u00e2u \\u00c2u (\\u0110\\u1ee9c, Bulgaria, H\\u00e0 Lan, v.v.): S\\u1ea3n xu\\u1ea5t khu\\u00f4n jig cho v\\u00f2ng bi \\u00f4 t\\u00f4 v\\u00e0 c\\u00e1c b\\u1ed9 ph\\u1eadn h\\u1ed9p \\u0111i\\u1ec7n cho m\\u00e1y m\\u00f3c t\\u1ef1 \\u0111\\u1ed9ng h\\u00f3a.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"Hoa K\\u1ef3: C\\u00e1c s\\u1ea3n ph\\u1ea9m li\\u00ean quan \\u0111\\u1ebfn thi\\u1ebft b\\u1ecb y t\\u1ebf, quang h\\u1ecdc v\\u00e0 thi\\u1ebft b\\u1ecb \\u00e2m thanh.\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"\\u00dac: S\\u1ea3n ph\\u1ea9m kim lo\\u1ea1i t\\u1ea5m.\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"Vi\\u1ec7t Nam: M\\u00e1y t\\u1ef1 \\u0111\\u1ed9ng h\\u00f3a nh\\u1ecf; bu l\\u00f4ng xe m\\u00e1y v\\u00e0 \\u00f4 t\\u00f4; s\\u1ea3n ph\\u1ea9m trong ng\\u00e0nh d\\u1ea7u kh\\u00ed.\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"C\\u00e1c th\\u1ecb tr\\u01b0\\u1eddng v\\u00e0 s\\u1ea3n ph\\u1ea9m kh\\u00e1c.\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i cung c\\u1ea5p d\\u1ecbch v\\u1ee5 trong nhi\\u1ec1u l\\u0129nh v\\u1ef1c.\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ch\\u00fang t\\u00f4i lu\\u00f4n \\u0111\\u00e1p \\u1ee9ng y\\u00eau c\\u1ea7u thi\\u1ebft k\\u1ebf c\\u1ee7a kh\\u00e1ch h\\u00e0ng. Ngo\\u1ea1i h\\u00ecnh v\\u00e0 k\\u00edch th\\u01b0\\u1edbc l\\u00e0 nh\\u1eefng y\\u1ebfu t\\u1ed1 ch\\u00fang t\\u00f4i coi tr\\u1ecdng nh\\u1ea5t.<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"vi|language\"],\"ct_animate\":\"wow fadeInUp\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"D\\u1ecbch v\\u1ee5 kh\\u00e1c\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"C\\u00f3 c\\u00e2u h\\u1ecfi n\\u00e0o kh\\u00f4ng?\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"Li\\u00ean h\\u1ec7 \\u0111\\u1ec3 nh\\u1eadn b\\u00e1o gi\\u00e1:\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i c\\u00f3 quy tr\\u00ecnh l\\u00e0m vi\\u1ec7c \\u0111\\u01a1n gi\\u1ea3n.\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ch\\u00fang t\\u00f4i lu\\u00f4n mang \\u0111\\u1ebfn c\\u1ea3m gi\\u00e1c an t\\u00e2m v\\u1ec1 ch\\u1ea5t l\\u01b0\\u1ee3ng v\\u00e0 ti\\u1ebfn \\u0111\\u1ed9.<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"T\\u00ecm ch\\u00fang t\\u00f4i\",\"description\":\"Ch\\u00fang t\\u00f4i hi\\u1ec3u t\\u1ea7m quan tr\\u1ecdng c\\u1ee7a vi\\u1ec7c x\\u1eed l\\u00fd m\\u1ed7i d\\u1ef1 \\u00e1n theo m\\u1ed9t c\\u00e1ch ti\\u1ebfp c\\u1eadn to\\u00e0n di\\u1ec7n.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"K\\u1ebft n\\u1ed1i v\\u1edbi ch\\u00fang t\\u00f4i\",\"description\":\"\\u0110i\\u1ec1u l\\u00e0m ch\\u00fang t\\u00f4i kh\\u00e1c bi\\u1ec7t so v\\u1edbi c\\u00e1c c\\u00f4ng ty kh\\u00e1c l\\u00e0 chuy\\u00ean m\\u00f4n trong vi\\u1ec7c t\\u1ea1o ra c\\u00e1c gi\\u1ea3i ph\\u00e1p t\\u00f9y ch\\u1ec9nh.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"Thanh to\\u00e1n cho ch\\u00fang t\\u00f4i\",\"description\":\"Ch\\u00fang t\\u00f4i khuy\\u1ebfn kh\\u00edch m\\u1ed7i th\\u00e0nh vi\\u00ean trong \\u0111\\u1ed9i ng\\u0169 tr\\u1edf th\\u00e0nh phi\\u00ean b\\u1ea3n t\\u1ed1t nh\\u1ea5t c\\u1ee7a ch\\u00ednh m\\u00ecnh, t\\u1ea1o ra m\\u1ed9t m\\u00f4i tr\\u01b0\\u1eddng linh ho\\u1ea1t v\\u00e0 h\\u1ee3p t\\u00e1c.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"\\u0110\\u1ea1t \\u0111\\u01b0\\u1ee3c \\u01b0\\u1edbc m\\u01a1 c\\u1ee7a b\\u1ea1n\",\"description\":\"C\\u1ed1t l\\u00f5i c\\u1ee7a m\\u1ed7i doanh nghi\\u1ec7p l\\u00e0 nh\\u1eefng gi\\u1ea3i ph\\u00e1p \\u0111\\u1ed9c \\u0111\\u00e1o, truy\\u1ec1n c\\u1ea3m h\\u1ee9ng cho s\\u1ef1 \\u0111\\u1ed5i m\\u1edbi v\\u00e0 ph\\u00e1t tri\\u1ec3n.\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Li\\u00ean h\\u1ec7 v\\u1edbi ch\\u00fang t\\u00f4i b\\u1ea5t c\\u1ee9 l\\u00fac n\\u00e0o n\\u1ebfu b\\u1ea1n c\\u1ea7n s\\u1ef1 gi\\u00fap \\u0111\\u1ee1...\",\"title_color\":\"#85B23B\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(10487,3185,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(10488,3185,'_elementor_page_assets','a:2:{s:6:\"styles\";a:4:{i:0;s:18:\"widget-text-editor\";i:1;s:21:\"e-animation-slideInUp\";i:2;s:12:\"widget-image\";i:3;s:18:\"widget-google_maps\";}s:7:\"scripts\";a:9:{i:0;s:16:\"jquery-numerator\";i:1;s:20:\"ct-counter-widget-js\";i:2;s:11:\"progressbar\";i:3;s:16:\"waypoints-lib-js\";i:4;s:24:\"ct-progressbar-widget-js\";i:5;s:12:\"imagesloaded\";i:6;s:7:\"isotope\";i:7;s:25:\"ct-post-masonry-widget-js\";i:8;s:22:\"ct-post-grid-widget-js\";}}'),(10489,3185,'_elementor_css','a:6:{s:4:\"time\";i:1742179514;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:8:\"material\";i:1;s:8:\"flaticon\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(10490,3185,'_elementor_element_cache','{\"timeout\":1742265914,\"value\":{\"content\":\"        <section class=\"elementor-section elementor-top-section elementor-element elementor-element-2d2b67a elementor-section-stretched elementor-section-full_width slider-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"2d2b67a\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-no \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-d1bb387\" data-id=\"d1bb387\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImNjODZmNGQiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJyZXZzbGlkZXJ0aXRsZSI6IkhvbWUgMSIsInNob3J0Y29kZSI6IltyZXZfc2xpZGVyIGFsaWFzPVwiaG9tZS0xXCJdW1wvcmV2X3NsaWRlcl0ifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoic2xpZGVyX3Jldm9sdXRpb24ifQ==\"]        <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-2cea906 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"2cea906\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-8e117d0\" data-id=\"8e117d0\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjI0YjYyY2MiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkNoXHUwMGZhbmcgdFx1MDBmNGkgY3VuZyBjXHUxZWE1cCBuaGlcdTFlYzF1IGxvXHUxZWExaSBzXHUxZWEzbiBwaFx1MWVhOW0gY2hvIG5nXHUwMGUwbmggY1x1MDBmNG5nIG5naGlcdTFlYzdwIGNcdTAxYTEga2hcdTAwZWQgdHJcdTAwZWFuIHRvXHUwMGUwbiBWaVx1MWVjN3QgTmFtIHZcdTAwZTAgcXVcdTFlZDFjIHRcdTFlYmYsIFx1MDExMVx1MWViN2MgYmlcdTFlYzd0IHRcdTFlYTFpIGNcdTAwZTFjIHRoXHUxZWNiIHRyXHUwMWIwXHUxZWRkbmcgdHJcdTFlY2RuZyBcdTAxMTFpXHUxZWMzbSBuaFx1MDFiMCBOaFx1MWVhZHQgQlx1MWVhM24sIEhcdTAwZTBuIFF1XHUxZWQxYywgSG9hIEtcdTFlZjMgdlx1MDBlMCBcdTAwZGFjLiBDaFx1MDBmYW5nIHRcdTAwZjRpIGNcdTAxNjluZyBjXHUwMGYzIGtpbmggbmdoaVx1MWVjN20geHVcdTFlYTV0IGtoXHUxZWE5dSBcdTAxMTFcdTFlYmZuIGNcdTAwZTFjIHRoXHUxZWNiIHRyXHUwMWIwXHUxZWRkbmcgblx1MDBlMHkuIiwidGl0bGVfY29sb3IiOiIjODVCMjNCIiwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzYsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHQiOnsidW5pdCI6InB4Iiwic2l6ZSI6NDgsInNpemVzIjpbXX0sInN0eWxlIjoic3QtbGluZS1sZWZ0IiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMTYiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjoyNiwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzQsInNpemVzIjpbXX0sImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluVXAifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-909b449 wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"909b449\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Thu1ebf mu1ea1nh lu1edbn nhu1ea5t cu1ee7a chu00fang tu00f4i nu1eb1m u1edf u0111u1ed9i ngu0169 nhu00e2n lu1ef1c tru1ebb trung, u0111am mu00ea hu1ecdc hu1ecfi, su00e1ng tu1ea1o vu00e0 tu1ef1 tin, cu00f3 khu1ea3 nu0103ng su1ea3n xuu1ea5t u0111a du1ea1ng cu00e1c su1ea3n phu1ea9m cu01a1 khu00ed vu1edbi chu1ea5t lu01b0u1ee3ng luu00f4n u1ed5n u0111u1ecbnh.</p>tttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImM0YTIwMjgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJpbWFnZSI6eyJ1cmwiOiIiLCJpZCI6IiJ9LCJ2aWRlb19saW5rIjoiaHR0cHM6XC9cL3d3dy55b3V0dWJlLmNvbVwvd2F0Y2g/dj12VUNWcUxtWFNQTSIsImJ0bl92aWRlb19zdHlsZSI6InN0eWxlMyIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMzEiLCJyaWdodCI6IjM4IiwiYm90dG9tIjoiMCIsImxlZnQiOiI3OCIsImlzTGlua2VkIjpmYWxzZX0sIl9jc3NfY2xhc3NlcyI6ImVsLWlubGluZSB3b3cgZmFkZUluUmlnaHQiLCJfbWFyZ2luX3RhYmxldCI6eyJ1bml0IjoicHgiLCJ0b3AiOiIzMSIsInJpZ2h0IjoiMjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjY4IiwiaXNMaW5rZWQiOmZhbHNlfSwiX2FuaW1hdGlvbiI6InNsaWRlSW5VcCIsIl9tYXJnaW5fbW9iaWxlIjp7InVuaXQiOiJweCIsInRvcCI6IjMxIiwicmlnaHQiOiIyMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF92aWRlb19wbGF5ZXIifQ==\"]tt<div class=\"elementor-element elementor-element-1fd7931 el-inline wow fadeInRight elementor-invisible elementor-widget elementor-widget-image\" data-id=\"1fd7931\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;slideInUp&quot;}\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" class=\"attachment-full size-full wp-image-2542\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-4fff345\" data-id=\"4fff345\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjU5MGYxYmUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjo1MCwic3VmZml4IjoiKyIsInRob3VzYW5kX3NlcGFyYXRvciI6IiIsInRob3VzYW5kX3NlcGFyYXRvcl9jaGFyIjoiICIsInRpdGxlIjoiS2hcdTAwZTFjaCBoXHUwMGUwbmciLCJzaG93X2ljb24iOiJ0cnVlIiwiY291bnRlcl9pY29uIjp7InZhbHVlIjoibWF0ZXJpYWwgem1kaSB6bWRpLWFzc2lnbm1lbnQtY2hlY2siLCJsaWJyYXJ5IjoibWF0ZXJpYWwifSwibnVtYmVyX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjQxIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJfY3NzX2NsYXNzZXMiOiJ0ZXh0LWNlbnRlci1zbSIsImljb25fdHlwZSI6ImltYWdlIiwiaWNvbl9pbWFnZSI6eyJ1cmwiOiJodHRwOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAxOVwvMTJcL2NvdW50ZXItaWNvbi0wMS5wbmciLCJpZCI6MTUxNX0sIl9hbmltYXRpb24iOiJub25lIiwiY3RfYW5pbWF0ZSI6IndvdyBmYWRlSW5VcCJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9jb3VudGVyIn0=\"][elementor-element data=\"eyJpZCI6IjdhNWYyMzkiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjoyMDAsInN1ZmZpeCI6IisiLCJ0aG91c2FuZF9zZXBhcmF0b3IiOiIiLCJ0aG91c2FuZF9zZXBhcmF0b3JfY2hhciI6IiAiLCJ0aXRsZSI6Ik5oXHUwMGUybiBzXHUxZWYxIiwic2hvd19pY29uIjoidHJ1ZSIsImNvdW50ZXJfaWNvbiI6eyJ2YWx1ZSI6Im1hdGVyaWFsIHptZGkgem1kaS1hc3NpZ25tZW50LWNoZWNrIiwibGlicmFyeSI6Im1hdGVyaWFsIn0sIm51bWJlcl90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiI0MSIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwiX2Nzc19jbGFzc2VzIjoidGV4dC1jZW50ZXItc20iLCJpY29uX3R5cGUiOiJpbWFnZSIsImljb25faW1hZ2UiOnsidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMTlcLzEyXC9jb3VudGVyLWljb24tMDIucG5nIiwiaWQiOjE1MTZ9LCJfYW5pbWF0aW9uIjoibm9uZSIsImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluVXAifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY291bnRlciJ9\"][elementor-element data=\"eyJpZCI6IjA0NTMxYzgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjoyMDAwLCJzdWZmaXgiOiIrIiwidGhvdXNhbmRfc2VwYXJhdG9yIjoiIiwidGhvdXNhbmRfc2VwYXJhdG9yX2NoYXIiOiIgIiwidGl0bGUiOiJTXHUxZWQxIFx1MDExMVx1MDFhMW4gaFx1MDBlMG5nIG1cdTFlZDdpIG5cdTAxMDNtIiwic2hvd19pY29uIjoidHJ1ZSIsImNvdW50ZXJfaWNvbiI6eyJ2YWx1ZSI6Im1hdGVyaWFsIHptZGkgem1kaS1hc3NpZ25tZW50LWNoZWNrIiwibGlicmFyeSI6Im1hdGVyaWFsIn0sIm51bWJlcl90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiI0MSIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwiX2Nzc19jbGFzc2VzIjoidGV4dC1jZW50ZXItc20iLCJpY29uX3R5cGUiOiJpbWFnZSIsImljb25faW1hZ2UiOnsidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMTlcLzEyXC9jb3VudGVyLWljb24tMDMucG5nIiwiaWQiOjE1MTd9LCJfYW5pbWF0aW9uIjoibm9uZSIsImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluVXAifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY291bnRlciJ9\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-348ba48\" data-id=\"348ba48\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-ed7e1d0 wow fadeInUp elementor-widget elementor-widget-image\" data-id=\"ed7e1d0\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" class=\"attachment-full size-full wp-image-2571\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntttt<div class=\"elementor-element elementor-element-3b54db6 wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"3b54db6\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Chu00fang tu00f4i u0111u00e3 bu1eaft u0111u1ea7u mu1edf mu1ed9t cu1eeda hu00e0ng tru00ean Alibaba u0111u1ec3 ku1ebft nu1ed1i vu1edbi cu00e1c u0111u01a1n hu00e0ng tu1eeb khu1eafp nu01a1i tru00ean thu1ebf giu1edbi.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-8b70e78 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"8b70e78\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-c2b95bd\" data-id=\"c2b95bd\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-b5a8ba3 elementor-widget elementor-widget-image\" data-id=\"b5a8ba3\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" class=\"attachment-full size-full wp-image-2268\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntttt<div class=\"elementor-element elementor-element-0e89391 elementor-widget elementor-widget-image\" data-id=\"0e89391\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" class=\"attachment-full size-full wp-image-2559\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-de7136f\" data-id=\"de7136f\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6Ijg0MDdhYmUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkNoXHUwMGZhbmcgdFx1MDBmNGkgblx1MWVkNyBsXHUxZWYxYyB0clx1MWVkZiB0aFx1MDBlMG5oIG1cdTFlZDl0IHRyb25nIG5oXHUxZWVmbmcgY1x1MDBmNG5nIHR5IGNoXHUxZWJmIGJpXHUxZWJmbiBjXHUwMWExIGtoXHUwMGVkIGhcdTAwZTBuZyBcdTAxMTFcdTFlYTd1IGNcdTFlZTdhIFZpXHUxZWM3dCBOYW0sIGN1bmcgY1x1MWVhNXAgcmEgdGhcdTFlY2IgdHJcdTAxYjBcdTFlZGRuZyBxdVx1MWVkMWMgdFx1MWViZiB2XHUwMGUwbyBuXHUwMTAzbSAyMDMwLiBUcm9uZyB0XHUwMWIwXHUwMWExbmcgbGFpLCBjaFx1MDBmYW5nIHRcdTAwZjRpIGhcdTAxYjBcdTFlZGJuZyBcdTAxMTFcdTFlYmZuIHZpXHUxZWM3YyBzXHUxZWEzbiB4dVx1MWVhNXQgY1x1MDBlMWMgc1x1MWVhM24gcGhcdTFlYTltIG1cdTAwZTF5IG1cdTAwZjNjIGhvXHUwMGUwbiBjaFx1MWVjOW5oIFx1MDExMVx1MWVjMyBnaWFvIHRyXHUxZWYxYyB0aVx1MWViZnAgXHUwMTExXHUxZWJmbiBuZ1x1MDFiMFx1MWVkZGkgc1x1MWVlZCBkXHUxZWU1bmcgY3VcdTFlZDFpLiIsInRpdGxlX2NvbG9yIjoiIzg1QjIzQiIsInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplIjp7InVuaXQiOiJweCIsInNpemUiOjM2LCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0Ijp7InVuaXQiOiJweCIsInNpemUiOjQ4LCJzaXplcyI6W119LCJzdHlsZSI6InN0LWxpbmUtbGVmdCIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiLTkiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV9zcGFjZV9ib3R0b20iOnsidW5pdCI6InB4Iiwic2l6ZSI6MTcsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjozMCwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzgsInNpemVzIjpbXX0sImN0X2FuaW1hdGUiOiJ3b3cgZmxpcEluWCIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX21vYmlsZSI6eyJ1bml0IjoicHgiLCJzaXplIjoyOCwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF9tb2JpbGUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzQsInNpemVzIjpbXX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]tt<div class=\"elementor-element elementor-element-0c8497c wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"0c8497c\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Mu1ee5c tiu00eau u0111u1ea1t u0111u01b0u1ee3c vu00e0o nu0103m 2026:</p>tttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6IjQ3NTRlZDYiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJwcm9ncmVzc2Jhcl9saXN0IjpbeyJ0aXRsZSI6Ilx1MDExMFx1MDBmNG5nIFx1MDBjMSAoTmhcdTFlYWR0IEJcdTFlYTNuLCBIXHUwMGUwbiBRdVx1MWVkMWMsIHYudi4pOiBYdVx1MWVhNXQga2hcdTFlYTl1IGNcdTAwZTFjIGxpbmgga2lcdTFlYzduIG1cdTAwZTF5IG1cdTAwZjNjIHRoYXkgdGhcdTFlYmYsIHBoXHUxZWU1IGtpXHUxZWM3biB4ZSBtXHUwMGUxeSB2XHUwMGUwIFx1MDBmNCB0XHUwMGY0LCBwaFx1MWVlNSBraVx1MWVjN24gbmdcdTAwZTBuaCBuXHUwMWIwXHUxZWRiYywga2h1XHUwMGY0biBtXHUxZWFidSB2XHUwMGUwIGNcdTAwZTFjIGJcdTFlZDkgcGhcdTFlYWRuIGNcdTAxYTEga2hcdTAwZWQga2hcdTAwZTFjLiIsInByb2dyZXNzX3R5cGUiOiIiLCJwZXJjZW50Ijp7InVuaXQiOiIlIiwic2l6ZSI6MzAsInNpemVzIjpbXX0sImRpc3BsYXlfcGVyY2VudGFnZSI6ImhpZGUiLCJpbm5lcl90ZXh0IjoiV2ViIERlc2lnbmVyIiwiX2lkIjoiOGI0YmNkNiJ9LHsidGl0bGUiOiJDaFx1MDBlMnUgXHUwMGMydSAoXHUwMTEwXHUxZWU5YywgQnVsZ2FyaWEsIEhcdTAwZTAgTGFuLCB2LnYuKTogU1x1MWVhM24geHVcdTFlYTV0IGtodVx1MDBmNG4gamlnIGNobyB2XHUwMGYybmcgYmkgXHUwMGY0IHRcdTAwZjQgdlx1MDBlMCBjXHUwMGUxYyBiXHUxZWQ5IHBoXHUxZWFkbiBoXHUxZWQ5cCBcdTAxMTFpXHUxZWM3biBjaG8gbVx1MDBlMXkgbVx1MDBmM2MgdFx1MWVmMSBcdTAxMTFcdTFlZDluZyBoXHUwMGYzYS4iLCJwcm9ncmVzc190eXBlIjoiIiwicGVyY2VudCI6eyJ1bml0IjoiJSIsInNpemUiOjEwLCJzaXplcyI6W119LCJkaXNwbGF5X3BlcmNlbnRhZ2UiOiJoaWRlIiwiaW5uZXJfdGV4dCI6IldlYiBEZXNpZ25lciIsIl9pZCI6IjZlMGY4NzcifSx7InRpdGxlIjoiSG9hIEtcdTFlZjM6IENcdTAwZTFjIHNcdTFlYTNuIHBoXHUxZWE5bSBsaVx1MDBlYW4gcXVhbiBcdTAxMTFcdTFlYmZuIHRoaVx1MWViZnQgYlx1MWVjYiB5IHRcdTFlYmYsIHF1YW5nIGhcdTFlY2RjIHZcdTAwZTAgdGhpXHUxZWJmdCBiXHUxZWNiIFx1MDBlMm0gdGhhbmguIiwicHJvZ3Jlc3NfdHlwZSI6IiIsInBlcmNlbnQiOnsidW5pdCI6IiUiLCJzaXplIjozMCwic2l6ZXMiOltdfSwiZGlzcGxheV9wZXJjZW50YWdlIjoic2hvdyIsIl9pZCI6IjIyMmViODEifSx7Il9pZCI6IjVlZWNjYjYiLCJ0aXRsZSI6Ilx1MDBkYWM6IFNcdTFlYTNuIHBoXHUxZWE5bSBraW0gbG9cdTFlYTFpIHRcdTFlYTVtLiIsInBlcmNlbnQiOnsidW5pdCI6IiUiLCJzaXplIjo4LCJzaXplcyI6W119fSx7Il9pZCI6IjEwZTU3NTAiLCJ0aXRsZSI6IlZpXHUxZWM3dCBOYW06IE1cdTAwZTF5IHRcdTFlZjEgXHUwMTExXHUxZWQ5bmcgaFx1MDBmM2EgbmhcdTFlY2Y7IGJ1IGxcdTAwZjRuZyB4ZSBtXHUwMGUxeSB2XHUwMGUwIFx1MDBmNCB0XHUwMGY0OyBzXHUxZWEzbiBwaFx1MWVhOW0gdHJvbmcgbmdcdTAwZTBuaCBkXHUxZWE3dSBraFx1MDBlZC4iLCJwZXJjZW50Ijp7InVuaXQiOiIlIiwic2l6ZSI6MjAsInNpemVzIjpbXX19LHsiX2lkIjoiZTE3YTE5NSIsInRpdGxlIjoiQ1x1MDBlMWMgdGhcdTFlY2IgdHJcdTAxYjBcdTFlZGRuZyB2XHUwMGUwIHNcdTFlYTNuIHBoXHUxZWE5bSBraFx1MDBlMWMuIiwicGVyY2VudCI6eyJ1bml0IjoiJSIsInNpemUiOjIsInNpemVzIjpbXX19XSwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiI3OCIsImlzTGlua2VkIjpmYWxzZX0sIl9tYXJnaW5fbW9iaWxlIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6dHJ1ZX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9wcm9ncmVzc2JhciJ9\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-b6145ce elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"b6145ce\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-e65d58b\" data-id=\"e65d58b\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjljZDU1ZGQiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkNoXHUwMGZhbmcgdFx1MDBmNGkgY3VuZyBjXHUxZWE1cCBkXHUxZWNiY2ggdlx1MWVlNSB0cm9uZyBuaGlcdTFlYzF1IGxcdTAxMjluaCB2XHUxZWYxYy4iLCJ0aXRsZV9jb2xvciI6IiM4NUIyM0IiLCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZSI6eyJ1bml0IjoicHgiLCJzaXplIjozNiwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodCI6eyJ1bml0IjoicHgiLCJzaXplIjo0OCwic2l6ZXMiOltdfSwic3R5bGUiOiJzdC1saW5lLWxlZnQiLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6dHJ1ZX0sInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjozMCwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzgsInNpemVzIjpbXX0sImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluTGVmdCIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX21vYmlsZSI6eyJ1bml0IjoicHgiLCJzaXplIjoyOCwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF9tb2JpbGUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzQsInNpemVzIjpbXX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-2067062\" data-id=\"2067062\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-956a238 wow fadeInRight elementor-widget elementor-widget-text-editor\" data-id=\"956a238\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Chu00fang tu00f4i luu00f4n u0111u00e1p u1ee9ng yu00eau cu1ea7u thiu1ebft ku1ebf cu1ee7a khu00e1ch hu00e0ng. Ngou1ea1i hu00ecnh vu00e0 ku00edch thu01b0u1edbc lu00e0 nhu1eefng yu1ebfu tu1ed1 chu00fang tu00f4i coi tru1ecdng nhu1ea5t.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-74328b6b elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"74328b6b\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4b9c9796\" data-id=\"4b9c9796\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjFjYTNiNmM1IiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsibGF5b3V0IjoiNCIsImxpbWl0Ijo0LCJmaWx0ZXJfZGVmYXVsdF90aXRsZSI6IkFsbCIsImNvbF9zbSI6IjEiLCJjb2xfbWQiOiIyIiwiY29sX2xnIjoiMiIsImNvbF94bCI6IjIiLCJidXR0b25fdGV4dCI6IlJlYWQgbW9yZSIsInNvdXJjZSI6WyJ2aXxsYW5ndWFnZSJdLCJjdF9hbmltYXRlIjoid293IGZhZGVJblVwIiwib3JkZXIiOiJhc2MifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3Rfc2VydmljZV9ncmlkIn0=\"][elementor-element data=\"eyJpZCI6IjI5NzFiOGIzIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGV4dCI6IkRcdTFlY2JjaCB2XHUxZWU1IGtoXHUwMGUxYyIsImxpbmsiOnsidXJsIjoiXC9zZXJ2aWNlcyIsImlzX2V4dGVybmFsIjoiIiwibm9mb2xsb3ciOiIifSwiYWxpZ24iOiJjZW50ZXIiLCJidG5faWNvbiI6eyJ2YWx1ZSI6Im1hdGVyaWFsIHptZGkgem1kaS1zZXR0aW5ncyIsImxpYnJhcnkiOiJtYXRlcmlhbCJ9LCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6Ii0xMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sInN0eWxlIjoiYnRuLXByZXNldDMiLCJfYW5pbWF0aW9uIjoibm9uZSJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9idXR0b24ifQ==\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-f43d465 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"f43d465\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-5310bd3\" data-id=\"5310bd3\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImJjZmM3MzUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjdGY3X2lkIjoiOTMyIiwibGF5b3V0IjoiMiIsImN0ZjdfdGl0bGUiOiJDXHUwMGYzIGNcdTAwZTJ1IGhcdTFlY2ZpIG5cdTAwZTBvIGtoXHUwMGY0bmc/IiwiY3RmN19kZXNjcmlwdGlvbiI6IkNhbGw6IDgwMCAyNTAgMzY5IiwiY3RmN19waG9uZSI6IjxzcGFuPkNhbGw6PFwvc3Bhbj4gMDk2ODg2MDM4NiIsImVsX3RpdGxlIjoiTGlcdTAwZWFuIGhcdTFlYzcgXHUwMTExXHUxZWMzIG5oXHUxZWFkbiBiXHUwMGUxbyBnaVx1MDBlMToiLCJjdF9hbmltYXRlIjoid293IGZsaXBJblgifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY3RmNyJ9\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-a9b49c5 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"a9b49c5\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n                            <div class=\"elementor-background-overlay\"></div>n                n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-1dcb85a\" data-id=\"1dcb85a\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n                <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-6c560a6 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"6c560a6\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-e82cd67\" data-id=\"e82cd67\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImVmNDE1MTEiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkNoXHUwMGZhbmcgdFx1MDBmNGkgY1x1MDBmMyBxdXkgdHJcdTAwZWNuaCBsXHUwMGUwbSB2aVx1MWVjN2MgXHUwMTExXHUwMWExbiBnaVx1MWVhM24uIiwidGl0bGVfY29sb3IiOiIjZmZmZmZmIiwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzYsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHQiOnsidW5pdCI6InB4Iiwic2l6ZSI6NDgsInNpemVzIjpbXX0sInN0eWxlIjoic3QtbGluZS1sZWZ0IiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOnRydWV9LCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzAsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjM4LCJzaXplcyI6W119LCJjdF9hbmltYXRlIjoid293IGZhZGVJbkxlZnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-3a08737\" data-id=\"3a08737\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-7aa11c2 wow fadeInRight elementor-widget elementor-widget-text-editor\" data-id=\"7aa11c2\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Chu00fang tu00f4i luu00f4n mang u0111u1ebfn cu1ea3m giu00e1c an tu00e2m vu1ec1 chu1ea5t lu01b0u1ee3ng vu00e0 tiu1ebfn u0111u1ed9.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n        [elementor-element data=\"eyJpZCI6IjlkNWVhMzIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X2xpc3QiOlt7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi1yZXNlYXJjaCIsImxpYnJhcnkiOiJmbGF0aWNvbiJ9LCJfaWQiOiIwNTVmZWYyIiwidGl0bGUiOiJUXHUwMGVjbSBjaFx1MDBmYW5nIHRcdTAwZjRpIiwiZGVzY3JpcHRpb24iOiJDaFx1MDBmYW5nIHRcdTAwZjRpIGhpXHUxZWMzdSB0XHUxZWE3bSBxdWFuIHRyXHUxZWNkbmcgY1x1MWVlN2EgdmlcdTFlYzdjIHhcdTFlZWQgbFx1MDBmZCBtXHUxZWQ3aSBkXHUxZWYxIFx1MDBlMW4gdGhlbyBtXHUxZWQ5dCBjXHUwMGUxY2ggdGlcdTFlYmZwIGNcdTFlYWRuIHRvXHUwMGUwbiBkaVx1MWVjN24uIiwiYnRuX2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9fSx7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi1uZXR3b3JrIiwibGlicmFyeSI6ImZsYXRpY29uIn0sIl9pZCI6IjM5ZTE0YjgiLCJ0aXRsZSI6IktcdTFlYmZ0IG5cdTFlZDFpIHZcdTFlZGJpIGNoXHUwMGZhbmcgdFx1MDBmNGkiLCJkZXNjcmlwdGlvbiI6Ilx1MDExMGlcdTFlYzF1IGxcdTAwZTBtIGNoXHUwMGZhbmcgdFx1MDBmNGkga2hcdTAwZTFjIGJpXHUxZWM3dCBzbyB2XHUxZWRiaSBjXHUwMGUxYyBjXHUwMGY0bmcgdHkga2hcdTAwZTFjIGxcdTAwZTAgY2h1eVx1MDBlYW4gbVx1MDBmNG4gdHJvbmcgdmlcdTFlYzdjIHRcdTFlYTFvIHJhIGNcdTAwZTFjIGdpXHUxZWEzaSBwaFx1MDBlMXAgdFx1MDBmOXkgY2hcdTFlYzluaC4iLCJidG5fbGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn19LHsiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZsYXRpY29uIGZsYXRpY29uLXdhbGxldCIsImxpYnJhcnkiOiJmbGF0aWNvbiJ9LCJfaWQiOiJmNWUxMGU4IiwidGl0bGUiOiJUaGFuaCB0b1x1MDBlMW4gY2hvIGNoXHUwMGZhbmcgdFx1MDBmNGkiLCJkZXNjcmlwdGlvbiI6IkNoXHUwMGZhbmcgdFx1MDBmNGkga2h1eVx1MWViZm4ga2hcdTAwZWRjaCBtXHUxZWQ3aSB0aFx1MDBlMG5oIHZpXHUwMGVhbiB0cm9uZyBcdTAxMTFcdTFlZDlpIG5nXHUwMTY5IHRyXHUxZWRmIHRoXHUwMGUwbmggcGhpXHUwMGVhbiBiXHUxZWEzbiB0XHUxZWQxdCBuaFx1MWVhNXQgY1x1MWVlN2EgY2hcdTAwZWRuaCBtXHUwMGVjbmgsIHRcdTFlYTFvIHJhIG1cdTFlZDl0IG1cdTAwZjRpIHRyXHUwMWIwXHUxZWRkbmcgbGluaCBob1x1MWVhMXQgdlx1MDBlMCBoXHUxZWUzcCB0XHUwMGUxYy4iLCJidG5fbGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn19LHsiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZsYXRpY29uIGZsYXRpY29uLXRhcmdldCIsImxpYnJhcnkiOiJmbGF0aWNvbiJ9LCJfaWQiOiI4ODM5OTY5IiwidGl0bGUiOiJcdTAxMTBcdTFlYTF0IFx1MDExMVx1MDFiMFx1MWVlM2MgXHUwMWIwXHUxZWRiYyBtXHUwMWExIGNcdTFlZTdhIGJcdTFlYTFuIiwiZGVzY3JpcHRpb24iOiJDXHUxZWQxdCBsXHUwMGY1aSBjXHUxZWU3YSBtXHUxZWQ3aSBkb2FuaCBuZ2hpXHUxZWM3cCBsXHUwMGUwIG5oXHUxZWVmbmcgZ2lcdTFlYTNpIHBoXHUwMGUxcCBcdTAxMTFcdTFlZDljIFx1MDExMVx1MDBlMW8sIHRydXlcdTFlYzFuIGNcdTFlYTNtIGhcdTFlZTluZyBjaG8gc1x1MWVmMSBcdTAxMTFcdTFlZDVpIG1cdTFlZGJpIHZcdTAwZTAgcGhcdTAwZTF0IHRyaVx1MWVjM24uIiwiYnRuX2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9fV0sInRpdGxlX2NvbG9yIjoiI2ZmZmZmZiIsImRlc2NyaXB0aW9uX2NvbG9yIjoiI0ZGRkZGRiIsImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X3Byb2Nlc3MifQ==\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-79ee8ab elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"79ee8ab\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4af1814\" data-id=\"4af1814\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n                <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-505fb45 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"505fb45\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-7223f1c\" data-id=\"7223f1c\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-e7c238e elementor-widget elementor-widget-google_maps\" data-id=\"e7c238e\" data-element_type=\"widget\" data-widget_type=\"google_maps.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-custom-embed\">nttt<iframe loading=\"lazy\"ntttttsrc=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"nttttttitle=\"10u00b057&#039;11.2&quot;N 106u00b045&#039;13.0&quot;E\"ntttttaria-label=\"10u00b057&#039;11.2&quot;N 106u00b045&#039;13.0&quot;E\"nttt></iframe>ntt</div>ntttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-0225539\" data-id=\"0225539\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjUxZDU0M2EiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkxpXHUwMGVhbiBoXHUxZWM3IHZcdTFlZGJpIGNoXHUwMGZhbmcgdFx1MDBmNGkgYlx1MWVhNXQgY1x1MWVlOSBsXHUwMGZhYyBuXHUwMGUwbyBuXHUxZWJmdSBiXHUxZWExbiBjXHUxZWE3biBzXHUxZWYxIGdpXHUwMGZhcCBcdTAxMTFcdTFlZTEuLi4iLCJ0aXRsZV9jb2xvciI6IiM4NUIyM0IiLCJfcGFkZGluZyI6eyJ1bml0IjoiJSIsInRvcCI6IjAiLCJyaWdodCI6IjUiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV9zcGFjZV9ib3R0b20iOnsidW5pdCI6InB4Iiwic2l6ZSI6MzMsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjozMCwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzgsInNpemVzIjpbXX0sImN0X2FuaW1hdGUiOiJ3b3cgZmxpcEluWCIsIl9wYWRkaW5nX3RhYmxldCI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"][elementor-element data=\"eyJpZCI6ImVkMGRjMWIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjdGY3X2lkIjoiOTc0Iiwic3R5bGVfbDEiOiJzdHlsZTIifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY3RmNyJ9\"]            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                    </div>n        </section>n        \",\"scripts\":[],\"styles\":[]}}'),(10491,3186,'_elementor_edit_mode','builder'),(10492,3186,'_elementor_template_type','wp-page'),(10493,3186,'_elementor_version','3.24.7'),(10494,3186,'_wp_page_template','default'),(10495,3186,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u3001\\u30d9\\u30c8\\u30ca\\u30e0\\u5168\\u571f\\u304a\\u3088\\u3073\\u4e16\\u754c\\u4e2d\\u306e\\u6a5f\\u68b0\\u7523\\u696d\\u5411\\u3051\\u306b\\u5e45\\u5e83\\u3044\\u88fd\\u54c1\\u3092\\u63d0\\u4f9b\\u3057\\u3066\\u304a\\u308a\\u3001\\u7279\\u306b\\u65e5\\u672c\\u3001\\u97d3\\u56fd\\u3001\\u30a2\\u30e1\\u30ea\\u30ab\\u3001\\u30aa\\u30fc\\u30b9\\u30c8\\u30e9\\u30ea\\u30a2\\u3068\\u3044\\u3063\\u305f\\u4e3b\\u8981\\u5e02\\u5834\\u3067\\u306e\\u53d6\\u5f15\\u306b\\u529b\\u3092\\u5165\\u308c\\u3066\\u3044\\u307e\\u3059\\u3002\\u307e\\u305f\\u3001\\u3053\\u308c\\u3089\\u306e\\u5e02\\u5834\\u3078\\u306e\\u8f38\\u51fa\\u7d4c\\u9a13\\u3082\\u8c4a\\u5bcc\\u3067\\u3059\\u3002\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306e\\u6700\\u5927\\u306e\\u5f37\\u307f\\u306f\\u3001\\u5b66\\u3076\\u3053\\u3068\\u3001\\u9769\\u65b0\\u3059\\u308b\\u3053\\u3068\\u306b\\u60c5\\u71b1\\u3092\\u6301\\u3061\\u3001\\u81ea\\u4fe1\\u3092\\u6301\\u3063\\u305f\\u82e5\\u3044\\u52b4\\u50cd\\u529b\\u306b\\u3042\\u308a\\u307e\\u3059\\u3002\\u3053\\u306e\\u30c1\\u30fc\\u30e0\\u306f\\u3001\\u5e38\\u306b\\u5b89\\u5b9a\\u3057\\u305f\\u9ad8\\u54c1\\u8cea\\u306e\\u6a5f\\u68b0\\u88fd\\u54c1\\u3092\\u591a\\u69d8\\u306b\\u88fd\\u9020\\u3059\\u308b\\u80fd\\u529b\\u3092\\u5099\\u3048\\u3066\\u3044\\u307e\\u3059\\u3002<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=vUCVqLmXSPM\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"\\u9867\\u5ba2\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"\\u4eba\\u4e8b\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"\\u5e74\\u9593\\u6ce8\\u6587\\u6570\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306f\\u3001\\u4e16\\u754c\\u4e2d\\u304b\\u3089\\u306e\\u6ce8\\u6587\\u3068\\u63a5\\u7d9a\\u3059\\u308b\\u305f\\u3081\\u306bAlibaba\\u306b\\u5e97\\u8217\\u3092\\u958b\\u8a2d\\u3057\\u59cb\\u3081\\u307e\\u3057\\u305f\\u3002<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0e89391\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u30012030\\u5e74\\u307e\\u3067\\u306b\\u30d9\\u30c8\\u30ca\\u30e0\\u306e\\u4e3b\\u8981\\u306a\\u6a5f\\u68b0\\u52a0\\u5de5\\u4f01\\u696d\\u306e\\u4e00\\u3064\\u3068\\u3057\\u3066\\u3001\\u56fd\\u969b\\u5e02\\u5834\\u306b\\u4f9b\\u7d66\\u3059\\u308b\\u3053\\u3068\\u3092\\u76ee\\u6307\\u3057\\u3066\\u3044\\u307e\\u3059\\u3002\\u5c06\\u6765\\u7684\\u306b\\u306f\\u3001\\u5b8c\\u6210\\u3057\\u305f\\u6a5f\\u68b0\\u88fd\\u54c1\\u3092\\u76f4\\u63a5\\u30a8\\u30f3\\u30c9\\u30e6\\u30fc\\u30b6\\u30fc\\u306b\\u63d0\\u4f9b\\u3059\\u308b\\u3053\\u3068\\u3092\\u76ee\\u6a19\\u3068\\u3057\\u3066\\u3044\\u307e\\u3059\\u3002\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2026\\u5e74\\u307e\\u3067\\u306b\\u9054\\u6210\\u3059\\u308b\\u76ee\\u6a19:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"\\u6771\\u30a2\\u30b8\\u30a2\\uff08\\u65e5\\u672c\\u3001\\u97d3\\u56fd\\u306a\\u3069\\uff09\\uff1a\\u4ea4\\u63db\\u7528\\u6a5f\\u68b0\\u90e8\\u54c1\\u3001\\u30aa\\u30fc\\u30c8\\u30d0\\u30a4\\u304a\\u3088\\u3073\\u81ea\\u52d5\\u8eca\\u306e\\u30a2\\u30af\\u30bb\\u30b5\\u30ea\\u30fc\\u3001\\u6c34\\u7523\\u696d\\u7528\\u306e\\u30d5\\u30a3\\u30c3\\u30c6\\u30a3\\u30f3\\u30b0\\u3001\\u91d1\\u578b\\u3001\\u305d\\u306e\\u4ed6\\u306e\\u6a5f\\u68b0\\u90e8\\u54c1\\u306e\\u8f38\\u51fa\\u3002\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"\\u30e8\\u30fc\\u30ed\\u30c3\\u30d1\\uff08\\u30c9\\u30a4\\u30c4\\u3001\\u30d6\\u30eb\\u30ac\\u30ea\\u30a2\\u3001\\u30aa\\u30e9\\u30f3\\u30c0\\u306a\\u3069\\uff09\\uff1a\\u81ea\\u52d5\\u8eca\\u7528\\u30d9\\u30a2\\u30ea\\u30f3\\u30b0\\u306e\\u6cbb\\u5177\\u304a\\u3088\\u3073\\u81ea\\u52d5\\u5316\\u6a5f\\u68b0\\u306e\\u96fb\\u6c17\\u30dc\\u30c3\\u30af\\u30b9\\u90e8\\u54c1\\u306e\\u751f\\u7523\\u3002\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"\\u30a2\\u30e1\\u30ea\\u30ab\\u5408\\u8846\\u56fd\\uff1a\\u533b\\u7642\\u6a5f\\u5668\\u3001\\u5149\\u5b66\\u6a5f\\u5668\\u3001\\u97f3\\u97ff\\u6a5f\\u5668\\u306b\\u95a2\\u9023\\u3059\\u308b\\u88fd\\u54c1\\u3002\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"\\u30aa\\u30fc\\u30b9\\u30c8\\u30e9\\u30ea\\u30a2\\uff1a\\u677f\\u91d1\\u88fd\\u54c1\\u3002\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"\\u30d9\\u30c8\\u30ca\\u30e0\\uff1a\\u5c0f\\u578b\\u81ea\\u52d5\\u5316\\u6a5f\\u68b0\\u3001\\u30aa\\u30fc\\u30c8\\u30d0\\u30a4\\u304a\\u3088\\u3073\\u81ea\\u52d5\\u8eca\\u306e\\u30dc\\u30eb\\u30c8\\u3001\\u77f3\\u6cb9\\u304a\\u3088\\u3073\\u30ac\\u30b9\\u7523\\u696d\\u306e\\u88fd\\u54c1\\u3002\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"\\u305d\\u306e\\u4ed6\\u306e\\u5e02\\u5834\\u3068\\u88fd\\u54c1\\u3002\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u8907\\u6570\\u306e\\u696d\\u754c\\u3067\\u30b5\\u30fc\\u30d3\\u30b9\\u3092\\u63d0\\u4f9b\\u3057\\u3066\\u3044\\u307e\\u3059\\u3002\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306f\\u5e38\\u306b\\u9867\\u5ba2\\u306e\\u30c7\\u30b6\\u30a4\\u30f3\\u8981\\u6c42\\u3092\\u6e80\\u305f\\u3057\\u307e\\u3059\\u3002\\u5916\\u89b3\\u3068\\u5bf8\\u6cd5\\u306f\\u3001\\u6700\\u3082\\u91cd\\u8981\\u8996\\u3057\\u3066\\u3044\\u308b\\u8981\\u7d20\\u3067\\u3059\\u3002<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"ja|language\"],\"ct_animate\":\"wow fadeInUp\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u305d\\u306e\\u4ed6\\u306e\\u30b5\\u30fc\\u30d3\\u30b9\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"\\u8cea\\u554f\\u304c\\u3042\\u308a\\u307e\\u3059\\u304b\\uff1f\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"\\u898b\\u7a4d\\u3082\\u308a\\u3092\\u53d6\\u5f97\\u3059\\u308b\\u305f\\u3081\\u306e\\u9023\\u7d61\\u5148\\uff1a\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u7c21\\u5358\\u306a\\u4f5c\\u696d\\u624b\\u9806\\u3092\\u6301\\u3063\\u3066\\u3044\\u307e\\u3059\\u3002\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306f\\u5e38\\u306b\\u54c1\\u8cea\\u3068\\u9032\\u6357\\u306b\\u304a\\u3044\\u3066\\u5b89\\u5fc3\\u611f\\u3092\\u63d0\\u4f9b\\u3057\\u307e\\u3059\\u3002<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"\\u79c1\\u305f\\u3061\\u3092\\u63a2\\u3059\",\"description\":\"\\u79c1\\u305f\\u3061\\u306f\\u3001\\u5404\\u30d7\\u30ed\\u30b8\\u30a7\\u30af\\u30c8\\u3092\\u7dcf\\u5408\\u7684\\u306b\\u53d6\\u308a\\u6271\\u3046\\u91cd\\u8981\\u6027\\u3092\\u7406\\u89e3\\u3057\\u3066\\u3044\\u307e\\u3059\\u3002\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"\\u79c1\\u305f\\u3061\\u3068\\u63a5\\u7d9a\\u3059\\u308b\",\"description\":\"\\u79c1\\u305f\\u3061\\u304c\\u4ed6\\u306e\\u30a8\\u30fc\\u30b8\\u30a7\\u30f3\\u30b7\\u30fc\\u3068\\u7570\\u306a\\u308b\\u70b9\\u306f\\u3001\\u30ab\\u30b9\\u30bf\\u30de\\u30a4\\u30ba\\u3055\\u308c\\u305f\\u30bd\\u30ea\\u30e5\\u30fc\\u30b7\\u30e7\\u30f3\\u3092\\u4f5c\\u6210\\u3059\\u308b\\u5c02\\u9580\\u77e5\\u8b58\\u306b\\u3042\\u308a\\u307e\\u3059\\u3002\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"\\u79c1\\u305f\\u3061\\u306b\\u652f\\u6255\\u3046\",\"description\":\"\\u79c1\\u305f\\u3061\\u306f\\u3001\\u5404\\u30c1\\u30fc\\u30e0\\u30e1\\u30f3\\u30d0\\u30fc\\u304c\\u81ea\\u5206\\u81ea\\u8eab\\u306e\\u6700\\u9ad8\\u306e\\u59ff\\u3092\\u76ee\\u6307\\u3059\\u3053\\u3068\\u3092\\u5968\\u52b1\\u3057\\u3001\\u67d4\\u8edf\\u3067\\u5354\\u529b\\u7684\\u306a\\u74b0\\u5883\\u3092\\u80b2\\u3093\\u3067\\u3044\\u307e\\u3059\\u3002\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"\\u3042\\u306a\\u305f\\u306e\\u5922\\u3092\\u5b9f\\u73fe\\u3059\\u308b\",\"description\":\"\\u3069\\u306e\\u30d3\\u30b8\\u30cd\\u30b9\\u306b\\u3082\\u3001\\u9769\\u65b0\\u3068\\u9032\\u6b69\\u3092\\u4fc3\\u3059\\u72ec\\u81ea\\u306e\\u30bd\\u30ea\\u30e5\\u30fc\\u30b7\\u30e7\\u30f3\\u304c\\u3042\\u308a\\u307e\\u3059\\u3002\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u3044\\u3064\\u3067\\u3082\\u3069\\u3093\\u306a\\u52a9\\u3051\\u304c\\u5fc5\\u8981\\u306a\\u5834\\u5408\\u3067\\u3082\\u3001\\u79c1\\u305f\\u3061\\u306b\\u3054\\u9023\\u7d61\\u304f\\u3060\\u3055\\u3044...\",\"title_color\":\"#85B23B\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(10496,3186,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(10497,3186,'_elementor_page_assets','a:2:{s:6:\"styles\";a:4:{i:0;s:18:\"widget-text-editor\";i:1;s:21:\"e-animation-slideInUp\";i:2;s:12:\"widget-image\";i:3;s:18:\"widget-google_maps\";}s:7:\"scripts\";a:9:{i:0;s:16:\"jquery-numerator\";i:1;s:20:\"ct-counter-widget-js\";i:2;s:11:\"progressbar\";i:3;s:16:\"waypoints-lib-js\";i:4;s:24:\"ct-progressbar-widget-js\";i:5;s:12:\"imagesloaded\";i:6;s:7:\"isotope\";i:7;s:25:\"ct-post-masonry-widget-js\";i:8;s:22:\"ct-post-grid-widget-js\";}}'),(10498,3186,'_elementor_css','a:6:{s:4:\"time\";i:1742179413;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:8:\"material\";i:1;s:8:\"flaticon\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(10499,3186,'_elementor_element_cache','{\"timeout\":1742265814,\"value\":{\"content\":\"        <section class=\"elementor-section elementor-top-section elementor-element elementor-element-2d2b67a elementor-section-stretched elementor-section-full_width slider-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"2d2b67a\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-no \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-d1bb387\" data-id=\"d1bb387\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImNjODZmNGQiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJyZXZzbGlkZXJ0aXRsZSI6IkhvbWUgMSIsInNob3J0Y29kZSI6IltyZXZfc2xpZGVyIGFsaWFzPVwiaG9tZS0xXCJdW1wvcmV2X3NsaWRlcl0ifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoic2xpZGVyX3Jldm9sdXRpb24ifQ==\"]        <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-2cea906 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"2cea906\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-8e117d0\" data-id=\"8e117d0\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjI0YjYyY2MiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Zlx1MzAwMVx1MzBkOVx1MzBjOFx1MzBjYVx1MzBlMFx1NTE2OFx1NTcxZlx1MzA0YVx1MzA4OFx1MzA3M1x1NGUxNlx1NzU0Y1x1NGUyZFx1MzA2ZVx1NmE1Zlx1NjhiMFx1NzUyM1x1Njk2ZFx1NTQxMVx1MzA1MVx1MzA2Ylx1NWU0NVx1NWU4M1x1MzA0NFx1ODhmZFx1NTRjMVx1MzA5Mlx1NjNkMFx1NGY5Ylx1MzA1N1x1MzA2Nlx1MzA0YVx1MzA4YVx1MzAwMVx1NzI3OVx1MzA2Ylx1NjVlNVx1NjcyY1x1MzAwMVx1OTdkM1x1NTZmZFx1MzAwMVx1MzBhMlx1MzBlMVx1MzBlYVx1MzBhYlx1MzAwMVx1MzBhYVx1MzBmY1x1MzBiOVx1MzBjOFx1MzBlOVx1MzBlYVx1MzBhMlx1MzA2OFx1MzA0NFx1MzA2M1x1MzA1Zlx1NGUzYlx1ODk4MVx1NWUwMlx1NTgzNFx1MzA2N1x1MzA2ZVx1NTNkNlx1NWYxNVx1MzA2Ylx1NTI5Ylx1MzA5Mlx1NTE2NVx1MzA4Y1x1MzA2Nlx1MzA0NFx1MzA3ZVx1MzA1OVx1MzAwMlx1MzA3ZVx1MzA1Zlx1MzAwMVx1MzA1M1x1MzA4Y1x1MzA4OVx1MzA2ZVx1NWUwMlx1NTgzNFx1MzA3OFx1MzA2ZVx1OGYzOFx1NTFmYVx1N2Q0Y1x1OWExM1x1MzA4Mlx1OGM0YVx1NWJjY1x1MzA2N1x1MzA1OVx1MzAwMiIsInRpdGxlX2NvbG9yIjoiIzg1QjIzQiIsInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplIjp7InVuaXQiOiJweCIsInNpemUiOjM2LCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0Ijp7InVuaXQiOiJweCIsInNpemUiOjQ4LCJzaXplcyI6W119LCJzdHlsZSI6InN0LWxpbmUtbGVmdCIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjE2IiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MjYsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjM0LCJzaXplcyI6W119LCJjdF9hbmltYXRlIjoid293IGZhZGVJblVwIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"]tt<div class=\"elementor-element elementor-element-909b449 wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"909b449\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>u79c1u305fu3061u306eu6700u5927u306eu5f37u307fu306fu3001u5b66u3076u3053u3068u3001u9769u65b0u3059u308bu3053u3068u306bu60c5u71b1u3092u6301u3061u3001u81eau4fe1u3092u6301u3063u305fu82e5u3044u52b4u50cdu529bu306bu3042u308au307eu3059u3002u3053u306eu30c1u30fcu30e0u306fu3001u5e38u306bu5b89u5b9au3057u305fu9ad8u54c1u8ceau306eu6a5fu68b0u88fdu54c1u3092u591au69d8u306bu88fdu9020u3059u308bu80fdu529bu3092u5099u3048u3066u3044u307eu3059u3002</p>tttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImM0YTIwMjgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJpbWFnZSI6eyJ1cmwiOiIiLCJpZCI6IiJ9LCJ2aWRlb19saW5rIjoiaHR0cHM6XC9cL3d3dy55b3V0dWJlLmNvbVwvd2F0Y2g/dj12VUNWcUxtWFNQTSIsImJ0bl92aWRlb19zdHlsZSI6InN0eWxlMyIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMzEiLCJyaWdodCI6IjM4IiwiYm90dG9tIjoiMCIsImxlZnQiOiI3OCIsImlzTGlua2VkIjpmYWxzZX0sIl9jc3NfY2xhc3NlcyI6ImVsLWlubGluZSB3b3cgZmFkZUluUmlnaHQiLCJfbWFyZ2luX3RhYmxldCI6eyJ1bml0IjoicHgiLCJ0b3AiOiIzMSIsInJpZ2h0IjoiMjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjY4IiwiaXNMaW5rZWQiOmZhbHNlfSwiX2FuaW1hdGlvbiI6InNsaWRlSW5VcCIsIl9tYXJnaW5fbW9iaWxlIjp7InVuaXQiOiJweCIsInRvcCI6IjMxIiwicmlnaHQiOiIyMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF92aWRlb19wbGF5ZXIifQ==\"]tt<div class=\"elementor-element elementor-element-1fd7931 el-inline wow fadeInRight elementor-invisible elementor-widget elementor-widget-image\" data-id=\"1fd7931\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;slideInUp&quot;}\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" class=\"attachment-full size-full wp-image-2542\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-4fff345\" data-id=\"4fff345\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjU5MGYxYmUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjo1MCwic3VmZml4IjoiKyIsInRob3VzYW5kX3NlcGFyYXRvciI6IiIsInRob3VzYW5kX3NlcGFyYXRvcl9jaGFyIjoiICIsInRpdGxlIjoiXHU5ODY3XHU1YmEyIiwic2hvd19pY29uIjoidHJ1ZSIsImNvdW50ZXJfaWNvbiI6eyJ2YWx1ZSI6Im1hdGVyaWFsIHptZGkgem1kaS1hc3NpZ25tZW50LWNoZWNrIiwibGlicmFyeSI6Im1hdGVyaWFsIn0sIm51bWJlcl90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiI0MSIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwiX2Nzc19jbGFzc2VzIjoidGV4dC1jZW50ZXItc20iLCJpY29uX3R5cGUiOiJpbWFnZSIsImljb25faW1hZ2UiOnsidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMTlcLzEyXC9jb3VudGVyLWljb24tMDEucG5nIiwiaWQiOjE1MTV9LCJfYW5pbWF0aW9uIjoibm9uZSIsImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluVXAifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY291bnRlciJ9\"][elementor-element data=\"eyJpZCI6IjdhNWYyMzkiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjoyMDAsInN1ZmZpeCI6IisiLCJ0aG91c2FuZF9zZXBhcmF0b3IiOiIiLCJ0aG91c2FuZF9zZXBhcmF0b3JfY2hhciI6IiAiLCJ0aXRsZSI6Ilx1NGViYVx1NGU4YiIsInNob3dfaWNvbiI6InRydWUiLCJjb3VudGVyX2ljb24iOnsidmFsdWUiOiJtYXRlcmlhbCB6bWRpIHptZGktYXNzaWdubWVudC1jaGVjayIsImxpYnJhcnkiOiJtYXRlcmlhbCJ9LCJudW1iZXJfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiNDEiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sIl9jc3NfY2xhc3NlcyI6InRleHQtY2VudGVyLXNtIiwiaWNvbl90eXBlIjoiaW1hZ2UiLCJpY29uX2ltYWdlIjp7InVybCI6Imh0dHA6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDE5XC8xMlwvY291bnRlci1pY29uLTAyLnBuZyIsImlkIjoxNTE2fSwiX2FuaW1hdGlvbiI6Im5vbmUiLCJjdF9hbmltYXRlIjoid293IGZhZGVJblVwIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2NvdW50ZXIifQ==\"][elementor-element data=\"eyJpZCI6IjA0NTMxYzgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjoyMDAwLCJzdWZmaXgiOiIrIiwidGhvdXNhbmRfc2VwYXJhdG9yIjoiIiwidGhvdXNhbmRfc2VwYXJhdG9yX2NoYXIiOiIgIiwidGl0bGUiOiJcdTVlNzRcdTk1OTNcdTZjZThcdTY1ODdcdTY1NzAiLCJzaG93X2ljb24iOiJ0cnVlIiwiY291bnRlcl9pY29uIjp7InZhbHVlIjoibWF0ZXJpYWwgem1kaSB6bWRpLWFzc2lnbm1lbnQtY2hlY2siLCJsaWJyYXJ5IjoibWF0ZXJpYWwifSwibnVtYmVyX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjQxIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJfY3NzX2NsYXNzZXMiOiJ0ZXh0LWNlbnRlci1zbSIsImljb25fdHlwZSI6ImltYWdlIiwiaWNvbl9pbWFnZSI6eyJ1cmwiOiJodHRwOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAxOVwvMTJcL2NvdW50ZXItaWNvbi0wMy5wbmciLCJpZCI6MTUxN30sIl9hbmltYXRpb24iOiJub25lIiwiY3RfYW5pbWF0ZSI6IndvdyBmYWRlSW5VcCJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9jb3VudGVyIn0=\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-348ba48\" data-id=\"348ba48\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-ed7e1d0 wow fadeInUp elementor-widget elementor-widget-image\" data-id=\"ed7e1d0\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" class=\"attachment-full size-full wp-image-2571\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntttt<div class=\"elementor-element elementor-element-3b54db6 wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"3b54db6\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>u79c1u305fu3061u306fu3001u4e16u754cu4e2du304bu3089u306eu6ce8u6587u3068u63a5u7d9au3059u308bu305fu3081u306bAlibabau306bu5e97u8217u3092u958bu8a2du3057u59cbu3081u307eu3057u305fu3002</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-8b70e78 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"8b70e78\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-c2b95bd\" data-id=\"c2b95bd\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-b5a8ba3 elementor-widget elementor-widget-image\" data-id=\"b5a8ba3\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" class=\"attachment-full size-full wp-image-2268\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntttt<div class=\"elementor-element elementor-element-0e89391 elementor-widget elementor-widget-image\" data-id=\"0e89391\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" class=\"attachment-full size-full wp-image-2559\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-de7136f\" data-id=\"de7136f\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6Ijg0MDdhYmUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Zlx1MzAwMTIwMzBcdTVlNzRcdTMwN2VcdTMwNjdcdTMwNmJcdTMwZDlcdTMwYzhcdTMwY2FcdTMwZTBcdTMwNmVcdTRlM2JcdTg5ODFcdTMwNmFcdTZhNWZcdTY4YjBcdTUyYTBcdTVkZTVcdTRmMDFcdTY5NmRcdTMwNmVcdTRlMDBcdTMwNjRcdTMwNjhcdTMwNTdcdTMwNjZcdTMwMDFcdTU2ZmRcdTk2OWJcdTVlMDJcdTU4MzRcdTMwNmJcdTRmOWJcdTdkNjZcdTMwNTlcdTMwOGJcdTMwNTNcdTMwNjhcdTMwOTJcdTc2ZWVcdTYzMDdcdTMwNTdcdTMwNjZcdTMwNDRcdTMwN2VcdTMwNTlcdTMwMDJcdTVjMDZcdTY3NjVcdTc2ODRcdTMwNmJcdTMwNmZcdTMwMDFcdTViOGNcdTYyMTBcdTMwNTdcdTMwNWZcdTZhNWZcdTY4YjBcdTg4ZmRcdTU0YzFcdTMwOTJcdTc2ZjRcdTYzYTVcdTMwYThcdTMwZjNcdTMwYzlcdTMwZTZcdTMwZmNcdTMwYjZcdTMwZmNcdTMwNmJcdTYzZDBcdTRmOWJcdTMwNTlcdTMwOGJcdTMwNTNcdTMwNjhcdTMwOTJcdTc2ZWVcdTZhMTlcdTMwNjhcdTMwNTdcdTMwNjZcdTMwNDRcdTMwN2VcdTMwNTlcdTMwMDIiLCJ0aXRsZV9jb2xvciI6IiM4NUIyM0IiLCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZSI6eyJ1bml0IjoicHgiLCJzaXplIjozNiwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodCI6eyJ1bml0IjoicHgiLCJzaXplIjo0OCwic2l6ZXMiOltdfSwic3R5bGUiOiJzdC1saW5lLWxlZnQiLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6Ii05IiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwidGl0bGVfc3BhY2VfYm90dG9tIjp7InVuaXQiOiJweCIsInNpemUiOjE3LCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzAsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjM4LCJzaXplcyI6W119LCJjdF9hbmltYXRlIjoid293IGZsaXBJblgiLCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV9tb2JpbGUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MjgsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfbW9iaWxlIjp7InVuaXQiOiJweCIsInNpemUiOjM0LCJzaXplcyI6W119fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-0c8497c wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"0c8497c\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>2026u5e74u307eu3067u306bu9054u6210u3059u308bu76eeu6a19:</p>tttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6IjQ3NTRlZDYiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJwcm9ncmVzc2Jhcl9saXN0IjpbeyJ0aXRsZSI6Ilx1Njc3MVx1MzBhMlx1MzBiOFx1MzBhMlx1ZmYwOFx1NjVlNVx1NjcyY1x1MzAwMVx1OTdkM1x1NTZmZFx1MzA2YVx1MzA2OVx1ZmYwOVx1ZmYxYVx1NGVhNFx1NjNkYlx1NzUyOFx1NmE1Zlx1NjhiMFx1OTBlOFx1NTRjMVx1MzAwMVx1MzBhYVx1MzBmY1x1MzBjOFx1MzBkMFx1MzBhNFx1MzA0YVx1MzA4OFx1MzA3M1x1ODFlYVx1NTJkNVx1OGVjYVx1MzA2ZVx1MzBhMlx1MzBhZlx1MzBiYlx1MzBiNVx1MzBlYVx1MzBmY1x1MzAwMVx1NmMzNFx1NzUyM1x1Njk2ZFx1NzUyOFx1MzA2ZVx1MzBkNVx1MzBhM1x1MzBjM1x1MzBjNlx1MzBhM1x1MzBmM1x1MzBiMFx1MzAwMVx1OTFkMVx1NTc4Ylx1MzAwMVx1MzA1ZFx1MzA2ZVx1NGVkNlx1MzA2ZVx1NmE1Zlx1NjhiMFx1OTBlOFx1NTRjMVx1MzA2ZVx1OGYzOFx1NTFmYVx1MzAwMiIsInByb2dyZXNzX3R5cGUiOiIiLCJwZXJjZW50Ijp7InVuaXQiOiIlIiwic2l6ZSI6MzAsInNpemVzIjpbXX0sImRpc3BsYXlfcGVyY2VudGFnZSI6ImhpZGUiLCJpbm5lcl90ZXh0IjoiV2ViIERlc2lnbmVyIiwiX2lkIjoiOGI0YmNkNiJ9LHsidGl0bGUiOiJcdTMwZThcdTMwZmNcdTMwZWRcdTMwYzNcdTMwZDFcdWZmMDhcdTMwYzlcdTMwYTRcdTMwYzRcdTMwMDFcdTMwZDZcdTMwZWJcdTMwYWNcdTMwZWFcdTMwYTJcdTMwMDFcdTMwYWFcdTMwZTlcdTMwZjNcdTMwYzBcdTMwNmFcdTMwNjlcdWZmMDlcdWZmMWFcdTgxZWFcdTUyZDVcdThlY2FcdTc1MjhcdTMwZDlcdTMwYTJcdTMwZWFcdTMwZjNcdTMwYjBcdTMwNmVcdTZjYmJcdTUxNzdcdTMwNGFcdTMwODhcdTMwNzNcdTgxZWFcdTUyZDVcdTUzMTZcdTZhNWZcdTY4YjBcdTMwNmVcdTk2ZmJcdTZjMTdcdTMwZGNcdTMwYzNcdTMwYWZcdTMwYjlcdTkwZThcdTU0YzFcdTMwNmVcdTc1MWZcdTc1MjNcdTMwMDIiLCJwcm9ncmVzc190eXBlIjoiIiwicGVyY2VudCI6eyJ1bml0IjoiJSIsInNpemUiOjEwLCJzaXplcyI6W119LCJkaXNwbGF5X3BlcmNlbnRhZ2UiOiJoaWRlIiwiaW5uZXJfdGV4dCI6IldlYiBEZXNpZ25lciIsIl9pZCI6IjZlMGY4NzcifSx7InRpdGxlIjoiXHUzMGEyXHUzMGUxXHUzMGVhXHUzMGFiXHU1NDA4XHU4ODQ2XHU1NmZkXHVmZjFhXHU1MzNiXHU3NjQyXHU2YTVmXHU1NjY4XHUzMDAxXHU1MTQ5XHU1YjY2XHU2YTVmXHU1NjY4XHUzMDAxXHU5N2YzXHU5N2ZmXHU2YTVmXHU1NjY4XHUzMDZiXHU5NWEyXHU5MDIzXHUzMDU5XHUzMDhiXHU4OGZkXHU1NGMxXHUzMDAyIiwicHJvZ3Jlc3NfdHlwZSI6IiIsInBlcmNlbnQiOnsidW5pdCI6IiUiLCJzaXplIjozMCwic2l6ZXMiOltdfSwiZGlzcGxheV9wZXJjZW50YWdlIjoic2hvdyIsIl9pZCI6IjIyMmViODEifSx7Il9pZCI6IjVlZWNjYjYiLCJ0aXRsZSI6Ilx1MzBhYVx1MzBmY1x1MzBiOVx1MzBjOFx1MzBlOVx1MzBlYVx1MzBhMlx1ZmYxYVx1Njc3Zlx1OTFkMVx1ODhmZFx1NTRjMVx1MzAwMiIsInBlcmNlbnQiOnsidW5pdCI6IiUiLCJzaXplIjo4LCJzaXplcyI6W119fSx7Il9pZCI6IjEwZTU3NTAiLCJ0aXRsZSI6Ilx1MzBkOVx1MzBjOFx1MzBjYVx1MzBlMFx1ZmYxYVx1NWMwZlx1NTc4Ylx1ODFlYVx1NTJkNVx1NTMxNlx1NmE1Zlx1NjhiMFx1MzAwMVx1MzBhYVx1MzBmY1x1MzBjOFx1MzBkMFx1MzBhNFx1MzA0YVx1MzA4OFx1MzA3M1x1ODFlYVx1NTJkNVx1OGVjYVx1MzA2ZVx1MzBkY1x1MzBlYlx1MzBjOFx1MzAwMVx1NzdmM1x1NmNiOVx1MzA0YVx1MzA4OFx1MzA3M1x1MzBhY1x1MzBiOVx1NzUyM1x1Njk2ZFx1MzA2ZVx1ODhmZFx1NTRjMVx1MzAwMiIsInBlcmNlbnQiOnsidW5pdCI6IiUiLCJzaXplIjoyMCwic2l6ZXMiOltdfX0seyJfaWQiOiJlMTdhMTk1IiwidGl0bGUiOiJcdTMwNWRcdTMwNmVcdTRlZDZcdTMwNmVcdTVlMDJcdTU4MzRcdTMwNjhcdTg4ZmRcdTU0YzFcdTMwMDIiLCJwZXJjZW50Ijp7InVuaXQiOiIlIiwic2l6ZSI6Miwic2l6ZXMiOltdfX1dLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6Ijc4IiwiaXNMaW5rZWQiOmZhbHNlfSwiX21hcmdpbl9tb2JpbGUiOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjp0cnVlfX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X3Byb2dyZXNzYmFyIn0=\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-b6145ce elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"b6145ce\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-e65d58b\" data-id=\"e65d58b\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjljZDU1ZGQiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Zlx1ODkwN1x1NjU3MFx1MzA2ZVx1Njk2ZFx1NzU0Y1x1MzA2N1x1MzBiNVx1MzBmY1x1MzBkM1x1MzBiOVx1MzA5Mlx1NjNkMFx1NGY5Ylx1MzA1N1x1MzA2Nlx1MzA0NFx1MzA3ZVx1MzA1OVx1MzAwMiIsInRpdGxlX2NvbG9yIjoiIzg1QjIzQiIsInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplIjp7InVuaXQiOiJweCIsInNpemUiOjM2LCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0Ijp7InVuaXQiOiJweCIsInNpemUiOjQ4LCJzaXplcyI6W119LCJzdHlsZSI6InN0LWxpbmUtbGVmdCIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjp0cnVlfSwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemVfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjMwLCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0X3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjozOCwic2l6ZXMiOltdfSwiY3RfYW5pbWF0ZSI6IndvdyBmYWRlSW5MZWZ0IiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemVfbW9iaWxlIjp7InVuaXQiOiJweCIsInNpemUiOjI4LCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0X21vYmlsZSI6eyJ1bml0IjoicHgiLCJzaXplIjozNCwic2l6ZXMiOltdfX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-2067062\" data-id=\"2067062\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-956a238 wow fadeInRight elementor-widget elementor-widget-text-editor\" data-id=\"956a238\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>u79c1u305fu3061u306fu5e38u306bu9867u5ba2u306eu30c7u30b6u30a4u30f3u8981u6c42u3092u6e80u305fu3057u307eu3059u3002u5916u89b3u3068u5bf8u6cd5u306fu3001u6700u3082u91cdu8981u8996u3057u3066u3044u308bu8981u7d20u3067u3059u3002</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-74328b6b elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"74328b6b\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4b9c9796\" data-id=\"4b9c9796\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjFjYTNiNmM1IiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsibGF5b3V0IjoiNCIsImxpbWl0Ijo0LCJmaWx0ZXJfZGVmYXVsdF90aXRsZSI6IkFsbCIsImNvbF9zbSI6IjEiLCJjb2xfbWQiOiIyIiwiY29sX2xnIjoiMiIsImNvbF94bCI6IjIiLCJidXR0b25fdGV4dCI6IlJlYWQgbW9yZSIsInNvdXJjZSI6WyJqYXxsYW5ndWFnZSJdLCJjdF9hbmltYXRlIjoid293IGZhZGVJblVwIiwib3JkZXIiOiJhc2MifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3Rfc2VydmljZV9ncmlkIn0=\"][elementor-element data=\"eyJpZCI6IjI5NzFiOGIzIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGV4dCI6Ilx1MzA1ZFx1MzA2ZVx1NGVkNlx1MzA2ZVx1MzBiNVx1MzBmY1x1MzBkM1x1MzBiOSIsImxpbmsiOnsidXJsIjoiXC9zZXJ2aWNlcyIsImlzX2V4dGVybmFsIjoiIiwibm9mb2xsb3ciOiIifSwiYWxpZ24iOiJjZW50ZXIiLCJidG5faWNvbiI6eyJ2YWx1ZSI6Im1hdGVyaWFsIHptZGkgem1kaS1zZXR0aW5ncyIsImxpYnJhcnkiOiJtYXRlcmlhbCJ9LCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6Ii0xMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sInN0eWxlIjoiYnRuLXByZXNldDMiLCJfYW5pbWF0aW9uIjoibm9uZSJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9idXR0b24ifQ==\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-f43d465 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"f43d465\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-5310bd3\" data-id=\"5310bd3\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImJjZmM3MzUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjdGY3X2lkIjoiOTMyIiwibGF5b3V0IjoiMiIsImN0ZjdfdGl0bGUiOiJcdThjZWFcdTU1NGZcdTMwNGNcdTMwNDJcdTMwOGFcdTMwN2VcdTMwNTlcdTMwNGJcdWZmMWYiLCJjdGY3X2Rlc2NyaXB0aW9uIjoiQ2FsbDogODAwIDI1MCAzNjkiLCJjdGY3X3Bob25lIjoiPHNwYW4+Q2FsbDo8XC9zcGFuPiAwOTY4ODYwMzg2IiwiZWxfdGl0bGUiOiJcdTg5OGJcdTdhNGRcdTMwODJcdTMwOGFcdTMwOTJcdTUzZDZcdTVmOTdcdTMwNTlcdTMwOGJcdTMwNWZcdTMwODFcdTMwNmVcdTkwMjNcdTdkNjFcdTUxNDhcdWZmMWEiLCJjdF9hbmltYXRlIjoid293IGZsaXBJblgifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY3RmNyJ9\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-a9b49c5 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"a9b49c5\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n                            <div class=\"elementor-background-overlay\"></div>n                n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-1dcb85a\" data-id=\"1dcb85a\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n                <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-6c560a6 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"6c560a6\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-e82cd67\" data-id=\"e82cd67\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImVmNDE1MTEiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Zlx1N2MyMVx1NTM1OFx1MzA2YVx1NGY1Y1x1Njk2ZFx1NjI0Ylx1OTgwNlx1MzA5Mlx1NjMwMVx1MzA2M1x1MzA2Nlx1MzA0NFx1MzA3ZVx1MzA1OVx1MzAwMiIsInRpdGxlX2NvbG9yIjoiI2ZmZmZmZiIsInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplIjp7InVuaXQiOiJweCIsInNpemUiOjM2LCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0Ijp7InVuaXQiOiJweCIsInNpemUiOjQ4LCJzaXplcyI6W119LCJzdHlsZSI6InN0LWxpbmUtbGVmdCIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjp0cnVlfSwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemVfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjMwLCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0X3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjozOCwic2l6ZXMiOltdfSwiY3RfYW5pbWF0ZSI6IndvdyBmYWRlSW5MZWZ0In0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-3a08737\" data-id=\"3a08737\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-7aa11c2 wow fadeInRight elementor-widget elementor-widget-text-editor\" data-id=\"7aa11c2\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>u79c1u305fu3061u306fu5e38u306bu54c1u8ceau3068u9032u6357u306bu304au3044u3066u5b89u5fc3u611fu3092u63d0u4f9bu3057u307eu3059u3002</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n        [elementor-element data=\"eyJpZCI6IjlkNWVhMzIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X2xpc3QiOlt7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi1yZXNlYXJjaCIsImxpYnJhcnkiOiJmbGF0aWNvbiJ9LCJfaWQiOiIwNTVmZWYyIiwidGl0bGUiOiJcdTc5YzFcdTMwNWZcdTMwNjFcdTMwOTJcdTYzYTJcdTMwNTkiLCJkZXNjcmlwdGlvbiI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Zlx1MzAwMVx1NTQwNFx1MzBkN1x1MzBlZFx1MzBiOFx1MzBhN1x1MzBhZlx1MzBjOFx1MzA5Mlx1N2RjZlx1NTQwOFx1NzY4NFx1MzA2Ylx1NTNkNlx1MzA4YVx1NjI3MVx1MzA0Nlx1OTFjZFx1ODk4MVx1NjAyN1x1MzA5Mlx1NzQwNlx1ODllM1x1MzA1N1x1MzA2Nlx1MzA0NFx1MzA3ZVx1MzA1OVx1MzAwMiIsImJ0bl9saW5rIjp7InVybCI6IiIsImlzX2V4dGVybmFsIjoiIiwibm9mb2xsb3ciOiIifX0seyJjdF9pY29uIjp7InZhbHVlIjoiZmxhdGljb24gZmxhdGljb24tbmV0d29yayIsImxpYnJhcnkiOiJmbGF0aWNvbiJ9LCJfaWQiOiIzOWUxNGI4IiwidGl0bGUiOiJcdTc5YzFcdTMwNWZcdTMwNjFcdTMwNjhcdTYzYTVcdTdkOWFcdTMwNTlcdTMwOGIiLCJkZXNjcmlwdGlvbiI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA0Y1x1NGVkNlx1MzA2ZVx1MzBhOFx1MzBmY1x1MzBiOFx1MzBhN1x1MzBmM1x1MzBiN1x1MzBmY1x1MzA2OFx1NzU3MFx1MzA2YVx1MzA4Ylx1NzBiOVx1MzA2Zlx1MzAwMVx1MzBhYlx1MzBiOVx1MzBiZlx1MzBkZVx1MzBhNFx1MzBiYVx1MzA1NVx1MzA4Y1x1MzA1Zlx1MzBiZFx1MzBlYVx1MzBlNVx1MzBmY1x1MzBiN1x1MzBlN1x1MzBmM1x1MzA5Mlx1NGY1Y1x1NjIxMFx1MzA1OVx1MzA4Ylx1NWMwMlx1OTU4MFx1NzdlNVx1OGI1OFx1MzA2Ylx1MzA0Mlx1MzA4YVx1MzA3ZVx1MzA1OVx1MzAwMiIsImJ0bl9saW5rIjp7InVybCI6IiIsImlzX2V4dGVybmFsIjoiIiwibm9mb2xsb3ciOiIifX0seyJjdF9pY29uIjp7InZhbHVlIjoiZmxhdGljb24gZmxhdGljb24td2FsbGV0IiwibGlicmFyeSI6ImZsYXRpY29uIn0sIl9pZCI6ImY1ZTEwZTgiLCJ0aXRsZSI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Ylx1NjUyZlx1NjI1NVx1MzA0NiIsImRlc2NyaXB0aW9uIjoiXHU3OWMxXHUzMDVmXHUzMDYxXHUzMDZmXHUzMDAxXHU1NDA0XHUzMGMxXHUzMGZjXHUzMGUwXHUzMGUxXHUzMGYzXHUzMGQwXHUzMGZjXHUzMDRjXHU4MWVhXHU1MjA2XHU4MWVhXHU4ZWFiXHUzMDZlXHU2NzAwXHU5YWQ4XHUzMDZlXHU1OWZmXHUzMDkyXHU3NmVlXHU2MzA3XHUzMDU5XHUzMDUzXHUzMDY4XHUzMDkyXHU1OTY4XHU1MmIxXHUzMDU3XHUzMDAxXHU2N2Q0XHU4ZWRmXHUzMDY3XHU1MzU0XHU1MjliXHU3Njg0XHUzMDZhXHU3NGIwXHU1ODgzXHUzMDkyXHU4MGIyXHUzMDkzXHUzMDY3XHUzMDQ0XHUzMDdlXHUzMDU5XHUzMDAyIiwiYnRuX2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9fSx7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi10YXJnZXQiLCJsaWJyYXJ5IjoiZmxhdGljb24ifSwiX2lkIjoiODgzOTk2OSIsInRpdGxlIjoiXHUzMDQyXHUzMDZhXHUzMDVmXHUzMDZlXHU1OTIyXHUzMDkyXHU1YjlmXHU3M2ZlXHUzMDU5XHUzMDhiIiwiZGVzY3JpcHRpb24iOiJcdTMwNjlcdTMwNmVcdTMwZDNcdTMwYjhcdTMwY2RcdTMwYjlcdTMwNmJcdTMwODJcdTMwMDFcdTk3NjlcdTY1YjBcdTMwNjhcdTkwMzJcdTZiNjlcdTMwOTJcdTRmYzNcdTMwNTlcdTcyZWNcdTgxZWFcdTMwNmVcdTMwYmRcdTMwZWFcdTMwZTVcdTMwZmNcdTMwYjdcdTMwZTdcdTMwZjNcdTMwNGNcdTMwNDJcdTMwOGFcdTMwN2VcdTMwNTlcdTMwMDIiLCJidG5fbGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn19XSwidGl0bGVfY29sb3IiOiIjZmZmZmZmIiwiZGVzY3JpcHRpb25fY29sb3IiOiIjRkZGRkZGIiwiY3RfYW5pbWF0ZSI6IndvdyBmYWRlSW4ifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfcHJvY2VzcyJ9\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-79ee8ab elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"79ee8ab\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4af1814\" data-id=\"4af1814\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n                <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-505fb45 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"505fb45\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-7223f1c\" data-id=\"7223f1c\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-e7c238e elementor-widget elementor-widget-google_maps\" data-id=\"e7c238e\" data-element_type=\"widget\" data-widget_type=\"google_maps.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-custom-embed\">nttt<iframe loading=\"lazy\"ntttttsrc=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"nttttttitle=\"10u00b057&#039;11.2&quot;N 106u00b045&#039;13.0&quot;E\"ntttttaria-label=\"10u00b057&#039;11.2&quot;N 106u00b045&#039;13.0&quot;E\"nttt></iframe>ntt</div>ntttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-0225539\" data-id=\"0225539\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjUxZDU0M2EiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1MzA0NFx1MzA2NFx1MzA2N1x1MzA4Mlx1MzA2OVx1MzA5M1x1MzA2YVx1NTJhOVx1MzA1MVx1MzA0Y1x1NWZjNVx1ODk4MVx1MzA2YVx1NTgzNFx1NTQwOFx1MzA2N1x1MzA4Mlx1MzAwMVx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Ylx1MzA1NFx1OTAyM1x1N2Q2MVx1MzA0Zlx1MzA2MFx1MzA1NVx1MzA0NC4uLiIsInRpdGxlX2NvbG9yIjoiIzg1QjIzQiIsIl9wYWRkaW5nIjp7InVuaXQiOiIlIiwidG9wIjoiMCIsInJpZ2h0IjoiNSIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sInRpdGxlX3NwYWNlX2JvdHRvbSI6eyJ1bml0IjoicHgiLCJzaXplIjozMywic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemVfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjMwLCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0X3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjozOCwic2l6ZXMiOltdfSwiY3RfYW5pbWF0ZSI6IndvdyBmbGlwSW5YIiwiX3BhZGRpbmdfdGFibGV0Ijp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"][elementor-element data=\"eyJpZCI6ImVkMGRjMWIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjdGY3X2lkIjoiOTc0Iiwic3R5bGVfbDEiOiJzdHlsZTIifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY3RmNyJ9\"]            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                    </div>n        </section>n        \",\"scripts\":[],\"styles\":[]}}'),(10500,3187,'_elementor_edit_mode','builder'),(10501,3187,'_elementor_template_type','wp-page'),(10502,3187,'_elementor_version','3.24.7'),(10503,3187,'_wp_page_template','default'),(10504,3187,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u3001\\u30d9\\u30c8\\u30ca\\u30e0\\u5168\\u571f\\u304a\\u3088\\u3073\\u4e16\\u754c\\u4e2d\\u306e\\u6a5f\\u68b0\\u7523\\u696d\\u5411\\u3051\\u306b\\u5e45\\u5e83\\u3044\\u88fd\\u54c1\\u3092\\u63d0\\u4f9b\\u3057\\u3066\\u304a\\u308a\\u3001\\u7279\\u306b\\u65e5\\u672c\\u3001\\u97d3\\u56fd\\u3001\\u30a2\\u30e1\\u30ea\\u30ab\\u3001\\u30aa\\u30fc\\u30b9\\u30c8\\u30e9\\u30ea\\u30a2\\u3068\\u3044\\u3063\\u305f\\u4e3b\\u8981\\u5e02\\u5834\\u3067\\u306e\\u53d6\\u5f15\\u306b\\u529b\\u3092\\u5165\\u308c\\u3066\\u3044\\u307e\\u3059\\u3002\\u307e\\u305f\\u3001\\u3053\\u308c\\u3089\\u306e\\u5e02\\u5834\\u3078\\u306e\\u8f38\\u51fa\\u7d4c\\u9a13\\u3082\\u8c4a\\u5bcc\\u3067\\u3059\\u3002\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306e\\u6700\\u5927\\u306e\\u5f37\\u307f\\u306f\\u3001\\u5b66\\u3076\\u3053\\u3068\\u3001\\u9769\\u65b0\\u3059\\u308b\\u3053\\u3068\\u306b\\u60c5\\u71b1\\u3092\\u6301\\u3061\\u3001\\u81ea\\u4fe1\\u3092\\u6301\\u3063\\u305f\\u82e5\\u3044\\u52b4\\u50cd\\u529b\\u306b\\u3042\\u308a\\u307e\\u3059\\u3002\\u3053\\u306e\\u30c1\\u30fc\\u30e0\\u306f\\u3001\\u5e38\\u306b\\u5b89\\u5b9a\\u3057\\u305f\\u9ad8\\u54c1\\u8cea\\u306e\\u6a5f\\u68b0\\u88fd\\u54c1\\u3092\\u591a\\u69d8\\u306b\\u88fd\\u9020\\u3059\\u308b\\u80fd\\u529b\\u3092\\u5099\\u3048\\u3066\\u3044\\u307e\\u3059\\u3002<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=vUCVqLmXSPM\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"\\u9867\\u5ba2\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"\\u4eba\\u4e8b\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"\\u5e74\\u9593\\u6ce8\\u6587\\u6570\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306f\\u3001\\u4e16\\u754c\\u4e2d\\u304b\\u3089\\u306e\\u6ce8\\u6587\\u3068\\u63a5\\u7d9a\\u3059\\u308b\\u305f\\u3081\\u306bAlibaba\\u306b\\u5e97\\u8217\\u3092\\u958b\\u8a2d\\u3057\\u59cb\\u3081\\u307e\\u3057\\u305f\\u3002<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0e89391\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u30012030\\u5e74\\u307e\\u3067\\u306b\\u30d9\\u30c8\\u30ca\\u30e0\\u306e\\u4e3b\\u8981\\u306a\\u6a5f\\u68b0\\u52a0\\u5de5\\u4f01\\u696d\\u306e\\u4e00\\u3064\\u3068\\u3057\\u3066\\u3001\\u56fd\\u969b\\u5e02\\u5834\\u306b\\u4f9b\\u7d66\\u3059\\u308b\\u3053\\u3068\\u3092\\u76ee\\u6307\\u3057\\u3066\\u3044\\u307e\\u3059\\u3002\\u5c06\\u6765\\u7684\\u306b\\u306f\\u3001\\u5b8c\\u6210\\u3057\\u305f\\u6a5f\\u68b0\\u88fd\\u54c1\\u3092\\u76f4\\u63a5\\u30a8\\u30f3\\u30c9\\u30e6\\u30fc\\u30b6\\u30fc\\u306b\\u63d0\\u4f9b\\u3059\\u308b\\u3053\\u3068\\u3092\\u76ee\\u6a19\\u3068\\u3057\\u3066\\u3044\\u307e\\u3059\\u3002\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2026\\u5e74\\u307e\\u3067\\u306b\\u9054\\u6210\\u3059\\u308b\\u76ee\\u6a19:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"\\u6771\\u30a2\\u30b8\\u30a2\\uff08\\u65e5\\u672c\\u3001\\u97d3\\u56fd\\u306a\\u3069\\uff09\\uff1a\\u4ea4\\u63db\\u7528\\u6a5f\\u68b0\\u90e8\\u54c1\\u3001\\u30aa\\u30fc\\u30c8\\u30d0\\u30a4\\u304a\\u3088\\u3073\\u81ea\\u52d5\\u8eca\\u306e\\u30a2\\u30af\\u30bb\\u30b5\\u30ea\\u30fc\\u3001\\u6c34\\u7523\\u696d\\u7528\\u306e\\u30d5\\u30a3\\u30c3\\u30c6\\u30a3\\u30f3\\u30b0\\u3001\\u91d1\\u578b\\u3001\\u305d\\u306e\\u4ed6\\u306e\\u6a5f\\u68b0\\u90e8\\u54c1\\u306e\\u8f38\\u51fa\\u3002\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"\\u30e8\\u30fc\\u30ed\\u30c3\\u30d1\\uff08\\u30c9\\u30a4\\u30c4\\u3001\\u30d6\\u30eb\\u30ac\\u30ea\\u30a2\\u3001\\u30aa\\u30e9\\u30f3\\u30c0\\u306a\\u3069\\uff09\\uff1a\\u81ea\\u52d5\\u8eca\\u7528\\u30d9\\u30a2\\u30ea\\u30f3\\u30b0\\u306e\\u6cbb\\u5177\\u304a\\u3088\\u3073\\u81ea\\u52d5\\u5316\\u6a5f\\u68b0\\u306e\\u96fb\\u6c17\\u30dc\\u30c3\\u30af\\u30b9\\u90e8\\u54c1\\u306e\\u751f\\u7523\\u3002\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"\\u30a2\\u30e1\\u30ea\\u30ab\\u5408\\u8846\\u56fd\\uff1a\\u533b\\u7642\\u6a5f\\u5668\\u3001\\u5149\\u5b66\\u6a5f\\u5668\\u3001\\u97f3\\u97ff\\u6a5f\\u5668\\u306b\\u95a2\\u9023\\u3059\\u308b\\u88fd\\u54c1\\u3002\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"\\u30aa\\u30fc\\u30b9\\u30c8\\u30e9\\u30ea\\u30a2\\uff1a\\u677f\\u91d1\\u88fd\\u54c1\\u3002\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"\\u30d9\\u30c8\\u30ca\\u30e0\\uff1a\\u5c0f\\u578b\\u81ea\\u52d5\\u5316\\u6a5f\\u68b0\\u3001\\u30aa\\u30fc\\u30c8\\u30d0\\u30a4\\u304a\\u3088\\u3073\\u81ea\\u52d5\\u8eca\\u306e\\u30dc\\u30eb\\u30c8\\u3001\\u77f3\\u6cb9\\u304a\\u3088\\u3073\\u30ac\\u30b9\\u7523\\u696d\\u306e\\u88fd\\u54c1\\u3002\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"\\u305d\\u306e\\u4ed6\\u306e\\u5e02\\u5834\\u3068\\u88fd\\u54c1\\u3002\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u8907\\u6570\\u306e\\u696d\\u754c\\u3067\\u30b5\\u30fc\\u30d3\\u30b9\\u3092\\u63d0\\u4f9b\\u3057\\u3066\\u3044\\u307e\\u3059\\u3002\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306f\\u5e38\\u306b\\u9867\\u5ba2\\u306e\\u30c7\\u30b6\\u30a4\\u30f3\\u8981\\u6c42\\u3092\\u6e80\\u305f\\u3057\\u307e\\u3059\\u3002\\u5916\\u89b3\\u3068\\u5bf8\\u6cd5\\u306f\\u3001\\u6700\\u3082\\u91cd\\u8981\\u8996\\u3057\\u3066\\u3044\\u308b\\u8981\\u7d20\\u3067\\u3059\\u3002<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"ja|language\"],\"ct_animate\":\"wow fadeInUp\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u305d\\u306e\\u4ed6\\u306e\\u30b5\\u30fc\\u30d3\\u30b9\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"\\u8cea\\u554f\\u304c\\u3042\\u308a\\u307e\\u3059\\u304b\\uff1f\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"\\u898b\\u7a4d\\u3082\\u308a\\u3092\\u53d6\\u5f97\\u3059\\u308b\\u305f\\u3081\\u306e\\u9023\\u7d61\\u5148\\uff1a\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u7c21\\u5358\\u306a\\u4f5c\\u696d\\u624b\\u9806\\u3092\\u6301\\u3063\\u3066\\u3044\\u307e\\u3059\\u3002\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306f\\u5e38\\u306b\\u54c1\\u8cea\\u3068\\u9032\\u6357\\u306b\\u304a\\u3044\\u3066\\u5b89\\u5fc3\\u611f\\u3092\\u63d0\\u4f9b\\u3057\\u307e\\u3059\\u3002<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"\\u79c1\\u305f\\u3061\\u3092\\u63a2\\u3059\",\"description\":\"\\u79c1\\u305f\\u3061\\u306f\\u3001\\u5404\\u30d7\\u30ed\\u30b8\\u30a7\\u30af\\u30c8\\u3092\\u7dcf\\u5408\\u7684\\u306b\\u53d6\\u308a\\u6271\\u3046\\u91cd\\u8981\\u6027\\u3092\\u7406\\u89e3\\u3057\\u3066\\u3044\\u307e\\u3059\\u3002\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"\\u79c1\\u305f\\u3061\\u3068\\u63a5\\u7d9a\\u3059\\u308b\",\"description\":\"\\u79c1\\u305f\\u3061\\u304c\\u4ed6\\u306e\\u30a8\\u30fc\\u30b8\\u30a7\\u30f3\\u30b7\\u30fc\\u3068\\u7570\\u306a\\u308b\\u70b9\\u306f\\u3001\\u30ab\\u30b9\\u30bf\\u30de\\u30a4\\u30ba\\u3055\\u308c\\u305f\\u30bd\\u30ea\\u30e5\\u30fc\\u30b7\\u30e7\\u30f3\\u3092\\u4f5c\\u6210\\u3059\\u308b\\u5c02\\u9580\\u77e5\\u8b58\\u306b\\u3042\\u308a\\u307e\\u3059\\u3002\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"\\u79c1\\u305f\\u3061\\u306b\\u652f\\u6255\\u3046\",\"description\":\"\\u79c1\\u305f\\u3061\\u306f\\u3001\\u5404\\u30c1\\u30fc\\u30e0\\u30e1\\u30f3\\u30d0\\u30fc\\u304c\\u81ea\\u5206\\u81ea\\u8eab\\u306e\\u6700\\u9ad8\\u306e\\u59ff\\u3092\\u76ee\\u6307\\u3059\\u3053\\u3068\\u3092\\u5968\\u52b1\\u3057\\u3001\\u67d4\\u8edf\\u3067\\u5354\\u529b\\u7684\\u306a\\u74b0\\u5883\\u3092\\u80b2\\u3093\\u3067\\u3044\\u307e\\u3059\\u3002\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"\\u3042\\u306a\\u305f\\u306e\\u5922\\u3092\\u5b9f\\u73fe\\u3059\\u308b\",\"description\":\"\\u3069\\u306e\\u30d3\\u30b8\\u30cd\\u30b9\\u306b\\u3082\\u3001\\u9769\\u65b0\\u3068\\u9032\\u6b69\\u3092\\u4fc3\\u3059\\u72ec\\u81ea\\u306e\\u30bd\\u30ea\\u30e5\\u30fc\\u30b7\\u30e7\\u30f3\\u304c\\u3042\\u308a\\u307e\\u3059\\u3002\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u3044\\u3064\\u3067\\u3082\\u3069\\u3093\\u306a\\u52a9\\u3051\\u304c\\u5fc5\\u8981\\u306a\\u5834\\u5408\\u3067\\u3082\\u3001\\u79c1\\u305f\\u3061\\u306b\\u3054\\u9023\\u7d61\\u304f\\u3060\\u3055\\u3044...\",\"title_color\":\"#85B23B\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(10505,3187,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(10506,3187,'_elementor_page_assets','a:2:{s:6:\"styles\";a:4:{i:0;s:18:\"widget-text-editor\";i:1;s:21:\"e-animation-slideInUp\";i:2;s:12:\"widget-image\";i:3;s:18:\"widget-google_maps\";}s:7:\"scripts\";a:9:{i:0;s:16:\"jquery-numerator\";i:1;s:20:\"ct-counter-widget-js\";i:2;s:11:\"progressbar\";i:3;s:16:\"waypoints-lib-js\";i:4;s:24:\"ct-progressbar-widget-js\";i:5;s:12:\"imagesloaded\";i:6;s:7:\"isotope\";i:7;s:25:\"ct-post-masonry-widget-js\";i:8;s:22:\"ct-post-grid-widget-js\";}}'),(10507,3187,'_elementor_css','a:6:{s:4:\"time\";i:1742179413;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:8:\"material\";i:1;s:8:\"flaticon\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(10508,3187,'_elementor_element_cache','{\"timeout\":1742265814,\"value\":{\"content\":\"        <section class=\"elementor-section elementor-top-section elementor-element elementor-element-2d2b67a elementor-section-stretched elementor-section-full_width slider-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"2d2b67a\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-no \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-d1bb387\" data-id=\"d1bb387\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImNjODZmNGQiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJyZXZzbGlkZXJ0aXRsZSI6IkhvbWUgMSIsInNob3J0Y29kZSI6IltyZXZfc2xpZGVyIGFsaWFzPVwiaG9tZS0xXCJdW1wvcmV2X3NsaWRlcl0ifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoic2xpZGVyX3Jldm9sdXRpb24ifQ==\"]        <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-2cea906 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"2cea906\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-8e117d0\" data-id=\"8e117d0\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjI0YjYyY2MiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Zlx1MzAwMVx1MzBkOVx1MzBjOFx1MzBjYVx1MzBlMFx1NTE2OFx1NTcxZlx1MzA0YVx1MzA4OFx1MzA3M1x1NGUxNlx1NzU0Y1x1NGUyZFx1MzA2ZVx1NmE1Zlx1NjhiMFx1NzUyM1x1Njk2ZFx1NTQxMVx1MzA1MVx1MzA2Ylx1NWU0NVx1NWU4M1x1MzA0NFx1ODhmZFx1NTRjMVx1MzA5Mlx1NjNkMFx1NGY5Ylx1MzA1N1x1MzA2Nlx1MzA0YVx1MzA4YVx1MzAwMVx1NzI3OVx1MzA2Ylx1NjVlNVx1NjcyY1x1MzAwMVx1OTdkM1x1NTZmZFx1MzAwMVx1MzBhMlx1MzBlMVx1MzBlYVx1MzBhYlx1MzAwMVx1MzBhYVx1MzBmY1x1MzBiOVx1MzBjOFx1MzBlOVx1MzBlYVx1MzBhMlx1MzA2OFx1MzA0NFx1MzA2M1x1MzA1Zlx1NGUzYlx1ODk4MVx1NWUwMlx1NTgzNFx1MzA2N1x1MzA2ZVx1NTNkNlx1NWYxNVx1MzA2Ylx1NTI5Ylx1MzA5Mlx1NTE2NVx1MzA4Y1x1MzA2Nlx1MzA0NFx1MzA3ZVx1MzA1OVx1MzAwMlx1MzA3ZVx1MzA1Zlx1MzAwMVx1MzA1M1x1MzA4Y1x1MzA4OVx1MzA2ZVx1NWUwMlx1NTgzNFx1MzA3OFx1MzA2ZVx1OGYzOFx1NTFmYVx1N2Q0Y1x1OWExM1x1MzA4Mlx1OGM0YVx1NWJjY1x1MzA2N1x1MzA1OVx1MzAwMiIsInRpdGxlX2NvbG9yIjoiIzg1QjIzQiIsInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplIjp7InVuaXQiOiJweCIsInNpemUiOjM2LCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0Ijp7InVuaXQiOiJweCIsInNpemUiOjQ4LCJzaXplcyI6W119LCJzdHlsZSI6InN0LWxpbmUtbGVmdCIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjE2IiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MjYsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjM0LCJzaXplcyI6W119LCJjdF9hbmltYXRlIjoid293IGZhZGVJblVwIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"]tt<div class=\"elementor-element elementor-element-909b449 wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"909b449\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>u79c1u305fu3061u306eu6700u5927u306eu5f37u307fu306fu3001u5b66u3076u3053u3068u3001u9769u65b0u3059u308bu3053u3068u306bu60c5u71b1u3092u6301u3061u3001u81eau4fe1u3092u6301u3063u305fu82e5u3044u52b4u50cdu529bu306bu3042u308au307eu3059u3002u3053u306eu30c1u30fcu30e0u306fu3001u5e38u306bu5b89u5b9au3057u305fu9ad8u54c1u8ceau306eu6a5fu68b0u88fdu54c1u3092u591au69d8u306bu88fdu9020u3059u308bu80fdu529bu3092u5099u3048u3066u3044u307eu3059u3002</p>tttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImM0YTIwMjgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJpbWFnZSI6eyJ1cmwiOiIiLCJpZCI6IiJ9LCJ2aWRlb19saW5rIjoiaHR0cHM6XC9cL3d3dy55b3V0dWJlLmNvbVwvd2F0Y2g/dj12VUNWcUxtWFNQTSIsImJ0bl92aWRlb19zdHlsZSI6InN0eWxlMyIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMzEiLCJyaWdodCI6IjM4IiwiYm90dG9tIjoiMCIsImxlZnQiOiI3OCIsImlzTGlua2VkIjpmYWxzZX0sIl9jc3NfY2xhc3NlcyI6ImVsLWlubGluZSB3b3cgZmFkZUluUmlnaHQiLCJfbWFyZ2luX3RhYmxldCI6eyJ1bml0IjoicHgiLCJ0b3AiOiIzMSIsInJpZ2h0IjoiMjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjY4IiwiaXNMaW5rZWQiOmZhbHNlfSwiX2FuaW1hdGlvbiI6InNsaWRlSW5VcCIsIl9tYXJnaW5fbW9iaWxlIjp7InVuaXQiOiJweCIsInRvcCI6IjMxIiwicmlnaHQiOiIyMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF92aWRlb19wbGF5ZXIifQ==\"]tt<div class=\"elementor-element elementor-element-1fd7931 el-inline wow fadeInRight elementor-invisible elementor-widget elementor-widget-image\" data-id=\"1fd7931\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;slideInUp&quot;}\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" class=\"attachment-full size-full wp-image-2542\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-4fff345\" data-id=\"4fff345\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjU5MGYxYmUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjo1MCwic3VmZml4IjoiKyIsInRob3VzYW5kX3NlcGFyYXRvciI6IiIsInRob3VzYW5kX3NlcGFyYXRvcl9jaGFyIjoiICIsInRpdGxlIjoiXHU5ODY3XHU1YmEyIiwic2hvd19pY29uIjoidHJ1ZSIsImNvdW50ZXJfaWNvbiI6eyJ2YWx1ZSI6Im1hdGVyaWFsIHptZGkgem1kaS1hc3NpZ25tZW50LWNoZWNrIiwibGlicmFyeSI6Im1hdGVyaWFsIn0sIm51bWJlcl90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiI0MSIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwiX2Nzc19jbGFzc2VzIjoidGV4dC1jZW50ZXItc20iLCJpY29uX3R5cGUiOiJpbWFnZSIsImljb25faW1hZ2UiOnsidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMTlcLzEyXC9jb3VudGVyLWljb24tMDEucG5nIiwiaWQiOjE1MTV9LCJfYW5pbWF0aW9uIjoibm9uZSIsImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluVXAifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY291bnRlciJ9\"][elementor-element data=\"eyJpZCI6IjdhNWYyMzkiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjoyMDAsInN1ZmZpeCI6IisiLCJ0aG91c2FuZF9zZXBhcmF0b3IiOiIiLCJ0aG91c2FuZF9zZXBhcmF0b3JfY2hhciI6IiAiLCJ0aXRsZSI6Ilx1NGViYVx1NGU4YiIsInNob3dfaWNvbiI6InRydWUiLCJjb3VudGVyX2ljb24iOnsidmFsdWUiOiJtYXRlcmlhbCB6bWRpIHptZGktYXNzaWdubWVudC1jaGVjayIsImxpYnJhcnkiOiJtYXRlcmlhbCJ9LCJudW1iZXJfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiNDEiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sIl9jc3NfY2xhc3NlcyI6InRleHQtY2VudGVyLXNtIiwiaWNvbl90eXBlIjoiaW1hZ2UiLCJpY29uX2ltYWdlIjp7InVybCI6Imh0dHA6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDE5XC8xMlwvY291bnRlci1pY29uLTAyLnBuZyIsImlkIjoxNTE2fSwiX2FuaW1hdGlvbiI6Im5vbmUiLCJjdF9hbmltYXRlIjoid293IGZhZGVJblVwIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2NvdW50ZXIifQ==\"][elementor-element data=\"eyJpZCI6IjA0NTMxYzgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjoyMDAwLCJzdWZmaXgiOiIrIiwidGhvdXNhbmRfc2VwYXJhdG9yIjoiIiwidGhvdXNhbmRfc2VwYXJhdG9yX2NoYXIiOiIgIiwidGl0bGUiOiJcdTVlNzRcdTk1OTNcdTZjZThcdTY1ODdcdTY1NzAiLCJzaG93X2ljb24iOiJ0cnVlIiwiY291bnRlcl9pY29uIjp7InZhbHVlIjoibWF0ZXJpYWwgem1kaSB6bWRpLWFzc2lnbm1lbnQtY2hlY2siLCJsaWJyYXJ5IjoibWF0ZXJpYWwifSwibnVtYmVyX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjQxIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJfY3NzX2NsYXNzZXMiOiJ0ZXh0LWNlbnRlci1zbSIsImljb25fdHlwZSI6ImltYWdlIiwiaWNvbl9pbWFnZSI6eyJ1cmwiOiJodHRwOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAxOVwvMTJcL2NvdW50ZXItaWNvbi0wMy5wbmciLCJpZCI6MTUxN30sIl9hbmltYXRpb24iOiJub25lIiwiY3RfYW5pbWF0ZSI6IndvdyBmYWRlSW5VcCJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9jb3VudGVyIn0=\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-348ba48\" data-id=\"348ba48\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-ed7e1d0 wow fadeInUp elementor-widget elementor-widget-image\" data-id=\"ed7e1d0\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" class=\"attachment-full size-full wp-image-2571\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntttt<div class=\"elementor-element elementor-element-3b54db6 wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"3b54db6\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>u79c1u305fu3061u306fu3001u4e16u754cu4e2du304bu3089u306eu6ce8u6587u3068u63a5u7d9au3059u308bu305fu3081u306bAlibabau306bu5e97u8217u3092u958bu8a2du3057u59cbu3081u307eu3057u305fu3002</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-8b70e78 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"8b70e78\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-c2b95bd\" data-id=\"c2b95bd\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-b5a8ba3 elementor-widget elementor-widget-image\" data-id=\"b5a8ba3\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" class=\"attachment-full size-full wp-image-2268\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntttt<div class=\"elementor-element elementor-element-0e89391 elementor-widget elementor-widget-image\" data-id=\"0e89391\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" class=\"attachment-full size-full wp-image-2559\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-de7136f\" data-id=\"de7136f\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6Ijg0MDdhYmUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Zlx1MzAwMTIwMzBcdTVlNzRcdTMwN2VcdTMwNjdcdTMwNmJcdTMwZDlcdTMwYzhcdTMwY2FcdTMwZTBcdTMwNmVcdTRlM2JcdTg5ODFcdTMwNmFcdTZhNWZcdTY4YjBcdTUyYTBcdTVkZTVcdTRmMDFcdTY5NmRcdTMwNmVcdTRlMDBcdTMwNjRcdTMwNjhcdTMwNTdcdTMwNjZcdTMwMDFcdTU2ZmRcdTk2OWJcdTVlMDJcdTU4MzRcdTMwNmJcdTRmOWJcdTdkNjZcdTMwNTlcdTMwOGJcdTMwNTNcdTMwNjhcdTMwOTJcdTc2ZWVcdTYzMDdcdTMwNTdcdTMwNjZcdTMwNDRcdTMwN2VcdTMwNTlcdTMwMDJcdTVjMDZcdTY3NjVcdTc2ODRcdTMwNmJcdTMwNmZcdTMwMDFcdTViOGNcdTYyMTBcdTMwNTdcdTMwNWZcdTZhNWZcdTY4YjBcdTg4ZmRcdTU0YzFcdTMwOTJcdTc2ZjRcdTYzYTVcdTMwYThcdTMwZjNcdTMwYzlcdTMwZTZcdTMwZmNcdTMwYjZcdTMwZmNcdTMwNmJcdTYzZDBcdTRmOWJcdTMwNTlcdTMwOGJcdTMwNTNcdTMwNjhcdTMwOTJcdTc2ZWVcdTZhMTlcdTMwNjhcdTMwNTdcdTMwNjZcdTMwNDRcdTMwN2VcdTMwNTlcdTMwMDIiLCJ0aXRsZV9jb2xvciI6IiM4NUIyM0IiLCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZSI6eyJ1bml0IjoicHgiLCJzaXplIjozNiwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodCI6eyJ1bml0IjoicHgiLCJzaXplIjo0OCwic2l6ZXMiOltdfSwic3R5bGUiOiJzdC1saW5lLWxlZnQiLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6Ii05IiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwidGl0bGVfc3BhY2VfYm90dG9tIjp7InVuaXQiOiJweCIsInNpemUiOjE3LCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzAsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjM4LCJzaXplcyI6W119LCJjdF9hbmltYXRlIjoid293IGZsaXBJblgiLCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV9tb2JpbGUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MjgsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfbW9iaWxlIjp7InVuaXQiOiJweCIsInNpemUiOjM0LCJzaXplcyI6W119fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-0c8497c wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"0c8497c\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>2026u5e74u307eu3067u306bu9054u6210u3059u308bu76eeu6a19:</p>tttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6IjQ3NTRlZDYiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJwcm9ncmVzc2Jhcl9saXN0IjpbeyJ0aXRsZSI6Ilx1Njc3MVx1MzBhMlx1MzBiOFx1MzBhMlx1ZmYwOFx1NjVlNVx1NjcyY1x1MzAwMVx1OTdkM1x1NTZmZFx1MzA2YVx1MzA2OVx1ZmYwOVx1ZmYxYVx1NGVhNFx1NjNkYlx1NzUyOFx1NmE1Zlx1NjhiMFx1OTBlOFx1NTRjMVx1MzAwMVx1MzBhYVx1MzBmY1x1MzBjOFx1MzBkMFx1MzBhNFx1MzA0YVx1MzA4OFx1MzA3M1x1ODFlYVx1NTJkNVx1OGVjYVx1MzA2ZVx1MzBhMlx1MzBhZlx1MzBiYlx1MzBiNVx1MzBlYVx1MzBmY1x1MzAwMVx1NmMzNFx1NzUyM1x1Njk2ZFx1NzUyOFx1MzA2ZVx1MzBkNVx1MzBhM1x1MzBjM1x1MzBjNlx1MzBhM1x1MzBmM1x1MzBiMFx1MzAwMVx1OTFkMVx1NTc4Ylx1MzAwMVx1MzA1ZFx1MzA2ZVx1NGVkNlx1MzA2ZVx1NmE1Zlx1NjhiMFx1OTBlOFx1NTRjMVx1MzA2ZVx1OGYzOFx1NTFmYVx1MzAwMiIsInByb2dyZXNzX3R5cGUiOiIiLCJwZXJjZW50Ijp7InVuaXQiOiIlIiwic2l6ZSI6MzAsInNpemVzIjpbXX0sImRpc3BsYXlfcGVyY2VudGFnZSI6ImhpZGUiLCJpbm5lcl90ZXh0IjoiV2ViIERlc2lnbmVyIiwiX2lkIjoiOGI0YmNkNiJ9LHsidGl0bGUiOiJcdTMwZThcdTMwZmNcdTMwZWRcdTMwYzNcdTMwZDFcdWZmMDhcdTMwYzlcdTMwYTRcdTMwYzRcdTMwMDFcdTMwZDZcdTMwZWJcdTMwYWNcdTMwZWFcdTMwYTJcdTMwMDFcdTMwYWFcdTMwZTlcdTMwZjNcdTMwYzBcdTMwNmFcdTMwNjlcdWZmMDlcdWZmMWFcdTgxZWFcdTUyZDVcdThlY2FcdTc1MjhcdTMwZDlcdTMwYTJcdTMwZWFcdTMwZjNcdTMwYjBcdTMwNmVcdTZjYmJcdTUxNzdcdTMwNGFcdTMwODhcdTMwNzNcdTgxZWFcdTUyZDVcdTUzMTZcdTZhNWZcdTY4YjBcdTMwNmVcdTk2ZmJcdTZjMTdcdTMwZGNcdTMwYzNcdTMwYWZcdTMwYjlcdTkwZThcdTU0YzFcdTMwNmVcdTc1MWZcdTc1MjNcdTMwMDIiLCJwcm9ncmVzc190eXBlIjoiIiwicGVyY2VudCI6eyJ1bml0IjoiJSIsInNpemUiOjEwLCJzaXplcyI6W119LCJkaXNwbGF5X3BlcmNlbnRhZ2UiOiJoaWRlIiwiaW5uZXJfdGV4dCI6IldlYiBEZXNpZ25lciIsIl9pZCI6IjZlMGY4NzcifSx7InRpdGxlIjoiXHUzMGEyXHUzMGUxXHUzMGVhXHUzMGFiXHU1NDA4XHU4ODQ2XHU1NmZkXHVmZjFhXHU1MzNiXHU3NjQyXHU2YTVmXHU1NjY4XHUzMDAxXHU1MTQ5XHU1YjY2XHU2YTVmXHU1NjY4XHUzMDAxXHU5N2YzXHU5N2ZmXHU2YTVmXHU1NjY4XHUzMDZiXHU5NWEyXHU5MDIzXHUzMDU5XHUzMDhiXHU4OGZkXHU1NGMxXHUzMDAyIiwicHJvZ3Jlc3NfdHlwZSI6IiIsInBlcmNlbnQiOnsidW5pdCI6IiUiLCJzaXplIjozMCwic2l6ZXMiOltdfSwiZGlzcGxheV9wZXJjZW50YWdlIjoic2hvdyIsIl9pZCI6IjIyMmViODEifSx7Il9pZCI6IjVlZWNjYjYiLCJ0aXRsZSI6Ilx1MzBhYVx1MzBmY1x1MzBiOVx1MzBjOFx1MzBlOVx1MzBlYVx1MzBhMlx1ZmYxYVx1Njc3Zlx1OTFkMVx1ODhmZFx1NTRjMVx1MzAwMiIsInBlcmNlbnQiOnsidW5pdCI6IiUiLCJzaXplIjo4LCJzaXplcyI6W119fSx7Il9pZCI6IjEwZTU3NTAiLCJ0aXRsZSI6Ilx1MzBkOVx1MzBjOFx1MzBjYVx1MzBlMFx1ZmYxYVx1NWMwZlx1NTc4Ylx1ODFlYVx1NTJkNVx1NTMxNlx1NmE1Zlx1NjhiMFx1MzAwMVx1MzBhYVx1MzBmY1x1MzBjOFx1MzBkMFx1MzBhNFx1MzA0YVx1MzA4OFx1MzA3M1x1ODFlYVx1NTJkNVx1OGVjYVx1MzA2ZVx1MzBkY1x1MzBlYlx1MzBjOFx1MzAwMVx1NzdmM1x1NmNiOVx1MzA0YVx1MzA4OFx1MzA3M1x1MzBhY1x1MzBiOVx1NzUyM1x1Njk2ZFx1MzA2ZVx1ODhmZFx1NTRjMVx1MzAwMiIsInBlcmNlbnQiOnsidW5pdCI6IiUiLCJzaXplIjoyMCwic2l6ZXMiOltdfX0seyJfaWQiOiJlMTdhMTk1IiwidGl0bGUiOiJcdTMwNWRcdTMwNmVcdTRlZDZcdTMwNmVcdTVlMDJcdTU4MzRcdTMwNjhcdTg4ZmRcdTU0YzFcdTMwMDIiLCJwZXJjZW50Ijp7InVuaXQiOiIlIiwic2l6ZSI6Miwic2l6ZXMiOltdfX1dLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6Ijc4IiwiaXNMaW5rZWQiOmZhbHNlfSwiX21hcmdpbl9tb2JpbGUiOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjp0cnVlfX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X3Byb2dyZXNzYmFyIn0=\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-b6145ce elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"b6145ce\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-e65d58b\" data-id=\"e65d58b\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjljZDU1ZGQiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Zlx1ODkwN1x1NjU3MFx1MzA2ZVx1Njk2ZFx1NzU0Y1x1MzA2N1x1MzBiNVx1MzBmY1x1MzBkM1x1MzBiOVx1MzA5Mlx1NjNkMFx1NGY5Ylx1MzA1N1x1MzA2Nlx1MzA0NFx1MzA3ZVx1MzA1OVx1MzAwMiIsInRpdGxlX2NvbG9yIjoiIzg1QjIzQiIsInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplIjp7InVuaXQiOiJweCIsInNpemUiOjM2LCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0Ijp7InVuaXQiOiJweCIsInNpemUiOjQ4LCJzaXplcyI6W119LCJzdHlsZSI6InN0LWxpbmUtbGVmdCIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjp0cnVlfSwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemVfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjMwLCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0X3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjozOCwic2l6ZXMiOltdfSwiY3RfYW5pbWF0ZSI6IndvdyBmYWRlSW5MZWZ0IiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemVfbW9iaWxlIjp7InVuaXQiOiJweCIsInNpemUiOjI4LCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0X21vYmlsZSI6eyJ1bml0IjoicHgiLCJzaXplIjozNCwic2l6ZXMiOltdfX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-2067062\" data-id=\"2067062\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-956a238 wow fadeInRight elementor-widget elementor-widget-text-editor\" data-id=\"956a238\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>u79c1u305fu3061u306fu5e38u306bu9867u5ba2u306eu30c7u30b6u30a4u30f3u8981u6c42u3092u6e80u305fu3057u307eu3059u3002u5916u89b3u3068u5bf8u6cd5u306fu3001u6700u3082u91cdu8981u8996u3057u3066u3044u308bu8981u7d20u3067u3059u3002</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-74328b6b elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"74328b6b\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4b9c9796\" data-id=\"4b9c9796\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjFjYTNiNmM1IiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsibGF5b3V0IjoiNCIsImxpbWl0Ijo0LCJmaWx0ZXJfZGVmYXVsdF90aXRsZSI6IkFsbCIsImNvbF9zbSI6IjEiLCJjb2xfbWQiOiIyIiwiY29sX2xnIjoiMiIsImNvbF94bCI6IjIiLCJidXR0b25fdGV4dCI6IlJlYWQgbW9yZSIsInNvdXJjZSI6WyJqYXxsYW5ndWFnZSJdLCJjdF9hbmltYXRlIjoid293IGZhZGVJblVwIiwib3JkZXIiOiJhc2MifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3Rfc2VydmljZV9ncmlkIn0=\"][elementor-element data=\"eyJpZCI6IjI5NzFiOGIzIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGV4dCI6Ilx1MzA1ZFx1MzA2ZVx1NGVkNlx1MzA2ZVx1MzBiNVx1MzBmY1x1MzBkM1x1MzBiOSIsImxpbmsiOnsidXJsIjoiXC9zZXJ2aWNlcyIsImlzX2V4dGVybmFsIjoiIiwibm9mb2xsb3ciOiIifSwiYWxpZ24iOiJjZW50ZXIiLCJidG5faWNvbiI6eyJ2YWx1ZSI6Im1hdGVyaWFsIHptZGkgem1kaS1zZXR0aW5ncyIsImxpYnJhcnkiOiJtYXRlcmlhbCJ9LCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6Ii0xMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sInN0eWxlIjoiYnRuLXByZXNldDMiLCJfYW5pbWF0aW9uIjoibm9uZSJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9idXR0b24ifQ==\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-f43d465 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"f43d465\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-5310bd3\" data-id=\"5310bd3\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImJjZmM3MzUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjdGY3X2lkIjoiOTMyIiwibGF5b3V0IjoiMiIsImN0ZjdfdGl0bGUiOiJcdThjZWFcdTU1NGZcdTMwNGNcdTMwNDJcdTMwOGFcdTMwN2VcdTMwNTlcdTMwNGJcdWZmMWYiLCJjdGY3X2Rlc2NyaXB0aW9uIjoiQ2FsbDogODAwIDI1MCAzNjkiLCJjdGY3X3Bob25lIjoiPHNwYW4+Q2FsbDo8XC9zcGFuPiAwOTY4ODYwMzg2IiwiZWxfdGl0bGUiOiJcdTg5OGJcdTdhNGRcdTMwODJcdTMwOGFcdTMwOTJcdTUzZDZcdTVmOTdcdTMwNTlcdTMwOGJcdTMwNWZcdTMwODFcdTMwNmVcdTkwMjNcdTdkNjFcdTUxNDhcdWZmMWEiLCJjdF9hbmltYXRlIjoid293IGZsaXBJblgifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY3RmNyJ9\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-a9b49c5 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"a9b49c5\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n                            <div class=\"elementor-background-overlay\"></div>n                n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-1dcb85a\" data-id=\"1dcb85a\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n                <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-6c560a6 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"6c560a6\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-e82cd67\" data-id=\"e82cd67\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImVmNDE1MTEiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Zlx1N2MyMVx1NTM1OFx1MzA2YVx1NGY1Y1x1Njk2ZFx1NjI0Ylx1OTgwNlx1MzA5Mlx1NjMwMVx1MzA2M1x1MzA2Nlx1MzA0NFx1MzA3ZVx1MzA1OVx1MzAwMiIsInRpdGxlX2NvbG9yIjoiI2ZmZmZmZiIsInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplIjp7InVuaXQiOiJweCIsInNpemUiOjM2LCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0Ijp7InVuaXQiOiJweCIsInNpemUiOjQ4LCJzaXplcyI6W119LCJzdHlsZSI6InN0LWxpbmUtbGVmdCIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjp0cnVlfSwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemVfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjMwLCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0X3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjozOCwic2l6ZXMiOltdfSwiY3RfYW5pbWF0ZSI6IndvdyBmYWRlSW5MZWZ0In0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-3a08737\" data-id=\"3a08737\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-7aa11c2 wow fadeInRight elementor-widget elementor-widget-text-editor\" data-id=\"7aa11c2\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>u79c1u305fu3061u306fu5e38u306bu54c1u8ceau3068u9032u6357u306bu304au3044u3066u5b89u5fc3u611fu3092u63d0u4f9bu3057u307eu3059u3002</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n        [elementor-element data=\"eyJpZCI6IjlkNWVhMzIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X2xpc3QiOlt7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi1yZXNlYXJjaCIsImxpYnJhcnkiOiJmbGF0aWNvbiJ9LCJfaWQiOiIwNTVmZWYyIiwidGl0bGUiOiJcdTc5YzFcdTMwNWZcdTMwNjFcdTMwOTJcdTYzYTJcdTMwNTkiLCJkZXNjcmlwdGlvbiI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Zlx1MzAwMVx1NTQwNFx1MzBkN1x1MzBlZFx1MzBiOFx1MzBhN1x1MzBhZlx1MzBjOFx1MzA5Mlx1N2RjZlx1NTQwOFx1NzY4NFx1MzA2Ylx1NTNkNlx1MzA4YVx1NjI3MVx1MzA0Nlx1OTFjZFx1ODk4MVx1NjAyN1x1MzA5Mlx1NzQwNlx1ODllM1x1MzA1N1x1MzA2Nlx1MzA0NFx1MzA3ZVx1MzA1OVx1MzAwMiIsImJ0bl9saW5rIjp7InVybCI6IiIsImlzX2V4dGVybmFsIjoiIiwibm9mb2xsb3ciOiIifX0seyJjdF9pY29uIjp7InZhbHVlIjoiZmxhdGljb24gZmxhdGljb24tbmV0d29yayIsImxpYnJhcnkiOiJmbGF0aWNvbiJ9LCJfaWQiOiIzOWUxNGI4IiwidGl0bGUiOiJcdTc5YzFcdTMwNWZcdTMwNjFcdTMwNjhcdTYzYTVcdTdkOWFcdTMwNTlcdTMwOGIiLCJkZXNjcmlwdGlvbiI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA0Y1x1NGVkNlx1MzA2ZVx1MzBhOFx1MzBmY1x1MzBiOFx1MzBhN1x1MzBmM1x1MzBiN1x1MzBmY1x1MzA2OFx1NzU3MFx1MzA2YVx1MzA4Ylx1NzBiOVx1MzA2Zlx1MzAwMVx1MzBhYlx1MzBiOVx1MzBiZlx1MzBkZVx1MzBhNFx1MzBiYVx1MzA1NVx1MzA4Y1x1MzA1Zlx1MzBiZFx1MzBlYVx1MzBlNVx1MzBmY1x1MzBiN1x1MzBlN1x1MzBmM1x1MzA5Mlx1NGY1Y1x1NjIxMFx1MzA1OVx1MzA4Ylx1NWMwMlx1OTU4MFx1NzdlNVx1OGI1OFx1MzA2Ylx1MzA0Mlx1MzA4YVx1MzA3ZVx1MzA1OVx1MzAwMiIsImJ0bl9saW5rIjp7InVybCI6IiIsImlzX2V4dGVybmFsIjoiIiwibm9mb2xsb3ciOiIifX0seyJjdF9pY29uIjp7InZhbHVlIjoiZmxhdGljb24gZmxhdGljb24td2FsbGV0IiwibGlicmFyeSI6ImZsYXRpY29uIn0sIl9pZCI6ImY1ZTEwZTgiLCJ0aXRsZSI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Ylx1NjUyZlx1NjI1NVx1MzA0NiIsImRlc2NyaXB0aW9uIjoiXHU3OWMxXHUzMDVmXHUzMDYxXHUzMDZmXHUzMDAxXHU1NDA0XHUzMGMxXHUzMGZjXHUzMGUwXHUzMGUxXHUzMGYzXHUzMGQwXHUzMGZjXHUzMDRjXHU4MWVhXHU1MjA2XHU4MWVhXHU4ZWFiXHUzMDZlXHU2NzAwXHU5YWQ4XHUzMDZlXHU1OWZmXHUzMDkyXHU3NmVlXHU2MzA3XHUzMDU5XHUzMDUzXHUzMDY4XHUzMDkyXHU1OTY4XHU1MmIxXHUzMDU3XHUzMDAxXHU2N2Q0XHU4ZWRmXHUzMDY3XHU1MzU0XHU1MjliXHU3Njg0XHUzMDZhXHU3NGIwXHU1ODgzXHUzMDkyXHU4MGIyXHUzMDkzXHUzMDY3XHUzMDQ0XHUzMDdlXHUzMDU5XHUzMDAyIiwiYnRuX2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9fSx7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi10YXJnZXQiLCJsaWJyYXJ5IjoiZmxhdGljb24ifSwiX2lkIjoiODgzOTk2OSIsInRpdGxlIjoiXHUzMDQyXHUzMDZhXHUzMDVmXHUzMDZlXHU1OTIyXHUzMDkyXHU1YjlmXHU3M2ZlXHUzMDU5XHUzMDhiIiwiZGVzY3JpcHRpb24iOiJcdTMwNjlcdTMwNmVcdTMwZDNcdTMwYjhcdTMwY2RcdTMwYjlcdTMwNmJcdTMwODJcdTMwMDFcdTk3NjlcdTY1YjBcdTMwNjhcdTkwMzJcdTZiNjlcdTMwOTJcdTRmYzNcdTMwNTlcdTcyZWNcdTgxZWFcdTMwNmVcdTMwYmRcdTMwZWFcdTMwZTVcdTMwZmNcdTMwYjdcdTMwZTdcdTMwZjNcdTMwNGNcdTMwNDJcdTMwOGFcdTMwN2VcdTMwNTlcdTMwMDIiLCJidG5fbGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn19XSwidGl0bGVfY29sb3IiOiIjZmZmZmZmIiwiZGVzY3JpcHRpb25fY29sb3IiOiIjRkZGRkZGIiwiY3RfYW5pbWF0ZSI6IndvdyBmYWRlSW4ifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfcHJvY2VzcyJ9\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-79ee8ab elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"79ee8ab\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4af1814\" data-id=\"4af1814\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n                <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-505fb45 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"505fb45\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-7223f1c\" data-id=\"7223f1c\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-e7c238e elementor-widget elementor-widget-google_maps\" data-id=\"e7c238e\" data-element_type=\"widget\" data-widget_type=\"google_maps.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-custom-embed\">nttt<iframe loading=\"lazy\"ntttttsrc=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"nttttttitle=\"10u00b057&#039;11.2&quot;N 106u00b045&#039;13.0&quot;E\"ntttttaria-label=\"10u00b057&#039;11.2&quot;N 106u00b045&#039;13.0&quot;E\"nttt></iframe>ntt</div>ntttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-0225539\" data-id=\"0225539\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjUxZDU0M2EiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1MzA0NFx1MzA2NFx1MzA2N1x1MzA4Mlx1MzA2OVx1MzA5M1x1MzA2YVx1NTJhOVx1MzA1MVx1MzA0Y1x1NWZjNVx1ODk4MVx1MzA2YVx1NTgzNFx1NTQwOFx1MzA2N1x1MzA4Mlx1MzAwMVx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Ylx1MzA1NFx1OTAyM1x1N2Q2MVx1MzA0Zlx1MzA2MFx1MzA1NVx1MzA0NC4uLiIsInRpdGxlX2NvbG9yIjoiIzg1QjIzQiIsIl9wYWRkaW5nIjp7InVuaXQiOiIlIiwidG9wIjoiMCIsInJpZ2h0IjoiNSIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sInRpdGxlX3NwYWNlX2JvdHRvbSI6eyJ1bml0IjoicHgiLCJzaXplIjozMywic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemVfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjMwLCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0X3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjozOCwic2l6ZXMiOltdfSwiY3RfYW5pbWF0ZSI6IndvdyBmbGlwSW5YIiwiX3BhZGRpbmdfdGFibGV0Ijp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"][elementor-element data=\"eyJpZCI6ImVkMGRjMWIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjdGY3X2lkIjoiOTc0Iiwic3R5bGVfbDEiOiJzdHlsZTIifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY3RmNyJ9\"]            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                    </div>n        </section>n        \",\"scripts\":[],\"styles\":[]}}'),(10509,3188,'_elementor_edit_mode','builder'),(10510,3188,'_elementor_template_type','wp-page'),(10511,3188,'_elementor_version','3.24.7'),(10512,3188,'_wp_page_template','default'),(10513,3188,'_elementor_data','[{\"id\":\"2d2b67a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"slider-boxed\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1bb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cc86f4d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Home 1\",\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"},{\"id\":\"2cea906\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-73\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8e117d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.583,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"24b62cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u3001\\u30d9\\u30c8\\u30ca\\u30e0\\u5168\\u571f\\u304a\\u3088\\u3073\\u4e16\\u754c\\u4e2d\\u306e\\u6a5f\\u68b0\\u7523\\u696d\\u5411\\u3051\\u306b\\u5e45\\u5e83\\u3044\\u88fd\\u54c1\\u3092\\u63d0\\u4f9b\\u3057\\u3066\\u304a\\u308a\\u3001\\u7279\\u306b\\u65e5\\u672c\\u3001\\u97d3\\u56fd\\u3001\\u30a2\\u30e1\\u30ea\\u30ab\\u3001\\u30aa\\u30fc\\u30b9\\u30c8\\u30e9\\u30ea\\u30a2\\u3068\\u3044\\u3063\\u305f\\u4e3b\\u8981\\u5e02\\u5834\\u3067\\u306e\\u53d6\\u5f15\\u306b\\u529b\\u3092\\u5165\\u308c\\u3066\\u3044\\u307e\\u3059\\u3002\\u307e\\u305f\\u3001\\u3053\\u308c\\u3089\\u306e\\u5e02\\u5834\\u3078\\u306e\\u8f38\\u51fa\\u7d4c\\u9a13\\u3082\\u8c4a\\u5bcc\\u3067\\u3059\\u3002\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"909b449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306e\\u6700\\u5927\\u306e\\u5f37\\u307f\\u306f\\u3001\\u5b66\\u3076\\u3053\\u3068\\u3001\\u9769\\u65b0\\u3059\\u308b\\u3053\\u3068\\u306b\\u60c5\\u71b1\\u3092\\u6301\\u3061\\u3001\\u81ea\\u4fe1\\u3092\\u6301\\u3063\\u305f\\u82e5\\u3044\\u52b4\\u50cd\\u529b\\u306b\\u3042\\u308a\\u307e\\u3059\\u3002\\u3053\\u306e\\u30c1\\u30fc\\u30e0\\u306f\\u3001\\u5e38\\u306b\\u5b89\\u5b9a\\u3057\\u305f\\u9ad8\\u54c1\\u8cea\\u306e\\u6a5f\\u68b0\\u88fd\\u54c1\\u3092\\u591a\\u69d8\\u306b\\u88fd\\u9020\\u3059\\u308b\\u80fd\\u529b\\u3092\\u5099\\u3048\\u3066\\u3044\\u307e\\u3059\\u3002<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4a2028\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=vUCVqLmXSPM\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_animation\":\"slideInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"1fd7931\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\",\"id\":2542,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"el-inline wow fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"slideInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fff345\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":26,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"032\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"590f1be\",\"elType\":\"widget\",\"settings\":{\"ending_number\":50,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"\\u9867\\u5ba2\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-01.png\",\"id\":1515},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7a5f239\",\"elType\":\"widget\",\"settings\":{\"ending_number\":200,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"\\u4eba\\u4e8b\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-02.png\",\"id\":1516},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"04531c8\",\"elType\":\"widget\",\"settings\":{\"ending_number\":2000,\"suffix\":\"+\",\"thousand_separator\":\"\",\"thousand_separator_char\":\" \",\"title\":\"\\u5e74\\u9593\\u6ce8\\u6587\\u6570\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-assignment-check\",\"library\":\"material\"},\"number_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"text-center-sm\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/12\\/counter-icon-03.png\",\"id\":1517},\"_animation\":\"none\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"348ba48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.413,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed7e1d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\",\"id\":2571,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"_animation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_flex_size\":\"none\",\"_element_width_none\":\"initial\",\"_element_custom_width_none\":{\"size\":243.337},\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.trustpass.alibaba.com\\/\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b54db6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306f\\u3001\\u4e16\\u754c\\u4e2d\\u304b\\u3089\\u306e\\u6ce8\\u6587\\u3068\\u63a5\\u7d9a\\u3059\\u308b\\u305f\\u3081\\u306bAlibaba\\u306b\\u5e97\\u8217\\u3092\\u958b\\u8a2d\\u3057\\u59cb\\u3081\\u307e\\u3057\\u305f\\u3002<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b70e78\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-section-01.jpg\",\"id\":882},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2b95bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b5a8ba3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\",\"id\":2268,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0e89391\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\",\"id\":2559,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"de7136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"8407abe\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u30012030\\u5e74\\u307e\\u3067\\u306b\\u30d9\\u30c8\\u30ca\\u30e0\\u306e\\u4e3b\\u8981\\u306a\\u6a5f\\u68b0\\u52a0\\u5de5\\u4f01\\u696d\\u306e\\u4e00\\u3064\\u3068\\u3057\\u3066\\u3001\\u56fd\\u969b\\u5e02\\u5834\\u306b\\u4f9b\\u7d66\\u3059\\u308b\\u3053\\u3068\\u3092\\u76ee\\u6307\\u3057\\u3066\\u3044\\u307e\\u3059\\u3002\\u5c06\\u6765\\u7684\\u306b\\u306f\\u3001\\u5b8c\\u6210\\u3057\\u305f\\u6a5f\\u68b0\\u88fd\\u54c1\\u3092\\u76f4\\u63a5\\u30a8\\u30f3\\u30c9\\u30e6\\u30fc\\u30b6\\u30fc\\u306b\\u63d0\\u4f9b\\u3059\\u308b\\u3053\\u3068\\u3092\\u76ee\\u6a19\\u3068\\u3057\\u3066\\u3044\\u307e\\u3059\\u3002\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0c8497c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2026\\u5e74\\u307e\\u3067\\u306b\\u9054\\u6210\\u3059\\u308b\\u76ee\\u6a19:<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"68\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4754ed6\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"\\u6771\\u30a2\\u30b8\\u30a2\\uff08\\u65e5\\u672c\\u3001\\u97d3\\u56fd\\u306a\\u3069\\uff09\\uff1a\\u4ea4\\u63db\\u7528\\u6a5f\\u68b0\\u90e8\\u54c1\\u3001\\u30aa\\u30fc\\u30c8\\u30d0\\u30a4\\u304a\\u3088\\u3073\\u81ea\\u52d5\\u8eca\\u306e\\u30a2\\u30af\\u30bb\\u30b5\\u30ea\\u30fc\\u3001\\u6c34\\u7523\\u696d\\u7528\\u306e\\u30d5\\u30a3\\u30c3\\u30c6\\u30a3\\u30f3\\u30b0\\u3001\\u91d1\\u578b\\u3001\\u305d\\u306e\\u4ed6\\u306e\\u6a5f\\u68b0\\u90e8\\u54c1\\u306e\\u8f38\\u51fa\\u3002\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"8b4bcd6\"},{\"title\":\"\\u30e8\\u30fc\\u30ed\\u30c3\\u30d1\\uff08\\u30c9\\u30a4\\u30c4\\u3001\\u30d6\\u30eb\\u30ac\\u30ea\\u30a2\\u3001\\u30aa\\u30e9\\u30f3\\u30c0\\u306a\\u3069\\uff09\\uff1a\\u81ea\\u52d5\\u8eca\\u7528\\u30d9\\u30a2\\u30ea\\u30f3\\u30b0\\u306e\\u6cbb\\u5177\\u304a\\u3088\\u3073\\u81ea\\u52d5\\u5316\\u6a5f\\u68b0\\u306e\\u96fb\\u6c17\\u30dc\\u30c3\\u30af\\u30b9\\u90e8\\u54c1\\u306e\\u751f\\u7523\\u3002\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"display_percentage\":\"hide\",\"inner_text\":\"Web Designer\",\"_id\":\"6e0f877\"},{\"title\":\"\\u30a2\\u30e1\\u30ea\\u30ab\\u5408\\u8846\\u56fd\\uff1a\\u533b\\u7642\\u6a5f\\u5668\\u3001\\u5149\\u5b66\\u6a5f\\u5668\\u3001\\u97f3\\u97ff\\u6a5f\\u5668\\u306b\\u95a2\\u9023\\u3059\\u308b\\u88fd\\u54c1\\u3002\",\"progress_type\":\"\",\"percent\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"display_percentage\":\"show\",\"_id\":\"222eb81\"},{\"_id\":\"5eeccb6\",\"title\":\"\\u30aa\\u30fc\\u30b9\\u30c8\\u30e9\\u30ea\\u30a2\\uff1a\\u677f\\u91d1\\u88fd\\u54c1\\u3002\",\"percent\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]}},{\"_id\":\"10e5750\",\"title\":\"\\u30d9\\u30c8\\u30ca\\u30e0\\uff1a\\u5c0f\\u578b\\u81ea\\u52d5\\u5316\\u6a5f\\u68b0\\u3001\\u30aa\\u30fc\\u30c8\\u30d0\\u30a4\\u304a\\u3088\\u3073\\u81ea\\u52d5\\u8eca\\u306e\\u30dc\\u30eb\\u30c8\\u3001\\u77f3\\u6cb9\\u304a\\u3088\\u3073\\u30ac\\u30b9\\u7523\\u696d\\u306e\\u88fd\\u54c1\\u3002\",\"percent\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]}},{\"_id\":\"e17a195\",\"title\":\"\\u305d\\u306e\\u4ed6\\u306e\\u5e02\\u5834\\u3068\\u88fd\\u54c1\\u3002\",\"percent\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6145ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e65d58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9cd55dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u8907\\u6570\\u306e\\u696d\\u754c\\u3067\\u30b5\\u30fc\\u30d3\\u30b9\\u3092\\u63d0\\u4f9b\\u3057\\u3066\\u3044\\u307e\\u3059\\u3002\",\"title_color\":\"#85B23B\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2067062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"956a238\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306f\\u5e38\\u306b\\u9867\\u5ba2\\u306e\\u30c7\\u30b6\\u30a4\\u30f3\\u8981\\u6c42\\u3092\\u6e80\\u305f\\u3057\\u307e\\u3059\\u3002\\u5916\\u89b3\\u3068\\u5bf8\\u6cd5\\u306f\\u3001\\u6700\\u3082\\u91cd\\u8981\\u8996\\u3057\\u3066\\u3044\\u308b\\u8981\\u7d20\\u3067\\u3059\\u3002<\\/p>\",\"text_color\":\"#4d546b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74328b6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b9c9796\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ca3b6c5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"filter_default_title\":\"All\",\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"button_text\":\"Read more\",\"source\":[\"ja|language\"],\"ct_animate\":\"wow fadeInUp\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"2971b8b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u305d\\u306e\\u4ed6\\u306e\\u30b5\\u30fc\\u30d3\\u30b9\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"material zmdi zmdi-settings\",\"library\":\"material\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"btn-preset3\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43d465\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5310bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bcfc735\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"932\",\"layout\":\"2\",\"ctf7_title\":\"\\u8cea\\u554f\\u304c\\u3042\\u308a\\u307e\\u3059\\u304b\\uff1f\",\"ctf7_description\":\"Call: 800 250 369\",\"ctf7_phone\":\"<span>Call:<\\/span> 0968860386\",\"el_title\":\"\\u898b\\u7a4d\\u3082\\u308a\\u3092\\u53d6\\u5f97\\u3059\\u308b\\u305f\\u3081\\u306e\\u9023\\u7d61\\u5148\\uff1a\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9b49c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-1.jpg\",\"id\":948},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606B3\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"502\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"1dcb85a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c560a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"090\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e82cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef41511\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u7c21\\u5358\\u306a\\u4f5c\\u696d\\u624b\\u9806\\u3092\\u6301\\u3063\\u3066\\u3044\\u307e\\u3059\\u3002\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"style\":\"st-line-left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3a08737\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7aa11c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306f\\u5e38\\u306b\\u54c1\\u8cea\\u3068\\u9032\\u6357\\u306b\\u304a\\u3044\\u3066\\u5b89\\u5fc3\\u611f\\u3092\\u63d0\\u4f9b\\u3057\\u307e\\u3059\\u3002<\\/p>\",\"text_color\":\"#F9F9F9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5ea32\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"ct_icon\":{\"value\":\"flaticon flaticon-research\",\"library\":\"flaticon\"},\"_id\":\"055fef2\",\"title\":\"\\u79c1\\u305f\\u3061\\u3092\\u63a2\\u3059\",\"description\":\"\\u79c1\\u305f\\u3061\\u306f\\u3001\\u5404\\u30d7\\u30ed\\u30b8\\u30a7\\u30af\\u30c8\\u3092\\u7dcf\\u5408\\u7684\\u306b\\u53d6\\u308a\\u6271\\u3046\\u91cd\\u8981\\u6027\\u3092\\u7406\\u89e3\\u3057\\u3066\\u3044\\u307e\\u3059\\u3002\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-network\",\"library\":\"flaticon\"},\"_id\":\"39e14b8\",\"title\":\"\\u79c1\\u305f\\u3061\\u3068\\u63a5\\u7d9a\\u3059\\u308b\",\"description\":\"\\u79c1\\u305f\\u3061\\u304c\\u4ed6\\u306e\\u30a8\\u30fc\\u30b8\\u30a7\\u30f3\\u30b7\\u30fc\\u3068\\u7570\\u306a\\u308b\\u70b9\\u306f\\u3001\\u30ab\\u30b9\\u30bf\\u30de\\u30a4\\u30ba\\u3055\\u308c\\u305f\\u30bd\\u30ea\\u30e5\\u30fc\\u30b7\\u30e7\\u30f3\\u3092\\u4f5c\\u6210\\u3059\\u308b\\u5c02\\u9580\\u77e5\\u8b58\\u306b\\u3042\\u308a\\u307e\\u3059\\u3002\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-wallet\",\"library\":\"flaticon\"},\"_id\":\"f5e10e8\",\"title\":\"\\u79c1\\u305f\\u3061\\u306b\\u652f\\u6255\\u3046\",\"description\":\"\\u79c1\\u305f\\u3061\\u306f\\u3001\\u5404\\u30c1\\u30fc\\u30e0\\u30e1\\u30f3\\u30d0\\u30fc\\u304c\\u81ea\\u5206\\u81ea\\u8eab\\u306e\\u6700\\u9ad8\\u306e\\u59ff\\u3092\\u76ee\\u6307\\u3059\\u3053\\u3068\\u3092\\u5968\\u52b1\\u3057\\u3001\\u67d4\\u8edf\\u3067\\u5354\\u529b\\u7684\\u306a\\u74b0\\u5883\\u3092\\u80b2\\u3093\\u3067\\u3044\\u307e\\u3059\\u3002\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"ct_icon\":{\"value\":\"flaticon flaticon-target\",\"library\":\"flaticon\"},\"_id\":\"8839969\",\"title\":\"\\u3042\\u306a\\u305f\\u306e\\u5922\\u3092\\u5b9f\\u73fe\\u3059\\u308b\",\"description\":\"\\u3069\\u306e\\u30d3\\u30b8\\u30cd\\u30b9\\u306b\\u3082\\u3001\\u9769\\u65b0\\u3068\\u9032\\u6b69\\u3092\\u4fc3\\u3059\\u72ec\\u81ea\\u306e\\u30bd\\u30ea\\u30e5\\u30fc\\u30b7\\u30e7\\u30f3\\u304c\\u3042\\u308a\\u307e\\u3059\\u3002\",\"btn_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"title_color\":\"#ffffff\",\"description_color\":\"#FFFFFF\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79ee8ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4af1814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"505fb45\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":18,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 24.000000000000036, 91, 0.25)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-445\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7223f1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7c238e\",\"elType\":\"widget\",\"settings\":{\"address\":\"10\\u00b057\'11.2\\\"N 106\\u00b045\'13.0\\\"E\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"0225539\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"30\",\"left\":\"80\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"51d543a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u3044\\u3064\\u3067\\u3082\\u3069\\u3093\\u306a\\u52a9\\u3051\\u304c\\u5fc5\\u8981\\u306a\\u5834\\u5408\\u3067\\u3082\\u3001\\u79c1\\u305f\\u3061\\u306b\\u3054\\u9023\\u7d61\\u304f\\u3060\\u3055\\u3044...\",\"title_color\":\"#85B23B\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"wow flipInX\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ed0dc1b\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"974\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(10514,3188,'_elementor_controls_usage','a:22:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:10;s:11:\"title_color\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:9;s:28:\"title_typography_line_height\";i:9;s:5:\"style\";i:9;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:10:\"ct_animate\";i:10;s:18:\"title_space_bottom\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:2;s:12:\"_css_classes\";i:7;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:19;s:19:\"_inline_size_tablet\";i:7;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:10:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:18:\"thousand_separator\";i:3;s:23:\"thousand_separator_char\";i:3;s:5:\"title\";i:3;s:9:\"show_icon\";i:3;s:12:\"counter_icon\";i:3;s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"ct_animate\";i:3;}}s:5:\"style\";a:1:{s:14:\"section_number\";a:1:{s:28:\"number_typography_typography\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:21;s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:16;s:7:\"z_index\";i:3;s:14:\"padding_tablet\";i:6;s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;s:13:\"margin_tablet\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:26:\"thumbnail_custom_dimension\";i:1;s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:12:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:10:\"icon_image\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:1;s:10:\"ct_animate\";i:1;}}}}s:14:\"ct_progressbar\";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:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:5:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"ctf7_id\";i:2;s:6:\"layout\";i:1;s:10:\"ctf7_title\";i:1;s:10:\"ctf7_phone\";i:1;s:8:\"el_title\";i:1;s:10:\"ct_animate\";i:1;s:8:\"style_l1\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"infinite\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:15:\"section_content\";a:2:{s:12:\"content_list\";i:1;s:10:\"ct_animate\";i:1;}s:13:\"section_style\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:7:\"address\";i:1;s:10:\"coordinate\";i:1;s:16:\"markercoordinate\";i:1;s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:6:\"height\";i:1;s:7:\"content\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:3:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:11:{s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(10515,3188,'_elementor_page_assets','a:2:{s:6:\"styles\";a:4:{i:0;s:18:\"widget-text-editor\";i:1;s:21:\"e-animation-slideInUp\";i:2;s:12:\"widget-image\";i:3;s:18:\"widget-google_maps\";}s:7:\"scripts\";a:9:{i:0;s:16:\"jquery-numerator\";i:1;s:20:\"ct-counter-widget-js\";i:2;s:11:\"progressbar\";i:3;s:16:\"waypoints-lib-js\";i:4;s:24:\"ct-progressbar-widget-js\";i:5;s:12:\"imagesloaded\";i:6;s:7:\"isotope\";i:7;s:25:\"ct-post-masonry-widget-js\";i:8;s:22:\"ct-post-grid-widget-js\";}}'),(10516,3188,'_elementor_css','a:6:{s:4:\"time\";i:1742179413;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:8:\"material\";i:1;s:8:\"flaticon\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(10517,3188,'_elementor_element_cache','{\"timeout\":1742265814,\"value\":{\"content\":\"        <section class=\"elementor-section elementor-top-section elementor-element elementor-element-2d2b67a elementor-section-stretched elementor-section-full_width slider-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"2d2b67a\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-no \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-d1bb387\" data-id=\"d1bb387\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImNjODZmNGQiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJyZXZzbGlkZXJ0aXRsZSI6IkhvbWUgMSIsInNob3J0Y29kZSI6IltyZXZfc2xpZGVyIGFsaWFzPVwiaG9tZS0xXCJdW1wvcmV2X3NsaWRlcl0ifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoic2xpZGVyX3Jldm9sdXRpb24ifQ==\"]        <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-2cea906 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"2cea906\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-8e117d0\" data-id=\"8e117d0\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjI0YjYyY2MiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Zlx1MzAwMVx1MzBkOVx1MzBjOFx1MzBjYVx1MzBlMFx1NTE2OFx1NTcxZlx1MzA0YVx1MzA4OFx1MzA3M1x1NGUxNlx1NzU0Y1x1NGUyZFx1MzA2ZVx1NmE1Zlx1NjhiMFx1NzUyM1x1Njk2ZFx1NTQxMVx1MzA1MVx1MzA2Ylx1NWU0NVx1NWU4M1x1MzA0NFx1ODhmZFx1NTRjMVx1MzA5Mlx1NjNkMFx1NGY5Ylx1MzA1N1x1MzA2Nlx1MzA0YVx1MzA4YVx1MzAwMVx1NzI3OVx1MzA2Ylx1NjVlNVx1NjcyY1x1MzAwMVx1OTdkM1x1NTZmZFx1MzAwMVx1MzBhMlx1MzBlMVx1MzBlYVx1MzBhYlx1MzAwMVx1MzBhYVx1MzBmY1x1MzBiOVx1MzBjOFx1MzBlOVx1MzBlYVx1MzBhMlx1MzA2OFx1MzA0NFx1MzA2M1x1MzA1Zlx1NGUzYlx1ODk4MVx1NWUwMlx1NTgzNFx1MzA2N1x1MzA2ZVx1NTNkNlx1NWYxNVx1MzA2Ylx1NTI5Ylx1MzA5Mlx1NTE2NVx1MzA4Y1x1MzA2Nlx1MzA0NFx1MzA3ZVx1MzA1OVx1MzAwMlx1MzA3ZVx1MzA1Zlx1MzAwMVx1MzA1M1x1MzA4Y1x1MzA4OVx1MzA2ZVx1NWUwMlx1NTgzNFx1MzA3OFx1MzA2ZVx1OGYzOFx1NTFmYVx1N2Q0Y1x1OWExM1x1MzA4Mlx1OGM0YVx1NWJjY1x1MzA2N1x1MzA1OVx1MzAwMiIsInRpdGxlX2NvbG9yIjoiIzg1QjIzQiIsInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplIjp7InVuaXQiOiJweCIsInNpemUiOjM2LCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0Ijp7InVuaXQiOiJweCIsInNpemUiOjQ4LCJzaXplcyI6W119LCJzdHlsZSI6InN0LWxpbmUtbGVmdCIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjE2IiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MjYsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjM0LCJzaXplcyI6W119LCJjdF9hbmltYXRlIjoid293IGZhZGVJblVwIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"]tt<div class=\"elementor-element elementor-element-909b449 wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"909b449\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>u79c1u305fu3061u306eu6700u5927u306eu5f37u307fu306fu3001u5b66u3076u3053u3068u3001u9769u65b0u3059u308bu3053u3068u306bu60c5u71b1u3092u6301u3061u3001u81eau4fe1u3092u6301u3063u305fu82e5u3044u52b4u50cdu529bu306bu3042u308au307eu3059u3002u3053u306eu30c1u30fcu30e0u306fu3001u5e38u306bu5b89u5b9au3057u305fu9ad8u54c1u8ceau306eu6a5fu68b0u88fdu54c1u3092u591au69d8u306bu88fdu9020u3059u308bu80fdu529bu3092u5099u3048u3066u3044u307eu3059u3002</p>tttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImM0YTIwMjgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJpbWFnZSI6eyJ1cmwiOiIiLCJpZCI6IiJ9LCJ2aWRlb19saW5rIjoiaHR0cHM6XC9cL3d3dy55b3V0dWJlLmNvbVwvd2F0Y2g/dj12VUNWcUxtWFNQTSIsImJ0bl92aWRlb19zdHlsZSI6InN0eWxlMyIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMzEiLCJyaWdodCI6IjM4IiwiYm90dG9tIjoiMCIsImxlZnQiOiI3OCIsImlzTGlua2VkIjpmYWxzZX0sIl9jc3NfY2xhc3NlcyI6ImVsLWlubGluZSB3b3cgZmFkZUluUmlnaHQiLCJfbWFyZ2luX3RhYmxldCI6eyJ1bml0IjoicHgiLCJ0b3AiOiIzMSIsInJpZ2h0IjoiMjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjY4IiwiaXNMaW5rZWQiOmZhbHNlfSwiX2FuaW1hdGlvbiI6InNsaWRlSW5VcCIsIl9tYXJnaW5fbW9iaWxlIjp7InVuaXQiOiJweCIsInRvcCI6IjMxIiwicmlnaHQiOiIyMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF92aWRlb19wbGF5ZXIifQ==\"]tt<div class=\"elementor-element elementor-element-1fd7931 el-inline wow fadeInRight elementor-invisible elementor-widget elementor-widget-image\" data-id=\"1fd7931\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;slideInUp&quot;}\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" class=\"attachment-full size-full wp-image-2542\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-4fff345\" data-id=\"4fff345\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjU5MGYxYmUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjo1MCwic3VmZml4IjoiKyIsInRob3VzYW5kX3NlcGFyYXRvciI6IiIsInRob3VzYW5kX3NlcGFyYXRvcl9jaGFyIjoiICIsInRpdGxlIjoiXHU5ODY3XHU1YmEyIiwic2hvd19pY29uIjoidHJ1ZSIsImNvdW50ZXJfaWNvbiI6eyJ2YWx1ZSI6Im1hdGVyaWFsIHptZGkgem1kaS1hc3NpZ25tZW50LWNoZWNrIiwibGlicmFyeSI6Im1hdGVyaWFsIn0sIm51bWJlcl90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiI0MSIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwiX2Nzc19jbGFzc2VzIjoidGV4dC1jZW50ZXItc20iLCJpY29uX3R5cGUiOiJpbWFnZSIsImljb25faW1hZ2UiOnsidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMTlcLzEyXC9jb3VudGVyLWljb24tMDEucG5nIiwiaWQiOjE1MTV9LCJfYW5pbWF0aW9uIjoibm9uZSIsImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluVXAifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY291bnRlciJ9\"][elementor-element data=\"eyJpZCI6IjdhNWYyMzkiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjoyMDAsInN1ZmZpeCI6IisiLCJ0aG91c2FuZF9zZXBhcmF0b3IiOiIiLCJ0aG91c2FuZF9zZXBhcmF0b3JfY2hhciI6IiAiLCJ0aXRsZSI6Ilx1NGViYVx1NGU4YiIsInNob3dfaWNvbiI6InRydWUiLCJjb3VudGVyX2ljb24iOnsidmFsdWUiOiJtYXRlcmlhbCB6bWRpIHptZGktYXNzaWdubWVudC1jaGVjayIsImxpYnJhcnkiOiJtYXRlcmlhbCJ9LCJudW1iZXJfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiNDEiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sIl9jc3NfY2xhc3NlcyI6InRleHQtY2VudGVyLXNtIiwiaWNvbl90eXBlIjoiaW1hZ2UiLCJpY29uX2ltYWdlIjp7InVybCI6Imh0dHA6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDE5XC8xMlwvY291bnRlci1pY29uLTAyLnBuZyIsImlkIjoxNTE2fSwiX2FuaW1hdGlvbiI6Im5vbmUiLCJjdF9hbmltYXRlIjoid293IGZhZGVJblVwIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2NvdW50ZXIifQ==\"][elementor-element data=\"eyJpZCI6IjA0NTMxYzgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjoyMDAwLCJzdWZmaXgiOiIrIiwidGhvdXNhbmRfc2VwYXJhdG9yIjoiIiwidGhvdXNhbmRfc2VwYXJhdG9yX2NoYXIiOiIgIiwidGl0bGUiOiJcdTVlNzRcdTk1OTNcdTZjZThcdTY1ODdcdTY1NzAiLCJzaG93X2ljb24iOiJ0cnVlIiwiY291bnRlcl9pY29uIjp7InZhbHVlIjoibWF0ZXJpYWwgem1kaSB6bWRpLWFzc2lnbm1lbnQtY2hlY2siLCJsaWJyYXJ5IjoibWF0ZXJpYWwifSwibnVtYmVyX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjQxIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJfY3NzX2NsYXNzZXMiOiJ0ZXh0LWNlbnRlci1zbSIsImljb25fdHlwZSI6ImltYWdlIiwiaWNvbl9pbWFnZSI6eyJ1cmwiOiJodHRwOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAxOVwvMTJcL2NvdW50ZXItaWNvbi0wMy5wbmciLCJpZCI6MTUxN30sIl9hbmltYXRpb24iOiJub25lIiwiY3RfYW5pbWF0ZSI6IndvdyBmYWRlSW5VcCJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9jb3VudGVyIn0=\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-348ba48\" data-id=\"348ba48\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-ed7e1d0 wow fadeInUp elementor-widget elementor-widget-image\" data-id=\"ed7e1d0\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" class=\"attachment-full size-full wp-image-2571\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntttt<div class=\"elementor-element elementor-element-3b54db6 wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"3b54db6\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>u79c1u305fu3061u306fu3001u4e16u754cu4e2du304bu3089u306eu6ce8u6587u3068u63a5u7d9au3059u308bu305fu3081u306bAlibabau306bu5e97u8217u3092u958bu8a2du3057u59cbu3081u307eu3057u305fu3002</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-8b70e78 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"8b70e78\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-c2b95bd\" data-id=\"c2b95bd\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-b5a8ba3 elementor-widget elementor-widget-image\" data-id=\"b5a8ba3\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" class=\"attachment-full size-full wp-image-2268\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntttt<div class=\"elementor-element elementor-element-0e89391 elementor-widget elementor-widget-image\" data-id=\"0e89391\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" class=\"attachment-full size-full wp-image-2559\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-de7136f\" data-id=\"de7136f\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6Ijg0MDdhYmUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Zlx1MzAwMTIwMzBcdTVlNzRcdTMwN2VcdTMwNjdcdTMwNmJcdTMwZDlcdTMwYzhcdTMwY2FcdTMwZTBcdTMwNmVcdTRlM2JcdTg5ODFcdTMwNmFcdTZhNWZcdTY4YjBcdTUyYTBcdTVkZTVcdTRmMDFcdTY5NmRcdTMwNmVcdTRlMDBcdTMwNjRcdTMwNjhcdTMwNTdcdTMwNjZcdTMwMDFcdTU2ZmRcdTk2OWJcdTVlMDJcdTU4MzRcdTMwNmJcdTRmOWJcdTdkNjZcdTMwNTlcdTMwOGJcdTMwNTNcdTMwNjhcdTMwOTJcdTc2ZWVcdTYzMDdcdTMwNTdcdTMwNjZcdTMwNDRcdTMwN2VcdTMwNTlcdTMwMDJcdTVjMDZcdTY3NjVcdTc2ODRcdTMwNmJcdTMwNmZcdTMwMDFcdTViOGNcdTYyMTBcdTMwNTdcdTMwNWZcdTZhNWZcdTY4YjBcdTg4ZmRcdTU0YzFcdTMwOTJcdTc2ZjRcdTYzYTVcdTMwYThcdTMwZjNcdTMwYzlcdTMwZTZcdTMwZmNcdTMwYjZcdTMwZmNcdTMwNmJcdTYzZDBcdTRmOWJcdTMwNTlcdTMwOGJcdTMwNTNcdTMwNjhcdTMwOTJcdTc2ZWVcdTZhMTlcdTMwNjhcdTMwNTdcdTMwNjZcdTMwNDRcdTMwN2VcdTMwNTlcdTMwMDIiLCJ0aXRsZV9jb2xvciI6IiM4NUIyM0IiLCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZSI6eyJ1bml0IjoicHgiLCJzaXplIjozNiwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodCI6eyJ1bml0IjoicHgiLCJzaXplIjo0OCwic2l6ZXMiOltdfSwic3R5bGUiOiJzdC1saW5lLWxlZnQiLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6Ii05IiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwidGl0bGVfc3BhY2VfYm90dG9tIjp7InVuaXQiOiJweCIsInNpemUiOjE3LCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzAsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjM4LCJzaXplcyI6W119LCJjdF9hbmltYXRlIjoid293IGZsaXBJblgiLCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV9tb2JpbGUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MjgsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfbW9iaWxlIjp7InVuaXQiOiJweCIsInNpemUiOjM0LCJzaXplcyI6W119fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-0c8497c wow fadeInUp elementor-widget elementor-widget-text-editor\" data-id=\"0c8497c\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>2026u5e74u307eu3067u306bu9054u6210u3059u308bu76eeu6a19:</p>tttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6IjQ3NTRlZDYiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJwcm9ncmVzc2Jhcl9saXN0IjpbeyJ0aXRsZSI6Ilx1Njc3MVx1MzBhMlx1MzBiOFx1MzBhMlx1ZmYwOFx1NjVlNVx1NjcyY1x1MzAwMVx1OTdkM1x1NTZmZFx1MzA2YVx1MzA2OVx1ZmYwOVx1ZmYxYVx1NGVhNFx1NjNkYlx1NzUyOFx1NmE1Zlx1NjhiMFx1OTBlOFx1NTRjMVx1MzAwMVx1MzBhYVx1MzBmY1x1MzBjOFx1MzBkMFx1MzBhNFx1MzA0YVx1MzA4OFx1MzA3M1x1ODFlYVx1NTJkNVx1OGVjYVx1MzA2ZVx1MzBhMlx1MzBhZlx1MzBiYlx1MzBiNVx1MzBlYVx1MzBmY1x1MzAwMVx1NmMzNFx1NzUyM1x1Njk2ZFx1NzUyOFx1MzA2ZVx1MzBkNVx1MzBhM1x1MzBjM1x1MzBjNlx1MzBhM1x1MzBmM1x1MzBiMFx1MzAwMVx1OTFkMVx1NTc4Ylx1MzAwMVx1MzA1ZFx1MzA2ZVx1NGVkNlx1MzA2ZVx1NmE1Zlx1NjhiMFx1OTBlOFx1NTRjMVx1MzA2ZVx1OGYzOFx1NTFmYVx1MzAwMiIsInByb2dyZXNzX3R5cGUiOiIiLCJwZXJjZW50Ijp7InVuaXQiOiIlIiwic2l6ZSI6MzAsInNpemVzIjpbXX0sImRpc3BsYXlfcGVyY2VudGFnZSI6ImhpZGUiLCJpbm5lcl90ZXh0IjoiV2ViIERlc2lnbmVyIiwiX2lkIjoiOGI0YmNkNiJ9LHsidGl0bGUiOiJcdTMwZThcdTMwZmNcdTMwZWRcdTMwYzNcdTMwZDFcdWZmMDhcdTMwYzlcdTMwYTRcdTMwYzRcdTMwMDFcdTMwZDZcdTMwZWJcdTMwYWNcdTMwZWFcdTMwYTJcdTMwMDFcdTMwYWFcdTMwZTlcdTMwZjNcdTMwYzBcdTMwNmFcdTMwNjlcdWZmMDlcdWZmMWFcdTgxZWFcdTUyZDVcdThlY2FcdTc1MjhcdTMwZDlcdTMwYTJcdTMwZWFcdTMwZjNcdTMwYjBcdTMwNmVcdTZjYmJcdTUxNzdcdTMwNGFcdTMwODhcdTMwNzNcdTgxZWFcdTUyZDVcdTUzMTZcdTZhNWZcdTY4YjBcdTMwNmVcdTk2ZmJcdTZjMTdcdTMwZGNcdTMwYzNcdTMwYWZcdTMwYjlcdTkwZThcdTU0YzFcdTMwNmVcdTc1MWZcdTc1MjNcdTMwMDIiLCJwcm9ncmVzc190eXBlIjoiIiwicGVyY2VudCI6eyJ1bml0IjoiJSIsInNpemUiOjEwLCJzaXplcyI6W119LCJkaXNwbGF5X3BlcmNlbnRhZ2UiOiJoaWRlIiwiaW5uZXJfdGV4dCI6IldlYiBEZXNpZ25lciIsIl9pZCI6IjZlMGY4NzcifSx7InRpdGxlIjoiXHUzMGEyXHUzMGUxXHUzMGVhXHUzMGFiXHU1NDA4XHU4ODQ2XHU1NmZkXHVmZjFhXHU1MzNiXHU3NjQyXHU2YTVmXHU1NjY4XHUzMDAxXHU1MTQ5XHU1YjY2XHU2YTVmXHU1NjY4XHUzMDAxXHU5N2YzXHU5N2ZmXHU2YTVmXHU1NjY4XHUzMDZiXHU5NWEyXHU5MDIzXHUzMDU5XHUzMDhiXHU4OGZkXHU1NGMxXHUzMDAyIiwicHJvZ3Jlc3NfdHlwZSI6IiIsInBlcmNlbnQiOnsidW5pdCI6IiUiLCJzaXplIjozMCwic2l6ZXMiOltdfSwiZGlzcGxheV9wZXJjZW50YWdlIjoic2hvdyIsIl9pZCI6IjIyMmViODEifSx7Il9pZCI6IjVlZWNjYjYiLCJ0aXRsZSI6Ilx1MzBhYVx1MzBmY1x1MzBiOVx1MzBjOFx1MzBlOVx1MzBlYVx1MzBhMlx1ZmYxYVx1Njc3Zlx1OTFkMVx1ODhmZFx1NTRjMVx1MzAwMiIsInBlcmNlbnQiOnsidW5pdCI6IiUiLCJzaXplIjo4LCJzaXplcyI6W119fSx7Il9pZCI6IjEwZTU3NTAiLCJ0aXRsZSI6Ilx1MzBkOVx1MzBjOFx1MzBjYVx1MzBlMFx1ZmYxYVx1NWMwZlx1NTc4Ylx1ODFlYVx1NTJkNVx1NTMxNlx1NmE1Zlx1NjhiMFx1MzAwMVx1MzBhYVx1MzBmY1x1MzBjOFx1MzBkMFx1MzBhNFx1MzA0YVx1MzA4OFx1MzA3M1x1ODFlYVx1NTJkNVx1OGVjYVx1MzA2ZVx1MzBkY1x1MzBlYlx1MzBjOFx1MzAwMVx1NzdmM1x1NmNiOVx1MzA0YVx1MzA4OFx1MzA3M1x1MzBhY1x1MzBiOVx1NzUyM1x1Njk2ZFx1MzA2ZVx1ODhmZFx1NTRjMVx1MzAwMiIsInBlcmNlbnQiOnsidW5pdCI6IiUiLCJzaXplIjoyMCwic2l6ZXMiOltdfX0seyJfaWQiOiJlMTdhMTk1IiwidGl0bGUiOiJcdTMwNWRcdTMwNmVcdTRlZDZcdTMwNmVcdTVlMDJcdTU4MzRcdTMwNjhcdTg4ZmRcdTU0YzFcdTMwMDIiLCJwZXJjZW50Ijp7InVuaXQiOiIlIiwic2l6ZSI6Miwic2l6ZXMiOltdfX1dLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6Ijc4IiwiaXNMaW5rZWQiOmZhbHNlfSwiX21hcmdpbl9tb2JpbGUiOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjp0cnVlfX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X3Byb2dyZXNzYmFyIn0=\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-b6145ce elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"b6145ce\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-e65d58b\" data-id=\"e65d58b\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjljZDU1ZGQiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Zlx1ODkwN1x1NjU3MFx1MzA2ZVx1Njk2ZFx1NzU0Y1x1MzA2N1x1MzBiNVx1MzBmY1x1MzBkM1x1MzBiOVx1MzA5Mlx1NjNkMFx1NGY5Ylx1MzA1N1x1MzA2Nlx1MzA0NFx1MzA3ZVx1MzA1OVx1MzAwMiIsInRpdGxlX2NvbG9yIjoiIzg1QjIzQiIsInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplIjp7InVuaXQiOiJweCIsInNpemUiOjM2LCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0Ijp7InVuaXQiOiJweCIsInNpemUiOjQ4LCJzaXplcyI6W119LCJzdHlsZSI6InN0LWxpbmUtbGVmdCIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjp0cnVlfSwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemVfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjMwLCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0X3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjozOCwic2l6ZXMiOltdfSwiY3RfYW5pbWF0ZSI6IndvdyBmYWRlSW5MZWZ0IiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemVfbW9iaWxlIjp7InVuaXQiOiJweCIsInNpemUiOjI4LCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0X21vYmlsZSI6eyJ1bml0IjoicHgiLCJzaXplIjozNCwic2l6ZXMiOltdfX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-2067062\" data-id=\"2067062\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-956a238 wow fadeInRight elementor-widget elementor-widget-text-editor\" data-id=\"956a238\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>u79c1u305fu3061u306fu5e38u306bu9867u5ba2u306eu30c7u30b6u30a4u30f3u8981u6c42u3092u6e80u305fu3057u307eu3059u3002u5916u89b3u3068u5bf8u6cd5u306fu3001u6700u3082u91cdu8981u8996u3057u3066u3044u308bu8981u7d20u3067u3059u3002</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-74328b6b elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"74328b6b\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4b9c9796\" data-id=\"4b9c9796\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjFjYTNiNmM1IiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsibGF5b3V0IjoiNCIsImxpbWl0Ijo0LCJmaWx0ZXJfZGVmYXVsdF90aXRsZSI6IkFsbCIsImNvbF9zbSI6IjEiLCJjb2xfbWQiOiIyIiwiY29sX2xnIjoiMiIsImNvbF94bCI6IjIiLCJidXR0b25fdGV4dCI6IlJlYWQgbW9yZSIsInNvdXJjZSI6WyJqYXxsYW5ndWFnZSJdLCJjdF9hbmltYXRlIjoid293IGZhZGVJblVwIiwib3JkZXIiOiJhc2MifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3Rfc2VydmljZV9ncmlkIn0=\"][elementor-element data=\"eyJpZCI6IjI5NzFiOGIzIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGV4dCI6Ilx1MzA1ZFx1MzA2ZVx1NGVkNlx1MzA2ZVx1MzBiNVx1MzBmY1x1MzBkM1x1MzBiOSIsImxpbmsiOnsidXJsIjoiXC9zZXJ2aWNlcyIsImlzX2V4dGVybmFsIjoiIiwibm9mb2xsb3ciOiIifSwiYWxpZ24iOiJjZW50ZXIiLCJidG5faWNvbiI6eyJ2YWx1ZSI6Im1hdGVyaWFsIHptZGkgem1kaS1zZXR0aW5ncyIsImxpYnJhcnkiOiJtYXRlcmlhbCJ9LCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6Ii0xMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sInN0eWxlIjoiYnRuLXByZXNldDMiLCJfYW5pbWF0aW9uIjoibm9uZSJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9idXR0b24ifQ==\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-f43d465 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"f43d465\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-5310bd3\" data-id=\"5310bd3\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImJjZmM3MzUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjdGY3X2lkIjoiOTMyIiwibGF5b3V0IjoiMiIsImN0ZjdfdGl0bGUiOiJcdThjZWFcdTU1NGZcdTMwNGNcdTMwNDJcdTMwOGFcdTMwN2VcdTMwNTlcdTMwNGJcdWZmMWYiLCJjdGY3X2Rlc2NyaXB0aW9uIjoiQ2FsbDogODAwIDI1MCAzNjkiLCJjdGY3X3Bob25lIjoiPHNwYW4+Q2FsbDo8XC9zcGFuPiAwOTY4ODYwMzg2IiwiZWxfdGl0bGUiOiJcdTg5OGJcdTdhNGRcdTMwODJcdTMwOGFcdTMwOTJcdTUzZDZcdTVmOTdcdTMwNTlcdTMwOGJcdTMwNWZcdTMwODFcdTMwNmVcdTkwMjNcdTdkNjFcdTUxNDhcdWZmMWEiLCJjdF9hbmltYXRlIjoid293IGZsaXBJblgifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY3RmNyJ9\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-a9b49c5 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"a9b49c5\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n                            <div class=\"elementor-background-overlay\"></div>n                n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-1dcb85a\" data-id=\"1dcb85a\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n                <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-6c560a6 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"6c560a6\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-e82cd67\" data-id=\"e82cd67\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6ImVmNDE1MTEiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Zlx1N2MyMVx1NTM1OFx1MzA2YVx1NGY1Y1x1Njk2ZFx1NjI0Ylx1OTgwNlx1MzA5Mlx1NjMwMVx1MzA2M1x1MzA2Nlx1MzA0NFx1MzA3ZVx1MzA1OVx1MzAwMiIsInRpdGxlX2NvbG9yIjoiI2ZmZmZmZiIsInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplIjp7InVuaXQiOiJweCIsInNpemUiOjM2LCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0Ijp7InVuaXQiOiJweCIsInNpemUiOjQ4LCJzaXplcyI6W119LCJzdHlsZSI6InN0LWxpbmUtbGVmdCIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjp0cnVlfSwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemVfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjMwLCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0X3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjozOCwic2l6ZXMiOltdfSwiY3RfYW5pbWF0ZSI6IndvdyBmYWRlSW5MZWZ0In0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-3a08737\" data-id=\"3a08737\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-7aa11c2 wow fadeInRight elementor-widget elementor-widget-text-editor\" data-id=\"7aa11c2\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>u79c1u305fu3061u306fu5e38u306bu54c1u8ceau3068u9032u6357u306bu304au3044u3066u5b89u5fc3u611fu3092u63d0u4f9bu3057u307eu3059u3002</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n        [elementor-element data=\"eyJpZCI6IjlkNWVhMzIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X2xpc3QiOlt7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi1yZXNlYXJjaCIsImxpYnJhcnkiOiJmbGF0aWNvbiJ9LCJfaWQiOiIwNTVmZWYyIiwidGl0bGUiOiJcdTc5YzFcdTMwNWZcdTMwNjFcdTMwOTJcdTYzYTJcdTMwNTkiLCJkZXNjcmlwdGlvbiI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Zlx1MzAwMVx1NTQwNFx1MzBkN1x1MzBlZFx1MzBiOFx1MzBhN1x1MzBhZlx1MzBjOFx1MzA5Mlx1N2RjZlx1NTQwOFx1NzY4NFx1MzA2Ylx1NTNkNlx1MzA4YVx1NjI3MVx1MzA0Nlx1OTFjZFx1ODk4MVx1NjAyN1x1MzA5Mlx1NzQwNlx1ODllM1x1MzA1N1x1MzA2Nlx1MzA0NFx1MzA3ZVx1MzA1OVx1MzAwMiIsImJ0bl9saW5rIjp7InVybCI6IiIsImlzX2V4dGVybmFsIjoiIiwibm9mb2xsb3ciOiIifX0seyJjdF9pY29uIjp7InZhbHVlIjoiZmxhdGljb24gZmxhdGljb24tbmV0d29yayIsImxpYnJhcnkiOiJmbGF0aWNvbiJ9LCJfaWQiOiIzOWUxNGI4IiwidGl0bGUiOiJcdTc5YzFcdTMwNWZcdTMwNjFcdTMwNjhcdTYzYTVcdTdkOWFcdTMwNTlcdTMwOGIiLCJkZXNjcmlwdGlvbiI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA0Y1x1NGVkNlx1MzA2ZVx1MzBhOFx1MzBmY1x1MzBiOFx1MzBhN1x1MzBmM1x1MzBiN1x1MzBmY1x1MzA2OFx1NzU3MFx1MzA2YVx1MzA4Ylx1NzBiOVx1MzA2Zlx1MzAwMVx1MzBhYlx1MzBiOVx1MzBiZlx1MzBkZVx1MzBhNFx1MzBiYVx1MzA1NVx1MzA4Y1x1MzA1Zlx1MzBiZFx1MzBlYVx1MzBlNVx1MzBmY1x1MzBiN1x1MzBlN1x1MzBmM1x1MzA5Mlx1NGY1Y1x1NjIxMFx1MzA1OVx1MzA4Ylx1NWMwMlx1OTU4MFx1NzdlNVx1OGI1OFx1MzA2Ylx1MzA0Mlx1MzA4YVx1MzA3ZVx1MzA1OVx1MzAwMiIsImJ0bl9saW5rIjp7InVybCI6IiIsImlzX2V4dGVybmFsIjoiIiwibm9mb2xsb3ciOiIifX0seyJjdF9pY29uIjp7InZhbHVlIjoiZmxhdGljb24gZmxhdGljb24td2FsbGV0IiwibGlicmFyeSI6ImZsYXRpY29uIn0sIl9pZCI6ImY1ZTEwZTgiLCJ0aXRsZSI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Ylx1NjUyZlx1NjI1NVx1MzA0NiIsImRlc2NyaXB0aW9uIjoiXHU3OWMxXHUzMDVmXHUzMDYxXHUzMDZmXHUzMDAxXHU1NDA0XHUzMGMxXHUzMGZjXHUzMGUwXHUzMGUxXHUzMGYzXHUzMGQwXHUzMGZjXHUzMDRjXHU4MWVhXHU1MjA2XHU4MWVhXHU4ZWFiXHUzMDZlXHU2NzAwXHU5YWQ4XHUzMDZlXHU1OWZmXHUzMDkyXHU3NmVlXHU2MzA3XHUzMDU5XHUzMDUzXHUzMDY4XHUzMDkyXHU1OTY4XHU1MmIxXHUzMDU3XHUzMDAxXHU2N2Q0XHU4ZWRmXHUzMDY3XHU1MzU0XHU1MjliXHU3Njg0XHUzMDZhXHU3NGIwXHU1ODgzXHUzMDkyXHU4MGIyXHUzMDkzXHUzMDY3XHUzMDQ0XHUzMDdlXHUzMDU5XHUzMDAyIiwiYnRuX2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9fSx7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi10YXJnZXQiLCJsaWJyYXJ5IjoiZmxhdGljb24ifSwiX2lkIjoiODgzOTk2OSIsInRpdGxlIjoiXHUzMDQyXHUzMDZhXHUzMDVmXHUzMDZlXHU1OTIyXHUzMDkyXHU1YjlmXHU3M2ZlXHUzMDU5XHUzMDhiIiwiZGVzY3JpcHRpb24iOiJcdTMwNjlcdTMwNmVcdTMwZDNcdTMwYjhcdTMwY2RcdTMwYjlcdTMwNmJcdTMwODJcdTMwMDFcdTk3NjlcdTY1YjBcdTMwNjhcdTkwMzJcdTZiNjlcdTMwOTJcdTRmYzNcdTMwNTlcdTcyZWNcdTgxZWFcdTMwNmVcdTMwYmRcdTMwZWFcdTMwZTVcdTMwZmNcdTMwYjdcdTMwZTdcdTMwZjNcdTMwNGNcdTMwNDJcdTMwOGFcdTMwN2VcdTMwNTlcdTMwMDIiLCJidG5fbGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn19XSwidGl0bGVfY29sb3IiOiIjZmZmZmZmIiwiZGVzY3JpcHRpb25fY29sb3IiOiIjRkZGRkZGIiwiY3RfYW5pbWF0ZSI6IndvdyBmYWRlSW4ifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfcHJvY2VzcyJ9\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-79ee8ab elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"79ee8ab\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4af1814\" data-id=\"4af1814\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n                <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-505fb45 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"505fb45\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-7223f1c\" data-id=\"7223f1c\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-e7c238e elementor-widget elementor-widget-google_maps\" data-id=\"e7c238e\" data-element_type=\"widget\" data-widget_type=\"google_maps.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-custom-embed\">nttt<iframe loading=\"lazy\"ntttttsrc=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"nttttttitle=\"10u00b057&#039;11.2&quot;N 106u00b045&#039;13.0&quot;E\"ntttttaria-label=\"10u00b057&#039;11.2&quot;N 106u00b045&#039;13.0&quot;E\"nttt></iframe>ntt</div>ntttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-0225539\" data-id=\"0225539\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjUxZDU0M2EiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1MzA0NFx1MzA2NFx1MzA2N1x1MzA4Mlx1MzA2OVx1MzA5M1x1MzA2YVx1NTJhOVx1MzA1MVx1MzA0Y1x1NWZjNVx1ODk4MVx1MzA2YVx1NTgzNFx1NTQwOFx1MzA2N1x1MzA4Mlx1MzAwMVx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Ylx1MzA1NFx1OTAyM1x1N2Q2MVx1MzA0Zlx1MzA2MFx1MzA1NVx1MzA0NC4uLiIsInRpdGxlX2NvbG9yIjoiIzg1QjIzQiIsIl9wYWRkaW5nIjp7InVuaXQiOiIlIiwidG9wIjoiMCIsInJpZ2h0IjoiNSIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sInRpdGxlX3NwYWNlX2JvdHRvbSI6eyJ1bml0IjoicHgiLCJzaXplIjozMywic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemVfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjMwLCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0X3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjozOCwic2l6ZXMiOltdfSwiY3RfYW5pbWF0ZSI6IndvdyBmbGlwSW5YIiwiX3BhZGRpbmdfdGFibGV0Ijp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"][elementor-element data=\"eyJpZCI6ImVkMGRjMWIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjdGY3X2lkIjoiOTc0Iiwic3R5bGVfbDEiOiJzdHlsZTIifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY3RmNyJ9\"]            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                    </div>n        </section>n        \",\"scripts\":[],\"styles\":[]}}'),(10518,2982,'_elementor_css','a:6:{s:4:\"time\";i:1742180160;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:8:\"material\";i:1;s:8:\"flaticon\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(10519,2982,'_elementor_element_cache','{\"timeout\":1746503556,\"value\":{\"content\":\"        <section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-2d2b67a elementor-section-stretched elementor-section-full_width slider-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"2d2b67a\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;}\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-no \\\">\\n                    <div class=\\\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-d1bb387\\\" data-id=\\\"d1bb387\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6ImNjODZmNGQiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJyZXZzbGlkZXJ0aXRsZSI6IkhvbWUgMSIsInNob3J0Y29kZSI6IltyZXZfc2xpZGVyIGFsaWFzPVwiaG9tZS0xXCJdW1wvcmV2X3NsaWRlcl0ifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoic2xpZGVyX3Jldm9sdXRpb24ifQ==\\\"]        <section class=\\\"elementor-section elementor-inner-section elementor-element elementor-element-2cea906 elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"2cea906\\\" data-element_type=\\\"section\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-8e117d0\\\" data-id=\\\"8e117d0\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6IjI0YjYyY2MiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Zlx1MzAwMVx1MzBkOVx1MzBjOFx1MzBjYVx1MzBlMFx1NTE2OFx1NTcxZlx1MzA0YVx1MzA4OFx1MzA3M1x1NGUxNlx1NzU0Y1x1NGUyZFx1MzA2ZVx1NmE1Zlx1NjhiMFx1NzUyM1x1Njk2ZFx1NTQxMVx1MzA1MVx1MzA2Ylx1NWU0NVx1NWU4M1x1MzA0NFx1ODhmZFx1NTRjMVx1MzA5Mlx1NjNkMFx1NGY5Ylx1MzA1N1x1MzA2Nlx1MzA0YVx1MzA4YVx1MzAwMVx1NzI3OVx1MzA2Ylx1NjVlNVx1NjcyY1x1MzAwMVx1OTdkM1x1NTZmZFx1MzAwMVx1MzBhMlx1MzBlMVx1MzBlYVx1MzBhYlx1MzAwMVx1MzBhYVx1MzBmY1x1MzBiOVx1MzBjOFx1MzBlOVx1MzBlYVx1MzBhMlx1MzA2OFx1MzA0NFx1MzA2M1x1MzA1Zlx1NGUzYlx1ODk4MVx1NWUwMlx1NTgzNFx1MzA2N1x1MzA2ZVx1NTNkNlx1NWYxNVx1MzA2Ylx1NTI5Ylx1MzA5Mlx1NTE2NVx1MzA4Y1x1MzA2Nlx1MzA0NFx1MzA3ZVx1MzA1OVx1MzAwMlx1MzA3ZVx1MzA1Zlx1MzAwMVx1MzA1M1x1MzA4Y1x1MzA4OVx1MzA2ZVx1NWUwMlx1NTgzNFx1MzA3OFx1MzA2ZVx1OGYzOFx1NTFmYVx1N2Q0Y1x1OWExM1x1MzA4Mlx1OGM0YVx1NWJjY1x1MzA2N1x1MzA1OVx1MzAwMiIsInRpdGxlX2NvbG9yIjoiIzg1QjIzQiIsInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplIjp7InVuaXQiOiJweCIsInNpemUiOjM2LCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0Ijp7InVuaXQiOiJweCIsInNpemUiOjQ4LCJzaXplcyI6W119LCJzdHlsZSI6InN0LWxpbmUtbGVmdCIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjE2IiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MjYsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjM0LCJzaXplcyI6W119LCJjdF9hbmltYXRlIjoid293IGZhZGVJblVwIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-909b449 wow fadeInUp elementor-widget elementor-widget-text-editor\\\" data-id=\\\"909b449\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>\\u79c1\\u305f\\u3061\\u306e\\u6700\\u5927\\u306e\\u5f37\\u307f\\u306f\\u3001\\u5b66\\u3076\\u3053\\u3068\\u3001\\u9769\\u65b0\\u3059\\u308b\\u3053\\u3068\\u306b\\u60c5\\u71b1\\u3092\\u6301\\u3061\\u3001\\u81ea\\u4fe1\\u3092\\u6301\\u3063\\u305f\\u82e5\\u3044\\u52b4\\u50cd\\u529b\\u306b\\u3042\\u308a\\u307e\\u3059\\u3002\\u3053\\u306e\\u30c1\\u30fc\\u30e0\\u306f\\u3001\\u5e38\\u306b\\u5b89\\u5b9a\\u3057\\u305f\\u9ad8\\u54c1\\u8cea\\u306e\\u6a5f\\u68b0\\u88fd\\u54c1\\u3092\\u591a\\u69d8\\u306b\\u88fd\\u9020\\u3059\\u308b\\u80fd\\u529b\\u3092\\u5099\\u3048\\u3066\\u3044\\u307e\\u3059\\u3002<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element data=\\\"eyJpZCI6ImM0YTIwMjgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJpbWFnZSI6eyJ1cmwiOiIiLCJpZCI6IiJ9LCJ2aWRlb19saW5rIjoiaHR0cHM6XC9cL3d3dy55b3V0dWJlLmNvbVwvd2F0Y2g\\/dj12VUNWcUxtWFNQTSIsImJ0bl92aWRlb19zdHlsZSI6InN0eWxlMyIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMzEiLCJyaWdodCI6IjM4IiwiYm90dG9tIjoiMCIsImxlZnQiOiI3OCIsImlzTGlua2VkIjpmYWxzZX0sIl9jc3NfY2xhc3NlcyI6ImVsLWlubGluZSB3b3cgZmFkZUluUmlnaHQiLCJfbWFyZ2luX3RhYmxldCI6eyJ1bml0IjoicHgiLCJ0b3AiOiIzMSIsInJpZ2h0IjoiMjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjY4IiwiaXNMaW5rZWQiOmZhbHNlfSwiX2FuaW1hdGlvbiI6InNsaWRlSW5VcCIsIl9tYXJnaW5fbW9iaWxlIjp7InVuaXQiOiJweCIsInRvcCI6IjMxIiwicmlnaHQiOiIyMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF92aWRlb19wbGF5ZXIifQ==\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-1fd7931 el-inline wow fadeInRight elementor-invisible elementor-widget elementor-widget-image\\\" data-id=\\\"1fd7931\\\" data-element_type=\\\"widget\\\" data-settings=\\\"{&quot;_animation&quot;:&quot;slideInUp&quot;}\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"150\\\" height=\\\"75\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\\\" class=\\\"attachment-full size-full wp-image-2542\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t            <\\/div>\\n        <\\/div>\\n                <div class=\\\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-4fff345\\\" data-id=\\\"4fff345\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6IjU5MGYxYmUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjo1MCwic3VmZml4IjoiKyIsInRob3VzYW5kX3NlcGFyYXRvciI6IiIsInRob3VzYW5kX3NlcGFyYXRvcl9jaGFyIjoiICIsInRpdGxlIjoiXHU5ODY3XHU1YmEyIiwic2hvd19pY29uIjoidHJ1ZSIsImNvdW50ZXJfaWNvbiI6eyJ2YWx1ZSI6Im1hdGVyaWFsIHptZGkgem1kaS1hc3NpZ25tZW50LWNoZWNrIiwibGlicmFyeSI6Im1hdGVyaWFsIn0sIm51bWJlcl90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiI0MSIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwiX2Nzc19jbGFzc2VzIjoidGV4dC1jZW50ZXItc20iLCJpY29uX3R5cGUiOiJpbWFnZSIsImljb25faW1hZ2UiOnsidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMTlcLzEyXC9jb3VudGVyLWljb24tMDEucG5nIiwiaWQiOjE1MTV9LCJfYW5pbWF0aW9uIjoibm9uZSIsImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluVXAifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY291bnRlciJ9\\\"][elementor-element data=\\\"eyJpZCI6IjdhNWYyMzkiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjoyMDAsInN1ZmZpeCI6IisiLCJ0aG91c2FuZF9zZXBhcmF0b3IiOiIiLCJ0aG91c2FuZF9zZXBhcmF0b3JfY2hhciI6IiAiLCJ0aXRsZSI6Ilx1NGViYVx1NGU4YiIsInNob3dfaWNvbiI6InRydWUiLCJjb3VudGVyX2ljb24iOnsidmFsdWUiOiJtYXRlcmlhbCB6bWRpIHptZGktYXNzaWdubWVudC1jaGVjayIsImxpYnJhcnkiOiJtYXRlcmlhbCJ9LCJudW1iZXJfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiNDEiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sIl9jc3NfY2xhc3NlcyI6InRleHQtY2VudGVyLXNtIiwiaWNvbl90eXBlIjoiaW1hZ2UiLCJpY29uX2ltYWdlIjp7InVybCI6Imh0dHA6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDE5XC8xMlwvY291bnRlci1pY29uLTAyLnBuZyIsImlkIjoxNTE2fSwiX2FuaW1hdGlvbiI6Im5vbmUiLCJjdF9hbmltYXRlIjoid293IGZhZGVJblVwIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2NvdW50ZXIifQ==\\\"][elementor-element data=\\\"eyJpZCI6IjA0NTMxYzgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjoyMDAwLCJzdWZmaXgiOiIrIiwidGhvdXNhbmRfc2VwYXJhdG9yIjoiIiwidGhvdXNhbmRfc2VwYXJhdG9yX2NoYXIiOiIgIiwidGl0bGUiOiJcdTVlNzRcdTk1OTNcdTZjZThcdTY1ODdcdTY1NzAiLCJzaG93X2ljb24iOiJ0cnVlIiwiY291bnRlcl9pY29uIjp7InZhbHVlIjoibWF0ZXJpYWwgem1kaSB6bWRpLWFzc2lnbm1lbnQtY2hlY2siLCJsaWJyYXJ5IjoibWF0ZXJpYWwifSwibnVtYmVyX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjQxIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJfY3NzX2NsYXNzZXMiOiJ0ZXh0LWNlbnRlci1zbSIsImljb25fdHlwZSI6ImltYWdlIiwiaWNvbl9pbWFnZSI6eyJ1cmwiOiJodHRwOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAxOVwvMTJcL2NvdW50ZXItaWNvbi0wMy5wbmciLCJpZCI6MTUxN30sIl9hbmltYXRpb24iOiJub25lIiwiY3RfYW5pbWF0ZSI6IndvdyBmYWRlSW5VcCJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9jb3VudGVyIn0=\\\"]            <\\/div>\\n        <\\/div>\\n                <div class=\\\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-348ba48\\\" data-id=\\\"348ba48\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        \\t\\t<div class=\\\"elementor-element elementor-element-ed7e1d0 wow fadeInUp elementor-widget elementor-widget-image\\\" data-id=\\\"ed7e1d0\\\" data-element_type=\\\"widget\\\" data-settings=\\\"{&quot;_animation&quot;:&quot;none&quot;}\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"http:\\/\\/fe2tech.trustpass.alibaba.com\\/\\\" target=\\\"_blank\\\" rel=\\\"nofollow\\\">\\n\\t\\t\\t\\t\\t\\t\\t<img width=\\\"600\\\" height=\\\"400\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\\\" class=\\\"attachment-full size-full wp-image-2571\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-3b54db6 wow fadeInUp elementor-widget elementor-widget-text-editor\\\" data-id=\\\"3b54db6\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>\\u79c1\\u305f\\u3061\\u306f\\u3001\\u4e16\\u754c\\u4e2d\\u304b\\u3089\\u306e\\u6ce8\\u6587\\u3068\\u63a5\\u7d9a\\u3059\\u308b\\u305f\\u3081\\u306bAlibaba\\u306b\\u5e97\\u8217\\u3092\\u958b\\u8a2d\\u3057\\u59cb\\u3081\\u307e\\u3057\\u305f\\u3002<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                    <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                <section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-8b70e78 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"8b70e78\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-c2b95bd\\\" data-id=\\\"c2b95bd\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        \\t\\t<div class=\\\"elementor-element elementor-element-b5a8ba3 elementor-widget elementor-widget-image\\\" data-id=\\\"b5a8ba3\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"2000\\\" height=\\\"2000\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\\\" class=\\\"attachment-full size-full wp-image-2268\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-0e89391 elementor-widget elementor-widget-image\\\" data-id=\\\"0e89391\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"1280\\\" height=\\\"1026\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\\\" class=\\\"attachment-full size-full wp-image-2559\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t            <\\/div>\\n        <\\/div>\\n                <div class=\\\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-de7136f\\\" data-id=\\\"de7136f\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6Ijg0MDdhYmUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Zlx1MzAwMTIwMzBcdTVlNzRcdTMwN2VcdTMwNjdcdTMwNmJcdTMwZDlcdTMwYzhcdTMwY2FcdTMwZTBcdTMwNmVcdTRlM2JcdTg5ODFcdTMwNmFcdTZhNWZcdTY4YjBcdTUyYTBcdTVkZTVcdTRmMDFcdTY5NmRcdTMwNmVcdTRlMDBcdTMwNjRcdTMwNjhcdTMwNTdcdTMwNjZcdTMwMDFcdTU2ZmRcdTk2OWJcdTVlMDJcdTU4MzRcdTMwNmJcdTRmOWJcdTdkNjZcdTMwNTlcdTMwOGJcdTMwNTNcdTMwNjhcdTMwOTJcdTc2ZWVcdTYzMDdcdTMwNTdcdTMwNjZcdTMwNDRcdTMwN2VcdTMwNTlcdTMwMDJcdTVjMDZcdTY3NjVcdTc2ODRcdTMwNmJcdTMwNmZcdTMwMDFcdTViOGNcdTYyMTBcdTMwNTdcdTMwNWZcdTZhNWZcdTY4YjBcdTg4ZmRcdTU0YzFcdTMwOTJcdTc2ZjRcdTYzYTVcdTMwYThcdTMwZjNcdTMwYzlcdTMwZTZcdTMwZmNcdTMwYjZcdTMwZmNcdTMwNmJcdTYzZDBcdTRmOWJcdTMwNTlcdTMwOGJcdTMwNTNcdTMwNjhcdTMwOTJcdTc2ZWVcdTZhMTlcdTMwNjhcdTMwNTdcdTMwNjZcdTMwNDRcdTMwN2VcdTMwNTlcdTMwMDIiLCJ0aXRsZV9jb2xvciI6IiM4NUIyM0IiLCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZSI6eyJ1bml0IjoicHgiLCJzaXplIjozNiwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodCI6eyJ1bml0IjoicHgiLCJzaXplIjo0OCwic2l6ZXMiOltdfSwic3R5bGUiOiJzdC1saW5lLWxlZnQiLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6Ii05IiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwidGl0bGVfc3BhY2VfYm90dG9tIjp7InVuaXQiOiJweCIsInNpemUiOjE3LCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzAsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjM4LCJzaXplcyI6W119LCJjdF9hbmltYXRlIjoid293IGZsaXBJblgiLCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV9tb2JpbGUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MjgsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfbW9iaWxlIjp7InVuaXQiOiJweCIsInNpemUiOjM0LCJzaXplcyI6W119fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-0c8497c wow fadeInUp elementor-widget elementor-widget-text-editor\\\" data-id=\\\"0c8497c\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>2026\\u5e74\\u307e\\u3067\\u306b\\u9054\\u6210\\u3059\\u308b\\u76ee\\u6a19:<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element data=\\\"eyJpZCI6IjQ3NTRlZDYiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJwcm9ncmVzc2Jhcl9saXN0IjpbeyJ0aXRsZSI6Ilx1Njc3MVx1MzBhMlx1MzBiOFx1MzBhMlx1ZmYwOFx1NjVlNVx1NjcyY1x1MzAwMVx1OTdkM1x1NTZmZFx1MzA2YVx1MzA2OVx1ZmYwOVx1ZmYxYVx1NGVhNFx1NjNkYlx1NzUyOFx1NmE1Zlx1NjhiMFx1OTBlOFx1NTRjMVx1MzAwMVx1MzBhYVx1MzBmY1x1MzBjOFx1MzBkMFx1MzBhNFx1MzA0YVx1MzA4OFx1MzA3M1x1ODFlYVx1NTJkNVx1OGVjYVx1MzA2ZVx1MzBhMlx1MzBhZlx1MzBiYlx1MzBiNVx1MzBlYVx1MzBmY1x1MzAwMVx1NmMzNFx1NzUyM1x1Njk2ZFx1NzUyOFx1MzA2ZVx1MzBkNVx1MzBhM1x1MzBjM1x1MzBjNlx1MzBhM1x1MzBmM1x1MzBiMFx1MzAwMVx1OTFkMVx1NTc4Ylx1MzAwMVx1MzA1ZFx1MzA2ZVx1NGVkNlx1MzA2ZVx1NmE1Zlx1NjhiMFx1OTBlOFx1NTRjMVx1MzA2ZVx1OGYzOFx1NTFmYVx1MzAwMiIsInByb2dyZXNzX3R5cGUiOiIiLCJwZXJjZW50Ijp7InVuaXQiOiIlIiwic2l6ZSI6MzAsInNpemVzIjpbXX0sImRpc3BsYXlfcGVyY2VudGFnZSI6ImhpZGUiLCJpbm5lcl90ZXh0IjoiV2ViIERlc2lnbmVyIiwiX2lkIjoiOGI0YmNkNiJ9LHsidGl0bGUiOiJcdTMwZThcdTMwZmNcdTMwZWRcdTMwYzNcdTMwZDFcdWZmMDhcdTMwYzlcdTMwYTRcdTMwYzRcdTMwMDFcdTMwZDZcdTMwZWJcdTMwYWNcdTMwZWFcdTMwYTJcdTMwMDFcdTMwYWFcdTMwZTlcdTMwZjNcdTMwYzBcdTMwNmFcdTMwNjlcdWZmMDlcdWZmMWFcdTgxZWFcdTUyZDVcdThlY2FcdTc1MjhcdTMwZDlcdTMwYTJcdTMwZWFcdTMwZjNcdTMwYjBcdTMwNmVcdTZjYmJcdTUxNzdcdTMwNGFcdTMwODhcdTMwNzNcdTgxZWFcdTUyZDVcdTUzMTZcdTZhNWZcdTY4YjBcdTMwNmVcdTk2ZmJcdTZjMTdcdTMwZGNcdTMwYzNcdTMwYWZcdTMwYjlcdTkwZThcdTU0YzFcdTMwNmVcdTc1MWZcdTc1MjNcdTMwMDIiLCJwcm9ncmVzc190eXBlIjoiIiwicGVyY2VudCI6eyJ1bml0IjoiJSIsInNpemUiOjEwLCJzaXplcyI6W119LCJkaXNwbGF5X3BlcmNlbnRhZ2UiOiJoaWRlIiwiaW5uZXJfdGV4dCI6IldlYiBEZXNpZ25lciIsIl9pZCI6IjZlMGY4NzcifSx7InRpdGxlIjoiXHUzMGEyXHUzMGUxXHUzMGVhXHUzMGFiXHU1NDA4XHU4ODQ2XHU1NmZkXHVmZjFhXHU1MzNiXHU3NjQyXHU2YTVmXHU1NjY4XHUzMDAxXHU1MTQ5XHU1YjY2XHU2YTVmXHU1NjY4XHUzMDAxXHU5N2YzXHU5N2ZmXHU2YTVmXHU1NjY4XHUzMDZiXHU5NWEyXHU5MDIzXHUzMDU5XHUzMDhiXHU4OGZkXHU1NGMxXHUzMDAyIiwicHJvZ3Jlc3NfdHlwZSI6IiIsInBlcmNlbnQiOnsidW5pdCI6IiUiLCJzaXplIjozMCwic2l6ZXMiOltdfSwiZGlzcGxheV9wZXJjZW50YWdlIjoic2hvdyIsIl9pZCI6IjIyMmViODEifSx7Il9pZCI6IjVlZWNjYjYiLCJ0aXRsZSI6Ilx1MzBhYVx1MzBmY1x1MzBiOVx1MzBjOFx1MzBlOVx1MzBlYVx1MzBhMlx1ZmYxYVx1Njc3Zlx1OTFkMVx1ODhmZFx1NTRjMVx1MzAwMiIsInBlcmNlbnQiOnsidW5pdCI6IiUiLCJzaXplIjo4LCJzaXplcyI6W119fSx7Il9pZCI6IjEwZTU3NTAiLCJ0aXRsZSI6Ilx1MzBkOVx1MzBjOFx1MzBjYVx1MzBlMFx1ZmYxYVx1NWMwZlx1NTc4Ylx1ODFlYVx1NTJkNVx1NTMxNlx1NmE1Zlx1NjhiMFx1MzAwMVx1MzBhYVx1MzBmY1x1MzBjOFx1MzBkMFx1MzBhNFx1MzA0YVx1MzA4OFx1MzA3M1x1ODFlYVx1NTJkNVx1OGVjYVx1MzA2ZVx1MzBkY1x1MzBlYlx1MzBjOFx1MzAwMVx1NzdmM1x1NmNiOVx1MzA0YVx1MzA4OFx1MzA3M1x1MzBhY1x1MzBiOVx1NzUyM1x1Njk2ZFx1MzA2ZVx1ODhmZFx1NTRjMVx1MzAwMiIsInBlcmNlbnQiOnsidW5pdCI6IiUiLCJzaXplIjoyMCwic2l6ZXMiOltdfX0seyJfaWQiOiJlMTdhMTk1IiwidGl0bGUiOiJcdTMwNWRcdTMwNmVcdTRlZDZcdTMwNmVcdTVlMDJcdTU4MzRcdTMwNjhcdTg4ZmRcdTU0YzFcdTMwMDIiLCJwZXJjZW50Ijp7InVuaXQiOiIlIiwic2l6ZSI6Miwic2l6ZXMiOltdfX1dLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6Ijc4IiwiaXNMaW5rZWQiOmZhbHNlfSwiX21hcmdpbl9tb2JpbGUiOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjp0cnVlfX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X3Byb2dyZXNzYmFyIn0=\\\"]            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                <section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-b6145ce elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"b6145ce\\\" data-element_type=\\\"section\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-e65d58b\\\" data-id=\\\"e65d58b\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6IjljZDU1ZGQiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Zlx1ODkwN1x1NjU3MFx1MzA2ZVx1Njk2ZFx1NzU0Y1x1MzA2N1x1MzBiNVx1MzBmY1x1MzBkM1x1MzBiOVx1MzA5Mlx1NjNkMFx1NGY5Ylx1MzA1N1x1MzA2Nlx1MzA0NFx1MzA3ZVx1MzA1OVx1MzAwMiIsInRpdGxlX2NvbG9yIjoiIzg1QjIzQiIsInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplIjp7InVuaXQiOiJweCIsInNpemUiOjM2LCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0Ijp7InVuaXQiOiJweCIsInNpemUiOjQ4LCJzaXplcyI6W119LCJzdHlsZSI6InN0LWxpbmUtbGVmdCIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjp0cnVlfSwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemVfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjMwLCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0X3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjozOCwic2l6ZXMiOltdfSwiY3RfYW5pbWF0ZSI6IndvdyBmYWRlSW5MZWZ0IiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemVfbW9iaWxlIjp7InVuaXQiOiJweCIsInNpemUiOjI4LCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0X21vYmlsZSI6eyJ1bml0IjoicHgiLCJzaXplIjozNCwic2l6ZXMiOltdfX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\\\"]            <\\/div>\\n        <\\/div>\\n                <div class=\\\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-2067062\\\" data-id=\\\"2067062\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        \\t\\t<div class=\\\"elementor-element elementor-element-956a238 wow fadeInRight elementor-widget elementor-widget-text-editor\\\" data-id=\\\"956a238\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>\\u79c1\\u305f\\u3061\\u306f\\u5e38\\u306b\\u9867\\u5ba2\\u306e\\u30c7\\u30b6\\u30a4\\u30f3\\u8981\\u6c42\\u3092\\u6e80\\u305f\\u3057\\u307e\\u3059\\u3002\\u5916\\u89b3\\u3068\\u5bf8\\u6cd5\\u306f\\u3001\\u6700\\u3082\\u91cd\\u8981\\u8996\\u3057\\u3066\\u3044\\u308b\\u8981\\u7d20\\u3067\\u3059\\u3002<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                <section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-74328b6b elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"74328b6b\\\" data-element_type=\\\"section\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4b9c9796\\\" data-id=\\\"4b9c9796\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6IjFjYTNiNmM1IiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsibGF5b3V0IjoiNCIsImxpbWl0Ijo0LCJmaWx0ZXJfZGVmYXVsdF90aXRsZSI6IkFsbCIsImNvbF9zbSI6IjEiLCJjb2xfbWQiOiIyIiwiY29sX2xnIjoiMiIsImNvbF94bCI6IjIiLCJidXR0b25fdGV4dCI6IlJlYWQgbW9yZSIsInNvdXJjZSI6WyJqYXxsYW5ndWFnZSJdLCJjdF9hbmltYXRlIjoid293IGZhZGVJblVwIiwib3JkZXIiOiJhc2MifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3Rfc2VydmljZV9ncmlkIn0=\\\"][elementor-element data=\\\"eyJpZCI6IjI5NzFiOGIzIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGV4dCI6Ilx1MzA1ZFx1MzA2ZVx1NGVkNlx1MzA2ZVx1MzBiNVx1MzBmY1x1MzBkM1x1MzBiOSIsImxpbmsiOnsidXJsIjoiXC9zZXJ2aWNlcyIsImlzX2V4dGVybmFsIjoiIiwibm9mb2xsb3ciOiIifSwiYWxpZ24iOiJjZW50ZXIiLCJidG5faWNvbiI6eyJ2YWx1ZSI6Im1hdGVyaWFsIHptZGkgem1kaS1zZXR0aW5ncyIsImxpYnJhcnkiOiJtYXRlcmlhbCJ9LCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6Ii0xMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sInN0eWxlIjoiYnRuLXByZXNldDMiLCJfYW5pbWF0aW9uIjoibm9uZSJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9idXR0b24ifQ==\\\"]            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                <section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-f43d465 elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"f43d465\\\" data-element_type=\\\"section\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-5310bd3\\\" data-id=\\\"5310bd3\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6ImJjZmM3MzUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjdGY3X2lkIjoiOTMyIiwibGF5b3V0IjoiMiIsImN0ZjdfdGl0bGUiOiJcdThjZWFcdTU1NGZcdTMwNGNcdTMwNDJcdTMwOGFcdTMwN2VcdTMwNTlcdTMwNGJcdWZmMWYiLCJjdGY3X2Rlc2NyaXB0aW9uIjoiQ2FsbDogODAwIDI1MCAzNjkiLCJjdGY3X3Bob25lIjoiPHNwYW4+Q2FsbDo8XC9zcGFuPiAwOTY4ODYwMzg2IiwiZWxfdGl0bGUiOiJcdTg5OGJcdTdhNGRcdTMwODJcdTMwOGFcdTMwOTJcdTUzZDZcdTVmOTdcdTMwNTlcdTMwOGJcdTMwNWZcdTMwODFcdTMwNmVcdTkwMjNcdTdkNjFcdTUxNDhcdWZmMWEiLCJjdF9hbmltYXRlIjoid293IGZsaXBJblgifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY3RmNyJ9\\\"]            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                <section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-a9b49c5 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"a9b49c5\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n                            <div class=\\\"elementor-background-overlay\\\"><\\/div>\\n                \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-1dcb85a\\\" data-id=\\\"1dcb85a\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n                <section class=\\\"elementor-section elementor-inner-section elementor-element elementor-element-6c560a6 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"6c560a6\\\" data-element_type=\\\"section\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-e82cd67\\\" data-id=\\\"e82cd67\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6ImVmNDE1MTEiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Zlx1N2MyMVx1NTM1OFx1MzA2YVx1NGY1Y1x1Njk2ZFx1NjI0Ylx1OTgwNlx1MzA5Mlx1NjMwMVx1MzA2M1x1MzA2Nlx1MzA0NFx1MzA3ZVx1MzA1OVx1MzAwMiIsInRpdGxlX2NvbG9yIjoiI2ZmZmZmZiIsInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplIjp7InVuaXQiOiJweCIsInNpemUiOjM2LCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0Ijp7InVuaXQiOiJweCIsInNpemUiOjQ4LCJzaXplcyI6W119LCJzdHlsZSI6InN0LWxpbmUtbGVmdCIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjp0cnVlfSwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemVfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjMwLCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0X3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjozOCwic2l6ZXMiOltdfSwiY3RfYW5pbWF0ZSI6IndvdyBmYWRlSW5MZWZ0In0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\\\"]            <\\/div>\\n        <\\/div>\\n                <div class=\\\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-3a08737\\\" data-id=\\\"3a08737\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        \\t\\t<div class=\\\"elementor-element elementor-element-7aa11c2 wow fadeInRight elementor-widget elementor-widget-text-editor\\\" data-id=\\\"7aa11c2\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>\\u79c1\\u305f\\u3061\\u306f\\u5e38\\u306b\\u54c1\\u8cea\\u3068\\u9032\\u6357\\u306b\\u304a\\u3044\\u3066\\u5b89\\u5fc3\\u611f\\u3092\\u63d0\\u4f9b\\u3057\\u307e\\u3059\\u3002<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n        [elementor-element data=\\\"eyJpZCI6IjlkNWVhMzIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X2xpc3QiOlt7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi1yZXNlYXJjaCIsImxpYnJhcnkiOiJmbGF0aWNvbiJ9LCJfaWQiOiIwNTVmZWYyIiwidGl0bGUiOiJcdTc5YzFcdTMwNWZcdTMwNjFcdTMwOTJcdTYzYTJcdTMwNTkiLCJkZXNjcmlwdGlvbiI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Zlx1MzAwMVx1NTQwNFx1MzBkN1x1MzBlZFx1MzBiOFx1MzBhN1x1MzBhZlx1MzBjOFx1MzA5Mlx1N2RjZlx1NTQwOFx1NzY4NFx1MzA2Ylx1NTNkNlx1MzA4YVx1NjI3MVx1MzA0Nlx1OTFjZFx1ODk4MVx1NjAyN1x1MzA5Mlx1NzQwNlx1ODllM1x1MzA1N1x1MzA2Nlx1MzA0NFx1MzA3ZVx1MzA1OVx1MzAwMiIsImJ0bl9saW5rIjp7InVybCI6IiIsImlzX2V4dGVybmFsIjoiIiwibm9mb2xsb3ciOiIifX0seyJjdF9pY29uIjp7InZhbHVlIjoiZmxhdGljb24gZmxhdGljb24tbmV0d29yayIsImxpYnJhcnkiOiJmbGF0aWNvbiJ9LCJfaWQiOiIzOWUxNGI4IiwidGl0bGUiOiJcdTc5YzFcdTMwNWZcdTMwNjFcdTMwNjhcdTYzYTVcdTdkOWFcdTMwNTlcdTMwOGIiLCJkZXNjcmlwdGlvbiI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA0Y1x1NGVkNlx1MzA2ZVx1MzBhOFx1MzBmY1x1MzBiOFx1MzBhN1x1MzBmM1x1MzBiN1x1MzBmY1x1MzA2OFx1NzU3MFx1MzA2YVx1MzA4Ylx1NzBiOVx1MzA2Zlx1MzAwMVx1MzBhYlx1MzBiOVx1MzBiZlx1MzBkZVx1MzBhNFx1MzBiYVx1MzA1NVx1MzA4Y1x1MzA1Zlx1MzBiZFx1MzBlYVx1MzBlNVx1MzBmY1x1MzBiN1x1MzBlN1x1MzBmM1x1MzA5Mlx1NGY1Y1x1NjIxMFx1MzA1OVx1MzA4Ylx1NWMwMlx1OTU4MFx1NzdlNVx1OGI1OFx1MzA2Ylx1MzA0Mlx1MzA4YVx1MzA3ZVx1MzA1OVx1MzAwMiIsImJ0bl9saW5rIjp7InVybCI6IiIsImlzX2V4dGVybmFsIjoiIiwibm9mb2xsb3ciOiIifX0seyJjdF9pY29uIjp7InZhbHVlIjoiZmxhdGljb24gZmxhdGljb24td2FsbGV0IiwibGlicmFyeSI6ImZsYXRpY29uIn0sIl9pZCI6ImY1ZTEwZTgiLCJ0aXRsZSI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Ylx1NjUyZlx1NjI1NVx1MzA0NiIsImRlc2NyaXB0aW9uIjoiXHU3OWMxXHUzMDVmXHUzMDYxXHUzMDZmXHUzMDAxXHU1NDA0XHUzMGMxXHUzMGZjXHUzMGUwXHUzMGUxXHUzMGYzXHUzMGQwXHUzMGZjXHUzMDRjXHU4MWVhXHU1MjA2XHU4MWVhXHU4ZWFiXHUzMDZlXHU2NzAwXHU5YWQ4XHUzMDZlXHU1OWZmXHUzMDkyXHU3NmVlXHU2MzA3XHUzMDU5XHUzMDUzXHUzMDY4XHUzMDkyXHU1OTY4XHU1MmIxXHUzMDU3XHUzMDAxXHU2N2Q0XHU4ZWRmXHUzMDY3XHU1MzU0XHU1MjliXHU3Njg0XHUzMDZhXHU3NGIwXHU1ODgzXHUzMDkyXHU4MGIyXHUzMDkzXHUzMDY3XHUzMDQ0XHUzMDdlXHUzMDU5XHUzMDAyIiwiYnRuX2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9fSx7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi10YXJnZXQiLCJsaWJyYXJ5IjoiZmxhdGljb24ifSwiX2lkIjoiODgzOTk2OSIsInRpdGxlIjoiXHUzMDQyXHUzMDZhXHUzMDVmXHUzMDZlXHU1OTIyXHUzMDkyXHU1YjlmXHU3M2ZlXHUzMDU5XHUzMDhiIiwiZGVzY3JpcHRpb24iOiJcdTMwNjlcdTMwNmVcdTMwZDNcdTMwYjhcdTMwY2RcdTMwYjlcdTMwNmJcdTMwODJcdTMwMDFcdTk3NjlcdTY1YjBcdTMwNjhcdTkwMzJcdTZiNjlcdTMwOTJcdTRmYzNcdTMwNTlcdTcyZWNcdTgxZWFcdTMwNmVcdTMwYmRcdTMwZWFcdTMwZTVcdTMwZmNcdTMwYjdcdTMwZTdcdTMwZjNcdTMwNGNcdTMwNDJcdTMwOGFcdTMwN2VcdTMwNTlcdTMwMDIiLCJidG5fbGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn19XSwidGl0bGVfY29sb3IiOiIjZmZmZmZmIiwiZGVzY3JpcHRpb25fY29sb3IiOiIjRkZGRkZGIiwiY3RfYW5pbWF0ZSI6IndvdyBmYWRlSW4ifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfcHJvY2VzcyJ9\\\"]            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                <section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-79ee8ab elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"79ee8ab\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4af1814\\\" data-id=\\\"4af1814\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n                <section class=\\\"elementor-section elementor-inner-section elementor-element elementor-element-505fb45 elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"505fb45\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-7223f1c\\\" data-id=\\\"7223f1c\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        \\t\\t<div class=\\\"elementor-element elementor-element-e7c238e elementor-widget elementor-widget-google_maps\\\" data-id=\\\"e7c238e\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"google_maps.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-custom-embed\\\">\\n\\t\\t\\t<iframe loading=\\\"lazy\\\"\\n\\t\\t\\t\\t\\tsrc=\\\"https:\\/\\/maps.google.com\\/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\\\"\\n\\t\\t\\t\\t\\ttitle=\\\"10\\u00b057&#039;11.2&quot;N 106\\u00b045&#039;13.0&quot;E\\\"\\n\\t\\t\\t\\t\\taria-label=\\\"10\\u00b057&#039;11.2&quot;N 106\\u00b045&#039;13.0&quot;E\\\"\\n\\t\\t\\t><\\/iframe>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t            <\\/div>\\n        <\\/div>\\n                <div class=\\\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-0225539\\\" data-id=\\\"0225539\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6IjUxZDU0M2EiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1MzA0NFx1MzA2NFx1MzA2N1x1MzA4Mlx1MzA2OVx1MzA5M1x1MzA2YVx1NTJhOVx1MzA1MVx1MzA0Y1x1NWZjNVx1ODk4MVx1MzA2YVx1NTgzNFx1NTQwOFx1MzA2N1x1MzA4Mlx1MzAwMVx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Ylx1MzA1NFx1OTAyM1x1N2Q2MVx1MzA0Zlx1MzA2MFx1MzA1NVx1MzA0NC4uLiIsInRpdGxlX2NvbG9yIjoiIzg1QjIzQiIsIl9wYWRkaW5nIjp7InVuaXQiOiIlIiwidG9wIjoiMCIsInJpZ2h0IjoiNSIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sInRpdGxlX3NwYWNlX2JvdHRvbSI6eyJ1bml0IjoicHgiLCJzaXplIjozMywic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemVfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjMwLCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0X3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjozOCwic2l6ZXMiOltdfSwiY3RfYW5pbWF0ZSI6IndvdyBmbGlwSW5YIiwiX3BhZGRpbmdfdGFibGV0Ijp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\\\"][elementor-element data=\\\"eyJpZCI6ImVkMGRjMWIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjdGY3X2lkIjoiOTc0Iiwic3R5bGVfbDEiOiJzdHlsZTIifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY3RmNyJ9\\\"]            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                    <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n        \",\"scripts\":[],\"styles\":[]}}'),(10520,2973,'_elementor_css','a:6:{s:4:\"time\";i:1742180170;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:8:\"material\";i:1;s:8:\"flaticon\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(10521,2973,'_elementor_element_cache','{\"timeout\":1746457585,\"value\":{\"content\":\"        <section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-2d2b67a elementor-section-stretched elementor-section-full_width slider-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"2d2b67a\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;}\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-no \\\">\\n                    <div class=\\\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-d1bb387\\\" data-id=\\\"d1bb387\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6ImNjODZmNGQiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJyZXZzbGlkZXJ0aXRsZSI6IkhvbWUgMSIsInNob3J0Y29kZSI6IltyZXZfc2xpZGVyIGFsaWFzPVwiaG9tZS0xXCJdW1wvcmV2X3NsaWRlcl0ifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoic2xpZGVyX3Jldm9sdXRpb24ifQ==\\\"]        <section class=\\\"elementor-section elementor-inner-section elementor-element elementor-element-2cea906 elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"2cea906\\\" data-element_type=\\\"section\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-8e117d0\\\" data-id=\\\"8e117d0\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6IjI0YjYyY2MiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkNoXHUwMGZhbmcgdFx1MDBmNGkgY3VuZyBjXHUxZWE1cCBuaGlcdTFlYzF1IGxvXHUxZWExaSBzXHUxZWEzbiBwaFx1MWVhOW0gY2hvIG5nXHUwMGUwbmggY1x1MDBmNG5nIG5naGlcdTFlYzdwIGNcdTAxYTEga2hcdTAwZWQgdHJcdTAwZWFuIHRvXHUwMGUwbiBWaVx1MWVjN3QgTmFtIHZcdTAwZTAgcXVcdTFlZDFjIHRcdTFlYmYsIFx1MDExMVx1MWViN2MgYmlcdTFlYzd0IHRcdTFlYTFpIGNcdTAwZTFjIHRoXHUxZWNiIHRyXHUwMWIwXHUxZWRkbmcgdHJcdTFlY2RuZyBcdTAxMTFpXHUxZWMzbSBuaFx1MDFiMCBOaFx1MWVhZHQgQlx1MWVhM24sIEhcdTAwZTBuIFF1XHUxZWQxYywgSG9hIEtcdTFlZjMgdlx1MDBlMCBcdTAwZGFjLiBDaFx1MDBmYW5nIHRcdTAwZjRpIGNcdTAxNjluZyBjXHUwMGYzIGtpbmggbmdoaVx1MWVjN20geHVcdTFlYTV0IGtoXHUxZWE5dSBcdTAxMTFcdTFlYmZuIGNcdTAwZTFjIHRoXHUxZWNiIHRyXHUwMWIwXHUxZWRkbmcgblx1MDBlMHkuIiwidGl0bGVfY29sb3IiOiIjODVCMjNCIiwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzYsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHQiOnsidW5pdCI6InB4Iiwic2l6ZSI6NDgsInNpemVzIjpbXX0sInN0eWxlIjoic3QtbGluZS1sZWZ0IiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMTYiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjoyNiwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzQsInNpemVzIjpbXX0sImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluVXAifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-909b449 wow fadeInUp elementor-widget elementor-widget-text-editor\\\" data-id=\\\"909b449\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>Th\\u1ebf m\\u1ea1nh l\\u1edbn nh\\u1ea5t c\\u1ee7a ch\\u00fang t\\u00f4i n\\u1eb1m \\u1edf \\u0111\\u1ed9i ng\\u0169 nh\\u00e2n l\\u1ef1c tr\\u1ebb trung, \\u0111am m\\u00ea h\\u1ecdc h\\u1ecfi, s\\u00e1ng t\\u1ea1o v\\u00e0 t\\u1ef1 tin, c\\u00f3 kh\\u1ea3 n\\u0103ng s\\u1ea3n xu\\u1ea5t \\u0111a d\\u1ea1ng c\\u00e1c s\\u1ea3n ph\\u1ea9m c\\u01a1 kh\\u00ed v\\u1edbi ch\\u1ea5t l\\u01b0\\u1ee3ng lu\\u00f4n \\u1ed5n \\u0111\\u1ecbnh.<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element data=\\\"eyJpZCI6ImM0YTIwMjgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJpbWFnZSI6eyJ1cmwiOiIiLCJpZCI6IiJ9LCJ2aWRlb19saW5rIjoiaHR0cHM6XC9cL3d3dy55b3V0dWJlLmNvbVwvd2F0Y2g\\/dj12VUNWcUxtWFNQTSIsImJ0bl92aWRlb19zdHlsZSI6InN0eWxlMyIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMzEiLCJyaWdodCI6IjM4IiwiYm90dG9tIjoiMCIsImxlZnQiOiI3OCIsImlzTGlua2VkIjpmYWxzZX0sIl9jc3NfY2xhc3NlcyI6ImVsLWlubGluZSB3b3cgZmFkZUluUmlnaHQiLCJfbWFyZ2luX3RhYmxldCI6eyJ1bml0IjoicHgiLCJ0b3AiOiIzMSIsInJpZ2h0IjoiMjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjY4IiwiaXNMaW5rZWQiOmZhbHNlfSwiX2FuaW1hdGlvbiI6InNsaWRlSW5VcCIsIl9tYXJnaW5fbW9iaWxlIjp7InVuaXQiOiJweCIsInRvcCI6IjMxIiwicmlnaHQiOiIyMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF92aWRlb19wbGF5ZXIifQ==\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-1fd7931 el-inline wow fadeInRight elementor-invisible elementor-widget elementor-widget-image\\\" data-id=\\\"1fd7931\\\" data-element_type=\\\"widget\\\" data-settings=\\\"{&quot;_animation&quot;:&quot;slideInUp&quot;}\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"150\\\" height=\\\"75\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature.png\\\" class=\\\"attachment-full size-full wp-image-2542\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t            <\\/div>\\n        <\\/div>\\n                <div class=\\\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-4fff345\\\" data-id=\\\"4fff345\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6IjU5MGYxYmUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjo1MCwic3VmZml4IjoiKyIsInRob3VzYW5kX3NlcGFyYXRvciI6IiIsInRob3VzYW5kX3NlcGFyYXRvcl9jaGFyIjoiICIsInRpdGxlIjoiS2hcdTAwZTFjaCBoXHUwMGUwbmciLCJzaG93X2ljb24iOiJ0cnVlIiwiY291bnRlcl9pY29uIjp7InZhbHVlIjoibWF0ZXJpYWwgem1kaSB6bWRpLWFzc2lnbm1lbnQtY2hlY2siLCJsaWJyYXJ5IjoibWF0ZXJpYWwifSwibnVtYmVyX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjQxIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJfY3NzX2NsYXNzZXMiOiJ0ZXh0LWNlbnRlci1zbSIsImljb25fdHlwZSI6ImltYWdlIiwiaWNvbl9pbWFnZSI6eyJ1cmwiOiJodHRwOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAxOVwvMTJcL2NvdW50ZXItaWNvbi0wMS5wbmciLCJpZCI6MTUxNX0sIl9hbmltYXRpb24iOiJub25lIiwiY3RfYW5pbWF0ZSI6IndvdyBmYWRlSW5VcCJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9jb3VudGVyIn0=\\\"][elementor-element data=\\\"eyJpZCI6IjdhNWYyMzkiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjoyMDAsInN1ZmZpeCI6IisiLCJ0aG91c2FuZF9zZXBhcmF0b3IiOiIiLCJ0aG91c2FuZF9zZXBhcmF0b3JfY2hhciI6IiAiLCJ0aXRsZSI6Ik5oXHUwMGUybiBzXHUxZWYxIiwic2hvd19pY29uIjoidHJ1ZSIsImNvdW50ZXJfaWNvbiI6eyJ2YWx1ZSI6Im1hdGVyaWFsIHptZGkgem1kaS1hc3NpZ25tZW50LWNoZWNrIiwibGlicmFyeSI6Im1hdGVyaWFsIn0sIm51bWJlcl90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiI0MSIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwiX2Nzc19jbGFzc2VzIjoidGV4dC1jZW50ZXItc20iLCJpY29uX3R5cGUiOiJpbWFnZSIsImljb25faW1hZ2UiOnsidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMTlcLzEyXC9jb3VudGVyLWljb24tMDIucG5nIiwiaWQiOjE1MTZ9LCJfYW5pbWF0aW9uIjoibm9uZSIsImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluVXAifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY291bnRlciJ9\\\"][elementor-element data=\\\"eyJpZCI6IjA0NTMxYzgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlbmRpbmdfbnVtYmVyIjoyMDAwLCJzdWZmaXgiOiIrIiwidGhvdXNhbmRfc2VwYXJhdG9yIjoiIiwidGhvdXNhbmRfc2VwYXJhdG9yX2NoYXIiOiIgIiwidGl0bGUiOiJTXHUxZWQxIFx1MDExMVx1MDFhMW4gaFx1MDBlMG5nIG1cdTFlZDdpIG5cdTAxMDNtIiwic2hvd19pY29uIjoidHJ1ZSIsImNvdW50ZXJfaWNvbiI6eyJ2YWx1ZSI6Im1hdGVyaWFsIHptZGkgem1kaS1hc3NpZ25tZW50LWNoZWNrIiwibGlicmFyeSI6Im1hdGVyaWFsIn0sIm51bWJlcl90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiI0MSIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwiX2Nzc19jbGFzc2VzIjoidGV4dC1jZW50ZXItc20iLCJpY29uX3R5cGUiOiJpbWFnZSIsImljb25faW1hZ2UiOnsidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMTlcLzEyXC9jb3VudGVyLWljb24tMDMucG5nIiwiaWQiOjE1MTd9LCJfYW5pbWF0aW9uIjoibm9uZSIsImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluVXAifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY291bnRlciJ9\\\"]            <\\/div>\\n        <\\/div>\\n                <div class=\\\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-348ba48\\\" data-id=\\\"348ba48\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        \\t\\t<div class=\\\"elementor-element elementor-element-ed7e1d0 wow fadeInUp elementor-widget elementor-widget-image\\\" data-id=\\\"ed7e1d0\\\" data-element_type=\\\"widget\\\" data-settings=\\\"{&quot;_animation&quot;:&quot;none&quot;}\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"http:\\/\\/fe2tech.trustpass.alibaba.com\\/\\\" target=\\\"_blank\\\" rel=\\\"nofollow\\\">\\n\\t\\t\\t\\t\\t\\t\\t<img width=\\\"600\\\" height=\\\"400\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/huong-dan-tu-order-alibaba-chi-t.jpg\\\" class=\\\"attachment-full size-full wp-image-2571\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-3b54db6 wow fadeInUp elementor-widget elementor-widget-text-editor\\\" data-id=\\\"3b54db6\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>Ch\\u00fang t\\u00f4i \\u0111\\u00e3 b\\u1eaft \\u0111\\u1ea7u m\\u1edf m\\u1ed9t c\\u1eeda h\\u00e0ng tr\\u00ean Alibaba \\u0111\\u1ec3 k\\u1ebft n\\u1ed1i v\\u1edbi c\\u00e1c \\u0111\\u01a1n h\\u00e0ng t\\u1eeb kh\\u1eafp n\\u01a1i tr\\u00ean th\\u1ebf gi\\u1edbi.<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                    <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                <section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-8b70e78 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"8b70e78\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-c2b95bd\\\" data-id=\\\"c2b95bd\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        \\t\\t<div class=\\\"elementor-element elementor-element-b5a8ba3 elementor-widget elementor-widget-image\\\" data-id=\\\"b5a8ba3\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"2000\\\" height=\\\"2000\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/rb_51232.png\\\" class=\\\"attachment-full size-full wp-image-2268\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-0e89391 elementor-widget elementor-widget-image\\\" data-id=\\\"0e89391\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"1280\\\" height=\\\"1026\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\\\" class=\\\"attachment-full size-full wp-image-2559\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t            <\\/div>\\n        <\\/div>\\n                <div class=\\\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-de7136f\\\" data-id=\\\"de7136f\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6Ijg0MDdhYmUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkNoXHUwMGZhbmcgdFx1MDBmNGkgblx1MWVkNyBsXHUxZWYxYyB0clx1MWVkZiB0aFx1MDBlMG5oIG1cdTFlZDl0IHRyb25nIG5oXHUxZWVmbmcgY1x1MDBmNG5nIHR5IGNoXHUxZWJmIGJpXHUxZWJmbiBjXHUwMWExIGtoXHUwMGVkIGhcdTAwZTBuZyBcdTAxMTFcdTFlYTd1IGNcdTFlZTdhIFZpXHUxZWM3dCBOYW0sIGN1bmcgY1x1MWVhNXAgcmEgdGhcdTFlY2IgdHJcdTAxYjBcdTFlZGRuZyBxdVx1MWVkMWMgdFx1MWViZiB2XHUwMGUwbyBuXHUwMTAzbSAyMDMwLiBUcm9uZyB0XHUwMWIwXHUwMWExbmcgbGFpLCBjaFx1MDBmYW5nIHRcdTAwZjRpIGhcdTAxYjBcdTFlZGJuZyBcdTAxMTFcdTFlYmZuIHZpXHUxZWM3YyBzXHUxZWEzbiB4dVx1MWVhNXQgY1x1MDBlMWMgc1x1MWVhM24gcGhcdTFlYTltIG1cdTAwZTF5IG1cdTAwZjNjIGhvXHUwMGUwbiBjaFx1MWVjOW5oIFx1MDExMVx1MWVjMyBnaWFvIHRyXHUxZWYxYyB0aVx1MWViZnAgXHUwMTExXHUxZWJmbiBuZ1x1MDFiMFx1MWVkZGkgc1x1MWVlZCBkXHUxZWU1bmcgY3VcdTFlZDFpLiIsInRpdGxlX2NvbG9yIjoiIzg1QjIzQiIsInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplIjp7InVuaXQiOiJweCIsInNpemUiOjM2LCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0Ijp7InVuaXQiOiJweCIsInNpemUiOjQ4LCJzaXplcyI6W119LCJzdHlsZSI6InN0LWxpbmUtbGVmdCIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiLTkiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV9zcGFjZV9ib3R0b20iOnsidW5pdCI6InB4Iiwic2l6ZSI6MTcsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjozMCwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzgsInNpemVzIjpbXX0sImN0X2FuaW1hdGUiOiJ3b3cgZmxpcEluWCIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX21vYmlsZSI6eyJ1bml0IjoicHgiLCJzaXplIjoyOCwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF9tb2JpbGUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzQsInNpemVzIjpbXX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-0c8497c wow fadeInUp elementor-widget elementor-widget-text-editor\\\" data-id=\\\"0c8497c\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>M\\u1ee5c ti\\u00eau \\u0111\\u1ea1t \\u0111\\u01b0\\u1ee3c v\\u00e0o n\\u0103m 2026:<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element data=\\\"eyJpZCI6IjQ3NTRlZDYiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJwcm9ncmVzc2Jhcl9saXN0IjpbeyJ0aXRsZSI6Ilx1MDExMFx1MDBmNG5nIFx1MDBjMSAoTmhcdTFlYWR0IEJcdTFlYTNuLCBIXHUwMGUwbiBRdVx1MWVkMWMsIHYudi4pOiBYdVx1MWVhNXQga2hcdTFlYTl1IGNcdTAwZTFjIGxpbmgga2lcdTFlYzduIG1cdTAwZTF5IG1cdTAwZjNjIHRoYXkgdGhcdTFlYmYsIHBoXHUxZWU1IGtpXHUxZWM3biB4ZSBtXHUwMGUxeSB2XHUwMGUwIFx1MDBmNCB0XHUwMGY0LCBwaFx1MWVlNSBraVx1MWVjN24gbmdcdTAwZTBuaCBuXHUwMWIwXHUxZWRiYywga2h1XHUwMGY0biBtXHUxZWFidSB2XHUwMGUwIGNcdTAwZTFjIGJcdTFlZDkgcGhcdTFlYWRuIGNcdTAxYTEga2hcdTAwZWQga2hcdTAwZTFjLiIsInByb2dyZXNzX3R5cGUiOiIiLCJwZXJjZW50Ijp7InVuaXQiOiIlIiwic2l6ZSI6MzAsInNpemVzIjpbXX0sImRpc3BsYXlfcGVyY2VudGFnZSI6ImhpZGUiLCJpbm5lcl90ZXh0IjoiV2ViIERlc2lnbmVyIiwiX2lkIjoiOGI0YmNkNiJ9LHsidGl0bGUiOiJDaFx1MDBlMnUgXHUwMGMydSAoXHUwMTEwXHUxZWU5YywgQnVsZ2FyaWEsIEhcdTAwZTAgTGFuLCB2LnYuKTogU1x1MWVhM24geHVcdTFlYTV0IGtodVx1MDBmNG4gamlnIGNobyB2XHUwMGYybmcgYmkgXHUwMGY0IHRcdTAwZjQgdlx1MDBlMCBjXHUwMGUxYyBiXHUxZWQ5IHBoXHUxZWFkbiBoXHUxZWQ5cCBcdTAxMTFpXHUxZWM3biBjaG8gbVx1MDBlMXkgbVx1MDBmM2MgdFx1MWVmMSBcdTAxMTFcdTFlZDluZyBoXHUwMGYzYS4iLCJwcm9ncmVzc190eXBlIjoiIiwicGVyY2VudCI6eyJ1bml0IjoiJSIsInNpemUiOjEwLCJzaXplcyI6W119LCJkaXNwbGF5X3BlcmNlbnRhZ2UiOiJoaWRlIiwiaW5uZXJfdGV4dCI6IldlYiBEZXNpZ25lciIsIl9pZCI6IjZlMGY4NzcifSx7InRpdGxlIjoiSG9hIEtcdTFlZjM6IENcdTAwZTFjIHNcdTFlYTNuIHBoXHUxZWE5bSBsaVx1MDBlYW4gcXVhbiBcdTAxMTFcdTFlYmZuIHRoaVx1MWViZnQgYlx1MWVjYiB5IHRcdTFlYmYsIHF1YW5nIGhcdTFlY2RjIHZcdTAwZTAgdGhpXHUxZWJmdCBiXHUxZWNiIFx1MDBlMm0gdGhhbmguIiwicHJvZ3Jlc3NfdHlwZSI6IiIsInBlcmNlbnQiOnsidW5pdCI6IiUiLCJzaXplIjozMCwic2l6ZXMiOltdfSwiZGlzcGxheV9wZXJjZW50YWdlIjoic2hvdyIsIl9pZCI6IjIyMmViODEifSx7Il9pZCI6IjVlZWNjYjYiLCJ0aXRsZSI6Ilx1MDBkYWM6IFNcdTFlYTNuIHBoXHUxZWE5bSBraW0gbG9cdTFlYTFpIHRcdTFlYTVtLiIsInBlcmNlbnQiOnsidW5pdCI6IiUiLCJzaXplIjo4LCJzaXplcyI6W119fSx7Il9pZCI6IjEwZTU3NTAiLCJ0aXRsZSI6IlZpXHUxZWM3dCBOYW06IE1cdTAwZTF5IHRcdTFlZjEgXHUwMTExXHUxZWQ5bmcgaFx1MDBmM2EgbmhcdTFlY2Y7IGJ1IGxcdTAwZjRuZyB4ZSBtXHUwMGUxeSB2XHUwMGUwIFx1MDBmNCB0XHUwMGY0OyBzXHUxZWEzbiBwaFx1MWVhOW0gdHJvbmcgbmdcdTAwZTBuaCBkXHUxZWE3dSBraFx1MDBlZC4iLCJwZXJjZW50Ijp7InVuaXQiOiIlIiwic2l6ZSI6MjAsInNpemVzIjpbXX19LHsiX2lkIjoiZTE3YTE5NSIsInRpdGxlIjoiQ1x1MDBlMWMgdGhcdTFlY2IgdHJcdTAxYjBcdTFlZGRuZyB2XHUwMGUwIHNcdTFlYTNuIHBoXHUxZWE5bSBraFx1MDBlMWMuIiwicGVyY2VudCI6eyJ1bml0IjoiJSIsInNpemUiOjIsInNpemVzIjpbXX19XSwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiI3OCIsImlzTGlua2VkIjpmYWxzZX0sIl9tYXJnaW5fbW9iaWxlIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6dHJ1ZX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9wcm9ncmVzc2JhciJ9\\\"]            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                <section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-b6145ce elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"b6145ce\\\" data-element_type=\\\"section\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-e65d58b\\\" data-id=\\\"e65d58b\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6IjljZDU1ZGQiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkNoXHUwMGZhbmcgdFx1MDBmNGkgY3VuZyBjXHUxZWE1cCBkXHUxZWNiY2ggdlx1MWVlNSB0cm9uZyBuaGlcdTFlYzF1IGxcdTAxMjluaCB2XHUxZWYxYy4iLCJ0aXRsZV9jb2xvciI6IiM4NUIyM0IiLCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZSI6eyJ1bml0IjoicHgiLCJzaXplIjozNiwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodCI6eyJ1bml0IjoicHgiLCJzaXplIjo0OCwic2l6ZXMiOltdfSwic3R5bGUiOiJzdC1saW5lLWxlZnQiLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6dHJ1ZX0sInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjozMCwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzgsInNpemVzIjpbXX0sImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluTGVmdCIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX21vYmlsZSI6eyJ1bml0IjoicHgiLCJzaXplIjoyOCwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF9tb2JpbGUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzQsInNpemVzIjpbXX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\\\"]            <\\/div>\\n        <\\/div>\\n                <div class=\\\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-2067062\\\" data-id=\\\"2067062\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        \\t\\t<div class=\\\"elementor-element elementor-element-956a238 wow fadeInRight elementor-widget elementor-widget-text-editor\\\" data-id=\\\"956a238\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>Ch\\u00fang t\\u00f4i lu\\u00f4n \\u0111\\u00e1p \\u1ee9ng y\\u00eau c\\u1ea7u thi\\u1ebft k\\u1ebf c\\u1ee7a kh\\u00e1ch h\\u00e0ng. Ngo\\u1ea1i h\\u00ecnh v\\u00e0 k\\u00edch th\\u01b0\\u1edbc l\\u00e0 nh\\u1eefng y\\u1ebfu t\\u1ed1 ch\\u00fang t\\u00f4i coi tr\\u1ecdng nh\\u1ea5t.<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                <section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-74328b6b elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"74328b6b\\\" data-element_type=\\\"section\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4b9c9796\\\" data-id=\\\"4b9c9796\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6IjFjYTNiNmM1IiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsibGF5b3V0IjoiNCIsImxpbWl0Ijo0LCJmaWx0ZXJfZGVmYXVsdF90aXRsZSI6IkFsbCIsImNvbF9zbSI6IjEiLCJjb2xfbWQiOiIyIiwiY29sX2xnIjoiMiIsImNvbF94bCI6IjIiLCJidXR0b25fdGV4dCI6IlJlYWQgbW9yZSIsInNvdXJjZSI6WyJ2aXxsYW5ndWFnZSJdLCJjdF9hbmltYXRlIjoid293IGZhZGVJblVwIiwib3JkZXIiOiJhc2MifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3Rfc2VydmljZV9ncmlkIn0=\\\"][elementor-element data=\\\"eyJpZCI6IjI5NzFiOGIzIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGV4dCI6IkRcdTFlY2JjaCB2XHUxZWU1IGtoXHUwMGUxYyIsImxpbmsiOnsidXJsIjoiXC9zZXJ2aWNlcyIsImlzX2V4dGVybmFsIjoiIiwibm9mb2xsb3ciOiIifSwiYWxpZ24iOiJjZW50ZXIiLCJidG5faWNvbiI6eyJ2YWx1ZSI6Im1hdGVyaWFsIHptZGkgem1kaS1zZXR0aW5ncyIsImxpYnJhcnkiOiJtYXRlcmlhbCJ9LCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6Ii0xMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sInN0eWxlIjoiYnRuLXByZXNldDMiLCJfYW5pbWF0aW9uIjoibm9uZSJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9idXR0b24ifQ==\\\"]            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                <section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-f43d465 elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"f43d465\\\" data-element_type=\\\"section\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-5310bd3\\\" data-id=\\\"5310bd3\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6ImJjZmM3MzUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjdGY3X2lkIjoiOTMyIiwibGF5b3V0IjoiMiIsImN0ZjdfdGl0bGUiOiJDXHUwMGYzIGNcdTAwZTJ1IGhcdTFlY2ZpIG5cdTAwZTBvIGtoXHUwMGY0bmc\\/IiwiY3RmN19kZXNjcmlwdGlvbiI6IkNhbGw6IDgwMCAyNTAgMzY5IiwiY3RmN19waG9uZSI6IjxzcGFuPkNhbGw6PFwvc3Bhbj4gMDk2ODg2MDM4NiIsImVsX3RpdGxlIjoiTGlcdTAwZWFuIGhcdTFlYzcgXHUwMTExXHUxZWMzIG5oXHUxZWFkbiBiXHUwMGUxbyBnaVx1MDBlMToiLCJjdF9hbmltYXRlIjoid293IGZsaXBJblgifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY3RmNyJ9\\\"]            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                <section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-a9b49c5 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"a9b49c5\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n                            <div class=\\\"elementor-background-overlay\\\"><\\/div>\\n                \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-1dcb85a\\\" data-id=\\\"1dcb85a\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n                <section class=\\\"elementor-section elementor-inner-section elementor-element elementor-element-6c560a6 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"6c560a6\\\" data-element_type=\\\"section\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-e82cd67\\\" data-id=\\\"e82cd67\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6ImVmNDE1MTEiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkNoXHUwMGZhbmcgdFx1MDBmNGkgY1x1MDBmMyBxdXkgdHJcdTAwZWNuaCBsXHUwMGUwbSB2aVx1MWVjN2MgXHUwMTExXHUwMWExbiBnaVx1MWVhM24uIiwidGl0bGVfY29sb3IiOiIjZmZmZmZmIiwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzYsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHQiOnsidW5pdCI6InB4Iiwic2l6ZSI6NDgsInNpemVzIjpbXX0sInN0eWxlIjoic3QtbGluZS1sZWZ0IiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOnRydWV9LCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZV90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzAsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfbGluZV9oZWlnaHRfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjM4LCJzaXplcyI6W119LCJjdF9hbmltYXRlIjoid293IGZhZGVJbkxlZnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\\\"]            <\\/div>\\n        <\\/div>\\n                <div class=\\\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-3a08737\\\" data-id=\\\"3a08737\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        \\t\\t<div class=\\\"elementor-element elementor-element-7aa11c2 wow fadeInRight elementor-widget elementor-widget-text-editor\\\" data-id=\\\"7aa11c2\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>Ch\\u00fang t\\u00f4i lu\\u00f4n mang \\u0111\\u1ebfn c\\u1ea3m gi\\u00e1c an t\\u00e2m v\\u1ec1 ch\\u1ea5t l\\u01b0\\u1ee3ng v\\u00e0 ti\\u1ebfn \\u0111\\u1ed9.<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n        [elementor-element data=\\\"eyJpZCI6IjlkNWVhMzIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X2xpc3QiOlt7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi1yZXNlYXJjaCIsImxpYnJhcnkiOiJmbGF0aWNvbiJ9LCJfaWQiOiIwNTVmZWYyIiwidGl0bGUiOiJUXHUwMGVjbSBjaFx1MDBmYW5nIHRcdTAwZjRpIiwiZGVzY3JpcHRpb24iOiJDaFx1MDBmYW5nIHRcdTAwZjRpIGhpXHUxZWMzdSB0XHUxZWE3bSBxdWFuIHRyXHUxZWNkbmcgY1x1MWVlN2EgdmlcdTFlYzdjIHhcdTFlZWQgbFx1MDBmZCBtXHUxZWQ3aSBkXHUxZWYxIFx1MDBlMW4gdGhlbyBtXHUxZWQ5dCBjXHUwMGUxY2ggdGlcdTFlYmZwIGNcdTFlYWRuIHRvXHUwMGUwbiBkaVx1MWVjN24uIiwiYnRuX2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9fSx7ImN0X2ljb24iOnsidmFsdWUiOiJmbGF0aWNvbiBmbGF0aWNvbi1uZXR3b3JrIiwibGlicmFyeSI6ImZsYXRpY29uIn0sIl9pZCI6IjM5ZTE0YjgiLCJ0aXRsZSI6IktcdTFlYmZ0IG5cdTFlZDFpIHZcdTFlZGJpIGNoXHUwMGZhbmcgdFx1MDBmNGkiLCJkZXNjcmlwdGlvbiI6Ilx1MDExMGlcdTFlYzF1IGxcdTAwZTBtIGNoXHUwMGZhbmcgdFx1MDBmNGkga2hcdTAwZTFjIGJpXHUxZWM3dCBzbyB2XHUxZWRiaSBjXHUwMGUxYyBjXHUwMGY0bmcgdHkga2hcdTAwZTFjIGxcdTAwZTAgY2h1eVx1MDBlYW4gbVx1MDBmNG4gdHJvbmcgdmlcdTFlYzdjIHRcdTFlYTFvIHJhIGNcdTAwZTFjIGdpXHUxZWEzaSBwaFx1MDBlMXAgdFx1MDBmOXkgY2hcdTFlYzluaC4iLCJidG5fbGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn19LHsiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZsYXRpY29uIGZsYXRpY29uLXdhbGxldCIsImxpYnJhcnkiOiJmbGF0aWNvbiJ9LCJfaWQiOiJmNWUxMGU4IiwidGl0bGUiOiJUaGFuaCB0b1x1MDBlMW4gY2hvIGNoXHUwMGZhbmcgdFx1MDBmNGkiLCJkZXNjcmlwdGlvbiI6IkNoXHUwMGZhbmcgdFx1MDBmNGkga2h1eVx1MWViZm4ga2hcdTAwZWRjaCBtXHUxZWQ3aSB0aFx1MDBlMG5oIHZpXHUwMGVhbiB0cm9uZyBcdTAxMTFcdTFlZDlpIG5nXHUwMTY5IHRyXHUxZWRmIHRoXHUwMGUwbmggcGhpXHUwMGVhbiBiXHUxZWEzbiB0XHUxZWQxdCBuaFx1MWVhNXQgY1x1MWVlN2EgY2hcdTAwZWRuaCBtXHUwMGVjbmgsIHRcdTFlYTFvIHJhIG1cdTFlZDl0IG1cdTAwZjRpIHRyXHUwMWIwXHUxZWRkbmcgbGluaCBob1x1MWVhMXQgdlx1MDBlMCBoXHUxZWUzcCB0XHUwMGUxYy4iLCJidG5fbGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn19LHsiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZsYXRpY29uIGZsYXRpY29uLXRhcmdldCIsImxpYnJhcnkiOiJmbGF0aWNvbiJ9LCJfaWQiOiI4ODM5OTY5IiwidGl0bGUiOiJcdTAxMTBcdTFlYTF0IFx1MDExMVx1MDFiMFx1MWVlM2MgXHUwMWIwXHUxZWRiYyBtXHUwMWExIGNcdTFlZTdhIGJcdTFlYTFuIiwiZGVzY3JpcHRpb24iOiJDXHUxZWQxdCBsXHUwMGY1aSBjXHUxZWU3YSBtXHUxZWQ3aSBkb2FuaCBuZ2hpXHUxZWM3cCBsXHUwMGUwIG5oXHUxZWVmbmcgZ2lcdTFlYTNpIHBoXHUwMGUxcCBcdTAxMTFcdTFlZDljIFx1MDExMVx1MDBlMW8sIHRydXlcdTFlYzFuIGNcdTFlYTNtIGhcdTFlZTluZyBjaG8gc1x1MWVmMSBcdTAxMTFcdTFlZDVpIG1cdTFlZGJpIHZcdTAwZTAgcGhcdTAwZTF0IHRyaVx1MWVjM24uIiwiYnRuX2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9fV0sInRpdGxlX2NvbG9yIjoiI2ZmZmZmZiIsImRlc2NyaXB0aW9uX2NvbG9yIjoiI0ZGRkZGRiIsImN0X2FuaW1hdGUiOiJ3b3cgZmFkZUluIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X3Byb2Nlc3MifQ==\\\"]            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                <section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-79ee8ab elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"79ee8ab\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4af1814\\\" data-id=\\\"4af1814\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n                <section class=\\\"elementor-section elementor-inner-section elementor-element elementor-element-505fb45 elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"505fb45\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-7223f1c\\\" data-id=\\\"7223f1c\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        \\t\\t<div class=\\\"elementor-element elementor-element-e7c238e elementor-widget elementor-widget-google_maps\\\" data-id=\\\"e7c238e\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"google_maps.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-custom-embed\\\">\\n\\t\\t\\t<iframe loading=\\\"lazy\\\"\\n\\t\\t\\t\\t\\tsrc=\\\"https:\\/\\/maps.google.com\\/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\\\"\\n\\t\\t\\t\\t\\ttitle=\\\"10\\u00b057&#039;11.2&quot;N 106\\u00b045&#039;13.0&quot;E\\\"\\n\\t\\t\\t\\t\\taria-label=\\\"10\\u00b057&#039;11.2&quot;N 106\\u00b045&#039;13.0&quot;E\\\"\\n\\t\\t\\t><\\/iframe>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t            <\\/div>\\n        <\\/div>\\n                <div class=\\\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-0225539\\\" data-id=\\\"0225539\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6IjUxZDU0M2EiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkxpXHUwMGVhbiBoXHUxZWM3IHZcdTFlZGJpIGNoXHUwMGZhbmcgdFx1MDBmNGkgYlx1MWVhNXQgY1x1MWVlOSBsXHUwMGZhYyBuXHUwMGUwbyBuXHUxZWJmdSBiXHUxZWExbiBjXHUxZWE3biBzXHUxZWYxIGdpXHUwMGZhcCBcdTAxMTFcdTFlZTEuLi4iLCJ0aXRsZV9jb2xvciI6IiM4NUIyM0IiLCJfcGFkZGluZyI6eyJ1bml0IjoiJSIsInRvcCI6IjAiLCJyaWdodCI6IjUiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV9zcGFjZV9ib3R0b20iOnsidW5pdCI6InB4Iiwic2l6ZSI6MzMsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjozMCwic2l6ZXMiOltdfSwidGl0bGVfdHlwb2dyYXBoeV9saW5lX2hlaWdodF90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzgsInNpemVzIjpbXX0sImN0X2FuaW1hdGUiOiJ3b3cgZmxpcEluWCIsIl9wYWRkaW5nX3RhYmxldCI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\\\"][elementor-element data=\\\"eyJpZCI6ImVkMGRjMWIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjdGY3X2lkIjoiOTc0Iiwic3R5bGVfbDEiOiJzdHlsZTIifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY3RmNyJ9\\\"]            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                    <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n        \",\"scripts\":[],\"styles\":[]}}'),(10523,2126,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:20:\"widget-image-gallery\";}}'),(10533,3190,'_wp_attached_file','2025/03/Ab6277516622141b68178f66bebaadd93o.jpg_350x350.jpg'),(10534,3190,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:263;s:4:\"file\";s:58:\"2025/03/Ab6277516622141b68178f66bebaadd93o.jpg_350x350.jpg\";s:8:\"filesize\";i:25769;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:{}}}'),(10535,3191,'_wp_attached_file','2025/03/A4969ef2343a244608cc511d1e7be28e2X.png_350x350.png'),(10536,3191,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:58:\"2025/03/A4969ef2343a244608cc511d1e7be28e2X.png_350x350.png\";s:8:\"filesize\";i:39664;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:{}}}'),(10537,3192,'_wp_attached_file','2025/03/H9be6461494cf4fe7998192dc483066c9v.png_350x350.png'),(10538,3192,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:58:\"2025/03/H9be6461494cf4fe7998192dc483066c9v.png_350x350.png\";s:8:\"filesize\";i:12957;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:{}}}'),(10539,3193,'_wp_attached_file','2025/03/H4cbac47ae6cf4705b966668ca1abad509.png_350x350.png'),(10540,3193,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:58:\"2025/03/H4cbac47ae6cf4705b966668ca1abad509.png_350x350.png\";s:8:\"filesize\";i:26933;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:{}}}'),(10541,3194,'_wp_attached_file','2025/03/H6c00bd237d8b46d4b06a1cc6ef76accfE.png_350x350.png'),(10542,3194,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:58:\"2025/03/H6c00bd237d8b46d4b06a1cc6ef76accfE.png_350x350.png\";s:8:\"filesize\";i:112415;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:{}}}'),(10543,3195,'_wp_attached_file','2025/03/H71abe7a763a345ae87dcf70c25a70a32M.png_350x350.png'),(10544,3195,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:58:\"2025/03/H71abe7a763a345ae87dcf70c25a70a32M.png_350x350.png\";s:8:\"filesize\";i:55479;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:{}}}'),(10545,3196,'_wp_attached_file','2025/03/2.jpg'),(10546,3196,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:13:\"2025/03/2.jpg\";s:8:\"filesize\";i:19302;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:{}}}'),(10547,3197,'_wp_attached_file','2025/03/A045fe45345664394a2a80499b4bd2117i.jpg_350x350.jpg'),(10548,3197,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:58:\"2025/03/A045fe45345664394a2a80499b4bd2117i.jpg_350x350.jpg\";s:8:\"filesize\";i:21831;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:{}}}'),(10549,3198,'_wp_attached_file','2025/03/A86e039df1c9d4e809ea53dfd676ba67aO.jpg_350x350.jpg'),(10550,3198,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:58:\"2025/03/A86e039df1c9d4e809ea53dfd676ba67aO.jpg_350x350.jpg\";s:8:\"filesize\";i:28990;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:{}}}'),(10551,3199,'_wp_attached_file','2025/03/A786dc427af46457ea923c41ea7688f67Q.jpg_350x350.jpg'),(10552,3199,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:58:\"2025/03/A786dc427af46457ea923c41ea7688f67Q.jpg_350x350.jpg\";s:8:\"filesize\";i:18081;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:{}}}'),(10553,3200,'_wp_attached_file','2025/03/6.jpg'),(10554,3200,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:13:\"2025/03/6.jpg\";s:8:\"filesize\";i:16798;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:{}}}'),(10555,3201,'_wp_attached_file','2025/03/A2ed5a5c3f8f544c8910a3fe29da5e2984.jpg_350x350.jpg'),(10556,3201,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:58:\"2025/03/A2ed5a5c3f8f544c8910a3fe29da5e2984.jpg_350x350.jpg\";s:8:\"filesize\";i:44871;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:{}}}'),(10557,3202,'_wp_attached_file','2025/03/A3c80646854cd4401b6b737a80e8e29f2Z.jpg_350x350.jpg'),(10558,3202,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:58:\"2025/03/A3c80646854cd4401b6b737a80e8e29f2Z.jpg_350x350.jpg\";s:8:\"filesize\";i:14619;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:{}}}'),(10559,3203,'_wp_attached_file','2025/03/A53f94fffa0e64ba8a47330e85a179214l.jpg_350x350.jpg'),(10560,3203,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:58:\"2025/03/A53f94fffa0e64ba8a47330e85a179214l.jpg_350x350.jpg\";s:8:\"filesize\";i:24523;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:{}}}'),(10561,3204,'_wp_attached_file','2025/03/Aa559aaa8e8d44868b700967e182631e0O.jpg_350x350.jpg'),(10562,3204,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:58:\"2025/03/Aa559aaa8e8d44868b700967e182631e0O.jpg_350x350.jpg\";s:8:\"filesize\";i:17716;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:{}}}'),(10563,3205,'_wp_attached_file','2025/03/4.jpg'),(10564,3205,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:13:\"2025/03/4.jpg\";s:8:\"filesize\";i:23338;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:{}}}'),(10565,3206,'_wp_attached_file','2025/03/A29209fca14e3491286a7ae2a7d535066t.jpg_350x350.jpg'),(10566,3206,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:58:\"2025/03/A29209fca14e3491286a7ae2a7d535066t.jpg_350x350.jpg\";s:8:\"filesize\";i:10665;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:{}}}'),(10567,3207,'_wp_attached_file','2025/03/Afd6e5018d54a4c319b4941af57e38fc1e.jpg_350x350.jpg'),(10568,3207,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:58:\"2025/03/Afd6e5018d54a4c319b4941af57e38fc1e.jpg_350x350.jpg\";s:8:\"filesize\";i:15243;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:{}}}'),(10569,3208,'_wp_attached_file','2025/03/A8626df5ae89c458484cbdeab6b0a2768E.jpg_350x350.jpg'),(10570,3208,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:58:\"2025/03/A8626df5ae89c458484cbdeab6b0a2768E.jpg_350x350.jpg\";s:8:\"filesize\";i:19229;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:{}}}'),(10571,3209,'_wp_attached_file','2025/03/Aec2a4cd895e648b6bc7174d864e103329.jpg_350x350.jpg'),(10572,3209,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:58:\"2025/03/Aec2a4cd895e648b6bc7174d864e103329.jpg_350x350.jpg\";s:8:\"filesize\";i:40363;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:{}}}'),(10573,3210,'_wp_attached_file','2025/03/1.jpg'),(10574,3210,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:13:\"2025/03/1.jpg\";s:8:\"filesize\";i:21135;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:{}}}'),(10575,3211,'_wp_attached_file','2025/03/A5fa71b0eddf648049c5f33d331738460m.jpg_350x350.jpg'),(10576,3211,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:58:\"2025/03/A5fa71b0eddf648049c5f33d331738460m.jpg_350x350.jpg\";s:8:\"filesize\";i:22139;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:{}}}'),(10577,3212,'_wp_attached_file','2025/03/A9bc1872697d649e7a28d14c48cd6b71bq.jpg_350x350.jpg'),(10578,3212,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:58:\"2025/03/A9bc1872697d649e7a28d14c48cd6b71bq.jpg_350x350.jpg\";s:8:\"filesize\";i:19615;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:{}}}'),(10579,3213,'_wp_attached_file','2025/03/Ad0c782b84615484d8303ad964cd302a4C.jpg_350x350.jpg'),(10580,3213,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:58:\"2025/03/Ad0c782b84615484d8303ad964cd302a4C.jpg_350x350.jpg\";s:8:\"filesize\";i:25875;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:{}}}'),(10581,3214,'_wp_attached_file','2025/03/Aec3f44d2c0cf4536870b19097b5035f4A.jpg_350x350.jpg'),(10582,3214,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:58:\"2025/03/Aec3f44d2c0cf4536870b19097b5035f4A.jpg_350x350.jpg\";s:8:\"filesize\";i:26474;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:{}}}'),(10583,3215,'_wp_attached_file','2025/03/8.jpg'),(10584,3215,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:13:\"2025/03/8.jpg\";s:8:\"filesize\";i:25144;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:{}}}'),(10585,3216,'_wp_attached_file','2025/03/A5df619ce89ec42189a5c4d05bbba4f2dw.jpg_350x350.jpg'),(10586,3216,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:58:\"2025/03/A5df619ce89ec42189a5c4d05bbba4f2dw.jpg_350x350.jpg\";s:8:\"filesize\";i:29190;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:{}}}'),(10587,3217,'_wp_attached_file','2025/03/A9207015598ae47e4ba57d5d6755a7945J.jpg_350x350.jpg'),(10588,3217,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:58:\"2025/03/A9207015598ae47e4ba57d5d6755a7945J.jpg_350x350.jpg\";s:8:\"filesize\";i:20385;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:{}}}'),(10589,3218,'_wp_attached_file','2025/03/Aa67514ca153a43208612611af15ae689t.jpg_350x350.jpg'),(10590,3218,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:58:\"2025/03/Aa67514ca153a43208612611af15ae689t.jpg_350x350.jpg\";s:8:\"filesize\";i:30060;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:{}}}'),(10591,3219,'_wp_attached_file','2025/03/Ac8c57af57fc04a9b8afbcf5214d8b125a.jpg_350x350.jpg'),(10592,3219,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:58:\"2025/03/Ac8c57af57fc04a9b8afbcf5214d8b125a.jpg_350x350.jpg\";s:8:\"filesize\";i:29312;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:{}}}'),(10593,3220,'_wp_attached_file','2025/03/Aea1a2ea6c9d04b78977d1e8c907e721cR.jpg_350x350.jpg'),(10594,3220,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:58:\"2025/03/Aea1a2ea6c9d04b78977d1e8c907e721cR.jpg_350x350.jpg\";s:8:\"filesize\";i:36706;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:{}}}'),(10595,3221,'_wp_attached_file','2025/03/5.jpg'),(10596,3221,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:13:\"2025/03/5.jpg\";s:8:\"filesize\";i:34546;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:{}}}'),(10597,3222,'_wp_attached_file','2025/03/7.jpg'),(10598,3222,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:13:\"2025/03/7.jpg\";s:8:\"filesize\";i:36811;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:{}}}'),(10599,3223,'_wp_attached_file','2025/03/A4fa22b3db4704145a9c8f2b6d413b4b7Y.jpg_350x350.jpg'),(10600,3223,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:58:\"2025/03/A4fa22b3db4704145a9c8f2b6d413b4b7Y.jpg_350x350.jpg\";s:8:\"filesize\";i:32246;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:{}}}'),(10601,3224,'_wp_attached_file','2025/03/A8cfa154ca70a46c5965e993255b53ecbg.jpg_350x350.jpg'),(10602,3224,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:58:\"2025/03/A8cfa154ca70a46c5965e993255b53ecbg.jpg_350x350.jpg\";s:8:\"filesize\";i:26367;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:{}}}'),(10603,3225,'_wp_attached_file','2025/03/A967c634a517c48f38c23d4766db5bba1a.jpg_350x350.jpg'),(10604,3225,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:58:\"2025/03/A967c634a517c48f38c23d4766db5bba1a.jpg_350x350.jpg\";s:8:\"filesize\";i:34940;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:{}}}'),(10605,3226,'_wp_attached_file','2025/03/A462413b6de2b401ba60e99bbe1d15e33K.jpg_350x350.jpg'),(10606,3226,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:58:\"2025/03/A462413b6de2b401ba60e99bbe1d15e33K.jpg_350x350.jpg\";s:8:\"filesize\";i:36513;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:{}}}'),(10607,3227,'_wp_attached_file','2025/03/A661399142a7247278bbf69a9d6007556W.jpg_350x350.jpg'),(10608,3227,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:58:\"2025/03/A661399142a7247278bbf69a9d6007556W.jpg_350x350.jpg\";s:8:\"filesize\";i:37535;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:{}}}'),(10609,3228,'_wp_attached_file','2025/03/10.jpg'),(10610,3228,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:263;s:4:\"file\";s:14:\"2025/03/10.jpg\";s:8:\"filesize\";i:15104;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:{}}}'),(10611,3229,'_wp_attached_file','2025/03/A16eb71f546c44c4ba00c6afe46464d593.jpg_350x350.jpg'),(10612,3229,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:58:\"2025/03/A16eb71f546c44c4ba00c6afe46464d593.jpg_350x350.jpg\";s:8:\"filesize\";i:18529;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:{}}}'),(10613,3230,'_wp_attached_file','2025/03/A72a21ba969c84b98b63b985380b97ef5O.jpg_350x350.jpg'),(10614,3230,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:58:\"2025/03/A72a21ba969c84b98b63b985380b97ef5O.jpg_350x350.jpg\";s:8:\"filesize\";i:37208;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:{}}}'),(10615,3231,'_wp_attached_file','2025/03/A99574ebe1a6c432abebb91680e3e227e0.jpg_350x350.jpg'),(10616,3231,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:58:\"2025/03/A99574ebe1a6c432abebb91680e3e227e0.jpg_350x350.jpg\";s:8:\"filesize\";i:21006;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:{}}}'),(10617,3232,'_wp_attached_file','2025/03/Ac6d9a3b79a904eeb9c925afa374ec53aA.jpg_350x350.jpg'),(10618,3232,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:58:\"2025/03/Ac6d9a3b79a904eeb9c925afa374ec53aA.jpg_350x350.jpg\";s:8:\"filesize\";i:21362;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:{}}}'),(10619,3233,'_wp_attached_file','2025/03/Adef05c3212194f259f1556cd5081ab3eg.jpg_350x350.jpg'),(10620,3233,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:58:\"2025/03/Adef05c3212194f259f1556cd5081ab3eg.jpg_350x350.jpg\";s:8:\"filesize\";i:20778;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:{}}}'),(10621,3234,'_wp_attached_file','2025/03/3.jpg'),(10622,3234,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:13:\"2025/03/3.jpg\";s:8:\"filesize\";i:29287;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:{}}}'),(10623,3235,'_wp_attached_file','2025/03/9.jpg'),(10624,3235,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:13:\"2025/03/9.jpg\";s:8:\"filesize\";i:17026;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:{}}}'),(10625,3236,'_wp_attached_file','2025/03/A268aa8f9b65c4cdf9f45e594f2cd8ad4M.jpg_350x350.jpg'),(10626,3236,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:58:\"2025/03/A268aa8f9b65c4cdf9f45e594f2cd8ad4M.jpg_350x350.jpg\";s:8:\"filesize\";i:24267;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:{}}}'),(10627,3237,'_wp_attached_file','2025/03/A864432f2571743689342ae173ee9dc9fd.jpg_350x350.jpg'),(10628,3237,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:58:\"2025/03/A864432f2571743689342ae173ee9dc9fd.jpg_350x350.jpg\";s:8:\"filesize\";i:38370;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:{}}}'),(10629,3238,'_wp_attached_file','2025/03/Abd43851c92654bd99cfdca45d896fbcbB.jpg_350x350.jpg'),(10630,3238,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:58:\"2025/03/Abd43851c92654bd99cfdca45d896fbcbB.jpg_350x350.jpg\";s:8:\"filesize\";i:20601;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:{}}}'),(10631,3239,'_wp_attached_file','2025/03/Acdd1226298dd4613abf021bdcaad320b0.jpg_350x350.jpg'),(10632,3239,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:58:\"2025/03/Acdd1226298dd4613abf021bdcaad320b0.jpg_350x350.jpg\";s:8:\"filesize\";i:22466;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:{}}}'),(10633,3240,'_wp_attached_file','2025/03/Ae91bf7f51db3402ebaff610c299e9aacF.jpg_350x350.jpg'),(10634,3240,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:58:\"2025/03/Ae91bf7f51db3402ebaff610c299e9aacF.jpg_350x350.jpg\";s:8:\"filesize\";i:19076;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:{}}}'),(10635,3241,'_wp_attached_file','2025/03/A05f18d47e70948ae8795111d055f42fa2.jpg_350x350.jpg'),(10636,3241,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:58:\"2025/03/A05f18d47e70948ae8795111d055f42fa2.jpg_350x350.jpg\";s:8:\"filesize\";i:14275;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:{}}}'),(10637,3242,'_wp_attached_file','2025/03/A5c37792f38434388a02a0479fcbc4123T.jpg_350x350.jpg'),(10638,3242,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:58:\"2025/03/A5c37792f38434388a02a0479fcbc4123T.jpg_350x350.jpg\";s:8:\"filesize\";i:18025;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:{}}}'),(10639,3243,'_wp_attached_file','2025/03/A8c420992f47745509f4f292ac7bd2258H.jpg_350x350.jpg'),(10640,3243,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:58:\"2025/03/A8c420992f47745509f4f292ac7bd2258H.jpg_350x350.jpg\";s:8:\"filesize\";i:20072;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:{}}}'),(10641,3244,'_wp_attached_file','2025/03/A1001e63ea59149f8a81abb92d5d5fe713.jpg_350x350.jpg'),(10642,3244,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:58:\"2025/03/A1001e63ea59149f8a81abb92d5d5fe713.jpg_350x350.jpg\";s:8:\"filesize\";i:16777;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:{}}}'),(10643,3245,'_wp_attached_file','2025/03/A36346f881b104996b6c070b5d2cebff8u.jpg_350x350.jpg'),(10644,3245,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:58:\"2025/03/A36346f881b104996b6c070b5d2cebff8u.jpg_350x350.jpg\";s:8:\"filesize\";i:18590;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:{}}}'),(10645,3246,'_wp_attached_file','2025/03/A157183c07a764eb8957bc4cd13982808i.jpg_350x350.jpg'),(10646,3246,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:58:\"2025/03/A157183c07a764eb8957bc4cd13982808i.jpg_350x350.jpg\";s:8:\"filesize\";i:12281;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:{}}}'),(10647,3247,'_wp_attached_file','2025/03/cnc-ok5.jpg'),(10648,3247,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:349;s:6:\"height\";i:350;s:4:\"file\";s:19:\"2025/03/cnc-ok5.jpg\";s:8:\"filesize\";i:29069;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:{}}}'),(10649,3248,'_wp_attached_file','2025/03/cnc-ok4.png'),(10650,3248,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:19:\"2025/03/cnc-ok4.png\";s:8:\"filesize\";i:22577;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:{}}}'),(10651,3249,'_wp_attached_file','2025/03/cnc-machine22.avif'),(10652,3249,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:26:\"2025/03/cnc-machine22.avif\";s:8:\"filesize\";i:25246;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:{}}}'),(10653,3250,'_wp_attached_file','2025/03/cnc-machine3.jpg'),(10654,3250,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:6000;s:6:\"height\";i:4000;s:4:\"file\";s:24:\"2025/03/cnc-machine3.jpg\";s:8:\"filesize\";i:13369344;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M2\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1740666521\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"24\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(10655,3251,'_wp_attached_file','2025/03/cnc-ok3.png'),(10656,3251,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:19:\"2025/03/cnc-ok3.png\";s:8:\"filesize\";i:39664;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:{}}}'),(10657,3252,'_wp_attached_file','2025/03/cnc-ok1.png'),(10658,3252,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:19:\"2025/03/cnc-ok1.png\";s:8:\"filesize\";i:37372;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:{}}}'),(10659,3253,'_wp_attached_file','2025/03/cnc-ok2.png'),(10660,3253,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:19:\"2025/03/cnc-ok2.png\";s:8:\"filesize\";i:55479;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:{}}}'),(10661,3254,'_wp_attached_file','2025/03/cnc-ok7.png'),(10662,3254,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:19:\"2025/03/cnc-ok7.png\";s:8:\"filesize\";i:37372;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:{}}}'),(10663,3255,'_wp_attached_file','2025/03/cnc-ok9.jpg'),(10664,3255,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:19:\"2025/03/cnc-ok9.jpg\";s:8:\"filesize\";i:44871;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:{}}}'),(10665,3256,'_wp_attached_file','2025/03/cnc-ok8.jpg'),(10666,3256,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:19:\"2025/03/cnc-ok8.jpg\";s:8:\"filesize\";i:20778;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:{}}}'),(10667,3257,'_wp_attached_file','2025/03/z5709443476797_cb3e9e0d596ad6331366b8a711f46926.jpg'),(10668,3257,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:59:\"2025/03/z5709443476797_cb3e9e0d596ad6331366b8a711f46926.jpg\";s:8:\"filesize\";i:374734;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(10669,3258,'_wp_attached_file','2025/03/sheet-metal1.jpg'),(10670,3258,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1441;s:4:\"file\";s:24:\"2025/03/sheet-metal1.jpg\";s:8:\"filesize\";i:500422;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:{}}}'),(10671,3259,'_wp_attached_file','2025/03/sheet-metal3.jpg'),(10672,3259,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1441;s:4:\"file\";s:24:\"2025/03/sheet-metal3.jpg\";s:8:\"filesize\";i:833799;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:{}}}'),(10673,3260,'_wp_attached_file','2025/03/sheet-metal4.jpg'),(10674,3260,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1441;s:4:\"file\";s:24:\"2025/03/sheet-metal4.jpg\";s:8:\"filesize\";i:751602;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:{}}}'),(10675,3261,'_wp_attached_file','2025/03/sheet-metal5.jpg'),(10676,3261,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:24:\"2025/03/sheet-metal5.jpg\";s:8:\"filesize\";i:662023;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:{}}}'),(10677,3262,'_wp_attached_file','2025/03/sheet-metal7.jpg'),(10678,3262,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:24:\"2025/03/sheet-metal7.jpg\";s:8:\"filesize\";i:965285;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:{}}}'),(10679,3263,'_wp_attached_file','2025/03/sheet-metal8.jpg'),(10680,3263,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:24:\"2025/03/sheet-metal8.jpg\";s:8:\"filesize\";i:500961;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:{}}}'),(10681,3264,'_wp_attached_file','2025/03/sheet-metal9.jpg'),(10682,3264,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:24:\"2025/03/sheet-metal9.jpg\";s:8:\"filesize\";i:517014;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:{}}}'),(10683,3265,'_wp_attached_file','2025/03/sheet-metal10.jpg'),(10684,3265,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:25:\"2025/03/sheet-metal10.jpg\";s:8:\"filesize\";i:609283;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:{}}}'),(10685,3266,'_wp_attached_file','2025/03/sheet-metal2.png'),(10686,3266,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1441;s:6:\"height\";i:2560;s:4:\"file\";s:24:\"2025/03/sheet-metal2.png\";s:8:\"filesize\";i:2492639;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:{}}}'),(10687,3267,'_wp_attached_file','2025/03/sheet-metal6.jpg'),(10688,3267,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:24:\"2025/03/sheet-metal6.jpg\";s:8:\"filesize\";i:871774;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(10689,3268,'_wp_attached_file','2025/03/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg'),(10690,3268,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:59:\"2025/03/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\";s:8:\"filesize\";i:649145;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:{}}}'),(10691,3269,'_wp_attached_file','2025/03/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg'),(10692,3269,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1153;s:6:\"height\";i:2560;s:4:\"file\";s:59:\"2025/03/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\";s:8:\"filesize\";i:477721;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:{}}}'),(10693,3270,'_wp_attached_file','2025/03/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg'),(10694,3270,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:59:\"2025/03/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\";s:8:\"filesize\";i:502776;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:{}}}'),(10695,3271,'_wp_attached_file','2025/03/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg'),(10696,3271,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:59:\"2025/03/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\";s:8:\"filesize\";i:549264;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:{}}}'),(10697,3272,'_wp_attached_file','2025/03/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg'),(10698,3272,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:59:\"2025/03/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\";s:8:\"filesize\";i:915003;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:{}}}'),(10699,3273,'_wp_attached_file','2025/03/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg'),(10700,3273,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:59:\"2025/03/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\";s:8:\"filesize\";i:749395;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:{}}}'),(10701,3274,'_wp_attached_file','2025/03/IMG_1237.jpeg'),(10702,3274,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3024;s:6:\"height\";i:3024;s:4:\"file\";s:21:\"2025/03/IMG_1237.jpeg\";s:8:\"filesize\";i:1158730;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone 13\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1723653912\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.1\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(10703,3275,'_wp_attached_file','2025/03/DSC00822.jpg'),(10704,3275,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:6000;s:6:\"height\";i:4000;s:4:\"file\";s:20:\"2025/03/DSC00822.jpg\";s:8:\"filesize\";i:13598720;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M2\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1740666517\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"24\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:4:\"0.05\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(10706,3276,'_elementor_edit_mode','builder'),(10707,3276,'_elementor_template_type','wp-page'),(10708,3276,'_elementor_version','3.24.7'),(10709,3276,'_wp_page_template','default'),(10710,3276,'_elementor_data','[{\"id\":\"fcff723\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"dee41b0\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"Our strength lies in mass production of aluminum and steel. We excel in innovation and deliver high-value products to our customers.\",\"title_tag\":\"h5\",\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"373dfc0\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Welding\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"5603a87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2678,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074649965196_82fd76ddbbf38d64dae8af11b21537b9.jpg\"},{\"id\":2667,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074652723212_8770f028ff646f014f1e9f6efe34962e.jpg\"},{\"id\":2672,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074640939718_b0ff6acad14b2ab5ed158171c76833f9.jpg\"},{\"id\":2677,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074641293113_b4b186c67b6e7829dd2a91d730cf9aa7.jpg\"},{\"id\":2668,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074642763587_21ecce5d4accf371358eb4cbd73c800d.jpg\"},{\"id\":2669,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074642849848_10b5670512096e654748e57b24a04afe.jpg\"},{\"id\":2670,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074640758883_648a042f4b640d0f57a4441dd2109570.jpg\"},{\"id\":2671,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074640849237_e7699b1bc6e38e0bf65eb3bca28ae8ca.jpg\"},{\"id\":2673,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074641052070_9efbc1586cb5e95cc54b8421a63f380e.jpg\"},{\"id\":2674,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074641145273_7be5df3e1779aa04e890e40cc243cdee.jpg\"},{\"id\":2675,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074640653285_5a87adf57ce0c4186fe4fb1579e357b5.jpg\"},{\"id\":2676,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074641173826_45ae737f70dfb2d365abb397f139d708.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"dec4325\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Mold\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1852cc9\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2679,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736575578_e0a4f5473843e58ee1a79989f367ada9.jpg\"},{\"id\":2680,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\"},{\"id\":2681,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735219679_91a6f6993146906f8465b43ddd0c2b3c.jpg\"},{\"id\":2682,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736761454_b98d468b133ac59ebbf5e62b693462a4.jpg\"},{\"id\":2683,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736784335_f93bc7820cfdc0b015c8224b9a1ace10.jpg\"},{\"id\":2684,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069219941349_b0954e44a25a7d1543eb33ceeae20efb.jpg\"},{\"id\":2685,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735343201_d2922aa1680c57bfe2da9aaba121caa6.jpg\"},{\"id\":2686,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735441885_088dd417b659783376adfeb006d18180.jpg\"},{\"id\":2687,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735598101_0fdd0a773a22d6af92f694d7866b2a5a.jpg\"},{\"id\":2688,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735634632_da3df11cc1dfa978c5b70f2e44404712.jpg\"},{\"id\":2689,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735693987_bf7347f533ec750a2c4f9df1763b8881.jpg\"},{\"id\":2690,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735835496_a71ac50ddac36867fca21cee8c47fe0a.jpg\"},{\"id\":2691,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\"},{\"id\":2692,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\"},{\"id\":2693,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\"},{\"id\":2694,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\"},{\"id\":2695,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736324472_06f1ed1a1be2c3a5923070aff7d5e10e.jpg\"},{\"id\":2696,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736391051_4c3cae16a8ff4f216b8d53673772dd07.jpg\"},{\"id\":2697,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"ab81cda\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Machine Details\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"cd9dba9\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2698,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069219949175_e2a105bcf223c832d6caab2d03fe0413.jpg\"},{\"id\":2699,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799313165266_a15253e3a3e0a2c978ed667994b8f415.jpg\"},{\"id\":2700,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321604115_493f8355869dd3ca82a96e86e2982bfe.jpg\"},{\"id\":2701,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321696024_733a85bf835aea0a8afc8b269d149700.jpg\"},{\"id\":2702,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799313179567_c3d6675a03762fb94376dc96f05389bd.jpg\"},{\"id\":2703,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799313273454_ad716befaf43d2df147629d95262c520.jpg\"},{\"id\":2704,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363716249_96b2fea5fe33f4a24d8251c8aaf225e1.jpg\"},{\"id\":2705,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363723771_9eec4d51fc1723fb669f980084e20a61.jpg\"},{\"id\":2706,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363723892_5b7200026202a1efe96596109fad6857.jpg\"},{\"id\":2707,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363735361_9355fa7eb991123dc995dfaa2b4cf754.jpg\"},{\"id\":2708,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363746762_6241ac4c6625581b5db9b24a1ee05f68-1.jpg\"},{\"id\":2709,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363741409_d72124d9091280f6529a27a919be13c9.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"2f9b716\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Tool\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a165f68\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2710,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\"},{\"id\":2711,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\"},{\"id\":2712,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\"},{\"id\":2713,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\"},{\"id\":2714,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\"},{\"id\":2715,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\"},{\"id\":2716,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"bcd074c\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Motorbike Parts\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7eb3b87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2717,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028111300979_0052716b462843a5d1968f7870c72fd8.jpg\"},{\"id\":2718,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028112000000_2440d5ae36f700840d0f0b583bbcbdfa.jpg\"},{\"id\":2719,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028112670024_1806afd7d70bbbc523d63b0c61e9130b.jpg\"},{\"id\":2720,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028113287912_e1aa8bdb9fe72b1fe22887ceaafc0dbd.jpg\"},{\"id\":2721,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028113894704_3504e4bf093ad9f9d635c8bfa2aaaef6.jpg\"},{\"id\":2722,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028114767739_d014b10da5088bc7d3675a6d00e77d33.jpg\"},{\"id\":2723,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321434561_6d2cb75edba82832e0cbd90673857bd3.jpg\"},{\"id\":2724,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321448088_6e6944c3ceb335897e2b4f4ad20975b7.jpg\"},{\"id\":2725,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321548557_1a5e69a89ca37953e0c04c88e529d951.jpg\"},{\"id\":2726,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028109630704_29a82df97ea4ea7c37859f9667154da1.jpg\"},{\"id\":2727,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028109675984_511bb58690a73ab9cc1adcd146ca46f2.jpg\"},{\"id\":2728,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028110631415_9bd375451b2242776c3fa47a5e91f3e1.jpg\"},{\"id\":2729,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028111167101_685de2e5395bbf8d97e4d2f8aa87fee3.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"1ef8491\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Jig\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"09a76d6\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2730,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\"},{\"id\":2731,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\"},{\"id\":2732,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\"},{\"id\":2733,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\"},{\"id\":2734,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}]'),(10711,3276,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:20:\"widget-image-gallery\";}}'),(10712,3276,'_elementor_element_cache','{\"timeout\":1742266725,\"value\":{\"content\":\"<div class=\"elementor-element elementor-element-fcff723 e-flex e-con-boxed e-con e-parent\" data-id=\"fcff723\" data-element_type=\"container\">nttttt<div class=\"e-con-inner\">ntt[elementor-element data=\"eyJpZCI6ImRlZTQxYjAiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlIjoiT3VyIHN0cmVuZ3RoIGxpZXMgaW4gbWFzcyBwcm9kdWN0aW9uIG9mIGFsdW1pbnVtIGFuZCBzdGVlbC4gV2UgZXhjZWwgaW4gaW5ub3ZhdGlvbiBhbmQgZGVsaXZlciBoaWdoLXZhbHVlIHByb2R1Y3RzIHRvIG91ciBjdXN0b21lcnMuIiwidGl0bGVfdGFnIjoiaDUiLCJ0ZXh0X2FsaWduIjoiY2VudGVyIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"][elementor-element data=\"eyJpZCI6IjM3M2RmYzAiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiV2VsZGluZyIsInRleHRfYWxpZ24iOiJsZWZ0In0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"]tt<div class=\"elementor-element elementor-element-5603a87 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\" data-id=\"5603a87\" data-element_type=\"widget\" data-widget_type=\"image-gallery.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-image-gallery\">nttt<div id=\'gallery-1\' class=\'gallery galleryid-2126 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDk5NjUxOTZfODJmZDc2ZGRiYmYzOGQ2NGRhZThhZjExYjIxNTM3YjkuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074649965196_82fd76ddbbf38d64dae8af11b21537b9.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074649965196_82fd76ddbbf38d64dae8af11b21537b9.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY2NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NTI3MjMyMTJfODc3MGYwMjhmZjY0NmYwMTRmMWU5ZjZlZmUzNDk2MmUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074652723212_8770f028ff646f014f1e9f6efe34962e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074652723212_8770f028ff646f014f1e9f6efe34962e.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA5Mzk3MThfYjBmZjZhY2FkMTRiMmFiNWVkMTU4MTcxYzc2ODMzZjkuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640939718_b0ff6acad14b2ab5ed158171c76833f9.jpg\'><img width=\"84\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640939718_b0ff6acad14b2ab5ed158171c76833f9.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDEyOTMxMTNfYjRiMTg2YzY3YjZlNzgyOWRkMmE5MWQ3MzBjZjlhYTcuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641293113_b4b186c67b6e7829dd2a91d730cf9aa7.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641293113_b4b186c67b6e7829dd2a91d730cf9aa7.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY2OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDI3NjM1ODdfMjFlY2NlNWQ0YWNjZjM3MTM1OGViNGNiZDczYzgwMGQuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074642763587_21ecce5d4accf371358eb4cbd73c800d.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074642763587_21ecce5d4accf371358eb4cbd73c800d.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY2OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDI4NDk4NDhfMTBiNTY3MDUxMjA5NmU2NTQ3NDhlNTdiMjRhMDRhZmUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074642849848_10b5670512096e654748e57b24a04afe.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074642849848_10b5670512096e654748e57b24a04afe.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA3NTg4ODNfNjQ4YTA0MmY0YjY0MGQwZjU3YTQ0NDFkZDIxMDk1NzAuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640758883_648a042f4b640d0f57a4441dd2109570.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640758883_648a042f4b640d0f57a4441dd2109570.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA4NDkyMzdfZTc2OTliMWJjNmUzOGUwYmY2NWViM2JjYTI4YWU4Y2EuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640849237_e7699b1bc6e38e0bf65eb3bca28ae8ca.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640849237_e7699b1bc6e38e0bf65eb3bca28ae8ca.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDEwNTIwNzBfOWVmYmMxNTg2Y2I1ZTk1Y2M1NGI4NDIxYTYzZjM4MGUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641052070_9efbc1586cb5e95cc54b8421a63f380e.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641052070_9efbc1586cb5e95cc54b8421a63f380e.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDExNDUyNzNfN2JlNWRmM2UxNzc5YWEwNGU4OTBlNDBjYzI0M2NkZWUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641145273_7be5df3e1779aa04e890e40cc243cdee.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641145273_7be5df3e1779aa04e890e40cc243cdee.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA2NTMyODVfNWE4N2FkZjU3Y2UwYzQxODZmZTRmYjE1NzllMzU3YjUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640653285_5a87adf57ce0c4186fe4fb1579e357b5.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640653285_5a87adf57ce0c4186fe4fb1579e357b5.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDExNzM4MjZfNDVhZTczN2Y3MGRmYjJkMzY1YWJiMzk3ZjEzOWQ3MDguanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641173826_45ae737f70dfb2d365abb397f139d708.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641173826_45ae737f70dfb2d365abb397f139d708.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure>ntt</div>ntt</div>ntttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImRlYzQzMjUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiTW9sZCIsInRleHRfYWxpZ24iOiJsZWZ0In0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"]tt<div class=\"elementor-element elementor-element-1852cc9 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\" data-id=\"1852cc9\" data-element_type=\"widget\" data-widget_type=\"image-gallery.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-image-gallery\">nttt<div id=\'gallery-2\' class=\'gallery galleryid-2126 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY1NzU1NzhfZTBhNGY1NDczODQzZTU4ZWUxYTc5OTg5ZjM2N2FkYTkuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736575578_e0a4f5473843e58ee1a79989f367ada9.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736575578_e0a4f5473843e58ee1a79989f367ada9.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY3MjE1ODZfMTZiOTE5ODQyMGIzOTlmOWQ4MmMwNThkOTA4MmEzZTAuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUyMTk2NzlfOTFhNmY2OTkzMTQ2OTA2Zjg0NjViNDNkZGQwYzJiM2MuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735219679_91a6f6993146906f8465b43ddd0c2b3c.jpg\'><img width=\"68\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735219679_91a6f6993146906f8465b43ddd0c2b3c.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY3NjE0NTRfYjk4ZDQ2OGIxMzNhYzU5ZWJiZjVlNjJiNjkzNDYyYTQuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736761454_b98d468b133ac59ebbf5e62b693462a4.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736761454_b98d468b133ac59ebbf5e62b693462a4.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY3ODQzMzVfZjkzYmM3ODIwY2ZkYzBiMDE1YzgyMjRiOWExYWNlMTAuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736784335_f93bc7820cfdc0b015c8224b9a1ace10.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736784335_f93bc7820cfdc0b015c8224b9a1ace10.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjkyMTk5NDEzNDlfYjA5NTRlNDRhMjVhN2QxNTQzZWIzM2NlZWFlMjBlZmIuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069219941349_b0954e44a25a7d1543eb33ceeae20efb.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069219941349_b0954e44a25a7d1543eb33ceeae20efb.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUzNDMyMDFfZDI5MjJhYTE2ODBjNTdiZmUyZGE5YWFiYTEyMWNhYTYuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735343201_d2922aa1680c57bfe2da9aaba121caa6.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735343201_d2922aa1680c57bfe2da9aaba121caa6.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU0NDE4ODVfMDg4ZGQ0MTdiNjU5NzgzMzc2YWRmZWIwMDZkMTgxODAuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735441885_088dd417b659783376adfeb006d18180.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735441885_088dd417b659783376adfeb006d18180.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU1OTgxMDFfMGZkZDBhNzczYTIyZDZhZjkyZjY5NGQ3ODY2YjJhNWEuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735598101_0fdd0a773a22d6af92f694d7866b2a5a.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735598101_0fdd0a773a22d6af92f694d7866b2a5a.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU2MzQ2MzJfZGEzZGYxMWNjMWRmYTk3OGM1YjcwZjJlNDQ0MDQ3MTIuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735634632_da3df11cc1dfa978c5b70f2e44404712.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735634632_da3df11cc1dfa978c5b70f2e44404712.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU2OTM5ODdfYmY3MzQ3ZjUzM2VjNzUwYTJjNGY5ZGYxNzYzYjg4ODEuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735693987_bf7347f533ec750a2c4f9df1763b8881.jpg\'><img width=\"84\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735693987_bf7347f533ec750a2c4f9df1763b8881.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU4MzU0OTZfYTcxYWM1MGRkYWMzNjg2N2ZjYTIxY2VlOGM0N2ZlMGEuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735835496_a71ac50ddac36867fca21cee8c47fe0a.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735835496_a71ac50ddac36867fca21cee8c47fe0a.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU4OTM2OTJfNDhmNGE5ZjdjN2E5ZDA1ZGMwMzdhODBhYzFlNTc4MmIuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYwMDk1MTRfYWQ5MDg4N2YyNWQ3MzRlYzJkMjFkOGE2YTYzNGZmMmQuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYxMTA0MjZfYzNlY2UzZWM1NmY5ZThjYzBlNWM5YTk4Zjk3OTJiZmMuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYxNjUzNzJfODI1NjkzMjRkZTFjOGZjYzM3NmNjMGU3MzdjMDUyMGUuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYzMjQ0NzJfMDZmMWVkMWExYmUyYzNhNTkyMzA3MGFmZjdkNWUxMGUuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736324472_06f1ed1a1be2c3a5923070aff7d5e10e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736324472_06f1ed1a1be2c3a5923070aff7d5e10e.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYzOTEwNTFfNGMzY2FlMTZhOGZmNGYyMTZiOGQ1MzY3Mzc3MmRkMDcuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736391051_4c3cae16a8ff4f216b8d53673772dd07.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736391051_4c3cae16a8ff4f216b8d53673772dd07.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY0NTU3NzVfOTdhOTM3ODA3YzgwN2JmNzEzNjk0MTlhMGE1ZDNkMmMuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\'><img width=\"68\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure>ntt</div>ntt</div>ntttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImFiODFjZGEiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiTWFjaGluZSBEZXRhaWxzIiwidGV4dF9hbGlnbiI6ImxlZnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-cd9dba9 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\" data-id=\"cd9dba9\" data-element_type=\"widget\" data-widget_type=\"image-gallery.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-image-gallery\">nttt<div id=\'gallery-3\' class=\'gallery galleryid-2126 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjkyMTk5NDkxNzVfZTJhMTA1YmNmMjIzYzgzMmQ2Y2FhYjJkMDNmZTA0MTMuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069219949175_e2a105bcf223c832d6caab2d03fe0413.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069219949175_e2a105bcf223c832d6caab2d03fe0413.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMTMxNjUyNjZfYTE1MjUzZTNhM2UwYTJjOTc4ZWQ2Njc5OTRiOGY0MTUuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799313165266_a15253e3a3e0a2c978ed667994b8f415.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799313165266_a15253e3a3e0a2c978ed667994b8f415.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE2MDQxMTVfNDkzZjgzNTU4NjlkZDNjYTgyYTk2ZTg2ZTI5ODJiZmUuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321604115_493f8355869dd3ca82a96e86e2982bfe.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321604115_493f8355869dd3ca82a96e86e2982bfe.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE2OTYwMjRfNzMzYTg1YmY4MzVhZWEwYThhZmM4YjI2OWQxNDk3MDAuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321696024_733a85bf835aea0a8afc8b269d149700.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321696024_733a85bf835aea0a8afc8b269d149700.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMTMxNzk1NjdfYzNkNjY3NWEwMzc2MmZiOTQzNzZkYzk2ZjA1Mzg5YmQuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799313179567_c3d6675a03762fb94376dc96f05389bd.jpg\'><img width=\"150\" height=\"86\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799313179567_c3d6675a03762fb94376dc96f05389bd.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMTMyNzM0NTRfYWQ3MTZiZWZhZjQzZDJkZjE0NzYyOWQ5NTI2MmM1MjAuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799313273454_ad716befaf43d2df147629d95262c520.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799313273454_ad716befaf43d2df147629d95262c520.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MTYyNDlfOTZiMmZlYTVmZTMzZjRhMjRkODI1MWM4YWFmMjI1ZTEuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363716249_96b2fea5fe33f4a24d8251c8aaf225e1.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363716249_96b2fea5fe33f4a24d8251c8aaf225e1.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MjM3NzFfOWVlYzRkNTFmYzE3MjNmYjY2OWY5ODAwODRlMjBhNjEuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363723771_9eec4d51fc1723fb669f980084e20a61.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363723771_9eec4d51fc1723fb669f980084e20a61.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MjM4OTJfNWI3MjAwMDI2MjAyYTFlZmU5NjU5NjEwOWZhZDY4NTcuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363723892_5b7200026202a1efe96596109fad6857.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363723892_5b7200026202a1efe96596109fad6857.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MzUzNjFfOTM1NWZhN2ViOTkxMTIzZGM5OTVkZmFhMmI0Y2Y3NTQuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363735361_9355fa7eb991123dc995dfaa2b4cf754.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363735361_9355fa7eb991123dc995dfaa2b4cf754.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3NDY3NjJfNjI0MWFjNGM2NjI1NTgxYjVkYjliMjRhMWVlMDVmNjgtMS5qcGciLCJzbGlkZXNob3ciOiJjZDlkYmE5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363746762_6241ac4c6625581b5db9b24a1ee05f68-1.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363746762_6241ac4c6625581b5db9b24a1ee05f68-1.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3NDE0MDlfZDcyMTI0ZDkwOTEyODBmNjUyOWEyN2E5MTliZTEzYzkuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363741409_d72124d9091280f6529a27a919be13c9.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363741409_d72124d9091280f6529a27a919be13c9.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure>ntt</div>ntt</div>ntttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6IjJmOWI3MTYiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiVG9vbCIsInRleHRfYWxpZ24iOiJsZWZ0In0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"]tt<div class=\"elementor-element elementor-element-a165f68 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\" data-id=\"a165f68\" data-element_type=\"widget\" data-widget_type=\"image-gallery.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-image-gallery\">nttt<div id=\'gallery-4\' class=\'gallery galleryid-2126 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwMTgzMzRfMTdjNWZhYzk2ZmIyODQzZDc0YTc2Y2M3OWY5YjRmNWMuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\'><img width=\"150\" height=\"135\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwMzczNTNfZGI4NzczMmIzZWE5ZDkzNTM2YmNkM2FlYzY0ODM1YTcuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNTkxNjJfMDUzYjM2NGFiNzYxZGM1YTQ0Mjc5ZmFmNjQzOTUzMjQuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\'><img width=\"70\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNzgzNzJfNTBhYmNlNTI0OWM4YWNkY2ZiZGY4YTA2MzQ4OWUxODYuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNzg1NzBfMGFiNThiNDZiZjY4M2RmNmVjZGIyYzJkODc5NDViYTYuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\'><img width=\"150\" height=\"129\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk2ODQ5NDkwODZfYjI5ZmRiNTAxMTRhMTk2Y2MzZmRjYzllMTJjYWYxMDUuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\'><img width=\"150\" height=\"128\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk2ODQ5NDY2NDFfMTUwMGZiZTE2ZmVjM2ExNGVhZGI4ZTRhZWQxY2Y2M2YuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure>ntt</div>ntt</div>ntttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImJjZDA3NGMiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiTW90b3JiaWtlIFBhcnRzIiwidGV4dF9hbGlnbiI6ImxlZnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-7eb3b87 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\" data-id=\"7eb3b87\" data-element_type=\"widget\" data-widget_type=\"image-gallery.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-image-gallery\">nttt<div id=\'gallery-5\' class=\'gallery galleryid-2126 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTEzMDA5NzlfMDA1MjcxNmI0NjI4NDNhNWQxOTY4Zjc4NzBjNzJmZDguanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028111300979_0052716b462843a5d1968f7870c72fd8.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028111300979_0052716b462843a5d1968f7870c72fd8.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTIwMDAwMDBfMjQ0MGQ1YWUzNmY3MDA4NDBkMGYwYjU4M2JiY2JkZmEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028112000000_2440d5ae36f700840d0f0b583bbcbdfa.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028112000000_2440d5ae36f700840d0f0b583bbcbdfa.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTI2NzAwMjRfMTgwNmFmZDdkNzBiYmJjNTIzZDYzYjBjNjFlOTEzMGIuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028112670024_1806afd7d70bbbc523d63b0c61e9130b.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028112670024_1806afd7d70bbbc523d63b0c61e9130b.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTMyODc5MTJfZTFhYThiZGI5ZmU3MmIxZmUyMjg4N2NlYWFmYzBkYmQuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028113287912_e1aa8bdb9fe72b1fe22887ceaafc0dbd.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028113287912_e1aa8bdb9fe72b1fe22887ceaafc0dbd.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTM4OTQ3MDRfMzUwNGU0YmYwOTNhZDlmOWQ2MzVjOGJmYTJhYWFlZjYuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028113894704_3504e4bf093ad9f9d635c8bfa2aaaef6.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028113894704_3504e4bf093ad9f9d635c8bfa2aaaef6.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTQ3Njc3MzlfZDAxNGIxMGRhNTA4OGJjN2QzNjc1YTZkMDBlNzdkMzMuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028114767739_d014b10da5088bc7d3675a6d00e77d33.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028114767739_d014b10da5088bc7d3675a6d00e77d33.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE0MzQ1NjFfNmQyY2I3NWVkYmE4MjgzMmUwY2JkOTA2NzM4NTdiZDMuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321434561_6d2cb75edba82832e0cbd90673857bd3.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321434561_6d2cb75edba82832e0cbd90673857bd3.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE0NDgwODhfNmU2OTQ0YzNjZWIzMzU4OTdlMmI0ZjRhZDIwOTc1YjcuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321448088_6e6944c3ceb335897e2b4f4ad20975b7.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321448088_6e6944c3ceb335897e2b4f4ad20975b7.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE1NDg1NTdfMWE1ZTY5YTg5Y2EzNzk1M2UwYzA0Yzg4ZTUyOWQ5NTEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321548557_1a5e69a89ca37953e0c04c88e529d951.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321548557_1a5e69a89ca37953e0c04c88e529d951.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMDk2MzA3MDRfMjlhODJkZjk3ZWE0ZWE3YzM3ODU5Zjk2NjcxNTRkYTEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028109630704_29a82df97ea4ea7c37859f9667154da1.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028109630704_29a82df97ea4ea7c37859f9667154da1.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMDk2NzU5ODRfNTExYmI1ODY5MGE3M2FiOWNjMWFkY2QxNDZjYTQ2ZjIuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028109675984_511bb58690a73ab9cc1adcd146ca46f2.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028109675984_511bb58690a73ab9cc1adcd146ca46f2.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTA2MzE0MTVfOWJkMzc1NDUxYjIyNDI3NzZjM2ZhNDdhNWU5MWYzZTEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028110631415_9bd375451b2242776c3fa47a5e91f3e1.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028110631415_9bd375451b2242776c3fa47a5e91f3e1.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTExNjcxMDFfNjg1ZGUyZTUzOTViYmY4ZDk3ZTRkMmY4YWE4N2ZlZTMuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028111167101_685de2e5395bbf8d97e4d2f8aa87fee3.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028111167101_685de2e5395bbf8d97e4d2f8aa87fee3.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure>ntt</div>ntt</div>ntttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6IjFlZjg0OTEiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiSmlnIiwidGV4dF9hbGlnbiI6ImxlZnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-09a76d6 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\" data-id=\"09a76d6\" data-element_type=\"widget\" data-widget_type=\"image-gallery.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-image-gallery\">nttt<div id=\'gallery-6\' class=\'gallery galleryid-2126 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NDY1OTEzMzg2ODdfZmE1MTRlMTY0ZjJlZTk5NjFjZmVlY2U5YjJhMjk2MmUuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTE0ODI0OTc5ODFfNGZlOGQ1MmM3N2ZiOTcwYWNjYWNhOTkzMTFiM2U1YjguanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNTQzNzc3MTM5OTRfNzMxZjNhYzFmN2YzMjMyNjExMWE0MWY2N2Q0YTJlMzMuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE2NTM3NjdfNzk3Y2FkYTk3Yjk4NjQyZTYyYzkxODU3YzYwYjViNDQuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NDY1OTEzNDkxOTRfZDUwMTBkMTcwMGM3Y2ViNDkxYjk3OGIwMWJlM2RkMjguanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure>ntt</div>ntt</div>ntttt</div>ntttt</div>nttttt</div>ntttt</div>ntt\",\"scripts\":[],\"styles\":[\"widget-image-gallery\"]}}'),(10713,3276,'_elementor_css','a:6:{s:4:\"time\";i:1742181216;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:\"\";}'),(10714,3277,'_elementor_edit_mode','builder'),(10715,3277,'_elementor_template_type','wp-page'),(10716,3277,'_elementor_version','3.24.7'),(10717,3277,'_wp_page_template','default'),(10718,3277,'_elementor_data','[{\"id\":\"fcff723\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"dee41b0\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"Our strength lies in mass production of aluminum and steel. We excel in innovation and deliver high-value products to our customers.\",\"title_tag\":\"h5\",\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"373dfc0\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Welding\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"5603a87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2678,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074649965196_82fd76ddbbf38d64dae8af11b21537b9.jpg\"},{\"id\":2667,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074652723212_8770f028ff646f014f1e9f6efe34962e.jpg\"},{\"id\":2672,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074640939718_b0ff6acad14b2ab5ed158171c76833f9.jpg\"},{\"id\":2677,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074641293113_b4b186c67b6e7829dd2a91d730cf9aa7.jpg\"},{\"id\":2668,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074642763587_21ecce5d4accf371358eb4cbd73c800d.jpg\"},{\"id\":2669,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074642849848_10b5670512096e654748e57b24a04afe.jpg\"},{\"id\":2670,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074640758883_648a042f4b640d0f57a4441dd2109570.jpg\"},{\"id\":2671,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074640849237_e7699b1bc6e38e0bf65eb3bca28ae8ca.jpg\"},{\"id\":2673,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074641052070_9efbc1586cb5e95cc54b8421a63f380e.jpg\"},{\"id\":2674,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074641145273_7be5df3e1779aa04e890e40cc243cdee.jpg\"},{\"id\":2675,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074640653285_5a87adf57ce0c4186fe4fb1579e357b5.jpg\"},{\"id\":2676,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074641173826_45ae737f70dfb2d365abb397f139d708.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"dec4325\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Mold\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1852cc9\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2679,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736575578_e0a4f5473843e58ee1a79989f367ada9.jpg\"},{\"id\":2680,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\"},{\"id\":2681,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735219679_91a6f6993146906f8465b43ddd0c2b3c.jpg\"},{\"id\":2682,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736761454_b98d468b133ac59ebbf5e62b693462a4.jpg\"},{\"id\":2683,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736784335_f93bc7820cfdc0b015c8224b9a1ace10.jpg\"},{\"id\":2684,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069219941349_b0954e44a25a7d1543eb33ceeae20efb.jpg\"},{\"id\":2685,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735343201_d2922aa1680c57bfe2da9aaba121caa6.jpg\"},{\"id\":2686,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735441885_088dd417b659783376adfeb006d18180.jpg\"},{\"id\":2687,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735598101_0fdd0a773a22d6af92f694d7866b2a5a.jpg\"},{\"id\":2688,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735634632_da3df11cc1dfa978c5b70f2e44404712.jpg\"},{\"id\":2689,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735693987_bf7347f533ec750a2c4f9df1763b8881.jpg\"},{\"id\":2690,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735835496_a71ac50ddac36867fca21cee8c47fe0a.jpg\"},{\"id\":2691,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\"},{\"id\":2692,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\"},{\"id\":2693,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\"},{\"id\":2694,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\"},{\"id\":2695,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736324472_06f1ed1a1be2c3a5923070aff7d5e10e.jpg\"},{\"id\":2696,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736391051_4c3cae16a8ff4f216b8d53673772dd07.jpg\"},{\"id\":2697,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"ab81cda\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Machine Details\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"cd9dba9\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2698,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069219949175_e2a105bcf223c832d6caab2d03fe0413.jpg\"},{\"id\":2699,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799313165266_a15253e3a3e0a2c978ed667994b8f415.jpg\"},{\"id\":2700,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321604115_493f8355869dd3ca82a96e86e2982bfe.jpg\"},{\"id\":2701,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321696024_733a85bf835aea0a8afc8b269d149700.jpg\"},{\"id\":2702,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799313179567_c3d6675a03762fb94376dc96f05389bd.jpg\"},{\"id\":2703,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799313273454_ad716befaf43d2df147629d95262c520.jpg\"},{\"id\":2704,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363716249_96b2fea5fe33f4a24d8251c8aaf225e1.jpg\"},{\"id\":2705,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363723771_9eec4d51fc1723fb669f980084e20a61.jpg\"},{\"id\":2706,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363723892_5b7200026202a1efe96596109fad6857.jpg\"},{\"id\":2707,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363735361_9355fa7eb991123dc995dfaa2b4cf754.jpg\"},{\"id\":2708,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363746762_6241ac4c6625581b5db9b24a1ee05f68-1.jpg\"},{\"id\":2709,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363741409_d72124d9091280f6529a27a919be13c9.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"2f9b716\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Tool\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a165f68\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2710,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\"},{\"id\":2711,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\"},{\"id\":2712,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\"},{\"id\":2713,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\"},{\"id\":2714,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\"},{\"id\":2715,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\"},{\"id\":2716,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"bcd074c\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Motorbike Parts\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7eb3b87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2717,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028111300979_0052716b462843a5d1968f7870c72fd8.jpg\"},{\"id\":2718,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028112000000_2440d5ae36f700840d0f0b583bbcbdfa.jpg\"},{\"id\":2719,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028112670024_1806afd7d70bbbc523d63b0c61e9130b.jpg\"},{\"id\":2720,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028113287912_e1aa8bdb9fe72b1fe22887ceaafc0dbd.jpg\"},{\"id\":2721,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028113894704_3504e4bf093ad9f9d635c8bfa2aaaef6.jpg\"},{\"id\":2722,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028114767739_d014b10da5088bc7d3675a6d00e77d33.jpg\"},{\"id\":2723,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321434561_6d2cb75edba82832e0cbd90673857bd3.jpg\"},{\"id\":2724,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321448088_6e6944c3ceb335897e2b4f4ad20975b7.jpg\"},{\"id\":2725,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321548557_1a5e69a89ca37953e0c04c88e529d951.jpg\"},{\"id\":2726,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028109630704_29a82df97ea4ea7c37859f9667154da1.jpg\"},{\"id\":2727,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028109675984_511bb58690a73ab9cc1adcd146ca46f2.jpg\"},{\"id\":2728,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028110631415_9bd375451b2242776c3fa47a5e91f3e1.jpg\"},{\"id\":2729,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028111167101_685de2e5395bbf8d97e4d2f8aa87fee3.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"1ef8491\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Jig\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"09a76d6\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2730,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\"},{\"id\":2731,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\"},{\"id\":2732,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\"},{\"id\":2733,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\"},{\"id\":2734,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}]'),(10719,3277,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:20:\"widget-image-gallery\";}}'),(10720,3277,'_elementor_element_cache','{\"timeout\":1742266725,\"value\":{\"content\":\"<div class=\"elementor-element elementor-element-fcff723 e-flex e-con-boxed e-con e-parent\" data-id=\"fcff723\" data-element_type=\"container\">nttttt<div class=\"e-con-inner\">ntt[elementor-element data=\"eyJpZCI6ImRlZTQxYjAiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlIjoiT3VyIHN0cmVuZ3RoIGxpZXMgaW4gbWFzcyBwcm9kdWN0aW9uIG9mIGFsdW1pbnVtIGFuZCBzdGVlbC4gV2UgZXhjZWwgaW4gaW5ub3ZhdGlvbiBhbmQgZGVsaXZlciBoaWdoLXZhbHVlIHByb2R1Y3RzIHRvIG91ciBjdXN0b21lcnMuIiwidGl0bGVfdGFnIjoiaDUiLCJ0ZXh0X2FsaWduIjoiY2VudGVyIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"][elementor-element data=\"eyJpZCI6IjM3M2RmYzAiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiV2VsZGluZyIsInRleHRfYWxpZ24iOiJsZWZ0In0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"]tt<div class=\"elementor-element elementor-element-5603a87 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\" data-id=\"5603a87\" data-element_type=\"widget\" data-widget_type=\"image-gallery.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-image-gallery\">nttt<div id=\'gallery-1\' class=\'gallery galleryid-2126 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDk5NjUxOTZfODJmZDc2ZGRiYmYzOGQ2NGRhZThhZjExYjIxNTM3YjkuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074649965196_82fd76ddbbf38d64dae8af11b21537b9.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074649965196_82fd76ddbbf38d64dae8af11b21537b9.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY2NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NTI3MjMyMTJfODc3MGYwMjhmZjY0NmYwMTRmMWU5ZjZlZmUzNDk2MmUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074652723212_8770f028ff646f014f1e9f6efe34962e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074652723212_8770f028ff646f014f1e9f6efe34962e.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA5Mzk3MThfYjBmZjZhY2FkMTRiMmFiNWVkMTU4MTcxYzc2ODMzZjkuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640939718_b0ff6acad14b2ab5ed158171c76833f9.jpg\'><img width=\"84\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640939718_b0ff6acad14b2ab5ed158171c76833f9.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDEyOTMxMTNfYjRiMTg2YzY3YjZlNzgyOWRkMmE5MWQ3MzBjZjlhYTcuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641293113_b4b186c67b6e7829dd2a91d730cf9aa7.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641293113_b4b186c67b6e7829dd2a91d730cf9aa7.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY2OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDI3NjM1ODdfMjFlY2NlNWQ0YWNjZjM3MTM1OGViNGNiZDczYzgwMGQuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074642763587_21ecce5d4accf371358eb4cbd73c800d.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074642763587_21ecce5d4accf371358eb4cbd73c800d.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY2OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDI4NDk4NDhfMTBiNTY3MDUxMjA5NmU2NTQ3NDhlNTdiMjRhMDRhZmUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074642849848_10b5670512096e654748e57b24a04afe.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074642849848_10b5670512096e654748e57b24a04afe.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA3NTg4ODNfNjQ4YTA0MmY0YjY0MGQwZjU3YTQ0NDFkZDIxMDk1NzAuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640758883_648a042f4b640d0f57a4441dd2109570.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640758883_648a042f4b640d0f57a4441dd2109570.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA4NDkyMzdfZTc2OTliMWJjNmUzOGUwYmY2NWViM2JjYTI4YWU4Y2EuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640849237_e7699b1bc6e38e0bf65eb3bca28ae8ca.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640849237_e7699b1bc6e38e0bf65eb3bca28ae8ca.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDEwNTIwNzBfOWVmYmMxNTg2Y2I1ZTk1Y2M1NGI4NDIxYTYzZjM4MGUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641052070_9efbc1586cb5e95cc54b8421a63f380e.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641052070_9efbc1586cb5e95cc54b8421a63f380e.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDExNDUyNzNfN2JlNWRmM2UxNzc5YWEwNGU4OTBlNDBjYzI0M2NkZWUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641145273_7be5df3e1779aa04e890e40cc243cdee.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641145273_7be5df3e1779aa04e890e40cc243cdee.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA2NTMyODVfNWE4N2FkZjU3Y2UwYzQxODZmZTRmYjE1NzllMzU3YjUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640653285_5a87adf57ce0c4186fe4fb1579e357b5.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640653285_5a87adf57ce0c4186fe4fb1579e357b5.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDExNzM4MjZfNDVhZTczN2Y3MGRmYjJkMzY1YWJiMzk3ZjEzOWQ3MDguanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641173826_45ae737f70dfb2d365abb397f139d708.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641173826_45ae737f70dfb2d365abb397f139d708.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure>ntt</div>ntt</div>ntttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImRlYzQzMjUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiTW9sZCIsInRleHRfYWxpZ24iOiJsZWZ0In0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"]tt<div class=\"elementor-element elementor-element-1852cc9 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\" data-id=\"1852cc9\" data-element_type=\"widget\" data-widget_type=\"image-gallery.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-image-gallery\">nttt<div id=\'gallery-2\' class=\'gallery galleryid-2126 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY1NzU1NzhfZTBhNGY1NDczODQzZTU4ZWUxYTc5OTg5ZjM2N2FkYTkuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736575578_e0a4f5473843e58ee1a79989f367ada9.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736575578_e0a4f5473843e58ee1a79989f367ada9.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY3MjE1ODZfMTZiOTE5ODQyMGIzOTlmOWQ4MmMwNThkOTA4MmEzZTAuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUyMTk2NzlfOTFhNmY2OTkzMTQ2OTA2Zjg0NjViNDNkZGQwYzJiM2MuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735219679_91a6f6993146906f8465b43ddd0c2b3c.jpg\'><img width=\"68\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735219679_91a6f6993146906f8465b43ddd0c2b3c.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY3NjE0NTRfYjk4ZDQ2OGIxMzNhYzU5ZWJiZjVlNjJiNjkzNDYyYTQuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736761454_b98d468b133ac59ebbf5e62b693462a4.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736761454_b98d468b133ac59ebbf5e62b693462a4.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY3ODQzMzVfZjkzYmM3ODIwY2ZkYzBiMDE1YzgyMjRiOWExYWNlMTAuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736784335_f93bc7820cfdc0b015c8224b9a1ace10.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736784335_f93bc7820cfdc0b015c8224b9a1ace10.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjkyMTk5NDEzNDlfYjA5NTRlNDRhMjVhN2QxNTQzZWIzM2NlZWFlMjBlZmIuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069219941349_b0954e44a25a7d1543eb33ceeae20efb.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069219941349_b0954e44a25a7d1543eb33ceeae20efb.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUzNDMyMDFfZDI5MjJhYTE2ODBjNTdiZmUyZGE5YWFiYTEyMWNhYTYuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735343201_d2922aa1680c57bfe2da9aaba121caa6.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735343201_d2922aa1680c57bfe2da9aaba121caa6.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU0NDE4ODVfMDg4ZGQ0MTdiNjU5NzgzMzc2YWRmZWIwMDZkMTgxODAuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735441885_088dd417b659783376adfeb006d18180.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735441885_088dd417b659783376adfeb006d18180.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU1OTgxMDFfMGZkZDBhNzczYTIyZDZhZjkyZjY5NGQ3ODY2YjJhNWEuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735598101_0fdd0a773a22d6af92f694d7866b2a5a.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735598101_0fdd0a773a22d6af92f694d7866b2a5a.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU2MzQ2MzJfZGEzZGYxMWNjMWRmYTk3OGM1YjcwZjJlNDQ0MDQ3MTIuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735634632_da3df11cc1dfa978c5b70f2e44404712.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735634632_da3df11cc1dfa978c5b70f2e44404712.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU2OTM5ODdfYmY3MzQ3ZjUzM2VjNzUwYTJjNGY5ZGYxNzYzYjg4ODEuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735693987_bf7347f533ec750a2c4f9df1763b8881.jpg\'><img width=\"84\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735693987_bf7347f533ec750a2c4f9df1763b8881.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU4MzU0OTZfYTcxYWM1MGRkYWMzNjg2N2ZjYTIxY2VlOGM0N2ZlMGEuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735835496_a71ac50ddac36867fca21cee8c47fe0a.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735835496_a71ac50ddac36867fca21cee8c47fe0a.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU4OTM2OTJfNDhmNGE5ZjdjN2E5ZDA1ZGMwMzdhODBhYzFlNTc4MmIuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYwMDk1MTRfYWQ5MDg4N2YyNWQ3MzRlYzJkMjFkOGE2YTYzNGZmMmQuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYxMTA0MjZfYzNlY2UzZWM1NmY5ZThjYzBlNWM5YTk4Zjk3OTJiZmMuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYxNjUzNzJfODI1NjkzMjRkZTFjOGZjYzM3NmNjMGU3MzdjMDUyMGUuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYzMjQ0NzJfMDZmMWVkMWExYmUyYzNhNTkyMzA3MGFmZjdkNWUxMGUuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736324472_06f1ed1a1be2c3a5923070aff7d5e10e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736324472_06f1ed1a1be2c3a5923070aff7d5e10e.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYzOTEwNTFfNGMzY2FlMTZhOGZmNGYyMTZiOGQ1MzY3Mzc3MmRkMDcuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736391051_4c3cae16a8ff4f216b8d53673772dd07.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736391051_4c3cae16a8ff4f216b8d53673772dd07.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY0NTU3NzVfOTdhOTM3ODA3YzgwN2JmNzEzNjk0MTlhMGE1ZDNkMmMuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\'><img width=\"68\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure>ntt</div>ntt</div>ntttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImFiODFjZGEiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiTWFjaGluZSBEZXRhaWxzIiwidGV4dF9hbGlnbiI6ImxlZnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-cd9dba9 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\" data-id=\"cd9dba9\" data-element_type=\"widget\" data-widget_type=\"image-gallery.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-image-gallery\">nttt<div id=\'gallery-3\' class=\'gallery galleryid-2126 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjkyMTk5NDkxNzVfZTJhMTA1YmNmMjIzYzgzMmQ2Y2FhYjJkMDNmZTA0MTMuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069219949175_e2a105bcf223c832d6caab2d03fe0413.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069219949175_e2a105bcf223c832d6caab2d03fe0413.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMTMxNjUyNjZfYTE1MjUzZTNhM2UwYTJjOTc4ZWQ2Njc5OTRiOGY0MTUuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799313165266_a15253e3a3e0a2c978ed667994b8f415.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799313165266_a15253e3a3e0a2c978ed667994b8f415.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE2MDQxMTVfNDkzZjgzNTU4NjlkZDNjYTgyYTk2ZTg2ZTI5ODJiZmUuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321604115_493f8355869dd3ca82a96e86e2982bfe.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321604115_493f8355869dd3ca82a96e86e2982bfe.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE2OTYwMjRfNzMzYTg1YmY4MzVhZWEwYThhZmM4YjI2OWQxNDk3MDAuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321696024_733a85bf835aea0a8afc8b269d149700.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321696024_733a85bf835aea0a8afc8b269d149700.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMTMxNzk1NjdfYzNkNjY3NWEwMzc2MmZiOTQzNzZkYzk2ZjA1Mzg5YmQuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799313179567_c3d6675a03762fb94376dc96f05389bd.jpg\'><img width=\"150\" height=\"86\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799313179567_c3d6675a03762fb94376dc96f05389bd.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMTMyNzM0NTRfYWQ3MTZiZWZhZjQzZDJkZjE0NzYyOWQ5NTI2MmM1MjAuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799313273454_ad716befaf43d2df147629d95262c520.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799313273454_ad716befaf43d2df147629d95262c520.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MTYyNDlfOTZiMmZlYTVmZTMzZjRhMjRkODI1MWM4YWFmMjI1ZTEuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363716249_96b2fea5fe33f4a24d8251c8aaf225e1.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363716249_96b2fea5fe33f4a24d8251c8aaf225e1.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MjM3NzFfOWVlYzRkNTFmYzE3MjNmYjY2OWY5ODAwODRlMjBhNjEuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363723771_9eec4d51fc1723fb669f980084e20a61.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363723771_9eec4d51fc1723fb669f980084e20a61.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MjM4OTJfNWI3MjAwMDI2MjAyYTFlZmU5NjU5NjEwOWZhZDY4NTcuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363723892_5b7200026202a1efe96596109fad6857.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363723892_5b7200026202a1efe96596109fad6857.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MzUzNjFfOTM1NWZhN2ViOTkxMTIzZGM5OTVkZmFhMmI0Y2Y3NTQuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363735361_9355fa7eb991123dc995dfaa2b4cf754.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363735361_9355fa7eb991123dc995dfaa2b4cf754.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3NDY3NjJfNjI0MWFjNGM2NjI1NTgxYjVkYjliMjRhMWVlMDVmNjgtMS5qcGciLCJzbGlkZXNob3ciOiJjZDlkYmE5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363746762_6241ac4c6625581b5db9b24a1ee05f68-1.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363746762_6241ac4c6625581b5db9b24a1ee05f68-1.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3NDE0MDlfZDcyMTI0ZDkwOTEyODBmNjUyOWEyN2E5MTliZTEzYzkuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363741409_d72124d9091280f6529a27a919be13c9.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363741409_d72124d9091280f6529a27a919be13c9.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure>ntt</div>ntt</div>ntttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6IjJmOWI3MTYiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiVG9vbCIsInRleHRfYWxpZ24iOiJsZWZ0In0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"]tt<div class=\"elementor-element elementor-element-a165f68 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\" data-id=\"a165f68\" data-element_type=\"widget\" data-widget_type=\"image-gallery.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-image-gallery\">nttt<div id=\'gallery-4\' class=\'gallery galleryid-2126 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwMTgzMzRfMTdjNWZhYzk2ZmIyODQzZDc0YTc2Y2M3OWY5YjRmNWMuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\'><img width=\"150\" height=\"135\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwMzczNTNfZGI4NzczMmIzZWE5ZDkzNTM2YmNkM2FlYzY0ODM1YTcuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNTkxNjJfMDUzYjM2NGFiNzYxZGM1YTQ0Mjc5ZmFmNjQzOTUzMjQuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\'><img width=\"70\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNzgzNzJfNTBhYmNlNTI0OWM4YWNkY2ZiZGY4YTA2MzQ4OWUxODYuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNzg1NzBfMGFiNThiNDZiZjY4M2RmNmVjZGIyYzJkODc5NDViYTYuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\'><img width=\"150\" height=\"129\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk2ODQ5NDkwODZfYjI5ZmRiNTAxMTRhMTk2Y2MzZmRjYzllMTJjYWYxMDUuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\'><img width=\"150\" height=\"128\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk2ODQ5NDY2NDFfMTUwMGZiZTE2ZmVjM2ExNGVhZGI4ZTRhZWQxY2Y2M2YuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure>ntt</div>ntt</div>ntttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImJjZDA3NGMiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiTW90b3JiaWtlIFBhcnRzIiwidGV4dF9hbGlnbiI6ImxlZnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-7eb3b87 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\" data-id=\"7eb3b87\" data-element_type=\"widget\" data-widget_type=\"image-gallery.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-image-gallery\">nttt<div id=\'gallery-5\' class=\'gallery galleryid-2126 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTEzMDA5NzlfMDA1MjcxNmI0NjI4NDNhNWQxOTY4Zjc4NzBjNzJmZDguanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028111300979_0052716b462843a5d1968f7870c72fd8.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028111300979_0052716b462843a5d1968f7870c72fd8.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTIwMDAwMDBfMjQ0MGQ1YWUzNmY3MDA4NDBkMGYwYjU4M2JiY2JkZmEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028112000000_2440d5ae36f700840d0f0b583bbcbdfa.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028112000000_2440d5ae36f700840d0f0b583bbcbdfa.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTI2NzAwMjRfMTgwNmFmZDdkNzBiYmJjNTIzZDYzYjBjNjFlOTEzMGIuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028112670024_1806afd7d70bbbc523d63b0c61e9130b.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028112670024_1806afd7d70bbbc523d63b0c61e9130b.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTMyODc5MTJfZTFhYThiZGI5ZmU3MmIxZmUyMjg4N2NlYWFmYzBkYmQuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028113287912_e1aa8bdb9fe72b1fe22887ceaafc0dbd.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028113287912_e1aa8bdb9fe72b1fe22887ceaafc0dbd.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTM4OTQ3MDRfMzUwNGU0YmYwOTNhZDlmOWQ2MzVjOGJmYTJhYWFlZjYuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028113894704_3504e4bf093ad9f9d635c8bfa2aaaef6.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028113894704_3504e4bf093ad9f9d635c8bfa2aaaef6.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTQ3Njc3MzlfZDAxNGIxMGRhNTA4OGJjN2QzNjc1YTZkMDBlNzdkMzMuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028114767739_d014b10da5088bc7d3675a6d00e77d33.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028114767739_d014b10da5088bc7d3675a6d00e77d33.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE0MzQ1NjFfNmQyY2I3NWVkYmE4MjgzMmUwY2JkOTA2NzM4NTdiZDMuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321434561_6d2cb75edba82832e0cbd90673857bd3.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321434561_6d2cb75edba82832e0cbd90673857bd3.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE0NDgwODhfNmU2OTQ0YzNjZWIzMzU4OTdlMmI0ZjRhZDIwOTc1YjcuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321448088_6e6944c3ceb335897e2b4f4ad20975b7.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321448088_6e6944c3ceb335897e2b4f4ad20975b7.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE1NDg1NTdfMWE1ZTY5YTg5Y2EzNzk1M2UwYzA0Yzg4ZTUyOWQ5NTEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321548557_1a5e69a89ca37953e0c04c88e529d951.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321548557_1a5e69a89ca37953e0c04c88e529d951.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMDk2MzA3MDRfMjlhODJkZjk3ZWE0ZWE3YzM3ODU5Zjk2NjcxNTRkYTEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028109630704_29a82df97ea4ea7c37859f9667154da1.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028109630704_29a82df97ea4ea7c37859f9667154da1.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMDk2NzU5ODRfNTExYmI1ODY5MGE3M2FiOWNjMWFkY2QxNDZjYTQ2ZjIuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028109675984_511bb58690a73ab9cc1adcd146ca46f2.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028109675984_511bb58690a73ab9cc1adcd146ca46f2.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTA2MzE0MTVfOWJkMzc1NDUxYjIyNDI3NzZjM2ZhNDdhNWU5MWYzZTEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028110631415_9bd375451b2242776c3fa47a5e91f3e1.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028110631415_9bd375451b2242776c3fa47a5e91f3e1.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTExNjcxMDFfNjg1ZGUyZTUzOTViYmY4ZDk3ZTRkMmY4YWE4N2ZlZTMuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028111167101_685de2e5395bbf8d97e4d2f8aa87fee3.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028111167101_685de2e5395bbf8d97e4d2f8aa87fee3.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure>ntt</div>ntt</div>ntttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6IjFlZjg0OTEiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiSmlnIiwidGV4dF9hbGlnbiI6ImxlZnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-09a76d6 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\" data-id=\"09a76d6\" data-element_type=\"widget\" data-widget_type=\"image-gallery.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-image-gallery\">nttt<div id=\'gallery-6\' class=\'gallery galleryid-2126 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NDY1OTEzMzg2ODdfZmE1MTRlMTY0ZjJlZTk5NjFjZmVlY2U5YjJhMjk2MmUuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTE0ODI0OTc5ODFfNGZlOGQ1MmM3N2ZiOTcwYWNjYWNhOTkzMTFiM2U1YjguanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNTQzNzc3MTM5OTRfNzMxZjNhYzFmN2YzMjMyNjExMWE0MWY2N2Q0YTJlMzMuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE2NTM3NjdfNzk3Y2FkYTk3Yjk4NjQyZTYyYzkxODU3YzYwYjViNDQuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NDY1OTEzNDkxOTRfZDUwMTBkMTcwMGM3Y2ViNDkxYjk3OGIwMWJlM2RkMjguanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure>ntt</div>ntt</div>ntttt</div>ntttt</div>nttttt</div>ntttt</div>ntt\",\"scripts\":[],\"styles\":[\"widget-image-gallery\"]}}'),(10721,3277,'_elementor_css','a:6:{s:4:\"time\";i:1742181216;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:\"\";}'),(10722,3278,'_elementor_edit_mode','builder'),(10723,3278,'_elementor_template_type','wp-page'),(10724,3278,'_elementor_version','3.24.7'),(10725,3278,'_wp_page_template','default'),(10726,3278,'_elementor_data','[{\"id\":\"fcff723\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"dee41b0\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"Our strength lies in mass production of aluminum and steel. We excel in innovation and deliver high-value products to our customers.\",\"title_tag\":\"h5\",\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"373dfc0\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Automotive & Motorcycle\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"5603a87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":3190,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Ab6277516622141b68178f66bebaadd93o.jpg_350x350.jpg\"},{\"id\":3191,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A4969ef2343a244608cc511d1e7be28e2X.png_350x350.png\"},{\"id\":3192,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/H9be6461494cf4fe7998192dc483066c9v.png_350x350.png\"},{\"id\":3193,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/H4cbac47ae6cf4705b966668ca1abad509.png_350x350.png\"},{\"id\":3194,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/H6c00bd237d8b46d4b06a1cc6ef76accfE.png_350x350.png\"},{\"id\":3195,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/H71abe7a763a345ae87dcf70c25a70a32M.png_350x350.png\"},{\"id\":3196,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/2.jpg\"},{\"id\":3197,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A045fe45345664394a2a80499b4bd2117i.jpg_350x350.jpg\"},{\"id\":3198,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A86e039df1c9d4e809ea53dfd676ba67aO.jpg_350x350.jpg\"},{\"id\":3199,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A786dc427af46457ea923c41ea7688f67Q.jpg_350x350.jpg\"},{\"id\":3200,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/6.jpg\"},{\"id\":3201,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A2ed5a5c3f8f544c8910a3fe29da5e2984.jpg_350x350.jpg\"},{\"id\":3202,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A3c80646854cd4401b6b737a80e8e29f2Z.jpg_350x350.jpg\"},{\"id\":3203,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A53f94fffa0e64ba8a47330e85a179214l.jpg_350x350.jpg\"},{\"id\":3204,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Aa559aaa8e8d44868b700967e182631e0O.jpg_350x350.jpg\"},{\"id\":3205,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/4.jpg\"},{\"id\":3206,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A29209fca14e3491286a7ae2a7d535066t.jpg_350x350.jpg\"},{\"id\":3207,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Afd6e5018d54a4c319b4941af57e38fc1e.jpg_350x350.jpg\"},{\"id\":3208,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A8626df5ae89c458484cbdeab6b0a2768E.jpg_350x350.jpg\"},{\"id\":3209,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Aec2a4cd895e648b6bc7174d864e103329.jpg_350x350.jpg\"},{\"id\":3210,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/1.jpg\"},{\"id\":3211,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A5fa71b0eddf648049c5f33d331738460m.jpg_350x350.jpg\"},{\"id\":3212,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A9bc1872697d649e7a28d14c48cd6b71bq.jpg_350x350.jpg\"},{\"id\":3213,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Ad0c782b84615484d8303ad964cd302a4C.jpg_350x350.jpg\"},{\"id\":3214,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Aec3f44d2c0cf4536870b19097b5035f4A.jpg_350x350.jpg\"},{\"id\":3215,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/8.jpg\"},{\"id\":3216,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A5df619ce89ec42189a5c4d05bbba4f2dw.jpg_350x350.jpg\"},{\"id\":3217,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A9207015598ae47e4ba57d5d6755a7945J.jpg_350x350.jpg\"},{\"id\":3218,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Aa67514ca153a43208612611af15ae689t.jpg_350x350.jpg\"},{\"id\":3219,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Ac8c57af57fc04a9b8afbcf5214d8b125a.jpg_350x350.jpg\"},{\"id\":3220,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Aea1a2ea6c9d04b78977d1e8c907e721cR.jpg_350x350.jpg\"},{\"id\":3221,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/5.jpg\"},{\"id\":3222,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/7.jpg\"},{\"id\":3223,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A4fa22b3db4704145a9c8f2b6d413b4b7Y.jpg_350x350.jpg\"},{\"id\":3224,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A8cfa154ca70a46c5965e993255b53ecbg.jpg_350x350.jpg\"},{\"id\":3225,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A967c634a517c48f38c23d4766db5bba1a.jpg_350x350.jpg\"},{\"id\":3226,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A462413b6de2b401ba60e99bbe1d15e33K.jpg_350x350.jpg\"},{\"id\":3227,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A661399142a7247278bbf69a9d6007556W.jpg_350x350.jpg\"},{\"id\":3228,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/10.jpg\"},{\"id\":3229,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A16eb71f546c44c4ba00c6afe46464d593.jpg_350x350.jpg\"},{\"id\":3230,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A72a21ba969c84b98b63b985380b97ef5O.jpg_350x350.jpg\"},{\"id\":3231,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A99574ebe1a6c432abebb91680e3e227e0.jpg_350x350.jpg\"},{\"id\":3232,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Ac6d9a3b79a904eeb9c925afa374ec53aA.jpg_350x350.jpg\"},{\"id\":3233,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Adef05c3212194f259f1556cd5081ab3eg.jpg_350x350.jpg\"},{\"id\":3234,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/3.jpg\"},{\"id\":3235,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/9.jpg\"},{\"id\":3236,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A268aa8f9b65c4cdf9f45e594f2cd8ad4M.jpg_350x350.jpg\"},{\"id\":3237,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A864432f2571743689342ae173ee9dc9fd.jpg_350x350.jpg\"},{\"id\":3238,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Abd43851c92654bd99cfdca45d896fbcbB.jpg_350x350.jpg\"},{\"id\":3239,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Acdd1226298dd4613abf021bdcaad320b0.jpg_350x350.jpg\"},{\"id\":3240,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Ae91bf7f51db3402ebaff610c299e9aacF.jpg_350x350.jpg\"},{\"id\":3241,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A05f18d47e70948ae8795111d055f42fa2.jpg_350x350.jpg\"},{\"id\":3242,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A5c37792f38434388a02a0479fcbc4123T.jpg_350x350.jpg\"},{\"id\":3243,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A8c420992f47745509f4f292ac7bd2258H.jpg_350x350.jpg\"},{\"id\":3244,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A1001e63ea59149f8a81abb92d5d5fe713.jpg_350x350.jpg\"},{\"id\":3245,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A36346f881b104996b6c070b5d2cebff8u.jpg_350x350.jpg\"},{\"id\":3246,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A157183c07a764eb8957bc4cd13982808i.jpg_350x350.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"dec4325\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"CNC Machined Parts\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1852cc9\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":3247,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok5.jpg\"},{\"id\":3248,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok4.png\"},{\"id\":3249,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-machine22.avif\"},{\"id\":3250,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-machine3.jpg\"},{\"id\":3251,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok3.png\"},{\"id\":3252,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok1.png\"},{\"id\":3253,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok2.png\"},{\"id\":3254,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok7.png\"},{\"id\":3255,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok9.jpg\"},{\"id\":3256,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok8.jpg\"},{\"id\":3257,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z5709443476797_cb3e9e0d596ad6331366b8a711f46926.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"ab81cda\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Sheet Metal & Fabrication\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"cd9dba9\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":3258,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal1.jpg\"},{\"id\":3259,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal3.jpg\"},{\"id\":3260,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal4.jpg\"},{\"id\":3261,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal5.jpg\"},{\"id\":3262,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal7.jpg\"},{\"id\":3263,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal8.jpg\"},{\"id\":3264,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal9.jpg\"},{\"id\":3265,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal10.jpg\"},{\"id\":3266,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal2.png\"},{\"id\":3267,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal6.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"bcd074c\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Mold & Die Components\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7eb3b87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":3268,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\"},{\"id\":3269,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\"},{\"id\":3270,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\"},{\"id\":3271,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\"},{\"id\":3272,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\"},{\"id\":3273,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"d0b27d7\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Industrial Fasteners & Bolt\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3dcc60b\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":3274,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/IMG_1237.jpeg\"},{\"id\":3275,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/DSC00822.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"2f9b716\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Tool\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a165f68\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2710,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\"},{\"id\":2711,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\"},{\"id\":2712,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\"},{\"id\":2713,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\"},{\"id\":2714,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\"},{\"id\":2715,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\"},{\"id\":2716,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"1ef8491\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Jig\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"09a76d6\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2730,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\"},{\"id\":2731,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\"},{\"id\":2732,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\"},{\"id\":2733,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\"},{\"id\":2734,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}]'),(10727,3278,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:20:\"widget-image-gallery\";}}'),(10728,3278,'_elementor_element_cache','{\"timeout\":1742266725,\"value\":{\"content\":\"<div class=\"elementor-element elementor-element-fcff723 e-flex e-con-boxed e-con e-parent\" data-id=\"fcff723\" data-element_type=\"container\">nttttt<div class=\"e-con-inner\">ntt[elementor-element data=\"eyJpZCI6ImRlZTQxYjAiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlIjoiT3VyIHN0cmVuZ3RoIGxpZXMgaW4gbWFzcyBwcm9kdWN0aW9uIG9mIGFsdW1pbnVtIGFuZCBzdGVlbC4gV2UgZXhjZWwgaW4gaW5ub3ZhdGlvbiBhbmQgZGVsaXZlciBoaWdoLXZhbHVlIHByb2R1Y3RzIHRvIG91ciBjdXN0b21lcnMuIiwidGl0bGVfdGFnIjoiaDUiLCJ0ZXh0X2FsaWduIjoiY2VudGVyIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"][elementor-element data=\"eyJpZCI6IjM3M2RmYzAiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiV2VsZGluZyIsInRleHRfYWxpZ24iOiJsZWZ0In0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"]tt<div class=\"elementor-element elementor-element-5603a87 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\" data-id=\"5603a87\" data-element_type=\"widget\" data-widget_type=\"image-gallery.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-image-gallery\">nttt<div id=\'gallery-1\' class=\'gallery galleryid-2126 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDk5NjUxOTZfODJmZDc2ZGRiYmYzOGQ2NGRhZThhZjExYjIxNTM3YjkuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074649965196_82fd76ddbbf38d64dae8af11b21537b9.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074649965196_82fd76ddbbf38d64dae8af11b21537b9.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY2NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NTI3MjMyMTJfODc3MGYwMjhmZjY0NmYwMTRmMWU5ZjZlZmUzNDk2MmUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074652723212_8770f028ff646f014f1e9f6efe34962e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074652723212_8770f028ff646f014f1e9f6efe34962e.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA5Mzk3MThfYjBmZjZhY2FkMTRiMmFiNWVkMTU4MTcxYzc2ODMzZjkuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640939718_b0ff6acad14b2ab5ed158171c76833f9.jpg\'><img width=\"84\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640939718_b0ff6acad14b2ab5ed158171c76833f9.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDEyOTMxMTNfYjRiMTg2YzY3YjZlNzgyOWRkMmE5MWQ3MzBjZjlhYTcuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641293113_b4b186c67b6e7829dd2a91d730cf9aa7.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641293113_b4b186c67b6e7829dd2a91d730cf9aa7.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY2OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDI3NjM1ODdfMjFlY2NlNWQ0YWNjZjM3MTM1OGViNGNiZDczYzgwMGQuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074642763587_21ecce5d4accf371358eb4cbd73c800d.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074642763587_21ecce5d4accf371358eb4cbd73c800d.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY2OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDI4NDk4NDhfMTBiNTY3MDUxMjA5NmU2NTQ3NDhlNTdiMjRhMDRhZmUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074642849848_10b5670512096e654748e57b24a04afe.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074642849848_10b5670512096e654748e57b24a04afe.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA3NTg4ODNfNjQ4YTA0MmY0YjY0MGQwZjU3YTQ0NDFkZDIxMDk1NzAuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640758883_648a042f4b640d0f57a4441dd2109570.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640758883_648a042f4b640d0f57a4441dd2109570.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA4NDkyMzdfZTc2OTliMWJjNmUzOGUwYmY2NWViM2JjYTI4YWU4Y2EuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640849237_e7699b1bc6e38e0bf65eb3bca28ae8ca.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640849237_e7699b1bc6e38e0bf65eb3bca28ae8ca.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDEwNTIwNzBfOWVmYmMxNTg2Y2I1ZTk1Y2M1NGI4NDIxYTYzZjM4MGUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641052070_9efbc1586cb5e95cc54b8421a63f380e.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641052070_9efbc1586cb5e95cc54b8421a63f380e.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDExNDUyNzNfN2JlNWRmM2UxNzc5YWEwNGU4OTBlNDBjYzI0M2NkZWUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641145273_7be5df3e1779aa04e890e40cc243cdee.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641145273_7be5df3e1779aa04e890e40cc243cdee.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA2NTMyODVfNWE4N2FkZjU3Y2UwYzQxODZmZTRmYjE1NzllMzU3YjUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640653285_5a87adf57ce0c4186fe4fb1579e357b5.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640653285_5a87adf57ce0c4186fe4fb1579e357b5.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDExNzM4MjZfNDVhZTczN2Y3MGRmYjJkMzY1YWJiMzk3ZjEzOWQ3MDguanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641173826_45ae737f70dfb2d365abb397f139d708.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641173826_45ae737f70dfb2d365abb397f139d708.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure>ntt</div>ntt</div>ntttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImRlYzQzMjUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiTW9sZCIsInRleHRfYWxpZ24iOiJsZWZ0In0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"]tt<div class=\"elementor-element elementor-element-1852cc9 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\" data-id=\"1852cc9\" data-element_type=\"widget\" data-widget_type=\"image-gallery.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-image-gallery\">nttt<div id=\'gallery-2\' class=\'gallery galleryid-2126 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY1NzU1NzhfZTBhNGY1NDczODQzZTU4ZWUxYTc5OTg5ZjM2N2FkYTkuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736575578_e0a4f5473843e58ee1a79989f367ada9.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736575578_e0a4f5473843e58ee1a79989f367ada9.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY3MjE1ODZfMTZiOTE5ODQyMGIzOTlmOWQ4MmMwNThkOTA4MmEzZTAuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUyMTk2NzlfOTFhNmY2OTkzMTQ2OTA2Zjg0NjViNDNkZGQwYzJiM2MuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735219679_91a6f6993146906f8465b43ddd0c2b3c.jpg\'><img width=\"68\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735219679_91a6f6993146906f8465b43ddd0c2b3c.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY3NjE0NTRfYjk4ZDQ2OGIxMzNhYzU5ZWJiZjVlNjJiNjkzNDYyYTQuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736761454_b98d468b133ac59ebbf5e62b693462a4.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736761454_b98d468b133ac59ebbf5e62b693462a4.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY3ODQzMzVfZjkzYmM3ODIwY2ZkYzBiMDE1YzgyMjRiOWExYWNlMTAuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736784335_f93bc7820cfdc0b015c8224b9a1ace10.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736784335_f93bc7820cfdc0b015c8224b9a1ace10.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjkyMTk5NDEzNDlfYjA5NTRlNDRhMjVhN2QxNTQzZWIzM2NlZWFlMjBlZmIuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069219941349_b0954e44a25a7d1543eb33ceeae20efb.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069219941349_b0954e44a25a7d1543eb33ceeae20efb.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUzNDMyMDFfZDI5MjJhYTE2ODBjNTdiZmUyZGE5YWFiYTEyMWNhYTYuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735343201_d2922aa1680c57bfe2da9aaba121caa6.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735343201_d2922aa1680c57bfe2da9aaba121caa6.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU0NDE4ODVfMDg4ZGQ0MTdiNjU5NzgzMzc2YWRmZWIwMDZkMTgxODAuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735441885_088dd417b659783376adfeb006d18180.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735441885_088dd417b659783376adfeb006d18180.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU1OTgxMDFfMGZkZDBhNzczYTIyZDZhZjkyZjY5NGQ3ODY2YjJhNWEuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735598101_0fdd0a773a22d6af92f694d7866b2a5a.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735598101_0fdd0a773a22d6af92f694d7866b2a5a.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU2MzQ2MzJfZGEzZGYxMWNjMWRmYTk3OGM1YjcwZjJlNDQ0MDQ3MTIuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735634632_da3df11cc1dfa978c5b70f2e44404712.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735634632_da3df11cc1dfa978c5b70f2e44404712.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU2OTM5ODdfYmY3MzQ3ZjUzM2VjNzUwYTJjNGY5ZGYxNzYzYjg4ODEuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735693987_bf7347f533ec750a2c4f9df1763b8881.jpg\'><img width=\"84\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735693987_bf7347f533ec750a2c4f9df1763b8881.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU4MzU0OTZfYTcxYWM1MGRkYWMzNjg2N2ZjYTIxY2VlOGM0N2ZlMGEuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735835496_a71ac50ddac36867fca21cee8c47fe0a.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735835496_a71ac50ddac36867fca21cee8c47fe0a.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU4OTM2OTJfNDhmNGE5ZjdjN2E5ZDA1ZGMwMzdhODBhYzFlNTc4MmIuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYwMDk1MTRfYWQ5MDg4N2YyNWQ3MzRlYzJkMjFkOGE2YTYzNGZmMmQuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYxMTA0MjZfYzNlY2UzZWM1NmY5ZThjYzBlNWM5YTk4Zjk3OTJiZmMuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYxNjUzNzJfODI1NjkzMjRkZTFjOGZjYzM3NmNjMGU3MzdjMDUyMGUuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYzMjQ0NzJfMDZmMWVkMWExYmUyYzNhNTkyMzA3MGFmZjdkNWUxMGUuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736324472_06f1ed1a1be2c3a5923070aff7d5e10e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736324472_06f1ed1a1be2c3a5923070aff7d5e10e.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYzOTEwNTFfNGMzY2FlMTZhOGZmNGYyMTZiOGQ1MzY3Mzc3MmRkMDcuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736391051_4c3cae16a8ff4f216b8d53673772dd07.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736391051_4c3cae16a8ff4f216b8d53673772dd07.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY0NTU3NzVfOTdhOTM3ODA3YzgwN2JmNzEzNjk0MTlhMGE1ZDNkMmMuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\'><img width=\"68\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure>ntt</div>ntt</div>ntttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImFiODFjZGEiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiTWFjaGluZSBEZXRhaWxzIiwidGV4dF9hbGlnbiI6ImxlZnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-cd9dba9 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\" data-id=\"cd9dba9\" data-element_type=\"widget\" data-widget_type=\"image-gallery.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-image-gallery\">nttt<div id=\'gallery-3\' class=\'gallery galleryid-2126 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjkyMTk5NDkxNzVfZTJhMTA1YmNmMjIzYzgzMmQ2Y2FhYjJkMDNmZTA0MTMuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069219949175_e2a105bcf223c832d6caab2d03fe0413.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069219949175_e2a105bcf223c832d6caab2d03fe0413.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMTMxNjUyNjZfYTE1MjUzZTNhM2UwYTJjOTc4ZWQ2Njc5OTRiOGY0MTUuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799313165266_a15253e3a3e0a2c978ed667994b8f415.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799313165266_a15253e3a3e0a2c978ed667994b8f415.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE2MDQxMTVfNDkzZjgzNTU4NjlkZDNjYTgyYTk2ZTg2ZTI5ODJiZmUuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321604115_493f8355869dd3ca82a96e86e2982bfe.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321604115_493f8355869dd3ca82a96e86e2982bfe.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE2OTYwMjRfNzMzYTg1YmY4MzVhZWEwYThhZmM4YjI2OWQxNDk3MDAuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321696024_733a85bf835aea0a8afc8b269d149700.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321696024_733a85bf835aea0a8afc8b269d149700.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMTMxNzk1NjdfYzNkNjY3NWEwMzc2MmZiOTQzNzZkYzk2ZjA1Mzg5YmQuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799313179567_c3d6675a03762fb94376dc96f05389bd.jpg\'><img width=\"150\" height=\"86\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799313179567_c3d6675a03762fb94376dc96f05389bd.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMTMyNzM0NTRfYWQ3MTZiZWZhZjQzZDJkZjE0NzYyOWQ5NTI2MmM1MjAuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799313273454_ad716befaf43d2df147629d95262c520.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799313273454_ad716befaf43d2df147629d95262c520.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MTYyNDlfOTZiMmZlYTVmZTMzZjRhMjRkODI1MWM4YWFmMjI1ZTEuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363716249_96b2fea5fe33f4a24d8251c8aaf225e1.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363716249_96b2fea5fe33f4a24d8251c8aaf225e1.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MjM3NzFfOWVlYzRkNTFmYzE3MjNmYjY2OWY5ODAwODRlMjBhNjEuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363723771_9eec4d51fc1723fb669f980084e20a61.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363723771_9eec4d51fc1723fb669f980084e20a61.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MjM4OTJfNWI3MjAwMDI2MjAyYTFlZmU5NjU5NjEwOWZhZDY4NTcuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363723892_5b7200026202a1efe96596109fad6857.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363723892_5b7200026202a1efe96596109fad6857.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MzUzNjFfOTM1NWZhN2ViOTkxMTIzZGM5OTVkZmFhMmI0Y2Y3NTQuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363735361_9355fa7eb991123dc995dfaa2b4cf754.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363735361_9355fa7eb991123dc995dfaa2b4cf754.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3NDY3NjJfNjI0MWFjNGM2NjI1NTgxYjVkYjliMjRhMWVlMDVmNjgtMS5qcGciLCJzbGlkZXNob3ciOiJjZDlkYmE5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363746762_6241ac4c6625581b5db9b24a1ee05f68-1.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363746762_6241ac4c6625581b5db9b24a1ee05f68-1.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3NDE0MDlfZDcyMTI0ZDkwOTEyODBmNjUyOWEyN2E5MTliZTEzYzkuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363741409_d72124d9091280f6529a27a919be13c9.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363741409_d72124d9091280f6529a27a919be13c9.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure>ntt</div>ntt</div>ntttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6IjJmOWI3MTYiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiVG9vbCIsInRleHRfYWxpZ24iOiJsZWZ0In0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"]tt<div class=\"elementor-element elementor-element-a165f68 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\" data-id=\"a165f68\" data-element_type=\"widget\" data-widget_type=\"image-gallery.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-image-gallery\">nttt<div id=\'gallery-4\' class=\'gallery galleryid-2126 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwMTgzMzRfMTdjNWZhYzk2ZmIyODQzZDc0YTc2Y2M3OWY5YjRmNWMuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\'><img width=\"150\" height=\"135\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwMzczNTNfZGI4NzczMmIzZWE5ZDkzNTM2YmNkM2FlYzY0ODM1YTcuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNTkxNjJfMDUzYjM2NGFiNzYxZGM1YTQ0Mjc5ZmFmNjQzOTUzMjQuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\'><img width=\"70\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNzgzNzJfNTBhYmNlNTI0OWM4YWNkY2ZiZGY4YTA2MzQ4OWUxODYuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNzg1NzBfMGFiNThiNDZiZjY4M2RmNmVjZGIyYzJkODc5NDViYTYuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\'><img width=\"150\" height=\"129\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk2ODQ5NDkwODZfYjI5ZmRiNTAxMTRhMTk2Y2MzZmRjYzllMTJjYWYxMDUuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\'><img width=\"150\" height=\"128\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk2ODQ5NDY2NDFfMTUwMGZiZTE2ZmVjM2ExNGVhZGI4ZTRhZWQxY2Y2M2YuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure>ntt</div>ntt</div>ntttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImJjZDA3NGMiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiTW90b3JiaWtlIFBhcnRzIiwidGV4dF9hbGlnbiI6ImxlZnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-7eb3b87 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\" data-id=\"7eb3b87\" data-element_type=\"widget\" data-widget_type=\"image-gallery.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-image-gallery\">nttt<div id=\'gallery-5\' class=\'gallery galleryid-2126 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTEzMDA5NzlfMDA1MjcxNmI0NjI4NDNhNWQxOTY4Zjc4NzBjNzJmZDguanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028111300979_0052716b462843a5d1968f7870c72fd8.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028111300979_0052716b462843a5d1968f7870c72fd8.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTIwMDAwMDBfMjQ0MGQ1YWUzNmY3MDA4NDBkMGYwYjU4M2JiY2JkZmEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028112000000_2440d5ae36f700840d0f0b583bbcbdfa.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028112000000_2440d5ae36f700840d0f0b583bbcbdfa.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTI2NzAwMjRfMTgwNmFmZDdkNzBiYmJjNTIzZDYzYjBjNjFlOTEzMGIuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028112670024_1806afd7d70bbbc523d63b0c61e9130b.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028112670024_1806afd7d70bbbc523d63b0c61e9130b.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTMyODc5MTJfZTFhYThiZGI5ZmU3MmIxZmUyMjg4N2NlYWFmYzBkYmQuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028113287912_e1aa8bdb9fe72b1fe22887ceaafc0dbd.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028113287912_e1aa8bdb9fe72b1fe22887ceaafc0dbd.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTM4OTQ3MDRfMzUwNGU0YmYwOTNhZDlmOWQ2MzVjOGJmYTJhYWFlZjYuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028113894704_3504e4bf093ad9f9d635c8bfa2aaaef6.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028113894704_3504e4bf093ad9f9d635c8bfa2aaaef6.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTQ3Njc3MzlfZDAxNGIxMGRhNTA4OGJjN2QzNjc1YTZkMDBlNzdkMzMuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028114767739_d014b10da5088bc7d3675a6d00e77d33.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028114767739_d014b10da5088bc7d3675a6d00e77d33.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE0MzQ1NjFfNmQyY2I3NWVkYmE4MjgzMmUwY2JkOTA2NzM4NTdiZDMuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321434561_6d2cb75edba82832e0cbd90673857bd3.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321434561_6d2cb75edba82832e0cbd90673857bd3.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE0NDgwODhfNmU2OTQ0YzNjZWIzMzU4OTdlMmI0ZjRhZDIwOTc1YjcuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321448088_6e6944c3ceb335897e2b4f4ad20975b7.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321448088_6e6944c3ceb335897e2b4f4ad20975b7.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE1NDg1NTdfMWE1ZTY5YTg5Y2EzNzk1M2UwYzA0Yzg4ZTUyOWQ5NTEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321548557_1a5e69a89ca37953e0c04c88e529d951.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321548557_1a5e69a89ca37953e0c04c88e529d951.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMDk2MzA3MDRfMjlhODJkZjk3ZWE0ZWE3YzM3ODU5Zjk2NjcxNTRkYTEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028109630704_29a82df97ea4ea7c37859f9667154da1.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028109630704_29a82df97ea4ea7c37859f9667154da1.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMDk2NzU5ODRfNTExYmI1ODY5MGE3M2FiOWNjMWFkY2QxNDZjYTQ2ZjIuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028109675984_511bb58690a73ab9cc1adcd146ca46f2.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028109675984_511bb58690a73ab9cc1adcd146ca46f2.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTA2MzE0MTVfOWJkMzc1NDUxYjIyNDI3NzZjM2ZhNDdhNWU5MWYzZTEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028110631415_9bd375451b2242776c3fa47a5e91f3e1.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028110631415_9bd375451b2242776c3fa47a5e91f3e1.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTExNjcxMDFfNjg1ZGUyZTUzOTViYmY4ZDk3ZTRkMmY4YWE4N2ZlZTMuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028111167101_685de2e5395bbf8d97e4d2f8aa87fee3.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028111167101_685de2e5395bbf8d97e4d2f8aa87fee3.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure>ntt</div>ntt</div>ntttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6IjFlZjg0OTEiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiSmlnIiwidGV4dF9hbGlnbiI6ImxlZnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-09a76d6 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\" data-id=\"09a76d6\" data-element_type=\"widget\" data-widget_type=\"image-gallery.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-image-gallery\">nttt<div id=\'gallery-6\' class=\'gallery galleryid-2126 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NDY1OTEzMzg2ODdfZmE1MTRlMTY0ZjJlZTk5NjFjZmVlY2U5YjJhMjk2MmUuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTE0ODI0OTc5ODFfNGZlOGQ1MmM3N2ZiOTcwYWNjYWNhOTkzMTFiM2U1YjguanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNTQzNzc3MTM5OTRfNzMxZjNhYzFmN2YzMjMyNjExMWE0MWY2N2Q0YTJlMzMuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE2NTM3NjdfNzk3Y2FkYTk3Yjk4NjQyZTYyYzkxODU3YzYwYjViNDQuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NDY1OTEzNDkxOTRfZDUwMTBkMTcwMGM3Y2ViNDkxYjk3OGIwMWJlM2RkMjguanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure>ntt</div>ntt</div>ntttt</div>ntttt</div>nttttt</div>ntttt</div>ntt\",\"scripts\":[],\"styles\":[\"widget-image-gallery\"]}}'),(10729,3278,'_elementor_css','a:6:{s:4:\"time\";i:1742181216;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:\"\";}'),(10733,2998,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:20:\"widget-image-gallery\";}}'),(10744,3280,'_elementor_edit_mode','builder'),(10745,3280,'_elementor_template_type','wp-page'),(10746,3280,'_elementor_version','3.24.7'),(10747,3280,'_wp_page_template','default'),(10748,3280,'_elementor_data','[{\"id\":\"fcff723\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"dee41b0\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"Th\\u1ebf m\\u1ea1nh c\\u1ee7a ch\\u00fang t\\u00f4i n\\u1eb1m \\u1edf s\\u1ea3n xu\\u1ea5t h\\u00e0ng lo\\u1ea1t nh\\u00f4m v\\u00e0 th\\u00e9p. Ch\\u00fang t\\u00f4i xu\\u1ea5t s\\u1eafc trong vi\\u1ec7c \\u0111\\u1ed5i m\\u1edbi v\\u00e0 cung c\\u1ea5p c\\u00e1c s\\u1ea3n ph\\u1ea9m c\\u00f3 gi\\u00e1 tr\\u1ecb cao cho kh\\u00e1ch h\\u00e0ng.\",\"title_tag\":\"h5\",\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"373dfc0\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"H\\u00e0n\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"5603a87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2678,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074649965196_82fd76ddbbf38d64dae8af11b21537b9.jpg\"},{\"id\":2667,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074652723212_8770f028ff646f014f1e9f6efe34962e.jpg\"},{\"id\":2672,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074640939718_b0ff6acad14b2ab5ed158171c76833f9.jpg\"},{\"id\":2677,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074641293113_b4b186c67b6e7829dd2a91d730cf9aa7.jpg\"},{\"id\":2668,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074642763587_21ecce5d4accf371358eb4cbd73c800d.jpg\"},{\"id\":2669,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074642849848_10b5670512096e654748e57b24a04afe.jpg\"},{\"id\":2670,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074640758883_648a042f4b640d0f57a4441dd2109570.jpg\"},{\"id\":2671,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074640849237_e7699b1bc6e38e0bf65eb3bca28ae8ca.jpg\"},{\"id\":2673,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074641052070_9efbc1586cb5e95cc54b8421a63f380e.jpg\"},{\"id\":2674,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074641145273_7be5df3e1779aa04e890e40cc243cdee.jpg\"},{\"id\":2675,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074640653285_5a87adf57ce0c4186fe4fb1579e357b5.jpg\"},{\"id\":2676,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074641173826_45ae737f70dfb2d365abb397f139d708.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"dec4325\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Khu\\u00f4n\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1852cc9\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2679,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736575578_e0a4f5473843e58ee1a79989f367ada9.jpg\"},{\"id\":2680,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\"},{\"id\":2681,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735219679_91a6f6993146906f8465b43ddd0c2b3c.jpg\"},{\"id\":2682,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736761454_b98d468b133ac59ebbf5e62b693462a4.jpg\"},{\"id\":2683,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736784335_f93bc7820cfdc0b015c8224b9a1ace10.jpg\"},{\"id\":2684,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069219941349_b0954e44a25a7d1543eb33ceeae20efb.jpg\"},{\"id\":2685,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735343201_d2922aa1680c57bfe2da9aaba121caa6.jpg\"},{\"id\":2686,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735441885_088dd417b659783376adfeb006d18180.jpg\"},{\"id\":2687,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735598101_0fdd0a773a22d6af92f694d7866b2a5a.jpg\"},{\"id\":2688,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735634632_da3df11cc1dfa978c5b70f2e44404712.jpg\"},{\"id\":2689,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735693987_bf7347f533ec750a2c4f9df1763b8881.jpg\"},{\"id\":2690,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735835496_a71ac50ddac36867fca21cee8c47fe0a.jpg\"},{\"id\":2691,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\"},{\"id\":2692,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\"},{\"id\":2693,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\"},{\"id\":2694,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\"},{\"id\":2695,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736324472_06f1ed1a1be2c3a5923070aff7d5e10e.jpg\"},{\"id\":2696,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736391051_4c3cae16a8ff4f216b8d53673772dd07.jpg\"},{\"id\":2697,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"ab81cda\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Chi ti\\u1ebft m\\u00e1y\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"cd9dba9\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2698,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069219949175_e2a105bcf223c832d6caab2d03fe0413.jpg\"},{\"id\":2699,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799313165266_a15253e3a3e0a2c978ed667994b8f415.jpg\"},{\"id\":2700,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321604115_493f8355869dd3ca82a96e86e2982bfe.jpg\"},{\"id\":2701,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321696024_733a85bf835aea0a8afc8b269d149700.jpg\"},{\"id\":2702,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799313179567_c3d6675a03762fb94376dc96f05389bd.jpg\"},{\"id\":2703,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799313273454_ad716befaf43d2df147629d95262c520.jpg\"},{\"id\":2704,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363716249_96b2fea5fe33f4a24d8251c8aaf225e1.jpg\"},{\"id\":2705,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363723771_9eec4d51fc1723fb669f980084e20a61.jpg\"},{\"id\":2706,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363723892_5b7200026202a1efe96596109fad6857.jpg\"},{\"id\":2707,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363735361_9355fa7eb991123dc995dfaa2b4cf754.jpg\"},{\"id\":2708,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363746762_6241ac4c6625581b5db9b24a1ee05f68-1.jpg\"},{\"id\":2709,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363741409_d72124d9091280f6529a27a919be13c9.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"2f9b716\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"D\\u1ee5ng c\\u1ee5\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a165f68\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2710,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\"},{\"id\":2711,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\"},{\"id\":2712,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\"},{\"id\":2713,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\"},{\"id\":2714,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\"},{\"id\":2715,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\"},{\"id\":2716,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"bcd074c\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Ph\\u1ee5 t\\u00f9ng xe m\\u00e1y\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7eb3b87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2717,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028111300979_0052716b462843a5d1968f7870c72fd8.jpg\"},{\"id\":2718,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028112000000_2440d5ae36f700840d0f0b583bbcbdfa.jpg\"},{\"id\":2719,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028112670024_1806afd7d70bbbc523d63b0c61e9130b.jpg\"},{\"id\":2720,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028113287912_e1aa8bdb9fe72b1fe22887ceaafc0dbd.jpg\"},{\"id\":2721,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028113894704_3504e4bf093ad9f9d635c8bfa2aaaef6.jpg\"},{\"id\":2722,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028114767739_d014b10da5088bc7d3675a6d00e77d33.jpg\"},{\"id\":2723,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321434561_6d2cb75edba82832e0cbd90673857bd3.jpg\"},{\"id\":2724,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321448088_6e6944c3ceb335897e2b4f4ad20975b7.jpg\"},{\"id\":2725,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321548557_1a5e69a89ca37953e0c04c88e529d951.jpg\"},{\"id\":2726,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028109630704_29a82df97ea4ea7c37859f9667154da1.jpg\"},{\"id\":2727,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028109675984_511bb58690a73ab9cc1adcd146ca46f2.jpg\"},{\"id\":2728,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028110631415_9bd375451b2242776c3fa47a5e91f3e1.jpg\"},{\"id\":2729,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028111167101_685de2e5395bbf8d97e4d2f8aa87fee3.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"1ef8491\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Khu\\u00f4n jig\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"09a76d6\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2730,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\"},{\"id\":2731,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\"},{\"id\":2732,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\"},{\"id\":2733,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\"},{\"id\":2734,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}]'),(10749,3280,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:20:\"widget-image-gallery\";}}'),(10750,3280,'_elementor_element_cache','{\"timeout\":1742267766,\"value\":{\"content\":\"<div class=\"elementor-element elementor-element-fcff723 e-flex e-con-boxed e-con e-parent\" data-id=\"fcff723\" data-element_type=\"container\">nttttt<div class=\"e-con-inner\">ntt[elementor-element data=\"eyJpZCI6ImRlZTQxYjAiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlIjoiVGhcdTFlYmYgbVx1MWVhMW5oIGNcdTFlZTdhIGNoXHUwMGZhbmcgdFx1MDBmNGkgblx1MWViMW0gXHUxZWRmIHNcdTFlYTNuIHh1XHUxZWE1dCBoXHUwMGUwbmcgbG9cdTFlYTF0IG5oXHUwMGY0bSB2XHUwMGUwIHRoXHUwMGU5cC4gQ2hcdTAwZmFuZyB0XHUwMGY0aSB4dVx1MWVhNXQgc1x1MWVhZmMgdHJvbmcgdmlcdTFlYzdjIFx1MDExMVx1MWVkNWkgbVx1MWVkYmkgdlx1MDBlMCBjdW5nIGNcdTFlYTVwIGNcdTAwZTFjIHNcdTFlYTNuIHBoXHUxZWE5bSBjXHUwMGYzIGdpXHUwMGUxIHRyXHUxZWNiIGNhbyBjaG8ga2hcdTAwZTFjaCBoXHUwMGUwbmcuIiwidGl0bGVfdGFnIjoiaDUiLCJ0ZXh0X2FsaWduIjoiY2VudGVyIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"][elementor-element data=\"eyJpZCI6IjM3M2RmYzAiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiSFx1MDBlMG4iLCJ0ZXh0X2FsaWduIjoibGVmdCJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]tt<div class=\"elementor-element elementor-element-5603a87 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\" data-id=\"5603a87\" data-element_type=\"widget\" data-widget_type=\"image-gallery.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-image-gallery\">nttt<div id=\'gallery-1\' class=\'gallery galleryid-2998 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDk5NjUxOTZfODJmZDc2ZGRiYmYzOGQ2NGRhZThhZjExYjIxNTM3YjkuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074649965196_82fd76ddbbf38d64dae8af11b21537b9.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074649965196_82fd76ddbbf38d64dae8af11b21537b9.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY2NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NTI3MjMyMTJfODc3MGYwMjhmZjY0NmYwMTRmMWU5ZjZlZmUzNDk2MmUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074652723212_8770f028ff646f014f1e9f6efe34962e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074652723212_8770f028ff646f014f1e9f6efe34962e.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA5Mzk3MThfYjBmZjZhY2FkMTRiMmFiNWVkMTU4MTcxYzc2ODMzZjkuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640939718_b0ff6acad14b2ab5ed158171c76833f9.jpg\'><img width=\"84\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640939718_b0ff6acad14b2ab5ed158171c76833f9.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDEyOTMxMTNfYjRiMTg2YzY3YjZlNzgyOWRkMmE5MWQ3MzBjZjlhYTcuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641293113_b4b186c67b6e7829dd2a91d730cf9aa7.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641293113_b4b186c67b6e7829dd2a91d730cf9aa7.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY2OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDI3NjM1ODdfMjFlY2NlNWQ0YWNjZjM3MTM1OGViNGNiZDczYzgwMGQuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074642763587_21ecce5d4accf371358eb4cbd73c800d.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074642763587_21ecce5d4accf371358eb4cbd73c800d.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY2OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDI4NDk4NDhfMTBiNTY3MDUxMjA5NmU2NTQ3NDhlNTdiMjRhMDRhZmUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074642849848_10b5670512096e654748e57b24a04afe.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074642849848_10b5670512096e654748e57b24a04afe.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA3NTg4ODNfNjQ4YTA0MmY0YjY0MGQwZjU3YTQ0NDFkZDIxMDk1NzAuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640758883_648a042f4b640d0f57a4441dd2109570.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640758883_648a042f4b640d0f57a4441dd2109570.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA4NDkyMzdfZTc2OTliMWJjNmUzOGUwYmY2NWViM2JjYTI4YWU4Y2EuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640849237_e7699b1bc6e38e0bf65eb3bca28ae8ca.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640849237_e7699b1bc6e38e0bf65eb3bca28ae8ca.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDEwNTIwNzBfOWVmYmMxNTg2Y2I1ZTk1Y2M1NGI4NDIxYTYzZjM4MGUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641052070_9efbc1586cb5e95cc54b8421a63f380e.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641052070_9efbc1586cb5e95cc54b8421a63f380e.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDExNDUyNzNfN2JlNWRmM2UxNzc5YWEwNGU4OTBlNDBjYzI0M2NkZWUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641145273_7be5df3e1779aa04e890e40cc243cdee.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641145273_7be5df3e1779aa04e890e40cc243cdee.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA2NTMyODVfNWE4N2FkZjU3Y2UwYzQxODZmZTRmYjE1NzllMzU3YjUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640653285_5a87adf57ce0c4186fe4fb1579e357b5.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640653285_5a87adf57ce0c4186fe4fb1579e357b5.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDExNzM4MjZfNDVhZTczN2Y3MGRmYjJkMzY1YWJiMzk3ZjEzOWQ3MDguanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641173826_45ae737f70dfb2d365abb397f139d708.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641173826_45ae737f70dfb2d365abb397f139d708.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure>ntt</div>ntt</div>ntttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImRlYzQzMjUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiS2h1XHUwMGY0biIsInRleHRfYWxpZ24iOiJsZWZ0In0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"]tt<div class=\"elementor-element elementor-element-1852cc9 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\" data-id=\"1852cc9\" data-element_type=\"widget\" data-widget_type=\"image-gallery.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-image-gallery\">nttt<div id=\'gallery-2\' class=\'gallery galleryid-2998 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY1NzU1NzhfZTBhNGY1NDczODQzZTU4ZWUxYTc5OTg5ZjM2N2FkYTkuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736575578_e0a4f5473843e58ee1a79989f367ada9.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736575578_e0a4f5473843e58ee1a79989f367ada9.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY3MjE1ODZfMTZiOTE5ODQyMGIzOTlmOWQ4MmMwNThkOTA4MmEzZTAuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUyMTk2NzlfOTFhNmY2OTkzMTQ2OTA2Zjg0NjViNDNkZGQwYzJiM2MuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735219679_91a6f6993146906f8465b43ddd0c2b3c.jpg\'><img width=\"68\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735219679_91a6f6993146906f8465b43ddd0c2b3c.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY3NjE0NTRfYjk4ZDQ2OGIxMzNhYzU5ZWJiZjVlNjJiNjkzNDYyYTQuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736761454_b98d468b133ac59ebbf5e62b693462a4.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736761454_b98d468b133ac59ebbf5e62b693462a4.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY3ODQzMzVfZjkzYmM3ODIwY2ZkYzBiMDE1YzgyMjRiOWExYWNlMTAuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736784335_f93bc7820cfdc0b015c8224b9a1ace10.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736784335_f93bc7820cfdc0b015c8224b9a1ace10.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjkyMTk5NDEzNDlfYjA5NTRlNDRhMjVhN2QxNTQzZWIzM2NlZWFlMjBlZmIuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069219941349_b0954e44a25a7d1543eb33ceeae20efb.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069219941349_b0954e44a25a7d1543eb33ceeae20efb.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUzNDMyMDFfZDI5MjJhYTE2ODBjNTdiZmUyZGE5YWFiYTEyMWNhYTYuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735343201_d2922aa1680c57bfe2da9aaba121caa6.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735343201_d2922aa1680c57bfe2da9aaba121caa6.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU0NDE4ODVfMDg4ZGQ0MTdiNjU5NzgzMzc2YWRmZWIwMDZkMTgxODAuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735441885_088dd417b659783376adfeb006d18180.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735441885_088dd417b659783376adfeb006d18180.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU1OTgxMDFfMGZkZDBhNzczYTIyZDZhZjkyZjY5NGQ3ODY2YjJhNWEuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735598101_0fdd0a773a22d6af92f694d7866b2a5a.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735598101_0fdd0a773a22d6af92f694d7866b2a5a.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU2MzQ2MzJfZGEzZGYxMWNjMWRmYTk3OGM1YjcwZjJlNDQ0MDQ3MTIuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735634632_da3df11cc1dfa978c5b70f2e44404712.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735634632_da3df11cc1dfa978c5b70f2e44404712.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU2OTM5ODdfYmY3MzQ3ZjUzM2VjNzUwYTJjNGY5ZGYxNzYzYjg4ODEuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735693987_bf7347f533ec750a2c4f9df1763b8881.jpg\'><img width=\"84\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735693987_bf7347f533ec750a2c4f9df1763b8881.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU4MzU0OTZfYTcxYWM1MGRkYWMzNjg2N2ZjYTIxY2VlOGM0N2ZlMGEuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735835496_a71ac50ddac36867fca21cee8c47fe0a.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735835496_a71ac50ddac36867fca21cee8c47fe0a.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU4OTM2OTJfNDhmNGE5ZjdjN2E5ZDA1ZGMwMzdhODBhYzFlNTc4MmIuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYwMDk1MTRfYWQ5MDg4N2YyNWQ3MzRlYzJkMjFkOGE2YTYzNGZmMmQuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYxMTA0MjZfYzNlY2UzZWM1NmY5ZThjYzBlNWM5YTk4Zjk3OTJiZmMuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYxNjUzNzJfODI1NjkzMjRkZTFjOGZjYzM3NmNjMGU3MzdjMDUyMGUuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYzMjQ0NzJfMDZmMWVkMWExYmUyYzNhNTkyMzA3MGFmZjdkNWUxMGUuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736324472_06f1ed1a1be2c3a5923070aff7d5e10e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736324472_06f1ed1a1be2c3a5923070aff7d5e10e.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYzOTEwNTFfNGMzY2FlMTZhOGZmNGYyMTZiOGQ1MzY3Mzc3MmRkMDcuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736391051_4c3cae16a8ff4f216b8d53673772dd07.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736391051_4c3cae16a8ff4f216b8d53673772dd07.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY0NTU3NzVfOTdhOTM3ODA3YzgwN2JmNzEzNjk0MTlhMGE1ZDNkMmMuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\'><img width=\"68\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure>ntt</div>ntt</div>ntttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImFiODFjZGEiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiQ2hpIHRpXHUxZWJmdCBtXHUwMGUxeSIsInRleHRfYWxpZ24iOiJsZWZ0In0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"]tt<div class=\"elementor-element elementor-element-cd9dba9 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\" data-id=\"cd9dba9\" data-element_type=\"widget\" data-widget_type=\"image-gallery.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-image-gallery\">nttt<div id=\'gallery-3\' class=\'gallery galleryid-2998 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjkyMTk5NDkxNzVfZTJhMTA1YmNmMjIzYzgzMmQ2Y2FhYjJkMDNmZTA0MTMuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069219949175_e2a105bcf223c832d6caab2d03fe0413.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069219949175_e2a105bcf223c832d6caab2d03fe0413.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMTMxNjUyNjZfYTE1MjUzZTNhM2UwYTJjOTc4ZWQ2Njc5OTRiOGY0MTUuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799313165266_a15253e3a3e0a2c978ed667994b8f415.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799313165266_a15253e3a3e0a2c978ed667994b8f415.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE2MDQxMTVfNDkzZjgzNTU4NjlkZDNjYTgyYTk2ZTg2ZTI5ODJiZmUuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321604115_493f8355869dd3ca82a96e86e2982bfe.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321604115_493f8355869dd3ca82a96e86e2982bfe.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE2OTYwMjRfNzMzYTg1YmY4MzVhZWEwYThhZmM4YjI2OWQxNDk3MDAuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321696024_733a85bf835aea0a8afc8b269d149700.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321696024_733a85bf835aea0a8afc8b269d149700.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMTMxNzk1NjdfYzNkNjY3NWEwMzc2MmZiOTQzNzZkYzk2ZjA1Mzg5YmQuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799313179567_c3d6675a03762fb94376dc96f05389bd.jpg\'><img width=\"150\" height=\"86\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799313179567_c3d6675a03762fb94376dc96f05389bd.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMTMyNzM0NTRfYWQ3MTZiZWZhZjQzZDJkZjE0NzYyOWQ5NTI2MmM1MjAuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799313273454_ad716befaf43d2df147629d95262c520.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799313273454_ad716befaf43d2df147629d95262c520.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MTYyNDlfOTZiMmZlYTVmZTMzZjRhMjRkODI1MWM4YWFmMjI1ZTEuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363716249_96b2fea5fe33f4a24d8251c8aaf225e1.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363716249_96b2fea5fe33f4a24d8251c8aaf225e1.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MjM3NzFfOWVlYzRkNTFmYzE3MjNmYjY2OWY5ODAwODRlMjBhNjEuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363723771_9eec4d51fc1723fb669f980084e20a61.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363723771_9eec4d51fc1723fb669f980084e20a61.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MjM4OTJfNWI3MjAwMDI2MjAyYTFlZmU5NjU5NjEwOWZhZDY4NTcuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363723892_5b7200026202a1efe96596109fad6857.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363723892_5b7200026202a1efe96596109fad6857.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MzUzNjFfOTM1NWZhN2ViOTkxMTIzZGM5OTVkZmFhMmI0Y2Y3NTQuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363735361_9355fa7eb991123dc995dfaa2b4cf754.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363735361_9355fa7eb991123dc995dfaa2b4cf754.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3NDY3NjJfNjI0MWFjNGM2NjI1NTgxYjVkYjliMjRhMWVlMDVmNjgtMS5qcGciLCJzbGlkZXNob3ciOiJjZDlkYmE5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363746762_6241ac4c6625581b5db9b24a1ee05f68-1.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363746762_6241ac4c6625581b5db9b24a1ee05f68-1.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3NDE0MDlfZDcyMTI0ZDkwOTEyODBmNjUyOWEyN2E5MTliZTEzYzkuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363741409_d72124d9091280f6529a27a919be13c9.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363741409_d72124d9091280f6529a27a919be13c9.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure>ntt</div>ntt</div>ntttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6IjJmOWI3MTYiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiRFx1MWVlNW5nIGNcdTFlZTUiLCJ0ZXh0X2FsaWduIjoibGVmdCJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]tt<div class=\"elementor-element elementor-element-a165f68 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\" data-id=\"a165f68\" data-element_type=\"widget\" data-widget_type=\"image-gallery.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-image-gallery\">nttt<div id=\'gallery-4\' class=\'gallery galleryid-2998 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwMTgzMzRfMTdjNWZhYzk2ZmIyODQzZDc0YTc2Y2M3OWY5YjRmNWMuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\'><img width=\"150\" height=\"135\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwMzczNTNfZGI4NzczMmIzZWE5ZDkzNTM2YmNkM2FlYzY0ODM1YTcuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNTkxNjJfMDUzYjM2NGFiNzYxZGM1YTQ0Mjc5ZmFmNjQzOTUzMjQuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\'><img width=\"70\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNzgzNzJfNTBhYmNlNTI0OWM4YWNkY2ZiZGY4YTA2MzQ4OWUxODYuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNzg1NzBfMGFiNThiNDZiZjY4M2RmNmVjZGIyYzJkODc5NDViYTYuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\'><img width=\"150\" height=\"129\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk2ODQ5NDkwODZfYjI5ZmRiNTAxMTRhMTk2Y2MzZmRjYzllMTJjYWYxMDUuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\'><img width=\"150\" height=\"128\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk2ODQ5NDY2NDFfMTUwMGZiZTE2ZmVjM2ExNGVhZGI4ZTRhZWQxY2Y2M2YuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure>ntt</div>ntt</div>ntttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImJjZDA3NGMiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiUGhcdTFlZTUgdFx1MDBmOW5nIHhlIG1cdTAwZTF5IiwidGV4dF9hbGlnbiI6ImxlZnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-7eb3b87 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\" data-id=\"7eb3b87\" data-element_type=\"widget\" data-widget_type=\"image-gallery.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-image-gallery\">nttt<div id=\'gallery-5\' class=\'gallery galleryid-2998 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTEzMDA5NzlfMDA1MjcxNmI0NjI4NDNhNWQxOTY4Zjc4NzBjNzJmZDguanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028111300979_0052716b462843a5d1968f7870c72fd8.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028111300979_0052716b462843a5d1968f7870c72fd8.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTIwMDAwMDBfMjQ0MGQ1YWUzNmY3MDA4NDBkMGYwYjU4M2JiY2JkZmEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028112000000_2440d5ae36f700840d0f0b583bbcbdfa.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028112000000_2440d5ae36f700840d0f0b583bbcbdfa.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTI2NzAwMjRfMTgwNmFmZDdkNzBiYmJjNTIzZDYzYjBjNjFlOTEzMGIuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028112670024_1806afd7d70bbbc523d63b0c61e9130b.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028112670024_1806afd7d70bbbc523d63b0c61e9130b.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTMyODc5MTJfZTFhYThiZGI5ZmU3MmIxZmUyMjg4N2NlYWFmYzBkYmQuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028113287912_e1aa8bdb9fe72b1fe22887ceaafc0dbd.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028113287912_e1aa8bdb9fe72b1fe22887ceaafc0dbd.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTM4OTQ3MDRfMzUwNGU0YmYwOTNhZDlmOWQ2MzVjOGJmYTJhYWFlZjYuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028113894704_3504e4bf093ad9f9d635c8bfa2aaaef6.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028113894704_3504e4bf093ad9f9d635c8bfa2aaaef6.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTQ3Njc3MzlfZDAxNGIxMGRhNTA4OGJjN2QzNjc1YTZkMDBlNzdkMzMuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028114767739_d014b10da5088bc7d3675a6d00e77d33.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028114767739_d014b10da5088bc7d3675a6d00e77d33.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE0MzQ1NjFfNmQyY2I3NWVkYmE4MjgzMmUwY2JkOTA2NzM4NTdiZDMuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321434561_6d2cb75edba82832e0cbd90673857bd3.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321434561_6d2cb75edba82832e0cbd90673857bd3.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE0NDgwODhfNmU2OTQ0YzNjZWIzMzU4OTdlMmI0ZjRhZDIwOTc1YjcuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321448088_6e6944c3ceb335897e2b4f4ad20975b7.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321448088_6e6944c3ceb335897e2b4f4ad20975b7.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE1NDg1NTdfMWE1ZTY5YTg5Y2EzNzk1M2UwYzA0Yzg4ZTUyOWQ5NTEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321548557_1a5e69a89ca37953e0c04c88e529d951.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321548557_1a5e69a89ca37953e0c04c88e529d951.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMDk2MzA3MDRfMjlhODJkZjk3ZWE0ZWE3YzM3ODU5Zjk2NjcxNTRkYTEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028109630704_29a82df97ea4ea7c37859f9667154da1.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028109630704_29a82df97ea4ea7c37859f9667154da1.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMDk2NzU5ODRfNTExYmI1ODY5MGE3M2FiOWNjMWFkY2QxNDZjYTQ2ZjIuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028109675984_511bb58690a73ab9cc1adcd146ca46f2.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028109675984_511bb58690a73ab9cc1adcd146ca46f2.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTA2MzE0MTVfOWJkMzc1NDUxYjIyNDI3NzZjM2ZhNDdhNWU5MWYzZTEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028110631415_9bd375451b2242776c3fa47a5e91f3e1.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028110631415_9bd375451b2242776c3fa47a5e91f3e1.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTExNjcxMDFfNjg1ZGUyZTUzOTViYmY4ZDk3ZTRkMmY4YWE4N2ZlZTMuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028111167101_685de2e5395bbf8d97e4d2f8aa87fee3.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028111167101_685de2e5395bbf8d97e4d2f8aa87fee3.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure>ntt</div>ntt</div>ntttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6IjFlZjg0OTEiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiS2h1XHUwMGY0biBqaWciLCJ0ZXh0X2FsaWduIjoibGVmdCJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]tt<div class=\"elementor-element elementor-element-09a76d6 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\" data-id=\"09a76d6\" data-element_type=\"widget\" data-widget_type=\"image-gallery.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-image-gallery\">nttt<div id=\'gallery-6\' class=\'gallery galleryid-2998 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NDY1OTEzMzg2ODdfZmE1MTRlMTY0ZjJlZTk5NjFjZmVlY2U5YjJhMjk2MmUuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTE0ODI0OTc5ODFfNGZlOGQ1MmM3N2ZiOTcwYWNjYWNhOTkzMTFiM2U1YjguanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNTQzNzc3MTM5OTRfNzMxZjNhYzFmN2YzMjMyNjExMWE0MWY2N2Q0YTJlMzMuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE2NTM3NjdfNzk3Y2FkYTk3Yjk4NjQyZTYyYzkxODU3YzYwYjViNDQuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NDY1OTEzNDkxOTRfZDUwMTBkMTcwMGM3Y2ViNDkxYjk3OGIwMWJlM2RkMjguanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure>ntt</div>ntt</div>ntttt</div>ntttt</div>nttttt</div>ntttt</div>ntt\",\"scripts\":[],\"styles\":[\"widget-image-gallery\"]}}'),(10751,3280,'_elementor_css','a:6:{s:4:\"time\";i:1742181608;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:\"\";}'),(10752,3281,'_elementor_edit_mode','builder'),(10753,3281,'_elementor_template_type','wp-page'),(10754,3281,'_elementor_version','3.24.7'),(10755,3281,'_wp_page_template','default'),(10756,3281,'_elementor_data','[{\"id\":\"fcff723\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"dee41b0\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"Th\\u1ebf m\\u1ea1nh c\\u1ee7a ch\\u00fang t\\u00f4i n\\u1eb1m \\u1edf s\\u1ea3n xu\\u1ea5t h\\u00e0ng lo\\u1ea1t nh\\u00f4m v\\u00e0 th\\u00e9p. Ch\\u00fang t\\u00f4i xu\\u1ea5t s\\u1eafc trong vi\\u1ec7c \\u0111\\u1ed5i m\\u1edbi v\\u00e0 cung c\\u1ea5p c\\u00e1c s\\u1ea3n ph\\u1ea9m c\\u00f3 gi\\u00e1 tr\\u1ecb cao cho kh\\u00e1ch h\\u00e0ng.\",\"title_tag\":\"h5\",\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"373dfc0\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"H\\u00e0n\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"5603a87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2678,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074649965196_82fd76ddbbf38d64dae8af11b21537b9.jpg\"},{\"id\":2667,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074652723212_8770f028ff646f014f1e9f6efe34962e.jpg\"},{\"id\":2672,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074640939718_b0ff6acad14b2ab5ed158171c76833f9.jpg\"},{\"id\":2677,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074641293113_b4b186c67b6e7829dd2a91d730cf9aa7.jpg\"},{\"id\":2668,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074642763587_21ecce5d4accf371358eb4cbd73c800d.jpg\"},{\"id\":2669,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074642849848_10b5670512096e654748e57b24a04afe.jpg\"},{\"id\":2670,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074640758883_648a042f4b640d0f57a4441dd2109570.jpg\"},{\"id\":2671,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074640849237_e7699b1bc6e38e0bf65eb3bca28ae8ca.jpg\"},{\"id\":2673,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074641052070_9efbc1586cb5e95cc54b8421a63f380e.jpg\"},{\"id\":2674,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074641145273_7be5df3e1779aa04e890e40cc243cdee.jpg\"},{\"id\":2675,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074640653285_5a87adf57ce0c4186fe4fb1579e357b5.jpg\"},{\"id\":2676,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074641173826_45ae737f70dfb2d365abb397f139d708.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"dec4325\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Khu\\u00f4n\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1852cc9\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2679,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736575578_e0a4f5473843e58ee1a79989f367ada9.jpg\"},{\"id\":2680,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\"},{\"id\":2681,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735219679_91a6f6993146906f8465b43ddd0c2b3c.jpg\"},{\"id\":2682,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736761454_b98d468b133ac59ebbf5e62b693462a4.jpg\"},{\"id\":2683,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736784335_f93bc7820cfdc0b015c8224b9a1ace10.jpg\"},{\"id\":2684,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069219941349_b0954e44a25a7d1543eb33ceeae20efb.jpg\"},{\"id\":2685,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735343201_d2922aa1680c57bfe2da9aaba121caa6.jpg\"},{\"id\":2686,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735441885_088dd417b659783376adfeb006d18180.jpg\"},{\"id\":2687,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735598101_0fdd0a773a22d6af92f694d7866b2a5a.jpg\"},{\"id\":2688,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735634632_da3df11cc1dfa978c5b70f2e44404712.jpg\"},{\"id\":2689,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735693987_bf7347f533ec750a2c4f9df1763b8881.jpg\"},{\"id\":2690,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735835496_a71ac50ddac36867fca21cee8c47fe0a.jpg\"},{\"id\":2691,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\"},{\"id\":2692,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\"},{\"id\":2693,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\"},{\"id\":2694,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\"},{\"id\":2695,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736324472_06f1ed1a1be2c3a5923070aff7d5e10e.jpg\"},{\"id\":2696,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736391051_4c3cae16a8ff4f216b8d53673772dd07.jpg\"},{\"id\":2697,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"ab81cda\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Chi ti\\u1ebft m\\u00e1y\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"cd9dba9\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2698,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069219949175_e2a105bcf223c832d6caab2d03fe0413.jpg\"},{\"id\":2699,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799313165266_a15253e3a3e0a2c978ed667994b8f415.jpg\"},{\"id\":2700,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321604115_493f8355869dd3ca82a96e86e2982bfe.jpg\"},{\"id\":2701,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321696024_733a85bf835aea0a8afc8b269d149700.jpg\"},{\"id\":2702,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799313179567_c3d6675a03762fb94376dc96f05389bd.jpg\"},{\"id\":2703,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799313273454_ad716befaf43d2df147629d95262c520.jpg\"},{\"id\":2704,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363716249_96b2fea5fe33f4a24d8251c8aaf225e1.jpg\"},{\"id\":2705,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363723771_9eec4d51fc1723fb669f980084e20a61.jpg\"},{\"id\":2706,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363723892_5b7200026202a1efe96596109fad6857.jpg\"},{\"id\":2707,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363735361_9355fa7eb991123dc995dfaa2b4cf754.jpg\"},{\"id\":2708,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363746762_6241ac4c6625581b5db9b24a1ee05f68-1.jpg\"},{\"id\":2709,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363741409_d72124d9091280f6529a27a919be13c9.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"2f9b716\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"D\\u1ee5ng c\\u1ee5\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a165f68\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2710,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\"},{\"id\":2711,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\"},{\"id\":2712,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\"},{\"id\":2713,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\"},{\"id\":2714,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\"},{\"id\":2715,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\"},{\"id\":2716,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"bcd074c\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Ph\\u1ee5 t\\u00f9ng xe m\\u00e1y\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7eb3b87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2717,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028111300979_0052716b462843a5d1968f7870c72fd8.jpg\"},{\"id\":2718,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028112000000_2440d5ae36f700840d0f0b583bbcbdfa.jpg\"},{\"id\":2719,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028112670024_1806afd7d70bbbc523d63b0c61e9130b.jpg\"},{\"id\":2720,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028113287912_e1aa8bdb9fe72b1fe22887ceaafc0dbd.jpg\"},{\"id\":2721,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028113894704_3504e4bf093ad9f9d635c8bfa2aaaef6.jpg\"},{\"id\":2722,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028114767739_d014b10da5088bc7d3675a6d00e77d33.jpg\"},{\"id\":2723,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321434561_6d2cb75edba82832e0cbd90673857bd3.jpg\"},{\"id\":2724,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321448088_6e6944c3ceb335897e2b4f4ad20975b7.jpg\"},{\"id\":2725,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321548557_1a5e69a89ca37953e0c04c88e529d951.jpg\"},{\"id\":2726,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028109630704_29a82df97ea4ea7c37859f9667154da1.jpg\"},{\"id\":2727,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028109675984_511bb58690a73ab9cc1adcd146ca46f2.jpg\"},{\"id\":2728,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028110631415_9bd375451b2242776c3fa47a5e91f3e1.jpg\"},{\"id\":2729,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028111167101_685de2e5395bbf8d97e4d2f8aa87fee3.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"1ef8491\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Khu\\u00f4n jig\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"09a76d6\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2730,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\"},{\"id\":2731,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\"},{\"id\":2732,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\"},{\"id\":2733,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\"},{\"id\":2734,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}]'),(10757,3281,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:20:\"widget-image-gallery\";}}'),(10758,3281,'_elementor_element_cache','{\"timeout\":1742267766,\"value\":{\"content\":\"<div class=\"elementor-element elementor-element-fcff723 e-flex e-con-boxed e-con e-parent\" data-id=\"fcff723\" data-element_type=\"container\">nttttt<div class=\"e-con-inner\">ntt[elementor-element data=\"eyJpZCI6ImRlZTQxYjAiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlIjoiVGhcdTFlYmYgbVx1MWVhMW5oIGNcdTFlZTdhIGNoXHUwMGZhbmcgdFx1MDBmNGkgblx1MWViMW0gXHUxZWRmIHNcdTFlYTNuIHh1XHUxZWE1dCBoXHUwMGUwbmcgbG9cdTFlYTF0IG5oXHUwMGY0bSB2XHUwMGUwIHRoXHUwMGU5cC4gQ2hcdTAwZmFuZyB0XHUwMGY0aSB4dVx1MWVhNXQgc1x1MWVhZmMgdHJvbmcgdmlcdTFlYzdjIFx1MDExMVx1MWVkNWkgbVx1MWVkYmkgdlx1MDBlMCBjdW5nIGNcdTFlYTVwIGNcdTAwZTFjIHNcdTFlYTNuIHBoXHUxZWE5bSBjXHUwMGYzIGdpXHUwMGUxIHRyXHUxZWNiIGNhbyBjaG8ga2hcdTAwZTFjaCBoXHUwMGUwbmcuIiwidGl0bGVfdGFnIjoiaDUiLCJ0ZXh0X2FsaWduIjoiY2VudGVyIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"][elementor-element data=\"eyJpZCI6IjM3M2RmYzAiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiSFx1MDBlMG4iLCJ0ZXh0X2FsaWduIjoibGVmdCJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]tt<div class=\"elementor-element elementor-element-5603a87 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\" data-id=\"5603a87\" data-element_type=\"widget\" data-widget_type=\"image-gallery.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-image-gallery\">nttt<div id=\'gallery-1\' class=\'gallery galleryid-2998 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDk5NjUxOTZfODJmZDc2ZGRiYmYzOGQ2NGRhZThhZjExYjIxNTM3YjkuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074649965196_82fd76ddbbf38d64dae8af11b21537b9.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074649965196_82fd76ddbbf38d64dae8af11b21537b9.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY2NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NTI3MjMyMTJfODc3MGYwMjhmZjY0NmYwMTRmMWU5ZjZlZmUzNDk2MmUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074652723212_8770f028ff646f014f1e9f6efe34962e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074652723212_8770f028ff646f014f1e9f6efe34962e.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA5Mzk3MThfYjBmZjZhY2FkMTRiMmFiNWVkMTU4MTcxYzc2ODMzZjkuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640939718_b0ff6acad14b2ab5ed158171c76833f9.jpg\'><img width=\"84\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640939718_b0ff6acad14b2ab5ed158171c76833f9.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDEyOTMxMTNfYjRiMTg2YzY3YjZlNzgyOWRkMmE5MWQ3MzBjZjlhYTcuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641293113_b4b186c67b6e7829dd2a91d730cf9aa7.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641293113_b4b186c67b6e7829dd2a91d730cf9aa7.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY2OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDI3NjM1ODdfMjFlY2NlNWQ0YWNjZjM3MTM1OGViNGNiZDczYzgwMGQuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074642763587_21ecce5d4accf371358eb4cbd73c800d.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074642763587_21ecce5d4accf371358eb4cbd73c800d.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY2OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDI4NDk4NDhfMTBiNTY3MDUxMjA5NmU2NTQ3NDhlNTdiMjRhMDRhZmUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074642849848_10b5670512096e654748e57b24a04afe.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074642849848_10b5670512096e654748e57b24a04afe.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA3NTg4ODNfNjQ4YTA0MmY0YjY0MGQwZjU3YTQ0NDFkZDIxMDk1NzAuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640758883_648a042f4b640d0f57a4441dd2109570.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640758883_648a042f4b640d0f57a4441dd2109570.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA4NDkyMzdfZTc2OTliMWJjNmUzOGUwYmY2NWViM2JjYTI4YWU4Y2EuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640849237_e7699b1bc6e38e0bf65eb3bca28ae8ca.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640849237_e7699b1bc6e38e0bf65eb3bca28ae8ca.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDEwNTIwNzBfOWVmYmMxNTg2Y2I1ZTk1Y2M1NGI4NDIxYTYzZjM4MGUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641052070_9efbc1586cb5e95cc54b8421a63f380e.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641052070_9efbc1586cb5e95cc54b8421a63f380e.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDExNDUyNzNfN2JlNWRmM2UxNzc5YWEwNGU4OTBlNDBjYzI0M2NkZWUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641145273_7be5df3e1779aa04e890e40cc243cdee.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641145273_7be5df3e1779aa04e890e40cc243cdee.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA2NTMyODVfNWE4N2FkZjU3Y2UwYzQxODZmZTRmYjE1NzllMzU3YjUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640653285_5a87adf57ce0c4186fe4fb1579e357b5.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640653285_5a87adf57ce0c4186fe4fb1579e357b5.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDExNzM4MjZfNDVhZTczN2Y3MGRmYjJkMzY1YWJiMzk3ZjEzOWQ3MDguanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641173826_45ae737f70dfb2d365abb397f139d708.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641173826_45ae737f70dfb2d365abb397f139d708.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure>ntt</div>ntt</div>ntttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImRlYzQzMjUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiS2h1XHUwMGY0biIsInRleHRfYWxpZ24iOiJsZWZ0In0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"]tt<div class=\"elementor-element elementor-element-1852cc9 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\" data-id=\"1852cc9\" data-element_type=\"widget\" data-widget_type=\"image-gallery.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-image-gallery\">nttt<div id=\'gallery-2\' class=\'gallery galleryid-2998 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY1NzU1NzhfZTBhNGY1NDczODQzZTU4ZWUxYTc5OTg5ZjM2N2FkYTkuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736575578_e0a4f5473843e58ee1a79989f367ada9.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736575578_e0a4f5473843e58ee1a79989f367ada9.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY3MjE1ODZfMTZiOTE5ODQyMGIzOTlmOWQ4MmMwNThkOTA4MmEzZTAuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUyMTk2NzlfOTFhNmY2OTkzMTQ2OTA2Zjg0NjViNDNkZGQwYzJiM2MuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735219679_91a6f6993146906f8465b43ddd0c2b3c.jpg\'><img width=\"68\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735219679_91a6f6993146906f8465b43ddd0c2b3c.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY3NjE0NTRfYjk4ZDQ2OGIxMzNhYzU5ZWJiZjVlNjJiNjkzNDYyYTQuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736761454_b98d468b133ac59ebbf5e62b693462a4.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736761454_b98d468b133ac59ebbf5e62b693462a4.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY3ODQzMzVfZjkzYmM3ODIwY2ZkYzBiMDE1YzgyMjRiOWExYWNlMTAuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736784335_f93bc7820cfdc0b015c8224b9a1ace10.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736784335_f93bc7820cfdc0b015c8224b9a1ace10.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjkyMTk5NDEzNDlfYjA5NTRlNDRhMjVhN2QxNTQzZWIzM2NlZWFlMjBlZmIuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069219941349_b0954e44a25a7d1543eb33ceeae20efb.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069219941349_b0954e44a25a7d1543eb33ceeae20efb.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUzNDMyMDFfZDI5MjJhYTE2ODBjNTdiZmUyZGE5YWFiYTEyMWNhYTYuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735343201_d2922aa1680c57bfe2da9aaba121caa6.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735343201_d2922aa1680c57bfe2da9aaba121caa6.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU0NDE4ODVfMDg4ZGQ0MTdiNjU5NzgzMzc2YWRmZWIwMDZkMTgxODAuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735441885_088dd417b659783376adfeb006d18180.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735441885_088dd417b659783376adfeb006d18180.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU1OTgxMDFfMGZkZDBhNzczYTIyZDZhZjkyZjY5NGQ3ODY2YjJhNWEuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735598101_0fdd0a773a22d6af92f694d7866b2a5a.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735598101_0fdd0a773a22d6af92f694d7866b2a5a.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU2MzQ2MzJfZGEzZGYxMWNjMWRmYTk3OGM1YjcwZjJlNDQ0MDQ3MTIuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735634632_da3df11cc1dfa978c5b70f2e44404712.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735634632_da3df11cc1dfa978c5b70f2e44404712.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU2OTM5ODdfYmY3MzQ3ZjUzM2VjNzUwYTJjNGY5ZGYxNzYzYjg4ODEuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735693987_bf7347f533ec750a2c4f9df1763b8881.jpg\'><img width=\"84\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735693987_bf7347f533ec750a2c4f9df1763b8881.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU4MzU0OTZfYTcxYWM1MGRkYWMzNjg2N2ZjYTIxY2VlOGM0N2ZlMGEuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735835496_a71ac50ddac36867fca21cee8c47fe0a.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735835496_a71ac50ddac36867fca21cee8c47fe0a.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU4OTM2OTJfNDhmNGE5ZjdjN2E5ZDA1ZGMwMzdhODBhYzFlNTc4MmIuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYwMDk1MTRfYWQ5MDg4N2YyNWQ3MzRlYzJkMjFkOGE2YTYzNGZmMmQuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYxMTA0MjZfYzNlY2UzZWM1NmY5ZThjYzBlNWM5YTk4Zjk3OTJiZmMuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYxNjUzNzJfODI1NjkzMjRkZTFjOGZjYzM3NmNjMGU3MzdjMDUyMGUuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYzMjQ0NzJfMDZmMWVkMWExYmUyYzNhNTkyMzA3MGFmZjdkNWUxMGUuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736324472_06f1ed1a1be2c3a5923070aff7d5e10e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736324472_06f1ed1a1be2c3a5923070aff7d5e10e.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYzOTEwNTFfNGMzY2FlMTZhOGZmNGYyMTZiOGQ1MzY3Mzc3MmRkMDcuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736391051_4c3cae16a8ff4f216b8d53673772dd07.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736391051_4c3cae16a8ff4f216b8d53673772dd07.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY0NTU3NzVfOTdhOTM3ODA3YzgwN2JmNzEzNjk0MTlhMGE1ZDNkMmMuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\'><img width=\"68\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure>ntt</div>ntt</div>ntttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImFiODFjZGEiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiQ2hpIHRpXHUxZWJmdCBtXHUwMGUxeSIsInRleHRfYWxpZ24iOiJsZWZ0In0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"]tt<div class=\"elementor-element elementor-element-cd9dba9 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\" data-id=\"cd9dba9\" data-element_type=\"widget\" data-widget_type=\"image-gallery.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-image-gallery\">nttt<div id=\'gallery-3\' class=\'gallery galleryid-2998 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjkyMTk5NDkxNzVfZTJhMTA1YmNmMjIzYzgzMmQ2Y2FhYjJkMDNmZTA0MTMuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069219949175_e2a105bcf223c832d6caab2d03fe0413.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069219949175_e2a105bcf223c832d6caab2d03fe0413.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMTMxNjUyNjZfYTE1MjUzZTNhM2UwYTJjOTc4ZWQ2Njc5OTRiOGY0MTUuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799313165266_a15253e3a3e0a2c978ed667994b8f415.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799313165266_a15253e3a3e0a2c978ed667994b8f415.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE2MDQxMTVfNDkzZjgzNTU4NjlkZDNjYTgyYTk2ZTg2ZTI5ODJiZmUuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321604115_493f8355869dd3ca82a96e86e2982bfe.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321604115_493f8355869dd3ca82a96e86e2982bfe.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE2OTYwMjRfNzMzYTg1YmY4MzVhZWEwYThhZmM4YjI2OWQxNDk3MDAuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321696024_733a85bf835aea0a8afc8b269d149700.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321696024_733a85bf835aea0a8afc8b269d149700.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMTMxNzk1NjdfYzNkNjY3NWEwMzc2MmZiOTQzNzZkYzk2ZjA1Mzg5YmQuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799313179567_c3d6675a03762fb94376dc96f05389bd.jpg\'><img width=\"150\" height=\"86\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799313179567_c3d6675a03762fb94376dc96f05389bd.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMTMyNzM0NTRfYWQ3MTZiZWZhZjQzZDJkZjE0NzYyOWQ5NTI2MmM1MjAuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799313273454_ad716befaf43d2df147629d95262c520.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799313273454_ad716befaf43d2df147629d95262c520.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MTYyNDlfOTZiMmZlYTVmZTMzZjRhMjRkODI1MWM4YWFmMjI1ZTEuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363716249_96b2fea5fe33f4a24d8251c8aaf225e1.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363716249_96b2fea5fe33f4a24d8251c8aaf225e1.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MjM3NzFfOWVlYzRkNTFmYzE3MjNmYjY2OWY5ODAwODRlMjBhNjEuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363723771_9eec4d51fc1723fb669f980084e20a61.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363723771_9eec4d51fc1723fb669f980084e20a61.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MjM4OTJfNWI3MjAwMDI2MjAyYTFlZmU5NjU5NjEwOWZhZDY4NTcuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363723892_5b7200026202a1efe96596109fad6857.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363723892_5b7200026202a1efe96596109fad6857.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MzUzNjFfOTM1NWZhN2ViOTkxMTIzZGM5OTVkZmFhMmI0Y2Y3NTQuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363735361_9355fa7eb991123dc995dfaa2b4cf754.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363735361_9355fa7eb991123dc995dfaa2b4cf754.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3NDY3NjJfNjI0MWFjNGM2NjI1NTgxYjVkYjliMjRhMWVlMDVmNjgtMS5qcGciLCJzbGlkZXNob3ciOiJjZDlkYmE5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363746762_6241ac4c6625581b5db9b24a1ee05f68-1.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363746762_6241ac4c6625581b5db9b24a1ee05f68-1.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3NDE0MDlfZDcyMTI0ZDkwOTEyODBmNjUyOWEyN2E5MTliZTEzYzkuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363741409_d72124d9091280f6529a27a919be13c9.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363741409_d72124d9091280f6529a27a919be13c9.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure>ntt</div>ntt</div>ntttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6IjJmOWI3MTYiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiRFx1MWVlNW5nIGNcdTFlZTUiLCJ0ZXh0X2FsaWduIjoibGVmdCJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]tt<div class=\"elementor-element elementor-element-a165f68 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\" data-id=\"a165f68\" data-element_type=\"widget\" data-widget_type=\"image-gallery.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-image-gallery\">nttt<div id=\'gallery-4\' class=\'gallery galleryid-2998 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwMTgzMzRfMTdjNWZhYzk2ZmIyODQzZDc0YTc2Y2M3OWY5YjRmNWMuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\'><img width=\"150\" height=\"135\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwMzczNTNfZGI4NzczMmIzZWE5ZDkzNTM2YmNkM2FlYzY0ODM1YTcuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNTkxNjJfMDUzYjM2NGFiNzYxZGM1YTQ0Mjc5ZmFmNjQzOTUzMjQuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\'><img width=\"70\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNzgzNzJfNTBhYmNlNTI0OWM4YWNkY2ZiZGY4YTA2MzQ4OWUxODYuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNzg1NzBfMGFiNThiNDZiZjY4M2RmNmVjZGIyYzJkODc5NDViYTYuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\'><img width=\"150\" height=\"129\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk2ODQ5NDkwODZfYjI5ZmRiNTAxMTRhMTk2Y2MzZmRjYzllMTJjYWYxMDUuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\'><img width=\"150\" height=\"128\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk2ODQ5NDY2NDFfMTUwMGZiZTE2ZmVjM2ExNGVhZGI4ZTRhZWQxY2Y2M2YuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure>ntt</div>ntt</div>ntttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImJjZDA3NGMiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiUGhcdTFlZTUgdFx1MDBmOW5nIHhlIG1cdTAwZTF5IiwidGV4dF9hbGlnbiI6ImxlZnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-7eb3b87 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\" data-id=\"7eb3b87\" data-element_type=\"widget\" data-widget_type=\"image-gallery.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-image-gallery\">nttt<div id=\'gallery-5\' class=\'gallery galleryid-2998 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTEzMDA5NzlfMDA1MjcxNmI0NjI4NDNhNWQxOTY4Zjc4NzBjNzJmZDguanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028111300979_0052716b462843a5d1968f7870c72fd8.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028111300979_0052716b462843a5d1968f7870c72fd8.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTIwMDAwMDBfMjQ0MGQ1YWUzNmY3MDA4NDBkMGYwYjU4M2JiY2JkZmEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028112000000_2440d5ae36f700840d0f0b583bbcbdfa.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028112000000_2440d5ae36f700840d0f0b583bbcbdfa.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTI2NzAwMjRfMTgwNmFmZDdkNzBiYmJjNTIzZDYzYjBjNjFlOTEzMGIuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028112670024_1806afd7d70bbbc523d63b0c61e9130b.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028112670024_1806afd7d70bbbc523d63b0c61e9130b.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTMyODc5MTJfZTFhYThiZGI5ZmU3MmIxZmUyMjg4N2NlYWFmYzBkYmQuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028113287912_e1aa8bdb9fe72b1fe22887ceaafc0dbd.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028113287912_e1aa8bdb9fe72b1fe22887ceaafc0dbd.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTM4OTQ3MDRfMzUwNGU0YmYwOTNhZDlmOWQ2MzVjOGJmYTJhYWFlZjYuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028113894704_3504e4bf093ad9f9d635c8bfa2aaaef6.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028113894704_3504e4bf093ad9f9d635c8bfa2aaaef6.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTQ3Njc3MzlfZDAxNGIxMGRhNTA4OGJjN2QzNjc1YTZkMDBlNzdkMzMuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028114767739_d014b10da5088bc7d3675a6d00e77d33.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028114767739_d014b10da5088bc7d3675a6d00e77d33.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE0MzQ1NjFfNmQyY2I3NWVkYmE4MjgzMmUwY2JkOTA2NzM4NTdiZDMuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321434561_6d2cb75edba82832e0cbd90673857bd3.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321434561_6d2cb75edba82832e0cbd90673857bd3.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE0NDgwODhfNmU2OTQ0YzNjZWIzMzU4OTdlMmI0ZjRhZDIwOTc1YjcuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321448088_6e6944c3ceb335897e2b4f4ad20975b7.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321448088_6e6944c3ceb335897e2b4f4ad20975b7.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE1NDg1NTdfMWE1ZTY5YTg5Y2EzNzk1M2UwYzA0Yzg4ZTUyOWQ5NTEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321548557_1a5e69a89ca37953e0c04c88e529d951.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321548557_1a5e69a89ca37953e0c04c88e529d951.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMDk2MzA3MDRfMjlhODJkZjk3ZWE0ZWE3YzM3ODU5Zjk2NjcxNTRkYTEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028109630704_29a82df97ea4ea7c37859f9667154da1.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028109630704_29a82df97ea4ea7c37859f9667154da1.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMDk2NzU5ODRfNTExYmI1ODY5MGE3M2FiOWNjMWFkY2QxNDZjYTQ2ZjIuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028109675984_511bb58690a73ab9cc1adcd146ca46f2.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028109675984_511bb58690a73ab9cc1adcd146ca46f2.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTA2MzE0MTVfOWJkMzc1NDUxYjIyNDI3NzZjM2ZhNDdhNWU5MWYzZTEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028110631415_9bd375451b2242776c3fa47a5e91f3e1.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028110631415_9bd375451b2242776c3fa47a5e91f3e1.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTExNjcxMDFfNjg1ZGUyZTUzOTViYmY4ZDk3ZTRkMmY4YWE4N2ZlZTMuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028111167101_685de2e5395bbf8d97e4d2f8aa87fee3.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028111167101_685de2e5395bbf8d97e4d2f8aa87fee3.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure>ntt</div>ntt</div>ntttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6IjFlZjg0OTEiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiS2h1XHUwMGY0biBqaWciLCJ0ZXh0X2FsaWduIjoibGVmdCJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]tt<div class=\"elementor-element elementor-element-09a76d6 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\" data-id=\"09a76d6\" data-element_type=\"widget\" data-widget_type=\"image-gallery.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-image-gallery\">nttt<div id=\'gallery-6\' class=\'gallery galleryid-2998 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NDY1OTEzMzg2ODdfZmE1MTRlMTY0ZjJlZTk5NjFjZmVlY2U5YjJhMjk2MmUuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTE0ODI0OTc5ODFfNGZlOGQ1MmM3N2ZiOTcwYWNjYWNhOTkzMTFiM2U1YjguanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNTQzNzc3MTM5OTRfNzMxZjNhYzFmN2YzMjMyNjExMWE0MWY2N2Q0YTJlMzMuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE2NTM3NjdfNzk3Y2FkYTk3Yjk4NjQyZTYyYzkxODU3YzYwYjViNDQuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NDY1OTEzNDkxOTRfZDUwMTBkMTcwMGM3Y2ViNDkxYjk3OGIwMWJlM2RkMjguanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure>ntt</div>ntt</div>ntttt</div>ntttt</div>nttttt</div>ntttt</div>ntt\",\"scripts\":[],\"styles\":[\"widget-image-gallery\"]}}'),(10759,3281,'_elementor_css','a:6:{s:4:\"time\";i:1742181608;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:\"\";}'),(10760,3282,'_elementor_edit_mode','builder'),(10761,3282,'_elementor_template_type','wp-page'),(10762,3282,'_elementor_version','3.24.7'),(10763,3282,'_wp_page_template','default'),(10764,3282,'_elementor_data','[{\"id\":\"6a510c2\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"c94bc95\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"Th\\u1ebf m\\u1ea1nh c\\u1ee7a ch\\u00fang t\\u00f4i n\\u1eb1m \\u1edf s\\u1ea3n xu\\u1ea5t h\\u00e0ng lo\\u1ea1t nh\\u00f4m v\\u00e0 th\\u00e9p. Ch\\u00fang t\\u00f4i xu\\u1ea5t s\\u1eafc trong vi\\u1ec7c \\u0111\\u1ed5i m\\u1edbi v\\u00e0 cung c\\u1ea5p c\\u00e1c s\\u1ea3n ph\\u1ea9m c\\u00f3 gi\\u00e1 tr\\u1ecb cao cho kh\\u00e1ch h\\u00e0ng.\",\"title_tag\":\"h5\",\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9523dc6\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"\\u00d4 t\\u00f4 & Xe m\\u00e1y\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"e4eeb57\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":3190,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Ab6277516622141b68178f66bebaadd93o.jpg_350x350.jpg\"},{\"id\":3191,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A4969ef2343a244608cc511d1e7be28e2X.png_350x350.png\"},{\"id\":3192,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/H9be6461494cf4fe7998192dc483066c9v.png_350x350.png\"},{\"id\":3193,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/H4cbac47ae6cf4705b966668ca1abad509.png_350x350.png\"},{\"id\":3194,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/H6c00bd237d8b46d4b06a1cc6ef76accfE.png_350x350.png\"},{\"id\":3195,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/H71abe7a763a345ae87dcf70c25a70a32M.png_350x350.png\"},{\"id\":3196,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/2.jpg\"},{\"id\":3197,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A045fe45345664394a2a80499b4bd2117i.jpg_350x350.jpg\"},{\"id\":3198,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A86e039df1c9d4e809ea53dfd676ba67aO.jpg_350x350.jpg\"},{\"id\":3199,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A786dc427af46457ea923c41ea7688f67Q.jpg_350x350.jpg\"},{\"id\":3200,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/6.jpg\"},{\"id\":3201,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A2ed5a5c3f8f544c8910a3fe29da5e2984.jpg_350x350.jpg\"},{\"id\":3202,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A3c80646854cd4401b6b737a80e8e29f2Z.jpg_350x350.jpg\"},{\"id\":3203,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A53f94fffa0e64ba8a47330e85a179214l.jpg_350x350.jpg\"},{\"id\":3204,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Aa559aaa8e8d44868b700967e182631e0O.jpg_350x350.jpg\"},{\"id\":3205,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/4.jpg\"},{\"id\":3206,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A29209fca14e3491286a7ae2a7d535066t.jpg_350x350.jpg\"},{\"id\":3207,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Afd6e5018d54a4c319b4941af57e38fc1e.jpg_350x350.jpg\"},{\"id\":3208,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A8626df5ae89c458484cbdeab6b0a2768E.jpg_350x350.jpg\"},{\"id\":3209,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Aec2a4cd895e648b6bc7174d864e103329.jpg_350x350.jpg\"},{\"id\":3210,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/1.jpg\"},{\"id\":3211,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A5fa71b0eddf648049c5f33d331738460m.jpg_350x350.jpg\"},{\"id\":3212,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A9bc1872697d649e7a28d14c48cd6b71bq.jpg_350x350.jpg\"},{\"id\":3213,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Ad0c782b84615484d8303ad964cd302a4C.jpg_350x350.jpg\"},{\"id\":3214,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Aec3f44d2c0cf4536870b19097b5035f4A.jpg_350x350.jpg\"},{\"id\":3215,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/8.jpg\"},{\"id\":3216,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A5df619ce89ec42189a5c4d05bbba4f2dw.jpg_350x350.jpg\"},{\"id\":3217,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A9207015598ae47e4ba57d5d6755a7945J.jpg_350x350.jpg\"},{\"id\":3218,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Aa67514ca153a43208612611af15ae689t.jpg_350x350.jpg\"},{\"id\":3219,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Ac8c57af57fc04a9b8afbcf5214d8b125a.jpg_350x350.jpg\"},{\"id\":3220,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Aea1a2ea6c9d04b78977d1e8c907e721cR.jpg_350x350.jpg\"},{\"id\":3221,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/5.jpg\"},{\"id\":3222,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/7.jpg\"},{\"id\":3223,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A4fa22b3db4704145a9c8f2b6d413b4b7Y.jpg_350x350.jpg\"},{\"id\":3224,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A8cfa154ca70a46c5965e993255b53ecbg.jpg_350x350.jpg\"},{\"id\":3225,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A967c634a517c48f38c23d4766db5bba1a.jpg_350x350.jpg\"},{\"id\":3226,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A462413b6de2b401ba60e99bbe1d15e33K.jpg_350x350.jpg\"},{\"id\":3227,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A661399142a7247278bbf69a9d6007556W.jpg_350x350.jpg\"},{\"id\":3228,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/10.jpg\"},{\"id\":3229,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A16eb71f546c44c4ba00c6afe46464d593.jpg_350x350.jpg\"},{\"id\":3230,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A72a21ba969c84b98b63b985380b97ef5O.jpg_350x350.jpg\"},{\"id\":3231,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A99574ebe1a6c432abebb91680e3e227e0.jpg_350x350.jpg\"},{\"id\":3232,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Ac6d9a3b79a904eeb9c925afa374ec53aA.jpg_350x350.jpg\"},{\"id\":3233,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Adef05c3212194f259f1556cd5081ab3eg.jpg_350x350.jpg\"},{\"id\":3234,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/3.jpg\"},{\"id\":3235,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/9.jpg\"},{\"id\":3236,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A268aa8f9b65c4cdf9f45e594f2cd8ad4M.jpg_350x350.jpg\"},{\"id\":3237,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A864432f2571743689342ae173ee9dc9fd.jpg_350x350.jpg\"},{\"id\":3238,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Abd43851c92654bd99cfdca45d896fbcbB.jpg_350x350.jpg\"},{\"id\":3239,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Acdd1226298dd4613abf021bdcaad320b0.jpg_350x350.jpg\"},{\"id\":3240,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Ae91bf7f51db3402ebaff610c299e9aacF.jpg_350x350.jpg\"},{\"id\":3241,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A05f18d47e70948ae8795111d055f42fa2.jpg_350x350.jpg\"},{\"id\":3242,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A5c37792f38434388a02a0479fcbc4123T.jpg_350x350.jpg\"},{\"id\":3243,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A8c420992f47745509f4f292ac7bd2258H.jpg_350x350.jpg\"},{\"id\":3244,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A1001e63ea59149f8a81abb92d5d5fe713.jpg_350x350.jpg\"},{\"id\":3245,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A36346f881b104996b6c070b5d2cebff8u.jpg_350x350.jpg\"},{\"id\":3246,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A157183c07a764eb8957bc4cd13982808i.jpg_350x350.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"e211b12\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"C\\u00e1c b\\u1ed9 ph\\u1eadn gia c\\u00f4ng CNC\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"f3f0dbe\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":3247,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok5.jpg\"},{\"id\":3248,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok4.png\"},{\"id\":3249,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-machine22.avif\"},{\"id\":3250,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-machine3.jpg\"},{\"id\":3251,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok3.png\"},{\"id\":3252,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok1.png\"},{\"id\":3253,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok2.png\"},{\"id\":3254,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok7.png\"},{\"id\":3255,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok9.jpg\"},{\"id\":3256,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok8.jpg\"},{\"id\":3257,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z5709443476797_cb3e9e0d596ad6331366b8a711f46926.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"9da0051\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Kim lo\\u1ea1i t\\u1ea5m & Gia c\\u00f4ng\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"804badd\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":3258,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal1.jpg\"},{\"id\":3259,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal3.jpg\"},{\"id\":3260,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal4.jpg\"},{\"id\":3261,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal5.jpg\"},{\"id\":3262,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal7.jpg\"},{\"id\":3263,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal8.jpg\"},{\"id\":3264,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal9.jpg\"},{\"id\":3265,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal10.jpg\"},{\"id\":3266,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal2.png\"},{\"id\":3267,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal6.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"7a49f4c\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Linh ki\\u1ec7n khu\\u00f4n & khu\\u00f4n d\\u1eadp\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"51068f5\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":3268,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\"},{\"id\":3269,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\"},{\"id\":3270,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\"},{\"id\":3271,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\"},{\"id\":3272,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\"},{\"id\":3273,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"5e7fcce\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"\\u0110inh \\u1ed1c & Bu l\\u00f4ng c\\u00f4ng nghi\\u1ec7p\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"edd871c\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":3274,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/IMG_1237.jpeg\"},{\"id\":3275,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/DSC00822.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"b1ac8c0\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"D\\u1ee5ng c\\u1ee5\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1583ea9\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2710,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\"},{\"id\":2711,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\"},{\"id\":2712,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\"},{\"id\":2713,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\"},{\"id\":2714,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\"},{\"id\":2715,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\"},{\"id\":2716,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"2c57791\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"\\u0110\\u1ed3 g\\u00e1\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"38c84c0\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2730,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\"},{\"id\":2731,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\"},{\"id\":2732,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\"},{\"id\":2733,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\"},{\"id\":2734,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}]'),(10765,3282,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:20:\"widget-image-gallery\";}}'),(10766,3282,'_elementor_element_cache','{\"timeout\":1742267766,\"value\":{\"content\":\"<div class=\"elementor-element elementor-element-fcff723 e-flex e-con-boxed e-con e-parent\" data-id=\"fcff723\" data-element_type=\"container\">nttttt<div class=\"e-con-inner\">ntt[elementor-element data=\"eyJpZCI6ImRlZTQxYjAiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlIjoiVGhcdTFlYmYgbVx1MWVhMW5oIGNcdTFlZTdhIGNoXHUwMGZhbmcgdFx1MDBmNGkgblx1MWViMW0gXHUxZWRmIHNcdTFlYTNuIHh1XHUxZWE1dCBoXHUwMGUwbmcgbG9cdTFlYTF0IG5oXHUwMGY0bSB2XHUwMGUwIHRoXHUwMGU5cC4gQ2hcdTAwZmFuZyB0XHUwMGY0aSB4dVx1MWVhNXQgc1x1MWVhZmMgdHJvbmcgdmlcdTFlYzdjIFx1MDExMVx1MWVkNWkgbVx1MWVkYmkgdlx1MDBlMCBjdW5nIGNcdTFlYTVwIGNcdTAwZTFjIHNcdTFlYTNuIHBoXHUxZWE5bSBjXHUwMGYzIGdpXHUwMGUxIHRyXHUxZWNiIGNhbyBjaG8ga2hcdTAwZTFjaCBoXHUwMGUwbmcuIiwidGl0bGVfdGFnIjoiaDUiLCJ0ZXh0X2FsaWduIjoiY2VudGVyIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"][elementor-element data=\"eyJpZCI6IjM3M2RmYzAiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiSFx1MDBlMG4iLCJ0ZXh0X2FsaWduIjoibGVmdCJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]tt<div class=\"elementor-element elementor-element-5603a87 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\" data-id=\"5603a87\" data-element_type=\"widget\" data-widget_type=\"image-gallery.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-image-gallery\">nttt<div id=\'gallery-1\' class=\'gallery galleryid-2998 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDk5NjUxOTZfODJmZDc2ZGRiYmYzOGQ2NGRhZThhZjExYjIxNTM3YjkuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074649965196_82fd76ddbbf38d64dae8af11b21537b9.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074649965196_82fd76ddbbf38d64dae8af11b21537b9.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY2NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NTI3MjMyMTJfODc3MGYwMjhmZjY0NmYwMTRmMWU5ZjZlZmUzNDk2MmUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074652723212_8770f028ff646f014f1e9f6efe34962e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074652723212_8770f028ff646f014f1e9f6efe34962e.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA5Mzk3MThfYjBmZjZhY2FkMTRiMmFiNWVkMTU4MTcxYzc2ODMzZjkuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640939718_b0ff6acad14b2ab5ed158171c76833f9.jpg\'><img width=\"84\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640939718_b0ff6acad14b2ab5ed158171c76833f9.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDEyOTMxMTNfYjRiMTg2YzY3YjZlNzgyOWRkMmE5MWQ3MzBjZjlhYTcuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641293113_b4b186c67b6e7829dd2a91d730cf9aa7.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641293113_b4b186c67b6e7829dd2a91d730cf9aa7.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY2OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDI3NjM1ODdfMjFlY2NlNWQ0YWNjZjM3MTM1OGViNGNiZDczYzgwMGQuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074642763587_21ecce5d4accf371358eb4cbd73c800d.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074642763587_21ecce5d4accf371358eb4cbd73c800d.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY2OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDI4NDk4NDhfMTBiNTY3MDUxMjA5NmU2NTQ3NDhlNTdiMjRhMDRhZmUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074642849848_10b5670512096e654748e57b24a04afe.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074642849848_10b5670512096e654748e57b24a04afe.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA3NTg4ODNfNjQ4YTA0MmY0YjY0MGQwZjU3YTQ0NDFkZDIxMDk1NzAuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640758883_648a042f4b640d0f57a4441dd2109570.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640758883_648a042f4b640d0f57a4441dd2109570.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA4NDkyMzdfZTc2OTliMWJjNmUzOGUwYmY2NWViM2JjYTI4YWU4Y2EuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640849237_e7699b1bc6e38e0bf65eb3bca28ae8ca.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640849237_e7699b1bc6e38e0bf65eb3bca28ae8ca.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDEwNTIwNzBfOWVmYmMxNTg2Y2I1ZTk1Y2M1NGI4NDIxYTYzZjM4MGUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641052070_9efbc1586cb5e95cc54b8421a63f380e.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641052070_9efbc1586cb5e95cc54b8421a63f380e.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDExNDUyNzNfN2JlNWRmM2UxNzc5YWEwNGU4OTBlNDBjYzI0M2NkZWUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641145273_7be5df3e1779aa04e890e40cc243cdee.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641145273_7be5df3e1779aa04e890e40cc243cdee.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA2NTMyODVfNWE4N2FkZjU3Y2UwYzQxODZmZTRmYjE1NzllMzU3YjUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640653285_5a87adf57ce0c4186fe4fb1579e357b5.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640653285_5a87adf57ce0c4186fe4fb1579e357b5.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDExNzM4MjZfNDVhZTczN2Y3MGRmYjJkMzY1YWJiMzk3ZjEzOWQ3MDguanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641173826_45ae737f70dfb2d365abb397f139d708.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641173826_45ae737f70dfb2d365abb397f139d708.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure>ntt</div>ntt</div>ntttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImRlYzQzMjUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiS2h1XHUwMGY0biIsInRleHRfYWxpZ24iOiJsZWZ0In0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"]tt<div class=\"elementor-element elementor-element-1852cc9 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\" data-id=\"1852cc9\" data-element_type=\"widget\" data-widget_type=\"image-gallery.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-image-gallery\">nttt<div id=\'gallery-2\' class=\'gallery galleryid-2998 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY1NzU1NzhfZTBhNGY1NDczODQzZTU4ZWUxYTc5OTg5ZjM2N2FkYTkuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736575578_e0a4f5473843e58ee1a79989f367ada9.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736575578_e0a4f5473843e58ee1a79989f367ada9.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY3MjE1ODZfMTZiOTE5ODQyMGIzOTlmOWQ4MmMwNThkOTA4MmEzZTAuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUyMTk2NzlfOTFhNmY2OTkzMTQ2OTA2Zjg0NjViNDNkZGQwYzJiM2MuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735219679_91a6f6993146906f8465b43ddd0c2b3c.jpg\'><img width=\"68\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735219679_91a6f6993146906f8465b43ddd0c2b3c.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY3NjE0NTRfYjk4ZDQ2OGIxMzNhYzU5ZWJiZjVlNjJiNjkzNDYyYTQuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736761454_b98d468b133ac59ebbf5e62b693462a4.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736761454_b98d468b133ac59ebbf5e62b693462a4.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY3ODQzMzVfZjkzYmM3ODIwY2ZkYzBiMDE1YzgyMjRiOWExYWNlMTAuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736784335_f93bc7820cfdc0b015c8224b9a1ace10.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736784335_f93bc7820cfdc0b015c8224b9a1ace10.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjkyMTk5NDEzNDlfYjA5NTRlNDRhMjVhN2QxNTQzZWIzM2NlZWFlMjBlZmIuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069219941349_b0954e44a25a7d1543eb33ceeae20efb.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069219941349_b0954e44a25a7d1543eb33ceeae20efb.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUzNDMyMDFfZDI5MjJhYTE2ODBjNTdiZmUyZGE5YWFiYTEyMWNhYTYuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735343201_d2922aa1680c57bfe2da9aaba121caa6.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735343201_d2922aa1680c57bfe2da9aaba121caa6.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU0NDE4ODVfMDg4ZGQ0MTdiNjU5NzgzMzc2YWRmZWIwMDZkMTgxODAuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735441885_088dd417b659783376adfeb006d18180.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735441885_088dd417b659783376adfeb006d18180.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU1OTgxMDFfMGZkZDBhNzczYTIyZDZhZjkyZjY5NGQ3ODY2YjJhNWEuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735598101_0fdd0a773a22d6af92f694d7866b2a5a.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735598101_0fdd0a773a22d6af92f694d7866b2a5a.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU2MzQ2MzJfZGEzZGYxMWNjMWRmYTk3OGM1YjcwZjJlNDQ0MDQ3MTIuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735634632_da3df11cc1dfa978c5b70f2e44404712.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735634632_da3df11cc1dfa978c5b70f2e44404712.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU2OTM5ODdfYmY3MzQ3ZjUzM2VjNzUwYTJjNGY5ZGYxNzYzYjg4ODEuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735693987_bf7347f533ec750a2c4f9df1763b8881.jpg\'><img width=\"84\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735693987_bf7347f533ec750a2c4f9df1763b8881.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU4MzU0OTZfYTcxYWM1MGRkYWMzNjg2N2ZjYTIxY2VlOGM0N2ZlMGEuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735835496_a71ac50ddac36867fca21cee8c47fe0a.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735835496_a71ac50ddac36867fca21cee8c47fe0a.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU4OTM2OTJfNDhmNGE5ZjdjN2E5ZDA1ZGMwMzdhODBhYzFlNTc4MmIuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYwMDk1MTRfYWQ5MDg4N2YyNWQ3MzRlYzJkMjFkOGE2YTYzNGZmMmQuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYxMTA0MjZfYzNlY2UzZWM1NmY5ZThjYzBlNWM5YTk4Zjk3OTJiZmMuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYxNjUzNzJfODI1NjkzMjRkZTFjOGZjYzM3NmNjMGU3MzdjMDUyMGUuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYzMjQ0NzJfMDZmMWVkMWExYmUyYzNhNTkyMzA3MGFmZjdkNWUxMGUuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736324472_06f1ed1a1be2c3a5923070aff7d5e10e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736324472_06f1ed1a1be2c3a5923070aff7d5e10e.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYzOTEwNTFfNGMzY2FlMTZhOGZmNGYyMTZiOGQ1MzY3Mzc3MmRkMDcuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736391051_4c3cae16a8ff4f216b8d53673772dd07.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736391051_4c3cae16a8ff4f216b8d53673772dd07.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY0NTU3NzVfOTdhOTM3ODA3YzgwN2JmNzEzNjk0MTlhMGE1ZDNkMmMuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\'><img width=\"68\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure>ntt</div>ntt</div>ntttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImFiODFjZGEiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiQ2hpIHRpXHUxZWJmdCBtXHUwMGUxeSIsInRleHRfYWxpZ24iOiJsZWZ0In0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"]tt<div class=\"elementor-element elementor-element-cd9dba9 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\" data-id=\"cd9dba9\" data-element_type=\"widget\" data-widget_type=\"image-gallery.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-image-gallery\">nttt<div id=\'gallery-3\' class=\'gallery galleryid-2998 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjkyMTk5NDkxNzVfZTJhMTA1YmNmMjIzYzgzMmQ2Y2FhYjJkMDNmZTA0MTMuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069219949175_e2a105bcf223c832d6caab2d03fe0413.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069219949175_e2a105bcf223c832d6caab2d03fe0413.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMTMxNjUyNjZfYTE1MjUzZTNhM2UwYTJjOTc4ZWQ2Njc5OTRiOGY0MTUuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799313165266_a15253e3a3e0a2c978ed667994b8f415.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799313165266_a15253e3a3e0a2c978ed667994b8f415.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE2MDQxMTVfNDkzZjgzNTU4NjlkZDNjYTgyYTk2ZTg2ZTI5ODJiZmUuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321604115_493f8355869dd3ca82a96e86e2982bfe.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321604115_493f8355869dd3ca82a96e86e2982bfe.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE2OTYwMjRfNzMzYTg1YmY4MzVhZWEwYThhZmM4YjI2OWQxNDk3MDAuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321696024_733a85bf835aea0a8afc8b269d149700.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321696024_733a85bf835aea0a8afc8b269d149700.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMTMxNzk1NjdfYzNkNjY3NWEwMzc2MmZiOTQzNzZkYzk2ZjA1Mzg5YmQuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799313179567_c3d6675a03762fb94376dc96f05389bd.jpg\'><img width=\"150\" height=\"86\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799313179567_c3d6675a03762fb94376dc96f05389bd.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMTMyNzM0NTRfYWQ3MTZiZWZhZjQzZDJkZjE0NzYyOWQ5NTI2MmM1MjAuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799313273454_ad716befaf43d2df147629d95262c520.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799313273454_ad716befaf43d2df147629d95262c520.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MTYyNDlfOTZiMmZlYTVmZTMzZjRhMjRkODI1MWM4YWFmMjI1ZTEuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363716249_96b2fea5fe33f4a24d8251c8aaf225e1.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363716249_96b2fea5fe33f4a24d8251c8aaf225e1.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MjM3NzFfOWVlYzRkNTFmYzE3MjNmYjY2OWY5ODAwODRlMjBhNjEuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363723771_9eec4d51fc1723fb669f980084e20a61.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363723771_9eec4d51fc1723fb669f980084e20a61.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MjM4OTJfNWI3MjAwMDI2MjAyYTFlZmU5NjU5NjEwOWZhZDY4NTcuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363723892_5b7200026202a1efe96596109fad6857.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363723892_5b7200026202a1efe96596109fad6857.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MzUzNjFfOTM1NWZhN2ViOTkxMTIzZGM5OTVkZmFhMmI0Y2Y3NTQuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363735361_9355fa7eb991123dc995dfaa2b4cf754.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363735361_9355fa7eb991123dc995dfaa2b4cf754.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3NDY3NjJfNjI0MWFjNGM2NjI1NTgxYjVkYjliMjRhMWVlMDVmNjgtMS5qcGciLCJzbGlkZXNob3ciOiJjZDlkYmE5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363746762_6241ac4c6625581b5db9b24a1ee05f68-1.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363746762_6241ac4c6625581b5db9b24a1ee05f68-1.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3NDE0MDlfZDcyMTI0ZDkwOTEyODBmNjUyOWEyN2E5MTliZTEzYzkuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363741409_d72124d9091280f6529a27a919be13c9.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363741409_d72124d9091280f6529a27a919be13c9.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure>ntt</div>ntt</div>ntttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6IjJmOWI3MTYiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiRFx1MWVlNW5nIGNcdTFlZTUiLCJ0ZXh0X2FsaWduIjoibGVmdCJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]tt<div class=\"elementor-element elementor-element-a165f68 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\" data-id=\"a165f68\" data-element_type=\"widget\" data-widget_type=\"image-gallery.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-image-gallery\">nttt<div id=\'gallery-4\' class=\'gallery galleryid-2998 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwMTgzMzRfMTdjNWZhYzk2ZmIyODQzZDc0YTc2Y2M3OWY5YjRmNWMuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\'><img width=\"150\" height=\"135\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwMzczNTNfZGI4NzczMmIzZWE5ZDkzNTM2YmNkM2FlYzY0ODM1YTcuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNTkxNjJfMDUzYjM2NGFiNzYxZGM1YTQ0Mjc5ZmFmNjQzOTUzMjQuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\'><img width=\"70\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNzgzNzJfNTBhYmNlNTI0OWM4YWNkY2ZiZGY4YTA2MzQ4OWUxODYuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNzg1NzBfMGFiNThiNDZiZjY4M2RmNmVjZGIyYzJkODc5NDViYTYuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\'><img width=\"150\" height=\"129\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk2ODQ5NDkwODZfYjI5ZmRiNTAxMTRhMTk2Y2MzZmRjYzllMTJjYWYxMDUuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\'><img width=\"150\" height=\"128\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk2ODQ5NDY2NDFfMTUwMGZiZTE2ZmVjM2ExNGVhZGI4ZTRhZWQxY2Y2M2YuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure>ntt</div>ntt</div>ntttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImJjZDA3NGMiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiUGhcdTFlZTUgdFx1MDBmOW5nIHhlIG1cdTAwZTF5IiwidGV4dF9hbGlnbiI6ImxlZnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-7eb3b87 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\" data-id=\"7eb3b87\" data-element_type=\"widget\" data-widget_type=\"image-gallery.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-image-gallery\">nttt<div id=\'gallery-5\' class=\'gallery galleryid-2998 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTEzMDA5NzlfMDA1MjcxNmI0NjI4NDNhNWQxOTY4Zjc4NzBjNzJmZDguanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028111300979_0052716b462843a5d1968f7870c72fd8.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028111300979_0052716b462843a5d1968f7870c72fd8.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTIwMDAwMDBfMjQ0MGQ1YWUzNmY3MDA4NDBkMGYwYjU4M2JiY2JkZmEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028112000000_2440d5ae36f700840d0f0b583bbcbdfa.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028112000000_2440d5ae36f700840d0f0b583bbcbdfa.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTI2NzAwMjRfMTgwNmFmZDdkNzBiYmJjNTIzZDYzYjBjNjFlOTEzMGIuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028112670024_1806afd7d70bbbc523d63b0c61e9130b.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028112670024_1806afd7d70bbbc523d63b0c61e9130b.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTMyODc5MTJfZTFhYThiZGI5ZmU3MmIxZmUyMjg4N2NlYWFmYzBkYmQuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028113287912_e1aa8bdb9fe72b1fe22887ceaafc0dbd.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028113287912_e1aa8bdb9fe72b1fe22887ceaafc0dbd.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTM4OTQ3MDRfMzUwNGU0YmYwOTNhZDlmOWQ2MzVjOGJmYTJhYWFlZjYuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028113894704_3504e4bf093ad9f9d635c8bfa2aaaef6.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028113894704_3504e4bf093ad9f9d635c8bfa2aaaef6.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTQ3Njc3MzlfZDAxNGIxMGRhNTA4OGJjN2QzNjc1YTZkMDBlNzdkMzMuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028114767739_d014b10da5088bc7d3675a6d00e77d33.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028114767739_d014b10da5088bc7d3675a6d00e77d33.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE0MzQ1NjFfNmQyY2I3NWVkYmE4MjgzMmUwY2JkOTA2NzM4NTdiZDMuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321434561_6d2cb75edba82832e0cbd90673857bd3.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321434561_6d2cb75edba82832e0cbd90673857bd3.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE0NDgwODhfNmU2OTQ0YzNjZWIzMzU4OTdlMmI0ZjRhZDIwOTc1YjcuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321448088_6e6944c3ceb335897e2b4f4ad20975b7.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321448088_6e6944c3ceb335897e2b4f4ad20975b7.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE1NDg1NTdfMWE1ZTY5YTg5Y2EzNzk1M2UwYzA0Yzg4ZTUyOWQ5NTEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321548557_1a5e69a89ca37953e0c04c88e529d951.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321548557_1a5e69a89ca37953e0c04c88e529d951.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMDk2MzA3MDRfMjlhODJkZjk3ZWE0ZWE3YzM3ODU5Zjk2NjcxNTRkYTEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028109630704_29a82df97ea4ea7c37859f9667154da1.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028109630704_29a82df97ea4ea7c37859f9667154da1.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMDk2NzU5ODRfNTExYmI1ODY5MGE3M2FiOWNjMWFkY2QxNDZjYTQ2ZjIuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028109675984_511bb58690a73ab9cc1adcd146ca46f2.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028109675984_511bb58690a73ab9cc1adcd146ca46f2.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTA2MzE0MTVfOWJkMzc1NDUxYjIyNDI3NzZjM2ZhNDdhNWU5MWYzZTEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028110631415_9bd375451b2242776c3fa47a5e91f3e1.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028110631415_9bd375451b2242776c3fa47a5e91f3e1.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTExNjcxMDFfNjg1ZGUyZTUzOTViYmY4ZDk3ZTRkMmY4YWE4N2ZlZTMuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028111167101_685de2e5395bbf8d97e4d2f8aa87fee3.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028111167101_685de2e5395bbf8d97e4d2f8aa87fee3.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure>ntt</div>ntt</div>ntttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6IjFlZjg0OTEiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiS2h1XHUwMGY0biBqaWciLCJ0ZXh0X2FsaWduIjoibGVmdCJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]tt<div class=\"elementor-element elementor-element-09a76d6 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\" data-id=\"09a76d6\" data-element_type=\"widget\" data-widget_type=\"image-gallery.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-image-gallery\">nttt<div id=\'gallery-6\' class=\'gallery galleryid-2998 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NDY1OTEzMzg2ODdfZmE1MTRlMTY0ZjJlZTk5NjFjZmVlY2U5YjJhMjk2MmUuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTE0ODI0OTc5ODFfNGZlOGQ1MmM3N2ZiOTcwYWNjYWNhOTkzMTFiM2U1YjguanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNTQzNzc3MTM5OTRfNzMxZjNhYzFmN2YzMjMyNjExMWE0MWY2N2Q0YTJlMzMuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE2NTM3NjdfNzk3Y2FkYTk3Yjk4NjQyZTYyYzkxODU3YzYwYjViNDQuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NDY1OTEzNDkxOTRfZDUwMTBkMTcwMGM3Y2ViNDkxYjk3OGIwMWJlM2RkMjguanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure>ntt</div>ntt</div>ntttt</div>ntttt</div>nttttt</div>ntttt</div>ntt\",\"scripts\":[],\"styles\":[\"widget-image-gallery\"]}}'),(10767,3282,'_elementor_css','a:6:{s:4:\"time\";i:1742181608;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:\"\";}'),(10768,2998,'_elementor_css','a:6:{s:4:\"time\";i:1742181612;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:\"\";}'),(10770,3003,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:20:\"widget-image-gallery\";}}'),(10772,3283,'_elementor_edit_mode','builder'),(10773,3283,'_elementor_template_type','wp-page'),(10774,3283,'_elementor_version','3.24.7'),(10775,3283,'_wp_page_template','default'),(10776,3283,'_elementor_data','[{\"id\":\"fcff723\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"dee41b0\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"\\u79c1\\u305f\\u3061\\u306e\\u5f37\\u307f\\u306f\\u3001\\u30a2\\u30eb\\u30df\\u30cb\\u30a6\\u30e0\\u3068\\u92fc\\u306e\\u5927\\u91cf\\u751f\\u7523\\u306b\\u3042\\u308a\\u307e\\u3059\\u3002\\u79c1\\u305f\\u3061\\u306f\\u9769\\u65b0\\u306b\\u512a\\u308c\\u3001\\u9867\\u5ba2\\u306b\\u9ad8\\u4ed8\\u52a0\\u4fa1\\u5024\\u306e\\u88fd\\u54c1\\u3092\\u63d0\\u4f9b\\u3057\\u307e\\u3059\\u3002\",\"title_tag\":\"h5\",\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"373dfc0\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"\\u6eb6\\u63a5\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"5603a87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2678,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074649965196_82fd76ddbbf38d64dae8af11b21537b9.jpg\"},{\"id\":2667,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074652723212_8770f028ff646f014f1e9f6efe34962e.jpg\"},{\"id\":2672,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074640939718_b0ff6acad14b2ab5ed158171c76833f9.jpg\"},{\"id\":2677,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074641293113_b4b186c67b6e7829dd2a91d730cf9aa7.jpg\"},{\"id\":2668,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074642763587_21ecce5d4accf371358eb4cbd73c800d.jpg\"},{\"id\":2669,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074642849848_10b5670512096e654748e57b24a04afe.jpg\"},{\"id\":2670,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074640758883_648a042f4b640d0f57a4441dd2109570.jpg\"},{\"id\":2671,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074640849237_e7699b1bc6e38e0bf65eb3bca28ae8ca.jpg\"},{\"id\":2673,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074641052070_9efbc1586cb5e95cc54b8421a63f380e.jpg\"},{\"id\":2674,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074641145273_7be5df3e1779aa04e890e40cc243cdee.jpg\"},{\"id\":2675,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074640653285_5a87adf57ce0c4186fe4fb1579e357b5.jpg\"},{\"id\":2676,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074641173826_45ae737f70dfb2d365abb397f139d708.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"dec4325\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"\\u91d1\\u578b\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1852cc9\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2679,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736575578_e0a4f5473843e58ee1a79989f367ada9.jpg\"},{\"id\":2680,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\"},{\"id\":2681,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735219679_91a6f6993146906f8465b43ddd0c2b3c.jpg\"},{\"id\":2682,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736761454_b98d468b133ac59ebbf5e62b693462a4.jpg\"},{\"id\":2683,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736784335_f93bc7820cfdc0b015c8224b9a1ace10.jpg\"},{\"id\":2684,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069219941349_b0954e44a25a7d1543eb33ceeae20efb.jpg\"},{\"id\":2685,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735343201_d2922aa1680c57bfe2da9aaba121caa6.jpg\"},{\"id\":2686,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735441885_088dd417b659783376adfeb006d18180.jpg\"},{\"id\":2687,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735598101_0fdd0a773a22d6af92f694d7866b2a5a.jpg\"},{\"id\":2688,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735634632_da3df11cc1dfa978c5b70f2e44404712.jpg\"},{\"id\":2689,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735693987_bf7347f533ec750a2c4f9df1763b8881.jpg\"},{\"id\":2690,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735835496_a71ac50ddac36867fca21cee8c47fe0a.jpg\"},{\"id\":2691,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\"},{\"id\":2692,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\"},{\"id\":2693,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\"},{\"id\":2694,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\"},{\"id\":2695,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736324472_06f1ed1a1be2c3a5923070aff7d5e10e.jpg\"},{\"id\":2696,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736391051_4c3cae16a8ff4f216b8d53673772dd07.jpg\"},{\"id\":2697,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"ab81cda\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"\\u6a5f\\u68b0\\u306e\\u8a73\\u7d30\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"cd9dba9\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2698,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069219949175_e2a105bcf223c832d6caab2d03fe0413.jpg\"},{\"id\":2699,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799313165266_a15253e3a3e0a2c978ed667994b8f415.jpg\"},{\"id\":2700,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321604115_493f8355869dd3ca82a96e86e2982bfe.jpg\"},{\"id\":2701,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321696024_733a85bf835aea0a8afc8b269d149700.jpg\"},{\"id\":2702,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799313179567_c3d6675a03762fb94376dc96f05389bd.jpg\"},{\"id\":2703,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799313273454_ad716befaf43d2df147629d95262c520.jpg\"},{\"id\":2704,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363716249_96b2fea5fe33f4a24d8251c8aaf225e1.jpg\"},{\"id\":2705,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363723771_9eec4d51fc1723fb669f980084e20a61.jpg\"},{\"id\":2706,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363723892_5b7200026202a1efe96596109fad6857.jpg\"},{\"id\":2707,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363735361_9355fa7eb991123dc995dfaa2b4cf754.jpg\"},{\"id\":2708,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363746762_6241ac4c6625581b5db9b24a1ee05f68-1.jpg\"},{\"id\":2709,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363741409_d72124d9091280f6529a27a919be13c9.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"2f9b716\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"\\u5de5\\u5177\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a165f68\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2710,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\"},{\"id\":2711,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\"},{\"id\":2712,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\"},{\"id\":2713,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\"},{\"id\":2714,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\"},{\"id\":2715,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\"},{\"id\":2716,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"bcd074c\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"\\u30aa\\u30fc\\u30c8\\u30d0\\u30a4\\u306e\\u90e8\\u54c1\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7eb3b87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2717,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028111300979_0052716b462843a5d1968f7870c72fd8.jpg\"},{\"id\":2718,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028112000000_2440d5ae36f700840d0f0b583bbcbdfa.jpg\"},{\"id\":2719,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028112670024_1806afd7d70bbbc523d63b0c61e9130b.jpg\"},{\"id\":2720,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028113287912_e1aa8bdb9fe72b1fe22887ceaafc0dbd.jpg\"},{\"id\":2721,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028113894704_3504e4bf093ad9f9d635c8bfa2aaaef6.jpg\"},{\"id\":2722,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028114767739_d014b10da5088bc7d3675a6d00e77d33.jpg\"},{\"id\":2723,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321434561_6d2cb75edba82832e0cbd90673857bd3.jpg\"},{\"id\":2724,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321448088_6e6944c3ceb335897e2b4f4ad20975b7.jpg\"},{\"id\":2725,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321548557_1a5e69a89ca37953e0c04c88e529d951.jpg\"},{\"id\":2726,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028109630704_29a82df97ea4ea7c37859f9667154da1.jpg\"},{\"id\":2727,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028109675984_511bb58690a73ab9cc1adcd146ca46f2.jpg\"},{\"id\":2728,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028110631415_9bd375451b2242776c3fa47a5e91f3e1.jpg\"},{\"id\":2729,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028111167101_685de2e5395bbf8d97e4d2f8aa87fee3.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"1ef8491\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"\\u6cbb\\u5177\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"09a76d6\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2730,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\"},{\"id\":2731,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\"},{\"id\":2732,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\"},{\"id\":2733,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\"},{\"id\":2734,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}]'),(10777,3283,'_elementor_css','a:6:{s:4:\"time\";i:1742181616;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:\"\";}'),(10778,3283,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:20:\"widget-image-gallery\";}}'),(10779,3283,'_elementor_element_cache','{\"timeout\":1742268016,\"value\":{\"content\":\"<div class=\"elementor-element elementor-element-fcff723 e-flex e-con-boxed e-con e-parent\" data-id=\"fcff723\" data-element_type=\"container\">nttttt<div class=\"e-con-inner\">ntt[elementor-element data=\"eyJpZCI6ImRlZTQxYjAiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlIjoiXHU3OWMxXHUzMDVmXHUzMDYxXHUzMDZlXHU1ZjM3XHUzMDdmXHUzMDZmXHUzMDAxXHUzMGEyXHUzMGViXHUzMGRmXHUzMGNiXHUzMGE2XHUzMGUwXHUzMDY4XHU5MmZjXHUzMDZlXHU1OTI3XHU5MWNmXHU3NTFmXHU3NTIzXHUzMDZiXHUzMDQyXHUzMDhhXHUzMDdlXHUzMDU5XHUzMDAyXHU3OWMxXHUzMDVmXHUzMDYxXHUzMDZmXHU5NzY5XHU2NWIwXHUzMDZiXHU1MTJhXHUzMDhjXHUzMDAxXHU5ODY3XHU1YmEyXHUzMDZiXHU5YWQ4XHU0ZWQ4XHU1MmEwXHU0ZmExXHU1MDI0XHUzMDZlXHU4OGZkXHU1NGMxXHUzMDkyXHU2M2QwXHU0ZjliXHUzMDU3XHUzMDdlXHUzMDU5XHUzMDAyIiwidGl0bGVfdGFnIjoiaDUiLCJ0ZXh0X2FsaWduIjoiY2VudGVyIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"][elementor-element data=\"eyJpZCI6IjM3M2RmYzAiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiXHU2ZWI2XHU2M2E1IiwidGV4dF9hbGlnbiI6ImxlZnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-5603a87 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\" data-id=\"5603a87\" data-element_type=\"widget\" data-widget_type=\"image-gallery.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-image-gallery\">nttt<div id=\'gallery-1\' class=\'gallery galleryid-3003 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDk5NjUxOTZfODJmZDc2ZGRiYmYzOGQ2NGRhZThhZjExYjIxNTM3YjkuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074649965196_82fd76ddbbf38d64dae8af11b21537b9.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074649965196_82fd76ddbbf38d64dae8af11b21537b9.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY2NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NTI3MjMyMTJfODc3MGYwMjhmZjY0NmYwMTRmMWU5ZjZlZmUzNDk2MmUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074652723212_8770f028ff646f014f1e9f6efe34962e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074652723212_8770f028ff646f014f1e9f6efe34962e.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA5Mzk3MThfYjBmZjZhY2FkMTRiMmFiNWVkMTU4MTcxYzc2ODMzZjkuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640939718_b0ff6acad14b2ab5ed158171c76833f9.jpg\'><img width=\"84\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640939718_b0ff6acad14b2ab5ed158171c76833f9.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDEyOTMxMTNfYjRiMTg2YzY3YjZlNzgyOWRkMmE5MWQ3MzBjZjlhYTcuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641293113_b4b186c67b6e7829dd2a91d730cf9aa7.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641293113_b4b186c67b6e7829dd2a91d730cf9aa7.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY2OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDI3NjM1ODdfMjFlY2NlNWQ0YWNjZjM3MTM1OGViNGNiZDczYzgwMGQuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074642763587_21ecce5d4accf371358eb4cbd73c800d.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074642763587_21ecce5d4accf371358eb4cbd73c800d.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY2OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDI4NDk4NDhfMTBiNTY3MDUxMjA5NmU2NTQ3NDhlNTdiMjRhMDRhZmUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074642849848_10b5670512096e654748e57b24a04afe.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074642849848_10b5670512096e654748e57b24a04afe.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA3NTg4ODNfNjQ4YTA0MmY0YjY0MGQwZjU3YTQ0NDFkZDIxMDk1NzAuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640758883_648a042f4b640d0f57a4441dd2109570.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640758883_648a042f4b640d0f57a4441dd2109570.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA4NDkyMzdfZTc2OTliMWJjNmUzOGUwYmY2NWViM2JjYTI4YWU4Y2EuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640849237_e7699b1bc6e38e0bf65eb3bca28ae8ca.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640849237_e7699b1bc6e38e0bf65eb3bca28ae8ca.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDEwNTIwNzBfOWVmYmMxNTg2Y2I1ZTk1Y2M1NGI4NDIxYTYzZjM4MGUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641052070_9efbc1586cb5e95cc54b8421a63f380e.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641052070_9efbc1586cb5e95cc54b8421a63f380e.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDExNDUyNzNfN2JlNWRmM2UxNzc5YWEwNGU4OTBlNDBjYzI0M2NkZWUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641145273_7be5df3e1779aa04e890e40cc243cdee.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641145273_7be5df3e1779aa04e890e40cc243cdee.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA2NTMyODVfNWE4N2FkZjU3Y2UwYzQxODZmZTRmYjE1NzllMzU3YjUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640653285_5a87adf57ce0c4186fe4fb1579e357b5.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640653285_5a87adf57ce0c4186fe4fb1579e357b5.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDExNzM4MjZfNDVhZTczN2Y3MGRmYjJkMzY1YWJiMzk3ZjEzOWQ3MDguanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641173826_45ae737f70dfb2d365abb397f139d708.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641173826_45ae737f70dfb2d365abb397f139d708.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure>ntt</div>ntt</div>ntttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImRlYzQzMjUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiXHU5MWQxXHU1NzhiIiwidGV4dF9hbGlnbiI6ImxlZnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-1852cc9 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\" data-id=\"1852cc9\" data-element_type=\"widget\" data-widget_type=\"image-gallery.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-image-gallery\">nttt<div id=\'gallery-2\' class=\'gallery galleryid-3003 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY1NzU1NzhfZTBhNGY1NDczODQzZTU4ZWUxYTc5OTg5ZjM2N2FkYTkuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736575578_e0a4f5473843e58ee1a79989f367ada9.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736575578_e0a4f5473843e58ee1a79989f367ada9.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY3MjE1ODZfMTZiOTE5ODQyMGIzOTlmOWQ4MmMwNThkOTA4MmEzZTAuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUyMTk2NzlfOTFhNmY2OTkzMTQ2OTA2Zjg0NjViNDNkZGQwYzJiM2MuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735219679_91a6f6993146906f8465b43ddd0c2b3c.jpg\'><img width=\"68\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735219679_91a6f6993146906f8465b43ddd0c2b3c.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY3NjE0NTRfYjk4ZDQ2OGIxMzNhYzU5ZWJiZjVlNjJiNjkzNDYyYTQuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736761454_b98d468b133ac59ebbf5e62b693462a4.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736761454_b98d468b133ac59ebbf5e62b693462a4.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY3ODQzMzVfZjkzYmM3ODIwY2ZkYzBiMDE1YzgyMjRiOWExYWNlMTAuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736784335_f93bc7820cfdc0b015c8224b9a1ace10.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736784335_f93bc7820cfdc0b015c8224b9a1ace10.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjkyMTk5NDEzNDlfYjA5NTRlNDRhMjVhN2QxNTQzZWIzM2NlZWFlMjBlZmIuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069219941349_b0954e44a25a7d1543eb33ceeae20efb.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069219941349_b0954e44a25a7d1543eb33ceeae20efb.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUzNDMyMDFfZDI5MjJhYTE2ODBjNTdiZmUyZGE5YWFiYTEyMWNhYTYuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735343201_d2922aa1680c57bfe2da9aaba121caa6.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735343201_d2922aa1680c57bfe2da9aaba121caa6.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU0NDE4ODVfMDg4ZGQ0MTdiNjU5NzgzMzc2YWRmZWIwMDZkMTgxODAuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735441885_088dd417b659783376adfeb006d18180.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735441885_088dd417b659783376adfeb006d18180.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU1OTgxMDFfMGZkZDBhNzczYTIyZDZhZjkyZjY5NGQ3ODY2YjJhNWEuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735598101_0fdd0a773a22d6af92f694d7866b2a5a.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735598101_0fdd0a773a22d6af92f694d7866b2a5a.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU2MzQ2MzJfZGEzZGYxMWNjMWRmYTk3OGM1YjcwZjJlNDQ0MDQ3MTIuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735634632_da3df11cc1dfa978c5b70f2e44404712.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735634632_da3df11cc1dfa978c5b70f2e44404712.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU2OTM5ODdfYmY3MzQ3ZjUzM2VjNzUwYTJjNGY5ZGYxNzYzYjg4ODEuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735693987_bf7347f533ec750a2c4f9df1763b8881.jpg\'><img width=\"84\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735693987_bf7347f533ec750a2c4f9df1763b8881.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU4MzU0OTZfYTcxYWM1MGRkYWMzNjg2N2ZjYTIxY2VlOGM0N2ZlMGEuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735835496_a71ac50ddac36867fca21cee8c47fe0a.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735835496_a71ac50ddac36867fca21cee8c47fe0a.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU4OTM2OTJfNDhmNGE5ZjdjN2E5ZDA1ZGMwMzdhODBhYzFlNTc4MmIuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYwMDk1MTRfYWQ5MDg4N2YyNWQ3MzRlYzJkMjFkOGE2YTYzNGZmMmQuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYxMTA0MjZfYzNlY2UzZWM1NmY5ZThjYzBlNWM5YTk4Zjk3OTJiZmMuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYxNjUzNzJfODI1NjkzMjRkZTFjOGZjYzM3NmNjMGU3MzdjMDUyMGUuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYzMjQ0NzJfMDZmMWVkMWExYmUyYzNhNTkyMzA3MGFmZjdkNWUxMGUuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736324472_06f1ed1a1be2c3a5923070aff7d5e10e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736324472_06f1ed1a1be2c3a5923070aff7d5e10e.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYzOTEwNTFfNGMzY2FlMTZhOGZmNGYyMTZiOGQ1MzY3Mzc3MmRkMDcuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736391051_4c3cae16a8ff4f216b8d53673772dd07.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736391051_4c3cae16a8ff4f216b8d53673772dd07.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY0NTU3NzVfOTdhOTM3ODA3YzgwN2JmNzEzNjk0MTlhMGE1ZDNkMmMuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\'><img width=\"68\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure>ntt</div>ntt</div>ntttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImFiODFjZGEiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiXHU2YTVmXHU2OGIwXHUzMDZlXHU4YTczXHU3ZDMwIiwidGV4dF9hbGlnbiI6ImxlZnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-cd9dba9 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\" data-id=\"cd9dba9\" data-element_type=\"widget\" data-widget_type=\"image-gallery.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-image-gallery\">nttt<div id=\'gallery-3\' class=\'gallery galleryid-3003 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjkyMTk5NDkxNzVfZTJhMTA1YmNmMjIzYzgzMmQ2Y2FhYjJkMDNmZTA0MTMuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069219949175_e2a105bcf223c832d6caab2d03fe0413.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069219949175_e2a105bcf223c832d6caab2d03fe0413.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMTMxNjUyNjZfYTE1MjUzZTNhM2UwYTJjOTc4ZWQ2Njc5OTRiOGY0MTUuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799313165266_a15253e3a3e0a2c978ed667994b8f415.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799313165266_a15253e3a3e0a2c978ed667994b8f415.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE2MDQxMTVfNDkzZjgzNTU4NjlkZDNjYTgyYTk2ZTg2ZTI5ODJiZmUuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321604115_493f8355869dd3ca82a96e86e2982bfe.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321604115_493f8355869dd3ca82a96e86e2982bfe.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE2OTYwMjRfNzMzYTg1YmY4MzVhZWEwYThhZmM4YjI2OWQxNDk3MDAuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321696024_733a85bf835aea0a8afc8b269d149700.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321696024_733a85bf835aea0a8afc8b269d149700.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMTMxNzk1NjdfYzNkNjY3NWEwMzc2MmZiOTQzNzZkYzk2ZjA1Mzg5YmQuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799313179567_c3d6675a03762fb94376dc96f05389bd.jpg\'><img width=\"150\" height=\"86\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799313179567_c3d6675a03762fb94376dc96f05389bd.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMTMyNzM0NTRfYWQ3MTZiZWZhZjQzZDJkZjE0NzYyOWQ5NTI2MmM1MjAuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799313273454_ad716befaf43d2df147629d95262c520.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799313273454_ad716befaf43d2df147629d95262c520.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MTYyNDlfOTZiMmZlYTVmZTMzZjRhMjRkODI1MWM4YWFmMjI1ZTEuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363716249_96b2fea5fe33f4a24d8251c8aaf225e1.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363716249_96b2fea5fe33f4a24d8251c8aaf225e1.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MjM3NzFfOWVlYzRkNTFmYzE3MjNmYjY2OWY5ODAwODRlMjBhNjEuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363723771_9eec4d51fc1723fb669f980084e20a61.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363723771_9eec4d51fc1723fb669f980084e20a61.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MjM4OTJfNWI3MjAwMDI2MjAyYTFlZmU5NjU5NjEwOWZhZDY4NTcuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363723892_5b7200026202a1efe96596109fad6857.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363723892_5b7200026202a1efe96596109fad6857.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MzUzNjFfOTM1NWZhN2ViOTkxMTIzZGM5OTVkZmFhMmI0Y2Y3NTQuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363735361_9355fa7eb991123dc995dfaa2b4cf754.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363735361_9355fa7eb991123dc995dfaa2b4cf754.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3NDY3NjJfNjI0MWFjNGM2NjI1NTgxYjVkYjliMjRhMWVlMDVmNjgtMS5qcGciLCJzbGlkZXNob3ciOiJjZDlkYmE5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363746762_6241ac4c6625581b5db9b24a1ee05f68-1.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363746762_6241ac4c6625581b5db9b24a1ee05f68-1.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3NDE0MDlfZDcyMTI0ZDkwOTEyODBmNjUyOWEyN2E5MTliZTEzYzkuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363741409_d72124d9091280f6529a27a919be13c9.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363741409_d72124d9091280f6529a27a919be13c9.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure>ntt</div>ntt</div>ntttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6IjJmOWI3MTYiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiXHU1ZGU1XHU1MTc3IiwidGV4dF9hbGlnbiI6ImxlZnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-a165f68 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\" data-id=\"a165f68\" data-element_type=\"widget\" data-widget_type=\"image-gallery.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-image-gallery\">nttt<div id=\'gallery-4\' class=\'gallery galleryid-3003 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwMTgzMzRfMTdjNWZhYzk2ZmIyODQzZDc0YTc2Y2M3OWY5YjRmNWMuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\'><img width=\"150\" height=\"135\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwMzczNTNfZGI4NzczMmIzZWE5ZDkzNTM2YmNkM2FlYzY0ODM1YTcuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNTkxNjJfMDUzYjM2NGFiNzYxZGM1YTQ0Mjc5ZmFmNjQzOTUzMjQuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\'><img width=\"70\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNzgzNzJfNTBhYmNlNTI0OWM4YWNkY2ZiZGY4YTA2MzQ4OWUxODYuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNzg1NzBfMGFiNThiNDZiZjY4M2RmNmVjZGIyYzJkODc5NDViYTYuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\'><img width=\"150\" height=\"129\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk2ODQ5NDkwODZfYjI5ZmRiNTAxMTRhMTk2Y2MzZmRjYzllMTJjYWYxMDUuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\'><img width=\"150\" height=\"128\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk2ODQ5NDY2NDFfMTUwMGZiZTE2ZmVjM2ExNGVhZGI4ZTRhZWQxY2Y2M2YuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure>ntt</div>ntt</div>ntttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImJjZDA3NGMiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiXHUzMGFhXHUzMGZjXHUzMGM4XHUzMGQwXHUzMGE0XHUzMDZlXHU5MGU4XHU1NGMxIiwidGV4dF9hbGlnbiI6ImxlZnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-7eb3b87 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\" data-id=\"7eb3b87\" data-element_type=\"widget\" data-widget_type=\"image-gallery.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-image-gallery\">nttt<div id=\'gallery-5\' class=\'gallery galleryid-3003 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTEzMDA5NzlfMDA1MjcxNmI0NjI4NDNhNWQxOTY4Zjc4NzBjNzJmZDguanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028111300979_0052716b462843a5d1968f7870c72fd8.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028111300979_0052716b462843a5d1968f7870c72fd8.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTIwMDAwMDBfMjQ0MGQ1YWUzNmY3MDA4NDBkMGYwYjU4M2JiY2JkZmEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028112000000_2440d5ae36f700840d0f0b583bbcbdfa.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028112000000_2440d5ae36f700840d0f0b583bbcbdfa.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTI2NzAwMjRfMTgwNmFmZDdkNzBiYmJjNTIzZDYzYjBjNjFlOTEzMGIuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028112670024_1806afd7d70bbbc523d63b0c61e9130b.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028112670024_1806afd7d70bbbc523d63b0c61e9130b.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTMyODc5MTJfZTFhYThiZGI5ZmU3MmIxZmUyMjg4N2NlYWFmYzBkYmQuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028113287912_e1aa8bdb9fe72b1fe22887ceaafc0dbd.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028113287912_e1aa8bdb9fe72b1fe22887ceaafc0dbd.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTM4OTQ3MDRfMzUwNGU0YmYwOTNhZDlmOWQ2MzVjOGJmYTJhYWFlZjYuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028113894704_3504e4bf093ad9f9d635c8bfa2aaaef6.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028113894704_3504e4bf093ad9f9d635c8bfa2aaaef6.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTQ3Njc3MzlfZDAxNGIxMGRhNTA4OGJjN2QzNjc1YTZkMDBlNzdkMzMuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028114767739_d014b10da5088bc7d3675a6d00e77d33.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028114767739_d014b10da5088bc7d3675a6d00e77d33.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE0MzQ1NjFfNmQyY2I3NWVkYmE4MjgzMmUwY2JkOTA2NzM4NTdiZDMuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321434561_6d2cb75edba82832e0cbd90673857bd3.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321434561_6d2cb75edba82832e0cbd90673857bd3.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE0NDgwODhfNmU2OTQ0YzNjZWIzMzU4OTdlMmI0ZjRhZDIwOTc1YjcuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321448088_6e6944c3ceb335897e2b4f4ad20975b7.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321448088_6e6944c3ceb335897e2b4f4ad20975b7.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE1NDg1NTdfMWE1ZTY5YTg5Y2EzNzk1M2UwYzA0Yzg4ZTUyOWQ5NTEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321548557_1a5e69a89ca37953e0c04c88e529d951.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321548557_1a5e69a89ca37953e0c04c88e529d951.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMDk2MzA3MDRfMjlhODJkZjk3ZWE0ZWE3YzM3ODU5Zjk2NjcxNTRkYTEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028109630704_29a82df97ea4ea7c37859f9667154da1.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028109630704_29a82df97ea4ea7c37859f9667154da1.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMDk2NzU5ODRfNTExYmI1ODY5MGE3M2FiOWNjMWFkY2QxNDZjYTQ2ZjIuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028109675984_511bb58690a73ab9cc1adcd146ca46f2.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028109675984_511bb58690a73ab9cc1adcd146ca46f2.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTA2MzE0MTVfOWJkMzc1NDUxYjIyNDI3NzZjM2ZhNDdhNWU5MWYzZTEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028110631415_9bd375451b2242776c3fa47a5e91f3e1.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028110631415_9bd375451b2242776c3fa47a5e91f3e1.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTExNjcxMDFfNjg1ZGUyZTUzOTViYmY4ZDk3ZTRkMmY4YWE4N2ZlZTMuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028111167101_685de2e5395bbf8d97e4d2f8aa87fee3.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028111167101_685de2e5395bbf8d97e4d2f8aa87fee3.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure>ntt</div>ntt</div>ntttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6IjFlZjg0OTEiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiXHU2Y2JiXHU1MTc3IiwidGV4dF9hbGlnbiI6ImxlZnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-09a76d6 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\" data-id=\"09a76d6\" data-element_type=\"widget\" data-widget_type=\"image-gallery.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-image-gallery\">nttt<div id=\'gallery-6\' class=\'gallery galleryid-3003 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NDY1OTEzMzg2ODdfZmE1MTRlMTY0ZjJlZTk5NjFjZmVlY2U5YjJhMjk2MmUuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTE0ODI0OTc5ODFfNGZlOGQ1MmM3N2ZiOTcwYWNjYWNhOTkzMTFiM2U1YjguanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNTQzNzc3MTM5OTRfNzMxZjNhYzFmN2YzMjMyNjExMWE0MWY2N2Q0YTJlMzMuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE2NTM3NjdfNzk3Y2FkYTk3Yjk4NjQyZTYyYzkxODU3YzYwYjViNDQuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NDY1OTEzNDkxOTRfZDUwMTBkMTcwMGM3Y2ViNDkxYjk3OGIwMWJlM2RkMjguanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure>ntt</div>ntt</div>ntttt</div>ntttt</div>nttttt</div>ntttt</div>ntt\",\"scripts\":[],\"styles\":[\"widget-image-gallery\"]}}'),(10780,3284,'_elementor_edit_mode','builder'),(10781,3284,'_elementor_template_type','wp-page'),(10782,3284,'_elementor_version','3.24.7'),(10783,3284,'_wp_page_template','default');
INSERT INTO `wp_postmeta` VALUES (10784,3284,'_elementor_data','[{\"id\":\"fcff723\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"dee41b0\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"\\u79c1\\u305f\\u3061\\u306e\\u5f37\\u307f\\u306f\\u3001\\u30a2\\u30eb\\u30df\\u30cb\\u30a6\\u30e0\\u3068\\u92fc\\u306e\\u5927\\u91cf\\u751f\\u7523\\u306b\\u3042\\u308a\\u307e\\u3059\\u3002\\u79c1\\u305f\\u3061\\u306f\\u9769\\u65b0\\u306b\\u512a\\u308c\\u3001\\u9867\\u5ba2\\u306b\\u9ad8\\u4ed8\\u52a0\\u4fa1\\u5024\\u306e\\u88fd\\u54c1\\u3092\\u63d0\\u4f9b\\u3057\\u307e\\u3059\\u3002\",\"title_tag\":\"h5\",\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"373dfc0\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"\\u6eb6\\u63a5\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"5603a87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2678,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074649965196_82fd76ddbbf38d64dae8af11b21537b9.jpg\"},{\"id\":2667,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074652723212_8770f028ff646f014f1e9f6efe34962e.jpg\"},{\"id\":2672,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074640939718_b0ff6acad14b2ab5ed158171c76833f9.jpg\"},{\"id\":2677,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074641293113_b4b186c67b6e7829dd2a91d730cf9aa7.jpg\"},{\"id\":2668,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074642763587_21ecce5d4accf371358eb4cbd73c800d.jpg\"},{\"id\":2669,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074642849848_10b5670512096e654748e57b24a04afe.jpg\"},{\"id\":2670,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074640758883_648a042f4b640d0f57a4441dd2109570.jpg\"},{\"id\":2671,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074640849237_e7699b1bc6e38e0bf65eb3bca28ae8ca.jpg\"},{\"id\":2673,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074641052070_9efbc1586cb5e95cc54b8421a63f380e.jpg\"},{\"id\":2674,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074641145273_7be5df3e1779aa04e890e40cc243cdee.jpg\"},{\"id\":2675,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074640653285_5a87adf57ce0c4186fe4fb1579e357b5.jpg\"},{\"id\":2676,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6074641173826_45ae737f70dfb2d365abb397f139d708.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"dec4325\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"\\u91d1\\u578b\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1852cc9\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2679,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736575578_e0a4f5473843e58ee1a79989f367ada9.jpg\"},{\"id\":2680,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\"},{\"id\":2681,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735219679_91a6f6993146906f8465b43ddd0c2b3c.jpg\"},{\"id\":2682,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736761454_b98d468b133ac59ebbf5e62b693462a4.jpg\"},{\"id\":2683,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736784335_f93bc7820cfdc0b015c8224b9a1ace10.jpg\"},{\"id\":2684,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069219941349_b0954e44a25a7d1543eb33ceeae20efb.jpg\"},{\"id\":2685,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735343201_d2922aa1680c57bfe2da9aaba121caa6.jpg\"},{\"id\":2686,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735441885_088dd417b659783376adfeb006d18180.jpg\"},{\"id\":2687,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735598101_0fdd0a773a22d6af92f694d7866b2a5a.jpg\"},{\"id\":2688,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735634632_da3df11cc1dfa978c5b70f2e44404712.jpg\"},{\"id\":2689,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735693987_bf7347f533ec750a2c4f9df1763b8881.jpg\"},{\"id\":2690,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735835496_a71ac50ddac36867fca21cee8c47fe0a.jpg\"},{\"id\":2691,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\"},{\"id\":2692,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\"},{\"id\":2693,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\"},{\"id\":2694,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\"},{\"id\":2695,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736324472_06f1ed1a1be2c3a5923070aff7d5e10e.jpg\"},{\"id\":2696,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736391051_4c3cae16a8ff4f216b8d53673772dd07.jpg\"},{\"id\":2697,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"ab81cda\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"\\u6a5f\\u68b0\\u306e\\u8a73\\u7d30\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"cd9dba9\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2698,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069219949175_e2a105bcf223c832d6caab2d03fe0413.jpg\"},{\"id\":2699,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799313165266_a15253e3a3e0a2c978ed667994b8f415.jpg\"},{\"id\":2700,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321604115_493f8355869dd3ca82a96e86e2982bfe.jpg\"},{\"id\":2701,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321696024_733a85bf835aea0a8afc8b269d149700.jpg\"},{\"id\":2702,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799313179567_c3d6675a03762fb94376dc96f05389bd.jpg\"},{\"id\":2703,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799313273454_ad716befaf43d2df147629d95262c520.jpg\"},{\"id\":2704,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363716249_96b2fea5fe33f4a24d8251c8aaf225e1.jpg\"},{\"id\":2705,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363723771_9eec4d51fc1723fb669f980084e20a61.jpg\"},{\"id\":2706,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363723892_5b7200026202a1efe96596109fad6857.jpg\"},{\"id\":2707,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363735361_9355fa7eb991123dc995dfaa2b4cf754.jpg\"},{\"id\":2708,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363746762_6241ac4c6625581b5db9b24a1ee05f68-1.jpg\"},{\"id\":2709,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363741409_d72124d9091280f6529a27a919be13c9.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"2f9b716\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"\\u5de5\\u5177\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a165f68\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2710,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\"},{\"id\":2711,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\"},{\"id\":2712,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\"},{\"id\":2713,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\"},{\"id\":2714,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\"},{\"id\":2715,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\"},{\"id\":2716,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"bcd074c\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"\\u30aa\\u30fc\\u30c8\\u30d0\\u30a4\\u306e\\u90e8\\u54c1\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7eb3b87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2717,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028111300979_0052716b462843a5d1968f7870c72fd8.jpg\"},{\"id\":2718,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028112000000_2440d5ae36f700840d0f0b583bbcbdfa.jpg\"},{\"id\":2719,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028112670024_1806afd7d70bbbc523d63b0c61e9130b.jpg\"},{\"id\":2720,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028113287912_e1aa8bdb9fe72b1fe22887ceaafc0dbd.jpg\"},{\"id\":2721,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028113894704_3504e4bf093ad9f9d635c8bfa2aaaef6.jpg\"},{\"id\":2722,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028114767739_d014b10da5088bc7d3675a6d00e77d33.jpg\"},{\"id\":2723,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321434561_6d2cb75edba82832e0cbd90673857bd3.jpg\"},{\"id\":2724,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321448088_6e6944c3ceb335897e2b4f4ad20975b7.jpg\"},{\"id\":2725,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321548557_1a5e69a89ca37953e0c04c88e529d951.jpg\"},{\"id\":2726,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028109630704_29a82df97ea4ea7c37859f9667154da1.jpg\"},{\"id\":2727,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028109675984_511bb58690a73ab9cc1adcd146ca46f2.jpg\"},{\"id\":2728,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028110631415_9bd375451b2242776c3fa47a5e91f3e1.jpg\"},{\"id\":2729,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6028111167101_685de2e5395bbf8d97e4d2f8aa87fee3.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"1ef8491\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"\\u6cbb\\u5177\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"09a76d6\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2730,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\"},{\"id\":2731,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\"},{\"id\":2732,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\"},{\"id\":2733,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\"},{\"id\":2734,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}]'),(10785,3284,'_elementor_css','a:6:{s:4:\"time\";i:1742181616;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:\"\";}'),(10786,3284,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:20:\"widget-image-gallery\";}}'),(10787,3284,'_elementor_element_cache','{\"timeout\":1742268016,\"value\":{\"content\":\"<div class=\"elementor-element elementor-element-fcff723 e-flex e-con-boxed e-con e-parent\" data-id=\"fcff723\" data-element_type=\"container\">nttttt<div class=\"e-con-inner\">ntt[elementor-element data=\"eyJpZCI6ImRlZTQxYjAiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlIjoiXHU3OWMxXHUzMDVmXHUzMDYxXHUzMDZlXHU1ZjM3XHUzMDdmXHUzMDZmXHUzMDAxXHUzMGEyXHUzMGViXHUzMGRmXHUzMGNiXHUzMGE2XHUzMGUwXHUzMDY4XHU5MmZjXHUzMDZlXHU1OTI3XHU5MWNmXHU3NTFmXHU3NTIzXHUzMDZiXHUzMDQyXHUzMDhhXHUzMDdlXHUzMDU5XHUzMDAyXHU3OWMxXHUzMDVmXHUzMDYxXHUzMDZmXHU5NzY5XHU2NWIwXHUzMDZiXHU1MTJhXHUzMDhjXHUzMDAxXHU5ODY3XHU1YmEyXHUzMDZiXHU5YWQ4XHU0ZWQ4XHU1MmEwXHU0ZmExXHU1MDI0XHUzMDZlXHU4OGZkXHU1NGMxXHUzMDkyXHU2M2QwXHU0ZjliXHUzMDU3XHUzMDdlXHUzMDU5XHUzMDAyIiwidGl0bGVfdGFnIjoiaDUiLCJ0ZXh0X2FsaWduIjoiY2VudGVyIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"][elementor-element data=\"eyJpZCI6IjM3M2RmYzAiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiXHU2ZWI2XHU2M2E1IiwidGV4dF9hbGlnbiI6ImxlZnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-5603a87 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\" data-id=\"5603a87\" data-element_type=\"widget\" data-widget_type=\"image-gallery.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-image-gallery\">nttt<div id=\'gallery-1\' class=\'gallery galleryid-3003 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDk5NjUxOTZfODJmZDc2ZGRiYmYzOGQ2NGRhZThhZjExYjIxNTM3YjkuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074649965196_82fd76ddbbf38d64dae8af11b21537b9.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074649965196_82fd76ddbbf38d64dae8af11b21537b9.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY2NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NTI3MjMyMTJfODc3MGYwMjhmZjY0NmYwMTRmMWU5ZjZlZmUzNDk2MmUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074652723212_8770f028ff646f014f1e9f6efe34962e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074652723212_8770f028ff646f014f1e9f6efe34962e.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA5Mzk3MThfYjBmZjZhY2FkMTRiMmFiNWVkMTU4MTcxYzc2ODMzZjkuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640939718_b0ff6acad14b2ab5ed158171c76833f9.jpg\'><img width=\"84\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640939718_b0ff6acad14b2ab5ed158171c76833f9.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDEyOTMxMTNfYjRiMTg2YzY3YjZlNzgyOWRkMmE5MWQ3MzBjZjlhYTcuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641293113_b4b186c67b6e7829dd2a91d730cf9aa7.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641293113_b4b186c67b6e7829dd2a91d730cf9aa7.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY2OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDI3NjM1ODdfMjFlY2NlNWQ0YWNjZjM3MTM1OGViNGNiZDczYzgwMGQuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074642763587_21ecce5d4accf371358eb4cbd73c800d.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074642763587_21ecce5d4accf371358eb4cbd73c800d.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY2OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDI4NDk4NDhfMTBiNTY3MDUxMjA5NmU2NTQ3NDhlNTdiMjRhMDRhZmUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074642849848_10b5670512096e654748e57b24a04afe.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074642849848_10b5670512096e654748e57b24a04afe.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA3NTg4ODNfNjQ4YTA0MmY0YjY0MGQwZjU3YTQ0NDFkZDIxMDk1NzAuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640758883_648a042f4b640d0f57a4441dd2109570.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640758883_648a042f4b640d0f57a4441dd2109570.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA4NDkyMzdfZTc2OTliMWJjNmUzOGUwYmY2NWViM2JjYTI4YWU4Y2EuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640849237_e7699b1bc6e38e0bf65eb3bca28ae8ca.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640849237_e7699b1bc6e38e0bf65eb3bca28ae8ca.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDEwNTIwNzBfOWVmYmMxNTg2Y2I1ZTk1Y2M1NGI4NDIxYTYzZjM4MGUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641052070_9efbc1586cb5e95cc54b8421a63f380e.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641052070_9efbc1586cb5e95cc54b8421a63f380e.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDExNDUyNzNfN2JlNWRmM2UxNzc5YWEwNGU4OTBlNDBjYzI0M2NkZWUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641145273_7be5df3e1779aa04e890e40cc243cdee.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641145273_7be5df3e1779aa04e890e40cc243cdee.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA2NTMyODVfNWE4N2FkZjU3Y2UwYzQxODZmZTRmYjE1NzllMzU3YjUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640653285_5a87adf57ce0c4186fe4fb1579e357b5.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640653285_5a87adf57ce0c4186fe4fb1579e357b5.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDExNzM4MjZfNDVhZTczN2Y3MGRmYjJkMzY1YWJiMzk3ZjEzOWQ3MDguanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641173826_45ae737f70dfb2d365abb397f139d708.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641173826_45ae737f70dfb2d365abb397f139d708.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure>ntt</div>ntt</div>ntttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImRlYzQzMjUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiXHU5MWQxXHU1NzhiIiwidGV4dF9hbGlnbiI6ImxlZnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-1852cc9 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\" data-id=\"1852cc9\" data-element_type=\"widget\" data-widget_type=\"image-gallery.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-image-gallery\">nttt<div id=\'gallery-2\' class=\'gallery galleryid-3003 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY1NzU1NzhfZTBhNGY1NDczODQzZTU4ZWUxYTc5OTg5ZjM2N2FkYTkuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736575578_e0a4f5473843e58ee1a79989f367ada9.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736575578_e0a4f5473843e58ee1a79989f367ada9.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY3MjE1ODZfMTZiOTE5ODQyMGIzOTlmOWQ4MmMwNThkOTA4MmEzZTAuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUyMTk2NzlfOTFhNmY2OTkzMTQ2OTA2Zjg0NjViNDNkZGQwYzJiM2MuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735219679_91a6f6993146906f8465b43ddd0c2b3c.jpg\'><img width=\"68\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735219679_91a6f6993146906f8465b43ddd0c2b3c.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY3NjE0NTRfYjk4ZDQ2OGIxMzNhYzU5ZWJiZjVlNjJiNjkzNDYyYTQuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736761454_b98d468b133ac59ebbf5e62b693462a4.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736761454_b98d468b133ac59ebbf5e62b693462a4.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY3ODQzMzVfZjkzYmM3ODIwY2ZkYzBiMDE1YzgyMjRiOWExYWNlMTAuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736784335_f93bc7820cfdc0b015c8224b9a1ace10.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736784335_f93bc7820cfdc0b015c8224b9a1ace10.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjkyMTk5NDEzNDlfYjA5NTRlNDRhMjVhN2QxNTQzZWIzM2NlZWFlMjBlZmIuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069219941349_b0954e44a25a7d1543eb33ceeae20efb.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069219941349_b0954e44a25a7d1543eb33ceeae20efb.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUzNDMyMDFfZDI5MjJhYTE2ODBjNTdiZmUyZGE5YWFiYTEyMWNhYTYuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735343201_d2922aa1680c57bfe2da9aaba121caa6.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735343201_d2922aa1680c57bfe2da9aaba121caa6.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU0NDE4ODVfMDg4ZGQ0MTdiNjU5NzgzMzc2YWRmZWIwMDZkMTgxODAuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735441885_088dd417b659783376adfeb006d18180.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735441885_088dd417b659783376adfeb006d18180.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU1OTgxMDFfMGZkZDBhNzczYTIyZDZhZjkyZjY5NGQ3ODY2YjJhNWEuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735598101_0fdd0a773a22d6af92f694d7866b2a5a.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735598101_0fdd0a773a22d6af92f694d7866b2a5a.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU2MzQ2MzJfZGEzZGYxMWNjMWRmYTk3OGM1YjcwZjJlNDQ0MDQ3MTIuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735634632_da3df11cc1dfa978c5b70f2e44404712.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735634632_da3df11cc1dfa978c5b70f2e44404712.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU2OTM5ODdfYmY3MzQ3ZjUzM2VjNzUwYTJjNGY5ZGYxNzYzYjg4ODEuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735693987_bf7347f533ec750a2c4f9df1763b8881.jpg\'><img width=\"84\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735693987_bf7347f533ec750a2c4f9df1763b8881.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU4MzU0OTZfYTcxYWM1MGRkYWMzNjg2N2ZjYTIxY2VlOGM0N2ZlMGEuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735835496_a71ac50ddac36867fca21cee8c47fe0a.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735835496_a71ac50ddac36867fca21cee8c47fe0a.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU4OTM2OTJfNDhmNGE5ZjdjN2E5ZDA1ZGMwMzdhODBhYzFlNTc4MmIuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYwMDk1MTRfYWQ5MDg4N2YyNWQ3MzRlYzJkMjFkOGE2YTYzNGZmMmQuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYxMTA0MjZfYzNlY2UzZWM1NmY5ZThjYzBlNWM5YTk4Zjk3OTJiZmMuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYxNjUzNzJfODI1NjkzMjRkZTFjOGZjYzM3NmNjMGU3MzdjMDUyMGUuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYzMjQ0NzJfMDZmMWVkMWExYmUyYzNhNTkyMzA3MGFmZjdkNWUxMGUuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736324472_06f1ed1a1be2c3a5923070aff7d5e10e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736324472_06f1ed1a1be2c3a5923070aff7d5e10e.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYzOTEwNTFfNGMzY2FlMTZhOGZmNGYyMTZiOGQ1MzY3Mzc3MmRkMDcuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736391051_4c3cae16a8ff4f216b8d53673772dd07.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736391051_4c3cae16a8ff4f216b8d53673772dd07.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY0NTU3NzVfOTdhOTM3ODA3YzgwN2JmNzEzNjk0MTlhMGE1ZDNkMmMuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\'><img width=\"68\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure>ntt</div>ntt</div>ntttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImFiODFjZGEiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiXHU2YTVmXHU2OGIwXHUzMDZlXHU4YTczXHU3ZDMwIiwidGV4dF9hbGlnbiI6ImxlZnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-cd9dba9 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\" data-id=\"cd9dba9\" data-element_type=\"widget\" data-widget_type=\"image-gallery.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-image-gallery\">nttt<div id=\'gallery-3\' class=\'gallery galleryid-3003 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjkyMTk5NDkxNzVfZTJhMTA1YmNmMjIzYzgzMmQ2Y2FhYjJkMDNmZTA0MTMuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069219949175_e2a105bcf223c832d6caab2d03fe0413.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069219949175_e2a105bcf223c832d6caab2d03fe0413.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMTMxNjUyNjZfYTE1MjUzZTNhM2UwYTJjOTc4ZWQ2Njc5OTRiOGY0MTUuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799313165266_a15253e3a3e0a2c978ed667994b8f415.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799313165266_a15253e3a3e0a2c978ed667994b8f415.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE2MDQxMTVfNDkzZjgzNTU4NjlkZDNjYTgyYTk2ZTg2ZTI5ODJiZmUuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321604115_493f8355869dd3ca82a96e86e2982bfe.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321604115_493f8355869dd3ca82a96e86e2982bfe.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE2OTYwMjRfNzMzYTg1YmY4MzVhZWEwYThhZmM4YjI2OWQxNDk3MDAuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321696024_733a85bf835aea0a8afc8b269d149700.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321696024_733a85bf835aea0a8afc8b269d149700.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMTMxNzk1NjdfYzNkNjY3NWEwMzc2MmZiOTQzNzZkYzk2ZjA1Mzg5YmQuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799313179567_c3d6675a03762fb94376dc96f05389bd.jpg\'><img width=\"150\" height=\"86\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799313179567_c3d6675a03762fb94376dc96f05389bd.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMTMyNzM0NTRfYWQ3MTZiZWZhZjQzZDJkZjE0NzYyOWQ5NTI2MmM1MjAuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799313273454_ad716befaf43d2df147629d95262c520.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799313273454_ad716befaf43d2df147629d95262c520.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MTYyNDlfOTZiMmZlYTVmZTMzZjRhMjRkODI1MWM4YWFmMjI1ZTEuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363716249_96b2fea5fe33f4a24d8251c8aaf225e1.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363716249_96b2fea5fe33f4a24d8251c8aaf225e1.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MjM3NzFfOWVlYzRkNTFmYzE3MjNmYjY2OWY5ODAwODRlMjBhNjEuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363723771_9eec4d51fc1723fb669f980084e20a61.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363723771_9eec4d51fc1723fb669f980084e20a61.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MjM4OTJfNWI3MjAwMDI2MjAyYTFlZmU5NjU5NjEwOWZhZDY4NTcuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363723892_5b7200026202a1efe96596109fad6857.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363723892_5b7200026202a1efe96596109fad6857.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MzUzNjFfOTM1NWZhN2ViOTkxMTIzZGM5OTVkZmFhMmI0Y2Y3NTQuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363735361_9355fa7eb991123dc995dfaa2b4cf754.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363735361_9355fa7eb991123dc995dfaa2b4cf754.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3NDY3NjJfNjI0MWFjNGM2NjI1NTgxYjVkYjliMjRhMWVlMDVmNjgtMS5qcGciLCJzbGlkZXNob3ciOiJjZDlkYmE5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363746762_6241ac4c6625581b5db9b24a1ee05f68-1.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363746762_6241ac4c6625581b5db9b24a1ee05f68-1.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3NDE0MDlfZDcyMTI0ZDkwOTEyODBmNjUyOWEyN2E5MTliZTEzYzkuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363741409_d72124d9091280f6529a27a919be13c9.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363741409_d72124d9091280f6529a27a919be13c9.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure>ntt</div>ntt</div>ntttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6IjJmOWI3MTYiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiXHU1ZGU1XHU1MTc3IiwidGV4dF9hbGlnbiI6ImxlZnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-a165f68 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\" data-id=\"a165f68\" data-element_type=\"widget\" data-widget_type=\"image-gallery.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-image-gallery\">nttt<div id=\'gallery-4\' class=\'gallery galleryid-3003 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwMTgzMzRfMTdjNWZhYzk2ZmIyODQzZDc0YTc2Y2M3OWY5YjRmNWMuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\'><img width=\"150\" height=\"135\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwMzczNTNfZGI4NzczMmIzZWE5ZDkzNTM2YmNkM2FlYzY0ODM1YTcuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNTkxNjJfMDUzYjM2NGFiNzYxZGM1YTQ0Mjc5ZmFmNjQzOTUzMjQuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\'><img width=\"70\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNzgzNzJfNTBhYmNlNTI0OWM4YWNkY2ZiZGY4YTA2MzQ4OWUxODYuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNzg1NzBfMGFiNThiNDZiZjY4M2RmNmVjZGIyYzJkODc5NDViYTYuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\'><img width=\"150\" height=\"129\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk2ODQ5NDkwODZfYjI5ZmRiNTAxMTRhMTk2Y2MzZmRjYzllMTJjYWYxMDUuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\'><img width=\"150\" height=\"128\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk2ODQ5NDY2NDFfMTUwMGZiZTE2ZmVjM2ExNGVhZGI4ZTRhZWQxY2Y2M2YuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure>ntt</div>ntt</div>ntttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImJjZDA3NGMiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiXHUzMGFhXHUzMGZjXHUzMGM4XHUzMGQwXHUzMGE0XHUzMDZlXHU5MGU4XHU1NGMxIiwidGV4dF9hbGlnbiI6ImxlZnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-7eb3b87 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\" data-id=\"7eb3b87\" data-element_type=\"widget\" data-widget_type=\"image-gallery.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-image-gallery\">nttt<div id=\'gallery-5\' class=\'gallery galleryid-3003 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTEzMDA5NzlfMDA1MjcxNmI0NjI4NDNhNWQxOTY4Zjc4NzBjNzJmZDguanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028111300979_0052716b462843a5d1968f7870c72fd8.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028111300979_0052716b462843a5d1968f7870c72fd8.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTIwMDAwMDBfMjQ0MGQ1YWUzNmY3MDA4NDBkMGYwYjU4M2JiY2JkZmEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028112000000_2440d5ae36f700840d0f0b583bbcbdfa.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028112000000_2440d5ae36f700840d0f0b583bbcbdfa.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTI2NzAwMjRfMTgwNmFmZDdkNzBiYmJjNTIzZDYzYjBjNjFlOTEzMGIuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028112670024_1806afd7d70bbbc523d63b0c61e9130b.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028112670024_1806afd7d70bbbc523d63b0c61e9130b.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTMyODc5MTJfZTFhYThiZGI5ZmU3MmIxZmUyMjg4N2NlYWFmYzBkYmQuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028113287912_e1aa8bdb9fe72b1fe22887ceaafc0dbd.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028113287912_e1aa8bdb9fe72b1fe22887ceaafc0dbd.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTM4OTQ3MDRfMzUwNGU0YmYwOTNhZDlmOWQ2MzVjOGJmYTJhYWFlZjYuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028113894704_3504e4bf093ad9f9d635c8bfa2aaaef6.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028113894704_3504e4bf093ad9f9d635c8bfa2aaaef6.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTQ3Njc3MzlfZDAxNGIxMGRhNTA4OGJjN2QzNjc1YTZkMDBlNzdkMzMuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028114767739_d014b10da5088bc7d3675a6d00e77d33.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028114767739_d014b10da5088bc7d3675a6d00e77d33.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE0MzQ1NjFfNmQyY2I3NWVkYmE4MjgzMmUwY2JkOTA2NzM4NTdiZDMuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321434561_6d2cb75edba82832e0cbd90673857bd3.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321434561_6d2cb75edba82832e0cbd90673857bd3.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE0NDgwODhfNmU2OTQ0YzNjZWIzMzU4OTdlMmI0ZjRhZDIwOTc1YjcuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321448088_6e6944c3ceb335897e2b4f4ad20975b7.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321448088_6e6944c3ceb335897e2b4f4ad20975b7.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE1NDg1NTdfMWE1ZTY5YTg5Y2EzNzk1M2UwYzA0Yzg4ZTUyOWQ5NTEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321548557_1a5e69a89ca37953e0c04c88e529d951.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321548557_1a5e69a89ca37953e0c04c88e529d951.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMDk2MzA3MDRfMjlhODJkZjk3ZWE0ZWE3YzM3ODU5Zjk2NjcxNTRkYTEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028109630704_29a82df97ea4ea7c37859f9667154da1.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028109630704_29a82df97ea4ea7c37859f9667154da1.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMDk2NzU5ODRfNTExYmI1ODY5MGE3M2FiOWNjMWFkY2QxNDZjYTQ2ZjIuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028109675984_511bb58690a73ab9cc1adcd146ca46f2.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028109675984_511bb58690a73ab9cc1adcd146ca46f2.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTA2MzE0MTVfOWJkMzc1NDUxYjIyNDI3NzZjM2ZhNDdhNWU5MWYzZTEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028110631415_9bd375451b2242776c3fa47a5e91f3e1.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028110631415_9bd375451b2242776c3fa47a5e91f3e1.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTExNjcxMDFfNjg1ZGUyZTUzOTViYmY4ZDk3ZTRkMmY4YWE4N2ZlZTMuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028111167101_685de2e5395bbf8d97e4d2f8aa87fee3.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028111167101_685de2e5395bbf8d97e4d2f8aa87fee3.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure>ntt</div>ntt</div>ntttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6IjFlZjg0OTEiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiXHU2Y2JiXHU1MTc3IiwidGV4dF9hbGlnbiI6ImxlZnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-09a76d6 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\" data-id=\"09a76d6\" data-element_type=\"widget\" data-widget_type=\"image-gallery.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-image-gallery\">nttt<div id=\'gallery-6\' class=\'gallery galleryid-3003 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NDY1OTEzMzg2ODdfZmE1MTRlMTY0ZjJlZTk5NjFjZmVlY2U5YjJhMjk2MmUuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTE0ODI0OTc5ODFfNGZlOGQ1MmM3N2ZiOTcwYWNjYWNhOTkzMTFiM2U1YjguanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNTQzNzc3MTM5OTRfNzMxZjNhYzFmN2YzMjMyNjExMWE0MWY2N2Q0YTJlMzMuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE2NTM3NjdfNzk3Y2FkYTk3Yjk4NjQyZTYyYzkxODU3YzYwYjViNDQuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NDY1OTEzNDkxOTRfZDUwMTBkMTcwMGM3Y2ViNDkxYjk3OGIwMWJlM2RkMjguanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure>ntt</div>ntt</div>ntttt</div>ntttt</div>nttttt</div>ntttt</div>ntt\",\"scripts\":[],\"styles\":[\"widget-image-gallery\"]}}'),(10788,3285,'_elementor_edit_mode','builder'),(10789,3285,'_elementor_template_type','wp-page'),(10790,3285,'_elementor_version','3.24.7'),(10791,3285,'_wp_page_template','default'),(10792,3285,'_elementor_data','[{\"id\":\"6ab6341\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"b748b2e\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"\\u79c1\\u305f\\u3061\\u306e\\u5f37\\u307f\\u306f\\u3001\\u30a2\\u30eb\\u30df\\u30cb\\u30a6\\u30e0\\u3068\\u92fc\\u306e\\u5927\\u91cf\\u751f\\u7523\\u306b\\u3042\\u308a\\u307e\\u3059\\u3002\\u79c1\\u305f\\u3061\\u306f\\u9769\\u65b0\\u306b\\u512a\\u308c\\u3001\\u9867\\u5ba2\\u306b\\u9ad8\\u4ed8\\u52a0\\u4fa1\\u5024\\u306e\\u88fd\\u54c1\\u3092\\u63d0\\u4f9b\\u3057\\u307e\\u3059\\u3002\",\"title_tag\":\"h5\",\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"f0b8725\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"\\u81ea\\u52d5\\u8eca\\uff06\\u30aa\\u30fc\\u30c8\\u30d0\\u30a4\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"e160294\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":3190,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Ab6277516622141b68178f66bebaadd93o.jpg_350x350.jpg\"},{\"id\":3191,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A4969ef2343a244608cc511d1e7be28e2X.png_350x350.png\"},{\"id\":3192,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/H9be6461494cf4fe7998192dc483066c9v.png_350x350.png\"},{\"id\":3193,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/H4cbac47ae6cf4705b966668ca1abad509.png_350x350.png\"},{\"id\":3194,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/H6c00bd237d8b46d4b06a1cc6ef76accfE.png_350x350.png\"},{\"id\":3195,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/H71abe7a763a345ae87dcf70c25a70a32M.png_350x350.png\"},{\"id\":3196,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/2.jpg\"},{\"id\":3197,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A045fe45345664394a2a80499b4bd2117i.jpg_350x350.jpg\"},{\"id\":3198,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A86e039df1c9d4e809ea53dfd676ba67aO.jpg_350x350.jpg\"},{\"id\":3199,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A786dc427af46457ea923c41ea7688f67Q.jpg_350x350.jpg\"},{\"id\":3200,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/6.jpg\"},{\"id\":3201,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A2ed5a5c3f8f544c8910a3fe29da5e2984.jpg_350x350.jpg\"},{\"id\":3202,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A3c80646854cd4401b6b737a80e8e29f2Z.jpg_350x350.jpg\"},{\"id\":3203,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A53f94fffa0e64ba8a47330e85a179214l.jpg_350x350.jpg\"},{\"id\":3204,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Aa559aaa8e8d44868b700967e182631e0O.jpg_350x350.jpg\"},{\"id\":3205,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/4.jpg\"},{\"id\":3206,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A29209fca14e3491286a7ae2a7d535066t.jpg_350x350.jpg\"},{\"id\":3207,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Afd6e5018d54a4c319b4941af57e38fc1e.jpg_350x350.jpg\"},{\"id\":3208,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A8626df5ae89c458484cbdeab6b0a2768E.jpg_350x350.jpg\"},{\"id\":3209,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Aec2a4cd895e648b6bc7174d864e103329.jpg_350x350.jpg\"},{\"id\":3210,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/1.jpg\"},{\"id\":3211,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A5fa71b0eddf648049c5f33d331738460m.jpg_350x350.jpg\"},{\"id\":3212,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A9bc1872697d649e7a28d14c48cd6b71bq.jpg_350x350.jpg\"},{\"id\":3213,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Ad0c782b84615484d8303ad964cd302a4C.jpg_350x350.jpg\"},{\"id\":3214,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Aec3f44d2c0cf4536870b19097b5035f4A.jpg_350x350.jpg\"},{\"id\":3215,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/8.jpg\"},{\"id\":3216,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A5df619ce89ec42189a5c4d05bbba4f2dw.jpg_350x350.jpg\"},{\"id\":3217,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A9207015598ae47e4ba57d5d6755a7945J.jpg_350x350.jpg\"},{\"id\":3218,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Aa67514ca153a43208612611af15ae689t.jpg_350x350.jpg\"},{\"id\":3219,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Ac8c57af57fc04a9b8afbcf5214d8b125a.jpg_350x350.jpg\"},{\"id\":3220,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Aea1a2ea6c9d04b78977d1e8c907e721cR.jpg_350x350.jpg\"},{\"id\":3221,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/5.jpg\"},{\"id\":3222,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/7.jpg\"},{\"id\":3223,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A4fa22b3db4704145a9c8f2b6d413b4b7Y.jpg_350x350.jpg\"},{\"id\":3224,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A8cfa154ca70a46c5965e993255b53ecbg.jpg_350x350.jpg\"},{\"id\":3225,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A967c634a517c48f38c23d4766db5bba1a.jpg_350x350.jpg\"},{\"id\":3226,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A462413b6de2b401ba60e99bbe1d15e33K.jpg_350x350.jpg\"},{\"id\":3227,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A661399142a7247278bbf69a9d6007556W.jpg_350x350.jpg\"},{\"id\":3228,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/10.jpg\"},{\"id\":3229,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A16eb71f546c44c4ba00c6afe46464d593.jpg_350x350.jpg\"},{\"id\":3230,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A72a21ba969c84b98b63b985380b97ef5O.jpg_350x350.jpg\"},{\"id\":3231,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A99574ebe1a6c432abebb91680e3e227e0.jpg_350x350.jpg\"},{\"id\":3232,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Ac6d9a3b79a904eeb9c925afa374ec53aA.jpg_350x350.jpg\"},{\"id\":3233,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Adef05c3212194f259f1556cd5081ab3eg.jpg_350x350.jpg\"},{\"id\":3234,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/3.jpg\"},{\"id\":3235,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/9.jpg\"},{\"id\":3236,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A268aa8f9b65c4cdf9f45e594f2cd8ad4M.jpg_350x350.jpg\"},{\"id\":3237,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A864432f2571743689342ae173ee9dc9fd.jpg_350x350.jpg\"},{\"id\":3238,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Abd43851c92654bd99cfdca45d896fbcbB.jpg_350x350.jpg\"},{\"id\":3239,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Acdd1226298dd4613abf021bdcaad320b0.jpg_350x350.jpg\"},{\"id\":3240,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Ae91bf7f51db3402ebaff610c299e9aacF.jpg_350x350.jpg\"},{\"id\":3241,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A05f18d47e70948ae8795111d055f42fa2.jpg_350x350.jpg\"},{\"id\":3242,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A5c37792f38434388a02a0479fcbc4123T.jpg_350x350.jpg\"},{\"id\":3243,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A8c420992f47745509f4f292ac7bd2258H.jpg_350x350.jpg\"},{\"id\":3244,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A1001e63ea59149f8a81abb92d5d5fe713.jpg_350x350.jpg\"},{\"id\":3245,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A36346f881b104996b6c070b5d2cebff8u.jpg_350x350.jpg\"},{\"id\":3246,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A157183c07a764eb8957bc4cd13982808i.jpg_350x350.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"39b6365\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"CNC\\u52a0\\u5de5\\u90e8\\u54c1\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c570843\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":3247,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok5.jpg\"},{\"id\":3248,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok4.png\"},{\"id\":3249,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-machine22.avif\"},{\"id\":3250,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-machine3.jpg\"},{\"id\":3251,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok3.png\"},{\"id\":3252,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok1.png\"},{\"id\":3253,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok2.png\"},{\"id\":3254,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok7.png\"},{\"id\":3255,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok9.jpg\"},{\"id\":3256,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok8.jpg\"},{\"id\":3257,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z5709443476797_cb3e9e0d596ad6331366b8a711f46926.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"feb6000\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"\\u677f\\u91d1\\u52a0\\u5de5\\uff06\\u88fd\\u4f5c\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1cd9da4\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":3258,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal1.jpg\"},{\"id\":3259,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal3.jpg\"},{\"id\":3260,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal4.jpg\"},{\"id\":3261,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal5.jpg\"},{\"id\":3262,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal7.jpg\"},{\"id\":3263,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal8.jpg\"},{\"id\":3264,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal9.jpg\"},{\"id\":3265,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal10.jpg\"},{\"id\":3266,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal2.png\"},{\"id\":3267,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal6.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"7414012\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"\\u91d1\\u578b\\u30fb\\u30c0\\u30a4\\u90e8\\u54c1\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2c28c08\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":3268,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\"},{\"id\":3269,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\"},{\"id\":3270,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\"},{\"id\":3271,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\"},{\"id\":3272,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\"},{\"id\":3273,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"63a19c7\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"\\u7523\\u696d\\u7528\\u30d5\\u30a1\\u30b9\\u30ca\\u30fc\\uff06\\u30dc\\u30eb\\u30c8\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"66c41e5\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":3274,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/IMG_1237.jpeg\"},{\"id\":3275,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/DSC00822.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"26abf44\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"\\u5de5\\u5177\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a432afc\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2710,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\"},{\"id\":2711,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\"},{\"id\":2712,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\"},{\"id\":2713,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\"},{\"id\":2714,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\"},{\"id\":2715,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\"},{\"id\":2716,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"cae1a49\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"\\u30b8\\u30b0\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8703d3d\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2730,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\"},{\"id\":2731,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\"},{\"id\":2732,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\"},{\"id\":2733,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\"},{\"id\":2734,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}]'),(10793,3285,'_elementor_css','a:6:{s:4:\"time\";i:1742181616;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:\"\";}'),(10794,3285,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:20:\"widget-image-gallery\";}}'),(10795,3285,'_elementor_element_cache','{\"timeout\":1742268016,\"value\":{\"content\":\"<div class=\"elementor-element elementor-element-fcff723 e-flex e-con-boxed e-con e-parent\" data-id=\"fcff723\" data-element_type=\"container\">nttttt<div class=\"e-con-inner\">ntt[elementor-element data=\"eyJpZCI6ImRlZTQxYjAiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlIjoiXHU3OWMxXHUzMDVmXHUzMDYxXHUzMDZlXHU1ZjM3XHUzMDdmXHUzMDZmXHUzMDAxXHUzMGEyXHUzMGViXHUzMGRmXHUzMGNiXHUzMGE2XHUzMGUwXHUzMDY4XHU5MmZjXHUzMDZlXHU1OTI3XHU5MWNmXHU3NTFmXHU3NTIzXHUzMDZiXHUzMDQyXHUzMDhhXHUzMDdlXHUzMDU5XHUzMDAyXHU3OWMxXHUzMDVmXHUzMDYxXHUzMDZmXHU5NzY5XHU2NWIwXHUzMDZiXHU1MTJhXHUzMDhjXHUzMDAxXHU5ODY3XHU1YmEyXHUzMDZiXHU5YWQ4XHU0ZWQ4XHU1MmEwXHU0ZmExXHU1MDI0XHUzMDZlXHU4OGZkXHU1NGMxXHUzMDkyXHU2M2QwXHU0ZjliXHUzMDU3XHUzMDdlXHUzMDU5XHUzMDAyIiwidGl0bGVfdGFnIjoiaDUiLCJ0ZXh0X2FsaWduIjoiY2VudGVyIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"][elementor-element data=\"eyJpZCI6IjM3M2RmYzAiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiXHU2ZWI2XHU2M2E1IiwidGV4dF9hbGlnbiI6ImxlZnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-5603a87 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\" data-id=\"5603a87\" data-element_type=\"widget\" data-widget_type=\"image-gallery.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-image-gallery\">nttt<div id=\'gallery-1\' class=\'gallery galleryid-3003 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDk5NjUxOTZfODJmZDc2ZGRiYmYzOGQ2NGRhZThhZjExYjIxNTM3YjkuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074649965196_82fd76ddbbf38d64dae8af11b21537b9.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074649965196_82fd76ddbbf38d64dae8af11b21537b9.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY2NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NTI3MjMyMTJfODc3MGYwMjhmZjY0NmYwMTRmMWU5ZjZlZmUzNDk2MmUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074652723212_8770f028ff646f014f1e9f6efe34962e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074652723212_8770f028ff646f014f1e9f6efe34962e.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA5Mzk3MThfYjBmZjZhY2FkMTRiMmFiNWVkMTU4MTcxYzc2ODMzZjkuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640939718_b0ff6acad14b2ab5ed158171c76833f9.jpg\'><img width=\"84\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640939718_b0ff6acad14b2ab5ed158171c76833f9.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDEyOTMxMTNfYjRiMTg2YzY3YjZlNzgyOWRkMmE5MWQ3MzBjZjlhYTcuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641293113_b4b186c67b6e7829dd2a91d730cf9aa7.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641293113_b4b186c67b6e7829dd2a91d730cf9aa7.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY2OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDI3NjM1ODdfMjFlY2NlNWQ0YWNjZjM3MTM1OGViNGNiZDczYzgwMGQuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074642763587_21ecce5d4accf371358eb4cbd73c800d.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074642763587_21ecce5d4accf371358eb4cbd73c800d.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY2OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDI4NDk4NDhfMTBiNTY3MDUxMjA5NmU2NTQ3NDhlNTdiMjRhMDRhZmUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074642849848_10b5670512096e654748e57b24a04afe.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074642849848_10b5670512096e654748e57b24a04afe.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA3NTg4ODNfNjQ4YTA0MmY0YjY0MGQwZjU3YTQ0NDFkZDIxMDk1NzAuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640758883_648a042f4b640d0f57a4441dd2109570.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640758883_648a042f4b640d0f57a4441dd2109570.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA4NDkyMzdfZTc2OTliMWJjNmUzOGUwYmY2NWViM2JjYTI4YWU4Y2EuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640849237_e7699b1bc6e38e0bf65eb3bca28ae8ca.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640849237_e7699b1bc6e38e0bf65eb3bca28ae8ca.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDEwNTIwNzBfOWVmYmMxNTg2Y2I1ZTk1Y2M1NGI4NDIxYTYzZjM4MGUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641052070_9efbc1586cb5e95cc54b8421a63f380e.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641052070_9efbc1586cb5e95cc54b8421a63f380e.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDExNDUyNzNfN2JlNWRmM2UxNzc5YWEwNGU4OTBlNDBjYzI0M2NkZWUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641145273_7be5df3e1779aa04e890e40cc243cdee.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641145273_7be5df3e1779aa04e890e40cc243cdee.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA2NTMyODVfNWE4N2FkZjU3Y2UwYzQxODZmZTRmYjE1NzllMzU3YjUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640653285_5a87adf57ce0c4186fe4fb1579e357b5.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640653285_5a87adf57ce0c4186fe4fb1579e357b5.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDExNzM4MjZfNDVhZTczN2Y3MGRmYjJkMzY1YWJiMzk3ZjEzOWQ3MDguanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641173826_45ae737f70dfb2d365abb397f139d708.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641173826_45ae737f70dfb2d365abb397f139d708.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure>ntt</div>ntt</div>ntttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImRlYzQzMjUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiXHU5MWQxXHU1NzhiIiwidGV4dF9hbGlnbiI6ImxlZnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-1852cc9 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\" data-id=\"1852cc9\" data-element_type=\"widget\" data-widget_type=\"image-gallery.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-image-gallery\">nttt<div id=\'gallery-2\' class=\'gallery galleryid-3003 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY1NzU1NzhfZTBhNGY1NDczODQzZTU4ZWUxYTc5OTg5ZjM2N2FkYTkuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736575578_e0a4f5473843e58ee1a79989f367ada9.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736575578_e0a4f5473843e58ee1a79989f367ada9.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY3MjE1ODZfMTZiOTE5ODQyMGIzOTlmOWQ4MmMwNThkOTA4MmEzZTAuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUyMTk2NzlfOTFhNmY2OTkzMTQ2OTA2Zjg0NjViNDNkZGQwYzJiM2MuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735219679_91a6f6993146906f8465b43ddd0c2b3c.jpg\'><img width=\"68\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735219679_91a6f6993146906f8465b43ddd0c2b3c.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY3NjE0NTRfYjk4ZDQ2OGIxMzNhYzU5ZWJiZjVlNjJiNjkzNDYyYTQuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736761454_b98d468b133ac59ebbf5e62b693462a4.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736761454_b98d468b133ac59ebbf5e62b693462a4.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY3ODQzMzVfZjkzYmM3ODIwY2ZkYzBiMDE1YzgyMjRiOWExYWNlMTAuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736784335_f93bc7820cfdc0b015c8224b9a1ace10.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736784335_f93bc7820cfdc0b015c8224b9a1ace10.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjkyMTk5NDEzNDlfYjA5NTRlNDRhMjVhN2QxNTQzZWIzM2NlZWFlMjBlZmIuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069219941349_b0954e44a25a7d1543eb33ceeae20efb.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069219941349_b0954e44a25a7d1543eb33ceeae20efb.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUzNDMyMDFfZDI5MjJhYTE2ODBjNTdiZmUyZGE5YWFiYTEyMWNhYTYuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735343201_d2922aa1680c57bfe2da9aaba121caa6.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735343201_d2922aa1680c57bfe2da9aaba121caa6.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU0NDE4ODVfMDg4ZGQ0MTdiNjU5NzgzMzc2YWRmZWIwMDZkMTgxODAuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735441885_088dd417b659783376adfeb006d18180.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735441885_088dd417b659783376adfeb006d18180.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU1OTgxMDFfMGZkZDBhNzczYTIyZDZhZjkyZjY5NGQ3ODY2YjJhNWEuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735598101_0fdd0a773a22d6af92f694d7866b2a5a.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735598101_0fdd0a773a22d6af92f694d7866b2a5a.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU2MzQ2MzJfZGEzZGYxMWNjMWRmYTk3OGM1YjcwZjJlNDQ0MDQ3MTIuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735634632_da3df11cc1dfa978c5b70f2e44404712.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735634632_da3df11cc1dfa978c5b70f2e44404712.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU2OTM5ODdfYmY3MzQ3ZjUzM2VjNzUwYTJjNGY5ZGYxNzYzYjg4ODEuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735693987_bf7347f533ec750a2c4f9df1763b8881.jpg\'><img width=\"84\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735693987_bf7347f533ec750a2c4f9df1763b8881.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU4MzU0OTZfYTcxYWM1MGRkYWMzNjg2N2ZjYTIxY2VlOGM0N2ZlMGEuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735835496_a71ac50ddac36867fca21cee8c47fe0a.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735835496_a71ac50ddac36867fca21cee8c47fe0a.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU4OTM2OTJfNDhmNGE5ZjdjN2E5ZDA1ZGMwMzdhODBhYzFlNTc4MmIuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYwMDk1MTRfYWQ5MDg4N2YyNWQ3MzRlYzJkMjFkOGE2YTYzNGZmMmQuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYxMTA0MjZfYzNlY2UzZWM1NmY5ZThjYzBlNWM5YTk4Zjk3OTJiZmMuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYxNjUzNzJfODI1NjkzMjRkZTFjOGZjYzM3NmNjMGU3MzdjMDUyMGUuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYzMjQ0NzJfMDZmMWVkMWExYmUyYzNhNTkyMzA3MGFmZjdkNWUxMGUuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736324472_06f1ed1a1be2c3a5923070aff7d5e10e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736324472_06f1ed1a1be2c3a5923070aff7d5e10e.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYzOTEwNTFfNGMzY2FlMTZhOGZmNGYyMTZiOGQ1MzY3Mzc3MmRkMDcuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736391051_4c3cae16a8ff4f216b8d53673772dd07.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736391051_4c3cae16a8ff4f216b8d53673772dd07.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY0NTU3NzVfOTdhOTM3ODA3YzgwN2JmNzEzNjk0MTlhMGE1ZDNkMmMuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\'><img width=\"68\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure>ntt</div>ntt</div>ntttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImFiODFjZGEiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiXHU2YTVmXHU2OGIwXHUzMDZlXHU4YTczXHU3ZDMwIiwidGV4dF9hbGlnbiI6ImxlZnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-cd9dba9 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\" data-id=\"cd9dba9\" data-element_type=\"widget\" data-widget_type=\"image-gallery.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-image-gallery\">nttt<div id=\'gallery-3\' class=\'gallery galleryid-3003 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjkyMTk5NDkxNzVfZTJhMTA1YmNmMjIzYzgzMmQ2Y2FhYjJkMDNmZTA0MTMuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069219949175_e2a105bcf223c832d6caab2d03fe0413.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069219949175_e2a105bcf223c832d6caab2d03fe0413.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMTMxNjUyNjZfYTE1MjUzZTNhM2UwYTJjOTc4ZWQ2Njc5OTRiOGY0MTUuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799313165266_a15253e3a3e0a2c978ed667994b8f415.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799313165266_a15253e3a3e0a2c978ed667994b8f415.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE2MDQxMTVfNDkzZjgzNTU4NjlkZDNjYTgyYTk2ZTg2ZTI5ODJiZmUuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321604115_493f8355869dd3ca82a96e86e2982bfe.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321604115_493f8355869dd3ca82a96e86e2982bfe.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE2OTYwMjRfNzMzYTg1YmY4MzVhZWEwYThhZmM4YjI2OWQxNDk3MDAuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321696024_733a85bf835aea0a8afc8b269d149700.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321696024_733a85bf835aea0a8afc8b269d149700.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMTMxNzk1NjdfYzNkNjY3NWEwMzc2MmZiOTQzNzZkYzk2ZjA1Mzg5YmQuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799313179567_c3d6675a03762fb94376dc96f05389bd.jpg\'><img width=\"150\" height=\"86\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799313179567_c3d6675a03762fb94376dc96f05389bd.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMTMyNzM0NTRfYWQ3MTZiZWZhZjQzZDJkZjE0NzYyOWQ5NTI2MmM1MjAuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799313273454_ad716befaf43d2df147629d95262c520.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799313273454_ad716befaf43d2df147629d95262c520.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MTYyNDlfOTZiMmZlYTVmZTMzZjRhMjRkODI1MWM4YWFmMjI1ZTEuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363716249_96b2fea5fe33f4a24d8251c8aaf225e1.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363716249_96b2fea5fe33f4a24d8251c8aaf225e1.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MjM3NzFfOWVlYzRkNTFmYzE3MjNmYjY2OWY5ODAwODRlMjBhNjEuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363723771_9eec4d51fc1723fb669f980084e20a61.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363723771_9eec4d51fc1723fb669f980084e20a61.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MjM4OTJfNWI3MjAwMDI2MjAyYTFlZmU5NjU5NjEwOWZhZDY4NTcuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363723892_5b7200026202a1efe96596109fad6857.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363723892_5b7200026202a1efe96596109fad6857.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MzUzNjFfOTM1NWZhN2ViOTkxMTIzZGM5OTVkZmFhMmI0Y2Y3NTQuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363735361_9355fa7eb991123dc995dfaa2b4cf754.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363735361_9355fa7eb991123dc995dfaa2b4cf754.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3NDY3NjJfNjI0MWFjNGM2NjI1NTgxYjVkYjliMjRhMWVlMDVmNjgtMS5qcGciLCJzbGlkZXNob3ciOiJjZDlkYmE5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363746762_6241ac4c6625581b5db9b24a1ee05f68-1.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363746762_6241ac4c6625581b5db9b24a1ee05f68-1.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3NDE0MDlfZDcyMTI0ZDkwOTEyODBmNjUyOWEyN2E5MTliZTEzYzkuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363741409_d72124d9091280f6529a27a919be13c9.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363741409_d72124d9091280f6529a27a919be13c9.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure>ntt</div>ntt</div>ntttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6IjJmOWI3MTYiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiXHU1ZGU1XHU1MTc3IiwidGV4dF9hbGlnbiI6ImxlZnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-a165f68 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\" data-id=\"a165f68\" data-element_type=\"widget\" data-widget_type=\"image-gallery.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-image-gallery\">nttt<div id=\'gallery-4\' class=\'gallery galleryid-3003 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwMTgzMzRfMTdjNWZhYzk2ZmIyODQzZDc0YTc2Y2M3OWY5YjRmNWMuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\'><img width=\"150\" height=\"135\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwMzczNTNfZGI4NzczMmIzZWE5ZDkzNTM2YmNkM2FlYzY0ODM1YTcuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNTkxNjJfMDUzYjM2NGFiNzYxZGM1YTQ0Mjc5ZmFmNjQzOTUzMjQuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\'><img width=\"70\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNzgzNzJfNTBhYmNlNTI0OWM4YWNkY2ZiZGY4YTA2MzQ4OWUxODYuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNzg1NzBfMGFiNThiNDZiZjY4M2RmNmVjZGIyYzJkODc5NDViYTYuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\'><img width=\"150\" height=\"129\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk2ODQ5NDkwODZfYjI5ZmRiNTAxMTRhMTk2Y2MzZmRjYzllMTJjYWYxMDUuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\'><img width=\"150\" height=\"128\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk2ODQ5NDY2NDFfMTUwMGZiZTE2ZmVjM2ExNGVhZGI4ZTRhZWQxY2Y2M2YuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure>ntt</div>ntt</div>ntttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImJjZDA3NGMiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiXHUzMGFhXHUzMGZjXHUzMGM4XHUzMGQwXHUzMGE0XHUzMDZlXHU5MGU4XHU1NGMxIiwidGV4dF9hbGlnbiI6ImxlZnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-7eb3b87 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\" data-id=\"7eb3b87\" data-element_type=\"widget\" data-widget_type=\"image-gallery.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-image-gallery\">nttt<div id=\'gallery-5\' class=\'gallery galleryid-3003 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTEzMDA5NzlfMDA1MjcxNmI0NjI4NDNhNWQxOTY4Zjc4NzBjNzJmZDguanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028111300979_0052716b462843a5d1968f7870c72fd8.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028111300979_0052716b462843a5d1968f7870c72fd8.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTIwMDAwMDBfMjQ0MGQ1YWUzNmY3MDA4NDBkMGYwYjU4M2JiY2JkZmEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028112000000_2440d5ae36f700840d0f0b583bbcbdfa.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028112000000_2440d5ae36f700840d0f0b583bbcbdfa.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTI2NzAwMjRfMTgwNmFmZDdkNzBiYmJjNTIzZDYzYjBjNjFlOTEzMGIuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028112670024_1806afd7d70bbbc523d63b0c61e9130b.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028112670024_1806afd7d70bbbc523d63b0c61e9130b.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTMyODc5MTJfZTFhYThiZGI5ZmU3MmIxZmUyMjg4N2NlYWFmYzBkYmQuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028113287912_e1aa8bdb9fe72b1fe22887ceaafc0dbd.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028113287912_e1aa8bdb9fe72b1fe22887ceaafc0dbd.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTM4OTQ3MDRfMzUwNGU0YmYwOTNhZDlmOWQ2MzVjOGJmYTJhYWFlZjYuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028113894704_3504e4bf093ad9f9d635c8bfa2aaaef6.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028113894704_3504e4bf093ad9f9d635c8bfa2aaaef6.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTQ3Njc3MzlfZDAxNGIxMGRhNTA4OGJjN2QzNjc1YTZkMDBlNzdkMzMuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028114767739_d014b10da5088bc7d3675a6d00e77d33.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028114767739_d014b10da5088bc7d3675a6d00e77d33.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE0MzQ1NjFfNmQyY2I3NWVkYmE4MjgzMmUwY2JkOTA2NzM4NTdiZDMuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321434561_6d2cb75edba82832e0cbd90673857bd3.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321434561_6d2cb75edba82832e0cbd90673857bd3.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE0NDgwODhfNmU2OTQ0YzNjZWIzMzU4OTdlMmI0ZjRhZDIwOTc1YjcuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321448088_6e6944c3ceb335897e2b4f4ad20975b7.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321448088_6e6944c3ceb335897e2b4f4ad20975b7.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE1NDg1NTdfMWE1ZTY5YTg5Y2EzNzk1M2UwYzA0Yzg4ZTUyOWQ5NTEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321548557_1a5e69a89ca37953e0c04c88e529d951.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321548557_1a5e69a89ca37953e0c04c88e529d951.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMDk2MzA3MDRfMjlhODJkZjk3ZWE0ZWE3YzM3ODU5Zjk2NjcxNTRkYTEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028109630704_29a82df97ea4ea7c37859f9667154da1.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028109630704_29a82df97ea4ea7c37859f9667154da1.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMDk2NzU5ODRfNTExYmI1ODY5MGE3M2FiOWNjMWFkY2QxNDZjYTQ2ZjIuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028109675984_511bb58690a73ab9cc1adcd146ca46f2.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028109675984_511bb58690a73ab9cc1adcd146ca46f2.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTA2MzE0MTVfOWJkMzc1NDUxYjIyNDI3NzZjM2ZhNDdhNWU5MWYzZTEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028110631415_9bd375451b2242776c3fa47a5e91f3e1.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028110631415_9bd375451b2242776c3fa47a5e91f3e1.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTExNjcxMDFfNjg1ZGUyZTUzOTViYmY4ZDk3ZTRkMmY4YWE4N2ZlZTMuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028111167101_685de2e5395bbf8d97e4d2f8aa87fee3.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028111167101_685de2e5395bbf8d97e4d2f8aa87fee3.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure>ntt</div>ntt</div>ntttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6IjFlZjg0OTEiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiXHU2Y2JiXHU1MTc3IiwidGV4dF9hbGlnbiI6ImxlZnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-09a76d6 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\" data-id=\"09a76d6\" data-element_type=\"widget\" data-widget_type=\"image-gallery.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-image-gallery\">nttt<div id=\'gallery-6\' class=\'gallery galleryid-3003 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NDY1OTEzMzg2ODdfZmE1MTRlMTY0ZjJlZTk5NjFjZmVlY2U5YjJhMjk2MmUuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTE0ODI0OTc5ODFfNGZlOGQ1MmM3N2ZiOTcwYWNjYWNhOTkzMTFiM2U1YjguanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNTQzNzc3MTM5OTRfNzMxZjNhYzFmN2YzMjMyNjExMWE0MWY2N2Q0YTJlMzMuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE2NTM3NjdfNzk3Y2FkYTk3Yjk4NjQyZTYyYzkxODU3YzYwYjViNDQuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NDY1OTEzNDkxOTRfZDUwMTBkMTcwMGM3Y2ViNDkxYjk3OGIwMWJlM2RkMjguanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure>ntt</div>ntt</div>ntttt</div>ntttt</div>nttttt</div>ntttt</div>ntt\",\"scripts\":[],\"styles\":[\"widget-image-gallery\"]}}'),(10796,3003,'_elementor_css','a:6:{s:4:\"time\";i:1742181720;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:\"\";}'),(10797,3003,'_elementor_element_cache','{\"timeout\":1746541658,\"value\":{\"content\":\"<div class=\\\"elementor-element elementor-element-6ab6341 e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"6ab6341\\\" data-element_type=\\\"container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t[elementor-element data=\\\"eyJpZCI6ImI3NDhiMmUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlIjoiXHU3OWMxXHUzMDVmXHUzMDYxXHUzMDZlXHU1ZjM3XHUzMDdmXHUzMDZmXHUzMDAxXHUzMGEyXHUzMGViXHUzMGRmXHUzMGNiXHUzMGE2XHUzMGUwXHUzMDY4XHU5MmZjXHUzMDZlXHU1OTI3XHU5MWNmXHU3NTFmXHU3NTIzXHUzMDZiXHUzMDQyXHUzMDhhXHUzMDdlXHUzMDU5XHUzMDAyXHU3OWMxXHUzMDVmXHUzMDYxXHUzMDZmXHU5NzY5XHU2NWIwXHUzMDZiXHU1MTJhXHUzMDhjXHUzMDAxXHU5ODY3XHU1YmEyXHUzMDZiXHU5YWQ4XHU0ZWQ4XHU1MmEwXHU0ZmExXHU1MDI0XHUzMDZlXHU4OGZkXHU1NGMxXHUzMDkyXHU2M2QwXHU0ZjliXHUzMDU3XHUzMDdlXHUzMDU5XHUzMDAyIiwidGl0bGVfdGFnIjoiaDUiLCJ0ZXh0X2FsaWduIjoiY2VudGVyIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\\\"][elementor-element data=\\\"eyJpZCI6ImYwYjg3MjUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiXHU4MWVhXHU1MmQ1XHU4ZWNhXHVmZjA2XHUzMGFhXHUzMGZjXHUzMGM4XHUzMGQwXHUzMGE0IiwidGV4dF9hbGlnbiI6ImxlZnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-e160294 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\\\" data-id=\\\"e160294\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"image-gallery.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-image-gallery\\\">\\n\\t\\t\\t<div id=\'gallery-1\' class=\'gallery galleryid-3003 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e160294\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWI2Mjc3NTE2NjIyMTQxYjY4MTc4ZjY2YmViYWFkZDkzby5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Ab6277516622141b68178f66bebaadd93o.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"113\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Ab6277516622141b68178f66bebaadd93o.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e160294\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTQ5NjllZjIzNDNhMjQ0NjA4Y2M1MTFkMWU3YmUyOGUyWC5wbmdfMzUweDM1MC5wbmciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A4969ef2343a244608cc511d1e7be28e2X.png_350x350.png\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A4969ef2343a244608cc511d1e7be28e2X.png_350x350.png\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e160294\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvSDliZTY0NjE0OTRjZjRmZTc5OTgxOTJkYzQ4MzA2NmM5di5wbmdfMzUweDM1MC5wbmciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/H9be6461494cf4fe7998192dc483066c9v.png_350x350.png\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/H9be6461494cf4fe7998192dc483066c9v.png_350x350.png\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e160294\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvSDRjYmFjNDdhZTZjZjQ3MDViOTY2NjY4Y2ExYWJhZDUwOS5wbmdfMzUweDM1MC5wbmciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/H4cbac47ae6cf4705b966668ca1abad509.png_350x350.png\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/H4cbac47ae6cf4705b966668ca1abad509.png_350x350.png\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e160294\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvSDZjMDBiZDIzN2Q4YjQ2ZDRiMDZhMWNjNmVmNzZhY2NmRS5wbmdfMzUweDM1MC5wbmciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/H6c00bd237d8b46d4b06a1cc6ef76accfE.png_350x350.png\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/H6c00bd237d8b46d4b06a1cc6ef76accfE.png_350x350.png\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e160294\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvSDcxYWJlN2E3NjNhMzQ1YWU4N2RjZjcwYzI1YTcwYTMyTS5wbmdfMzUweDM1MC5wbmciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/H71abe7a763a345ae87dcf70c25a70a32M.png_350x350.png\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/H71abe7a763a345ae87dcf70c25a70a32M.png_350x350.png\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e160294\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvMi5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/2.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/2.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e160294\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTA0NWZlNDUzNDU2NjQzOTRhMmE4MDQ5OWI0YmQyMTE3aS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A045fe45345664394a2a80499b4bd2117i.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A045fe45345664394a2a80499b4bd2117i.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e160294\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTg2ZTAzOWRmMWM5ZDRlODA5ZWE1M2RmZDY3NmJhNjdhTy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A86e039df1c9d4e809ea53dfd676ba67aO.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A86e039df1c9d4e809ea53dfd676ba67aO.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e160294\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTc4NmRjNDI3YWY0NjQ1N2VhOTIzYzQxZWE3Njg4ZjY3US5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A786dc427af46457ea923c41ea7688f67Q.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A786dc427af46457ea923c41ea7688f67Q.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e160294\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvNi5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/6.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/6.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e160294\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTJlZDVhNWMzZjhmNTQ0Yzg5MTBhM2ZlMjlkYTVlMjk4NC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A2ed5a5c3f8f544c8910a3fe29da5e2984.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A2ed5a5c3f8f544c8910a3fe29da5e2984.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e160294\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTNjODA2NDY4NTRjZDQ0MDFiNmI3MzdhODBlOGUyOWYyWi5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A3c80646854cd4401b6b737a80e8e29f2Z.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A3c80646854cd4401b6b737a80e8e29f2Z.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e160294\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTUzZjk0ZmZmYTBlNjRiYThhNDczMzBlODVhMTc5MjE0bC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A53f94fffa0e64ba8a47330e85a179214l.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A53f94fffa0e64ba8a47330e85a179214l.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e160294\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWE1NTlhYWE4ZThkNDQ4NjhiNzAwOTY3ZTE4MjYzMWUwTy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Aa559aaa8e8d44868b700967e182631e0O.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Aa559aaa8e8d44868b700967e182631e0O.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e160294\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvNC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/4.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/4.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e160294\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTI5MjA5ZmNhMTRlMzQ5MTI4NmE3YWUyYTdkNTM1MDY2dC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A29209fca14e3491286a7ae2a7d535066t.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A29209fca14e3491286a7ae2a7d535066t.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e160294\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWZkNmU1MDE4ZDU0YTRjMzE5YjQ5NDFhZjU3ZTM4ZmMxZS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Afd6e5018d54a4c319b4941af57e38fc1e.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Afd6e5018d54a4c319b4941af57e38fc1e.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e160294\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTg2MjZkZjVhZTg5YzQ1ODQ4NGNiZGVhYjZiMGEyNzY4RS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A8626df5ae89c458484cbdeab6b0a2768E.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A8626df5ae89c458484cbdeab6b0a2768E.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e160294\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWVjMmE0Y2Q4OTVlNjQ4YjZiYzcxNzRkODY0ZTEwMzMyOS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Aec2a4cd895e648b6bc7174d864e103329.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Aec2a4cd895e648b6bc7174d864e103329.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e160294\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvMS5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/1.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/1.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e160294\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTVmYTcxYjBlZGRmNjQ4MDQ5YzVmMzNkMzMxNzM4NDYwbS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A5fa71b0eddf648049c5f33d331738460m.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A5fa71b0eddf648049c5f33d331738460m.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e160294\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTliYzE4NzI2OTdkNjQ5ZTdhMjhkMTRjNDhjZDZiNzFicS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A9bc1872697d649e7a28d14c48cd6b71bq.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A9bc1872697d649e7a28d14c48cd6b71bq.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e160294\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWQwYzc4MmI4NDYxNTQ4NGQ4MzAzYWQ5NjRjZDMwMmE0Qy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Ad0c782b84615484d8303ad964cd302a4C.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Ad0c782b84615484d8303ad964cd302a4C.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e160294\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWVjM2Y0NGQyYzBjZjQ1MzY4NzBiMTkwOTdiNTAzNWY0QS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Aec3f44d2c0cf4536870b19097b5035f4A.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Aec3f44d2c0cf4536870b19097b5035f4A.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e160294\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvOC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/8.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/8.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e160294\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTVkZjYxOWNlODllYzQyMTg5YTVjNGQwNWJiYmE0ZjJkdy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A5df619ce89ec42189a5c4d05bbba4f2dw.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A5df619ce89ec42189a5c4d05bbba4f2dw.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e160294\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTkyMDcwMTU1OThhZTQ3ZTRiYTU3ZDVkNjc1NWE3OTQ1Si5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A9207015598ae47e4ba57d5d6755a7945J.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A9207015598ae47e4ba57d5d6755a7945J.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e160294\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWE2NzUxNGNhMTUzYTQzMjA4NjEyNjExYWYxNWFlNjg5dC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Aa67514ca153a43208612611af15ae689t.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Aa67514ca153a43208612611af15ae689t.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e160294\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWM4YzU3YWY1N2ZjMDRhOWI4YWZiY2Y1MjE0ZDhiMTI1YS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Ac8c57af57fc04a9b8afbcf5214d8b125a.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Ac8c57af57fc04a9b8afbcf5214d8b125a.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e160294\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWVhMWEyZWE2YzlkMDRiNzg5NzdkMWU4YzkwN2U3MjFjUi5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Aea1a2ea6c9d04b78977d1e8c907e721cR.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Aea1a2ea6c9d04b78977d1e8c907e721cR.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e160294\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvNS5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/5.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/5.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e160294\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvNy5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/7.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/7.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e160294\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTRmYTIyYjNkYjQ3MDQxNDVhOWM4ZjJiNmQ0MTNiNGI3WS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A4fa22b3db4704145a9c8f2b6d413b4b7Y.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A4fa22b3db4704145a9c8f2b6d413b4b7Y.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e160294\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQThjZmExNTRjYTcwYTQ2YzU5NjVlOTkzMjU1YjUzZWNiZy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A8cfa154ca70a46c5965e993255b53ecbg.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A8cfa154ca70a46c5965e993255b53ecbg.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e160294\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTk2N2M2MzRhNTE3YzQ4ZjM4YzIzZDQ3NjZkYjViYmExYS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A967c634a517c48f38c23d4766db5bba1a.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A967c634a517c48f38c23d4766db5bba1a.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e160294\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTQ2MjQxM2I2ZGUyYjQwMWJhNjBlOTliYmUxZDE1ZTMzSy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A462413b6de2b401ba60e99bbe1d15e33K.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A462413b6de2b401ba60e99bbe1d15e33K.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e160294\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTY2MTM5OTE0MmE3MjQ3Mjc4YmJmNjlhOWQ2MDA3NTU2Vy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A661399142a7247278bbf69a9d6007556W.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A661399142a7247278bbf69a9d6007556W.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e160294\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvMTAuanBnIiwic2xpZGVzaG93IjoiZTE2MDI5NCJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/10.jpg\'><img width=\\\"150\\\" height=\\\"113\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/10.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e160294\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTE2ZWI3MWY1NDZjNDRjNGJhMDBjNmFmZTQ2NDY0ZDU5My5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A16eb71f546c44c4ba00c6afe46464d593.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A16eb71f546c44c4ba00c6afe46464d593.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e160294\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTcyYTIxYmE5NjljODRiOThiNjNiOTg1MzgwYjk3ZWY1Ty5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A72a21ba969c84b98b63b985380b97ef5O.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A72a21ba969c84b98b63b985380b97ef5O.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e160294\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTk5NTc0ZWJlMWE2YzQzMmFiZWJiOTE2ODBlM2UyMjdlMC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A99574ebe1a6c432abebb91680e3e227e0.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A99574ebe1a6c432abebb91680e3e227e0.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e160294\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWM2ZDlhM2I3OWE5MDRlZWI5YzkyNWFmYTM3NGVjNTNhQS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Ac6d9a3b79a904eeb9c925afa374ec53aA.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Ac6d9a3b79a904eeb9c925afa374ec53aA.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e160294\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWRlZjA1YzMyMTIxOTRmMjU5ZjE1NTZjZDUwODFhYjNlZy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Adef05c3212194f259f1556cd5081ab3eg.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Adef05c3212194f259f1556cd5081ab3eg.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e160294\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvMy5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/3.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/3.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e160294\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvOS5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/9.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/9.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e160294\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTI2OGFhOGY5YjY1YzRjZGY5ZjQ1ZTU5NGYyY2Q4YWQ0TS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A268aa8f9b65c4cdf9f45e594f2cd8ad4M.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A268aa8f9b65c4cdf9f45e594f2cd8ad4M.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e160294\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTg2NDQzMmYyNTcxNzQzNjg5MzQyYWUxNzNlZTlkYzlmZC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A864432f2571743689342ae173ee9dc9fd.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A864432f2571743689342ae173ee9dc9fd.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e160294\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWJkNDM4NTFjOTI2NTRiZDk5Y2ZkY2E0NWQ4OTZmYmNiQi5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Abd43851c92654bd99cfdca45d896fbcbB.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Abd43851c92654bd99cfdca45d896fbcbB.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e160294\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWNkZDEyMjYyOThkZDQ2MTNhYmYwMjFiZGNhYWQzMjBiMC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Acdd1226298dd4613abf021bdcaad320b0.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Acdd1226298dd4613abf021bdcaad320b0.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e160294\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWU5MWJmN2Y1MWRiMzQwMmViYWZmNjEwYzI5OWU5YWFjRi5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Ae91bf7f51db3402ebaff610c299e9aacF.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Ae91bf7f51db3402ebaff610c299e9aacF.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e160294\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTA1ZjE4ZDQ3ZTcwOTQ4YWU4Nzk1MTExZDA1NWY0MmZhMi5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A05f18d47e70948ae8795111d055f42fa2.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A05f18d47e70948ae8795111d055f42fa2.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e160294\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTVjMzc3OTJmMzg0MzQzODhhMDJhMDQ3OWZjYmM0MTIzVC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A5c37792f38434388a02a0479fcbc4123T.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A5c37792f38434388a02a0479fcbc4123T.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e160294\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQThjNDIwOTkyZjQ3NzQ1NTA5ZjRmMjkyYWM3YmQyMjU4SC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A8c420992f47745509f4f292ac7bd2258H.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A8c420992f47745509f4f292ac7bd2258H.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e160294\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTEwMDFlNjNlYTU5MTQ5ZjhhODFhYmI5MmQ1ZDVmZTcxMy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A1001e63ea59149f8a81abb92d5d5fe713.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A1001e63ea59149f8a81abb92d5d5fe713.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e160294\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTM2MzQ2Zjg4MWIxMDQ5OTZiNmMwNzBiNWQyY2ViZmY4dS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A36346f881b104996b6c070b5d2cebff8u.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A36346f881b104996b6c070b5d2cebff8u.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e160294\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTE1NzE4M2MwN2E3NjRlYjg5NTdiYzRjZDEzOTgyODA4aS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A157183c07a764eb8957bc4cd13982808i.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A157183c07a764eb8957bc4cd13982808i.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure>\\n\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element data=\\\"eyJpZCI6IjM5YjYzNjUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiQ05DXHU1MmEwXHU1ZGU1XHU5MGU4XHU1NGMxIiwidGV4dF9hbGlnbiI6ImxlZnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-c570843 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\\\" data-id=\\\"c570843\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"image-gallery.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-image-gallery\\\">\\n\\t\\t\\t<div id=\'gallery-2\' class=\'gallery galleryid-3003 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon portrait\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"c570843\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rNS5qcGciLCJzbGlkZXNob3ciOiJjNTcwODQzIn0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok5.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok5.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"c570843\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rNC5wbmciLCJzbGlkZXNob3ciOiJjNTcwODQzIn0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok4.png\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok4.png\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"c570843\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW1hY2hpbmUyMi5hdmlmIiwic2xpZGVzaG93IjoiYzU3MDg0MyJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-machine22.avif\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-machine22.avif\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"c570843\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW1hY2hpbmUzLmpwZyIsInNsaWRlc2hvdyI6ImM1NzA4NDMifQ%3D%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-machine3.jpg\'><img width=\\\"150\\\" height=\\\"100\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-machine3.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"c570843\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rMy5wbmciLCJzbGlkZXNob3ciOiJjNTcwODQzIn0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok3.png\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok3.png\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"c570843\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rMS5wbmciLCJzbGlkZXNob3ciOiJjNTcwODQzIn0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok1.png\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok1.png\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"c570843\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rMi5wbmciLCJzbGlkZXNob3ciOiJjNTcwODQzIn0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok2.png\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok2.png\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"c570843\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rNy5wbmciLCJzbGlkZXNob3ciOiJjNTcwODQzIn0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok7.png\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok7.png\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"c570843\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rOS5qcGciLCJzbGlkZXNob3ciOiJjNTcwODQzIn0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok9.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok9.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"c570843\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rOC5qcGciLCJzbGlkZXNob3ciOiJjNTcwODQzIn0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok8.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok8.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon portrait\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"c570843\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejU3MDk0NDM0NzY3OTdfY2IzZTllMGQ1OTZhZDYzMzEzNjZiOGE3MTFmNDY5MjYuanBnIiwic2xpZGVzaG93IjoiYzU3MDg0MyJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z5709443476797_cb3e9e0d596ad6331366b8a711f46926.jpg\'><img width=\\\"113\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z5709443476797_cb3e9e0d596ad6331366b8a711f46926.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure>\\n\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element data=\\\"eyJpZCI6ImZlYjYwMDAiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiXHU2NzdmXHU5MWQxXHU1MmEwXHU1ZGU1XHVmZjA2XHU4OGZkXHU0ZjVjIiwidGV4dF9hbGlnbiI6ImxlZnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-1cd9da4 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\\\" data-id=\\\"1cd9da4\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"image-gallery.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-image-gallery\\\">\\n\\t\\t\\t<div id=\'gallery-3\' class=\'gallery galleryid-3003 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"1cd9da4\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWwxLmpwZyIsInNsaWRlc2hvdyI6IjFjZDlkYTQifQ%3D%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal1.jpg\'><img width=\\\"150\\\" height=\\\"84\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal1.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"1cd9da4\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWwzLmpwZyIsInNsaWRlc2hvdyI6IjFjZDlkYTQifQ%3D%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal3.jpg\'><img width=\\\"150\\\" height=\\\"84\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal3.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"1cd9da4\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw0LmpwZyIsInNsaWRlc2hvdyI6IjFjZDlkYTQifQ%3D%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal4.jpg\'><img width=\\\"150\\\" height=\\\"84\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal4.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"1cd9da4\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw1LmpwZyIsInNsaWRlc2hvdyI6IjFjZDlkYTQifQ%3D%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal5.jpg\'><img width=\\\"150\\\" height=\\\"113\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal5.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"1cd9da4\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw3LmpwZyIsInNsaWRlc2hvdyI6IjFjZDlkYTQifQ%3D%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal7.jpg\'><img width=\\\"150\\\" height=\\\"113\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal7.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"1cd9da4\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw4LmpwZyIsInNsaWRlc2hvdyI6IjFjZDlkYTQifQ%3D%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal8.jpg\'><img width=\\\"150\\\" height=\\\"113\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal8.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon portrait\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"1cd9da4\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw5LmpwZyIsInNsaWRlc2hvdyI6IjFjZDlkYTQifQ%3D%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal9.jpg\'><img width=\\\"113\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal9.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon portrait\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"1cd9da4\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWwxMC5qcGciLCJzbGlkZXNob3ciOiIxY2Q5ZGE0In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal10.jpg\'><img width=\\\"113\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal10.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon portrait\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"1cd9da4\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWwyLnBuZyIsInNsaWRlc2hvdyI6IjFjZDlkYTQifQ%3D%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal2.png\'><img width=\\\"84\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal2.png\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon portrait\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"1cd9da4\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw2LmpwZyIsInNsaWRlc2hvdyI6IjFjZDlkYTQifQ%3D%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal6.jpg\'><img width=\\\"113\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal6.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure>\\n\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element data=\\\"eyJpZCI6Ijc0MTQwMTIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiXHU5MWQxXHU1NzhiXHUzMGZiXHUzMGMwXHUzMGE0XHU5MGU4XHU1NGMxIiwidGV4dF9hbGlnbiI6ImxlZnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-2c28c08 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\\\" data-id=\\\"2c28c08\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"image-gallery.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-image-gallery\\\">\\n\\t\\t\\t<div id=\'gallery-4\' class=\'gallery galleryid-3003 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon portrait\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"2c28c08\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzYxNjUzNzJfODI1NjkzMjRkZTFjOGZjYzM3NmNjMGU3MzdjMDUyMGUuanBnIiwic2xpZGVzaG93IjoiMmMyOGMwOCJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\'><img width=\\\"113\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon portrait\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"2c28c08\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzY0NTU3NzVfOTdhOTM3ODA3YzgwN2JmNzEzNjk0MTlhMGE1ZDNkMmMuanBnIiwic2xpZGVzaG93IjoiMmMyOGMwOCJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\'><img width=\\\"68\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon portrait\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"2c28c08\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzU4OTM2OTJfNDhmNGE5ZjdjN2E5ZDA1ZGMwMzdhODBhYzFlNTc4MmIuanBnIiwic2xpZGVzaG93IjoiMmMyOGMwOCJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\'><img width=\\\"113\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon portrait\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"2c28c08\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzYwMDk1MTRfYWQ5MDg4N2YyNWQ3MzRlYzJkMjFkOGE2YTYzNGZmMmQuanBnIiwic2xpZGVzaG93IjoiMmMyOGMwOCJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\'><img width=\\\"113\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon portrait\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"2c28c08\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzY3MjE1ODZfMTZiOTE5ODQyMGIzOTlmOWQ4MmMwNThkOTA4MmEzZTAuanBnIiwic2xpZGVzaG93IjoiMmMyOGMwOCJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\'><img width=\\\"113\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon portrait\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"2c28c08\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzYxMTA0MjZfYzNlY2UzZWM1NmY5ZThjYzBlNWM5YTk4Zjk3OTJiZmMuanBnIiwic2xpZGVzaG93IjoiMmMyOGMwOCJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\'><img width=\\\"113\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure>\\n\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element data=\\\"eyJpZCI6IjYzYTE5YzciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiXHU3NTIzXHU2OTZkXHU3NTI4XHUzMGQ1XHUzMGExXHUzMGI5XHUzMGNhXHUzMGZjXHVmZjA2XHUzMGRjXHUzMGViXHUzMGM4IiwidGV4dF9hbGlnbiI6ImxlZnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-66c41e5 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\\\" data-id=\\\"66c41e5\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"image-gallery.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-image-gallery\\\">\\n\\t\\t\\t<div id=\'gallery-5\' class=\'gallery galleryid-3003 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"66c41e5\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvSU1HXzEyMzcuanBlZyIsInNsaWRlc2hvdyI6IjY2YzQxZTUifQ%3D%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/IMG_1237.jpeg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/IMG_1237.jpeg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"66c41e5\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvRFNDMDA4MjIuanBnIiwic2xpZGVzaG93IjoiNjZjNDFlNSJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/DSC00822.jpg\'><img width=\\\"150\\\" height=\\\"100\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/DSC00822.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure>\\n\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element data=\\\"eyJpZCI6IjI2YWJmNDQiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiXHU1ZGU1XHU1MTc3IiwidGV4dF9hbGlnbiI6ImxlZnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-a432afc gallery-spacing-custom elementor-widget elementor-widget-image-gallery\\\" data-id=\\\"a432afc\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"image-gallery.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-image-gallery\\\">\\n\\t\\t\\t<div id=\'gallery-6\' class=\'gallery galleryid-3003 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"a432afc\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwMTgzMzRfMTdjNWZhYzk2ZmIyODQzZDc0YTc2Y2M3OWY5YjRmNWMuanBnIiwic2xpZGVzaG93IjoiYTQzMmFmYyJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\'><img width=\\\"150\\\" height=\\\"135\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"a432afc\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwMzczNTNfZGI4NzczMmIzZWE5ZDkzNTM2YmNkM2FlYzY0ODM1YTcuanBnIiwic2xpZGVzaG93IjoiYTQzMmFmYyJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon portrait\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"a432afc\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNTkxNjJfMDUzYjM2NGFiNzYxZGM1YTQ0Mjc5ZmFmNjQzOTUzMjQuanBnIiwic2xpZGVzaG93IjoiYTQzMmFmYyJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\'><img width=\\\"70\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"a432afc\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNzgzNzJfNTBhYmNlNTI0OWM4YWNkY2ZiZGY4YTA2MzQ4OWUxODYuanBnIiwic2xpZGVzaG93IjoiYTQzMmFmYyJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"a432afc\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNzg1NzBfMGFiNThiNDZiZjY4M2RmNmVjZGIyYzJkODc5NDViYTYuanBnIiwic2xpZGVzaG93IjoiYTQzMmFmYyJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\'><img width=\\\"150\\\" height=\\\"129\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"a432afc\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk2ODQ5NDkwODZfYjI5ZmRiNTAxMTRhMTk2Y2MzZmRjYzllMTJjYWYxMDUuanBnIiwic2xpZGVzaG93IjoiYTQzMmFmYyJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\'><img width=\\\"150\\\" height=\\\"128\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon portrait\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"a432afc\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk2ODQ5NDY2NDFfMTUwMGZiZTE2ZmVjM2ExNGVhZGI4ZTRhZWQxY2Y2M2YuanBnIiwic2xpZGVzaG93IjoiYTQzMmFmYyJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\'><img width=\\\"113\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure>\\n\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element data=\\\"eyJpZCI6ImNhZTFhNDkiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiXHUzMGI4XHUzMGIwIiwidGV4dF9hbGlnbiI6ImxlZnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-8703d3d gallery-spacing-custom elementor-widget elementor-widget-image-gallery\\\" data-id=\\\"8703d3d\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"image-gallery.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-image-gallery\\\">\\n\\t\\t\\t<div id=\'gallery-7\' class=\'gallery galleryid-3003 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon portrait\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"8703d3d\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NDY1OTEzMzg2ODdfZmE1MTRlMTY0ZjJlZTk5NjFjZmVlY2U5YjJhMjk2MmUuanBnIiwic2xpZGVzaG93IjoiODcwM2QzZCJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\'><img width=\\\"113\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon portrait\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"8703d3d\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTE0ODI0OTc5ODFfNGZlOGQ1MmM3N2ZiOTcwYWNjYWNhOTkzMTFiM2U1YjguanBnIiwic2xpZGVzaG93IjoiODcwM2QzZCJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\'><img width=\\\"113\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon portrait\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"8703d3d\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNTQzNzc3MTM5OTRfNzMxZjNhYzFmN2YzMjMyNjExMWE0MWY2N2Q0YTJlMzMuanBnIiwic2xpZGVzaG93IjoiODcwM2QzZCJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\'><img width=\\\"113\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon portrait\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"8703d3d\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE2NTM3NjdfNzk3Y2FkYTk3Yjk4NjQyZTYyYzkxODU3YzYwYjViNDQuanBnIiwic2xpZGVzaG93IjoiODcwM2QzZCJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\'><img width=\\\"113\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon portrait\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"8703d3d\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NDY1OTEzNDkxOTRfZDUwMTBkMTcwMGM3Y2ViNDkxYjk3OGIwMWJlM2RkMjguanBnIiwic2xpZGVzaG93IjoiODcwM2QzZCJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\'><img width=\\\"113\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure>\\n\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\",\"scripts\":[],\"styles\":[]}}'),(10799,3028,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:18:\"widget-text-editor\";i:1;s:12:\"widget-image\";}}'),(10802,26,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:18:\"widget-text-editor\";i:1;s:12:\"widget-image\";}}'),(10805,3022,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:18:\"widget-text-editor\";i:1;s:12:\"widget-image\";}}'),(10807,3286,'_wp_attached_file','2025/03/profile.pdf'),(10808,3286,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:12331689;}'),(10809,3287,'_wp_page_template','default'),(10810,3287,'_elementor_edit_mode','builder'),(10811,3287,'_elementor_template_type','wp-page'),(10812,3287,'_elementor_version','3.24.7'),(10813,3287,'_elementor_data','[{\"id\":\"c986484\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"21\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab9e3e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.324,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cc7a78\",\"elType\":\"widget\",\"settings\":{\"title\":\"We satisfy you with innovative ideas and quality work.\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"sub_title\":\"About us\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c469998\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We exceed expectations through innovative ideas and exceptional craftsmanship.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11334c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2442360\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d195ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-01.png\",\"id\":612},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b2107e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Time manage\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c366e73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Efficiently organizing tasks to maximize productivity and meet deadlines.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d099fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c4ae19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-02.png\",\"id\":613},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ba24a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fulfill target\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bdc9adf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Achieving goals with precision and commitment, ensuring success.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ba92fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.676,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae4fae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218231.webp\",\"id\":2503,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"0c406f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature1.png\",\"id\":2538,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Tin Luu\",\"desc\":\"(Chairman and founder)\",\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to know more about us?\",\"desc\":\"Just download brochure...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"},\"btn_link\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/BROCHURE.pdf\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-scaled.jpg\",\"id\":663},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"060\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.937},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Far East High Tech is a professional builder company\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.063},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Far East High Tech is a leading company in building and manufacturing high-quality mechanical solutions.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e9a883e\",\"elType\":\"widget\",\"settings\":{\"start_text\":\"Start\",\"end_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"history\":[{\"_id\":\"7d82651\",\"title\":\"20th Nov, 2018\",\"content\":\"Far East Tech was established in Qu\\u1ebf V\\u00f5, B\\u1eafc Ninh with 5 founding members.\"},{\"_id\":\"37eb5f9\",\"title\":\"1st Apr, 2021\",\"content\":\"With the strong growth of Far East Tech, we decided to expand our branch in the South.\"},{\"_id\":\"2e7ebbf\",\"title\":\"30th Apr, 2021\",\"content\":\"We successfully acquired DMM Precision Engineering Co., Ltd. in B\\u00ecnh D\\u01b0\\u01a1ng, a company with experience in exporting goods to Japan since 2016,\\nand thus, we established a machining company in the southern region.\"},{\"_id\":\"6c49f4c\",\"title\":\"1st Jun, 2022\",\"content\":\"Far East Tech took a significant step in industrial-scale production with a 2000m2 workshop and 70 CNC machines in B\\u1eafc Ninh.\"},{\"_id\":\"de48600\",\"title\":\"2024\",\"content\":\"DMM Precision Engineering Co., Ltd. officially changed its name to Far East High Tech Co., Ltd.\\nAfter 2025: This will be a year of strong development for our company team.\"}]},\"elements\":[],\"widgetType\":\"ct_history\"}],\"isInner\":false}],\"isInner\":false}]'),(10814,3287,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:6;s:18:\"title_space_bottom\";i:3;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:4;s:22:\"sub_title_space_bottom\";i:3;s:15:\"sub_title_color\";i:1;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:5;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:7;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}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:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;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:10;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:3;s:13:\"margin_mobile\";i:3;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:3;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:6;s:7:\"padding\";i:6;s:14:\"padding_tablet\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:5:\"image\";i:1;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"ct_cta\";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:\"source_section\";a:4:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:4:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:14:\"slides_to_show\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:16:\"slides_to_scroll\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:6:\"arrows\";i:1;s:8:\"autoplay\";i:1;s:8:\"infinite\";i:1;}}}}}'),(10815,3287,'_elementor_css','a:6:{s:4:\"time\";i:1742181807;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(10816,3287,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:18:\"widget-text-editor\";i:1;s:12:\"widget-image\";}}'),(10817,3287,'_elementor_element_cache','{\"timeout\":1742268207,\"value\":{\"content\":\"        <section class=\"elementor-section elementor-top-section elementor-element elementor-element-c986484 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"c986484\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-ab9e3e7\" data-id=\"ab9e3e7\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjJjYzdhNzgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IldlIHNhdGlzZnkgeW91IHdpdGggaW5ub3ZhdGl2ZSBpZGVhcyBhbmQgcXVhbGl0eSB3b3JrLiIsInRpdGxlX3NwYWNlX2JvdHRvbSI6eyJ1bml0IjoicHgiLCJzaXplIjoyMywic2l6ZXMiOltdfSwic3ViX3RpdGxlIjoiQWJvdXQgdXMiLCJzdWJfdGl0bGVfc3BhY2VfYm90dG9tIjp7InVuaXQiOiJweCIsInNpemUiOjYsInNpemVzIjpbXX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]tt<div class=\"elementor-element elementor-element-c469998 elementor-widget elementor-widget-text-editor\" data-id=\"c469998\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>We exceed expectations through innovative ideas and exceptional craftsmanship.</p>tttttt</div>ntttt</div>ntt        <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-11334c5 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"11334c5\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-2442360\" data-id=\"2442360\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-4d195ec elementor-widget elementor-widget-image\" data-id=\"4d195ec\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"59\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png\" class=\"attachment-full size-full wp-image-612\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImIyMTA3ZTciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IlRpbWUgbWFuYWdlIiwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MjAsInNpemVzIjpbXX0sInRpdGxlX3NwYWNlX2JvdHRvbSI6eyJ1bml0IjoicHgiLCJzaXplIjoxOCwic2l6ZXMiOltdfSwidGV4dF9hbGlnbiI6ImNlbnRlciJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]tt<div class=\"elementor-element elementor-element-c366e73 elementor-widget elementor-widget-text-editor\" data-id=\"c366e73\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Efficiently organizing tasks to maximize productivity and meet deadlines.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-7d099fe\" data-id=\"7d099fe\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-6c4ae19 elementor-widget elementor-widget-image\" data-id=\"6c4ae19\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"55\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-02.png\" class=\"attachment-full size-full wp-image-613\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6IjliYTI0YTUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkZ1bGZpbGwgdGFyZ2V0IiwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MjAsInNpemVzIjpbXX0sInRpdGxlX3NwYWNlX2JvdHRvbSI6eyJ1bml0IjoicHgiLCJzaXplIjoxOCwic2l6ZXMiOltdfSwidGV4dF9hbGlnbiI6ImNlbnRlciJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]tt<div class=\"elementor-element elementor-element-bdc9adf elementor-widget elementor-widget-text-editor\" data-id=\"bdc9adf\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Achieving goals with precision and commitment, ensuring success.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-3ba92fc\" data-id=\"3ba92fc\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjJhZTRmYWUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJpbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yMjE4MjMxLndlYnAiLCJpZCI6MjUwMywiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2Jhbm5lciJ9\"][elementor-element data=\"eyJpZCI6IjBjNDA2ZjkiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJpbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzExXC9zaWduYXR1cmUxLnBuZyIsImlkIjoyNTM4LCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJ0aXRsZSI6IlRpbiBMdXUiLCJkZXNjIjoiKENoYWlybWFuIGFuZCBmb3VuZGVyKSIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMjEiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3Rfc2lnbmF0dXJlIn0=\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-3328b5d elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"3328b5d\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-2933d62\" data-id=\"2933d62\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjFhMDNjMGIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IldhbnQgdG8ga25vdyBtb3JlIGFib3V0IHVzPyIsImRlc2MiOiJKdXN0IGRvd25sb2FkIGJyb2NodXJlLi4uIiwiYnRuX3RleHQiOiJEb3dubG9hZCBCcm9jaHVyZSIsImJ0bl9pY29uIjp7InZhbHVlIjoiZmFzIGZhLWNsb3VkLWRvd25sb2FkLWFsdCIsImxpYnJhcnkiOiJmYS1zb2xpZCJ9LCJidG5fbGluayI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9CUk9DSFVSRS5wZGYiLCJpc19leHRlcm5hbCI6Im9uIiwibm9mb2xsb3ciOiJvbiIsImN1c3RvbV9hdHRyaWJ1dGVzIjoiIn19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9jdGEifQ==\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-a158a9e elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"a158a9e\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n                            <div class=\"elementor-background-overlay\"></div>n                n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-30c4d43\" data-id=\"30c4d43\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n                <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-7a3aa06 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"7a3aa06\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-ba6ff94\" data-id=\"ba6ff94\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6Ijc4Y2JiYjZmIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJGYXIgRWFzdCBIaWdoIFRlY2ggaXMgYSBwcm9mZXNzaW9uYWwgYnVpbGRlciBjb21wYW55Iiwic3ViX3RpdGxlIjoiQ29tcGFueSBoaXN0b3J5IiwidGl0bGVfY29sb3IiOiIjZmZmZmZmIiwic3ViX3RpdGxlX2NvbG9yIjoiI2EwYTBhMCIsInN1Yl90aXRsZV9zcGFjZV9ib3R0b20iOnsidW5pdCI6InB4Iiwic2l6ZSI6Niwic2l6ZXMiOltdfX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-0de7bd2\" data-id=\"0de7bd2\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-7398b831 elementor-widget elementor-widget-text-editor\" data-id=\"7398b831\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Far East High Tech is a leading company in building and manufacturing high-quality mechanical solutions.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n        [elementor-element data=\"eyJpZCI6ImU5YTg4M2UiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJzdGFydF90ZXh0IjoiU3RhcnQiLCJlbmRfaW1hZ2UiOnsidXJsIjoiIiwiaWQiOiIiLCJzaXplIjoiIiwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSJ9LCJoaXN0b3J5IjpbeyJfaWQiOiI3ZDgyNjUxIiwidGl0bGUiOiIyMHRoIE5vdiwgMjAxOCIsImNvbnRlbnQiOiJGYXIgRWFzdCBUZWNoIHdhcyBlc3RhYmxpc2hlZCBpbiBRdVx1MWViZiBWXHUwMGY1LCBCXHUxZWFmYyBOaW5oIHdpdGggNSBmb3VuZGluZyBtZW1iZXJzLiJ9LHsiX2lkIjoiMzdlYjVmOSIsInRpdGxlIjoiMXN0IEFwciwgMjAyMSIsImNvbnRlbnQiOiJXaXRoIHRoZSBzdHJvbmcgZ3Jvd3RoIG9mIEZhciBFYXN0IFRlY2gsIHdlIGRlY2lkZWQgdG8gZXhwYW5kIG91ciBicmFuY2ggaW4gdGhlIFNvdXRoLiJ9LHsiX2lkIjoiMmU3ZWJiZiIsInRpdGxlIjoiMzB0aCBBcHIsIDIwMjEiLCJjb250ZW50IjoiV2Ugc3VjY2Vzc2Z1bGx5IGFjcXVpcmVkIERNTSBQcmVjaXNpb24gRW5naW5lZXJpbmcgQ28uLCBMdGQuIGluIEJcdTAwZWNuaCBEXHUwMWIwXHUwMWExbmcsIGEgY29tcGFueSB3aXRoIGV4cGVyaWVuY2UgaW4gZXhwb3J0aW5nIGdvb2RzIHRvIEphcGFuIHNpbmNlIDIwMTYsXG5hbmQgdGh1cywgd2UgZXN0YWJsaXNoZWQgYSBtYWNoaW5pbmcgY29tcGFueSBpbiB0aGUgc291dGhlcm4gcmVnaW9uLiJ9LHsiX2lkIjoiNmM0OWY0YyIsInRpdGxlIjoiMXN0IEp1biwgMjAyMiIsImNvbnRlbnQiOiJGYXIgRWFzdCBUZWNoIHRvb2sgYSBzaWduaWZpY2FudCBzdGVwIGluIGluZHVzdHJpYWwtc2NhbGUgcHJvZHVjdGlvbiB3aXRoIGEgMjAwMG0yIHdvcmtzaG9wIGFuZCA3MCBDTkMgbWFjaGluZXMgaW4gQlx1MWVhZmMgTmluaC4ifSx7Il9pZCI6ImRlNDg2MDAiLCJ0aXRsZSI6IjIwMjQiLCJjb250ZW50IjoiRE1NIFByZWNpc2lvbiBFbmdpbmVlcmluZyBDby4sIEx0ZC4gb2ZmaWNpYWxseSBjaGFuZ2VkIGl0cyBuYW1lIHRvIEZhciBFYXN0IEhpZ2ggVGVjaCBDby4sIEx0ZC5cbkFmdGVyIDIwMjU6IFRoaXMgd2lsbCBiZSBhIHllYXIgb2Ygc3Ryb25nIGRldmVsb3BtZW50IGZvciBvdXIgY29tcGFueSB0ZWFtLiJ9XX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hpc3RvcnkifQ==\"]            </div>n        </div>n                    </div>n        </section>n        \",\"scripts\":[],\"styles\":[\"widget-text-editor\",\"widget-image\"]}}'),(10818,3288,'_wp_page_template','default'),(10819,3288,'_elementor_edit_mode','builder'),(10820,3288,'_elementor_template_type','wp-page'),(10821,3288,'_elementor_version','3.24.7'),(10822,3288,'_elementor_data','[{\"id\":\"c986484\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"21\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab9e3e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.324,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cc7a78\",\"elType\":\"widget\",\"settings\":{\"title\":\"We satisfy you with innovative ideas and quality work.\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"sub_title\":\"About us\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c469998\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We exceed expectations through innovative ideas and exceptional craftsmanship.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11334c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2442360\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d195ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-01.png\",\"id\":612},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b2107e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Time manage\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c366e73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Efficiently organizing tasks to maximize productivity and meet deadlines.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d099fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c4ae19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-02.png\",\"id\":613},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ba24a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fulfill target\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bdc9adf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Achieving goals with precision and commitment, ensuring success.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ba92fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.676,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae4fae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218231.webp\",\"id\":2503,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"0c406f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature1.png\",\"id\":2538,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Tin Luu\",\"desc\":\"(Chairman and founder)\",\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to know more about us?\",\"desc\":\"Just download brochure...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"},\"btn_link\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/BROCHURE.pdf\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-scaled.jpg\",\"id\":663},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"060\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.937},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Far East High Tech is a professional builder company\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.063},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Far East High Tech is a leading company in building and manufacturing high-quality mechanical solutions.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e9a883e\",\"elType\":\"widget\",\"settings\":{\"start_text\":\"Start\",\"end_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"history\":[{\"_id\":\"7d82651\",\"title\":\"20th Nov, 2018\",\"content\":\"Far East Tech was established in Qu\\u1ebf V\\u00f5, B\\u1eafc Ninh with 5 founding members.\"},{\"_id\":\"37eb5f9\",\"title\":\"1st Apr, 2021\",\"content\":\"With the strong growth of Far East Tech, we decided to expand our branch in the South.\"},{\"_id\":\"2e7ebbf\",\"title\":\"30th Apr, 2021\",\"content\":\"We successfully acquired DMM Precision Engineering Co., Ltd. in B\\u00ecnh D\\u01b0\\u01a1ng, a company with experience in exporting goods to Japan since 2016,\\nand thus, we established a machining company in the southern region.\"},{\"_id\":\"6c49f4c\",\"title\":\"1st Jun, 2022\",\"content\":\"Far East Tech took a significant step in industrial-scale production with a 2000m2 workshop and 70 CNC machines in B\\u1eafc Ninh.\"},{\"_id\":\"de48600\",\"title\":\"2024\",\"content\":\"DMM Precision Engineering Co., Ltd. officially changed its name to Far East High Tech Co., Ltd.\\nAfter 2025: This will be a year of strong development for our company team.\"}]},\"elements\":[],\"widgetType\":\"ct_history\"}],\"isInner\":false}],\"isInner\":false}]'),(10823,3288,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:6;s:18:\"title_space_bottom\";i:3;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:4;s:22:\"sub_title_space_bottom\";i:3;s:15:\"sub_title_color\";i:1;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:5;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:7;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}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:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;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:10;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:3;s:13:\"margin_mobile\";i:3;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:3;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:6;s:7:\"padding\";i:6;s:14:\"padding_tablet\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:5:\"image\";i:1;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"ct_cta\";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:\"source_section\";a:4:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:4:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:14:\"slides_to_show\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:16:\"slides_to_scroll\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:6:\"arrows\";i:1;s:8:\"autoplay\";i:1;s:8:\"infinite\";i:1;}}}}}'),(10824,3288,'_elementor_css','a:6:{s:4:\"time\";i:1742181807;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(10825,3288,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:18:\"widget-text-editor\";i:1;s:12:\"widget-image\";}}'),(10826,3288,'_elementor_element_cache','{\"timeout\":1742268207,\"value\":{\"content\":\"        <section class=\"elementor-section elementor-top-section elementor-element elementor-element-c986484 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"c986484\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-ab9e3e7\" data-id=\"ab9e3e7\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjJjYzdhNzgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IldlIHNhdGlzZnkgeW91IHdpdGggaW5ub3ZhdGl2ZSBpZGVhcyBhbmQgcXVhbGl0eSB3b3JrLiIsInRpdGxlX3NwYWNlX2JvdHRvbSI6eyJ1bml0IjoicHgiLCJzaXplIjoyMywic2l6ZXMiOltdfSwic3ViX3RpdGxlIjoiQWJvdXQgdXMiLCJzdWJfdGl0bGVfc3BhY2VfYm90dG9tIjp7InVuaXQiOiJweCIsInNpemUiOjYsInNpemVzIjpbXX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]tt<div class=\"elementor-element elementor-element-c469998 elementor-widget elementor-widget-text-editor\" data-id=\"c469998\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>We exceed expectations through innovative ideas and exceptional craftsmanship.</p>tttttt</div>ntttt</div>ntt        <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-11334c5 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"11334c5\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-2442360\" data-id=\"2442360\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-4d195ec elementor-widget elementor-widget-image\" data-id=\"4d195ec\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"59\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png\" class=\"attachment-full size-full wp-image-612\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImIyMTA3ZTciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IlRpbWUgbWFuYWdlIiwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MjAsInNpemVzIjpbXX0sInRpdGxlX3NwYWNlX2JvdHRvbSI6eyJ1bml0IjoicHgiLCJzaXplIjoxOCwic2l6ZXMiOltdfSwidGV4dF9hbGlnbiI6ImNlbnRlciJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]tt<div class=\"elementor-element elementor-element-c366e73 elementor-widget elementor-widget-text-editor\" data-id=\"c366e73\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Efficiently organizing tasks to maximize productivity and meet deadlines.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-7d099fe\" data-id=\"7d099fe\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-6c4ae19 elementor-widget elementor-widget-image\" data-id=\"6c4ae19\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"55\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-02.png\" class=\"attachment-full size-full wp-image-613\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6IjliYTI0YTUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkZ1bGZpbGwgdGFyZ2V0IiwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MjAsInNpemVzIjpbXX0sInRpdGxlX3NwYWNlX2JvdHRvbSI6eyJ1bml0IjoicHgiLCJzaXplIjoxOCwic2l6ZXMiOltdfSwidGV4dF9hbGlnbiI6ImNlbnRlciJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]tt<div class=\"elementor-element elementor-element-bdc9adf elementor-widget elementor-widget-text-editor\" data-id=\"bdc9adf\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Achieving goals with precision and commitment, ensuring success.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-3ba92fc\" data-id=\"3ba92fc\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjJhZTRmYWUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJpbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yMjE4MjMxLndlYnAiLCJpZCI6MjUwMywiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2Jhbm5lciJ9\"][elementor-element data=\"eyJpZCI6IjBjNDA2ZjkiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJpbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzExXC9zaWduYXR1cmUxLnBuZyIsImlkIjoyNTM4LCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJ0aXRsZSI6IlRpbiBMdXUiLCJkZXNjIjoiKENoYWlybWFuIGFuZCBmb3VuZGVyKSIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMjEiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3Rfc2lnbmF0dXJlIn0=\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-3328b5d elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"3328b5d\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-2933d62\" data-id=\"2933d62\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjFhMDNjMGIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IldhbnQgdG8ga25vdyBtb3JlIGFib3V0IHVzPyIsImRlc2MiOiJKdXN0IGRvd25sb2FkIGJyb2NodXJlLi4uIiwiYnRuX3RleHQiOiJEb3dubG9hZCBCcm9jaHVyZSIsImJ0bl9pY29uIjp7InZhbHVlIjoiZmFzIGZhLWNsb3VkLWRvd25sb2FkLWFsdCIsImxpYnJhcnkiOiJmYS1zb2xpZCJ9LCJidG5fbGluayI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9CUk9DSFVSRS5wZGYiLCJpc19leHRlcm5hbCI6Im9uIiwibm9mb2xsb3ciOiJvbiIsImN1c3RvbV9hdHRyaWJ1dGVzIjoiIn19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9jdGEifQ==\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-a158a9e elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"a158a9e\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n                            <div class=\"elementor-background-overlay\"></div>n                n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-30c4d43\" data-id=\"30c4d43\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n                <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-7a3aa06 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"7a3aa06\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-ba6ff94\" data-id=\"ba6ff94\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6Ijc4Y2JiYjZmIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJGYXIgRWFzdCBIaWdoIFRlY2ggaXMgYSBwcm9mZXNzaW9uYWwgYnVpbGRlciBjb21wYW55Iiwic3ViX3RpdGxlIjoiQ29tcGFueSBoaXN0b3J5IiwidGl0bGVfY29sb3IiOiIjZmZmZmZmIiwic3ViX3RpdGxlX2NvbG9yIjoiI2EwYTBhMCIsInN1Yl90aXRsZV9zcGFjZV9ib3R0b20iOnsidW5pdCI6InB4Iiwic2l6ZSI6Niwic2l6ZXMiOltdfX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-0de7bd2\" data-id=\"0de7bd2\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-7398b831 elementor-widget elementor-widget-text-editor\" data-id=\"7398b831\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Far East High Tech is a leading company in building and manufacturing high-quality mechanical solutions.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n        [elementor-element data=\"eyJpZCI6ImU5YTg4M2UiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJzdGFydF90ZXh0IjoiU3RhcnQiLCJlbmRfaW1hZ2UiOnsidXJsIjoiIiwiaWQiOiIiLCJzaXplIjoiIiwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSJ9LCJoaXN0b3J5IjpbeyJfaWQiOiI3ZDgyNjUxIiwidGl0bGUiOiIyMHRoIE5vdiwgMjAxOCIsImNvbnRlbnQiOiJGYXIgRWFzdCBUZWNoIHdhcyBlc3RhYmxpc2hlZCBpbiBRdVx1MWViZiBWXHUwMGY1LCBCXHUxZWFmYyBOaW5oIHdpdGggNSBmb3VuZGluZyBtZW1iZXJzLiJ9LHsiX2lkIjoiMzdlYjVmOSIsInRpdGxlIjoiMXN0IEFwciwgMjAyMSIsImNvbnRlbnQiOiJXaXRoIHRoZSBzdHJvbmcgZ3Jvd3RoIG9mIEZhciBFYXN0IFRlY2gsIHdlIGRlY2lkZWQgdG8gZXhwYW5kIG91ciBicmFuY2ggaW4gdGhlIFNvdXRoLiJ9LHsiX2lkIjoiMmU3ZWJiZiIsInRpdGxlIjoiMzB0aCBBcHIsIDIwMjEiLCJjb250ZW50IjoiV2Ugc3VjY2Vzc2Z1bGx5IGFjcXVpcmVkIERNTSBQcmVjaXNpb24gRW5naW5lZXJpbmcgQ28uLCBMdGQuIGluIEJcdTAwZWNuaCBEXHUwMWIwXHUwMWExbmcsIGEgY29tcGFueSB3aXRoIGV4cGVyaWVuY2UgaW4gZXhwb3J0aW5nIGdvb2RzIHRvIEphcGFuIHNpbmNlIDIwMTYsXG5hbmQgdGh1cywgd2UgZXN0YWJsaXNoZWQgYSBtYWNoaW5pbmcgY29tcGFueSBpbiB0aGUgc291dGhlcm4gcmVnaW9uLiJ9LHsiX2lkIjoiNmM0OWY0YyIsInRpdGxlIjoiMXN0IEp1biwgMjAyMiIsImNvbnRlbnQiOiJGYXIgRWFzdCBUZWNoIHRvb2sgYSBzaWduaWZpY2FudCBzdGVwIGluIGluZHVzdHJpYWwtc2NhbGUgcHJvZHVjdGlvbiB3aXRoIGEgMjAwMG0yIHdvcmtzaG9wIGFuZCA3MCBDTkMgbWFjaGluZXMgaW4gQlx1MWVhZmMgTmluaC4ifSx7Il9pZCI6ImRlNDg2MDAiLCJ0aXRsZSI6IjIwMjQiLCJjb250ZW50IjoiRE1NIFByZWNpc2lvbiBFbmdpbmVlcmluZyBDby4sIEx0ZC4gb2ZmaWNpYWxseSBjaGFuZ2VkIGl0cyBuYW1lIHRvIEZhciBFYXN0IEhpZ2ggVGVjaCBDby4sIEx0ZC5cbkFmdGVyIDIwMjU6IFRoaXMgd2lsbCBiZSBhIHllYXIgb2Ygc3Ryb25nIGRldmVsb3BtZW50IGZvciBvdXIgY29tcGFueSB0ZWFtLiJ9XX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hpc3RvcnkifQ==\"]            </div>n        </div>n                    </div>n        </section>n        \",\"scripts\":[],\"styles\":[\"widget-text-editor\",\"widget-image\"]}}'),(10827,3289,'_wp_page_template','default'),(10828,3289,'_elementor_edit_mode','builder'),(10829,3289,'_elementor_template_type','wp-page'),(10830,3289,'_elementor_version','3.24.7'),(10831,3289,'_elementor_data','[{\"id\":\"c986484\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"21\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab9e3e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.324,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cc7a78\",\"elType\":\"widget\",\"settings\":{\"title\":\"We satisfy you with innovative ideas and quality work.\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"sub_title\":\"About us\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c469998\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We exceed expectations through innovative ideas and exceptional craftsmanship.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11334c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2442360\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d195ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-01.png\",\"id\":612},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b2107e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Time manage\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c366e73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Efficiently organizing tasks to maximize productivity and meet deadlines.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d099fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c4ae19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-02.png\",\"id\":613},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ba24a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fulfill target\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bdc9adf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Achieving goals with precision and commitment, ensuring success.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ba92fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.676,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae4fae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218231.webp\",\"id\":2503,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"0c406f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature1.png\",\"id\":2538,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Tin Luu\",\"desc\":\"(Chairman and founder)\",\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to know more about us?\",\"desc\":\"Just download brochure...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"},\"btn_link\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/profile.pdf\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-scaled.jpg\",\"id\":663},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"060\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.937},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Far East High Tech is a professional builder company\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.063},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Far East High Tech is a leading company in building and manufacturing high-quality mechanical solutions.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e9a883e\",\"elType\":\"widget\",\"settings\":{\"start_text\":\"Start\",\"end_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"history\":[{\"_id\":\"7d82651\",\"title\":\"20th Nov, 2018\",\"content\":\"Far East Tech was established in Qu\\u1ebf V\\u00f5, B\\u1eafc Ninh with 5 founding members.\"},{\"_id\":\"37eb5f9\",\"title\":\"1st Apr, 2021\",\"content\":\"With the strong growth of Far East Tech, we decided to expand our branch in the South.\"},{\"_id\":\"2e7ebbf\",\"title\":\"30th Apr, 2021\",\"content\":\"We successfully acquired DMM Precision Engineering Co., Ltd. in B\\u00ecnh D\\u01b0\\u01a1ng, a company with experience in exporting goods to Japan since 2016,\\nand thus, we established a machining company in the southern region.\"},{\"_id\":\"6c49f4c\",\"title\":\"1st Jun, 2022\",\"content\":\"Far East Tech took a significant step in industrial-scale production with a 2000m2 workshop and 70 CNC machines in B\\u1eafc Ninh.\"},{\"_id\":\"de48600\",\"title\":\"2024\",\"content\":\"DMM Precision Engineering Co., Ltd. officially changed its name to Far East High Tech Co., Ltd.\\nAfter 2025: This will be a year of strong development for our company team.\"}]},\"elements\":[],\"widgetType\":\"ct_history\"}],\"isInner\":false}],\"isInner\":false}]'),(10832,3289,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:6;s:18:\"title_space_bottom\";i:3;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:4;s:22:\"sub_title_space_bottom\";i:3;s:15:\"sub_title_color\";i:1;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:5;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:7;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}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:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;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:10;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:3;s:13:\"margin_mobile\";i:3;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:3;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:6;s:7:\"padding\";i:6;s:14:\"padding_tablet\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:5:\"image\";i:1;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"ct_cta\";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:\"source_section\";a:4:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:4:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:14:\"slides_to_show\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:16:\"slides_to_scroll\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:6:\"arrows\";i:1;s:8:\"autoplay\";i:1;s:8:\"infinite\";i:1;}}}}}'),(10833,3289,'_elementor_css','a:6:{s:4:\"time\";i:1742181807;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(10834,3289,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:18:\"widget-text-editor\";i:1;s:12:\"widget-image\";}}'),(10835,3289,'_elementor_element_cache','{\"timeout\":1742268207,\"value\":{\"content\":\"        <section class=\"elementor-section elementor-top-section elementor-element elementor-element-c986484 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"c986484\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-ab9e3e7\" data-id=\"ab9e3e7\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjJjYzdhNzgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IldlIHNhdGlzZnkgeW91IHdpdGggaW5ub3ZhdGl2ZSBpZGVhcyBhbmQgcXVhbGl0eSB3b3JrLiIsInRpdGxlX3NwYWNlX2JvdHRvbSI6eyJ1bml0IjoicHgiLCJzaXplIjoyMywic2l6ZXMiOltdfSwic3ViX3RpdGxlIjoiQWJvdXQgdXMiLCJzdWJfdGl0bGVfc3BhY2VfYm90dG9tIjp7InVuaXQiOiJweCIsInNpemUiOjYsInNpemVzIjpbXX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]tt<div class=\"elementor-element elementor-element-c469998 elementor-widget elementor-widget-text-editor\" data-id=\"c469998\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>We exceed expectations through innovative ideas and exceptional craftsmanship.</p>tttttt</div>ntttt</div>ntt        <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-11334c5 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"11334c5\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-2442360\" data-id=\"2442360\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-4d195ec elementor-widget elementor-widget-image\" data-id=\"4d195ec\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"59\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png\" class=\"attachment-full size-full wp-image-612\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImIyMTA3ZTciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IlRpbWUgbWFuYWdlIiwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MjAsInNpemVzIjpbXX0sInRpdGxlX3NwYWNlX2JvdHRvbSI6eyJ1bml0IjoicHgiLCJzaXplIjoxOCwic2l6ZXMiOltdfSwidGV4dF9hbGlnbiI6ImNlbnRlciJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]tt<div class=\"elementor-element elementor-element-c366e73 elementor-widget elementor-widget-text-editor\" data-id=\"c366e73\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Efficiently organizing tasks to maximize productivity and meet deadlines.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-7d099fe\" data-id=\"7d099fe\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-6c4ae19 elementor-widget elementor-widget-image\" data-id=\"6c4ae19\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"55\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-02.png\" class=\"attachment-full size-full wp-image-613\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6IjliYTI0YTUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkZ1bGZpbGwgdGFyZ2V0IiwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MjAsInNpemVzIjpbXX0sInRpdGxlX3NwYWNlX2JvdHRvbSI6eyJ1bml0IjoicHgiLCJzaXplIjoxOCwic2l6ZXMiOltdfSwidGV4dF9hbGlnbiI6ImNlbnRlciJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]tt<div class=\"elementor-element elementor-element-bdc9adf elementor-widget elementor-widget-text-editor\" data-id=\"bdc9adf\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Achieving goals with precision and commitment, ensuring success.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-3ba92fc\" data-id=\"3ba92fc\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjJhZTRmYWUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJpbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yMjE4MjMxLndlYnAiLCJpZCI6MjUwMywiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2Jhbm5lciJ9\"][elementor-element data=\"eyJpZCI6IjBjNDA2ZjkiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJpbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzExXC9zaWduYXR1cmUxLnBuZyIsImlkIjoyNTM4LCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJ0aXRsZSI6IlRpbiBMdXUiLCJkZXNjIjoiKENoYWlybWFuIGFuZCBmb3VuZGVyKSIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMjEiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3Rfc2lnbmF0dXJlIn0=\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-3328b5d elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"3328b5d\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-2933d62\" data-id=\"2933d62\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjFhMDNjMGIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IldhbnQgdG8ga25vdyBtb3JlIGFib3V0IHVzPyIsImRlc2MiOiJKdXN0IGRvd25sb2FkIGJyb2NodXJlLi4uIiwiYnRuX3RleHQiOiJEb3dubG9hZCBCcm9jaHVyZSIsImJ0bl9pY29uIjp7InZhbHVlIjoiZmFzIGZhLWNsb3VkLWRvd25sb2FkLWFsdCIsImxpYnJhcnkiOiJmYS1zb2xpZCJ9LCJidG5fbGluayI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9CUk9DSFVSRS5wZGYiLCJpc19leHRlcm5hbCI6Im9uIiwibm9mb2xsb3ciOiJvbiIsImN1c3RvbV9hdHRyaWJ1dGVzIjoiIn19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9jdGEifQ==\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-a158a9e elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"a158a9e\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n                            <div class=\"elementor-background-overlay\"></div>n                n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-30c4d43\" data-id=\"30c4d43\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n                <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-7a3aa06 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"7a3aa06\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-ba6ff94\" data-id=\"ba6ff94\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6Ijc4Y2JiYjZmIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJGYXIgRWFzdCBIaWdoIFRlY2ggaXMgYSBwcm9mZXNzaW9uYWwgYnVpbGRlciBjb21wYW55Iiwic3ViX3RpdGxlIjoiQ29tcGFueSBoaXN0b3J5IiwidGl0bGVfY29sb3IiOiIjZmZmZmZmIiwic3ViX3RpdGxlX2NvbG9yIjoiI2EwYTBhMCIsInN1Yl90aXRsZV9zcGFjZV9ib3R0b20iOnsidW5pdCI6InB4Iiwic2l6ZSI6Niwic2l6ZXMiOltdfX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-0de7bd2\" data-id=\"0de7bd2\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-7398b831 elementor-widget elementor-widget-text-editor\" data-id=\"7398b831\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Far East High Tech is a leading company in building and manufacturing high-quality mechanical solutions.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n        [elementor-element data=\"eyJpZCI6ImU5YTg4M2UiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJzdGFydF90ZXh0IjoiU3RhcnQiLCJlbmRfaW1hZ2UiOnsidXJsIjoiIiwiaWQiOiIiLCJzaXplIjoiIiwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSJ9LCJoaXN0b3J5IjpbeyJfaWQiOiI3ZDgyNjUxIiwidGl0bGUiOiIyMHRoIE5vdiwgMjAxOCIsImNvbnRlbnQiOiJGYXIgRWFzdCBUZWNoIHdhcyBlc3RhYmxpc2hlZCBpbiBRdVx1MWViZiBWXHUwMGY1LCBCXHUxZWFmYyBOaW5oIHdpdGggNSBmb3VuZGluZyBtZW1iZXJzLiJ9LHsiX2lkIjoiMzdlYjVmOSIsInRpdGxlIjoiMXN0IEFwciwgMjAyMSIsImNvbnRlbnQiOiJXaXRoIHRoZSBzdHJvbmcgZ3Jvd3RoIG9mIEZhciBFYXN0IFRlY2gsIHdlIGRlY2lkZWQgdG8gZXhwYW5kIG91ciBicmFuY2ggaW4gdGhlIFNvdXRoLiJ9LHsiX2lkIjoiMmU3ZWJiZiIsInRpdGxlIjoiMzB0aCBBcHIsIDIwMjEiLCJjb250ZW50IjoiV2Ugc3VjY2Vzc2Z1bGx5IGFjcXVpcmVkIERNTSBQcmVjaXNpb24gRW5naW5lZXJpbmcgQ28uLCBMdGQuIGluIEJcdTAwZWNuaCBEXHUwMWIwXHUwMWExbmcsIGEgY29tcGFueSB3aXRoIGV4cGVyaWVuY2UgaW4gZXhwb3J0aW5nIGdvb2RzIHRvIEphcGFuIHNpbmNlIDIwMTYsXG5hbmQgdGh1cywgd2UgZXN0YWJsaXNoZWQgYSBtYWNoaW5pbmcgY29tcGFueSBpbiB0aGUgc291dGhlcm4gcmVnaW9uLiJ9LHsiX2lkIjoiNmM0OWY0YyIsInRpdGxlIjoiMXN0IEp1biwgMjAyMiIsImNvbnRlbnQiOiJGYXIgRWFzdCBUZWNoIHRvb2sgYSBzaWduaWZpY2FudCBzdGVwIGluIGluZHVzdHJpYWwtc2NhbGUgcHJvZHVjdGlvbiB3aXRoIGEgMjAwMG0yIHdvcmtzaG9wIGFuZCA3MCBDTkMgbWFjaGluZXMgaW4gQlx1MWVhZmMgTmluaC4ifSx7Il9pZCI6ImRlNDg2MDAiLCJ0aXRsZSI6IjIwMjQiLCJjb250ZW50IjoiRE1NIFByZWNpc2lvbiBFbmdpbmVlcmluZyBDby4sIEx0ZC4gb2ZmaWNpYWxseSBjaGFuZ2VkIGl0cyBuYW1lIHRvIEZhciBFYXN0IEhpZ2ggVGVjaCBDby4sIEx0ZC5cbkFmdGVyIDIwMjU6IFRoaXMgd2lsbCBiZSBhIHllYXIgb2Ygc3Ryb25nIGRldmVsb3BtZW50IGZvciBvdXIgY29tcGFueSB0ZWFtLiJ9XX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hpc3RvcnkifQ==\"]            </div>n        </div>n                    </div>n        </section>n        \",\"scripts\":[],\"styles\":[\"widget-text-editor\",\"widget-image\"]}}'),(10836,3290,'_wp_page_template','default'),(10837,3290,'_elementor_edit_mode','builder'),(10838,3290,'_elementor_template_type','wp-page'),(10839,3290,'_elementor_version','3.24.7'),(10840,3290,'_elementor_data','[{\"id\":\"c986484\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"21\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab9e3e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.324,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cc7a78\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i l\\u00e0m b\\u1ea1n h\\u00e0i l\\u00f2ng v\\u1edbi nh\\u1eefng \\u00fd t\\u01b0\\u1edfng s\\u00e1ng t\\u1ea1o v\\u00e0 c\\u00f4ng vi\\u1ec7c ch\\u1ea5t l\\u01b0\\u1ee3ng.\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"sub_title\":\"V\\u1ec1 ch\\u00fang t\\u00f4i\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c469998\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ch\\u00fang t\\u00f4i v\\u01b0\\u1ee3t qua mong \\u0111\\u1ee3i nh\\u1edd nh\\u1eefng \\u00fd t\\u01b0\\u1edfng s\\u00e1ng t\\u1ea1o v\\u00e0 tay ngh\\u1ec1 xu\\u1ea5t s\\u1eafc.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11334c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2442360\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d195ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-01.png\",\"id\":612},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b2107e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Qu\\u1ea3n l\\u00fd th\\u1eddi gian\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c366e73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>T\\u1ed5 ch\\u1ee9c c\\u00f4ng vi\\u1ec7c hi\\u1ec7u qu\\u1ea3 \\u0111\\u1ec3 t\\u1ed1i \\u0111a h\\u00f3a n\\u0103ng su\\u1ea5t v\\u00e0 ho\\u00e0n th\\u00e0nh \\u0111\\u00fang h\\u1ea1n.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d099fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c4ae19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-02.png\",\"id\":613},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ba24a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ho\\u00e0n th\\u00e0nh m\\u1ee5c ti\\u00eau\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bdc9adf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u0110\\u1ea1t \\u0111\\u01b0\\u1ee3c m\\u1ee5c ti\\u00eau v\\u1edbi s\\u1ef1 ch\\u00ednh x\\u00e1c v\\u00e0 cam k\\u1ebft, \\u0111\\u1ea3m b\\u1ea3o th\\u00e0nh c\\u00f4ng.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ba92fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.676,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae4fae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218231.webp\",\"id\":2503,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"0c406f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature1.png\",\"id\":2538,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Tin Luu\",\"desc\":\"(Ch\\u1ee7 t\\u1ecbch v\\u00e0 ng\\u01b0\\u1eddi s\\u00e1ng l\\u1eadp)\",\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"B\\u1ea1n mu\\u1ed1n bi\\u1ebft th\\u00eam v\\u1ec1 ch\\u00fang t\\u00f4i?\",\"desc\":\"Ch\\u1ec9 c\\u1ea7n t\\u1ea3i brochure...\",\"btn_text\":\"T\\u1ea3i Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"},\"btn_link\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/BROCHURE.pdf\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-scaled.jpg\",\"id\":663},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"060\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.937},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Far East High Tech l\\u00e0 m\\u1ed9t c\\u00f4ng ty x\\u00e2y d\\u1ef1ng chuy\\u00ean nghi\\u1ec7p.\",\"sub_title\":\"L\\u1ecbch s\\u1eed c\\u00f4ng ty\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.063},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Far East High Tech l\\u00e0 c\\u00f4ng ty h\\u00e0ng \\u0111\\u1ea7u trong vi\\u1ec7c x\\u00e2y d\\u1ef1ng v\\u00e0 s\\u1ea3n xu\\u1ea5t c\\u00e1c gi\\u1ea3i ph\\u00e1p c\\u01a1 kh\\u00ed ch\\u1ea5t l\\u01b0\\u1ee3ng cao.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e9a883e\",\"elType\":\"widget\",\"settings\":{\"start_text\":\"Start\",\"end_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"history\":[{\"_id\":\"7d82651\",\"title\":\"Ng\\u00e0y 20 th\\u00e1ng 11, 2018\",\"content\":\"Far East Tech \\u0111\\u01b0\\u1ee3c th\\u00e0nh l\\u1eadp t\\u1ea1i Qu\\u1ebf V\\u00f5, B\\u1eafc Ninh v\\u1edbi 5 th\\u00e0nh vi\\u00ean s\\u00e1ng l\\u1eadp.\"},{\"_id\":\"37eb5f9\",\"title\":\"Ng\\u00e0y 1 th\\u00e1ng 4, 2021\",\"content\":\"V\\u1edbi s\\u1ef1 ph\\u00e1t tri\\u1ec3n m\\u1ea1nh m\\u1ebd c\\u1ee7a Far East Tech, ch\\u00fang t\\u00f4i quy\\u1ebft \\u0111\\u1ecbnh m\\u1edf r\\u1ed9ng chi nh\\u00e1nh t\\u1ea1i mi\\u1ec1n Nam.\"},{\"_id\":\"2e7ebbf\",\"title\":\"Ng\\u00e0y 30 th\\u00e1ng 4, 2021\",\"content\":\"Ch\\u00fang t\\u00f4i \\u0111\\u00e3 th\\u00e0nh c\\u00f4ng trong vi\\u1ec7c ti\\u1ebfp qu\\u1ea3n c\\u00f4ng ty DMM Precision Engineering Co., Ltd. t\\u1ea1i B\\u00ecnh D\\u01b0\\u01a1ng, m\\u1ed9t c\\u00f4ng ty c\\u00f3 kinh nghi\\u1ec7m xu\\u1ea5t kh\\u1ea9u h\\u00e0ng h\\u00f3a sang Nh\\u1eadt B\\u1ea3n t\\u1eeb n\\u0103m 2016, v\\u00e0 t\\u1eeb \\u0111\\u00f3, ch\\u00fang t\\u00f4i \\u0111\\u00e3 th\\u00e0nh l\\u1eadp m\\u1ed9t c\\u00f4ng ty gia c\\u00f4ng t\\u1ea1i khu v\\u1ef1c mi\\u1ec1n Nam.\"},{\"_id\":\"6c49f4c\",\"title\":\"Ng\\u00e0y 1 th\\u00e1ng 6, 2022\",\"content\":\"Far East Tech \\u0111\\u00e3 ti\\u1ebfn m\\u1ed9t b\\u01b0\\u1edbc quan tr\\u1ecdng trong s\\u1ea3n xu\\u1ea5t quy m\\u00f4 c\\u00f4ng nghi\\u1ec7p v\\u1edbi m\\u1ed9t x\\u01b0\\u1edfng s\\u1ea3n xu\\u1ea5t r\\u1ed9ng 2000m2 v\\u00e0 70 m\\u00e1y CNC t\\u1ea1i B\\u1eafc Ninh.\"},{\"_id\":\"de48600\",\"title\":\"2024\",\"content\":\"C\\u00f4ng ty DMM Precision Engineering Co., Ltd. ch\\u00ednh th\\u1ee9c \\u0111\\u1ed5i t\\u00ean th\\u00e0nh C\\u00f4ng ty TNHH Far East High Tech.\\nSau n\\u0103m 2025: \\u0110\\u00e2y s\\u1ebd l\\u00e0 n\\u0103m ph\\u00e1t tri\\u1ec3n m\\u1ea1nh m\\u1ebd c\\u1ee7a \\u0111\\u1ed9i ng\\u0169 c\\u00f4ng ty ch\\u00fang t\\u00f4i.\"}]},\"elements\":[],\"widgetType\":\"ct_history\"}],\"isInner\":false}],\"isInner\":false}]'),(10841,3290,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:6;s:18:\"title_space_bottom\";i:3;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:4;s:22:\"sub_title_space_bottom\";i:3;s:15:\"sub_title_color\";i:1;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:5;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:7;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}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:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;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:10;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:3;s:13:\"margin_mobile\";i:3;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:3;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:6;s:7:\"padding\";i:6;s:14:\"padding_tablet\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:5:\"image\";i:1;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"ct_cta\";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:\"source_section\";a:4:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:4:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:14:\"slides_to_show\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:16:\"slides_to_scroll\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:6:\"arrows\";i:1;s:8:\"autoplay\";i:1;s:8:\"infinite\";i:1;}}}}}'),(10842,3290,'_elementor_css','a:6:{s:4:\"time\";i:1742181904;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(10843,3290,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:18:\"widget-text-editor\";i:1;s:12:\"widget-image\";}}'),(10844,3290,'_elementor_element_cache','{\"timeout\":1742268304,\"value\":{\"content\":\"        <section class=\"elementor-section elementor-top-section elementor-element elementor-element-c986484 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"c986484\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-ab9e3e7\" data-id=\"ab9e3e7\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjJjYzdhNzgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkNoXHUwMGZhbmcgdFx1MDBmNGkgbFx1MDBlMG0gYlx1MWVhMW4gaFx1MDBlMGkgbFx1MDBmMm5nIHZcdTFlZGJpIG5oXHUxZWVmbmcgXHUwMGZkIHRcdTAxYjBcdTFlZGZuZyBzXHUwMGUxbmcgdFx1MWVhMW8gdlx1MDBlMCBjXHUwMGY0bmcgdmlcdTFlYzdjIGNoXHUxZWE1dCBsXHUwMWIwXHUxZWUzbmcuIiwidGl0bGVfc3BhY2VfYm90dG9tIjp7InVuaXQiOiJweCIsInNpemUiOjIzLCJzaXplcyI6W119LCJzdWJfdGl0bGUiOiJWXHUxZWMxIGNoXHUwMGZhbmcgdFx1MDBmNGkiLCJzdWJfdGl0bGVfc3BhY2VfYm90dG9tIjp7InVuaXQiOiJweCIsInNpemUiOjYsInNpemVzIjpbXX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]tt<div class=\"elementor-element elementor-element-c469998 elementor-widget elementor-widget-text-editor\" data-id=\"c469998\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Chu00fang tu00f4i vu01b0u1ee3t qua mong u0111u1ee3i nhu1edd nhu1eefng u00fd tu01b0u1edfng su00e1ng tu1ea1o vu00e0 tay nghu1ec1 xuu1ea5t su1eafc.</p>tttttt</div>ntttt</div>ntt        <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-11334c5 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"11334c5\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-2442360\" data-id=\"2442360\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-4d195ec elementor-widget elementor-widget-image\" data-id=\"4d195ec\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"59\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png\" class=\"attachment-full size-full wp-image-612\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImIyMTA3ZTciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IlF1XHUxZWEzbiBsXHUwMGZkIHRoXHUxZWRkaSBnaWFuIiwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MjAsInNpemVzIjpbXX0sInRpdGxlX3NwYWNlX2JvdHRvbSI6eyJ1bml0IjoicHgiLCJzaXplIjoxOCwic2l6ZXMiOltdfSwidGV4dF9hbGlnbiI6ImNlbnRlciJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]tt<div class=\"elementor-element elementor-element-c366e73 elementor-widget elementor-widget-text-editor\" data-id=\"c366e73\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Tu1ed5 chu1ee9c cu00f4ng viu1ec7c hiu1ec7u quu1ea3 u0111u1ec3 tu1ed1i u0111a hu00f3a nu0103ng suu1ea5t vu00e0 hou00e0n thu00e0nh u0111u00fang hu1ea1n.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-7d099fe\" data-id=\"7d099fe\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-6c4ae19 elementor-widget elementor-widget-image\" data-id=\"6c4ae19\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"55\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-02.png\" class=\"attachment-full size-full wp-image-613\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6IjliYTI0YTUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkhvXHUwMGUwbiB0aFx1MDBlMG5oIG1cdTFlZTVjIHRpXHUwMGVhdSIsInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplIjp7InVuaXQiOiJweCIsInNpemUiOjIwLCJzaXplcyI6W119LCJ0aXRsZV9zcGFjZV9ib3R0b20iOnsidW5pdCI6InB4Iiwic2l6ZSI6MTgsInNpemVzIjpbXX0sInRleHRfYWxpZ24iOiJjZW50ZXIifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-bdc9adf elementor-widget elementor-widget-text-editor\" data-id=\"bdc9adf\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>u0110u1ea1t u0111u01b0u1ee3c mu1ee5c tiu00eau vu1edbi su1ef1 chu00ednh xu00e1c vu00e0 cam ku1ebft, u0111u1ea3m bu1ea3o thu00e0nh cu00f4ng.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-3ba92fc\" data-id=\"3ba92fc\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjJhZTRmYWUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJpbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yMjE4MjMxLndlYnAiLCJpZCI6MjUwMywiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2Jhbm5lciJ9\"][elementor-element data=\"eyJpZCI6IjBjNDA2ZjkiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJpbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzExXC9zaWduYXR1cmUxLnBuZyIsImlkIjoyNTM4LCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJ0aXRsZSI6IlRpbiBMdXUiLCJkZXNjIjoiKENoXHUxZWU3IHRcdTFlY2JjaCB2XHUwMGUwIG5nXHUwMWIwXHUxZWRkaSBzXHUwMGUxbmcgbFx1MWVhZHApIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIyMSIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9zaWduYXR1cmUifQ==\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-3328b5d elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"3328b5d\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-2933d62\" data-id=\"2933d62\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjFhMDNjMGIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkJcdTFlYTFuIG11XHUxZWQxbiBiaVx1MWViZnQgdGhcdTAwZWFtIHZcdTFlYzEgY2hcdTAwZmFuZyB0XHUwMGY0aT8iLCJkZXNjIjoiQ2hcdTFlYzkgY1x1MWVhN24gdFx1MWVhM2kgYnJvY2h1cmUuLi4iLCJidG5fdGV4dCI6IlRcdTFlYTNpIEJyb2NodXJlIiwiYnRuX2ljb24iOnsidmFsdWUiOiJmYXMgZmEtY2xvdWQtZG93bmxvYWQtYWx0IiwibGlicmFyeSI6ImZhLXNvbGlkIn0sImJ0bl9saW5rIjp7InVybCI6Imh0dHBzOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMTBcL0JST0NIVVJFLnBkZiIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIiwiY3VzdG9tX2F0dHJpYnV0ZXMiOiIifX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2N0YSJ9\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-a158a9e elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"a158a9e\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n                            <div class=\"elementor-background-overlay\"></div>n                n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-30c4d43\" data-id=\"30c4d43\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n                <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-7a3aa06 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"7a3aa06\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-ba6ff94\" data-id=\"ba6ff94\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6Ijc4Y2JiYjZmIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJGYXIgRWFzdCBIaWdoIFRlY2ggbFx1MDBlMCBtXHUxZWQ5dCBjXHUwMGY0bmcgdHkgeFx1MDBlMnkgZFx1MWVmMW5nIGNodXlcdTAwZWFuIG5naGlcdTFlYzdwLiIsInN1Yl90aXRsZSI6IkxcdTFlY2JjaCBzXHUxZWVkIGNcdTAwZjRuZyB0eSIsInRpdGxlX2NvbG9yIjoiI2ZmZmZmZiIsInN1Yl90aXRsZV9jb2xvciI6IiNhMGEwYTAiLCJzdWJfdGl0bGVfc3BhY2VfYm90dG9tIjp7InVuaXQiOiJweCIsInNpemUiOjYsInNpemVzIjpbXX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-0de7bd2\" data-id=\"0de7bd2\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-7398b831 elementor-widget elementor-widget-text-editor\" data-id=\"7398b831\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Far East High Tech lu00e0 cu00f4ng ty hu00e0ng u0111u1ea7u trong viu1ec7c xu00e2y du1ef1ng vu00e0 su1ea3n xuu1ea5t cu00e1c giu1ea3i phu00e1p cu01a1 khu00ed chu1ea5t lu01b0u1ee3ng cao.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n        [elementor-element data=\"eyJpZCI6ImU5YTg4M2UiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJzdGFydF90ZXh0IjoiU3RhcnQiLCJlbmRfaW1hZ2UiOnsidXJsIjoiIiwiaWQiOiIiLCJzaXplIjoiIiwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSJ9LCJoaXN0b3J5IjpbeyJfaWQiOiI3ZDgyNjUxIiwidGl0bGUiOiJOZ1x1MDBlMHkgMjAgdGhcdTAwZTFuZyAxMSwgMjAxOCIsImNvbnRlbnQiOiJGYXIgRWFzdCBUZWNoIFx1MDExMVx1MDFiMFx1MWVlM2MgdGhcdTAwZTBuaCBsXHUxZWFkcCB0XHUxZWExaSBRdVx1MWViZiBWXHUwMGY1LCBCXHUxZWFmYyBOaW5oIHZcdTFlZGJpIDUgdGhcdTAwZTBuaCB2aVx1MDBlYW4gc1x1MDBlMW5nIGxcdTFlYWRwLiJ9LHsiX2lkIjoiMzdlYjVmOSIsInRpdGxlIjoiTmdcdTAwZTB5IDEgdGhcdTAwZTFuZyA0LCAyMDIxIiwiY29udGVudCI6IlZcdTFlZGJpIHNcdTFlZjEgcGhcdTAwZTF0IHRyaVx1MWVjM24gbVx1MWVhMW5oIG1cdTFlYmQgY1x1MWVlN2EgRmFyIEVhc3QgVGVjaCwgY2hcdTAwZmFuZyB0XHUwMGY0aSBxdXlcdTFlYmZ0IFx1MDExMVx1MWVjYm5oIG1cdTFlZGYgclx1MWVkOW5nIGNoaSBuaFx1MDBlMW5oIHRcdTFlYTFpIG1pXHUxZWMxbiBOYW0uIn0seyJfaWQiOiIyZTdlYmJmIiwidGl0bGUiOiJOZ1x1MDBlMHkgMzAgdGhcdTAwZTFuZyA0LCAyMDIxIiwiY29udGVudCI6IkNoXHUwMGZhbmcgdFx1MDBmNGkgXHUwMTExXHUwMGUzIHRoXHUwMGUwbmggY1x1MDBmNG5nIHRyb25nIHZpXHUxZWM3YyB0aVx1MWViZnAgcXVcdTFlYTNuIGNcdTAwZjRuZyB0eSBETU0gUHJlY2lzaW9uIEVuZ2luZWVyaW5nIENvLiwgTHRkLiB0XHUxZWExaSBCXHUwMGVjbmggRFx1MDFiMFx1MDFhMW5nLCBtXHUxZWQ5dCBjXHUwMGY0bmcgdHkgY1x1MDBmMyBraW5oIG5naGlcdTFlYzdtIHh1XHUxZWE1dCBraFx1MWVhOXUgaFx1MDBlMG5nIGhcdTAwZjNhIHNhbmcgTmhcdTFlYWR0IEJcdTFlYTNuIHRcdTFlZWIgblx1MDEwM20gMjAxNiwgdlx1MDBlMCB0XHUxZWViIFx1MDExMVx1MDBmMywgY2hcdTAwZmFuZyB0XHUwMGY0aSBcdTAxMTFcdTAwZTMgdGhcdTAwZTBuaCBsXHUxZWFkcCBtXHUxZWQ5dCBjXHUwMGY0bmcgdHkgZ2lhIGNcdTAwZjRuZyB0XHUxZWExaSBraHUgdlx1MWVmMWMgbWlcdTFlYzFuIE5hbS4ifSx7Il9pZCI6IjZjNDlmNGMiLCJ0aXRsZSI6Ik5nXHUwMGUweSAxIHRoXHUwMGUxbmcgNiwgMjAyMiIsImNvbnRlbnQiOiJGYXIgRWFzdCBUZWNoIFx1MDExMVx1MDBlMyB0aVx1MWViZm4gbVx1MWVkOXQgYlx1MDFiMFx1MWVkYmMgcXVhbiB0clx1MWVjZG5nIHRyb25nIHNcdTFlYTNuIHh1XHUxZWE1dCBxdXkgbVx1MDBmNCBjXHUwMGY0bmcgbmdoaVx1MWVjN3Agdlx1MWVkYmkgbVx1MWVkOXQgeFx1MDFiMFx1MWVkZm5nIHNcdTFlYTNuIHh1XHUxZWE1dCByXHUxZWQ5bmcgMjAwMG0yIHZcdTAwZTAgNzAgbVx1MDBlMXkgQ05DIHRcdTFlYTFpIEJcdTFlYWZjIE5pbmguIn0seyJfaWQiOiJkZTQ4NjAwIiwidGl0bGUiOiIyMDI0IiwiY29udGVudCI6IkNcdTAwZjRuZyB0eSBETU0gUHJlY2lzaW9uIEVuZ2luZWVyaW5nIENvLiwgTHRkLiBjaFx1MDBlZG5oIHRoXHUxZWU5YyBcdTAxMTFcdTFlZDVpIHRcdTAwZWFuIHRoXHUwMGUwbmggQ1x1MDBmNG5nIHR5IFROSEggRmFyIEVhc3QgSGlnaCBUZWNoLlxuU2F1IG5cdTAxMDNtIDIwMjU6IFx1MDExMFx1MDBlMnkgc1x1MWViZCBsXHUwMGUwIG5cdTAxMDNtIHBoXHUwMGUxdCB0cmlcdTFlYzNuIG1cdTFlYTFuaCBtXHUxZWJkIGNcdTFlZTdhIFx1MDExMVx1MWVkOWkgbmdcdTAxNjkgY1x1MDBmNG5nIHR5IGNoXHUwMGZhbmcgdFx1MDBmNGkuIn1dfSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGlzdG9yeSJ9\"]            </div>n        </div>n                    </div>n        </section>n        \",\"scripts\":[],\"styles\":[\"widget-text-editor\",\"widget-image\"]}}'),(10845,3291,'_wp_page_template','default'),(10846,3291,'_elementor_edit_mode','builder'),(10847,3291,'_elementor_template_type','wp-page'),(10848,3291,'_elementor_version','3.24.7'),(10849,3291,'_elementor_data','[{\"id\":\"c986484\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"21\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab9e3e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.324,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cc7a78\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i l\\u00e0m b\\u1ea1n h\\u00e0i l\\u00f2ng v\\u1edbi nh\\u1eefng \\u00fd t\\u01b0\\u1edfng s\\u00e1ng t\\u1ea1o v\\u00e0 c\\u00f4ng vi\\u1ec7c ch\\u1ea5t l\\u01b0\\u1ee3ng.\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"sub_title\":\"V\\u1ec1 ch\\u00fang t\\u00f4i\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c469998\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ch\\u00fang t\\u00f4i v\\u01b0\\u1ee3t qua mong \\u0111\\u1ee3i nh\\u1edd nh\\u1eefng \\u00fd t\\u01b0\\u1edfng s\\u00e1ng t\\u1ea1o v\\u00e0 tay ngh\\u1ec1 xu\\u1ea5t s\\u1eafc.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11334c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2442360\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d195ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-01.png\",\"id\":612},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b2107e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Qu\\u1ea3n l\\u00fd th\\u1eddi gian\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c366e73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>T\\u1ed5 ch\\u1ee9c c\\u00f4ng vi\\u1ec7c hi\\u1ec7u qu\\u1ea3 \\u0111\\u1ec3 t\\u1ed1i \\u0111a h\\u00f3a n\\u0103ng su\\u1ea5t v\\u00e0 ho\\u00e0n th\\u00e0nh \\u0111\\u00fang h\\u1ea1n.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d099fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c4ae19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-02.png\",\"id\":613},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ba24a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ho\\u00e0n th\\u00e0nh m\\u1ee5c ti\\u00eau\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bdc9adf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u0110\\u1ea1t \\u0111\\u01b0\\u1ee3c m\\u1ee5c ti\\u00eau v\\u1edbi s\\u1ef1 ch\\u00ednh x\\u00e1c v\\u00e0 cam k\\u1ebft, \\u0111\\u1ea3m b\\u1ea3o th\\u00e0nh c\\u00f4ng.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ba92fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.676,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae4fae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218231.webp\",\"id\":2503,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"0c406f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature1.png\",\"id\":2538,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Tin Luu\",\"desc\":\"(Ch\\u1ee7 t\\u1ecbch v\\u00e0 ng\\u01b0\\u1eddi s\\u00e1ng l\\u1eadp)\",\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"B\\u1ea1n mu\\u1ed1n bi\\u1ebft th\\u00eam v\\u1ec1 ch\\u00fang t\\u00f4i?\",\"desc\":\"Ch\\u1ec9 c\\u1ea7n t\\u1ea3i brochure...\",\"btn_text\":\"T\\u1ea3i Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"},\"btn_link\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/BROCHURE.pdf\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-scaled.jpg\",\"id\":663},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"060\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.937},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Far East High Tech l\\u00e0 m\\u1ed9t c\\u00f4ng ty x\\u00e2y d\\u1ef1ng chuy\\u00ean nghi\\u1ec7p.\",\"sub_title\":\"L\\u1ecbch s\\u1eed c\\u00f4ng ty\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.063},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Far East High Tech l\\u00e0 c\\u00f4ng ty h\\u00e0ng \\u0111\\u1ea7u trong vi\\u1ec7c x\\u00e2y d\\u1ef1ng v\\u00e0 s\\u1ea3n xu\\u1ea5t c\\u00e1c gi\\u1ea3i ph\\u00e1p c\\u01a1 kh\\u00ed ch\\u1ea5t l\\u01b0\\u1ee3ng cao.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e9a883e\",\"elType\":\"widget\",\"settings\":{\"start_text\":\"Start\",\"end_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"history\":[{\"_id\":\"7d82651\",\"title\":\"Ng\\u00e0y 20 th\\u00e1ng 11, 2018\",\"content\":\"Far East Tech \\u0111\\u01b0\\u1ee3c th\\u00e0nh l\\u1eadp t\\u1ea1i Qu\\u1ebf V\\u00f5, B\\u1eafc Ninh v\\u1edbi 5 th\\u00e0nh vi\\u00ean s\\u00e1ng l\\u1eadp.\"},{\"_id\":\"37eb5f9\",\"title\":\"Ng\\u00e0y 1 th\\u00e1ng 4, 2021\",\"content\":\"V\\u1edbi s\\u1ef1 ph\\u00e1t tri\\u1ec3n m\\u1ea1nh m\\u1ebd c\\u1ee7a Far East Tech, ch\\u00fang t\\u00f4i quy\\u1ebft \\u0111\\u1ecbnh m\\u1edf r\\u1ed9ng chi nh\\u00e1nh t\\u1ea1i mi\\u1ec1n Nam.\"},{\"_id\":\"2e7ebbf\",\"title\":\"Ng\\u00e0y 30 th\\u00e1ng 4, 2021\",\"content\":\"Ch\\u00fang t\\u00f4i \\u0111\\u00e3 th\\u00e0nh c\\u00f4ng trong vi\\u1ec7c ti\\u1ebfp qu\\u1ea3n c\\u00f4ng ty DMM Precision Engineering Co., Ltd. t\\u1ea1i B\\u00ecnh D\\u01b0\\u01a1ng, m\\u1ed9t c\\u00f4ng ty c\\u00f3 kinh nghi\\u1ec7m xu\\u1ea5t kh\\u1ea9u h\\u00e0ng h\\u00f3a sang Nh\\u1eadt B\\u1ea3n t\\u1eeb n\\u0103m 2016, v\\u00e0 t\\u1eeb \\u0111\\u00f3, ch\\u00fang t\\u00f4i \\u0111\\u00e3 th\\u00e0nh l\\u1eadp m\\u1ed9t c\\u00f4ng ty gia c\\u00f4ng t\\u1ea1i khu v\\u1ef1c mi\\u1ec1n Nam.\"},{\"_id\":\"6c49f4c\",\"title\":\"Ng\\u00e0y 1 th\\u00e1ng 6, 2022\",\"content\":\"Far East Tech \\u0111\\u00e3 ti\\u1ebfn m\\u1ed9t b\\u01b0\\u1edbc quan tr\\u1ecdng trong s\\u1ea3n xu\\u1ea5t quy m\\u00f4 c\\u00f4ng nghi\\u1ec7p v\\u1edbi m\\u1ed9t x\\u01b0\\u1edfng s\\u1ea3n xu\\u1ea5t r\\u1ed9ng 2000m2 v\\u00e0 70 m\\u00e1y CNC t\\u1ea1i B\\u1eafc Ninh.\"},{\"_id\":\"de48600\",\"title\":\"2024\",\"content\":\"C\\u00f4ng ty DMM Precision Engineering Co., Ltd. ch\\u00ednh th\\u1ee9c \\u0111\\u1ed5i t\\u00ean th\\u00e0nh C\\u00f4ng ty TNHH Far East High Tech.\\nSau n\\u0103m 2025: \\u0110\\u00e2y s\\u1ebd l\\u00e0 n\\u0103m ph\\u00e1t tri\\u1ec3n m\\u1ea1nh m\\u1ebd c\\u1ee7a \\u0111\\u1ed9i ng\\u0169 c\\u00f4ng ty ch\\u00fang t\\u00f4i.\"}]},\"elements\":[],\"widgetType\":\"ct_history\"}],\"isInner\":false}],\"isInner\":false}]'),(10850,3291,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:6;s:18:\"title_space_bottom\";i:3;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:4;s:22:\"sub_title_space_bottom\";i:3;s:15:\"sub_title_color\";i:1;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:5;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:7;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}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:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;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:10;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:3;s:13:\"margin_mobile\";i:3;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:3;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:6;s:7:\"padding\";i:6;s:14:\"padding_tablet\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:5:\"image\";i:1;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"ct_cta\";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:\"source_section\";a:4:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:4:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:14:\"slides_to_show\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:16:\"slides_to_scroll\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:6:\"arrows\";i:1;s:8:\"autoplay\";i:1;s:8:\"infinite\";i:1;}}}}}'),(10851,3291,'_elementor_css','a:6:{s:4:\"time\";i:1742181904;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(10852,3291,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:18:\"widget-text-editor\";i:1;s:12:\"widget-image\";}}'),(10853,3291,'_elementor_element_cache','{\"timeout\":1742268304,\"value\":{\"content\":\"        <section class=\"elementor-section elementor-top-section elementor-element elementor-element-c986484 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"c986484\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-ab9e3e7\" data-id=\"ab9e3e7\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjJjYzdhNzgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkNoXHUwMGZhbmcgdFx1MDBmNGkgbFx1MDBlMG0gYlx1MWVhMW4gaFx1MDBlMGkgbFx1MDBmMm5nIHZcdTFlZGJpIG5oXHUxZWVmbmcgXHUwMGZkIHRcdTAxYjBcdTFlZGZuZyBzXHUwMGUxbmcgdFx1MWVhMW8gdlx1MDBlMCBjXHUwMGY0bmcgdmlcdTFlYzdjIGNoXHUxZWE1dCBsXHUwMWIwXHUxZWUzbmcuIiwidGl0bGVfc3BhY2VfYm90dG9tIjp7InVuaXQiOiJweCIsInNpemUiOjIzLCJzaXplcyI6W119LCJzdWJfdGl0bGUiOiJWXHUxZWMxIGNoXHUwMGZhbmcgdFx1MDBmNGkiLCJzdWJfdGl0bGVfc3BhY2VfYm90dG9tIjp7InVuaXQiOiJweCIsInNpemUiOjYsInNpemVzIjpbXX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]tt<div class=\"elementor-element elementor-element-c469998 elementor-widget elementor-widget-text-editor\" data-id=\"c469998\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Chu00fang tu00f4i vu01b0u1ee3t qua mong u0111u1ee3i nhu1edd nhu1eefng u00fd tu01b0u1edfng su00e1ng tu1ea1o vu00e0 tay nghu1ec1 xuu1ea5t su1eafc.</p>tttttt</div>ntttt</div>ntt        <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-11334c5 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"11334c5\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-2442360\" data-id=\"2442360\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-4d195ec elementor-widget elementor-widget-image\" data-id=\"4d195ec\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"59\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png\" class=\"attachment-full size-full wp-image-612\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImIyMTA3ZTciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IlF1XHUxZWEzbiBsXHUwMGZkIHRoXHUxZWRkaSBnaWFuIiwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MjAsInNpemVzIjpbXX0sInRpdGxlX3NwYWNlX2JvdHRvbSI6eyJ1bml0IjoicHgiLCJzaXplIjoxOCwic2l6ZXMiOltdfSwidGV4dF9hbGlnbiI6ImNlbnRlciJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]tt<div class=\"elementor-element elementor-element-c366e73 elementor-widget elementor-widget-text-editor\" data-id=\"c366e73\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Tu1ed5 chu1ee9c cu00f4ng viu1ec7c hiu1ec7u quu1ea3 u0111u1ec3 tu1ed1i u0111a hu00f3a nu0103ng suu1ea5t vu00e0 hou00e0n thu00e0nh u0111u00fang hu1ea1n.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-7d099fe\" data-id=\"7d099fe\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-6c4ae19 elementor-widget elementor-widget-image\" data-id=\"6c4ae19\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"55\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-02.png\" class=\"attachment-full size-full wp-image-613\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6IjliYTI0YTUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkhvXHUwMGUwbiB0aFx1MDBlMG5oIG1cdTFlZTVjIHRpXHUwMGVhdSIsInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplIjp7InVuaXQiOiJweCIsInNpemUiOjIwLCJzaXplcyI6W119LCJ0aXRsZV9zcGFjZV9ib3R0b20iOnsidW5pdCI6InB4Iiwic2l6ZSI6MTgsInNpemVzIjpbXX0sInRleHRfYWxpZ24iOiJjZW50ZXIifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-bdc9adf elementor-widget elementor-widget-text-editor\" data-id=\"bdc9adf\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>u0110u1ea1t u0111u01b0u1ee3c mu1ee5c tiu00eau vu1edbi su1ef1 chu00ednh xu00e1c vu00e0 cam ku1ebft, u0111u1ea3m bu1ea3o thu00e0nh cu00f4ng.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-3ba92fc\" data-id=\"3ba92fc\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjJhZTRmYWUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJpbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yMjE4MjMxLndlYnAiLCJpZCI6MjUwMywiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2Jhbm5lciJ9\"][elementor-element data=\"eyJpZCI6IjBjNDA2ZjkiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJpbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzExXC9zaWduYXR1cmUxLnBuZyIsImlkIjoyNTM4LCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJ0aXRsZSI6IlRpbiBMdXUiLCJkZXNjIjoiKENoXHUxZWU3IHRcdTFlY2JjaCB2XHUwMGUwIG5nXHUwMWIwXHUxZWRkaSBzXHUwMGUxbmcgbFx1MWVhZHApIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIyMSIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9zaWduYXR1cmUifQ==\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-3328b5d elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"3328b5d\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-2933d62\" data-id=\"2933d62\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjFhMDNjMGIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkJcdTFlYTFuIG11XHUxZWQxbiBiaVx1MWViZnQgdGhcdTAwZWFtIHZcdTFlYzEgY2hcdTAwZmFuZyB0XHUwMGY0aT8iLCJkZXNjIjoiQ2hcdTFlYzkgY1x1MWVhN24gdFx1MWVhM2kgYnJvY2h1cmUuLi4iLCJidG5fdGV4dCI6IlRcdTFlYTNpIEJyb2NodXJlIiwiYnRuX2ljb24iOnsidmFsdWUiOiJmYXMgZmEtY2xvdWQtZG93bmxvYWQtYWx0IiwibGlicmFyeSI6ImZhLXNvbGlkIn0sImJ0bl9saW5rIjp7InVybCI6Imh0dHBzOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMTBcL0JST0NIVVJFLnBkZiIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIiwiY3VzdG9tX2F0dHJpYnV0ZXMiOiIifX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2N0YSJ9\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-a158a9e elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"a158a9e\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n                            <div class=\"elementor-background-overlay\"></div>n                n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-30c4d43\" data-id=\"30c4d43\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n                <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-7a3aa06 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"7a3aa06\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-ba6ff94\" data-id=\"ba6ff94\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6Ijc4Y2JiYjZmIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJGYXIgRWFzdCBIaWdoIFRlY2ggbFx1MDBlMCBtXHUxZWQ5dCBjXHUwMGY0bmcgdHkgeFx1MDBlMnkgZFx1MWVmMW5nIGNodXlcdTAwZWFuIG5naGlcdTFlYzdwLiIsInN1Yl90aXRsZSI6IkxcdTFlY2JjaCBzXHUxZWVkIGNcdTAwZjRuZyB0eSIsInRpdGxlX2NvbG9yIjoiI2ZmZmZmZiIsInN1Yl90aXRsZV9jb2xvciI6IiNhMGEwYTAiLCJzdWJfdGl0bGVfc3BhY2VfYm90dG9tIjp7InVuaXQiOiJweCIsInNpemUiOjYsInNpemVzIjpbXX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-0de7bd2\" data-id=\"0de7bd2\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-7398b831 elementor-widget elementor-widget-text-editor\" data-id=\"7398b831\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Far East High Tech lu00e0 cu00f4ng ty hu00e0ng u0111u1ea7u trong viu1ec7c xu00e2y du1ef1ng vu00e0 su1ea3n xuu1ea5t cu00e1c giu1ea3i phu00e1p cu01a1 khu00ed chu1ea5t lu01b0u1ee3ng cao.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n        [elementor-element data=\"eyJpZCI6ImU5YTg4M2UiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJzdGFydF90ZXh0IjoiU3RhcnQiLCJlbmRfaW1hZ2UiOnsidXJsIjoiIiwiaWQiOiIiLCJzaXplIjoiIiwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSJ9LCJoaXN0b3J5IjpbeyJfaWQiOiI3ZDgyNjUxIiwidGl0bGUiOiJOZ1x1MDBlMHkgMjAgdGhcdTAwZTFuZyAxMSwgMjAxOCIsImNvbnRlbnQiOiJGYXIgRWFzdCBUZWNoIFx1MDExMVx1MDFiMFx1MWVlM2MgdGhcdTAwZTBuaCBsXHUxZWFkcCB0XHUxZWExaSBRdVx1MWViZiBWXHUwMGY1LCBCXHUxZWFmYyBOaW5oIHZcdTFlZGJpIDUgdGhcdTAwZTBuaCB2aVx1MDBlYW4gc1x1MDBlMW5nIGxcdTFlYWRwLiJ9LHsiX2lkIjoiMzdlYjVmOSIsInRpdGxlIjoiTmdcdTAwZTB5IDEgdGhcdTAwZTFuZyA0LCAyMDIxIiwiY29udGVudCI6IlZcdTFlZGJpIHNcdTFlZjEgcGhcdTAwZTF0IHRyaVx1MWVjM24gbVx1MWVhMW5oIG1cdTFlYmQgY1x1MWVlN2EgRmFyIEVhc3QgVGVjaCwgY2hcdTAwZmFuZyB0XHUwMGY0aSBxdXlcdTFlYmZ0IFx1MDExMVx1MWVjYm5oIG1cdTFlZGYgclx1MWVkOW5nIGNoaSBuaFx1MDBlMW5oIHRcdTFlYTFpIG1pXHUxZWMxbiBOYW0uIn0seyJfaWQiOiIyZTdlYmJmIiwidGl0bGUiOiJOZ1x1MDBlMHkgMzAgdGhcdTAwZTFuZyA0LCAyMDIxIiwiY29udGVudCI6IkNoXHUwMGZhbmcgdFx1MDBmNGkgXHUwMTExXHUwMGUzIHRoXHUwMGUwbmggY1x1MDBmNG5nIHRyb25nIHZpXHUxZWM3YyB0aVx1MWViZnAgcXVcdTFlYTNuIGNcdTAwZjRuZyB0eSBETU0gUHJlY2lzaW9uIEVuZ2luZWVyaW5nIENvLiwgTHRkLiB0XHUxZWExaSBCXHUwMGVjbmggRFx1MDFiMFx1MDFhMW5nLCBtXHUxZWQ5dCBjXHUwMGY0bmcgdHkgY1x1MDBmMyBraW5oIG5naGlcdTFlYzdtIHh1XHUxZWE1dCBraFx1MWVhOXUgaFx1MDBlMG5nIGhcdTAwZjNhIHNhbmcgTmhcdTFlYWR0IEJcdTFlYTNuIHRcdTFlZWIgblx1MDEwM20gMjAxNiwgdlx1MDBlMCB0XHUxZWViIFx1MDExMVx1MDBmMywgY2hcdTAwZmFuZyB0XHUwMGY0aSBcdTAxMTFcdTAwZTMgdGhcdTAwZTBuaCBsXHUxZWFkcCBtXHUxZWQ5dCBjXHUwMGY0bmcgdHkgZ2lhIGNcdTAwZjRuZyB0XHUxZWExaSBraHUgdlx1MWVmMWMgbWlcdTFlYzFuIE5hbS4ifSx7Il9pZCI6IjZjNDlmNGMiLCJ0aXRsZSI6Ik5nXHUwMGUweSAxIHRoXHUwMGUxbmcgNiwgMjAyMiIsImNvbnRlbnQiOiJGYXIgRWFzdCBUZWNoIFx1MDExMVx1MDBlMyB0aVx1MWViZm4gbVx1MWVkOXQgYlx1MDFiMFx1MWVkYmMgcXVhbiB0clx1MWVjZG5nIHRyb25nIHNcdTFlYTNuIHh1XHUxZWE1dCBxdXkgbVx1MDBmNCBjXHUwMGY0bmcgbmdoaVx1MWVjN3Agdlx1MWVkYmkgbVx1MWVkOXQgeFx1MDFiMFx1MWVkZm5nIHNcdTFlYTNuIHh1XHUxZWE1dCByXHUxZWQ5bmcgMjAwMG0yIHZcdTAwZTAgNzAgbVx1MDBlMXkgQ05DIHRcdTFlYTFpIEJcdTFlYWZjIE5pbmguIn0seyJfaWQiOiJkZTQ4NjAwIiwidGl0bGUiOiIyMDI0IiwiY29udGVudCI6IkNcdTAwZjRuZyB0eSBETU0gUHJlY2lzaW9uIEVuZ2luZWVyaW5nIENvLiwgTHRkLiBjaFx1MDBlZG5oIHRoXHUxZWU5YyBcdTAxMTFcdTFlZDVpIHRcdTAwZWFuIHRoXHUwMGUwbmggQ1x1MDBmNG5nIHR5IFROSEggRmFyIEVhc3QgSGlnaCBUZWNoLlxuU2F1IG5cdTAxMDNtIDIwMjU6IFx1MDExMFx1MDBlMnkgc1x1MWViZCBsXHUwMGUwIG5cdTAxMDNtIHBoXHUwMGUxdCB0cmlcdTFlYzNuIG1cdTFlYTFuaCBtXHUxZWJkIGNcdTFlZTdhIFx1MDExMVx1MWVkOWkgbmdcdTAxNjkgY1x1MDBmNG5nIHR5IGNoXHUwMGZhbmcgdFx1MDBmNGkuIn1dfSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGlzdG9yeSJ9\"]            </div>n        </div>n                    </div>n        </section>n        \",\"scripts\":[],\"styles\":[\"widget-text-editor\",\"widget-image\"]}}'),(10854,3292,'_wp_page_template','default'),(10855,3292,'_elementor_edit_mode','builder'),(10856,3292,'_elementor_template_type','wp-page'),(10857,3292,'_elementor_version','3.24.7'),(10858,3292,'_elementor_data','[{\"id\":\"c986484\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"21\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab9e3e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.324,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cc7a78\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ch\\u00fang t\\u00f4i l\\u00e0m b\\u1ea1n h\\u00e0i l\\u00f2ng v\\u1edbi nh\\u1eefng \\u00fd t\\u01b0\\u1edfng s\\u00e1ng t\\u1ea1o v\\u00e0 c\\u00f4ng vi\\u1ec7c ch\\u1ea5t l\\u01b0\\u1ee3ng.\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"sub_title\":\"V\\u1ec1 ch\\u00fang t\\u00f4i\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c469998\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ch\\u00fang t\\u00f4i v\\u01b0\\u1ee3t qua mong \\u0111\\u1ee3i nh\\u1edd nh\\u1eefng \\u00fd t\\u01b0\\u1edfng s\\u00e1ng t\\u1ea1o v\\u00e0 tay ngh\\u1ec1 xu\\u1ea5t s\\u1eafc.<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11334c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2442360\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d195ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-01.png\",\"id\":612},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b2107e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Qu\\u1ea3n l\\u00fd th\\u1eddi gian\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c366e73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>T\\u1ed5 ch\\u1ee9c c\\u00f4ng vi\\u1ec7c hi\\u1ec7u qu\\u1ea3 \\u0111\\u1ec3 t\\u1ed1i \\u0111a h\\u00f3a n\\u0103ng su\\u1ea5t v\\u00e0 ho\\u00e0n th\\u00e0nh \\u0111\\u00fang h\\u1ea1n.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d099fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c4ae19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-02.png\",\"id\":613},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ba24a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ho\\u00e0n th\\u00e0nh m\\u1ee5c ti\\u00eau\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bdc9adf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u0110\\u1ea1t \\u0111\\u01b0\\u1ee3c m\\u1ee5c ti\\u00eau v\\u1edbi s\\u1ef1 ch\\u00ednh x\\u00e1c v\\u00e0 cam k\\u1ebft, \\u0111\\u1ea3m b\\u1ea3o th\\u00e0nh c\\u00f4ng.<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ba92fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.676,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae4fae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218231.webp\",\"id\":2503,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"0c406f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature1.png\",\"id\":2538,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Tin Luu\",\"desc\":\"(Ch\\u1ee7 t\\u1ecbch v\\u00e0 ng\\u01b0\\u1eddi s\\u00e1ng l\\u1eadp)\",\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"B\\u1ea1n mu\\u1ed1n bi\\u1ebft th\\u00eam v\\u1ec1 ch\\u00fang t\\u00f4i?\",\"desc\":\"Ch\\u1ec9 c\\u1ea7n t\\u1ea3i brochure...\",\"btn_text\":\"T\\u1ea3i Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"},\"btn_link\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/profile.pdf\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-scaled.jpg\",\"id\":663},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"060\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.937},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Far East High Tech l\\u00e0 m\\u1ed9t c\\u00f4ng ty x\\u00e2y d\\u1ef1ng chuy\\u00ean nghi\\u1ec7p.\",\"sub_title\":\"L\\u1ecbch s\\u1eed c\\u00f4ng ty\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.063},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Far East High Tech l\\u00e0 c\\u00f4ng ty h\\u00e0ng \\u0111\\u1ea7u trong vi\\u1ec7c x\\u00e2y d\\u1ef1ng v\\u00e0 s\\u1ea3n xu\\u1ea5t c\\u00e1c gi\\u1ea3i ph\\u00e1p c\\u01a1 kh\\u00ed ch\\u1ea5t l\\u01b0\\u1ee3ng cao.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e9a883e\",\"elType\":\"widget\",\"settings\":{\"start_text\":\"Start\",\"end_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"history\":[{\"_id\":\"7d82651\",\"title\":\"Ng\\u00e0y 20 th\\u00e1ng 11, 2018\",\"content\":\"Far East Tech \\u0111\\u01b0\\u1ee3c th\\u00e0nh l\\u1eadp t\\u1ea1i Qu\\u1ebf V\\u00f5, B\\u1eafc Ninh v\\u1edbi 5 th\\u00e0nh vi\\u00ean s\\u00e1ng l\\u1eadp.\"},{\"_id\":\"37eb5f9\",\"title\":\"Ng\\u00e0y 1 th\\u00e1ng 4, 2021\",\"content\":\"V\\u1edbi s\\u1ef1 ph\\u00e1t tri\\u1ec3n m\\u1ea1nh m\\u1ebd c\\u1ee7a Far East Tech, ch\\u00fang t\\u00f4i quy\\u1ebft \\u0111\\u1ecbnh m\\u1edf r\\u1ed9ng chi nh\\u00e1nh t\\u1ea1i mi\\u1ec1n Nam.\"},{\"_id\":\"2e7ebbf\",\"title\":\"Ng\\u00e0y 30 th\\u00e1ng 4, 2021\",\"content\":\"Ch\\u00fang t\\u00f4i \\u0111\\u00e3 th\\u00e0nh c\\u00f4ng trong vi\\u1ec7c ti\\u1ebfp qu\\u1ea3n c\\u00f4ng ty DMM Precision Engineering Co., Ltd. t\\u1ea1i B\\u00ecnh D\\u01b0\\u01a1ng, m\\u1ed9t c\\u00f4ng ty c\\u00f3 kinh nghi\\u1ec7m xu\\u1ea5t kh\\u1ea9u h\\u00e0ng h\\u00f3a sang Nh\\u1eadt B\\u1ea3n t\\u1eeb n\\u0103m 2016, v\\u00e0 t\\u1eeb \\u0111\\u00f3, ch\\u00fang t\\u00f4i \\u0111\\u00e3 th\\u00e0nh l\\u1eadp m\\u1ed9t c\\u00f4ng ty gia c\\u00f4ng t\\u1ea1i khu v\\u1ef1c mi\\u1ec1n Nam.\"},{\"_id\":\"6c49f4c\",\"title\":\"Ng\\u00e0y 1 th\\u00e1ng 6, 2022\",\"content\":\"Far East Tech \\u0111\\u00e3 ti\\u1ebfn m\\u1ed9t b\\u01b0\\u1edbc quan tr\\u1ecdng trong s\\u1ea3n xu\\u1ea5t quy m\\u00f4 c\\u00f4ng nghi\\u1ec7p v\\u1edbi m\\u1ed9t x\\u01b0\\u1edfng s\\u1ea3n xu\\u1ea5t r\\u1ed9ng 2000m2 v\\u00e0 70 m\\u00e1y CNC t\\u1ea1i B\\u1eafc Ninh.\"},{\"_id\":\"de48600\",\"title\":\"2024\",\"content\":\"C\\u00f4ng ty DMM Precision Engineering Co., Ltd. ch\\u00ednh th\\u1ee9c \\u0111\\u1ed5i t\\u00ean th\\u00e0nh C\\u00f4ng ty TNHH Far East High Tech.\\nSau n\\u0103m 2025: \\u0110\\u00e2y s\\u1ebd l\\u00e0 n\\u0103m ph\\u00e1t tri\\u1ec3n m\\u1ea1nh m\\u1ebd c\\u1ee7a \\u0111\\u1ed9i ng\\u0169 c\\u00f4ng ty ch\\u00fang t\\u00f4i.\"}]},\"elements\":[],\"widgetType\":\"ct_history\"}],\"isInner\":false}],\"isInner\":false}]'),(10859,3292,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:6;s:18:\"title_space_bottom\";i:3;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:4;s:22:\"sub_title_space_bottom\";i:3;s:15:\"sub_title_color\";i:1;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:5;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:7;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}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:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;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:10;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:3;s:13:\"margin_mobile\";i:3;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:3;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:6;s:7:\"padding\";i:6;s:14:\"padding_tablet\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:5:\"image\";i:1;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"ct_cta\";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:\"source_section\";a:4:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:4:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:14:\"slides_to_show\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:16:\"slides_to_scroll\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:6:\"arrows\";i:1;s:8:\"autoplay\";i:1;s:8:\"infinite\";i:1;}}}}}'),(10860,3292,'_elementor_css','a:6:{s:4:\"time\";i:1742181904;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(10861,3292,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:18:\"widget-text-editor\";i:1;s:12:\"widget-image\";}}'),(10862,3292,'_elementor_element_cache','{\"timeout\":1742268304,\"value\":{\"content\":\"        <section class=\"elementor-section elementor-top-section elementor-element elementor-element-c986484 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"c986484\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-ab9e3e7\" data-id=\"ab9e3e7\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjJjYzdhNzgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkNoXHUwMGZhbmcgdFx1MDBmNGkgbFx1MDBlMG0gYlx1MWVhMW4gaFx1MDBlMGkgbFx1MDBmMm5nIHZcdTFlZGJpIG5oXHUxZWVmbmcgXHUwMGZkIHRcdTAxYjBcdTFlZGZuZyBzXHUwMGUxbmcgdFx1MWVhMW8gdlx1MDBlMCBjXHUwMGY0bmcgdmlcdTFlYzdjIGNoXHUxZWE1dCBsXHUwMWIwXHUxZWUzbmcuIiwidGl0bGVfc3BhY2VfYm90dG9tIjp7InVuaXQiOiJweCIsInNpemUiOjIzLCJzaXplcyI6W119LCJzdWJfdGl0bGUiOiJWXHUxZWMxIGNoXHUwMGZhbmcgdFx1MDBmNGkiLCJzdWJfdGl0bGVfc3BhY2VfYm90dG9tIjp7InVuaXQiOiJweCIsInNpemUiOjYsInNpemVzIjpbXX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]tt<div class=\"elementor-element elementor-element-c469998 elementor-widget elementor-widget-text-editor\" data-id=\"c469998\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Chu00fang tu00f4i vu01b0u1ee3t qua mong u0111u1ee3i nhu1edd nhu1eefng u00fd tu01b0u1edfng su00e1ng tu1ea1o vu00e0 tay nghu1ec1 xuu1ea5t su1eafc.</p>tttttt</div>ntttt</div>ntt        <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-11334c5 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"11334c5\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-2442360\" data-id=\"2442360\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-4d195ec elementor-widget elementor-widget-image\" data-id=\"4d195ec\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"59\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png\" class=\"attachment-full size-full wp-image-612\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImIyMTA3ZTciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IlF1XHUxZWEzbiBsXHUwMGZkIHRoXHUxZWRkaSBnaWFuIiwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MjAsInNpemVzIjpbXX0sInRpdGxlX3NwYWNlX2JvdHRvbSI6eyJ1bml0IjoicHgiLCJzaXplIjoxOCwic2l6ZXMiOltdfSwidGV4dF9hbGlnbiI6ImNlbnRlciJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]tt<div class=\"elementor-element elementor-element-c366e73 elementor-widget elementor-widget-text-editor\" data-id=\"c366e73\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Tu1ed5 chu1ee9c cu00f4ng viu1ec7c hiu1ec7u quu1ea3 u0111u1ec3 tu1ed1i u0111a hu00f3a nu0103ng suu1ea5t vu00e0 hou00e0n thu00e0nh u0111u00fang hu1ea1n.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-7d099fe\" data-id=\"7d099fe\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-6c4ae19 elementor-widget elementor-widget-image\" data-id=\"6c4ae19\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"55\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-02.png\" class=\"attachment-full size-full wp-image-613\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6IjliYTI0YTUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkhvXHUwMGUwbiB0aFx1MDBlMG5oIG1cdTFlZTVjIHRpXHUwMGVhdSIsInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplIjp7InVuaXQiOiJweCIsInNpemUiOjIwLCJzaXplcyI6W119LCJ0aXRsZV9zcGFjZV9ib3R0b20iOnsidW5pdCI6InB4Iiwic2l6ZSI6MTgsInNpemVzIjpbXX0sInRleHRfYWxpZ24iOiJjZW50ZXIifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-bdc9adf elementor-widget elementor-widget-text-editor\" data-id=\"bdc9adf\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>u0110u1ea1t u0111u01b0u1ee3c mu1ee5c tiu00eau vu1edbi su1ef1 chu00ednh xu00e1c vu00e0 cam ku1ebft, u0111u1ea3m bu1ea3o thu00e0nh cu00f4ng.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-3ba92fc\" data-id=\"3ba92fc\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjJhZTRmYWUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJpbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yMjE4MjMxLndlYnAiLCJpZCI6MjUwMywiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2Jhbm5lciJ9\"][elementor-element data=\"eyJpZCI6IjBjNDA2ZjkiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJpbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzExXC9zaWduYXR1cmUxLnBuZyIsImlkIjoyNTM4LCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJ0aXRsZSI6IlRpbiBMdXUiLCJkZXNjIjoiKENoXHUxZWU3IHRcdTFlY2JjaCB2XHUwMGUwIG5nXHUwMWIwXHUxZWRkaSBzXHUwMGUxbmcgbFx1MWVhZHApIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIyMSIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9zaWduYXR1cmUifQ==\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-3328b5d elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"3328b5d\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-2933d62\" data-id=\"2933d62\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjFhMDNjMGIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkJcdTFlYTFuIG11XHUxZWQxbiBiaVx1MWViZnQgdGhcdTAwZWFtIHZcdTFlYzEgY2hcdTAwZmFuZyB0XHUwMGY0aT8iLCJkZXNjIjoiQ2hcdTFlYzkgY1x1MWVhN24gdFx1MWVhM2kgYnJvY2h1cmUuLi4iLCJidG5fdGV4dCI6IlRcdTFlYTNpIEJyb2NodXJlIiwiYnRuX2ljb24iOnsidmFsdWUiOiJmYXMgZmEtY2xvdWQtZG93bmxvYWQtYWx0IiwibGlicmFyeSI6ImZhLXNvbGlkIn0sImJ0bl9saW5rIjp7InVybCI6Imh0dHBzOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMTBcL0JST0NIVVJFLnBkZiIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIiwiY3VzdG9tX2F0dHJpYnV0ZXMiOiIifX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2N0YSJ9\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-a158a9e elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"a158a9e\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n                            <div class=\"elementor-background-overlay\"></div>n                n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-30c4d43\" data-id=\"30c4d43\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n                <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-7a3aa06 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"7a3aa06\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-ba6ff94\" data-id=\"ba6ff94\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6Ijc4Y2JiYjZmIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJGYXIgRWFzdCBIaWdoIFRlY2ggbFx1MDBlMCBtXHUxZWQ5dCBjXHUwMGY0bmcgdHkgeFx1MDBlMnkgZFx1MWVmMW5nIGNodXlcdTAwZWFuIG5naGlcdTFlYzdwLiIsInN1Yl90aXRsZSI6IkxcdTFlY2JjaCBzXHUxZWVkIGNcdTAwZjRuZyB0eSIsInRpdGxlX2NvbG9yIjoiI2ZmZmZmZiIsInN1Yl90aXRsZV9jb2xvciI6IiNhMGEwYTAiLCJzdWJfdGl0bGVfc3BhY2VfYm90dG9tIjp7InVuaXQiOiJweCIsInNpemUiOjYsInNpemVzIjpbXX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-0de7bd2\" data-id=\"0de7bd2\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-7398b831 elementor-widget elementor-widget-text-editor\" data-id=\"7398b831\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Far East High Tech lu00e0 cu00f4ng ty hu00e0ng u0111u1ea7u trong viu1ec7c xu00e2y du1ef1ng vu00e0 su1ea3n xuu1ea5t cu00e1c giu1ea3i phu00e1p cu01a1 khu00ed chu1ea5t lu01b0u1ee3ng cao.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n        [elementor-element data=\"eyJpZCI6ImU5YTg4M2UiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJzdGFydF90ZXh0IjoiU3RhcnQiLCJlbmRfaW1hZ2UiOnsidXJsIjoiIiwiaWQiOiIiLCJzaXplIjoiIiwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSJ9LCJoaXN0b3J5IjpbeyJfaWQiOiI3ZDgyNjUxIiwidGl0bGUiOiJOZ1x1MDBlMHkgMjAgdGhcdTAwZTFuZyAxMSwgMjAxOCIsImNvbnRlbnQiOiJGYXIgRWFzdCBUZWNoIFx1MDExMVx1MDFiMFx1MWVlM2MgdGhcdTAwZTBuaCBsXHUxZWFkcCB0XHUxZWExaSBRdVx1MWViZiBWXHUwMGY1LCBCXHUxZWFmYyBOaW5oIHZcdTFlZGJpIDUgdGhcdTAwZTBuaCB2aVx1MDBlYW4gc1x1MDBlMW5nIGxcdTFlYWRwLiJ9LHsiX2lkIjoiMzdlYjVmOSIsInRpdGxlIjoiTmdcdTAwZTB5IDEgdGhcdTAwZTFuZyA0LCAyMDIxIiwiY29udGVudCI6IlZcdTFlZGJpIHNcdTFlZjEgcGhcdTAwZTF0IHRyaVx1MWVjM24gbVx1MWVhMW5oIG1cdTFlYmQgY1x1MWVlN2EgRmFyIEVhc3QgVGVjaCwgY2hcdTAwZmFuZyB0XHUwMGY0aSBxdXlcdTFlYmZ0IFx1MDExMVx1MWVjYm5oIG1cdTFlZGYgclx1MWVkOW5nIGNoaSBuaFx1MDBlMW5oIHRcdTFlYTFpIG1pXHUxZWMxbiBOYW0uIn0seyJfaWQiOiIyZTdlYmJmIiwidGl0bGUiOiJOZ1x1MDBlMHkgMzAgdGhcdTAwZTFuZyA0LCAyMDIxIiwiY29udGVudCI6IkNoXHUwMGZhbmcgdFx1MDBmNGkgXHUwMTExXHUwMGUzIHRoXHUwMGUwbmggY1x1MDBmNG5nIHRyb25nIHZpXHUxZWM3YyB0aVx1MWViZnAgcXVcdTFlYTNuIGNcdTAwZjRuZyB0eSBETU0gUHJlY2lzaW9uIEVuZ2luZWVyaW5nIENvLiwgTHRkLiB0XHUxZWExaSBCXHUwMGVjbmggRFx1MDFiMFx1MDFhMW5nLCBtXHUxZWQ5dCBjXHUwMGY0bmcgdHkgY1x1MDBmMyBraW5oIG5naGlcdTFlYzdtIHh1XHUxZWE1dCBraFx1MWVhOXUgaFx1MDBlMG5nIGhcdTAwZjNhIHNhbmcgTmhcdTFlYWR0IEJcdTFlYTNuIHRcdTFlZWIgblx1MDEwM20gMjAxNiwgdlx1MDBlMCB0XHUxZWViIFx1MDExMVx1MDBmMywgY2hcdTAwZmFuZyB0XHUwMGY0aSBcdTAxMTFcdTAwZTMgdGhcdTAwZTBuaCBsXHUxZWFkcCBtXHUxZWQ5dCBjXHUwMGY0bmcgdHkgZ2lhIGNcdTAwZjRuZyB0XHUxZWExaSBraHUgdlx1MWVmMWMgbWlcdTFlYzFuIE5hbS4ifSx7Il9pZCI6IjZjNDlmNGMiLCJ0aXRsZSI6Ik5nXHUwMGUweSAxIHRoXHUwMGUxbmcgNiwgMjAyMiIsImNvbnRlbnQiOiJGYXIgRWFzdCBUZWNoIFx1MDExMVx1MDBlMyB0aVx1MWViZm4gbVx1MWVkOXQgYlx1MDFiMFx1MWVkYmMgcXVhbiB0clx1MWVjZG5nIHRyb25nIHNcdTFlYTNuIHh1XHUxZWE1dCBxdXkgbVx1MDBmNCBjXHUwMGY0bmcgbmdoaVx1MWVjN3Agdlx1MWVkYmkgbVx1MWVkOXQgeFx1MDFiMFx1MWVkZm5nIHNcdTFlYTNuIHh1XHUxZWE1dCByXHUxZWQ5bmcgMjAwMG0yIHZcdTAwZTAgNzAgbVx1MDBlMXkgQ05DIHRcdTFlYTFpIEJcdTFlYWZjIE5pbmguIn0seyJfaWQiOiJkZTQ4NjAwIiwidGl0bGUiOiIyMDI0IiwiY29udGVudCI6IkNcdTAwZjRuZyB0eSBETU0gUHJlY2lzaW9uIEVuZ2luZWVyaW5nIENvLiwgTHRkLiBjaFx1MDBlZG5oIHRoXHUxZWU5YyBcdTAxMTFcdTFlZDVpIHRcdTAwZWFuIHRoXHUwMGUwbmggQ1x1MDBmNG5nIHR5IFROSEggRmFyIEVhc3QgSGlnaCBUZWNoLlxuU2F1IG5cdTAxMDNtIDIwMjU6IFx1MDExMFx1MDBlMnkgc1x1MWViZCBsXHUwMGUwIG5cdTAxMDNtIHBoXHUwMGUxdCB0cmlcdTFlYzNuIG1cdTFlYTFuaCBtXHUxZWJkIGNcdTFlZTdhIFx1MDExMVx1MWVkOWkgbmdcdTAxNjkgY1x1MDBmNG5nIHR5IGNoXHUwMGZhbmcgdFx1MDBmNGkuIn1dfSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGlzdG9yeSJ9\"]            </div>n        </div>n                    </div>n        </section>n        \",\"scripts\":[],\"styles\":[\"widget-text-editor\",\"widget-image\"]}}'),(10863,3293,'_wp_page_template','default'),(10864,3293,'_elementor_edit_mode','builder'),(10865,3293,'_elementor_template_type','wp-page'),(10866,3293,'_elementor_version','3.24.7'),(10867,3293,'_elementor_data','[{\"id\":\"c986484\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"21\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab9e3e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.324,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cc7a78\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u3001\\u9769\\u65b0\\u7684\\u306a\\u30a2\\u30a4\\u30c7\\u30a2\\u3068\\u8cea\\u306e\\u9ad8\\u3044\\u4ed5\\u4e8b\\u3067\\u304a\\u5ba2\\u69d8\\u3092\\u6e80\\u8db3\\u3055\\u305b\\u307e\\u3059\\u3002\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"sub_title\":\"\\u79c1\\u305f\\u3061\\u306b\\u3064\\u3044\\u3066\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c469998\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306f\\u3001\\u9769\\u65b0\\u7684\\u306a\\u30a2\\u30a4\\u30c7\\u30a2\\u3068\\u5353\\u8d8a\\u3057\\u305f\\u8077\\u4eba\\u6280\\u3067\\u671f\\u5f85\\u3092\\u8d85\\u3048\\u307e\\u3059\\u3002<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11334c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2442360\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d195ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-01.png\",\"id\":612},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b2107e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u6642\\u9593\\u7ba1\\u7406\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c366e73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u751f\\u7523\\u6027\\u3092\\u6700\\u5927\\u5316\\u3057\\u3001\\u671f\\u9650\\u3092\\u5b88\\u308b\\u305f\\u3081\\u306b\\u30bf\\u30b9\\u30af\\u3092\\u52b9\\u7387\\u7684\\u306b\\u6574\\u7406\\u3057\\u307e\\u3059\\u3002<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d099fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c4ae19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-02.png\",\"id\":613},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ba24a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u76ee\\u6a19\\u3092\\u9054\\u6210\\u3059\\u308b\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bdc9adf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u7cbe\\u5ea6\\u3068\\u30b3\\u30df\\u30c3\\u30c8\\u30e1\\u30f3\\u30c8\\u3067\\u76ee\\u6a19\\u3092\\u9054\\u6210\\u3057\\u3001\\u6210\\u529f\\u3092\\u78ba\\u5b9f\\u306b\\u3057\\u307e\\u3059\\u3002<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ba92fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.676,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae4fae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218231.webp\",\"id\":2503,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"0c406f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature1.png\",\"id\":2538,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Tin Luu\",\"desc\":\"(\\u4f1a\\u9577\\u517c\\u5275\\u8a2d\\u8005)\",\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306b\\u3064\\u3044\\u3066\\u3082\\u3063\\u3068\\u77e5\\u308a\\u305f\\u3044\\u3067\\u3059\\u304b\\uff1f\",\"desc\":\"\\u30d1\\u30f3\\u30d5\\u30ec\\u30c3\\u30c8\\u3092\\u30c0\\u30a6\\u30f3\\u30ed\\u30fc\\u30c9\\u3059\\u308b\\u3060\\u3051\\u3067\\u3059...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"},\"btn_link\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/BROCHURE.pdf\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-scaled.jpg\",\"id\":663},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"060\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.937},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Far East High Tech\\u306f\\u3001\\u30d7\\u30ed\\u30d5\\u30a7\\u30c3\\u30b7\\u30e7\\u30ca\\u30eb\\u306a\\u5efa\\u8a2d\\u4f1a\\u793e\\u3067\\u3059\\u3002\",\"sub_title\":\"\\u4f1a\\u793e\\u306e\\u6b74\\u53f2\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.063},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Far East High Tech\\u306f\\u3001\\u9ad8\\u54c1\\u8cea\\u306a\\u6a5f\\u68b0\\u30bd\\u30ea\\u30e5\\u30fc\\u30b7\\u30e7\\u30f3\\u306e\\u69cb\\u7bc9\\u3068\\u88fd\\u9020\\u306b\\u304a\\u3044\\u3066\\u5148\\u99c6\\u8005\\u7684\\u306a\\u4f01\\u696d\\u3067\\u3059\\u3002<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e9a883e\",\"elType\":\"widget\",\"settings\":{\"start_text\":\"\\u958b\\u59cb\",\"end_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"history\":[{\"_id\":\"7d82651\",\"title\":\"2018\\u5e7411\\u670820\\u65e5\",\"content\":\"Far East Tech\\u306f\\u3001\\u30d9\\u30af\\u30d3\\u30f3\\u306e\\u30af\\u30a8\\u30f4\\u30a9\\u30675\\u4eba\\u306e\\u5275\\u8a2d\\u30e1\\u30f3\\u30d0\\u30fc\\u3068\\u5171\\u306b\\u8a2d\\u7acb\\u3055\\u308c\\u307e\\u3057\\u305f\\u3002\"},{\"_id\":\"37eb5f9\",\"title\":\"2021\\u5e744\\u67081\\u65e5\",\"content\":\"Far East Tech\\u306e\\u5f37\\u529b\\u306a\\u6210\\u9577\\u306b\\u4f34\\u3044\\u3001\\u79c1\\u305f\\u3061\\u306f\\u5357\\u90e8\\u306b\\u652f\\u5e97\\u3092\\u62e1\\u5927\\u3059\\u308b\\u3053\\u3068\\u3092\\u6c7a\\u5b9a\\u3057\\u307e\\u3057\\u305f\\u3002\"},{\"_id\":\"2e7ebbf\",\"title\":\"2021\\u5e744\\u670830\\u65e5\",\"content\":\"\\u79c1\\u305f\\u3061\\u306f\\u30012016\\u5e74\\u304b\\u3089\\u65e5\\u672c\\u3078\\u306e\\u8f38\\u51fa\\u7d4c\\u9a13\\u3092\\u6301\\u3064DMM Precision Engineering Co., Ltd.\\u3092\\u30d3\\u30f3 Duong\\u3067\\u8cb7\\u53ce\\u3057\\u3001\\u3053\\u308c\\u306b\\u3088\\u308a\\u5357\\u90e8\\u5730\\u57df\\u306b\\u6a5f\\u68b0\\u52a0\\u5de5\\u4f1a\\u793e\\u3092\\u8a2d\\u7acb\\u3057\\u307e\\u3057\\u305f\\u3002\"},{\"_id\":\"6c49f4c\",\"title\":\"2022\\u5e746\\u67081\\u65e5\",\"content\":\"Far East Tech\\u306f\\u3001\\u5317\\u5be7\\u306b2000m2\\u306e\\u30ef\\u30fc\\u30af\\u30b7\\u30e7\\u30c3\\u30d7\\u306870\\u53f0\\u306eCNC\\u6a5f\\u68b0\\u3092\\u5099\\u3048\\u3001\\u7523\\u696d\\u898f\\u6a21\\u306e\\u751f\\u7523\\u306b\\u304a\\u3044\\u3066\\u91cd\\u8981\\u306a\\u4e00\\u6b69\\u3092\\u8e0f\\u307f\\u51fa\\u3057\\u307e\\u3057\\u305f\\u3002\"},{\"_id\":\"de48600\",\"title\":\"2024\",\"content\":\"DMM Precision Engineering Co., Ltd.\\u306f\\u6b63\\u5f0f\\u306bFar East High Tech Co., Ltd.\\u306b\\u793e\\u540d\\u3092\\u5909\\u66f4\\u3057\\u307e\\u3057\\u305f\\u3002\\n2025\\u5e74\\u4ee5\\u964d\\uff1a\\u3053\\u308c\\u306f\\u79c1\\u305f\\u3061\\u306e\\u4f1a\\u793e\\u30c1\\u30fc\\u30e0\\u306b\\u3068\\u3063\\u3066\\u5f37\\u529b\\u306a\\u767a\\u5c55\\u306e\\u5e74\\u3068\\u306a\\u308b\\u3067\\u3057\\u3087\\u3046\\u3002\"}]},\"elements\":[],\"widgetType\":\"ct_history\"}],\"isInner\":false}],\"isInner\":false}]'),(10868,3293,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:6;s:18:\"title_space_bottom\";i:3;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:4;s:22:\"sub_title_space_bottom\";i:3;s:15:\"sub_title_color\";i:1;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:5;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:7;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}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:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;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:10;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:3;s:13:\"margin_mobile\";i:3;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:3;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:6;s:7:\"padding\";i:6;s:14:\"padding_tablet\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:5:\"image\";i:1;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"ct_cta\";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:\"source_section\";a:4:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:4:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:14:\"slides_to_show\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:16:\"slides_to_scroll\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:6:\"arrows\";i:1;s:8:\"autoplay\";i:1;s:8:\"infinite\";i:1;}}}}}'),(10869,3293,'_elementor_css','a:6:{s:4:\"time\";i:1742181803;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(10870,3293,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:18:\"widget-text-editor\";i:1;s:12:\"widget-image\";}}'),(10871,3293,'_elementor_element_cache','{\"timeout\":1742268203,\"value\":{\"content\":\"        <section class=\"elementor-section elementor-top-section elementor-element elementor-element-c986484 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"c986484\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-ab9e3e7\" data-id=\"ab9e3e7\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjJjYzdhNzgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Zlx1MzAwMVx1OTc2OVx1NjViMFx1NzY4NFx1MzA2YVx1MzBhMlx1MzBhNFx1MzBjN1x1MzBhMlx1MzA2OFx1OGNlYVx1MzA2ZVx1OWFkOFx1MzA0NFx1NGVkNVx1NGU4Ylx1MzA2N1x1MzA0YVx1NWJhMlx1NjlkOFx1MzA5Mlx1NmU4MFx1OGRiM1x1MzA1NVx1MzA1Ylx1MzA3ZVx1MzA1OVx1MzAwMiIsInRpdGxlX3NwYWNlX2JvdHRvbSI6eyJ1bml0IjoicHgiLCJzaXplIjoyMywic2l6ZXMiOltdfSwic3ViX3RpdGxlIjoiXHU3OWMxXHUzMDVmXHUzMDYxXHUzMDZiXHUzMDY0XHUzMDQ0XHUzMDY2Iiwic3ViX3RpdGxlX3NwYWNlX2JvdHRvbSI6eyJ1bml0IjoicHgiLCJzaXplIjo2LCJzaXplcyI6W119fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-c469998 elementor-widget elementor-widget-text-editor\" data-id=\"c469998\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>u79c1u305fu3061u306fu3001u9769u65b0u7684u306au30a2u30a4u30c7u30a2u3068u5353u8d8au3057u305fu8077u4ebau6280u3067u671fu5f85u3092u8d85u3048u307eu3059u3002</p>tttttt</div>ntttt</div>ntt        <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-11334c5 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"11334c5\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-2442360\" data-id=\"2442360\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-4d195ec elementor-widget elementor-widget-image\" data-id=\"4d195ec\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"59\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png\" class=\"attachment-full size-full wp-image-612\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImIyMTA3ZTciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1NjY0Mlx1OTU5M1x1N2JhMVx1NzQwNiIsInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplIjp7InVuaXQiOiJweCIsInNpemUiOjIwLCJzaXplcyI6W119LCJ0aXRsZV9zcGFjZV9ib3R0b20iOnsidW5pdCI6InB4Iiwic2l6ZSI6MTgsInNpemVzIjpbXX0sInRleHRfYWxpZ24iOiJjZW50ZXIifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-c366e73 elementor-widget elementor-widget-text-editor\" data-id=\"c366e73\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>u751fu7523u6027u3092u6700u5927u5316u3057u3001u671fu9650u3092u5b88u308bu305fu3081u306bu30bfu30b9u30afu3092u52b9u7387u7684u306bu6574u7406u3057u307eu3059u3002</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-7d099fe\" data-id=\"7d099fe\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-6c4ae19 elementor-widget elementor-widget-image\" data-id=\"6c4ae19\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"55\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-02.png\" class=\"attachment-full size-full wp-image-613\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6IjliYTI0YTUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1NzZlZVx1NmExOVx1MzA5Mlx1OTA1NFx1NjIxMFx1MzA1OVx1MzA4YiIsInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplIjp7InVuaXQiOiJweCIsInNpemUiOjIwLCJzaXplcyI6W119LCJ0aXRsZV9zcGFjZV9ib3R0b20iOnsidW5pdCI6InB4Iiwic2l6ZSI6MTgsInNpemVzIjpbXX0sInRleHRfYWxpZ24iOiJjZW50ZXIifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-bdc9adf elementor-widget elementor-widget-text-editor\" data-id=\"bdc9adf\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>u7cbeu5ea6u3068u30b3u30dfu30c3u30c8u30e1u30f3u30c8u3067u76eeu6a19u3092u9054u6210u3057u3001u6210u529fu3092u78bau5b9fu306bu3057u307eu3059u3002</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-3ba92fc\" data-id=\"3ba92fc\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjJhZTRmYWUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJpbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yMjE4MjMxLndlYnAiLCJpZCI6MjUwMywiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2Jhbm5lciJ9\"][elementor-element data=\"eyJpZCI6IjBjNDA2ZjkiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJpbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzExXC9zaWduYXR1cmUxLnBuZyIsImlkIjoyNTM4LCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJ0aXRsZSI6IlRpbiBMdXUiLCJkZXNjIjoiKFx1NGYxYVx1OTU3N1x1NTE3Y1x1NTI3NVx1OGEyZFx1ODAwNSkiLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6IjIxIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X3NpZ25hdHVyZSJ9\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-3328b5d elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"3328b5d\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-2933d62\" data-id=\"2933d62\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjFhMDNjMGIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Ylx1MzA2NFx1MzA0NFx1MzA2Nlx1MzA4Mlx1MzA2M1x1MzA2OFx1NzdlNVx1MzA4YVx1MzA1Zlx1MzA0NFx1MzA2N1x1MzA1OVx1MzA0Ylx1ZmYxZiIsImRlc2MiOiJcdTMwZDFcdTMwZjNcdTMwZDVcdTMwZWNcdTMwYzNcdTMwYzhcdTMwOTJcdTMwYzBcdTMwYTZcdTMwZjNcdTMwZWRcdTMwZmNcdTMwYzlcdTMwNTlcdTMwOGJcdTMwNjBcdTMwNTFcdTMwNjdcdTMwNTkuLi4iLCJidG5fdGV4dCI6IkRvd25sb2FkIEJyb2NodXJlIiwiYnRuX2ljb24iOnsidmFsdWUiOiJmYXMgZmEtY2xvdWQtZG93bmxvYWQtYWx0IiwibGlicmFyeSI6ImZhLXNvbGlkIn0sImJ0bl9saW5rIjp7InVybCI6Imh0dHBzOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMTBcL0JST0NIVVJFLnBkZiIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIiwiY3VzdG9tX2F0dHJpYnV0ZXMiOiIifX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2N0YSJ9\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-a158a9e elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"a158a9e\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n                            <div class=\"elementor-background-overlay\"></div>n                n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-30c4d43\" data-id=\"30c4d43\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n                <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-7a3aa06 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"7a3aa06\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-ba6ff94\" data-id=\"ba6ff94\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6Ijc4Y2JiYjZmIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJGYXIgRWFzdCBIaWdoIFRlY2hcdTMwNmZcdTMwMDFcdTMwZDdcdTMwZWRcdTMwZDVcdTMwYTdcdTMwYzNcdTMwYjdcdTMwZTdcdTMwY2FcdTMwZWJcdTMwNmFcdTVlZmFcdThhMmRcdTRmMWFcdTc5M2VcdTMwNjdcdTMwNTlcdTMwMDIiLCJzdWJfdGl0bGUiOiJcdTRmMWFcdTc5M2VcdTMwNmVcdTZiNzRcdTUzZjIiLCJ0aXRsZV9jb2xvciI6IiNmZmZmZmYiLCJzdWJfdGl0bGVfY29sb3IiOiIjYTBhMGEwIiwic3ViX3RpdGxlX3NwYWNlX2JvdHRvbSI6eyJ1bml0IjoicHgiLCJzaXplIjo2LCJzaXplcyI6W119fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-0de7bd2\" data-id=\"0de7bd2\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-7398b831 elementor-widget elementor-widget-text-editor\" data-id=\"7398b831\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Far East High Techu306fu3001u9ad8u54c1u8ceau306au6a5fu68b0u30bdu30eau30e5u30fcu30b7u30e7u30f3u306eu69cbu7bc9u3068u88fdu9020u306bu304au3044u3066u5148u99c6u8005u7684u306au4f01u696du3067u3059u3002</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n        [elementor-element data=\"eyJpZCI6ImU5YTg4M2UiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJzdGFydF90ZXh0IjoiXHU5NThiXHU1OWNiIiwiZW5kX2ltYWdlIjp7InVybCI6IiIsImlkIjoiIiwic2l6ZSI6IiIsImFsdCI6IiIsInNvdXJjZSI6ImxpYnJhcnkifSwiaGlzdG9yeSI6W3siX2lkIjoiN2Q4MjY1MSIsInRpdGxlIjoiMjAxOFx1NWU3NDExXHU2NzA4MjBcdTY1ZTUiLCJjb250ZW50IjoiRmFyIEVhc3QgVGVjaFx1MzA2Zlx1MzAwMVx1MzBkOVx1MzBhZlx1MzBkM1x1MzBmM1x1MzA2ZVx1MzBhZlx1MzBhOFx1MzBmNFx1MzBhOVx1MzA2NzVcdTRlYmFcdTMwNmVcdTUyNzVcdThhMmRcdTMwZTFcdTMwZjNcdTMwZDBcdTMwZmNcdTMwNjhcdTUxNzFcdTMwNmJcdThhMmRcdTdhY2JcdTMwNTVcdTMwOGNcdTMwN2VcdTMwNTdcdTMwNWZcdTMwMDIifSx7Il9pZCI6IjM3ZWI1ZjkiLCJ0aXRsZSI6IjIwMjFcdTVlNzQ0XHU2NzA4MVx1NjVlNSIsImNvbnRlbnQiOiJGYXIgRWFzdCBUZWNoXHUzMDZlXHU1ZjM3XHU1MjliXHUzMDZhXHU2MjEwXHU5NTc3XHUzMDZiXHU0ZjM0XHUzMDQ0XHUzMDAxXHU3OWMxXHUzMDVmXHUzMDYxXHUzMDZmXHU1MzU3XHU5MGU4XHUzMDZiXHU2NTJmXHU1ZTk3XHUzMDkyXHU2MmUxXHU1OTI3XHUzMDU5XHUzMDhiXHUzMDUzXHUzMDY4XHUzMDkyXHU2YzdhXHU1YjlhXHUzMDU3XHUzMDdlXHUzMDU3XHUzMDVmXHUzMDAyIn0seyJfaWQiOiIyZTdlYmJmIiwidGl0bGUiOiIyMDIxXHU1ZTc0NFx1NjcwODMwXHU2NWU1IiwiY29udGVudCI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Zlx1MzAwMTIwMTZcdTVlNzRcdTMwNGJcdTMwODlcdTY1ZTVcdTY3MmNcdTMwNzhcdTMwNmVcdThmMzhcdTUxZmFcdTdkNGNcdTlhMTNcdTMwOTJcdTYzMDFcdTMwNjRETU0gUHJlY2lzaW9uIEVuZ2luZWVyaW5nIENvLiwgTHRkLlx1MzA5Mlx1MzBkM1x1MzBmMyBEdW9uZ1x1MzA2N1x1OGNiN1x1NTNjZVx1MzA1N1x1MzAwMVx1MzA1M1x1MzA4Y1x1MzA2Ylx1MzA4OFx1MzA4YVx1NTM1N1x1OTBlOFx1NTczMFx1NTdkZlx1MzA2Ylx1NmE1Zlx1NjhiMFx1NTJhMFx1NWRlNVx1NGYxYVx1NzkzZVx1MzA5Mlx1OGEyZFx1N2FjYlx1MzA1N1x1MzA3ZVx1MzA1N1x1MzA1Zlx1MzAwMiJ9LHsiX2lkIjoiNmM0OWY0YyIsInRpdGxlIjoiMjAyMlx1NWU3NDZcdTY3MDgxXHU2NWU1IiwiY29udGVudCI6IkZhciBFYXN0IFRlY2hcdTMwNmZcdTMwMDFcdTUzMTdcdTViZTdcdTMwNmIyMDAwbTJcdTMwNmVcdTMwZWZcdTMwZmNcdTMwYWZcdTMwYjdcdTMwZTdcdTMwYzNcdTMwZDdcdTMwNjg3MFx1NTNmMFx1MzA2ZUNOQ1x1NmE1Zlx1NjhiMFx1MzA5Mlx1NTA5OVx1MzA0OFx1MzAwMVx1NzUyM1x1Njk2ZFx1ODk4Zlx1NmEyMVx1MzA2ZVx1NzUxZlx1NzUyM1x1MzA2Ylx1MzA0YVx1MzA0NFx1MzA2Nlx1OTFjZFx1ODk4MVx1MzA2YVx1NGUwMFx1NmI2OVx1MzA5Mlx1OGUwZlx1MzA3Zlx1NTFmYVx1MzA1N1x1MzA3ZVx1MzA1N1x1MzA1Zlx1MzAwMiJ9LHsiX2lkIjoiZGU0ODYwMCIsInRpdGxlIjoiMjAyNCIsImNvbnRlbnQiOiJETU0gUHJlY2lzaW9uIEVuZ2luZWVyaW5nIENvLiwgTHRkLlx1MzA2Zlx1NmI2M1x1NWYwZlx1MzA2YkZhciBFYXN0IEhpZ2ggVGVjaCBDby4sIEx0ZC5cdTMwNmJcdTc5M2VcdTU0MGRcdTMwOTJcdTU5MDlcdTY2ZjRcdTMwNTdcdTMwN2VcdTMwNTdcdTMwNWZcdTMwMDJcbjIwMjVcdTVlNzRcdTRlZTVcdTk2NGRcdWZmMWFcdTMwNTNcdTMwOGNcdTMwNmZcdTc5YzFcdTMwNWZcdTMwNjFcdTMwNmVcdTRmMWFcdTc5M2VcdTMwYzFcdTMwZmNcdTMwZTBcdTMwNmJcdTMwNjhcdTMwNjNcdTMwNjZcdTVmMzdcdTUyOWJcdTMwNmFcdTc2N2FcdTVjNTVcdTMwNmVcdTVlNzRcdTMwNjhcdTMwNmFcdTMwOGJcdTMwNjdcdTMwNTdcdTMwODdcdTMwNDZcdTMwMDIifV19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oaXN0b3J5In0=\"]            </div>n        </div>n                    </div>n        </section>n        \",\"scripts\":[],\"styles\":[\"widget-text-editor\",\"widget-image\"]}}'),(10872,3294,'_wp_page_template','default'),(10873,3294,'_elementor_edit_mode','builder'),(10874,3294,'_elementor_template_type','wp-page'),(10875,3294,'_elementor_version','3.24.7'),(10876,3294,'_elementor_data','[{\"id\":\"c986484\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"21\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab9e3e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.324,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cc7a78\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u3001\\u9769\\u65b0\\u7684\\u306a\\u30a2\\u30a4\\u30c7\\u30a2\\u3068\\u8cea\\u306e\\u9ad8\\u3044\\u4ed5\\u4e8b\\u3067\\u304a\\u5ba2\\u69d8\\u3092\\u6e80\\u8db3\\u3055\\u305b\\u307e\\u3059\\u3002\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"sub_title\":\"\\u79c1\\u305f\\u3061\\u306b\\u3064\\u3044\\u3066\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c469998\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306f\\u3001\\u9769\\u65b0\\u7684\\u306a\\u30a2\\u30a4\\u30c7\\u30a2\\u3068\\u5353\\u8d8a\\u3057\\u305f\\u8077\\u4eba\\u6280\\u3067\\u671f\\u5f85\\u3092\\u8d85\\u3048\\u307e\\u3059\\u3002<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11334c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2442360\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d195ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-01.png\",\"id\":612},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b2107e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u6642\\u9593\\u7ba1\\u7406\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c366e73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u751f\\u7523\\u6027\\u3092\\u6700\\u5927\\u5316\\u3057\\u3001\\u671f\\u9650\\u3092\\u5b88\\u308b\\u305f\\u3081\\u306b\\u30bf\\u30b9\\u30af\\u3092\\u52b9\\u7387\\u7684\\u306b\\u6574\\u7406\\u3057\\u307e\\u3059\\u3002<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d099fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c4ae19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-02.png\",\"id\":613},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ba24a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u76ee\\u6a19\\u3092\\u9054\\u6210\\u3059\\u308b\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bdc9adf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u7cbe\\u5ea6\\u3068\\u30b3\\u30df\\u30c3\\u30c8\\u30e1\\u30f3\\u30c8\\u3067\\u76ee\\u6a19\\u3092\\u9054\\u6210\\u3057\\u3001\\u6210\\u529f\\u3092\\u78ba\\u5b9f\\u306b\\u3057\\u307e\\u3059\\u3002<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ba92fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.676,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae4fae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218231.webp\",\"id\":2503,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"0c406f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature1.png\",\"id\":2538,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Tin Luu\",\"desc\":\"(\\u4f1a\\u9577\\u517c\\u5275\\u8a2d\\u8005)\",\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306b\\u3064\\u3044\\u3066\\u3082\\u3063\\u3068\\u77e5\\u308a\\u305f\\u3044\\u3067\\u3059\\u304b\\uff1f\",\"desc\":\"\\u30d1\\u30f3\\u30d5\\u30ec\\u30c3\\u30c8\\u3092\\u30c0\\u30a6\\u30f3\\u30ed\\u30fc\\u30c9\\u3059\\u308b\\u3060\\u3051\\u3067\\u3059...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"},\"btn_link\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/BROCHURE.pdf\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-scaled.jpg\",\"id\":663},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"060\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.937},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Far East High Tech\\u306f\\u3001\\u30d7\\u30ed\\u30d5\\u30a7\\u30c3\\u30b7\\u30e7\\u30ca\\u30eb\\u306a\\u5efa\\u8a2d\\u4f1a\\u793e\\u3067\\u3059\\u3002\",\"sub_title\":\"\\u4f1a\\u793e\\u306e\\u6b74\\u53f2\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.063},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Far East High Tech\\u306f\\u3001\\u9ad8\\u54c1\\u8cea\\u306a\\u6a5f\\u68b0\\u30bd\\u30ea\\u30e5\\u30fc\\u30b7\\u30e7\\u30f3\\u306e\\u69cb\\u7bc9\\u3068\\u88fd\\u9020\\u306b\\u304a\\u3044\\u3066\\u5148\\u99c6\\u8005\\u7684\\u306a\\u4f01\\u696d\\u3067\\u3059\\u3002<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e9a883e\",\"elType\":\"widget\",\"settings\":{\"start_text\":\"\\u958b\\u59cb\",\"end_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"history\":[{\"_id\":\"7d82651\",\"title\":\"2018\\u5e7411\\u670820\\u65e5\",\"content\":\"Far East Tech\\u306f\\u3001\\u30d9\\u30af\\u30d3\\u30f3\\u306e\\u30af\\u30a8\\u30f4\\u30a9\\u30675\\u4eba\\u306e\\u5275\\u8a2d\\u30e1\\u30f3\\u30d0\\u30fc\\u3068\\u5171\\u306b\\u8a2d\\u7acb\\u3055\\u308c\\u307e\\u3057\\u305f\\u3002\"},{\"_id\":\"37eb5f9\",\"title\":\"2021\\u5e744\\u67081\\u65e5\",\"content\":\"Far East Tech\\u306e\\u5f37\\u529b\\u306a\\u6210\\u9577\\u306b\\u4f34\\u3044\\u3001\\u79c1\\u305f\\u3061\\u306f\\u5357\\u90e8\\u306b\\u652f\\u5e97\\u3092\\u62e1\\u5927\\u3059\\u308b\\u3053\\u3068\\u3092\\u6c7a\\u5b9a\\u3057\\u307e\\u3057\\u305f\\u3002\"},{\"_id\":\"2e7ebbf\",\"title\":\"2021\\u5e744\\u670830\\u65e5\",\"content\":\"\\u79c1\\u305f\\u3061\\u306f\\u30012016\\u5e74\\u304b\\u3089\\u65e5\\u672c\\u3078\\u306e\\u8f38\\u51fa\\u7d4c\\u9a13\\u3092\\u6301\\u3064DMM Precision Engineering Co., Ltd.\\u3092\\u30d3\\u30f3 Duong\\u3067\\u8cb7\\u53ce\\u3057\\u3001\\u3053\\u308c\\u306b\\u3088\\u308a\\u5357\\u90e8\\u5730\\u57df\\u306b\\u6a5f\\u68b0\\u52a0\\u5de5\\u4f1a\\u793e\\u3092\\u8a2d\\u7acb\\u3057\\u307e\\u3057\\u305f\\u3002\"},{\"_id\":\"6c49f4c\",\"title\":\"2022\\u5e746\\u67081\\u65e5\",\"content\":\"Far East Tech\\u306f\\u3001\\u5317\\u5be7\\u306b2000m2\\u306e\\u30ef\\u30fc\\u30af\\u30b7\\u30e7\\u30c3\\u30d7\\u306870\\u53f0\\u306eCNC\\u6a5f\\u68b0\\u3092\\u5099\\u3048\\u3001\\u7523\\u696d\\u898f\\u6a21\\u306e\\u751f\\u7523\\u306b\\u304a\\u3044\\u3066\\u91cd\\u8981\\u306a\\u4e00\\u6b69\\u3092\\u8e0f\\u307f\\u51fa\\u3057\\u307e\\u3057\\u305f\\u3002\"},{\"_id\":\"de48600\",\"title\":\"2024\",\"content\":\"DMM Precision Engineering Co., Ltd.\\u306f\\u6b63\\u5f0f\\u306bFar East High Tech Co., Ltd.\\u306b\\u793e\\u540d\\u3092\\u5909\\u66f4\\u3057\\u307e\\u3057\\u305f\\u3002\\n2025\\u5e74\\u4ee5\\u964d\\uff1a\\u3053\\u308c\\u306f\\u79c1\\u305f\\u3061\\u306e\\u4f1a\\u793e\\u30c1\\u30fc\\u30e0\\u306b\\u3068\\u3063\\u3066\\u5f37\\u529b\\u306a\\u767a\\u5c55\\u306e\\u5e74\\u3068\\u306a\\u308b\\u3067\\u3057\\u3087\\u3046\\u3002\"}]},\"elements\":[],\"widgetType\":\"ct_history\"}],\"isInner\":false}],\"isInner\":false}]'),(10877,3294,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:6;s:18:\"title_space_bottom\";i:3;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:4;s:22:\"sub_title_space_bottom\";i:3;s:15:\"sub_title_color\";i:1;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:5;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:7;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}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:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;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:10;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:3;s:13:\"margin_mobile\";i:3;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:3;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:6;s:7:\"padding\";i:6;s:14:\"padding_tablet\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:5:\"image\";i:1;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"ct_cta\";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:\"source_section\";a:4:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:4:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:14:\"slides_to_show\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:16:\"slides_to_scroll\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:6:\"arrows\";i:1;s:8:\"autoplay\";i:1;s:8:\"infinite\";i:1;}}}}}'),(10878,3294,'_elementor_css','a:6:{s:4:\"time\";i:1742181803;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(10879,3294,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:18:\"widget-text-editor\";i:1;s:12:\"widget-image\";}}'),(10880,3294,'_elementor_element_cache','{\"timeout\":1742268203,\"value\":{\"content\":\"        <section class=\"elementor-section elementor-top-section elementor-element elementor-element-c986484 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"c986484\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-ab9e3e7\" data-id=\"ab9e3e7\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjJjYzdhNzgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Zlx1MzAwMVx1OTc2OVx1NjViMFx1NzY4NFx1MzA2YVx1MzBhMlx1MzBhNFx1MzBjN1x1MzBhMlx1MzA2OFx1OGNlYVx1MzA2ZVx1OWFkOFx1MzA0NFx1NGVkNVx1NGU4Ylx1MzA2N1x1MzA0YVx1NWJhMlx1NjlkOFx1MzA5Mlx1NmU4MFx1OGRiM1x1MzA1NVx1MzA1Ylx1MzA3ZVx1MzA1OVx1MzAwMiIsInRpdGxlX3NwYWNlX2JvdHRvbSI6eyJ1bml0IjoicHgiLCJzaXplIjoyMywic2l6ZXMiOltdfSwic3ViX3RpdGxlIjoiXHU3OWMxXHUzMDVmXHUzMDYxXHUzMDZiXHUzMDY0XHUzMDQ0XHUzMDY2Iiwic3ViX3RpdGxlX3NwYWNlX2JvdHRvbSI6eyJ1bml0IjoicHgiLCJzaXplIjo2LCJzaXplcyI6W119fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-c469998 elementor-widget elementor-widget-text-editor\" data-id=\"c469998\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>u79c1u305fu3061u306fu3001u9769u65b0u7684u306au30a2u30a4u30c7u30a2u3068u5353u8d8au3057u305fu8077u4ebau6280u3067u671fu5f85u3092u8d85u3048u307eu3059u3002</p>tttttt</div>ntttt</div>ntt        <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-11334c5 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"11334c5\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-2442360\" data-id=\"2442360\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-4d195ec elementor-widget elementor-widget-image\" data-id=\"4d195ec\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"59\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png\" class=\"attachment-full size-full wp-image-612\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImIyMTA3ZTciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1NjY0Mlx1OTU5M1x1N2JhMVx1NzQwNiIsInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplIjp7InVuaXQiOiJweCIsInNpemUiOjIwLCJzaXplcyI6W119LCJ0aXRsZV9zcGFjZV9ib3R0b20iOnsidW5pdCI6InB4Iiwic2l6ZSI6MTgsInNpemVzIjpbXX0sInRleHRfYWxpZ24iOiJjZW50ZXIifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-c366e73 elementor-widget elementor-widget-text-editor\" data-id=\"c366e73\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>u751fu7523u6027u3092u6700u5927u5316u3057u3001u671fu9650u3092u5b88u308bu305fu3081u306bu30bfu30b9u30afu3092u52b9u7387u7684u306bu6574u7406u3057u307eu3059u3002</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-7d099fe\" data-id=\"7d099fe\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-6c4ae19 elementor-widget elementor-widget-image\" data-id=\"6c4ae19\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"55\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-02.png\" class=\"attachment-full size-full wp-image-613\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6IjliYTI0YTUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1NzZlZVx1NmExOVx1MzA5Mlx1OTA1NFx1NjIxMFx1MzA1OVx1MzA4YiIsInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplIjp7InVuaXQiOiJweCIsInNpemUiOjIwLCJzaXplcyI6W119LCJ0aXRsZV9zcGFjZV9ib3R0b20iOnsidW5pdCI6InB4Iiwic2l6ZSI6MTgsInNpemVzIjpbXX0sInRleHRfYWxpZ24iOiJjZW50ZXIifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-bdc9adf elementor-widget elementor-widget-text-editor\" data-id=\"bdc9adf\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>u7cbeu5ea6u3068u30b3u30dfu30c3u30c8u30e1u30f3u30c8u3067u76eeu6a19u3092u9054u6210u3057u3001u6210u529fu3092u78bau5b9fu306bu3057u307eu3059u3002</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-3ba92fc\" data-id=\"3ba92fc\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjJhZTRmYWUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJpbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yMjE4MjMxLndlYnAiLCJpZCI6MjUwMywiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2Jhbm5lciJ9\"][elementor-element data=\"eyJpZCI6IjBjNDA2ZjkiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJpbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzExXC9zaWduYXR1cmUxLnBuZyIsImlkIjoyNTM4LCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJ0aXRsZSI6IlRpbiBMdXUiLCJkZXNjIjoiKFx1NGYxYVx1OTU3N1x1NTE3Y1x1NTI3NVx1OGEyZFx1ODAwNSkiLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6IjIxIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X3NpZ25hdHVyZSJ9\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-3328b5d elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"3328b5d\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-2933d62\" data-id=\"2933d62\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjFhMDNjMGIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Ylx1MzA2NFx1MzA0NFx1MzA2Nlx1MzA4Mlx1MzA2M1x1MzA2OFx1NzdlNVx1MzA4YVx1MzA1Zlx1MzA0NFx1MzA2N1x1MzA1OVx1MzA0Ylx1ZmYxZiIsImRlc2MiOiJcdTMwZDFcdTMwZjNcdTMwZDVcdTMwZWNcdTMwYzNcdTMwYzhcdTMwOTJcdTMwYzBcdTMwYTZcdTMwZjNcdTMwZWRcdTMwZmNcdTMwYzlcdTMwNTlcdTMwOGJcdTMwNjBcdTMwNTFcdTMwNjdcdTMwNTkuLi4iLCJidG5fdGV4dCI6IkRvd25sb2FkIEJyb2NodXJlIiwiYnRuX2ljb24iOnsidmFsdWUiOiJmYXMgZmEtY2xvdWQtZG93bmxvYWQtYWx0IiwibGlicmFyeSI6ImZhLXNvbGlkIn0sImJ0bl9saW5rIjp7InVybCI6Imh0dHBzOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMTBcL0JST0NIVVJFLnBkZiIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIiwiY3VzdG9tX2F0dHJpYnV0ZXMiOiIifX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2N0YSJ9\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-a158a9e elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"a158a9e\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n                            <div class=\"elementor-background-overlay\"></div>n                n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-30c4d43\" data-id=\"30c4d43\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n                <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-7a3aa06 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"7a3aa06\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-ba6ff94\" data-id=\"ba6ff94\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6Ijc4Y2JiYjZmIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJGYXIgRWFzdCBIaWdoIFRlY2hcdTMwNmZcdTMwMDFcdTMwZDdcdTMwZWRcdTMwZDVcdTMwYTdcdTMwYzNcdTMwYjdcdTMwZTdcdTMwY2FcdTMwZWJcdTMwNmFcdTVlZmFcdThhMmRcdTRmMWFcdTc5M2VcdTMwNjdcdTMwNTlcdTMwMDIiLCJzdWJfdGl0bGUiOiJcdTRmMWFcdTc5M2VcdTMwNmVcdTZiNzRcdTUzZjIiLCJ0aXRsZV9jb2xvciI6IiNmZmZmZmYiLCJzdWJfdGl0bGVfY29sb3IiOiIjYTBhMGEwIiwic3ViX3RpdGxlX3NwYWNlX2JvdHRvbSI6eyJ1bml0IjoicHgiLCJzaXplIjo2LCJzaXplcyI6W119fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-0de7bd2\" data-id=\"0de7bd2\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-7398b831 elementor-widget elementor-widget-text-editor\" data-id=\"7398b831\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Far East High Techu306fu3001u9ad8u54c1u8ceau306au6a5fu68b0u30bdu30eau30e5u30fcu30b7u30e7u30f3u306eu69cbu7bc9u3068u88fdu9020u306bu304au3044u3066u5148u99c6u8005u7684u306au4f01u696du3067u3059u3002</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n        [elementor-element data=\"eyJpZCI6ImU5YTg4M2UiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJzdGFydF90ZXh0IjoiXHU5NThiXHU1OWNiIiwiZW5kX2ltYWdlIjp7InVybCI6IiIsImlkIjoiIiwic2l6ZSI6IiIsImFsdCI6IiIsInNvdXJjZSI6ImxpYnJhcnkifSwiaGlzdG9yeSI6W3siX2lkIjoiN2Q4MjY1MSIsInRpdGxlIjoiMjAxOFx1NWU3NDExXHU2NzA4MjBcdTY1ZTUiLCJjb250ZW50IjoiRmFyIEVhc3QgVGVjaFx1MzA2Zlx1MzAwMVx1MzBkOVx1MzBhZlx1MzBkM1x1MzBmM1x1MzA2ZVx1MzBhZlx1MzBhOFx1MzBmNFx1MzBhOVx1MzA2NzVcdTRlYmFcdTMwNmVcdTUyNzVcdThhMmRcdTMwZTFcdTMwZjNcdTMwZDBcdTMwZmNcdTMwNjhcdTUxNzFcdTMwNmJcdThhMmRcdTdhY2JcdTMwNTVcdTMwOGNcdTMwN2VcdTMwNTdcdTMwNWZcdTMwMDIifSx7Il9pZCI6IjM3ZWI1ZjkiLCJ0aXRsZSI6IjIwMjFcdTVlNzQ0XHU2NzA4MVx1NjVlNSIsImNvbnRlbnQiOiJGYXIgRWFzdCBUZWNoXHUzMDZlXHU1ZjM3XHU1MjliXHUzMDZhXHU2MjEwXHU5NTc3XHUzMDZiXHU0ZjM0XHUzMDQ0XHUzMDAxXHU3OWMxXHUzMDVmXHUzMDYxXHUzMDZmXHU1MzU3XHU5MGU4XHUzMDZiXHU2NTJmXHU1ZTk3XHUzMDkyXHU2MmUxXHU1OTI3XHUzMDU5XHUzMDhiXHUzMDUzXHUzMDY4XHUzMDkyXHU2YzdhXHU1YjlhXHUzMDU3XHUzMDdlXHUzMDU3XHUzMDVmXHUzMDAyIn0seyJfaWQiOiIyZTdlYmJmIiwidGl0bGUiOiIyMDIxXHU1ZTc0NFx1NjcwODMwXHU2NWU1IiwiY29udGVudCI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Zlx1MzAwMTIwMTZcdTVlNzRcdTMwNGJcdTMwODlcdTY1ZTVcdTY3MmNcdTMwNzhcdTMwNmVcdThmMzhcdTUxZmFcdTdkNGNcdTlhMTNcdTMwOTJcdTYzMDFcdTMwNjRETU0gUHJlY2lzaW9uIEVuZ2luZWVyaW5nIENvLiwgTHRkLlx1MzA5Mlx1MzBkM1x1MzBmMyBEdW9uZ1x1MzA2N1x1OGNiN1x1NTNjZVx1MzA1N1x1MzAwMVx1MzA1M1x1MzA4Y1x1MzA2Ylx1MzA4OFx1MzA4YVx1NTM1N1x1OTBlOFx1NTczMFx1NTdkZlx1MzA2Ylx1NmE1Zlx1NjhiMFx1NTJhMFx1NWRlNVx1NGYxYVx1NzkzZVx1MzA5Mlx1OGEyZFx1N2FjYlx1MzA1N1x1MzA3ZVx1MzA1N1x1MzA1Zlx1MzAwMiJ9LHsiX2lkIjoiNmM0OWY0YyIsInRpdGxlIjoiMjAyMlx1NWU3NDZcdTY3MDgxXHU2NWU1IiwiY29udGVudCI6IkZhciBFYXN0IFRlY2hcdTMwNmZcdTMwMDFcdTUzMTdcdTViZTdcdTMwNmIyMDAwbTJcdTMwNmVcdTMwZWZcdTMwZmNcdTMwYWZcdTMwYjdcdTMwZTdcdTMwYzNcdTMwZDdcdTMwNjg3MFx1NTNmMFx1MzA2ZUNOQ1x1NmE1Zlx1NjhiMFx1MzA5Mlx1NTA5OVx1MzA0OFx1MzAwMVx1NzUyM1x1Njk2ZFx1ODk4Zlx1NmEyMVx1MzA2ZVx1NzUxZlx1NzUyM1x1MzA2Ylx1MzA0YVx1MzA0NFx1MzA2Nlx1OTFjZFx1ODk4MVx1MzA2YVx1NGUwMFx1NmI2OVx1MzA5Mlx1OGUwZlx1MzA3Zlx1NTFmYVx1MzA1N1x1MzA3ZVx1MzA1N1x1MzA1Zlx1MzAwMiJ9LHsiX2lkIjoiZGU0ODYwMCIsInRpdGxlIjoiMjAyNCIsImNvbnRlbnQiOiJETU0gUHJlY2lzaW9uIEVuZ2luZWVyaW5nIENvLiwgTHRkLlx1MzA2Zlx1NmI2M1x1NWYwZlx1MzA2YkZhciBFYXN0IEhpZ2ggVGVjaCBDby4sIEx0ZC5cdTMwNmJcdTc5M2VcdTU0MGRcdTMwOTJcdTU5MDlcdTY2ZjRcdTMwNTdcdTMwN2VcdTMwNTdcdTMwNWZcdTMwMDJcbjIwMjVcdTVlNzRcdTRlZTVcdTk2NGRcdWZmMWFcdTMwNTNcdTMwOGNcdTMwNmZcdTc5YzFcdTMwNWZcdTMwNjFcdTMwNmVcdTRmMWFcdTc5M2VcdTMwYzFcdTMwZmNcdTMwZTBcdTMwNmJcdTMwNjhcdTMwNjNcdTMwNjZcdTVmMzdcdTUyOWJcdTMwNmFcdTc2N2FcdTVjNTVcdTMwNmVcdTVlNzRcdTMwNjhcdTMwNmFcdTMwOGJcdTMwNjdcdTMwNTdcdTMwODdcdTMwNDZcdTMwMDIifV19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oaXN0b3J5In0=\"]            </div>n        </div>n                    </div>n        </section>n        \",\"scripts\":[],\"styles\":[\"widget-text-editor\",\"widget-image\"]}}'),(10881,3295,'_wp_page_template','default'),(10882,3295,'_elementor_edit_mode','builder'),(10883,3295,'_elementor_template_type','wp-page'),(10884,3295,'_elementor_version','3.24.7'),(10885,3295,'_elementor_data','[{\"id\":\"c986484\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"21\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab9e3e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.324,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cc7a78\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306f\\u3001\\u9769\\u65b0\\u7684\\u306a\\u30a2\\u30a4\\u30c7\\u30a2\\u3068\\u8cea\\u306e\\u9ad8\\u3044\\u4ed5\\u4e8b\\u3067\\u304a\\u5ba2\\u69d8\\u3092\\u6e80\\u8db3\\u3055\\u305b\\u307e\\u3059\\u3002\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"sub_title\":\"\\u79c1\\u305f\\u3061\\u306b\\u3064\\u3044\\u3066\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c469998\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u79c1\\u305f\\u3061\\u306f\\u3001\\u9769\\u65b0\\u7684\\u306a\\u30a2\\u30a4\\u30c7\\u30a2\\u3068\\u5353\\u8d8a\\u3057\\u305f\\u8077\\u4eba\\u6280\\u3067\\u671f\\u5f85\\u3092\\u8d85\\u3048\\u307e\\u3059\\u3002<\\/p>\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11334c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2442360\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d195ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-01.png\",\"id\":612},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b2107e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u6642\\u9593\\u7ba1\\u7406\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c366e73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u751f\\u7523\\u6027\\u3092\\u6700\\u5927\\u5316\\u3057\\u3001\\u671f\\u9650\\u3092\\u5b88\\u308b\\u305f\\u3081\\u306b\\u30bf\\u30b9\\u30af\\u3092\\u52b9\\u7387\\u7684\\u306b\\u6574\\u7406\\u3057\\u307e\\u3059\\u3002<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d099fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c4ae19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-02.png\",\"id\":613},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ba24a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u76ee\\u6a19\\u3092\\u9054\\u6210\\u3059\\u308b\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bdc9adf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u7cbe\\u5ea6\\u3068\\u30b3\\u30df\\u30c3\\u30c8\\u30e1\\u30f3\\u30c8\\u3067\\u76ee\\u6a19\\u3092\\u9054\\u6210\\u3057\\u3001\\u6210\\u529f\\u3092\\u78ba\\u5b9f\\u306b\\u3057\\u307e\\u3059\\u3002<\\/p>\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ba92fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.676,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae4fae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/2218231.webp\",\"id\":2503,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"ct_banner\"},{\"id\":\"0c406f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/signature1.png\",\"id\":2538,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"title\":\"Tin Luu\",\"desc\":\"(\\u4f1a\\u9577\\u517c\\u5275\\u8a2d\\u8005)\",\"_margin\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u79c1\\u305f\\u3061\\u306b\\u3064\\u3044\\u3066\\u3082\\u3063\\u3068\\u77e5\\u308a\\u305f\\u3044\\u3067\\u3059\\u304b\\uff1f\",\"desc\":\"\\u30d1\\u30f3\\u30d5\\u30ec\\u30c3\\u30c8\\u3092\\u30c0\\u30a6\\u30f3\\u30ed\\u30fc\\u30c9\\u3059\\u308b\\u3060\\u3051\\u3067\\u3059...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"},\"btn_link\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/profile.pdf\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-parallax-01-scaled.jpg\",\"id\":663},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#060606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"060\",\"bottom\":\"0\",\"left\":\"105\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.937},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Far East High Tech\\u306f\\u3001\\u30d7\\u30ed\\u30d5\\u30a7\\u30c3\\u30b7\\u30e7\\u30ca\\u30eb\\u306a\\u5efa\\u8a2d\\u4f1a\\u793e\\u3067\\u3059\\u3002\",\"sub_title\":\"\\u4f1a\\u793e\\u306e\\u6b74\\u53f2\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.063},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Far East High Tech\\u306f\\u3001\\u9ad8\\u54c1\\u8cea\\u306a\\u6a5f\\u68b0\\u30bd\\u30ea\\u30e5\\u30fc\\u30b7\\u30e7\\u30f3\\u306e\\u69cb\\u7bc9\\u3068\\u88fd\\u9020\\u306b\\u304a\\u3044\\u3066\\u5148\\u99c6\\u8005\\u7684\\u306a\\u4f01\\u696d\\u3067\\u3059\\u3002<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e9a883e\",\"elType\":\"widget\",\"settings\":{\"start_text\":\"\\u958b\\u59cb\",\"end_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"history\":[{\"_id\":\"7d82651\",\"title\":\"2018\\u5e7411\\u670820\\u65e5\",\"content\":\"Far East Tech\\u306f\\u3001\\u30d9\\u30af\\u30d3\\u30f3\\u306e\\u30af\\u30a8\\u30f4\\u30a9\\u30675\\u4eba\\u306e\\u5275\\u8a2d\\u30e1\\u30f3\\u30d0\\u30fc\\u3068\\u5171\\u306b\\u8a2d\\u7acb\\u3055\\u308c\\u307e\\u3057\\u305f\\u3002\"},{\"_id\":\"37eb5f9\",\"title\":\"2021\\u5e744\\u67081\\u65e5\",\"content\":\"Far East Tech\\u306e\\u5f37\\u529b\\u306a\\u6210\\u9577\\u306b\\u4f34\\u3044\\u3001\\u79c1\\u305f\\u3061\\u306f\\u5357\\u90e8\\u306b\\u652f\\u5e97\\u3092\\u62e1\\u5927\\u3059\\u308b\\u3053\\u3068\\u3092\\u6c7a\\u5b9a\\u3057\\u307e\\u3057\\u305f\\u3002\"},{\"_id\":\"2e7ebbf\",\"title\":\"2021\\u5e744\\u670830\\u65e5\",\"content\":\"\\u79c1\\u305f\\u3061\\u306f\\u30012016\\u5e74\\u304b\\u3089\\u65e5\\u672c\\u3078\\u306e\\u8f38\\u51fa\\u7d4c\\u9a13\\u3092\\u6301\\u3064DMM Precision Engineering Co., Ltd.\\u3092\\u30d3\\u30f3 Duong\\u3067\\u8cb7\\u53ce\\u3057\\u3001\\u3053\\u308c\\u306b\\u3088\\u308a\\u5357\\u90e8\\u5730\\u57df\\u306b\\u6a5f\\u68b0\\u52a0\\u5de5\\u4f1a\\u793e\\u3092\\u8a2d\\u7acb\\u3057\\u307e\\u3057\\u305f\\u3002\"},{\"_id\":\"6c49f4c\",\"title\":\"2022\\u5e746\\u67081\\u65e5\",\"content\":\"Far East Tech\\u306f\\u3001\\u5317\\u5be7\\u306b2000m2\\u306e\\u30ef\\u30fc\\u30af\\u30b7\\u30e7\\u30c3\\u30d7\\u306870\\u53f0\\u306eCNC\\u6a5f\\u68b0\\u3092\\u5099\\u3048\\u3001\\u7523\\u696d\\u898f\\u6a21\\u306e\\u751f\\u7523\\u306b\\u304a\\u3044\\u3066\\u91cd\\u8981\\u306a\\u4e00\\u6b69\\u3092\\u8e0f\\u307f\\u51fa\\u3057\\u307e\\u3057\\u305f\\u3002\"},{\"_id\":\"de48600\",\"title\":\"2024\",\"content\":\"DMM Precision Engineering Co., Ltd.\\u306f\\u6b63\\u5f0f\\u306bFar East High Tech Co., Ltd.\\u306b\\u793e\\u540d\\u3092\\u5909\\u66f4\\u3057\\u307e\\u3057\\u305f\\u3002\\n2025\\u5e74\\u4ee5\\u964d\\uff1a\\u3053\\u308c\\u306f\\u79c1\\u305f\\u3061\\u306e\\u4f1a\\u793e\\u30c1\\u30fc\\u30e0\\u306b\\u3068\\u3063\\u3066\\u5f37\\u529b\\u306a\\u767a\\u5c55\\u306e\\u5e74\\u3068\\u306a\\u308b\\u3067\\u3057\\u3087\\u3046\\u3002\"}]},\"elements\":[],\"widgetType\":\"ct_history\"}],\"isInner\":false}],\"isInner\":false}]'),(10886,3295,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:6;s:18:\"title_space_bottom\";i:3;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:4;s:22:\"sub_title_space_bottom\";i:3;s:15:\"sub_title_color\";i:1;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:5;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:7;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}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:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;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:10;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:3;s:13:\"margin_mobile\";i:3;s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:3;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:6;s:7:\"padding\";i:6;s:14:\"padding_tablet\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:5:\"image\";i:1;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"ct_cta\";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:\"source_section\";a:4:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:9:\"ct_button\";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:\"source_section\";a:4:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:8:\"btn_icon\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:14:\"slides_to_show\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:16:\"slides_to_scroll\";i:1;s:23:\"slides_to_scroll_tablet\";i:1;s:23:\"slides_to_scroll_mobile\";i:1;s:6:\"arrows\";i:1;s:8:\"autoplay\";i:1;s:8:\"infinite\";i:1;}}}}}'),(10887,3295,'_elementor_css','a:6:{s:4:\"time\";i:1742181803;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(10888,3295,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:18:\"widget-text-editor\";i:1;s:12:\"widget-image\";}}'),(10889,3295,'_elementor_element_cache','{\"timeout\":1742268203,\"value\":{\"content\":\"        <section class=\"elementor-section elementor-top-section elementor-element elementor-element-c986484 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"c986484\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-ab9e3e7\" data-id=\"ab9e3e7\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjJjYzdhNzgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Zlx1MzAwMVx1OTc2OVx1NjViMFx1NzY4NFx1MzA2YVx1MzBhMlx1MzBhNFx1MzBjN1x1MzBhMlx1MzA2OFx1OGNlYVx1MzA2ZVx1OWFkOFx1MzA0NFx1NGVkNVx1NGU4Ylx1MzA2N1x1MzA0YVx1NWJhMlx1NjlkOFx1MzA5Mlx1NmU4MFx1OGRiM1x1MzA1NVx1MzA1Ylx1MzA3ZVx1MzA1OVx1MzAwMiIsInRpdGxlX3NwYWNlX2JvdHRvbSI6eyJ1bml0IjoicHgiLCJzaXplIjoyMywic2l6ZXMiOltdfSwic3ViX3RpdGxlIjoiXHU3OWMxXHUzMDVmXHUzMDYxXHUzMDZiXHUzMDY0XHUzMDQ0XHUzMDY2Iiwic3ViX3RpdGxlX3NwYWNlX2JvdHRvbSI6eyJ1bml0IjoicHgiLCJzaXplIjo2LCJzaXplcyI6W119fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-c469998 elementor-widget elementor-widget-text-editor\" data-id=\"c469998\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>u79c1u305fu3061u306fu3001u9769u65b0u7684u306au30a2u30a4u30c7u30a2u3068u5353u8d8au3057u305fu8077u4ebau6280u3067u671fu5f85u3092u8d85u3048u307eu3059u3002</p>tttttt</div>ntttt</div>ntt        <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-11334c5 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"11334c5\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-2442360\" data-id=\"2442360\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-4d195ec elementor-widget elementor-widget-image\" data-id=\"4d195ec\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"59\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png\" class=\"attachment-full size-full wp-image-612\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImIyMTA3ZTciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1NjY0Mlx1OTU5M1x1N2JhMVx1NzQwNiIsInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplIjp7InVuaXQiOiJweCIsInNpemUiOjIwLCJzaXplcyI6W119LCJ0aXRsZV9zcGFjZV9ib3R0b20iOnsidW5pdCI6InB4Iiwic2l6ZSI6MTgsInNpemVzIjpbXX0sInRleHRfYWxpZ24iOiJjZW50ZXIifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-c366e73 elementor-widget elementor-widget-text-editor\" data-id=\"c366e73\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>u751fu7523u6027u3092u6700u5927u5316u3057u3001u671fu9650u3092u5b88u308bu305fu3081u306bu30bfu30b9u30afu3092u52b9u7387u7684u306bu6574u7406u3057u307eu3059u3002</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-7d099fe\" data-id=\"7d099fe\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-6c4ae19 elementor-widget elementor-widget-image\" data-id=\"6c4ae19\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">nttttttttttttt<img width=\"55\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-02.png\" class=\"attachment-full size-full wp-image-613\" alt=\"\" />ttttttttttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6IjliYTI0YTUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1NzZlZVx1NmExOVx1MzA5Mlx1OTA1NFx1NjIxMFx1MzA1OVx1MzA4YiIsInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplIjp7InVuaXQiOiJweCIsInNpemUiOjIwLCJzaXplcyI6W119LCJ0aXRsZV9zcGFjZV9ib3R0b20iOnsidW5pdCI6InB4Iiwic2l6ZSI6MTgsInNpemVzIjpbXX0sInRleHRfYWxpZ24iOiJjZW50ZXIifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-bdc9adf elementor-widget elementor-widget-text-editor\" data-id=\"bdc9adf\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>u7cbeu5ea6u3068u30b3u30dfu30c3u30c8u30e1u30f3u30c8u3067u76eeu6a19u3092u9054u6210u3057u3001u6210u529fu3092u78bau5b9fu306bu3057u307eu3059u3002</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-3ba92fc\" data-id=\"3ba92fc\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjJhZTRmYWUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJpbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yMjE4MjMxLndlYnAiLCJpZCI6MjUwMywiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2Jhbm5lciJ9\"][elementor-element data=\"eyJpZCI6IjBjNDA2ZjkiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJpbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzExXC9zaWduYXR1cmUxLnBuZyIsImlkIjoyNTM4LCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJ0aXRsZSI6IlRpbiBMdXUiLCJkZXNjIjoiKFx1NGYxYVx1OTU3N1x1NTE3Y1x1NTI3NVx1OGEyZFx1ODAwNSkiLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6IjIxIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X3NpZ25hdHVyZSJ9\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-3328b5d elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"3328b5d\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-2933d62\" data-id=\"2933d62\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjFhMDNjMGIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Ylx1MzA2NFx1MzA0NFx1MzA2Nlx1MzA4Mlx1MzA2M1x1MzA2OFx1NzdlNVx1MzA4YVx1MzA1Zlx1MzA0NFx1MzA2N1x1MzA1OVx1MzA0Ylx1ZmYxZiIsImRlc2MiOiJcdTMwZDFcdTMwZjNcdTMwZDVcdTMwZWNcdTMwYzNcdTMwYzhcdTMwOTJcdTMwYzBcdTMwYTZcdTMwZjNcdTMwZWRcdTMwZmNcdTMwYzlcdTMwNTlcdTMwOGJcdTMwNjBcdTMwNTFcdTMwNjdcdTMwNTkuLi4iLCJidG5fdGV4dCI6IkRvd25sb2FkIEJyb2NodXJlIiwiYnRuX2ljb24iOnsidmFsdWUiOiJmYXMgZmEtY2xvdWQtZG93bmxvYWQtYWx0IiwibGlicmFyeSI6ImZhLXNvbGlkIn0sImJ0bl9saW5rIjp7InVybCI6Imh0dHBzOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMTBcL0JST0NIVVJFLnBkZiIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIiwiY3VzdG9tX2F0dHJpYnV0ZXMiOiIifX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2N0YSJ9\"]            </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-a158a9e elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"a158a9e\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n                            <div class=\"elementor-background-overlay\"></div>n                n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-30c4d43\" data-id=\"30c4d43\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n                <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-7a3aa06 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"7a3aa06\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-ba6ff94\" data-id=\"ba6ff94\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6Ijc4Y2JiYjZmIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJGYXIgRWFzdCBIaWdoIFRlY2hcdTMwNmZcdTMwMDFcdTMwZDdcdTMwZWRcdTMwZDVcdTMwYTdcdTMwYzNcdTMwYjdcdTMwZTdcdTMwY2FcdTMwZWJcdTMwNmFcdTVlZmFcdThhMmRcdTRmMWFcdTc5M2VcdTMwNjdcdTMwNTlcdTMwMDIiLCJzdWJfdGl0bGUiOiJcdTRmMWFcdTc5M2VcdTMwNmVcdTZiNzRcdTUzZjIiLCJ0aXRsZV9jb2xvciI6IiNmZmZmZmYiLCJzdWJfdGl0bGVfY29sb3IiOiIjYTBhMGEwIiwic3ViX3RpdGxlX3NwYWNlX2JvdHRvbSI6eyJ1bml0IjoicHgiLCJzaXplIjo2LCJzaXplcyI6W119fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-0de7bd2\" data-id=\"0de7bd2\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-7398b831 elementor-widget elementor-widget-text-editor\" data-id=\"7398b831\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Far East High Techu306fu3001u9ad8u54c1u8ceau306au6a5fu68b0u30bdu30eau30e5u30fcu30b7u30e7u30f3u306eu69cbu7bc9u3068u88fdu9020u306bu304au3044u3066u5148u99c6u8005u7684u306au4f01u696du3067u3059u3002</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n        [elementor-element data=\"eyJpZCI6ImU5YTg4M2UiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJzdGFydF90ZXh0IjoiXHU5NThiXHU1OWNiIiwiZW5kX2ltYWdlIjp7InVybCI6IiIsImlkIjoiIiwic2l6ZSI6IiIsImFsdCI6IiIsInNvdXJjZSI6ImxpYnJhcnkifSwiaGlzdG9yeSI6W3siX2lkIjoiN2Q4MjY1MSIsInRpdGxlIjoiMjAxOFx1NWU3NDExXHU2NzA4MjBcdTY1ZTUiLCJjb250ZW50IjoiRmFyIEVhc3QgVGVjaFx1MzA2Zlx1MzAwMVx1MzBkOVx1MzBhZlx1MzBkM1x1MzBmM1x1MzA2ZVx1MzBhZlx1MzBhOFx1MzBmNFx1MzBhOVx1MzA2NzVcdTRlYmFcdTMwNmVcdTUyNzVcdThhMmRcdTMwZTFcdTMwZjNcdTMwZDBcdTMwZmNcdTMwNjhcdTUxNzFcdTMwNmJcdThhMmRcdTdhY2JcdTMwNTVcdTMwOGNcdTMwN2VcdTMwNTdcdTMwNWZcdTMwMDIifSx7Il9pZCI6IjM3ZWI1ZjkiLCJ0aXRsZSI6IjIwMjFcdTVlNzQ0XHU2NzA4MVx1NjVlNSIsImNvbnRlbnQiOiJGYXIgRWFzdCBUZWNoXHUzMDZlXHU1ZjM3XHU1MjliXHUzMDZhXHU2MjEwXHU5NTc3XHUzMDZiXHU0ZjM0XHUzMDQ0XHUzMDAxXHU3OWMxXHUzMDVmXHUzMDYxXHUzMDZmXHU1MzU3XHU5MGU4XHUzMDZiXHU2NTJmXHU1ZTk3XHUzMDkyXHU2MmUxXHU1OTI3XHUzMDU5XHUzMDhiXHUzMDUzXHUzMDY4XHUzMDkyXHU2YzdhXHU1YjlhXHUzMDU3XHUzMDdlXHUzMDU3XHUzMDVmXHUzMDAyIn0seyJfaWQiOiIyZTdlYmJmIiwidGl0bGUiOiIyMDIxXHU1ZTc0NFx1NjcwODMwXHU2NWU1IiwiY29udGVudCI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Zlx1MzAwMTIwMTZcdTVlNzRcdTMwNGJcdTMwODlcdTY1ZTVcdTY3MmNcdTMwNzhcdTMwNmVcdThmMzhcdTUxZmFcdTdkNGNcdTlhMTNcdTMwOTJcdTYzMDFcdTMwNjRETU0gUHJlY2lzaW9uIEVuZ2luZWVyaW5nIENvLiwgTHRkLlx1MzA5Mlx1MzBkM1x1MzBmMyBEdW9uZ1x1MzA2N1x1OGNiN1x1NTNjZVx1MzA1N1x1MzAwMVx1MzA1M1x1MzA4Y1x1MzA2Ylx1MzA4OFx1MzA4YVx1NTM1N1x1OTBlOFx1NTczMFx1NTdkZlx1MzA2Ylx1NmE1Zlx1NjhiMFx1NTJhMFx1NWRlNVx1NGYxYVx1NzkzZVx1MzA5Mlx1OGEyZFx1N2FjYlx1MzA1N1x1MzA3ZVx1MzA1N1x1MzA1Zlx1MzAwMiJ9LHsiX2lkIjoiNmM0OWY0YyIsInRpdGxlIjoiMjAyMlx1NWU3NDZcdTY3MDgxXHU2NWU1IiwiY29udGVudCI6IkZhciBFYXN0IFRlY2hcdTMwNmZcdTMwMDFcdTUzMTdcdTViZTdcdTMwNmIyMDAwbTJcdTMwNmVcdTMwZWZcdTMwZmNcdTMwYWZcdTMwYjdcdTMwZTdcdTMwYzNcdTMwZDdcdTMwNjg3MFx1NTNmMFx1MzA2ZUNOQ1x1NmE1Zlx1NjhiMFx1MzA5Mlx1NTA5OVx1MzA0OFx1MzAwMVx1NzUyM1x1Njk2ZFx1ODk4Zlx1NmEyMVx1MzA2ZVx1NzUxZlx1NzUyM1x1MzA2Ylx1MzA0YVx1MzA0NFx1MzA2Nlx1OTFjZFx1ODk4MVx1MzA2YVx1NGUwMFx1NmI2OVx1MzA5Mlx1OGUwZlx1MzA3Zlx1NTFmYVx1MzA1N1x1MzA3ZVx1MzA1N1x1MzA1Zlx1MzAwMiJ9LHsiX2lkIjoiZGU0ODYwMCIsInRpdGxlIjoiMjAyNCIsImNvbnRlbnQiOiJETU0gUHJlY2lzaW9uIEVuZ2luZWVyaW5nIENvLiwgTHRkLlx1MzA2Zlx1NmI2M1x1NWYwZlx1MzA2YkZhciBFYXN0IEhpZ2ggVGVjaCBDby4sIEx0ZC5cdTMwNmJcdTc5M2VcdTU0MGRcdTMwOTJcdTU5MDlcdTY2ZjRcdTMwNTdcdTMwN2VcdTMwNTdcdTMwNWZcdTMwMDJcbjIwMjVcdTVlNzRcdTRlZTVcdTk2NGRcdWZmMWFcdTMwNTNcdTMwOGNcdTMwNmZcdTc5YzFcdTMwNWZcdTMwNjFcdTMwNmVcdTRmMWFcdTc5M2VcdTMwYzFcdTMwZmNcdTMwZTBcdTMwNmJcdTMwNjhcdTMwNjNcdTMwNjZcdTVmMzdcdTUyOWJcdTMwNmFcdTc2N2FcdTVjNTVcdTMwNmVcdTVlNzRcdTMwNjhcdTMwNmFcdTMwOGJcdTMwNjdcdTMwNTdcdTMwODdcdTMwNDZcdTMwMDIifV19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oaXN0b3J5In0=\"]            </div>n        </div>n                    </div>n        </section>n        \",\"scripts\":[],\"styles\":[\"widget-text-editor\",\"widget-image\"]}}'),(10890,3028,'_elementor_css','a:6:{s:4:\"time\";i:1742181979;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(10891,3028,'_elementor_element_cache','{\"timeout\":1746541655,\"value\":{\"content\":\"        <section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-c986484 elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"c986484\\\" data-element_type=\\\"section\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-ab9e3e7\\\" data-id=\\\"ab9e3e7\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6IjJjYzdhNzgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Zlx1MzAwMVx1OTc2OVx1NjViMFx1NzY4NFx1MzA2YVx1MzBhMlx1MzBhNFx1MzBjN1x1MzBhMlx1MzA2OFx1OGNlYVx1MzA2ZVx1OWFkOFx1MzA0NFx1NGVkNVx1NGU4Ylx1MzA2N1x1MzA0YVx1NWJhMlx1NjlkOFx1MzA5Mlx1NmU4MFx1OGRiM1x1MzA1NVx1MzA1Ylx1MzA3ZVx1MzA1OVx1MzAwMiIsInRpdGxlX3NwYWNlX2JvdHRvbSI6eyJ1bml0IjoicHgiLCJzaXplIjoyMywic2l6ZXMiOltdfSwic3ViX3RpdGxlIjoiXHU3OWMxXHUzMDVmXHUzMDYxXHUzMDZiXHUzMDY0XHUzMDQ0XHUzMDY2Iiwic3ViX3RpdGxlX3NwYWNlX2JvdHRvbSI6eyJ1bml0IjoicHgiLCJzaXplIjo2LCJzaXplcyI6W119fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-c469998 elementor-widget elementor-widget-text-editor\\\" data-id=\\\"c469998\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>\\u79c1\\u305f\\u3061\\u306f\\u3001\\u9769\\u65b0\\u7684\\u306a\\u30a2\\u30a4\\u30c7\\u30a2\\u3068\\u5353\\u8d8a\\u3057\\u305f\\u8077\\u4eba\\u6280\\u3067\\u671f\\u5f85\\u3092\\u8d85\\u3048\\u307e\\u3059\\u3002<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t        <section class=\\\"elementor-section elementor-inner-section elementor-element elementor-element-11334c5 elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"11334c5\\\" data-element_type=\\\"section\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-2442360\\\" data-id=\\\"2442360\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        \\t\\t<div class=\\\"elementor-element elementor-element-4d195ec elementor-widget elementor-widget-image\\\" data-id=\\\"4d195ec\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"59\\\" height=\\\"58\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-01.png\\\" class=\\\"attachment-full size-full wp-image-612\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element data=\\\"eyJpZCI6ImIyMTA3ZTciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1NjY0Mlx1OTU5M1x1N2JhMVx1NzQwNiIsInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplIjp7InVuaXQiOiJweCIsInNpemUiOjIwLCJzaXplcyI6W119LCJ0aXRsZV9zcGFjZV9ib3R0b20iOnsidW5pdCI6InB4Iiwic2l6ZSI6MTgsInNpemVzIjpbXX0sInRleHRfYWxpZ24iOiJjZW50ZXIifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-c366e73 elementor-widget elementor-widget-text-editor\\\" data-id=\\\"c366e73\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>\\u751f\\u7523\\u6027\\u3092\\u6700\\u5927\\u5316\\u3057\\u3001\\u671f\\u9650\\u3092\\u5b88\\u308b\\u305f\\u3081\\u306b\\u30bf\\u30b9\\u30af\\u3092\\u52b9\\u7387\\u7684\\u306b\\u6574\\u7406\\u3057\\u307e\\u3059\\u3002<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t            <\\/div>\\n        <\\/div>\\n                <div class=\\\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-7d099fe\\\" data-id=\\\"7d099fe\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        \\t\\t<div class=\\\"elementor-element elementor-element-6c4ae19 elementor-widget elementor-widget-image\\\" data-id=\\\"6c4ae19\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"55\\\" height=\\\"58\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-02.png\\\" class=\\\"attachment-full size-full wp-image-613\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element data=\\\"eyJpZCI6IjliYTI0YTUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1NzZlZVx1NmExOVx1MzA5Mlx1OTA1NFx1NjIxMFx1MzA1OVx1MzA4YiIsInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplIjp7InVuaXQiOiJweCIsInNpemUiOjIwLCJzaXplcyI6W119LCJ0aXRsZV9zcGFjZV9ib3R0b20iOnsidW5pdCI6InB4Iiwic2l6ZSI6MTgsInNpemVzIjpbXX0sInRleHRfYWxpZ24iOiJjZW50ZXIifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-bdc9adf elementor-widget elementor-widget-text-editor\\\" data-id=\\\"bdc9adf\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>\\u7cbe\\u5ea6\\u3068\\u30b3\\u30df\\u30c3\\u30c8\\u30e1\\u30f3\\u30c8\\u3067\\u76ee\\u6a19\\u3092\\u9054\\u6210\\u3057\\u3001\\u6210\\u529f\\u3092\\u78ba\\u5b9f\\u306b\\u3057\\u307e\\u3059\\u3002<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                    <\\/div>\\n        <\\/div>\\n                <div class=\\\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-3ba92fc\\\" data-id=\\\"3ba92fc\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6IjJhZTRmYWUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJpbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yMjE4MjMxLndlYnAiLCJpZCI6MjUwMywiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2Jhbm5lciJ9\\\"][elementor-element data=\\\"eyJpZCI6IjBjNDA2ZjkiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJpbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzExXC9zaWduYXR1cmUxLnBuZyIsImlkIjoyNTM4LCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJ0aXRsZSI6IlRpbiBMdXUiLCJkZXNjIjoiKFx1NGYxYVx1OTU3N1x1NTE3Y1x1NTI3NVx1OGEyZFx1ODAwNSkiLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6IjIxIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X3NpZ25hdHVyZSJ9\\\"]            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                <section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-3328b5d elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"3328b5d\\\" data-element_type=\\\"section\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-2933d62\\\" data-id=\\\"2933d62\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6IjFhMDNjMGIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Ylx1MzA2NFx1MzA0NFx1MzA2Nlx1MzA4Mlx1MzA2M1x1MzA2OFx1NzdlNVx1MzA4YVx1MzA1Zlx1MzA0NFx1MzA2N1x1MzA1OVx1MzA0Ylx1ZmYxZiIsImRlc2MiOiJcdTMwZDFcdTMwZjNcdTMwZDVcdTMwZWNcdTMwYzNcdTMwYzhcdTMwOTJcdTMwYzBcdTMwYTZcdTMwZjNcdTMwZWRcdTMwZmNcdTMwYzlcdTMwNTlcdTMwOGJcdTMwNjBcdTMwNTFcdTMwNjdcdTMwNTkuLi4iLCJidG5fdGV4dCI6IkRvd25sb2FkIEJyb2NodXJlIiwiYnRuX2ljb24iOnsidmFsdWUiOiJmYXMgZmEtY2xvdWQtZG93bmxvYWQtYWx0IiwibGlicmFyeSI6ImZhLXNvbGlkIn0sImJ0bl9saW5rIjp7InVybCI6Imh0dHBzOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNVwvMDNcL3Byb2ZpbGUucGRmIiwiaXNfZXh0ZXJuYWwiOiJvbiIsIm5vZm9sbG93Ijoib24iLCJjdXN0b21fYXR0cmlidXRlcyI6IiJ9fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY3RhIn0=\\\"]            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                <section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-a158a9e elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"a158a9e\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n                            <div class=\\\"elementor-background-overlay\\\"><\\/div>\\n                \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-30c4d43\\\" data-id=\\\"30c4d43\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n                <section class=\\\"elementor-section elementor-inner-section elementor-element elementor-element-7a3aa06 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"7a3aa06\\\" data-element_type=\\\"section\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-ba6ff94\\\" data-id=\\\"ba6ff94\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6Ijc4Y2JiYjZmIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJGYXIgRWFzdCBIaWdoIFRlY2hcdTMwNmZcdTMwMDFcdTMwZDdcdTMwZWRcdTMwZDVcdTMwYTdcdTMwYzNcdTMwYjdcdTMwZTdcdTMwY2FcdTMwZWJcdTMwNmFcdTVlZmFcdThhMmRcdTRmMWFcdTc5M2VcdTMwNjdcdTMwNTlcdTMwMDIiLCJzdWJfdGl0bGUiOiJcdTRmMWFcdTc5M2VcdTMwNmVcdTZiNzRcdTUzZjIiLCJ0aXRsZV9jb2xvciI6IiNmZmZmZmYiLCJzdWJfdGl0bGVfY29sb3IiOiIjYTBhMGEwIiwic3ViX3RpdGxlX3NwYWNlX2JvdHRvbSI6eyJ1bml0IjoicHgiLCJzaXplIjo2LCJzaXplcyI6W119fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\\\"]            <\\/div>\\n        <\\/div>\\n                <div class=\\\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-0de7bd2\\\" data-id=\\\"0de7bd2\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        \\t\\t<div class=\\\"elementor-element elementor-element-7398b831 elementor-widget elementor-widget-text-editor\\\" data-id=\\\"7398b831\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>Far East High Tech\\u306f\\u3001\\u9ad8\\u54c1\\u8cea\\u306a\\u6a5f\\u68b0\\u30bd\\u30ea\\u30e5\\u30fc\\u30b7\\u30e7\\u30f3\\u306e\\u69cb\\u7bc9\\u3068\\u88fd\\u9020\\u306b\\u304a\\u3044\\u3066\\u5148\\u99c6\\u8005\\u7684\\u306a\\u4f01\\u696d\\u3067\\u3059\\u3002<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n        [elementor-element data=\\\"eyJpZCI6ImU5YTg4M2UiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJzdGFydF90ZXh0IjoiXHU5NThiXHU1OWNiIiwiZW5kX2ltYWdlIjp7InVybCI6IiIsImlkIjoiIiwic2l6ZSI6IiIsImFsdCI6IiIsInNvdXJjZSI6ImxpYnJhcnkifSwiaGlzdG9yeSI6W3siX2lkIjoiN2Q4MjY1MSIsInRpdGxlIjoiMjAxOFx1NWU3NDExXHU2NzA4MjBcdTY1ZTUiLCJjb250ZW50IjoiRmFyIEVhc3QgVGVjaFx1MzA2Zlx1MzAwMVx1MzBkOVx1MzBhZlx1MzBkM1x1MzBmM1x1MzA2ZVx1MzBhZlx1MzBhOFx1MzBmNFx1MzBhOVx1MzA2NzVcdTRlYmFcdTMwNmVcdTUyNzVcdThhMmRcdTMwZTFcdTMwZjNcdTMwZDBcdTMwZmNcdTMwNjhcdTUxNzFcdTMwNmJcdThhMmRcdTdhY2JcdTMwNTVcdTMwOGNcdTMwN2VcdTMwNTdcdTMwNWZcdTMwMDIifSx7Il9pZCI6IjM3ZWI1ZjkiLCJ0aXRsZSI6IjIwMjFcdTVlNzQ0XHU2NzA4MVx1NjVlNSIsImNvbnRlbnQiOiJGYXIgRWFzdCBUZWNoXHUzMDZlXHU1ZjM3XHU1MjliXHUzMDZhXHU2MjEwXHU5NTc3XHUzMDZiXHU0ZjM0XHUzMDQ0XHUzMDAxXHU3OWMxXHUzMDVmXHUzMDYxXHUzMDZmXHU1MzU3XHU5MGU4XHUzMDZiXHU2NTJmXHU1ZTk3XHUzMDkyXHU2MmUxXHU1OTI3XHUzMDU5XHUzMDhiXHUzMDUzXHUzMDY4XHUzMDkyXHU2YzdhXHU1YjlhXHUzMDU3XHUzMDdlXHUzMDU3XHUzMDVmXHUzMDAyIn0seyJfaWQiOiIyZTdlYmJmIiwidGl0bGUiOiIyMDIxXHU1ZTc0NFx1NjcwODMwXHU2NWU1IiwiY29udGVudCI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Zlx1MzAwMTIwMTZcdTVlNzRcdTMwNGJcdTMwODlcdTY1ZTVcdTY3MmNcdTMwNzhcdTMwNmVcdThmMzhcdTUxZmFcdTdkNGNcdTlhMTNcdTMwOTJcdTYzMDFcdTMwNjRETU0gUHJlY2lzaW9uIEVuZ2luZWVyaW5nIENvLiwgTHRkLlx1MzA5Mlx1MzBkM1x1MzBmMyBEdW9uZ1x1MzA2N1x1OGNiN1x1NTNjZVx1MzA1N1x1MzAwMVx1MzA1M1x1MzA4Y1x1MzA2Ylx1MzA4OFx1MzA4YVx1NTM1N1x1OTBlOFx1NTczMFx1NTdkZlx1MzA2Ylx1NmE1Zlx1NjhiMFx1NTJhMFx1NWRlNVx1NGYxYVx1NzkzZVx1MzA5Mlx1OGEyZFx1N2FjYlx1MzA1N1x1MzA3ZVx1MzA1N1x1MzA1Zlx1MzAwMiJ9LHsiX2lkIjoiNmM0OWY0YyIsInRpdGxlIjoiMjAyMlx1NWU3NDZcdTY3MDgxXHU2NWU1IiwiY29udGVudCI6IkZhciBFYXN0IFRlY2hcdTMwNmZcdTMwMDFcdTUzMTdcdTViZTdcdTMwNmIyMDAwbTJcdTMwNmVcdTMwZWZcdTMwZmNcdTMwYWZcdTMwYjdcdTMwZTdcdTMwYzNcdTMwZDdcdTMwNjg3MFx1NTNmMFx1MzA2ZUNOQ1x1NmE1Zlx1NjhiMFx1MzA5Mlx1NTA5OVx1MzA0OFx1MzAwMVx1NzUyM1x1Njk2ZFx1ODk4Zlx1NmEyMVx1MzA2ZVx1NzUxZlx1NzUyM1x1MzA2Ylx1MzA0YVx1MzA0NFx1MzA2Nlx1OTFjZFx1ODk4MVx1MzA2YVx1NGUwMFx1NmI2OVx1MzA5Mlx1OGUwZlx1MzA3Zlx1NTFmYVx1MzA1N1x1MzA3ZVx1MzA1N1x1MzA1Zlx1MzAwMiJ9LHsiX2lkIjoiZGU0ODYwMCIsInRpdGxlIjoiMjAyNCIsImNvbnRlbnQiOiJETU0gUHJlY2lzaW9uIEVuZ2luZWVyaW5nIENvLiwgTHRkLlx1MzA2Zlx1NmI2M1x1NWYwZlx1MzA2YkZhciBFYXN0IEhpZ2ggVGVjaCBDby4sIEx0ZC5cdTMwNmJcdTc5M2VcdTU0MGRcdTMwOTJcdTU5MDlcdTY2ZjRcdTMwNTdcdTMwN2VcdTMwNTdcdTMwNWZcdTMwMDJcbjIwMjVcdTVlNzRcdTRlZTVcdTk2NGRcdWZmMWFcdTMwNTNcdTMwOGNcdTMwNmZcdTc5YzFcdTMwNWZcdTMwNjFcdTMwNmVcdTRmMWFcdTc5M2VcdTMwYzFcdTMwZmNcdTMwZTBcdTMwNmJcdTMwNjhcdTMwNjNcdTMwNjZcdTVmMzdcdTUyOWJcdTMwNmFcdTc2N2FcdTVjNTVcdTMwNmVcdTVlNzRcdTMwNjhcdTMwNmFcdTMwOGJcdTMwNjdcdTMwNTdcdTMwODdcdTMwNDZcdTMwMDIifV19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oaXN0b3J5In0=\\\"]            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n        \",\"scripts\":[],\"styles\":[]}}'),(10892,3296,'_wp_page_template','default'),(10893,3296,'_elementor_edit_mode','builder'),(10894,3296,'_elementor_template_type','wp-post'),(10895,3296,'_elementor_version','3.24.7'),(10896,3296,'_elementor_data','[{\"id\":\"7225c724\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#060606E6\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer.png\",\"id\":87},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"109cef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.3},\"elements\":[{\"id\":\"6667e1a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/logo.jpg\",\"id\":2748,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae6ecf2\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Factory 1: Khac Niem Industrial Cluster, Khac Niem Ward, Bac Ninh City, Bac Ninh Province\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}},{\"content\":\"Factory 2: 176\\/9 Nguyen Thi Tuoi, Tan Phuoc Quarter, Tan Binh Ward, Di An City, Binh Duong\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"be1a6dd\"},{\"content\":\"0968 86 03 86\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"712a43be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.664,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e4e262b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Menu\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6e682e5b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"39\",\"style\":\"tow-col-light\",\"link_color_hover\":\"#F9A244\",\"line_color_hover\":\"#F9A244\",\"menu_align\":\"left\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"e174b97\",\"elType\":\"widget\",\"settings\":{\"title\":\"Open Hours\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"1e0523b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Mon - Sun: 24\\/24<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ab76a16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7},\"elements\":[{\"id\":\"37a5e636\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"aa15610\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#85B23B\",\"padding\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"040\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2487ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40d8f8a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sign up for alerts, our latest blogs, thoughts, and insights.\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d21d208\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"27383ab2\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin-box\",\"library\":\"material\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24b98c01\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"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},\"gap\":\"extended\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a6c11e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53be024\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"5990603\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"7f874a5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright @2024 of Far East High Tech Ltd. Co.<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_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},\"_css_classes\":\"ct-copyright\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(10897,3296,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:2:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:1;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:16:\"link_color_hover\";i:1;s:16:\"line_color_hover\";i:1;s:10:\"menu_align\";i:1;s:17:\"menu_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:13:\"ct_newsletter\";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:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";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:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:1;}}}}}'),(10898,3296,'_elementor_css','a:6:{s:4:\"time\";i:1735095484;s:5:\"fonts\";a:1:{i:0;s:7:\"Poppins\";}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:3;s:9:\"fa-brands\";i:4;s:8:\"material\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(10899,3296,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"widget-image\";i:1;s:18:\"widget-text-editor\";}}'),(10900,3296,'_elementor_element_cache','{\"timeout\":1742263433,\"value\":{\"content\":\"        <section class=\"elementor-section elementor-top-section elementor-element elementor-element-7225c724 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"7225c724\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-109cef8c\" data-id=\"109cef8c\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-6667e1a9 logo-footer elementor-widget__width-initial elementor-widget elementor-widget-image\" data-id=\"6667e1a9\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">ntttttttttttttt<a href=\"http://fe2tech.com/\">nttttttt<img width=\"597\" height=\"597\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/logo.jpg\" class=\"attachment-full size-full wp-image-2748\" alt=\"\" />tttttttt</a>nttttttttttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6IjRhZTZlY2YyIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsiY29udGFjdF9pbmZvIjpbeyJjb250ZW50IjoiRmFjdG9yeSAxOiBLaGFjIE5pZW0gSW5kdXN0cmlhbCBDbHVzdGVyLCBLaGFjIE5pZW0gV2FyZCwgQmFjIE5pbmggQ2l0eSwgQmFjIE5pbmggUHJvdmluY2UiLCJjdF9pY29uIjp7InZhbHVlIjoiZmFzIGZhLW1hcC1tYXJrZXItYWx0IiwibGlicmFyeSI6ImZhLXNvbGlkIn0sIl9pZCI6ImQ2YTU0YjAiLCJpY29uX2ltYWdlIjp7InVybCI6Imh0dHA6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC9wbHVnaW5zXC9lbGVtZW50b3JcL2Fzc2V0c1wvaW1hZ2VzXC9wbGFjZWhvbGRlci5wbmciLCJpZCI6IiJ9fSx7ImNvbnRlbnQiOiJGYWN0b3J5IDI6IDE3NlwvOSBOZ3V5ZW4gVGhpIFR1b2ksIFRhbiBQaHVvYyBRdWFydGVyLCBUYW4gQmluaCBXYXJkLCBEaSBBbiBDaXR5LCBCaW5oIER1b25nIiwiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZhcyBmYS1tYXAtbWFya2VyLWFsdCIsImxpYnJhcnkiOiJmYS1zb2xpZCJ9LCJpY29uX2ltYWdlIjp7InVybCI6Imh0dHA6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC9wbHVnaW5zXC9lbGVtZW50b3JcL2Fzc2V0c1wvaW1hZ2VzXC9wbGFjZWhvbGRlci5wbmciLCJpZCI6IiJ9LCJfaWQiOiJiZTFhNmRkIn0seyJjb250ZW50IjoiMDk2OCA4NiAwMyA4NiIsImN0X2ljb24iOnsidmFsdWUiOiJmYXMgZmEtcGhvbmUtYWx0IiwibGlicmFyeSI6ImZhLXNvbGlkIn0sIl9pZCI6IjQ0YTFkODIiLCJpY29uX2ltYWdlIjp7InVybCI6Imh0dHA6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC9wbHVnaW5zXC9lbGVtZW50b3JcL2Fzc2V0c1wvaW1hZ2VzXC9wbGFjZWhvbGRlci5wbmciLCJpZCI6IiJ9fV0sImNvbnRlbnRfY29sb3IiOiIjZmZmZmZmIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMTIiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9jb250YWN0X2luZm8ifQ==\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-712a43be\" data-id=\"712a43be\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjVlNGUyNjJiIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJNZW51IiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIxMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sIl9wYWRkaW5nIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV9jb2xvciI6IiNmZmZmZmYifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfdGl0bGUifQ==\"][elementor-element data=\"eyJpZCI6IjZlNjgyZTViIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsibWVudSI6IjM5Iiwic3R5bGUiOiJ0b3ctY29sLWxpZ2h0IiwibGlua19jb2xvcl9ob3ZlciI6IiNGOUEyNDQiLCJsaW5lX2NvbG9yX2hvdmVyIjoiI0Y5QTI0NCIsIm1lbnVfYWxpZ24iOiJsZWZ0IiwiX2VsZW1lbnRfd2lkdGgiOiJpbml0aWFsIiwiX2VsZW1lbnRfY3VzdG9tX3dpZHRoIjp7InVuaXQiOiIlIiwic2l6ZSI6MTAwfSwiX2ZsZXhfc2l6ZSI6Im5vbmUifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfbmF2aWdhdGlvbl9tZW51In0=\"][elementor-element data=\"eyJpZCI6ImUxNzRiOTciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ik9wZW4gSG91cnMiLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6IjIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwiX3BhZGRpbmciOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX2NvbG9yIjoiI2ZmZmZmZiJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF90aXRsZSJ9\"]tt<div class=\"elementor-element elementor-element-1e0523b8 elementor-widget elementor-widget-text-editor\" data-id=\"1e0523b8\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Mon &#8211; Sun: 24/24</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-1ab76a16\" data-id=\"1ab76a16\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjM3YTVlNjM2IiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJOZXdzbGV0dGVyIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIxMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sIl9wYWRkaW5nIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV9jb2xvciI6IiNmZmZmZmYifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfdGl0bGUifQ==\"]        <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-aa15610 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"aa15610\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-no \">n                    <div class=\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-e2487ac\" data-id=\"e2487ac\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-40d8f8a2 elementor-widget elementor-widget-text-editor\" data-id=\"40d8f8a2\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">ntttttttSign up for alerts, our latest blogs, thoughts, and insights.tttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImQyMWQyMDgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJzdHlsZSI6InN0eWxlMiIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjI4IiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfbmV3c2xldHRlciJ9\"][elementor-element data=\"eyJpZCI6IjI3MzgzYWIyIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsiaWNvbnMiOlt7Imljb25fbGluayI6eyJ1cmwiOiIjIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9LCJfaWQiOiIyY2E4OThjIiwiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZhYiBmYS1mYWNlYm9vay1mIiwibGlicmFyeSI6ImZhLWJyYW5kcyJ9fSx7Imljb25fbGluayI6eyJ1cmwiOiIjIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9LCJfaWQiOiIwZmNjZDc1IiwiY3RfaWNvbiI6eyJ2YWx1ZSI6Im1hdGVyaWFsIHptZGkgem1kaS1saW5rZWRpbi1ib3giLCJsaWJyYXJ5IjoibWF0ZXJpYWwifX1dfSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaWNvbiJ9\"]            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-24b98c01 elementor-section-stretched elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"24b98c01\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-9a6c11e\" data-id=\"9a6c11e\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n                <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-53be024 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"53be024\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-5990603\" data-id=\"5990603\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-7f874a5a ct-copyright elementor-widget elementor-widget-text-editor\" data-id=\"7f874a5a\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Copyright @2024 of Far East High Tech Ltd. Co.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                    </div>n        </section>n        \",\"scripts\":[],\"styles\":[]}}'),(10901,3297,'_wp_page_template','default'),(10902,3297,'_elementor_edit_mode','builder'),(10903,3297,'_elementor_template_type','wp-post'),(10904,3297,'_elementor_version','3.24.7'),(10905,3297,'_elementor_data','[{\"id\":\"7225c724\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#060606E6\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer.png\",\"id\":87},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"109cef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.3},\"elements\":[{\"id\":\"6667e1a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/logo.jpg\",\"id\":2748,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae6ecf2\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Factory 1: Khac Niem Industrial Cluster, Khac Niem Ward, Bac Ninh City, Bac Ninh Province\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}},{\"content\":\"Factory 2: 176\\/9 Nguyen Thi Tuoi, Tan Phuoc Quarter, Tan Binh Ward, Di An City, Binh Duong\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"be1a6dd\"},{\"content\":\"0968 86 03 86\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"712a43be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.664,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e4e262b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Menu\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6e682e5b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"39\",\"style\":\"tow-col-light\",\"link_color_hover\":\"#F9A244\",\"line_color_hover\":\"#F9A244\",\"menu_align\":\"left\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"e174b97\",\"elType\":\"widget\",\"settings\":{\"title\":\"Open Hours\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"1e0523b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Mon - Sun: 24\\/24<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ab76a16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7},\"elements\":[{\"id\":\"37a5e636\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"aa15610\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#85B23B\",\"padding\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"040\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2487ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40d8f8a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sign up for alerts, our latest blogs, thoughts, and insights.\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d21d208\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"27383ab2\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin-box\",\"library\":\"material\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24b98c01\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"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},\"gap\":\"extended\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a6c11e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53be024\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"5990603\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"7f874a5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright @2024 of Far East High Tech Ltd. Co.<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_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},\"_css_classes\":\"ct-copyright\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(10906,3297,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:2:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:1;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:16:\"link_color_hover\";i:1;s:16:\"line_color_hover\";i:1;s:10:\"menu_align\";i:1;s:17:\"menu_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:13:\"ct_newsletter\";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:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";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:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:1;}}}}}'),(10907,3297,'_elementor_css','a:6:{s:4:\"time\";i:1735095484;s:5:\"fonts\";a:1:{i:0;s:7:\"Poppins\";}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:3;s:9:\"fa-brands\";i:4;s:8:\"material\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(10908,3297,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"widget-image\";i:1;s:18:\"widget-text-editor\";}}'),(10909,3297,'_elementor_element_cache','{\"timeout\":1742263433,\"value\":{\"content\":\"        <section class=\"elementor-section elementor-top-section elementor-element elementor-element-7225c724 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"7225c724\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-109cef8c\" data-id=\"109cef8c\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-6667e1a9 logo-footer elementor-widget__width-initial elementor-widget elementor-widget-image\" data-id=\"6667e1a9\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">ntttttttttttttt<a href=\"http://fe2tech.com/\">nttttttt<img width=\"597\" height=\"597\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/logo.jpg\" class=\"attachment-full size-full wp-image-2748\" alt=\"\" />tttttttt</a>nttttttttttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6IjRhZTZlY2YyIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsiY29udGFjdF9pbmZvIjpbeyJjb250ZW50IjoiRmFjdG9yeSAxOiBLaGFjIE5pZW0gSW5kdXN0cmlhbCBDbHVzdGVyLCBLaGFjIE5pZW0gV2FyZCwgQmFjIE5pbmggQ2l0eSwgQmFjIE5pbmggUHJvdmluY2UiLCJjdF9pY29uIjp7InZhbHVlIjoiZmFzIGZhLW1hcC1tYXJrZXItYWx0IiwibGlicmFyeSI6ImZhLXNvbGlkIn0sIl9pZCI6ImQ2YTU0YjAiLCJpY29uX2ltYWdlIjp7InVybCI6Imh0dHA6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC9wbHVnaW5zXC9lbGVtZW50b3JcL2Fzc2V0c1wvaW1hZ2VzXC9wbGFjZWhvbGRlci5wbmciLCJpZCI6IiJ9fSx7ImNvbnRlbnQiOiJGYWN0b3J5IDI6IDE3NlwvOSBOZ3V5ZW4gVGhpIFR1b2ksIFRhbiBQaHVvYyBRdWFydGVyLCBUYW4gQmluaCBXYXJkLCBEaSBBbiBDaXR5LCBCaW5oIER1b25nIiwiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZhcyBmYS1tYXAtbWFya2VyLWFsdCIsImxpYnJhcnkiOiJmYS1zb2xpZCJ9LCJpY29uX2ltYWdlIjp7InVybCI6Imh0dHA6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC9wbHVnaW5zXC9lbGVtZW50b3JcL2Fzc2V0c1wvaW1hZ2VzXC9wbGFjZWhvbGRlci5wbmciLCJpZCI6IiJ9LCJfaWQiOiJiZTFhNmRkIn0seyJjb250ZW50IjoiMDk2OCA4NiAwMyA4NiIsImN0X2ljb24iOnsidmFsdWUiOiJmYXMgZmEtcGhvbmUtYWx0IiwibGlicmFyeSI6ImZhLXNvbGlkIn0sIl9pZCI6IjQ0YTFkODIiLCJpY29uX2ltYWdlIjp7InVybCI6Imh0dHA6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC9wbHVnaW5zXC9lbGVtZW50b3JcL2Fzc2V0c1wvaW1hZ2VzXC9wbGFjZWhvbGRlci5wbmciLCJpZCI6IiJ9fV0sImNvbnRlbnRfY29sb3IiOiIjZmZmZmZmIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMTIiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9jb250YWN0X2luZm8ifQ==\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-712a43be\" data-id=\"712a43be\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjVlNGUyNjJiIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJNZW51IiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIxMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sIl9wYWRkaW5nIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV9jb2xvciI6IiNmZmZmZmYifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfdGl0bGUifQ==\"][elementor-element data=\"eyJpZCI6IjZlNjgyZTViIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsibWVudSI6IjM5Iiwic3R5bGUiOiJ0b3ctY29sLWxpZ2h0IiwibGlua19jb2xvcl9ob3ZlciI6IiNGOUEyNDQiLCJsaW5lX2NvbG9yX2hvdmVyIjoiI0Y5QTI0NCIsIm1lbnVfYWxpZ24iOiJsZWZ0IiwiX2VsZW1lbnRfd2lkdGgiOiJpbml0aWFsIiwiX2VsZW1lbnRfY3VzdG9tX3dpZHRoIjp7InVuaXQiOiIlIiwic2l6ZSI6MTAwfSwiX2ZsZXhfc2l6ZSI6Im5vbmUifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfbmF2aWdhdGlvbl9tZW51In0=\"][elementor-element data=\"eyJpZCI6ImUxNzRiOTciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ik9wZW4gSG91cnMiLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6IjIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwiX3BhZGRpbmciOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX2NvbG9yIjoiI2ZmZmZmZiJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF90aXRsZSJ9\"]tt<div class=\"elementor-element elementor-element-1e0523b8 elementor-widget elementor-widget-text-editor\" data-id=\"1e0523b8\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Mon &#8211; Sun: 24/24</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-1ab76a16\" data-id=\"1ab76a16\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjM3YTVlNjM2IiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJOZXdzbGV0dGVyIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIxMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sIl9wYWRkaW5nIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV9jb2xvciI6IiNmZmZmZmYifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfdGl0bGUifQ==\"]        <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-aa15610 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"aa15610\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-no \">n                    <div class=\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-e2487ac\" data-id=\"e2487ac\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-40d8f8a2 elementor-widget elementor-widget-text-editor\" data-id=\"40d8f8a2\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">ntttttttSign up for alerts, our latest blogs, thoughts, and insights.tttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImQyMWQyMDgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJzdHlsZSI6InN0eWxlMiIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjI4IiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfbmV3c2xldHRlciJ9\"][elementor-element data=\"eyJpZCI6IjI3MzgzYWIyIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsiaWNvbnMiOlt7Imljb25fbGluayI6eyJ1cmwiOiIjIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9LCJfaWQiOiIyY2E4OThjIiwiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZhYiBmYS1mYWNlYm9vay1mIiwibGlicmFyeSI6ImZhLWJyYW5kcyJ9fSx7Imljb25fbGluayI6eyJ1cmwiOiIjIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9LCJfaWQiOiIwZmNjZDc1IiwiY3RfaWNvbiI6eyJ2YWx1ZSI6Im1hdGVyaWFsIHptZGkgem1kaS1saW5rZWRpbi1ib3giLCJsaWJyYXJ5IjoibWF0ZXJpYWwifX1dfSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaWNvbiJ9\"]            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-24b98c01 elementor-section-stretched elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"24b98c01\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-9a6c11e\" data-id=\"9a6c11e\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n                <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-53be024 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"53be024\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-5990603\" data-id=\"5990603\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-7f874a5a ct-copyright elementor-widget elementor-widget-text-editor\" data-id=\"7f874a5a\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Copyright @2024 of Far East High Tech Ltd. Co.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                    </div>n        </section>n        \",\"scripts\":[],\"styles\":[]}}'),(10910,3298,'_wp_page_template','default'),(10911,3298,'_elementor_edit_mode','builder'),(10912,3298,'_elementor_template_type','wp-post'),(10913,3298,'_elementor_version','3.24.7'),(10914,3298,'_elementor_data','[{\"id\":\"7225c724\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#060606E6\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer.png\",\"id\":87},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"109cef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.3},\"elements\":[{\"id\":\"6667e1a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/logo.jpg\",\"id\":2748,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae6ecf2\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Factory 1: No. 4 Doan Thi Kia, Dong Chieu Hamlet, Tan Dong\\nHiep Ward, Di An City, Binh Duong, Viet Nam\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}},{\"content\":\"Factory 2: Khac Niem Industrial Cluster, Khac Niem Ward, Bac Ninh\\nCit, Bac Ninh, Viet Nam\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"be1a6dd\"},{\"content\":\"Factory 3: 1476 Pho Va Street, Hap Linh Ward, Bac Ninh City, Bac\\nNinh, Viet Nam\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"add5251\"},{\"content\":\"0968 86 03 86\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"712a43be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.664,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e4e262b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Menu\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6e682e5b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"39\",\"style\":\"tow-col-light\",\"link_color_hover\":\"#F9A244\",\"line_color_hover\":\"#F9A244\",\"menu_align\":\"left\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"e174b97\",\"elType\":\"widget\",\"settings\":{\"title\":\"Open Hours\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"1e0523b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Mon - Sun: 24\\/24<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ab76a16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7},\"elements\":[{\"id\":\"37a5e636\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"aa15610\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#85B23B\",\"padding\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"040\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2487ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40d8f8a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sign up for alerts, our latest blogs, thoughts, and insights.\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d21d208\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"27383ab2\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin-box\",\"library\":\"material\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24b98c01\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"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},\"gap\":\"extended\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a6c11e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53be024\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"5990603\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"7f874a5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright @2024 of Far East High Tech Ltd. Co.<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_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},\"_css_classes\":\"ct-copyright\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(10915,3298,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:2:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:1;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:16:\"link_color_hover\";i:1;s:16:\"line_color_hover\";i:1;s:10:\"menu_align\";i:1;s:17:\"menu_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:13:\"ct_newsletter\";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:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";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:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:1;}}}}}'),(10916,3298,'_elementor_css','a:6:{s:4:\"time\";i:1735095484;s:5:\"fonts\";a:1:{i:0;s:7:\"Poppins\";}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:3;s:9:\"fa-brands\";i:4;s:8:\"material\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(10917,3298,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"widget-image\";i:1;s:18:\"widget-text-editor\";}}'),(10918,3298,'_elementor_element_cache','{\"timeout\":1742263433,\"value\":{\"content\":\"        <section class=\"elementor-section elementor-top-section elementor-element elementor-element-7225c724 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"7225c724\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-109cef8c\" data-id=\"109cef8c\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-6667e1a9 logo-footer elementor-widget__width-initial elementor-widget elementor-widget-image\" data-id=\"6667e1a9\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">ntttttttttttttt<a href=\"http://fe2tech.com/\">nttttttt<img width=\"597\" height=\"597\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/logo.jpg\" class=\"attachment-full size-full wp-image-2748\" alt=\"\" />tttttttt</a>nttttttttttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6IjRhZTZlY2YyIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsiY29udGFjdF9pbmZvIjpbeyJjb250ZW50IjoiRmFjdG9yeSAxOiBLaGFjIE5pZW0gSW5kdXN0cmlhbCBDbHVzdGVyLCBLaGFjIE5pZW0gV2FyZCwgQmFjIE5pbmggQ2l0eSwgQmFjIE5pbmggUHJvdmluY2UiLCJjdF9pY29uIjp7InZhbHVlIjoiZmFzIGZhLW1hcC1tYXJrZXItYWx0IiwibGlicmFyeSI6ImZhLXNvbGlkIn0sIl9pZCI6ImQ2YTU0YjAiLCJpY29uX2ltYWdlIjp7InVybCI6Imh0dHA6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC9wbHVnaW5zXC9lbGVtZW50b3JcL2Fzc2V0c1wvaW1hZ2VzXC9wbGFjZWhvbGRlci5wbmciLCJpZCI6IiJ9fSx7ImNvbnRlbnQiOiJGYWN0b3J5IDI6IDE3NlwvOSBOZ3V5ZW4gVGhpIFR1b2ksIFRhbiBQaHVvYyBRdWFydGVyLCBUYW4gQmluaCBXYXJkLCBEaSBBbiBDaXR5LCBCaW5oIER1b25nIiwiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZhcyBmYS1tYXAtbWFya2VyLWFsdCIsImxpYnJhcnkiOiJmYS1zb2xpZCJ9LCJpY29uX2ltYWdlIjp7InVybCI6Imh0dHA6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC9wbHVnaW5zXC9lbGVtZW50b3JcL2Fzc2V0c1wvaW1hZ2VzXC9wbGFjZWhvbGRlci5wbmciLCJpZCI6IiJ9LCJfaWQiOiJiZTFhNmRkIn0seyJjb250ZW50IjoiMDk2OCA4NiAwMyA4NiIsImN0X2ljb24iOnsidmFsdWUiOiJmYXMgZmEtcGhvbmUtYWx0IiwibGlicmFyeSI6ImZhLXNvbGlkIn0sIl9pZCI6IjQ0YTFkODIiLCJpY29uX2ltYWdlIjp7InVybCI6Imh0dHA6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC9wbHVnaW5zXC9lbGVtZW50b3JcL2Fzc2V0c1wvaW1hZ2VzXC9wbGFjZWhvbGRlci5wbmciLCJpZCI6IiJ9fV0sImNvbnRlbnRfY29sb3IiOiIjZmZmZmZmIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMTIiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9jb250YWN0X2luZm8ifQ==\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-712a43be\" data-id=\"712a43be\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjVlNGUyNjJiIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJNZW51IiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIxMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sIl9wYWRkaW5nIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV9jb2xvciI6IiNmZmZmZmYifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfdGl0bGUifQ==\"][elementor-element data=\"eyJpZCI6IjZlNjgyZTViIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsibWVudSI6IjM5Iiwic3R5bGUiOiJ0b3ctY29sLWxpZ2h0IiwibGlua19jb2xvcl9ob3ZlciI6IiNGOUEyNDQiLCJsaW5lX2NvbG9yX2hvdmVyIjoiI0Y5QTI0NCIsIm1lbnVfYWxpZ24iOiJsZWZ0IiwiX2VsZW1lbnRfd2lkdGgiOiJpbml0aWFsIiwiX2VsZW1lbnRfY3VzdG9tX3dpZHRoIjp7InVuaXQiOiIlIiwic2l6ZSI6MTAwfSwiX2ZsZXhfc2l6ZSI6Im5vbmUifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfbmF2aWdhdGlvbl9tZW51In0=\"][elementor-element data=\"eyJpZCI6ImUxNzRiOTciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ik9wZW4gSG91cnMiLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6IjIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwiX3BhZGRpbmciOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX2NvbG9yIjoiI2ZmZmZmZiJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF90aXRsZSJ9\"]tt<div class=\"elementor-element elementor-element-1e0523b8 elementor-widget elementor-widget-text-editor\" data-id=\"1e0523b8\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Mon &#8211; Sun: 24/24</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-1ab76a16\" data-id=\"1ab76a16\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjM3YTVlNjM2IiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJOZXdzbGV0dGVyIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIxMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sIl9wYWRkaW5nIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV9jb2xvciI6IiNmZmZmZmYifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfdGl0bGUifQ==\"]        <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-aa15610 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"aa15610\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-no \">n                    <div class=\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-e2487ac\" data-id=\"e2487ac\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-40d8f8a2 elementor-widget elementor-widget-text-editor\" data-id=\"40d8f8a2\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">ntttttttSign up for alerts, our latest blogs, thoughts, and insights.tttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImQyMWQyMDgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJzdHlsZSI6InN0eWxlMiIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjI4IiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfbmV3c2xldHRlciJ9\"][elementor-element data=\"eyJpZCI6IjI3MzgzYWIyIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsiaWNvbnMiOlt7Imljb25fbGluayI6eyJ1cmwiOiIjIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9LCJfaWQiOiIyY2E4OThjIiwiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZhYiBmYS1mYWNlYm9vay1mIiwibGlicmFyeSI6ImZhLWJyYW5kcyJ9fSx7Imljb25fbGluayI6eyJ1cmwiOiIjIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9LCJfaWQiOiIwZmNjZDc1IiwiY3RfaWNvbiI6eyJ2YWx1ZSI6Im1hdGVyaWFsIHptZGkgem1kaS1saW5rZWRpbi1ib3giLCJsaWJyYXJ5IjoibWF0ZXJpYWwifX1dfSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaWNvbiJ9\"]            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-24b98c01 elementor-section-stretched elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"24b98c01\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-9a6c11e\" data-id=\"9a6c11e\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n                <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-53be024 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"53be024\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-5990603\" data-id=\"5990603\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-7f874a5a ct-copyright elementor-widget elementor-widget-text-editor\" data-id=\"7f874a5a\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Copyright @2024 of Far East High Tech Ltd. Co.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                    </div>n        </section>n        \",\"scripts\":[],\"styles\":[]}}'),(10919,3299,'_wp_page_template','default'),(10920,3299,'_elementor_edit_mode','builder'),(10921,3299,'_elementor_template_type','wp-post'),(10922,3299,'_elementor_version','3.24.7'),(10923,3299,'_elementor_data','[{\"id\":\"7225c724\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#060606E6\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer.png\",\"id\":87},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"109cef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.3},\"elements\":[{\"id\":\"6667e1a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/logo.jpg\",\"id\":2748,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae6ecf2\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Nh\\u00e0 m\\u00e1y 1: C\\u1ee5m c\\u00f4ng nghi\\u1ec7p Kh\\u1eafc Ni\\u1ec7m, Ph\\u01b0\\u1eddng Kh\\u1eafc Ni\\u1ec7m, Th\\u00e0nh ph\\u1ed1 B\\u1eafc Ninh, T\\u1ec9nh B\\u1eafc Ninh\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}},{\"content\":\"Nh\\u00e0 m\\u00e1y 2: 176\\/9 Nguy\\u1ec5n Th\\u1ecb T\\u01b0\\u01a1i, Khu ph\\u1ed1 T\\u00e2n Ph\\u01b0\\u1edbc, Ph\\u01b0\\u1eddng T\\u00e2n B\\u00ecnh, Th\\u00e0nh ph\\u1ed1 D\\u0129 An, T\\u1ec9nh B\\u00ecnh D\\u01b0\\u01a1ng\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"be1a6dd\"},{\"content\":\"0968 86 03 86\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"712a43be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.664,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e4e262b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Menu\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6e682e5b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"75\",\"style\":\"tow-col-light\",\"link_color_hover\":\"#F9A244\",\"line_color_hover\":\"#F9A244\",\"menu_align\":\"left\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"e174b97\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gi\\u1edd m\\u1edf c\\u1eeda\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"1e0523b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Th\\u1ee9 Hai - Ch\\u1ee7 Nh\\u1eadt: 24\\/24<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ab76a16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7},\"elements\":[{\"id\":\"37a5e636\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"aa15610\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#85B23B\",\"padding\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"040\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2487ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40d8f8a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u0110\\u0103ng k\\u00fd \\u0111\\u1ec3 nh\\u1eadn th\\u00f4ng b\\u00e1o, blog m\\u1edbi nh\\u1ea5t, \\u00fd t\\u01b0\\u1edfng v\\u00e0 g\\u00f3c nh\\u00ecn c\\u1ee7a ch\\u00fang t\\u00f4i.<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d21d208\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"27383ab2\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin-box\",\"library\":\"material\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24b98c01\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"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},\"gap\":\"extended\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a6c11e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53be024\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"5990603\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"7f874a5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright @2024 of Far East High Tech Ltd. Co.<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_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},\"_css_classes\":\"ct-copyright\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(10924,3299,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:2:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:1;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:16:\"link_color_hover\";i:1;s:16:\"line_color_hover\";i:1;s:10:\"menu_align\";i:1;s:17:\"menu_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:13:\"ct_newsletter\";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:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";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:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:1;}}}}}'),(10925,3299,'_elementor_css','a:6:{s:4:\"time\";i:1742177087;s:5:\"fonts\";a:1:{i:0;s:7:\"Poppins\";}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:3;s:9:\"fa-brands\";i:4;s:8:\"material\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(10926,3299,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"widget-image\";i:1;s:18:\"widget-text-editor\";}}'),(10927,3299,'_elementor_element_cache','{\"timeout\":1742263487,\"value\":{\"content\":\"        <section class=\"elementor-section elementor-top-section elementor-element elementor-element-7225c724 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"7225c724\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-109cef8c\" data-id=\"109cef8c\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-6667e1a9 logo-footer elementor-widget__width-initial elementor-widget elementor-widget-image\" data-id=\"6667e1a9\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">ntttttttttttttt<a href=\"http://fe2tech.com/\">nttttttt<img width=\"597\" height=\"597\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/logo.jpg\" class=\"attachment-full size-full wp-image-2748\" alt=\"\" />tttttttt</a>nttttttttttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6IjRhZTZlY2YyIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsiY29udGFjdF9pbmZvIjpbeyJjb250ZW50IjoiTmhcdTAwZTAgbVx1MDBlMXkgMTogQ1x1MWVlNW0gY1x1MDBmNG5nIG5naGlcdTFlYzdwIEtoXHUxZWFmYyBOaVx1MWVjN20sIFBoXHUwMWIwXHUxZWRkbmcgS2hcdTFlYWZjIE5pXHUxZWM3bSwgVGhcdTAwZTBuaCBwaFx1MWVkMSBCXHUxZWFmYyBOaW5oLCBUXHUxZWM5bmggQlx1MWVhZmMgTmluaCIsImN0X2ljb24iOnsidmFsdWUiOiJmYXMgZmEtbWFwLW1hcmtlci1hbHQiLCJsaWJyYXJ5IjoiZmEtc29saWQifSwiX2lkIjoiZDZhNTRiMCIsImljb25faW1hZ2UiOnsidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3BsdWdpbnNcL2VsZW1lbnRvclwvYXNzZXRzXC9pbWFnZXNcL3BsYWNlaG9sZGVyLnBuZyIsImlkIjoiIn19LHsiY29udGVudCI6Ik5oXHUwMGUwIG1cdTAwZTF5IDI6IDE3NlwvOSBOZ3V5XHUxZWM1biBUaFx1MWVjYiBUXHUwMWIwXHUwMWExaSwgS2h1IHBoXHUxZWQxIFRcdTAwZTJuIFBoXHUwMWIwXHUxZWRiYywgUGhcdTAxYjBcdTFlZGRuZyBUXHUwMGUybiBCXHUwMGVjbmgsIFRoXHUwMGUwbmggcGhcdTFlZDEgRFx1MDEyOSBBbiwgVFx1MWVjOW5oIEJcdTAwZWNuaCBEXHUwMWIwXHUwMWExbmciLCJjdF9pY29uIjp7InZhbHVlIjoiZmFzIGZhLW1hcC1tYXJrZXItYWx0IiwibGlicmFyeSI6ImZhLXNvbGlkIn0sImljb25faW1hZ2UiOnsidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3BsdWdpbnNcL2VsZW1lbnRvclwvYXNzZXRzXC9pbWFnZXNcL3BsYWNlaG9sZGVyLnBuZyIsImlkIjoiIn0sIl9pZCI6ImJlMWE2ZGQifSx7ImNvbnRlbnQiOiIwOTY4IDg2IDAzIDg2IiwiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZhcyBmYS1waG9uZS1hbHQiLCJsaWJyYXJ5IjoiZmEtc29saWQifSwiX2lkIjoiNDRhMWQ4MiIsImljb25faW1hZ2UiOnsidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3BsdWdpbnNcL2VsZW1lbnRvclwvYXNzZXRzXC9pbWFnZXNcL3BsYWNlaG9sZGVyLnBuZyIsImlkIjoiIn19XSwiY29udGVudF9jb2xvciI6IiNmZmZmZmYiLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIxMiIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2NvbnRhY3RfaW5mbyJ9\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-712a43be\" data-id=\"712a43be\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjVlNGUyNjJiIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJNZW51IiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIxMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sIl9wYWRkaW5nIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV9jb2xvciI6IiNmZmZmZmYifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfdGl0bGUifQ==\"][elementor-element data=\"eyJpZCI6IjZlNjgyZTViIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsibWVudSI6Ijc1Iiwic3R5bGUiOiJ0b3ctY29sLWxpZ2h0IiwibGlua19jb2xvcl9ob3ZlciI6IiNGOUEyNDQiLCJsaW5lX2NvbG9yX2hvdmVyIjoiI0Y5QTI0NCIsIm1lbnVfYWxpZ24iOiJsZWZ0IiwiX2VsZW1lbnRfd2lkdGgiOiJpbml0aWFsIiwiX2VsZW1lbnRfY3VzdG9tX3dpZHRoIjp7InVuaXQiOiIlIiwic2l6ZSI6MTAwfSwiX2ZsZXhfc2l6ZSI6Im5vbmUifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfbmF2aWdhdGlvbl9tZW51In0=\"][elementor-element data=\"eyJpZCI6ImUxNzRiOTciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkdpXHUxZWRkIG1cdTFlZGYgY1x1MWVlZGEiLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6IjIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwiX3BhZGRpbmciOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX2NvbG9yIjoiI2ZmZmZmZiJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF90aXRsZSJ9\"]tt<div class=\"elementor-element elementor-element-1e0523b8 elementor-widget elementor-widget-text-editor\" data-id=\"1e0523b8\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Thu1ee9 Hai &#8211; Chu1ee7 Nhu1eadt: 24/24</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-1ab76a16\" data-id=\"1ab76a16\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjM3YTVlNjM2IiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJOZXdzbGV0dGVyIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIxMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sIl9wYWRkaW5nIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV9jb2xvciI6IiNmZmZmZmYifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfdGl0bGUifQ==\"]        <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-aa15610 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"aa15610\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-no \">n                    <div class=\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-e2487ac\" data-id=\"e2487ac\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-40d8f8a2 elementor-widget elementor-widget-text-editor\" data-id=\"40d8f8a2\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>u0110u0103ng ku00fd u0111u1ec3 nhu1eadn thu00f4ng bu00e1o, blog mu1edbi nhu1ea5t, u00fd tu01b0u1edfng vu00e0 gu00f3c nhu00ecn cu1ee7a chu00fang tu00f4i.</p>tttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImQyMWQyMDgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJzdHlsZSI6InN0eWxlMiIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjI4IiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfbmV3c2xldHRlciJ9\"][elementor-element data=\"eyJpZCI6IjI3MzgzYWIyIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsiaWNvbnMiOlt7Imljb25fbGluayI6eyJ1cmwiOiIjIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9LCJfaWQiOiIyY2E4OThjIiwiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZhYiBmYS1mYWNlYm9vay1mIiwibGlicmFyeSI6ImZhLWJyYW5kcyJ9fSx7Imljb25fbGluayI6eyJ1cmwiOiIjIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9LCJfaWQiOiIwZmNjZDc1IiwiY3RfaWNvbiI6eyJ2YWx1ZSI6Im1hdGVyaWFsIHptZGkgem1kaS1saW5rZWRpbi1ib3giLCJsaWJyYXJ5IjoibWF0ZXJpYWwifX1dfSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaWNvbiJ9\"]            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-24b98c01 elementor-section-stretched elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"24b98c01\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-9a6c11e\" data-id=\"9a6c11e\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n                <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-53be024 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"53be024\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-5990603\" data-id=\"5990603\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-7f874a5a ct-copyright elementor-widget elementor-widget-text-editor\" data-id=\"7f874a5a\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Copyright @2024 of Far East High Tech Ltd. Co.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                    </div>n        </section>n        \",\"scripts\":[],\"styles\":[]}}'),(10928,3300,'_wp_page_template','default'),(10929,3300,'_elementor_edit_mode','builder'),(10930,3300,'_elementor_template_type','wp-post'),(10931,3300,'_elementor_version','3.24.7'),(10932,3300,'_elementor_data','[{\"id\":\"7225c724\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#060606E6\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer.png\",\"id\":87},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"109cef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.3},\"elements\":[{\"id\":\"6667e1a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/logo.jpg\",\"id\":2748,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae6ecf2\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Nh\\u00e0 m\\u00e1y 1: C\\u1ee5m c\\u00f4ng nghi\\u1ec7p Kh\\u1eafc Ni\\u1ec7m, Ph\\u01b0\\u1eddng Kh\\u1eafc Ni\\u1ec7m, Th\\u00e0nh ph\\u1ed1 B\\u1eafc Ninh, T\\u1ec9nh B\\u1eafc Ninh\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}},{\"content\":\"Nh\\u00e0 m\\u00e1y 2: 176\\/9 Nguy\\u1ec5n Th\\u1ecb T\\u01b0\\u01a1i, Khu ph\\u1ed1 T\\u00e2n Ph\\u01b0\\u1edbc, Ph\\u01b0\\u1eddng T\\u00e2n B\\u00ecnh, Th\\u00e0nh ph\\u1ed1 D\\u0129 An, T\\u1ec9nh B\\u00ecnh D\\u01b0\\u01a1ng\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"be1a6dd\"},{\"content\":\"0968 86 03 86\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"712a43be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.664,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e4e262b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Menu\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6e682e5b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"75\",\"style\":\"tow-col-light\",\"link_color_hover\":\"#F9A244\",\"line_color_hover\":\"#F9A244\",\"menu_align\":\"left\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"e174b97\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gi\\u1edd m\\u1edf c\\u1eeda\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"1e0523b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Th\\u1ee9 Hai - Ch\\u1ee7 Nh\\u1eadt: 24\\/24<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ab76a16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7},\"elements\":[{\"id\":\"37a5e636\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"aa15610\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#85B23B\",\"padding\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"040\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2487ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40d8f8a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u0110\\u0103ng k\\u00fd \\u0111\\u1ec3 nh\\u1eadn th\\u00f4ng b\\u00e1o, blog m\\u1edbi nh\\u1ea5t, \\u00fd t\\u01b0\\u1edfng v\\u00e0 g\\u00f3c nh\\u00ecn c\\u1ee7a ch\\u00fang t\\u00f4i.<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d21d208\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"27383ab2\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin-box\",\"library\":\"material\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24b98c01\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"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},\"gap\":\"extended\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a6c11e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53be024\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"5990603\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"7f874a5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright @2024 of Far East High Tech Ltd. Co.<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_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},\"_css_classes\":\"ct-copyright\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(10933,3300,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:2:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:1;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:16:\"link_color_hover\";i:1;s:16:\"line_color_hover\";i:1;s:10:\"menu_align\";i:1;s:17:\"menu_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:13:\"ct_newsletter\";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:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";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:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:1;}}}}}'),(10934,3300,'_elementor_css','a:6:{s:4:\"time\";i:1742177087;s:5:\"fonts\";a:1:{i:0;s:7:\"Poppins\";}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:3;s:9:\"fa-brands\";i:4;s:8:\"material\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(10935,3300,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"widget-image\";i:1;s:18:\"widget-text-editor\";}}'),(10936,3300,'_elementor_element_cache','{\"timeout\":1742263487,\"value\":{\"content\":\"        <section class=\"elementor-section elementor-top-section elementor-element elementor-element-7225c724 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"7225c724\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-109cef8c\" data-id=\"109cef8c\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-6667e1a9 logo-footer elementor-widget__width-initial elementor-widget elementor-widget-image\" data-id=\"6667e1a9\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">ntttttttttttttt<a href=\"http://fe2tech.com/\">nttttttt<img width=\"597\" height=\"597\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/logo.jpg\" class=\"attachment-full size-full wp-image-2748\" alt=\"\" />tttttttt</a>nttttttttttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6IjRhZTZlY2YyIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsiY29udGFjdF9pbmZvIjpbeyJjb250ZW50IjoiTmhcdTAwZTAgbVx1MDBlMXkgMTogQ1x1MWVlNW0gY1x1MDBmNG5nIG5naGlcdTFlYzdwIEtoXHUxZWFmYyBOaVx1MWVjN20sIFBoXHUwMWIwXHUxZWRkbmcgS2hcdTFlYWZjIE5pXHUxZWM3bSwgVGhcdTAwZTBuaCBwaFx1MWVkMSBCXHUxZWFmYyBOaW5oLCBUXHUxZWM5bmggQlx1MWVhZmMgTmluaCIsImN0X2ljb24iOnsidmFsdWUiOiJmYXMgZmEtbWFwLW1hcmtlci1hbHQiLCJsaWJyYXJ5IjoiZmEtc29saWQifSwiX2lkIjoiZDZhNTRiMCIsImljb25faW1hZ2UiOnsidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3BsdWdpbnNcL2VsZW1lbnRvclwvYXNzZXRzXC9pbWFnZXNcL3BsYWNlaG9sZGVyLnBuZyIsImlkIjoiIn19LHsiY29udGVudCI6Ik5oXHUwMGUwIG1cdTAwZTF5IDI6IDE3NlwvOSBOZ3V5XHUxZWM1biBUaFx1MWVjYiBUXHUwMWIwXHUwMWExaSwgS2h1IHBoXHUxZWQxIFRcdTAwZTJuIFBoXHUwMWIwXHUxZWRiYywgUGhcdTAxYjBcdTFlZGRuZyBUXHUwMGUybiBCXHUwMGVjbmgsIFRoXHUwMGUwbmggcGhcdTFlZDEgRFx1MDEyOSBBbiwgVFx1MWVjOW5oIEJcdTAwZWNuaCBEXHUwMWIwXHUwMWExbmciLCJjdF9pY29uIjp7InZhbHVlIjoiZmFzIGZhLW1hcC1tYXJrZXItYWx0IiwibGlicmFyeSI6ImZhLXNvbGlkIn0sImljb25faW1hZ2UiOnsidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3BsdWdpbnNcL2VsZW1lbnRvclwvYXNzZXRzXC9pbWFnZXNcL3BsYWNlaG9sZGVyLnBuZyIsImlkIjoiIn0sIl9pZCI6ImJlMWE2ZGQifSx7ImNvbnRlbnQiOiIwOTY4IDg2IDAzIDg2IiwiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZhcyBmYS1waG9uZS1hbHQiLCJsaWJyYXJ5IjoiZmEtc29saWQifSwiX2lkIjoiNDRhMWQ4MiIsImljb25faW1hZ2UiOnsidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3BsdWdpbnNcL2VsZW1lbnRvclwvYXNzZXRzXC9pbWFnZXNcL3BsYWNlaG9sZGVyLnBuZyIsImlkIjoiIn19XSwiY29udGVudF9jb2xvciI6IiNmZmZmZmYiLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIxMiIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2NvbnRhY3RfaW5mbyJ9\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-712a43be\" data-id=\"712a43be\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjVlNGUyNjJiIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJNZW51IiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIxMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sIl9wYWRkaW5nIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV9jb2xvciI6IiNmZmZmZmYifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfdGl0bGUifQ==\"][elementor-element data=\"eyJpZCI6IjZlNjgyZTViIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsibWVudSI6Ijc1Iiwic3R5bGUiOiJ0b3ctY29sLWxpZ2h0IiwibGlua19jb2xvcl9ob3ZlciI6IiNGOUEyNDQiLCJsaW5lX2NvbG9yX2hvdmVyIjoiI0Y5QTI0NCIsIm1lbnVfYWxpZ24iOiJsZWZ0IiwiX2VsZW1lbnRfd2lkdGgiOiJpbml0aWFsIiwiX2VsZW1lbnRfY3VzdG9tX3dpZHRoIjp7InVuaXQiOiIlIiwic2l6ZSI6MTAwfSwiX2ZsZXhfc2l6ZSI6Im5vbmUifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfbmF2aWdhdGlvbl9tZW51In0=\"][elementor-element data=\"eyJpZCI6ImUxNzRiOTciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkdpXHUxZWRkIG1cdTFlZGYgY1x1MWVlZGEiLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6IjIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwiX3BhZGRpbmciOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX2NvbG9yIjoiI2ZmZmZmZiJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF90aXRsZSJ9\"]tt<div class=\"elementor-element elementor-element-1e0523b8 elementor-widget elementor-widget-text-editor\" data-id=\"1e0523b8\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Thu1ee9 Hai &#8211; Chu1ee7 Nhu1eadt: 24/24</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-1ab76a16\" data-id=\"1ab76a16\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjM3YTVlNjM2IiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJOZXdzbGV0dGVyIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIxMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sIl9wYWRkaW5nIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV9jb2xvciI6IiNmZmZmZmYifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfdGl0bGUifQ==\"]        <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-aa15610 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"aa15610\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-no \">n                    <div class=\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-e2487ac\" data-id=\"e2487ac\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-40d8f8a2 elementor-widget elementor-widget-text-editor\" data-id=\"40d8f8a2\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>u0110u0103ng ku00fd u0111u1ec3 nhu1eadn thu00f4ng bu00e1o, blog mu1edbi nhu1ea5t, u00fd tu01b0u1edfng vu00e0 gu00f3c nhu00ecn cu1ee7a chu00fang tu00f4i.</p>tttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImQyMWQyMDgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJzdHlsZSI6InN0eWxlMiIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjI4IiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfbmV3c2xldHRlciJ9\"][elementor-element data=\"eyJpZCI6IjI3MzgzYWIyIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsiaWNvbnMiOlt7Imljb25fbGluayI6eyJ1cmwiOiIjIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9LCJfaWQiOiIyY2E4OThjIiwiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZhYiBmYS1mYWNlYm9vay1mIiwibGlicmFyeSI6ImZhLWJyYW5kcyJ9fSx7Imljb25fbGluayI6eyJ1cmwiOiIjIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9LCJfaWQiOiIwZmNjZDc1IiwiY3RfaWNvbiI6eyJ2YWx1ZSI6Im1hdGVyaWFsIHptZGkgem1kaS1saW5rZWRpbi1ib3giLCJsaWJyYXJ5IjoibWF0ZXJpYWwifX1dfSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaWNvbiJ9\"]            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-24b98c01 elementor-section-stretched elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"24b98c01\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-9a6c11e\" data-id=\"9a6c11e\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n                <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-53be024 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"53be024\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-5990603\" data-id=\"5990603\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-7f874a5a ct-copyright elementor-widget elementor-widget-text-editor\" data-id=\"7f874a5a\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Copyright @2024 of Far East High Tech Ltd. Co.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                    </div>n        </section>n        \",\"scripts\":[],\"styles\":[]}}'),(10937,3301,'_wp_page_template','default'),(10938,3301,'_elementor_edit_mode','builder'),(10939,3301,'_elementor_template_type','wp-post'),(10940,3301,'_elementor_version','3.24.7'),(10941,3301,'_elementor_data','[{\"id\":\"7225c724\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#060606E6\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer.png\",\"id\":87},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"109cef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.3},\"elements\":[{\"id\":\"6667e1a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/logo.jpg\",\"id\":2748,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae6ecf2\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Nh\\u00e0 m\\u00e1y 1: S\\u1ed1 4 \\u0110o\\u00e0n Th\\u1ecb Kia, \\u1ea4p \\u0110\\u00f4ng Chi\\u00eau, Ph\\u01b0\\u1eddng T\\u00e2n \\u0110\\u00f4ng Hi\\u1ec7p, Th\\u00e0nh ph\\u1ed1 D\\u0129 An, B\\u00ecnh D\\u01b0\\u01a1ng, Vi\\u1ec7t Nam\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}},{\"content\":\"Nh\\u00e0 m\\u00e1y 2: C\\u1ee5m c\\u00f4ng nghi\\u1ec7p Kh\\u1eafc Ni\\u1ec7m, Ph\\u01b0\\u1eddng Kh\\u1eafc Ni\\u1ec7m, Th\\u00e0nh ph\\u1ed1 B\\u1eafc Ninh, B\\u1eafc Ninh, Vi\\u1ec7t Nam\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"be1a6dd\"},{\"content\":\"Nh\\u00e0 m\\u00e1y 3: S\\u1ed1 1476 \\u0110\\u01b0\\u1eddng Ph\\u1ed1 V\\u00e1, Ph\\u01b0\\u1eddng H\\u1ea1p L\\u0129nh, Th\\u00e0nh ph\\u1ed1 B\\u1eafc Ninh, B\\u1eafc Ninh, Vi\\u1ec7t Nam\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9fbfa9d\"},{\"content\":\"0968 86 03 86\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"712a43be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.664,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e4e262b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Menu\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6e682e5b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"75\",\"style\":\"tow-col-light\",\"link_color_hover\":\"#F9A244\",\"line_color_hover\":\"#F9A244\",\"menu_align\":\"left\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"e174b97\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gi\\u1edd m\\u1edf c\\u1eeda\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"1e0523b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Th\\u1ee9 Hai - Ch\\u1ee7 Nh\\u1eadt: 24\\/24<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ab76a16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7},\"elements\":[{\"id\":\"37a5e636\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"aa15610\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#85B23B\",\"padding\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"040\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2487ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40d8f8a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u0110\\u0103ng k\\u00fd \\u0111\\u1ec3 nh\\u1eadn th\\u00f4ng b\\u00e1o, blog m\\u1edbi nh\\u1ea5t, \\u00fd t\\u01b0\\u1edfng v\\u00e0 g\\u00f3c nh\\u00ecn c\\u1ee7a ch\\u00fang t\\u00f4i.<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d21d208\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"27383ab2\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin-box\",\"library\":\"material\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24b98c01\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"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},\"gap\":\"extended\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a6c11e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53be024\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"5990603\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"7f874a5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright @2024 of Far East High Tech Ltd. Co.<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_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},\"_css_classes\":\"ct-copyright\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(10942,3301,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:2:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:1;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:16:\"link_color_hover\";i:1;s:16:\"line_color_hover\";i:1;s:10:\"menu_align\";i:1;s:17:\"menu_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:13:\"ct_newsletter\";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:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";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:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:1;}}}}}'),(10943,3301,'_elementor_css','a:6:{s:4:\"time\";i:1742177087;s:5:\"fonts\";a:1:{i:0;s:7:\"Poppins\";}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:3;s:9:\"fa-brands\";i:4;s:8:\"material\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(10944,3301,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"widget-image\";i:1;s:18:\"widget-text-editor\";}}'),(10945,3301,'_elementor_element_cache','{\"timeout\":1742263487,\"value\":{\"content\":\"        <section class=\"elementor-section elementor-top-section elementor-element elementor-element-7225c724 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"7225c724\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-109cef8c\" data-id=\"109cef8c\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-6667e1a9 logo-footer elementor-widget__width-initial elementor-widget elementor-widget-image\" data-id=\"6667e1a9\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">ntttttttttttttt<a href=\"http://fe2tech.com/\">nttttttt<img width=\"597\" height=\"597\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/logo.jpg\" class=\"attachment-full size-full wp-image-2748\" alt=\"\" />tttttttt</a>nttttttttttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6IjRhZTZlY2YyIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsiY29udGFjdF9pbmZvIjpbeyJjb250ZW50IjoiTmhcdTAwZTAgbVx1MDBlMXkgMTogQ1x1MWVlNW0gY1x1MDBmNG5nIG5naGlcdTFlYzdwIEtoXHUxZWFmYyBOaVx1MWVjN20sIFBoXHUwMWIwXHUxZWRkbmcgS2hcdTFlYWZjIE5pXHUxZWM3bSwgVGhcdTAwZTBuaCBwaFx1MWVkMSBCXHUxZWFmYyBOaW5oLCBUXHUxZWM5bmggQlx1MWVhZmMgTmluaCIsImN0X2ljb24iOnsidmFsdWUiOiJmYXMgZmEtbWFwLW1hcmtlci1hbHQiLCJsaWJyYXJ5IjoiZmEtc29saWQifSwiX2lkIjoiZDZhNTRiMCIsImljb25faW1hZ2UiOnsidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3BsdWdpbnNcL2VsZW1lbnRvclwvYXNzZXRzXC9pbWFnZXNcL3BsYWNlaG9sZGVyLnBuZyIsImlkIjoiIn19LHsiY29udGVudCI6Ik5oXHUwMGUwIG1cdTAwZTF5IDI6IDE3NlwvOSBOZ3V5XHUxZWM1biBUaFx1MWVjYiBUXHUwMWIwXHUwMWExaSwgS2h1IHBoXHUxZWQxIFRcdTAwZTJuIFBoXHUwMWIwXHUxZWRiYywgUGhcdTAxYjBcdTFlZGRuZyBUXHUwMGUybiBCXHUwMGVjbmgsIFRoXHUwMGUwbmggcGhcdTFlZDEgRFx1MDEyOSBBbiwgVFx1MWVjOW5oIEJcdTAwZWNuaCBEXHUwMWIwXHUwMWExbmciLCJjdF9pY29uIjp7InZhbHVlIjoiZmFzIGZhLW1hcC1tYXJrZXItYWx0IiwibGlicmFyeSI6ImZhLXNvbGlkIn0sImljb25faW1hZ2UiOnsidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3BsdWdpbnNcL2VsZW1lbnRvclwvYXNzZXRzXC9pbWFnZXNcL3BsYWNlaG9sZGVyLnBuZyIsImlkIjoiIn0sIl9pZCI6ImJlMWE2ZGQifSx7ImNvbnRlbnQiOiIwOTY4IDg2IDAzIDg2IiwiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZhcyBmYS1waG9uZS1hbHQiLCJsaWJyYXJ5IjoiZmEtc29saWQifSwiX2lkIjoiNDRhMWQ4MiIsImljb25faW1hZ2UiOnsidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3BsdWdpbnNcL2VsZW1lbnRvclwvYXNzZXRzXC9pbWFnZXNcL3BsYWNlaG9sZGVyLnBuZyIsImlkIjoiIn19XSwiY29udGVudF9jb2xvciI6IiNmZmZmZmYiLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIxMiIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2NvbnRhY3RfaW5mbyJ9\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-712a43be\" data-id=\"712a43be\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjVlNGUyNjJiIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJNZW51IiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIxMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sIl9wYWRkaW5nIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV9jb2xvciI6IiNmZmZmZmYifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfdGl0bGUifQ==\"][elementor-element data=\"eyJpZCI6IjZlNjgyZTViIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsibWVudSI6Ijc1Iiwic3R5bGUiOiJ0b3ctY29sLWxpZ2h0IiwibGlua19jb2xvcl9ob3ZlciI6IiNGOUEyNDQiLCJsaW5lX2NvbG9yX2hvdmVyIjoiI0Y5QTI0NCIsIm1lbnVfYWxpZ24iOiJsZWZ0IiwiX2VsZW1lbnRfd2lkdGgiOiJpbml0aWFsIiwiX2VsZW1lbnRfY3VzdG9tX3dpZHRoIjp7InVuaXQiOiIlIiwic2l6ZSI6MTAwfSwiX2ZsZXhfc2l6ZSI6Im5vbmUifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfbmF2aWdhdGlvbl9tZW51In0=\"][elementor-element data=\"eyJpZCI6ImUxNzRiOTciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkdpXHUxZWRkIG1cdTFlZGYgY1x1MWVlZGEiLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6IjIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwiX3BhZGRpbmciOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX2NvbG9yIjoiI2ZmZmZmZiJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF90aXRsZSJ9\"]tt<div class=\"elementor-element elementor-element-1e0523b8 elementor-widget elementor-widget-text-editor\" data-id=\"1e0523b8\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Thu1ee9 Hai &#8211; Chu1ee7 Nhu1eadt: 24/24</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-1ab76a16\" data-id=\"1ab76a16\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjM3YTVlNjM2IiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJOZXdzbGV0dGVyIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIxMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sIl9wYWRkaW5nIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV9jb2xvciI6IiNmZmZmZmYifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfdGl0bGUifQ==\"]        <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-aa15610 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"aa15610\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-no \">n                    <div class=\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-e2487ac\" data-id=\"e2487ac\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-40d8f8a2 elementor-widget elementor-widget-text-editor\" data-id=\"40d8f8a2\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>u0110u0103ng ku00fd u0111u1ec3 nhu1eadn thu00f4ng bu00e1o, blog mu1edbi nhu1ea5t, u00fd tu01b0u1edfng vu00e0 gu00f3c nhu00ecn cu1ee7a chu00fang tu00f4i.</p>tttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImQyMWQyMDgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJzdHlsZSI6InN0eWxlMiIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjI4IiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfbmV3c2xldHRlciJ9\"][elementor-element data=\"eyJpZCI6IjI3MzgzYWIyIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsiaWNvbnMiOlt7Imljb25fbGluayI6eyJ1cmwiOiIjIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9LCJfaWQiOiIyY2E4OThjIiwiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZhYiBmYS1mYWNlYm9vay1mIiwibGlicmFyeSI6ImZhLWJyYW5kcyJ9fSx7Imljb25fbGluayI6eyJ1cmwiOiIjIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9LCJfaWQiOiIwZmNjZDc1IiwiY3RfaWNvbiI6eyJ2YWx1ZSI6Im1hdGVyaWFsIHptZGkgem1kaS1saW5rZWRpbi1ib3giLCJsaWJyYXJ5IjoibWF0ZXJpYWwifX1dfSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaWNvbiJ9\"]            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-24b98c01 elementor-section-stretched elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"24b98c01\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-9a6c11e\" data-id=\"9a6c11e\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n                <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-53be024 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"53be024\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-5990603\" data-id=\"5990603\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-7f874a5a ct-copyright elementor-widget elementor-widget-text-editor\" data-id=\"7f874a5a\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Copyright @2024 of Far East High Tech Ltd. Co.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                    </div>n        </section>n        \",\"scripts\":[],\"styles\":[]}}'),(10946,2959,'_elementor_css','a:6:{s:4:\"time\";i:1742182706;s:5:\"fonts\";a:1:{i:0;s:7:\"Poppins\";}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:4;s:9:\"fa-brands\";i:5;s:8:\"material\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(10947,3302,'_wp_page_template','default'),(10948,3302,'_elementor_edit_mode','builder'),(10949,3302,'_elementor_template_type','wp-post'),(10950,3302,'_elementor_version','3.24.7'),(10951,3302,'_elementor_data','[{\"id\":\"7225c724\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#060606E6\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer.png\",\"id\":87},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"109cef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.3},\"elements\":[{\"id\":\"6667e1a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/logo.jpg\",\"id\":2748,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae6ecf2\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"\\u5de5\\u58341: \\u30d0\\u30af\\u30cb\\u30f3\\u7701\\u30d0\\u30af\\u30cb\\u30f3\\u5e02\\u3001\\u30ab\\u30af\\u30cb\\u30a8\\u30e0\\u533a\\u3001\\u30ab\\u30af\\u30cb\\u30a8\\u30e0\\u5de5\\u696d\\u56e3\\u5730\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}},{\"content\":\"\\u5de5\\u58342: \\u30d3\\u30f3\\u30ba\\u30aa\\u30f3\\u7701\\u3001\\u30c7\\u30a3\\u30a2\\u30f3\\u5e02\\u3001\\u30bf\\u30f3\\u30d3\\u30f3\\u533a\\u3001\\u30bf\\u30f3\\u30d5\\u30aa\\u30c3\\u30af\\u5730\\u533a\\u3001\\u30b0\\u30a8\\u30f3\\u30fb\\u30c6\\u30a3\\u30fb\\u30c8\\u30a5\\u30fc\\u30a4176\\/9\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"be1a6dd\"},{\"content\":\"0968 86 03 86\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"712a43be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.664,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e4e262b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Menu\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6e682e5b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"89\",\"style\":\"tow-col-light\",\"link_color_hover\":\"#F9A244\",\"line_color_hover\":\"#F9A244\",\"menu_align\":\"left\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"e174b97\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u55b6\\u696d\\u6642\\u9593\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"1e0523b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u6708\\u66dc\\u65e5\\uff5e\\u65e5\\u66dc\\u65e5\\uff1a24\\u6642\\u9593\\u55b6\\u696d<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ab76a16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7},\"elements\":[{\"id\":\"37a5e636\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"aa15610\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#85B23B\",\"padding\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"040\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2487ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40d8f8a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u901a\\u77e5\\u3001\\u6700\\u65b0\\u306e\\u30d6\\u30ed\\u30b0\\u3001\\u30a2\\u30a4\\u30c7\\u30a2\\u3001\\u6d1e\\u5bdf\\u3092\\u53d7\\u3051\\u53d6\\u308b\\u305f\\u3081\\u306b\\u30b5\\u30a4\\u30f3\\u30a2\\u30c3\\u30d7\\u3057\\u3066\\u304f\\u3060\\u3055\\u3044\\u3002<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d21d208\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"27383ab2\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin-box\",\"library\":\"material\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24b98c01\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"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},\"gap\":\"extended\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a6c11e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53be024\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"5990603\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"7f874a5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright @2024 of Far East High Tech Ltd. Co.<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_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},\"_css_classes\":\"ct-copyright\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(10952,3302,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:2:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:1;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:16:\"link_color_hover\";i:1;s:16:\"line_color_hover\";i:1;s:10:\"menu_align\";i:1;s:17:\"menu_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:13:\"ct_newsletter\";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:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";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:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:1;}}}}}'),(10953,3302,'_elementor_css','a:6:{s:4:\"time\";i:1742177093;s:5:\"fonts\";a:1:{i:0;s:7:\"Poppins\";}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:3;s:9:\"fa-brands\";i:4;s:8:\"material\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(10954,3302,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"widget-image\";i:1;s:18:\"widget-text-editor\";}}'),(10955,3302,'_elementor_element_cache','{\"timeout\":1742263493,\"value\":{\"content\":\"        <section class=\"elementor-section elementor-top-section elementor-element elementor-element-7225c724 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"7225c724\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-109cef8c\" data-id=\"109cef8c\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-6667e1a9 logo-footer elementor-widget__width-initial elementor-widget elementor-widget-image\" data-id=\"6667e1a9\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">ntttttttttttttt<a href=\"http://fe2tech.com/\">nttttttt<img width=\"597\" height=\"597\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/logo.jpg\" class=\"attachment-full size-full wp-image-2748\" alt=\"\" />tttttttt</a>nttttttttttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6IjRhZTZlY2YyIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsiY29udGFjdF9pbmZvIjpbeyJjb250ZW50IjoiXHU1ZGU1XHU1ODM0MTogXHUzMGQwXHUzMGFmXHUzMGNiXHUzMGYzXHU3NzAxXHUzMGQwXHUzMGFmXHUzMGNiXHUzMGYzXHU1ZTAyXHUzMDAxXHUzMGFiXHUzMGFmXHUzMGNiXHUzMGE4XHUzMGUwXHU1MzNhXHUzMDAxXHUzMGFiXHUzMGFmXHUzMGNiXHUzMGE4XHUzMGUwXHU1ZGU1XHU2OTZkXHU1NmUzXHU1NzMwIiwiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZhcyBmYS1tYXAtbWFya2VyLWFsdCIsImxpYnJhcnkiOiJmYS1zb2xpZCJ9LCJfaWQiOiJkNmE1NGIwIiwiaWNvbl9pbWFnZSI6eyJ1cmwiOiJodHRwOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvcGx1Z2luc1wvZWxlbWVudG9yXC9hc3NldHNcL2ltYWdlc1wvcGxhY2Vob2xkZXIucG5nIiwiaWQiOiIifX0seyJjb250ZW50IjoiXHU1ZGU1XHU1ODM0MjogXHUzMGQzXHUzMGYzXHUzMGJhXHUzMGFhXHUzMGYzXHU3NzAxXHUzMDAxXHUzMGM3XHUzMGEzXHUzMGEyXHUzMGYzXHU1ZTAyXHUzMDAxXHUzMGJmXHUzMGYzXHUzMGQzXHUzMGYzXHU1MzNhXHUzMDAxXHUzMGJmXHUzMGYzXHUzMGQ1XHUzMGFhXHUzMGMzXHUzMGFmXHU1NzMwXHU1MzNhXHUzMDAxXHUzMGIwXHUzMGE4XHUzMGYzXHUzMGZiXHUzMGM2XHUzMGEzXHUzMGZiXHUzMGM4XHUzMGE1XHUzMGZjXHUzMGE0MTc2XC85IiwiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZhcyBmYS1tYXAtbWFya2VyLWFsdCIsImxpYnJhcnkiOiJmYS1zb2xpZCJ9LCJpY29uX2ltYWdlIjp7InVybCI6Imh0dHA6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC9wbHVnaW5zXC9lbGVtZW50b3JcL2Fzc2V0c1wvaW1hZ2VzXC9wbGFjZWhvbGRlci5wbmciLCJpZCI6IiJ9LCJfaWQiOiJiZTFhNmRkIn0seyJjb250ZW50IjoiMDk2OCA4NiAwMyA4NiIsImN0X2ljb24iOnsidmFsdWUiOiJmYXMgZmEtcGhvbmUtYWx0IiwibGlicmFyeSI6ImZhLXNvbGlkIn0sIl9pZCI6IjQ0YTFkODIiLCJpY29uX2ltYWdlIjp7InVybCI6Imh0dHA6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC9wbHVnaW5zXC9lbGVtZW50b3JcL2Fzc2V0c1wvaW1hZ2VzXC9wbGFjZWhvbGRlci5wbmciLCJpZCI6IiJ9fV0sImNvbnRlbnRfY29sb3IiOiIjZmZmZmZmIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMTIiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9jb250YWN0X2luZm8ifQ==\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-712a43be\" data-id=\"712a43be\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjVlNGUyNjJiIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJNZW51IiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIxMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sIl9wYWRkaW5nIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV9jb2xvciI6IiNmZmZmZmYifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfdGl0bGUifQ==\"][elementor-element data=\"eyJpZCI6IjZlNjgyZTViIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsibWVudSI6Ijg5Iiwic3R5bGUiOiJ0b3ctY29sLWxpZ2h0IiwibGlua19jb2xvcl9ob3ZlciI6IiNGOUEyNDQiLCJsaW5lX2NvbG9yX2hvdmVyIjoiI0Y5QTI0NCIsIm1lbnVfYWxpZ24iOiJsZWZ0IiwiX2VsZW1lbnRfd2lkdGgiOiJpbml0aWFsIiwiX2VsZW1lbnRfY3VzdG9tX3dpZHRoIjp7InVuaXQiOiIlIiwic2l6ZSI6MTAwfSwiX2ZsZXhfc2l6ZSI6Im5vbmUifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfbmF2aWdhdGlvbl9tZW51In0=\"][elementor-element data=\"eyJpZCI6ImUxNzRiOTciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1NTViNlx1Njk2ZFx1NjY0Mlx1OTU5MyIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJfcGFkZGluZyI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfY29sb3IiOiIjZmZmZmZmIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X3RpdGxlIn0=\"]tt<div class=\"elementor-element elementor-element-1e0523b8 elementor-widget elementor-widget-text-editor\" data-id=\"1e0523b8\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>u6708u66dcu65e5uff5eu65e5u66dcu65e5uff1a24u6642u9593u55b6u696d</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-1ab76a16\" data-id=\"1ab76a16\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjM3YTVlNjM2IiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJOZXdzbGV0dGVyIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIxMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sIl9wYWRkaW5nIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV9jb2xvciI6IiNmZmZmZmYifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfdGl0bGUifQ==\"]        <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-aa15610 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"aa15610\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-no \">n                    <div class=\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-e2487ac\" data-id=\"e2487ac\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-40d8f8a2 elementor-widget elementor-widget-text-editor\" data-id=\"40d8f8a2\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>u901au77e5u3001u6700u65b0u306eu30d6u30edu30b0u3001u30a2u30a4u30c7u30a2u3001u6d1eu5bdfu3092u53d7u3051u53d6u308bu305fu3081u306bu30b5u30a4u30f3u30a2u30c3u30d7u3057u3066u304fu3060u3055u3044u3002</p>tttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImQyMWQyMDgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJzdHlsZSI6InN0eWxlMiIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjI4IiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfbmV3c2xldHRlciJ9\"][elementor-element data=\"eyJpZCI6IjI3MzgzYWIyIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsiaWNvbnMiOlt7Imljb25fbGluayI6eyJ1cmwiOiIjIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9LCJfaWQiOiIyY2E4OThjIiwiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZhYiBmYS1mYWNlYm9vay1mIiwibGlicmFyeSI6ImZhLWJyYW5kcyJ9fSx7Imljb25fbGluayI6eyJ1cmwiOiIjIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9LCJfaWQiOiIwZmNjZDc1IiwiY3RfaWNvbiI6eyJ2YWx1ZSI6Im1hdGVyaWFsIHptZGkgem1kaS1saW5rZWRpbi1ib3giLCJsaWJyYXJ5IjoibWF0ZXJpYWwifX1dfSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaWNvbiJ9\"]            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-24b98c01 elementor-section-stretched elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"24b98c01\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-9a6c11e\" data-id=\"9a6c11e\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n                <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-53be024 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"53be024\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-5990603\" data-id=\"5990603\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-7f874a5a ct-copyright elementor-widget elementor-widget-text-editor\" data-id=\"7f874a5a\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Copyright @2024 of Far East High Tech Ltd. Co.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                    </div>n        </section>n        \",\"scripts\":[],\"styles\":[]}}'),(10956,3303,'_wp_page_template','default'),(10957,3303,'_elementor_edit_mode','builder'),(10958,3303,'_elementor_template_type','wp-post'),(10959,3303,'_elementor_version','3.24.7'),(10960,3303,'_elementor_data','[{\"id\":\"7225c724\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#060606E6\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer.png\",\"id\":87},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"109cef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.3},\"elements\":[{\"id\":\"6667e1a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/logo.jpg\",\"id\":2748,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae6ecf2\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"\\u5de5\\u58341: \\u30d0\\u30af\\u30cb\\u30f3\\u7701\\u30d0\\u30af\\u30cb\\u30f3\\u5e02\\u3001\\u30ab\\u30af\\u30cb\\u30a8\\u30e0\\u533a\\u3001\\u30ab\\u30af\\u30cb\\u30a8\\u30e0\\u5de5\\u696d\\u56e3\\u5730\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}},{\"content\":\"\\u5de5\\u58342: \\u30d3\\u30f3\\u30ba\\u30aa\\u30f3\\u7701\\u3001\\u30c7\\u30a3\\u30a2\\u30f3\\u5e02\\u3001\\u30bf\\u30f3\\u30d3\\u30f3\\u533a\\u3001\\u30bf\\u30f3\\u30d5\\u30aa\\u30c3\\u30af\\u5730\\u533a\\u3001\\u30b0\\u30a8\\u30f3\\u30fb\\u30c6\\u30a3\\u30fb\\u30c8\\u30a5\\u30fc\\u30a4176\\/9\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"be1a6dd\"},{\"content\":\"0968 86 03 86\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"712a43be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.664,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e4e262b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Menu\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6e682e5b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"89\",\"style\":\"tow-col-light\",\"link_color_hover\":\"#F9A244\",\"line_color_hover\":\"#F9A244\",\"menu_align\":\"left\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"e174b97\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u55b6\\u696d\\u6642\\u9593\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"1e0523b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u6708\\u66dc\\u65e5\\uff5e\\u65e5\\u66dc\\u65e5\\uff1a24\\u6642\\u9593\\u55b6\\u696d<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ab76a16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7},\"elements\":[{\"id\":\"37a5e636\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"aa15610\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#85B23B\",\"padding\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"040\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2487ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40d8f8a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u901a\\u77e5\\u3001\\u6700\\u65b0\\u306e\\u30d6\\u30ed\\u30b0\\u3001\\u30a2\\u30a4\\u30c7\\u30a2\\u3001\\u6d1e\\u5bdf\\u3092\\u53d7\\u3051\\u53d6\\u308b\\u305f\\u3081\\u306b\\u30b5\\u30a4\\u30f3\\u30a2\\u30c3\\u30d7\\u3057\\u3066\\u304f\\u3060\\u3055\\u3044\\u3002<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d21d208\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"27383ab2\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin-box\",\"library\":\"material\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24b98c01\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"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},\"gap\":\"extended\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a6c11e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53be024\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"5990603\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"7f874a5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright @2024 of Far East High Tech Ltd. Co.<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_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},\"_css_classes\":\"ct-copyright\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(10961,3303,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:2:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:1;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:16:\"link_color_hover\";i:1;s:16:\"line_color_hover\";i:1;s:10:\"menu_align\";i:1;s:17:\"menu_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:13:\"ct_newsletter\";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:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";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:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:1;}}}}}'),(10962,3303,'_elementor_css','a:6:{s:4:\"time\";i:1742177093;s:5:\"fonts\";a:1:{i:0;s:7:\"Poppins\";}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:3;s:9:\"fa-brands\";i:4;s:8:\"material\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(10963,3303,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"widget-image\";i:1;s:18:\"widget-text-editor\";}}'),(10964,3303,'_elementor_element_cache','{\"timeout\":1742263493,\"value\":{\"content\":\"        <section class=\"elementor-section elementor-top-section elementor-element elementor-element-7225c724 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"7225c724\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-109cef8c\" data-id=\"109cef8c\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-6667e1a9 logo-footer elementor-widget__width-initial elementor-widget elementor-widget-image\" data-id=\"6667e1a9\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">ntttttttttttttt<a href=\"http://fe2tech.com/\">nttttttt<img width=\"597\" height=\"597\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/logo.jpg\" class=\"attachment-full size-full wp-image-2748\" alt=\"\" />tttttttt</a>nttttttttttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6IjRhZTZlY2YyIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsiY29udGFjdF9pbmZvIjpbeyJjb250ZW50IjoiXHU1ZGU1XHU1ODM0MTogXHUzMGQwXHUzMGFmXHUzMGNiXHUzMGYzXHU3NzAxXHUzMGQwXHUzMGFmXHUzMGNiXHUzMGYzXHU1ZTAyXHUzMDAxXHUzMGFiXHUzMGFmXHUzMGNiXHUzMGE4XHUzMGUwXHU1MzNhXHUzMDAxXHUzMGFiXHUzMGFmXHUzMGNiXHUzMGE4XHUzMGUwXHU1ZGU1XHU2OTZkXHU1NmUzXHU1NzMwIiwiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZhcyBmYS1tYXAtbWFya2VyLWFsdCIsImxpYnJhcnkiOiJmYS1zb2xpZCJ9LCJfaWQiOiJkNmE1NGIwIiwiaWNvbl9pbWFnZSI6eyJ1cmwiOiJodHRwOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvcGx1Z2luc1wvZWxlbWVudG9yXC9hc3NldHNcL2ltYWdlc1wvcGxhY2Vob2xkZXIucG5nIiwiaWQiOiIifX0seyJjb250ZW50IjoiXHU1ZGU1XHU1ODM0MjogXHUzMGQzXHUzMGYzXHUzMGJhXHUzMGFhXHUzMGYzXHU3NzAxXHUzMDAxXHUzMGM3XHUzMGEzXHUzMGEyXHUzMGYzXHU1ZTAyXHUzMDAxXHUzMGJmXHUzMGYzXHUzMGQzXHUzMGYzXHU1MzNhXHUzMDAxXHUzMGJmXHUzMGYzXHUzMGQ1XHUzMGFhXHUzMGMzXHUzMGFmXHU1NzMwXHU1MzNhXHUzMDAxXHUzMGIwXHUzMGE4XHUzMGYzXHUzMGZiXHUzMGM2XHUzMGEzXHUzMGZiXHUzMGM4XHUzMGE1XHUzMGZjXHUzMGE0MTc2XC85IiwiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZhcyBmYS1tYXAtbWFya2VyLWFsdCIsImxpYnJhcnkiOiJmYS1zb2xpZCJ9LCJpY29uX2ltYWdlIjp7InVybCI6Imh0dHA6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC9wbHVnaW5zXC9lbGVtZW50b3JcL2Fzc2V0c1wvaW1hZ2VzXC9wbGFjZWhvbGRlci5wbmciLCJpZCI6IiJ9LCJfaWQiOiJiZTFhNmRkIn0seyJjb250ZW50IjoiMDk2OCA4NiAwMyA4NiIsImN0X2ljb24iOnsidmFsdWUiOiJmYXMgZmEtcGhvbmUtYWx0IiwibGlicmFyeSI6ImZhLXNvbGlkIn0sIl9pZCI6IjQ0YTFkODIiLCJpY29uX2ltYWdlIjp7InVybCI6Imh0dHA6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC9wbHVnaW5zXC9lbGVtZW50b3JcL2Fzc2V0c1wvaW1hZ2VzXC9wbGFjZWhvbGRlci5wbmciLCJpZCI6IiJ9fV0sImNvbnRlbnRfY29sb3IiOiIjZmZmZmZmIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMTIiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9jb250YWN0X2luZm8ifQ==\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-712a43be\" data-id=\"712a43be\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjVlNGUyNjJiIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJNZW51IiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIxMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sIl9wYWRkaW5nIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV9jb2xvciI6IiNmZmZmZmYifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfdGl0bGUifQ==\"][elementor-element data=\"eyJpZCI6IjZlNjgyZTViIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsibWVudSI6Ijg5Iiwic3R5bGUiOiJ0b3ctY29sLWxpZ2h0IiwibGlua19jb2xvcl9ob3ZlciI6IiNGOUEyNDQiLCJsaW5lX2NvbG9yX2hvdmVyIjoiI0Y5QTI0NCIsIm1lbnVfYWxpZ24iOiJsZWZ0IiwiX2VsZW1lbnRfd2lkdGgiOiJpbml0aWFsIiwiX2VsZW1lbnRfY3VzdG9tX3dpZHRoIjp7InVuaXQiOiIlIiwic2l6ZSI6MTAwfSwiX2ZsZXhfc2l6ZSI6Im5vbmUifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfbmF2aWdhdGlvbl9tZW51In0=\"][elementor-element data=\"eyJpZCI6ImUxNzRiOTciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1NTViNlx1Njk2ZFx1NjY0Mlx1OTU5MyIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJfcGFkZGluZyI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfY29sb3IiOiIjZmZmZmZmIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X3RpdGxlIn0=\"]tt<div class=\"elementor-element elementor-element-1e0523b8 elementor-widget elementor-widget-text-editor\" data-id=\"1e0523b8\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>u6708u66dcu65e5uff5eu65e5u66dcu65e5uff1a24u6642u9593u55b6u696d</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-1ab76a16\" data-id=\"1ab76a16\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjM3YTVlNjM2IiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJOZXdzbGV0dGVyIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIxMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sIl9wYWRkaW5nIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV9jb2xvciI6IiNmZmZmZmYifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfdGl0bGUifQ==\"]        <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-aa15610 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"aa15610\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-no \">n                    <div class=\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-e2487ac\" data-id=\"e2487ac\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-40d8f8a2 elementor-widget elementor-widget-text-editor\" data-id=\"40d8f8a2\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>u901au77e5u3001u6700u65b0u306eu30d6u30edu30b0u3001u30a2u30a4u30c7u30a2u3001u6d1eu5bdfu3092u53d7u3051u53d6u308bu305fu3081u306bu30b5u30a4u30f3u30a2u30c3u30d7u3057u3066u304fu3060u3055u3044u3002</p>tttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImQyMWQyMDgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJzdHlsZSI6InN0eWxlMiIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjI4IiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfbmV3c2xldHRlciJ9\"][elementor-element data=\"eyJpZCI6IjI3MzgzYWIyIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsiaWNvbnMiOlt7Imljb25fbGluayI6eyJ1cmwiOiIjIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9LCJfaWQiOiIyY2E4OThjIiwiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZhYiBmYS1mYWNlYm9vay1mIiwibGlicmFyeSI6ImZhLWJyYW5kcyJ9fSx7Imljb25fbGluayI6eyJ1cmwiOiIjIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9LCJfaWQiOiIwZmNjZDc1IiwiY3RfaWNvbiI6eyJ2YWx1ZSI6Im1hdGVyaWFsIHptZGkgem1kaS1saW5rZWRpbi1ib3giLCJsaWJyYXJ5IjoibWF0ZXJpYWwifX1dfSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaWNvbiJ9\"]            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-24b98c01 elementor-section-stretched elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"24b98c01\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-9a6c11e\" data-id=\"9a6c11e\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n                <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-53be024 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"53be024\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-5990603\" data-id=\"5990603\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-7f874a5a ct-copyright elementor-widget elementor-widget-text-editor\" data-id=\"7f874a5a\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Copyright @2024 of Far East High Tech Ltd. Co.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                    </div>n        </section>n        \",\"scripts\":[],\"styles\":[]}}'),(10965,3304,'_wp_page_template','default'),(10966,3304,'_elementor_edit_mode','builder'),(10967,3304,'_elementor_template_type','wp-post'),(10968,3304,'_elementor_version','3.24.7'),(10969,3304,'_elementor_data','[{\"id\":\"7225c724\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#060606E6\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer.png\",\"id\":87},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"109cef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.3},\"elements\":[{\"id\":\"6667e1a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/logo.jpg\",\"id\":2748,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/fe2tech.com\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4ae6ecf2\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"\\u5de5\\u5834 1: \\u30d9\\u30c8\\u30ca\\u30e0\\u3001\\u30d3\\u30f3\\u30ba\\u30aa\\u30f3\\u7701\\u3001\\u30b8\\u30a2\\u30f3\\u5e02\\u3001\\u30bf\\u30f3\\u30fb\\u30c9\\u30f3\\u30fb\\u30d2\\u30a8\\u30c3\\u30d7\\u533a\\u3001\\u30c9\\u30f3\\u30c1\\u30a8\\u30a6\\u6751\\u30014\\u756a\\u5730 \\u30c9\\u30a2\\u30f3\\u30fb\\u30c6\\u30a3\\u30fb\\u30ad\\u30a2\\u901a\\u308a\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}},{\"content\":\"\\u5de5\\u5834 2: \\u30d9\\u30c8\\u30ca\\u30e0\\u3001\\u30d0\\u30af\\u30cb\\u30f3\\u7701\\u3001\\u30d0\\u30af\\u30cb\\u30f3\\u5e02\\u3001\\u30ab\\u30c3\\u30af\\u30fb\\u30cb\\u30a8\\u30e0\\u533a\\u3001\\u30ab\\u30c3\\u30af\\u30fb\\u30cb\\u30a8\\u30e0\\u5de5\\u696d\\u30af\\u30e9\\u30b9\\u30bf\\u30fc\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"be1a6dd\"},{\"content\":\"\\u5de5\\u5834 3: \\u30d9\\u30c8\\u30ca\\u30e0\\u3001\\u30d0\\u30af\\u30cb\\u30f3\\u7701\\u3001\\u30d0\\u30af\\u30cb\\u30f3\\u5e02\\u3001\\u30cf\\u30c3\\u30d7\\u30fb\\u30ea\\u30f3\\u533a\\u30011476\\u756a\\u5730 \\u30d5\\u30a9\\u30fb\\u30f4\\u30a1\\u30fc\\u901a\\u308a\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"72dbf58\"},{\"content\":\"0968 86 03 86\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"url\":\"http:\\/\\/fe2tech.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"712a43be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.664,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e4e262b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Menu\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6e682e5b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"89\",\"style\":\"tow-col-light\",\"link_color_hover\":\"#F9A244\",\"line_color_hover\":\"#F9A244\",\"menu_align\":\"left\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"e174b97\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u55b6\\u696d\\u6642\\u9593\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"1e0523b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u6708\\u66dc\\u65e5\\uff5e\\u65e5\\u66dc\\u65e5\\uff1a24\\u6642\\u9593\\u55b6\\u696d<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ab76a16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7},\"elements\":[{\"id\":\"37a5e636\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"aa15610\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#85B23B\",\"padding\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"040\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2487ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40d8f8a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u901a\\u77e5\\u3001\\u6700\\u65b0\\u306e\\u30d6\\u30ed\\u30b0\\u3001\\u30a2\\u30a4\\u30c7\\u30a2\\u3001\\u6d1e\\u5bdf\\u3092\\u53d7\\u3051\\u53d6\\u308b\\u305f\\u3081\\u306b\\u30b5\\u30a4\\u30f3\\u30a2\\u30c3\\u30d7\\u3057\\u3066\\u304f\\u3060\\u3055\\u3044\\u3002<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d21d208\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"27383ab2\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin-box\",\"library\":\"material\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24b98c01\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"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},\"gap\":\"extended\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a6c11e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53be024\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"5990603\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"7f874a5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright @2024 of Far East High Tech Ltd. Co.<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_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},\"_css_classes\":\"ct-copyright\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(10970,3304,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:2:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:1;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:16:\"link_color_hover\";i:1;s:16:\"line_color_hover\";i:1;s:10:\"menu_align\";i:1;s:17:\"menu_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:13:\"ct_newsletter\";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:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";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:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:1;}}}}}'),(10971,3304,'_elementor_css','a:6:{s:4:\"time\";i:1742177093;s:5:\"fonts\";a:1:{i:0;s:7:\"Poppins\";}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:3;s:9:\"fa-brands\";i:4;s:8:\"material\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(10972,3304,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"widget-image\";i:1;s:18:\"widget-text-editor\";}}'),(10973,3304,'_elementor_element_cache','{\"timeout\":1742263493,\"value\":{\"content\":\"        <section class=\"elementor-section elementor-top-section elementor-element elementor-element-7225c724 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"7225c724\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-109cef8c\" data-id=\"109cef8c\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-6667e1a9 logo-footer elementor-widget__width-initial elementor-widget elementor-widget-image\" data-id=\"6667e1a9\" data-element_type=\"widget\" data-widget_type=\"image.default\">ntttt<div class=\"elementor-widget-container\">ntttttttttttttt<a href=\"http://fe2tech.com/\">nttttttt<img width=\"597\" height=\"597\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/logo.jpg\" class=\"attachment-full size-full wp-image-2748\" alt=\"\" />tttttttt</a>nttttttttttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6IjRhZTZlY2YyIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsiY29udGFjdF9pbmZvIjpbeyJjb250ZW50IjoiXHU1ZGU1XHU1ODM0MTogXHUzMGQwXHUzMGFmXHUzMGNiXHUzMGYzXHU3NzAxXHUzMGQwXHUzMGFmXHUzMGNiXHUzMGYzXHU1ZTAyXHUzMDAxXHUzMGFiXHUzMGFmXHUzMGNiXHUzMGE4XHUzMGUwXHU1MzNhXHUzMDAxXHUzMGFiXHUzMGFmXHUzMGNiXHUzMGE4XHUzMGUwXHU1ZGU1XHU2OTZkXHU1NmUzXHU1NzMwIiwiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZhcyBmYS1tYXAtbWFya2VyLWFsdCIsImxpYnJhcnkiOiJmYS1zb2xpZCJ9LCJfaWQiOiJkNmE1NGIwIiwiaWNvbl9pbWFnZSI6eyJ1cmwiOiJodHRwOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvcGx1Z2luc1wvZWxlbWVudG9yXC9hc3NldHNcL2ltYWdlc1wvcGxhY2Vob2xkZXIucG5nIiwiaWQiOiIifX0seyJjb250ZW50IjoiXHU1ZGU1XHU1ODM0MjogXHUzMGQzXHUzMGYzXHUzMGJhXHUzMGFhXHUzMGYzXHU3NzAxXHUzMDAxXHUzMGM3XHUzMGEzXHUzMGEyXHUzMGYzXHU1ZTAyXHUzMDAxXHUzMGJmXHUzMGYzXHUzMGQzXHUzMGYzXHU1MzNhXHUzMDAxXHUzMGJmXHUzMGYzXHUzMGQ1XHUzMGFhXHUzMGMzXHUzMGFmXHU1NzMwXHU1MzNhXHUzMDAxXHUzMGIwXHUzMGE4XHUzMGYzXHUzMGZiXHUzMGM2XHUzMGEzXHUzMGZiXHUzMGM4XHUzMGE1XHUzMGZjXHUzMGE0MTc2XC85IiwiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZhcyBmYS1tYXAtbWFya2VyLWFsdCIsImxpYnJhcnkiOiJmYS1zb2xpZCJ9LCJpY29uX2ltYWdlIjp7InVybCI6Imh0dHA6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC9wbHVnaW5zXC9lbGVtZW50b3JcL2Fzc2V0c1wvaW1hZ2VzXC9wbGFjZWhvbGRlci5wbmciLCJpZCI6IiJ9LCJfaWQiOiJiZTFhNmRkIn0seyJjb250ZW50IjoiMDk2OCA4NiAwMyA4NiIsImN0X2ljb24iOnsidmFsdWUiOiJmYXMgZmEtcGhvbmUtYWx0IiwibGlicmFyeSI6ImZhLXNvbGlkIn0sIl9pZCI6IjQ0YTFkODIiLCJpY29uX2ltYWdlIjp7InVybCI6Imh0dHA6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC9wbHVnaW5zXC9lbGVtZW50b3JcL2Fzc2V0c1wvaW1hZ2VzXC9wbGFjZWhvbGRlci5wbmciLCJpZCI6IiJ9fV0sImNvbnRlbnRfY29sb3IiOiIjZmZmZmZmIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMTIiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9jb250YWN0X2luZm8ifQ==\"]            </div>n        </div>n                <div class=\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-712a43be\" data-id=\"712a43be\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjVlNGUyNjJiIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJNZW51IiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIxMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sIl9wYWRkaW5nIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV9jb2xvciI6IiNmZmZmZmYifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfdGl0bGUifQ==\"][elementor-element data=\"eyJpZCI6IjZlNjgyZTViIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsibWVudSI6Ijg5Iiwic3R5bGUiOiJ0b3ctY29sLWxpZ2h0IiwibGlua19jb2xvcl9ob3ZlciI6IiNGOUEyNDQiLCJsaW5lX2NvbG9yX2hvdmVyIjoiI0Y5QTI0NCIsIm1lbnVfYWxpZ24iOiJsZWZ0IiwiX2VsZW1lbnRfd2lkdGgiOiJpbml0aWFsIiwiX2VsZW1lbnRfY3VzdG9tX3dpZHRoIjp7InVuaXQiOiIlIiwic2l6ZSI6MTAwfSwiX2ZsZXhfc2l6ZSI6Im5vbmUifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfbmF2aWdhdGlvbl9tZW51In0=\"][elementor-element data=\"eyJpZCI6ImUxNzRiOTciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1NTViNlx1Njk2ZFx1NjY0Mlx1OTU5MyIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJfcGFkZGluZyI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfY29sb3IiOiIjZmZmZmZmIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X3RpdGxlIn0=\"]tt<div class=\"elementor-element elementor-element-1e0523b8 elementor-widget elementor-widget-text-editor\" data-id=\"1e0523b8\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>u6708u66dcu65e5uff5eu65e5u66dcu65e5uff1a24u6642u9593u55b6u696d</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                <div class=\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-1ab76a16\" data-id=\"1ab76a16\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        [elementor-element data=\"eyJpZCI6IjM3YTVlNjM2IiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJOZXdzbGV0dGVyIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIxMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sIl9wYWRkaW5nIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV9jb2xvciI6IiNmZmZmZmYifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfdGl0bGUifQ==\"]        <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-aa15610 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"aa15610\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-no \">n                    <div class=\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-e2487ac\" data-id=\"e2487ac\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-40d8f8a2 elementor-widget elementor-widget-text-editor\" data-id=\"40d8f8a2\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>u901au77e5u3001u6700u65b0u306eu30d6u30edu30b0u3001u30a2u30a4u30c7u30a2u3001u6d1eu5bdfu3092u53d7u3051u53d6u308bu305fu3081u306bu30b5u30a4u30f3u30a2u30c3u30d7u3057u3066u304fu3060u3055u3044u3002</p>tttttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImQyMWQyMDgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJzdHlsZSI6InN0eWxlMiIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjI4IiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfbmV3c2xldHRlciJ9\"][elementor-element data=\"eyJpZCI6IjI3MzgzYWIyIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsiaWNvbnMiOlt7Imljb25fbGluayI6eyJ1cmwiOiIjIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9LCJfaWQiOiIyY2E4OThjIiwiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZhYiBmYS1mYWNlYm9vay1mIiwibGlicmFyeSI6ImZhLWJyYW5kcyJ9fSx7Imljb25fbGluayI6eyJ1cmwiOiIjIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9LCJfaWQiOiIwZmNjZDc1IiwiY3RfaWNvbiI6eyJ2YWx1ZSI6Im1hdGVyaWFsIHptZGkgem1kaS1saW5rZWRpbi1ib3giLCJsaWJyYXJ5IjoibWF0ZXJpYWwifX1dfSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaWNvbiJ9\"]            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                    </div>n        </section>n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-24b98c01 elementor-section-stretched elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"24b98c01\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-9a6c11e\" data-id=\"9a6c11e\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n                <section class=\"elementor-section elementor-inner-section elementor-element elementor-element-53be024 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"53be024\" data-element_type=\"section\">n            n                        <div class=\"elementor-container elementor-column-gap-extended \">n                    <div class=\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-5990603\" data-id=\"5990603\" data-element_type=\"column\">n        <div class=\"elementor-widget-wrap elementor-element-populated\">n                    n        tt<div class=\"elementor-element elementor-element-7f874a5a ct-copyright elementor-widget elementor-widget-text-editor\" data-id=\"7f874a5a\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">ntttt<div class=\"elementor-widget-container\">nttttttt<p>Copyright @2024 of Far East High Tech Ltd. Co.</p>tttttt</div>ntttt</div>ntt            </div>n        </div>n                    </div>n        </section>n                    </div>n        </div>n                    </div>n        </section>n        \",\"scripts\":[],\"styles\":[]}}'),(10974,2961,'_elementor_css','a:6:{s:4:\"time\";i:1742182736;s:5:\"fonts\";a:1:{i:0;s:7:\"Poppins\";}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:4;s:9:\"fa-brands\";i:5;s:8:\"material\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(10975,799,'_elementor_css','a:6:{s:4:\"time\";i:1742182741;s:5:\"fonts\";a:1:{i:0;s:7:\"Poppins\";}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:4;s:9:\"fa-brands\";i:5;s:8:\"material\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(10976,799,'_elementor_element_cache','{\"timeout\":1746588918,\"value\":{\"content\":\"        <section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-7225c724 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"7225c724\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-109cef8c\\\" data-id=\\\"109cef8c\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        \\t\\t<div class=\\\"elementor-element elementor-element-6667e1a9 logo-footer elementor-widget__width-initial elementor-widget elementor-widget-image\\\" data-id=\\\"6667e1a9\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"http:\\/\\/fe2tech.com\\/\\\">\\n\\t\\t\\t\\t\\t\\t\\t<img width=\\\"597\\\" height=\\\"597\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/logo.jpg\\\" class=\\\"attachment-full size-full wp-image-2748\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element data=\\\"eyJpZCI6IjRhZTZlY2YyIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsiY29udGFjdF9pbmZvIjpbeyJjb250ZW50IjoiRmFjdG9yeSAxOiBOby4gNCBEb2FuIFRoaSBLaWEsIERvbmcgQ2hpZXUgSGFtbGV0LCBUYW4gRG9uZ1xuSGllcCBXYXJkLCBEaSBBbiBDaXR5LCBCaW5oIER1b25nLCBWaWV0IE5hbSIsImN0X2ljb24iOnsidmFsdWUiOiJmYXMgZmEtbWFwLW1hcmtlci1hbHQiLCJsaWJyYXJ5IjoiZmEtc29saWQifSwiX2lkIjoiZDZhNTRiMCIsImljb25faW1hZ2UiOnsidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3BsdWdpbnNcL2VsZW1lbnRvclwvYXNzZXRzXC9pbWFnZXNcL3BsYWNlaG9sZGVyLnBuZyIsImlkIjoiIn19LHsiY29udGVudCI6IkZhY3RvcnkgMjogS2hhYyBOaWVtIEluZHVzdHJpYWwgQ2x1c3RlciwgS2hhYyBOaWVtIFdhcmQsIEJhYyBOaW5oXG5DaXQsIEJhYyBOaW5oLCBWaWV0IE5hbSIsImN0X2ljb24iOnsidmFsdWUiOiJmYXMgZmEtbWFwLW1hcmtlci1hbHQiLCJsaWJyYXJ5IjoiZmEtc29saWQifSwiaWNvbl9pbWFnZSI6eyJ1cmwiOiJodHRwOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvcGx1Z2luc1wvZWxlbWVudG9yXC9hc3NldHNcL2ltYWdlc1wvcGxhY2Vob2xkZXIucG5nIiwiaWQiOiIifSwiX2lkIjoiYmUxYTZkZCJ9LHsiY29udGVudCI6IkZhY3RvcnkgMzogMTQ3NiBQaG8gVmEgU3RyZWV0LCBIYXAgTGluaCBXYXJkLCBCYWMgTmluaCBDaXR5LCBCYWNcbk5pbmgsIFZpZXQgTmFtIiwiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZhcyBmYS1tYXAtbWFya2VyLWFsdCIsImxpYnJhcnkiOiJmYS1zb2xpZCJ9LCJpY29uX2ltYWdlIjp7InVybCI6Imh0dHA6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC9wbHVnaW5zXC9lbGVtZW50b3JcL2Fzc2V0c1wvaW1hZ2VzXC9wbGFjZWhvbGRlci5wbmciLCJpZCI6IiJ9LCJfaWQiOiJhZGQ1MjUxIn0seyJjb250ZW50IjoiMDk2OCA4NiAwMyA4NiIsImN0X2ljb24iOnsidmFsdWUiOiJmYXMgZmEtcGhvbmUtYWx0IiwibGlicmFyeSI6ImZhLXNvbGlkIn0sIl9pZCI6IjQ0YTFkODIiLCJpY29uX2ltYWdlIjp7InVybCI6Imh0dHA6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC9wbHVnaW5zXC9lbGVtZW50b3JcL2Fzc2V0c1wvaW1hZ2VzXC9wbGFjZWhvbGRlci5wbmciLCJpZCI6IiJ9fV0sImNvbnRlbnRfY29sb3IiOiIjZmZmZmZmIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMTIiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9jb250YWN0X2luZm8ifQ==\\\"]            <\\/div>\\n        <\\/div>\\n                <div class=\\\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-712a43be\\\" data-id=\\\"712a43be\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6IjVlNGUyNjJiIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJNZW51IiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIxMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sIl9wYWRkaW5nIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV9jb2xvciI6IiNmZmZmZmYifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfdGl0bGUifQ==\\\"][elementor-element data=\\\"eyJpZCI6IjZlNjgyZTViIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsibWVudSI6IjM5Iiwic3R5bGUiOiJ0b3ctY29sLWxpZ2h0IiwibGlua19jb2xvcl9ob3ZlciI6IiNGOUEyNDQiLCJsaW5lX2NvbG9yX2hvdmVyIjoiI0Y5QTI0NCIsIm1lbnVfYWxpZ24iOiJsZWZ0IiwiX2VsZW1lbnRfd2lkdGgiOiJpbml0aWFsIiwiX2VsZW1lbnRfY3VzdG9tX3dpZHRoIjp7InVuaXQiOiIlIiwic2l6ZSI6MTAwfSwiX2ZsZXhfc2l6ZSI6Im5vbmUifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfbmF2aWdhdGlvbl9tZW51In0=\\\"][elementor-element data=\\\"eyJpZCI6ImUxNzRiOTciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ik9wZW4gSG91cnMiLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6IjIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwiX3BhZGRpbmciOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX2NvbG9yIjoiI2ZmZmZmZiJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF90aXRsZSJ9\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-1e0523b8 elementor-widget elementor-widget-text-editor\\\" data-id=\\\"1e0523b8\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>Mon &#8211; Sun: 24\\/24<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t            <\\/div>\\n        <\\/div>\\n                <div class=\\\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-1ab76a16\\\" data-id=\\\"1ab76a16\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6IjM3YTVlNjM2IiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJOZXdzbGV0dGVyIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIxMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sIl9wYWRkaW5nIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV9jb2xvciI6IiNmZmZmZmYifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfdGl0bGUifQ==\\\"]        <section class=\\\"elementor-section elementor-inner-section elementor-element elementor-element-aa15610 elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"aa15610\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-no \\\">\\n                    <div class=\\\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-e2487ac\\\" data-id=\\\"e2487ac\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        \\t\\t<div class=\\\"elementor-element elementor-element-40d8f8a2 elementor-widget elementor-widget-text-editor\\\" data-id=\\\"40d8f8a2\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\tSign up for alerts, our latest blogs, thoughts, and insights.\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element data=\\\"eyJpZCI6ImQyMWQyMDgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJzdHlsZSI6InN0eWxlMiIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjI4IiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfbmV3c2xldHRlciJ9\\\"][elementor-element data=\\\"eyJpZCI6IjI3MzgzYWIyIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsiaWNvbnMiOlt7Imljb25fbGluayI6eyJ1cmwiOiIjIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9LCJfaWQiOiIyY2E4OThjIiwiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZhYiBmYS1mYWNlYm9vay1mIiwibGlicmFyeSI6ImZhLWJyYW5kcyJ9fSx7Imljb25fbGluayI6eyJ1cmwiOiIjIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9LCJfaWQiOiIwZmNjZDc1IiwiY3RfaWNvbiI6eyJ2YWx1ZSI6Im1hdGVyaWFsIHptZGkgem1kaS1saW5rZWRpbi1ib3giLCJsaWJyYXJ5IjoibWF0ZXJpYWwifX1dfSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaWNvbiJ9\\\"]            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                    <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                <section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-24b98c01 elementor-section-stretched elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"24b98c01\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-9a6c11e\\\" data-id=\\\"9a6c11e\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n                <section class=\\\"elementor-section elementor-inner-section elementor-element elementor-element-53be024 elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"53be024\\\" data-element_type=\\\"section\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-5990603\\\" data-id=\\\"5990603\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        \\t\\t<div class=\\\"elementor-element elementor-element-7f874a5a ct-copyright elementor-widget elementor-widget-text-editor\\\" data-id=\\\"7f874a5a\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>Copyright @2024 of Far East High Tech Ltd. Co.<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                    <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n        \",\"scripts\":[],\"styles\":[\"widget-image\",\"widget-text-editor\"]}}'),(10977,2959,'_elementor_element_cache','{\"timeout\":1746556258,\"value\":{\"content\":\"        <section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-7225c724 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"7225c724\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-109cef8c\\\" data-id=\\\"109cef8c\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        \\t\\t<div class=\\\"elementor-element elementor-element-6667e1a9 logo-footer elementor-widget__width-initial elementor-widget elementor-widget-image\\\" data-id=\\\"6667e1a9\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"http:\\/\\/fe2tech.com\\/\\\">\\n\\t\\t\\t\\t\\t\\t\\t<img width=\\\"597\\\" height=\\\"597\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/logo.jpg\\\" class=\\\"attachment-full size-full wp-image-2748\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element data=\\\"eyJpZCI6IjRhZTZlY2YyIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsiY29udGFjdF9pbmZvIjpbeyJjb250ZW50IjoiTmhcdTAwZTAgbVx1MDBlMXkgMTogU1x1MWVkMSA0IFx1MDExMG9cdTAwZTBuIFRoXHUxZWNiIEtpYSwgXHUxZWE0cCBcdTAxMTBcdTAwZjRuZyBDaGlcdTAwZWF1LCBQaFx1MDFiMFx1MWVkZG5nIFRcdTAwZTJuIFx1MDExMFx1MDBmNG5nIEhpXHUxZWM3cCwgVGhcdTAwZTBuaCBwaFx1MWVkMSBEXHUwMTI5IEFuLCBCXHUwMGVjbmggRFx1MDFiMFx1MDFhMW5nLCBWaVx1MWVjN3QgTmFtIiwiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZhcyBmYS1tYXAtbWFya2VyLWFsdCIsImxpYnJhcnkiOiJmYS1zb2xpZCJ9LCJfaWQiOiJkNmE1NGIwIiwiaWNvbl9pbWFnZSI6eyJ1cmwiOiJodHRwOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvcGx1Z2luc1wvZWxlbWVudG9yXC9hc3NldHNcL2ltYWdlc1wvcGxhY2Vob2xkZXIucG5nIiwiaWQiOiIifX0seyJjb250ZW50IjoiTmhcdTAwZTAgbVx1MDBlMXkgMjogQ1x1MWVlNW0gY1x1MDBmNG5nIG5naGlcdTFlYzdwIEtoXHUxZWFmYyBOaVx1MWVjN20sIFBoXHUwMWIwXHUxZWRkbmcgS2hcdTFlYWZjIE5pXHUxZWM3bSwgVGhcdTAwZTBuaCBwaFx1MWVkMSBCXHUxZWFmYyBOaW5oLCBCXHUxZWFmYyBOaW5oLCBWaVx1MWVjN3QgTmFtIiwiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZhcyBmYS1tYXAtbWFya2VyLWFsdCIsImxpYnJhcnkiOiJmYS1zb2xpZCJ9LCJpY29uX2ltYWdlIjp7InVybCI6Imh0dHA6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC9wbHVnaW5zXC9lbGVtZW50b3JcL2Fzc2V0c1wvaW1hZ2VzXC9wbGFjZWhvbGRlci5wbmciLCJpZCI6IiJ9LCJfaWQiOiJiZTFhNmRkIn0seyJjb250ZW50IjoiTmhcdTAwZTAgbVx1MDBlMXkgMzogU1x1MWVkMSAxNDc2IFx1MDExMFx1MDFiMFx1MWVkZG5nIFBoXHUxZWQxIFZcdTAwZTEsIFBoXHUwMWIwXHUxZWRkbmcgSFx1MWVhMXAgTFx1MDEyOW5oLCBUaFx1MDBlMG5oIHBoXHUxZWQxIEJcdTFlYWZjIE5pbmgsIEJcdTFlYWZjIE5pbmgsIFZpXHUxZWM3dCBOYW0iLCJjdF9pY29uIjp7InZhbHVlIjoiZmFzIGZhLW1hcC1tYXJrZXItYWx0IiwibGlicmFyeSI6ImZhLXNvbGlkIn0sImljb25faW1hZ2UiOnsidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3BsdWdpbnNcL2VsZW1lbnRvclwvYXNzZXRzXC9pbWFnZXNcL3BsYWNlaG9sZGVyLnBuZyIsImlkIjoiIn0sIl9pZCI6IjlmYmZhOWQifSx7ImNvbnRlbnQiOiIwOTY4IDg2IDAzIDg2IiwiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZhcyBmYS1waG9uZS1hbHQiLCJsaWJyYXJ5IjoiZmEtc29saWQifSwiX2lkIjoiNDRhMWQ4MiIsImljb25faW1hZ2UiOnsidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3BsdWdpbnNcL2VsZW1lbnRvclwvYXNzZXRzXC9pbWFnZXNcL3BsYWNlaG9sZGVyLnBuZyIsImlkIjoiIn19XSwiY29udGVudF9jb2xvciI6IiNmZmZmZmYiLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIxMiIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2NvbnRhY3RfaW5mbyJ9\\\"]            <\\/div>\\n        <\\/div>\\n                <div class=\\\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-712a43be\\\" data-id=\\\"712a43be\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6IjVlNGUyNjJiIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJNZW51IiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIxMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sIl9wYWRkaW5nIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV9jb2xvciI6IiNmZmZmZmYifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfdGl0bGUifQ==\\\"][elementor-element data=\\\"eyJpZCI6IjZlNjgyZTViIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsibWVudSI6Ijc1Iiwic3R5bGUiOiJ0b3ctY29sLWxpZ2h0IiwibGlua19jb2xvcl9ob3ZlciI6IiNGOUEyNDQiLCJsaW5lX2NvbG9yX2hvdmVyIjoiI0Y5QTI0NCIsIm1lbnVfYWxpZ24iOiJsZWZ0IiwiX2VsZW1lbnRfd2lkdGgiOiJpbml0aWFsIiwiX2VsZW1lbnRfY3VzdG9tX3dpZHRoIjp7InVuaXQiOiIlIiwic2l6ZSI6MTAwfSwiX2ZsZXhfc2l6ZSI6Im5vbmUifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfbmF2aWdhdGlvbl9tZW51In0=\\\"][elementor-element data=\\\"eyJpZCI6ImUxNzRiOTciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkdpXHUxZWRkIG1cdTFlZGYgY1x1MWVlZGEiLCJfbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6IjIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwiX3BhZGRpbmciOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX2NvbG9yIjoiI2ZmZmZmZiJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF90aXRsZSJ9\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-1e0523b8 elementor-widget elementor-widget-text-editor\\\" data-id=\\\"1e0523b8\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>Th\\u1ee9 Hai &#8211; Ch\\u1ee7 Nh\\u1eadt: 24\\/24<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t            <\\/div>\\n        <\\/div>\\n                <div class=\\\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-1ab76a16\\\" data-id=\\\"1ab76a16\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6IjM3YTVlNjM2IiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJOZXdzbGV0dGVyIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIxMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sIl9wYWRkaW5nIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV9jb2xvciI6IiNmZmZmZmYifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfdGl0bGUifQ==\\\"]        <section class=\\\"elementor-section elementor-inner-section elementor-element elementor-element-aa15610 elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"aa15610\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-no \\\">\\n                    <div class=\\\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-e2487ac\\\" data-id=\\\"e2487ac\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        \\t\\t<div class=\\\"elementor-element elementor-element-40d8f8a2 elementor-widget elementor-widget-text-editor\\\" data-id=\\\"40d8f8a2\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>\\u0110\\u0103ng k\\u00fd \\u0111\\u1ec3 nh\\u1eadn th\\u00f4ng b\\u00e1o, blog m\\u1edbi nh\\u1ea5t, \\u00fd t\\u01b0\\u1edfng v\\u00e0 g\\u00f3c nh\\u00ecn c\\u1ee7a ch\\u00fang t\\u00f4i.<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element data=\\\"eyJpZCI6ImQyMWQyMDgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJzdHlsZSI6InN0eWxlMiIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjI4IiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfbmV3c2xldHRlciJ9\\\"][elementor-element data=\\\"eyJpZCI6IjI3MzgzYWIyIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsiaWNvbnMiOlt7Imljb25fbGluayI6eyJ1cmwiOiIjIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9LCJfaWQiOiIyY2E4OThjIiwiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZhYiBmYS1mYWNlYm9vay1mIiwibGlicmFyeSI6ImZhLWJyYW5kcyJ9fSx7Imljb25fbGluayI6eyJ1cmwiOiIjIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9LCJfaWQiOiIwZmNjZDc1IiwiY3RfaWNvbiI6eyJ2YWx1ZSI6Im1hdGVyaWFsIHptZGkgem1kaS1saW5rZWRpbi1ib3giLCJsaWJyYXJ5IjoibWF0ZXJpYWwifX1dfSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaWNvbiJ9\\\"]            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                    <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                <section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-24b98c01 elementor-section-stretched elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"24b98c01\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-9a6c11e\\\" data-id=\\\"9a6c11e\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n                <section class=\\\"elementor-section elementor-inner-section elementor-element elementor-element-53be024 elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"53be024\\\" data-element_type=\\\"section\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-5990603\\\" data-id=\\\"5990603\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        \\t\\t<div class=\\\"elementor-element elementor-element-7f874a5a ct-copyright elementor-widget elementor-widget-text-editor\\\" data-id=\\\"7f874a5a\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>Copyright @2024 of Far East High Tech Ltd. Co.<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                    <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n        \",\"scripts\":[],\"styles\":[]}}'),(10978,2961,'_elementor_element_cache','{\"timeout\":1746503556,\"value\":{\"content\":\"        <section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-7225c724 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"7225c724\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-109cef8c\\\" data-id=\\\"109cef8c\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        \\t\\t<div class=\\\"elementor-element elementor-element-6667e1a9 logo-footer elementor-widget__width-initial elementor-widget elementor-widget-image\\\" data-id=\\\"6667e1a9\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"http:\\/\\/fe2tech.com\\/\\\">\\n\\t\\t\\t\\t\\t\\t\\t<img width=\\\"597\\\" height=\\\"597\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/12\\/logo.jpg\\\" class=\\\"attachment-full size-full wp-image-2748\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element data=\\\"eyJpZCI6IjRhZTZlY2YyIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsiY29udGFjdF9pbmZvIjpbeyJjb250ZW50IjoiXHU1ZGU1XHU1ODM0IDE6IFx1MzBkOVx1MzBjOFx1MzBjYVx1MzBlMFx1MzAwMVx1MzBkM1x1MzBmM1x1MzBiYVx1MzBhYVx1MzBmM1x1NzcwMVx1MzAwMVx1MzBiOFx1MzBhMlx1MzBmM1x1NWUwMlx1MzAwMVx1MzBiZlx1MzBmM1x1MzBmYlx1MzBjOVx1MzBmM1x1MzBmYlx1MzBkMlx1MzBhOFx1MzBjM1x1MzBkN1x1NTMzYVx1MzAwMVx1MzBjOVx1MzBmM1x1MzBjMVx1MzBhOFx1MzBhNlx1Njc1MVx1MzAwMTRcdTc1NmFcdTU3MzAgXHUzMGM5XHUzMGEyXHUzMGYzXHUzMGZiXHUzMGM2XHUzMGEzXHUzMGZiXHUzMGFkXHUzMGEyXHU5MDFhXHUzMDhhIiwiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZhcyBmYS1tYXAtbWFya2VyLWFsdCIsImxpYnJhcnkiOiJmYS1zb2xpZCJ9LCJfaWQiOiJkNmE1NGIwIiwiaWNvbl9pbWFnZSI6eyJ1cmwiOiJodHRwOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvcGx1Z2luc1wvZWxlbWVudG9yXC9hc3NldHNcL2ltYWdlc1wvcGxhY2Vob2xkZXIucG5nIiwiaWQiOiIifX0seyJjb250ZW50IjoiXHU1ZGU1XHU1ODM0IDI6IFx1MzBkOVx1MzBjOFx1MzBjYVx1MzBlMFx1MzAwMVx1MzBkMFx1MzBhZlx1MzBjYlx1MzBmM1x1NzcwMVx1MzAwMVx1MzBkMFx1MzBhZlx1MzBjYlx1MzBmM1x1NWUwMlx1MzAwMVx1MzBhYlx1MzBjM1x1MzBhZlx1MzBmYlx1MzBjYlx1MzBhOFx1MzBlMFx1NTMzYVx1MzAwMVx1MzBhYlx1MzBjM1x1MzBhZlx1MzBmYlx1MzBjYlx1MzBhOFx1MzBlMFx1NWRlNVx1Njk2ZFx1MzBhZlx1MzBlOVx1MzBiOVx1MzBiZlx1MzBmYyIsImN0X2ljb24iOnsidmFsdWUiOiJmYXMgZmEtbWFwLW1hcmtlci1hbHQiLCJsaWJyYXJ5IjoiZmEtc29saWQifSwiaWNvbl9pbWFnZSI6eyJ1cmwiOiJodHRwOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvcGx1Z2luc1wvZWxlbWVudG9yXC9hc3NldHNcL2ltYWdlc1wvcGxhY2Vob2xkZXIucG5nIiwiaWQiOiIifSwiX2lkIjoiYmUxYTZkZCJ9LHsiY29udGVudCI6Ilx1NWRlNVx1NTgzNCAzOiBcdTMwZDlcdTMwYzhcdTMwY2FcdTMwZTBcdTMwMDFcdTMwZDBcdTMwYWZcdTMwY2JcdTMwZjNcdTc3MDFcdTMwMDFcdTMwZDBcdTMwYWZcdTMwY2JcdTMwZjNcdTVlMDJcdTMwMDFcdTMwY2ZcdTMwYzNcdTMwZDdcdTMwZmJcdTMwZWFcdTMwZjNcdTUzM2FcdTMwMDExNDc2XHU3NTZhXHU1NzMwIFx1MzBkNVx1MzBhOVx1MzBmYlx1MzBmNFx1MzBhMVx1MzBmY1x1OTAxYVx1MzA4YSIsImN0X2ljb24iOnsidmFsdWUiOiJmYXMgZmEtbWFwLW1hcmtlci1hbHQiLCJsaWJyYXJ5IjoiZmEtc29saWQifSwiaWNvbl9pbWFnZSI6eyJ1cmwiOiJodHRwOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvcGx1Z2luc1wvZWxlbWVudG9yXC9hc3NldHNcL2ltYWdlc1wvcGxhY2Vob2xkZXIucG5nIiwiaWQiOiIifSwiX2lkIjoiNzJkYmY1OCJ9LHsiY29udGVudCI6IjA5NjggODYgMDMgODYiLCJjdF9pY29uIjp7InZhbHVlIjoiZmFzIGZhLXBob25lLWFsdCIsImxpYnJhcnkiOiJmYS1zb2xpZCJ9LCJfaWQiOiI0NGExZDgyIiwiaWNvbl9pbWFnZSI6eyJ1cmwiOiJodHRwOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvcGx1Z2luc1wvZWxlbWVudG9yXC9hc3NldHNcL2ltYWdlc1wvcGxhY2Vob2xkZXIucG5nIiwiaWQiOiIifX1dLCJjb250ZW50X2NvbG9yIjoiI2ZmZmZmZiIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjEyIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY29udGFjdF9pbmZvIn0=\\\"]            <\\/div>\\n        <\\/div>\\n                <div class=\\\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-712a43be\\\" data-id=\\\"712a43be\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6IjVlNGUyNjJiIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJNZW51IiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIxMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sIl9wYWRkaW5nIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV9jb2xvciI6IiNmZmZmZmYifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfdGl0bGUifQ==\\\"][elementor-element data=\\\"eyJpZCI6IjZlNjgyZTViIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsibWVudSI6Ijg5Iiwic3R5bGUiOiJ0b3ctY29sLWxpZ2h0IiwibGlua19jb2xvcl9ob3ZlciI6IiNGOUEyNDQiLCJsaW5lX2NvbG9yX2hvdmVyIjoiI0Y5QTI0NCIsIm1lbnVfYWxpZ24iOiJsZWZ0IiwiX2VsZW1lbnRfd2lkdGgiOiJpbml0aWFsIiwiX2VsZW1lbnRfY3VzdG9tX3dpZHRoIjp7InVuaXQiOiIlIiwic2l6ZSI6MTAwfSwiX2ZsZXhfc2l6ZSI6Im5vbmUifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfbmF2aWdhdGlvbl9tZW51In0=\\\"][elementor-element data=\\\"eyJpZCI6ImUxNzRiOTciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1NTViNlx1Njk2ZFx1NjY0Mlx1OTU5MyIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJfcGFkZGluZyI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfY29sb3IiOiIjZmZmZmZmIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X3RpdGxlIn0=\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-1e0523b8 elementor-widget elementor-widget-text-editor\\\" data-id=\\\"1e0523b8\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>\\u6708\\u66dc\\u65e5\\uff5e\\u65e5\\u66dc\\u65e5\\uff1a24\\u6642\\u9593\\u55b6\\u696d<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t            <\\/div>\\n        <\\/div>\\n                <div class=\\\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-1ab76a16\\\" data-id=\\\"1ab76a16\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6IjM3YTVlNjM2IiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJOZXdzbGV0dGVyIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIxMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sIl9wYWRkaW5nIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV9jb2xvciI6IiNmZmZmZmYifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfdGl0bGUifQ==\\\"]        <section class=\\\"elementor-section elementor-inner-section elementor-element elementor-element-aa15610 elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"aa15610\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-no \\\">\\n                    <div class=\\\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-e2487ac\\\" data-id=\\\"e2487ac\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        \\t\\t<div class=\\\"elementor-element elementor-element-40d8f8a2 elementor-widget elementor-widget-text-editor\\\" data-id=\\\"40d8f8a2\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>\\u901a\\u77e5\\u3001\\u6700\\u65b0\\u306e\\u30d6\\u30ed\\u30b0\\u3001\\u30a2\\u30a4\\u30c7\\u30a2\\u3001\\u6d1e\\u5bdf\\u3092\\u53d7\\u3051\\u53d6\\u308b\\u305f\\u3081\\u306b\\u30b5\\u30a4\\u30f3\\u30a2\\u30c3\\u30d7\\u3057\\u3066\\u304f\\u3060\\u3055\\u3044\\u3002<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element data=\\\"eyJpZCI6ImQyMWQyMDgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJzdHlsZSI6InN0eWxlMiIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjI4IiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfbmV3c2xldHRlciJ9\\\"][elementor-element data=\\\"eyJpZCI6IjI3MzgzYWIyIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsiaWNvbnMiOlt7Imljb25fbGluayI6eyJ1cmwiOiIjIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9LCJfaWQiOiIyY2E4OThjIiwiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZhYiBmYS1mYWNlYm9vay1mIiwibGlicmFyeSI6ImZhLWJyYW5kcyJ9fSx7Imljb25fbGluayI6eyJ1cmwiOiIjIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiJ9LCJfaWQiOiIwZmNjZDc1IiwiY3RfaWNvbiI6eyJ2YWx1ZSI6Im1hdGVyaWFsIHptZGkgem1kaS1saW5rZWRpbi1ib3giLCJsaWJyYXJ5IjoibWF0ZXJpYWwifX1dfSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaWNvbiJ9\\\"]            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                    <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                <section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-24b98c01 elementor-section-stretched elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"24b98c01\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-9a6c11e\\\" data-id=\\\"9a6c11e\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n                <section class=\\\"elementor-section elementor-inner-section elementor-element elementor-element-53be024 elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"53be024\\\" data-element_type=\\\"section\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-5990603\\\" data-id=\\\"5990603\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        \\t\\t<div class=\\\"elementor-element elementor-element-7f874a5a ct-copyright elementor-widget elementor-widget-text-editor\\\" data-id=\\\"7f874a5a\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>Copyright @2024 of Far East High Tech Ltd. Co.<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                    <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n        \",\"scripts\":[],\"styles\":[]}}'),(10979,3305,'_wp_attached_file','2025/03/Cert-QMS-FAR-EAST-2025.pdf'),(10980,3305,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:625558;}'),(10981,3306,'_menu_item_type','custom'),(10982,3306,'_menu_item_menu_item_parent','0'),(10983,3306,'_menu_item_object_id','3306'),(10984,3306,'_menu_item_object','custom'),(10985,3306,'_menu_item_target',''),(10986,3306,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(10987,3306,'_menu_item_xfn',''),(10988,3306,'_menu_item_url','https://fe2tech.com/wp-content/uploads/2025/03/Cert-QMS-FAR-EAST-2025.pdf'),(10990,1955,'_wp_old_date','2024-12-17'),(10991,2132,'_wp_old_date','2024-12-17'),(10992,2131,'_wp_old_date','2024-12-17'),(10993,1967,'_wp_old_date','2024-12-17'),(10994,1960,'_wp_old_date','2024-12-17'),(10995,3306,'_menu_item_ct_megaprofile','0'),(10996,3306,'_menu_item_ct_icon',''),(10997,3306,'_menu_item_ct_onepage','no-one-page'),(10998,3306,'_menu_item_ct_onepage_offset',''),(10999,3306,'_menu_item_ct_custom_class',''),(11000,3306,'_menu_item_ct_menu_marker',''),(11001,2971,'_wp_old_date','2024-12-17'),(11002,3307,'_menu_item_type','custom'),(11003,3307,'_menu_item_menu_item_parent','0'),(11004,3307,'_menu_item_object_id','3307'),(11005,3307,'_menu_item_object','custom'),(11006,3307,'_menu_item_target',''),(11007,3307,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(11008,3307,'_menu_item_xfn',''),(11009,3307,'_menu_item_url','https://fe2tech.com/wp-content/uploads/2025/03/Cert-QMS-FAR-EAST-2025.pdf'),(11011,3078,'_wp_old_date','2024-12-17'),(11012,3080,'_wp_old_date','2024-12-17'),(11013,3083,'_wp_old_date','2024-12-17'),(11014,3082,'_wp_old_date','2024-12-17'),(11015,3081,'_wp_old_date','2024-12-17'),(11016,3307,'_menu_item_ct_megaprofile','0'),(11017,3307,'_menu_item_ct_icon',''),(11018,3307,'_menu_item_ct_onepage','no-one-page'),(11019,3307,'_menu_item_ct_onepage_offset',''),(11020,3307,'_menu_item_ct_custom_class',''),(11021,3307,'_menu_item_ct_menu_marker',''),(11022,3084,'_wp_old_date','2024-12-17'),(11023,3084,'_menu_item_ct_megaprofile','0'),(11024,3084,'_menu_item_ct_icon',''),(11025,3084,'_menu_item_ct_onepage','no-one-page'),(11026,3084,'_menu_item_ct_onepage_offset',''),(11027,3084,'_menu_item_ct_custom_class',''),(11028,3084,'_menu_item_ct_menu_marker',''),(11029,3308,'_menu_item_type','custom'),(11030,3308,'_menu_item_menu_item_parent','0'),(11031,3308,'_menu_item_object_id','3308'),(11032,3308,'_menu_item_object','custom'),(11033,3308,'_menu_item_target',''),(11034,3308,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(11035,3308,'_menu_item_xfn',''),(11036,3308,'_menu_item_url','https://fe2tech.com/wp-content/uploads/2025/03/Cert-QMS-FAR-EAST-2025.pdf'),(11038,3085,'_wp_old_date','2024-12-17'),(11039,3088,'_wp_old_date','2024-12-17'),(11040,3089,'_wp_old_date','2024-12-17'),(11041,3087,'_wp_old_date','2024-12-17'),(11042,3086,'_wp_old_date','2024-12-17'),(11043,3308,'_menu_item_ct_megaprofile','0'),(11044,3308,'_menu_item_ct_icon',''),(11045,3308,'_menu_item_ct_onepage','no-one-page'),(11046,3308,'_menu_item_ct_onepage_offset',''),(11047,3308,'_menu_item_ct_custom_class',''),(11048,3308,'_menu_item_ct_menu_marker',''),(11049,3090,'_wp_old_date','2024-12-17'),(11050,3090,'_menu_item_ct_megaprofile','0'),(11051,3090,'_menu_item_ct_icon',''),(11052,3090,'_menu_item_ct_onepage','no-one-page'),(11053,3090,'_menu_item_ct_onepage_offset',''),(11054,3090,'_menu_item_ct_custom_class',''),(11055,3090,'_menu_item_ct_menu_marker',''),(11056,2128,'_elementor_page_assets','a:1:{s:7:\"scripts\";a:4:{i:0;s:12:\"imagesloaded\";i:1;s:7:\"isotope\";i:2;s:25:\"ct-post-masonry-widget-js\";i:3;s:22:\"ct-post-grid-widget-js\";}}'),(11057,2128,'_elementor_element_cache','{\"timeout\":1746473389,\"value\":{\"content\":\"<div class=\\\"elementor-element elementor-element-0766e75 e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"0766e75\\\" data-element_type=\\\"container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t[elementor-element data=\\\"eyJpZCI6ImU4MmEwNDUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsImxheW91dCI6IjIiLCJmaWx0ZXJfZGVmYXVsdF90aXRsZSI6IkFsbCIsImJ1dHRvbl90ZXh0IjoiUmVhZCBtb3JlIiwiY3RfYW5pbWF0ZSI6IndvdyBib3VuY2VJbkRvd24iLCJwYWdpbmF0aW9uX3R5cGUiOiJsb2FkbW9yZSIsImNvbF9zbSI6IjEiLCJjb2xfbWQiOiIyIiwiY29sX2xnIjoiMiIsImNvbF94bCI6IjIiLCJzaG93X2J1dHRvbiI6IiIsInNvdXJjZSI6WyJlbnxsYW5ndWFnZSJdLCJvcmRlciI6ImFzYyJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9zZXJ2aWNlX2dyaWQifQ==\\\"]\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\",\"scripts\":[],\"styles\":[]}}'),(11058,3309,'_wp_attached_file','2025/03/A16eb71f546c44c4ba00c6afe46464d593-1.jpg_350x350-1.jpg'),(11059,3309,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:62:\"2025/03/A16eb71f546c44c4ba00c6afe46464d593-1.jpg_350x350-1.jpg\";s:8:\"filesize\";i:18529;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:{}}}'),(11060,3310,'_wp_attached_file','2025/03/A72a21ba969c84b98b63b985380b97ef5O-1.jpg_350x350-1.jpg'),(11061,3310,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:62:\"2025/03/A72a21ba969c84b98b63b985380b97ef5O-1.jpg_350x350-1.jpg\";s:8:\"filesize\";i:37208;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:{}}}'),(11062,3311,'_wp_attached_file','2025/03/Ac6d9a3b79a904eeb9c925afa374ec53aA-1.jpg_350x350-1.jpg'),(11063,3311,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:62:\"2025/03/Ac6d9a3b79a904eeb9c925afa374ec53aA-1.jpg_350x350-1.jpg\";s:8:\"filesize\";i:21362;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:{}}}'),(11064,3312,'_wp_attached_file','2025/03/3-1.jpg'),(11065,3312,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:15:\"2025/03/3-1.jpg\";s:8:\"filesize\";i:29287;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:{}}}'),(11066,3313,'_wp_attached_file','2025/03/9-1.jpg'),(11067,3313,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:15:\"2025/03/9-1.jpg\";s:8:\"filesize\";i:17026;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:{}}}'),(11068,3314,'_wp_attached_file','2025/03/A268aa8f9b65c4cdf9f45e594f2cd8ad4M-1.jpg_350x350-1.jpg'),(11069,3314,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:62:\"2025/03/A268aa8f9b65c4cdf9f45e594f2cd8ad4M-1.jpg_350x350-1.jpg\";s:8:\"filesize\";i:24267;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:{}}}'),(11070,3315,'_wp_attached_file','2025/03/A864432f2571743689342ae173ee9dc9fd-1.jpg_350x350-1.jpg'),(11071,3315,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:62:\"2025/03/A864432f2571743689342ae173ee9dc9fd-1.jpg_350x350-1.jpg\";s:8:\"filesize\";i:38370;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:{}}}'),(11072,3316,'_wp_attached_file','2025/03/Abd43851c92654bd99cfdca45d896fbcbB-1.jpg_350x350-1.jpg'),(11073,3316,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:62:\"2025/03/Abd43851c92654bd99cfdca45d896fbcbB-1.jpg_350x350-1.jpg\";s:8:\"filesize\";i:20601;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:{}}}'),(11074,3317,'_wp_attached_file','2025/03/A1001e63ea59149f8a81abb92d5d5fe713-1.jpg_350x350-1.jpg'),(11075,3317,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:62:\"2025/03/A1001e63ea59149f8a81abb92d5d5fe713-1.jpg_350x350-1.jpg\";s:8:\"filesize\";i:16777;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:{}}}'),(11076,3318,'_wp_attached_file','2025/03/A36346f881b104996b6c070b5d2cebff8u-1.jpg_350x350-1.jpg'),(11077,3318,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:62:\"2025/03/A36346f881b104996b6c070b5d2cebff8u-1.jpg_350x350-1.jpg\";s:8:\"filesize\";i:18590;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:{}}}'),(11078,3319,'_wp_attached_file','2025/03/A157183c07a764eb8957bc4cd13982808i-1.jpg_350x350-1.jpg'),(11079,3319,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:62:\"2025/03/A157183c07a764eb8957bc4cd13982808i-1.jpg_350x350-1.jpg\";s:8:\"filesize\";i:12281;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:{}}}'),(11080,3320,'_wp_attached_file','2025/03/A4969ef2343a244608cc511d1e7be28e2X-1.png_350x350-1.png'),(11081,3320,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:62:\"2025/03/A4969ef2343a244608cc511d1e7be28e2X-1.png_350x350-1.png\";s:8:\"filesize\";i:39664;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:{}}}'),(11082,3321,'_wp_attached_file','2025/03/H9be6461494cf4fe7998192dc483066c9v-1.png_350x350-1.png'),(11083,3321,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:62:\"2025/03/H9be6461494cf4fe7998192dc483066c9v-1.png_350x350-1.png\";s:8:\"filesize\";i:12957;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:{}}}'),(11084,3322,'_wp_attached_file','2025/03/H4cbac47ae6cf4705b966668ca1abad509-1.png_350x350-1.png'),(11085,3322,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:62:\"2025/03/H4cbac47ae6cf4705b966668ca1abad509-1.png_350x350-1.png\";s:8:\"filesize\";i:26933;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:{}}}'),(11086,3323,'_wp_attached_file','2025/03/H6c00bd237d8b46d4b06a1cc6ef76accfE-1.png_350x350-1.png'),(11087,3323,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:62:\"2025/03/H6c00bd237d8b46d4b06a1cc6ef76accfE-1.png_350x350-1.png\";s:8:\"filesize\";i:112415;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:{}}}'),(11088,3324,'_wp_attached_file','2025/03/H71abe7a763a345ae87dcf70c25a70a32M-1.png_350x350-1.png'),(11089,3324,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:62:\"2025/03/H71abe7a763a345ae87dcf70c25a70a32M-1.png_350x350-1.png\";s:8:\"filesize\";i:55479;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:{}}}'),(11090,3325,'_wp_attached_file','2025/03/2-1.jpg'),(11091,3325,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:15:\"2025/03/2-1.jpg\";s:8:\"filesize\";i:19302;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:{}}}'),(11092,3326,'_wp_attached_file','2025/03/A786dc427af46457ea923c41ea7688f67Q-1.jpg_350x350-1.jpg'),(11093,3326,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:62:\"2025/03/A786dc427af46457ea923c41ea7688f67Q-1.jpg_350x350-1.jpg\";s:8:\"filesize\";i:18081;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:{}}}'),(11094,3327,'_wp_attached_file','2025/03/A2ed5a5c3f8f544c8910a3fe29da5e2984-1.jpg_350x350-1.jpg'),(11095,3327,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:62:\"2025/03/A2ed5a5c3f8f544c8910a3fe29da5e2984-1.jpg_350x350-1.jpg\";s:8:\"filesize\";i:44871;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:{}}}'),(11096,3328,'_wp_attached_file','2025/03/A53f94fffa0e64ba8a47330e85a179214l-1.jpg_350x350-1.jpg'),(11097,3328,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:62:\"2025/03/A53f94fffa0e64ba8a47330e85a179214l-1.jpg_350x350-1.jpg\";s:8:\"filesize\";i:24523;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:{}}}'),(11098,3329,'_wp_attached_file','2025/03/Aa559aaa8e8d44868b700967e182631e0O-1.jpg_350x350-1.jpg'),(11099,3329,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:62:\"2025/03/Aa559aaa8e8d44868b700967e182631e0O-1.jpg_350x350-1.jpg\";s:8:\"filesize\";i:17716;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:{}}}'),(11100,3330,'_wp_attached_file','2025/03/4-1.jpg'),(11101,3330,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:15:\"2025/03/4-1.jpg\";s:8:\"filesize\";i:23338;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:{}}}'),(11102,3331,'_wp_attached_file','2025/03/A8626df5ae89c458484cbdeab6b0a2768E-1.jpg_350x350-1.jpg'),(11103,3331,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:62:\"2025/03/A8626df5ae89c458484cbdeab6b0a2768E-1.jpg_350x350-1.jpg\";s:8:\"filesize\";i:19229;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:{}}}'),(11104,3332,'_wp_attached_file','2025/03/1-1.jpg'),(11105,3332,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:15:\"2025/03/1-1.jpg\";s:8:\"filesize\";i:21135;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:{}}}'),(11106,3333,'_wp_attached_file','2025/03/A5fa71b0eddf648049c5f33d331738460m-1.jpg_350x350-1.jpg'),(11107,3333,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:62:\"2025/03/A5fa71b0eddf648049c5f33d331738460m-1.jpg_350x350-1.jpg\";s:8:\"filesize\";i:22139;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:{}}}'),(11108,3334,'_wp_attached_file','2025/03/A5df619ce89ec42189a5c4d05bbba4f2dw-1.jpg_350x350-1.jpg'),(11109,3334,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:62:\"2025/03/A5df619ce89ec42189a5c4d05bbba4f2dw-1.jpg_350x350-1.jpg\";s:8:\"filesize\";i:29190;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:{}}}'),(11110,3335,'_wp_attached_file','2025/03/Aea1a2ea6c9d04b78977d1e8c907e721cR-1.jpg_350x350-1.jpg'),(11111,3335,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:62:\"2025/03/Aea1a2ea6c9d04b78977d1e8c907e721cR-1.jpg_350x350-1.jpg\";s:8:\"filesize\";i:36706;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:{}}}'),(11112,3336,'_wp_attached_file','2025/03/5-1.jpg'),(11113,3336,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:15:\"2025/03/5-1.jpg\";s:8:\"filesize\";i:34546;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:{}}}'),(11122,3338,'_wp_attached_file','2025/03/7-1.jpg'),(11123,3338,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:15:\"2025/03/7-1.jpg\";s:8:\"filesize\";i:36811;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:{}}}'),(11124,3339,'_wp_attached_file','2025/03/A967c634a517c48f38c23d4766db5bba1a-1.jpg_350x350-1.jpg'),(11125,3339,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:62:\"2025/03/A967c634a517c48f38c23d4766db5bba1a-1.jpg_350x350-1.jpg\";s:8:\"filesize\";i:34940;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:{}}}'),(11126,3340,'_wp_attached_file','2025/03/A462413b6de2b401ba60e99bbe1d15e33K-1.jpg_350x350-1.jpg'),(11127,3340,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:62:\"2025/03/A462413b6de2b401ba60e99bbe1d15e33K-1.jpg_350x350-1.jpg\";s:8:\"filesize\";i:36513;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:{}}}'),(11128,3341,'_wp_attached_file','2025/03/A661399142a7247278bbf69a9d6007556W-1.jpg_350x350-1.jpg'),(11129,3341,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:62:\"2025/03/A661399142a7247278bbf69a9d6007556W-1.jpg_350x350-1.jpg\";s:8:\"filesize\";i:37535;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:{}}}'),(11130,3342,'_wp_attached_file','2025/03/10-1.jpg'),(11131,3342,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:263;s:4:\"file\";s:16:\"2025/03/10-1.jpg\";s:8:\"filesize\";i:15104;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:{}}}'),(11133,3343,'_elementor_edit_mode','builder'),(11134,3343,'_elementor_template_type','wp-page'),(11135,3343,'_elementor_version','3.24.7'),(11136,3343,'_wp_page_template','default'),(11137,3343,'_elementor_data','[{\"id\":\"fcff723\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"dee41b0\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"Our strength lies in mass production of aluminum and steel. We excel in innovation and deliver high-value products to our customers.\",\"title_tag\":\"h5\",\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"373dfc0\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Automotive & Motorcycle\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"5603a87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":3190,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Ab6277516622141b68178f66bebaadd93o.jpg_350x350.jpg\"},{\"id\":3191,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A4969ef2343a244608cc511d1e7be28e2X.png_350x350.png\"},{\"id\":3192,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/H9be6461494cf4fe7998192dc483066c9v.png_350x350.png\"},{\"id\":3193,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/H4cbac47ae6cf4705b966668ca1abad509.png_350x350.png\"},{\"id\":3194,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/H6c00bd237d8b46d4b06a1cc6ef76accfE.png_350x350.png\"},{\"id\":3195,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/H71abe7a763a345ae87dcf70c25a70a32M.png_350x350.png\"},{\"id\":3196,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/2.jpg\"},{\"id\":3197,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A045fe45345664394a2a80499b4bd2117i.jpg_350x350.jpg\"},{\"id\":3198,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A86e039df1c9d4e809ea53dfd676ba67aO.jpg_350x350.jpg\"},{\"id\":3199,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A786dc427af46457ea923c41ea7688f67Q.jpg_350x350.jpg\"},{\"id\":3200,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/6.jpg\"},{\"id\":3201,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A2ed5a5c3f8f544c8910a3fe29da5e2984.jpg_350x350.jpg\"},{\"id\":3202,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A3c80646854cd4401b6b737a80e8e29f2Z.jpg_350x350.jpg\"},{\"id\":3203,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A53f94fffa0e64ba8a47330e85a179214l.jpg_350x350.jpg\"},{\"id\":3204,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Aa559aaa8e8d44868b700967e182631e0O.jpg_350x350.jpg\"},{\"id\":3205,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/4.jpg\"},{\"id\":3206,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A29209fca14e3491286a7ae2a7d535066t.jpg_350x350.jpg\"},{\"id\":3207,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Afd6e5018d54a4c319b4941af57e38fc1e.jpg_350x350.jpg\"},{\"id\":3208,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A8626df5ae89c458484cbdeab6b0a2768E.jpg_350x350.jpg\"},{\"id\":3209,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Aec2a4cd895e648b6bc7174d864e103329.jpg_350x350.jpg\"},{\"id\":3210,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/1.jpg\"},{\"id\":3211,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A5fa71b0eddf648049c5f33d331738460m.jpg_350x350.jpg\"},{\"id\":3212,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A9bc1872697d649e7a28d14c48cd6b71bq.jpg_350x350.jpg\"},{\"id\":3213,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Ad0c782b84615484d8303ad964cd302a4C.jpg_350x350.jpg\"},{\"id\":3214,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Aec3f44d2c0cf4536870b19097b5035f4A.jpg_350x350.jpg\"},{\"id\":3215,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/8.jpg\"},{\"id\":3216,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A5df619ce89ec42189a5c4d05bbba4f2dw.jpg_350x350.jpg\"},{\"id\":3217,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A9207015598ae47e4ba57d5d6755a7945J.jpg_350x350.jpg\"},{\"id\":3218,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Aa67514ca153a43208612611af15ae689t.jpg_350x350.jpg\"},{\"id\":3219,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Ac8c57af57fc04a9b8afbcf5214d8b125a.jpg_350x350.jpg\"},{\"id\":3220,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Aea1a2ea6c9d04b78977d1e8c907e721cR.jpg_350x350.jpg\"},{\"id\":3221,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/5.jpg\"},{\"id\":3222,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/7.jpg\"},{\"id\":3223,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A4fa22b3db4704145a9c8f2b6d413b4b7Y.jpg_350x350.jpg\"},{\"id\":3224,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A8cfa154ca70a46c5965e993255b53ecbg.jpg_350x350.jpg\"},{\"id\":3225,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A967c634a517c48f38c23d4766db5bba1a.jpg_350x350.jpg\"},{\"id\":3226,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A462413b6de2b401ba60e99bbe1d15e33K.jpg_350x350.jpg\"},{\"id\":3227,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A661399142a7247278bbf69a9d6007556W.jpg_350x350.jpg\"},{\"id\":3228,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/10.jpg\"},{\"id\":3229,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A16eb71f546c44c4ba00c6afe46464d593.jpg_350x350.jpg\"},{\"id\":3230,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A72a21ba969c84b98b63b985380b97ef5O.jpg_350x350.jpg\"},{\"id\":3231,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A99574ebe1a6c432abebb91680e3e227e0.jpg_350x350.jpg\"},{\"id\":3232,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Ac6d9a3b79a904eeb9c925afa374ec53aA.jpg_350x350.jpg\"},{\"id\":3233,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Adef05c3212194f259f1556cd5081ab3eg.jpg_350x350.jpg\"},{\"id\":3234,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/3.jpg\"},{\"id\":3235,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/9.jpg\"},{\"id\":3236,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A268aa8f9b65c4cdf9f45e594f2cd8ad4M.jpg_350x350.jpg\"},{\"id\":3237,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A864432f2571743689342ae173ee9dc9fd.jpg_350x350.jpg\"},{\"id\":3238,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Abd43851c92654bd99cfdca45d896fbcbB.jpg_350x350.jpg\"},{\"id\":3239,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Acdd1226298dd4613abf021bdcaad320b0.jpg_350x350.jpg\"},{\"id\":3240,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Ae91bf7f51db3402ebaff610c299e9aacF.jpg_350x350.jpg\"},{\"id\":3241,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A05f18d47e70948ae8795111d055f42fa2.jpg_350x350.jpg\"},{\"id\":3242,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A5c37792f38434388a02a0479fcbc4123T.jpg_350x350.jpg\"},{\"id\":3243,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A8c420992f47745509f4f292ac7bd2258H.jpg_350x350.jpg\"},{\"id\":3244,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A1001e63ea59149f8a81abb92d5d5fe713.jpg_350x350.jpg\"},{\"id\":3245,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A36346f881b104996b6c070b5d2cebff8u.jpg_350x350.jpg\"},{\"id\":3246,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A157183c07a764eb8957bc4cd13982808i.jpg_350x350.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"dec4325\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"CNC Machined Parts\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1852cc9\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":3247,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok5.jpg\"},{\"id\":3248,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok4.png\"},{\"id\":3249,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-machine22.avif\"},{\"id\":3250,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-machine3.jpg\"},{\"id\":3251,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok3.png\"},{\"id\":3252,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok1.png\"},{\"id\":3253,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok2.png\"},{\"id\":3254,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok7.png\"},{\"id\":3255,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok9.jpg\"},{\"id\":3256,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok8.jpg\"},{\"id\":3257,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z5709443476797_cb3e9e0d596ad6331366b8a711f46926.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"ab81cda\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Sheet Metal & Fabrication\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"cd9dba9\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":3258,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal1.jpg\"},{\"id\":3259,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal3.jpg\"},{\"id\":3260,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal4.jpg\"},{\"id\":3261,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal5.jpg\"},{\"id\":3262,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal7.jpg\"},{\"id\":3263,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal8.jpg\"},{\"id\":3264,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal9.jpg\"},{\"id\":3265,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal10.jpg\"},{\"id\":3266,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal2.png\"},{\"id\":3267,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal6.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"bcd074c\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Mold & Die Components\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7eb3b87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":3268,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\"},{\"id\":3269,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\"},{\"id\":3270,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\"},{\"id\":3271,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\"},{\"id\":3272,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\"},{\"id\":3273,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"d0b27d7\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Industrial Fasteners & Bolt\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3dcc60b\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":3274,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/IMG_1237.jpeg\"},{\"id\":3275,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/DSC00822.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"2f9b716\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Tool\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a165f68\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2710,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\"},{\"id\":2711,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\"},{\"id\":2712,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\"},{\"id\":2713,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\"},{\"id\":2714,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\"},{\"id\":2715,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\"},{\"id\":2716,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"1ef8491\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Jig\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"09a76d6\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2730,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\"},{\"id\":2731,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\"},{\"id\":2732,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\"},{\"id\":2733,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\"},{\"id\":2734,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}]'),(11138,3343,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:20:\"widget-image-gallery\";}}'),(11139,3343,'_elementor_element_cache','{\"timeout\":1742365984,\"value\":{\"content\":\"<div class=\"elementor-element elementor-element-fcff723 e-flex e-con-boxed e-con e-parent\" data-id=\"fcff723\" data-element_type=\"container\">nttttt<div class=\"e-con-inner\">ntt[elementor-element data=\"eyJpZCI6ImRlZTQxYjAiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlIjoiT3VyIHN0cmVuZ3RoIGxpZXMgaW4gbWFzcyBwcm9kdWN0aW9uIG9mIGFsdW1pbnVtIGFuZCBzdGVlbC4gV2UgZXhjZWwgaW4gaW5ub3ZhdGlvbiBhbmQgZGVsaXZlciBoaWdoLXZhbHVlIHByb2R1Y3RzIHRvIG91ciBjdXN0b21lcnMuIiwidGl0bGVfdGFnIjoiaDUiLCJ0ZXh0X2FsaWduIjoiY2VudGVyIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"][elementor-element data=\"eyJpZCI6IjM3M2RmYzAiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiQXV0b21vdGl2ZSAmIE1vdG9yY3ljbGUiLCJ0ZXh0X2FsaWduIjoibGVmdCJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]tt<div class=\"elementor-element elementor-element-5603a87 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\" data-id=\"5603a87\" data-element_type=\"widget\" data-widget_type=\"image-gallery.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-image-gallery\">nttt<div id=\'gallery-1\' class=\'gallery galleryid-2126 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWI2Mjc3NTE2NjIyMTQxYjY4MTc4ZjY2YmViYWFkZDkzby5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Ab6277516622141b68178f66bebaadd93o.jpg_350x350.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Ab6277516622141b68178f66bebaadd93o.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTQ5NjllZjIzNDNhMjQ0NjA4Y2M1MTFkMWU3YmUyOGUyWC5wbmdfMzUweDM1MC5wbmciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A4969ef2343a244608cc511d1e7be28e2X.png_350x350.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A4969ef2343a244608cc511d1e7be28e2X.png_350x350.png\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvSDliZTY0NjE0OTRjZjRmZTc5OTgxOTJkYzQ4MzA2NmM5di5wbmdfMzUweDM1MC5wbmciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/H9be6461494cf4fe7998192dc483066c9v.png_350x350.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/H9be6461494cf4fe7998192dc483066c9v.png_350x350.png\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvSDRjYmFjNDdhZTZjZjQ3MDViOTY2NjY4Y2ExYWJhZDUwOS5wbmdfMzUweDM1MC5wbmciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/H4cbac47ae6cf4705b966668ca1abad509.png_350x350.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/H4cbac47ae6cf4705b966668ca1abad509.png_350x350.png\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvSDZjMDBiZDIzN2Q4YjQ2ZDRiMDZhMWNjNmVmNzZhY2NmRS5wbmdfMzUweDM1MC5wbmciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/H6c00bd237d8b46d4b06a1cc6ef76accfE.png_350x350.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/H6c00bd237d8b46d4b06a1cc6ef76accfE.png_350x350.png\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvSDcxYWJlN2E3NjNhMzQ1YWU4N2RjZjcwYzI1YTcwYTMyTS5wbmdfMzUweDM1MC5wbmciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/H71abe7a763a345ae87dcf70c25a70a32M.png_350x350.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/H71abe7a763a345ae87dcf70c25a70a32M.png_350x350.png\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/2.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/2.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTA0NWZlNDUzNDU2NjQzOTRhMmE4MDQ5OWI0YmQyMTE3aS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A045fe45345664394a2a80499b4bd2117i.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A045fe45345664394a2a80499b4bd2117i.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTg2ZTAzOWRmMWM5ZDRlODA5ZWE1M2RmZDY3NmJhNjdhTy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A86e039df1c9d4e809ea53dfd676ba67aO.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A86e039df1c9d4e809ea53dfd676ba67aO.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTc4NmRjNDI3YWY0NjQ1N2VhOTIzYzQxZWE3Njg4ZjY3US5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A786dc427af46457ea923c41ea7688f67Q.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A786dc427af46457ea923c41ea7688f67Q.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvNi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/6.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/6.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTJlZDVhNWMzZjhmNTQ0Yzg5MTBhM2ZlMjlkYTVlMjk4NC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A2ed5a5c3f8f544c8910a3fe29da5e2984.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A2ed5a5c3f8f544c8910a3fe29da5e2984.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTNjODA2NDY4NTRjZDQ0MDFiNmI3MzdhODBlOGUyOWYyWi5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A3c80646854cd4401b6b737a80e8e29f2Z.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A3c80646854cd4401b6b737a80e8e29f2Z.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTUzZjk0ZmZmYTBlNjRiYThhNDczMzBlODVhMTc5MjE0bC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A53f94fffa0e64ba8a47330e85a179214l.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A53f94fffa0e64ba8a47330e85a179214l.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWE1NTlhYWE4ZThkNDQ4NjhiNzAwOTY3ZTE4MjYzMWUwTy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Aa559aaa8e8d44868b700967e182631e0O.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Aa559aaa8e8d44868b700967e182631e0O.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvNC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/4.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/4.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTI5MjA5ZmNhMTRlMzQ5MTI4NmE3YWUyYTdkNTM1MDY2dC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A29209fca14e3491286a7ae2a7d535066t.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A29209fca14e3491286a7ae2a7d535066t.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWZkNmU1MDE4ZDU0YTRjMzE5YjQ5NDFhZjU3ZTM4ZmMxZS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Afd6e5018d54a4c319b4941af57e38fc1e.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Afd6e5018d54a4c319b4941af57e38fc1e.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTg2MjZkZjVhZTg5YzQ1ODQ4NGNiZGVhYjZiMGEyNzY4RS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A8626df5ae89c458484cbdeab6b0a2768E.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A8626df5ae89c458484cbdeab6b0a2768E.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWVjMmE0Y2Q4OTVlNjQ4YjZiYzcxNzRkODY0ZTEwMzMyOS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Aec2a4cd895e648b6bc7174d864e103329.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Aec2a4cd895e648b6bc7174d864e103329.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/1.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/1.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTVmYTcxYjBlZGRmNjQ4MDQ5YzVmMzNkMzMxNzM4NDYwbS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A5fa71b0eddf648049c5f33d331738460m.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A5fa71b0eddf648049c5f33d331738460m.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTliYzE4NzI2OTdkNjQ5ZTdhMjhkMTRjNDhjZDZiNzFicS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A9bc1872697d649e7a28d14c48cd6b71bq.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A9bc1872697d649e7a28d14c48cd6b71bq.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWQwYzc4MmI4NDYxNTQ4NGQ4MzAzYWQ5NjRjZDMwMmE0Qy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Ad0c782b84615484d8303ad964cd302a4C.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Ad0c782b84615484d8303ad964cd302a4C.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWVjM2Y0NGQyYzBjZjQ1MzY4NzBiMTkwOTdiNTAzNWY0QS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Aec3f44d2c0cf4536870b19097b5035f4A.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Aec3f44d2c0cf4536870b19097b5035f4A.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvOC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/8.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/8.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTVkZjYxOWNlODllYzQyMTg5YTVjNGQwNWJiYmE0ZjJkdy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A5df619ce89ec42189a5c4d05bbba4f2dw.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A5df619ce89ec42189a5c4d05bbba4f2dw.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTkyMDcwMTU1OThhZTQ3ZTRiYTU3ZDVkNjc1NWE3OTQ1Si5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A9207015598ae47e4ba57d5d6755a7945J.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A9207015598ae47e4ba57d5d6755a7945J.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWE2NzUxNGNhMTUzYTQzMjA4NjEyNjExYWYxNWFlNjg5dC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Aa67514ca153a43208612611af15ae689t.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Aa67514ca153a43208612611af15ae689t.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWM4YzU3YWY1N2ZjMDRhOWI4YWZiY2Y1MjE0ZDhiMTI1YS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Ac8c57af57fc04a9b8afbcf5214d8b125a.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Ac8c57af57fc04a9b8afbcf5214d8b125a.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWVhMWEyZWE2YzlkMDRiNzg5NzdkMWU4YzkwN2U3MjFjUi5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Aea1a2ea6c9d04b78977d1e8c907e721cR.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Aea1a2ea6c9d04b78977d1e8c907e721cR.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvNS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/5.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/5.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvNy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/7.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/7.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTRmYTIyYjNkYjQ3MDQxNDVhOWM4ZjJiNmQ0MTNiNGI3WS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A4fa22b3db4704145a9c8f2b6d413b4b7Y.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A4fa22b3db4704145a9c8f2b6d413b4b7Y.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQThjZmExNTRjYTcwYTQ2YzU5NjVlOTkzMjU1YjUzZWNiZy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A8cfa154ca70a46c5965e993255b53ecbg.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A8cfa154ca70a46c5965e993255b53ecbg.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTk2N2M2MzRhNTE3YzQ4ZjM4YzIzZDQ3NjZkYjViYmExYS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A967c634a517c48f38c23d4766db5bba1a.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A967c634a517c48f38c23d4766db5bba1a.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTQ2MjQxM2I2ZGUyYjQwMWJhNjBlOTliYmUxZDE1ZTMzSy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A462413b6de2b401ba60e99bbe1d15e33K.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A462413b6de2b401ba60e99bbe1d15e33K.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTY2MTM5OTE0MmE3MjQ3Mjc4YmJmNjlhOWQ2MDA3NTU2Vy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A661399142a7247278bbf69a9d6007556W.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A661399142a7247278bbf69a9d6007556W.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvMTAuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/10.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/10.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTE2ZWI3MWY1NDZjNDRjNGJhMDBjNmFmZTQ2NDY0ZDU5My5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A16eb71f546c44c4ba00c6afe46464d593.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A16eb71f546c44c4ba00c6afe46464d593.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTcyYTIxYmE5NjljODRiOThiNjNiOTg1MzgwYjk3ZWY1Ty5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A72a21ba969c84b98b63b985380b97ef5O.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A72a21ba969c84b98b63b985380b97ef5O.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTk5NTc0ZWJlMWE2YzQzMmFiZWJiOTE2ODBlM2UyMjdlMC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A99574ebe1a6c432abebb91680e3e227e0.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A99574ebe1a6c432abebb91680e3e227e0.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWM2ZDlhM2I3OWE5MDRlZWI5YzkyNWFmYTM3NGVjNTNhQS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Ac6d9a3b79a904eeb9c925afa374ec53aA.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Ac6d9a3b79a904eeb9c925afa374ec53aA.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWRlZjA1YzMyMTIxOTRmMjU5ZjE1NTZjZDUwODFhYjNlZy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Adef05c3212194f259f1556cd5081ab3eg.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Adef05c3212194f259f1556cd5081ab3eg.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvMy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/3.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/3.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvOS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/9.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/9.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTI2OGFhOGY5YjY1YzRjZGY5ZjQ1ZTU5NGYyY2Q4YWQ0TS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A268aa8f9b65c4cdf9f45e594f2cd8ad4M.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A268aa8f9b65c4cdf9f45e594f2cd8ad4M.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTg2NDQzMmYyNTcxNzQzNjg5MzQyYWUxNzNlZTlkYzlmZC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A864432f2571743689342ae173ee9dc9fd.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A864432f2571743689342ae173ee9dc9fd.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWJkNDM4NTFjOTI2NTRiZDk5Y2ZkY2E0NWQ4OTZmYmNiQi5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Abd43851c92654bd99cfdca45d896fbcbB.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Abd43851c92654bd99cfdca45d896fbcbB.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWNkZDEyMjYyOThkZDQ2MTNhYmYwMjFiZGNhYWQzMjBiMC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Acdd1226298dd4613abf021bdcaad320b0.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Acdd1226298dd4613abf021bdcaad320b0.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWU5MWJmN2Y1MWRiMzQwMmViYWZmNjEwYzI5OWU5YWFjRi5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Ae91bf7f51db3402ebaff610c299e9aacF.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Ae91bf7f51db3402ebaff610c299e9aacF.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTA1ZjE4ZDQ3ZTcwOTQ4YWU4Nzk1MTExZDA1NWY0MmZhMi5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A05f18d47e70948ae8795111d055f42fa2.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A05f18d47e70948ae8795111d055f42fa2.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTVjMzc3OTJmMzg0MzQzODhhMDJhMDQ3OWZjYmM0MTIzVC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A5c37792f38434388a02a0479fcbc4123T.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A5c37792f38434388a02a0479fcbc4123T.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQThjNDIwOTkyZjQ3NzQ1NTA5ZjRmMjkyYWM3YmQyMjU4SC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A8c420992f47745509f4f292ac7bd2258H.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A8c420992f47745509f4f292ac7bd2258H.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTEwMDFlNjNlYTU5MTQ5ZjhhODFhYmI5MmQ1ZDVmZTcxMy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A1001e63ea59149f8a81abb92d5d5fe713.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A1001e63ea59149f8a81abb92d5d5fe713.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTM2MzQ2Zjg4MWIxMDQ5OTZiNmMwNzBiNWQyY2ViZmY4dS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A36346f881b104996b6c070b5d2cebff8u.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A36346f881b104996b6c070b5d2cebff8u.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTE1NzE4M2MwN2E3NjRlYjg5NTdiYzRjZDEzOTgyODA4aS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A157183c07a764eb8957bc4cd13982808i.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A157183c07a764eb8957bc4cd13982808i.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure>ntt</div>ntt</div>ntttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImRlYzQzMjUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiQ05DIE1hY2hpbmVkIFBhcnRzIiwidGV4dF9hbGlnbiI6ImxlZnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-1852cc9 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\" data-id=\"1852cc9\" data-element_type=\"widget\" data-widget_type=\"image-gallery.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-image-gallery\">nttt<div id=\'gallery-2\' class=\'gallery galleryid-2126 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rNS5qcGciLCJzbGlkZXNob3ciOiIxODUyY2M5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok5.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok5.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rNC5wbmciLCJzbGlkZXNob3ciOiIxODUyY2M5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok4.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok4.png\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW1hY2hpbmUyMi5hdmlmIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-machine22.avif\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-machine22.avif\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW1hY2hpbmUzLmpwZyIsInNsaWRlc2hvdyI6IjE4NTJjYzkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-machine3.jpg\'><img width=\"150\" height=\"100\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-machine3.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rMy5wbmciLCJzbGlkZXNob3ciOiIxODUyY2M5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok3.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok3.png\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rMS5wbmciLCJzbGlkZXNob3ciOiIxODUyY2M5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok1.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok1.png\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rMi5wbmciLCJzbGlkZXNob3ciOiIxODUyY2M5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok2.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok2.png\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rNy5wbmciLCJzbGlkZXNob3ciOiIxODUyY2M5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok7.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok7.png\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rOS5qcGciLCJzbGlkZXNob3ciOiIxODUyY2M5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok9.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok9.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rOC5qcGciLCJzbGlkZXNob3ciOiIxODUyY2M5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok8.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok8.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejU3MDk0NDM0NzY3OTdfY2IzZTllMGQ1OTZhZDYzMzEzNjZiOGE3MTFmNDY5MjYuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z5709443476797_cb3e9e0d596ad6331366b8a711f46926.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z5709443476797_cb3e9e0d596ad6331366b8a711f46926.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure>ntt</div>ntt</div>ntttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImFiODFjZGEiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiU2hlZXQgTWV0YWwgJiBGYWJyaWNhdGlvbiIsInRleHRfYWxpZ24iOiJsZWZ0In0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"]tt<div class=\"elementor-element elementor-element-cd9dba9 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\" data-id=\"cd9dba9\" data-element_type=\"widget\" data-widget_type=\"image-gallery.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-image-gallery\">nttt<div id=\'gallery-3\' class=\'gallery galleryid-2126 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWwxLmpwZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal1.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal1.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWwzLmpwZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal3.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal3.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw0LmpwZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal4.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal4.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw1LmpwZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal5.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal5.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw3LmpwZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal7.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal7.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw4LmpwZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal8.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal8.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw5LmpwZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal9.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal9.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWwxMC5qcGciLCJzbGlkZXNob3ciOiJjZDlkYmE5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal10.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal10.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWwyLnBuZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal2.png\'><img width=\"84\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal2.png\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw2LmpwZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal6.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal6.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure>ntt</div>ntt</div>ntttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImJjZDA3NGMiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiTW9sZCAmIERpZSBDb21wb25lbnRzIiwidGV4dF9hbGlnbiI6ImxlZnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-7eb3b87 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\" data-id=\"7eb3b87\" data-element_type=\"widget\" data-widget_type=\"image-gallery.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-image-gallery\">nttt<div id=\'gallery-4\' class=\'gallery galleryid-2126 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzYxNjUzNzJfODI1NjkzMjRkZTFjOGZjYzM3NmNjMGU3MzdjMDUyMGUuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzY0NTU3NzVfOTdhOTM3ODA3YzgwN2JmNzEzNjk0MTlhMGE1ZDNkMmMuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\'><img width=\"68\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzU4OTM2OTJfNDhmNGE5ZjdjN2E5ZDA1ZGMwMzdhODBhYzFlNTc4MmIuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzYwMDk1MTRfYWQ5MDg4N2YyNWQ3MzRlYzJkMjFkOGE2YTYzNGZmMmQuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzY3MjE1ODZfMTZiOTE5ODQyMGIzOTlmOWQ4MmMwNThkOTA4MmEzZTAuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzYxMTA0MjZfYzNlY2UzZWM1NmY5ZThjYzBlNWM5YTk4Zjk3OTJiZmMuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure>ntt</div>ntt</div>ntttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImQwYjI3ZDciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiSW5kdXN0cmlhbCBGYXN0ZW5lcnMgJiBCb2x0IiwidGV4dF9hbGlnbiI6ImxlZnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-3dcc60b gallery-spacing-custom elementor-widget elementor-widget-image-gallery\" data-id=\"3dcc60b\" data-element_type=\"widget\" data-widget_type=\"image-gallery.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-image-gallery\">nttt<div id=\'gallery-5\' class=\'gallery galleryid-2126 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3dcc60b\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvSU1HXzEyMzcuanBlZyIsInNsaWRlc2hvdyI6IjNkY2M2MGIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/IMG_1237.jpeg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/IMG_1237.jpeg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3dcc60b\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvRFNDMDA4MjIuanBnIiwic2xpZGVzaG93IjoiM2RjYzYwYiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/DSC00822.jpg\'><img width=\"150\" height=\"100\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/DSC00822.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure>ntt</div>ntt</div>ntttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6IjJmOWI3MTYiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiVG9vbCIsInRleHRfYWxpZ24iOiJsZWZ0In0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"]tt<div class=\"elementor-element elementor-element-a165f68 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\" data-id=\"a165f68\" data-element_type=\"widget\" data-widget_type=\"image-gallery.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-image-gallery\">nttt<div id=\'gallery-6\' class=\'gallery galleryid-2126 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwMTgzMzRfMTdjNWZhYzk2ZmIyODQzZDc0YTc2Y2M3OWY5YjRmNWMuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\'><img width=\"150\" height=\"135\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwMzczNTNfZGI4NzczMmIzZWE5ZDkzNTM2YmNkM2FlYzY0ODM1YTcuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNTkxNjJfMDUzYjM2NGFiNzYxZGM1YTQ0Mjc5ZmFmNjQzOTUzMjQuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\'><img width=\"70\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNzgzNzJfNTBhYmNlNTI0OWM4YWNkY2ZiZGY4YTA2MzQ4OWUxODYuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNzg1NzBfMGFiNThiNDZiZjY4M2RmNmVjZGIyYzJkODc5NDViYTYuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\'><img width=\"150\" height=\"129\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk2ODQ5NDkwODZfYjI5ZmRiNTAxMTRhMTk2Y2MzZmRjYzllMTJjYWYxMDUuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\'><img width=\"150\" height=\"128\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk2ODQ5NDY2NDFfMTUwMGZiZTE2ZmVjM2ExNGVhZGI4ZTRhZWQxY2Y2M2YuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure>ntt</div>ntt</div>ntttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6IjFlZjg0OTEiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiSmlnIiwidGV4dF9hbGlnbiI6ImxlZnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-09a76d6 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\" data-id=\"09a76d6\" data-element_type=\"widget\" data-widget_type=\"image-gallery.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-image-gallery\">nttt<div id=\'gallery-7\' class=\'gallery galleryid-2126 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NDY1OTEzMzg2ODdfZmE1MTRlMTY0ZjJlZTk5NjFjZmVlY2U5YjJhMjk2MmUuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTE0ODI0OTc5ODFfNGZlOGQ1MmM3N2ZiOTcwYWNjYWNhOTkzMTFiM2U1YjguanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNTQzNzc3MTM5OTRfNzMxZjNhYzFmN2YzMjMyNjExMWE0MWY2N2Q0YTJlMzMuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE2NTM3NjdfNzk3Y2FkYTk3Yjk4NjQyZTYyYzkxODU3YzYwYjViNDQuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NDY1OTEzNDkxOTRfZDUwMTBkMTcwMGM3Y2ViNDkxYjk3OGIwMWJlM2RkMjguanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure>ntt</div>ntt</div>ntttt</div>ntttt</div>nttttt</div>ntttt</div>ntt\",\"scripts\":[],\"styles\":[]}}'),(11140,3343,'_elementor_css','a:6:{s:4:\"time\";i:1742279863;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:\"\";}'),(11141,3344,'_elementor_edit_mode','builder'),(11142,3344,'_elementor_template_type','wp-page'),(11143,3344,'_elementor_version','3.24.7'),(11144,3344,'_wp_page_template','default'),(11145,3344,'_elementor_data','[{\"id\":\"fcff723\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"dee41b0\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"Our strength lies in mass production of aluminum and steel. We excel in innovation and deliver high-value products to our customers.\",\"title_tag\":\"h5\",\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"373dfc0\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Automotive & Motorcycle\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"5603a87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":3190,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Ab6277516622141b68178f66bebaadd93o.jpg_350x350.jpg\"},{\"id\":3191,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A4969ef2343a244608cc511d1e7be28e2X.png_350x350.png\"},{\"id\":3192,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/H9be6461494cf4fe7998192dc483066c9v.png_350x350.png\"},{\"id\":3193,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/H4cbac47ae6cf4705b966668ca1abad509.png_350x350.png\"},{\"id\":3194,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/H6c00bd237d8b46d4b06a1cc6ef76accfE.png_350x350.png\"},{\"id\":3195,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/H71abe7a763a345ae87dcf70c25a70a32M.png_350x350.png\"},{\"id\":3196,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/2.jpg\"},{\"id\":3197,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A045fe45345664394a2a80499b4bd2117i.jpg_350x350.jpg\"},{\"id\":3198,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A86e039df1c9d4e809ea53dfd676ba67aO.jpg_350x350.jpg\"},{\"id\":3199,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A786dc427af46457ea923c41ea7688f67Q.jpg_350x350.jpg\"},{\"id\":3200,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/6.jpg\"},{\"id\":3201,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A2ed5a5c3f8f544c8910a3fe29da5e2984.jpg_350x350.jpg\"},{\"id\":3202,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A3c80646854cd4401b6b737a80e8e29f2Z.jpg_350x350.jpg\"},{\"id\":3203,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A53f94fffa0e64ba8a47330e85a179214l.jpg_350x350.jpg\"},{\"id\":3204,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Aa559aaa8e8d44868b700967e182631e0O.jpg_350x350.jpg\"},{\"id\":3205,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/4.jpg\"},{\"id\":3206,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A29209fca14e3491286a7ae2a7d535066t.jpg_350x350.jpg\"},{\"id\":3207,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Afd6e5018d54a4c319b4941af57e38fc1e.jpg_350x350.jpg\"},{\"id\":3208,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A8626df5ae89c458484cbdeab6b0a2768E.jpg_350x350.jpg\"},{\"id\":3209,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Aec2a4cd895e648b6bc7174d864e103329.jpg_350x350.jpg\"},{\"id\":3210,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/1.jpg\"},{\"id\":3211,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A5fa71b0eddf648049c5f33d331738460m.jpg_350x350.jpg\"},{\"id\":3212,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A9bc1872697d649e7a28d14c48cd6b71bq.jpg_350x350.jpg\"},{\"id\":3213,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Ad0c782b84615484d8303ad964cd302a4C.jpg_350x350.jpg\"},{\"id\":3214,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Aec3f44d2c0cf4536870b19097b5035f4A.jpg_350x350.jpg\"},{\"id\":3215,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/8.jpg\"},{\"id\":3216,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A5df619ce89ec42189a5c4d05bbba4f2dw.jpg_350x350.jpg\"},{\"id\":3217,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A9207015598ae47e4ba57d5d6755a7945J.jpg_350x350.jpg\"},{\"id\":3218,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Aa67514ca153a43208612611af15ae689t.jpg_350x350.jpg\"},{\"id\":3219,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Ac8c57af57fc04a9b8afbcf5214d8b125a.jpg_350x350.jpg\"},{\"id\":3220,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Aea1a2ea6c9d04b78977d1e8c907e721cR.jpg_350x350.jpg\"},{\"id\":3221,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/5.jpg\"},{\"id\":3222,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/7.jpg\"},{\"id\":3223,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A4fa22b3db4704145a9c8f2b6d413b4b7Y.jpg_350x350.jpg\"},{\"id\":3224,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A8cfa154ca70a46c5965e993255b53ecbg.jpg_350x350.jpg\"},{\"id\":3225,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A967c634a517c48f38c23d4766db5bba1a.jpg_350x350.jpg\"},{\"id\":3226,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A462413b6de2b401ba60e99bbe1d15e33K.jpg_350x350.jpg\"},{\"id\":3227,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A661399142a7247278bbf69a9d6007556W.jpg_350x350.jpg\"},{\"id\":3228,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/10.jpg\"},{\"id\":3229,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A16eb71f546c44c4ba00c6afe46464d593.jpg_350x350.jpg\"},{\"id\":3230,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A72a21ba969c84b98b63b985380b97ef5O.jpg_350x350.jpg\"},{\"id\":3231,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A99574ebe1a6c432abebb91680e3e227e0.jpg_350x350.jpg\"},{\"id\":3232,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Ac6d9a3b79a904eeb9c925afa374ec53aA.jpg_350x350.jpg\"},{\"id\":3233,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Adef05c3212194f259f1556cd5081ab3eg.jpg_350x350.jpg\"},{\"id\":3234,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/3.jpg\"},{\"id\":3235,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/9.jpg\"},{\"id\":3236,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A268aa8f9b65c4cdf9f45e594f2cd8ad4M.jpg_350x350.jpg\"},{\"id\":3237,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A864432f2571743689342ae173ee9dc9fd.jpg_350x350.jpg\"},{\"id\":3238,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Abd43851c92654bd99cfdca45d896fbcbB.jpg_350x350.jpg\"},{\"id\":3239,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Acdd1226298dd4613abf021bdcaad320b0.jpg_350x350.jpg\"},{\"id\":3240,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Ae91bf7f51db3402ebaff610c299e9aacF.jpg_350x350.jpg\"},{\"id\":3241,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A05f18d47e70948ae8795111d055f42fa2.jpg_350x350.jpg\"},{\"id\":3242,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A5c37792f38434388a02a0479fcbc4123T.jpg_350x350.jpg\"},{\"id\":3243,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A8c420992f47745509f4f292ac7bd2258H.jpg_350x350.jpg\"},{\"id\":3244,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A1001e63ea59149f8a81abb92d5d5fe713.jpg_350x350.jpg\"},{\"id\":3245,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A36346f881b104996b6c070b5d2cebff8u.jpg_350x350.jpg\"},{\"id\":3246,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A157183c07a764eb8957bc4cd13982808i.jpg_350x350.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"dec4325\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"CNC Machined Parts\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1852cc9\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":3247,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok5.jpg\"},{\"id\":3248,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok4.png\"},{\"id\":3249,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-machine22.avif\"},{\"id\":3250,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-machine3.jpg\"},{\"id\":3251,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok3.png\"},{\"id\":3252,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok1.png\"},{\"id\":3253,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok2.png\"},{\"id\":3254,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok7.png\"},{\"id\":3255,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok9.jpg\"},{\"id\":3256,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok8.jpg\"},{\"id\":3257,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z5709443476797_cb3e9e0d596ad6331366b8a711f46926.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"ab81cda\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Sheet Metal & Fabrication\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"cd9dba9\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":3258,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal1.jpg\"},{\"id\":3259,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal3.jpg\"},{\"id\":3260,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal4.jpg\"},{\"id\":3261,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal5.jpg\"},{\"id\":3262,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal7.jpg\"},{\"id\":3263,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal8.jpg\"},{\"id\":3264,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal9.jpg\"},{\"id\":3265,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal10.jpg\"},{\"id\":3266,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal2.png\"},{\"id\":3267,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal6.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"bcd074c\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Mold & Die Components\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7eb3b87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":3268,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\"},{\"id\":3269,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\"},{\"id\":3270,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\"},{\"id\":3271,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\"},{\"id\":3272,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\"},{\"id\":3273,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"d0b27d7\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Industrial Fasteners & Bolt\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3dcc60b\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":3274,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/IMG_1237.jpeg\"},{\"id\":3275,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/DSC00822.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"2f9b716\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Tool\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a165f68\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2710,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\"},{\"id\":2711,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\"},{\"id\":2712,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\"},{\"id\":2713,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\"},{\"id\":2714,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\"},{\"id\":2715,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\"},{\"id\":2716,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"1ef8491\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Jig\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"09a76d6\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2730,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\"},{\"id\":2731,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\"},{\"id\":2732,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\"},{\"id\":2733,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\"},{\"id\":2734,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}]'),(11146,3344,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:20:\"widget-image-gallery\";}}'),(11147,3344,'_elementor_element_cache','{\"timeout\":1742365984,\"value\":{\"content\":\"<div class=\"elementor-element elementor-element-fcff723 e-flex e-con-boxed e-con e-parent\" data-id=\"fcff723\" data-element_type=\"container\">nttttt<div class=\"e-con-inner\">ntt[elementor-element data=\"eyJpZCI6ImRlZTQxYjAiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlIjoiT3VyIHN0cmVuZ3RoIGxpZXMgaW4gbWFzcyBwcm9kdWN0aW9uIG9mIGFsdW1pbnVtIGFuZCBzdGVlbC4gV2UgZXhjZWwgaW4gaW5ub3ZhdGlvbiBhbmQgZGVsaXZlciBoaWdoLXZhbHVlIHByb2R1Y3RzIHRvIG91ciBjdXN0b21lcnMuIiwidGl0bGVfdGFnIjoiaDUiLCJ0ZXh0X2FsaWduIjoiY2VudGVyIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"][elementor-element data=\"eyJpZCI6IjM3M2RmYzAiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiQXV0b21vdGl2ZSAmIE1vdG9yY3ljbGUiLCJ0ZXh0X2FsaWduIjoibGVmdCJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]tt<div class=\"elementor-element elementor-element-5603a87 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\" data-id=\"5603a87\" data-element_type=\"widget\" data-widget_type=\"image-gallery.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-image-gallery\">nttt<div id=\'gallery-1\' class=\'gallery galleryid-2126 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWI2Mjc3NTE2NjIyMTQxYjY4MTc4ZjY2YmViYWFkZDkzby5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Ab6277516622141b68178f66bebaadd93o.jpg_350x350.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Ab6277516622141b68178f66bebaadd93o.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTQ5NjllZjIzNDNhMjQ0NjA4Y2M1MTFkMWU3YmUyOGUyWC5wbmdfMzUweDM1MC5wbmciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A4969ef2343a244608cc511d1e7be28e2X.png_350x350.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A4969ef2343a244608cc511d1e7be28e2X.png_350x350.png\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvSDliZTY0NjE0OTRjZjRmZTc5OTgxOTJkYzQ4MzA2NmM5di5wbmdfMzUweDM1MC5wbmciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/H9be6461494cf4fe7998192dc483066c9v.png_350x350.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/H9be6461494cf4fe7998192dc483066c9v.png_350x350.png\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvSDRjYmFjNDdhZTZjZjQ3MDViOTY2NjY4Y2ExYWJhZDUwOS5wbmdfMzUweDM1MC5wbmciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/H4cbac47ae6cf4705b966668ca1abad509.png_350x350.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/H4cbac47ae6cf4705b966668ca1abad509.png_350x350.png\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvSDZjMDBiZDIzN2Q4YjQ2ZDRiMDZhMWNjNmVmNzZhY2NmRS5wbmdfMzUweDM1MC5wbmciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/H6c00bd237d8b46d4b06a1cc6ef76accfE.png_350x350.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/H6c00bd237d8b46d4b06a1cc6ef76accfE.png_350x350.png\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvSDcxYWJlN2E3NjNhMzQ1YWU4N2RjZjcwYzI1YTcwYTMyTS5wbmdfMzUweDM1MC5wbmciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/H71abe7a763a345ae87dcf70c25a70a32M.png_350x350.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/H71abe7a763a345ae87dcf70c25a70a32M.png_350x350.png\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/2.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/2.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTA0NWZlNDUzNDU2NjQzOTRhMmE4MDQ5OWI0YmQyMTE3aS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A045fe45345664394a2a80499b4bd2117i.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A045fe45345664394a2a80499b4bd2117i.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTg2ZTAzOWRmMWM5ZDRlODA5ZWE1M2RmZDY3NmJhNjdhTy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A86e039df1c9d4e809ea53dfd676ba67aO.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A86e039df1c9d4e809ea53dfd676ba67aO.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTc4NmRjNDI3YWY0NjQ1N2VhOTIzYzQxZWE3Njg4ZjY3US5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A786dc427af46457ea923c41ea7688f67Q.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A786dc427af46457ea923c41ea7688f67Q.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvNi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/6.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/6.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTJlZDVhNWMzZjhmNTQ0Yzg5MTBhM2ZlMjlkYTVlMjk4NC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A2ed5a5c3f8f544c8910a3fe29da5e2984.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A2ed5a5c3f8f544c8910a3fe29da5e2984.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTNjODA2NDY4NTRjZDQ0MDFiNmI3MzdhODBlOGUyOWYyWi5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A3c80646854cd4401b6b737a80e8e29f2Z.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A3c80646854cd4401b6b737a80e8e29f2Z.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTUzZjk0ZmZmYTBlNjRiYThhNDczMzBlODVhMTc5MjE0bC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A53f94fffa0e64ba8a47330e85a179214l.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A53f94fffa0e64ba8a47330e85a179214l.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWE1NTlhYWE4ZThkNDQ4NjhiNzAwOTY3ZTE4MjYzMWUwTy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Aa559aaa8e8d44868b700967e182631e0O.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Aa559aaa8e8d44868b700967e182631e0O.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvNC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/4.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/4.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTI5MjA5ZmNhMTRlMzQ5MTI4NmE3YWUyYTdkNTM1MDY2dC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A29209fca14e3491286a7ae2a7d535066t.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A29209fca14e3491286a7ae2a7d535066t.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWZkNmU1MDE4ZDU0YTRjMzE5YjQ5NDFhZjU3ZTM4ZmMxZS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Afd6e5018d54a4c319b4941af57e38fc1e.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Afd6e5018d54a4c319b4941af57e38fc1e.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTg2MjZkZjVhZTg5YzQ1ODQ4NGNiZGVhYjZiMGEyNzY4RS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A8626df5ae89c458484cbdeab6b0a2768E.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A8626df5ae89c458484cbdeab6b0a2768E.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWVjMmE0Y2Q4OTVlNjQ4YjZiYzcxNzRkODY0ZTEwMzMyOS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Aec2a4cd895e648b6bc7174d864e103329.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Aec2a4cd895e648b6bc7174d864e103329.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/1.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/1.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTVmYTcxYjBlZGRmNjQ4MDQ5YzVmMzNkMzMxNzM4NDYwbS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A5fa71b0eddf648049c5f33d331738460m.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A5fa71b0eddf648049c5f33d331738460m.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTliYzE4NzI2OTdkNjQ5ZTdhMjhkMTRjNDhjZDZiNzFicS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A9bc1872697d649e7a28d14c48cd6b71bq.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A9bc1872697d649e7a28d14c48cd6b71bq.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWQwYzc4MmI4NDYxNTQ4NGQ4MzAzYWQ5NjRjZDMwMmE0Qy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Ad0c782b84615484d8303ad964cd302a4C.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Ad0c782b84615484d8303ad964cd302a4C.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWVjM2Y0NGQyYzBjZjQ1MzY4NzBiMTkwOTdiNTAzNWY0QS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Aec3f44d2c0cf4536870b19097b5035f4A.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Aec3f44d2c0cf4536870b19097b5035f4A.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvOC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/8.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/8.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTVkZjYxOWNlODllYzQyMTg5YTVjNGQwNWJiYmE0ZjJkdy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A5df619ce89ec42189a5c4d05bbba4f2dw.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A5df619ce89ec42189a5c4d05bbba4f2dw.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTkyMDcwMTU1OThhZTQ3ZTRiYTU3ZDVkNjc1NWE3OTQ1Si5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A9207015598ae47e4ba57d5d6755a7945J.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A9207015598ae47e4ba57d5d6755a7945J.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWE2NzUxNGNhMTUzYTQzMjA4NjEyNjExYWYxNWFlNjg5dC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Aa67514ca153a43208612611af15ae689t.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Aa67514ca153a43208612611af15ae689t.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWM4YzU3YWY1N2ZjMDRhOWI4YWZiY2Y1MjE0ZDhiMTI1YS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Ac8c57af57fc04a9b8afbcf5214d8b125a.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Ac8c57af57fc04a9b8afbcf5214d8b125a.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWVhMWEyZWE2YzlkMDRiNzg5NzdkMWU4YzkwN2U3MjFjUi5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Aea1a2ea6c9d04b78977d1e8c907e721cR.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Aea1a2ea6c9d04b78977d1e8c907e721cR.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvNS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/5.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/5.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvNy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/7.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/7.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTRmYTIyYjNkYjQ3MDQxNDVhOWM4ZjJiNmQ0MTNiNGI3WS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A4fa22b3db4704145a9c8f2b6d413b4b7Y.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A4fa22b3db4704145a9c8f2b6d413b4b7Y.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQThjZmExNTRjYTcwYTQ2YzU5NjVlOTkzMjU1YjUzZWNiZy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A8cfa154ca70a46c5965e993255b53ecbg.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A8cfa154ca70a46c5965e993255b53ecbg.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTk2N2M2MzRhNTE3YzQ4ZjM4YzIzZDQ3NjZkYjViYmExYS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A967c634a517c48f38c23d4766db5bba1a.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A967c634a517c48f38c23d4766db5bba1a.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTQ2MjQxM2I2ZGUyYjQwMWJhNjBlOTliYmUxZDE1ZTMzSy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A462413b6de2b401ba60e99bbe1d15e33K.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A462413b6de2b401ba60e99bbe1d15e33K.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTY2MTM5OTE0MmE3MjQ3Mjc4YmJmNjlhOWQ2MDA3NTU2Vy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A661399142a7247278bbf69a9d6007556W.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A661399142a7247278bbf69a9d6007556W.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvMTAuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/10.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/10.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTE2ZWI3MWY1NDZjNDRjNGJhMDBjNmFmZTQ2NDY0ZDU5My5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A16eb71f546c44c4ba00c6afe46464d593.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A16eb71f546c44c4ba00c6afe46464d593.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTcyYTIxYmE5NjljODRiOThiNjNiOTg1MzgwYjk3ZWY1Ty5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A72a21ba969c84b98b63b985380b97ef5O.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A72a21ba969c84b98b63b985380b97ef5O.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTk5NTc0ZWJlMWE2YzQzMmFiZWJiOTE2ODBlM2UyMjdlMC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A99574ebe1a6c432abebb91680e3e227e0.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A99574ebe1a6c432abebb91680e3e227e0.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWM2ZDlhM2I3OWE5MDRlZWI5YzkyNWFmYTM3NGVjNTNhQS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Ac6d9a3b79a904eeb9c925afa374ec53aA.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Ac6d9a3b79a904eeb9c925afa374ec53aA.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWRlZjA1YzMyMTIxOTRmMjU5ZjE1NTZjZDUwODFhYjNlZy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Adef05c3212194f259f1556cd5081ab3eg.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Adef05c3212194f259f1556cd5081ab3eg.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvMy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/3.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/3.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvOS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/9.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/9.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTI2OGFhOGY5YjY1YzRjZGY5ZjQ1ZTU5NGYyY2Q4YWQ0TS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A268aa8f9b65c4cdf9f45e594f2cd8ad4M.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A268aa8f9b65c4cdf9f45e594f2cd8ad4M.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTg2NDQzMmYyNTcxNzQzNjg5MzQyYWUxNzNlZTlkYzlmZC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A864432f2571743689342ae173ee9dc9fd.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A864432f2571743689342ae173ee9dc9fd.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWJkNDM4NTFjOTI2NTRiZDk5Y2ZkY2E0NWQ4OTZmYmNiQi5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Abd43851c92654bd99cfdca45d896fbcbB.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Abd43851c92654bd99cfdca45d896fbcbB.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWNkZDEyMjYyOThkZDQ2MTNhYmYwMjFiZGNhYWQzMjBiMC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Acdd1226298dd4613abf021bdcaad320b0.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Acdd1226298dd4613abf021bdcaad320b0.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWU5MWJmN2Y1MWRiMzQwMmViYWZmNjEwYzI5OWU5YWFjRi5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Ae91bf7f51db3402ebaff610c299e9aacF.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Ae91bf7f51db3402ebaff610c299e9aacF.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTA1ZjE4ZDQ3ZTcwOTQ4YWU4Nzk1MTExZDA1NWY0MmZhMi5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A05f18d47e70948ae8795111d055f42fa2.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A05f18d47e70948ae8795111d055f42fa2.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTVjMzc3OTJmMzg0MzQzODhhMDJhMDQ3OWZjYmM0MTIzVC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A5c37792f38434388a02a0479fcbc4123T.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A5c37792f38434388a02a0479fcbc4123T.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQThjNDIwOTkyZjQ3NzQ1NTA5ZjRmMjkyYWM3YmQyMjU4SC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A8c420992f47745509f4f292ac7bd2258H.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A8c420992f47745509f4f292ac7bd2258H.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTEwMDFlNjNlYTU5MTQ5ZjhhODFhYmI5MmQ1ZDVmZTcxMy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A1001e63ea59149f8a81abb92d5d5fe713.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A1001e63ea59149f8a81abb92d5d5fe713.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTM2MzQ2Zjg4MWIxMDQ5OTZiNmMwNzBiNWQyY2ViZmY4dS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A36346f881b104996b6c070b5d2cebff8u.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A36346f881b104996b6c070b5d2cebff8u.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTE1NzE4M2MwN2E3NjRlYjg5NTdiYzRjZDEzOTgyODA4aS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A157183c07a764eb8957bc4cd13982808i.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A157183c07a764eb8957bc4cd13982808i.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure>ntt</div>ntt</div>ntttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImRlYzQzMjUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiQ05DIE1hY2hpbmVkIFBhcnRzIiwidGV4dF9hbGlnbiI6ImxlZnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-1852cc9 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\" data-id=\"1852cc9\" data-element_type=\"widget\" data-widget_type=\"image-gallery.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-image-gallery\">nttt<div id=\'gallery-2\' class=\'gallery galleryid-2126 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rNS5qcGciLCJzbGlkZXNob3ciOiIxODUyY2M5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok5.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok5.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rNC5wbmciLCJzbGlkZXNob3ciOiIxODUyY2M5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok4.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok4.png\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW1hY2hpbmUyMi5hdmlmIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-machine22.avif\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-machine22.avif\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW1hY2hpbmUzLmpwZyIsInNsaWRlc2hvdyI6IjE4NTJjYzkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-machine3.jpg\'><img width=\"150\" height=\"100\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-machine3.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rMy5wbmciLCJzbGlkZXNob3ciOiIxODUyY2M5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok3.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok3.png\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rMS5wbmciLCJzbGlkZXNob3ciOiIxODUyY2M5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok1.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok1.png\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rMi5wbmciLCJzbGlkZXNob3ciOiIxODUyY2M5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok2.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok2.png\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rNy5wbmciLCJzbGlkZXNob3ciOiIxODUyY2M5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok7.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok7.png\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rOS5qcGciLCJzbGlkZXNob3ciOiIxODUyY2M5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok9.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok9.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rOC5qcGciLCJzbGlkZXNob3ciOiIxODUyY2M5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok8.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok8.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejU3MDk0NDM0NzY3OTdfY2IzZTllMGQ1OTZhZDYzMzEzNjZiOGE3MTFmNDY5MjYuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z5709443476797_cb3e9e0d596ad6331366b8a711f46926.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z5709443476797_cb3e9e0d596ad6331366b8a711f46926.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure>ntt</div>ntt</div>ntttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImFiODFjZGEiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiU2hlZXQgTWV0YWwgJiBGYWJyaWNhdGlvbiIsInRleHRfYWxpZ24iOiJsZWZ0In0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"]tt<div class=\"elementor-element elementor-element-cd9dba9 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\" data-id=\"cd9dba9\" data-element_type=\"widget\" data-widget_type=\"image-gallery.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-image-gallery\">nttt<div id=\'gallery-3\' class=\'gallery galleryid-2126 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWwxLmpwZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal1.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal1.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWwzLmpwZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal3.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal3.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw0LmpwZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal4.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal4.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw1LmpwZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal5.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal5.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw3LmpwZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal7.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal7.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw4LmpwZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal8.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal8.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw5LmpwZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal9.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal9.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWwxMC5qcGciLCJzbGlkZXNob3ciOiJjZDlkYmE5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal10.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal10.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWwyLnBuZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal2.png\'><img width=\"84\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal2.png\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw2LmpwZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal6.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal6.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure>ntt</div>ntt</div>ntttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImJjZDA3NGMiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiTW9sZCAmIERpZSBDb21wb25lbnRzIiwidGV4dF9hbGlnbiI6ImxlZnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-7eb3b87 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\" data-id=\"7eb3b87\" data-element_type=\"widget\" data-widget_type=\"image-gallery.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-image-gallery\">nttt<div id=\'gallery-4\' class=\'gallery galleryid-2126 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzYxNjUzNzJfODI1NjkzMjRkZTFjOGZjYzM3NmNjMGU3MzdjMDUyMGUuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzY0NTU3NzVfOTdhOTM3ODA3YzgwN2JmNzEzNjk0MTlhMGE1ZDNkMmMuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\'><img width=\"68\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzU4OTM2OTJfNDhmNGE5ZjdjN2E5ZDA1ZGMwMzdhODBhYzFlNTc4MmIuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzYwMDk1MTRfYWQ5MDg4N2YyNWQ3MzRlYzJkMjFkOGE2YTYzNGZmMmQuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzY3MjE1ODZfMTZiOTE5ODQyMGIzOTlmOWQ4MmMwNThkOTA4MmEzZTAuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzYxMTA0MjZfYzNlY2UzZWM1NmY5ZThjYzBlNWM5YTk4Zjk3OTJiZmMuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure>ntt</div>ntt</div>ntttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImQwYjI3ZDciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiSW5kdXN0cmlhbCBGYXN0ZW5lcnMgJiBCb2x0IiwidGV4dF9hbGlnbiI6ImxlZnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-3dcc60b gallery-spacing-custom elementor-widget elementor-widget-image-gallery\" data-id=\"3dcc60b\" data-element_type=\"widget\" data-widget_type=\"image-gallery.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-image-gallery\">nttt<div id=\'gallery-5\' class=\'gallery galleryid-2126 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3dcc60b\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvSU1HXzEyMzcuanBlZyIsInNsaWRlc2hvdyI6IjNkY2M2MGIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/IMG_1237.jpeg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/IMG_1237.jpeg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3dcc60b\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvRFNDMDA4MjIuanBnIiwic2xpZGVzaG93IjoiM2RjYzYwYiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/DSC00822.jpg\'><img width=\"150\" height=\"100\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/DSC00822.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure>ntt</div>ntt</div>ntttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6IjJmOWI3MTYiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiVG9vbCIsInRleHRfYWxpZ24iOiJsZWZ0In0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"]tt<div class=\"elementor-element elementor-element-a165f68 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\" data-id=\"a165f68\" data-element_type=\"widget\" data-widget_type=\"image-gallery.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-image-gallery\">nttt<div id=\'gallery-6\' class=\'gallery galleryid-2126 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwMTgzMzRfMTdjNWZhYzk2ZmIyODQzZDc0YTc2Y2M3OWY5YjRmNWMuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\'><img width=\"150\" height=\"135\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwMzczNTNfZGI4NzczMmIzZWE5ZDkzNTM2YmNkM2FlYzY0ODM1YTcuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNTkxNjJfMDUzYjM2NGFiNzYxZGM1YTQ0Mjc5ZmFmNjQzOTUzMjQuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\'><img width=\"70\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNzgzNzJfNTBhYmNlNTI0OWM4YWNkY2ZiZGY4YTA2MzQ4OWUxODYuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNzg1NzBfMGFiNThiNDZiZjY4M2RmNmVjZGIyYzJkODc5NDViYTYuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\'><img width=\"150\" height=\"129\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk2ODQ5NDkwODZfYjI5ZmRiNTAxMTRhMTk2Y2MzZmRjYzllMTJjYWYxMDUuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\'><img width=\"150\" height=\"128\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk2ODQ5NDY2NDFfMTUwMGZiZTE2ZmVjM2ExNGVhZGI4ZTRhZWQxY2Y2M2YuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure>ntt</div>ntt</div>ntttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6IjFlZjg0OTEiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiSmlnIiwidGV4dF9hbGlnbiI6ImxlZnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-09a76d6 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\" data-id=\"09a76d6\" data-element_type=\"widget\" data-widget_type=\"image-gallery.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-image-gallery\">nttt<div id=\'gallery-7\' class=\'gallery galleryid-2126 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NDY1OTEzMzg2ODdfZmE1MTRlMTY0ZjJlZTk5NjFjZmVlY2U5YjJhMjk2MmUuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTE0ODI0OTc5ODFfNGZlOGQ1MmM3N2ZiOTcwYWNjYWNhOTkzMTFiM2U1YjguanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNTQzNzc3MTM5OTRfNzMxZjNhYzFmN2YzMjMyNjExMWE0MWY2N2Q0YTJlMzMuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE2NTM3NjdfNzk3Y2FkYTk3Yjk4NjQyZTYyYzkxODU3YzYwYjViNDQuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NDY1OTEzNDkxOTRfZDUwMTBkMTcwMGM3Y2ViNDkxYjk3OGIwMWJlM2RkMjguanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure>ntt</div>ntt</div>ntttt</div>ntttt</div>nttttt</div>ntttt</div>ntt\",\"scripts\":[],\"styles\":[]}}'),(11148,3344,'_elementor_css','a:6:{s:4:\"time\";i:1742279863;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:\"\";}'),(11149,3345,'_elementor_edit_mode','builder'),(11150,3345,'_elementor_template_type','wp-page'),(11151,3345,'_elementor_version','3.24.7'),(11152,3345,'_wp_page_template','default'),(11153,3345,'_elementor_data','[{\"id\":\"fcff723\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"dee41b0\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"Our strength lies in mass production of aluminum and steel. We excel in innovation and deliver high-value products to our customers.\",\"title_tag\":\"h5\",\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"373dfc0\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Automotive & Motorcycle\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"5603a87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":3309,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A16eb71f546c44c4ba00c6afe46464d593-1.jpg_350x350-1.jpg\"},{\"id\":3310,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A72a21ba969c84b98b63b985380b97ef5O-1.jpg_350x350-1.jpg\"},{\"id\":3311,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Ac6d9a3b79a904eeb9c925afa374ec53aA-1.jpg_350x350-1.jpg\"},{\"id\":3312,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/3-1.jpg\"},{\"id\":3313,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/9-1.jpg\"},{\"id\":3314,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A268aa8f9b65c4cdf9f45e594f2cd8ad4M-1.jpg_350x350-1.jpg\"},{\"id\":3315,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A864432f2571743689342ae173ee9dc9fd-1.jpg_350x350-1.jpg\"},{\"id\":3316,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Abd43851c92654bd99cfdca45d896fbcbB-1.jpg_350x350-1.jpg\"},{\"id\":3317,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A1001e63ea59149f8a81abb92d5d5fe713-1.jpg_350x350-1.jpg\"},{\"id\":3318,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A36346f881b104996b6c070b5d2cebff8u-1.jpg_350x350-1.jpg\"},{\"id\":3319,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A157183c07a764eb8957bc4cd13982808i-1.jpg_350x350-1.jpg\"},{\"id\":3320,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A4969ef2343a244608cc511d1e7be28e2X-1.png_350x350-1.png\"},{\"id\":3321,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/H9be6461494cf4fe7998192dc483066c9v-1.png_350x350-1.png\"},{\"id\":3322,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/H4cbac47ae6cf4705b966668ca1abad509-1.png_350x350-1.png\"},{\"id\":3323,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/H6c00bd237d8b46d4b06a1cc6ef76accfE-1.png_350x350-1.png\"},{\"id\":3324,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/H71abe7a763a345ae87dcf70c25a70a32M-1.png_350x350-1.png\"},{\"id\":3325,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/2-1.jpg\"},{\"id\":3326,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A786dc427af46457ea923c41ea7688f67Q-1.jpg_350x350-1.jpg\"},{\"id\":3327,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A2ed5a5c3f8f544c8910a3fe29da5e2984-1.jpg_350x350-1.jpg\"},{\"id\":3328,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A53f94fffa0e64ba8a47330e85a179214l-1.jpg_350x350-1.jpg\"},{\"id\":3329,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Aa559aaa8e8d44868b700967e182631e0O-1.jpg_350x350-1.jpg\"},{\"id\":3330,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/4-1.jpg\"},{\"id\":3331,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A8626df5ae89c458484cbdeab6b0a2768E-1.jpg_350x350-1.jpg\"},{\"id\":3332,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/1-1.jpg\"},{\"id\":3333,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A5fa71b0eddf648049c5f33d331738460m-1.jpg_350x350-1.jpg\"},{\"id\":3334,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A5df619ce89ec42189a5c4d05bbba4f2dw-1.jpg_350x350-1.jpg\"},{\"id\":3335,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Aea1a2ea6c9d04b78977d1e8c907e721cR-1.jpg_350x350-1.jpg\"},{\"id\":3336,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/5-1.jpg\"},{\"id\":3338,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/7-1.jpg\"},{\"id\":3339,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A967c634a517c48f38c23d4766db5bba1a-1.jpg_350x350-1.jpg\"},{\"id\":3340,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A462413b6de2b401ba60e99bbe1d15e33K-1.jpg_350x350-1.jpg\"},{\"id\":3341,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A661399142a7247278bbf69a9d6007556W-1.jpg_350x350-1.jpg\"},{\"id\":3342,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/10-1.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"dec4325\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"CNC Machined Parts\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1852cc9\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":3247,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok5.jpg\"},{\"id\":3248,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok4.png\"},{\"id\":3249,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-machine22.avif\"},{\"id\":3250,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-machine3.jpg\"},{\"id\":3251,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok3.png\"},{\"id\":3252,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok1.png\"},{\"id\":3253,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok2.png\"},{\"id\":3254,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok7.png\"},{\"id\":3255,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok9.jpg\"},{\"id\":3256,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok8.jpg\"},{\"id\":3257,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z5709443476797_cb3e9e0d596ad6331366b8a711f46926.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"ab81cda\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Sheet Metal & Fabrication\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"cd9dba9\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":3258,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal1.jpg\"},{\"id\":3259,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal3.jpg\"},{\"id\":3260,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal4.jpg\"},{\"id\":3261,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal5.jpg\"},{\"id\":3262,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal7.jpg\"},{\"id\":3263,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal8.jpg\"},{\"id\":3264,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal9.jpg\"},{\"id\":3265,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal10.jpg\"},{\"id\":3266,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal2.png\"},{\"id\":3267,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal6.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"bcd074c\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Mold & Die Components\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7eb3b87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":3268,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\"},{\"id\":3269,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\"},{\"id\":3270,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\"},{\"id\":3271,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\"},{\"id\":3272,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\"},{\"id\":3273,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"d0b27d7\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Industrial Fasteners & Bolt\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3dcc60b\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":3274,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/IMG_1237.jpeg\"},{\"id\":3275,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/DSC00822.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"2f9b716\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Tool\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a165f68\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2710,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\"},{\"id\":2711,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\"},{\"id\":2712,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\"},{\"id\":2713,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\"},{\"id\":2714,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\"},{\"id\":2715,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\"},{\"id\":2716,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"1ef8491\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title_tag\":\"h6\",\"sub_title\":\"Jig\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"09a76d6\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"wp_gallery\":[{\"id\":2730,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\"},{\"id\":2731,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\"},{\"id\":2732,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\"},{\"id\":2733,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\"},{\"id\":2734,\"url\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\"}],\"open_lightbox\":\"yes\",\"gallery_display_caption\":\"none\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}]'),(11154,3345,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:20:\"widget-image-gallery\";}}');
INSERT INTO `wp_postmeta` VALUES (11155,3345,'_elementor_element_cache','{\"timeout\":1742365984,\"value\":{\"content\":\"<div class=\"elementor-element elementor-element-fcff723 e-flex e-con-boxed e-con e-parent\" data-id=\"fcff723\" data-element_type=\"container\">nttttt<div class=\"e-con-inner\">ntt[elementor-element data=\"eyJpZCI6ImRlZTQxYjAiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlIjoiT3VyIHN0cmVuZ3RoIGxpZXMgaW4gbWFzcyBwcm9kdWN0aW9uIG9mIGFsdW1pbnVtIGFuZCBzdGVlbC4gV2UgZXhjZWwgaW4gaW5ub3ZhdGlvbiBhbmQgZGVsaXZlciBoaWdoLXZhbHVlIHByb2R1Y3RzIHRvIG91ciBjdXN0b21lcnMuIiwidGl0bGVfdGFnIjoiaDUiLCJ0ZXh0X2FsaWduIjoiY2VudGVyIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"][elementor-element data=\"eyJpZCI6IjM3M2RmYzAiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiQXV0b21vdGl2ZSAmIE1vdG9yY3ljbGUiLCJ0ZXh0X2FsaWduIjoibGVmdCJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\"]tt<div class=\"elementor-element elementor-element-5603a87 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\" data-id=\"5603a87\" data-element_type=\"widget\" data-widget_type=\"image-gallery.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-image-gallery\">nttt<div id=\'gallery-1\' class=\'gallery galleryid-2126 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWI2Mjc3NTE2NjIyMTQxYjY4MTc4ZjY2YmViYWFkZDkzby5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Ab6277516622141b68178f66bebaadd93o.jpg_350x350.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Ab6277516622141b68178f66bebaadd93o.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTQ5NjllZjIzNDNhMjQ0NjA4Y2M1MTFkMWU3YmUyOGUyWC5wbmdfMzUweDM1MC5wbmciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A4969ef2343a244608cc511d1e7be28e2X.png_350x350.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A4969ef2343a244608cc511d1e7be28e2X.png_350x350.png\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvSDliZTY0NjE0OTRjZjRmZTc5OTgxOTJkYzQ4MzA2NmM5di5wbmdfMzUweDM1MC5wbmciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/H9be6461494cf4fe7998192dc483066c9v.png_350x350.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/H9be6461494cf4fe7998192dc483066c9v.png_350x350.png\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvSDRjYmFjNDdhZTZjZjQ3MDViOTY2NjY4Y2ExYWJhZDUwOS5wbmdfMzUweDM1MC5wbmciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/H4cbac47ae6cf4705b966668ca1abad509.png_350x350.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/H4cbac47ae6cf4705b966668ca1abad509.png_350x350.png\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvSDZjMDBiZDIzN2Q4YjQ2ZDRiMDZhMWNjNmVmNzZhY2NmRS5wbmdfMzUweDM1MC5wbmciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/H6c00bd237d8b46d4b06a1cc6ef76accfE.png_350x350.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/H6c00bd237d8b46d4b06a1cc6ef76accfE.png_350x350.png\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvSDcxYWJlN2E3NjNhMzQ1YWU4N2RjZjcwYzI1YTcwYTMyTS5wbmdfMzUweDM1MC5wbmciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/H71abe7a763a345ae87dcf70c25a70a32M.png_350x350.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/H71abe7a763a345ae87dcf70c25a70a32M.png_350x350.png\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/2.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/2.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTA0NWZlNDUzNDU2NjQzOTRhMmE4MDQ5OWI0YmQyMTE3aS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A045fe45345664394a2a80499b4bd2117i.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A045fe45345664394a2a80499b4bd2117i.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTg2ZTAzOWRmMWM5ZDRlODA5ZWE1M2RmZDY3NmJhNjdhTy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A86e039df1c9d4e809ea53dfd676ba67aO.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A86e039df1c9d4e809ea53dfd676ba67aO.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTc4NmRjNDI3YWY0NjQ1N2VhOTIzYzQxZWE3Njg4ZjY3US5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A786dc427af46457ea923c41ea7688f67Q.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A786dc427af46457ea923c41ea7688f67Q.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvNi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/6.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/6.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTJlZDVhNWMzZjhmNTQ0Yzg5MTBhM2ZlMjlkYTVlMjk4NC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A2ed5a5c3f8f544c8910a3fe29da5e2984.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A2ed5a5c3f8f544c8910a3fe29da5e2984.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTNjODA2NDY4NTRjZDQ0MDFiNmI3MzdhODBlOGUyOWYyWi5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A3c80646854cd4401b6b737a80e8e29f2Z.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A3c80646854cd4401b6b737a80e8e29f2Z.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTUzZjk0ZmZmYTBlNjRiYThhNDczMzBlODVhMTc5MjE0bC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A53f94fffa0e64ba8a47330e85a179214l.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A53f94fffa0e64ba8a47330e85a179214l.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWE1NTlhYWE4ZThkNDQ4NjhiNzAwOTY3ZTE4MjYzMWUwTy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Aa559aaa8e8d44868b700967e182631e0O.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Aa559aaa8e8d44868b700967e182631e0O.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvNC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/4.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/4.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTI5MjA5ZmNhMTRlMzQ5MTI4NmE3YWUyYTdkNTM1MDY2dC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A29209fca14e3491286a7ae2a7d535066t.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A29209fca14e3491286a7ae2a7d535066t.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWZkNmU1MDE4ZDU0YTRjMzE5YjQ5NDFhZjU3ZTM4ZmMxZS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Afd6e5018d54a4c319b4941af57e38fc1e.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Afd6e5018d54a4c319b4941af57e38fc1e.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTg2MjZkZjVhZTg5YzQ1ODQ4NGNiZGVhYjZiMGEyNzY4RS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A8626df5ae89c458484cbdeab6b0a2768E.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A8626df5ae89c458484cbdeab6b0a2768E.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWVjMmE0Y2Q4OTVlNjQ4YjZiYzcxNzRkODY0ZTEwMzMyOS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Aec2a4cd895e648b6bc7174d864e103329.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Aec2a4cd895e648b6bc7174d864e103329.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/1.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/1.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTVmYTcxYjBlZGRmNjQ4MDQ5YzVmMzNkMzMxNzM4NDYwbS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A5fa71b0eddf648049c5f33d331738460m.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A5fa71b0eddf648049c5f33d331738460m.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTliYzE4NzI2OTdkNjQ5ZTdhMjhkMTRjNDhjZDZiNzFicS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A9bc1872697d649e7a28d14c48cd6b71bq.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A9bc1872697d649e7a28d14c48cd6b71bq.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWQwYzc4MmI4NDYxNTQ4NGQ4MzAzYWQ5NjRjZDMwMmE0Qy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Ad0c782b84615484d8303ad964cd302a4C.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Ad0c782b84615484d8303ad964cd302a4C.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWVjM2Y0NGQyYzBjZjQ1MzY4NzBiMTkwOTdiNTAzNWY0QS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Aec3f44d2c0cf4536870b19097b5035f4A.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Aec3f44d2c0cf4536870b19097b5035f4A.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvOC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/8.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/8.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTVkZjYxOWNlODllYzQyMTg5YTVjNGQwNWJiYmE0ZjJkdy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A5df619ce89ec42189a5c4d05bbba4f2dw.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A5df619ce89ec42189a5c4d05bbba4f2dw.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTkyMDcwMTU1OThhZTQ3ZTRiYTU3ZDVkNjc1NWE3OTQ1Si5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A9207015598ae47e4ba57d5d6755a7945J.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A9207015598ae47e4ba57d5d6755a7945J.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWE2NzUxNGNhMTUzYTQzMjA4NjEyNjExYWYxNWFlNjg5dC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Aa67514ca153a43208612611af15ae689t.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Aa67514ca153a43208612611af15ae689t.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWM4YzU3YWY1N2ZjMDRhOWI4YWZiY2Y1MjE0ZDhiMTI1YS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Ac8c57af57fc04a9b8afbcf5214d8b125a.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Ac8c57af57fc04a9b8afbcf5214d8b125a.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWVhMWEyZWE2YzlkMDRiNzg5NzdkMWU4YzkwN2U3MjFjUi5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Aea1a2ea6c9d04b78977d1e8c907e721cR.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Aea1a2ea6c9d04b78977d1e8c907e721cR.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvNS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/5.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/5.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvNy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/7.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/7.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTRmYTIyYjNkYjQ3MDQxNDVhOWM4ZjJiNmQ0MTNiNGI3WS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A4fa22b3db4704145a9c8f2b6d413b4b7Y.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A4fa22b3db4704145a9c8f2b6d413b4b7Y.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQThjZmExNTRjYTcwYTQ2YzU5NjVlOTkzMjU1YjUzZWNiZy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A8cfa154ca70a46c5965e993255b53ecbg.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A8cfa154ca70a46c5965e993255b53ecbg.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTk2N2M2MzRhNTE3YzQ4ZjM4YzIzZDQ3NjZkYjViYmExYS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A967c634a517c48f38c23d4766db5bba1a.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A967c634a517c48f38c23d4766db5bba1a.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTQ2MjQxM2I2ZGUyYjQwMWJhNjBlOTliYmUxZDE1ZTMzSy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A462413b6de2b401ba60e99bbe1d15e33K.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A462413b6de2b401ba60e99bbe1d15e33K.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTY2MTM5OTE0MmE3MjQ3Mjc4YmJmNjlhOWQ2MDA3NTU2Vy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A661399142a7247278bbf69a9d6007556W.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A661399142a7247278bbf69a9d6007556W.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvMTAuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/10.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/10.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTE2ZWI3MWY1NDZjNDRjNGJhMDBjNmFmZTQ2NDY0ZDU5My5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A16eb71f546c44c4ba00c6afe46464d593.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A16eb71f546c44c4ba00c6afe46464d593.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTcyYTIxYmE5NjljODRiOThiNjNiOTg1MzgwYjk3ZWY1Ty5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A72a21ba969c84b98b63b985380b97ef5O.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A72a21ba969c84b98b63b985380b97ef5O.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTk5NTc0ZWJlMWE2YzQzMmFiZWJiOTE2ODBlM2UyMjdlMC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A99574ebe1a6c432abebb91680e3e227e0.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A99574ebe1a6c432abebb91680e3e227e0.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWM2ZDlhM2I3OWE5MDRlZWI5YzkyNWFmYTM3NGVjNTNhQS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Ac6d9a3b79a904eeb9c925afa374ec53aA.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Ac6d9a3b79a904eeb9c925afa374ec53aA.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWRlZjA1YzMyMTIxOTRmMjU5ZjE1NTZjZDUwODFhYjNlZy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Adef05c3212194f259f1556cd5081ab3eg.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Adef05c3212194f259f1556cd5081ab3eg.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvMy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/3.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/3.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvOS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/9.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/9.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTI2OGFhOGY5YjY1YzRjZGY5ZjQ1ZTU5NGYyY2Q4YWQ0TS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A268aa8f9b65c4cdf9f45e594f2cd8ad4M.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A268aa8f9b65c4cdf9f45e594f2cd8ad4M.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTg2NDQzMmYyNTcxNzQzNjg5MzQyYWUxNzNlZTlkYzlmZC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A864432f2571743689342ae173ee9dc9fd.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A864432f2571743689342ae173ee9dc9fd.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWJkNDM4NTFjOTI2NTRiZDk5Y2ZkY2E0NWQ4OTZmYmNiQi5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Abd43851c92654bd99cfdca45d896fbcbB.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Abd43851c92654bd99cfdca45d896fbcbB.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWNkZDEyMjYyOThkZDQ2MTNhYmYwMjFiZGNhYWQzMjBiMC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Acdd1226298dd4613abf021bdcaad320b0.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Acdd1226298dd4613abf021bdcaad320b0.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWU5MWJmN2Y1MWRiMzQwMmViYWZmNjEwYzI5OWU5YWFjRi5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Ae91bf7f51db3402ebaff610c299e9aacF.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Ae91bf7f51db3402ebaff610c299e9aacF.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTA1ZjE4ZDQ3ZTcwOTQ4YWU4Nzk1MTExZDA1NWY0MmZhMi5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A05f18d47e70948ae8795111d055f42fa2.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A05f18d47e70948ae8795111d055f42fa2.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTVjMzc3OTJmMzg0MzQzODhhMDJhMDQ3OWZjYmM0MTIzVC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A5c37792f38434388a02a0479fcbc4123T.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A5c37792f38434388a02a0479fcbc4123T.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQThjNDIwOTkyZjQ3NzQ1NTA5ZjRmMjkyYWM3YmQyMjU4SC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A8c420992f47745509f4f292ac7bd2258H.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A8c420992f47745509f4f292ac7bd2258H.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTEwMDFlNjNlYTU5MTQ5ZjhhODFhYmI5MmQ1ZDVmZTcxMy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A1001e63ea59149f8a81abb92d5d5fe713.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A1001e63ea59149f8a81abb92d5d5fe713.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTM2MzQ2Zjg4MWIxMDQ5OTZiNmMwNzBiNWQyY2ViZmY4dS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A36346f881b104996b6c070b5d2cebff8u.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A36346f881b104996b6c070b5d2cebff8u.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTE1NzE4M2MwN2E3NjRlYjg5NTdiYzRjZDEzOTgyODA4aS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A157183c07a764eb8957bc4cd13982808i.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A157183c07a764eb8957bc4cd13982808i.jpg_350x350.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure>ntt</div>ntt</div>ntttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImRlYzQzMjUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiQ05DIE1hY2hpbmVkIFBhcnRzIiwidGV4dF9hbGlnbiI6ImxlZnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-1852cc9 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\" data-id=\"1852cc9\" data-element_type=\"widget\" data-widget_type=\"image-gallery.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-image-gallery\">nttt<div id=\'gallery-2\' class=\'gallery galleryid-2126 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rNS5qcGciLCJzbGlkZXNob3ciOiIxODUyY2M5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok5.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok5.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rNC5wbmciLCJzbGlkZXNob3ciOiIxODUyY2M5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok4.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok4.png\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW1hY2hpbmUyMi5hdmlmIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-machine22.avif\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-machine22.avif\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW1hY2hpbmUzLmpwZyIsInNsaWRlc2hvdyI6IjE4NTJjYzkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-machine3.jpg\'><img width=\"150\" height=\"100\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-machine3.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rMy5wbmciLCJzbGlkZXNob3ciOiIxODUyY2M5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok3.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok3.png\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rMS5wbmciLCJzbGlkZXNob3ciOiIxODUyY2M5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok1.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok1.png\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rMi5wbmciLCJzbGlkZXNob3ciOiIxODUyY2M5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok2.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok2.png\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rNy5wbmciLCJzbGlkZXNob3ciOiIxODUyY2M5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok7.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok7.png\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rOS5qcGciLCJzbGlkZXNob3ciOiIxODUyY2M5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok9.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok9.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rOC5qcGciLCJzbGlkZXNob3ciOiIxODUyY2M5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok8.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok8.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejU3MDk0NDM0NzY3OTdfY2IzZTllMGQ1OTZhZDYzMzEzNjZiOGE3MTFmNDY5MjYuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z5709443476797_cb3e9e0d596ad6331366b8a711f46926.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z5709443476797_cb3e9e0d596ad6331366b8a711f46926.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure>ntt</div>ntt</div>ntttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImFiODFjZGEiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiU2hlZXQgTWV0YWwgJiBGYWJyaWNhdGlvbiIsInRleHRfYWxpZ24iOiJsZWZ0In0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"]tt<div class=\"elementor-element elementor-element-cd9dba9 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\" data-id=\"cd9dba9\" data-element_type=\"widget\" data-widget_type=\"image-gallery.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-image-gallery\">nttt<div id=\'gallery-3\' class=\'gallery galleryid-2126 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWwxLmpwZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal1.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal1.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWwzLmpwZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal3.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal3.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw0LmpwZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal4.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal4.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw1LmpwZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal5.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal5.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw3LmpwZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal7.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal7.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw4LmpwZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal8.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal8.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw5LmpwZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal9.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal9.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWwxMC5qcGciLCJzbGlkZXNob3ciOiJjZDlkYmE5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal10.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal10.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWwyLnBuZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal2.png\'><img width=\"84\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal2.png\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw2LmpwZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal6.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal6.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure>ntt</div>ntt</div>ntttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImJjZDA3NGMiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiTW9sZCAmIERpZSBDb21wb25lbnRzIiwidGV4dF9hbGlnbiI6ImxlZnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-7eb3b87 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\" data-id=\"7eb3b87\" data-element_type=\"widget\" data-widget_type=\"image-gallery.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-image-gallery\">nttt<div id=\'gallery-4\' class=\'gallery galleryid-2126 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzYxNjUzNzJfODI1NjkzMjRkZTFjOGZjYzM3NmNjMGU3MzdjMDUyMGUuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzY0NTU3NzVfOTdhOTM3ODA3YzgwN2JmNzEzNjk0MTlhMGE1ZDNkMmMuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\'><img width=\"68\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzU4OTM2OTJfNDhmNGE5ZjdjN2E5ZDA1ZGMwMzdhODBhYzFlNTc4MmIuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzYwMDk1MTRfYWQ5MDg4N2YyNWQ3MzRlYzJkMjFkOGE2YTYzNGZmMmQuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzY3MjE1ODZfMTZiOTE5ODQyMGIzOTlmOWQ4MmMwNThkOTA4MmEzZTAuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzYxMTA0MjZfYzNlY2UzZWM1NmY5ZThjYzBlNWM5YTk4Zjk3OTJiZmMuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure>ntt</div>ntt</div>ntttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6ImQwYjI3ZDciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiSW5kdXN0cmlhbCBGYXN0ZW5lcnMgJiBCb2x0IiwidGV4dF9hbGlnbiI6ImxlZnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-3dcc60b gallery-spacing-custom elementor-widget elementor-widget-image-gallery\" data-id=\"3dcc60b\" data-element_type=\"widget\" data-widget_type=\"image-gallery.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-image-gallery\">nttt<div id=\'gallery-5\' class=\'gallery galleryid-2126 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3dcc60b\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvSU1HXzEyMzcuanBlZyIsInNsaWRlc2hvdyI6IjNkY2M2MGIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/IMG_1237.jpeg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/IMG_1237.jpeg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3dcc60b\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvRFNDMDA4MjIuanBnIiwic2xpZGVzaG93IjoiM2RjYzYwYiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/DSC00822.jpg\'><img width=\"150\" height=\"100\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/DSC00822.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure>ntt</div>ntt</div>ntttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6IjJmOWI3MTYiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiVG9vbCIsInRleHRfYWxpZ24iOiJsZWZ0In0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\"]tt<div class=\"elementor-element elementor-element-a165f68 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\" data-id=\"a165f68\" data-element_type=\"widget\" data-widget_type=\"image-gallery.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-image-gallery\">nttt<div id=\'gallery-6\' class=\'gallery galleryid-2126 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwMTgzMzRfMTdjNWZhYzk2ZmIyODQzZDc0YTc2Y2M3OWY5YjRmNWMuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\'><img width=\"150\" height=\"135\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwMzczNTNfZGI4NzczMmIzZWE5ZDkzNTM2YmNkM2FlYzY0ODM1YTcuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNTkxNjJfMDUzYjM2NGFiNzYxZGM1YTQ0Mjc5ZmFmNjQzOTUzMjQuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\'><img width=\"70\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNzgzNzJfNTBhYmNlNTI0OWM4YWNkY2ZiZGY4YTA2MzQ4OWUxODYuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNzg1NzBfMGFiNThiNDZiZjY4M2RmNmVjZGIyYzJkODc5NDViYTYuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\'><img width=\"150\" height=\"129\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon landscape\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk2ODQ5NDkwODZfYjI5ZmRiNTAxMTRhMTk2Y2MzZmRjYzllMTJjYWYxMDUuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\'><img width=\"150\" height=\"128\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk2ODQ5NDY2NDFfMTUwMGZiZTE2ZmVjM2ExNGVhZGI4ZTRhZWQxY2Y2M2YuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure>ntt</div>ntt</div>ntttt</div>ntttt</div>ntt[elementor-element data=\"eyJpZCI6IjFlZjg0OTEiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiSmlnIiwidGV4dF9hbGlnbiI6ImxlZnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\"]tt<div class=\"elementor-element elementor-element-09a76d6 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\" data-id=\"09a76d6\" data-element_type=\"widget\" data-widget_type=\"image-gallery.default\">ntttt<div class=\"elementor-widget-container\">nttttt<div class=\"elementor-image-gallery\">nttt<div id=\'gallery-7\' class=\'gallery galleryid-2126 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NDY1OTEzMzg2ODdfZmE1MTRlMTY0ZjJlZTk5NjFjZmVlY2U5YjJhMjk2MmUuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTE0ODI0OTc5ODFfNGZlOGQ1MmM3N2ZiOTcwYWNjYWNhOTkzMTFiM2U1YjguanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNTQzNzc3MTM5OTRfNzMxZjNhYzFmN2YzMjMyNjExMWE0MWY2N2Q0YTJlMzMuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE2NTM3NjdfNzk3Y2FkYTk3Yjk4NjQyZTYyYzkxODU3YzYwYjViNDQuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure><figure class=\'gallery-item\'>nttt<div class=\'gallery-icon portrait\'>ntttt<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NDY1OTEzNDkxOTRfZDUwMTBkMTcwMGM3Y2ViNDkxYjk3OGIwMWJlM2RkMjguanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>nttt</div></figure>ntt</div>ntt</div>ntttt</div>ntttt</div>nttttt</div>ntttt</div>ntt\",\"scripts\":[],\"styles\":[]}}'),(11156,3345,'_elementor_css','a:6:{s:4:\"time\";i:1742279863;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:\"\";}'),(11157,2126,'_elementor_css','a:6:{s:4:\"time\";i:1742279867;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:\"\";}'),(11158,2126,'_elementor_element_cache','{\"timeout\":1746565808,\"value\":{\"content\":\"<div class=\\\"elementor-element elementor-element-fcff723 e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"fcff723\\\" data-element_type=\\\"container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t[elementor-element data=\\\"eyJpZCI6ImRlZTQxYjAiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlIjoiT3VyIHN0cmVuZ3RoIGxpZXMgaW4gbWFzcyBwcm9kdWN0aW9uIG9mIGFsdW1pbnVtIGFuZCBzdGVlbC4gV2UgZXhjZWwgaW4gaW5ub3ZhdGlvbiBhbmQgZGVsaXZlciBoaWdoLXZhbHVlIHByb2R1Y3RzIHRvIG91ciBjdXN0b21lcnMuIiwidGl0bGVfdGFnIjoiaDUiLCJ0ZXh0X2FsaWduIjoiY2VudGVyIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\\\"][elementor-element data=\\\"eyJpZCI6IjM3M2RmYzAiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiQXV0b21vdGl2ZSAmIE1vdG9yY3ljbGUiLCJ0ZXh0X2FsaWduIjoibGVmdCJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-5603a87 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\\\" data-id=\\\"5603a87\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"image-gallery.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-image-gallery\\\">\\n\\t\\t\\t<div id=\'gallery-1\' class=\'gallery galleryid-2126 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"5603a87\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMwOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTE2ZWI3MWY1NDZjNDRjNGJhMDBjNmFmZTQ2NDY0ZDU5My0xLmpwZ18zNTB4MzUwLTEuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A16eb71f546c44c4ba00c6afe46464d593-1.jpg_350x350-1.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A16eb71f546c44c4ba00c6afe46464d593-1.jpg_350x350-1.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"5603a87\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMxMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTcyYTIxYmE5NjljODRiOThiNjNiOTg1MzgwYjk3ZWY1Ty0xLmpwZ18zNTB4MzUwLTEuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A72a21ba969c84b98b63b985380b97ef5O-1.jpg_350x350-1.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A72a21ba969c84b98b63b985380b97ef5O-1.jpg_350x350-1.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"5603a87\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMxMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWM2ZDlhM2I3OWE5MDRlZWI5YzkyNWFmYTM3NGVjNTNhQS0xLmpwZ18zNTB4MzUwLTEuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Ac6d9a3b79a904eeb9c925afa374ec53aA-1.jpg_350x350-1.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Ac6d9a3b79a904eeb9c925afa374ec53aA-1.jpg_350x350-1.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"5603a87\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMxMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvMy0xLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/3-1.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/3-1.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"5603a87\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMxMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvOS0xLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/9-1.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/9-1.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"5603a87\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMxNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTI2OGFhOGY5YjY1YzRjZGY5ZjQ1ZTU5NGYyY2Q4YWQ0TS0xLmpwZ18zNTB4MzUwLTEuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A268aa8f9b65c4cdf9f45e594f2cd8ad4M-1.jpg_350x350-1.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A268aa8f9b65c4cdf9f45e594f2cd8ad4M-1.jpg_350x350-1.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"5603a87\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMxNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTg2NDQzMmYyNTcxNzQzNjg5MzQyYWUxNzNlZTlkYzlmZC0xLmpwZ18zNTB4MzUwLTEuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A864432f2571743689342ae173ee9dc9fd-1.jpg_350x350-1.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A864432f2571743689342ae173ee9dc9fd-1.jpg_350x350-1.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"5603a87\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMxNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWJkNDM4NTFjOTI2NTRiZDk5Y2ZkY2E0NWQ4OTZmYmNiQi0xLmpwZ18zNTB4MzUwLTEuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Abd43851c92654bd99cfdca45d896fbcbB-1.jpg_350x350-1.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Abd43851c92654bd99cfdca45d896fbcbB-1.jpg_350x350-1.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"5603a87\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMxNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTEwMDFlNjNlYTU5MTQ5ZjhhODFhYmI5MmQ1ZDVmZTcxMy0xLmpwZ18zNTB4MzUwLTEuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A1001e63ea59149f8a81abb92d5d5fe713-1.jpg_350x350-1.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A1001e63ea59149f8a81abb92d5d5fe713-1.jpg_350x350-1.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"5603a87\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMxOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTM2MzQ2Zjg4MWIxMDQ5OTZiNmMwNzBiNWQyY2ViZmY4dS0xLmpwZ18zNTB4MzUwLTEuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A36346f881b104996b6c070b5d2cebff8u-1.jpg_350x350-1.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A36346f881b104996b6c070b5d2cebff8u-1.jpg_350x350-1.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"5603a87\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMxOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTE1NzE4M2MwN2E3NjRlYjg5NTdiYzRjZDEzOTgyODA4aS0xLmpwZ18zNTB4MzUwLTEuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A157183c07a764eb8957bc4cd13982808i-1.jpg_350x350-1.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A157183c07a764eb8957bc4cd13982808i-1.jpg_350x350-1.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"5603a87\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMyMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTQ5NjllZjIzNDNhMjQ0NjA4Y2M1MTFkMWU3YmUyOGUyWC0xLnBuZ18zNTB4MzUwLTEucG5nIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A4969ef2343a244608cc511d1e7be28e2X-1.png_350x350-1.png\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A4969ef2343a244608cc511d1e7be28e2X-1.png_350x350-1.png\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"5603a87\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMyMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvSDliZTY0NjE0OTRjZjRmZTc5OTgxOTJkYzQ4MzA2NmM5di0xLnBuZ18zNTB4MzUwLTEucG5nIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/H9be6461494cf4fe7998192dc483066c9v-1.png_350x350-1.png\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/H9be6461494cf4fe7998192dc483066c9v-1.png_350x350-1.png\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"5603a87\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMyMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvSDRjYmFjNDdhZTZjZjQ3MDViOTY2NjY4Y2ExYWJhZDUwOS0xLnBuZ18zNTB4MzUwLTEucG5nIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/H4cbac47ae6cf4705b966668ca1abad509-1.png_350x350-1.png\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/H4cbac47ae6cf4705b966668ca1abad509-1.png_350x350-1.png\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"5603a87\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMyMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvSDZjMDBiZDIzN2Q4YjQ2ZDRiMDZhMWNjNmVmNzZhY2NmRS0xLnBuZ18zNTB4MzUwLTEucG5nIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/H6c00bd237d8b46d4b06a1cc6ef76accfE-1.png_350x350-1.png\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/H6c00bd237d8b46d4b06a1cc6ef76accfE-1.png_350x350-1.png\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"5603a87\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMyNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvSDcxYWJlN2E3NjNhMzQ1YWU4N2RjZjcwYzI1YTcwYTMyTS0xLnBuZ18zNTB4MzUwLTEucG5nIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/H71abe7a763a345ae87dcf70c25a70a32M-1.png_350x350-1.png\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/H71abe7a763a345ae87dcf70c25a70a32M-1.png_350x350-1.png\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"5603a87\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMyNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvMi0xLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/2-1.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/2-1.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"5603a87\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMyNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTc4NmRjNDI3YWY0NjQ1N2VhOTIzYzQxZWE3Njg4ZjY3US0xLmpwZ18zNTB4MzUwLTEuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A786dc427af46457ea923c41ea7688f67Q-1.jpg_350x350-1.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A786dc427af46457ea923c41ea7688f67Q-1.jpg_350x350-1.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"5603a87\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMyNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTJlZDVhNWMzZjhmNTQ0Yzg5MTBhM2ZlMjlkYTVlMjk4NC0xLmpwZ18zNTB4MzUwLTEuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A2ed5a5c3f8f544c8910a3fe29da5e2984-1.jpg_350x350-1.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A2ed5a5c3f8f544c8910a3fe29da5e2984-1.jpg_350x350-1.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"5603a87\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMyOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTUzZjk0ZmZmYTBlNjRiYThhNDczMzBlODVhMTc5MjE0bC0xLmpwZ18zNTB4MzUwLTEuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A53f94fffa0e64ba8a47330e85a179214l-1.jpg_350x350-1.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A53f94fffa0e64ba8a47330e85a179214l-1.jpg_350x350-1.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"5603a87\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMyOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWE1NTlhYWE4ZThkNDQ4NjhiNzAwOTY3ZTE4MjYzMWUwTy0xLmpwZ18zNTB4MzUwLTEuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Aa559aaa8e8d44868b700967e182631e0O-1.jpg_350x350-1.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Aa559aaa8e8d44868b700967e182631e0O-1.jpg_350x350-1.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"5603a87\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMzMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvNC0xLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/4-1.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/4-1.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"5603a87\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMzMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTg2MjZkZjVhZTg5YzQ1ODQ4NGNiZGVhYjZiMGEyNzY4RS0xLmpwZ18zNTB4MzUwLTEuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A8626df5ae89c458484cbdeab6b0a2768E-1.jpg_350x350-1.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A8626df5ae89c458484cbdeab6b0a2768E-1.jpg_350x350-1.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"5603a87\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMzMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvMS0xLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/1-1.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/1-1.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"5603a87\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMzMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTVmYTcxYjBlZGRmNjQ4MDQ5YzVmMzNkMzMxNzM4NDYwbS0xLmpwZ18zNTB4MzUwLTEuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A5fa71b0eddf648049c5f33d331738460m-1.jpg_350x350-1.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A5fa71b0eddf648049c5f33d331738460m-1.jpg_350x350-1.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"5603a87\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMzNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTVkZjYxOWNlODllYzQyMTg5YTVjNGQwNWJiYmE0ZjJkdy0xLmpwZ18zNTB4MzUwLTEuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A5df619ce89ec42189a5c4d05bbba4f2dw-1.jpg_350x350-1.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A5df619ce89ec42189a5c4d05bbba4f2dw-1.jpg_350x350-1.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"5603a87\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMzNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWVhMWEyZWE2YzlkMDRiNzg5NzdkMWU4YzkwN2U3MjFjUi0xLmpwZ18zNTB4MzUwLTEuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Aea1a2ea6c9d04b78977d1e8c907e721cR-1.jpg_350x350-1.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Aea1a2ea6c9d04b78977d1e8c907e721cR-1.jpg_350x350-1.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"5603a87\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMzNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvNS0xLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/5-1.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/5-1.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"5603a87\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMzOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvNy0xLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/7-1.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/7-1.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"5603a87\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMzOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTk2N2M2MzRhNTE3YzQ4ZjM4YzIzZDQ3NjZkYjViYmExYS0xLmpwZ18zNTB4MzUwLTEuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A967c634a517c48f38c23d4766db5bba1a-1.jpg_350x350-1.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A967c634a517c48f38c23d4766db5bba1a-1.jpg_350x350-1.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"5603a87\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzM0MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTQ2MjQxM2I2ZGUyYjQwMWJhNjBlOTliYmUxZDE1ZTMzSy0xLmpwZ18zNTB4MzUwLTEuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A462413b6de2b401ba60e99bbe1d15e33K-1.jpg_350x350-1.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A462413b6de2b401ba60e99bbe1d15e33K-1.jpg_350x350-1.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"5603a87\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzM0MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTY2MTM5OTE0MmE3MjQ3Mjc4YmJmNjlhOWQ2MDA3NTU2Vy0xLmpwZ18zNTB4MzUwLTEuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A661399142a7247278bbf69a9d6007556W-1.jpg_350x350-1.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A661399142a7247278bbf69a9d6007556W-1.jpg_350x350-1.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"5603a87\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzM0MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvMTAtMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/10-1.jpg\'><img width=\\\"150\\\" height=\\\"113\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/10-1.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure>\\n\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element data=\\\"eyJpZCI6ImRlYzQzMjUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiQ05DIE1hY2hpbmVkIFBhcnRzIiwidGV4dF9hbGlnbiI6ImxlZnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-1852cc9 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\\\" data-id=\\\"1852cc9\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"image-gallery.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-image-gallery\\\">\\n\\t\\t\\t<div id=\'gallery-2\' class=\'gallery galleryid-2126 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon portrait\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"1852cc9\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rNS5qcGciLCJzbGlkZXNob3ciOiIxODUyY2M5In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok5.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok5.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"1852cc9\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rNC5wbmciLCJzbGlkZXNob3ciOiIxODUyY2M5In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok4.png\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok4.png\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"1852cc9\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW1hY2hpbmUyMi5hdmlmIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-machine22.avif\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-machine22.avif\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"1852cc9\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW1hY2hpbmUzLmpwZyIsInNsaWRlc2hvdyI6IjE4NTJjYzkifQ%3D%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-machine3.jpg\'><img width=\\\"150\\\" height=\\\"100\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-machine3.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"1852cc9\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rMy5wbmciLCJzbGlkZXNob3ciOiIxODUyY2M5In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok3.png\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok3.png\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"1852cc9\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rMS5wbmciLCJzbGlkZXNob3ciOiIxODUyY2M5In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok1.png\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok1.png\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"1852cc9\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rMi5wbmciLCJzbGlkZXNob3ciOiIxODUyY2M5In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok2.png\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok2.png\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"1852cc9\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rNy5wbmciLCJzbGlkZXNob3ciOiIxODUyY2M5In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok7.png\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok7.png\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"1852cc9\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rOS5qcGciLCJzbGlkZXNob3ciOiIxODUyY2M5In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok9.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok9.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"1852cc9\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rOC5qcGciLCJzbGlkZXNob3ciOiIxODUyY2M5In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok8.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok8.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon portrait\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"1852cc9\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejU3MDk0NDM0NzY3OTdfY2IzZTllMGQ1OTZhZDYzMzEzNjZiOGE3MTFmNDY5MjYuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z5709443476797_cb3e9e0d596ad6331366b8a711f46926.jpg\'><img width=\\\"113\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z5709443476797_cb3e9e0d596ad6331366b8a711f46926.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure>\\n\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element data=\\\"eyJpZCI6ImFiODFjZGEiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiU2hlZXQgTWV0YWwgJiBGYWJyaWNhdGlvbiIsInRleHRfYWxpZ24iOiJsZWZ0In0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-cd9dba9 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\\\" data-id=\\\"cd9dba9\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"image-gallery.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-image-gallery\\\">\\n\\t\\t\\t<div id=\'gallery-3\' class=\'gallery galleryid-2126 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"cd9dba9\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWwxLmpwZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal1.jpg\'><img width=\\\"150\\\" height=\\\"84\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal1.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"cd9dba9\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWwzLmpwZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal3.jpg\'><img width=\\\"150\\\" height=\\\"84\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal3.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"cd9dba9\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw0LmpwZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal4.jpg\'><img width=\\\"150\\\" height=\\\"84\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal4.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"cd9dba9\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw1LmpwZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal5.jpg\'><img width=\\\"150\\\" height=\\\"113\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal5.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"cd9dba9\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw3LmpwZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal7.jpg\'><img width=\\\"150\\\" height=\\\"113\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal7.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"cd9dba9\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw4LmpwZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal8.jpg\'><img width=\\\"150\\\" height=\\\"113\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal8.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon portrait\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"cd9dba9\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw5LmpwZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal9.jpg\'><img width=\\\"113\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal9.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon portrait\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"cd9dba9\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWwxMC5qcGciLCJzbGlkZXNob3ciOiJjZDlkYmE5In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal10.jpg\'><img width=\\\"113\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal10.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon portrait\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"cd9dba9\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWwyLnBuZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal2.png\'><img width=\\\"84\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal2.png\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon portrait\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"cd9dba9\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw2LmpwZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal6.jpg\'><img width=\\\"113\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal6.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure>\\n\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element data=\\\"eyJpZCI6ImJjZDA3NGMiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiTW9sZCAmIERpZSBDb21wb25lbnRzIiwidGV4dF9hbGlnbiI6ImxlZnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-7eb3b87 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\\\" data-id=\\\"7eb3b87\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"image-gallery.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-image-gallery\\\">\\n\\t\\t\\t<div id=\'gallery-4\' class=\'gallery galleryid-2126 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon portrait\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"7eb3b87\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzYxNjUzNzJfODI1NjkzMjRkZTFjOGZjYzM3NmNjMGU3MzdjMDUyMGUuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\'><img width=\\\"113\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon portrait\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"7eb3b87\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzY0NTU3NzVfOTdhOTM3ODA3YzgwN2JmNzEzNjk0MTlhMGE1ZDNkMmMuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\'><img width=\\\"68\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon portrait\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"7eb3b87\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzU4OTM2OTJfNDhmNGE5ZjdjN2E5ZDA1ZGMwMzdhODBhYzFlNTc4MmIuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\'><img width=\\\"113\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon portrait\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"7eb3b87\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzYwMDk1MTRfYWQ5MDg4N2YyNWQ3MzRlYzJkMjFkOGE2YTYzNGZmMmQuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\'><img width=\\\"113\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon portrait\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"7eb3b87\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzY3MjE1ODZfMTZiOTE5ODQyMGIzOTlmOWQ4MmMwNThkOTA4MmEzZTAuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\'><img width=\\\"113\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon portrait\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"7eb3b87\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzYxMTA0MjZfYzNlY2UzZWM1NmY5ZThjYzBlNWM5YTk4Zjk3OTJiZmMuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\'><img width=\\\"113\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure>\\n\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element data=\\\"eyJpZCI6ImQwYjI3ZDciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiSW5kdXN0cmlhbCBGYXN0ZW5lcnMgJiBCb2x0IiwidGV4dF9hbGlnbiI6ImxlZnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-3dcc60b gallery-spacing-custom elementor-widget elementor-widget-image-gallery\\\" data-id=\\\"3dcc60b\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"image-gallery.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-image-gallery\\\">\\n\\t\\t\\t<div id=\'gallery-5\' class=\'gallery galleryid-2126 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"3dcc60b\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvSU1HXzEyMzcuanBlZyIsInNsaWRlc2hvdyI6IjNkY2M2MGIifQ%3D%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/IMG_1237.jpeg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/IMG_1237.jpeg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"3dcc60b\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvRFNDMDA4MjIuanBnIiwic2xpZGVzaG93IjoiM2RjYzYwYiJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/DSC00822.jpg\'><img width=\\\"150\\\" height=\\\"100\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/DSC00822.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure>\\n\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element data=\\\"eyJpZCI6IjJmOWI3MTYiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiVG9vbCIsInRleHRfYWxpZ24iOiJsZWZ0In0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-a165f68 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\\\" data-id=\\\"a165f68\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"image-gallery.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-image-gallery\\\">\\n\\t\\t\\t<div id=\'gallery-6\' class=\'gallery galleryid-2126 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"a165f68\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwMTgzMzRfMTdjNWZhYzk2ZmIyODQzZDc0YTc2Y2M3OWY5YjRmNWMuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\'><img width=\\\"150\\\" height=\\\"135\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"a165f68\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwMzczNTNfZGI4NzczMmIzZWE5ZDkzNTM2YmNkM2FlYzY0ODM1YTcuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon portrait\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"a165f68\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNTkxNjJfMDUzYjM2NGFiNzYxZGM1YTQ0Mjc5ZmFmNjQzOTUzMjQuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\'><img width=\\\"70\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"a165f68\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNzgzNzJfNTBhYmNlNTI0OWM4YWNkY2ZiZGY4YTA2MzQ4OWUxODYuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"a165f68\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNzg1NzBfMGFiNThiNDZiZjY4M2RmNmVjZGIyYzJkODc5NDViYTYuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\'><img width=\\\"150\\\" height=\\\"129\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"a165f68\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk2ODQ5NDkwODZfYjI5ZmRiNTAxMTRhMTk2Y2MzZmRjYzllMTJjYWYxMDUuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\'><img width=\\\"150\\\" height=\\\"128\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon portrait\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"a165f68\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk2ODQ5NDY2NDFfMTUwMGZiZTE2ZmVjM2ExNGVhZGI4ZTRhZWQxY2Y2M2YuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\'><img width=\\\"113\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure>\\n\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element data=\\\"eyJpZCI6IjFlZjg0OTEiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiSmlnIiwidGV4dF9hbGlnbiI6ImxlZnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-09a76d6 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\\\" data-id=\\\"09a76d6\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"image-gallery.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-image-gallery\\\">\\n\\t\\t\\t<div id=\'gallery-7\' class=\'gallery galleryid-2126 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon portrait\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"09a76d6\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NDY1OTEzMzg2ODdfZmE1MTRlMTY0ZjJlZTk5NjFjZmVlY2U5YjJhMjk2MmUuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\'><img width=\\\"113\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon portrait\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"09a76d6\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTE0ODI0OTc5ODFfNGZlOGQ1MmM3N2ZiOTcwYWNjYWNhOTkzMTFiM2U1YjguanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\'><img width=\\\"113\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon portrait\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"09a76d6\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNTQzNzc3MTM5OTRfNzMxZjNhYzFmN2YzMjMyNjExMWE0MWY2N2Q0YTJlMzMuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\'><img width=\\\"113\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon portrait\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"09a76d6\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE2NTM3NjdfNzk3Y2FkYTk3Yjk4NjQyZTYyYzkxODU3YzYwYjViNDQuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\'><img width=\\\"113\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon portrait\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"09a76d6\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NDY1OTEzNDkxOTRfZDUwMTBkMTcwMGM3Y2ViNDkxYjk3OGIwMWJlM2RkMjguanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\'><img width=\\\"113\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure>\\n\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\",\"scripts\":[],\"styles\":[]}}'),(11159,26,'_elementor_css','a:6:{s:4:\"time\";i:1742287822;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(11160,26,'_elementor_element_cache','{\"timeout\":1746522431,\"value\":{\"content\":\"        <section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-c986484 elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"c986484\\\" data-element_type=\\\"section\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-ab9e3e7\\\" data-id=\\\"ab9e3e7\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6IjJjYzdhNzgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IldlIHNhdGlzZnkgeW91IHdpdGggaW5ub3ZhdGl2ZSBpZGVhcyBhbmQgcXVhbGl0eSB3b3JrLiIsInRpdGxlX3NwYWNlX2JvdHRvbSI6eyJ1bml0IjoicHgiLCJzaXplIjoyMywic2l6ZXMiOltdfSwic3ViX3RpdGxlIjoiQWJvdXQgdXMiLCJzdWJfdGl0bGVfc3BhY2VfYm90dG9tIjp7InVuaXQiOiJweCIsInNpemUiOjYsInNpemVzIjpbXX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-c469998 elementor-widget elementor-widget-text-editor\\\" data-id=\\\"c469998\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>We exceed expectations through innovative ideas and exceptional craftsmanship.<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t        <section class=\\\"elementor-section elementor-inner-section elementor-element elementor-element-11334c5 elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"11334c5\\\" data-element_type=\\\"section\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-2442360\\\" data-id=\\\"2442360\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        \\t\\t<div class=\\\"elementor-element elementor-element-4d195ec elementor-widget elementor-widget-image\\\" data-id=\\\"4d195ec\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"59\\\" height=\\\"58\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-01.png\\\" class=\\\"attachment-full size-full wp-image-612\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element data=\\\"eyJpZCI6ImIyMTA3ZTciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IlRpbWUgbWFuYWdlIiwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MjAsInNpemVzIjpbXX0sInRpdGxlX3NwYWNlX2JvdHRvbSI6eyJ1bml0IjoicHgiLCJzaXplIjoxOCwic2l6ZXMiOltdfSwidGV4dF9hbGlnbiI6ImNlbnRlciJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-c366e73 elementor-widget elementor-widget-text-editor\\\" data-id=\\\"c366e73\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>Efficiently organizing tasks to maximize productivity and meet deadlines.<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t            <\\/div>\\n        <\\/div>\\n                <div class=\\\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-7d099fe\\\" data-id=\\\"7d099fe\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        \\t\\t<div class=\\\"elementor-element elementor-element-6c4ae19 elementor-widget elementor-widget-image\\\" data-id=\\\"6c4ae19\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"55\\\" height=\\\"58\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-02.png\\\" class=\\\"attachment-full size-full wp-image-613\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element data=\\\"eyJpZCI6IjliYTI0YTUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkZ1bGZpbGwgdGFyZ2V0IiwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MjAsInNpemVzIjpbXX0sInRpdGxlX3NwYWNlX2JvdHRvbSI6eyJ1bml0IjoicHgiLCJzaXplIjoxOCwic2l6ZXMiOltdfSwidGV4dF9hbGlnbiI6ImNlbnRlciJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-bdc9adf elementor-widget elementor-widget-text-editor\\\" data-id=\\\"bdc9adf\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>Achieving goals with precision and commitment, ensuring success.<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                    <\\/div>\\n        <\\/div>\\n                <div class=\\\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-3ba92fc\\\" data-id=\\\"3ba92fc\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6IjJhZTRmYWUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJpbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yMjE4MjMxLndlYnAiLCJpZCI6MjUwMywiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2Jhbm5lciJ9\\\"][elementor-element data=\\\"eyJpZCI6IjBjNDA2ZjkiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJpbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzExXC9zaWduYXR1cmUxLnBuZyIsImlkIjoyNTM4LCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJ0aXRsZSI6IlRpbiBMdXUiLCJkZXNjIjoiKENoYWlybWFuIGFuZCBmb3VuZGVyKSIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMjEiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3Rfc2lnbmF0dXJlIn0=\\\"]            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                <section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-3328b5d elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"3328b5d\\\" data-element_type=\\\"section\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-2933d62\\\" data-id=\\\"2933d62\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6IjFhMDNjMGIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IldhbnQgdG8ga25vdyBtb3JlIGFib3V0IHVzPyIsImRlc2MiOiJKdXN0IGRvd25sb2FkIGJyb2NodXJlLi4uIiwiYnRuX3RleHQiOiJEb3dubG9hZCBCcm9jaHVyZSIsImJ0bl9pY29uIjp7InZhbHVlIjoiZmFzIGZhLWNsb3VkLWRvd25sb2FkLWFsdCIsImxpYnJhcnkiOiJmYS1zb2xpZCJ9LCJidG5fbGluayI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjVcLzAzXC9wcm9maWxlLnBkZiIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIiwiY3VzdG9tX2F0dHJpYnV0ZXMiOiIifX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2N0YSJ9\\\"]            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                <section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-a158a9e elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"a158a9e\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n                            <div class=\\\"elementor-background-overlay\\\"><\\/div>\\n                \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-30c4d43\\\" data-id=\\\"30c4d43\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n                <section class=\\\"elementor-section elementor-inner-section elementor-element elementor-element-7a3aa06 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"7a3aa06\\\" data-element_type=\\\"section\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-ba6ff94\\\" data-id=\\\"ba6ff94\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6Ijc4Y2JiYjZmIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJGYXIgRWFzdCBIaWdoIFRlY2ggaXMgYSBwcm9mZXNzaW9uYWwgYnVpbGRlciBjb21wYW55Iiwic3ViX3RpdGxlIjoiQ29tcGFueSBoaXN0b3J5IiwidGl0bGVfY29sb3IiOiIjZmZmZmZmIiwic3ViX3RpdGxlX2NvbG9yIjoiI2EwYTBhMCIsInN1Yl90aXRsZV9zcGFjZV9ib3R0b20iOnsidW5pdCI6InB4Iiwic2l6ZSI6Niwic2l6ZXMiOltdfX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\\\"]            <\\/div>\\n        <\\/div>\\n                <div class=\\\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-0de7bd2\\\" data-id=\\\"0de7bd2\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        \\t\\t<div class=\\\"elementor-element elementor-element-7398b831 elementor-widget elementor-widget-text-editor\\\" data-id=\\\"7398b831\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>Far East High Tech is a leading company in building and manufacturing high-quality mechanical solutions.<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n        [elementor-element data=\\\"eyJpZCI6ImU5YTg4M2UiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJzdGFydF90ZXh0IjoiU3RhcnQiLCJlbmRfaW1hZ2UiOnsidXJsIjoiIiwiaWQiOiIiLCJzaXplIjoiIiwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSJ9LCJoaXN0b3J5IjpbeyJfaWQiOiI3ZDgyNjUxIiwidGl0bGUiOiIyMHRoIE5vdiwgMjAxOCIsImNvbnRlbnQiOiJGYXIgRWFzdCBUZWNoIHdhcyBlc3RhYmxpc2hlZCBpbiBRdVx1MWViZiBWXHUwMGY1LCBCXHUxZWFmYyBOaW5oIHdpdGggNSBmb3VuZGluZyBtZW1iZXJzLiJ9LHsiX2lkIjoiMzdlYjVmOSIsInRpdGxlIjoiMXN0IEFwciwgMjAyMSIsImNvbnRlbnQiOiJXaXRoIHRoZSBzdHJvbmcgZ3Jvd3RoIG9mIEZhciBFYXN0IFRlY2gsIHdlIGRlY2lkZWQgdG8gZXhwYW5kIG91ciBicmFuY2ggaW4gdGhlIFNvdXRoLiJ9LHsiX2lkIjoiMmU3ZWJiZiIsInRpdGxlIjoiMzB0aCBBcHIsIDIwMjEiLCJjb250ZW50IjoiV2Ugc3VjY2Vzc2Z1bGx5IGFjcXVpcmVkIERNTSBQcmVjaXNpb24gRW5naW5lZXJpbmcgQ28uLCBMdGQuIGluIEJcdTAwZWNuaCBEXHUwMWIwXHUwMWExbmcsIGEgY29tcGFueSB3aXRoIGV4cGVyaWVuY2UgaW4gZXhwb3J0aW5nIGdvb2RzIHRvIEphcGFuIHNpbmNlIDIwMTYsXG5hbmQgdGh1cywgd2UgZXN0YWJsaXNoZWQgYSBtYWNoaW5pbmcgY29tcGFueSBpbiB0aGUgc291dGhlcm4gcmVnaW9uLiJ9LHsiX2lkIjoiNmM0OWY0YyIsInRpdGxlIjoiMXN0IEp1biwgMjAyMiIsImNvbnRlbnQiOiJGYXIgRWFzdCBUZWNoIHRvb2sgYSBzaWduaWZpY2FudCBzdGVwIGluIGluZHVzdHJpYWwtc2NhbGUgcHJvZHVjdGlvbiB3aXRoIGEgMjAwMG0yIHdvcmtzaG9wIGFuZCA3MCBDTkMgbWFjaGluZXMgaW4gQlx1MWVhZmMgTmluaC4ifSx7Il9pZCI6ImRlNDg2MDAiLCJ0aXRsZSI6IjIwMjQiLCJjb250ZW50IjoiRE1NIFByZWNpc2lvbiBFbmdpbmVlcmluZyBDby4sIEx0ZC4gb2ZmaWNpYWxseSBjaGFuZ2VkIGl0cyBuYW1lIHRvIEZhciBFYXN0IEhpZ2ggVGVjaCBDby4sIEx0ZC5cbkFmdGVyIDIwMjU6IFRoaXMgd2lsbCBiZSBhIHllYXIgb2Ygc3Ryb25nIGRldmVsb3BtZW50IGZvciBvdXIgY29tcGFueSB0ZWFtLiJ9XX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hpc3RvcnkifQ==\\\"]            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n        \",\"scripts\":[],\"styles\":[]}}'),(11161,3033,'_elementor_css','a:6:{s:4:\"time\";i:1742289421;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:\"\";}'),(11162,3033,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:18:\"widget-google_maps\";i:1;s:18:\"widget-text-editor\";}}'),(11163,3033,'_elementor_element_cache','{\"timeout\":1746546110,\"value\":{\"content\":\"        <section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-253fe5b elementor-section-stretched elementor-section-full_width elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"253fe5b\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;}\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-default \\\">\\n                    <div class=\\\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-a2a8d03\\\" data-id=\\\"a2a8d03\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        \\t\\t<div class=\\\"elementor-element elementor-element-c431857 elementor-widget elementor-widget-google_maps\\\" data-id=\\\"c431857\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"google_maps.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-custom-embed\\\">\\n\\t\\t\\t<iframe loading=\\\"lazy\\\"\\n\\t\\t\\t\\t\\tsrc=\\\"https:\\/\\/maps.google.com\\/maps?q=43%20%C4%91%C6%B0%E1%BB%9Dng%20s%E1%BB%91%204%2C%20KP2%2C%20P.%20B%C3%ACnh%20Chi%E1%BB%83u%2C%20TP.%20Th%E1%BB%A7%20%C4%90%E1%BB%A9c%2C%20TPHCM&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\\\"\\n\\t\\t\\t\\t\\ttitle=\\\"43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\\\"\\n\\t\\t\\t\\t\\taria-label=\\\"43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\\\"\\n\\t\\t\\t><\\/iframe>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                <section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-d10974f elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"d10974f\\\" data-element_type=\\\"section\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-dbae7b2\\\" data-id=\\\"dbae7b2\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n                <section class=\\\"elementor-section elementor-inner-section elementor-element elementor-element-2f7cb3c elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"2f7cb3c\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-c3d8771\\\" data-id=\\\"c3d8771\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6IjFiYmUwZmQiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkhcdTAwZTN5IHRob1x1MWVhM2kgbVx1MDBlMWkgbGlcdTAwZWFuIGhcdTFlYzcgdlx1MWVkYmkgY2hcdTAwZmFuZyB0XHUwMGY0aSBcdTAxMTFcdTFlYzMgZ2lcdTFlYTNpIHF1eVx1MWViZnQgbVx1MWVjZGkgdlx1MWVhNW4gXHUwMTExXHUxZWMxISIsInN1Yl90aXRsZSI6IkNvbnRhY3QgdXMiLCJ0aXRsZV9zcGFjZV9ib3R0b20iOnsidW5pdCI6InB4Iiwic2l6ZSI6NTAsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjoyNiwic2l6ZXMiOltdfX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\\\"][elementor-element data=\\\"eyJpZCI6IjE0N2Q1ZmYiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250YWN0X2luZm8iOlt7ImNvbnRlbnQiOiJTXHUxZWQxIDQzLCBcdTAxMTBcdTAxYjBcdTFlZGRuZyBzXHUxZWQxIDQsIEtodSBwaFx1MWVkMSAyLCBQaFx1MDFiMFx1MWVkZG5nIEJcdTAwZWNuaCBDaGlcdTFlYzN1LCBUaFx1MDBlMG5oIHBoXHUxZWQxIFRoXHUxZWU3IFx1MDExMFx1MWVlOWMsIFRQLiBIXHUxZWQzIENoXHUwMGVkIE1pbmgiLCJjdF9pY29uIjp7InZhbHVlIjoiZmFzIGZhLXN0b3JlLWFsdCIsImxpYnJhcnkiOiJmYS1zb2xpZCJ9LCJfaWQiOiIzOGU0MzM0IiwidGl0bGUiOiJcdTAxMTBcdTFlY2JhIGNoXHUxZWM5IHZcdTAxMDNuIHBoXHUwMGYybmcgY2hcdTAwZWRuaCBjXHUxZWU3YSBjaFx1MDBmYW5nIHRcdTAwZjRpOiIsImljb25fdHlwZSI6ImltYWdlIiwiaWNvbl9pbWFnZSI6eyJ1cmwiOiJodHRwOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAxOVwvMTFcL2luZm8taWNvbi0wMS5wbmciLCJpZCI6Mjc5fX0seyJjb250ZW50IjoiMDk2ODg2MDM4NiIsImN0X2ljb24iOnsidmFsdWUiOiJmYXMgZmEtc3RvcmUtYWx0IiwibGlicmFyeSI6ImZhLXNvbGlkIn0sIl9pZCI6ImY5OGNjNGUiLCJ0aXRsZSI6IkdcdTFlY2RpIFx1MDExMVx1MWVjMyBcdTAxMTFcdTAxYjBcdTFlZTNjIGdpXHUwMGZhcCBcdTAxMTFcdTFlZTE6IiwiaWNvbl90eXBlIjoiaW1hZ2UiLCJpY29uX2ltYWdlIjp7InVybCI6Imh0dHA6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDE5XC8xMVwvaW5mby1pY29uLTAyLnBuZyIsImlkIjoyODB9fSx7ImNvbnRlbnQiOiJsdXV0aW4ubm1wY29AZ21haWwuY29tIiwiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZhcyBmYS1zdG9yZS1hbHQiLCJsaWJyYXJ5IjoiZmEtc29saWQifSwidGl0bGUiOiJHXHUxZWVkaSBlbWFpbCBjaG8gY2hcdTAwZmFuZyB0XHUwMGY0aSBcdTAxMTFcdTFlYzMgYmlcdTFlYmZ0IHRoXHUwMGVhbSB0aFx1MDBmNG5nIHRpbjoiLCJpY29uX3R5cGUiOiJpbWFnZSIsImljb25faW1hZ2UiOnsidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMTlcLzExXC9pbmZvLWljb24tMDMucG5nIiwiaWQiOjI4MSwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwiX2lkIjoiYjJiNzQzZSJ9XSwibGF5b3V0IjoiMiJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9jb250YWN0X2luZm8ifQ==\\\"]            <\\/div>\\n        <\\/div>\\n                <div class=\\\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-c443a53\\\" data-id=\\\"c443a53\\\" data-element_type=\\\"column\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6IjFiNTljNDUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkxpXHUwMGVhbiBoXHUxZWM3IHZcdTFlZGJpIGNoXHUwMGZhbmcgdFx1MDBmNGkhIiwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzIsInNpemVzIjpbXX0sInRpdGxlX3NwYWNlX2JvdHRvbSI6eyJ1bml0IjoicHgiLCJzaXplIjoxNSwic2l6ZXMiOltdfX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-44b4987 elementor-widget elementor-widget-text-editor\\\" data-id=\\\"44b4987\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>N\\u1ebfu b\\u1ea1n c\\u00f3 c\\u00e2u h\\u1ecfi ho\\u1eb7c mu\\u1ed1n t\\u00ecm hi\\u1ec3u th\\u00eam v\\u1ec1 d\\u1ecbch v\\u1ee5 c\\u1ee7a ch\\u00fang t\\u00f4i, \\u0111\\u1eebng ng\\u1ea7n ng\\u1ea1i li\\u00ean h\\u1ec7. Ch\\u00fang t\\u00f4i lu\\u00f4n s\\u1eb5n s\\u00e0ng gi\\u00fap \\u0111\\u1ee1!<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element data=\\\"eyJpZCI6Ijg1NjA5YTEiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjdGY3X2lkIjoiOTEifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY3RmNyJ9\\\"]            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                    <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n        \",\"scripts\":[],\"styles\":[]}}'),(11164,24,'_elementor_css','a:6:{s:4:\"time\";i:1742292445;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:\"\";}'),(11165,24,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:18:\"widget-google_maps\";i:1;s:18:\"widget-text-editor\";}}'),(11166,24,'_elementor_element_cache','{\"timeout\":1746524998,\"value\":{\"content\":\"        <section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-253fe5b elementor-section-stretched elementor-section-full_width elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"253fe5b\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;}\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-default \\\">\\n                    <div class=\\\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-a2a8d03\\\" data-id=\\\"a2a8d03\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        \\t\\t<div class=\\\"elementor-element elementor-element-c431857 elementor-widget elementor-widget-google_maps\\\" data-id=\\\"c431857\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"google_maps.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-custom-embed\\\">\\n\\t\\t\\t<iframe loading=\\\"lazy\\\"\\n\\t\\t\\t\\t\\tsrc=\\\"https:\\/\\/maps.google.com\\/maps?q=43%20%C4%91%C6%B0%E1%BB%9Dng%20s%E1%BB%91%204%2C%20KP2%2C%20P.%20B%C3%ACnh%20Chi%E1%BB%83u%2C%20TP.%20Th%E1%BB%A7%20%C4%90%E1%BB%A9c%2C%20TPHCM&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\\\"\\n\\t\\t\\t\\t\\ttitle=\\\"43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\\\"\\n\\t\\t\\t\\t\\taria-label=\\\"43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\\\"\\n\\t\\t\\t><\\/iframe>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                <section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-d10974f elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"d10974f\\\" data-element_type=\\\"section\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-dbae7b2\\\" data-id=\\\"dbae7b2\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n                <section class=\\\"elementor-section elementor-inner-section elementor-element elementor-element-2f7cb3c elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"2f7cb3c\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-c3d8771\\\" data-id=\\\"c3d8771\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6IjFiYmUwZmQiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkZlZWwgZnJlZSB0byBjb250YWN0IHVzIHRvIHNvbHZlIGFueSBwcm9ibGVtISIsInN1Yl90aXRsZSI6IkNvbnRhY3QgdXMiLCJ0aXRsZV9zcGFjZV9ib3R0b20iOnsidW5pdCI6InB4Iiwic2l6ZSI6NTAsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjoyNiwic2l6ZXMiOltdfX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\\\"][elementor-element data=\\\"eyJpZCI6IjE0N2Q1ZmYiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250YWN0X2luZm8iOlt7ImNvbnRlbnQiOiI0MyBTdHJlZXQgTm8uIDQsIFF1YXJ0ZXIgMiwgQmluaCBDaGlldSBXYXJkLCBUaHUgRHVjIENpdHksIEhvIENoaSBNaW5oIENpdHkiLCJjdF9pY29uIjp7InZhbHVlIjoiZmFzIGZhLXN0b3JlLWFsdCIsImxpYnJhcnkiOiJmYS1zb2xpZCJ9LCJfaWQiOiIzOGU0MzM0IiwidGl0bGUiOiJPdXIgaGVhZCBvZmZpY2UgYWRkcmVzczoiLCJpY29uX3R5cGUiOiJpbWFnZSIsImljb25faW1hZ2UiOnsidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMTlcLzExXC9pbmZvLWljb24tMDEucG5nIiwiaWQiOjI3OX19LHsiY29udGVudCI6IjA5Njg4NjAzODYiLCJjdF9pY29uIjp7InZhbHVlIjoiZmFzIGZhLXN0b3JlLWFsdCIsImxpYnJhcnkiOiJmYS1zb2xpZCJ9LCJfaWQiOiJmOThjYzRlIiwidGl0bGUiOiJDYWxsIGZvciBoZWxwOiIsImljb25fdHlwZSI6ImltYWdlIiwiaWNvbl9pbWFnZSI6eyJ1cmwiOiJodHRwOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAxOVwvMTFcL2luZm8taWNvbi0wMi5wbmciLCJpZCI6MjgwfX0seyJjb250ZW50IjoibHV1dGluLm5tcGNvQGdtYWlsLmNvbSIsImN0X2ljb24iOnsidmFsdWUiOiJmYXMgZmEtc3RvcmUtYWx0IiwibGlicmFyeSI6ImZhLXNvbGlkIn0sInRpdGxlIjoiTWFpbCB1cyBmb3IgaW5mb3JtYXRpb246IiwiaWNvbl90eXBlIjoiaW1hZ2UiLCJpY29uX2ltYWdlIjp7InVybCI6Imh0dHA6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDE5XC8xMVwvaW5mby1pY29uLTAzLnBuZyIsImlkIjoyODEsImFsdCI6IiIsInNvdXJjZSI6ImxpYnJhcnkiLCJzaXplIjoiIn0sIl9pZCI6ImIyYjc0M2UifV0sImxheW91dCI6IjIifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY29udGFjdF9pbmZvIn0=\\\"]            <\\/div>\\n        <\\/div>\\n                <div class=\\\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-c443a53\\\" data-id=\\\"c443a53\\\" data-element_type=\\\"column\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6IjFiNTljNDUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkdldCBpbiB0b3VjaCEiLCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfc2l6ZSI6eyJ1bml0IjoicHgiLCJzaXplIjozMiwic2l6ZXMiOltdfSwidGl0bGVfc3BhY2VfYm90dG9tIjp7InVuaXQiOiJweCIsInNpemUiOjE1LCJzaXplcyI6W119fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-44b4987 elementor-widget elementor-widget-text-editor\\\" data-id=\\\"44b4987\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>If you have questions or want to learn more about our services, don\\u2019t hesitate to reach out. We\\u2019re here to help!<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element data=\\\"eyJpZCI6Ijg1NjA5YTEiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjdGY3X2lkIjoiOTEifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY3RmNyJ9\\\"]            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                    <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n        \",\"scripts\":[],\"styles\":[]}}'),(11167,3038,'_elementor_css','a:6:{s:4:\"time\";i:1742315547;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:\"\";}'),(11168,3038,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:18:\"widget-google_maps\";i:1;s:18:\"widget-text-editor\";}}'),(11169,3038,'_elementor_element_cache','{\"timeout\":1746541661,\"value\":{\"content\":\"        <section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-253fe5b elementor-section-stretched elementor-section-full_width elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"253fe5b\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;}\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-default \\\">\\n                    <div class=\\\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-a2a8d03\\\" data-id=\\\"a2a8d03\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        \\t\\t<div class=\\\"elementor-element elementor-element-c431857 elementor-widget elementor-widget-google_maps\\\" data-id=\\\"c431857\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"google_maps.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-custom-embed\\\">\\n\\t\\t\\t<iframe loading=\\\"lazy\\\"\\n\\t\\t\\t\\t\\tsrc=\\\"https:\\/\\/maps.google.com\\/maps?q=43%20%C4%91%C6%B0%E1%BB%9Dng%20s%E1%BB%91%204%2C%20KP2%2C%20P.%20B%C3%ACnh%20Chi%E1%BB%83u%2C%20TP.%20Th%E1%BB%A7%20%C4%90%E1%BB%A9c%2C%20TPHCM&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\\\"\\n\\t\\t\\t\\t\\ttitle=\\\"43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\\\"\\n\\t\\t\\t\\t\\taria-label=\\\"43 \\u0111\\u01b0\\u1eddng s\\u1ed1 4, KP2, P. B\\u00ecnh Chi\\u1ec3u, TP. Th\\u1ee7 \\u0110\\u1ee9c, TPHCM\\\"\\n\\t\\t\\t><\\/iframe>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                <section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-d10974f elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"d10974f\\\" data-element_type=\\\"section\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-dbae7b2\\\" data-id=\\\"dbae7b2\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n                <section class=\\\"elementor-section elementor-inner-section elementor-element elementor-element-2f7cb3c elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"2f7cb3c\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-c3d8771\\\" data-id=\\\"c3d8771\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6IjFiYmUwZmQiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1MzA2OVx1MzA5M1x1MzA2YVx1NTU0Zlx1OTg0Y1x1MzA2N1x1MzA4Mlx1ODllM1x1NmM3YVx1MzA1OVx1MzA4Ylx1MzA1Zlx1MzA4MVx1MzA2Ylx1MzAwMVx1MzA0YVx1NmMxN1x1OGVmZFx1MzA2Ylx1MzA1NFx1OTAyM1x1N2Q2MVx1MzA0Zlx1MzA2MFx1MzA1NVx1MzA0NFx1ZmYwMSIsInN1Yl90aXRsZSI6IkNvbnRhY3QgdXMiLCJ0aXRsZV9zcGFjZV9ib3R0b20iOnsidW5pdCI6InB4Iiwic2l6ZSI6NTAsInNpemVzIjpbXX0sInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplX3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjoyNiwic2l6ZXMiOltdfX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\\\"][elementor-element data=\\\"eyJpZCI6IjE0N2Q1ZmYiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250YWN0X2luZm8iOlt7ImNvbnRlbnQiOiJcdTMwZGJcdTMwZmNcdTMwYzFcdTMwZGZcdTMwZjNcdTVlMDJcdTMwMDFcdTMwYjlcdTMwZmNcdTMwYzlcdTMwYTVcdTMwYzNcdTMwYWZcdTVlMDJcdTMwMDFcdTMwZDNcdTMwZjNcdTMwYzFcdTMwZTVcdTMwZmNcdTUzM2FcdTMwMDEyXHU1MzNhXHU4ODU3XHU5MDUzNFx1NzU2YVx1NTczMDQzIiwiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZhcyBmYS1zdG9yZS1hbHQiLCJsaWJyYXJ5IjoiZmEtc29saWQifSwiX2lkIjoiMzhlNDMzNCIsInRpdGxlIjoiXHU2NzJjXHU3OTNlXHUzMDZlXHU0ZjRmXHU2MjQwXHVmZjFhIiwiaWNvbl90eXBlIjoiaW1hZ2UiLCJpY29uX2ltYWdlIjp7InVybCI6Imh0dHA6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDE5XC8xMVwvaW5mby1pY29uLTAxLnBuZyIsImlkIjoyNzl9fSx7ImNvbnRlbnQiOiIwOTY4ODYwMzg2IiwiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZhcyBmYS1zdG9yZS1hbHQiLCJsaWJyYXJ5IjoiZmEtc29saWQifSwiX2lkIjoiZjk4Y2M0ZSIsInRpdGxlIjoiXHUzMGI1XHUzMGRkXHUzMGZjXHUzMGM4XHUzMDkyXHU1NDdjXHUzMDc2XHVmZjFhIiwiaWNvbl90eXBlIjoiaW1hZ2UiLCJpY29uX2ltYWdlIjp7InVybCI6Imh0dHA6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDE5XC8xMVwvaW5mby1pY29uLTAyLnBuZyIsImlkIjoyODB9fSx7ImNvbnRlbnQiOiJsdXV0aW4ubm1wY29AZ21haWwuY29tIiwiY3RfaWNvbiI6eyJ2YWx1ZSI6ImZhcyBmYS1zdG9yZS1hbHQiLCJsaWJyYXJ5IjoiZmEtc29saWQifSwidGl0bGUiOiJcdTYwYzVcdTU4MzFcdTMwNmJcdTMwNjRcdTMwNDRcdTMwNjZcdTMwNmZcdTMwMDFcdTc5YzFcdTMwNWZcdTMwNjFcdTMwNmJcdTMwZTFcdTMwZmNcdTMwZWJcdTMwNTdcdTMwNjZcdTMwNGZcdTMwNjBcdTMwNTVcdTMwNDRcdWZmMWEiLCJpY29uX3R5cGUiOiJpbWFnZSIsImljb25faW1hZ2UiOnsidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMTlcLzExXC9pbmZvLWljb24tMDMucG5nIiwiaWQiOjI4MSwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwiX2lkIjoiYjJiNzQzZSJ9XSwibGF5b3V0IjoiMiJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9jb250YWN0X2luZm8ifQ==\\\"]            <\\/div>\\n        <\\/div>\\n                <div class=\\\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-c443a53\\\" data-id=\\\"c443a53\\\" data-element_type=\\\"column\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6IjFiNTljNDUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1MzA1NFx1OTAyM1x1N2Q2MVx1MzA0Zlx1MzA2MFx1MzA1NVx1MzA0NFx1ZmYwMSIsInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplIjp7InVuaXQiOiJweCIsInNpemUiOjMyLCJzaXplcyI6W119LCJ0aXRsZV9zcGFjZV9ib3R0b20iOnsidW5pdCI6InB4Iiwic2l6ZSI6MTUsInNpemVzIjpbXX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-44b4987 elementor-widget elementor-widget-text-editor\\\" data-id=\\\"44b4987\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>\\u8cea\\u554f\\u304c\\u3042\\u308b\\u5834\\u5408\\u3084\\u3001\\u79c1\\u305f\\u3061\\u306e\\u30b5\\u30fc\\u30d3\\u30b9\\u306b\\u3064\\u3044\\u3066\\u3082\\u3063\\u3068\\u77e5\\u308a\\u305f\\u3044\\u5834\\u5408\\u306f\\u3001\\u9060\\u616e\\u306a\\u304f\\u3054\\u9023\\u7d61\\u304f\\u3060\\u3055\\u3044\\u3002\\u304a\\u624b\\u4f1d\\u3044\\u3067\\u304d\\u308b\\u3053\\u3068\\u3092\\u697d\\u3057\\u307f\\u306b\\u3057\\u3066\\u3044\\u307e\\u3059\\uff01<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element data=\\\"eyJpZCI6Ijg1NjA5YTEiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjdGY3X2lkIjoiOTEifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY3RmNyJ9\\\"]            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                    <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n        \",\"scripts\":[],\"styles\":[]}}'),(11170,3022,'_elementor_css','a:6:{s:4:\"time\";i:1742324065;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(11171,3022,'_elementor_element_cache','{\"timeout\":1746556258,\"value\":{\"content\":\"        <section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-c986484 elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"c986484\\\" data-element_type=\\\"section\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-ab9e3e7\\\" data-id=\\\"ab9e3e7\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6IjJjYzdhNzgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkNoXHUwMGZhbmcgdFx1MDBmNGkgbFx1MDBlMG0gYlx1MWVhMW4gaFx1MDBlMGkgbFx1MDBmMm5nIHZcdTFlZGJpIG5oXHUxZWVmbmcgXHUwMGZkIHRcdTAxYjBcdTFlZGZuZyBzXHUwMGUxbmcgdFx1MWVhMW8gdlx1MDBlMCBjXHUwMGY0bmcgdmlcdTFlYzdjIGNoXHUxZWE1dCBsXHUwMWIwXHUxZWUzbmcuIiwidGl0bGVfc3BhY2VfYm90dG9tIjp7InVuaXQiOiJweCIsInNpemUiOjIzLCJzaXplcyI6W119LCJzdWJfdGl0bGUiOiJWXHUxZWMxIGNoXHUwMGZhbmcgdFx1MDBmNGkiLCJzdWJfdGl0bGVfc3BhY2VfYm90dG9tIjp7InVuaXQiOiJweCIsInNpemUiOjYsInNpemVzIjpbXX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-c469998 elementor-widget elementor-widget-text-editor\\\" data-id=\\\"c469998\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>Ch\\u00fang t\\u00f4i v\\u01b0\\u1ee3t qua mong \\u0111\\u1ee3i nh\\u1edd nh\\u1eefng \\u00fd t\\u01b0\\u1edfng s\\u00e1ng t\\u1ea1o v\\u00e0 tay ngh\\u1ec1 xu\\u1ea5t s\\u1eafc.<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t        <section class=\\\"elementor-section elementor-inner-section elementor-element elementor-element-11334c5 elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"11334c5\\\" data-element_type=\\\"section\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-2442360\\\" data-id=\\\"2442360\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        \\t\\t<div class=\\\"elementor-element elementor-element-4d195ec elementor-widget elementor-widget-image\\\" data-id=\\\"4d195ec\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"59\\\" height=\\\"58\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-01.png\\\" class=\\\"attachment-full size-full wp-image-612\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element data=\\\"eyJpZCI6ImIyMTA3ZTciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IlF1XHUxZWEzbiBsXHUwMGZkIHRoXHUxZWRkaSBnaWFuIiwidGl0bGVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MjAsInNpemVzIjpbXX0sInRpdGxlX3NwYWNlX2JvdHRvbSI6eyJ1bml0IjoicHgiLCJzaXplIjoxOCwic2l6ZXMiOltdfSwidGV4dF9hbGlnbiI6ImNlbnRlciJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-c366e73 elementor-widget elementor-widget-text-editor\\\" data-id=\\\"c366e73\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>T\\u1ed5 ch\\u1ee9c c\\u00f4ng vi\\u1ec7c hi\\u1ec7u qu\\u1ea3 \\u0111\\u1ec3 t\\u1ed1i \\u0111a h\\u00f3a n\\u0103ng su\\u1ea5t v\\u00e0 ho\\u00e0n th\\u00e0nh \\u0111\\u00fang h\\u1ea1n.<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t            <\\/div>\\n        <\\/div>\\n                <div class=\\\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-7d099fe\\\" data-id=\\\"7d099fe\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        \\t\\t<div class=\\\"elementor-element elementor-element-6c4ae19 elementor-widget elementor-widget-image\\\" data-id=\\\"6c4ae19\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"55\\\" height=\\\"58\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/icon-box-02.png\\\" class=\\\"attachment-full size-full wp-image-613\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element data=\\\"eyJpZCI6IjliYTI0YTUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkhvXHUwMGUwbiB0aFx1MDBlMG5oIG1cdTFlZTVjIHRpXHUwMGVhdSIsInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplIjp7InVuaXQiOiJweCIsInNpemUiOjIwLCJzaXplcyI6W119LCJ0aXRsZV9zcGFjZV9ib3R0b20iOnsidW5pdCI6InB4Iiwic2l6ZSI6MTgsInNpemVzIjpbXX0sInRleHRfYWxpZ24iOiJjZW50ZXIifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-bdc9adf elementor-widget elementor-widget-text-editor\\\" data-id=\\\"bdc9adf\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>\\u0110\\u1ea1t \\u0111\\u01b0\\u1ee3c m\\u1ee5c ti\\u00eau v\\u1edbi s\\u1ef1 ch\\u00ednh x\\u00e1c v\\u00e0 cam k\\u1ebft, \\u0111\\u1ea3m b\\u1ea3o th\\u00e0nh c\\u00f4ng.<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                    <\\/div>\\n        <\\/div>\\n                <div class=\\\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-3ba92fc\\\" data-id=\\\"3ba92fc\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6IjJhZTRmYWUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJpbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yMjE4MjMxLndlYnAiLCJpZCI6MjUwMywiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2Jhbm5lciJ9\\\"][elementor-element data=\\\"eyJpZCI6IjBjNDA2ZjkiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJpbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzExXC9zaWduYXR1cmUxLnBuZyIsImlkIjoyNTM4LCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJ0aXRsZSI6IlRpbiBMdXUiLCJkZXNjIjoiKENoXHUxZWU3IHRcdTFlY2JjaCB2XHUwMGUwIG5nXHUwMWIwXHUxZWRkaSBzXHUwMGUxbmcgbFx1MWVhZHApIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIyMSIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9zaWduYXR1cmUifQ==\\\"]            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                <section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-3328b5d elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"3328b5d\\\" data-element_type=\\\"section\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-2933d62\\\" data-id=\\\"2933d62\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6IjFhMDNjMGIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkJcdTFlYTFuIG11XHUxZWQxbiBiaVx1MWViZnQgdGhcdTAwZWFtIHZcdTFlYzEgY2hcdTAwZmFuZyB0XHUwMGY0aT8iLCJkZXNjIjoiQ2hcdTFlYzkgY1x1MWVhN24gdFx1MWVhM2kgYnJvY2h1cmUuLi4iLCJidG5fdGV4dCI6IlRcdTFlYTNpIEJyb2NodXJlIiwiYnRuX2ljb24iOnsidmFsdWUiOiJmYXMgZmEtY2xvdWQtZG93bmxvYWQtYWx0IiwibGlicmFyeSI6ImZhLXNvbGlkIn0sImJ0bl9saW5rIjp7InVybCI6Imh0dHBzOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNVwvMDNcL3Byb2ZpbGUucGRmIiwiaXNfZXh0ZXJuYWwiOiJvbiIsIm5vZm9sbG93Ijoib24iLCJjdXN0b21fYXR0cmlidXRlcyI6IiJ9fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfY3RhIn0=\\\"]            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                <section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-a158a9e elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"a158a9e\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n                            <div class=\\\"elementor-background-overlay\\\"><\\/div>\\n                \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-30c4d43\\\" data-id=\\\"30c4d43\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n                <section class=\\\"elementor-section elementor-inner-section elementor-element elementor-element-7a3aa06 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"7a3aa06\\\" data-element_type=\\\"section\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-ba6ff94\\\" data-id=\\\"ba6ff94\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6Ijc4Y2JiYjZmIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJGYXIgRWFzdCBIaWdoIFRlY2ggbFx1MDBlMCBtXHUxZWQ5dCBjXHUwMGY0bmcgdHkgeFx1MDBlMnkgZFx1MWVmMW5nIGNodXlcdTAwZWFuIG5naGlcdTFlYzdwLiIsInN1Yl90aXRsZSI6IkxcdTFlY2JjaCBzXHUxZWVkIGNcdTAwZjRuZyB0eSIsInRpdGxlX2NvbG9yIjoiI2ZmZmZmZiIsInN1Yl90aXRsZV9jb2xvciI6IiNhMGEwYTAiLCJzdWJfdGl0bGVfc3BhY2VfYm90dG9tIjp7InVuaXQiOiJweCIsInNpemUiOjYsInNpemVzIjpbXX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\\\"]            <\\/div>\\n        <\\/div>\\n                <div class=\\\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-0de7bd2\\\" data-id=\\\"0de7bd2\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        \\t\\t<div class=\\\"elementor-element elementor-element-7398b831 elementor-widget elementor-widget-text-editor\\\" data-id=\\\"7398b831\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>Far East High Tech l\\u00e0 c\\u00f4ng ty h\\u00e0ng \\u0111\\u1ea7u trong vi\\u1ec7c x\\u00e2y d\\u1ef1ng v\\u00e0 s\\u1ea3n xu\\u1ea5t c\\u00e1c gi\\u1ea3i ph\\u00e1p c\\u01a1 kh\\u00ed ch\\u1ea5t l\\u01b0\\u1ee3ng cao.<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n        [elementor-element data=\\\"eyJpZCI6ImU5YTg4M2UiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJzdGFydF90ZXh0IjoiU3RhcnQiLCJlbmRfaW1hZ2UiOnsidXJsIjoiIiwiaWQiOiIiLCJzaXplIjoiIiwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSJ9LCJoaXN0b3J5IjpbeyJfaWQiOiI3ZDgyNjUxIiwidGl0bGUiOiJOZ1x1MDBlMHkgMjAgdGhcdTAwZTFuZyAxMSwgMjAxOCIsImNvbnRlbnQiOiJGYXIgRWFzdCBUZWNoIFx1MDExMVx1MDFiMFx1MWVlM2MgdGhcdTAwZTBuaCBsXHUxZWFkcCB0XHUxZWExaSBRdVx1MWViZiBWXHUwMGY1LCBCXHUxZWFmYyBOaW5oIHZcdTFlZGJpIDUgdGhcdTAwZTBuaCB2aVx1MDBlYW4gc1x1MDBlMW5nIGxcdTFlYWRwLiJ9LHsiX2lkIjoiMzdlYjVmOSIsInRpdGxlIjoiTmdcdTAwZTB5IDEgdGhcdTAwZTFuZyA0LCAyMDIxIiwiY29udGVudCI6IlZcdTFlZGJpIHNcdTFlZjEgcGhcdTAwZTF0IHRyaVx1MWVjM24gbVx1MWVhMW5oIG1cdTFlYmQgY1x1MWVlN2EgRmFyIEVhc3QgVGVjaCwgY2hcdTAwZmFuZyB0XHUwMGY0aSBxdXlcdTFlYmZ0IFx1MDExMVx1MWVjYm5oIG1cdTFlZGYgclx1MWVkOW5nIGNoaSBuaFx1MDBlMW5oIHRcdTFlYTFpIG1pXHUxZWMxbiBOYW0uIn0seyJfaWQiOiIyZTdlYmJmIiwidGl0bGUiOiJOZ1x1MDBlMHkgMzAgdGhcdTAwZTFuZyA0LCAyMDIxIiwiY29udGVudCI6IkNoXHUwMGZhbmcgdFx1MDBmNGkgXHUwMTExXHUwMGUzIHRoXHUwMGUwbmggY1x1MDBmNG5nIHRyb25nIHZpXHUxZWM3YyB0aVx1MWViZnAgcXVcdTFlYTNuIGNcdTAwZjRuZyB0eSBETU0gUHJlY2lzaW9uIEVuZ2luZWVyaW5nIENvLiwgTHRkLiB0XHUxZWExaSBCXHUwMGVjbmggRFx1MDFiMFx1MDFhMW5nLCBtXHUxZWQ5dCBjXHUwMGY0bmcgdHkgY1x1MDBmMyBraW5oIG5naGlcdTFlYzdtIHh1XHUxZWE1dCBraFx1MWVhOXUgaFx1MDBlMG5nIGhcdTAwZjNhIHNhbmcgTmhcdTFlYWR0IEJcdTFlYTNuIHRcdTFlZWIgblx1MDEwM20gMjAxNiwgdlx1MDBlMCB0XHUxZWViIFx1MDExMVx1MDBmMywgY2hcdTAwZmFuZyB0XHUwMGY0aSBcdTAxMTFcdTAwZTMgdGhcdTAwZTBuaCBsXHUxZWFkcCBtXHUxZWQ5dCBjXHUwMGY0bmcgdHkgZ2lhIGNcdTAwZjRuZyB0XHUxZWExaSBraHUgdlx1MWVmMWMgbWlcdTFlYzFuIE5hbS4ifSx7Il9pZCI6IjZjNDlmNGMiLCJ0aXRsZSI6Ik5nXHUwMGUweSAxIHRoXHUwMGUxbmcgNiwgMjAyMiIsImNvbnRlbnQiOiJGYXIgRWFzdCBUZWNoIFx1MDExMVx1MDBlMyB0aVx1MWViZm4gbVx1MWVkOXQgYlx1MDFiMFx1MWVkYmMgcXVhbiB0clx1MWVjZG5nIHRyb25nIHNcdTFlYTNuIHh1XHUxZWE1dCBxdXkgbVx1MDBmNCBjXHUwMGY0bmcgbmdoaVx1MWVjN3Agdlx1MWVkYmkgbVx1MWVkOXQgeFx1MDFiMFx1MWVkZm5nIHNcdTFlYTNuIHh1XHUxZWE1dCByXHUxZWQ5bmcgMjAwMG0yIHZcdTAwZTAgNzAgbVx1MDBlMXkgQ05DIHRcdTFlYTFpIEJcdTFlYWZjIE5pbmguIn0seyJfaWQiOiJkZTQ4NjAwIiwidGl0bGUiOiIyMDI0IiwiY29udGVudCI6IkNcdTAwZjRuZyB0eSBETU0gUHJlY2lzaW9uIEVuZ2luZWVyaW5nIENvLiwgTHRkLiBjaFx1MDBlZG5oIHRoXHUxZWU5YyBcdTAxMTFcdTFlZDVpIHRcdTAwZWFuIHRoXHUwMGUwbmggQ1x1MDBmNG5nIHR5IFROSEggRmFyIEVhc3QgSGlnaCBUZWNoLlxuU2F1IG5cdTAxMDNtIDIwMjU6IFx1MDExMFx1MDBlMnkgc1x1MWViZCBsXHUwMGUwIG5cdTAxMDNtIHBoXHUwMGUxdCB0cmlcdTFlYzNuIG1cdTFlYTFuaCBtXHUxZWJkIGNcdTFlZTdhIFx1MDExMVx1MWVkOWkgbmdcdTAxNjkgY1x1MDBmNG5nIHR5IGNoXHUwMGZhbmcgdFx1MDBmNGkuIn1dfSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGlzdG9yeSJ9\\\"]            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n        \",\"scripts\":[],\"styles\":[]}}'),(11172,3014,'_elementor_css','a:6:{s:4:\"time\";i:1742325039;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:\"\";}'),(11173,3014,'_elementor_page_assets','a:2:{s:6:\"styles\";a:1:{i:0;s:18:\"widget-text-editor\";}s:7:\"scripts\";a:6:{i:0;s:12:\"imagesloaded\";i:1;s:7:\"isotope\";i:2;s:25:\"ct-post-masonry-widget-js\";i:3;s:22:\"ct-post-grid-widget-js\";i:4;s:12:\"jquery-slick\";i:5;s:25:\"ct-clients-list-widget-js\";}}'),(11174,3014,'_elementor_element_cache','{\"timeout\":1746541652,\"value\":{\"content\":\"        <section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-5ebd4da3 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"5ebd4da3\\\" data-element_type=\\\"section\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-65bf164f\\\" data-id=\\\"65bf164f\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6IjcwOWM5ZmYwIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJcdTc5YzFcdTMwNWZcdTMwNjFcdTMwNmZcdTk3NjlcdTY1YjBcdTc2ODRcdTMwNmFcdTMwYmRcdTMwZWFcdTMwZTVcdTMwZmNcdTMwYjdcdTMwZTdcdTMwZjNcdTMwNjdcdTMwNGFcdTViYTJcdTY5ZDhcdTMwNmVcdTY3MWZcdTVmODVcdTMwOTJcdThkODVcdTMwNDhcdTMwN2VcdTMwNTlcdTMwMDIiLCJzdWJfdGl0bGUiOiJcdTc5YzFcdTMwNWZcdTMwNjFcdTMwNmVcdTMwYzFcdTMwZmNcdTMwZTAifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\\\"]            <\\/div>\\n        <\\/div>\\n                <div class=\\\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-565ccd46\\\" data-id=\\\"565ccd46\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        \\t\\t<div class=\\\"elementor-element elementor-element-4e81685f elementor-widget elementor-widget-text-editor\\\" data-id=\\\"4e81685f\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>\\u79c1\\u305f\\u3061\\u306f\\u3001\\u304a\\u5ba2\\u69d8\\u306e\\u671f\\u5f85\\u3092\\u8d85\\u3048\\u308b\\u9769\\u65b0\\u7684\\u306a\\u30bd\\u30ea\\u30e5\\u30fc\\u30b7\\u30e7\\u30f3\\u3092\\u63d0\\u4f9b\\u3057\\u3001\\u6700\\u9ad8\\u54c1\\u8cea\\u306e\\u6a5f\\u68b0\\u3068\\u512a\\u308c\\u305f\\u7d50\\u679c\\u3092\\u4fdd\\u8a3c\\u3057\\u307e\\u3059\\u3002<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                <section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-7d3ed03 elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"7d3ed03\\\" data-element_type=\\\"section\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-default \\\">\\n                    <div class=\\\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-24b59b7\\\" data-id=\\\"24b59b7\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6IjRjMGU1NTciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X2xpc3QiOlt7ImltYWdlIjp7InVybCI6Imh0dHBzOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMTJcL0ZFSFQtbG9nby5qcGciLCJpZCI6MjgxMiwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwidGl0bGUiOiJGYXIgRWFzdCBUZWNoIiwibGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn0sInNvY2lhbCI6IltdIiwiX2lkIjoiZTU2MjI1MyJ9LHsiaW1hZ2UiOnsidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMlwvRkUtVEVDSC1MT0dPLUZJTkFMLnBuZyIsImlkIjoyODE2LCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJ0aXRsZSI6IkZhciBFYXN0IEVuZ2luZWVyaW5nIiwibGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn0sInNvY2lhbCI6IltdIiwiX2lkIjoiYjI1NDgzNiJ9LHsiaW1hZ2UiOnsidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMlwvRmFyLUVhc3QtVG9vbC1WaW5hLmpwZyIsImlkIjoyODE0LCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJ0aXRsZSI6IkZhciBFYXN0IFRvb2xzIFZpbmEiLCJsaW5rIjp7InVybCI6IiIsImlzX2V4dGVybmFsIjoiIiwibm9mb2xsb3ciOiIifSwic29jaWFsIjoiW10iLCJfaWQiOiI5OTRlMGM1In1dLCJjb2xfbGciOiIzIiwiY29sX3hsIjoiMyIsImNvbF9tZCI6IjIiLCJ0aHVtYm5haWxfY3VzdG9tX2RpbWVuc2lvbiI6eyJ3aWR0aCI6IjM1MCIsImhlaWdodCI6IjM3MSJ9fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfdGVhbV9ncmlkIn0=\\\"]            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                <section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-daa7558 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"daa7558\\\" data-element_type=\\\"section\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-050b385\\\" data-id=\\\"050b385\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6ImNhOGU5ODIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2Zlx1MzAwMVx1NGZlMVx1OTgzY1x1MzA2N1x1MzA0ZFx1MzA4Ylx1MzBkMVx1MzBmY1x1MzBjOFx1MzBjYVx1MzBmY1x1MzA2OFx1MzA1N1x1MzA2Nlx1OTc2OVx1NjViMFx1NzY4NFx1MzA2YVx1MzBiZFx1MzBlYVx1MzBlNVx1MzBmY1x1MzBiN1x1MzBlN1x1MzBmM1x1MzA2N1x1MzA0YVx1NWJhMlx1NjlkOFx1MzA2ZVx1NjcxZlx1NWY4NVx1MzA5Mlx1OGQ4NVx1MzA0OFx1MzA3ZVx1MzA1OVx1MzAwMiIsInN1Yl90aXRsZSI6Ilx1NzljMVx1MzA1Zlx1MzA2MVx1MzA2ZVx1MzBkMVx1MzBmY1x1MzBjOFx1MzBjYVx1MzBmYyAifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\\\"]            <\\/div>\\n        <\\/div>\\n                <div class=\\\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-57c8033\\\" data-id=\\\"57c8033\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        \\t\\t<div class=\\\"elementor-element elementor-element-be87204 elementor-widget elementor-widget-text-editor\\\" data-id=\\\"be87204\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>\\u79c1\\u305f\\u3061\\u306f\\u3001\\u30d1\\u30fc\\u30c8\\u30ca\\u30fc\\u3068\\u306e\\u9577\\u671f\\u7684\\u3067\\u6c38\\u7d9a\\u7684\\u306a\\u54c1\\u8cea\\u3068\\u6642\\u9593\\u53b3\\u5b88\\u3092\\u78ba\\u4fdd\\u3059\\u308b\\u3053\\u3068\\u3092\\u7d04\\u675f\\u3057\\u307e\\u3059\\u3002<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                <section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-a2fc248 elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"a2fc248\\\" data-element_type=\\\"section\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-5a54914\\\" data-id=\\\"5a54914\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6ImMyYzBjNjciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjbGllbnRzIjpbeyJjbGllbnRfbmFtZSI6Illvc2hpbW90byIsImNsaWVudF9saW5rIjp7InVybCI6Imh0dHBzOlwvXC93d3cueW9zaGltb3RvLXNhbmd5by5jby5qcFwvdm5cLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIn0sImNsaWVudF9pbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC95b3NoaW1vdG8tdmlldG5hbS5wbmciLCJpZCI6MjQ4NiwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwiX2lkIjoiYTQ5ZmJjNCJ9LHsiY2xpZW50X25hbWUiOiJLaW0gTG9uZyBNb3RvcnMiLCJjbGllbnRfbGluayI6eyJ1cmwiOiJodHRwczpcL1wva2ltbG9uZ21vdG9yLmNvbS52blwvIiwiaXNfZXh0ZXJuYWwiOiJvbiIsIm5vZm9sbG93Ijoib24ifSwiY2xpZW50X2ltYWdlIjp7InVybCI6Imh0dHBzOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMTBcL2tpbS1sb25nLW1vdG9ycy5wbmciLCJpZCI6MjQ4NSwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwiX2lkIjoiMzM5MzBhNSJ9LHsiY2xpZW50X25hbWUiOiJTYW1zdW5nIiwiY2xpZW50X2xpbmsiOnsidXJsIjoiaHR0cHM6XC9cL3d3dy5zYW1zdW5nLmNvbVwvdm5cLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIn0sImNsaWVudF9pbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9zYW1zdW5nLmpwZyIsImlkIjoyNDg0LCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJfaWQiOiJhZWVlNmMyIn0seyJjbGllbnRfbmFtZSI6IktvbWF0c3UgS29neW8iLCJjbGllbnRfbGluayI6eyJ1cmwiOiJodHRwczpcL1wva29tYXouY28uanBcL2VuZ2xpc2hcLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIn0sImNsaWVudF9pbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9rb21hdHN1LWtvZ3lvLmpwZyIsImlkIjoyNDgzLCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJfaWQiOiI4ZmM3MzczIn0seyJfaWQiOiJlZDJlNDAxIiwiY2xpZW50X25hbWUiOiJZdXdhIEVuZ2luZWVyaW5nIiwiY2xpZW50X2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiJvbiIsIm5vZm9sbG93Ijoib24iLCJjdXN0b21fYXR0cmlidXRlcyI6IiJ9LCJjbGllbnRfaW1hZ2UiOnsidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwveXV3YS1lbmdpbmVlcmluZy5qcGciLCJpZCI6MjQ4Miwic2l6ZSI6IiIsImFsdCI6IiIsInNvdXJjZSI6ImxpYnJhcnkifX1dLCJzbGlkZXNfdG9fc2hvdyI6IjQiLCJzbGlkZXNfdG9fc2Nyb2xsIjoiMSIsImF1dG9wbGF5IjoidHJ1ZSIsImF1dG9wbGF5X3NwZWVkIjo4MDAwLCJpbmZpbml0ZSI6InRydWUiLCJzcGVlZCI6ODAwLCJzbGlkZXNfdG9fc2hvd19tb2JpbGUiOiIyIiwic2xpZGVzX3RvX3Njcm9sbF9tb2JpbGUiOiIxIiwic2xpZGVzX3RvX3Nob3dfdGFibGV0IjoiMyIsInNsaWRlc190b19zY3JvbGxfdGFibGV0IjoiMSIsImN0X2FuaW1hdGUiOiJ3b3cgem9vbUluIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2NsaWVudHNfbGlzdCJ9\\\"]            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n        \",\"scripts\":[],\"styles\":[]}}'),(11175,2987,'_elementor_css','a:6:{s:4:\"time\";i:1742331830;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:\"\";}'),(11176,2987,'_elementor_page_assets','a:1:{s:7:\"scripts\";a:4:{i:0;s:12:\"imagesloaded\";i:1;s:7:\"isotope\";i:2;s:25:\"ct-post-masonry-widget-js\";i:3;s:22:\"ct-post-grid-widget-js\";}}'),(11177,2987,'_elementor_element_cache','{\"timeout\":1746442512,\"value\":{\"content\":\"<div class=\\\"elementor-element elementor-element-0766e75 e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"0766e75\\\" data-element_type=\\\"container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t[elementor-element data=\\\"eyJpZCI6ImU4MmEwNDUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsImxheW91dCI6IjIiLCJmaWx0ZXJfZGVmYXVsdF90aXRsZSI6IkFsbCIsImJ1dHRvbl90ZXh0IjoiUmVhZCBtb3JlIiwiY3RfYW5pbWF0ZSI6IndvdyBib3VuY2VJbkRvd24iLCJwYWdpbmF0aW9uX3R5cGUiOiJsb2FkbW9yZSIsImNvbF9zbSI6IjEiLCJjb2xfbWQiOiIyIiwiY29sX2xnIjoiMiIsImNvbF94bCI6IjIiLCJzaG93X2J1dHRvbiI6IiIsInNvdXJjZSI6WyJ2aXxsYW5ndWFnZSJdLCJvcmRlciI6ImFzYyJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9zZXJ2aWNlX2dyaWQifQ==\\\"]\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\",\"scripts\":[],\"styles\":[]}}'),(11178,3008,'_elementor_css','a:6:{s:4:\"time\";i:1742335252;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:\"\";}'),(11179,3008,'_elementor_page_assets','a:2:{s:6:\"styles\";a:1:{i:0;s:18:\"widget-text-editor\";}s:7:\"scripts\";a:6:{i:0;s:12:\"imagesloaded\";i:1;s:7:\"isotope\";i:2;s:25:\"ct-post-masonry-widget-js\";i:3;s:22:\"ct-post-grid-widget-js\";i:4;s:12:\"jquery-slick\";i:5;s:25:\"ct-clients-list-widget-js\";}}'),(11180,3008,'_elementor_element_cache','{\"timeout\":1746520409,\"value\":{\"content\":\"        <section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-5ebd4da3 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"5ebd4da3\\\" data-element_type=\\\"section\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-65bf164f\\\" data-id=\\\"65bf164f\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6IjcwOWM5ZmYwIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGl0bGUiOiJDaFx1MDBmYW5nIHRcdTAwZjRpIHNcdTFlYmQgdlx1MDFiMFx1MWVlM3QgcXVhIG1vbmcgXHUwMTExXHUxZWUzaSBjXHUxZWU3YSBiXHUxZWExbiB2XHUxZWRiaSBuaFx1MWVlZm5nIGdpXHUxZWEzaSBwaFx1MDBlMXAgc1x1MDBlMW5nIHRcdTFlYTFvLiIsInN1Yl90aXRsZSI6Ilx1MDExMFx1MWVkOWkgbmdcdTAxNjkgY1x1MWVlN2EgY2hcdTAwZmFuZyB0XHUwMGY0aSJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\\\"]            <\\/div>\\n        <\\/div>\\n                <div class=\\\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-565ccd46\\\" data-id=\\\"565ccd46\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        \\t\\t<div class=\\\"elementor-element elementor-element-4e81685f elementor-widget elementor-widget-text-editor\\\" data-id=\\\"4e81685f\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>Ch\\u00fang t\\u00f4i cung c\\u1ea5p nh\\u1eefng gi\\u1ea3i ph\\u00e1p s\\u00e1ng t\\u1ea1o v\\u01b0\\u1ee3t xa mong \\u0111\\u1ee3i c\\u1ee7a b\\u1ea1n, \\u0111\\u1ea3m b\\u1ea3o m\\u00e1y m\\u00f3c ch\\u1ea5t l\\u01b0\\u1ee3ng cao v\\u00e0 k\\u1ebft qu\\u1ea3 xu\\u1ea5t s\\u1eafc.<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                <section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-7d3ed03 elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"7d3ed03\\\" data-element_type=\\\"section\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-default \\\">\\n                    <div class=\\\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-24b59b7\\\" data-id=\\\"24b59b7\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6IjRjMGU1NTciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X2xpc3QiOlt7ImltYWdlIjp7InVybCI6Imh0dHBzOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMTJcL0ZFSFQtbG9nby5qcGciLCJpZCI6MjgxMiwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwidGl0bGUiOiJGYXIgRWFzdCBUZWNoIiwibGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn0sInNvY2lhbCI6IltdIiwiX2lkIjoiZTU2MjI1MyJ9LHsiaW1hZ2UiOnsidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMlwvRkUtVEVDSC1MT0dPLUZJTkFMLnBuZyIsImlkIjoyODE2LCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJ0aXRsZSI6IkZhciBFYXN0IEVuZ2luZWVyaW5nIiwibGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIn0sInNvY2lhbCI6IltdIiwiX2lkIjoiYjI1NDgzNiJ9LHsiaW1hZ2UiOnsidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMlwvRmFyLUVhc3QtVG9vbC1WaW5hLmpwZyIsImlkIjoyODE0LCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJ0aXRsZSI6IkZhciBFYXN0IFRvb2xzIFZpbmEiLCJsaW5rIjp7InVybCI6IiIsImlzX2V4dGVybmFsIjoiIiwibm9mb2xsb3ciOiIifSwic29jaWFsIjoiW10iLCJfaWQiOiI5OTRlMGM1In1dLCJjb2xfbGciOiIzIiwiY29sX3hsIjoiMyIsImNvbF9tZCI6IjIiLCJ0aHVtYm5haWxfY3VzdG9tX2RpbWVuc2lvbiI6eyJ3aWR0aCI6IjM1MCIsImhlaWdodCI6IjM3MSJ9fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfdGVhbV9ncmlkIn0=\\\"]            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                <section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-daa7558 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"daa7558\\\" data-element_type=\\\"section\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-050b385\\\" data-id=\\\"050b385\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6ImNhOGU5ODIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkNoXHUwMGZhbmcgdFx1MDBmNGkgc1x1MWViZCB2XHUwMWIwXHUxZWUzdCBxdWEgbW9uZyBcdTAxMTFcdTFlZTNpIGNcdTFlZTdhIGJcdTFlYTFuIHZcdTFlZGJpIG5oXHUxZWVmbmcgZ2lcdTFlYTNpIHBoXHUwMGUxcCBzXHUwMGUxbmcgdFx1MWVhMW8sIG5oXHUwMWIwIG1cdTFlZDl0IFx1MDExMVx1MWVkMWkgdFx1MDBlMWMgXHUwMTExXHUwMGUxbmcgdGluIGNcdTFlYWR5LiIsInN1Yl90aXRsZSI6IkNcdTAwZTFjIFx1MDExMVx1MWVkMWkgdFx1MDBlMWMgY1x1MWVlN2EgY2hcdTAwZmFuZyB0XHUwMGY0aSJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\\\"]            <\\/div>\\n        <\\/div>\\n                <div class=\\\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-57c8033\\\" data-id=\\\"57c8033\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        \\t\\t<div class=\\\"elementor-element elementor-element-be87204 elementor-widget elementor-widget-text-editor\\\" data-id=\\\"be87204\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>Ch\\u00fang t\\u00f4i cam k\\u1ebft \\u0111\\u1ea3m b\\u1ea3o ch\\u1ea5t l\\u01b0\\u1ee3ng l\\u00e2u d\\u00e0i v\\u00e0 s\\u1ef1 \\u0111\\u00fang gi\\u1edd b\\u1ec1n v\\u1eefng c\\u00f9ng c\\u00e1c \\u0111\\u1ed1i t\\u00e1c.<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n                <section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-a2fc248 elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"a2fc248\\\" data-element_type=\\\"section\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-5a54914\\\" data-id=\\\"5a54914\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6ImMyYzBjNjciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjbGllbnRzIjpbeyJjbGllbnRfbmFtZSI6Illvc2hpbW90byIsImNsaWVudF9saW5rIjp7InVybCI6Imh0dHBzOlwvXC93d3cueW9zaGltb3RvLXNhbmd5by5jby5qcFwvdm5cLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIn0sImNsaWVudF9pbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC95b3NoaW1vdG8tdmlldG5hbS5wbmciLCJpZCI6MjQ4NiwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwiX2lkIjoiYTQ5ZmJjNCJ9LHsiY2xpZW50X25hbWUiOiJLaW0gTG9uZyBNb3RvcnMiLCJjbGllbnRfbGluayI6eyJ1cmwiOiJodHRwczpcL1wva2ltbG9uZ21vdG9yLmNvbS52blwvIiwiaXNfZXh0ZXJuYWwiOiJvbiIsIm5vZm9sbG93Ijoib24ifSwiY2xpZW50X2ltYWdlIjp7InVybCI6Imh0dHBzOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMTBcL2tpbS1sb25nLW1vdG9ycy5wbmciLCJpZCI6MjQ4NSwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwiX2lkIjoiMzM5MzBhNSJ9LHsiY2xpZW50X25hbWUiOiJTYW1zdW5nIiwiY2xpZW50X2xpbmsiOnsidXJsIjoiaHR0cHM6XC9cL3d3dy5zYW1zdW5nLmNvbVwvdm5cLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIn0sImNsaWVudF9pbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9zYW1zdW5nLmpwZyIsImlkIjoyNDg0LCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJfaWQiOiJhZWVlNmMyIn0seyJjbGllbnRfbmFtZSI6IktvbWF0c3UgS29neW8iLCJjbGllbnRfbGluayI6eyJ1cmwiOiJodHRwczpcL1wva29tYXouY28uanBcL2VuZ2xpc2hcLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6Im9uIn0sImNsaWVudF9pbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9rb21hdHN1LWtvZ3lvLmpwZyIsImlkIjoyNDgzLCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJfaWQiOiI4ZmM3MzczIn0seyJfaWQiOiJlZDJlNDAxIiwiY2xpZW50X25hbWUiOiJZdXdhIEVuZ2luZWVyaW5nIiwiY2xpZW50X2xpbmsiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiJvbiIsIm5vZm9sbG93Ijoib24iLCJjdXN0b21fYXR0cmlidXRlcyI6IiJ9LCJjbGllbnRfaW1hZ2UiOnsidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwveXV3YS1lbmdpbmVlcmluZy5qcGciLCJpZCI6MjQ4Miwic2l6ZSI6IiIsImFsdCI6IiIsInNvdXJjZSI6ImxpYnJhcnkifX1dLCJzbGlkZXNfdG9fc2hvdyI6IjQiLCJzbGlkZXNfdG9fc2Nyb2xsIjoiMSIsImF1dG9wbGF5IjoidHJ1ZSIsImF1dG9wbGF5X3NwZWVkIjo4MDAwLCJpbmZpbml0ZSI6InRydWUiLCJzcGVlZCI6ODAwLCJzbGlkZXNfdG9fc2hvd19tb2JpbGUiOiIyIiwic2xpZGVzX3RvX3Njcm9sbF9tb2JpbGUiOiIxIiwic2xpZGVzX3RvX3Nob3dfdGFibGV0IjoiMyIsInNsaWRlc190b19zY3JvbGxfdGFibGV0IjoiMSIsImN0X2FuaW1hdGUiOiJ3b3cgem9vbUluIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2NsaWVudHNfbGlzdCJ9\\\"]            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n        \",\"scripts\":[],\"styles\":[]}}'),(11181,2993,'_elementor_css','a:6:{s:4:\"time\";i:1742335971;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:\"\";}'),(11182,2993,'_elementor_page_assets','a:1:{s:7:\"scripts\";a:4:{i:0;s:12:\"imagesloaded\";i:1;s:7:\"isotope\";i:2;s:25:\"ct-post-masonry-widget-js\";i:3;s:22:\"ct-post-grid-widget-js\";}}'),(11183,2993,'_elementor_element_cache','{\"timeout\":1746536288,\"value\":{\"content\":\"<div class=\\\"elementor-element elementor-element-0766e75 e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"0766e75\\\" data-element_type=\\\"container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t[elementor-element data=\\\"eyJpZCI6ImU4MmEwNDUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsImxheW91dCI6IjIiLCJmaWx0ZXJfZGVmYXVsdF90aXRsZSI6IkFsbCIsImJ1dHRvbl90ZXh0IjoiUmVhZCBtb3JlIiwiY3RfYW5pbWF0ZSI6IndvdyBib3VuY2VJbkRvd24iLCJwYWdpbmF0aW9uX3R5cGUiOiJsb2FkbW9yZSIsImNvbF9zbSI6IjEiLCJjb2xfbWQiOiIyIiwiY29sX2xnIjoiMiIsImNvbF94bCI6IjIiLCJzaG93X2J1dHRvbiI6IiIsInNvdXJjZSI6WyJqYXxsYW5ndWFnZSJdLCJvcmRlciI6ImFzYyJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9zZXJ2aWNlX2dyaWQifQ==\\\"]\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\",\"scripts\":[],\"styles\":[]}}'),(11184,2998,'_elementor_element_cache','{\"timeout\":1746402090,\"value\":{\"content\":\"<div class=\\\"elementor-element elementor-element-6a510c2 e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"6a510c2\\\" data-element_type=\\\"container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t[elementor-element data=\\\"eyJpZCI6ImM5NGJjOTUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlIjoiVGhcdTFlYmYgbVx1MWVhMW5oIGNcdTFlZTdhIGNoXHUwMGZhbmcgdFx1MDBmNGkgblx1MWViMW0gXHUxZWRmIHNcdTFlYTNuIHh1XHUxZWE1dCBoXHUwMGUwbmcgbG9cdTFlYTF0IG5oXHUwMGY0bSB2XHUwMGUwIHRoXHUwMGU5cC4gQ2hcdTAwZmFuZyB0XHUwMGY0aSB4dVx1MWVhNXQgc1x1MWVhZmMgdHJvbmcgdmlcdTFlYzdjIFx1MDExMVx1MWVkNWkgbVx1MWVkYmkgdlx1MDBlMCBjdW5nIGNcdTFlYTVwIGNcdTAwZTFjIHNcdTFlYTNuIHBoXHUxZWE5bSBjXHUwMGYzIGdpXHUwMGUxIHRyXHUxZWNiIGNhbyBjaG8ga2hcdTAwZTFjaCBoXHUwMGUwbmcuIiwidGl0bGVfdGFnIjoiaDUiLCJ0ZXh0X2FsaWduIjoiY2VudGVyIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\\\"][elementor-element data=\\\"eyJpZCI6Ijk1MjNkYzYiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiXHUwMGQ0IHRcdTAwZjQgJiBYZSBtXHUwMGUxeSIsInRleHRfYWxpZ24iOiJsZWZ0In0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X2hlYWRpbmcifQ==\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-e4eeb57 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\\\" data-id=\\\"e4eeb57\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"image-gallery.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-image-gallery\\\">\\n\\t\\t\\t<div id=\'gallery-1\' class=\'gallery galleryid-2998 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e4eeb57\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWI2Mjc3NTE2NjIyMTQxYjY4MTc4ZjY2YmViYWFkZDkzby5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Ab6277516622141b68178f66bebaadd93o.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"113\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Ab6277516622141b68178f66bebaadd93o.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e4eeb57\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTQ5NjllZjIzNDNhMjQ0NjA4Y2M1MTFkMWU3YmUyOGUyWC5wbmdfMzUweDM1MC5wbmciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A4969ef2343a244608cc511d1e7be28e2X.png_350x350.png\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A4969ef2343a244608cc511d1e7be28e2X.png_350x350.png\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e4eeb57\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvSDliZTY0NjE0OTRjZjRmZTc5OTgxOTJkYzQ4MzA2NmM5di5wbmdfMzUweDM1MC5wbmciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/H9be6461494cf4fe7998192dc483066c9v.png_350x350.png\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/H9be6461494cf4fe7998192dc483066c9v.png_350x350.png\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e4eeb57\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvSDRjYmFjNDdhZTZjZjQ3MDViOTY2NjY4Y2ExYWJhZDUwOS5wbmdfMzUweDM1MC5wbmciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/H4cbac47ae6cf4705b966668ca1abad509.png_350x350.png\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/H4cbac47ae6cf4705b966668ca1abad509.png_350x350.png\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e4eeb57\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvSDZjMDBiZDIzN2Q4YjQ2ZDRiMDZhMWNjNmVmNzZhY2NmRS5wbmdfMzUweDM1MC5wbmciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/H6c00bd237d8b46d4b06a1cc6ef76accfE.png_350x350.png\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/H6c00bd237d8b46d4b06a1cc6ef76accfE.png_350x350.png\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e4eeb57\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvSDcxYWJlN2E3NjNhMzQ1YWU4N2RjZjcwYzI1YTcwYTMyTS5wbmdfMzUweDM1MC5wbmciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/H71abe7a763a345ae87dcf70c25a70a32M.png_350x350.png\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/H71abe7a763a345ae87dcf70c25a70a32M.png_350x350.png\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e4eeb57\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvMi5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/2.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/2.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e4eeb57\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTA0NWZlNDUzNDU2NjQzOTRhMmE4MDQ5OWI0YmQyMTE3aS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A045fe45345664394a2a80499b4bd2117i.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A045fe45345664394a2a80499b4bd2117i.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e4eeb57\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTg2ZTAzOWRmMWM5ZDRlODA5ZWE1M2RmZDY3NmJhNjdhTy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A86e039df1c9d4e809ea53dfd676ba67aO.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A86e039df1c9d4e809ea53dfd676ba67aO.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e4eeb57\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTc4NmRjNDI3YWY0NjQ1N2VhOTIzYzQxZWE3Njg4ZjY3US5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A786dc427af46457ea923c41ea7688f67Q.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A786dc427af46457ea923c41ea7688f67Q.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e4eeb57\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvNi5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/6.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/6.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e4eeb57\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTJlZDVhNWMzZjhmNTQ0Yzg5MTBhM2ZlMjlkYTVlMjk4NC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A2ed5a5c3f8f544c8910a3fe29da5e2984.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A2ed5a5c3f8f544c8910a3fe29da5e2984.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e4eeb57\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTNjODA2NDY4NTRjZDQ0MDFiNmI3MzdhODBlOGUyOWYyWi5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A3c80646854cd4401b6b737a80e8e29f2Z.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A3c80646854cd4401b6b737a80e8e29f2Z.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e4eeb57\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTUzZjk0ZmZmYTBlNjRiYThhNDczMzBlODVhMTc5MjE0bC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A53f94fffa0e64ba8a47330e85a179214l.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A53f94fffa0e64ba8a47330e85a179214l.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e4eeb57\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWE1NTlhYWE4ZThkNDQ4NjhiNzAwOTY3ZTE4MjYzMWUwTy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Aa559aaa8e8d44868b700967e182631e0O.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Aa559aaa8e8d44868b700967e182631e0O.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e4eeb57\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvNC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/4.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/4.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e4eeb57\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTI5MjA5ZmNhMTRlMzQ5MTI4NmE3YWUyYTdkNTM1MDY2dC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A29209fca14e3491286a7ae2a7d535066t.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A29209fca14e3491286a7ae2a7d535066t.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e4eeb57\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWZkNmU1MDE4ZDU0YTRjMzE5YjQ5NDFhZjU3ZTM4ZmMxZS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Afd6e5018d54a4c319b4941af57e38fc1e.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Afd6e5018d54a4c319b4941af57e38fc1e.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e4eeb57\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTg2MjZkZjVhZTg5YzQ1ODQ4NGNiZGVhYjZiMGEyNzY4RS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A8626df5ae89c458484cbdeab6b0a2768E.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A8626df5ae89c458484cbdeab6b0a2768E.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e4eeb57\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWVjMmE0Y2Q4OTVlNjQ4YjZiYzcxNzRkODY0ZTEwMzMyOS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Aec2a4cd895e648b6bc7174d864e103329.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Aec2a4cd895e648b6bc7174d864e103329.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e4eeb57\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvMS5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/1.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/1.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e4eeb57\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTVmYTcxYjBlZGRmNjQ4MDQ5YzVmMzNkMzMxNzM4NDYwbS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A5fa71b0eddf648049c5f33d331738460m.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A5fa71b0eddf648049c5f33d331738460m.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e4eeb57\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTliYzE4NzI2OTdkNjQ5ZTdhMjhkMTRjNDhjZDZiNzFicS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A9bc1872697d649e7a28d14c48cd6b71bq.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A9bc1872697d649e7a28d14c48cd6b71bq.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e4eeb57\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWQwYzc4MmI4NDYxNTQ4NGQ4MzAzYWQ5NjRjZDMwMmE0Qy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Ad0c782b84615484d8303ad964cd302a4C.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Ad0c782b84615484d8303ad964cd302a4C.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e4eeb57\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWVjM2Y0NGQyYzBjZjQ1MzY4NzBiMTkwOTdiNTAzNWY0QS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Aec3f44d2c0cf4536870b19097b5035f4A.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Aec3f44d2c0cf4536870b19097b5035f4A.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e4eeb57\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvOC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/8.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/8.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e4eeb57\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTVkZjYxOWNlODllYzQyMTg5YTVjNGQwNWJiYmE0ZjJkdy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A5df619ce89ec42189a5c4d05bbba4f2dw.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A5df619ce89ec42189a5c4d05bbba4f2dw.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e4eeb57\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTkyMDcwMTU1OThhZTQ3ZTRiYTU3ZDVkNjc1NWE3OTQ1Si5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A9207015598ae47e4ba57d5d6755a7945J.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A9207015598ae47e4ba57d5d6755a7945J.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e4eeb57\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWE2NzUxNGNhMTUzYTQzMjA4NjEyNjExYWYxNWFlNjg5dC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Aa67514ca153a43208612611af15ae689t.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Aa67514ca153a43208612611af15ae689t.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e4eeb57\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWM4YzU3YWY1N2ZjMDRhOWI4YWZiY2Y1MjE0ZDhiMTI1YS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Ac8c57af57fc04a9b8afbcf5214d8b125a.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Ac8c57af57fc04a9b8afbcf5214d8b125a.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e4eeb57\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWVhMWEyZWE2YzlkMDRiNzg5NzdkMWU4YzkwN2U3MjFjUi5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Aea1a2ea6c9d04b78977d1e8c907e721cR.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Aea1a2ea6c9d04b78977d1e8c907e721cR.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e4eeb57\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvNS5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/5.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/5.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e4eeb57\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvNy5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/7.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/7.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e4eeb57\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTRmYTIyYjNkYjQ3MDQxNDVhOWM4ZjJiNmQ0MTNiNGI3WS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A4fa22b3db4704145a9c8f2b6d413b4b7Y.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A4fa22b3db4704145a9c8f2b6d413b4b7Y.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e4eeb57\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQThjZmExNTRjYTcwYTQ2YzU5NjVlOTkzMjU1YjUzZWNiZy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A8cfa154ca70a46c5965e993255b53ecbg.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A8cfa154ca70a46c5965e993255b53ecbg.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e4eeb57\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTk2N2M2MzRhNTE3YzQ4ZjM4YzIzZDQ3NjZkYjViYmExYS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A967c634a517c48f38c23d4766db5bba1a.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A967c634a517c48f38c23d4766db5bba1a.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e4eeb57\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTQ2MjQxM2I2ZGUyYjQwMWJhNjBlOTliYmUxZDE1ZTMzSy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A462413b6de2b401ba60e99bbe1d15e33K.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A462413b6de2b401ba60e99bbe1d15e33K.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e4eeb57\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTY2MTM5OTE0MmE3MjQ3Mjc4YmJmNjlhOWQ2MDA3NTU2Vy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A661399142a7247278bbf69a9d6007556W.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A661399142a7247278bbf69a9d6007556W.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e4eeb57\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvMTAuanBnIiwic2xpZGVzaG93IjoiZTRlZWI1NyJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/10.jpg\'><img width=\\\"150\\\" height=\\\"113\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/10.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e4eeb57\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTE2ZWI3MWY1NDZjNDRjNGJhMDBjNmFmZTQ2NDY0ZDU5My5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A16eb71f546c44c4ba00c6afe46464d593.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A16eb71f546c44c4ba00c6afe46464d593.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e4eeb57\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTcyYTIxYmE5NjljODRiOThiNjNiOTg1MzgwYjk3ZWY1Ty5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A72a21ba969c84b98b63b985380b97ef5O.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A72a21ba969c84b98b63b985380b97ef5O.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e4eeb57\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTk5NTc0ZWJlMWE2YzQzMmFiZWJiOTE2ODBlM2UyMjdlMC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A99574ebe1a6c432abebb91680e3e227e0.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A99574ebe1a6c432abebb91680e3e227e0.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e4eeb57\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWM2ZDlhM2I3OWE5MDRlZWI5YzkyNWFmYTM3NGVjNTNhQS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Ac6d9a3b79a904eeb9c925afa374ec53aA.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Ac6d9a3b79a904eeb9c925afa374ec53aA.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e4eeb57\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWRlZjA1YzMyMTIxOTRmMjU5ZjE1NTZjZDUwODFhYjNlZy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Adef05c3212194f259f1556cd5081ab3eg.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Adef05c3212194f259f1556cd5081ab3eg.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e4eeb57\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvMy5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/3.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/3.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e4eeb57\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvOS5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/9.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/9.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e4eeb57\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTI2OGFhOGY5YjY1YzRjZGY5ZjQ1ZTU5NGYyY2Q4YWQ0TS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A268aa8f9b65c4cdf9f45e594f2cd8ad4M.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A268aa8f9b65c4cdf9f45e594f2cd8ad4M.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e4eeb57\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTg2NDQzMmYyNTcxNzQzNjg5MzQyYWUxNzNlZTlkYzlmZC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A864432f2571743689342ae173ee9dc9fd.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A864432f2571743689342ae173ee9dc9fd.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e4eeb57\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWJkNDM4NTFjOTI2NTRiZDk5Y2ZkY2E0NWQ4OTZmYmNiQi5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Abd43851c92654bd99cfdca45d896fbcbB.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Abd43851c92654bd99cfdca45d896fbcbB.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e4eeb57\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWNkZDEyMjYyOThkZDQ2MTNhYmYwMjFiZGNhYWQzMjBiMC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Acdd1226298dd4613abf021bdcaad320b0.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Acdd1226298dd4613abf021bdcaad320b0.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e4eeb57\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWU5MWJmN2Y1MWRiMzQwMmViYWZmNjEwYzI5OWU5YWFjRi5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Ae91bf7f51db3402ebaff610c299e9aacF.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/Ae91bf7f51db3402ebaff610c299e9aacF.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e4eeb57\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTA1ZjE4ZDQ3ZTcwOTQ4YWU4Nzk1MTExZDA1NWY0MmZhMi5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A05f18d47e70948ae8795111d055f42fa2.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A05f18d47e70948ae8795111d055f42fa2.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e4eeb57\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTVjMzc3OTJmMzg0MzQzODhhMDJhMDQ3OWZjYmM0MTIzVC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A5c37792f38434388a02a0479fcbc4123T.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A5c37792f38434388a02a0479fcbc4123T.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e4eeb57\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQThjNDIwOTkyZjQ3NzQ1NTA5ZjRmMjkyYWM3YmQyMjU4SC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A8c420992f47745509f4f292ac7bd2258H.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A8c420992f47745509f4f292ac7bd2258H.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e4eeb57\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTEwMDFlNjNlYTU5MTQ5ZjhhODFhYmI5MmQ1ZDVmZTcxMy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A1001e63ea59149f8a81abb92d5d5fe713.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A1001e63ea59149f8a81abb92d5d5fe713.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e4eeb57\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTM2MzQ2Zjg4MWIxMDQ5OTZiNmMwNzBiNWQyY2ViZmY4dS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A36346f881b104996b6c070b5d2cebff8u.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A36346f881b104996b6c070b5d2cebff8u.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"e4eeb57\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTE1NzE4M2MwN2E3NjRlYjg5NTdiYzRjZDEzOTgyODA4aS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A157183c07a764eb8957bc4cd13982808i.jpg_350x350.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/A157183c07a764eb8957bc4cd13982808i.jpg_350x350.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure>\\n\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element data=\\\"eyJpZCI6ImUyMTFiMTIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiQ1x1MDBlMWMgYlx1MWVkOSBwaFx1MWVhZG4gZ2lhIGNcdTAwZjRuZyBDTkMiLCJ0ZXh0X2FsaWduIjoibGVmdCJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-f3f0dbe gallery-spacing-custom elementor-widget elementor-widget-image-gallery\\\" data-id=\\\"f3f0dbe\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"image-gallery.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-image-gallery\\\">\\n\\t\\t\\t<div id=\'gallery-2\' class=\'gallery galleryid-2998 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon portrait\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"f3f0dbe\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rNS5qcGciLCJzbGlkZXNob3ciOiJmM2YwZGJlIn0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok5.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok5.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"f3f0dbe\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rNC5wbmciLCJzbGlkZXNob3ciOiJmM2YwZGJlIn0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok4.png\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok4.png\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"f3f0dbe\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW1hY2hpbmUyMi5hdmlmIiwic2xpZGVzaG93IjoiZjNmMGRiZSJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-machine22.avif\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-machine22.avif\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"f3f0dbe\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW1hY2hpbmUzLmpwZyIsInNsaWRlc2hvdyI6ImYzZjBkYmUifQ%3D%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-machine3.jpg\'><img width=\\\"150\\\" height=\\\"100\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-machine3.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"f3f0dbe\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rMy5wbmciLCJzbGlkZXNob3ciOiJmM2YwZGJlIn0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok3.png\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok3.png\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"f3f0dbe\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rMS5wbmciLCJzbGlkZXNob3ciOiJmM2YwZGJlIn0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok1.png\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok1.png\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"f3f0dbe\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rMi5wbmciLCJzbGlkZXNob3ciOiJmM2YwZGJlIn0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok2.png\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok2.png\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"f3f0dbe\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rNy5wbmciLCJzbGlkZXNob3ciOiJmM2YwZGJlIn0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok7.png\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok7.png\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"f3f0dbe\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rOS5qcGciLCJzbGlkZXNob3ciOiJmM2YwZGJlIn0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok9.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok9.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"f3f0dbe\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rOC5qcGciLCJzbGlkZXNob3ciOiJmM2YwZGJlIn0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok8.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/cnc-ok8.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon portrait\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"f3f0dbe\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejU3MDk0NDM0NzY3OTdfY2IzZTllMGQ1OTZhZDYzMzEzNjZiOGE3MTFmNDY5MjYuanBnIiwic2xpZGVzaG93IjoiZjNmMGRiZSJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z5709443476797_cb3e9e0d596ad6331366b8a711f46926.jpg\'><img width=\\\"113\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z5709443476797_cb3e9e0d596ad6331366b8a711f46926.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure>\\n\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element data=\\\"eyJpZCI6IjlkYTAwNTEiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiS2ltIGxvXHUxZWExaSB0XHUxZWE1bSAmIEdpYSBjXHUwMGY0bmciLCJ0ZXh0X2FsaWduIjoibGVmdCJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-804badd gallery-spacing-custom elementor-widget elementor-widget-image-gallery\\\" data-id=\\\"804badd\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"image-gallery.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-image-gallery\\\">\\n\\t\\t\\t<div id=\'gallery-3\' class=\'gallery galleryid-2998 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"804badd\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWwxLmpwZyIsInNsaWRlc2hvdyI6IjgwNGJhZGQifQ%3D%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal1.jpg\'><img width=\\\"150\\\" height=\\\"84\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal1.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"804badd\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWwzLmpwZyIsInNsaWRlc2hvdyI6IjgwNGJhZGQifQ%3D%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal3.jpg\'><img width=\\\"150\\\" height=\\\"84\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal3.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"804badd\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw0LmpwZyIsInNsaWRlc2hvdyI6IjgwNGJhZGQifQ%3D%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal4.jpg\'><img width=\\\"150\\\" height=\\\"84\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal4.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"804badd\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw1LmpwZyIsInNsaWRlc2hvdyI6IjgwNGJhZGQifQ%3D%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal5.jpg\'><img width=\\\"150\\\" height=\\\"113\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal5.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"804badd\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw3LmpwZyIsInNsaWRlc2hvdyI6IjgwNGJhZGQifQ%3D%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal7.jpg\'><img width=\\\"150\\\" height=\\\"113\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal7.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"804badd\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw4LmpwZyIsInNsaWRlc2hvdyI6IjgwNGJhZGQifQ%3D%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal8.jpg\'><img width=\\\"150\\\" height=\\\"113\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal8.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon portrait\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"804badd\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw5LmpwZyIsInNsaWRlc2hvdyI6IjgwNGJhZGQifQ%3D%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal9.jpg\'><img width=\\\"113\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal9.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon portrait\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"804badd\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWwxMC5qcGciLCJzbGlkZXNob3ciOiI4MDRiYWRkIn0%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal10.jpg\'><img width=\\\"113\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal10.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon portrait\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"804badd\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWwyLnBuZyIsInNsaWRlc2hvdyI6IjgwNGJhZGQifQ%3D%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal2.png\'><img width=\\\"84\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal2.png\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon portrait\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"804badd\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw2LmpwZyIsInNsaWRlc2hvdyI6IjgwNGJhZGQifQ%3D%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal6.jpg\'><img width=\\\"113\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/sheet-metal6.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure>\\n\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element data=\\\"eyJpZCI6IjdhNDlmNGMiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiTGluaCBraVx1MWVjN24ga2h1XHUwMGY0biAmIGtodVx1MDBmNG4gZFx1MWVhZHAiLCJ0ZXh0X2FsaWduIjoibGVmdCJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-51068f5 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\\\" data-id=\\\"51068f5\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"image-gallery.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-image-gallery\\\">\\n\\t\\t\\t<div id=\'gallery-4\' class=\'gallery galleryid-2998 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon portrait\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"51068f5\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzYxNjUzNzJfODI1NjkzMjRkZTFjOGZjYzM3NmNjMGU3MzdjMDUyMGUuanBnIiwic2xpZGVzaG93IjoiNTEwNjhmNSJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\'><img width=\\\"113\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon portrait\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"51068f5\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzY0NTU3NzVfOTdhOTM3ODA3YzgwN2JmNzEzNjk0MTlhMGE1ZDNkMmMuanBnIiwic2xpZGVzaG93IjoiNTEwNjhmNSJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\'><img width=\\\"68\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon portrait\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"51068f5\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzU4OTM2OTJfNDhmNGE5ZjdjN2E5ZDA1ZGMwMzdhODBhYzFlNTc4MmIuanBnIiwic2xpZGVzaG93IjoiNTEwNjhmNSJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\'><img width=\\\"113\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon portrait\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"51068f5\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzYwMDk1MTRfYWQ5MDg4N2YyNWQ3MzRlYzJkMjFkOGE2YTYzNGZmMmQuanBnIiwic2xpZGVzaG93IjoiNTEwNjhmNSJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\'><img width=\\\"113\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon portrait\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"51068f5\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzY3MjE1ODZfMTZiOTE5ODQyMGIzOTlmOWQ4MmMwNThkOTA4MmEzZTAuanBnIiwic2xpZGVzaG93IjoiNTEwNjhmNSJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\'><img width=\\\"113\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon portrait\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"51068f5\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzYxMTA0MjZfYzNlY2UzZWM1NmY5ZThjYzBlNWM5YTk4Zjk3OTJiZmMuanBnIiwic2xpZGVzaG93IjoiNTEwNjhmNSJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\'><img width=\\\"113\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure>\\n\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element data=\\\"eyJpZCI6IjVlN2ZjY2UiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiXHUwMTEwaW5oIFx1MWVkMWMgJiBCdSBsXHUwMGY0bmcgY1x1MDBmNG5nIG5naGlcdTFlYzdwIiwidGV4dF9hbGlnbiI6ImxlZnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3RfaGVhZGluZyJ9\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-edd871c gallery-spacing-custom elementor-widget elementor-widget-image-gallery\\\" data-id=\\\"edd871c\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"image-gallery.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-image-gallery\\\">\\n\\t\\t\\t<div id=\'gallery-5\' class=\'gallery galleryid-2998 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"edd871c\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvSU1HXzEyMzcuanBlZyIsInNsaWRlc2hvdyI6ImVkZDg3MWMifQ%3D%3D\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/IMG_1237.jpeg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/IMG_1237.jpeg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"edd871c\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvRFNDMDA4MjIuanBnIiwic2xpZGVzaG93IjoiZWRkODcxYyJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/DSC00822.jpg\'><img width=\\\"150\\\" height=\\\"100\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/DSC00822.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure>\\n\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element data=\\\"eyJpZCI6ImIxYWM4YzAiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiRFx1MWVlNW5nIGNcdTFlZTUiLCJ0ZXh0X2FsaWduIjoibGVmdCJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-1583ea9 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\\\" data-id=\\\"1583ea9\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"image-gallery.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-image-gallery\\\">\\n\\t\\t\\t<div id=\'gallery-6\' class=\'gallery galleryid-2998 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"1583ea9\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwMTgzMzRfMTdjNWZhYzk2ZmIyODQzZDc0YTc2Y2M3OWY5YjRmNWMuanBnIiwic2xpZGVzaG93IjoiMTU4M2VhOSJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\'><img width=\\\"150\\\" height=\\\"135\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"1583ea9\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwMzczNTNfZGI4NzczMmIzZWE5ZDkzNTM2YmNkM2FlYzY0ODM1YTcuanBnIiwic2xpZGVzaG93IjoiMTU4M2VhOSJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon portrait\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"1583ea9\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNTkxNjJfMDUzYjM2NGFiNzYxZGM1YTQ0Mjc5ZmFmNjQzOTUzMjQuanBnIiwic2xpZGVzaG93IjoiMTU4M2VhOSJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\'><img width=\\\"70\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"1583ea9\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNzgzNzJfNTBhYmNlNTI0OWM4YWNkY2ZiZGY4YTA2MzQ4OWUxODYuanBnIiwic2xpZGVzaG93IjoiMTU4M2VhOSJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"1583ea9\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNzg1NzBfMGFiNThiNDZiZjY4M2RmNmVjZGIyYzJkODc5NDViYTYuanBnIiwic2xpZGVzaG93IjoiMTU4M2VhOSJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\'><img width=\\\"150\\\" height=\\\"129\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"1583ea9\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk2ODQ5NDkwODZfYjI5ZmRiNTAxMTRhMTk2Y2MzZmRjYzllMTJjYWYxMDUuanBnIiwic2xpZGVzaG93IjoiMTU4M2VhOSJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\'><img width=\\\"150\\\" height=\\\"128\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon portrait\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"1583ea9\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk2ODQ5NDY2NDFfMTUwMGZiZTE2ZmVjM2ExNGVhZGI4ZTRhZWQxY2Y2M2YuanBnIiwic2xpZGVzaG93IjoiMTU4M2VhOSJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\'><img width=\\\"113\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure>\\n\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element data=\\\"eyJpZCI6IjJjNTc3OTEiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsInRpdGxlX3RhZyI6Img2Iiwic3ViX3RpdGxlIjoiXHUwMTEwXHUxZWQzIGdcdTAwZTEiLCJ0ZXh0X2FsaWduIjoibGVmdCJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9oZWFkaW5nIn0=\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-38c84c0 gallery-spacing-custom elementor-widget elementor-widget-image-gallery\\\" data-id=\\\"38c84c0\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"image-gallery.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-image-gallery\\\">\\n\\t\\t\\t<div id=\'gallery-7\' class=\'gallery galleryid-2998 gallery-columns-4 gallery-size-thumbnail\'><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon portrait\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"38c84c0\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NDY1OTEzMzg2ODdfZmE1MTRlMTY0ZjJlZTk5NjFjZmVlY2U5YjJhMjk2MmUuanBnIiwic2xpZGVzaG93IjoiMzhjODRjMCJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\'><img width=\\\"113\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon portrait\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"38c84c0\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTE0ODI0OTc5ODFfNGZlOGQ1MmM3N2ZiOTcwYWNjYWNhOTkzMTFiM2U1YjguanBnIiwic2xpZGVzaG93IjoiMzhjODRjMCJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\'><img width=\\\"113\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon portrait\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"38c84c0\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNTQzNzc3MTM5OTRfNzMxZjNhYzFmN2YzMjMyNjExMWE0MWY2N2Q0YTJlMzMuanBnIiwic2xpZGVzaG93IjoiMzhjODRjMCJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\'><img width=\\\"113\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon portrait\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"38c84c0\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE2NTM3NjdfNzk3Y2FkYTk3Yjk4NjQyZTYyYzkxODU3YzYwYjViNDQuanBnIiwic2xpZGVzaG93IjoiMzhjODRjMCJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\'><img width=\\\"113\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon portrait\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"38c84c0\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NDY1OTEzNDkxOTRfZDUwMTBkMTcwMGM3Y2ViNDkxYjk3OGIwMWJlM2RkMjguanBnIiwic2xpZGVzaG93IjoiMzhjODRjMCJ9\\\" href=\'https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\'><img width=\\\"113\\\" height=\\\"150\\\" src=\\\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\\\" class=\\\"attachment-thumbnail size-thumbnail\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure>\\n\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\",\"scripts\":[],\"styles\":[]}}'),(11185,1772,'_elementor_css','a:6:{s:4:\"time\";i:1742643979;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:\"\";}'),(11186,1772,'_elementor_page_assets','a:0:{}'),(11187,1772,'_elementor_element_cache','{\"timeout\":1746383995,\"value\":{\"content\":\"        <section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-b2cb422 elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"b2cb422\\\" data-element_type=\\\"section\\\">\\n            \\n                        <div class=\\\"elementor-container elementor-column-gap-extended \\\">\\n                    <div class=\\\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-29dd76a\\\" data-id=\\\"29dd76a\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6ImM4OWNmNmIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJpbWFnZSI6eyJ1cmwiOiJodHRwOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAxOVwvMTFcL2RlbW8xLmpwZyIsImlkIjoxNDI0fSwidGl0bGUiOiJDb250aW8gLSA8Y2l0ZT5ORVcgWU9SSzxcL2NpdGU+IiwiYnRuX3RleHQiOiJNdWx0aXBhZ2UiLCJidXR0b25fbGluayI6eyJ1cmwiOiJodHRwOlwvXC9mZTJ0ZWNoLmNvbVwvIiwiaXNfZXh0ZXJuYWwiOiJvbiIsIm5vZm9sbG93IjoiIn0sIl9hbmltYXRpb24iOiJub25lIiwiYnRuX3RleHQyIjoiT25lcGFnZSIsImJ1dHRvbl9saW5rMiI6eyJ1cmwiOiJodHRwOlwvXC9mZTJ0ZWNoLmNvbVwvaG9tZS0xLW9uZS1wYWdlXC8iLCJpc19leHRlcm5hbCI6Im9uIiwibm9mb2xsb3ciOiIiLCJjdXN0b21fYXR0cmlidXRlcyI6IiJ9fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3Rfc2hvd2Nhc2UifQ==\\\"]            <\\/div>\\n        <\\/div>\\n                <div class=\\\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-ec8c42c\\\" data-id=\\\"ec8c42c\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6IjlkOTY2OTUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJpbWFnZSI6eyJ1cmwiOiJodHRwOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAxOVwvMTFcL2RlbW8yLmpwZyIsImlkIjoxNDI1fSwidGl0bGUiOiJDb250aW8gLSA8Y2l0ZT5MT1MgQU5HRUxFUzxcL2NpdGU+IiwiYnRuX3RleHQiOiJNdWx0aXBhZ2UiLCJidXR0b25fbGluayI6eyJ1cmwiOiJodHRwOlwvXC9mZTJ0ZWNoLmNvbVwvaG9tZS0yXC8iLCJpc19leHRlcm5hbCI6Im9uIiwibm9mb2xsb3ciOiIifSwiX2FuaW1hdGlvbiI6Im5vbmUiLCJidG5fdGV4dDIiOiJPbmVwYWdlIiwiYnV0dG9uX2xpbmsyIjp7InVybCI6Imh0dHA6XC9cL2ZlMnRlY2guY29tXC9ob21lLTItb25lLXBhZ2VcLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6IiIsImN1c3RvbV9hdHRyaWJ1dGVzIjoiIn19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJjdF9zaG93Y2FzZSJ9\\\"]            <\\/div>\\n        <\\/div>\\n                <div class=\\\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-480f6b8\\\" data-id=\\\"480f6b8\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6ImNmYmQ2NmEiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJpbWFnZSI6eyJ1cmwiOiJodHRwOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAxOVwvMTFcL2RlbW8zLmpwZyIsImlkIjoxNDEyfSwidGl0bGUiOiJDb250aW8gLSA8Y2l0ZT5TWURORVk8XC9jaXRlPiIsImJ0bl90ZXh0IjoiTXVsdGlwYWdlIiwiYnV0dG9uX2xpbmsiOnsidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL2hvbWUtM1wvIiwiaXNfZXh0ZXJuYWwiOiJvbiIsIm5vZm9sbG93IjoiIn0sIl9hbmltYXRpb24iOiJub25lIiwiYnRuX3RleHQyIjoiT25lcGFnZSIsImJ1dHRvbl9saW5rMiI6eyJ1cmwiOiJodHRwOlwvXC9mZTJ0ZWNoLmNvbVwvaG9tZS0zLW9uZS1wYWdlXC8iLCJpc19leHRlcm5hbCI6Im9uIiwibm9mb2xsb3ciOiIiLCJjdXN0b21fYXR0cmlidXRlcyI6IiJ9fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiY3Rfc2hvd2Nhc2UifQ==\\\"]            <\\/div>\\n        <\\/div>\\n                <div class=\\\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-c2ea604\\\" data-id=\\\"c2ea604\\\" data-element_type=\\\"column\\\">\\n        <div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n                    \\n        [elementor-element data=\\\"eyJpZCI6ImE4NGI4OGIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJpbWFnZSI6eyJ1cmwiOiJodHRwOlwvXC9mZTJ0ZWNoLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyMlwvMTBcL2RlbW80LmpwZyIsImlkIjoxNzg1LCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5In0sInRpdGxlIjoiQ29taW5nIFNvb24iLCJidXR0b25fbGluayI6eyJ1cmwiOiIiLCJpc19leHRlcm5hbCI6Im9uIiwibm9mb2xsb3ciOiIifSwiX2FuaW1hdGlvbiI6Im5vbmUiLCJidXR0b25fbGluazIiOnsidXJsIjoiIiwiaXNfZXh0ZXJuYWwiOiJvbiIsIm5vZm9sbG93IjoiIiwiY3VzdG9tX2F0dHJpYnV0ZXMiOiIifX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImN0X3Nob3djYXNlIn0=\\\"]            <\\/div>\\n        <\\/div>\\n                    <\\/div>\\n        <\\/section>\\n        \",\"scripts\":[],\"styles\":[]}}');
/*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_posts`
--

DROP TABLE IF EXISTS `wp_posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_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=3346 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_posts`
--

LOCK TABLES `wp_posts` WRITE;
/*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */;
INSERT INTO `wp_posts` VALUES (9,1,'2019-10-29 10:04:28','2019-10-29 10:04:28','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.    </h3>\n		<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>		\n                <a href=\"https://www.youtube.com/watch?v=vUCVqLmXSPM\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Customer\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Personnel\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Oders per year\n														<a href=\"http://fe2tech.trustpass.alibaba.com/\" target=\"_blank\" rel=\"nofollow noopener\">\n							<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />								</a>\n		<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>		\n													<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />													\n													<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />													\n	    <h3>\n        We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.    </h3>\n		<p>Goals to achieve by 2026:</p>		\n                                            East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\n                                        30%\n                                            Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\n                                        10%\n                                            United States: Products related to medical instruments, optics, and audio equipment.\n                                        30%\n                                            Australia: Sheet metal products.\n                                        8%\n                                            Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\n                                        20%\n                                            Other markets and products.\n                                        2%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-milling-service/\">CNC Milling Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-milling-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-turning-service/\">CNC Turning Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-turning-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">CNC Tool Grinder Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/sheet-metal-service/\">Sheet Metal Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/sheet-metal-service/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"hidden\" name=\"_wpcf7_recaptcha_response\" value=\"\" />\n	<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"98\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We always provide a sense of security in terms of quality and progress.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"hidden\" name=\"_wpcf7_recaptcha_response\" value=\"\" />\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"138\"/></p>\n</form>','Home','','publish','closed','closed','','home','','','2025-03-17 02:54:14','2025-03-17 02:54:14','',0,'https://demo.casethemes.net/contio/?page_id=9',0,'page','',0),(19,1,'2019-10-29 15:51:55','2019-10-29 15:51:55','','favicon','','inherit','open','closed','','favicon','','','2019-10-29 15:51:55','2019-10-29 15:51:55','',0,'http://fe2tech.com/wp-content/uploads/2019/10/favicon.png',0,'attachment','image/png',0),(24,1,'2019-10-30 08:04:10','2019-10-30 08:04:10','<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20%C4%91%C6%B0%E1%BB%9Dng%20s%E1%BB%91%204%2C%20KP2%2C%20P.%20B%C3%ACnh%20Chi%E1%BB%83u%2C%20TP.%20Th%E1%BB%A7%20%C4%90%E1%BB%A9c%2C%20TPHCM&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n					aria-label=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n			></iframe>\n			Contact us\n	    <h3>\n        Feel free to contact us to solve any problem!    </h3>\n                        <img width=\"55\" height=\"65\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/info-icon-01.png\" alt=\"\" />                    \n                    <h3>Our head office address:</h3>\n                       43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City                    \n                        <img width=\"66\" height=\"66\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/info-icon-02.png\" alt=\"\" />                    \n                    <h3>Call for help:</h3>\n                       0968860386                    \n                        <img width=\"70\" height=\"68\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/info-icon-03.png\" alt=\"\" />                    \n                    <h3>Mail us for information:</h3>\n                       luutin.nmpco@gmail.com                    \n	    <h3>\n        Get in touch!    </h3>\n		<p>If you have questions or want to learn more about our services, don’t hesitate to reach out. We’re here to help!</p>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f91-o3\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"91\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f91-o3\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Name*\" value=\"\" type=\"text\" name=\"your-name\" />\n	</p>\n	<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail address*\" value=\"\" type=\"email\" name=\"your-email\" />\n	</p>\n	<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\" name=\"your-message\"></textarea>\n	</p>\n	<p><button type=\"submit\">Send us now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_3\" name=\"_wpcf7_ak_js\" value=\"112\"/></p>\n</form>','Contact','','publish','closed','closed','','contact','','','2024-10-28 08:37:55','2024-10-28 08:37:55','',0,'https://demo.casethemes.net/contio/?page_id=24',15,'page','',0),(26,1,'2019-10-30 08:04:23','2019-10-30 08:04:23','About us\n	    <h3>\n        We satisfy you with innovative ideas and quality work.    </h3>\n		<p>We exceed expectations through innovative ideas and exceptional craftsmanship.</p>		\n													<img width=\"59\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png\" alt=\"\" />													\n	    <h3>\n        Time manage    </h3>\n		<p>Efficiently organizing tasks to maximize productivity and meet deadlines.</p>		\n													<img width=\"55\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-02.png\" alt=\"\" />													\n	    <h3>\n        Fulfill target    </h3>\n		<p>Achieving goals with precision and commitment, ensuring success.</p>		\n    <img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218231.webp\" alt=\"\" />		\n            <img width=\"111\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature1.png\" alt=\"\" />\n        <h3>Tin Luu</h3>\n        (Chairman and founder)\n            Want to know more about us?\n            Just download brochure...\n            <a href=\"https://fe2tech.com/wp-content/uploads/2025/03/profile.pdf\" target=\"_blank\" rel=\"nofollow noopener\">\n                                                                    Download Brochure            </a>\n			Company history\n	    <h3>\n        Far East High Tech is a professional builder company    </h3>\n		<p>Far East High Tech is a leading company in building and manufacturing high-quality mechanical solutions.</p>		\n			Start		\n								<h3>1st Apr, 2021</h3>\n								With the strong growth of Far East Tech, we decided to expand our branch in the South.\n								<h3>1st Jun, 2022</h3>\n								Far East Tech took a significant step in industrial-scale production with a 2000m2 workshop and 70 CNC machines in Bắc Ninh.\n								<h3>20th Nov, 2018</h3>\n								Far East Tech was established in Quế Võ, Bắc Ninh with 5 founding members.\n								<h3>30th Apr, 2021</h3>\n								We successfully acquired DMM Precision Engineering Co., Ltd. in Bình Dương, a company with experience in exporting goods to Japan since 2016,\nand thus, we established a machining company in the southern region.\n								<h3>2024</h3>\n								DMM Precision Engineering Co., Ltd. officially changed its name to Far East High Tech Co., Ltd.\nAfter 2025: This will be a year of strong development for our company team.','About Us','','publish','closed','closed','','about-us','','','2025-03-17 03:26:01','2025-03-17 03:26:01','',0,'https://demo.casethemes.net/contio/?page_id=26',12,'page','',0),(28,1,'2019-10-30 08:05:01','2019-10-30 08:05:01','Our Team\n	    <h3>\n        We will exceed your expectations with our innovative solutions.    </h3>\n		<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a ><img width=\"500\" height=\"500\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FET.png\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tech                                    </a>\n                                </h3>\n                                <a ><img width=\"301\" height=\"301\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FEE.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Engineering                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Engineering                                    </a>\n                                </h3>\n                                <a ><img width=\"301\" height=\"301\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FETS.png\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tools Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tools Tech                                    </a>\n                                </h3>\n			Our Partners\n	    <h3>\n        We will exceed your expectations with our innovative solutions as your trusted partner.    </h3>\n		<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.</p>		\n                                <a href=\"https://www.yoshimoto-sangyo.co.jp/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"246\" height=\"205\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yoshimoto-vietnam.png\" alt=\"\" /></a>\n                                <a href=\"https://kimlongmotor.com.vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"1586\" height=\"1586\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/kim-long-motors.png\" alt=\"\" /></a>\n                                <a href=\"https://www.samsung.com/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"697\" height=\"232\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/samsung.jpg\" alt=\"\" /></a>\n                                <a href=\"https://komaz.co.jp/english/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"900\" height=\"900\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/komatsu-kogyo.jpg\" alt=\"\" /></a>\n                                <a ><img width=\"256\" height=\"256\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yuwa-engineering.jpg\" alt=\"\" /></a>','Team & Partner','','publish','closed','closed','','team-partner','','','2024-12-25 03:54:01','2024-12-25 03:54:01','',0,'https://demo.casethemes.net/contio/?page_id=28',9,'page','',0),(30,1,'2019-10-30 08:05:16','2019-10-30 08:05:16','FAQ\n	    <h3>\n        You can learn more from our asked questions    </h3>\n		At vero eos et accusamus et iusto odio digni goiku\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. 		\n                    <a>What should I include in my personal statement?</a>\n                Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiusmod tempor incididunt</u> ut labore.\n                    <a>Will membership plans be charged automatically?</a>\n                Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiusmod tempor incididunt</u> ut labore.\n                    <a>How can I make a change to my application?</a>\n                Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiusmod tempor incididunt</u> ut labore.\n                    <a>Where can I find out about funding?</a>\n                Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiusmod tempor incididunt</u> ut labore.\n                    <a>What will happen when I’ve sent my application?</a>\n                Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiusmod tempor incididunt</u> ut labore.\n                    <a>Can I get a free trial before I purchase?</a>\n                Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiusmod tempor incididunt</u> ut labore.\n	    <h3>\n        Have any other questions?    </h3>\n		At vero eos et accusamus et iusto odio digni goiku tori\nssimos ducimus qui blanditiis.		\n<form action=\"/ctthemes/cstri/wp-admin/admin-ajax.php#wpcf7-f308-o1\" method=\"post\" novalidate=\"novalidate\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"308\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.1.4\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f308-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Name*\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail address*\" />\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Ask question...\"></textarea>\n<button type=\"submit\">Send us now</button>\n</form>','FAQ','','draft','closed','closed','','faq','','','2024-10-28 02:46:37','2024-10-28 02:46:37','',0,'https://demo.casethemes.net/contio/?page_id=30',18,'page','',0),(43,1,'2019-11-01 02:40:59','2019-11-01 02:40:59','','bg-page-title','','inherit','open','closed','','bg-page-title','','','2019-11-01 02:40:59','2019-11-01 02:40:59','',0,'http://fe2tech.com/wp-content/uploads/2019/11/bg-page-title.jpg',0,'attachment','image/jpeg',0),(46,1,'2019-11-01 03:18:08','2019-11-01 03:18:08','','logo-footer-01','','inherit','open','closed','','logo-footer-01','','','2019-11-01 03:18:08','2019-11-01 03:18:08','',0,'http://fe2tech.com/wp-content/uploads/2019/10/logo-footer-01.png',0,'attachment','image/png',0),(87,1,'2019-11-01 08:43:31','2019-11-01 08:43:31','','bg-footer','','inherit','open','closed','','bg-footer','','','2019-11-01 08:43:31','2019-11-01 08:43:31','',0,'http://fe2tech.com/wp-content/uploads/2019/10/bg-footer.png',0,'attachment','image/png',0),(91,1,'2019-11-01 08:53:47','2019-11-01 08:53:47','<div class=\"input-filled\">[text* your-name placeholder \"Name*\"]</div>\r\n<div class=\"input-filled\">[email* your-email placeholder \"Mail address*\"]</div>\r\n<div class=\"input-filled\">[textarea* your-message placeholder \"Message...\"]</div>\r\n<div class=\"input-filled\"><button type=\"submit\" class=\"wpcf7-submit btn btn-secondary btn-block\">Send us now</button></div>\n1\nFar East High Tech Contact\nFar East High Tech <luutin.nmpco@gmail.com>\n[your-email]\nFrom: [your-name] <[your-email]>\r\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on Fe2tech (https://fe2tech.com/)\nReply-To: [your-email]\n\n\n\n\nFar East High Tech Contact\nFar East High Tech <luutin.nmpco@gmail.com>\n[your-email]\nName: [your-name]\r\nEmail: [your-email]\r\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on Fe2tech (https://fe2tech.com/)\nReply-To: [your-email]\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.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.\nCould not verify the reCaptcha response.\nPlease verify that you are not a robot.','Main Contact Form','','publish','closed','closed','','contact-form-1','','','2024-12-25 02:28:06','2024-12-25 02:28:06','',0,'https://demo.casethemes.net/contio/?post_type=wpcf7_contact_form&#038;p=91',0,'wpcf7_contact_form','',0),(109,1,'2019-11-01 09:31:52','2019-11-01 09:31:52','','bg-footer-bottom','','inherit','open','closed','','bg-footer-bottom','','','2019-11-01 09:31:52','2019-11-01 09:31:52','',0,'http://fe2tech.com/wp-content/uploads/2019/10/bg-footer-bottom.jpg',0,'attachment','image/jpeg',0),(149,1,'2019-11-04 02:07:35','2019-11-04 02:07:35','','constr-01','','inherit','open','closed','','constr-01','','','2019-11-04 02:07:35','2019-11-04 02:07:35','',0,'http://fe2tech.com/wp-content/uploads/2019/11/constr-01.jpg',0,'attachment','image/jpeg',0),(150,1,'2019-11-04 02:07:36','2019-11-04 02:07:36','','constr-02','','inherit','open','closed','','constr-02','','','2019-11-04 02:07:36','2019-11-04 02:07:36','',0,'http://fe2tech.com/wp-content/uploads/2019/11/constr-02.jpg',0,'attachment','image/jpeg',0),(151,1,'2019-11-04 02:07:38','2019-11-04 02:07:38','','constr-03','','inherit','open','closed','','constr-03','','','2019-11-04 02:07:38','2019-11-04 02:07:38','',0,'http://fe2tech.com/wp-content/uploads/2019/11/constr-03.jpg',0,'attachment','image/jpeg',0),(152,1,'2019-11-04 02:07:40','2019-11-04 02:07:40','','constr-04','','inherit','open','closed','','constr-04','','','2019-11-04 02:07:40','2019-11-04 02:07:40','',0,'http://fe2tech.com/wp-content/uploads/2019/11/constr-04.jpg',0,'attachment','image/jpeg',0),(153,1,'2019-11-04 02:07:41','2019-11-04 02:07:41','','constr-05','','inherit','open','closed','','constr-05','','','2019-11-04 02:07:41','2019-11-04 02:07:41','',0,'http://fe2tech.com/wp-content/uploads/2019/11/constr-05.jpg',0,'attachment','image/jpeg',0),(154,1,'2019-11-04 14:42:36','2019-11-04 14:42:36','','logo-hidden-sidebar','','inherit','open','closed','','logo-hidden-sidebar','','','2019-11-04 14:42:36','2019-11-04 14:42:36','',0,'http://fe2tech.com/wp-content/uploads/2019/11/logo-hidden-sidebar.png',0,'attachment','image/png',0),(170,1,'2019-11-05 02:43:30','2019-11-05 02:43:30','','constr-06','','inherit','open','closed','','constr-06','','','2019-11-05 02:43:30','2019-11-05 02:43:30','',0,'http://fe2tech.com/wp-content/uploads/2019/11/constr-06.jpg',0,'attachment','image/jpeg',0),(174,1,'2019-11-05 02:52:18','2019-11-05 02:52:18','','constr-07','','inherit','open','closed','','constr-07','','','2019-11-05 02:52:18','2019-11-05 02:52:18','',0,'http://fe2tech.com/wp-content/uploads/2019/11/constr-07.jpg',0,'attachment','image/jpeg',0),(175,1,'2019-11-05 02:52:20','2019-11-05 02:52:20','','constr-08','','inherit','open','closed','','constr-08','','','2019-11-05 02:52:20','2019-11-05 02:52:20','',0,'http://fe2tech.com/wp-content/uploads/2019/11/constr-08.jpg',0,'attachment','image/jpeg',0),(176,1,'2019-11-05 02:52:21','2019-11-05 02:52:21','','constr-09','','inherit','open','closed','','constr-09','','','2019-11-05 02:52:21','2019-11-05 02:52:21','',0,'http://fe2tech.com/wp-content/uploads/2019/11/constr-09.jpg',0,'attachment','image/jpeg',0),(177,1,'2019-11-05 02:52:22','2019-11-05 02:52:22','','constr-10','','inherit','open','closed','','constr-10','','','2019-11-05 02:52:22','2019-11-05 02:52:22','',0,'http://fe2tech.com/wp-content/uploads/2019/11/constr-10.jpg',0,'attachment','image/jpeg',0),(178,1,'2019-11-05 02:52:23','2019-11-05 02:52:23','','constr-11','','inherit','open','closed','','constr-11','','','2019-11-05 02:52:23','2019-11-05 02:52:23','',0,'http://fe2tech.com/wp-content/uploads/2019/11/constr-11.jpg',0,'attachment','image/jpeg',0),(179,1,'2019-11-05 03:06:48','2019-11-05 03:06:48','','gallery-01','','inherit','open','closed','','gallery-01','','','2019-11-05 03:06:48','2019-11-05 03:06:48','',0,'http://fe2tech.com/wp-content/uploads/2019/11/gallery-01.jpg',0,'attachment','image/jpeg',0),(180,1,'2019-11-05 03:06:49','2019-11-05 03:06:49','','gallery-02','','inherit','open','closed','','gallery-02','','','2019-11-05 03:06:49','2019-11-05 03:06:49','',0,'http://fe2tech.com/wp-content/uploads/2019/11/gallery-02.jpg',0,'attachment','image/jpeg',0),(181,1,'2019-11-05 03:06:50','2019-11-05 03:06:50','','gallery-03','','inherit','open','closed','','gallery-03','','','2019-11-05 03:06:50','2019-11-05 03:06:50','',0,'http://fe2tech.com/wp-content/uploads/2019/11/gallery-03.jpg',0,'attachment','image/jpeg',0),(182,1,'2019-11-05 03:06:51','2019-11-05 03:06:51','','gallery-04','','inherit','open','closed','','gallery-04','','','2019-11-05 03:06:51','2019-11-05 03:06:51','',0,'http://fe2tech.com/wp-content/uploads/2019/11/gallery-04.jpg',0,'attachment','image/jpeg',0),(183,1,'2019-11-05 03:06:52','2019-11-05 03:06:52','','gallery-05','','inherit','open','closed','','gallery-05','','','2019-11-05 03:06:52','2019-11-05 03:06:52','',0,'http://fe2tech.com/wp-content/uploads/2019/11/gallery-05.jpg',0,'attachment','image/jpeg',0),(184,1,'2019-11-05 03:06:53','2019-11-05 03:06:53','','gallery-06','','inherit','open','closed','','gallery-06','','','2019-11-05 03:06:53','2019-11-05 03:06:53','',0,'http://fe2tech.com/wp-content/uploads/2019/11/gallery-06.jpg',0,'attachment','image/jpeg',0),(237,1,'2019-11-09 02:05:09','2019-11-09 02:05:09','','author-01','','inherit','open','closed','','author-01','','','2019-11-09 02:05:09','2019-11-09 02:05:09','',0,'http://fe2tech.com/wp-content/uploads/2019/11/author-01.jpg',0,'attachment','image/jpeg',0),(238,1,'2019-11-09 02:05:10','2019-11-09 02:05:10','','author-02','','inherit','open','closed','','author-02','','','2019-11-09 02:05:10','2019-11-09 02:05:10','',0,'http://fe2tech.com/wp-content/uploads/2019/11/author-02.jpg',0,'attachment','image/jpeg',0),(250,1,'2019-11-09 03:53:35','2019-11-09 03:53:35','','marker','','inherit','open','closed','','marker','','','2019-11-09 03:53:35','2019-11-09 03:53:35','',0,'http://fe2tech.com/wp-content/uploads/2019/11/marker.png',0,'attachment','image/png',0),(279,1,'2019-11-09 04:58:38','2019-11-09 04:58:38','','info-icon-01','','inherit','open','closed','','info-icon-01','','','2019-11-09 04:58:38','2019-11-09 04:58:38','',0,'http://fe2tech.com/wp-content/uploads/2019/11/info-icon-01.png',0,'attachment','image/png',0),(280,1,'2019-11-09 04:58:39','2019-11-09 04:58:39','','info-icon-02','','inherit','open','closed','','info-icon-02','','','2019-11-09 04:58:39','2019-11-09 04:58:39','',0,'http://fe2tech.com/wp-content/uploads/2019/11/info-icon-02.png',0,'attachment','image/png',0),(281,1,'2019-11-09 04:58:39','2019-11-09 04:58:39','','info-icon-03','','inherit','open','closed','','info-icon-03','','','2019-11-09 04:58:39','2019-11-09 04:58:39','',0,'http://fe2tech.com/wp-content/uploads/2019/11/info-icon-03.png',0,'attachment','image/png',0),(302,1,'2019-11-09 07:48:03','2019-11-09 07:48:03','','bg-contact','','inherit','open','closed','','bg-contact','','','2019-11-09 07:48:03','2019-11-09 07:48:03','',0,'http://fe2tech.com/wp-content/uploads/2019/11/bg-contact.jpg',0,'attachment','image/jpeg',0),(332,1,'2019-11-09 09:31:45','2019-11-09 09:31:45','','bg-coming-soon','','inherit','open','closed','','bg-coming-soon','','','2019-11-09 09:31:45','2019-11-09 09:31:45','',0,'http://fe2tech.com/wp-content/uploads/2019/11/bg-coming-soon.png',0,'attachment','image/png',0),(351,1,'2019-11-09 15:13:09','2019-11-09 15:13:09','','team-01','','inherit','open','closed','','team-01','','','2019-11-09 15:13:09','2019-11-09 15:13:09','',0,'http://fe2tech.com/wp-content/uploads/2019/11/team-01.jpg',0,'attachment','image/jpeg',0),(352,1,'2019-11-09 15:13:09','2019-11-09 15:13:09','','team-02','','inherit','open','closed','','team-02','','','2019-11-09 15:13:09','2019-11-09 15:13:09','',0,'http://fe2tech.com/wp-content/uploads/2019/11/team-02.jpg',0,'attachment','image/jpeg',0),(353,1,'2019-11-09 15:13:10','2019-11-09 15:13:10','','team-03','','inherit','open','closed','','team-03','','','2019-11-09 15:13:10','2019-11-09 15:13:10','',0,'http://fe2tech.com/wp-content/uploads/2019/11/team-03.jpg',0,'attachment','image/jpeg',0),(354,1,'2019-11-09 15:13:11','2019-11-09 15:13:11','','team-04','','inherit','open','closed','','team-04','','','2019-11-09 15:13:11','2019-11-09 15:13:11','',0,'http://fe2tech.com/wp-content/uploads/2019/11/team-04.jpg',0,'attachment','image/jpeg',0),(355,1,'2019-11-09 15:13:12','2019-11-09 15:13:12','','team-05','','inherit','open','closed','','team-05','','','2019-11-09 15:13:12','2019-11-09 15:13:12','',0,'http://fe2tech.com/wp-content/uploads/2019/11/team-05.jpg',0,'attachment','image/jpeg',0),(356,1,'2019-11-09 15:13:12','2019-11-09 15:13:12','','team-06','','inherit','open','closed','','team-06','','','2019-11-09 15:13:12','2019-11-09 15:13:12','',0,'http://fe2tech.com/wp-content/uploads/2019/11/team-06.jpg',0,'attachment','image/jpeg',0),(367,1,'2019-11-11 02:18:04','2019-11-11 02:18:04','Testimonials\n	    <h3>\n        We will satisfy you by our work ideas    </h3>\n		At vero eos et accusamus et iusto odio digni goiku\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. 		\n                                <img src=\"https://fe2tech.com/wp-content/uploads/2019/11/testimonial-01.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-01\" title=\"testimonial-01\" />                                <i>”</i>\n                            Lorem Ipsum available, but the majority have to sufferrer tobe alterati on in som. It is a long to be established.\n                            <h3>    \n                                Adam Chuhan                            </h3>\n                            Web designer\n                                <img src=\"https://fe2tech.com/wp-content/uploads/2019/11/testimonial-02.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-02\" title=\"testimonial-02\" />                                <i>”</i>\n                            Lorem Ipsum available, but the majority have to sufferrer tobe alterati on in som. It is a long to be established.\n                            <h3>    \n                                Erika Johnson                            </h3>\n                            Web designer\n                                <img src=\"https://fe2tech.com/wp-content/uploads/2019/11/testimonial-03.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-03\" title=\"testimonial-03\" />                                <i>”</i>\n                            Lorem Ipsum available, but the majority have to sufferrer tobe alterati on in som. It is a long to be established.\n                            <h3>    \n                                Allie Johnson                            </h3>\n                            SEO manager\n                                <img src=\"https://fe2tech.com/wp-content/uploads/2019/11/testimonial-04.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-04\" title=\"testimonial-04\" />                                <i>”</i>\n                            Lorem Ipsum available, but the majority have to sufferrer tobe alterati on in som. It is a long to be established.\n                            <h3>    \n                                James Smith                            </h3>\n                            Web designer\n                                <img src=\"https://fe2tech.com/wp-content/uploads/2019/11/testimonial-05.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-05\" title=\"testimonial-05\" />                                <i>”</i>\n                            Lorem Ipsum available, but the majority have to sufferrer tobe alterati on in som. It is a long to be established.\n                            <h3>    \n                                Sasha D Johnson                            </h3>\n                            SEO manager\n                                <img src=\"https://fe2tech.com/wp-content/uploads/2019/11/testimonial-06.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-06\" title=\"testimonial-06\" />                                <i>”</i>\n                            Lorem Ipsum available, but the majority have to sufferrer tobe alterati on in som. It is a long to be established.\n                            <h3>    \n                                Debra L Smith                            </h3>\n                            SEO manager','Testimonials','','draft','closed','closed','','testimonials','','','2024-10-28 02:47:04','2024-10-28 02:47:04','',0,'https://demo.casethemes.net/contio/?page_id=367',19,'page','',0),(380,1,'2019-11-11 02:52:45','2019-11-11 02:52:45','','team-details','','inherit','open','closed','','team-details-2','','','2019-11-11 02:52:45','2019-11-11 02:52:45','',0,'http://fe2tech.com/wp-content/uploads/2019/11/team-details.jpg',0,'attachment','image/jpeg',0),(397,1,'2019-11-11 07:30:40','2019-11-11 07:30:40','','testimonial-01','','inherit','open','closed','','testimonial-01','','','2019-11-11 07:30:40','2019-11-11 07:30:40','',0,'http://fe2tech.com/wp-content/uploads/2019/11/testimonial-01.jpg',0,'attachment','image/jpeg',0),(398,1,'2019-11-11 07:30:40','2019-11-11 07:30:40','','testimonial-02','','inherit','open','closed','','testimonial-02','','','2019-11-11 07:30:40','2019-11-11 07:30:40','',0,'http://fe2tech.com/wp-content/uploads/2019/11/testimonial-02.jpg',0,'attachment','image/jpeg',0),(399,1,'2019-11-11 07:30:41','2019-11-11 07:30:41','','testimonial-03','','inherit','open','closed','','testimonial-03','','','2019-11-11 07:30:41','2019-11-11 07:30:41','',0,'http://fe2tech.com/wp-content/uploads/2019/11/testimonial-03.jpg',0,'attachment','image/jpeg',0),(400,1,'2019-11-11 07:30:42','2019-11-11 07:30:42','','testimonial-04','','inherit','open','closed','','testimonial-04','','','2019-11-11 07:30:42','2019-11-11 07:30:42','',0,'http://fe2tech.com/wp-content/uploads/2019/11/testimonial-04.jpg',0,'attachment','image/jpeg',0),(401,1,'2019-11-11 07:30:43','2019-11-11 07:30:43','','testimonial-05','','inherit','open','closed','','testimonial-05','','','2019-11-11 07:30:43','2019-11-11 07:30:43','',0,'http://fe2tech.com/wp-content/uploads/2019/11/testimonial-05.jpg',0,'attachment','image/jpeg',0),(402,1,'2019-11-11 07:30:44','2019-11-11 07:30:44','','testimonial-06','','inherit','open','closed','','testimonial-06','','','2019-11-11 07:30:44','2019-11-11 07:30:44','',0,'http://fe2tech.com/wp-content/uploads/2019/11/testimonial-06.jpg',0,'attachment','image/jpeg',0),(405,1,'2019-11-11 08:01:56','2019-11-11 08:01:56','','dot-map','','inherit','open','closed','','dot-map','','','2019-11-11 08:01:56','2019-11-11 08:01:56','',0,'http://fe2tech.com/wp-content/uploads/2019/11/dot-map.png',0,'attachment','image/png',0),(430,1,'2019-11-11 09:10:54','2019-11-11 09:10:54','','service-01','','inherit','open','closed','','service-01','','','2019-11-11 09:10:54','2019-11-11 09:10:54','',0,'http://fe2tech.com/wp-content/uploads/2019/11/service-01.jpg',0,'attachment','image/jpeg',0),(431,1,'2019-11-11 09:10:55','2019-11-11 09:10:55','','service-02','','inherit','open','closed','','service-02','','','2019-11-11 09:10:55','2019-11-11 09:10:55','',0,'http://fe2tech.com/wp-content/uploads/2019/11/service-02.jpg',0,'attachment','image/jpeg',0),(432,1,'2019-11-11 09:10:56','2019-11-11 09:10:56','','service-03','','inherit','open','closed','','service-03','','','2019-11-11 09:10:56','2019-11-11 09:10:56','',0,'http://fe2tech.com/wp-content/uploads/2019/11/service-03.jpg',0,'attachment','image/jpeg',0),(433,1,'2019-11-11 09:10:56','2019-11-11 09:10:56','','service-04','','inherit','open','closed','','service-04','','','2019-11-11 09:10:56','2019-11-11 09:10:56','',0,'http://fe2tech.com/wp-content/uploads/2019/11/service-04.jpg',0,'attachment','image/jpeg',0),(437,1,'2019-11-11 09:16:28','2019-11-11 09:16:28','','service-05','','inherit','open','closed','','service-05','','','2019-11-11 09:16:28','2019-11-11 09:16:28','',0,'http://fe2tech.com/wp-content/uploads/2019/11/service-05.jpg',0,'attachment','image/jpeg',0),(612,1,'2019-11-13 06:47:26','2019-11-13 06:47:26','','icon-box-01','','inherit','open','closed','','icon-box-01','','','2019-11-13 06:47:26','2019-11-13 06:47:26','',0,'http://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png',0,'attachment','image/png',0),(613,1,'2019-11-13 06:47:27','2019-11-13 06:47:27','','icon-box-02','','inherit','open','closed','','icon-box-02','','','2019-11-13 06:47:27','2019-11-13 06:47:27','',0,'http://fe2tech.com/wp-content/uploads/2019/11/icon-box-02.png',0,'attachment','image/png',0),(623,1,'2019-11-13 07:01:42','2019-11-13 07:01:42','','banner-01','','inherit','open','closed','','banner-01','','','2019-11-13 07:01:42','2019-11-13 07:01:42','',0,'http://fe2tech.com/wp-content/uploads/2019/11/banner-01.jpg',0,'attachment','image/jpeg',0),(633,1,'2019-11-13 07:21:42','2019-11-13 07:21:42','','signature1','','inherit','open','closed','','signature1','','','2019-11-13 07:21:42','2019-11-13 07:21:42','',0,'http://fe2tech.com/wp-content/uploads/2019/11/signature1.png',0,'attachment','image/png',0),(663,1,'2019-11-13 09:00:49','2019-11-13 09:00:49','','bg-parallax-01','','inherit','open','closed','','bg-parallax-01','','','2019-11-13 09:00:49','2019-11-13 09:00:49','',0,'http://fe2tech.com/wp-content/uploads/2019/11/bg-parallax-01-scaled.jpg',0,'attachment','image/jpeg',0),(759,1,'2019-11-15 07:20:46','2019-11-15 07:20:46','','product-01','','inherit','open','closed','','product-01','','','2019-11-15 07:20:46','2019-11-15 07:20:46','',0,'http://fe2tech.com/wp-content/uploads/2019/11/product-01.jpg',0,'attachment','image/jpeg',0),(760,1,'2019-11-15 07:20:47','2019-11-15 07:20:47','','product-02','','inherit','open','closed','','product-02','','','2019-11-15 07:20:47','2019-11-15 07:20:47','',0,'http://fe2tech.com/wp-content/uploads/2019/11/product-02.jpg',0,'attachment','image/jpeg',0),(761,1,'2019-11-15 07:20:49','2019-11-15 07:20:49','','product-03','','inherit','open','closed','','product-03','','','2019-11-15 07:20:49','2019-11-15 07:20:49','',0,'http://fe2tech.com/wp-content/uploads/2019/11/product-03.jpg',0,'attachment','image/jpeg',0),(762,1,'2019-11-15 07:20:50','2019-11-15 07:20:50','','product-04','','inherit','open','closed','','product-04','','','2019-11-15 07:20:50','2019-11-15 07:20:50','',0,'http://fe2tech.com/wp-content/uploads/2019/11/product-04.jpg',0,'attachment','image/jpeg',0),(763,1,'2019-11-15 07:20:52','2019-11-15 07:20:52','','product-05','','inherit','open','closed','','product-05','','','2019-11-15 07:20:52','2019-11-15 07:20:52','',0,'http://fe2tech.com/wp-content/uploads/2019/11/product-05.jpg',0,'attachment','image/jpeg',0),(764,1,'2019-11-15 07:20:53','2019-11-15 07:20:53','','product-06','','inherit','open','closed','','product-06','','','2019-11-15 07:20:53','2019-11-15 07:20:53','',0,'http://fe2tech.com/wp-content/uploads/2019/11/product-06.jpg',0,'attachment','image/jpeg',0),(765,1,'2019-11-15 07:20:54','2019-11-15 07:20:54','','product-07','','inherit','open','closed','','product-07','','','2019-11-15 07:20:54','2019-11-15 07:20:54','',0,'http://fe2tech.com/wp-content/uploads/2019/11/product-07.jpg',0,'attachment','image/jpeg',0),(766,1,'2019-11-15 07:20:56','2019-11-15 07:20:56','','product-08','','inherit','open','closed','','product-08','','','2019-11-15 07:20:56','2019-11-15 07:20:56','',0,'http://fe2tech.com/wp-content/uploads/2019/11/product-08.jpg',0,'attachment','image/jpeg',0),(767,1,'2019-11-15 07:20:57','2019-11-15 07:20:57','','product-09','','inherit','open','closed','','product-09','','','2019-11-15 07:20:57','2019-11-15 07:20:57','',0,'http://fe2tech.com/wp-content/uploads/2019/11/product-09.jpg',0,'attachment','image/jpeg',0),(768,1,'2019-11-15 07:20:59','2019-11-15 07:20:59','','product-10','','inherit','open','closed','','product-10','','','2019-11-15 07:20:59','2019-11-15 07:20:59','',0,'http://fe2tech.com/wp-content/uploads/2019/11/product-10.jpg',0,'attachment','image/jpeg',0),(769,1,'2019-11-15 07:21:01','2019-11-15 07:21:01','','product-11','','inherit','open','closed','','product-11','','','2019-11-15 07:21:01','2019-11-15 07:21:01','',0,'http://fe2tech.com/wp-content/uploads/2019/11/product-11-scaled.jpg',0,'attachment','image/jpeg',0),(770,1,'2019-11-15 07:21:07','2019-11-15 07:21:07','','product-12','','inherit','open','closed','','product-12','','','2019-11-15 07:21:07','2019-11-15 07:21:07','',0,'http://fe2tech.com/wp-content/uploads/2019/11/product-12.jpg',0,'attachment','image/jpeg',0),(798,1,'2019-11-19 12:51:17','2019-11-19 12:51:17','','p-dark-logo1','','inherit','open','closed','','p-dark-logo1','','','2019-11-19 12:51:17','2019-11-19 12:51:17','',0,'http://fe2tech.com/wp-content/uploads/2019/11/p-dark-logo1.png',0,'attachment','image/png',0),(799,1,'2019-11-19 16:13:22','2019-11-19 16:13:22','<a href=\"http://fe2tech.com/\">\n							<img width=\"597\" height=\"597\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/logo.jpg\" alt=\"\" />								</a>\n			    <ul>\n                    <li>\n            	   Factory 1: No. 4 Doan Thi Kia, Dong Chieu Hamlet, Tan Dong\nHiep Ward, Di An City, Binh Duong, Viet Nam                \n           </li>\n                    <li>\n            	   Factory 2: Khac Niem Industrial Cluster, Khac Niem Ward, Bac Ninh\nCit, Bac Ninh, Viet Nam                \n           </li>\n                    <li>\n            	   Factory 3: 1476 Pho Va Street, Hap Linh Ward, Bac Ninh City, Bac\nNinh, Viet Nam                \n           </li>\n                    <li>\n            	   0968 86 03 86                \n           </li>\n            </ul>\n    <h3>\n        Menu\n        <i></i>\n    </h3>\n        <ul id=\"menu-main-menu-2\"><li><a href=\"https://fe2tech.com/\">Home</a></li>\n<li><a href=\"https://fe2tech.com/product/\">Product</a></li>\n<li><a href=\"https://fe2tech.com/services/\">Service</a></li>\n<li><a href=\"https://fe2tech.com/team-partner/\">Team &#038; Partner</a></li>\n<li><a href=\"https://fe2tech.com/about-us/\">About Us</a></li>\n<li><a href=\"#pll_switcher\">Languages</a></li>\n</ul>    \n    <h3>\n        Open Hours\n        <i></i>\n    </h3>\n		<p>Mon - Sun: 24/24</p>		\n    <h3>\n        Newsletter\n        <i></i>\n    </h3>\n		Sign up for alerts, our latest blogs, thoughts, and insights.		\n        <form method=\"post\" action=\"https://fe2tech.com/wp-admin/admin-ajax.php?action=tnp&amp;na=s\" style=\"\">\n<input type=\"hidden\" name=\"nlang\" value=\"\">\n<label for=\"tnp-3\">Your mail address</label>\n<input type=\"email\" name=\"ne\" id=\"tnp-3\" value=\"\" placeholder=\"\" required>\n<input type=\"submit\" value=\"Subscribe\" style=\"\">\n</form>    \n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n		<p>Copyright @2024 of Far East High Tech Ltd. Co.</p>','Footer','','publish','closed','closed','','footer','','','2025-03-17 03:37:21','2025-03-17 03:37:21','',0,'https://demo.casethemes.net/contio/?post_type=footer&#038;p=799',0,'footer','',0),(806,1,'2019-11-19 16:17:11','2019-11-19 16:17:11','','logo-footer-02','','inherit','open','closed','','logo-footer-02','','','2019-11-19 16:17:11','2019-11-19 16:17:11','',0,'http://fe2tech.com/wp-content/uploads/2019/11/logo-footer-02.png',0,'attachment','image/png',0),(813,1,'2019-11-21 12:41:13','2019-11-21 12:41:13','','bg-slider-01','','inherit','open','closed','','bg-slider-01','','','2019-11-21 12:41:13','2019-11-21 12:41:13','',0,'http://fe2tech.com/wp-content/uploads/2019/11/bg-slider-01.jpg',0,'attachment','image/jpeg',0),(822,1,'2019-11-21 14:21:14','2019-11-21 14:21:14','','bg-slider-bottom','','inherit','open','closed','','bg-slider-bottom','','','2019-11-21 14:21:14','2019-11-21 14:21:14','',0,'http://fe2tech.com/wp-content/uploads/2019/11/bg-slider-bottom-scaled.png',0,'attachment','image/png',0),(843,1,'2019-11-21 15:34:53','2019-11-21 15:34:53','','home-image-01','','inherit','open','closed','','home-image-01','','','2019-11-21 15:34:53','2019-11-21 15:34:53','',0,'http://fe2tech.com/wp-content/uploads/2019/11/home-image-01.png',0,'attachment','image/png',0),(861,1,'2019-11-21 16:17:58','2019-11-21 16:17:58','','service-06','','inherit','open','closed','','service-06','','','2019-11-21 16:17:58','2019-11-21 16:17:58','',0,'http://fe2tech.com/wp-content/uploads/2019/11/service-06.jpg',0,'attachment','image/jpeg',0),(862,1,'2019-11-21 16:17:59','2019-11-21 16:17:59','','service-07','','inherit','open','closed','','service-07','','','2019-11-21 16:17:59','2019-11-21 16:17:59','',0,'http://fe2tech.com/wp-content/uploads/2019/11/service-07.jpg',0,'attachment','image/jpeg',0),(863,1,'2019-11-21 16:18:01','2019-11-21 16:18:01','','service-08','','inherit','open','closed','','service-08','','','2019-11-21 16:18:01','2019-11-21 16:18:01','',0,'http://fe2tech.com/wp-content/uploads/2019/11/service-08.jpg',0,'attachment','image/jpeg',0),(864,1,'2019-11-21 16:18:03','2019-11-21 16:18:03','','service-09','','inherit','open','closed','','service-09','','','2019-11-21 16:18:03','2019-11-21 16:18:03','',0,'http://fe2tech.com/wp-content/uploads/2019/11/service-09.jpg',0,'attachment','image/jpeg',0),(879,1,'2019-11-22 07:42:57','2019-11-22 07:42:57','','bg-slider-02','','inherit','open','closed','','bg-slider-02','','','2019-11-22 07:42:57','2019-11-22 07:42:57','',0,'http://fe2tech.com/wp-content/uploads/2019/11/bg-slider-02.jpg',0,'attachment','image/jpeg',0),(880,1,'2019-11-22 07:44:32','2019-11-22 07:44:32','','bg-slider-03','','inherit','open','closed','','bg-slider-03','','','2019-11-22 07:44:32','2019-11-22 07:44:32','',0,'http://fe2tech.com/wp-content/uploads/2019/11/bg-slider-03.jpg',0,'attachment','image/jpeg',0),(882,1,'2019-11-22 07:53:41','2019-11-22 07:53:41','','bg-section-01','','inherit','open','closed','','bg-section-01','','','2019-11-22 07:53:41','2019-11-22 07:53:41','',0,'http://fe2tech.com/wp-content/uploads/2019/11/bg-section-01.jpg',0,'attachment','image/jpeg',0),(886,1,'2019-11-22 07:57:07','2019-11-22 07:57:07','','banner-02','','inherit','open','closed','','banner-02','','','2019-11-22 07:57:07','2019-11-22 07:57:07','',0,'http://fe2tech.com/wp-content/uploads/2019/11/banner-02.jpg',0,'attachment','image/jpeg',0),(889,1,'2019-11-22 08:03:45','2019-11-22 08:03:45','','banner-icon-01','','inherit','open','closed','','banner-icon-01','','','2019-11-22 08:03:45','2019-11-22 08:03:45','',0,'http://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png',0,'attachment','image/png',0),(906,1,'2019-11-22 15:54:17','2019-11-22 15:54:17','','map','','inherit','open','closed','','map','','','2019-11-22 15:54:17','2019-11-22 15:54:17','',0,'http://fe2tech.com/wp-content/uploads/2019/11/map.png',0,'attachment','image/png',0),(925,1,'2019-11-22 17:38:39','2019-11-22 17:38:39','','team-03-new','','inherit','open','closed','','team-03-new','','','2019-11-22 17:38:39','2019-11-22 17:38:39','',0,'http://fe2tech.com/wp-content/uploads/2019/11/team-03-new.jpg',0,'attachment','image/jpeg',0),(926,1,'2019-11-22 17:38:40','2019-11-22 17:38:40','','team-04-new','','inherit','open','closed','','team-04-new','','','2019-11-22 17:38:40','2019-11-22 17:38:40','',0,'http://fe2tech.com/wp-content/uploads/2019/11/team-04-new.jpg',0,'attachment','image/jpeg',0),(927,1,'2019-11-22 17:38:41','2019-11-22 17:38:41','','team-05-new','','inherit','open','closed','','team-05-new','','','2019-11-22 17:38:41','2019-11-22 17:38:41','',0,'http://fe2tech.com/wp-content/uploads/2019/11/team-05-new.jpg',0,'attachment','image/jpeg',0),(932,1,'2019-11-23 03:47:55','2019-11-23 03:47:55','<div class=\"quote-form\">[email* your-email placeholder \"Email address\"]<button type=\"submit\" class=\"wpcf7-submit btn\">Get now</button></div>\n1\nFar East High Tech Contact\nFar East High Tech <luutin.nmpco@gmail.com>\n[your-email]\nFrom: <[your-email]>\r\nEmail: [your-email]\r\n-- \r\nThis e-mail was sent from a contact form on Fe2tech (https://fe2tech.com/)\nReply-To: [your-email]\n\n\n\n\nCstrio \"[your-name]\"\nCstrio <casethemes.net@gmail.com>\n[your-email]\nName: [your-name]\r\nEmail: [your-email]\r\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on Cstrio (https://demo.casethemes.net/contio)\nReply-To: casethemes.net@gmail.com\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.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','Quote Form','','publish','closed','closed','','coming-soon-form_copy','','','2024-10-28 09:09:05','2024-10-28 09:09:05','',0,'https://demo.casethemes.net/contio/?post_type=wpcf7_contact_form&#038;p=932',0,'wpcf7_contact_form','',0),(948,1,'2019-11-23 10:07:34','2019-11-23 10:07:34','','bg-parallax-01','','inherit','open','closed','','bg-parallax-01-2','','','2019-11-23 10:07:34','2019-11-23 10:07:34','',0,'http://fe2tech.com/wp-content/uploads/2019/11/bg-parallax-01-1.jpg',0,'attachment','image/jpeg',0),(957,1,'2019-11-23 12:18:04','2019-11-23 12:18:04','','marker-02','','inherit','open','closed','','marker-02','','','2019-11-23 12:18:04','2019-11-23 12:18:04','',0,'http://fe2tech.com/wp-content/uploads/2019/11/marker-02.png',0,'attachment','image/png',0),(974,1,'2019-11-23 12:48:10','2019-11-23 12:48:10','<div class=\"row\">\r\n	<div class=\"input-filled col-lg-6 col-md-6\"><i class=\"fac fac-user input-icon\"></i>[text* your-name placeholder \"Your name\"]</div>\r\n	<div class=\"input-filled col-lg-6 col-md-6\"><i class=\"fac fac-envelope input-icon\"></i>[email* your-email placeholder \"Mail adress\"]</div>\r\n</div>\r\n<div class=\"row\">\r\n	<div class=\"input-filled col-lg-6 col-md-6\"><i class=\"fac fac-phone input-icon\"></i>[text* your-phone placeholder \"Phone number\"]</div>\r\n	<div class=\"input-filled col-lg-6 col-md-6\">[select* your-service placeholder \"Your Service\" \"Precision Measurement Services\" \"Planing Service\" \"Quality Inspection Services\" \"Turning and Milling Services\" \"Hydraulic Press Services\" \"Automated Welding Services\" \"CNC Machining Services\" \"Grinding Service\" \"Other\"]</div>\r\n</div>\r\n<div class=\"row\">\r\n	<div class=\"input-filled col-12\">[textarea* your-message placeholder \"Text message...\"]</div>\r\n	<div class=\"input-filled col-12\">[recaptcha]</div>\r\n	<div class=\"input-filled col-12\"><button type=\"submit\" class=\"wpcf7-submit btn btn-preset3\"><i class=\"fac fac-paper-plane space-right\"></i>Send message</button></div>\r\n</div>\n1\n[your-service]\nFar East High Tech <luutin.nmpco@gmail.com>\n[your-email]\nFrom: [your-name] <[your-email]>\r\nPhone: [your-phone]\r\nService: [your-service] \r\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on Fe2tech (https://fe2tech.com/)\nReply-To: [your-email]\n\n\n\n\n[your-service]\nFar East High Tech <luutin.nmpco@gmail.com>\n[your-email]\nFrom: [your-name] <[your-email]>\r\nPhone: [your-phone]\r\nService: [your-service] \r\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on Fe2tech (https://fe2tech.com/)\nReply-To: [your-email]\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.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.\nCould not verify the reCaptcha response.\nPlease verify that you are not a robot.','Home Contact Form','','publish','closed','closed','','main-contact-form_copy-3','','','2024-12-25 02:27:44','2024-12-25 02:27:44','',0,'https://demo.casethemes.net/contio/?post_type=wpcf7_contact_form&#038;p=974',0,'wpcf7_contact_form','',0),(989,1,'2019-11-23 14:41:07','2019-11-23 14:41:07','','portfolio-07','','inherit','open','closed','','portfolio-07','','','2019-11-23 14:41:07','2019-11-23 14:41:07','',0,'http://fe2tech.com/wp-content/uploads/2019/11/portfolio-07.jpg',0,'attachment','image/jpeg',0),(997,1,'2019-11-23 16:18:31','2019-11-23 16:18:31','','client-01','','inherit','open','closed','','client-01','','','2019-11-23 16:18:31','2019-11-23 16:18:31','',0,'http://fe2tech.com/wp-content/uploads/2019/11/client-01.png',0,'attachment','image/png',0),(998,1,'2019-11-23 16:18:32','2019-11-23 16:18:32','','client-02','','inherit','open','closed','','client-02','','','2019-11-23 16:18:32','2019-11-23 16:18:32','',0,'http://fe2tech.com/wp-content/uploads/2019/11/client-02.png',0,'attachment','image/png',0),(999,1,'2019-11-23 16:18:33','2019-11-23 16:18:33','','client-03','','inherit','open','closed','','client-03','','','2019-11-23 16:18:33','2019-11-23 16:18:33','',0,'http://fe2tech.com/wp-content/uploads/2019/11/client-03.png',0,'attachment','image/png',0),(1000,1,'2019-11-23 16:18:34','2019-11-23 16:18:34','','client-04','','inherit','open','closed','','client-04','','','2019-11-23 16:18:34','2019-11-23 16:18:34','',0,'http://fe2tech.com/wp-content/uploads/2019/11/client-04.png',0,'attachment','image/png',0),(1006,1,'2019-11-24 01:56:09','2019-11-24 01:56:09','','bg-slider-04','','inherit','open','closed','','bg-slider-04','','','2019-11-24 01:56:09','2019-11-24 01:56:09','',0,'http://fe2tech.com/wp-content/uploads/2019/11/bg-slider-04.jpg',0,'attachment','image/jpeg',0),(1009,1,'2019-11-24 02:32:10','2019-11-24 02:32:10','','bg-slider-05','','inherit','open','closed','','bg-slider-05','','','2019-11-24 02:32:10','2019-11-24 02:32:10','',0,'http://fe2tech.com/wp-content/uploads/2019/11/bg-slider-05.jpg',0,'attachment','image/jpeg',0),(1018,1,'2019-11-24 04:31:09','2019-11-24 04:31:09','','bg-slider-06','','inherit','open','closed','','bg-slider-06','','','2019-11-24 04:31:09','2019-11-24 04:31:09','',0,'http://fe2tech.com/wp-content/uploads/2019/11/bg-slider-06.jpg',0,'attachment','image/jpeg',0),(1056,1,'2019-11-24 09:48:38','2019-11-24 09:48:38','','bg-parallax-02','','inherit','open','closed','','bg-parallax-02','','','2019-11-24 09:48:38','2019-11-24 09:48:38','',0,'http://fe2tech.com/wp-content/uploads/2019/11/bg-parallax-02.jpg',0,'attachment','image/jpeg',0),(1072,1,'2019-11-24 10:11:07','2019-11-24 10:11:07','','bg-section-02','','inherit','open','closed','','bg-section-02','','','2019-11-24 10:11:07','2019-11-24 10:11:07','',0,'http://fe2tech.com/wp-content/uploads/2019/11/bg-section-02.jpg',0,'attachment','image/jpeg',0),(1075,1,'2019-11-24 14:11:41','2019-11-24 14:11:41','','pointer-01','','inherit','open','closed','','pointer-01','','','2019-11-24 14:11:41','2019-11-24 14:11:41','',0,'http://fe2tech.com/wp-content/uploads/2019/11/pointer-01.png',0,'attachment','image/png',0),(1122,1,'2019-11-24 16:41:49','2019-11-24 16:41:49','','app-store','','inherit','open','closed','','app-store','','','2019-11-24 16:41:49','2019-11-24 16:41:49','',0,'http://fe2tech.com/wp-content/uploads/2019/11/app-store.png',0,'attachment','image/png',0),(1123,1,'2019-11-24 16:41:50','2019-11-24 16:41:50','','google-play','','inherit','open','closed','','google-play','','','2019-11-24 16:41:50','2019-11-24 16:41:50','',0,'http://fe2tech.com/wp-content/uploads/2019/11/google-play.png',0,'attachment','image/png',0),(1124,1,'2019-11-24 16:41:51','2019-11-24 16:41:51','','phone','','inherit','open','closed','','phone','','','2019-11-24 16:41:51','2019-11-24 16:41:51','',0,'http://fe2tech.com/wp-content/uploads/2019/11/phone.png',0,'attachment','image/png',0),(1153,1,'2019-11-25 04:11:35','2019-11-25 04:11:35','','bg-form-01','','inherit','open','closed','','bg-form-01','','','2019-11-25 04:11:35','2019-11-25 04:11:35','',0,'http://fe2tech.com/wp-content/uploads/2019/11/bg-form-01.png',0,'attachment','image/png',0),(1155,1,'2019-11-25 04:21:05','2019-11-25 04:21:05','','bg-section-03','','inherit','open','closed','','bg-section-03','','','2019-11-25 04:21:05','2019-11-25 04:21:05','',0,'http://fe2tech.com/wp-content/uploads/2019/11/bg-section-03.jpg',0,'attachment','image/jpeg',0),(1187,1,'2019-11-25 08:22:01','2019-11-25 08:22:01','','service-pointer','','inherit','open','closed','','service-pointer','','','2019-11-25 08:22:01','2019-11-25 08:22:01','',0,'http://fe2tech.com/wp-content/uploads/2019/11/service-pointer.png',0,'attachment','image/png',0),(1214,1,'2019-11-25 12:06:00','2019-11-25 12:06:00','<h3>Basic Plan</h3>\n        The argument in favor of using to filler text goes something.\n    $29/ monthly\n                    <ul>\n                                    <li><del>24/7 system monitoring</del></li>\n                                    <li>Security management</li>\n                                    <li><del>Secure finance backup</del></li>\n                                    <li><del>Remote support</del></li>\n                            </ul>\n                <a href=\"#\">Get a free trial</a>\n            Recommended\n        <h3>Standard Plan</h3>\n        The argument in favor of using to filler text goes something.\n    $49/ monthly\n                    <ul>\n                                    <li>24/7 system monitoring</li>\n                                    <li><del>Security management</del></li>\n                                    <li>Secure finance backup</li>\n                                    <li><del>Remote support</del></li>\n                            </ul>\n                <a href=\"#\">Get a free trial</a>\n        <h3>Extended Plan</h3>\n        The argument in favor of using to filler text goes something.\n    $59/ monthly\n                    <ul>\n                                    <li>24/7 system monitoring</li>\n                                    <li>Security management</li>\n                                    <li>Secure finance backup</li>\n                                    <li>Remote support</li>\n                            </ul>\n                <a href=\"#\">Get a free trial</a>','Pricing - Month','','publish','closed','closed','','pricing-month','','','2019-11-25 12:06:00','2019-11-25 12:06:00','',0,'https://demo.casethemes.net/contio/?elementor_library=pricing-month',0,'elementor_library','',0),(1217,1,'2019-11-25 12:06:13','2019-11-25 12:06:13','<h3>Basic Plan</h3>\n        The argument in favor of using to filler text goes something.\n    $49/ monthly\n                    <ul>\n                                    <li><del>24/7 system monitoring</del></li>\n                                    <li>Security management</li>\n                                    <li><del>Secure finance backup</del></li>\n                                    <li><del>Remote support</del></li>\n                            </ul>\n                <a href=\"#\">Get a free trial</a>\n            Recommended\n        <h3>Standard Plan</h3>\n        The argument in favor of using to filler text goes something.\n    $89/ monthly\n                    <ul>\n                                    <li>24/7 system monitoring</li>\n                                    <li><del>Security management</del></li>\n                                    <li>Secure finance backup</li>\n                                    <li><del>Remote support</del></li>\n                            </ul>\n                <a href=\"#\">Get a free trial</a>\n        <h3>Extended Plan</h3>\n        The argument in favor of using to filler text goes something.\n    $120/ monthly\n                    <ul>\n                                    <li>24/7 system monitoring</li>\n                                    <li>Security management</li>\n                                    <li>Secure finance backup</li>\n                                    <li>Remote support</li>\n                            </ul>\n                <a href=\"#\">Get a free trial</a>','Pricing - Year','','publish','closed','closed','','pricing-year','','','2019-11-25 12:06:13','2019-11-25 12:06:13','',0,'https://demo.casethemes.net/contio/?elementor_library=pricing-year',0,'elementor_library','',0),(1251,1,'2019-11-25 15:04:51','2019-11-25 15:04:51','','logo-footer-03','','inherit','open','closed','','logo-footer-03','','','2019-11-25 15:04:51','2019-11-25 15:04:51','',0,'http://fe2tech.com/wp-content/uploads/2019/11/logo-footer-03.png',0,'attachment','image/png',0),(1253,1,'2019-11-25 15:20:58','2019-11-25 15:20:58','','p-light-logo1','','inherit','open','closed','','p-light-logo1','','','2019-11-25 15:20:58','2019-11-25 15:20:58','',0,'http://fe2tech.com/wp-content/uploads/2019/11/p-light-logo1.png',0,'attachment','image/png',0),(1254,1,'2019-11-25 15:26:15','2019-11-25 15:26:15','','p-dark-logo2','','inherit','open','closed','','p-dark-logo2','','','2019-11-25 15:26:15','2019-11-25 15:26:15','',0,'http://fe2tech.com/wp-content/uploads/2019/11/p-dark-logo2.png',0,'attachment','image/png',0),(1255,1,'2019-11-25 15:37:40','2019-11-25 15:37:40','','bg-slider-07','','inherit','open','closed','','bg-slider-07','','','2019-11-25 15:37:40','2019-11-25 15:37:40','',0,'http://fe2tech.com/wp-content/uploads/2019/11/bg-slider-07.jpg',0,'attachment','image/jpeg',0),(1257,1,'2019-11-26 02:15:08','2019-11-26 02:15:08','','bg-slider-08','','inherit','open','closed','','bg-slider-08','','','2019-11-26 02:15:08','2019-11-26 02:15:08','',0,'http://fe2tech.com/wp-content/uploads/2019/11/bg-slider-08.jpg',0,'attachment','image/jpeg',0),(1258,1,'2019-11-26 02:22:43','2019-11-26 02:22:43','','bg-slider-09','','inherit','open','closed','','bg-slider-09','','','2019-11-26 02:22:43','2019-11-26 02:22:43','',0,'http://fe2tech.com/wp-content/uploads/2019/11/bg-slider-09.jpg',0,'attachment','image/jpeg',0),(1300,1,'2019-11-26 08:56:05','2019-11-26 08:56:05','','h2_banner_img1','','inherit','open','closed','','h2_banner_img1','','','2019-11-26 08:56:05','2019-11-26 08:56:05','',0,'http://fe2tech.com/wp-content/uploads/2019/11/h2_banner_img1.jpg',0,'attachment','image/jpeg',0),(1301,1,'2019-11-26 08:56:08','2019-11-26 08:56:08','','h2_banner_img2','','inherit','open','closed','','h2_banner_img2','','','2019-11-26 08:56:08','2019-11-26 08:56:08','',0,'http://fe2tech.com/wp-content/uploads/2019/11/h2_banner_img2.jpg',0,'attachment','image/jpeg',0),(1302,1,'2019-11-26 08:56:09','2019-11-26 08:56:09','','h2_banner_img3','','inherit','open','closed','','h2_banner_img3','','','2019-11-26 08:56:09','2019-11-26 08:56:09','',0,'http://fe2tech.com/wp-content/uploads/2019/11/h2_banner_img3.png',0,'attachment','image/png',0),(1324,1,'2019-11-26 14:03:09','2019-11-26 14:03:09','','banner','','inherit','open','closed','','banner','','','2019-11-26 14:03:09','2019-11-26 14:03:09','',0,'http://fe2tech.com/wp-content/uploads/2019/11/banner.png',0,'attachment','image/png',0),(1349,1,'2019-11-26 14:54:10','2019-11-26 14:54:10','','info-icon-04','','inherit','open','closed','','info-icon-04','','','2019-11-26 14:54:10','2019-11-26 14:54:10','',0,'http://fe2tech.com/wp-content/uploads/2019/11/info-icon-04.png',0,'attachment','image/png',0),(1350,1,'2019-11-26 14:54:11','2019-11-26 14:54:11','','info-icon-05','','inherit','open','closed','','info-icon-05','','','2019-11-26 14:54:11','2019-11-26 14:54:11','',0,'http://fe2tech.com/wp-content/uploads/2019/11/info-icon-05.png',0,'attachment','image/png',0),(1351,1,'2019-11-26 14:54:11','2019-11-26 14:54:11','','info-icon-06','','inherit','open','closed','','info-icon-06','','','2019-11-26 14:54:11','2019-11-26 14:54:11','',0,'http://fe2tech.com/wp-content/uploads/2019/11/info-icon-06.png',0,'attachment','image/png',0),(1352,1,'2019-11-26 14:54:12','2019-11-26 14:54:12','','marker-02','','inherit','open','closed','','marker-02-2','','','2019-11-26 14:54:12','2019-11-26 14:54:12','',0,'http://fe2tech.com/wp-content/uploads/2019/11/marker-02-1.png',0,'attachment','image/png',0),(1385,1,'2019-11-27 02:09:06','2019-11-27 02:09:06','','bg-section-03','','inherit','open','closed','','bg-section-03-2','','','2019-11-27 02:09:06','2019-11-27 02:09:06','',0,'http://fe2tech.com/wp-content/uploads/2019/11/bg-section-03-1.jpg',0,'attachment','image/jpeg',0),(1387,1,'2019-11-27 02:10:59','2019-11-27 02:10:59','','bg-section-05','','inherit','open','closed','','bg-section-05','','','2019-11-27 02:10:59','2019-11-27 02:10:59','',0,'http://fe2tech.com/wp-content/uploads/2019/11/bg-section-05.png',0,'attachment','image/png',0),(1389,1,'2019-11-27 02:13:22','2019-11-27 02:13:22','','logo-landing','','inherit','open','closed','','logo-landing','','','2019-11-27 02:13:22','2019-11-27 02:13:22','',0,'http://fe2tech.com/wp-content/uploads/2019/11/logo-landing.png',0,'attachment','image/png',0),(1412,1,'2019-11-27 03:02:59','2019-11-27 03:02:59','','demo3','','inherit','open','closed','','demo3','','','2019-11-27 03:02:59','2019-11-27 03:02:59','',0,'http://fe2tech.com/wp-content/uploads/2019/11/demo3.jpg',0,'attachment','image/jpeg',0),(1413,1,'2019-11-27 03:03:02','2019-11-27 03:03:02','','demo4','','inherit','open','closed','','demo4','','','2019-11-27 03:03:02','2019-11-27 03:03:02','',0,'http://fe2tech.com/wp-content/uploads/2019/11/demo4.jpg',0,'attachment','image/jpeg',0),(1414,1,'2019-11-27 03:03:03','2019-11-27 03:03:03','','demo5','','inherit','open','closed','','demo5','','','2019-11-27 03:03:03','2019-11-27 03:03:03','',0,'http://fe2tech.com/wp-content/uploads/2019/11/demo5.jpg',0,'attachment','image/jpeg',0),(1415,1,'2019-11-27 03:03:05','2019-11-27 03:03:05','','demo6','','inherit','open','closed','','demo6','','','2019-11-27 03:03:05','2019-11-27 03:03:05','',0,'http://fe2tech.com/wp-content/uploads/2019/11/demo6.jpg',0,'attachment','image/jpeg',0),(1424,1,'2019-11-27 03:50:33','2019-11-27 03:50:33','','demo1','','inherit','open','closed','','demo1-2','','','2019-11-27 03:50:33','2019-11-27 03:50:33','',0,'http://fe2tech.com/wp-content/uploads/2019/11/demo1.jpg',0,'attachment','image/jpeg',0),(1425,1,'2019-11-27 03:50:35','2019-11-27 03:50:35','','demo2','','inherit','open','closed','','demo2-2','','','2019-11-27 03:50:35','2019-11-27 03:50:35','',0,'http://fe2tech.com/wp-content/uploads/2019/11/demo2.jpg',0,'attachment','image/jpeg',0),(1436,1,'2019-11-27 04:07:11','2019-11-27 04:07:11','','bg-section-06','','inherit','open','closed','','bg-section-06','','','2019-11-27 04:07:11','2019-11-27 04:07:11','',0,'http://fe2tech.com/wp-content/uploads/2019/11/bg-section-06.png',0,'attachment','image/png',0),(1437,1,'2019-11-27 04:07:13','2019-11-27 04:07:13','','devices','','inherit','open','closed','','devices','','','2019-11-27 04:07:13','2019-11-27 04:07:13','',0,'http://fe2tech.com/wp-content/uploads/2019/11/devices.png',0,'attachment','image/png',0),(1438,1,'2019-11-27 04:07:15','2019-11-27 04:07:15','','landing-footer','','inherit','open','closed','','landing-footer','','','2019-11-27 04:07:15','2019-11-27 04:07:15','',0,'http://fe2tech.com/wp-content/uploads/2019/11/landing-footer.png',0,'attachment','image/png',0),(1444,1,'2019-11-27 04:25:01','2019-11-27 04:25:01','','feature-icon-02','','inherit','open','closed','','feature-icon-02','','','2019-11-27 04:25:01','2019-11-27 04:25:01','',0,'http://fe2tech.com/wp-content/uploads/2019/11/feature-icon-02.png',0,'attachment','image/png',0),(1445,1,'2019-11-27 04:25:03','2019-11-27 04:25:03','','feature-icon-03','','inherit','open','closed','','feature-icon-03','','','2019-11-27 04:25:03','2019-11-27 04:25:03','',0,'http://fe2tech.com/wp-content/uploads/2019/11/feature-icon-03.png',0,'attachment','image/png',0),(1446,1,'2019-11-27 04:25:06','2019-11-27 04:25:06','','feature-icon-04','','inherit','open','closed','','feature-icon-04','','','2019-11-27 04:25:06','2019-11-27 04:25:06','',0,'http://fe2tech.com/wp-content/uploads/2019/11/feature-icon-04.png',0,'attachment','image/png',0),(1447,1,'2019-11-27 04:25:08','2019-11-27 04:25:08','','feature-icon-05','','inherit','open','closed','','feature-icon-05','','','2019-11-27 04:25:08','2019-11-27 04:25:08','',0,'http://fe2tech.com/wp-content/uploads/2019/11/feature-icon-05.png',0,'attachment','image/png',0),(1448,1,'2019-11-27 04:25:10','2019-11-27 04:25:10','','feature-icon-06','','inherit','open','closed','','feature-icon-06','','','2019-11-27 04:25:10','2019-11-27 04:25:10','',0,'http://fe2tech.com/wp-content/uploads/2019/11/feature-icon-06.png',0,'attachment','image/png',0),(1449,1,'2019-11-27 04:25:11','2019-11-27 04:25:11','','feature-icon-07','','inherit','open','closed','','feature-icon-07','','','2019-11-27 04:25:11','2019-11-27 04:25:11','',0,'http://fe2tech.com/wp-content/uploads/2019/11/feature-icon-07.png',0,'attachment','image/png',0),(1450,1,'2019-11-27 04:25:13','2019-11-27 04:25:13','','feature-icon-08','','inherit','open','closed','','feature-icon-08','','','2019-11-27 04:25:13','2019-11-27 04:25:13','',0,'http://fe2tech.com/wp-content/uploads/2019/11/feature-icon-08.png',0,'attachment','image/png',0),(1454,1,'2019-11-27 04:36:33','2019-11-27 04:36:33','','feature-icon-01','','inherit','open','closed','','feature-icon-01','','','2019-11-27 04:36:33','2019-11-27 04:36:33','',0,'http://fe2tech.com/wp-content/uploads/2019/11/feature-icon-01.png',0,'attachment','image/png',0),(1509,1,'2019-11-28 08:57:31','2019-11-28 08:57:31','','woocommerce-placeholder','','inherit','open','closed','','woocommerce-placeholder','','','2019-11-28 08:57:31','2019-11-28 08:57:31','',0,'http://fe2tech.com/wp-content/uploads/woocommerce-placeholder.png',0,'attachment','image/png',0),(1515,1,'2019-12-01 01:41:09','2019-12-01 01:41:09','','counter-icon-01','','inherit','open','closed','','counter-icon-01','','','2019-12-01 01:41:09','2019-12-01 01:41:09','',0,'http://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png',0,'attachment','image/png',0),(1516,1,'2019-12-01 01:41:11','2019-12-01 01:41:11','','counter-icon-02','','inherit','open','closed','','counter-icon-02','','','2019-12-01 01:41:11','2019-12-01 01:41:11','',0,'http://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png',0,'attachment','image/png',0),(1517,1,'2019-12-01 01:41:13','2019-12-01 01:41:13','','counter-icon-03','','inherit','open','closed','','counter-icon-03','','','2019-12-01 01:41:13','2019-12-01 01:41:13','',0,'http://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png',0,'attachment','image/png',0),(1520,1,'2019-12-01 01:44:25','2019-12-01 01:44:25','','signature','','inherit','open','closed','','signature','','','2019-12-01 01:44:25','2019-12-01 01:44:25','',0,'http://fe2tech.com/wp-content/uploads/2019/12/signature.png',0,'attachment','image/png',0),(1600,1,'2019-12-09 08:16:20','2019-12-09 08:16:20','','demo-rtl','','inherit','open','closed','','demo-rtl','','','2019-12-09 08:16:20','2019-12-09 08:16:20','',0,'http://fe2tech.com/wp-content/uploads/2019/12/demo-rtl.jpg',0,'attachment','image/jpeg',0),(1644,1,'2020-02-25 03:12:48','2020-02-25 03:12:48','','Default Kit','','publish','closed','closed','','default-kit','','','2024-10-21 06:27:47','2024-10-21 06:27:47','',0,'https://demo.casethemes.net/contio/?elementor_library=default-kit',0,'elementor_library','',0),(1772,1,'2022-10-29 02:44:44','2022-10-29 02:44:44','<img width=\"800\" height=\"1024\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/demo1.jpg\" alt=\"\" loading=\"lazy\" />	    	\n		    			    		<a href=\"https://fe2tech.com/\" target=\"_blank\" rel=\"noopener\">Multipage</a>\n		    			    			    		<a href=\"https://fe2tech.com/home-1-one-page/\" target=\"_blank\" rel=\"noopener\">Onepage</a>\n	    	<h3>Contio - <cite>NEW YORK</cite></h3>\n	    	<img width=\"800\" height=\"1024\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/demo2.jpg\" alt=\"\" loading=\"lazy\" />	    	\n		    			    		<a href=\"https://fe2tech.com/home-2/\" target=\"_blank\" rel=\"noopener\">Multipage</a>\n		    			    			    		<a href=\"https://fe2tech.com/home-2-one-page/\" target=\"_blank\" rel=\"noopener\">Onepage</a>\n	    	<h3>Contio - <cite>LOS ANGELES</cite></h3>\n	    	<img width=\"800\" height=\"1024\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/demo3.jpg\" alt=\"\" loading=\"lazy\" />	    	\n		    			    		<a href=\"https://fe2tech.com/home-3/\" target=\"_blank\" rel=\"noopener\">Multipage</a>\n		    			    			    		<a href=\"https://fe2tech.com/home-3-one-page/\" target=\"_blank\" rel=\"noopener\">Onepage</a>\n	    	<h3>Contio - <cite>SYDNEY</cite></h3>\n	    	<img width=\"800\" height=\"1024\" src=\"https://fe2tech.com/wp-content/uploads/2022/10/demo4.jpg\" alt=\"\" loading=\"lazy\" />	    	\n	    	<h3>Coming Soon</h3>','Demos','','publish','closed','closed','','demos','','','2022-10-29 02:44:44','2022-10-29 02:44:44','',0,'https://demo.casethemes.net/contio/?post_type=ct-mega-menu&amp;p=1772',0,'ct-mega-menu','',0),(1785,1,'2022-11-01 02:05:33','2022-11-01 02:05:33','','demo4','','inherit','open','closed','','demo4-2','','','2022-11-01 02:05:33','2022-11-01 02:05:33','',0,'http://fe2tech.com/wp-content/uploads/2022/10/demo4.jpg',0,'attachment','image/jpeg',0),(1786,1,'2024-10-18 15:38:26','2024-10-18 15:38:26','','Gallery','','publish','closed','closed','','gallery','','','2024-10-18 15:38:26','2024-10-18 15:38:26','',0,'http://fe2tech.com/2024/10/18/gallery/',6,'nav_menu_item','',0),(1878,1,'2024-10-18 15:38:26','2024-10-18 15:38:26','','Terms','','publish','closed','closed','','terms','','','2024-10-18 15:38:26','2024-10-18 15:38:26','',0,'http://fe2tech.com/2024/10/18/terms/',1,'nav_menu_item','',0),(1879,1,'2024-10-18 15:38:26','2024-10-18 15:38:26','','Privacy & Policy','','publish','closed','closed','','privacy-policy','','','2024-10-18 15:38:26','2024-10-18 15:38:26','',0,'http://fe2tech.com/2024/10/18/privacy-policy/',2,'nav_menu_item','',0),(1880,1,'2024-10-18 15:38:26','2024-10-18 15:38:26','','Join Us','','publish','closed','closed','','join-us','','','2024-10-18 15:38:26','2024-10-18 15:38:26','',0,'http://fe2tech.com/2024/10/18/join-us/',3,'nav_menu_item','',0),(1881,1,'2024-10-18 15:38:26','2024-10-18 15:38:26','','Need Help?','','publish','closed','closed','','need-help','','','2024-10-18 15:38:26','2024-10-18 15:38:26','',0,'http://fe2tech.com/2024/10/18/need-help/',4,'nav_menu_item','',0),(1884,1,'2024-10-18 15:38:27','2024-10-18 15:38:27','','Home','','publish','closed','closed','','home','','','2024-10-18 15:38:27','2024-10-18 15:38:27','',0,'http://fe2tech.com/2024/10/18/home/',1,'nav_menu_item','',0),(1885,1,'2024-10-18 15:38:27','2024-10-18 15:38:27','','About','','publish','closed','closed','','about','','','2024-10-18 15:38:27','2024-10-18 15:38:27','',0,'http://fe2tech.com/2024/10/18/about/',2,'nav_menu_item','',0),(1886,1,'2024-10-18 15:38:27','2024-10-18 15:38:27','','Services','','publish','closed','closed','','services','','','2024-10-18 15:38:27','2024-10-18 15:38:27','',0,'http://fe2tech.com/2024/10/18/services/',3,'nav_menu_item','',0),(1887,1,'2024-10-18 15:38:27','2024-10-18 15:38:27','','Project','','publish','closed','closed','','project','','','2024-10-18 15:38:27','2024-10-18 15:38:27','',0,'http://fe2tech.com/2024/10/18/project/',4,'nav_menu_item','',0),(1888,1,'2024-10-18 15:38:27','2024-10-18 15:38:27','','Blog','','publish','closed','closed','','blog','','','2024-10-18 15:38:27','2024-10-18 15:38:27','',0,'http://fe2tech.com/2024/10/18/blog/',5,'nav_menu_item','',0),(1889,1,'2024-10-18 15:38:27','2024-10-18 15:38:27','','Home','','publish','closed','closed','','home-2','','','2024-10-18 15:38:27','2024-10-18 15:38:27','',0,'http://fe2tech.com/2024/10/18/home-2/',1,'nav_menu_item','',0),(1890,1,'2024-10-18 15:38:28','2024-10-18 15:38:28','','Services','','publish','closed','closed','','services-2','','','2024-10-18 15:38:28','2024-10-18 15:38:28','',0,'http://fe2tech.com/2024/10/18/services-2/',2,'nav_menu_item','',0),(1891,1,'2024-10-18 15:38:28','2024-10-18 15:38:28','','Project','','publish','closed','closed','','project-2','','','2024-10-18 15:38:28','2024-10-18 15:38:28','',0,'http://fe2tech.com/2024/10/18/project-2/',4,'nav_menu_item','',0),(1892,1,'2024-10-18 15:38:28','2024-10-18 15:38:28','','Blog','','publish','closed','closed','','blog-2','','','2024-10-18 15:38:28','2024-10-18 15:38:28','',0,'http://fe2tech.com/2024/10/18/blog-2/',5,'nav_menu_item','',0),(1893,1,'2024-10-18 15:38:29','2024-10-18 15:38:29','','About','','publish','closed','closed','','about-2','','','2024-10-18 15:38:29','2024-10-18 15:38:29','',0,'http://fe2tech.com/2024/10/18/about-2/',3,'nav_menu_item','',0),(1894,1,'2024-10-18 15:38:33','2024-10-18 15:38:33',' ','','','publish','closed','closed','','1894','','','2024-10-18 15:38:33','2024-10-18 15:38:33','',0,'http://fe2tech.com/2024/10/18/1894/',1,'nav_menu_item','',0),(1895,1,'2024-10-18 15:38:33','2024-10-18 15:38:33',' ','','','publish','closed','closed','','1895','','','2024-10-18 15:38:33','2024-10-18 15:38:33','',0,'http://fe2tech.com/2024/10/18/1895/',2,'nav_menu_item','',0),(1896,1,'2024-10-18 15:38:33','2024-10-18 15:38:33',' ','','','publish','closed','closed','','1896','','','2024-10-18 15:38:33','2024-10-18 15:38:33','',0,'http://fe2tech.com/2024/10/18/1896/',4,'nav_menu_item','',0),(1897,1,'2024-10-18 15:38:33','2024-10-18 15:38:33','','About us','','publish','closed','closed','','about-us','','','2024-10-18 15:38:33','2024-10-18 15:38:33','',0,'http://fe2tech.com/2024/10/18/about-us/',5,'nav_menu_item','',0),(1898,1,'2024-10-18 15:38:33','2024-10-18 15:38:33',' ','','','publish','closed','closed','','1898','','','2024-10-18 15:38:33','2024-10-18 15:38:33','',0,'http://fe2tech.com/2024/10/18/1898/',8,'nav_menu_item','',0),(1900,1,'2024-10-18 15:38:33','2024-10-18 15:38:33',' ','','','publish','closed','closed','','1900','','','2024-10-18 15:38:33','2024-10-18 15:38:33','',0,'http://fe2tech.com/2024/10/18/1900/',7,'nav_menu_item','',0),(1951,1,'2024-10-18 15:53:11','2024-10-18 15:53:11','<a href=\"https://fe2tech.com/\" data-elementor-open-lightbox=\"\">\n							<img width=\"165\" height=\"70\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/logo-footer-02.png\" alt=\"\" />								</a>\n			    <ul>\n                    <li>\n            	   30 Commercial Road<br /> Fratton, Australia                \n           </li>\n                    <li>\n            	   1-888-452-1505                \n           </li>\n            </ul>\n		Open Hours:Mon - Sat: 8 am - 5 pm,<br/>\nSunday: CLOSED		\n    <h3>\n        Links\n        <i></i>\n    </h3>\n        <ul id=\"menu-menu-footer-links\"><li id=\"menu-item-64\"><a href=\"https://fe2tech.com/\">Home</a></li>\n<li id=\"menu-item-65\"><a href=\"https://fe2tech.com/team/\">Team</a></li>\n<li id=\"menu-item-509\"><a href=\"https://fe2tech.com/services-v-1/\">Services</a></li>\n<li id=\"menu-item-67\"><a href=\"https://fe2tech.com/faq/\">FAQ</a></li>\n<li id=\"menu-item-68\"><a href=\"https://fe2tech.com/about/\">About us</a></li>\n<li id=\"menu-item-103\"><a href=\"#\">Gallery</a></li>\n<li id=\"menu-item-511\"><a href=\"https://fe2tech.com/testimonials/\">Testimonials</a></li>\n<li id=\"menu-item-70\"><a href=\"https://fe2tech.com/contact/\">Contact</a></li>\n<li id=\"menu-item-512\"><a href=\"https://fe2tech.com/blog-grid-3-columns/\">News</a></li>\n<li id=\"menu-item-513\"><a href=\"https://fe2tech.com/portfolio-grid/\">Portfolio</a></li>\n</ul>    \n    <h3>\n        Newsletter\n        <i></i>\n    </h3>\n		Sign up for alerts, our latest blogs, thoughts, and insights.		\n        [newsletter_form button_label=\"Subscribe\"][newsletter_field name=\"email\" label=\"Your mail address\"][/newsletter_form]    \n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n		© All rights reserved by <a href=\"https://themeforest.net/user/case-themes/portfolio\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">CaseThemes</a>		\n        <ul id=\"menu-menu-footer-bottom\"><li id=\"menu-item-1550\"><a href=\"#\">Terms</a></li>\n<li id=\"menu-item-1551\"><a href=\"#\">Privacy &#038; Policy</a></li>\n<li id=\"menu-item-1552\"><a href=\"#\">Join Us</a></li>\n<li id=\"menu-item-1553\"><a href=\"#\">Need Help?</a></li>\n</ul>','Footer 2','','inherit','closed','closed','','799-revision-v1','','','2024-10-18 15:53:11','2024-10-18 15:53:11','',799,'http://fe2tech.com/?p=1951',0,'revision','',0),(1952,1,'2024-10-18 15:53:11','2024-10-18 15:53:11','<a href=\"https://fe2tech.com/\">\n							<img width=\"165\" height=\"70\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/logo-footer-02.png\" alt=\"\" />								</a>\n			    <ul>\n                    <li>\n            	   30 Commercial Road<br /> Fratton, Australia                \n           </li>\n                    <li>\n            	   1-888-452-1505                \n           </li>\n            </ul>\n		Open Hours:Mon - Sat: 8 am - 5 pm,<br/>\nSunday: CLOSED		\n    <h3>\n        Links\n        <i></i>\n    </h3>\n        <ul id=\"menu-menu-services\"><li id=\"menu-item-1912\"><a href=\"https://fe2tech.com/service/interior-design/\">Interior Design</a></li>\n<li id=\"menu-item-1913\"><a href=\"https://fe2tech.com/service/metal-roofing/\">Metal Roofing</a></li>\n<li id=\"menu-item-1914\"><a href=\"https://fe2tech.com/service/house-remodel/\">House Remodel</a></li>\n<li id=\"menu-item-1915\"><a href=\"https://fe2tech.com/service/material-supply/\">Material Supply</a></li>\n<li id=\"menu-item-1916\"><a href=\"https://fe2tech.com/service/plan-certification/\">Plan Certification</a></li>\n</ul>    \n    <h3>\n        Newsletter\n        <i></i>\n    </h3>\n		Sign up for alerts, our latest blogs, thoughts, and insights.		\n        <form method=\"post\" action=\"https://fe2tech.com/wp-admin/admin-ajax.php?action=tnp&amp;na=s\" style=\"\">\n<input type=\"hidden\" name=\"nlang\" value=\"\">\n<label for=\"tnp-1\">Your mail address</label>\n<input type=\"email\" name=\"ne\" id=\"tnp-1\" value=\"\" placeholder=\"\" required>\n<input type=\"submit\" value=\"Subscribe\" style=\"\">\n</form>    \n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n		© All rights reserved by <a href=\"https://themeforest.net/user/case-themes/portfolio\" target=\"_blank\" rel=\"nofollow noopener\">CaseThemes</a>		\n        <ul id=\"menu-menu-footer-bottom\"><li id=\"menu-item-1878\"><a href=\"#\">Terms</a></li>\n<li id=\"menu-item-1879\"><a href=\"#\">Privacy &#038; Policy</a></li>\n<li id=\"menu-item-1880\"><a href=\"#\">Join Us</a></li>\n<li id=\"menu-item-1881\"><a href=\"#\">Need Help?</a></li>\n</ul>','Footer 2','','inherit','closed','closed','','799-revision-v1','','','2024-10-18 15:53:11','2024-10-18 15:53:11','',799,'http://fe2tech.com/?p=1952',0,'revision','',0),(1955,1,'2025-03-17 03:54:54','2024-10-18 16:04:51',' ','','','publish','closed','closed','','1955','','','2025-03-17 03:54:54','2025-03-17 03:54:54','',0,'http://fe2tech.com/2024/10/18/1955/',1,'nav_menu_item','',0),(1960,1,'2025-03-17 03:54:55','2024-10-18 16:10:36',' ','','','publish','closed','closed','','1960','','','2025-03-17 03:54:55','2025-03-17 03:54:55','',0,'http://fe2tech.com/2024/10/18/1960/',5,'nav_menu_item','',0),(1967,1,'2025-03-17 03:54:54','2024-10-18 16:21:45',' ','','','publish','closed','closed','','1967','','','2025-03-17 03:54:54','2025-03-17 03:54:54','',0,'http://fe2tech.com/2024/10/18/1967/',4,'nav_menu_item','',0),(1970,1,'2024-10-19 14:36:38','2024-10-19 14:36:38','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We individual assess each plan and offer    </h3>\n		<p>Our agency can only be as strong as our people &amp; because of this, our team have designed game changing products.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n												<img width=\"151\" height=\"50\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/signature.png\" alt=\"\" loading=\"lazy\" />														\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" loading=\"lazy\" />        \n            1\n            +\n                    Awards Winner\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" loading=\"lazy\" />        \n            1\n            +\n                    Satisfied Clients\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" loading=\"lazy\" />        \n            1\n            +\n                    Active projects\n												<img width=\"516\" height=\"290\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/home-image-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://fe2tech.com/wp-content/uploads/2019/11/home-image-01.png 516w, https://fe2tech.com/wp-content/uploads/2019/11/home-image-01-300x169.png 300w\" sizes=\"(max-width: 516px) 100vw, 516px\" />														\n	    <h3>\n        We will satisfy you by our servicing plan    </h3>\n		<p>Our team have designed game changing products, consulted for companies as well and become a multinational firm, offering solutions Worldwide.</p>		\n                            <a href=\"https://fe2tech.com/service/interior-design/\"><img src=\"https://fe2tech.com/wp-content/uploads/2019/11/service-01-430x550.jpg\" width=\"430\" height=\"550\" alt=\"service-01\" title=\"service-01\" /></a>\n                                                            <h3><a href=\"https://fe2tech.com/service/interior-design/\">Interior Design</a></h3>\n                                                                                                    <h3><a href=\"https://fe2tech.com/service/interior-design/\">Interior Design</a></h3>\n                                        Lorem Ipsum available, but the majority have suffered alterati on in som.                                    \n                                        <a href=\"https://fe2tech.com/service/interior-design/\">Read more</a>\n                            <a href=\"https://fe2tech.com/service/metal-roofing/\"><img src=\"https://fe2tech.com/wp-content/uploads/2019/11/constr-09-430x550.jpg\" width=\"430\" height=\"550\" alt=\"constr-09\" title=\"constr-09\" /></a>\n                                                            <h3><a href=\"https://fe2tech.com/service/metal-roofing/\">Metal Roofing</a></h3>\n                                                                                                    <h3><a href=\"https://fe2tech.com/service/metal-roofing/\">Metal Roofing</a></h3>\n                                        Lorem Ipsum available, but the majority have suffered alterati on in som.                                    \n                                        <a href=\"https://fe2tech.com/service/metal-roofing/\">Read more</a>\n                            <a href=\"https://fe2tech.com/service/house-remodel/\"><img src=\"https://fe2tech.com/wp-content/uploads/2019/11/constr-06-430x550.jpg\" width=\"430\" height=\"550\" alt=\"constr-06\" title=\"constr-06\" /></a>\n                                                            <h3><a href=\"https://fe2tech.com/service/house-remodel/\">House Remodel</a></h3>\n                                                                                                    <h3><a href=\"https://fe2tech.com/service/house-remodel/\">House Remodel</a></h3>\n                                        Lorem Ipsum available, but the majority have suffered alterati on in som.                                    \n                                        <a href=\"https://fe2tech.com/service/house-remodel/\">Read more</a>\n                            <a href=\"https://fe2tech.com/service/material-supply/\"><img src=\"https://fe2tech.com/wp-content/uploads/2019/11/constr-07-430x550.jpg\" width=\"430\" height=\"550\" alt=\"constr-07\" title=\"constr-07\" /></a>\n                                                            <h3><a href=\"https://fe2tech.com/service/material-supply/\">Material Supply</a></h3>\n                                                                                                    <h3><a href=\"https://fe2tech.com/service/material-supply/\">Material Supply</a></h3>\n                                        Lorem Ipsum available, but the majority have suffered alterati on in som.                                    \n                                        <a href=\"https://fe2tech.com/service/material-supply/\">Read more</a>\n                            <a href=\"https://fe2tech.com/service/property-sketching/\"><img src=\"https://fe2tech.com/wp-content/uploads/2019/11/service-06-430x550.jpg\" width=\"430\" height=\"550\" alt=\"service-06\" title=\"service-06\" /></a>\n                                                            <h3><a href=\"https://fe2tech.com/service/property-sketching/\">Tiling &#038; Painting</a></h3>\n                                                                                                    <h3><a href=\"https://fe2tech.com/service/property-sketching/\">Tiling &#038; Painting</a></h3>\n                                        Lorem Ipsum available, but the majority have suffered alterati on in som.                                    \n                                        <a href=\"https://fe2tech.com/service/property-sketching/\">Read more</a>\n                            <a href=\"https://fe2tech.com/service/plan-certification/\"><img src=\"https://fe2tech.com/wp-content/uploads/2019/11/service-07-430x550.jpg\" width=\"430\" height=\"550\" alt=\"service-07\" title=\"service-07\" /></a>\n                                                            <h3><a href=\"https://fe2tech.com/service/plan-certification/\">Plan Certification</a></h3>\n                                                                                                    <h3><a href=\"https://fe2tech.com/service/plan-certification/\">Plan Certification</a></h3>\n                                        Lorem Ipsum available, but the majority have suffered alterati on in som.                                    \n                                        <a href=\"https://fe2tech.com/service/plan-certification/\">Read more</a>\n    	<img width=\"502\" height=\"412\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-02.jpg\" alt=\"\" loading=\"lazy\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" loading=\"lazy\" />\n    	    	201 Awards winning constraction company\n	    <h3>\n        We are giving you a chance to build your dream    </h3>\n		We understand the importance of approaching each work integrally and believe in the power of simple and easy communication.		\n                                            Engineering\n                                        70%\n                                            Architecture\n                                        80%\n                                            Construction\n                                        75%\n	    <h3>\n        We have many areas of servicing sector    </h3>\n		We shows only the best websites and portfolios built completely with passion, simplicity & creativity. Our team have designed game changing products.		\n                                                    <h3><a href=\"https://fe2tech.com/service/surface-demolition/\">Surface Demolition</a></h3>\n                                        Lorem Ipsum available, but the majority have to suffered alterati on in som. It is a long to be hoy established fact that a reader.                                    \n                                        <a href=\"https://fe2tech.com/service/surface-demolition/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/laminate-flooring/\">Laminate Flooring</a></h3>\n                                        Lorem Ipsum available, but the majority have to suffered alterati on in som. It is a long to be hoy established fact that a reader.                                    \n                                        <a href=\"https://fe2tech.com/service/laminate-flooring/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/house-renovation/\">House Renovation</a></h3>\n                                        Lorem Ipsum available, but the majority have to suffered alterati on in som. It is a long to be hoy established fact that a reader.                                    \n                                        <a href=\"https://fe2tech.com/service/house-renovation/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/general-contracting/\">General Contracting</a></h3>\n                                        Lorem Ipsum available, but the majority have to suffered alterati on in som. It is a long to be hoy established fact that a reader.                                    \n                                        <a href=\"https://fe2tech.com/service/general-contracting/\">Read more</a>\n    <a href=\"https://fe2tech.com/services-v-1/\">\n                More services\n    </a>\n	    <h3>\n        We have many satisfied clients    </h3>\n                                        <img src=\"https://fe2tech.com/wp-content/uploads/2019/11/testimonial-01.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-01\" title=\"testimonial-01\" />                                    \n                                    The theme is well designed and it is really possible to have a nice one page theme in no time. \n                                    <h3>    \n                                        Adam Chuhan                                    </h3>\n                                        <img src=\"https://fe2tech.com/wp-content/uploads/2019/11/testimonial-02.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-02\" title=\"testimonial-02\" />                                    \n                                    Association health plans are a new alternative to provide small business owners, sole  with health insurance.\n                                    <h3>    \n                                        Romanda Rio                                    </h3>\n                                        <img src=\"https://fe2tech.com/wp-content/uploads/2019/11/testimonial-03.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-03\" title=\"testimonial-03\" />                                    \n                                    A trust is an ideal way for individuals to transfer assets either during life or after their passing. At a basic level.\n                                    <h3>    \n                                        Ronald Beko                                    </h3>\n                                        <img src=\"https://fe2tech.com/wp-content/uploads/2019/11/testimonial-04.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-04\" title=\"testimonial-04\" />                                    \n                                    It is a long established fact that a read her will be distracted by the readable content of a page.\n                                    <h3>    \n                                        Roman Kui                                    </h3>\n                                        <img src=\"https://fe2tech.com/wp-content/uploads/2019/11/testimonial-05.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-05\" title=\"testimonial-05\" />                                    \n                                    Most designers live in some sort of alternate reality, creating unnecessary things for each other.\n                                    <h3>    \n                                        Romanda Rio                                    </h3>\n		Don’t think so more about success rate. <a href=\"#\">Let’s get started</a>		\n	    <h3>\n        Our expert team member will help you    </h3>\n		We love what we do and we do it with passion. We value the experimentation of the message and smart incentives.		\n                                        <a href=\"https://fe2tech.com/team-details/\"><img width=\"350\" height=\"428\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-04-new.jpg\" alt=\"\" loading=\"lazy\" /></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">Ronald Dumple</a>\n                                </h3>\n                                    Web Designer\n                                                                                        <a href=\"#\"></a>\n                                                                                            <a href=\"#\"></a>\n                                                                                            <a href=\"#\"></a>\n                                                                                            <a href=\"#\"></a>\n                                        <a href=\"https://fe2tech.com/team-details/\"><img width=\"350\" height=\"428\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-03-new.jpg\" alt=\"\" loading=\"lazy\" /></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">Nichole Dice</a>\n                                </h3>\n                                    Web Developer\n                                                                                        <a href=\"#\"></a>\n                                                                                            <a href=\"#\"></a>\n                                                                                            <a href=\"#\"></a>\n                                                                                            <a href=\"#\"></a>\n                                        <a href=\"https://fe2tech.com/team-details/\"><img width=\"350\" height=\"428\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-05-new.jpg\" alt=\"\" loading=\"lazy\" /></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">Johan Rio</a>\n                                </h3>\n                                    Web Designer\n                                                                                        <a href=\"#\"></a>\n                                                                                            <a href=\"#\"></a>\n                                                                                            <a href=\"#\"></a>\n                                                                                            <a href=\"#\"></a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 800 250 369\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ctthemes/cstri/wp-admin/admin-ajax.php#wpcf7-f932-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.6.4\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" /><button type=\"submit\">Get now</button>\n</form>                \n                            <img src=\"https://fe2tech.com/wp-content/uploads/2019/11/portfolio-07-370x570.jpg\" width=\"370\" height=\"570\" alt=\"portfolio-07\" title=\"portfolio-07\" />                        \n                        <h3>\n                            RF Tower                        </h3>\n                        +\n                        <a href=\"https://fe2tech.com/portfolio/rf-tower/\"></a>\n                            <img src=\"https://fe2tech.com/wp-content/uploads/2019/11/constr-05-370x570.jpg\" width=\"370\" height=\"570\" alt=\"constr-05\" title=\"constr-05\" />                        \n                        <h3>\n                            Borak Mehnur                        </h3>\n                        +\n                        <a href=\"https://fe2tech.com/portfolio/borak-mehnur/\"></a>\n                            <img src=\"https://fe2tech.com/wp-content/uploads/2019/11/constr-06-370x570.jpg\" width=\"370\" height=\"570\" alt=\"constr-06\" title=\"constr-06\" />                        \n                        <h3>\n                            City Center                        </h3>\n                        +\n                        <a href=\"https://fe2tech.com/portfolio/city-centre/\"></a>\n                            <img src=\"https://fe2tech.com/wp-content/uploads/2019/11/gallery-02-370x570.jpg\" width=\"370\" height=\"570\" alt=\"gallery-02\" title=\"gallery-02\" />                        \n                        <h3>\n                            Court Imperial                        </h3>\n                        +\n                        <a href=\"https://fe2tech.com/portfolio/court-imperial/\"></a>\n                            <img src=\"https://fe2tech.com/wp-content/uploads/2019/11/service-09-370x570.jpg\" width=\"370\" height=\"570\" alt=\"service-09\" title=\"service-09\" />                        \n                        <h3>\n                            Rio villa                        </h3>\n                        +\n                        <a href=\"https://fe2tech.com/portfolio/rio-villa/\"></a>\n                            <img src=\"https://fe2tech.com/wp-content/uploads/2019/11/service-08-370x570.jpg\" width=\"370\" height=\"570\" alt=\"service-08\" title=\"service-08\" />                        \n                        <h3>\n                            FR Tower                        </h3>\n                        +\n                        <a href=\"https://fe2tech.com/portfolio/fr-tower/\"></a>\n	    <h3>\n        We have some easy working procedure    </h3>\n		Helping families live intelligently means we’re always working to bring our customers the latest technology.		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of approaching each work integrally.\n                        <a href=\"#\">Discover more</a>\n                                                    <h3>Connect with us</h3>\n                                                    What separates theme from all other web design agencies is the ability.\n                        <a href=\"#\">Contact</a>\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be a whole person. We have a flexible.\n                        <a href=\"#\">Place order</a>\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every brand has something special to reveal something that inspires.\n                        <a href=\"#\">Make a payment</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ctthemes/cstri/wp-admin/admin-ajax.php#wpcf7-f974-o2\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.6.4\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Interior Design\">Interior Design</option><option value=\"Metal Roofing\">Metal Roofing</option><option value=\"House Remodel\">House Remodel</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\"></textarea>\n<button type=\"submit\">Send message</button>\n</form>        \n	    <h3>\n        You will get a good pricing from us    </h3>\n                Monthly\n                Yearly Save 20%\n                    <style>.elementor-1214 .elementor-element.elementor-element-c6873c8{margin-top:0px;margin-bottom:0px;}.elementor-1214 .elementor-element.elementor-element-9c326ae > .elementor-element-populated{margin:0px 0px 40px 0px;--e-column-margin-right:0px;--e-column-margin-left:0px;}.elementor-1214 .elementor-element.elementor-element-ba9c4e2 > .elementor-element-populated{margin:0px 0px 40px 0px;--e-column-margin-right:0px;--e-column-margin-left:0px;}.elementor-1214 .elementor-element.elementor-element-9c8bcbf > .elementor-element-populated{margin:0px 0px 40px 0px;--e-column-margin-right:0px;--e-column-margin-left:0px;}@media(max-width:767px){.elementor-1214 .elementor-element.elementor-element-9c326ae > .elementor-element-populated{margin:0px 0px 0px 0px;--e-column-margin-right:0px;--e-column-margin-left:0px;}.elementor-1214 .elementor-element.elementor-element-ba9c4e2 > .elementor-element-populated{margin:39px 0px 0px 0px;--e-column-margin-right:0px;--e-column-margin-left:0px;}}</style>		\n							        <section data-id=\"c6873c8\" data-element_type=\"section\">\n        <h3>Basic Plan</h3>\n        The argument in favor of using to filler text goes something.\n    $29/ monthly\n                    <ul>\n                                    <li><del>24/7 system monitoring</del></li>\n                                    <li>Security management</li>\n                                    <li><del>Secure finance backup</del></li>\n                                    <li><del>Remote support</del></li>\n                            </ul>\n                <a href=\"#\">Get a free trial</a>\n            Recommended\n        <h3>Standard Plan</h3>\n        The argument in favor of using to filler text goes something.\n    $49/ monthly\n                    <ul>\n                                    <li>24/7 system monitoring</li>\n                                    <li><del>Security management</del></li>\n                                    <li>Secure finance backup</li>\n                                    <li><del>Remote support</del></li>\n                            </ul>\n                <a href=\"#\">Get a free trial</a>\n        <h3>Extended Plan</h3>\n        The argument in favor of using to filler text goes something.\n    $59/ monthly\n                    <ul>\n                                    <li>24/7 system monitoring</li>\n                                    <li>Security management</li>\n                                    <li>Secure finance backup</li>\n                                    <li>Remote support</li>\n                            </ul>\n                <a href=\"#\">Get a free trial</a>\n        </section>\n                    <style>.elementor-1217 .elementor-element.elementor-element-c6873c8{margin-top:0px;margin-bottom:0px;}.elementor-1217 .elementor-element.elementor-element-9c326ae > .elementor-element-populated{margin:0px 0px 40px 0px;--e-column-margin-right:0px;--e-column-margin-left:0px;}.elementor-1217 .elementor-element.elementor-element-ba9c4e2 > .elementor-element-populated{margin:0px 0px 40px 0px;--e-column-margin-right:0px;--e-column-margin-left:0px;}.elementor-1217 .elementor-element.elementor-element-9c8bcbf > .elementor-element-populated{margin:0px 0px 40px 0px;--e-column-margin-right:0px;--e-column-margin-left:0px;}@media(max-width:767px){.elementor-1217 .elementor-element.elementor-element-9c326ae > .elementor-element-populated{margin:0px 0px 0px 0px;--e-column-margin-right:0px;--e-column-margin-left:0px;}.elementor-1217 .elementor-element.elementor-element-ba9c4e2 > .elementor-element-populated{margin:39px 0px 0px 0px;--e-column-margin-right:0px;--e-column-margin-left:0px;}}</style>		\n							        <section data-id=\"c6873c8\" data-element_type=\"section\">\n        <h3>Basic Plan</h3>\n        The argument in favor of using to filler text goes something.\n    $49/ monthly\n                    <ul>\n                                    <li><del>24/7 system monitoring</del></li>\n                                    <li>Security management</li>\n                                    <li><del>Secure finance backup</del></li>\n                                    <li><del>Remote support</del></li>\n                            </ul>\n                <a href=\"#\">Get a free trial</a>\n            Recommended\n        <h3>Standard Plan</h3>\n        The argument in favor of using to filler text goes something.\n    $89/ monthly\n                    <ul>\n                                    <li>24/7 system monitoring</li>\n                                    <li><del>Security management</del></li>\n                                    <li>Secure finance backup</li>\n                                    <li><del>Remote support</del></li>\n                            </ul>\n                <a href=\"#\">Get a free trial</a>\n        <h3>Extended Plan</h3>\n        The argument in favor of using to filler text goes something.\n    $120/ monthly\n                    <ul>\n                                    <li>24/7 system monitoring</li>\n                                    <li>Security management</li>\n                                    <li>Secure finance backup</li>\n                                    <li>Remote support</li>\n                            </ul>\n                <a href=\"#\">Get a free trial</a>\n        </section>\n	    <h3>\n        Learn something more from our blog    </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"https://fe2tech.com/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://fe2tech.com/wp-content/uploads/2019/11/constr-01-600x389.jpg\" width=\"600\" height=\"389\" alt=\"constr-01\" title=\"constr-01\" /></a>\n                                                    <ul>\n                                                                    <li>November 5, 2019</li>\n                                                                                                    <li><a href=\"https://fe2tech.com/author/admin/\">admin</a></li>\n                                                            </ul>\n                                                    <h3><a href=\"https://fe2tech.com/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                            \n                                <a href=\"https://fe2tech.com/strategy-for-norways-peion-to-fund-global/\">Read more</a>\n                            <a href=\"https://fe2tech.com/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://fe2tech.com/wp-content/uploads/2019/11/constr-02-600x389.jpg\" width=\"600\" height=\"389\" alt=\"constr-02\" title=\"constr-02\" /></a>\n                                                    <ul>\n                                                                    <li>November 5, 2019</li>\n                                                                                                    <li><a href=\"https://fe2tech.com/author/admin/\">admin</a></li>\n                                                            </ul>\n                                                    <h3><a href=\"https://fe2tech.com/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to beo usually discovered.</a></h3>\n                                At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                            \n                                <a href=\"https://fe2tech.com/what-we-are-capable-to-beo-usually-discovered/\">Read more</a>\n                            <a href=\"https://fe2tech.com/food-industry-leaders-often-change-their-profound/\"><img src=\"https://fe2tech.com/wp-content/uploads/2019/11/constr-03-600x389.jpg\" width=\"600\" height=\"389\" alt=\"constr-03\" title=\"constr-03\" /></a>\n                                                    <ul>\n                                                                    <li>November 5, 2019</li>\n                                                                                                    <li><a href=\"https://fe2tech.com/author/admin/\">admin</a></li>\n                                                            </ul>\n                                                    <h3><a href=\"https://fe2tech.com/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                            \n                                <a href=\"https://fe2tech.com/food-industry-leaders-often-change-their-profound/\">Read more</a>\n                            <a href=\"https://fe2tech.com/how-to-go-about-intiating-an-start-up-in-a-matter-of-days/\"><img src=\"https://fe2tech.com/wp-content/uploads/2019/11/constr-04-600x389.jpg\" width=\"600\" height=\"389\" alt=\"constr-04\" title=\"constr-04\" /></a>\n                                                    <ul>\n                                                                    <li>November 5, 2019</li>\n                                                                                                    <li><a href=\"https://fe2tech.com/author/admin/\">admin</a></li>\n                                                            </ul>\n                                                    <h3><a href=\"https://fe2tech.com/how-to-go-about-intiating-an-start-up-in-a-matter-of-days/\">How to go about intiating an start-up in a matter.</a></h3>\n                                At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                            \n                                <a href=\"https://fe2tech.com/how-to-go-about-intiating-an-start-up-in-a-matter-of-days/\">Read more</a>\n                            <a href=\"https://fe2tech.com/engaging-new-audiences-through-smart-approach/\"><img src=\"https://fe2tech.com/wp-content/uploads/2019/11/constr-05-600x389.jpg\" width=\"600\" height=\"389\" alt=\"constr-05\" title=\"constr-05\" /></a>\n                                                    <ul>\n                                                                    <li>November 5, 2019</li>\n                                                                                                    <li><a href=\"https://fe2tech.com/author/admin/\">admin</a></li>\n                                                            </ul>\n                                                    <h3><a href=\"https://fe2tech.com/engaging-new-audiences-through-smart-approach/\">Engaging New Audiences through Smart Approach.</a></h3>\n                                At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                            \n                                <a href=\"https://fe2tech.com/engaging-new-audiences-through-smart-approach/\">Read more</a>\n                            <a href=\"https://fe2tech.com/many-types-of-construction-equipment-are-designed/\"><img src=\"https://fe2tech.com/wp-content/uploads/2019/11/constr-06-600x389.jpg\" width=\"600\" height=\"389\" alt=\"constr-06\" title=\"constr-06\" /></a>\n                                                    <ul>\n                                                                    <li>November 4, 2018</li>\n                                                                                                    <li><a href=\"https://fe2tech.com/author/admin/\">admin</a></li>\n                                                            </ul>\n                                                    <h3><a href=\"https://fe2tech.com/many-types-of-construction-equipment-are-designed/\">Many types of construction equipment are designed.</a></h3>\n                                At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                            \n                                <a href=\"https://fe2tech.com/many-types-of-construction-equipment-are-designed/\">Read more</a>\n                                <a href=\"#\"><img width=\"169\" height=\"35\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/client-01.png\" alt=\"\" loading=\"lazy\" /></a>\n                                <a href=\"#\"><img width=\"143\" height=\"42\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/client-02.png\" alt=\"\" loading=\"lazy\" /></a>\n                                <a href=\"#\"><img width=\"166\" height=\"38\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/client-03.png\" alt=\"\" loading=\"lazy\" /></a>\n                                <a href=\"#\"><img width=\"170\" height=\"35\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/client-04.png\" alt=\"\" loading=\"lazy\" /></a>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-10-19 14:36:38','2024-10-19 14:36:38','',9,'http://fe2tech.com/?p=1970',0,'revision','',0),(1971,1,'2024-10-19 14:36:38','2024-10-19 14:36:38','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We individual assess each plan and offer    </h3>\n		<p>Our agency can only be as strong as our people &amp; because of this, our team have designed game changing products.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n												<img width=\"151\" height=\"50\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/signature.png\" alt=\"\" loading=\"lazy\" />														\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" loading=\"lazy\" />        \n            1\n            +\n                    Awards Winner\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" loading=\"lazy\" />        \n            1\n            +\n                    Satisfied Clients\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" loading=\"lazy\" />        \n            1\n            +\n                    Active projects\n												<img width=\"516\" height=\"290\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/home-image-01.png\" alt=\"\" loading=\"lazy\" srcset=\"https://fe2tech.com/wp-content/uploads/2019/11/home-image-01.png 516w, https://fe2tech.com/wp-content/uploads/2019/11/home-image-01-300x169.png 300w\" sizes=\"(max-width: 516px) 100vw, 516px\" />														\n	    <h3>\n        We will satisfy you by our servicing plan    </h3>\n		<p>Our team have designed game changing products, consulted for companies as well and become a multinational firm, offering solutions Worldwide.</p>		\n                            <a href=\"https://fe2tech.com/service/interior-design/\"><img src=\"https://fe2tech.com/wp-content/uploads/2019/11/service-01-430x550.jpg\" width=\"430\" height=\"550\" alt=\"service-01\" title=\"service-01\" /></a>\n                                                            <h3><a href=\"https://fe2tech.com/service/interior-design/\">Interior Design</a></h3>\n                                                                                                    <h3><a href=\"https://fe2tech.com/service/interior-design/\">Interior Design</a></h3>\n                                        Lorem Ipsum available, but the majority have suffered alterati on in som.                                    \n                                        <a href=\"https://fe2tech.com/service/interior-design/\">Read more</a>\n                            <a href=\"https://fe2tech.com/service/metal-roofing/\"><img src=\"https://fe2tech.com/wp-content/uploads/2019/11/constr-09-430x550.jpg\" width=\"430\" height=\"550\" alt=\"constr-09\" title=\"constr-09\" /></a>\n                                                            <h3><a href=\"https://fe2tech.com/service/metal-roofing/\">Metal Roofing</a></h3>\n                                                                                                    <h3><a href=\"https://fe2tech.com/service/metal-roofing/\">Metal Roofing</a></h3>\n                                        Lorem Ipsum available, but the majority have suffered alterati on in som.                                    \n                                        <a href=\"https://fe2tech.com/service/metal-roofing/\">Read more</a>\n                            <a href=\"https://fe2tech.com/service/house-remodel/\"><img src=\"https://fe2tech.com/wp-content/uploads/2019/11/constr-06-430x550.jpg\" width=\"430\" height=\"550\" alt=\"constr-06\" title=\"constr-06\" /></a>\n                                                            <h3><a href=\"https://fe2tech.com/service/house-remodel/\">House Remodel</a></h3>\n                                                                                                    <h3><a href=\"https://fe2tech.com/service/house-remodel/\">House Remodel</a></h3>\n                                        Lorem Ipsum available, but the majority have suffered alterati on in som.                                    \n                                        <a href=\"https://fe2tech.com/service/house-remodel/\">Read more</a>\n                            <a href=\"https://fe2tech.com/service/material-supply/\"><img src=\"https://fe2tech.com/wp-content/uploads/2019/11/constr-07-430x550.jpg\" width=\"430\" height=\"550\" alt=\"constr-07\" title=\"constr-07\" /></a>\n                                                            <h3><a href=\"https://fe2tech.com/service/material-supply/\">Material Supply</a></h3>\n                                                                                                    <h3><a href=\"https://fe2tech.com/service/material-supply/\">Material Supply</a></h3>\n                                        Lorem Ipsum available, but the majority have suffered alterati on in som.                                    \n                                        <a href=\"https://fe2tech.com/service/material-supply/\">Read more</a>\n                            <a href=\"https://fe2tech.com/service/property-sketching/\"><img src=\"https://fe2tech.com/wp-content/uploads/2019/11/service-06-430x550.jpg\" width=\"430\" height=\"550\" alt=\"service-06\" title=\"service-06\" /></a>\n                                                            <h3><a href=\"https://fe2tech.com/service/property-sketching/\">Tiling &#038; Painting</a></h3>\n                                                                                                    <h3><a href=\"https://fe2tech.com/service/property-sketching/\">Tiling &#038; Painting</a></h3>\n                                        Lorem Ipsum available, but the majority have suffered alterati on in som.                                    \n                                        <a href=\"https://fe2tech.com/service/property-sketching/\">Read more</a>\n                            <a href=\"https://fe2tech.com/service/plan-certification/\"><img src=\"https://fe2tech.com/wp-content/uploads/2019/11/service-07-430x550.jpg\" width=\"430\" height=\"550\" alt=\"service-07\" title=\"service-07\" /></a>\n                                                            <h3><a href=\"https://fe2tech.com/service/plan-certification/\">Plan Certification</a></h3>\n                                                                                                    <h3><a href=\"https://fe2tech.com/service/plan-certification/\">Plan Certification</a></h3>\n                                        Lorem Ipsum available, but the majority have suffered alterati on in som.                                    \n                                        <a href=\"https://fe2tech.com/service/plan-certification/\">Read more</a>\n    	<img width=\"502\" height=\"412\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-02.jpg\" alt=\"\" loading=\"lazy\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" loading=\"lazy\" />\n    	    	201 Awards winning constraction company\n	    <h3>\n        We are giving you a chance to build your dream    </h3>\n		We understand the importance of approaching each work integrally and believe in the power of simple and easy communication.		\n                                            Engineering\n                                        70%\n                                            Architecture\n                                        80%\n                                            Construction\n                                        75%\n	    <h3>\n        We have many areas of servicing sector    </h3>\n		We shows only the best websites and portfolios built completely with passion, simplicity & creativity. Our team have designed game changing products.		\n                                                    <h3><a href=\"https://fe2tech.com/service/surface-demolition/\">Surface Demolition</a></h3>\n                                        Lorem Ipsum available, but the majority have to suffered alterati on in som. It is a long to be hoy established fact that a reader.                                    \n                                        <a href=\"https://fe2tech.com/service/surface-demolition/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/laminate-flooring/\">Laminate Flooring</a></h3>\n                                        Lorem Ipsum available, but the majority have to suffered alterati on in som. It is a long to be hoy established fact that a reader.                                    \n                                        <a href=\"https://fe2tech.com/service/laminate-flooring/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/house-renovation/\">House Renovation</a></h3>\n                                        Lorem Ipsum available, but the majority have to suffered alterati on in som. It is a long to be hoy established fact that a reader.                                    \n                                        <a href=\"https://fe2tech.com/service/house-renovation/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/general-contracting/\">General Contracting</a></h3>\n                                        Lorem Ipsum available, but the majority have to suffered alterati on in som. It is a long to be hoy established fact that a reader.                                    \n                                        <a href=\"https://fe2tech.com/service/general-contracting/\">Read more</a>\n    <a href=\"https://fe2tech.com/services-v-1/\">\n                More services\n    </a>\n	    <h3>\n        We have many satisfied clients    </h3>\n                                        <img src=\"https://fe2tech.com/wp-content/uploads/2019/11/testimonial-01.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-01\" title=\"testimonial-01\" />                                    \n                                    The theme is well designed and it is really possible to have a nice one page theme in no time. \n                                    <h3>    \n                                        Adam Chuhan                                    </h3>\n                                        <img src=\"https://fe2tech.com/wp-content/uploads/2019/11/testimonial-02.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-02\" title=\"testimonial-02\" />                                    \n                                    Association health plans are a new alternative to provide small business owners, sole  with health insurance.\n                                    <h3>    \n                                        Romanda Rio                                    </h3>\n                                        <img src=\"https://fe2tech.com/wp-content/uploads/2019/11/testimonial-03.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-03\" title=\"testimonial-03\" />                                    \n                                    A trust is an ideal way for individuals to transfer assets either during life or after their passing. At a basic level.\n                                    <h3>    \n                                        Ronald Beko                                    </h3>\n                                        <img src=\"https://fe2tech.com/wp-content/uploads/2019/11/testimonial-04.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-04\" title=\"testimonial-04\" />                                    \n                                    It is a long established fact that a read her will be distracted by the readable content of a page.\n                                    <h3>    \n                                        Roman Kui                                    </h3>\n                                        <img src=\"https://fe2tech.com/wp-content/uploads/2019/11/testimonial-05.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-05\" title=\"testimonial-05\" />                                    \n                                    Most designers live in some sort of alternate reality, creating unnecessary things for each other.\n                                    <h3>    \n                                        Romanda Rio                                    </h3>\n		Don’t think so more about success rate. <a href=\"#\">Let’s get started</a>		\n	    <h3>\n        Our expert team member will help you    </h3>\n		We love what we do and we do it with passion. We value the experimentation of the message and smart incentives.		\n                                        <a href=\"https://fe2tech.com/team-details/\"><img width=\"350\" height=\"428\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-04-new.jpg\" alt=\"\" loading=\"lazy\" /></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">Ronald Dumple</a>\n                                </h3>\n                                    Web Designer\n                                                                                        <a href=\"#\"></a>\n                                                                                            <a href=\"#\"></a>\n                                                                                            <a href=\"#\"></a>\n                                                                                            <a href=\"#\"></a>\n                                        <a href=\"https://fe2tech.com/team-details/\"><img width=\"350\" height=\"428\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-03-new.jpg\" alt=\"\" loading=\"lazy\" /></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">Nichole Dice</a>\n                                </h3>\n                                    Web Developer\n                                                                                        <a href=\"#\"></a>\n                                                                                            <a href=\"#\"></a>\n                                                                                            <a href=\"#\"></a>\n                                                                                            <a href=\"#\"></a>\n                                        <a href=\"https://fe2tech.com/team-details/\"><img width=\"350\" height=\"428\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-05-new.jpg\" alt=\"\" loading=\"lazy\" /></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">Johan Rio</a>\n                                </h3>\n                                    Web Designer\n                                                                                        <a href=\"#\"></a>\n                                                                                            <a href=\"#\"></a>\n                                                                                            <a href=\"#\"></a>\n                                                                                            <a href=\"#\"></a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 800 250 369\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ctthemes/cstri/wp-admin/admin-ajax.php#wpcf7-f932-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.6.4\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" /><button type=\"submit\">Get now</button>\n</form>                \n                            <img src=\"https://fe2tech.com/wp-content/uploads/2019/11/portfolio-07-370x570.jpg\" width=\"370\" height=\"570\" alt=\"portfolio-07\" title=\"portfolio-07\" />                        \n                        <h3>\n                            RF Tower                        </h3>\n                        +\n                        <a href=\"https://fe2tech.com/portfolio/rf-tower/\"></a>\n                            <img src=\"https://fe2tech.com/wp-content/uploads/2019/11/constr-05-370x570.jpg\" width=\"370\" height=\"570\" alt=\"constr-05\" title=\"constr-05\" />                        \n                        <h3>\n                            Borak Mehnur                        </h3>\n                        +\n                        <a href=\"https://fe2tech.com/portfolio/borak-mehnur/\"></a>\n                            <img src=\"https://fe2tech.com/wp-content/uploads/2019/11/constr-06-370x570.jpg\" width=\"370\" height=\"570\" alt=\"constr-06\" title=\"constr-06\" />                        \n                        <h3>\n                            City Center                        </h3>\n                        +\n                        <a href=\"https://fe2tech.com/portfolio/city-centre/\"></a>\n                            <img src=\"https://fe2tech.com/wp-content/uploads/2019/11/gallery-02-370x570.jpg\" width=\"370\" height=\"570\" alt=\"gallery-02\" title=\"gallery-02\" />                        \n                        <h3>\n                            Court Imperial                        </h3>\n                        +\n                        <a href=\"https://fe2tech.com/portfolio/court-imperial/\"></a>\n                            <img src=\"https://fe2tech.com/wp-content/uploads/2019/11/service-09-370x570.jpg\" width=\"370\" height=\"570\" alt=\"service-09\" title=\"service-09\" />                        \n                        <h3>\n                            Rio villa                        </h3>\n                        +\n                        <a href=\"https://fe2tech.com/portfolio/rio-villa/\"></a>\n                            <img src=\"https://fe2tech.com/wp-content/uploads/2019/11/service-08-370x570.jpg\" width=\"370\" height=\"570\" alt=\"service-08\" title=\"service-08\" />                        \n                        <h3>\n                            FR Tower                        </h3>\n                        +\n                        <a href=\"https://fe2tech.com/portfolio/fr-tower/\"></a>\n	    <h3>\n        We have some easy working procedure    </h3>\n		Helping families live intelligently means we’re always working to bring our customers the latest technology.		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of approaching each work integrally.\n                        <a href=\"#\">Discover more</a>\n                                                    <h3>Connect with us</h3>\n                                                    What separates theme from all other web design agencies is the ability.\n                        <a href=\"#\">Contact</a>\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be a whole person. We have a flexible.\n                        <a href=\"#\">Place order</a>\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every brand has something special to reveal something that inspires.\n                        <a href=\"#\">Make a payment</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ctthemes/cstri/wp-admin/admin-ajax.php#wpcf7-f974-o2\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.6.4\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Interior Design\">Interior Design</option><option value=\"Metal Roofing\">Metal Roofing</option><option value=\"House Remodel\">House Remodel</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\"></textarea>\n<button type=\"submit\">Send message</button>\n</form>        \n	    <h3>\n        You will get a good pricing from us    </h3>\n                Monthly\n                Yearly Save 20%\n                    <style>.elementor-1214 .elementor-element.elementor-element-c6873c8{margin-top:0px;margin-bottom:0px;}.elementor-1214 .elementor-element.elementor-element-9c326ae > .elementor-element-populated{margin:0px 0px 40px 0px;--e-column-margin-right:0px;--e-column-margin-left:0px;}.elementor-1214 .elementor-element.elementor-element-ba9c4e2 > .elementor-element-populated{margin:0px 0px 40px 0px;--e-column-margin-right:0px;--e-column-margin-left:0px;}.elementor-1214 .elementor-element.elementor-element-9c8bcbf > .elementor-element-populated{margin:0px 0px 40px 0px;--e-column-margin-right:0px;--e-column-margin-left:0px;}@media(max-width:767px){.elementor-1214 .elementor-element.elementor-element-9c326ae > .elementor-element-populated{margin:0px 0px 0px 0px;--e-column-margin-right:0px;--e-column-margin-left:0px;}.elementor-1214 .elementor-element.elementor-element-ba9c4e2 > .elementor-element-populated{margin:39px 0px 0px 0px;--e-column-margin-right:0px;--e-column-margin-left:0px;}}</style>		\n							        <section data-id=\"c6873c8\" data-element_type=\"section\">\n        <h3>Basic Plan</h3>\n        The argument in favor of using to filler text goes something.\n    $29/ monthly\n                    <ul>\n                                    <li><del>24/7 system monitoring</del></li>\n                                    <li>Security management</li>\n                                    <li><del>Secure finance backup</del></li>\n                                    <li><del>Remote support</del></li>\n                            </ul>\n                <a href=\"#\">Get a free trial</a>\n            Recommended\n        <h3>Standard Plan</h3>\n        The argument in favor of using to filler text goes something.\n    $49/ monthly\n                    <ul>\n                                    <li>24/7 system monitoring</li>\n                                    <li><del>Security management</del></li>\n                                    <li>Secure finance backup</li>\n                                    <li><del>Remote support</del></li>\n                            </ul>\n                <a href=\"#\">Get a free trial</a>\n        <h3>Extended Plan</h3>\n        The argument in favor of using to filler text goes something.\n    $59/ monthly\n                    <ul>\n                                    <li>24/7 system monitoring</li>\n                                    <li>Security management</li>\n                                    <li>Secure finance backup</li>\n                                    <li>Remote support</li>\n                            </ul>\n                <a href=\"#\">Get a free trial</a>\n        </section>\n                    <style>.elementor-1217 .elementor-element.elementor-element-c6873c8{margin-top:0px;margin-bottom:0px;}.elementor-1217 .elementor-element.elementor-element-9c326ae > .elementor-element-populated{margin:0px 0px 40px 0px;--e-column-margin-right:0px;--e-column-margin-left:0px;}.elementor-1217 .elementor-element.elementor-element-ba9c4e2 > .elementor-element-populated{margin:0px 0px 40px 0px;--e-column-margin-right:0px;--e-column-margin-left:0px;}.elementor-1217 .elementor-element.elementor-element-9c8bcbf > .elementor-element-populated{margin:0px 0px 40px 0px;--e-column-margin-right:0px;--e-column-margin-left:0px;}@media(max-width:767px){.elementor-1217 .elementor-element.elementor-element-9c326ae > .elementor-element-populated{margin:0px 0px 0px 0px;--e-column-margin-right:0px;--e-column-margin-left:0px;}.elementor-1217 .elementor-element.elementor-element-ba9c4e2 > .elementor-element-populated{margin:39px 0px 0px 0px;--e-column-margin-right:0px;--e-column-margin-left:0px;}}</style>		\n							        <section data-id=\"c6873c8\" data-element_type=\"section\">\n        <h3>Basic Plan</h3>\n        The argument in favor of using to filler text goes something.\n    $49/ monthly\n                    <ul>\n                                    <li><del>24/7 system monitoring</del></li>\n                                    <li>Security management</li>\n                                    <li><del>Secure finance backup</del></li>\n                                    <li><del>Remote support</del></li>\n                            </ul>\n                <a href=\"#\">Get a free trial</a>\n            Recommended\n        <h3>Standard Plan</h3>\n        The argument in favor of using to filler text goes something.\n    $89/ monthly\n                    <ul>\n                                    <li>24/7 system monitoring</li>\n                                    <li><del>Security management</del></li>\n                                    <li>Secure finance backup</li>\n                                    <li><del>Remote support</del></li>\n                            </ul>\n                <a href=\"#\">Get a free trial</a>\n        <h3>Extended Plan</h3>\n        The argument in favor of using to filler text goes something.\n    $120/ monthly\n                    <ul>\n                                    <li>24/7 system monitoring</li>\n                                    <li>Security management</li>\n                                    <li>Secure finance backup</li>\n                                    <li>Remote support</li>\n                            </ul>\n                <a href=\"#\">Get a free trial</a>\n        </section>\n	    <h3>\n        Learn something more from our blog    </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"https://fe2tech.com/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://fe2tech.com/wp-content/uploads/2019/11/constr-01-600x389.jpg\" width=\"600\" height=\"389\" alt=\"constr-01\" title=\"constr-01\" /></a>\n                                                    <ul>\n                                                                    <li>November 5, 2019</li>\n                                                                                                    <li><a href=\"https://fe2tech.com/author/admin/\">admin</a></li>\n                                                            </ul>\n                                                    <h3><a href=\"https://fe2tech.com/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                            \n                                <a href=\"https://fe2tech.com/strategy-for-norways-peion-to-fund-global/\">Read more</a>\n                            <a href=\"https://fe2tech.com/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://fe2tech.com/wp-content/uploads/2019/11/constr-02-600x389.jpg\" width=\"600\" height=\"389\" alt=\"constr-02\" title=\"constr-02\" /></a>\n                                                    <ul>\n                                                                    <li>November 5, 2019</li>\n                                                                                                    <li><a href=\"https://fe2tech.com/author/admin/\">admin</a></li>\n                                                            </ul>\n                                                    <h3><a href=\"https://fe2tech.com/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to beo usually discovered.</a></h3>\n                                At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                            \n                                <a href=\"https://fe2tech.com/what-we-are-capable-to-beo-usually-discovered/\">Read more</a>\n                            <a href=\"https://fe2tech.com/food-industry-leaders-often-change-their-profound/\"><img src=\"https://fe2tech.com/wp-content/uploads/2019/11/constr-03-600x389.jpg\" width=\"600\" height=\"389\" alt=\"constr-03\" title=\"constr-03\" /></a>\n                                                    <ul>\n                                                                    <li>November 5, 2019</li>\n                                                                                                    <li><a href=\"https://fe2tech.com/author/admin/\">admin</a></li>\n                                                            </ul>\n                                                    <h3><a href=\"https://fe2tech.com/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                            \n                                <a href=\"https://fe2tech.com/food-industry-leaders-often-change-their-profound/\">Read more</a>\n                            <a href=\"https://fe2tech.com/how-to-go-about-intiating-an-start-up-in-a-matter-of-days/\"><img src=\"https://fe2tech.com/wp-content/uploads/2019/11/constr-04-600x389.jpg\" width=\"600\" height=\"389\" alt=\"constr-04\" title=\"constr-04\" /></a>\n                                                    <ul>\n                                                                    <li>November 5, 2019</li>\n                                                                                                    <li><a href=\"https://fe2tech.com/author/admin/\">admin</a></li>\n                                                            </ul>\n                                                    <h3><a href=\"https://fe2tech.com/how-to-go-about-intiating-an-start-up-in-a-matter-of-days/\">How to go about intiating an start-up in a matter.</a></h3>\n                                At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                            \n                                <a href=\"https://fe2tech.com/how-to-go-about-intiating-an-start-up-in-a-matter-of-days/\">Read more</a>\n                            <a href=\"https://fe2tech.com/engaging-new-audiences-through-smart-approach/\"><img src=\"https://fe2tech.com/wp-content/uploads/2019/11/constr-05-600x389.jpg\" width=\"600\" height=\"389\" alt=\"constr-05\" title=\"constr-05\" /></a>\n                                                    <ul>\n                                                                    <li>November 5, 2019</li>\n                                                                                                    <li><a href=\"https://fe2tech.com/author/admin/\">admin</a></li>\n                                                            </ul>\n                                                    <h3><a href=\"https://fe2tech.com/engaging-new-audiences-through-smart-approach/\">Engaging New Audiences through Smart Approach.</a></h3>\n                                At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                            \n                                <a href=\"https://fe2tech.com/engaging-new-audiences-through-smart-approach/\">Read more</a>\n                            <a href=\"https://fe2tech.com/many-types-of-construction-equipment-are-designed/\"><img src=\"https://fe2tech.com/wp-content/uploads/2019/11/constr-06-600x389.jpg\" width=\"600\" height=\"389\" alt=\"constr-06\" title=\"constr-06\" /></a>\n                                                    <ul>\n                                                                    <li>November 4, 2018</li>\n                                                                                                    <li><a href=\"https://fe2tech.com/author/admin/\">admin</a></li>\n                                                            </ul>\n                                                    <h3><a href=\"https://fe2tech.com/many-types-of-construction-equipment-are-designed/\">Many types of construction equipment are designed.</a></h3>\n                                At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                            \n                                <a href=\"https://fe2tech.com/many-types-of-construction-equipment-are-designed/\">Read more</a>\n                                <a href=\"#\"><img width=\"169\" height=\"35\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/client-01.png\" alt=\"\" loading=\"lazy\" /></a>\n                                <a href=\"#\"><img width=\"143\" height=\"42\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/client-02.png\" alt=\"\" loading=\"lazy\" /></a>\n                                <a href=\"#\"><img width=\"166\" height=\"38\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/client-03.png\" alt=\"\" loading=\"lazy\" /></a>\n                                <a href=\"#\"><img width=\"170\" height=\"35\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/client-04.png\" alt=\"\" loading=\"lazy\" /></a>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-10-19 14:36:38','2024-10-19 14:36:38','',9,'http://fe2tech.com/?p=1971',0,'revision','',0),(1972,1,'2024-10-19 14:36:39','2024-10-19 14:36:39','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We assess plans and provide tailored machinery.    </h3>\n		<p>Our company’s strength lies in our team, who have developed groundbreaking machinery and equipment.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"151\" height=\"50\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Awards Winner\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Satisfied Clients\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Active projects\n													<img width=\"516\" height=\"290\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/home-image-01.png\" alt=\"\" />													\n    	<img width=\"502\" height=\"412\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-02.jpg\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n    	    	201 Award-winning machinery and equipment manufacturing company.\n	    <h3>\n        We help you build your vision with our machinery.    </h3>\n		<p>We approach every project with precision and value clear, simple communication.</p>		\n                                            Engineering\n                                        85%\n                                            Design\n                                        80%\n                                            Production\n                                        90%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/surface-demolition/\">Surface Demolition</a></h3>\n                                        Lorem Ipsum available, but the majority have to suffered alterati on in som. It is a long to be hoy established fact that a reader.                                    \n                                        <a href=\"https://fe2tech.com/service/surface-demolition/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/laminate-flooring/\">Laminate Flooring</a></h3>\n                                        Lorem Ipsum available, but the majority have to suffered alterati on in som. It is a long to be hoy established fact that a reader.                                    \n                                        <a href=\"https://fe2tech.com/service/laminate-flooring/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/house-renovation/\">House Renovation</a></h3>\n                                        Lorem Ipsum available, but the majority have to suffered alterati on in som. It is a long to be hoy established fact that a reader.                                    \n                                        <a href=\"https://fe2tech.com/service/house-renovation/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/general-contracting/\">General Contracting</a></h3>\n                                        Lorem Ipsum available, but the majority have to suffered alterati on in som. It is a long to be hoy established fact that a reader.                                    \n                                        <a href=\"https://fe2tech.com/service/general-contracting/\">Read more</a>\n    <a href=\"https://fe2tech.com/services-v-1/\">\n                More services\n    </a>\n	    <h3>\n        Our Partners    </h3>\n                                <a href=\"#\"><img width=\"169\" height=\"35\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"143\" height=\"42\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"166\" height=\"38\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"170\" height=\"35\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 800 250 369\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We help businesses thrive by providing the latest machinery technology.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                        <a href=\"#\">Discover more</a>\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\n                        <a href=\"#\">Contact</a>\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                        <a href=\"#\">Place order</a>\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n                        <a href=\"#\">Make a payment</a>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Services\">Services</option><option value=\"Interior Design\">Interior Design</option><option value=\"Metal Roofing\">Metal Roofing</option><option value=\"House Remodel\">House Remodel</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-10-19 14:36:39','2024-10-19 14:36:39','',9,'http://fe2tech.com/?p=1972',0,'revision','',0),(1975,1,'2024-10-19 14:54:00','2024-10-19 14:54:00','','banner_02','','inherit','open','closed','','banner_02','','','2024-10-19 14:54:00','2024-10-19 14:54:00','',0,'http://fe2tech.com/wp-content/uploads/2024/10/banner_02.jpg',0,'attachment','image/jpeg',0),(1976,1,'2024-10-19 14:58:39','2024-10-19 14:58:39','','stationary_equipment_banner_4','','inherit','open','closed','','stationary_equipment_banner_4','','','2024-10-19 14:58:39','2024-10-19 14:58:39','',0,'http://fe2tech.com/wp-content/uploads/2024/10/stationary_equipment_banner_4.jpg',0,'attachment','image/jpeg',0),(1977,1,'2024-10-19 14:59:14','2024-10-19 14:59:14','','orange-geometric-flat-mechanical-banner-background_2756120','','inherit','open','closed','','orange-geometric-flat-mechanical-banner-background_2756120','','','2024-10-19 14:59:14','2024-10-19 14:59:14','',0,'http://fe2tech.com/wp-content/uploads/2024/10/orange-geometric-flat-mechanical-banner-background_2756120.jpg',0,'attachment','image/jpeg',0),(1979,1,'2024-10-19 15:03:00','2024-10-19 15:03:00','Team\n	    <h3>\n        We will satisfy you by our work ideas    </h3>\n		At vero eos et accusamus et iusto odio digni goiku\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. 		\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-01.jpg\" alt=\"\" loading=\"lazy\" /></a>\n                            	<h3>	\n                	            	Ronald Dumple                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Ronald Dumple                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-02.jpg\" alt=\"\" loading=\"lazy\" /></a>\n                            	<h3>	\n                	            	James Smith                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        James Smith                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-03.jpg\" alt=\"\" loading=\"lazy\" /></a>\n                            	<h3>	\n                	            	Charles F Johnson                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Charles F Johnson                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-04.jpg\" alt=\"\" loading=\"lazy\" /></a>\n                            	<h3>	\n                	            	Jodi C Johnson                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Jodi C Johnson                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-05.jpg\" alt=\"\" loading=\"lazy\" /></a>\n                            	<h3>	\n                	            	Debra L Smith                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Debra L Smith                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-06.jpg\" alt=\"\" loading=\"lazy\" /></a>\n                            	<h3>	\n                	            	Mrditch  Hohan                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Mrditch  Hohan                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>','Our Team &amp; Partner','','inherit','closed','closed','','28-revision-v1','','','2024-10-19 15:03:00','2024-10-19 15:03:00','',28,'http://fe2tech.com/?p=1979',0,'revision','',0),(1981,1,'2024-10-19 15:06:39','2024-10-19 15:06:39','Team\n	    <h3>\n        We will satisfy you by our work ideas    </h3>\n		At vero eos et accusamus et iusto odio digni goiku\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. 		\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-01.jpg\" alt=\"\" loading=\"lazy\" /></a>\n                            	<h3>	\n                	            	Ronald Dumple                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Ronald Dumple                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-02.jpg\" alt=\"\" loading=\"lazy\" /></a>\n                            	<h3>	\n                	            	James Smith                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        James Smith                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-03.jpg\" alt=\"\" loading=\"lazy\" /></a>\n                            	<h3>	\n                	            	Charles F Johnson                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Charles F Johnson                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-04.jpg\" alt=\"\" loading=\"lazy\" /></a>\n                            	<h3>	\n                	            	Jodi C Johnson                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Jodi C Johnson                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-05.jpg\" alt=\"\" loading=\"lazy\" /></a>\n                            	<h3>	\n                	            	Debra L Smith                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Debra L Smith                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-06.jpg\" alt=\"\" loading=\"lazy\" /></a>\n                            	<h3>	\n                	            	Mrditch  Hohan                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Mrditch  Hohan                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>','Our Team &amp; Partner','','inherit','closed','closed','','28-revision-v1','','','2024-10-19 15:06:39','2024-10-19 15:06:39','',28,'http://fe2tech.com/?p=1981',0,'revision','',0),(1982,1,'2024-10-19 15:06:39','2024-10-19 15:06:39','Team\n	    <h3>\n        We will satisfy you by our work ideas    </h3>\n		At vero eos et accusamus et iusto odio digni goiku\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. 		\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-01.jpg\" alt=\"\" loading=\"lazy\" /></a>\n                            	<h3>	\n                	            	Ronald Dumple                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Ronald Dumple                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-02.jpg\" alt=\"\" loading=\"lazy\" /></a>\n                            	<h3>	\n                	            	James Smith                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        James Smith                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-03.jpg\" alt=\"\" loading=\"lazy\" /></a>\n                            	<h3>	\n                	            	Charles F Johnson                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Charles F Johnson                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-04.jpg\" alt=\"\" loading=\"lazy\" /></a>\n                            	<h3>	\n                	            	Jodi C Johnson                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Jodi C Johnson                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-05.jpg\" alt=\"\" loading=\"lazy\" /></a>\n                            	<h3>	\n                	            	Debra L Smith                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Debra L Smith                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-06.jpg\" alt=\"\" loading=\"lazy\" /></a>\n                            	<h3>	\n                	            	Mrditch  Hohan                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Mrditch  Hohan                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>','Our Team &amp; Partner','','inherit','closed','closed','','28-revision-v1','','','2024-10-19 15:06:39','2024-10-19 15:06:39','',28,'http://fe2tech.com/?p=1982',0,'revision','',0),(1983,1,'2024-10-19 15:06:39','2024-10-19 15:06:39','Team\n	    <h3>\n        We will exceed your expectations with our innovative solutions.    </h3>\n		<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-01.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Ronald Dumple                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Ronald Dumple                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-02.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	James Smith                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        James Smith                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-03.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Charles F Johnson                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Charles F Johnson                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-04.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Jodi C Johnson                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Jodi C Johnson                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-05.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Debra L Smith                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Debra L Smith                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-06.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Mrditch  Hohan                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Mrditch  Hohan                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>','Our Team &amp; Partner','','inherit','closed','closed','','28-revision-v1','','','2024-10-19 15:06:39','2024-10-19 15:06:39','',28,'http://fe2tech.com/?p=1983',0,'revision','',0),(1985,1,'2024-10-19 15:16:55','2024-10-19 15:16:55','About us\n	    <h3>\n        We will satisfy you by our work ideas    </h3>\n		At vero eos et accusamus et iusto odio digni goikussimos ducimus qui to bonfoeblanditiis praese. Ntium voluum deleniti.Tpage a reload when looking at its layout. The point of using Lorem Ipsum is that it has pi motivere-or-less normal distribution of letters, as opposed.		\n										<img width=\"59\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png\" alt=\"\" />											\n	    <h3>\n        Time manage    </h3>\n		<p>Lorem Ipsum available, but the majority have suffered alterati.</p>		\n										<img width=\"55\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-02.png\" alt=\"\" />											\n	    <h3>\n        Fulfill target    </h3>\n		<p>Lorem Ipsum available, but the majority have suffered alterati.</p>		\n    <img width=\"369\" height=\"382\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-01.jpg\" alt=\"\" />		\n            <img width=\"111\" height=\"85\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/signature1.png\" alt=\"\" />\n        <h3>Hanley Robin</h3>\n        (Chairman and founder)\n            Want to know more about us?\n            Just download brochure...\n            <a href=\"#\">\n                                                                    Download Brochure            </a>\n			Services\n	    <h3>\n        We have areas of service    </h3>\n		At vero eos et accusamus et iusto odio digni goiku\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. 		\n                                                    <h3><a href=\"https://fe2tech.com/service/surface-demolition/\">Surface Demolition</a></h3>\n                                        Lorem Ipsum available, but the majority have to suffered alterati on in som. It is a long to be hoy established fact that a reader.                                    \n                                        <a href=\"https://fe2tech.com/service/surface-demolition/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/laminate-flooring/\">Laminate Flooring</a></h3>\n                                        Lorem Ipsum available, but the majority have to suffered alterati on in som. It is a long to be hoy established fact that a reader.                                    \n                                        <a href=\"https://fe2tech.com/service/laminate-flooring/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/house-renovation/\">House Renovation</a></h3>\n                                        Lorem Ipsum available, but the majority have to suffered alterati on in som. It is a long to be hoy established fact that a reader.                                    \n                                        <a href=\"https://fe2tech.com/service/house-renovation/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/general-contracting/\">General Contracting</a></h3>\n                                        Lorem Ipsum available, but the majority have to suffered alterati on in som. It is a long to be hoy established fact that a reader.                                    \n                                        <a href=\"https://fe2tech.com/service/general-contracting/\">Read more</a>\n    <a href=\"https://fe2tech.com/services-v-1/\">\n                More services\n    </a>\n			Company history\n	    <h3>\n        Constrio is a professional builder company    </h3>\n		At vero eos et accusamus et iusto odio digni goiku\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. 		\n			Start		\n								<h3>2nd Feb, 2018</h3>\n								Exhibition Planning &amp; Exhibition Management\n								<h3>21st Jul, 2018</h3>\n								Growth internationallyfirst half of the 2018s\n								<h3>19th Aug, 2018</h3>\n								The purpose of the business plan\n								<h3>2nd Jan, 2019</h3>\n								Focus business history on what matters to planning\n								<h3>22nd Sep, 2019</h3>\n								History to Unite and Inspire People\n								<h3>12th Jan, 2018</h3>\n								Establishment of Constrio\n								<h3>8th Jul, 2018</h3>\n								Registered as a construction company\n								<h3>18th Aug, 2018</h3>\n								Construction bought the Greek company Delta\n								<h3>27th Sep, 2018</h3>\n								For lean business plans, operational plans, and strategic plans\n								<h3>8th Jul, 2019</h3>\n								Award winner\n			<img src=\"https://fe2tech.com/wp-content/uploads/2019/11/constr-01-150x150.jpg\" width=\"150\" height=\"150\" alt=\"constr-01\" title=\"constr-01\" />		\n			Testimonials\n	    <h3>\n        We will satisfy you by our work ideas    </h3>\n		At vero eos et accusamus et iusto odio digni goiku\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. 		\n                                        <img src=\"https://fe2tech.com/wp-content/uploads/2019/11/testimonial-01.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-01\" title=\"testimonial-01\" />                                        <i>”</i>\n                                    Lorem Ipsum available, but the majority have to sufferrer tobe alterati on in som. It is a long to be established.\n                                    <h3>    \n                                        Adam Chuhan                                    </h3>\n                                    Web designer\n                                        <img src=\"https://fe2tech.com/wp-content/uploads/2019/11/testimonial-02.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-02\" title=\"testimonial-02\" />                                        <i>”</i>\n                                    Lorem Ipsum available, but the majority have to sufferrer tobe alterati on in som. It is a long to be established.\n                                    <h3>    \n                                        Erika Johnson                                     </h3>\n                                    Web designer\n                                        <img src=\"https://fe2tech.com/wp-content/uploads/2019/11/testimonial-03.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-03\" title=\"testimonial-03\" />                                        <i>”</i>\n                                    Lorem Ipsum available, but the majority have to sufferrer tobe alterati on in som. It is a long to be established.\n                                    <h3>    \n                                        Allie Johnson                                     </h3>\n                                    SEO manager\n                                        <img src=\"https://fe2tech.com/wp-content/uploads/2019/11/testimonial-04.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-04\" title=\"testimonial-04\" />                                        <i>”</i>\n                                    Lorem Ipsum available, but the majority have to sufferrer tobe alterati on in som. It is a long to be established.\n                                    <h3>    \n                                        James Smith                                     </h3>\n                                    Web designer\n                                        <img src=\"https://fe2tech.com/wp-content/uploads/2019/11/testimonial-05.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-05\" title=\"testimonial-05\" />                                        <i>”</i>\n                                    Lorem Ipsum available, but the majority have to sufferrer tobe alterati on in som. It is a long to be established.\n                                    <h3>    \n                                        Adam Chuhan                                    </h3>\n                                    Sasha D Johnson \n                                        <img src=\"https://fe2tech.com/wp-content/uploads/2019/11/testimonial-06.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-06\" title=\"testimonial-06\" />                                        <i>”</i>\n                                    Lorem Ipsum available, but the majority have to sufferrer tobe alterati on in som. It is a long to be established.\n                                    <h3>    \n                                        Debra L Smith                                     </h3>\n                                    Web designer','About','','inherit','closed','closed','','26-revision-v1','','','2024-10-19 15:16:55','2024-10-19 15:16:55','',26,'http://fe2tech.com/?p=1985',0,'revision','',0),(1986,1,'2024-10-19 15:16:55','2024-10-19 15:16:55','About us\n	    <h3>\n        We will satisfy you by our work ideas    </h3>\n		At vero eos et accusamus et iusto odio digni goikussimos ducimus qui to bonfoeblanditiis praese. Ntium voluum deleniti.Tpage a reload when looking at its layout. The point of using Lorem Ipsum is that it has pi motivere-or-less normal distribution of letters, as opposed.		\n										<img width=\"59\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png\" alt=\"\" />											\n	    <h3>\n        Time manage    </h3>\n		<p>Lorem Ipsum available, but the majority have suffered alterati.</p>		\n										<img width=\"55\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-02.png\" alt=\"\" />											\n	    <h3>\n        Fulfill target    </h3>\n		<p>Lorem Ipsum available, but the majority have suffered alterati.</p>		\n    <img width=\"369\" height=\"382\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-01.jpg\" alt=\"\" />		\n            <img width=\"111\" height=\"85\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/signature1.png\" alt=\"\" />\n        <h3>Hanley Robin</h3>\n        (Chairman and founder)\n            Want to know more about us?\n            Just download brochure...\n            <a href=\"#\">\n                                                                    Download Brochure            </a>\n			Services\n	    <h3>\n        We have areas of service    </h3>\n		At vero eos et accusamus et iusto odio digni goiku\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. 		\n                                                    <h3><a href=\"https://fe2tech.com/service/surface-demolition/\">Surface Demolition</a></h3>\n                                        Lorem Ipsum available, but the majority have to suffered alterati on in som. It is a long to be hoy established fact that a reader.                                    \n                                        <a href=\"https://fe2tech.com/service/surface-demolition/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/laminate-flooring/\">Laminate Flooring</a></h3>\n                                        Lorem Ipsum available, but the majority have to suffered alterati on in som. It is a long to be hoy established fact that a reader.                                    \n                                        <a href=\"https://fe2tech.com/service/laminate-flooring/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/house-renovation/\">House Renovation</a></h3>\n                                        Lorem Ipsum available, but the majority have to suffered alterati on in som. It is a long to be hoy established fact that a reader.                                    \n                                        <a href=\"https://fe2tech.com/service/house-renovation/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/general-contracting/\">General Contracting</a></h3>\n                                        Lorem Ipsum available, but the majority have to suffered alterati on in som. It is a long to be hoy established fact that a reader.                                    \n                                        <a href=\"https://fe2tech.com/service/general-contracting/\">Read more</a>\n    <a href=\"https://fe2tech.com/services-v-1/\">\n                More services\n    </a>\n			Company history\n	    <h3>\n        Constrio is a professional builder company    </h3>\n		At vero eos et accusamus et iusto odio digni goiku\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. 		\n			Start		\n								<h3>2nd Feb, 2018</h3>\n								Exhibition Planning &amp; Exhibition Management\n								<h3>21st Jul, 2018</h3>\n								Growth internationallyfirst half of the 2018s\n								<h3>19th Aug, 2018</h3>\n								The purpose of the business plan\n								<h3>2nd Jan, 2019</h3>\n								Focus business history on what matters to planning\n								<h3>22nd Sep, 2019</h3>\n								History to Unite and Inspire People\n								<h3>12th Jan, 2018</h3>\n								Establishment of Constrio\n								<h3>8th Jul, 2018</h3>\n								Registered as a construction company\n								<h3>18th Aug, 2018</h3>\n								Construction bought the Greek company Delta\n								<h3>27th Sep, 2018</h3>\n								For lean business plans, operational plans, and strategic plans\n								<h3>8th Jul, 2019</h3>\n								Award winner\n			<img src=\"https://fe2tech.com/wp-content/uploads/2019/11/constr-01-150x150.jpg\" width=\"150\" height=\"150\" alt=\"constr-01\" title=\"constr-01\" />		\n			Testimonials\n	    <h3>\n        We will satisfy you by our work ideas    </h3>\n		At vero eos et accusamus et iusto odio digni goiku\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. 		\n                                        <img src=\"https://fe2tech.com/wp-content/uploads/2019/11/testimonial-01.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-01\" title=\"testimonial-01\" />                                        <i>”</i>\n                                    Lorem Ipsum available, but the majority have to sufferrer tobe alterati on in som. It is a long to be established.\n                                    <h3>    \n                                        Adam Chuhan                                    </h3>\n                                    Web designer\n                                        <img src=\"https://fe2tech.com/wp-content/uploads/2019/11/testimonial-02.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-02\" title=\"testimonial-02\" />                                        <i>”</i>\n                                    Lorem Ipsum available, but the majority have to sufferrer tobe alterati on in som. It is a long to be established.\n                                    <h3>    \n                                        Erika Johnson                                     </h3>\n                                    Web designer\n                                        <img src=\"https://fe2tech.com/wp-content/uploads/2019/11/testimonial-03.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-03\" title=\"testimonial-03\" />                                        <i>”</i>\n                                    Lorem Ipsum available, but the majority have to sufferrer tobe alterati on in som. It is a long to be established.\n                                    <h3>    \n                                        Allie Johnson                                     </h3>\n                                    SEO manager\n                                        <img src=\"https://fe2tech.com/wp-content/uploads/2019/11/testimonial-04.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-04\" title=\"testimonial-04\" />                                        <i>”</i>\n                                    Lorem Ipsum available, but the majority have to sufferrer tobe alterati on in som. It is a long to be established.\n                                    <h3>    \n                                        James Smith                                     </h3>\n                                    Web designer\n                                        <img src=\"https://fe2tech.com/wp-content/uploads/2019/11/testimonial-05.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-05\" title=\"testimonial-05\" />                                        <i>”</i>\n                                    Lorem Ipsum available, but the majority have to sufferrer tobe alterati on in som. It is a long to be established.\n                                    <h3>    \n                                        Adam Chuhan                                    </h3>\n                                    Sasha D Johnson \n                                        <img src=\"https://fe2tech.com/wp-content/uploads/2019/11/testimonial-06.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-06\" title=\"testimonial-06\" />                                        <i>”</i>\n                                    Lorem Ipsum available, but the majority have to sufferrer tobe alterati on in som. It is a long to be established.\n                                    <h3>    \n                                        Debra L Smith                                     </h3>\n                                    Web designer','About','','inherit','closed','closed','','26-revision-v1','','','2024-10-19 15:16:55','2024-10-19 15:16:55','',26,'http://fe2tech.com/?p=1986',0,'revision','',0),(1987,1,'2024-10-19 15:16:55','2024-10-19 15:16:55','About us\n	    <h3>\n        We satisfy you with innovative ideas and quality work.    </h3>\n		<p>At vero eos et accusamus et iusto odio digni goikussimos ducimus qui to bonfoeblanditiis praese. Ntium voluum deleniti.</p><p>We exceed expectations through innovative ideas and exceptional craftsmanship.</p>		\n													<img width=\"59\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png\" alt=\"\" />													\n	    <h3>\n        Time manage    </h3>\n		<p>Efficiently organizing tasks to maximize productivity and meet deadlines.</p>		\n													<img width=\"55\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-02.png\" alt=\"\" />													\n	    <h3>\n        Fulfill target    </h3>\n		<p>Achieving goals with precision and commitment, ensuring success.</p>		\n    <img width=\"369\" height=\"382\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-01.jpg\" alt=\"\" />		\n            <img width=\"111\" height=\"85\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/signature1.png\" alt=\"\" />\n        <h3>Hanley Robin</h3>\n        (Chairman and founder)\n            Want to know more about us?\n            Just download brochure...\n            <a href=\"#\">\n                                                                    Download Brochure            </a>\n			Company history\n	    <h3>\n        Fe2tech is a professional builder company    </h3>\n		<p>Fe2tech is a leading company in building and manufacturing high-quality mechanical solutions.</p>		\n			Start		\n								<h3>2nd Feb, 2018</h3>\n								Exhibition Planning &amp; Exhibition Management\n								<h3>21st Jul, 2018</h3>\n								Growth internationallyfirst half of the 2018s\n								<h3>19th Aug, 2018</h3>\n								The purpose of the business plan\n								<h3>2nd Jan, 2019</h3>\n								Focus business history on what matters to planning\n								<h3>22nd Sep, 2019</h3>\n								History to Unite and Inspire People\n								<h3>12th Jan, 2018</h3>\n								Establishment of Constrio\n								<h3>8th Jul, 2018</h3>\n								Registered as a construction company\n								<h3>18th Aug, 2018</h3>\n								Construction bought the Greek company Delta\n								<h3>27th Sep, 2018</h3>\n								For lean business plans, operational plans, and strategic plans\n								<h3>8th Jul, 2019</h3>\n								Award winner','About','','inherit','closed','closed','','26-revision-v1','','','2024-10-19 15:16:55','2024-10-19 15:16:55','',26,'http://fe2tech.com/?p=1987',0,'revision','',0),(1992,1,'2024-10-19 15:19:51','2024-10-19 15:19:51','Team\n	    <h3>\n        We will exceed your expectations with our innovative solutions.    </h3>\n		<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-01.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Ronald Dumple                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Ronald Dumple                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-02.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	James Smith                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        James Smith                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-03.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Charles F Johnson                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Charles F Johnson                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-04.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Jodi C Johnson                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Jodi C Johnson                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-05.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Debra L Smith                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Debra L Smith                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-06.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Mrditch  Hohan                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Mrditch  Hohan                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>','Our Team','','inherit','closed','closed','','28-revision-v1','','','2024-10-19 15:19:51','2024-10-19 15:19:51','',28,'http://fe2tech.com/?p=1992',0,'revision','',0),(1997,1,'2024-10-19 15:23:06','2024-10-19 15:23:06','Team\n	    <h3>\n        We will exceed your expectations with our innovative solutions.    </h3>\n		<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-01.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Ronald Dumple                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Ronald Dumple                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-02.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	James Smith                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        James Smith                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-03.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Charles F Johnson                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Charles F Johnson                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-04.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Jodi C Johnson                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Jodi C Johnson                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-05.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Debra L Smith                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Debra L Smith                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-06.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Mrditch  Hohan                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Mrditch  Hohan                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>','Our Team','','inherit','closed','closed','','28-revision-v1','','','2024-10-19 15:23:06','2024-10-19 15:23:06','',28,'http://fe2tech.com/?p=1997',0,'revision','',0),(1998,1,'2024-10-19 15:23:07','2024-10-19 15:23:07','Team\n	    <h3>\n        We will exceed your expectations with our innovative solutions.    </h3>\n		<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-01.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Ronald Dumple                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Ronald Dumple                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-02.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	James Smith                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        James Smith                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-03.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Charles F Johnson                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Charles F Johnson                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-04.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Jodi C Johnson                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Jodi C Johnson                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-05.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Debra L Smith                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Debra L Smith                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-06.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Mrditch  Hohan                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Mrditch  Hohan                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>','Our Team','','inherit','closed','closed','','28-revision-v1','','','2024-10-19 15:23:07','2024-10-19 15:23:07','',28,'http://fe2tech.com/?p=1998',0,'revision','',0),(1999,1,'2024-10-19 15:23:07','2024-10-19 15:23:07','Our Team\n	    <h3>\n        We will exceed your expectations with our innovative solutions.    </h3>\n		<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-01.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Ronald Dumple                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Ronald Dumple                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-02.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	James Smith                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        James Smith                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-03.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Charles F Johnson                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Charles F Johnson                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-04.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Jodi C Johnson                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Jodi C Johnson                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-05.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Debra L Smith                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Debra L Smith                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-06.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Mrditch  Hohan                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Mrditch  Hohan                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>','Our Team','','inherit','closed','closed','','28-revision-v1','','','2024-10-19 15:23:07','2024-10-19 15:23:07','',28,'http://fe2tech.com/?p=1999',0,'revision','',0),(2006,1,'2024-10-19 15:25:40','2024-10-19 15:25:40','Our Team\n	    <h3>\n        We will exceed your expectations with our innovative solutions.    </h3>\n		<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-01.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Ronald Dumple                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Ronald Dumple                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-02.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	James Smith                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        James Smith                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-03.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Charles F Johnson                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Charles F Johnson                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-04.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Jodi C Johnson                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Jodi C Johnson                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-05.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Debra L Smith                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Debra L Smith                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-06.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Mrditch  Hohan                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Mrditch  Hohan                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>','Our Team','','inherit','closed','closed','','28-revision-v1','','','2024-10-19 15:25:40','2024-10-19 15:25:40','',28,'http://fe2tech.com/?p=2006',0,'revision','',0),(2007,1,'2024-10-19 15:25:40','2024-10-19 15:25:40','Our Team\n	    <h3>\n        We will exceed your expectations with our innovative solutions.    </h3>\n		<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-01.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Ronald Dumple                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Ronald Dumple                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-02.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	James Smith                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        James Smith                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-03.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Charles F Johnson                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Charles F Johnson                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-04.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Jodi C Johnson                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Jodi C Johnson                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-05.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Debra L Smith                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Debra L Smith                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-06.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Mrditch  Hohan                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Mrditch  Hohan                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>','Our Team','','inherit','closed','closed','','28-revision-v1','','','2024-10-19 15:25:40','2024-10-19 15:25:40','',28,'http://fe2tech.com/?p=2007',0,'revision','',0),(2008,1,'2024-10-19 15:25:40','2024-10-19 15:25:40','Our Team\n	    <h3>\n        We will exceed your expectations with our innovative solutions.    </h3>\n		<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-01.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Ronald Dumple                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Ronald Dumple                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-02.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	James Smith                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        James Smith                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-03.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Charles F Johnson                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Charles F Johnson                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-04.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Jodi C Johnson                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Jodi C Johnson                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-05.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Debra L Smith                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Debra L Smith                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-06.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Mrditch  Hohan                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Mrditch  Hohan                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>','Our Team','','inherit','closed','closed','','28-revision-v1','','','2024-10-19 15:25:40','2024-10-19 15:25:40','',28,'http://fe2tech.com/?p=2008',0,'revision','',0),(2014,1,'2024-10-19 15:31:28','2024-10-19 15:31:28','<a href=\"https://fe2tech.com/\">\n							<img width=\"165\" height=\"70\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/logo-footer-02.png\" alt=\"\" />								</a>\n			    <ul>\n                    <li>\n            	   30 Commercial Road<br /> Fratton, Australia                \n           </li>\n                    <li>\n            	   1-888-452-1505                \n           </li>\n            </ul>\n		Open Hours:Mon - Sat: 8 am - 5 pm,<br/>\nSunday: CLOSED		\n    <h3>\n        Menu\n        <i></i>\n    </h3>\n        <ul id=\"menu-main-menu\"><li id=\"menu-item-1955\"><a href=\"https://fe2tech.com/\">Home</a></li>\n<li id=\"menu-item-1965\"><a href=\"https://fe2tech.com/shop/\">Products</a></li>\n<li id=\"menu-item-1966\"><a href=\"https://fe2tech.com/services-v-2/\">Services</a></li>\n<li id=\"menu-item-1989\"><a href=\"#\">Our Team &#038; Partner</a>\n<ul>\n	<li id=\"menu-item-1967\"><a href=\"https://fe2tech.com/team/\">Our Team</a></li>\n	<li id=\"menu-item-1996\"><a href=\"https://fe2tech.com/partner/\">Our Partners</a></li>\n</ul>\n</li>\n<li id=\"menu-item-1960\"><a href=\"https://fe2tech.com/about/\">About Us</a></li>\n</ul>    \n    <h3>\n        Newsletter\n        <i></i>\n    </h3>\n		Sign up for alerts, our latest blogs, thoughts, and insights.		\n        <form method=\"post\" action=\"https://fe2tech.com/wp-admin/admin-ajax.php?action=tnp&amp;na=s\" style=\"\">\n<input type=\"hidden\" name=\"nlang\" value=\"\">\n<label for=\"tnp-1\">Your mail address</label>\n<input type=\"email\" name=\"ne\" id=\"tnp-1\" value=\"\" placeholder=\"\" required>\n<input type=\"submit\" value=\"Subscribe\" style=\"\">\n</form>    \n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n		© All rights reserved by <a href=\"https://themeforest.net/user/case-themes/portfolio\" target=\"_blank\" rel=\"nofollow noopener\">CaseThemes</a>		\n        <ul id=\"menu-menu-footer-bottom\"><li id=\"menu-item-1878\"><a href=\"#\">Terms</a></li>\n<li id=\"menu-item-1879\"><a href=\"#\">Privacy &#038; Policy</a></li>\n<li id=\"menu-item-1880\"><a href=\"#\">Join Us</a></li>\n<li id=\"menu-item-1881\"><a href=\"#\">Need Help?</a></li>\n</ul>','Footer 2','','inherit','closed','closed','','799-revision-v1','','','2024-10-19 15:31:28','2024-10-19 15:31:28','',799,'http://fe2tech.com/?p=2014',0,'revision','',0),(2016,1,'2024-10-19 15:35:43','2024-10-19 15:35:43','','may-cnc-trung-tam-4-dau-1','','inherit','open','closed','','may-cnc-trung-tam-4-dau-1','','','2024-10-19 15:35:43','2024-10-19 15:35:43','',0,'http://fe2tech.com/wp-content/uploads/2019/11/may-cnc-trung-tam-4-dau-1.jpg',0,'attachment','image/jpeg',0),(2017,1,'2024-10-19 15:40:06','2024-10-19 15:40:06','','AJT400S-TRIM-900','','inherit','open','closed','','ajt400s-trim-900','','','2024-10-19 15:40:06','2024-10-19 15:40:06','',0,'http://fe2tech.com/wp-content/uploads/2019/11/AJT400S-TRIM-900.jpg',0,'attachment','image/jpeg',0),(2019,1,'2024-10-19 15:41:42','2024-10-19 15:41:42','Automated machining equipment using numerical control technology for cutting, drilling, turning, and milling with high precision.','CNC Machine (Computer Numerical Control)','','publish','open','closed','','cnc-machine-computer-numerical-control','','','2024-10-19 15:41:52','2024-10-19 15:41:52','',0,'http://fe2tech.com/?post_type=product&#038;p=2019',0,'product','',0),(2020,1,'2024-10-19 15:43:35','2024-10-19 15:43:35','<em>Machine using grinding wheels to process the surface of mechanical parts, achieving smoothness and precision.</em>','Grinding Machine','','publish','open','closed','','grinding-machine','','','2024-10-19 15:43:44','2024-10-19 15:43:44','',0,'http://fe2tech.com/?post_type=product&#038;p=2020',0,'product','',0),(2021,1,'2024-10-19 15:43:25','2024-10-19 15:43:25','','grind2','','inherit','open','closed','','grind2','','','2024-10-19 15:43:25','2024-10-19 15:43:25','',2020,'http://fe2tech.com/wp-content/uploads/2024/10/grind2.jpg',0,'attachment','image/jpeg',0),(2022,1,'2024-10-19 15:43:39','2024-10-19 15:43:39','<em>Machine using grinding wheels to process the surface of mechanical parts, achieving smoothness and precision.</em>','Grinding Machine','','inherit','closed','closed','','2020-autosave-v1','','','2024-10-19 15:43:39','2024-10-19 15:43:39','',2020,'http://fe2tech.com/?p=2022',0,'revision','',0),(2023,1,'2024-10-19 15:44:31','2024-10-19 15:44:31','Equipment that applies high-pressure force to press, stamp, or form materials like metal, plastic, or rubber.','Hydraulic Press Machine','','publish','open','closed','','hydraulic-press-machine','','','2024-10-19 15:44:32','2024-10-19 15:44:32','',0,'http://fe2tech.com/?post_type=product&#038;p=2023',0,'product','',0),(2024,1,'2024-10-19 15:44:20','2024-10-19 15:44:20','','automatic-hydraulic-press-machine-500x500','','inherit','open','closed','','automatic-hydraulic-press-machine-500x500','','','2024-10-19 15:44:20','2024-10-19 15:44:20','',2023,'http://fe2tech.com/wp-content/uploads/2024/10/automatic-hydraulic-press-machine-500x500-1.jpg',0,'attachment','image/jpeg',0),(2025,1,'2024-10-19 15:45:32','2024-10-19 15:45:32','Equipment used for automatic welding of metal parts, ensuring uniform weld quality.','Automatic Welding Machine','','publish','open','closed','','automatic-welding-machine','','','2024-10-19 15:45:32','2024-10-19 15:45:32','',0,'http://fe2tech.com/?post_type=product&#038;p=2025',0,'product','',0),(2026,1,'2024-10-19 15:45:19','2024-10-19 15:45:19','','welding-manipulators-and-peripherals_2019_750x500','','inherit','open','closed','','welding-manipulators-and-peripherals_2019_750x500','','','2024-10-19 15:45:19','2024-10-19 15:45:19','',2025,'http://fe2tech.com/wp-content/uploads/2024/10/welding-manipulators-and-peripherals_2019_750x500.jpg',0,'attachment','image/jpeg',0),(2027,1,'2024-10-19 15:46:22','2024-10-19 15:46:22','Used to inspect and measure the technical parameters of mechanical parts to ensure precision during production.','Inspection and Measuring Machine','','publish','open','closed','','inspection-and-measuring-machine','','','2024-10-19 15:46:22','2024-10-19 15:46:22','',0,'http://fe2tech.com/?post_type=product&#038;p=2027',0,'product','',0),(2028,1,'2024-10-19 15:46:12','2024-10-19 15:46:12','','csm_smartCheck_inspection_measuring_ZOLLER_e88c2dded7','','inherit','open','closed','','csm_smartcheck_inspection_measuring_zoller_e88c2dded7','','','2024-10-19 15:46:12','2024-10-19 15:46:12','',2027,'http://fe2tech.com/wp-content/uploads/2024/10/csm_smartCheck_inspection_measuring_ZOLLER_e88c2dded7.png',0,'attachment','image/png',0),(2048,1,'2024-10-19 15:51:25','2024-10-19 15:51:25','','images','','inherit','open','closed','','images','','','2024-10-19 15:51:25','2024-10-19 15:51:25','',0,'http://fe2tech.com/wp-content/uploads/2024/10/images.jpg',0,'attachment','image/jpeg',0),(2051,1,'2024-10-19 15:52:20','2024-10-19 15:52:20','','images-abc','','inherit','open','closed','','images-abc','','','2024-10-19 15:52:20','2024-10-19 15:52:20','',0,'http://fe2tech.com/wp-content/uploads/2024/10/images-abc.jpg',0,'attachment','image/jpeg',0),(2054,1,'2024-10-19 15:53:12','2024-10-19 15:53:12','','mesta-press-repair','','inherit','open','closed','','mesta-press-repair','','','2024-10-19 15:53:12','2024-10-19 15:53:12','',0,'http://fe2tech.com/wp-content/uploads/2024/10/mesta-press-repair.jpg',0,'attachment','image/jpeg',0),(2057,1,'2024-10-19 15:53:59','2024-10-19 15:53:59','','Robotic-Welding','','inherit','open','closed','','robotic-welding','','','2024-10-19 15:53:59','2024-10-19 15:53:59','',0,'http://fe2tech.com/wp-content/uploads/2024/10/Robotic-Welding.webp',0,'attachment','image/webp',0),(2060,1,'2024-10-19 15:55:41','2024-10-19 15:55:41','','Quality-Inspection-Lab-Photo','','inherit','open','closed','','quality-inspection-lab-photo','','','2024-10-19 15:55:41','2024-10-19 15:55:41','',0,'http://fe2tech.com/wp-content/uploads/2024/10/Quality-Inspection-Lab-Photo.jpg',0,'attachment','image/jpeg',0),(2065,1,'2024-10-19 16:01:05','2024-10-19 16:01:05','','9b3767fbcf1145d184ba29c6b29bde2c-free','','inherit','open','closed','','9b3767fbcf1145d184ba29c6b29bde2c-free','','','2024-10-19 16:01:05','2024-10-19 16:01:05','',0,'http://fe2tech.com/wp-content/uploads/2024/10/9b3767fbcf1145d184ba29c6b29bde2c-free.png',0,'attachment','image/png',0),(2067,1,'2024-10-21 02:44:11','2024-10-21 02:44:11','About us\n	    <h3>\n        We satisfy you with innovative ideas and quality work.    </h3>\n		<p>At vero eos et accusamus et iusto odio digni goikussimos ducimus qui to bonfoeblanditiis praese. Ntium voluum deleniti.</p><p>We exceed expectations through innovative ideas and exceptional craftsmanship.</p>		\n													<img width=\"59\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png\" alt=\"\" />													\n	    <h3>\n        Time manage    </h3>\n		<p>Efficiently organizing tasks to maximize productivity and meet deadlines.</p>		\n													<img width=\"55\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-02.png\" alt=\"\" />													\n	    <h3>\n        Fulfill target    </h3>\n		<p>Achieving goals with precision and commitment, ensuring success.</p>		\n    <img width=\"369\" height=\"382\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-01.jpg\" alt=\"\" />		\n            <img width=\"111\" height=\"85\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/signature1.png\" alt=\"\" />\n        <h3>Hanley Robin</h3>\n        (Chairman and founder)\n            Want to know more about us?\n            Just download brochure...\n            <a href=\"#\">\n                                                                    Download Brochure            </a>\n			Company history\n	    <h3>\n        Fe2tech is a professional builder company    </h3>\n		<p>Fe2tech is a leading company in building and manufacturing high-quality mechanical solutions.</p>		\n			Start		\n								<h3>2nd Feb, 2018</h3>\n								Exhibition Planning &amp; Exhibition Management\n								<h3>21st Jul, 2018</h3>\n								Growth internationallyfirst half of the 2018s\n								<h3>19th Aug, 2018</h3>\n								The purpose of the business plan\n								<h3>2nd Jan, 2019</h3>\n								Focus business history on what matters to planning\n								<h3>22nd Sep, 2019</h3>\n								History to Unite and Inspire People\n								<h3>12th Jan, 2018</h3>\n								Establishment of Constrio\n								<h3>8th Jul, 2018</h3>\n								Registered as a construction company\n								<h3>18th Aug, 2018</h3>\n								Construction bought the Greek company Delta\n								<h3>27th Sep, 2018</h3>\n								For lean business plans, operational plans, and strategic plans\n								<h3>8th Jul, 2019</h3>\n								Award winner','About','','inherit','closed','closed','','26-revision-v1','','','2024-10-21 02:44:11','2024-10-21 02:44:11','',26,'http://fe2tech.com/?p=2067',0,'revision','',0),(2068,1,'2024-10-21 02:44:11','2024-10-21 02:44:11','About us\n	    <h3>\n        We satisfy you with innovative ideas and quality work.    </h3>\n		<p>At vero eos et accusamus et iusto odio digni goikussimos ducimus qui to bonfoeblanditiis praese. Ntium voluum deleniti.</p><p>We exceed expectations through innovative ideas and exceptional craftsmanship.</p>		\n													<img width=\"59\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png\" alt=\"\" />													\n	    <h3>\n        Time manage    </h3>\n		<p>Efficiently organizing tasks to maximize productivity and meet deadlines.</p>		\n													<img width=\"55\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-02.png\" alt=\"\" />													\n	    <h3>\n        Fulfill target    </h3>\n		<p>Achieving goals with precision and commitment, ensuring success.</p>		\n    <img width=\"369\" height=\"382\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-01.jpg\" alt=\"\" />		\n            <img width=\"111\" height=\"85\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/signature1.png\" alt=\"\" />\n        <h3>Hanley Robin</h3>\n        (Chairman and founder)\n            Want to know more about us?\n            Just download brochure...\n            <a href=\"#\">\n                                                                    Download Brochure            </a>\n			Company history\n	    <h3>\n        Fe2tech is a professional builder company    </h3>\n		<p>Fe2tech is a leading company in building and manufacturing high-quality mechanical solutions.</p>		\n			Start		\n								<h3>2nd Feb, 2018</h3>\n								Exhibition Planning &amp; Exhibition Management\n								<h3>21st Jul, 2018</h3>\n								Growth internationallyfirst half of the 2018s\n								<h3>19th Aug, 2018</h3>\n								The purpose of the business plan\n								<h3>2nd Jan, 2019</h3>\n								Focus business history on what matters to planning\n								<h3>22nd Sep, 2019</h3>\n								History to Unite and Inspire People\n								<h3>12th Jan, 2018</h3>\n								Establishment of Constrio\n								<h3>8th Jul, 2018</h3>\n								Registered as a construction company\n								<h3>18th Aug, 2018</h3>\n								Construction bought the Greek company Delta\n								<h3>27th Sep, 2018</h3>\n								For lean business plans, operational plans, and strategic plans\n								<h3>8th Jul, 2019</h3>\n								Award winner','About','','inherit','closed','closed','','26-revision-v1','','','2024-10-21 02:44:11','2024-10-21 02:44:11','',26,'http://fe2tech.com/?p=2068',0,'revision','',0),(2069,1,'2024-10-21 02:44:12','2024-10-21 02:44:12','About us\n	    <h3>\n        We satisfy you with innovative ideas and quality work.    </h3>\n		<p>At vero eos et accusamus et iusto odio digni goikussimos ducimus qui to bonfoeblanditiis praese. Ntium voluum deleniti.</p><p>We exceed expectations through innovative ideas and exceptional craftsmanship.</p>		\n													<img width=\"59\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png\" alt=\"\" />													\n	    <h3>\n        Time manage    </h3>\n		<p>Efficiently organizing tasks to maximize productivity and meet deadlines.</p>		\n													<img width=\"55\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-02.png\" alt=\"\" />													\n	    <h3>\n        Fulfill target    </h3>\n		<p>Achieving goals with precision and commitment, ensuring success.</p>		\n    <img width=\"369\" height=\"382\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-01.jpg\" alt=\"\" />		\n            <img width=\"111\" height=\"85\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/signature1.png\" alt=\"\" />\n        <h3>Hanley Robin</h3>\n        (Chairman and founder)\n            Want to know more about us?\n            Just download brochure...\n            <a href=\"#\">\n                                                                    Download Brochure            </a>\n			Company history\n	    <h3>\n        Fe2tech is a professional builder company    </h3>\n		<p>Fe2tech is a leading company in building and manufacturing high-quality mechanical solutions.</p>		\n			Start		\n								<h3>hihi</h3>\n								hihi','About','','inherit','closed','closed','','26-revision-v1','','','2024-10-21 02:44:12','2024-10-21 02:44:12','',26,'http://fe2tech.com/?p=2069',0,'revision','',0),(2070,1,'2024-10-21 02:45:05','2024-10-21 02:45:05','About us\n	    <h3>\n        We satisfy you with innovative ideas and quality work.    </h3>\n		<p>At vero eos et accusamus et iusto odio digni goikussimos ducimus qui to bonfoeblanditiis praese. Ntium voluum deleniti.</p><p>We exceed expectations through innovative ideas and exceptional craftsmanship.</p>		\n													<img width=\"59\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png\" alt=\"\" />													\n	    <h3>\n        Time manage    </h3>\n		<p>Efficiently organizing tasks to maximize productivity and meet deadlines.</p>		\n													<img width=\"55\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-02.png\" alt=\"\" />													\n	    <h3>\n        Fulfill target    </h3>\n		<p>Achieving goals with precision and commitment, ensuring success.</p>		\n    <img width=\"369\" height=\"382\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-01.jpg\" alt=\"\" />		\n            <img width=\"111\" height=\"85\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/signature1.png\" alt=\"\" />\n        <h3>Hanley Robin</h3>\n        (Chairman and founder)\n            Want to know more about us?\n            Just download brochure...\n            <a href=\"#\">\n                                                                    Download Brochure            </a>\n			Company history\n	    <h3>\n        Fe2tech is a professional builder company    </h3>\n		<p>Fe2tech is a leading company in building and manufacturing high-quality mechanical solutions.</p>		\n			Start		\n								<h3>hihi</h3>\n								hihi','About','','inherit','closed','closed','','26-revision-v1','','','2024-10-21 02:45:05','2024-10-21 02:45:05','',26,'http://fe2tech.com/?p=2070',0,'revision','',0),(2071,1,'2024-10-21 02:45:05','2024-10-21 02:45:05','About us\n	    <h3>\n        We satisfy you with innovative ideas and quality work.    </h3>\n		<p>At vero eos et accusamus et iusto odio digni goikussimos ducimus qui to bonfoeblanditiis praese. Ntium voluum deleniti.</p><p>We exceed expectations through innovative ideas and exceptional craftsmanship.</p>		\n													<img width=\"59\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png\" alt=\"\" />													\n	    <h3>\n        Time manage    </h3>\n		<p>Efficiently organizing tasks to maximize productivity and meet deadlines.</p>		\n													<img width=\"55\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-02.png\" alt=\"\" />													\n	    <h3>\n        Fulfill target    </h3>\n		<p>Achieving goals with precision and commitment, ensuring success.</p>		\n    <img width=\"369\" height=\"382\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-01.jpg\" alt=\"\" />		\n            <img width=\"111\" height=\"85\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/signature1.png\" alt=\"\" />\n        <h3>Hanley Robin</h3>\n        (Chairman and founder)\n            Want to know more about us?\n            Just download brochure...\n            <a href=\"#\">\n                                                                    Download Brochure            </a>\n			Company history\n	    <h3>\n        Fe2tech is a professional builder company    </h3>\n		<p>Fe2tech is a leading company in building and manufacturing high-quality mechanical solutions.</p>		\n			Start		\n								<h3>hihi</h3>\n								hihi','About','','inherit','closed','closed','','26-revision-v1','','','2024-10-21 02:45:05','2024-10-21 02:45:05','',26,'http://fe2tech.com/?p=2071',0,'revision','',0),(2072,1,'2024-10-21 02:45:06','2024-10-21 02:45:06','About us\n	    <h3>\n        We satisfy you with innovative ideas and quality work.    </h3>\n		<p>At vero eos et accusamus et iusto odio digni goikussimos ducimus qui to bonfoeblanditiis praese. Ntium voluum deleniti.</p><p>We exceed expectations through innovative ideas and exceptional craftsmanship.</p>		\n													<img width=\"59\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png\" alt=\"\" />													\n	    <h3>\n        Time manage    </h3>\n		<p>Efficiently organizing tasks to maximize productivity and meet deadlines.</p>		\n													<img width=\"55\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-02.png\" alt=\"\" />													\n	    <h3>\n        Fulfill target    </h3>\n		<p>Achieving goals with precision and commitment, ensuring success.</p>		\n    <img width=\"369\" height=\"382\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-01.jpg\" alt=\"\" />		\n            <img width=\"111\" height=\"85\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/signature1.png\" alt=\"\" />\n        <h3>Hanley Robin</h3>\n        (Chairman and founder)\n            Want to know more about us?\n            Just download brochure...\n            <a href=\"#\">\n                                                                    Download Brochure            </a>\n			Company history\n	    <h3>\n        Fe2tech is a professional builder company    </h3>\n		<p>Fe2tech is a leading company in building and manufacturing high-quality mechanical solutions.</p>		\n			Start		\n								<h3>2nd Feb, 2018</h3>\n								Exhibition Planning &amp; Exhibition Management\n								<h3>12th Jan, 2018</h3>\n								Establishment of Constrio\n								<h3>Exhibition Planning &amp; Exhibition Management</h3>\n								Registered as a construction companyRegistered as a construction company','About','','inherit','closed','closed','','26-revision-v1','','','2024-10-21 02:45:06','2024-10-21 02:45:06','',26,'http://fe2tech.com/?p=2072',0,'revision','',0),(2073,1,'2024-10-21 02:51:51','2024-10-21 02:51:51','About us\n	    <h3>\n        We satisfy you with innovative ideas and quality work.    </h3>\n		<p>At vero eos et accusamus et iusto odio digni goikussimos ducimus qui to bonfoeblanditiis praese. Ntium voluum deleniti.</p><p>We exceed expectations through innovative ideas and exceptional craftsmanship.</p>		\n													<img width=\"59\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png\" alt=\"\" />													\n	    <h3>\n        Time manage    </h3>\n		<p>Efficiently organizing tasks to maximize productivity and meet deadlines.</p>		\n													<img width=\"55\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-02.png\" alt=\"\" />													\n	    <h3>\n        Fulfill target    </h3>\n		<p>Achieving goals with precision and commitment, ensuring success.</p>		\n    <img width=\"369\" height=\"382\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-01.jpg\" alt=\"\" />		\n            <img width=\"111\" height=\"85\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/signature1.png\" alt=\"\" />\n        <h3>Hanley Robin</h3>\n        (Chairman and founder)\n            Want to know more about us?\n            Just download brochure...\n            <a href=\"#\">\n                                                                    Download Brochure            </a>\n			Company history\n	    <h3>\n        Fe2tech is a professional builder company    </h3>\n		<p>Fe2tech is a leading company in building and manufacturing high-quality mechanical solutions.</p>		\n			Start		\n								<h3>2nd Feb, 2018</h3>\n								Exhibition Planning &amp; Exhibition Management\n								<h3>12th Jan, 2018</h3>\n								Establishment of Constrio\n								<h3>Exhibition Planning &amp; Exhibition Management</h3>\n								Registered as a construction companyRegistered as a construction company','About','','inherit','closed','closed','','26-revision-v1','','','2024-10-21 02:51:51','2024-10-21 02:51:51','',26,'http://fe2tech.com/?p=2073',0,'revision','',0),(2074,1,'2024-10-21 02:51:51','2024-10-21 02:51:51','About us\n	    <h3>\n        We satisfy you with innovative ideas and quality work.    </h3>\n		<p>At vero eos et accusamus et iusto odio digni goikussimos ducimus qui to bonfoeblanditiis praese. Ntium voluum deleniti.</p><p>We exceed expectations through innovative ideas and exceptional craftsmanship.</p>		\n													<img width=\"59\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png\" alt=\"\" />													\n	    <h3>\n        Time manage    </h3>\n		<p>Efficiently organizing tasks to maximize productivity and meet deadlines.</p>		\n													<img width=\"55\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-02.png\" alt=\"\" />													\n	    <h3>\n        Fulfill target    </h3>\n		<p>Achieving goals with precision and commitment, ensuring success.</p>		\n    <img width=\"369\" height=\"382\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-01.jpg\" alt=\"\" />		\n            <img width=\"111\" height=\"85\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/signature1.png\" alt=\"\" />\n        <h3>Hanley Robin</h3>\n        (Chairman and founder)\n            Want to know more about us?\n            Just download brochure...\n            <a href=\"#\">\n                                                                    Download Brochure            </a>\n			Company history\n	    <h3>\n        Fe2tech is a professional builder company    </h3>\n		<p>Fe2tech is a leading company in building and manufacturing high-quality mechanical solutions.</p>		\n			Start		\n								<h3>2nd Feb, 2018</h3>\n								Exhibition Planning &amp; Exhibition Management\n								<h3>12th Jan, 2018</h3>\n								Establishment of Constrio\n								<h3>Exhibition Planning &amp; Exhibition Management</h3>\n								Registered as a construction companyRegistered as a construction company','About','','inherit','closed','closed','','26-revision-v1','','','2024-10-21 02:51:51','2024-10-21 02:51:51','',26,'http://fe2tech.com/?p=2074',0,'revision','',0),(2075,1,'2024-10-21 02:51:52','2024-10-21 02:51:52','About us\n	    <h3>\n        We satisfy you with innovative ideas and quality work.    </h3>\n		<p>At vero eos et accusamus et iusto odio digni goikussimos ducimus qui to bonfoeblanditiis praese. Ntium voluum deleniti.</p><p>We exceed expectations through innovative ideas and exceptional craftsmanship.</p>		\n													<img width=\"59\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png\" alt=\"\" />													\n	    <h3>\n        Time manage    </h3>\n		<p>Efficiently organizing tasks to maximize productivity and meet deadlines.</p>		\n													<img width=\"55\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-02.png\" alt=\"\" />													\n	    <h3>\n        Fulfill target    </h3>\n		<p>Achieving goals with precision and commitment, ensuring success.</p>		\n    <img width=\"369\" height=\"382\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-01.jpg\" alt=\"\" />		\n            <img width=\"111\" height=\"85\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/signature1.png\" alt=\"\" />\n        <h3>Hanley Robin</h3>\n        (Chairman and founder)\n            Want to know more about us?\n            Just download brochure...\n            <a href=\"#\">\n                                                                    Download Brochure            </a>\n			Company history\n	    <h3>\n        Fe2tech is a professional builder company    </h3>\n		<p>Fe2tech is a leading company in building and manufacturing high-quality mechanical solutions.</p>','About','','inherit','closed','closed','','26-revision-v1','','','2024-10-21 02:51:52','2024-10-21 02:51:52','',26,'http://fe2tech.com/?p=2075',0,'revision','',0),(2076,1,'2024-10-21 02:52:58','2024-10-21 02:52:58','About us\n	    <h3>\n        We satisfy you with innovative ideas and quality work.    </h3>\n		<p>At vero eos et accusamus et iusto odio digni goikussimos ducimus qui to bonfoeblanditiis praese. Ntium voluum deleniti.</p><p>We exceed expectations through innovative ideas and exceptional craftsmanship.</p>		\n													<img width=\"59\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png\" alt=\"\" />													\n	    <h3>\n        Time manage    </h3>\n		<p>Efficiently organizing tasks to maximize productivity and meet deadlines.</p>		\n													<img width=\"55\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-02.png\" alt=\"\" />													\n	    <h3>\n        Fulfill target    </h3>\n		<p>Achieving goals with precision and commitment, ensuring success.</p>		\n    <img width=\"369\" height=\"382\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-01.jpg\" alt=\"\" />		\n            <img width=\"111\" height=\"85\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/signature1.png\" alt=\"\" />\n        <h3>Hanley Robin</h3>\n        (Chairman and founder)\n            Want to know more about us?\n            Just download brochure...\n            <a href=\"#\">\n                                                                    Download Brochure            </a>\n			Company history\n	    <h3>\n        Fe2tech is a professional builder company    </h3>\n		<p>Fe2tech is a leading company in building and manufacturing high-quality mechanical solutions.</p>','About','','inherit','closed','closed','','26-revision-v1','','','2024-10-21 02:52:58','2024-10-21 02:52:58','',26,'http://fe2tech.com/?p=2076',0,'revision','',0),(2077,1,'2024-10-21 02:52:58','2024-10-21 02:52:58','About us\n	    <h3>\n        We satisfy you with innovative ideas and quality work.    </h3>\n		<p>At vero eos et accusamus et iusto odio digni goikussimos ducimus qui to bonfoeblanditiis praese. Ntium voluum deleniti.</p><p>We exceed expectations through innovative ideas and exceptional craftsmanship.</p>		\n													<img width=\"59\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png\" alt=\"\" />													\n	    <h3>\n        Time manage    </h3>\n		<p>Efficiently organizing tasks to maximize productivity and meet deadlines.</p>		\n													<img width=\"55\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-02.png\" alt=\"\" />													\n	    <h3>\n        Fulfill target    </h3>\n		<p>Achieving goals with precision and commitment, ensuring success.</p>		\n    <img width=\"369\" height=\"382\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-01.jpg\" alt=\"\" />		\n            <img width=\"111\" height=\"85\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/signature1.png\" alt=\"\" />\n        <h3>Hanley Robin</h3>\n        (Chairman and founder)\n            Want to know more about us?\n            Just download brochure...\n            <a href=\"#\">\n                                                                    Download Brochure            </a>\n			Company history\n	    <h3>\n        Fe2tech is a professional builder company    </h3>\n		<p>Fe2tech is a leading company in building and manufacturing high-quality mechanical solutions.</p>','About','','inherit','closed','closed','','26-revision-v1','','','2024-10-21 02:52:58','2024-10-21 02:52:58','',26,'http://fe2tech.com/?p=2077',0,'revision','',0),(2078,1,'2024-10-21 02:52:58','2024-10-21 02:52:58','About us\n	    <h3>\n        We satisfy you with innovative ideas and quality work.    </h3>\n		<p>At vero eos et accusamus et iusto odio digni goikussimos ducimus qui to bonfoeblanditiis praese. Ntium voluum deleniti.</p><p>We exceed expectations through innovative ideas and exceptional craftsmanship.</p>		\n													<img width=\"59\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png\" alt=\"\" />													\n	    <h3>\n        Time manage    </h3>\n		<p>Efficiently organizing tasks to maximize productivity and meet deadlines.</p>		\n													<img width=\"55\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-02.png\" alt=\"\" />													\n	    <h3>\n        Fulfill target    </h3>\n		<p>Achieving goals with precision and commitment, ensuring success.</p>		\n    <img width=\"369\" height=\"382\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-01.jpg\" alt=\"\" />		\n            <img width=\"111\" height=\"85\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/signature1.png\" alt=\"\" />\n        <h3>Hanley Robin</h3>\n        (Chairman and founder)\n            Want to know more about us?\n            Just download brochure...\n            <a href=\"#\">\n                                                                    Download Brochure            </a>\n			Company history\n	    <h3>\n        Fe2tech is a professional builder company    </h3>\n		<p>Fe2tech is a leading company in building and manufacturing high-quality mechanical solutions.</p>		\n			Start		\n								<h3>hihi</h3>\n								hihi','About','','inherit','closed','closed','','26-revision-v1','','','2024-10-21 02:52:58','2024-10-21 02:52:58','',26,'http://fe2tech.com/?p=2078',0,'revision','',0),(2079,1,'2024-10-21 02:54:37','2024-10-21 02:54:37','<!-- wp:page-list /-->','Navigation','','publish','closed','closed','','navigation','','','2024-10-21 02:54:37','2024-10-21 02:54:37','',0,'http://fe2tech.com/2024/10/21/navigation/',0,'wp_navigation','',0),(2080,1,'2024-10-21 02:58:36','2024-10-21 02:58:36','About us\n	    <h3>\n        We satisfy you with innovative ideas and quality work.    </h3>\n		<p>At vero eos et accusamus et iusto odio digni goikussimos ducimus qui to bonfoeblanditiis praese. Ntium voluum deleniti.</p><p>We exceed expectations through innovative ideas and exceptional craftsmanship.</p>		\n													<img width=\"59\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png\" alt=\"\" />													\n	    <h3>\n        Time manage    </h3>\n		<p>Efficiently organizing tasks to maximize productivity and meet deadlines.</p>		\n													<img width=\"55\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-02.png\" alt=\"\" />													\n	    <h3>\n        Fulfill target    </h3>\n		<p>Achieving goals with precision and commitment, ensuring success.</p>		\n    <img width=\"369\" height=\"382\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-01.jpg\" alt=\"\" />		\n            <img width=\"111\" height=\"85\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/signature1.png\" alt=\"\" />\n        <h3>Hanley Robin</h3>\n        (Chairman and founder)\n            Want to know more about us?\n            Just download brochure...\n            <a href=\"#\">\n                                                                    Download Brochure            </a>\n			Company history\n	    <h3>\n        Fe2tech is a professional builder company    </h3>\n		<p>Fe2tech is a leading company in building and manufacturing high-quality mechanical solutions.</p>		\n			Start		\n								<h3>hihi</h3>\n								hihi','About','','inherit','closed','closed','','26-revision-v1','','','2024-10-21 02:58:36','2024-10-21 02:58:36','',26,'http://fe2tech.com/?p=2080',0,'revision','',0),(2081,1,'2024-10-21 02:58:36','2024-10-21 02:58:36','About us\n	    <h3>\n        We satisfy you with innovative ideas and quality work.    </h3>\n		<p>At vero eos et accusamus et iusto odio digni goikussimos ducimus qui to bonfoeblanditiis praese. Ntium voluum deleniti.</p><p>We exceed expectations through innovative ideas and exceptional craftsmanship.</p>		\n													<img width=\"59\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png\" alt=\"\" />													\n	    <h3>\n        Time manage    </h3>\n		<p>Efficiently organizing tasks to maximize productivity and meet deadlines.</p>		\n													<img width=\"55\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-02.png\" alt=\"\" />													\n	    <h3>\n        Fulfill target    </h3>\n		<p>Achieving goals with precision and commitment, ensuring success.</p>		\n    <img width=\"369\" height=\"382\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-01.jpg\" alt=\"\" />		\n            <img width=\"111\" height=\"85\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/signature1.png\" alt=\"\" />\n        <h3>Hanley Robin</h3>\n        (Chairman and founder)\n            Want to know more about us?\n            Just download brochure...\n            <a href=\"#\">\n                                                                    Download Brochure            </a>\n			Company history\n	    <h3>\n        Fe2tech is a professional builder company    </h3>\n		<p>Fe2tech is a leading company in building and manufacturing high-quality mechanical solutions.</p>		\n			Start		\n								<h3>hihi</h3>\n								hihi','About','','inherit','closed','closed','','26-revision-v1','','','2024-10-21 02:58:36','2024-10-21 02:58:36','',26,'http://fe2tech.com/?p=2081',0,'revision','',0),(2082,1,'2024-10-21 02:58:37','2024-10-21 02:58:37','About us\n	    <h3>\n        We satisfy you with innovative ideas and quality work.    </h3>\n		<p>At vero eos et accusamus et iusto odio digni goikussimos ducimus qui to bonfoeblanditiis praese. Ntium voluum deleniti.</p><p>We exceed expectations through innovative ideas and exceptional craftsmanship.</p>		\n													<img width=\"59\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png\" alt=\"\" />													\n	    <h3>\n        Time manage    </h3>\n		<p>Efficiently organizing tasks to maximize productivity and meet deadlines.</p>		\n													<img width=\"55\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-02.png\" alt=\"\" />													\n	    <h3>\n        Fulfill target    </h3>\n		<p>Achieving goals with precision and commitment, ensuring success.</p>		\n    <img width=\"369\" height=\"382\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-01.jpg\" alt=\"\" />		\n            <img width=\"111\" height=\"85\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/signature1.png\" alt=\"\" />\n        <h3>Hanley Robin</h3>\n        (Chairman and founder)\n            Want to know more about us?\n            Just download brochure...\n            <a href=\"#\">\n                                                                    Download Brochure            </a>\n			Company history\n	    <h3>\n        Fe2tech is a professional builder company    </h3>\n		<p>Fe2tech is a leading company in building and manufacturing high-quality mechanical solutions.</p>		\n			Start		\n								<h3>hihi</h3>\n								hihi\n			<img src=\"\" width=\"\" height=\"\" alt=\"9b3767fbcf1145d184ba29c6b29bde2c-free\" title=\"9b3767fbcf1145d184ba29c6b29bde2c-free\" />','About','','inherit','closed','closed','','26-revision-v1','','','2024-10-21 02:58:37','2024-10-21 02:58:37','',26,'http://fe2tech.com/?p=2082',0,'revision','',0),(2083,1,'2024-10-21 02:59:46','2024-10-21 02:59:46','About us\n	    <h3>\n        We satisfy you with innovative ideas and quality work.    </h3>\n		<p>At vero eos et accusamus et iusto odio digni goikussimos ducimus qui to bonfoeblanditiis praese. Ntium voluum deleniti.</p><p>We exceed expectations through innovative ideas and exceptional craftsmanship.</p>		\n													<img width=\"59\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png\" alt=\"\" />													\n	    <h3>\n        Time manage    </h3>\n		<p>Efficiently organizing tasks to maximize productivity and meet deadlines.</p>		\n													<img width=\"55\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-02.png\" alt=\"\" />													\n	    <h3>\n        Fulfill target    </h3>\n		<p>Achieving goals with precision and commitment, ensuring success.</p>		\n    <img width=\"369\" height=\"382\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-01.jpg\" alt=\"\" />		\n            <img width=\"111\" height=\"85\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/signature1.png\" alt=\"\" />\n        <h3>Hanley Robin</h3>\n        (Chairman and founder)\n            Want to know more about us?\n            Just download brochure...\n            <a href=\"#\">\n                                                                    Download Brochure            </a>\n			Company history\n	    <h3>\n        Fe2tech is a professional builder company    </h3>\n		<p>Fe2tech is a leading company in building and manufacturing high-quality mechanical solutions.</p>		\n			Start		\n								<h3>hihi</h3>\n								hihi\n			<img src=\"\" width=\"\" height=\"\" alt=\"9b3767fbcf1145d184ba29c6b29bde2c-free\" title=\"9b3767fbcf1145d184ba29c6b29bde2c-free\" />','About','','inherit','closed','closed','','26-revision-v1','','','2024-10-21 02:59:46','2024-10-21 02:59:46','',26,'http://fe2tech.com/?p=2083',0,'revision','',0),(2084,1,'2024-10-21 02:59:46','2024-10-21 02:59:46','About us\n	    <h3>\n        We satisfy you with innovative ideas and quality work.    </h3>\n		<p>At vero eos et accusamus et iusto odio digni goikussimos ducimus qui to bonfoeblanditiis praese. Ntium voluum deleniti.</p><p>We exceed expectations through innovative ideas and exceptional craftsmanship.</p>		\n													<img width=\"59\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png\" alt=\"\" />													\n	    <h3>\n        Time manage    </h3>\n		<p>Efficiently organizing tasks to maximize productivity and meet deadlines.</p>		\n													<img width=\"55\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-02.png\" alt=\"\" />													\n	    <h3>\n        Fulfill target    </h3>\n		<p>Achieving goals with precision and commitment, ensuring success.</p>		\n    <img width=\"369\" height=\"382\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-01.jpg\" alt=\"\" />		\n            <img width=\"111\" height=\"85\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/signature1.png\" alt=\"\" />\n        <h3>Hanley Robin</h3>\n        (Chairman and founder)\n            Want to know more about us?\n            Just download brochure...\n            <a href=\"#\">\n                                                                    Download Brochure            </a>\n			Company history\n	    <h3>\n        Fe2tech is a professional builder company    </h3>\n		<p>Fe2tech is a leading company in building and manufacturing high-quality mechanical solutions.</p>		\n			Start		\n								<h3>hihi</h3>\n								hihi\n			<img src=\"\" width=\"\" height=\"\" alt=\"9b3767fbcf1145d184ba29c6b29bde2c-free\" title=\"9b3767fbcf1145d184ba29c6b29bde2c-free\" />','About','','inherit','closed','closed','','26-revision-v1','','','2024-10-21 02:59:46','2024-10-21 02:59:46','',26,'http://fe2tech.com/?p=2084',0,'revision','',0),(2085,1,'2024-10-21 02:59:46','2024-10-21 02:59:46','About us\n	    <h3>\n        We satisfy you with innovative ideas and quality work.    </h3>\n		<p>At vero eos et accusamus et iusto odio digni goikussimos ducimus qui to bonfoeblanditiis praese. Ntium voluum deleniti.</p><p>We exceed expectations through innovative ideas and exceptional craftsmanship.</p>		\n													<img width=\"59\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png\" alt=\"\" />													\n	    <h3>\n        Time manage    </h3>\n		<p>Efficiently organizing tasks to maximize productivity and meet deadlines.</p>		\n													<img width=\"55\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-02.png\" alt=\"\" />													\n	    <h3>\n        Fulfill target    </h3>\n		<p>Achieving goals with precision and commitment, ensuring success.</p>		\n    <img width=\"369\" height=\"382\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-01.jpg\" alt=\"\" />		\n            <img width=\"111\" height=\"85\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/signature1.png\" alt=\"\" />\n        <h3>Hanley Robin</h3>\n        (Chairman and founder)\n            Want to know more about us?\n            Just download brochure...\n            <a href=\"#\">\n                                                                    Download Brochure            </a>\n			Company history\n	    <h3>\n        Fe2tech is a professional builder company    </h3>\n		<p>Fe2tech is a leading company in building and manufacturing high-quality mechanical solutions.</p>		\n			Start		\n								<h3>hihi</h3>\n								hihi','About','','inherit','closed','closed','','26-revision-v1','','','2024-10-21 02:59:46','2024-10-21 02:59:46','',26,'http://fe2tech.com/?p=2085',0,'revision','',0),(2086,1,'2024-10-21 03:06:01','2024-10-21 03:06:01','Our Team\n	    <h3>\n        We will exceed your expectations with our innovative solutions.    </h3>\n		<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-01.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Ronald Dumple                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Ronald Dumple                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-02.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	James Smith                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        James Smith                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-03.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Charles F Johnson                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Charles F Johnson                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-04.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Jodi C Johnson                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Jodi C Johnson                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-05.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Debra L Smith                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Debra L Smith                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-06.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Mrditch  Hohan                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Mrditch  Hohan                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>','Our Team','','inherit','closed','closed','','28-revision-v1','','','2024-10-21 03:06:01','2024-10-21 03:06:01','',28,'http://fe2tech.com/?p=2086',0,'revision','',0),(2087,1,'2024-10-21 03:06:01','2024-10-21 03:06:01','Our Team\n	    <h3>\n        We will exceed your expectations with our innovative solutions.    </h3>\n		<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-01.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Ronald Dumple                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Ronald Dumple                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-02.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	James Smith                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        James Smith                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-03.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Charles F Johnson                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Charles F Johnson                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-04.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Jodi C Johnson                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Jodi C Johnson                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-05.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Debra L Smith                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Debra L Smith                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-06.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Mrditch  Hohan                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Mrditch  Hohan                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>','Our Team','','inherit','closed','closed','','28-revision-v1','','','2024-10-21 03:06:01','2024-10-21 03:06:01','',28,'http://fe2tech.com/?p=2087',0,'revision','',0),(2088,1,'2024-10-21 03:06:01','2024-10-21 03:06:01','Our Team\n	    <h3>\n        We will exceed your expectations with our innovative solutions.    </h3>\n		<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-01.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Ronald Dumple                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Ronald Dumple                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-02.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	James Smith                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        James Smith                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-03.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Charles F Johnson                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Charles F Johnson                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-04.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Jodi C Johnson                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Jodi C Johnson                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-05.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Debra L Smith                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Debra L Smith                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-06.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Mrditch  Hohan                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Mrditch  Hohan                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n			Our Partners\n	    <h3>\n        We will exceed your expectations with our innovative solutions as your trusted partner.    </h3>\n		<p>As your trusted partner, we deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a href=\"#\"><img width=\"169\" height=\"35\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"143\" height=\"42\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"166\" height=\"38\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"170\" height=\"35\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>','Our Team','','inherit','closed','closed','','28-revision-v1','','','2024-10-21 03:06:01','2024-10-21 03:06:01','',28,'http://fe2tech.com/?p=2088',0,'revision','',0),(2089,1,'2024-10-21 03:06:29','2024-10-21 03:06:29','Our Team\n	    <h3>\n        We will exceed your expectations with our innovative solutions.    </h3>\n		<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-01.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Ronald Dumple                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Ronald Dumple                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-02.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	James Smith                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        James Smith                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-03.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Charles F Johnson                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Charles F Johnson                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-04.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Jodi C Johnson                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Jodi C Johnson                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-05.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Debra L Smith                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Debra L Smith                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-06.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Mrditch  Hohan                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Mrditch  Hohan                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n			Our Partners\n	    <h3>\n        We will exceed your expectations with our innovative solutions as your trusted partner.    </h3>\n		<p>As your trusted partner, we deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a href=\"#\"><img width=\"169\" height=\"35\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"143\" height=\"42\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"166\" height=\"38\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"170\" height=\"35\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>','Team &amp; Partners','','inherit','closed','closed','','28-revision-v1','','','2024-10-21 03:06:29','2024-10-21 03:06:29','',28,'http://fe2tech.com/?p=2089',0,'revision','',0),(2093,1,'2024-10-21 03:27:16','2024-10-21 03:27:16','<a href=\"https://fe2tech.com/\">\n							<img width=\"165\" height=\"70\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/logo-footer-02.png\" alt=\"\" />								</a>\n			    <ul>\n                    <li>\n            	   Office: 43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM                \n           </li>\n                    <li>\n            	   Factory: 176/9 Nguyễn Thị Tươi, KP Tân Phước, P. Tân Bình, Dĩ An city, Bình Dương                \n           </li>\n                    <li>\n            	   0968860386                \n           </li>\n            </ul>\n		Open Hours:Mon - Sat: 8 am - 5 pm,<br/>\nSunday: CLOSED		\n    <h3>\n        Menu\n        <i></i>\n    </h3>\n        <ul id=\"menu-main-menu\"><li id=\"menu-item-1955\"><a href=\"https://fe2tech.com/\">Home</a></li>\n<li id=\"menu-item-1965\"><a href=\"https://fe2tech.com/shop/\">Gallery</a></li>\n<li id=\"menu-item-1966\"><a href=\"https://fe2tech.com/services-v-2/\">Services</a></li>\n<li id=\"menu-item-1967\"><a href=\"https://fe2tech.com/team/\">Team &amp; Partners</a></li>\n<li id=\"menu-item-1960\"><a href=\"https://fe2tech.com/about/\">About Us</a></li>\n</ul>    \n    <h3>\n        Newsletter\n        <i></i>\n    </h3>\n		Sign up for alerts, our latest blogs, thoughts, and insights.		\n        <form method=\"post\" action=\"https://fe2tech.com/wp-admin/admin-ajax.php?action=tnp&amp;na=s\" style=\"\">\n<input type=\"hidden\" name=\"nlang\" value=\"\">\n<label for=\"tnp-1\">Your mail address</label>\n<input type=\"email\" name=\"ne\" id=\"tnp-1\" value=\"\" placeholder=\"\" required>\n<input type=\"submit\" value=\"Subscribe\" style=\"\">\n</form>    \n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n		© All rights reserved by <a href=\"https://themeforest.net/user/case-themes/portfolio\" target=\"_blank\" rel=\"nofollow noopener\">CaseThemes</a>		\n        <ul id=\"menu-menu-footer-bottom\"><li id=\"menu-item-1878\"><a href=\"#\">Terms</a></li>\n<li id=\"menu-item-1879\"><a href=\"#\">Privacy &#038; Policy</a></li>\n<li id=\"menu-item-1880\"><a href=\"#\">Join Us</a></li>\n<li id=\"menu-item-1881\"><a href=\"#\">Need Help?</a></li>\n</ul>','Footer 2','','inherit','closed','closed','','799-revision-v1','','','2024-10-21 03:27:16','2024-10-21 03:27:16','',799,'http://fe2tech.com/?p=2093',0,'revision','',0),(2094,1,'2024-10-21 03:27:43','2024-10-21 03:27:43','<a href=\"https://fe2tech.com/\">\n							<img width=\"200\" height=\"200\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9b3767fbcf1145d184ba29c6b29bde2c-free.png\" alt=\"\" />								</a>\n			    <ul>\n                    <li>\n            	   Office: 43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM                \n           </li>\n                    <li>\n            	   Factory: 176/9 Nguyễn Thị Tươi, KP Tân Phước, P. Tân Bình, Dĩ An city, Bình Dương                \n           </li>\n                    <li>\n            	   0968860386                \n           </li>\n            </ul>\n		Open Hours:Mon - Sat: 8 am - 5 pm,<br/>\nSunday: CLOSED		\n    <h3>\n        Menu\n        <i></i>\n    </h3>\n        <ul id=\"menu-main-menu\"><li id=\"menu-item-1955\"><a href=\"https://fe2tech.com/\">Home</a></li>\n<li id=\"menu-item-1965\"><a href=\"https://fe2tech.com/shop/\">Gallery</a></li>\n<li id=\"menu-item-1966\"><a href=\"https://fe2tech.com/services-v-2/\">Services</a></li>\n<li id=\"menu-item-1967\"><a href=\"https://fe2tech.com/team/\">Team &amp; Partners</a></li>\n<li id=\"menu-item-1960\"><a href=\"https://fe2tech.com/about/\">About Us</a></li>\n</ul>    \n    <h3>\n        Newsletter\n        <i></i>\n    </h3>\n		Sign up for alerts, our latest blogs, thoughts, and insights.		\n        <form method=\"post\" action=\"https://fe2tech.com/wp-admin/admin-ajax.php?action=tnp&amp;na=s\" style=\"\">\n<input type=\"hidden\" name=\"nlang\" value=\"\">\n<label for=\"tnp-1\">Your mail address</label>\n<input type=\"email\" name=\"ne\" id=\"tnp-1\" value=\"\" placeholder=\"\" required>\n<input type=\"submit\" value=\"Subscribe\" style=\"\">\n</form>    \n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n		© All rights reserved by <a href=\"https://themeforest.net/user/case-themes/portfolio\" target=\"_blank\" rel=\"nofollow noopener\">CaseThemes</a>		\n        <ul id=\"menu-menu-footer-bottom\"><li id=\"menu-item-1878\"><a href=\"#\">Terms</a></li>\n<li id=\"menu-item-1879\"><a href=\"#\">Privacy &#038; Policy</a></li>\n<li id=\"menu-item-1880\"><a href=\"#\">Join Us</a></li>\n<li id=\"menu-item-1881\"><a href=\"#\">Need Help?</a></li>\n</ul>','Footer 2','','inherit','closed','closed','','799-revision-v1','','','2024-10-21 03:27:43','2024-10-21 03:27:43','',799,'http://fe2tech.com/?p=2094',0,'revision','',0),(2095,1,'2024-10-21 03:29:02','2024-10-21 03:29:02','<a href=\"https://fe2tech.com/\">\n							<img width=\"200\" height=\"200\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9b3767fbcf1145d184ba29c6b29bde2c-free.png\" alt=\"\" />								</a>\n			    <ul>\n                    <li>\n            	   Office: 43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM                \n           </li>\n                    <li>\n            	   Factory: 176/9 Nguyễn Thị Tươi, KP Tân Phước, P. Tân Bình, Dĩ An city, Bình Dương                \n           </li>\n                    <li>\n            	   0968860386                \n           </li>\n            </ul>\n		Open Hours:Mon - Sat: 8 am - 5 pm,<br/>\nSunday: CLOSED		\n    <h3>\n        Menu\n        <i></i>\n    </h3>\n        <ul id=\"menu-main-menu\"><li id=\"menu-item-1955\"><a href=\"https://fe2tech.com/\">Home</a></li>\n<li id=\"menu-item-1965\"><a href=\"https://fe2tech.com/shop/\">Gallery</a></li>\n<li id=\"menu-item-1966\"><a href=\"https://fe2tech.com/services-v-2/\">Services</a></li>\n<li id=\"menu-item-1967\"><a href=\"https://fe2tech.com/team/\">Team &amp; Partners</a></li>\n<li id=\"menu-item-1960\"><a href=\"https://fe2tech.com/about/\">About Us</a></li>\n</ul>    \n    <h3>\n        Newsletter\n        <i></i>\n    </h3>\n		Sign up for alerts, our latest blogs, thoughts, and insights.		\n        <form method=\"post\" action=\"https://fe2tech.com/wp-admin/admin-ajax.php?action=tnp&amp;na=s\" style=\"\">\n<input type=\"hidden\" name=\"nlang\" value=\"\">\n<label for=\"tnp-1\">Your mail address</label>\n<input type=\"email\" name=\"ne\" id=\"tnp-1\" value=\"\" placeholder=\"\" required>\n<input type=\"submit\" value=\"Subscribe\" style=\"\">\n</form>    \n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n		© All rights reserved by <a href=\"https://themeforest.net/user/case-themes/portfolio\" target=\"_blank\" rel=\"nofollow noopener\">CaseThemes</a>		\n        <ul id=\"menu-menu-footer-bottom\"><li id=\"menu-item-1878\"><a href=\"#\">Terms</a></li>\n<li id=\"menu-item-1879\"><a href=\"#\">Privacy &#038; Policy</a></li>\n<li id=\"menu-item-1880\"><a href=\"#\">Join Us</a></li>\n<li id=\"menu-item-1881\"><a href=\"#\">Need Help?</a></li>\n</ul>','Footer 2','','inherit','closed','closed','','799-revision-v1','','','2024-10-21 03:29:02','2024-10-21 03:29:02','',799,'http://fe2tech.com/?p=2095',0,'revision','',0),(2096,1,'2024-10-21 03:30:46','2024-10-21 03:30:46','<a href=\"https://fe2tech.com/\">\n							<img width=\"200\" height=\"200\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9b3767fbcf1145d184ba29c6b29bde2c-free.png\" alt=\"\" />								</a>\n			    <ul>\n                    <li>\n            	   Office: 43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM                \n           </li>\n                    <li>\n            	   Factory: 176/9 Nguyễn Thị Tươi, KP Tân Phước, P. Tân Bình, Dĩ An city, Bình Dương                \n           </li>\n                    <li>\n            	   0968860386                \n           </li>\n            </ul>\n		Open Hours:Mon - Sat: 8 am - 5 pm,<br/>\nSunday: CLOSED		\n    <h3>\n        Menu\n        <i></i>\n    </h3>\n        <ul id=\"menu-main-menu\"><li id=\"menu-item-1955\"><a href=\"https://fe2tech.com/\">Home</a></li>\n<li id=\"menu-item-1965\"><a href=\"https://fe2tech.com/shop/\">Gallery</a></li>\n<li id=\"menu-item-1966\"><a href=\"https://fe2tech.com/services-v-2/\">Services</a></li>\n<li id=\"menu-item-1967\"><a href=\"https://fe2tech.com/team/\">Team &amp; Partners</a></li>\n<li id=\"menu-item-1960\"><a href=\"https://fe2tech.com/about/\">About Us</a></li>\n</ul>    \n    <h3>\n        Newsletter\n        <i></i>\n    </h3>\n		Sign up for alerts, our latest blogs, thoughts, and insights.		\n        <form method=\"post\" action=\"https://fe2tech.com/wp-admin/admin-ajax.php?action=tnp&amp;na=s\" style=\"\">\n<input type=\"hidden\" name=\"nlang\" value=\"\">\n<label for=\"tnp-1\">Your mail address</label>\n<input type=\"email\" name=\"ne\" id=\"tnp-1\" value=\"\" placeholder=\"\" required>\n<input type=\"submit\" value=\"Subscribe\" style=\"\">\n</form>    \n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n		<p>Copyright @2024 Trifles. All Rights Reserved by Far East High Tech</p>		\n        <ul id=\"menu-menu-footer-bottom\"><li id=\"menu-item-1878\"><a href=\"#\">Terms</a></li>\n<li id=\"menu-item-1879\"><a href=\"#\">Privacy &#038; Policy</a></li>\n<li id=\"menu-item-1880\"><a href=\"#\">Join Us</a></li>\n<li id=\"menu-item-1881\"><a href=\"#\">Need Help?</a></li>\n</ul>','Footer 2','','inherit','closed','closed','','799-revision-v1','','','2024-10-21 03:30:46','2024-10-21 03:30:46','',799,'http://fe2tech.com/?p=2096',0,'revision','',0),(2126,1,'2024-10-21 03:37:36','2024-10-21 03:37:36','<h5>\n        Our strength lies in mass production of aluminum and steel. We excel in innovation and deliver high-value products to our customers.    </h5>\n			Automotive &amp; Motorcycle\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMwOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTE2ZWI3MWY1NDZjNDRjNGJhMDBjNmFmZTQ2NDY0ZDU5My0xLmpwZ18zNTB4MzUwLTEuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A16eb71f546c44c4ba00c6afe46464d593-1.jpg_350x350-1.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A16eb71f546c44c4ba00c6afe46464d593-1.jpg_350x350-1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMxMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTcyYTIxYmE5NjljODRiOThiNjNiOTg1MzgwYjk3ZWY1Ty0xLmpwZ18zNTB4MzUwLTEuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A72a21ba969c84b98b63b985380b97ef5O-1.jpg_350x350-1.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A72a21ba969c84b98b63b985380b97ef5O-1.jpg_350x350-1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMxMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWM2ZDlhM2I3OWE5MDRlZWI5YzkyNWFmYTM3NGVjNTNhQS0xLmpwZ18zNTB4MzUwLTEuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Ac6d9a3b79a904eeb9c925afa374ec53aA-1.jpg_350x350-1.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Ac6d9a3b79a904eeb9c925afa374ec53aA-1.jpg_350x350-1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMxMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvMy0xLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/3-1.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/3-1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMxMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvOS0xLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/9-1.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/9-1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMxNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTI2OGFhOGY5YjY1YzRjZGY5ZjQ1ZTU5NGYyY2Q4YWQ0TS0xLmpwZ18zNTB4MzUwLTEuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A268aa8f9b65c4cdf9f45e594f2cd8ad4M-1.jpg_350x350-1.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A268aa8f9b65c4cdf9f45e594f2cd8ad4M-1.jpg_350x350-1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMxNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTg2NDQzMmYyNTcxNzQzNjg5MzQyYWUxNzNlZTlkYzlmZC0xLmpwZ18zNTB4MzUwLTEuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A864432f2571743689342ae173ee9dc9fd-1.jpg_350x350-1.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A864432f2571743689342ae173ee9dc9fd-1.jpg_350x350-1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMxNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWJkNDM4NTFjOTI2NTRiZDk5Y2ZkY2E0NWQ4OTZmYmNiQi0xLmpwZ18zNTB4MzUwLTEuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Abd43851c92654bd99cfdca45d896fbcbB-1.jpg_350x350-1.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Abd43851c92654bd99cfdca45d896fbcbB-1.jpg_350x350-1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMxNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTEwMDFlNjNlYTU5MTQ5ZjhhODFhYmI5MmQ1ZDVmZTcxMy0xLmpwZ18zNTB4MzUwLTEuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A1001e63ea59149f8a81abb92d5d5fe713-1.jpg_350x350-1.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A1001e63ea59149f8a81abb92d5d5fe713-1.jpg_350x350-1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMxOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTM2MzQ2Zjg4MWIxMDQ5OTZiNmMwNzBiNWQyY2ViZmY4dS0xLmpwZ18zNTB4MzUwLTEuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A36346f881b104996b6c070b5d2cebff8u-1.jpg_350x350-1.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A36346f881b104996b6c070b5d2cebff8u-1.jpg_350x350-1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMxOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTE1NzE4M2MwN2E3NjRlYjg5NTdiYzRjZDEzOTgyODA4aS0xLmpwZ18zNTB4MzUwLTEuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A157183c07a764eb8957bc4cd13982808i-1.jpg_350x350-1.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A157183c07a764eb8957bc4cd13982808i-1.jpg_350x350-1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMyMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTQ5NjllZjIzNDNhMjQ0NjA4Y2M1MTFkMWU3YmUyOGUyWC0xLnBuZ18zNTB4MzUwLTEucG5nIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A4969ef2343a244608cc511d1e7be28e2X-1.png_350x350-1.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A4969ef2343a244608cc511d1e7be28e2X-1.png_350x350-1.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMyMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvSDliZTY0NjE0OTRjZjRmZTc5OTgxOTJkYzQ4MzA2NmM5di0xLnBuZ18zNTB4MzUwLTEucG5nIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/H9be6461494cf4fe7998192dc483066c9v-1.png_350x350-1.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/H9be6461494cf4fe7998192dc483066c9v-1.png_350x350-1.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMyMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvSDRjYmFjNDdhZTZjZjQ3MDViOTY2NjY4Y2ExYWJhZDUwOS0xLnBuZ18zNTB4MzUwLTEucG5nIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/H4cbac47ae6cf4705b966668ca1abad509-1.png_350x350-1.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/H4cbac47ae6cf4705b966668ca1abad509-1.png_350x350-1.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMyMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvSDZjMDBiZDIzN2Q4YjQ2ZDRiMDZhMWNjNmVmNzZhY2NmRS0xLnBuZ18zNTB4MzUwLTEucG5nIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/H6c00bd237d8b46d4b06a1cc6ef76accfE-1.png_350x350-1.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/H6c00bd237d8b46d4b06a1cc6ef76accfE-1.png_350x350-1.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMyNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvSDcxYWJlN2E3NjNhMzQ1YWU4N2RjZjcwYzI1YTcwYTMyTS0xLnBuZ18zNTB4MzUwLTEucG5nIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/H71abe7a763a345ae87dcf70c25a70a32M-1.png_350x350-1.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/H71abe7a763a345ae87dcf70c25a70a32M-1.png_350x350-1.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMyNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvMi0xLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/2-1.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/2-1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMyNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTc4NmRjNDI3YWY0NjQ1N2VhOTIzYzQxZWE3Njg4ZjY3US0xLmpwZ18zNTB4MzUwLTEuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A786dc427af46457ea923c41ea7688f67Q-1.jpg_350x350-1.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A786dc427af46457ea923c41ea7688f67Q-1.jpg_350x350-1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMyNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTJlZDVhNWMzZjhmNTQ0Yzg5MTBhM2ZlMjlkYTVlMjk4NC0xLmpwZ18zNTB4MzUwLTEuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A2ed5a5c3f8f544c8910a3fe29da5e2984-1.jpg_350x350-1.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A2ed5a5c3f8f544c8910a3fe29da5e2984-1.jpg_350x350-1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMyOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTUzZjk0ZmZmYTBlNjRiYThhNDczMzBlODVhMTc5MjE0bC0xLmpwZ18zNTB4MzUwLTEuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A53f94fffa0e64ba8a47330e85a179214l-1.jpg_350x350-1.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A53f94fffa0e64ba8a47330e85a179214l-1.jpg_350x350-1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMyOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWE1NTlhYWE4ZThkNDQ4NjhiNzAwOTY3ZTE4MjYzMWUwTy0xLmpwZ18zNTB4MzUwLTEuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Aa559aaa8e8d44868b700967e182631e0O-1.jpg_350x350-1.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Aa559aaa8e8d44868b700967e182631e0O-1.jpg_350x350-1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMzMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvNC0xLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/4-1.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/4-1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMzMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTg2MjZkZjVhZTg5YzQ1ODQ4NGNiZGVhYjZiMGEyNzY4RS0xLmpwZ18zNTB4MzUwLTEuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A8626df5ae89c458484cbdeab6b0a2768E-1.jpg_350x350-1.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A8626df5ae89c458484cbdeab6b0a2768E-1.jpg_350x350-1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMzMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvMS0xLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/1-1.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/1-1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMzMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTVmYTcxYjBlZGRmNjQ4MDQ5YzVmMzNkMzMxNzM4NDYwbS0xLmpwZ18zNTB4MzUwLTEuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A5fa71b0eddf648049c5f33d331738460m-1.jpg_350x350-1.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A5fa71b0eddf648049c5f33d331738460m-1.jpg_350x350-1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMzNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTVkZjYxOWNlODllYzQyMTg5YTVjNGQwNWJiYmE0ZjJkdy0xLmpwZ18zNTB4MzUwLTEuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A5df619ce89ec42189a5c4d05bbba4f2dw-1.jpg_350x350-1.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A5df619ce89ec42189a5c4d05bbba4f2dw-1.jpg_350x350-1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMzNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWVhMWEyZWE2YzlkMDRiNzg5NzdkMWU4YzkwN2U3MjFjUi0xLmpwZ18zNTB4MzUwLTEuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Aea1a2ea6c9d04b78977d1e8c907e721cR-1.jpg_350x350-1.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Aea1a2ea6c9d04b78977d1e8c907e721cR-1.jpg_350x350-1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMzNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvNS0xLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/5-1.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/5-1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMzOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvNy0xLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/7-1.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/7-1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMzOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTk2N2M2MzRhNTE3YzQ4ZjM4YzIzZDQ3NjZkYjViYmExYS0xLmpwZ18zNTB4MzUwLTEuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A967c634a517c48f38c23d4766db5bba1a-1.jpg_350x350-1.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A967c634a517c48f38c23d4766db5bba1a-1.jpg_350x350-1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzM0MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTQ2MjQxM2I2ZGUyYjQwMWJhNjBlOTliYmUxZDE1ZTMzSy0xLmpwZ18zNTB4MzUwLTEuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A462413b6de2b401ba60e99bbe1d15e33K-1.jpg_350x350-1.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A462413b6de2b401ba60e99bbe1d15e33K-1.jpg_350x350-1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzM0MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTY2MTM5OTE0MmE3MjQ3Mjc4YmJmNjlhOWQ2MDA3NTU2Vy0xLmpwZ18zNTB4MzUwLTEuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A661399142a7247278bbf69a9d6007556W-1.jpg_350x350-1.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A661399142a7247278bbf69a9d6007556W-1.jpg_350x350-1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzM0MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvMTAtMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/10-1.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/10-1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			CNC Machined Parts\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rNS5qcGciLCJzbGlkZXNob3ciOiIxODUyY2M5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok5.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok5.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rNC5wbmciLCJzbGlkZXNob3ciOiIxODUyY2M5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok4.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok4.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW1hY2hpbmUyMi5hdmlmIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-machine22.avif\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-machine22.avif\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW1hY2hpbmUzLmpwZyIsInNsaWRlc2hvdyI6IjE4NTJjYzkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-machine3.jpg\'><img width=\"150\" height=\"100\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-machine3.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rMy5wbmciLCJzbGlkZXNob3ciOiIxODUyY2M5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok3.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok3.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rMS5wbmciLCJzbGlkZXNob3ciOiIxODUyY2M5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok1.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok1.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rMi5wbmciLCJzbGlkZXNob3ciOiIxODUyY2M5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok2.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok2.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rNy5wbmciLCJzbGlkZXNob3ciOiIxODUyY2M5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok7.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok7.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rOS5qcGciLCJzbGlkZXNob3ciOiIxODUyY2M5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok9.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok9.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rOC5qcGciLCJzbGlkZXNob3ciOiIxODUyY2M5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok8.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok8.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejU3MDk0NDM0NzY3OTdfY2IzZTllMGQ1OTZhZDYzMzEzNjZiOGE3MTFmNDY5MjYuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z5709443476797_cb3e9e0d596ad6331366b8a711f46926.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z5709443476797_cb3e9e0d596ad6331366b8a711f46926.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			Sheet Metal &amp; Fabrication\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWwxLmpwZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal1.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWwzLmpwZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal3.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal3.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw0LmpwZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal4.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal4.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw1LmpwZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal5.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal5.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw3LmpwZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal7.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal7.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw4LmpwZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal8.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal8.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw5LmpwZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal9.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal9.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWwxMC5qcGciLCJzbGlkZXNob3ciOiJjZDlkYmE5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal10.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal10.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWwyLnBuZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal2.png\'><img width=\"84\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal2.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw2LmpwZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal6.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal6.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			Mold &amp; Die Components\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzYxNjUzNzJfODI1NjkzMjRkZTFjOGZjYzM3NmNjMGU3MzdjMDUyMGUuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzY0NTU3NzVfOTdhOTM3ODA3YzgwN2JmNzEzNjk0MTlhMGE1ZDNkMmMuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\'><img width=\"68\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzU4OTM2OTJfNDhmNGE5ZjdjN2E5ZDA1ZGMwMzdhODBhYzFlNTc4MmIuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzYwMDk1MTRfYWQ5MDg4N2YyNWQ3MzRlYzJkMjFkOGE2YTYzNGZmMmQuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzY3MjE1ODZfMTZiOTE5ODQyMGIzOTlmOWQ4MmMwNThkOTA4MmEzZTAuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzYxMTA0MjZfYzNlY2UzZWM1NmY5ZThjYzBlNWM5YTk4Zjk3OTJiZmMuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			Industrial Fasteners &amp; Bolt\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3dcc60b\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvSU1HXzEyMzcuanBlZyIsInNsaWRlc2hvdyI6IjNkY2M2MGIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/IMG_1237.jpeg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/IMG_1237.jpeg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3dcc60b\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvRFNDMDA4MjIuanBnIiwic2xpZGVzaG93IjoiM2RjYzYwYiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/DSC00822.jpg\'><img width=\"150\" height=\"100\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/DSC00822.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			Tool\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwMTgzMzRfMTdjNWZhYzk2ZmIyODQzZDc0YTc2Y2M3OWY5YjRmNWMuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\'><img width=\"150\" height=\"135\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwMzczNTNfZGI4NzczMmIzZWE5ZDkzNTM2YmNkM2FlYzY0ODM1YTcuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNTkxNjJfMDUzYjM2NGFiNzYxZGM1YTQ0Mjc5ZmFmNjQzOTUzMjQuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\'><img width=\"70\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNzgzNzJfNTBhYmNlNTI0OWM4YWNkY2ZiZGY4YTA2MzQ4OWUxODYuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNzg1NzBfMGFiNThiNDZiZjY4M2RmNmVjZGIyYzJkODc5NDViYTYuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\'><img width=\"150\" height=\"129\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk2ODQ5NDkwODZfYjI5ZmRiNTAxMTRhMTk2Y2MzZmRjYzllMTJjYWYxMDUuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\'><img width=\"150\" height=\"128\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk2ODQ5NDY2NDFfMTUwMGZiZTE2ZmVjM2ExNGVhZGI4ZTRhZWQxY2Y2M2YuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			Jig\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NDY1OTEzMzg2ODdfZmE1MTRlMTY0ZjJlZTk5NjFjZmVlY2U5YjJhMjk2MmUuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTE0ODI0OTc5ODFfNGZlOGQ1MmM3N2ZiOTcwYWNjYWNhOTkzMTFiM2U1YjguanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNTQzNzc3MTM5OTRfNzMxZjNhYzFmN2YzMjMyNjExMWE0MWY2N2Q0YTJlMzMuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE2NTM3NjdfNzk3Y2FkYTk3Yjk4NjQyZTYyYzkxODU3YzYwYjViNDQuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NDY1OTEzNDkxOTRfZDUwMTBkMTcwMGM3Y2ViNDkxYjk3OGIwMWJlM2RkMjguanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>','Product','','publish','closed','closed','','product','','','2025-03-18 06:37:44','2025-03-18 06:37:44','',0,'http://fe2tech.com/?page_id=2126',3,'page','',0),(2127,1,'2024-10-21 03:37:36','2024-10-21 03:37:36','','Gallery','','inherit','closed','closed','','2126-revision-v1','','','2024-10-21 03:37:36','2024-10-21 03:37:36','',2126,'http://fe2tech.com/?p=2127',0,'revision','',0),(2128,1,'2024-10-21 03:38:29','2024-10-21 03:38:29','<a href=\"https://fe2tech.com/service/cnc-milling-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/cnc-milling-service/\">CNC Milling Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/cnc-turning-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/cnc-turning-service/\">CNC Turning Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">CNC Tool Grinder Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/sheet-metal-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/sheet-metal-service/\">Sheet Metal Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/welding-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/welding-service/\">Welding Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/edm-grinding-and-wire-cutting-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/edm-grinding-and-wire-cutting-service/\">EDM, Grinding and Wire Cutting Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/bolt-production/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/bolt-production/\">Bolt Production</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/other-services/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/other-services/\">Other Services</a></h3>','Services','','publish','closed','closed','','services','','','2024-12-17 04:00:26','2024-12-17 04:00:26','',0,'http://fe2tech.com/?page_id=2128',6,'page','',0),(2129,1,'2024-10-21 03:38:29','2024-10-21 03:38:29','','Services','','inherit','closed','closed','','2128-revision-v1','','','2024-10-21 03:38:29','2024-10-21 03:38:29','',2128,'http://fe2tech.com/?p=2129',0,'revision','',0),(2131,1,'2025-03-17 03:54:54','2024-10-21 03:39:07','','Service','','publish','closed','closed','','2131','','','2025-03-17 03:54:54','2025-03-17 03:54:54','',0,'http://fe2tech.com/2024/10/21/2131/',3,'nav_menu_item','',0),(2132,1,'2025-03-17 03:54:54','2024-10-21 03:39:07',' ','','','publish','closed','closed','','2132','','','2025-03-17 03:54:54','2025-03-17 03:54:54','',0,'http://fe2tech.com/2024/10/21/2132/',2,'nav_menu_item','',0),(2201,1,'2024-10-21 03:45:10','2024-10-21 03:45:10','','Gallery','','inherit','closed','closed','','2126-revision-v1','','','2024-10-21 03:45:10','2024-10-21 03:45:10','',2126,'http://fe2tech.com/?p=2201',0,'revision','',0),(2202,1,'2024-10-21 03:45:10','2024-10-21 03:45:10','','Gallery','','inherit','closed','closed','','2126-revision-v1','','','2024-10-21 03:45:10','2024-10-21 03:45:10','',2126,'http://fe2tech.com/?p=2202',0,'revision','',0),(2203,1,'2024-10-21 03:45:11','2024-10-21 03:45:11','<img src=\"\" width=\"\" height=\"\" alt=\"0cc88ec1517fe821b16e130\" title=\"0cc88ec1517fe821b16e130\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"2c7e6676b9c8009659d9126\" title=\"2c7e6676b9c8009659d9126\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"33ccc7ca1874a12af865132\" title=\"33ccc7ca1874a12af865132\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"57de4ad695682c367579128\" title=\"57de4ad695682c367579128\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"62fb72f0ad4e14104d5f127\" title=\"62fb72f0ad4e14104d5f127\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"b1c8bfc1607fd921806e129\" title=\"b1c8bfc1607fd921806e129\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"f7f4c2fc1d42a41cfd53131\" title=\"f7f4c2fc1d42a41cfd53131\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"0b32f03b2f8596dbcf94112\" title=\"0b32f03b2f8596dbcf94112\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"04a0fba924179d49c406110\" title=\"04a0fba924179d49c406110\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"5a19961f49a1f0ffa9b0118\" title=\"5a19961f49a1f0ffa9b0118\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"9a4b7643a9fd10a349ec115\" title=\"9a4b7643a9fd10a349ec115\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"9d24a12c7e92c7cc9e83108\" title=\"9d24a12c7e92c7cc9e83108\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"46f3befa6144d81a8155123\" title=\"46f3befa6144d81a8155123\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"53d3a1db7e65c73b9e74107\" title=\"53d3a1db7e65c73b9e74107\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"96e17fe9a05719094046105\" title=\"96e17fe9a05719094046105\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"795df95426ea9fb4c6fb116\" title=\"795df95426ea9fb4c6fb116\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"939e3596ea2853760a39104\" title=\"939e3596ea2853760a39104\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"995b95524aecf3b2aafd120\" title=\"995b95524aecf3b2aafd120\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"2664d66209dcb082e9cd117\" title=\"2664d66209dcb082e9cd117\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"4185a68d7933c06d9922111\" title=\"4185a68d7933c06d9922111\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"97509a5945e7fcb9a5f6113\" title=\"97509a5945e7fcb9a5f6113\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"0497279ff821417f1830122\" title=\"0497279ff821417f1830122\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"49290422db9c62c23b8d124\" title=\"49290422db9c62c23b8d124\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"49290422db9c62c23b8d125\" title=\"49290422db9c62c23b8d125\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"b44c1144cefa77a42eeb106\" title=\"b44c1144cefa77a42eeb106\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"b9007d06a2b81be642a9109\" title=\"b9007d06a2b81be642a9109\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"d037ea3f35818cdfd590114\" title=\"d037ea3f35818cdfd590114\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"da27722fad9114cf4d80121\" title=\"da27722fad9114cf4d80121\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"db3e8e365188e8d6b199119\" title=\"db3e8e365188e8d6b199119\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"1ab1f4b72b099257cb1897\" title=\"1ab1f4b72b099257cb1897\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"1d260d2fd2916bcf328099\" title=\"1d260d2fd2916bcf328099\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"4af3fbfb24459d1bc45484\" title=\"4af3fbfb24459d1bc45484\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"4dc6cecf1171a82ff160101\" title=\"4dc6cecf1171a82ff160101\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"7cde64d6bb6802365b79102\" title=\"7cde64d6bb6802365b79102\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"7ef794f14b4ff211ab5e91\" title=\"7ef794f14b4ff211ab5e91\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"7ef794f14b4ff211ab5e92\" title=\"7ef794f14b4ff211ab5e92\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"8ea396aa4914f04aa90588\" title=\"8ea396aa4914f04aa90588\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"41a76fafb011094f500096\" title=\"41a76fafb011094f500096\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"56c9f8c2277c9e22c76d98\" title=\"56c9f8c2277c9e22c76d98\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"284ee1483ef687a8dee795\" title=\"284ee1483ef687a8dee795\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"795d6c55b3eb0ab553fa94\" title=\"795d6c55b3eb0ab553fa94\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"844e93464cf8f5a6ace9103\" title=\"844e93464cf8f5a6ace9103\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"a2e5a7ee7850c10e984189\" title=\"a2e5a7ee7850c10e984189\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"a2e5a7ee7850c10e984190\" title=\"a2e5a7ee7850c10e984190\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"b5ed1be5c45b7d05244a93\" title=\"b5ed1be5c45b7d05244a93\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"c010d91906a7bff9e6b685\" title=\"c010d91906a7bff9e6b685\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"c546934e4cf0f5aeace1100\" title=\"c546934e4cf0f5aeace1100\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"ccd73edee160583e017187\" title=\"ccd73edee160583e017187\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"dfb58bbd5403ed5db41286\" title=\"dfb58bbd5403ed5db41286\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"38db14d3cb6d72332b7c76\" title=\"38db14d3cb6d72332b7c76\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"42f158f887463e18675775\" title=\"42f158f887463e18675775\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"57c577cda873112d486282\" title=\"57c577cda873112d486282\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"91a553a38c1d35436c0c83\" title=\"91a553a38c1d35436c0c83\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"350f2406fbb842e61ba980\" title=\"350f2406fbb842e61ba980\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"350f2406fbb842e61ba981\" title=\"350f2406fbb842e61ba981\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"1289df8f0031b96fe02079\" title=\"1289df8f0031b96fe02079\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"4480b4896b37d2698b2677\" title=\"4480b4896b37d2698b2677\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"9505c40d1bb3a2edfba278\" title=\"9505c40d1bb3a2edfba278\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"a4888f80503ee960b02f74\" title=\"a4888f80503ee960b02f74\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"07c54ece9170282e716171\" title=\"07c54ece9170282e716171\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"8d79cb7114cfad91f4de73\" title=\"8d79cb7114cfad91f4de73\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"79e03ae8e5565c08054772\" title=\"79e03ae8e5565c08054772\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"28706f78b0c6099850d768\" title=\"28706f78b0c6099850d768\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"b4e371e5ae5b17054e4a69\" title=\"b4e371e5ae5b17054e4a69\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"c20f0a09d5b76ce935a667\" title=\"c20f0a09d5b76ce935a667\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"e31fda1705a9bcf7e5b870\" title=\"e31fda1705a9bcf7e5b870\" />','Gallery','','inherit','closed','closed','','2126-revision-v1','','','2024-10-21 03:45:11','2024-10-21 03:45:11','',2126,'http://fe2tech.com/?p=2203',0,'revision','',0),(2204,1,'2024-10-21 03:49:39','2024-10-21 03:49:39','<img src=\"\" width=\"\" height=\"\" alt=\"0cc88ec1517fe821b16e130\" title=\"0cc88ec1517fe821b16e130\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"2c7e6676b9c8009659d9126\" title=\"2c7e6676b9c8009659d9126\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"33ccc7ca1874a12af865132\" title=\"33ccc7ca1874a12af865132\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"57de4ad695682c367579128\" title=\"57de4ad695682c367579128\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"62fb72f0ad4e14104d5f127\" title=\"62fb72f0ad4e14104d5f127\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"b1c8bfc1607fd921806e129\" title=\"b1c8bfc1607fd921806e129\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"f7f4c2fc1d42a41cfd53131\" title=\"f7f4c2fc1d42a41cfd53131\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"0b32f03b2f8596dbcf94112\" title=\"0b32f03b2f8596dbcf94112\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"04a0fba924179d49c406110\" title=\"04a0fba924179d49c406110\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"5a19961f49a1f0ffa9b0118\" title=\"5a19961f49a1f0ffa9b0118\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"9a4b7643a9fd10a349ec115\" title=\"9a4b7643a9fd10a349ec115\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"9d24a12c7e92c7cc9e83108\" title=\"9d24a12c7e92c7cc9e83108\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"46f3befa6144d81a8155123\" title=\"46f3befa6144d81a8155123\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"53d3a1db7e65c73b9e74107\" title=\"53d3a1db7e65c73b9e74107\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"96e17fe9a05719094046105\" title=\"96e17fe9a05719094046105\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"795df95426ea9fb4c6fb116\" title=\"795df95426ea9fb4c6fb116\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"939e3596ea2853760a39104\" title=\"939e3596ea2853760a39104\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"995b95524aecf3b2aafd120\" title=\"995b95524aecf3b2aafd120\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"2664d66209dcb082e9cd117\" title=\"2664d66209dcb082e9cd117\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"4185a68d7933c06d9922111\" title=\"4185a68d7933c06d9922111\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"97509a5945e7fcb9a5f6113\" title=\"97509a5945e7fcb9a5f6113\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"0497279ff821417f1830122\" title=\"0497279ff821417f1830122\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"49290422db9c62c23b8d124\" title=\"49290422db9c62c23b8d124\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"49290422db9c62c23b8d125\" title=\"49290422db9c62c23b8d125\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"b44c1144cefa77a42eeb106\" title=\"b44c1144cefa77a42eeb106\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"b9007d06a2b81be642a9109\" title=\"b9007d06a2b81be642a9109\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"d037ea3f35818cdfd590114\" title=\"d037ea3f35818cdfd590114\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"da27722fad9114cf4d80121\" title=\"da27722fad9114cf4d80121\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"db3e8e365188e8d6b199119\" title=\"db3e8e365188e8d6b199119\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"1ab1f4b72b099257cb1897\" title=\"1ab1f4b72b099257cb1897\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"1d260d2fd2916bcf328099\" title=\"1d260d2fd2916bcf328099\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"4af3fbfb24459d1bc45484\" title=\"4af3fbfb24459d1bc45484\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"4dc6cecf1171a82ff160101\" title=\"4dc6cecf1171a82ff160101\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"7cde64d6bb6802365b79102\" title=\"7cde64d6bb6802365b79102\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"7ef794f14b4ff211ab5e91\" title=\"7ef794f14b4ff211ab5e91\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"7ef794f14b4ff211ab5e92\" title=\"7ef794f14b4ff211ab5e92\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"8ea396aa4914f04aa90588\" title=\"8ea396aa4914f04aa90588\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"41a76fafb011094f500096\" title=\"41a76fafb011094f500096\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"56c9f8c2277c9e22c76d98\" title=\"56c9f8c2277c9e22c76d98\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"284ee1483ef687a8dee795\" title=\"284ee1483ef687a8dee795\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"795d6c55b3eb0ab553fa94\" title=\"795d6c55b3eb0ab553fa94\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"844e93464cf8f5a6ace9103\" title=\"844e93464cf8f5a6ace9103\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"a2e5a7ee7850c10e984189\" title=\"a2e5a7ee7850c10e984189\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"a2e5a7ee7850c10e984190\" title=\"a2e5a7ee7850c10e984190\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"b5ed1be5c45b7d05244a93\" title=\"b5ed1be5c45b7d05244a93\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"c010d91906a7bff9e6b685\" title=\"c010d91906a7bff9e6b685\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"c546934e4cf0f5aeace1100\" title=\"c546934e4cf0f5aeace1100\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"ccd73edee160583e017187\" title=\"ccd73edee160583e017187\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"dfb58bbd5403ed5db41286\" title=\"dfb58bbd5403ed5db41286\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"38db14d3cb6d72332b7c76\" title=\"38db14d3cb6d72332b7c76\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"42f158f887463e18675775\" title=\"42f158f887463e18675775\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"57c577cda873112d486282\" title=\"57c577cda873112d486282\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"91a553a38c1d35436c0c83\" title=\"91a553a38c1d35436c0c83\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"350f2406fbb842e61ba980\" title=\"350f2406fbb842e61ba980\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"350f2406fbb842e61ba981\" title=\"350f2406fbb842e61ba981\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"1289df8f0031b96fe02079\" title=\"1289df8f0031b96fe02079\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"4480b4896b37d2698b2677\" title=\"4480b4896b37d2698b2677\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"9505c40d1bb3a2edfba278\" title=\"9505c40d1bb3a2edfba278\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"a4888f80503ee960b02f74\" title=\"a4888f80503ee960b02f74\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"07c54ece9170282e716171\" title=\"07c54ece9170282e716171\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"8d79cb7114cfad91f4de73\" title=\"8d79cb7114cfad91f4de73\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"79e03ae8e5565c08054772\" title=\"79e03ae8e5565c08054772\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"28706f78b0c6099850d768\" title=\"28706f78b0c6099850d768\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"b4e371e5ae5b17054e4a69\" title=\"b4e371e5ae5b17054e4a69\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"c20f0a09d5b76ce935a667\" title=\"c20f0a09d5b76ce935a667\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"e31fda1705a9bcf7e5b870\" title=\"e31fda1705a9bcf7e5b870\" />','Gallery','','inherit','closed','closed','','2126-revision-v1','','','2024-10-21 03:49:39','2024-10-21 03:49:39','',2126,'http://fe2tech.com/?p=2204',0,'revision','',0),(2205,1,'2024-10-21 03:49:39','2024-10-21 03:49:39','<img src=\"\" width=\"\" height=\"\" alt=\"0cc88ec1517fe821b16e130\" title=\"0cc88ec1517fe821b16e130\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"2c7e6676b9c8009659d9126\" title=\"2c7e6676b9c8009659d9126\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"33ccc7ca1874a12af865132\" title=\"33ccc7ca1874a12af865132\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"57de4ad695682c367579128\" title=\"57de4ad695682c367579128\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"62fb72f0ad4e14104d5f127\" title=\"62fb72f0ad4e14104d5f127\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"b1c8bfc1607fd921806e129\" title=\"b1c8bfc1607fd921806e129\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"f7f4c2fc1d42a41cfd53131\" title=\"f7f4c2fc1d42a41cfd53131\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"0b32f03b2f8596dbcf94112\" title=\"0b32f03b2f8596dbcf94112\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"04a0fba924179d49c406110\" title=\"04a0fba924179d49c406110\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"5a19961f49a1f0ffa9b0118\" title=\"5a19961f49a1f0ffa9b0118\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"9a4b7643a9fd10a349ec115\" title=\"9a4b7643a9fd10a349ec115\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"9d24a12c7e92c7cc9e83108\" title=\"9d24a12c7e92c7cc9e83108\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"46f3befa6144d81a8155123\" title=\"46f3befa6144d81a8155123\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"53d3a1db7e65c73b9e74107\" title=\"53d3a1db7e65c73b9e74107\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"96e17fe9a05719094046105\" title=\"96e17fe9a05719094046105\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"795df95426ea9fb4c6fb116\" title=\"795df95426ea9fb4c6fb116\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"939e3596ea2853760a39104\" title=\"939e3596ea2853760a39104\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"995b95524aecf3b2aafd120\" title=\"995b95524aecf3b2aafd120\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"2664d66209dcb082e9cd117\" title=\"2664d66209dcb082e9cd117\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"4185a68d7933c06d9922111\" title=\"4185a68d7933c06d9922111\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"97509a5945e7fcb9a5f6113\" title=\"97509a5945e7fcb9a5f6113\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"0497279ff821417f1830122\" title=\"0497279ff821417f1830122\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"49290422db9c62c23b8d124\" title=\"49290422db9c62c23b8d124\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"49290422db9c62c23b8d125\" title=\"49290422db9c62c23b8d125\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"b44c1144cefa77a42eeb106\" title=\"b44c1144cefa77a42eeb106\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"b9007d06a2b81be642a9109\" title=\"b9007d06a2b81be642a9109\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"d037ea3f35818cdfd590114\" title=\"d037ea3f35818cdfd590114\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"da27722fad9114cf4d80121\" title=\"da27722fad9114cf4d80121\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"db3e8e365188e8d6b199119\" title=\"db3e8e365188e8d6b199119\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"1ab1f4b72b099257cb1897\" title=\"1ab1f4b72b099257cb1897\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"1d260d2fd2916bcf328099\" title=\"1d260d2fd2916bcf328099\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"4af3fbfb24459d1bc45484\" title=\"4af3fbfb24459d1bc45484\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"4dc6cecf1171a82ff160101\" title=\"4dc6cecf1171a82ff160101\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"7cde64d6bb6802365b79102\" title=\"7cde64d6bb6802365b79102\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"7ef794f14b4ff211ab5e91\" title=\"7ef794f14b4ff211ab5e91\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"7ef794f14b4ff211ab5e92\" title=\"7ef794f14b4ff211ab5e92\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"8ea396aa4914f04aa90588\" title=\"8ea396aa4914f04aa90588\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"41a76fafb011094f500096\" title=\"41a76fafb011094f500096\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"56c9f8c2277c9e22c76d98\" title=\"56c9f8c2277c9e22c76d98\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"284ee1483ef687a8dee795\" title=\"284ee1483ef687a8dee795\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"795d6c55b3eb0ab553fa94\" title=\"795d6c55b3eb0ab553fa94\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"844e93464cf8f5a6ace9103\" title=\"844e93464cf8f5a6ace9103\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"a2e5a7ee7850c10e984189\" title=\"a2e5a7ee7850c10e984189\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"a2e5a7ee7850c10e984190\" title=\"a2e5a7ee7850c10e984190\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"b5ed1be5c45b7d05244a93\" title=\"b5ed1be5c45b7d05244a93\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"c010d91906a7bff9e6b685\" title=\"c010d91906a7bff9e6b685\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"c546934e4cf0f5aeace1100\" title=\"c546934e4cf0f5aeace1100\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"ccd73edee160583e017187\" title=\"ccd73edee160583e017187\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"dfb58bbd5403ed5db41286\" title=\"dfb58bbd5403ed5db41286\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"38db14d3cb6d72332b7c76\" title=\"38db14d3cb6d72332b7c76\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"42f158f887463e18675775\" title=\"42f158f887463e18675775\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"57c577cda873112d486282\" title=\"57c577cda873112d486282\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"91a553a38c1d35436c0c83\" title=\"91a553a38c1d35436c0c83\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"350f2406fbb842e61ba980\" title=\"350f2406fbb842e61ba980\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"350f2406fbb842e61ba981\" title=\"350f2406fbb842e61ba981\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"1289df8f0031b96fe02079\" title=\"1289df8f0031b96fe02079\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"4480b4896b37d2698b2677\" title=\"4480b4896b37d2698b2677\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"9505c40d1bb3a2edfba278\" title=\"9505c40d1bb3a2edfba278\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"a4888f80503ee960b02f74\" title=\"a4888f80503ee960b02f74\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"07c54ece9170282e716171\" title=\"07c54ece9170282e716171\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"8d79cb7114cfad91f4de73\" title=\"8d79cb7114cfad91f4de73\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"79e03ae8e5565c08054772\" title=\"79e03ae8e5565c08054772\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"28706f78b0c6099850d768\" title=\"28706f78b0c6099850d768\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"b4e371e5ae5b17054e4a69\" title=\"b4e371e5ae5b17054e4a69\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"c20f0a09d5b76ce935a667\" title=\"c20f0a09d5b76ce935a667\" />                    \n                        <img src=\"\" width=\"\" height=\"\" alt=\"e31fda1705a9bcf7e5b870\" title=\"e31fda1705a9bcf7e5b870\" />','Gallery','','inherit','closed','closed','','2126-revision-v1','','','2024-10-21 03:49:39','2024-10-21 03:49:39','',2126,'http://fe2tech.com/?p=2205',0,'revision','',0),(2206,1,'2024-10-21 03:49:39','2024-10-21 03:49:39','<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"e31fda1705a9bcf7e5b870\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjIwMCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9lMzFmZGExNzA1YTliY2Y3ZTViODcwLmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\'><img width=\"300\" height=\"225\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"c20f0a09d5b76ce935a667\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE5OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jMjBmMGEwOWQ1Yjc2Y2U5MzVhNjY3LmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\'><img width=\"300\" height=\"225\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"28706f78b0c6099850d768\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE5NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yODcwNmY3OGIwYzYwOTk4NTBkNzY4LmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\'><img width=\"300\" height=\"230\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"79e03ae8e5565c08054772\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE5NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OWUwM2FlOGU1NTY1YzA4MDU0NzcyLmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\'><img width=\"300\" height=\"225\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"8d79cb7114cfad91f4de73\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE5NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC84ZDc5Y2I3MTE0Y2ZhZDkxZjRkZTczLmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/8d79cb7114cfad91f4de73.jpg\'><img width=\"300\" height=\"225\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/8d79cb7114cfad91f4de73.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"07c54ece9170282e716171\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE5NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wN2M1NGVjZTkxNzAyODJlNzE2MTcxLmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/07c54ece9170282e716171.jpg\'><img width=\"300\" height=\"225\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/07c54ece9170282e716171.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"350f2406fbb842e61ba980\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE4OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8zNTBmMjQwNmZiYjg0MmU2MWJhOTgwLmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/350f2406fbb842e61ba980.jpg\'><img width=\"300\" height=\"225\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/350f2406fbb842e61ba980.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"350f2406fbb842e61ba981\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE4OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8zNTBmMjQwNmZiYjg0MmU2MWJhOTgxLmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/350f2406fbb842e61ba981.jpg\'><img width=\"300\" height=\"225\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/350f2406fbb842e61ba981.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"1289df8f0031b96fe02079\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE5MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8xMjg5ZGY4ZjAwMzFiOTZmZTAyMDc5LmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/1289df8f0031b96fe02079.jpg\'><img width=\"300\" height=\"225\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/1289df8f0031b96fe02079.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"4480b4896b37d2698b2677\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE5MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80NDgwYjQ4OTZiMzdkMjY5OGIyNjc3LmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4480b4896b37d2698b2677.jpg\'><img width=\"300\" height=\"138\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4480b4896b37d2698b2677.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"9505c40d1bb3a2edfba278\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE5MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85NTA1YzQwZDFiYjNhMmVkZmJhMjc4LmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9505c40d1bb3a2edfba278.jpg\'><img width=\"225\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9505c40d1bb3a2edfba278.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"a4888f80503ee960b02f74\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE5MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9hNDg4OGY4MDUwM2VlOTYwYjAyZjc0LmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/a4888f80503ee960b02f74.jpg\'><img width=\"300\" height=\"225\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/a4888f80503ee960b02f74.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"91a553a38c1d35436c0c83\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE4NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85MWE1NTNhMzhjMWQzNTQzNmMwYzgzLmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/91a553a38c1d35436c0c83.jpg\'><img width=\"300\" height=\"225\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/91a553a38c1d35436c0c83.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"57c577cda873112d486282\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE4NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81N2M1NzdjZGE4NzMxMTJkNDg2MjgyLmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/57c577cda873112d486282.jpg\'><img width=\"300\" height=\"225\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/57c577cda873112d486282.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"42f158f887463e18675775\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE4NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80MmYxNThmODg3NDYzZTE4Njc1Nzc1LmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/42f158f887463e18675775.jpg\'><img width=\"300\" height=\"225\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/42f158f887463e18675775.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"38db14d3cb6d72332b7c76\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE4NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8zOGRiMTRkM2NiNmQ3MjMzMmI3Yzc2LmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/38db14d3cb6d72332b7c76.jpg\'><img width=\"225\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/38db14d3cb6d72332b7c76.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"dfb58bbd5403ed5db41286\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE4MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kZmI1OGJiZDU0MDNlZDVkYjQxMjg2LmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/dfb58bbd5403ed5db41286.jpg\'><img width=\"300\" height=\"225\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/dfb58bbd5403ed5db41286.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"ccd73edee160583e017187\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE4MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jY2Q3M2VkZWUxNjA1ODNlMDE3MTg3LmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/ccd73edee160583e017187.jpg\'><img width=\"300\" height=\"225\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/ccd73edee160583e017187.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"844e93464cf8f5a6ace9103\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE3NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC84NDRlOTM0NjRjZjhmNWE2YWNlOTEwMy5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/844e93464cf8f5a6ace9103.jpg\'><img width=\"225\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/844e93464cf8f5a6ace9103.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"a2e5a7ee7850c10e984189\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE3NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9hMmU1YTdlZTc4NTBjMTBlOTg0MTg5LmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/a2e5a7ee7850c10e984189.jpg\'><img width=\"225\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/a2e5a7ee7850c10e984189.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"a2e5a7ee7850c10e984190\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE3OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9hMmU1YTdlZTc4NTBjMTBlOTg0MTkwLmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/a2e5a7ee7850c10e984190.jpg\'><img width=\"225\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/a2e5a7ee7850c10e984190.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"b5ed1be5c45b7d05244a93\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE3OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iNWVkMWJlNWM0NWI3ZDA1MjQ0YTkzLmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b5ed1be5c45b7d05244a93.jpg\'><img width=\"225\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b5ed1be5c45b7d05244a93.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"c010d91906a7bff9e6b685\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE4MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jMDEwZDkxOTA2YTdiZmY5ZTZiNjg1LmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c010d91906a7bff9e6b685.jpg\'><img width=\"300\" height=\"225\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c010d91906a7bff9e6b685.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"c546934e4cf0f5aeace1100\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE4MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jNTQ2OTM0ZTRjZjBmNWFlYWNlMTEwMC5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c546934e4cf0f5aeace1100.jpg\'><img width=\"300\" height=\"139\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c546934e4cf0f5aeace1100.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"795d6c55b3eb0ab553fa94\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE3NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OTVkNmM1NWIzZWIwYWI1NTNmYTk0LmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/795d6c55b3eb0ab553fa94.jpg\'><img width=\"225\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/795d6c55b3eb0ab553fa94.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"284ee1483ef687a8dee795\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE3NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yODRlZTE0ODNlZjY4N2E4ZGVlNzk1LmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/284ee1483ef687a8dee795.jpg\'><img width=\"300\" height=\"225\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/284ee1483ef687a8dee795.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"56c9f8c2277c9e22c76d98\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE3MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81NmM5ZjhjMjI3N2M5ZTIyYzc2ZDk4LmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/56c9f8c2277c9e22c76d98.jpg\'><img width=\"139\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/56c9f8c2277c9e22c76d98.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"41a76fafb011094f500096\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE3MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80MWE3NmZhZmIwMTEwOTRmNTAwMDk2LmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/41a76fafb011094f500096.jpg\'><img width=\"300\" height=\"225\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/41a76fafb011094f500096.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"8ea396aa4914f04aa90588\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE3MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC84ZWEzOTZhYTQ5MTRmMDRhYTkwNTg4LmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/8ea396aa4914f04aa90588.jpg\'><img width=\"300\" height=\"169\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/8ea396aa4914f04aa90588.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"7ef794f14b4ff211ab5e92\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE3MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83ZWY3OTRmMTRiNGZmMjExYWI1ZTkyLmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/7ef794f14b4ff211ab5e92.jpg\'><img width=\"300\" height=\"225\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/7ef794f14b4ff211ab5e92.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"1ab1f4b72b099257cb1897\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE2NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8xYWIxZjRiNzJiMDk5MjU3Y2IxODk3LmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/1ab1f4b72b099257cb1897.jpg\'><img width=\"300\" height=\"139\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/1ab1f4b72b099257cb1897.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"1d260d2fd2916bcf328099\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE2NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8xZDI2MGQyZmQyOTE2YmNmMzI4MDk5LmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/1d260d2fd2916bcf328099.jpg\'><img width=\"225\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/1d260d2fd2916bcf328099.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"4af3fbfb24459d1bc45484\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE2NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80YWYzZmJmYjI0NDU5ZDFiYzQ1NDg0LmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4af3fbfb24459d1bc45484.jpg\'><img width=\"300\" height=\"225\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4af3fbfb24459d1bc45484.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"4dc6cecf1171a82ff160101\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE2NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80ZGM2Y2VjZjExNzFhODJmZjE2MDEwMS5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4dc6cecf1171a82ff160101.jpg\'><img width=\"139\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4dc6cecf1171a82ff160101.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"7cde64d6bb6802365b79102\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE2OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83Y2RlNjRkNmJiNjgwMjM2NWI3OTEwMi5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/7cde64d6bb6802365b79102.jpg\'><img width=\"300\" height=\"225\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/7cde64d6bb6802365b79102.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"7ef794f14b4ff211ab5e91\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE2OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83ZWY3OTRmMTRiNGZmMjExYWI1ZTkxLmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/7ef794f14b4ff211ab5e91.jpg\'><img width=\"300\" height=\"225\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/7ef794f14b4ff211ab5e91.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"db3e8e365188e8d6b199119\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE2MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kYjNlOGUzNjUxODhlOGQ2YjE5OTExOS5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/db3e8e365188e8d6b199119.jpg\'><img width=\"225\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/db3e8e365188e8d6b199119.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"da27722fad9114cf4d80121\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE2MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kYTI3NzIyZmFkOTExNGNmNGQ4MDEyMS5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/da27722fad9114cf4d80121.jpg\'><img width=\"300\" height=\"225\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/da27722fad9114cf4d80121.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"d037ea3f35818cdfd590114\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE2MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kMDM3ZWEzZjM1ODE4Y2RmZDU5MDExNC5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/d037ea3f35818cdfd590114.jpg\'><img width=\"225\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/d037ea3f35818cdfd590114.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"b9007d06a2b81be642a9109\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE2MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iOTAwN2QwNmEyYjgxYmU2NDJhOTEwOS5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b9007d06a2b81be642a9109.jpg\'><img width=\"300\" height=\"225\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b9007d06a2b81be642a9109.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"b44c1144cefa77a42eeb106\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE1OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iNDRjMTE0NGNlZmE3N2E0MmVlYjEwNi5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b44c1144cefa77a42eeb106.jpg\'><img width=\"139\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b44c1144cefa77a42eeb106.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"49290422db9c62c23b8d125\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE1OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80OTI5MDQyMmRiOWM2MmMyM2I4ZDEyNS5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/49290422db9c62c23b8d125.jpg\'><img width=\"139\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/49290422db9c62c23b8d125.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"995b95524aecf3b2aafd120\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE1MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85OTViOTU1MjRhZWNmM2IyYWFmZDEyMC5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/995b95524aecf3b2aafd120.jpg\'><img width=\"225\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/995b95524aecf3b2aafd120.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"2664d66209dcb082e9cd117\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE1MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yNjY0ZDY2MjA5ZGNiMDgyZTljZDExNy5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/2664d66209dcb082e9cd117.jpg\'><img width=\"225\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2664d66209dcb082e9cd117.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"4185a68d7933c06d9922111\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE1NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80MTg1YTY4ZDc5MzNjMDZkOTkyMjExMS5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4185a68d7933c06d9922111.jpg\'><img width=\"225\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4185a68d7933c06d9922111.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"97509a5945e7fcb9a5f6113\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE1NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85NzUwOWE1OTQ1ZTdmY2I5YTVmNjExMy5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/97509a5945e7fcb9a5f6113.jpg\'><img width=\"300\" height=\"225\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/97509a5945e7fcb9a5f6113.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"0497279ff821417f1830122\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE1NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wNDk3Mjc5ZmY4MjE0MTdmMTgzMDEyMi5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/0497279ff821417f1830122.jpg\'><img width=\"225\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/0497279ff821417f1830122.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"49290422db9c62c23b8d124\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE1NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80OTI5MDQyMmRiOWM2MmMyM2I4ZDEyNC5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/49290422db9c62c23b8d124.jpg\'><img width=\"139\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/49290422db9c62c23b8d124.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"939e3596ea2853760a39104\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE1MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85MzllMzU5NmVhMjg1Mzc2MGEzOTEwNC5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/939e3596ea2853760a39104.jpg\'><img width=\"225\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/939e3596ea2853760a39104.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"795df95426ea9fb4c6fb116\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE1MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OTVkZjk1NDI2ZWE5ZmI0YzZmYjExNi5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/795df95426ea9fb4c6fb116.jpg\'><img width=\"300\" height=\"139\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/795df95426ea9fb4c6fb116.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"96e17fe9a05719094046105\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE0OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85NmUxN2ZlOWEwNTcxOTA5NDA0NjEwNS5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/96e17fe9a05719094046105.jpg\'><img width=\"225\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/96e17fe9a05719094046105.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"53d3a1db7e65c73b9e74107\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE0OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81M2QzYTFkYjdlNjVjNzNiOWU3NDEwNy5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/53d3a1db7e65c73b9e74107.jpg\'><img width=\"225\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/53d3a1db7e65c73b9e74107.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"46f3befa6144d81a8155123\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE0NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80NmYzYmVmYTYxNDRkODFhODE1NTEyMy5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/46f3befa6144d81a8155123.jpg\'><img width=\"225\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/46f3befa6144d81a8155123.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"9d24a12c7e92c7cc9e83108\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE0NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85ZDI0YTEyYzdlOTJjN2NjOWU4MzEwOC5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9d24a12c7e92c7cc9e83108.jpg\'><img width=\"225\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9d24a12c7e92c7cc9e83108.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"b1c8bfc1607fd921806e129\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE0MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iMWM4YmZjMTYwN2ZkOTIxODA2ZTEyOS5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b1c8bfc1607fd921806e129.jpg\'><img width=\"225\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b1c8bfc1607fd921806e129.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"f7f4c2fc1d42a41cfd53131\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE0MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9mN2Y0YzJmYzFkNDJhNDFjZmQ1MzEzMS5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/f7f4c2fc1d42a41cfd53131.jpg\'><img width=\"139\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/f7f4c2fc1d42a41cfd53131.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"0b32f03b2f8596dbcf94112\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE0MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wYjMyZjAzYjJmODU5NmRiY2Y5NDExMi5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/0b32f03b2f8596dbcf94112.jpg\'><img width=\"225\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/0b32f03b2f8596dbcf94112.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"04a0fba924179d49c406110\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE0MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wNGEwZmJhOTI0MTc5ZDQ5YzQwNjExMC5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/04a0fba924179d49c406110.jpg\'><img width=\"225\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/04a0fba924179d49c406110.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"5a19961f49a1f0ffa9b0118\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE0NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81YTE5OTYxZjQ5YTFmMGZmYTliMDExOC5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/5a19961f49a1f0ffa9b0118.jpg\'><img width=\"225\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/5a19961f49a1f0ffa9b0118.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"9a4b7643a9fd10a349ec115\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE0NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85YTRiNzY0M2E5ZmQxMGEzNDllYzExNS5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9a4b7643a9fd10a349ec115.jpg\'><img width=\"225\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9a4b7643a9fd10a349ec115.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"62fb72f0ad4e14104d5f127\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjEzOSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC82MmZiNzJmMGFkNGUxNDEwNGQ1ZjEyNy5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/62fb72f0ad4e14104d5f127.jpg\'><img width=\"300\" height=\"139\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/62fb72f0ad4e14104d5f127.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"57de4ad695682c367579128\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjEzOCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81N2RlNGFkNjk1NjgyYzM2NzU3OTEyOC5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/57de4ad695682c367579128.jpg\'><img width=\"300\" height=\"139\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/57de4ad695682c367579128.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"33ccc7ca1874a12af865132\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjEzNywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8zM2NjYzdjYTE4NzRhMTJhZjg2NTEzMi5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/33ccc7ca1874a12af865132.jpg\'><img width=\"225\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/33ccc7ca1874a12af865132.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"0cc88ec1517fe821b16e130\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjEzNSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wY2M4OGVjMTUxN2ZlODIxYjE2ZTEzMC5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/0cc88ec1517fe821b16e130.jpg\'><img width=\"300\" height=\"172\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/0cc88ec1517fe821b16e130.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"2c7e6676b9c8009659d9126\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjEzNiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yYzdlNjY3NmI5YzgwMDk2NTlkOTEyNi5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/2c7e6676b9c8009659d9126.jpg\'><img width=\"300\" height=\"225\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2c7e6676b9c8009659d9126.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>','Gallery','','inherit','closed','closed','','2126-revision-v1','','','2024-10-21 03:49:39','2024-10-21 03:49:39','',2126,'http://fe2tech.com/?p=2206',0,'revision','',0),(2207,1,'2024-10-21 03:50:49','2024-10-21 03:50:49','<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"e31fda1705a9bcf7e5b870\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjIwMCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9lMzFmZGExNzA1YTliY2Y3ZTViODcwLmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\'><img width=\"300\" height=\"225\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"c20f0a09d5b76ce935a667\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE5OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jMjBmMGEwOWQ1Yjc2Y2U5MzVhNjY3LmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\'><img width=\"300\" height=\"225\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"28706f78b0c6099850d768\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE5NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yODcwNmY3OGIwYzYwOTk4NTBkNzY4LmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\'><img width=\"300\" height=\"230\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"79e03ae8e5565c08054772\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE5NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OWUwM2FlOGU1NTY1YzA4MDU0NzcyLmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\'><img width=\"300\" height=\"225\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"8d79cb7114cfad91f4de73\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE5NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC84ZDc5Y2I3MTE0Y2ZhZDkxZjRkZTczLmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/8d79cb7114cfad91f4de73.jpg\'><img width=\"300\" height=\"225\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/8d79cb7114cfad91f4de73.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"07c54ece9170282e716171\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE5NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wN2M1NGVjZTkxNzAyODJlNzE2MTcxLmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/07c54ece9170282e716171.jpg\'><img width=\"300\" height=\"225\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/07c54ece9170282e716171.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"350f2406fbb842e61ba980\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE4OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8zNTBmMjQwNmZiYjg0MmU2MWJhOTgwLmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/350f2406fbb842e61ba980.jpg\'><img width=\"300\" height=\"225\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/350f2406fbb842e61ba980.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"350f2406fbb842e61ba981\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE4OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8zNTBmMjQwNmZiYjg0MmU2MWJhOTgxLmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/350f2406fbb842e61ba981.jpg\'><img width=\"300\" height=\"225\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/350f2406fbb842e61ba981.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"1289df8f0031b96fe02079\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE5MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8xMjg5ZGY4ZjAwMzFiOTZmZTAyMDc5LmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/1289df8f0031b96fe02079.jpg\'><img width=\"300\" height=\"225\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/1289df8f0031b96fe02079.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"4480b4896b37d2698b2677\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE5MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80NDgwYjQ4OTZiMzdkMjY5OGIyNjc3LmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4480b4896b37d2698b2677.jpg\'><img width=\"300\" height=\"138\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4480b4896b37d2698b2677.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"9505c40d1bb3a2edfba278\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE5MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85NTA1YzQwZDFiYjNhMmVkZmJhMjc4LmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9505c40d1bb3a2edfba278.jpg\'><img width=\"225\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9505c40d1bb3a2edfba278.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"a4888f80503ee960b02f74\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE5MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9hNDg4OGY4MDUwM2VlOTYwYjAyZjc0LmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/a4888f80503ee960b02f74.jpg\'><img width=\"300\" height=\"225\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/a4888f80503ee960b02f74.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"91a553a38c1d35436c0c83\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE4NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85MWE1NTNhMzhjMWQzNTQzNmMwYzgzLmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/91a553a38c1d35436c0c83.jpg\'><img width=\"300\" height=\"225\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/91a553a38c1d35436c0c83.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"57c577cda873112d486282\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE4NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81N2M1NzdjZGE4NzMxMTJkNDg2MjgyLmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/57c577cda873112d486282.jpg\'><img width=\"300\" height=\"225\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/57c577cda873112d486282.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"42f158f887463e18675775\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE4NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80MmYxNThmODg3NDYzZTE4Njc1Nzc1LmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/42f158f887463e18675775.jpg\'><img width=\"300\" height=\"225\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/42f158f887463e18675775.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"38db14d3cb6d72332b7c76\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE4NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8zOGRiMTRkM2NiNmQ3MjMzMmI3Yzc2LmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/38db14d3cb6d72332b7c76.jpg\'><img width=\"225\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/38db14d3cb6d72332b7c76.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"dfb58bbd5403ed5db41286\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE4MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kZmI1OGJiZDU0MDNlZDVkYjQxMjg2LmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/dfb58bbd5403ed5db41286.jpg\'><img width=\"300\" height=\"225\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/dfb58bbd5403ed5db41286.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"ccd73edee160583e017187\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE4MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jY2Q3M2VkZWUxNjA1ODNlMDE3MTg3LmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/ccd73edee160583e017187.jpg\'><img width=\"300\" height=\"225\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/ccd73edee160583e017187.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"844e93464cf8f5a6ace9103\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE3NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC84NDRlOTM0NjRjZjhmNWE2YWNlOTEwMy5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/844e93464cf8f5a6ace9103.jpg\'><img width=\"225\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/844e93464cf8f5a6ace9103.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"a2e5a7ee7850c10e984189\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE3NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9hMmU1YTdlZTc4NTBjMTBlOTg0MTg5LmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/a2e5a7ee7850c10e984189.jpg\'><img width=\"225\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/a2e5a7ee7850c10e984189.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"a2e5a7ee7850c10e984190\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE3OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9hMmU1YTdlZTc4NTBjMTBlOTg0MTkwLmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/a2e5a7ee7850c10e984190.jpg\'><img width=\"225\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/a2e5a7ee7850c10e984190.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"b5ed1be5c45b7d05244a93\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE3OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iNWVkMWJlNWM0NWI3ZDA1MjQ0YTkzLmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b5ed1be5c45b7d05244a93.jpg\'><img width=\"225\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b5ed1be5c45b7d05244a93.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"c010d91906a7bff9e6b685\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE4MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jMDEwZDkxOTA2YTdiZmY5ZTZiNjg1LmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c010d91906a7bff9e6b685.jpg\'><img width=\"300\" height=\"225\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c010d91906a7bff9e6b685.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"c546934e4cf0f5aeace1100\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE4MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jNTQ2OTM0ZTRjZjBmNWFlYWNlMTEwMC5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c546934e4cf0f5aeace1100.jpg\'><img width=\"300\" height=\"139\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c546934e4cf0f5aeace1100.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"795d6c55b3eb0ab553fa94\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE3NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OTVkNmM1NWIzZWIwYWI1NTNmYTk0LmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/795d6c55b3eb0ab553fa94.jpg\'><img width=\"225\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/795d6c55b3eb0ab553fa94.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"284ee1483ef687a8dee795\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE3NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yODRlZTE0ODNlZjY4N2E4ZGVlNzk1LmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/284ee1483ef687a8dee795.jpg\'><img width=\"300\" height=\"225\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/284ee1483ef687a8dee795.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"56c9f8c2277c9e22c76d98\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE3MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81NmM5ZjhjMjI3N2M5ZTIyYzc2ZDk4LmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/56c9f8c2277c9e22c76d98.jpg\'><img width=\"139\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/56c9f8c2277c9e22c76d98.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"41a76fafb011094f500096\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE3MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80MWE3NmZhZmIwMTEwOTRmNTAwMDk2LmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/41a76fafb011094f500096.jpg\'><img width=\"300\" height=\"225\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/41a76fafb011094f500096.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"8ea396aa4914f04aa90588\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE3MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC84ZWEzOTZhYTQ5MTRmMDRhYTkwNTg4LmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/8ea396aa4914f04aa90588.jpg\'><img width=\"300\" height=\"169\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/8ea396aa4914f04aa90588.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"7ef794f14b4ff211ab5e92\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE3MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83ZWY3OTRmMTRiNGZmMjExYWI1ZTkyLmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/7ef794f14b4ff211ab5e92.jpg\'><img width=\"300\" height=\"225\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/7ef794f14b4ff211ab5e92.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"1ab1f4b72b099257cb1897\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE2NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8xYWIxZjRiNzJiMDk5MjU3Y2IxODk3LmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/1ab1f4b72b099257cb1897.jpg\'><img width=\"300\" height=\"139\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/1ab1f4b72b099257cb1897.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"1d260d2fd2916bcf328099\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE2NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8xZDI2MGQyZmQyOTE2YmNmMzI4MDk5LmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/1d260d2fd2916bcf328099.jpg\'><img width=\"225\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/1d260d2fd2916bcf328099.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"4af3fbfb24459d1bc45484\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE2NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80YWYzZmJmYjI0NDU5ZDFiYzQ1NDg0LmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4af3fbfb24459d1bc45484.jpg\'><img width=\"300\" height=\"225\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4af3fbfb24459d1bc45484.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"4dc6cecf1171a82ff160101\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE2NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80ZGM2Y2VjZjExNzFhODJmZjE2MDEwMS5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4dc6cecf1171a82ff160101.jpg\'><img width=\"139\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4dc6cecf1171a82ff160101.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"7cde64d6bb6802365b79102\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE2OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83Y2RlNjRkNmJiNjgwMjM2NWI3OTEwMi5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/7cde64d6bb6802365b79102.jpg\'><img width=\"300\" height=\"225\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/7cde64d6bb6802365b79102.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"7ef794f14b4ff211ab5e91\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE2OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83ZWY3OTRmMTRiNGZmMjExYWI1ZTkxLmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/7ef794f14b4ff211ab5e91.jpg\'><img width=\"300\" height=\"225\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/7ef794f14b4ff211ab5e91.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"db3e8e365188e8d6b199119\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE2MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kYjNlOGUzNjUxODhlOGQ2YjE5OTExOS5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/db3e8e365188e8d6b199119.jpg\'><img width=\"225\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/db3e8e365188e8d6b199119.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"da27722fad9114cf4d80121\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE2MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kYTI3NzIyZmFkOTExNGNmNGQ4MDEyMS5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/da27722fad9114cf4d80121.jpg\'><img width=\"300\" height=\"225\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/da27722fad9114cf4d80121.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"d037ea3f35818cdfd590114\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE2MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kMDM3ZWEzZjM1ODE4Y2RmZDU5MDExNC5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/d037ea3f35818cdfd590114.jpg\'><img width=\"225\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/d037ea3f35818cdfd590114.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"b9007d06a2b81be642a9109\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE2MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iOTAwN2QwNmEyYjgxYmU2NDJhOTEwOS5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b9007d06a2b81be642a9109.jpg\'><img width=\"300\" height=\"225\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b9007d06a2b81be642a9109.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"b44c1144cefa77a42eeb106\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE1OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iNDRjMTE0NGNlZmE3N2E0MmVlYjEwNi5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b44c1144cefa77a42eeb106.jpg\'><img width=\"139\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b44c1144cefa77a42eeb106.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"49290422db9c62c23b8d125\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE1OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80OTI5MDQyMmRiOWM2MmMyM2I4ZDEyNS5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/49290422db9c62c23b8d125.jpg\'><img width=\"139\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/49290422db9c62c23b8d125.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"995b95524aecf3b2aafd120\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE1MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85OTViOTU1MjRhZWNmM2IyYWFmZDEyMC5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/995b95524aecf3b2aafd120.jpg\'><img width=\"225\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/995b95524aecf3b2aafd120.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"2664d66209dcb082e9cd117\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE1MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yNjY0ZDY2MjA5ZGNiMDgyZTljZDExNy5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/2664d66209dcb082e9cd117.jpg\'><img width=\"225\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2664d66209dcb082e9cd117.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"4185a68d7933c06d9922111\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE1NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80MTg1YTY4ZDc5MzNjMDZkOTkyMjExMS5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4185a68d7933c06d9922111.jpg\'><img width=\"225\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4185a68d7933c06d9922111.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"97509a5945e7fcb9a5f6113\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE1NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85NzUwOWE1OTQ1ZTdmY2I5YTVmNjExMy5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/97509a5945e7fcb9a5f6113.jpg\'><img width=\"300\" height=\"225\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/97509a5945e7fcb9a5f6113.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"0497279ff821417f1830122\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE1NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wNDk3Mjc5ZmY4MjE0MTdmMTgzMDEyMi5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/0497279ff821417f1830122.jpg\'><img width=\"225\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/0497279ff821417f1830122.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"49290422db9c62c23b8d124\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE1NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80OTI5MDQyMmRiOWM2MmMyM2I4ZDEyNC5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/49290422db9c62c23b8d124.jpg\'><img width=\"139\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/49290422db9c62c23b8d124.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"939e3596ea2853760a39104\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE1MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85MzllMzU5NmVhMjg1Mzc2MGEzOTEwNC5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/939e3596ea2853760a39104.jpg\'><img width=\"225\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/939e3596ea2853760a39104.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"795df95426ea9fb4c6fb116\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE1MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OTVkZjk1NDI2ZWE5ZmI0YzZmYjExNi5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/795df95426ea9fb4c6fb116.jpg\'><img width=\"300\" height=\"139\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/795df95426ea9fb4c6fb116.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"96e17fe9a05719094046105\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE0OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85NmUxN2ZlOWEwNTcxOTA5NDA0NjEwNS5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/96e17fe9a05719094046105.jpg\'><img width=\"225\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/96e17fe9a05719094046105.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"53d3a1db7e65c73b9e74107\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE0OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81M2QzYTFkYjdlNjVjNzNiOWU3NDEwNy5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/53d3a1db7e65c73b9e74107.jpg\'><img width=\"225\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/53d3a1db7e65c73b9e74107.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"46f3befa6144d81a8155123\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE0NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80NmYzYmVmYTYxNDRkODFhODE1NTEyMy5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/46f3befa6144d81a8155123.jpg\'><img width=\"225\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/46f3befa6144d81a8155123.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"9d24a12c7e92c7cc9e83108\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE0NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85ZDI0YTEyYzdlOTJjN2NjOWU4MzEwOC5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9d24a12c7e92c7cc9e83108.jpg\'><img width=\"225\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9d24a12c7e92c7cc9e83108.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"b1c8bfc1607fd921806e129\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE0MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iMWM4YmZjMTYwN2ZkOTIxODA2ZTEyOS5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b1c8bfc1607fd921806e129.jpg\'><img width=\"225\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b1c8bfc1607fd921806e129.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"f7f4c2fc1d42a41cfd53131\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE0MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9mN2Y0YzJmYzFkNDJhNDFjZmQ1MzEzMS5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/f7f4c2fc1d42a41cfd53131.jpg\'><img width=\"139\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/f7f4c2fc1d42a41cfd53131.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"0b32f03b2f8596dbcf94112\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE0MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wYjMyZjAzYjJmODU5NmRiY2Y5NDExMi5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/0b32f03b2f8596dbcf94112.jpg\'><img width=\"225\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/0b32f03b2f8596dbcf94112.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"04a0fba924179d49c406110\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE0MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wNGEwZmJhOTI0MTc5ZDQ5YzQwNjExMC5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/04a0fba924179d49c406110.jpg\'><img width=\"225\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/04a0fba924179d49c406110.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"5a19961f49a1f0ffa9b0118\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE0NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81YTE5OTYxZjQ5YTFmMGZmYTliMDExOC5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/5a19961f49a1f0ffa9b0118.jpg\'><img width=\"225\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/5a19961f49a1f0ffa9b0118.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"9a4b7643a9fd10a349ec115\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE0NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85YTRiNzY0M2E5ZmQxMGEzNDllYzExNS5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9a4b7643a9fd10a349ec115.jpg\'><img width=\"225\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9a4b7643a9fd10a349ec115.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"62fb72f0ad4e14104d5f127\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjEzOSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC82MmZiNzJmMGFkNGUxNDEwNGQ1ZjEyNy5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/62fb72f0ad4e14104d5f127.jpg\'><img width=\"300\" height=\"139\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/62fb72f0ad4e14104d5f127.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"57de4ad695682c367579128\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjEzOCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81N2RlNGFkNjk1NjgyYzM2NzU3OTEyOC5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/57de4ad695682c367579128.jpg\'><img width=\"300\" height=\"139\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/57de4ad695682c367579128.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"33ccc7ca1874a12af865132\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjEzNywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8zM2NjYzdjYTE4NzRhMTJhZjg2NTEzMi5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/33ccc7ca1874a12af865132.jpg\'><img width=\"225\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/33ccc7ca1874a12af865132.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"0cc88ec1517fe821b16e130\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjEzNSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wY2M4OGVjMTUxN2ZlODIxYjE2ZTEzMC5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/0cc88ec1517fe821b16e130.jpg\'><img width=\"300\" height=\"172\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/0cc88ec1517fe821b16e130.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"2c7e6676b9c8009659d9126\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjEzNiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yYzdlNjY3NmI5YzgwMDk2NTlkOTEyNi5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/2c7e6676b9c8009659d9126.jpg\'><img width=\"300\" height=\"225\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2c7e6676b9c8009659d9126.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>','Gallery','','inherit','closed','closed','','2126-revision-v1','','','2024-10-21 03:50:49','2024-10-21 03:50:49','',2126,'http://fe2tech.com/?p=2207',0,'revision','',0),(2208,1,'2024-10-21 03:50:49','2024-10-21 03:50:49','<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"e31fda1705a9bcf7e5b870\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjIwMCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9lMzFmZGExNzA1YTliY2Y3ZTViODcwLmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\'><img width=\"300\" height=\"225\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"c20f0a09d5b76ce935a667\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE5OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jMjBmMGEwOWQ1Yjc2Y2U5MzVhNjY3LmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\'><img width=\"300\" height=\"225\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"28706f78b0c6099850d768\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE5NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yODcwNmY3OGIwYzYwOTk4NTBkNzY4LmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\'><img width=\"300\" height=\"230\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"79e03ae8e5565c08054772\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE5NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OWUwM2FlOGU1NTY1YzA4MDU0NzcyLmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\'><img width=\"300\" height=\"225\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"8d79cb7114cfad91f4de73\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE5NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC84ZDc5Y2I3MTE0Y2ZhZDkxZjRkZTczLmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/8d79cb7114cfad91f4de73.jpg\'><img width=\"300\" height=\"225\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/8d79cb7114cfad91f4de73.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"07c54ece9170282e716171\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE5NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wN2M1NGVjZTkxNzAyODJlNzE2MTcxLmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/07c54ece9170282e716171.jpg\'><img width=\"300\" height=\"225\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/07c54ece9170282e716171.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"350f2406fbb842e61ba980\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE4OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8zNTBmMjQwNmZiYjg0MmU2MWJhOTgwLmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/350f2406fbb842e61ba980.jpg\'><img width=\"300\" height=\"225\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/350f2406fbb842e61ba980.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"350f2406fbb842e61ba981\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE4OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8zNTBmMjQwNmZiYjg0MmU2MWJhOTgxLmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/350f2406fbb842e61ba981.jpg\'><img width=\"300\" height=\"225\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/350f2406fbb842e61ba981.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"1289df8f0031b96fe02079\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE5MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8xMjg5ZGY4ZjAwMzFiOTZmZTAyMDc5LmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/1289df8f0031b96fe02079.jpg\'><img width=\"300\" height=\"225\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/1289df8f0031b96fe02079.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"4480b4896b37d2698b2677\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE5MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80NDgwYjQ4OTZiMzdkMjY5OGIyNjc3LmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4480b4896b37d2698b2677.jpg\'><img width=\"300\" height=\"138\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4480b4896b37d2698b2677.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"9505c40d1bb3a2edfba278\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE5MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85NTA1YzQwZDFiYjNhMmVkZmJhMjc4LmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9505c40d1bb3a2edfba278.jpg\'><img width=\"225\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9505c40d1bb3a2edfba278.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"a4888f80503ee960b02f74\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE5MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9hNDg4OGY4MDUwM2VlOTYwYjAyZjc0LmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/a4888f80503ee960b02f74.jpg\'><img width=\"300\" height=\"225\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/a4888f80503ee960b02f74.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"91a553a38c1d35436c0c83\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE4NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85MWE1NTNhMzhjMWQzNTQzNmMwYzgzLmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/91a553a38c1d35436c0c83.jpg\'><img width=\"300\" height=\"225\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/91a553a38c1d35436c0c83.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"57c577cda873112d486282\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE4NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81N2M1NzdjZGE4NzMxMTJkNDg2MjgyLmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/57c577cda873112d486282.jpg\'><img width=\"300\" height=\"225\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/57c577cda873112d486282.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"42f158f887463e18675775\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE4NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80MmYxNThmODg3NDYzZTE4Njc1Nzc1LmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/42f158f887463e18675775.jpg\'><img width=\"300\" height=\"225\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/42f158f887463e18675775.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"38db14d3cb6d72332b7c76\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE4NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8zOGRiMTRkM2NiNmQ3MjMzMmI3Yzc2LmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/38db14d3cb6d72332b7c76.jpg\'><img width=\"225\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/38db14d3cb6d72332b7c76.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"dfb58bbd5403ed5db41286\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE4MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kZmI1OGJiZDU0MDNlZDVkYjQxMjg2LmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/dfb58bbd5403ed5db41286.jpg\'><img width=\"300\" height=\"225\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/dfb58bbd5403ed5db41286.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"ccd73edee160583e017187\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE4MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jY2Q3M2VkZWUxNjA1ODNlMDE3MTg3LmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/ccd73edee160583e017187.jpg\'><img width=\"300\" height=\"225\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/ccd73edee160583e017187.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"844e93464cf8f5a6ace9103\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE3NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC84NDRlOTM0NjRjZjhmNWE2YWNlOTEwMy5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/844e93464cf8f5a6ace9103.jpg\'><img width=\"225\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/844e93464cf8f5a6ace9103.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"a2e5a7ee7850c10e984189\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE3NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9hMmU1YTdlZTc4NTBjMTBlOTg0MTg5LmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/a2e5a7ee7850c10e984189.jpg\'><img width=\"225\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/a2e5a7ee7850c10e984189.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"a2e5a7ee7850c10e984190\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE3OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9hMmU1YTdlZTc4NTBjMTBlOTg0MTkwLmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/a2e5a7ee7850c10e984190.jpg\'><img width=\"225\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/a2e5a7ee7850c10e984190.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"b5ed1be5c45b7d05244a93\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE3OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iNWVkMWJlNWM0NWI3ZDA1MjQ0YTkzLmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b5ed1be5c45b7d05244a93.jpg\'><img width=\"225\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b5ed1be5c45b7d05244a93.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"c010d91906a7bff9e6b685\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE4MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jMDEwZDkxOTA2YTdiZmY5ZTZiNjg1LmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c010d91906a7bff9e6b685.jpg\'><img width=\"300\" height=\"225\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c010d91906a7bff9e6b685.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"c546934e4cf0f5aeace1100\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE4MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jNTQ2OTM0ZTRjZjBmNWFlYWNlMTEwMC5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c546934e4cf0f5aeace1100.jpg\'><img width=\"300\" height=\"139\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c546934e4cf0f5aeace1100.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"795d6c55b3eb0ab553fa94\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE3NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OTVkNmM1NWIzZWIwYWI1NTNmYTk0LmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/795d6c55b3eb0ab553fa94.jpg\'><img width=\"225\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/795d6c55b3eb0ab553fa94.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"284ee1483ef687a8dee795\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE3NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yODRlZTE0ODNlZjY4N2E4ZGVlNzk1LmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/284ee1483ef687a8dee795.jpg\'><img width=\"300\" height=\"225\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/284ee1483ef687a8dee795.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"56c9f8c2277c9e22c76d98\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE3MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81NmM5ZjhjMjI3N2M5ZTIyYzc2ZDk4LmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/56c9f8c2277c9e22c76d98.jpg\'><img width=\"139\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/56c9f8c2277c9e22c76d98.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"41a76fafb011094f500096\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE3MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80MWE3NmZhZmIwMTEwOTRmNTAwMDk2LmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/41a76fafb011094f500096.jpg\'><img width=\"300\" height=\"225\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/41a76fafb011094f500096.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"8ea396aa4914f04aa90588\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE3MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC84ZWEzOTZhYTQ5MTRmMDRhYTkwNTg4LmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/8ea396aa4914f04aa90588.jpg\'><img width=\"300\" height=\"169\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/8ea396aa4914f04aa90588.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"7ef794f14b4ff211ab5e92\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE3MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83ZWY3OTRmMTRiNGZmMjExYWI1ZTkyLmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/7ef794f14b4ff211ab5e92.jpg\'><img width=\"300\" height=\"225\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/7ef794f14b4ff211ab5e92.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"1ab1f4b72b099257cb1897\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE2NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8xYWIxZjRiNzJiMDk5MjU3Y2IxODk3LmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/1ab1f4b72b099257cb1897.jpg\'><img width=\"300\" height=\"139\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/1ab1f4b72b099257cb1897.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"1d260d2fd2916bcf328099\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE2NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8xZDI2MGQyZmQyOTE2YmNmMzI4MDk5LmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/1d260d2fd2916bcf328099.jpg\'><img width=\"225\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/1d260d2fd2916bcf328099.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"4af3fbfb24459d1bc45484\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE2NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80YWYzZmJmYjI0NDU5ZDFiYzQ1NDg0LmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4af3fbfb24459d1bc45484.jpg\'><img width=\"300\" height=\"225\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4af3fbfb24459d1bc45484.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"4dc6cecf1171a82ff160101\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE2NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80ZGM2Y2VjZjExNzFhODJmZjE2MDEwMS5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4dc6cecf1171a82ff160101.jpg\'><img width=\"139\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4dc6cecf1171a82ff160101.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"7cde64d6bb6802365b79102\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE2OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83Y2RlNjRkNmJiNjgwMjM2NWI3OTEwMi5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/7cde64d6bb6802365b79102.jpg\'><img width=\"300\" height=\"225\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/7cde64d6bb6802365b79102.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"7ef794f14b4ff211ab5e91\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE2OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83ZWY3OTRmMTRiNGZmMjExYWI1ZTkxLmpwZyIsInNsaWRlc2hvdyI6ImZiYjk1YmIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/7ef794f14b4ff211ab5e91.jpg\'><img width=\"300\" height=\"225\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/7ef794f14b4ff211ab5e91.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"db3e8e365188e8d6b199119\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE2MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kYjNlOGUzNjUxODhlOGQ2YjE5OTExOS5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/db3e8e365188e8d6b199119.jpg\'><img width=\"225\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/db3e8e365188e8d6b199119.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"da27722fad9114cf4d80121\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE2MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kYTI3NzIyZmFkOTExNGNmNGQ4MDEyMS5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/da27722fad9114cf4d80121.jpg\'><img width=\"300\" height=\"225\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/da27722fad9114cf4d80121.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"d037ea3f35818cdfd590114\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE2MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kMDM3ZWEzZjM1ODE4Y2RmZDU5MDExNC5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/d037ea3f35818cdfd590114.jpg\'><img width=\"225\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/d037ea3f35818cdfd590114.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"b9007d06a2b81be642a9109\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE2MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iOTAwN2QwNmEyYjgxYmU2NDJhOTEwOS5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b9007d06a2b81be642a9109.jpg\'><img width=\"300\" height=\"225\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b9007d06a2b81be642a9109.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"b44c1144cefa77a42eeb106\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE1OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iNDRjMTE0NGNlZmE3N2E0MmVlYjEwNi5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b44c1144cefa77a42eeb106.jpg\'><img width=\"139\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b44c1144cefa77a42eeb106.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"49290422db9c62c23b8d125\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE1OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80OTI5MDQyMmRiOWM2MmMyM2I4ZDEyNS5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/49290422db9c62c23b8d125.jpg\'><img width=\"139\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/49290422db9c62c23b8d125.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"995b95524aecf3b2aafd120\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE1MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85OTViOTU1MjRhZWNmM2IyYWFmZDEyMC5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/995b95524aecf3b2aafd120.jpg\'><img width=\"225\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/995b95524aecf3b2aafd120.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"2664d66209dcb082e9cd117\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE1MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yNjY0ZDY2MjA5ZGNiMDgyZTljZDExNy5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/2664d66209dcb082e9cd117.jpg\'><img width=\"225\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2664d66209dcb082e9cd117.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"4185a68d7933c06d9922111\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE1NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80MTg1YTY4ZDc5MzNjMDZkOTkyMjExMS5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4185a68d7933c06d9922111.jpg\'><img width=\"225\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4185a68d7933c06d9922111.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"97509a5945e7fcb9a5f6113\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE1NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85NzUwOWE1OTQ1ZTdmY2I5YTVmNjExMy5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/97509a5945e7fcb9a5f6113.jpg\'><img width=\"300\" height=\"225\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/97509a5945e7fcb9a5f6113.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"0497279ff821417f1830122\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE1NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wNDk3Mjc5ZmY4MjE0MTdmMTgzMDEyMi5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/0497279ff821417f1830122.jpg\'><img width=\"225\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/0497279ff821417f1830122.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"49290422db9c62c23b8d124\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE1NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80OTI5MDQyMmRiOWM2MmMyM2I4ZDEyNC5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/49290422db9c62c23b8d124.jpg\'><img width=\"139\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/49290422db9c62c23b8d124.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"939e3596ea2853760a39104\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE1MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85MzllMzU5NmVhMjg1Mzc2MGEzOTEwNC5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/939e3596ea2853760a39104.jpg\'><img width=\"225\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/939e3596ea2853760a39104.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"795df95426ea9fb4c6fb116\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE1MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OTVkZjk1NDI2ZWE5ZmI0YzZmYjExNi5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/795df95426ea9fb4c6fb116.jpg\'><img width=\"300\" height=\"139\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/795df95426ea9fb4c6fb116.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"96e17fe9a05719094046105\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE0OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85NmUxN2ZlOWEwNTcxOTA5NDA0NjEwNS5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/96e17fe9a05719094046105.jpg\'><img width=\"225\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/96e17fe9a05719094046105.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"53d3a1db7e65c73b9e74107\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE0OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81M2QzYTFkYjdlNjVjNzNiOWU3NDEwNy5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/53d3a1db7e65c73b9e74107.jpg\'><img width=\"225\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/53d3a1db7e65c73b9e74107.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"46f3befa6144d81a8155123\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE0NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80NmYzYmVmYTYxNDRkODFhODE1NTEyMy5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/46f3befa6144d81a8155123.jpg\'><img width=\"225\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/46f3befa6144d81a8155123.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"9d24a12c7e92c7cc9e83108\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE0NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85ZDI0YTEyYzdlOTJjN2NjOWU4MzEwOC5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9d24a12c7e92c7cc9e83108.jpg\'><img width=\"225\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9d24a12c7e92c7cc9e83108.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"b1c8bfc1607fd921806e129\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE0MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iMWM4YmZjMTYwN2ZkOTIxODA2ZTEyOS5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b1c8bfc1607fd921806e129.jpg\'><img width=\"225\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b1c8bfc1607fd921806e129.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"f7f4c2fc1d42a41cfd53131\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE0MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9mN2Y0YzJmYzFkNDJhNDFjZmQ1MzEzMS5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/f7f4c2fc1d42a41cfd53131.jpg\'><img width=\"139\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/f7f4c2fc1d42a41cfd53131.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"0b32f03b2f8596dbcf94112\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE0MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wYjMyZjAzYjJmODU5NmRiY2Y5NDExMi5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/0b32f03b2f8596dbcf94112.jpg\'><img width=\"225\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/0b32f03b2f8596dbcf94112.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"04a0fba924179d49c406110\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE0MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wNGEwZmJhOTI0MTc5ZDQ5YzQwNjExMC5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/04a0fba924179d49c406110.jpg\'><img width=\"225\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/04a0fba924179d49c406110.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"5a19961f49a1f0ffa9b0118\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE0NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81YTE5OTYxZjQ5YTFmMGZmYTliMDExOC5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/5a19961f49a1f0ffa9b0118.jpg\'><img width=\"225\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/5a19961f49a1f0ffa9b0118.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"9a4b7643a9fd10a349ec115\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjE0NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85YTRiNzY0M2E5ZmQxMGEzNDllYzExNS5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9a4b7643a9fd10a349ec115.jpg\'><img width=\"225\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9a4b7643a9fd10a349ec115.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"62fb72f0ad4e14104d5f127\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjEzOSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC82MmZiNzJmMGFkNGUxNDEwNGQ1ZjEyNy5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/62fb72f0ad4e14104d5f127.jpg\'><img width=\"300\" height=\"139\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/62fb72f0ad4e14104d5f127.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"57de4ad695682c367579128\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjEzOCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81N2RlNGFkNjk1NjgyYzM2NzU3OTEyOC5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/57de4ad695682c367579128.jpg\'><img width=\"300\" height=\"139\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/57de4ad695682c367579128.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"33ccc7ca1874a12af865132\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjEzNywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8zM2NjYzdjYTE4NzRhMTJhZjg2NTEzMi5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/33ccc7ca1874a12af865132.jpg\'><img width=\"225\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/33ccc7ca1874a12af865132.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"0cc88ec1517fe821b16e130\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjEzNSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wY2M4OGVjMTUxN2ZlODIxYjE2ZTEzMC5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/0cc88ec1517fe821b16e130.jpg\'><img width=\"300\" height=\"172\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/0cc88ec1517fe821b16e130.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"fbb95bb\" data-elementor-lightbox-title=\"2c7e6676b9c8009659d9126\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjEzNiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yYzdlNjY3NmI5YzgwMDk2NTlkOTEyNi5qcGciLCJzbGlkZXNob3ciOiJmYmI5NWJiIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/2c7e6676b9c8009659d9126.jpg\'><img width=\"300\" height=\"225\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2c7e6676b9c8009659d9126.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>','Gallery','','inherit','closed','closed','','2126-revision-v1','','','2024-10-21 03:50:49','2024-10-21 03:50:49','',2126,'http://fe2tech.com/?p=2208',0,'revision','',0),(2209,1,'2024-10-21 03:50:50','2024-10-21 03:50:50','','Gallery','','inherit','closed','closed','','2126-revision-v1','','','2024-10-21 03:50:50','2024-10-21 03:50:50','',2126,'http://fe2tech.com/?p=2209',0,'revision','',0),(2226,1,'2024-10-21 03:53:27','2024-10-21 03:53:27','','Gallery','','inherit','closed','closed','','2126-revision-v1','','','2024-10-21 03:53:27','2024-10-21 03:53:27','',2126,'http://fe2tech.com/?p=2226',0,'revision','',0),(2227,1,'2024-10-21 03:53:27','2024-10-21 03:53:27','','Gallery','','inherit','closed','closed','','2126-revision-v1','','','2024-10-21 03:53:27','2024-10-21 03:53:27','',2126,'http://fe2tech.com/?p=2227',0,'revision','',0),(2228,1,'2024-10-21 03:53:27','2024-10-21 03:53:27','<img src=\"\" width=\"\" height=\"\" alt=\"79e03ae8e5565c08054772\" title=\"79e03ae8e5565c08054772\" />                                \n                                                                    <h3>hii</h3>\n                                    <img src=\"\" width=\"\" height=\"\" alt=\"79e03ae8e5565c08054772\" title=\"79e03ae8e5565c08054772\" />                                \n                                                                            <h3><a href=\"https://fe2tech.com/portfolio/hii/\">hii</a></h3>\n                                            <a href=\"https://fe2tech.com/portfolio/hii/\">+</a>\n                                    <img src=\"\" width=\"\" height=\"\" alt=\"28706f78b0c6099850d768\" title=\"28706f78b0c6099850d768\" />                                \n                                                                    <h3>hihi</h3>\n                                    <img src=\"\" width=\"\" height=\"\" alt=\"28706f78b0c6099850d768\" title=\"28706f78b0c6099850d768\" />                                \n                                                                            <h3><a href=\"https://fe2tech.com/portfolio/hihi-3/\">hihi</a></h3>\n                                            <a href=\"https://fe2tech.com/portfolio/hihi-3/\">+</a>\n                                    <img src=\"\" width=\"\" height=\"\" alt=\"c20f0a09d5b76ce935a667\" title=\"c20f0a09d5b76ce935a667\" />                                \n                                                                    <h3>hihi</h3>\n                                    <img src=\"\" width=\"\" height=\"\" alt=\"c20f0a09d5b76ce935a667\" title=\"c20f0a09d5b76ce935a667\" />                                \n                                                                            <h3><a href=\"https://fe2tech.com/portfolio/hihi-2/\">hihi</a></h3>\n                                            <a href=\"https://fe2tech.com/portfolio/hihi-2/\">+</a>\n                                    <img src=\"\" width=\"\" height=\"\" alt=\"e31fda1705a9bcf7e5b870\" title=\"e31fda1705a9bcf7e5b870\" />                                \n                                                                    <h3>hihi</h3>\n                                    <img src=\"\" width=\"\" height=\"\" alt=\"e31fda1705a9bcf7e5b870\" title=\"e31fda1705a9bcf7e5b870\" />                                \n                                                                            <h3><a href=\"https://fe2tech.com/portfolio/hihi/\">hihi</a></h3>\n                                            <a href=\"https://fe2tech.com/portfolio/hihi/\">+</a>','Gallery','','inherit','closed','closed','','2126-revision-v1','','','2024-10-21 03:53:27','2024-10-21 03:53:27','',2126,'http://fe2tech.com/?p=2228',0,'revision','',0),(2239,1,'2024-10-21 04:14:07','2024-10-21 04:14:07','<img src=\"\" width=\"\" height=\"\" alt=\"79e03ae8e5565c08054772\" title=\"79e03ae8e5565c08054772\" />                                \n                                                                    <h3>hii</h3>\n                                    <img src=\"\" width=\"\" height=\"\" alt=\"79e03ae8e5565c08054772\" title=\"79e03ae8e5565c08054772\" />                                \n                                                                            <h3><a href=\"https://fe2tech.com/portfolio/hii/\">hii</a></h3>\n                                            <a href=\"https://fe2tech.com/portfolio/hii/\">+</a>\n                                    <img src=\"\" width=\"\" height=\"\" alt=\"28706f78b0c6099850d768\" title=\"28706f78b0c6099850d768\" />                                \n                                                                    <h3>hihi</h3>\n                                    <img src=\"\" width=\"\" height=\"\" alt=\"28706f78b0c6099850d768\" title=\"28706f78b0c6099850d768\" />                                \n                                                                            <h3><a href=\"https://fe2tech.com/portfolio/hihi-3/\">hihi</a></h3>\n                                            <a href=\"https://fe2tech.com/portfolio/hihi-3/\">+</a>\n                                    <img src=\"\" width=\"\" height=\"\" alt=\"c20f0a09d5b76ce935a667\" title=\"c20f0a09d5b76ce935a667\" />                                \n                                                                    <h3>hihi</h3>\n                                    <img src=\"\" width=\"\" height=\"\" alt=\"c20f0a09d5b76ce935a667\" title=\"c20f0a09d5b76ce935a667\" />                                \n                                                                            <h3><a href=\"https://fe2tech.com/portfolio/hihi-2/\">hihi</a></h3>\n                                            <a href=\"https://fe2tech.com/portfolio/hihi-2/\">+</a>\n                                    <img src=\"\" width=\"\" height=\"\" alt=\"e31fda1705a9bcf7e5b870\" title=\"e31fda1705a9bcf7e5b870\" />                                \n                                                                    <h3>hihi</h3>\n                                    <img src=\"\" width=\"\" height=\"\" alt=\"e31fda1705a9bcf7e5b870\" title=\"e31fda1705a9bcf7e5b870\" />                                \n                                                                            <h3><a href=\"https://fe2tech.com/portfolio/hihi/\">hihi</a></h3>\n                                            <a href=\"https://fe2tech.com/portfolio/hihi/\">+</a>','Gallery','','inherit','closed','closed','','2126-revision-v1','','','2024-10-21 04:14:07','2024-10-21 04:14:07','',2126,'http://fe2tech.com/?p=2239',0,'revision','',0),(2240,1,'2024-10-21 04:14:07','2024-10-21 04:14:07','<img src=\"\" width=\"\" height=\"\" alt=\"79e03ae8e5565c08054772\" title=\"79e03ae8e5565c08054772\" />                                \n                                                                    <h3>hii</h3>\n                                    <img src=\"\" width=\"\" height=\"\" alt=\"79e03ae8e5565c08054772\" title=\"79e03ae8e5565c08054772\" />                                \n                                                                            <h3><a href=\"https://fe2tech.com/portfolio/hii/\">hii</a></h3>\n                                            <a href=\"https://fe2tech.com/portfolio/hii/\">+</a>\n                                    <img src=\"\" width=\"\" height=\"\" alt=\"28706f78b0c6099850d768\" title=\"28706f78b0c6099850d768\" />                                \n                                                                    <h3>hihi</h3>\n                                    <img src=\"\" width=\"\" height=\"\" alt=\"28706f78b0c6099850d768\" title=\"28706f78b0c6099850d768\" />                                \n                                                                            <h3><a href=\"https://fe2tech.com/portfolio/hihi-3/\">hihi</a></h3>\n                                            <a href=\"https://fe2tech.com/portfolio/hihi-3/\">+</a>\n                                    <img src=\"\" width=\"\" height=\"\" alt=\"c20f0a09d5b76ce935a667\" title=\"c20f0a09d5b76ce935a667\" />                                \n                                                                    <h3>hihi</h3>\n                                    <img src=\"\" width=\"\" height=\"\" alt=\"c20f0a09d5b76ce935a667\" title=\"c20f0a09d5b76ce935a667\" />                                \n                                                                            <h3><a href=\"https://fe2tech.com/portfolio/hihi-2/\">hihi</a></h3>\n                                            <a href=\"https://fe2tech.com/portfolio/hihi-2/\">+</a>\n                                    <img src=\"\" width=\"\" height=\"\" alt=\"e31fda1705a9bcf7e5b870\" title=\"e31fda1705a9bcf7e5b870\" />                                \n                                                                    <h3>hihi</h3>\n                                    <img src=\"\" width=\"\" height=\"\" alt=\"e31fda1705a9bcf7e5b870\" title=\"e31fda1705a9bcf7e5b870\" />                                \n                                                                            <h3><a href=\"https://fe2tech.com/portfolio/hihi/\">hihi</a></h3>\n                                            <a href=\"https://fe2tech.com/portfolio/hihi/\">+</a>','Gallery','','inherit','closed','closed','','2126-revision-v1','','','2024-10-21 04:14:07','2024-10-21 04:14:07','',2126,'http://fe2tech.com/?p=2240',0,'revision','',0),(2241,1,'2024-10-21 04:14:07','2024-10-21 04:14:07','','Gallery','','inherit','closed','closed','','2126-revision-v1','','','2024-10-21 04:14:07','2024-10-21 04:14:07','',2126,'http://fe2tech.com/?p=2241',0,'revision','',0),(2242,1,'2024-10-21 04:14:46','2024-10-21 04:14:46','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We assess plans and provide tailored machinery.    </h3>\n		<p>Our company’s strength lies in our team, who have developed groundbreaking machinery and equipment.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"151\" height=\"50\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Awards Winner\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Satisfied Clients\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Active projects\n													<img width=\"516\" height=\"290\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/home-image-01.png\" alt=\"\" />													\n    	<img width=\"502\" height=\"412\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-02.jpg\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n    	    	201 Award-winning machinery and equipment manufacturing company.\n	    <h3>\n        We help you build your vision with our machinery.    </h3>\n		<p>We approach every project with precision and value clear, simple communication.</p>		\n                                            Engineering\n                                        85%\n                                            Design\n                                        80%\n                                            Production\n                                        90%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/surface-demolition/\">Surface Demolition</a></h3>\n                                        Lorem Ipsum available, but the majority have to suffered alterati on in som. It is a long to be hoy established fact that a reader.                                    \n                                        <a href=\"https://fe2tech.com/service/surface-demolition/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/laminate-flooring/\">Laminate Flooring</a></h3>\n                                        Lorem Ipsum available, but the majority have to suffered alterati on in som. It is a long to be hoy established fact that a reader.                                    \n                                        <a href=\"https://fe2tech.com/service/laminate-flooring/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/house-renovation/\">House Renovation</a></h3>\n                                        Lorem Ipsum available, but the majority have to suffered alterati on in som. It is a long to be hoy established fact that a reader.                                    \n                                        <a href=\"https://fe2tech.com/service/house-renovation/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/general-contracting/\">General Contracting</a></h3>\n                                        Lorem Ipsum available, but the majority have to suffered alterati on in som. It is a long to be hoy established fact that a reader.                                    \n                                        <a href=\"https://fe2tech.com/service/general-contracting/\">Read more</a>\n    <a href=\"https://fe2tech.com/services-v-1/\">\n                More services\n    </a>\n	    <h3>\n        Our Partners    </h3>\n                                <a href=\"#\"><img width=\"169\" height=\"35\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"143\" height=\"42\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"166\" height=\"38\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"170\" height=\"35\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 800 250 369\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We help businesses thrive by providing the latest machinery technology.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                        <a href=\"#\">Discover more</a>\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\n                        <a href=\"#\">Contact</a>\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                        <a href=\"#\">Place order</a>\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n                        <a href=\"#\">Make a payment</a>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Services\">Services</option><option value=\"Interior Design\">Interior Design</option><option value=\"Metal Roofing\">Metal Roofing</option><option value=\"House Remodel\">House Remodel</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-10-21 04:14:46','2024-10-21 04:14:46','',9,'http://fe2tech.com/?p=2242',0,'revision','',0),(2243,1,'2024-10-21 04:14:46','2024-10-21 04:14:46','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We assess plans and provide tailored machinery.    </h3>\n		<p>Our company’s strength lies in our team, who have developed groundbreaking machinery and equipment.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"151\" height=\"50\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Awards Winner\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Satisfied Clients\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Active projects\n													<img width=\"516\" height=\"290\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/home-image-01.png\" alt=\"\" />													\n    	<img width=\"502\" height=\"412\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-02.jpg\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n    	    	201 Award-winning machinery and equipment manufacturing company.\n	    <h3>\n        We help you build your vision with our machinery.    </h3>\n		<p>We approach every project with precision and value clear, simple communication.</p>		\n                                            Engineering\n                                        85%\n                                            Design\n                                        80%\n                                            Production\n                                        90%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/surface-demolition/\">Surface Demolition</a></h3>\n                                        Lorem Ipsum available, but the majority have to suffered alterati on in som. It is a long to be hoy established fact that a reader.                                    \n                                        <a href=\"https://fe2tech.com/service/surface-demolition/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/laminate-flooring/\">Laminate Flooring</a></h3>\n                                        Lorem Ipsum available, but the majority have to suffered alterati on in som. It is a long to be hoy established fact that a reader.                                    \n                                        <a href=\"https://fe2tech.com/service/laminate-flooring/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/house-renovation/\">House Renovation</a></h3>\n                                        Lorem Ipsum available, but the majority have to suffered alterati on in som. It is a long to be hoy established fact that a reader.                                    \n                                        <a href=\"https://fe2tech.com/service/house-renovation/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/general-contracting/\">General Contracting</a></h3>\n                                        Lorem Ipsum available, but the majority have to suffered alterati on in som. It is a long to be hoy established fact that a reader.                                    \n                                        <a href=\"https://fe2tech.com/service/general-contracting/\">Read more</a>\n    <a href=\"https://fe2tech.com/services-v-1/\">\n                More services\n    </a>\n	    <h3>\n        Our Partners    </h3>\n                                <a href=\"#\"><img width=\"169\" height=\"35\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"143\" height=\"42\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"166\" height=\"38\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"170\" height=\"35\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 800 250 369\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We help businesses thrive by providing the latest machinery technology.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                        <a href=\"#\">Discover more</a>\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\n                        <a href=\"#\">Contact</a>\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                        <a href=\"#\">Place order</a>\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n                        <a href=\"#\">Make a payment</a>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Services\">Services</option><option value=\"Interior Design\">Interior Design</option><option value=\"Metal Roofing\">Metal Roofing</option><option value=\"House Remodel\">House Remodel</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-10-21 04:14:46','2024-10-21 04:14:46','',9,'http://fe2tech.com/?p=2243',0,'revision','',0),(2244,1,'2024-10-21 04:14:46','2024-10-21 04:14:46','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We assess plans and provide tailored machinery.    </h3>\n		<p>Our company’s strength lies in our team, who have developed groundbreaking machinery and equipment.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"151\" height=\"50\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Awards Winner\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Satisfied Clients\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Active projects\n													<img width=\"516\" height=\"290\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/home-image-01.png\" alt=\"\" />													\n    	<img width=\"502\" height=\"412\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-02.jpg\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n    	    	201 Award-winning machinery and equipment manufacturing company.\n	    <h3>\n        We help you build your vision with our machinery.    </h3>\n		<p>We approach every project with precision and value clear, simple communication.</p>		\n                                            Engineering\n                                        85%\n                                            Design\n                                        80%\n                                            Production\n                                        90%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/automated-welding-services/\">Automated Welding Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/automated-welding-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/hydraulic-press-services/\">Hydraulic Press Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/hydraulic-press-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/grinding-service/\">Grinding Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/grinding-service/\">Read more</a>\n    <a href=\"https://fe2tech.com/services-v-1/\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 800 250 369\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_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	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We help businesses thrive by providing the latest machinery technology.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                        <a href=\"#\">Discover more</a>\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\n                        <a href=\"#\">Contact</a>\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                        <a href=\"#\">Place order</a>\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n                        <a href=\"#\">Make a payment</a>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Services\">Services</option><option value=\"Interior Design\">Interior Design</option><option value=\"Metal Roofing\">Metal Roofing</option><option value=\"House Remodel\">House Remodel</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><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=\"18\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-10-21 04:14:46','2024-10-21 04:14:46','',9,'http://fe2tech.com/?p=2244',0,'revision','',0),(2245,1,'2024-10-21 04:15:58','2024-10-21 04:15:58','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We assess plans and provide tailored machinery.    </h3>\n		<p>Our company’s strength lies in our team, who have developed groundbreaking machinery and equipment.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"151\" height=\"50\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Awards Winner\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Satisfied Clients\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Active projects\n													<img width=\"516\" height=\"290\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/home-image-01.png\" alt=\"\" />													\n    	<img width=\"502\" height=\"412\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-02.jpg\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n    	    	201 Award-winning machinery and equipment manufacturing company.\n	    <h3>\n        We help you build your vision with our machinery.    </h3>\n		<p>We approach every project with precision and value clear, simple communication.</p>		\n                                            Engineering\n                                        85%\n                                            Design\n                                        80%\n                                            Production\n                                        90%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/automated-welding-services/\">Automated Welding Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/automated-welding-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/hydraulic-press-services/\">Hydraulic Press Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/hydraulic-press-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/grinding-service/\">Grinding Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/grinding-service/\">Read more</a>\n    <a href=\"https://fe2tech.com/services-v-1/\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 800 250 369\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_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	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We help businesses thrive by providing the latest machinery technology.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                        <a href=\"#\">Discover more</a>\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\n                        <a href=\"#\">Contact</a>\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                        <a href=\"#\">Place order</a>\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n                        <a href=\"#\">Make a payment</a>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Services\">Services</option><option value=\"Interior Design\">Interior Design</option><option value=\"Metal Roofing\">Metal Roofing</option><option value=\"House Remodel\">House Remodel</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><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=\"18\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-10-21 04:15:58','2024-10-21 04:15:58','',9,'http://fe2tech.com/?p=2245',0,'revision','',0),(2246,1,'2024-10-21 04:15:58','2024-10-21 04:15:58','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We assess plans and provide tailored machinery.    </h3>\n		<p>Our company’s strength lies in our team, who have developed groundbreaking machinery and equipment.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"151\" height=\"50\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Awards Winner\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Satisfied Clients\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Active projects\n													<img width=\"516\" height=\"290\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/home-image-01.png\" alt=\"\" />													\n    	<img width=\"502\" height=\"412\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-02.jpg\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n    	    	201 Award-winning machinery and equipment manufacturing company.\n	    <h3>\n        We help you build your vision with our machinery.    </h3>\n		<p>We approach every project with precision and value clear, simple communication.</p>		\n                                            Engineering\n                                        85%\n                                            Design\n                                        80%\n                                            Production\n                                        90%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/automated-welding-services/\">Automated Welding Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/automated-welding-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/hydraulic-press-services/\">Hydraulic Press Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/hydraulic-press-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/grinding-service/\">Grinding Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/grinding-service/\">Read more</a>\n    <a href=\"https://fe2tech.com/services-v-1/\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 800 250 369\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_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	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We help businesses thrive by providing the latest machinery technology.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                        <a href=\"#\">Discover more</a>\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\n                        <a href=\"#\">Contact</a>\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                        <a href=\"#\">Place order</a>\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n                        <a href=\"#\">Make a payment</a>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Services\">Services</option><option value=\"Interior Design\">Interior Design</option><option value=\"Metal Roofing\">Metal Roofing</option><option value=\"House Remodel\">House Remodel</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><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=\"18\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-10-21 04:15:58','2024-10-21 04:15:58','',9,'http://fe2tech.com/?p=2246',0,'revision','',0),(2247,1,'2024-10-21 04:15:58','2024-10-21 04:15:58','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We assess plans and provide tailored machinery.    </h3>\n		<p>Our company’s strength lies in our team, who have developed groundbreaking machinery and equipment.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"151\" height=\"50\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Awards Winner\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Satisfied Clients\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Active projects\n													<img width=\"516\" height=\"290\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/home-image-01.png\" alt=\"\" />													\n    	<img width=\"502\" height=\"412\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-02.jpg\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n    	    	201 Award-winning machinery and equipment manufacturing company.\n	    <h3>\n        We help you build your vision with our machinery.    </h3>\n		<p>We approach every project with precision and value clear, simple communication.</p>		\n                                            Engineering\n                                        85%\n                                            Design\n                                        80%\n                                            Production\n                                        90%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/automated-welding-services/\">Automated Welding Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/automated-welding-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/hydraulic-press-services/\">Hydraulic Press Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/hydraulic-press-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/grinding-service/\">Grinding Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/grinding-service/\">Read more</a>\n    <a href=\"https://fe2tech.com/services-v-1/\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 800 250 369\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"246\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We help businesses thrive by providing the latest machinery technology.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                        <a href=\"#\">Discover more</a>\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\n                        <a href=\"#\">Contact</a>\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                        <a href=\"#\">Place order</a>\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n                        <a href=\"#\">Make a payment</a>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20%C4%91%C6%B0%E1%BB%9Dng%20s%E1%BB%91%204%2C%20KP2%2C%20P.%20B%C3%ACnh%20Chi%E1%BB%83u%2C%20TP.%20Th%E1%BB%A7%20%C4%90%E1%BB%A9c%2C%20TPHCM&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n					aria-label=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Services\">Services</option><option value=\"Interior Design\">Interior Design</option><option value=\"Metal Roofing\">Metal Roofing</option><option value=\"House Remodel\">House Remodel</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><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=\"73\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-10-21 04:15:58','2024-10-21 04:15:58','',9,'http://fe2tech.com/?p=2247',0,'revision','',0),(2248,1,'2024-10-21 04:16:23','2024-10-21 04:16:23','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We assess plans and provide tailored machinery.    </h3>\n		<p>Our company’s strength lies in our team, who have developed groundbreaking machinery and equipment.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"151\" height=\"50\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Awards Winner\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Satisfied Clients\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Active projects\n													<img width=\"516\" height=\"290\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/home-image-01.png\" alt=\"\" />													\n    	<img width=\"502\" height=\"412\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-02.jpg\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n    	    	201 Award-winning machinery and equipment manufacturing company.\n	    <h3>\n        We help you build your vision with our machinery.    </h3>\n		<p>We approach every project with precision and value clear, simple communication.</p>		\n                                            Engineering\n                                        85%\n                                            Design\n                                        80%\n                                            Production\n                                        90%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/automated-welding-services/\">Automated Welding Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/automated-welding-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/hydraulic-press-services/\">Hydraulic Press Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/hydraulic-press-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/grinding-service/\">Grinding Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/grinding-service/\">Read more</a>\n    <a href=\"https://fe2tech.com/services-v-1/\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 800 250 369\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"246\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We help businesses thrive by providing the latest machinery technology.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                        <a href=\"#\">Discover more</a>\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\n                        <a href=\"#\">Contact</a>\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                        <a href=\"#\">Place order</a>\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n                        <a href=\"#\">Make a payment</a>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20%C4%91%C6%B0%E1%BB%9Dng%20s%E1%BB%91%204%2C%20KP2%2C%20P.%20B%C3%ACnh%20Chi%E1%BB%83u%2C%20TP.%20Th%E1%BB%A7%20%C4%90%E1%BB%A9c%2C%20TPHCM&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n					aria-label=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Services\">Services</option><option value=\"Interior Design\">Interior Design</option><option value=\"Metal Roofing\">Metal Roofing</option><option value=\"House Remodel\">House Remodel</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><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=\"73\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-10-21 04:16:23','2024-10-21 04:16:23','',9,'http://fe2tech.com/?p=2248',0,'revision','',0),(2249,1,'2024-10-21 04:16:23','2024-10-21 04:16:23','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We assess plans and provide tailored machinery.    </h3>\n		<p>Our company’s strength lies in our team, who have developed groundbreaking machinery and equipment.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"151\" height=\"50\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Awards Winner\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Satisfied Clients\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Active projects\n													<img width=\"516\" height=\"290\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/home-image-01.png\" alt=\"\" />													\n    	<img width=\"502\" height=\"412\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-02.jpg\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n    	    	201 Award-winning machinery and equipment manufacturing company.\n	    <h3>\n        We help you build your vision with our machinery.    </h3>\n		<p>We approach every project with precision and value clear, simple communication.</p>		\n                                            Engineering\n                                        85%\n                                            Design\n                                        80%\n                                            Production\n                                        90%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/automated-welding-services/\">Automated Welding Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/automated-welding-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/hydraulic-press-services/\">Hydraulic Press Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/hydraulic-press-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/grinding-service/\">Grinding Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/grinding-service/\">Read more</a>\n    <a href=\"https://fe2tech.com/services-v-1/\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 800 250 369\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"246\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We help businesses thrive by providing the latest machinery technology.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                        <a href=\"#\">Discover more</a>\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\n                        <a href=\"#\">Contact</a>\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                        <a href=\"#\">Place order</a>\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n                        <a href=\"#\">Make a payment</a>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20%C4%91%C6%B0%E1%BB%9Dng%20s%E1%BB%91%204%2C%20KP2%2C%20P.%20B%C3%ACnh%20Chi%E1%BB%83u%2C%20TP.%20Th%E1%BB%A7%20%C4%90%E1%BB%A9c%2C%20TPHCM&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n					aria-label=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Services\">Services</option><option value=\"Interior Design\">Interior Design</option><option value=\"Metal Roofing\">Metal Roofing</option><option value=\"House Remodel\">House Remodel</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><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=\"73\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-10-21 04:16:23','2024-10-21 04:16:23','',9,'http://fe2tech.com/?p=2249',0,'revision','',0),(2250,1,'2024-10-21 04:16:23','2024-10-21 04:16:23','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We assess plans and provide tailored machinery.    </h3>\n		<p>Our company’s strength lies in our team, who have developed groundbreaking machinery and equipment.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"151\" height=\"50\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Awards Winner\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Satisfied Clients\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Active projects\n													<img width=\"516\" height=\"290\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/home-image-01.png\" alt=\"\" />													\n    	<img width=\"502\" height=\"412\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-02.jpg\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n    	    	201 Award-winning machinery and equipment manufacturing company.\n	    <h3>\n        We help you build your vision with our machinery.    </h3>\n		<p>We approach every project with precision and value clear, simple communication.</p>		\n                                            Engineering\n                                        85%\n                                            Design\n                                        80%\n                                            Production\n                                        90%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/automated-welding-services/\">Automated Welding Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/automated-welding-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/hydraulic-press-services/\">Hydraulic Press Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/hydraulic-press-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/grinding-service/\">Grinding Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/grinding-service/\">Read more</a>\n    <a href=\"https://fe2tech.com/services-v-1/\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 800 250 369\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"133\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We help businesses thrive by providing the latest machinery technology.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                        <a href=\"#\">Discover more</a>\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\n                        <a href=\"#\">Contact</a>\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                        <a href=\"#\">Place order</a>\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n                        <a href=\"#\">Make a payment</a>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20%C4%91%C6%B0%E1%BB%9Dng%20s%E1%BB%91%204%2C%20KP2%2C%20P.%20B%C3%ACnh%20Chi%E1%BB%83u%2C%20TP.%20Th%E1%BB%A7%20%C4%90%E1%BB%A9c%2C%20TPHCM&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n					aria-label=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Services\">Services</option><option value=\"Interior Design\">Interior Design</option><option value=\"Metal Roofing\">Metal Roofing</option><option value=\"House Remodel\">House Remodel</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><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=\"183\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-10-21 04:16:23','2024-10-21 04:16:23','',9,'http://fe2tech.com/?p=2250',0,'revision','',0),(2251,1,'2024-10-21 04:17:11','2024-10-21 04:17:11','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We assess plans and provide tailored machinery.    </h3>\n		<p>Our company’s strength lies in our team, who have developed groundbreaking machinery and equipment.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"151\" height=\"50\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Awards Winner\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Satisfied Clients\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Active projects\n													<img width=\"516\" height=\"290\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/home-image-01.png\" alt=\"\" />													\n    	<img width=\"502\" height=\"412\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-02.jpg\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n    	    	201 Award-winning machinery and equipment manufacturing company.\n	    <h3>\n        We help you build your vision with our machinery.    </h3>\n		<p>We approach every project with precision and value clear, simple communication.</p>		\n                                            Engineering\n                                        85%\n                                            Design\n                                        80%\n                                            Production\n                                        90%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/automated-welding-services/\">Automated Welding Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/automated-welding-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/hydraulic-press-services/\">Hydraulic Press Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/hydraulic-press-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/grinding-service/\">Grinding Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/grinding-service/\">Read more</a>\n    <a href=\"https://fe2tech.com/services-v-1/\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 800 250 369\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"133\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We help businesses thrive by providing the latest machinery technology.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                        <a href=\"#\">Discover more</a>\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\n                        <a href=\"#\">Contact</a>\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                        <a href=\"#\">Place order</a>\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n                        <a href=\"#\">Make a payment</a>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20%C4%91%C6%B0%E1%BB%9Dng%20s%E1%BB%91%204%2C%20KP2%2C%20P.%20B%C3%ACnh%20Chi%E1%BB%83u%2C%20TP.%20Th%E1%BB%A7%20%C4%90%E1%BB%A9c%2C%20TPHCM&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n					aria-label=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Services\">Services</option><option value=\"Interior Design\">Interior Design</option><option value=\"Metal Roofing\">Metal Roofing</option><option value=\"House Remodel\">House Remodel</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><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=\"183\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-10-21 04:17:11','2024-10-21 04:17:11','',9,'http://fe2tech.com/?p=2251',0,'revision','',0),(2252,1,'2024-10-21 04:17:11','2024-10-21 04:17:11','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We assess plans and provide tailored machinery.    </h3>\n		<p>Our company’s strength lies in our team, who have developed groundbreaking machinery and equipment.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"151\" height=\"50\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Awards Winner\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Satisfied Clients\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Active projects\n													<img width=\"516\" height=\"290\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/home-image-01.png\" alt=\"\" />													\n    	<img width=\"502\" height=\"412\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-02.jpg\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n    	    	201 Award-winning machinery and equipment manufacturing company.\n	    <h3>\n        We help you build your vision with our machinery.    </h3>\n		<p>We approach every project with precision and value clear, simple communication.</p>		\n                                            Engineering\n                                        85%\n                                            Design\n                                        80%\n                                            Production\n                                        90%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/automated-welding-services/\">Automated Welding Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/automated-welding-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/hydraulic-press-services/\">Hydraulic Press Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/hydraulic-press-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/grinding-service/\">Grinding Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/grinding-service/\">Read more</a>\n    <a href=\"https://fe2tech.com/services-v-1/\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 800 250 369\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"133\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We help businesses thrive by providing the latest machinery technology.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                        <a href=\"#\">Discover more</a>\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\n                        <a href=\"#\">Contact</a>\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                        <a href=\"#\">Place order</a>\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n                        <a href=\"#\">Make a payment</a>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20%C4%91%C6%B0%E1%BB%9Dng%20s%E1%BB%91%204%2C%20KP2%2C%20P.%20B%C3%ACnh%20Chi%E1%BB%83u%2C%20TP.%20Th%E1%BB%A7%20%C4%90%E1%BB%A9c%2C%20TPHCM&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n					aria-label=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Services\">Services</option><option value=\"Interior Design\">Interior Design</option><option value=\"Metal Roofing\">Metal Roofing</option><option value=\"House Remodel\">House Remodel</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><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=\"183\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-10-21 04:17:11','2024-10-21 04:17:11','',9,'http://fe2tech.com/?p=2252',0,'revision','',0),(2253,1,'2024-10-21 04:17:11','2024-10-21 04:17:11','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We assess plans and provide tailored machinery.    </h3>\n		<p>Our company’s strength lies in our team, who have developed groundbreaking machinery and equipment.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"151\" height=\"50\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Awards Winner\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Satisfied Clients\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Active projects\n													<img width=\"516\" height=\"290\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/home-image-01.png\" alt=\"\" />													\n    	<img width=\"502\" height=\"412\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-02.jpg\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n    	    	201 Award-winning machinery and equipment manufacturing company.\n	    <h3>\n        We help you build your vision with our machinery.    </h3>\n		<p>We approach every project with precision and value clear, simple communication.</p>		\n                                            Engineering\n                                        85%\n                                            Design\n                                        80%\n                                            Production\n                                        90%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/automated-welding-services/\">Automated Welding Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/automated-welding-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/hydraulic-press-services/\">Hydraulic Press Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/hydraulic-press-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/grinding-service/\">Grinding Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/grinding-service/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 800 250 369\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"58\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We help businesses thrive by providing the latest machinery technology.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                        <a href=\"#\">Discover more</a>\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\n                        <a href=\"#\">Contact</a>\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                        <a href=\"#\">Place order</a>\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n                        <a href=\"#\">Make a payment</a>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20%C4%91%C6%B0%E1%BB%9Dng%20s%E1%BB%91%204%2C%20KP2%2C%20P.%20B%C3%ACnh%20Chi%E1%BB%83u%2C%20TP.%20Th%E1%BB%A7%20%C4%90%E1%BB%A9c%2C%20TPHCM&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n					aria-label=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Services\">Services</option><option value=\"Interior Design\">Interior Design</option><option value=\"Metal Roofing\">Metal Roofing</option><option value=\"House Remodel\">House Remodel</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><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=\"37\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-10-21 04:17:11','2024-10-21 04:17:11','',9,'http://fe2tech.com/?p=2253',0,'revision','',0),(2254,1,'2024-10-21 04:18:22','2024-10-21 04:18:22','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We assess plans and provide tailored machinery.    </h3>\n		<p>Our company’s strength lies in our team, who have developed groundbreaking machinery and equipment.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"151\" height=\"50\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Awards Winner\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Satisfied Clients\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Active projects\n													<img width=\"516\" height=\"290\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/home-image-01.png\" alt=\"\" />													\n    	<img width=\"502\" height=\"412\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-02.jpg\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n    	    	201 Award-winning machinery and equipment manufacturing company.\n	    <h3>\n        We help you build your vision with our machinery.    </h3>\n		<p>We approach every project with precision and value clear, simple communication.</p>		\n                                            Engineering\n                                        85%\n                                            Design\n                                        80%\n                                            Production\n                                        90%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/automated-welding-services/\">Automated Welding Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/automated-welding-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/hydraulic-press-services/\">Hydraulic Press Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/hydraulic-press-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/grinding-service/\">Grinding Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/grinding-service/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 800 250 369\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"58\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We help businesses thrive by providing the latest machinery technology.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                        <a href=\"#\">Discover more</a>\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\n                        <a href=\"#\">Contact</a>\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                        <a href=\"#\">Place order</a>\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n                        <a href=\"#\">Make a payment</a>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20%C4%91%C6%B0%E1%BB%9Dng%20s%E1%BB%91%204%2C%20KP2%2C%20P.%20B%C3%ACnh%20Chi%E1%BB%83u%2C%20TP.%20Th%E1%BB%A7%20%C4%90%E1%BB%A9c%2C%20TPHCM&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n					aria-label=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Services\">Services</option><option value=\"Interior Design\">Interior Design</option><option value=\"Metal Roofing\">Metal Roofing</option><option value=\"House Remodel\">House Remodel</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><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=\"37\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-10-21 04:18:22','2024-10-21 04:18:22','',9,'http://fe2tech.com/?p=2254',0,'revision','',0),(2255,1,'2024-10-21 04:18:22','2024-10-21 04:18:22','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We assess plans and provide tailored machinery.    </h3>\n		<p>Our company’s strength lies in our team, who have developed groundbreaking machinery and equipment.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"151\" height=\"50\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Awards Winner\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Satisfied Clients\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Active projects\n													<img width=\"516\" height=\"290\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/home-image-01.png\" alt=\"\" />													\n    	<img width=\"502\" height=\"412\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-02.jpg\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n    	    	201 Award-winning machinery and equipment manufacturing company.\n	    <h3>\n        We help you build your vision with our machinery.    </h3>\n		<p>We approach every project with precision and value clear, simple communication.</p>		\n                                            Engineering\n                                        85%\n                                            Design\n                                        80%\n                                            Production\n                                        90%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/automated-welding-services/\">Automated Welding Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/automated-welding-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/hydraulic-press-services/\">Hydraulic Press Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/hydraulic-press-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/grinding-service/\">Grinding Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/grinding-service/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 800 250 369\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"58\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We help businesses thrive by providing the latest machinery technology.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                        <a href=\"#\">Discover more</a>\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\n                        <a href=\"#\">Contact</a>\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                        <a href=\"#\">Place order</a>\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n                        <a href=\"#\">Make a payment</a>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20%C4%91%C6%B0%E1%BB%9Dng%20s%E1%BB%91%204%2C%20KP2%2C%20P.%20B%C3%ACnh%20Chi%E1%BB%83u%2C%20TP.%20Th%E1%BB%A7%20%C4%90%E1%BB%A9c%2C%20TPHCM&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n					aria-label=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Services\">Services</option><option value=\"Interior Design\">Interior Design</option><option value=\"Metal Roofing\">Metal Roofing</option><option value=\"House Remodel\">House Remodel</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><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=\"37\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-10-21 04:18:22','2024-10-21 04:18:22','',9,'http://fe2tech.com/?p=2255',0,'revision','',0),(2256,1,'2024-10-21 04:18:22','2024-10-21 04:18:22','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We assess plans and provide tailored machinery.    </h3>\n		<p>Our company’s strength lies in our team, who have developed groundbreaking machinery and equipment.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"151\" height=\"50\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Awards Winner\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Satisfied Clients\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Active projects\n													<img width=\"516\" height=\"290\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/home-image-01.png\" alt=\"\" />													\n    	<img width=\"502\" height=\"412\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-02.jpg\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n    	    	201 Award-winning machinery and equipment manufacturing company.\n	    <h3>\n        We help you build your vision with our machinery.    </h3>\n		<p>We approach every project with precision and value clear, simple communication.</p>		\n                                            Engineering\n                                        85%\n                                            Design\n                                        80%\n                                            Production\n                                        90%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/automated-welding-services/\">Automated Welding Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/automated-welding-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/hydraulic-press-services/\">Hydraulic Press Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/hydraulic-press-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/grinding-service/\">Grinding Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/grinding-service/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"245\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We help businesses thrive by providing the latest machinery technology.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                        <a href=\"#\">Discover more</a>\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\n                        <a href=\"#\">Contact</a>\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                        <a href=\"#\">Place order</a>\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n                        <a href=\"#\">Make a payment</a>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20%C4%91%C6%B0%E1%BB%9Dng%20s%E1%BB%91%204%2C%20KP2%2C%20P.%20B%C3%ACnh%20Chi%E1%BB%83u%2C%20TP.%20Th%E1%BB%A7%20%C4%90%E1%BB%A9c%2C%20TPHCM&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n					aria-label=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Services\">Services</option><option value=\"Interior Design\">Interior Design</option><option value=\"Metal Roofing\">Metal Roofing</option><option value=\"House Remodel\">House Remodel</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><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=\"195\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-10-21 04:18:22','2024-10-21 04:18:22','',9,'http://fe2tech.com/?p=2256',0,'revision','',0),(2257,1,'2024-10-21 04:19:03','2024-10-21 04:19:03','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We assess plans and provide tailored machinery.    </h3>\n		<p>Our company’s strength lies in our team, who have developed groundbreaking machinery and equipment.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"151\" height=\"50\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Awards Winner\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Satisfied Clients\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Active projects\n													<img width=\"516\" height=\"290\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/home-image-01.png\" alt=\"\" />													\n    	<img width=\"502\" height=\"412\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-02.jpg\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n    	    	201 Award-winning machinery and equipment manufacturing company.\n	    <h3>\n        We help you build your vision with our machinery.    </h3>\n		<p>We approach every project with precision and value clear, simple communication.</p>		\n                                            Engineering\n                                        85%\n                                            Design\n                                        80%\n                                            Production\n                                        90%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/automated-welding-services/\">Automated Welding Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/automated-welding-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/hydraulic-press-services/\">Hydraulic Press Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/hydraulic-press-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/grinding-service/\">Grinding Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/grinding-service/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"245\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We help businesses thrive by providing the latest machinery technology.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                        <a href=\"#\">Discover more</a>\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\n                        <a href=\"#\">Contact</a>\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                        <a href=\"#\">Place order</a>\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n                        <a href=\"#\">Make a payment</a>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20%C4%91%C6%B0%E1%BB%9Dng%20s%E1%BB%91%204%2C%20KP2%2C%20P.%20B%C3%ACnh%20Chi%E1%BB%83u%2C%20TP.%20Th%E1%BB%A7%20%C4%90%E1%BB%A9c%2C%20TPHCM&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n					aria-label=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Services\">Services</option><option value=\"Interior Design\">Interior Design</option><option value=\"Metal Roofing\">Metal Roofing</option><option value=\"House Remodel\">House Remodel</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><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=\"195\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-10-21 04:19:03','2024-10-21 04:19:03','',9,'http://fe2tech.com/?p=2257',0,'revision','',0),(2258,1,'2024-10-21 04:19:04','2024-10-21 04:19:04','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We assess plans and provide tailored machinery.    </h3>\n		<p>Our company’s strength lies in our team, who have developed groundbreaking machinery and equipment.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"151\" height=\"50\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Awards Winner\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Satisfied Clients\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Active projects\n													<img width=\"516\" height=\"290\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/home-image-01.png\" alt=\"\" />													\n    	<img width=\"502\" height=\"412\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-02.jpg\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n    	    	201 Award-winning machinery and equipment manufacturing company.\n	    <h3>\n        We help you build your vision with our machinery.    </h3>\n		<p>We approach every project with precision and value clear, simple communication.</p>		\n                                            Engineering\n                                        85%\n                                            Design\n                                        80%\n                                            Production\n                                        90%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/automated-welding-services/\">Automated Welding Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/automated-welding-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/hydraulic-press-services/\">Hydraulic Press Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/hydraulic-press-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/grinding-service/\">Grinding Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/grinding-service/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"245\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We help businesses thrive by providing the latest machinery technology.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                        <a href=\"#\">Discover more</a>\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\n                        <a href=\"#\">Contact</a>\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                        <a href=\"#\">Place order</a>\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n                        <a href=\"#\">Make a payment</a>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20%C4%91%C6%B0%E1%BB%9Dng%20s%E1%BB%91%204%2C%20KP2%2C%20P.%20B%C3%ACnh%20Chi%E1%BB%83u%2C%20TP.%20Th%E1%BB%A7%20%C4%90%E1%BB%A9c%2C%20TPHCM&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n					aria-label=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Services\">Services</option><option value=\"Interior Design\">Interior Design</option><option value=\"Metal Roofing\">Metal Roofing</option><option value=\"House Remodel\">House Remodel</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><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=\"195\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-10-21 04:19:04','2024-10-21 04:19:04','',9,'http://fe2tech.com/?p=2258',0,'revision','',0),(2259,1,'2024-10-21 04:19:04','2024-10-21 04:19:04','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We assess plans and provide tailored machinery.    </h3>\n		<p>Our company’s strength lies in our team, who have developed groundbreaking machinery and equipment.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"151\" height=\"50\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Awards Winner\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Satisfied Clients\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Active projects\n													<img width=\"516\" height=\"290\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/home-image-01.png\" alt=\"\" />													\n    	<img width=\"502\" height=\"412\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-02.jpg\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n    	    	201 Award-winning machinery and equipment manufacturing company.\n	    <h3>\n        We help you build your vision with our machinery.    </h3>\n		<p>We approach every project with precision and value clear, simple communication.</p>		\n                                            Engineering\n                                        85%\n                                            Design\n                                        80%\n                                            Production\n                                        90%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/automated-welding-services/\">Automated Welding Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/automated-welding-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/hydraulic-press-services/\">Hydraulic Press Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/hydraulic-press-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/grinding-service/\">Grinding Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/grinding-service/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"23\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We help businesses thrive by providing the latest machinery technology.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20%C4%91%C6%B0%E1%BB%9Dng%20s%E1%BB%91%204%2C%20KP2%2C%20P.%20B%C3%ACnh%20Chi%E1%BB%83u%2C%20TP.%20Th%E1%BB%A7%20%C4%90%E1%BB%A9c%2C%20TPHCM&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n					aria-label=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Services\">Services</option><option value=\"Interior Design\">Interior Design</option><option value=\"Metal Roofing\">Metal Roofing</option><option value=\"House Remodel\">House Remodel</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><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=\"221\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-10-21 04:19:04','2024-10-21 04:19:04','',9,'http://fe2tech.com/?p=2259',0,'revision','',0),(2261,1,'2024-10-21 04:25:42','2024-10-21 04:25:42','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We assess plans and provide tailored machinery.    </h3>\n		<p>Our company’s strength lies in our team, who have developed groundbreaking machinery and equipment.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"151\" height=\"50\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Awards Winner\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Satisfied Clients\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Active projects\n													<img width=\"516\" height=\"290\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/home-image-01.png\" alt=\"\" />													\n    	<img width=\"502\" height=\"412\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-02.jpg\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n    	    	201 Award-winning machinery and equipment manufacturing company.\n	    <h3>\n        We help you build your vision with our machinery.    </h3>\n		<p>We approach every project with precision and value clear, simple communication.</p>		\n                                            Engineering\n                                        85%\n                                            Design\n                                        80%\n                                            Production\n                                        90%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/automated-welding-services/\">Automated Welding Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/automated-welding-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/hydraulic-press-services/\">Hydraulic Press Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/hydraulic-press-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/grinding-service/\">Grinding Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/grinding-service/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"23\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We help businesses thrive by providing the latest machinery technology.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20%C4%91%C6%B0%E1%BB%9Dng%20s%E1%BB%91%204%2C%20KP2%2C%20P.%20B%C3%ACnh%20Chi%E1%BB%83u%2C%20TP.%20Th%E1%BB%A7%20%C4%90%E1%BB%A9c%2C%20TPHCM&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n					aria-label=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Services\">Services</option><option value=\"Interior Design\">Interior Design</option><option value=\"Metal Roofing\">Metal Roofing</option><option value=\"House Remodel\">House Remodel</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><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=\"221\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-10-21 04:25:42','2024-10-21 04:25:42','',9,'http://fe2tech.com/?p=2261',0,'revision','',0),(2262,1,'2024-10-21 04:25:42','2024-10-21 04:25:42','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We assess plans and provide tailored machinery.    </h3>\n		<p>Our company’s strength lies in our team, who have developed groundbreaking machinery and equipment.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"151\" height=\"50\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Awards Winner\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Satisfied Clients\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Active projects\n													<img width=\"516\" height=\"290\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/home-image-01.png\" alt=\"\" />													\n    	<img width=\"502\" height=\"412\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-02.jpg\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n    	    	201 Award-winning machinery and equipment manufacturing company.\n	    <h3>\n        We help you build your vision with our machinery.    </h3>\n		<p>We approach every project with precision and value clear, simple communication.</p>		\n                                            Engineering\n                                        85%\n                                            Design\n                                        80%\n                                            Production\n                                        90%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/automated-welding-services/\">Automated Welding Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/automated-welding-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/hydraulic-press-services/\">Hydraulic Press Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/hydraulic-press-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/grinding-service/\">Grinding Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/grinding-service/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"23\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We help businesses thrive by providing the latest machinery technology.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20%C4%91%C6%B0%E1%BB%9Dng%20s%E1%BB%91%204%2C%20KP2%2C%20P.%20B%C3%ACnh%20Chi%E1%BB%83u%2C%20TP.%20Th%E1%BB%A7%20%C4%90%E1%BB%A9c%2C%20TPHCM&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n					aria-label=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Services\">Services</option><option value=\"Interior Design\">Interior Design</option><option value=\"Metal Roofing\">Metal Roofing</option><option value=\"House Remodel\">House Remodel</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><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=\"221\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-10-21 04:25:42','2024-10-21 04:25:42','',9,'http://fe2tech.com/?p=2262',0,'revision','',0),(2263,1,'2024-10-21 04:25:43','2024-10-21 04:25:43','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We assess plans and provide tailored machinery.    </h3>\n		<p>Our company’s strength lies in our team, who have developed groundbreaking machinery and equipment.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"151\" height=\"50\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Awards Winner\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Satisfied Clients\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Active projects\n													<img width=\"850\" height=\"850\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/Quality-Inspection-Lab-Photo.jpg\" alt=\"\" />													\n    	<img width=\"502\" height=\"412\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-02.jpg\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n    	    	201 Award-winning machinery and equipment manufacturing company.\n	    <h3>\n        We help you build your vision with our machinery.    </h3>\n		<p>We approach every project with precision and value clear, simple communication.</p>		\n                                            Engineering\n                                        85%\n                                            Design\n                                        80%\n                                            Production\n                                        90%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/automated-welding-services/\">Automated Welding Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/automated-welding-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/hydraulic-press-services/\">Hydraulic Press Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/hydraulic-press-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/grinding-service/\">Grinding Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/grinding-service/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"137\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We help businesses thrive by providing the latest machinery technology.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20%C4%91%C6%B0%E1%BB%9Dng%20s%E1%BB%91%204%2C%20KP2%2C%20P.%20B%C3%ACnh%20Chi%E1%BB%83u%2C%20TP.%20Th%E1%BB%A7%20%C4%90%E1%BB%A9c%2C%20TPHCM&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n					aria-label=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Services\">Services</option><option value=\"Interior Design\">Interior Design</option><option value=\"Metal Roofing\">Metal Roofing</option><option value=\"House Remodel\">House Remodel</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><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=\"116\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-10-21 04:25:43','2024-10-21 04:25:43','',9,'http://fe2tech.com/?p=2263',0,'revision','',0),(2264,1,'2024-10-21 04:25:54','2024-10-21 04:25:54','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We assess plans and provide tailored machinery.    </h3>\n		<p>Our company’s strength lies in our team, who have developed groundbreaking machinery and equipment.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"151\" height=\"50\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Awards Winner\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Satisfied Clients\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Active projects\n													<img width=\"850\" height=\"850\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/Quality-Inspection-Lab-Photo.jpg\" alt=\"\" />													\n    	<img width=\"502\" height=\"412\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-02.jpg\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n    	    	201 Award-winning machinery and equipment manufacturing company.\n	    <h3>\n        We help you build your vision with our machinery.    </h3>\n		<p>We approach every project with precision and value clear, simple communication.</p>		\n                                            Engineering\n                                        85%\n                                            Design\n                                        80%\n                                            Production\n                                        90%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/automated-welding-services/\">Automated Welding Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/automated-welding-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/hydraulic-press-services/\">Hydraulic Press Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/hydraulic-press-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/grinding-service/\">Grinding Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/grinding-service/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"137\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We help businesses thrive by providing the latest machinery technology.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20%C4%91%C6%B0%E1%BB%9Dng%20s%E1%BB%91%204%2C%20KP2%2C%20P.%20B%C3%ACnh%20Chi%E1%BB%83u%2C%20TP.%20Th%E1%BB%A7%20%C4%90%E1%BB%A9c%2C%20TPHCM&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n					aria-label=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Services\">Services</option><option value=\"Interior Design\">Interior Design</option><option value=\"Metal Roofing\">Metal Roofing</option><option value=\"House Remodel\">House Remodel</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><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=\"116\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-10-21 04:25:54','2024-10-21 04:25:54','',9,'http://fe2tech.com/?p=2264',0,'revision','',0),(2265,1,'2024-10-21 04:25:54','2024-10-21 04:25:54','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We assess plans and provide tailored machinery.    </h3>\n		<p>Our company’s strength lies in our team, who have developed groundbreaking machinery and equipment.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"151\" height=\"50\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Awards Winner\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Satisfied Clients\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Active projects\n													<img width=\"850\" height=\"850\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/Quality-Inspection-Lab-Photo.jpg\" alt=\"\" />													\n    	<img width=\"502\" height=\"412\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-02.jpg\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n    	    	201 Award-winning machinery and equipment manufacturing company.\n	    <h3>\n        We help you build your vision with our machinery.    </h3>\n		<p>We approach every project with precision and value clear, simple communication.</p>		\n                                            Engineering\n                                        85%\n                                            Design\n                                        80%\n                                            Production\n                                        90%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/automated-welding-services/\">Automated Welding Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/automated-welding-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/hydraulic-press-services/\">Hydraulic Press Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/hydraulic-press-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/grinding-service/\">Grinding Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/grinding-service/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"137\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We help businesses thrive by providing the latest machinery technology.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20%C4%91%C6%B0%E1%BB%9Dng%20s%E1%BB%91%204%2C%20KP2%2C%20P.%20B%C3%ACnh%20Chi%E1%BB%83u%2C%20TP.%20Th%E1%BB%A7%20%C4%90%E1%BB%A9c%2C%20TPHCM&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n					aria-label=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Services\">Services</option><option value=\"Interior Design\">Interior Design</option><option value=\"Metal Roofing\">Metal Roofing</option><option value=\"House Remodel\">House Remodel</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><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=\"116\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-10-21 04:25:54','2024-10-21 04:25:54','',9,'http://fe2tech.com/?p=2265',0,'revision','',0),(2266,1,'2024-10-21 04:25:55','2024-10-21 04:25:55','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We assess plans and provide tailored machinery.    </h3>\n		<p>Our company’s strength lies in our team, who have developed groundbreaking machinery and equipment.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"151\" height=\"50\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Awards Winner\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Satisfied Clients\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Active projects\n													<img width=\"850\" height=\"850\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/Quality-Inspection-Lab-Photo.jpg\" alt=\"\" />													\n    	<img width=\"502\" height=\"412\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-02.jpg\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n    	    	201 Award-winning machinery and equipment manufacturing company.\n	    <h3>\n        We help you build your vision with our machinery.    </h3>\n		<p>We approach every project with precision and value clear, simple communication.</p>		\n                                            Engineering\n                                        85%\n                                            Design\n                                        80%\n                                            Production\n                                        90%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/automated-welding-services/\">Automated Welding Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/automated-welding-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/hydraulic-press-services/\">Hydraulic Press Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/hydraulic-press-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/grinding-service/\">Grinding Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/grinding-service/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_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	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We help businesses thrive by providing the latest machinery technology.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20%C4%91%C6%B0%E1%BB%9Dng%20s%E1%BB%91%204%2C%20KP2%2C%20P.%20B%C3%ACnh%20Chi%E1%BB%83u%2C%20TP.%20Th%E1%BB%A7%20%C4%90%E1%BB%A9c%2C%20TPHCM&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n					aria-label=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Services\">Services</option><option value=\"Interior Design\">Interior Design</option><option value=\"Metal Roofing\">Metal Roofing</option><option value=\"House Remodel\">House Remodel</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><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=\"162\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-10-21 04:25:55','2024-10-21 04:25:55','',9,'http://fe2tech.com/?p=2266',0,'revision','',0),(2268,1,'2024-10-21 04:33:57','2024-10-21 04:33:57','','rb_51232','','inherit','open','closed','','rb_51232','','','2024-10-21 04:33:57','2024-10-21 04:33:57','',9,'http://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png',0,'attachment','image/png',0),(2269,1,'2024-10-21 04:34:07','2024-10-21 04:34:07','','rb_14479','','inherit','open','closed','','rb_14479','','','2024-10-21 04:34:07','2024-10-21 04:34:07','',9,'http://fe2tech.com/wp-content/uploads/2024/10/rb_14479.png',0,'attachment','image/png',0),(2270,1,'2024-10-21 04:35:02','2024-10-21 04:35:02','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We assess plans and provide tailored machinery.    </h3>\n		<p>Our company’s strength lies in our team, who have developed groundbreaking machinery and equipment.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"151\" height=\"50\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Awards Winner\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Satisfied Clients\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Active projects\n													<img width=\"850\" height=\"850\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/Quality-Inspection-Lab-Photo.jpg\" alt=\"\" />													\n    	<img width=\"502\" height=\"412\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-02.jpg\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n    	    	201 Award-winning machinery and equipment manufacturing company.\n	    <h3>\n        We help you build your vision with our machinery.    </h3>\n		<p>We approach every project with precision and value clear, simple communication.</p>		\n                                            Engineering\n                                        85%\n                                            Design\n                                        80%\n                                            Production\n                                        90%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/automated-welding-services/\">Automated Welding Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/automated-welding-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/hydraulic-press-services/\">Hydraulic Press Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/hydraulic-press-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/grinding-service/\">Grinding Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/grinding-service/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_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	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We help businesses thrive by providing the latest machinery technology.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20%C4%91%C6%B0%E1%BB%9Dng%20s%E1%BB%91%204%2C%20KP2%2C%20P.%20B%C3%ACnh%20Chi%E1%BB%83u%2C%20TP.%20Th%E1%BB%A7%20%C4%90%E1%BB%A9c%2C%20TPHCM&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n					aria-label=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Services\">Services</option><option value=\"Interior Design\">Interior Design</option><option value=\"Metal Roofing\">Metal Roofing</option><option value=\"House Remodel\">House Remodel</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><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=\"162\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-10-21 04:35:02','2024-10-21 04:35:02','',9,'http://fe2tech.com/?p=2270',0,'revision','',0),(2271,1,'2024-10-21 04:35:02','2024-10-21 04:35:02','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We assess plans and provide tailored machinery.    </h3>\n		<p>Our company’s strength lies in our team, who have developed groundbreaking machinery and equipment.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"151\" height=\"50\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Awards Winner\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Satisfied Clients\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Active projects\n													<img width=\"850\" height=\"850\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/Quality-Inspection-Lab-Photo.jpg\" alt=\"\" />													\n    	<img width=\"502\" height=\"412\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-02.jpg\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n    	    	201 Award-winning machinery and equipment manufacturing company.\n	    <h3>\n        We help you build your vision with our machinery.    </h3>\n		<p>We approach every project with precision and value clear, simple communication.</p>		\n                                            Engineering\n                                        85%\n                                            Design\n                                        80%\n                                            Production\n                                        90%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/automated-welding-services/\">Automated Welding Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/automated-welding-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/hydraulic-press-services/\">Hydraulic Press Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/hydraulic-press-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/grinding-service/\">Grinding Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/grinding-service/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_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	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We help businesses thrive by providing the latest machinery technology.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20%C4%91%C6%B0%E1%BB%9Dng%20s%E1%BB%91%204%2C%20KP2%2C%20P.%20B%C3%ACnh%20Chi%E1%BB%83u%2C%20TP.%20Th%E1%BB%A7%20%C4%90%E1%BB%A9c%2C%20TPHCM&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n					aria-label=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Services\">Services</option><option value=\"Interior Design\">Interior Design</option><option value=\"Metal Roofing\">Metal Roofing</option><option value=\"House Remodel\">House Remodel</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><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=\"162\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-10-21 04:35:02','2024-10-21 04:35:02','',9,'http://fe2tech.com/?p=2271',0,'revision','',0),(2272,1,'2024-10-21 04:35:03','2024-10-21 04:35:03','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We assess plans and provide tailored machinery.    </h3>\n		<p>Our company’s strength lies in our team, who have developed groundbreaking machinery and equipment.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"151\" height=\"50\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Awards Winner\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Satisfied Clients\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Active projects\n													<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_14479.png\" alt=\"\" />													\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n    	    	198 Award-winning machinery and equipment manufacturing company.\n	    <h3>\n        We help you build your vision with our machinery.    </h3>\n		<p>We approach every project with precision and value clear, simple communication.</p>		\n                                            Engineering\n                                        85%\n                                            Design\n                                        80%\n                                            Production\n                                        90%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/automated-welding-services/\">Automated Welding Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/automated-welding-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/hydraulic-press-services/\">Hydraulic Press Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/hydraulic-press-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/grinding-service/\">Grinding Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/grinding-service/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_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	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We help businesses thrive by providing the latest machinery technology.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20%C4%91%C6%B0%E1%BB%9Dng%20s%E1%BB%91%204%2C%20KP2%2C%20P.%20B%C3%ACnh%20Chi%E1%BB%83u%2C%20TP.%20Th%E1%BB%A7%20%C4%90%E1%BB%A9c%2C%20TPHCM&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n					aria-label=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Services\">Services</option><option value=\"Interior Design\">Interior Design</option><option value=\"Metal Roofing\">Metal Roofing</option><option value=\"House Remodel\">House Remodel</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><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=\"72\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-10-21 04:35:03','2024-10-21 04:35:03','',9,'http://fe2tech.com/?p=2272',0,'revision','',0),(2273,1,'2024-10-21 04:36:51','2024-10-21 04:36:51','','The process of smoothing the interior of a cylinder.','The process of smoothing the interior of a cylinder.','inherit','open','closed','','the-process-of-smoothing-the-interior-of-a-cylinder','','','2024-10-21 04:36:51','2024-10-21 04:36:51','',0,'http://fe2tech.com/wp-content/uploads/2024/10/process-smoothing-interior-cylinder.jpg',0,'attachment','image/jpeg',0),(2274,1,'2024-10-21 04:53:50','2024-10-21 04:53:50','','4344','','inherit','open','closed','','4344','','','2024-10-21 04:53:50','2024-10-21 04:53:50','',0,'http://fe2tech.com/wp-content/uploads/2024/10/4344.jpg',0,'attachment','image/jpeg',0),(2289,1,'2024-10-21 06:23:12','2024-10-21 06:23:12','','Default Kit','','inherit','closed','closed','','1644-revision-v1','','','2024-10-21 06:23:12','2024-10-21 06:23:12','',1644,'http://fe2tech.com/?p=2289',0,'revision','',0),(2290,1,'2024-10-21 06:23:12','2024-10-21 06:23:12','','Default Kit','','inherit','closed','closed','','1644-revision-v1','','','2024-10-21 06:23:12','2024-10-21 06:23:12','',1644,'http://fe2tech.com/?p=2290',0,'revision','',0),(2291,1,'2024-10-21 06:23:50','2024-10-21 06:23:50','','Gallery','','inherit','closed','closed','','2126-revision-v1','','','2024-10-21 06:23:50','2024-10-21 06:23:50','',2126,'http://fe2tech.com/?p=2291',0,'revision','',0),(2292,1,'2024-10-21 06:23:50','2024-10-21 06:23:50','','Gallery','','inherit','closed','closed','','2126-revision-v1','','','2024-10-21 06:23:50','2024-10-21 06:23:50','',2126,'http://fe2tech.com/?p=2292',0,'revision','',0),(2293,1,'2024-10-21 06:23:51','2024-10-21 06:23:51','<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-elementor-lightbox-title=\"79e03ae8e5565c08054772\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI4NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OWUwM2FlOGU1NTY1YzA4MDU0NzcyLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-elementor-lightbox-title=\"28706f78b0c6099850d768\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI4NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yODcwNmY3OGIwYzYwOTk4NTBkNzY4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\'><img width=\"150\" height=\"115\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-elementor-lightbox-title=\"c20f0a09d5b76ce935a667\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI4NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jMjBmMGEwOWQ1Yjc2Y2U5MzVhNjY3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-elementor-lightbox-title=\"e31fda1705a9bcf7e5b870\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI4NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9lMzFmZGExNzA1YTliY2Y3ZTViODcwLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>','Gallery','','inherit','closed','closed','','2126-revision-v1','','','2024-10-21 06:23:51','2024-10-21 06:23:51','',2126,'http://fe2tech.com/?p=2293',0,'revision','',0),(2294,1,'2024-10-21 06:27:01','2024-10-21 06:27:01','<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-elementor-lightbox-title=\"79e03ae8e5565c08054772\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI4NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OWUwM2FlOGU1NTY1YzA4MDU0NzcyLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-elementor-lightbox-title=\"28706f78b0c6099850d768\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI4NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yODcwNmY3OGIwYzYwOTk4NTBkNzY4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\'><img width=\"150\" height=\"115\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-elementor-lightbox-title=\"c20f0a09d5b76ce935a667\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI4NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jMjBmMGEwOWQ1Yjc2Y2U5MzVhNjY3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-elementor-lightbox-title=\"e31fda1705a9bcf7e5b870\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI4NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9lMzFmZGExNzA1YTliY2Y3ZTViODcwLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>','Gallery','','inherit','closed','closed','','2126-revision-v1','','','2024-10-21 06:27:01','2024-10-21 06:27:01','',2126,'http://fe2tech.com/?p=2294',0,'revision','',0),(2295,1,'2024-10-21 06:27:01','2024-10-21 06:27:01','<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-elementor-lightbox-title=\"79e03ae8e5565c08054772\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI4NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OWUwM2FlOGU1NTY1YzA4MDU0NzcyLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-elementor-lightbox-title=\"28706f78b0c6099850d768\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI4NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yODcwNmY3OGIwYzYwOTk4NTBkNzY4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\'><img width=\"150\" height=\"115\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-elementor-lightbox-title=\"c20f0a09d5b76ce935a667\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI4NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jMjBmMGEwOWQ1Yjc2Y2U5MzVhNjY3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-elementor-lightbox-title=\"e31fda1705a9bcf7e5b870\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI4NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9lMzFmZGExNzA1YTliY2Y3ZTViODcwLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>','Gallery','','inherit','closed','closed','','2126-revision-v1','','','2024-10-21 06:27:01','2024-10-21 06:27:01','',2126,'http://fe2tech.com/?p=2295',0,'revision','',0),(2296,1,'2024-10-21 06:27:01','2024-10-21 06:27:01','<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-elementor-lightbox-title=\"79e03ae8e5565c08054772\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI4NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OWUwM2FlOGU1NTY1YzA4MDU0NzcyLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-elementor-lightbox-title=\"28706f78b0c6099850d768\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI4NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yODcwNmY3OGIwYzYwOTk4NTBkNzY4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\'><img width=\"150\" height=\"115\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-elementor-lightbox-title=\"c20f0a09d5b76ce935a667\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI4NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jMjBmMGEwOWQ1Yjc2Y2U5MzVhNjY3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-elementor-lightbox-title=\"e31fda1705a9bcf7e5b870\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI4NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9lMzFmZGExNzA1YTliY2Y3ZTViODcwLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>','Gallery','','inherit','closed','closed','','2126-revision-v1','','','2024-10-21 06:27:01','2024-10-21 06:27:01','',2126,'http://fe2tech.com/?p=2296',0,'revision','',0),(2301,1,'2024-10-21 06:28:46','2024-10-21 06:28:46','<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-elementor-lightbox-title=\"79e03ae8e5565c08054772\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI4NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OWUwM2FlOGU1NTY1YzA4MDU0NzcyLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-elementor-lightbox-title=\"28706f78b0c6099850d768\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI4NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yODcwNmY3OGIwYzYwOTk4NTBkNzY4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\'><img width=\"150\" height=\"115\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-elementor-lightbox-title=\"c20f0a09d5b76ce935a667\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI4NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jMjBmMGEwOWQ1Yjc2Y2U5MzVhNjY3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-elementor-lightbox-title=\"e31fda1705a9bcf7e5b870\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI4NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9lMzFmZGExNzA1YTliY2Y3ZTViODcwLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>','Gallery','','inherit','closed','closed','','2126-revision-v1','','','2024-10-21 06:28:46','2024-10-21 06:28:46','',2126,'http://fe2tech.com/?p=2301',0,'revision','',0),(2302,1,'2024-10-21 06:28:46','2024-10-21 06:28:46','<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-elementor-lightbox-title=\"79e03ae8e5565c08054772\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI4NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OWUwM2FlOGU1NTY1YzA4MDU0NzcyLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-elementor-lightbox-title=\"28706f78b0c6099850d768\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI4NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yODcwNmY3OGIwYzYwOTk4NTBkNzY4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\'><img width=\"150\" height=\"115\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-elementor-lightbox-title=\"c20f0a09d5b76ce935a667\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI4NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jMjBmMGEwOWQ1Yjc2Y2U5MzVhNjY3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-elementor-lightbox-title=\"e31fda1705a9bcf7e5b870\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI4NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9lMzFmZGExNzA1YTliY2Y3ZTViODcwLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>','Gallery','','inherit','closed','closed','','2126-revision-v1','','','2024-10-21 06:28:46','2024-10-21 06:28:46','',2126,'http://fe2tech.com/?p=2302',0,'revision','',0),(2303,1,'2024-10-21 06:28:46','2024-10-21 06:28:46','<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI4NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OWUwM2FlOGU1NTY1YzA4MDU0NzcyLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI4NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yODcwNmY3OGIwYzYwOTk4NTBkNzY4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\'><img width=\"150\" height=\"115\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI4NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jMjBmMGEwOWQ1Yjc2Y2U5MzVhNjY3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI4NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9lMzFmZGExNzA1YTliY2Y3ZTViODcwLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI5NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85NTA1YzQwZDFiYjNhMmVkZmJhMjc4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9505c40d1bb3a2edfba278.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9505c40d1bb3a2edfba278.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI5OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8zOGRiMTRkM2NiNmQ3MjMzMmI3Yzc2LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/38db14d3cb6d72332b7c76.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/38db14d3cb6d72332b7c76.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI5OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iNWVkMWJlNWM0NWI3ZDA1MjQ0YTkzLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b5ed1be5c45b7d05244a93.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b5ed1be5c45b7d05244a93.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMwMCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC84NDRlOTM0NjRjZjhmNWE2YWNlOTEwMy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/844e93464cf8f5a6ace9103.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/844e93464cf8f5a6ace9103.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>','Gallery','','inherit','closed','closed','','2126-revision-v1','','','2024-10-21 06:28:46','2024-10-21 06:28:46','',2126,'http://fe2tech.com/?p=2303',0,'revision','',0),(2304,1,'2024-10-21 06:34:50','2024-10-21 06:34:50','','Services','','inherit','closed','closed','','2128-revision-v1','','','2024-10-21 06:34:50','2024-10-21 06:34:50','',2128,'http://fe2tech.com/?p=2304',0,'revision','',0),(2305,1,'2024-10-21 06:34:50','2024-10-21 06:34:50','','Services','','inherit','closed','closed','','2128-revision-v1','','','2024-10-21 06:34:50','2024-10-21 06:34:50','',2128,'http://fe2tech.com/?p=2305',0,'revision','',0),(2306,1,'2024-10-21 06:34:51','2024-10-21 06:34:51','<a href=\"https://fe2tech.com/service/quality-inspection-services/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\"></a>\n                                                    <a href=\"https://fe2tech.com/service/automated-welding-services/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/automated-welding-services/\">Automated Welding Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/automated-welding-services/\"></a>\n                                                    <a href=\"https://fe2tech.com/service/hydraulic-press-services/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/hydraulic-press-services/\">Hydraulic Press Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/hydraulic-press-services/\"></a>\n                                                    <a href=\"https://fe2tech.com/service/grinding-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/grinding-service/\">Grinding Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/grinding-service/\"></a>\n                                                    <a href=\"https://fe2tech.com/service/cnc-machining-services/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/cnc-machining-services/\">CNC Machining Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-machining-services/\"></a>','Services','','inherit','closed','closed','','2128-revision-v1','','','2024-10-21 06:34:51','2024-10-21 06:34:51','',2128,'http://fe2tech.com/?p=2306',0,'revision','',0),(2307,1,'2024-10-21 06:36:51','2024-10-21 06:36:51','<a href=\"https://fe2tech.com/service/quality-inspection-services/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\"></a>\n                                                    <a href=\"https://fe2tech.com/service/automated-welding-services/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/automated-welding-services/\">Automated Welding Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/automated-welding-services/\"></a>\n                                                    <a href=\"https://fe2tech.com/service/hydraulic-press-services/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/hydraulic-press-services/\">Hydraulic Press Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/hydraulic-press-services/\"></a>\n                                                    <a href=\"https://fe2tech.com/service/grinding-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/grinding-service/\">Grinding Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/grinding-service/\"></a>\n                                                    <a href=\"https://fe2tech.com/service/cnc-machining-services/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/cnc-machining-services/\">CNC Machining Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-machining-services/\"></a>','Services','','inherit','closed','closed','','2128-revision-v1','','','2024-10-21 06:36:51','2024-10-21 06:36:51','',2128,'http://fe2tech.com/?p=2307',0,'revision','',0),(2308,1,'2024-10-21 06:36:51','2024-10-21 06:36:51','<a href=\"https://fe2tech.com/service/quality-inspection-services/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\"></a>\n                                                    <a href=\"https://fe2tech.com/service/automated-welding-services/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/automated-welding-services/\">Automated Welding Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/automated-welding-services/\"></a>\n                                                    <a href=\"https://fe2tech.com/service/hydraulic-press-services/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/hydraulic-press-services/\">Hydraulic Press Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/hydraulic-press-services/\"></a>\n                                                    <a href=\"https://fe2tech.com/service/grinding-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/grinding-service/\">Grinding Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/grinding-service/\"></a>\n                                                    <a href=\"https://fe2tech.com/service/cnc-machining-services/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/cnc-machining-services/\">CNC Machining Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-machining-services/\"></a>','Services','','inherit','closed','closed','','2128-revision-v1','','','2024-10-21 06:36:51','2024-10-21 06:36:51','',2128,'http://fe2tech.com/?p=2308',0,'revision','',0),(2309,1,'2024-10-21 06:36:51','2024-10-21 06:36:51','<a href=\"https://fe2tech.com/service/quality-inspection-services/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\"></a>\n                                                    <a href=\"https://fe2tech.com/service/automated-welding-services/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/automated-welding-services/\">Automated Welding Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/automated-welding-services/\"></a>\n                                                    <a href=\"https://fe2tech.com/service/hydraulic-press-services/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/hydraulic-press-services/\">Hydraulic Press Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/hydraulic-press-services/\"></a>\n                                                    <a href=\"https://fe2tech.com/service/grinding-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/grinding-service/\">Grinding Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/grinding-service/\"></a>\n                                                    <a href=\"https://fe2tech.com/service/cnc-machining-services/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/cnc-machining-services/\">CNC Machining Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-machining-services/\"></a>','Services','','inherit','closed','closed','','2128-revision-v1','','','2024-10-21 06:36:51','2024-10-21 06:36:51','',2128,'http://fe2tech.com/?p=2309',0,'revision','',0),(2310,1,'2024-10-21 06:39:19','2024-10-21 06:39:19','<a href=\"https://fe2tech.com/service/quality-inspection-services/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\"></a>\n                                                    <a href=\"https://fe2tech.com/service/automated-welding-services/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/automated-welding-services/\">Automated Welding Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/automated-welding-services/\"></a>\n                                                    <a href=\"https://fe2tech.com/service/hydraulic-press-services/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/hydraulic-press-services/\">Hydraulic Press Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/hydraulic-press-services/\"></a>\n                                                    <a href=\"https://fe2tech.com/service/grinding-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/grinding-service/\">Grinding Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/grinding-service/\"></a>\n                                                    <a href=\"https://fe2tech.com/service/cnc-machining-services/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/cnc-machining-services/\">CNC Machining Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-machining-services/\"></a>','Services','','inherit','closed','closed','','2128-revision-v1','','','2024-10-21 06:39:19','2024-10-21 06:39:19','',2128,'http://fe2tech.com/?p=2310',0,'revision','',0),(2311,1,'2024-10-21 06:39:19','2024-10-21 06:39:19','<a href=\"https://fe2tech.com/service/quality-inspection-services/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\"></a>\n                                                    <a href=\"https://fe2tech.com/service/automated-welding-services/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/automated-welding-services/\">Automated Welding Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/automated-welding-services/\"></a>\n                                                    <a href=\"https://fe2tech.com/service/hydraulic-press-services/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/hydraulic-press-services/\">Hydraulic Press Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/hydraulic-press-services/\"></a>\n                                                    <a href=\"https://fe2tech.com/service/grinding-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/grinding-service/\">Grinding Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/grinding-service/\"></a>\n                                                    <a href=\"https://fe2tech.com/service/cnc-machining-services/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/cnc-machining-services/\">CNC Machining Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-machining-services/\"></a>','Services','','inherit','closed','closed','','2128-revision-v1','','','2024-10-21 06:39:19','2024-10-21 06:39:19','',2128,'http://fe2tech.com/?p=2311',0,'revision','',0),(2312,1,'2024-10-21 06:39:20','2024-10-21 06:39:20','<a href=\"https://fe2tech.com/service/quality-inspection-services/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\"></a>\n                                                    <a href=\"https://fe2tech.com/service/automated-welding-services/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/automated-welding-services/\">Automated Welding Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/automated-welding-services/\"></a>\n                                                    <a href=\"https://fe2tech.com/service/hydraulic-press-services/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/hydraulic-press-services/\">Hydraulic Press Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/hydraulic-press-services/\"></a>\n                                                    <a href=\"https://fe2tech.com/service/grinding-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/grinding-service/\">Grinding Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/grinding-service/\"></a>\n                                                    <a href=\"https://fe2tech.com/service/cnc-machining-services/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/cnc-machining-services/\">CNC Machining Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-machining-services/\"></a>','Services','','inherit','closed','closed','','2128-revision-v1','','','2024-10-21 06:39:20','2024-10-21 06:39:20','',2128,'http://fe2tech.com/?p=2312',0,'revision','',0),(2313,1,'2024-10-21 06:39:46','2024-10-21 06:39:46','<a href=\"https://fe2tech.com/service/quality-inspection-services/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\"></a>\n                                                    <a href=\"https://fe2tech.com/service/automated-welding-services/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/automated-welding-services/\">Automated Welding Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/automated-welding-services/\"></a>\n                                                    <a href=\"https://fe2tech.com/service/hydraulic-press-services/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/hydraulic-press-services/\">Hydraulic Press Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/hydraulic-press-services/\"></a>\n                                                    <a href=\"https://fe2tech.com/service/grinding-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/grinding-service/\">Grinding Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/grinding-service/\"></a>\n                                                    <a href=\"https://fe2tech.com/service/cnc-machining-services/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/cnc-machining-services/\">CNC Machining Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-machining-services/\"></a>','Services','','inherit','closed','closed','','2128-revision-v1','','','2024-10-21 06:39:46','2024-10-21 06:39:46','',2128,'http://fe2tech.com/?p=2313',0,'revision','',0),(2314,1,'2024-10-21 06:39:46','2024-10-21 06:39:46','<a href=\"https://fe2tech.com/service/quality-inspection-services/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\"></a>\n                                                    <a href=\"https://fe2tech.com/service/automated-welding-services/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/automated-welding-services/\">Automated Welding Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/automated-welding-services/\"></a>\n                                                    <a href=\"https://fe2tech.com/service/hydraulic-press-services/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/hydraulic-press-services/\">Hydraulic Press Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/hydraulic-press-services/\"></a>\n                                                    <a href=\"https://fe2tech.com/service/grinding-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/grinding-service/\">Grinding Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/grinding-service/\"></a>\n                                                    <a href=\"https://fe2tech.com/service/cnc-machining-services/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/cnc-machining-services/\">CNC Machining Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-machining-services/\"></a>','Services','','inherit','closed','closed','','2128-revision-v1','','','2024-10-21 06:39:46','2024-10-21 06:39:46','',2128,'http://fe2tech.com/?p=2314',0,'revision','',0),(2315,1,'2024-10-21 06:39:47','2024-10-21 06:39:47','<a href=\"https://fe2tech.com/service/quality-inspection-services/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/automated-welding-services/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/automated-welding-services/\">Automated Welding Services</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/hydraulic-press-services/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/hydraulic-press-services/\">Hydraulic Press Services</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/grinding-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/grinding-service/\">Grinding Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/cnc-machining-services/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/cnc-machining-services/\">CNC Machining Services</a></h3>','Services','','inherit','closed','closed','','2128-revision-v1','','','2024-10-21 06:39:47','2024-10-21 06:39:47','',2128,'http://fe2tech.com/?p=2315',0,'revision','',0),(2316,1,'2024-10-21 06:40:52','2024-10-21 06:40:52','<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI4NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OWUwM2FlOGU1NTY1YzA4MDU0NzcyLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI4NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yODcwNmY3OGIwYzYwOTk4NTBkNzY4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\'><img width=\"150\" height=\"115\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI4NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jMjBmMGEwOWQ1Yjc2Y2U5MzVhNjY3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI4NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9lMzFmZGExNzA1YTliY2Y3ZTViODcwLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI5NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85NTA1YzQwZDFiYjNhMmVkZmJhMjc4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9505c40d1bb3a2edfba278.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9505c40d1bb3a2edfba278.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI5OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8zOGRiMTRkM2NiNmQ3MjMzMmI3Yzc2LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/38db14d3cb6d72332b7c76.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/38db14d3cb6d72332b7c76.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI5OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iNWVkMWJlNWM0NWI3ZDA1MjQ0YTkzLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b5ed1be5c45b7d05244a93.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b5ed1be5c45b7d05244a93.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMwMCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC84NDRlOTM0NjRjZjhmNWE2YWNlOTEwMy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/844e93464cf8f5a6ace9103.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/844e93464cf8f5a6ace9103.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>','Gallery','','inherit','closed','closed','','2126-revision-v1','','','2024-10-21 06:40:52','2024-10-21 06:40:52','',2126,'http://fe2tech.com/?p=2316',0,'revision','',0),(2317,1,'2024-10-21 06:40:52','2024-10-21 06:40:52','<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI4NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OWUwM2FlOGU1NTY1YzA4MDU0NzcyLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI4NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yODcwNmY3OGIwYzYwOTk4NTBkNzY4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\'><img width=\"150\" height=\"115\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI4NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jMjBmMGEwOWQ1Yjc2Y2U5MzVhNjY3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI4NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9lMzFmZGExNzA1YTliY2Y3ZTViODcwLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI5NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85NTA1YzQwZDFiYjNhMmVkZmJhMjc4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9505c40d1bb3a2edfba278.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9505c40d1bb3a2edfba278.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI5OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8zOGRiMTRkM2NiNmQ3MjMzMmI3Yzc2LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/38db14d3cb6d72332b7c76.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/38db14d3cb6d72332b7c76.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI5OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iNWVkMWJlNWM0NWI3ZDA1MjQ0YTkzLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b5ed1be5c45b7d05244a93.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b5ed1be5c45b7d05244a93.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMwMCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC84NDRlOTM0NjRjZjhmNWE2YWNlOTEwMy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/844e93464cf8f5a6ace9103.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/844e93464cf8f5a6ace9103.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>','Gallery','','inherit','closed','closed','','2126-revision-v1','','','2024-10-21 06:40:52','2024-10-21 06:40:52','',2126,'http://fe2tech.com/?p=2317',0,'revision','',0),(2318,1,'2024-10-21 06:40:52','2024-10-21 06:40:52','<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI4NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OWUwM2FlOGU1NTY1YzA4MDU0NzcyLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/79e03ae8e5565c08054772/\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI4NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yODcwNmY3OGIwYzYwOTk4NTBkNzY4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/28706f78b0c6099850d768/\'><img width=\"150\" height=\"115\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI4NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jMjBmMGEwOWQ1Yjc2Y2U5MzVhNjY3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/c20f0a09d5b76ce935a667/\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI4NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9lMzFmZGExNzA1YTliY2Y3ZTViODcwLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/e31fda1705a9bcf7e5b870/\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI5NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85NTA1YzQwZDFiYjNhMmVkZmJhMjc4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/9505c40d1bb3a2edfba278/\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9505c40d1bb3a2edfba278.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI5OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8zOGRiMTRkM2NiNmQ3MjMzMmI3Yzc2LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/38db14d3cb6d72332b7c76/\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/38db14d3cb6d72332b7c76.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI5OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iNWVkMWJlNWM0NWI3ZDA1MjQ0YTkzLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/b5ed1be5c45b7d05244a93/\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b5ed1be5c45b7d05244a93.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMwMCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC84NDRlOTM0NjRjZjhmNWE2YWNlOTEwMy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/844e93464cf8f5a6ace9103/\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/844e93464cf8f5a6ace9103.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>','Gallery','','inherit','closed','closed','','2126-revision-v1','','','2024-10-21 06:40:52','2024-10-21 06:40:52','',2126,'http://fe2tech.com/?p=2318',0,'revision','',0),(2319,1,'2024-10-21 06:41:05','2024-10-21 06:41:05','<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI4NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OWUwM2FlOGU1NTY1YzA4MDU0NzcyLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/79e03ae8e5565c08054772/\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI4NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yODcwNmY3OGIwYzYwOTk4NTBkNzY4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/28706f78b0c6099850d768/\'><img width=\"150\" height=\"115\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI4NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jMjBmMGEwOWQ1Yjc2Y2U5MzVhNjY3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/c20f0a09d5b76ce935a667/\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI4NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9lMzFmZGExNzA1YTliY2Y3ZTViODcwLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/e31fda1705a9bcf7e5b870/\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI5NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85NTA1YzQwZDFiYjNhMmVkZmJhMjc4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/9505c40d1bb3a2edfba278/\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9505c40d1bb3a2edfba278.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI5OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8zOGRiMTRkM2NiNmQ3MjMzMmI3Yzc2LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/38db14d3cb6d72332b7c76/\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/38db14d3cb6d72332b7c76.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI5OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iNWVkMWJlNWM0NWI3ZDA1MjQ0YTkzLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/b5ed1be5c45b7d05244a93/\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b5ed1be5c45b7d05244a93.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMwMCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC84NDRlOTM0NjRjZjhmNWE2YWNlOTEwMy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/844e93464cf8f5a6ace9103/\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/844e93464cf8f5a6ace9103.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>','Gallery','','inherit','closed','closed','','2126-revision-v1','','','2024-10-21 06:41:05','2024-10-21 06:41:05','',2126,'http://fe2tech.com/?p=2319',0,'revision','',0),(2320,1,'2024-10-21 06:41:05','2024-10-21 06:41:05','<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI4NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OWUwM2FlOGU1NTY1YzA4MDU0NzcyLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/79e03ae8e5565c08054772/\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI4NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yODcwNmY3OGIwYzYwOTk4NTBkNzY4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/28706f78b0c6099850d768/\'><img width=\"150\" height=\"115\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI4NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jMjBmMGEwOWQ1Yjc2Y2U5MzVhNjY3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/c20f0a09d5b76ce935a667/\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI4NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9lMzFmZGExNzA1YTliY2Y3ZTViODcwLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/e31fda1705a9bcf7e5b870/\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI5NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85NTA1YzQwZDFiYjNhMmVkZmJhMjc4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/9505c40d1bb3a2edfba278/\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9505c40d1bb3a2edfba278.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI5OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8zOGRiMTRkM2NiNmQ3MjMzMmI3Yzc2LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/38db14d3cb6d72332b7c76/\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/38db14d3cb6d72332b7c76.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI5OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iNWVkMWJlNWM0NWI3ZDA1MjQ0YTkzLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/b5ed1be5c45b7d05244a93/\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b5ed1be5c45b7d05244a93.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMwMCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC84NDRlOTM0NjRjZjhmNWE2YWNlOTEwMy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/844e93464cf8f5a6ace9103/\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/844e93464cf8f5a6ace9103.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>','Gallery','','inherit','closed','closed','','2126-revision-v1','','','2024-10-21 06:41:05','2024-10-21 06:41:05','',2126,'http://fe2tech.com/?p=2320',0,'revision','',0),(2321,1,'2024-10-21 06:41:05','2024-10-21 06:41:05','<figure class=\'gallery-item\'>\n				<img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\" alt=\"\" decoding=\"async\" />\n			</figure><figure class=\'gallery-item\'>\n				<img width=\"150\" height=\"115\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\" alt=\"\" decoding=\"async\" />\n			</figure><figure class=\'gallery-item\'>\n				<img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\" alt=\"\" decoding=\"async\" />\n			</figure><figure class=\'gallery-item\'>\n				<img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\" alt=\"\" decoding=\"async\" />\n			</figure><figure class=\'gallery-item\'>\n				<img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9505c40d1bb3a2edfba278.jpg\" alt=\"\" decoding=\"async\" />\n			</figure><figure class=\'gallery-item\'>\n				<img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/38db14d3cb6d72332b7c76.jpg\" alt=\"\" decoding=\"async\" />\n			</figure><figure class=\'gallery-item\'>\n				<img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b5ed1be5c45b7d05244a93.jpg\" alt=\"\" decoding=\"async\" />\n			</figure><figure class=\'gallery-item\'>\n				<img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/844e93464cf8f5a6ace9103.jpg\" alt=\"\" decoding=\"async\" />\n			</figure>','Gallery','','inherit','closed','closed','','2126-revision-v1','','','2024-10-21 06:41:05','2024-10-21 06:41:05','',2126,'http://fe2tech.com/?p=2321',0,'revision','',0),(2322,1,'2024-10-21 06:41:21','2024-10-21 06:41:21','<figure class=\'gallery-item\'>\n				<img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\" alt=\"\" decoding=\"async\" />\n			</figure><figure class=\'gallery-item\'>\n				<img width=\"150\" height=\"115\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\" alt=\"\" decoding=\"async\" />\n			</figure><figure class=\'gallery-item\'>\n				<img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\" alt=\"\" decoding=\"async\" />\n			</figure><figure class=\'gallery-item\'>\n				<img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\" alt=\"\" decoding=\"async\" />\n			</figure><figure class=\'gallery-item\'>\n				<img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9505c40d1bb3a2edfba278.jpg\" alt=\"\" decoding=\"async\" />\n			</figure><figure class=\'gallery-item\'>\n				<img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/38db14d3cb6d72332b7c76.jpg\" alt=\"\" decoding=\"async\" />\n			</figure><figure class=\'gallery-item\'>\n				<img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b5ed1be5c45b7d05244a93.jpg\" alt=\"\" decoding=\"async\" />\n			</figure><figure class=\'gallery-item\'>\n				<img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/844e93464cf8f5a6ace9103.jpg\" alt=\"\" decoding=\"async\" />\n			</figure>','Gallery','','inherit','closed','closed','','2126-revision-v1','','','2024-10-21 06:41:21','2024-10-21 06:41:21','',2126,'http://fe2tech.com/?p=2322',0,'revision','',0),(2323,1,'2024-10-21 06:41:21','2024-10-21 06:41:21','<figure class=\'gallery-item\'>\n				<img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\" alt=\"\" decoding=\"async\" />\n			</figure><figure class=\'gallery-item\'>\n				<img width=\"150\" height=\"115\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\" alt=\"\" decoding=\"async\" />\n			</figure><figure class=\'gallery-item\'>\n				<img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\" alt=\"\" decoding=\"async\" />\n			</figure><figure class=\'gallery-item\'>\n				<img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\" alt=\"\" decoding=\"async\" />\n			</figure><figure class=\'gallery-item\'>\n				<img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9505c40d1bb3a2edfba278.jpg\" alt=\"\" decoding=\"async\" />\n			</figure><figure class=\'gallery-item\'>\n				<img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/38db14d3cb6d72332b7c76.jpg\" alt=\"\" decoding=\"async\" />\n			</figure><figure class=\'gallery-item\'>\n				<img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b5ed1be5c45b7d05244a93.jpg\" alt=\"\" decoding=\"async\" />\n			</figure><figure class=\'gallery-item\'>\n				<img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/844e93464cf8f5a6ace9103.jpg\" alt=\"\" decoding=\"async\" />\n			</figure>','Gallery','','inherit','closed','closed','','2126-revision-v1','','','2024-10-21 06:41:21','2024-10-21 06:41:21','',2126,'http://fe2tech.com/?p=2323',0,'revision','',0),(2324,1,'2024-10-21 06:41:21','2024-10-21 06:41:21','<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI4NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OWUwM2FlOGU1NTY1YzA4MDU0NzcyLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI4NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yODcwNmY3OGIwYzYwOTk4NTBkNzY4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\'><img width=\"150\" height=\"115\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI4NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jMjBmMGEwOWQ1Yjc2Y2U5MzVhNjY3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI4NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9lMzFmZGExNzA1YTliY2Y3ZTViODcwLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI5NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85NTA1YzQwZDFiYjNhMmVkZmJhMjc4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9505c40d1bb3a2edfba278.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9505c40d1bb3a2edfba278.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI5OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8zOGRiMTRkM2NiNmQ3MjMzMmI3Yzc2LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/38db14d3cb6d72332b7c76.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/38db14d3cb6d72332b7c76.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI5OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iNWVkMWJlNWM0NWI3ZDA1MjQ0YTkzLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b5ed1be5c45b7d05244a93.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b5ed1be5c45b7d05244a93.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMwMCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC84NDRlOTM0NjRjZjhmNWE2YWNlOTEwMy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/844e93464cf8f5a6ace9103.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/844e93464cf8f5a6ace9103.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>','Gallery','','inherit','closed','closed','','2126-revision-v1','','','2024-10-21 06:41:21','2024-10-21 06:41:21','',2126,'http://fe2tech.com/?p=2324',0,'revision','',0),(2325,1,'2024-10-21 06:42:37','2024-10-21 06:42:37','<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI4NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OWUwM2FlOGU1NTY1YzA4MDU0NzcyLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI4NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yODcwNmY3OGIwYzYwOTk4NTBkNzY4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\'><img width=\"150\" height=\"115\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI4NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jMjBmMGEwOWQ1Yjc2Y2U5MzVhNjY3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI4NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9lMzFmZGExNzA1YTliY2Y3ZTViODcwLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI5NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85NTA1YzQwZDFiYjNhMmVkZmJhMjc4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9505c40d1bb3a2edfba278.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9505c40d1bb3a2edfba278.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI5OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8zOGRiMTRkM2NiNmQ3MjMzMmI3Yzc2LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/38db14d3cb6d72332b7c76.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/38db14d3cb6d72332b7c76.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI5OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iNWVkMWJlNWM0NWI3ZDA1MjQ0YTkzLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b5ed1be5c45b7d05244a93.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b5ed1be5c45b7d05244a93.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMwMCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC84NDRlOTM0NjRjZjhmNWE2YWNlOTEwMy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/844e93464cf8f5a6ace9103.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/844e93464cf8f5a6ace9103.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>','Gallery','','inherit','closed','closed','','2126-revision-v1','','','2024-10-21 06:42:37','2024-10-21 06:42:37','',2126,'http://fe2tech.com/?p=2325',0,'revision','',0),(2326,1,'2024-10-21 06:42:38','2024-10-21 06:42:38','<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI4NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OWUwM2FlOGU1NTY1YzA4MDU0NzcyLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI4NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yODcwNmY3OGIwYzYwOTk4NTBkNzY4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\'><img width=\"150\" height=\"115\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI4NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jMjBmMGEwOWQ1Yjc2Y2U5MzVhNjY3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI4NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9lMzFmZGExNzA1YTliY2Y3ZTViODcwLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI5NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85NTA1YzQwZDFiYjNhMmVkZmJhMjc4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9505c40d1bb3a2edfba278.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9505c40d1bb3a2edfba278.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI5OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8zOGRiMTRkM2NiNmQ3MjMzMmI3Yzc2LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/38db14d3cb6d72332b7c76.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/38db14d3cb6d72332b7c76.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI5OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iNWVkMWJlNWM0NWI3ZDA1MjQ0YTkzLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b5ed1be5c45b7d05244a93.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b5ed1be5c45b7d05244a93.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMwMCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC84NDRlOTM0NjRjZjhmNWE2YWNlOTEwMy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/844e93464cf8f5a6ace9103.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/844e93464cf8f5a6ace9103.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>','Gallery','','inherit','closed','closed','','2126-revision-v1','','','2024-10-21 06:42:38','2024-10-21 06:42:38','',2126,'http://fe2tech.com/?p=2326',0,'revision','',0),(2327,1,'2024-10-21 06:42:38','2024-10-21 06:42:38','<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI4NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OWUwM2FlOGU1NTY1YzA4MDU0NzcyLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI4NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yODcwNmY3OGIwYzYwOTk4NTBkNzY4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\'><img width=\"150\" height=\"115\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI4NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jMjBmMGEwOWQ1Yjc2Y2U5MzVhNjY3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI4NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9lMzFmZGExNzA1YTliY2Y3ZTViODcwLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI5NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85NTA1YzQwZDFiYjNhMmVkZmJhMjc4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9505c40d1bb3a2edfba278.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9505c40d1bb3a2edfba278.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI5OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8zOGRiMTRkM2NiNmQ3MjMzMmI3Yzc2LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/38db14d3cb6d72332b7c76.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/38db14d3cb6d72332b7c76.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI5OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iNWVkMWJlNWM0NWI3ZDA1MjQ0YTkzLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b5ed1be5c45b7d05244a93.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b5ed1be5c45b7d05244a93.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMwMCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC84NDRlOTM0NjRjZjhmNWE2YWNlOTEwMy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/844e93464cf8f5a6ace9103.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/844e93464cf8f5a6ace9103.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>','Gallery','','inherit','closed','closed','','2126-revision-v1','','','2024-10-21 06:42:38','2024-10-21 06:42:38','',2126,'http://fe2tech.com/?p=2327',0,'revision','',0),(2328,1,'2024-10-21 06:44:30','2024-10-21 06:44:30','','9505c40d1bb3a2edfba278','','inherit','open','closed','','9505c40d1bb3a2edfba278','','','2024-10-21 06:44:30','2024-10-21 06:44:30','',0,'http://fe2tech.com/wp-content/uploads/2024/10/9505c40d1bb3a2edfba278.jpg',0,'attachment','image/jpeg',0),(2329,1,'2024-10-21 06:44:30','2024-10-21 06:44:30','','38db14d3cb6d72332b7c76','','inherit','open','closed','','38db14d3cb6d72332b7c76','','','2024-10-21 06:44:30','2024-10-21 06:44:30','',0,'http://fe2tech.com/wp-content/uploads/2024/10/38db14d3cb6d72332b7c76.jpg',0,'attachment','image/jpeg',0),(2330,1,'2024-10-21 06:44:31','2024-10-21 06:44:31','','b5ed1be5c45b7d05244a93','','inherit','open','closed','','b5ed1be5c45b7d05244a93','','','2024-10-21 06:44:31','2024-10-21 06:44:31','',0,'http://fe2tech.com/wp-content/uploads/2024/10/b5ed1be5c45b7d05244a93.jpg',0,'attachment','image/jpeg',0),(2331,1,'2024-10-21 06:44:32','2024-10-21 06:44:32','','844e93464cf8f5a6ace9103','','inherit','open','closed','','844e93464cf8f5a6ace9103','','','2024-10-21 06:44:32','2024-10-21 06:44:32','',0,'http://fe2tech.com/wp-content/uploads/2024/10/844e93464cf8f5a6ace9103.jpg',0,'attachment','image/jpeg',0),(2332,1,'2024-10-21 06:44:33','2024-10-21 06:44:33','','795d6c55b3eb0ab553fa94','','inherit','open','closed','','795d6c55b3eb0ab553fa94','','','2024-10-21 06:44:33','2024-10-21 06:44:33','',0,'http://fe2tech.com/wp-content/uploads/2024/10/795d6c55b3eb0ab553fa94.jpg',0,'attachment','image/jpeg',0),(2333,1,'2024-10-21 06:44:34','2024-10-21 06:44:34','','a2e5a7ee7850c10e984190','','inherit','open','closed','','a2e5a7ee7850c10e984190','','','2024-10-21 06:44:34','2024-10-21 06:44:34','',0,'http://fe2tech.com/wp-content/uploads/2024/10/a2e5a7ee7850c10e984190.jpg',0,'attachment','image/jpeg',0),(2334,1,'2024-10-21 06:44:35','2024-10-21 06:44:35','','a2e5a7ee7850c10e984189','','inherit','open','closed','','a2e5a7ee7850c10e984189','','','2024-10-21 06:44:35','2024-10-21 06:44:35','',0,'http://fe2tech.com/wp-content/uploads/2024/10/a2e5a7ee7850c10e984189.jpg',0,'attachment','image/jpeg',0),(2335,1,'2024-10-21 06:44:36','2024-10-21 06:44:36','','56c9f8c2277c9e22c76d98','','inherit','open','closed','','56c9f8c2277c9e22c76d98','','','2024-10-21 06:44:36','2024-10-21 06:44:36','',0,'http://fe2tech.com/wp-content/uploads/2024/10/56c9f8c2277c9e22c76d98.jpg',0,'attachment','image/jpeg',0),(2336,1,'2024-10-21 06:44:37','2024-10-21 06:44:37','','4dc6cecf1171a82ff160101','','inherit','open','closed','','4dc6cecf1171a82ff160101','','','2024-10-21 06:44:37','2024-10-21 06:44:37','',0,'http://fe2tech.com/wp-content/uploads/2024/10/4dc6cecf1171a82ff160101.jpg',0,'attachment','image/jpeg',0),(2337,1,'2024-10-21 06:44:38','2024-10-21 06:44:38','','1d260d2fd2916bcf328099','','inherit','open','closed','','1d260d2fd2916bcf328099','','','2024-10-21 06:44:38','2024-10-21 06:44:38','',0,'http://fe2tech.com/wp-content/uploads/2024/10/1d260d2fd2916bcf328099.jpg',0,'attachment','image/jpeg',0),(2338,1,'2024-10-21 06:44:39','2024-10-21 06:44:39','','db3e8e365188e8d6b199119','','inherit','open','closed','','db3e8e365188e8d6b199119','','','2024-10-21 06:44:39','2024-10-21 06:44:39','',0,'http://fe2tech.com/wp-content/uploads/2024/10/db3e8e365188e8d6b199119.jpg',0,'attachment','image/jpeg',0),(2339,1,'2024-10-21 06:44:40','2024-10-21 06:44:40','','b44c1144cefa77a42eeb106','','inherit','open','closed','','b44c1144cefa77a42eeb106','','','2024-10-21 06:44:40','2024-10-21 06:44:40','',0,'http://fe2tech.com/wp-content/uploads/2024/10/b44c1144cefa77a42eeb106.jpg',0,'attachment','image/jpeg',0),(2340,1,'2024-10-21 06:44:41','2024-10-21 06:44:41','','d037ea3f35818cdfd590114','','inherit','open','closed','','d037ea3f35818cdfd590114','','','2024-10-21 06:44:41','2024-10-21 06:44:41','',0,'http://fe2tech.com/wp-content/uploads/2024/10/d037ea3f35818cdfd590114.jpg',0,'attachment','image/jpeg',0),(2341,1,'2024-10-21 06:44:42','2024-10-21 06:44:42','','49290422db9c62c23b8d125','','inherit','open','closed','','49290422db9c62c23b8d125','','','2024-10-21 06:44:42','2024-10-21 06:44:42','',0,'http://fe2tech.com/wp-content/uploads/2024/10/49290422db9c62c23b8d125.jpg',0,'attachment','image/jpeg',0),(2342,1,'2024-10-21 06:44:42','2024-10-21 06:44:42','','49290422db9c62c23b8d124','','inherit','open','closed','','49290422db9c62c23b8d124','','','2024-10-21 06:44:42','2024-10-21 06:44:42','',0,'http://fe2tech.com/wp-content/uploads/2024/10/49290422db9c62c23b8d124.jpg',0,'attachment','image/jpeg',0),(2343,1,'2024-10-21 06:44:43','2024-10-21 06:44:43','','0497279ff821417f1830122','','inherit','open','closed','','0497279ff821417f1830122','','','2024-10-21 06:44:43','2024-10-21 06:44:43','',0,'http://fe2tech.com/wp-content/uploads/2024/10/0497279ff821417f1830122.jpg',0,'attachment','image/jpeg',0),(2344,1,'2024-10-21 06:44:44','2024-10-21 06:44:44','','4185a68d7933c06d9922111','','inherit','open','closed','','4185a68d7933c06d9922111','','','2024-10-21 06:44:44','2024-10-21 06:44:44','',0,'http://fe2tech.com/wp-content/uploads/2024/10/4185a68d7933c06d9922111.jpg',0,'attachment','image/jpeg',0),(2345,1,'2024-10-21 06:44:45','2024-10-21 06:44:45','','2664d66209dcb082e9cd117','','inherit','open','closed','','2664d66209dcb082e9cd117','','','2024-10-21 06:44:45','2024-10-21 06:44:45','',0,'http://fe2tech.com/wp-content/uploads/2024/10/2664d66209dcb082e9cd117.jpg',0,'attachment','image/jpeg',0),(2346,1,'2024-10-21 06:44:46','2024-10-21 06:44:46','','995b95524aecf3b2aafd120','','inherit','open','closed','','995b95524aecf3b2aafd120','','','2024-10-21 06:44:46','2024-10-21 06:44:46','',0,'http://fe2tech.com/wp-content/uploads/2024/10/995b95524aecf3b2aafd120.jpg',0,'attachment','image/jpeg',0),(2347,1,'2024-10-21 06:44:47','2024-10-21 06:44:47','','939e3596ea2853760a39104','','inherit','open','closed','','939e3596ea2853760a39104','','','2024-10-21 06:44:47','2024-10-21 06:44:47','',0,'http://fe2tech.com/wp-content/uploads/2024/10/939e3596ea2853760a39104.jpg',0,'attachment','image/jpeg',0),(2348,1,'2024-10-21 06:44:48','2024-10-21 06:44:48','','96e17fe9a05719094046105','','inherit','open','closed','','96e17fe9a05719094046105','','','2024-10-21 06:44:48','2024-10-21 06:44:48','',0,'http://fe2tech.com/wp-content/uploads/2024/10/96e17fe9a05719094046105.jpg',0,'attachment','image/jpeg',0),(2349,1,'2024-10-21 06:44:49','2024-10-21 06:44:49','','53d3a1db7e65c73b9e74107','','inherit','open','closed','','53d3a1db7e65c73b9e74107','','','2024-10-21 06:44:49','2024-10-21 06:44:49','',0,'http://fe2tech.com/wp-content/uploads/2024/10/53d3a1db7e65c73b9e74107.jpg',0,'attachment','image/jpeg',0),(2350,1,'2024-10-21 06:44:50','2024-10-21 06:44:50','','46f3befa6144d81a8155123','','inherit','open','closed','','46f3befa6144d81a8155123','','','2024-10-21 06:44:50','2024-10-21 06:44:50','',0,'http://fe2tech.com/wp-content/uploads/2024/10/46f3befa6144d81a8155123.jpg',0,'attachment','image/jpeg',0),(2351,1,'2024-10-21 06:44:51','2024-10-21 06:44:51','','9d24a12c7e92c7cc9e83108','','inherit','open','closed','','9d24a12c7e92c7cc9e83108','','','2024-10-21 06:44:51','2024-10-21 06:44:51','',0,'http://fe2tech.com/wp-content/uploads/2024/10/9d24a12c7e92c7cc9e83108.jpg',0,'attachment','image/jpeg',0),(2352,1,'2024-10-21 06:44:52','2024-10-21 06:44:52','','9a4b7643a9fd10a349ec115','','inherit','open','closed','','9a4b7643a9fd10a349ec115','','','2024-10-21 06:44:52','2024-10-21 06:44:52','',0,'http://fe2tech.com/wp-content/uploads/2024/10/9a4b7643a9fd10a349ec115.jpg',0,'attachment','image/jpeg',0),(2353,1,'2024-10-21 06:44:52','2024-10-21 06:44:52','','5a19961f49a1f0ffa9b0118','','inherit','open','closed','','5a19961f49a1f0ffa9b0118','','','2024-10-21 06:44:52','2024-10-21 06:44:52','',0,'http://fe2tech.com/wp-content/uploads/2024/10/5a19961f49a1f0ffa9b0118.jpg',0,'attachment','image/jpeg',0),(2354,1,'2024-10-21 06:44:53','2024-10-21 06:44:53','','04a0fba924179d49c406110','','inherit','open','closed','','04a0fba924179d49c406110','','','2024-10-21 06:44:53','2024-10-21 06:44:53','',0,'http://fe2tech.com/wp-content/uploads/2024/10/04a0fba924179d49c406110.jpg',0,'attachment','image/jpeg',0),(2355,1,'2024-10-21 06:44:54','2024-10-21 06:44:54','','0b32f03b2f8596dbcf94112','','inherit','open','closed','','0b32f03b2f8596dbcf94112','','','2024-10-21 06:44:54','2024-10-21 06:44:54','',0,'http://fe2tech.com/wp-content/uploads/2024/10/0b32f03b2f8596dbcf94112.jpg',0,'attachment','image/jpeg',0),(2356,1,'2024-10-21 06:44:55','2024-10-21 06:44:55','','f7f4c2fc1d42a41cfd53131','','inherit','open','closed','','f7f4c2fc1d42a41cfd53131','','','2024-10-21 06:44:55','2024-10-21 06:44:55','',0,'http://fe2tech.com/wp-content/uploads/2024/10/f7f4c2fc1d42a41cfd53131.jpg',0,'attachment','image/jpeg',0),(2357,1,'2024-10-21 06:44:56','2024-10-21 06:44:56','','b1c8bfc1607fd921806e129','','inherit','open','closed','','b1c8bfc1607fd921806e129','','','2024-10-21 06:44:56','2024-10-21 06:44:56','',0,'http://fe2tech.com/wp-content/uploads/2024/10/b1c8bfc1607fd921806e129.jpg',0,'attachment','image/jpeg',0),(2358,1,'2024-10-21 06:44:57','2024-10-21 06:44:57','','33ccc7ca1874a12af865132','','inherit','open','closed','','33ccc7ca1874a12af865132','','','2024-10-21 06:44:57','2024-10-21 06:44:57','',0,'http://fe2tech.com/wp-content/uploads/2024/10/33ccc7ca1874a12af865132.jpg',0,'attachment','image/jpeg',0),(2359,1,'2024-10-21 06:44:58','2024-10-21 06:44:58','','0cc88ec1517fe821b16e130','','inherit','open','closed','','0cc88ec1517fe821b16e130','','','2024-10-21 06:44:58','2024-10-21 06:44:58','',0,'http://fe2tech.com/wp-content/uploads/2024/10/0cc88ec1517fe821b16e130.jpg',0,'attachment','image/jpeg',0),(2360,1,'2024-10-21 06:44:59','2024-10-21 06:44:59','','2c7e6676b9c8009659d9126','','inherit','open','closed','','2c7e6676b9c8009659d9126','','','2024-10-21 06:44:59','2024-10-21 06:44:59','',0,'http://fe2tech.com/wp-content/uploads/2024/10/2c7e6676b9c8009659d9126.jpg',0,'attachment','image/jpeg',0),(2361,1,'2024-10-21 06:45:00','2024-10-21 06:45:00','','57de4ad695682c367579128','','inherit','open','closed','','57de4ad695682c367579128','','','2024-10-21 06:45:00','2024-10-21 06:45:00','',0,'http://fe2tech.com/wp-content/uploads/2024/10/57de4ad695682c367579128.jpg',0,'attachment','image/jpeg',0),(2362,1,'2024-10-21 06:45:01','2024-10-21 06:45:01','','62fb72f0ad4e14104d5f127','','inherit','open','closed','','62fb72f0ad4e14104d5f127','','','2024-10-21 06:45:01','2024-10-21 06:45:01','',0,'http://fe2tech.com/wp-content/uploads/2024/10/62fb72f0ad4e14104d5f127.jpg',0,'attachment','image/jpeg',0),(2363,1,'2024-10-21 06:45:02','2024-10-21 06:45:02','','795df95426ea9fb4c6fb116','','inherit','open','closed','','795df95426ea9fb4c6fb116','','','2024-10-21 06:45:02','2024-10-21 06:45:02','',0,'http://fe2tech.com/wp-content/uploads/2024/10/795df95426ea9fb4c6fb116.jpg',0,'attachment','image/jpeg',0),(2364,1,'2024-10-21 06:45:03','2024-10-21 06:45:03','','97509a5945e7fcb9a5f6113','','inherit','open','closed','','97509a5945e7fcb9a5f6113','','','2024-10-21 06:45:03','2024-10-21 06:45:03','',0,'http://fe2tech.com/wp-content/uploads/2024/10/97509a5945e7fcb9a5f6113.jpg',0,'attachment','image/jpeg',0),(2365,1,'2024-10-21 06:45:03','2024-10-21 06:45:03','','b9007d06a2b81be642a9109','','inherit','open','closed','','b9007d06a2b81be642a9109','','','2024-10-21 06:45:03','2024-10-21 06:45:03','',0,'http://fe2tech.com/wp-content/uploads/2024/10/b9007d06a2b81be642a9109.jpg',0,'attachment','image/jpeg',0),(2366,1,'2024-10-21 06:45:04','2024-10-21 06:45:04','','da27722fad9114cf4d80121','','inherit','open','closed','','da27722fad9114cf4d80121','','','2024-10-21 06:45:04','2024-10-21 06:45:04','',0,'http://fe2tech.com/wp-content/uploads/2024/10/da27722fad9114cf4d80121.jpg',0,'attachment','image/jpeg',0),(2367,1,'2024-10-21 06:45:05','2024-10-21 06:45:05','','1ab1f4b72b099257cb1897','','inherit','open','closed','','1ab1f4b72b099257cb1897','','','2024-10-21 06:45:05','2024-10-21 06:45:05','',0,'http://fe2tech.com/wp-content/uploads/2024/10/1ab1f4b72b099257cb1897.jpg',0,'attachment','image/jpeg',0),(2368,1,'2024-10-21 06:45:06','2024-10-21 06:45:06','','4af3fbfb24459d1bc45484','','inherit','open','closed','','4af3fbfb24459d1bc45484','','','2024-10-21 06:45:06','2024-10-21 06:45:06','',0,'http://fe2tech.com/wp-content/uploads/2024/10/4af3fbfb24459d1bc45484.jpg',0,'attachment','image/jpeg',0),(2369,1,'2024-10-21 06:45:07','2024-10-21 06:45:07','','7cde64d6bb6802365b79102','','inherit','open','closed','','7cde64d6bb6802365b79102','','','2024-10-21 06:45:07','2024-10-21 06:45:07','',0,'http://fe2tech.com/wp-content/uploads/2024/10/7cde64d6bb6802365b79102.jpg',0,'attachment','image/jpeg',0),(2370,1,'2024-10-21 06:45:08','2024-10-21 06:45:08','','7ef794f14b4ff211ab5e91','','inherit','open','closed','','7ef794f14b4ff211ab5e91','','','2024-10-21 06:45:08','2024-10-21 06:45:08','',0,'http://fe2tech.com/wp-content/uploads/2024/10/7ef794f14b4ff211ab5e91.jpg',0,'attachment','image/jpeg',0),(2371,1,'2024-10-21 06:45:09','2024-10-21 06:45:09','','7ef794f14b4ff211ab5e92','','inherit','open','closed','','7ef794f14b4ff211ab5e92','','','2024-10-21 06:45:09','2024-10-21 06:45:09','',0,'http://fe2tech.com/wp-content/uploads/2024/10/7ef794f14b4ff211ab5e92.jpg',0,'attachment','image/jpeg',0),(2372,1,'2024-10-21 06:45:10','2024-10-21 06:45:10','','8ea396aa4914f04aa90588','','inherit','open','closed','','8ea396aa4914f04aa90588','','','2024-10-21 06:45:10','2024-10-21 06:45:10','',0,'http://fe2tech.com/wp-content/uploads/2024/10/8ea396aa4914f04aa90588.jpg',0,'attachment','image/jpeg',0),(2373,1,'2024-10-21 06:45:11','2024-10-21 06:45:11','','41a76fafb011094f500096','','inherit','open','closed','','41a76fafb011094f500096','','','2024-10-21 06:45:11','2024-10-21 06:45:11','',0,'http://fe2tech.com/wp-content/uploads/2024/10/41a76fafb011094f500096.jpg',0,'attachment','image/jpeg',0),(2374,1,'2024-10-21 06:45:12','2024-10-21 06:45:12','','284ee1483ef687a8dee795','','inherit','open','closed','','284ee1483ef687a8dee795','','','2024-10-21 06:45:12','2024-10-21 06:45:12','',0,'http://fe2tech.com/wp-content/uploads/2024/10/284ee1483ef687a8dee795.jpg',0,'attachment','image/jpeg',0),(2375,1,'2024-10-21 06:45:13','2024-10-21 06:45:13','','c010d91906a7bff9e6b685','','inherit','open','closed','','c010d91906a7bff9e6b685','','','2024-10-21 06:45:13','2024-10-21 06:45:13','',0,'http://fe2tech.com/wp-content/uploads/2024/10/c010d91906a7bff9e6b685.jpg',0,'attachment','image/jpeg',0),(2376,1,'2024-10-21 06:45:13','2024-10-21 06:45:13','','c546934e4cf0f5aeace1100','','inherit','open','closed','','c546934e4cf0f5aeace1100','','','2024-10-21 06:45:13','2024-10-21 06:45:13','',0,'http://fe2tech.com/wp-content/uploads/2024/10/c546934e4cf0f5aeace1100.jpg',0,'attachment','image/jpeg',0),(2377,1,'2024-10-21 06:45:14','2024-10-21 06:45:14','','ccd73edee160583e017187','','inherit','open','closed','','ccd73edee160583e017187','','','2024-10-21 06:45:14','2024-10-21 06:45:14','',0,'http://fe2tech.com/wp-content/uploads/2024/10/ccd73edee160583e017187.jpg',0,'attachment','image/jpeg',0),(2378,1,'2024-10-21 06:45:15','2024-10-21 06:45:15','','dfb58bbd5403ed5db41286','','inherit','open','closed','','dfb58bbd5403ed5db41286','','','2024-10-21 06:45:15','2024-10-21 06:45:15','',0,'http://fe2tech.com/wp-content/uploads/2024/10/dfb58bbd5403ed5db41286.jpg',0,'attachment','image/jpeg',0),(2379,1,'2024-10-21 06:45:16','2024-10-21 06:45:16','','42f158f887463e18675775','','inherit','open','closed','','42f158f887463e18675775','','','2024-10-21 06:45:16','2024-10-21 06:45:16','',0,'http://fe2tech.com/wp-content/uploads/2024/10/42f158f887463e18675775.jpg',0,'attachment','image/jpeg',0),(2380,1,'2024-10-21 06:45:17','2024-10-21 06:45:17','','57c577cda873112d486282','','inherit','open','closed','','57c577cda873112d486282','','','2024-10-21 06:45:17','2024-10-21 06:45:17','',0,'http://fe2tech.com/wp-content/uploads/2024/10/57c577cda873112d486282.jpg',0,'attachment','image/jpeg',0),(2381,1,'2024-10-21 06:45:18','2024-10-21 06:45:18','','91a553a38c1d35436c0c83','','inherit','open','closed','','91a553a38c1d35436c0c83','','','2024-10-21 06:45:18','2024-10-21 06:45:18','',0,'http://fe2tech.com/wp-content/uploads/2024/10/91a553a38c1d35436c0c83.jpg',0,'attachment','image/jpeg',0),(2382,1,'2024-10-21 06:45:19','2024-10-21 06:45:19','','350f2406fbb842e61ba980','','inherit','open','closed','','350f2406fbb842e61ba980','','','2024-10-21 06:45:19','2024-10-21 06:45:19','',0,'http://fe2tech.com/wp-content/uploads/2024/10/350f2406fbb842e61ba980.jpg',0,'attachment','image/jpeg',0),(2383,1,'2024-10-21 06:45:20','2024-10-21 06:45:20','','350f2406fbb842e61ba981','','inherit','open','closed','','350f2406fbb842e61ba981','','','2024-10-21 06:45:20','2024-10-21 06:45:20','',0,'http://fe2tech.com/wp-content/uploads/2024/10/350f2406fbb842e61ba981.jpg',0,'attachment','image/jpeg',0),(2384,1,'2024-10-21 06:45:21','2024-10-21 06:45:21','','1289df8f0031b96fe02079','','inherit','open','closed','','1289df8f0031b96fe02079','','','2024-10-21 06:45:21','2024-10-21 06:45:21','',0,'http://fe2tech.com/wp-content/uploads/2024/10/1289df8f0031b96fe02079.jpg',0,'attachment','image/jpeg',0),(2385,1,'2024-10-21 06:45:22','2024-10-21 06:45:22','','4480b4896b37d2698b2677','','inherit','open','closed','','4480b4896b37d2698b2677','','','2024-10-21 06:45:22','2024-10-21 06:45:22','',0,'http://fe2tech.com/wp-content/uploads/2024/10/4480b4896b37d2698b2677.jpg',0,'attachment','image/jpeg',0),(2386,1,'2024-10-21 06:45:23','2024-10-21 06:45:23','','a4888f80503ee960b02f74','','inherit','open','closed','','a4888f80503ee960b02f74','','','2024-10-21 06:45:23','2024-10-21 06:45:23','',0,'http://fe2tech.com/wp-content/uploads/2024/10/a4888f80503ee960b02f74.jpg',0,'attachment','image/jpeg',0),(2387,1,'2024-10-21 06:45:23','2024-10-21 06:45:23','','07c54ece9170282e716171','','inherit','open','closed','','07c54ece9170282e716171','','','2024-10-21 06:45:23','2024-10-21 06:45:23','',0,'http://fe2tech.com/wp-content/uploads/2024/10/07c54ece9170282e716171.jpg',0,'attachment','image/jpeg',0),(2388,1,'2024-10-21 06:45:24','2024-10-21 06:45:24','','8d79cb7114cfad91f4de73','','inherit','open','closed','','8d79cb7114cfad91f4de73','','','2024-10-21 06:45:24','2024-10-21 06:45:24','',0,'http://fe2tech.com/wp-content/uploads/2024/10/8d79cb7114cfad91f4de73.jpg',0,'attachment','image/jpeg',0),(2389,1,'2024-10-21 06:45:25','2024-10-21 06:45:25','','79e03ae8e5565c08054772','','inherit','open','closed','','79e03ae8e5565c08054772','','','2024-10-21 06:45:25','2024-10-21 06:45:25','',0,'http://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg',0,'attachment','image/jpeg',0),(2390,1,'2024-10-21 06:45:26','2024-10-21 06:45:26','','28706f78b0c6099850d768','','inherit','open','closed','','28706f78b0c6099850d768','','','2024-10-21 06:45:26','2024-10-21 06:45:26','',0,'http://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg',0,'attachment','image/jpeg',0),(2391,1,'2024-10-21 06:45:27','2024-10-21 06:45:27','','c20f0a09d5b76ce935a667','','inherit','open','closed','','c20f0a09d5b76ce935a667','','','2024-10-21 06:45:27','2024-10-21 06:45:27','',0,'http://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg',0,'attachment','image/jpeg',0),(2392,1,'2024-10-21 06:45:28','2024-10-21 06:45:28','','e31fda1705a9bcf7e5b870','','inherit','open','closed','','e31fda1705a9bcf7e5b870','','','2024-10-21 06:45:28','2024-10-21 06:45:28','',0,'http://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg',0,'attachment','image/jpeg',0),(2394,1,'2024-10-21 06:51:44','2024-10-21 06:51:44','<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI4NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OWUwM2FlOGU1NTY1YzA4MDU0NzcyLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI4NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yODcwNmY3OGIwYzYwOTk4NTBkNzY4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\'><img width=\"150\" height=\"115\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI4NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jMjBmMGEwOWQ1Yjc2Y2U5MzVhNjY3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI4NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9lMzFmZGExNzA1YTliY2Y3ZTViODcwLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI5NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85NTA1YzQwZDFiYjNhMmVkZmJhMjc4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9505c40d1bb3a2edfba278.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9505c40d1bb3a2edfba278.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI5OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8zOGRiMTRkM2NiNmQ3MjMzMmI3Yzc2LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/38db14d3cb6d72332b7c76.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/38db14d3cb6d72332b7c76.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI5OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iNWVkMWJlNWM0NWI3ZDA1MjQ0YTkzLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b5ed1be5c45b7d05244a93.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b5ed1be5c45b7d05244a93.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMwMCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC84NDRlOTM0NjRjZjhmNWE2YWNlOTEwMy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/844e93464cf8f5a6ace9103.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/844e93464cf8f5a6ace9103.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>','Gallery','','inherit','closed','closed','','2126-revision-v1','','','2024-10-21 06:51:44','2024-10-21 06:51:44','',2126,'http://fe2tech.com/?p=2394',0,'revision','',0),(2395,1,'2024-10-21 06:51:44','2024-10-21 06:51:44','<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI4NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OWUwM2FlOGU1NTY1YzA4MDU0NzcyLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI4NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yODcwNmY3OGIwYzYwOTk4NTBkNzY4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\'><img width=\"150\" height=\"115\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI4NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jMjBmMGEwOWQ1Yjc2Y2U5MzVhNjY3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI4NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9lMzFmZGExNzA1YTliY2Y3ZTViODcwLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI5NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85NTA1YzQwZDFiYjNhMmVkZmJhMjc4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9505c40d1bb3a2edfba278.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9505c40d1bb3a2edfba278.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI5OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8zOGRiMTRkM2NiNmQ3MjMzMmI3Yzc2LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/38db14d3cb6d72332b7c76.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/38db14d3cb6d72332b7c76.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjI5OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iNWVkMWJlNWM0NWI3ZDA1MjQ0YTkzLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b5ed1be5c45b7d05244a93.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b5ed1be5c45b7d05244a93.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMwMCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC84NDRlOTM0NjRjZjhmNWE2YWNlOTEwMy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/844e93464cf8f5a6ace9103.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/844e93464cf8f5a6ace9103.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>','Gallery','','inherit','closed','closed','','2126-revision-v1','','','2024-10-21 06:51:44','2024-10-21 06:51:44','',2126,'http://fe2tech.com/?p=2395',0,'revision','',0),(2396,1,'2024-10-21 06:51:44','2024-10-21 06:51:44','<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMyOCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85NTA1YzQwZDFiYjNhMmVkZmJhMjc4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9505c40d1bb3a2edfba278.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9505c40d1bb3a2edfba278.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMyOSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8zOGRiMTRkM2NiNmQ3MjMzMmI3Yzc2LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/38db14d3cb6d72332b7c76.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/38db14d3cb6d72332b7c76.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iNWVkMWJlNWM0NWI3ZDA1MjQ0YTkzLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b5ed1be5c45b7d05244a93.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b5ed1be5c45b7d05244a93.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC84NDRlOTM0NjRjZjhmNWE2YWNlOTEwMy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/844e93464cf8f5a6ace9103.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/844e93464cf8f5a6ace9103.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OTVkNmM1NWIzZWIwYWI1NTNmYTk0LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/795d6c55b3eb0ab553fa94.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/795d6c55b3eb0ab553fa94.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9hMmU1YTdlZTc4NTBjMTBlOTg0MTkwLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/a2e5a7ee7850c10e984190.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/a2e5a7ee7850c10e984190.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzNCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9hMmU1YTdlZTc4NTBjMTBlOTg0MTg5LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/a2e5a7ee7850c10e984189.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/a2e5a7ee7850c10e984189.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzNiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80ZGM2Y2VjZjExNzFhODJmZjE2MDEwMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4dc6cecf1171a82ff160101.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4dc6cecf1171a82ff160101.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzNywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8xZDI2MGQyZmQyOTE2YmNmMzI4MDk5LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/1d260d2fd2916bcf328099.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/1d260d2fd2916bcf328099.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzOCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kYjNlOGUzNjUxODhlOGQ2YjE5OTExOS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/db3e8e365188e8d6b199119.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/db3e8e365188e8d6b199119.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzOSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iNDRjMTE0NGNlZmE3N2E0MmVlYjEwNi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b44c1144cefa77a42eeb106.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b44c1144cefa77a42eeb106.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kMDM3ZWEzZjM1ODE4Y2RmZDU5MDExNC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/d037ea3f35818cdfd590114.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/d037ea3f35818cdfd590114.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80OTI5MDQyMmRiOWM2MmMyM2I4ZDEyNS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/49290422db9c62c23b8d125.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/49290422db9c62c23b8d125.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80OTI5MDQyMmRiOWM2MmMyM2I4ZDEyNC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/49290422db9c62c23b8d124.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/49290422db9c62c23b8d124.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wNDk3Mjc5ZmY4MjE0MTdmMTgzMDEyMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/0497279ff821417f1830122.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/0497279ff821417f1830122.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80MTg1YTY4ZDc5MzNjMDZkOTkyMjExMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4185a68d7933c06d9922111.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4185a68d7933c06d9922111.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yNjY0ZDY2MjA5ZGNiMDgyZTljZDExNy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/2664d66209dcb082e9cd117.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2664d66209dcb082e9cd117.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85OTViOTU1MjRhZWNmM2IyYWFmZDEyMC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/995b95524aecf3b2aafd120.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/995b95524aecf3b2aafd120.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85MzllMzU5NmVhMjg1Mzc2MGEzOTEwNC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/939e3596ea2853760a39104.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/939e3596ea2853760a39104.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85NmUxN2ZlOWEwNTcxOTA5NDA0NjEwNS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/96e17fe9a05719094046105.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/96e17fe9a05719094046105.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81M2QzYTFkYjdlNjVjNzNiOWU3NDEwNy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/53d3a1db7e65c73b9e74107.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/53d3a1db7e65c73b9e74107.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80NmYzYmVmYTYxNDRkODFhODE1NTEyMy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/46f3befa6144d81a8155123.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/46f3befa6144d81a8155123.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85ZDI0YTEyYzdlOTJjN2NjOWU4MzEwOC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9d24a12c7e92c7cc9e83108.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9d24a12c7e92c7cc9e83108.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85YTRiNzY0M2E5ZmQxMGEzNDllYzExNS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9a4b7643a9fd10a349ec115.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9a4b7643a9fd10a349ec115.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81YTE5OTYxZjQ5YTFmMGZmYTliMDExOC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/5a19961f49a1f0ffa9b0118.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/5a19961f49a1f0ffa9b0118.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wYjMyZjAzYjJmODU5NmRiY2Y5NDExMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/0b32f03b2f8596dbcf94112.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/0b32f03b2f8596dbcf94112.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9mN2Y0YzJmYzFkNDJhNDFjZmQ1MzEzMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/f7f4c2fc1d42a41cfd53131.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/f7f4c2fc1d42a41cfd53131.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iMWM4YmZjMTYwN2ZkOTIxODA2ZTEyOS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b1c8bfc1607fd921806e129.jpg\'><img width=\"112\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b1c8bfc1607fd921806e129.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8zM2NjYzdjYTE4NzRhMTJhZjg2NTEzMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/33ccc7ca1874a12af865132.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/33ccc7ca1874a12af865132.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wY2M4OGVjMTUxN2ZlODIxYjE2ZTEzMC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/0cc88ec1517fe821b16e130.jpg\'><img width=\"150\" height=\"86\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/0cc88ec1517fe821b16e130.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yYzdlNjY3NmI5YzgwMDk2NTlkOTEyNi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/2c7e6676b9c8009659d9126.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2c7e6676b9c8009659d9126.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81N2RlNGFkNjk1NjgyYzM2NzU3OTEyOC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/57de4ad695682c367579128.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/57de4ad695682c367579128.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC82MmZiNzJmMGFkNGUxNDEwNGQ1ZjEyNy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/62fb72f0ad4e14104d5f127.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/62fb72f0ad4e14104d5f127.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80YWYzZmJmYjI0NDU5ZDFiYzQ1NDg0LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4af3fbfb24459d1bc45484.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4af3fbfb24459d1bc45484.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8xYWIxZjRiNzJiMDk5MjU3Y2IxODk3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/1ab1f4b72b099257cb1897.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/1ab1f4b72b099257cb1897.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kYTI3NzIyZmFkOTExNGNmNGQ4MDEyMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/da27722fad9114cf4d80121.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/da27722fad9114cf4d80121.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iOTAwN2QwNmEyYjgxYmU2NDJhOTEwOS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b9007d06a2b81be642a9109.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b9007d06a2b81be642a9109.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85NzUwOWE1OTQ1ZTdmY2I5YTVmNjExMy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/97509a5945e7fcb9a5f6113.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/97509a5945e7fcb9a5f6113.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OTVkZjk1NDI2ZWE5ZmI0YzZmYjExNi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/795df95426ea9fb4c6fb116.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/795df95426ea9fb4c6fb116.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83Y2RlNjRkNmJiNjgwMjM2NWI3OTEwMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/7cde64d6bb6802365b79102.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/7cde64d6bb6802365b79102.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83ZWY3OTRmMTRiNGZmMjExYWI1ZTkxLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/7ef794f14b4ff211ab5e91.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/7ef794f14b4ff211ab5e91.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83ZWY3OTRmMTRiNGZmMjExYWI1ZTkyLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/7ef794f14b4ff211ab5e92.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/7ef794f14b4ff211ab5e92.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC84ZWEzOTZhYTQ5MTRmMDRhYTkwNTg4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/8ea396aa4914f04aa90588.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/8ea396aa4914f04aa90588.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80MWE3NmZhZmIwMTEwOTRmNTAwMDk2LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/41a76fafb011094f500096.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/41a76fafb011094f500096.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yODRlZTE0ODNlZjY4N2E4ZGVlNzk1LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/284ee1483ef687a8dee795.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/284ee1483ef687a8dee795.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81N2M1NzdjZGE4NzMxMTJkNDg2MjgyLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/57c577cda873112d486282.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/57c577cda873112d486282.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80MmYxNThmODg3NDYzZTE4Njc1Nzc1LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/42f158f887463e18675775.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/42f158f887463e18675775.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kZmI1OGJiZDU0MDNlZDVkYjQxMjg2LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/dfb58bbd5403ed5db41286.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/dfb58bbd5403ed5db41286.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jY2Q3M2VkZWUxNjA1ODNlMDE3MTg3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/ccd73edee160583e017187.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/ccd73edee160583e017187.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jNTQ2OTM0ZTRjZjBmNWFlYWNlMTEwMC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c546934e4cf0f5aeace1100.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c546934e4cf0f5aeace1100.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jMDEwZDkxOTA2YTdiZmY5ZTZiNjg1LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c010d91906a7bff9e6b685.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c010d91906a7bff9e6b685.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85MWE1NTNhMzhjMWQzNTQzNmMwYzgzLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/91a553a38c1d35436c0c83.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/91a553a38c1d35436c0c83.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8zNTBmMjQwNmZiYjg0MmU2MWJhOTgwLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/350f2406fbb842e61ba980.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/350f2406fbb842e61ba980.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8zNTBmMjQwNmZiYjg0MmU2MWJhOTgxLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/350f2406fbb842e61ba981.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/350f2406fbb842e61ba981.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8xMjg5ZGY4ZjAwMzFiOTZmZTAyMDc5LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/1289df8f0031b96fe02079.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/1289df8f0031b96fe02079.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80NDgwYjQ4OTZiMzdkMjY5OGIyNjc3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4480b4896b37d2698b2677.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4480b4896b37d2698b2677.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9hNDg4OGY4MDUwM2VlOTYwYjAyZjc0LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/a4888f80503ee960b02f74.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/a4888f80503ee960b02f74.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM5MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9lMzFmZGExNzA1YTliY2Y3ZTViODcwLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM5MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jMjBmMGEwOWQ1Yjc2Y2U5MzVhNjY3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM5MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yODcwNmY3OGIwYzYwOTk4NTBkNzY4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\'><img width=\"150\" height=\"115\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OWUwM2FlOGU1NTY1YzA4MDU0NzcyLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wN2M1NGVjZTkxNzAyODJlNzE2MTcxLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/07c54ece9170282e716171.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/07c54ece9170282e716171.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC84ZDc5Y2I3MTE0Y2ZhZDkxZjRkZTczLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/8d79cb7114cfad91f4de73.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/8d79cb7114cfad91f4de73.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzNSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81NmM5ZjhjMjI3N2M5ZTIyYzc2ZDk4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/56c9f8c2277c9e22c76d98.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/56c9f8c2277c9e22c76d98.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>','Gallery','','inherit','closed','closed','','2126-revision-v1','','','2024-10-21 06:51:44','2024-10-21 06:51:44','',2126,'http://fe2tech.com/?p=2396',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (2397,1,'2024-10-21 06:59:12','2024-10-21 06:59:12','<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMyOCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85NTA1YzQwZDFiYjNhMmVkZmJhMjc4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9505c40d1bb3a2edfba278.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9505c40d1bb3a2edfba278.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMyOSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8zOGRiMTRkM2NiNmQ3MjMzMmI3Yzc2LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/38db14d3cb6d72332b7c76.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/38db14d3cb6d72332b7c76.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iNWVkMWJlNWM0NWI3ZDA1MjQ0YTkzLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b5ed1be5c45b7d05244a93.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b5ed1be5c45b7d05244a93.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC84NDRlOTM0NjRjZjhmNWE2YWNlOTEwMy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/844e93464cf8f5a6ace9103.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/844e93464cf8f5a6ace9103.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OTVkNmM1NWIzZWIwYWI1NTNmYTk0LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/795d6c55b3eb0ab553fa94.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/795d6c55b3eb0ab553fa94.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9hMmU1YTdlZTc4NTBjMTBlOTg0MTkwLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/a2e5a7ee7850c10e984190.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/a2e5a7ee7850c10e984190.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzNCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9hMmU1YTdlZTc4NTBjMTBlOTg0MTg5LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/a2e5a7ee7850c10e984189.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/a2e5a7ee7850c10e984189.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzNiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80ZGM2Y2VjZjExNzFhODJmZjE2MDEwMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4dc6cecf1171a82ff160101.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4dc6cecf1171a82ff160101.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzNywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8xZDI2MGQyZmQyOTE2YmNmMzI4MDk5LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/1d260d2fd2916bcf328099.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/1d260d2fd2916bcf328099.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzOCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kYjNlOGUzNjUxODhlOGQ2YjE5OTExOS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/db3e8e365188e8d6b199119.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/db3e8e365188e8d6b199119.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzOSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iNDRjMTE0NGNlZmE3N2E0MmVlYjEwNi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b44c1144cefa77a42eeb106.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b44c1144cefa77a42eeb106.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kMDM3ZWEzZjM1ODE4Y2RmZDU5MDExNC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/d037ea3f35818cdfd590114.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/d037ea3f35818cdfd590114.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80OTI5MDQyMmRiOWM2MmMyM2I4ZDEyNS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/49290422db9c62c23b8d125.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/49290422db9c62c23b8d125.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80OTI5MDQyMmRiOWM2MmMyM2I4ZDEyNC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/49290422db9c62c23b8d124.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/49290422db9c62c23b8d124.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wNDk3Mjc5ZmY4MjE0MTdmMTgzMDEyMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/0497279ff821417f1830122.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/0497279ff821417f1830122.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80MTg1YTY4ZDc5MzNjMDZkOTkyMjExMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4185a68d7933c06d9922111.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4185a68d7933c06d9922111.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yNjY0ZDY2MjA5ZGNiMDgyZTljZDExNy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/2664d66209dcb082e9cd117.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2664d66209dcb082e9cd117.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85OTViOTU1MjRhZWNmM2IyYWFmZDEyMC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/995b95524aecf3b2aafd120.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/995b95524aecf3b2aafd120.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85MzllMzU5NmVhMjg1Mzc2MGEzOTEwNC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/939e3596ea2853760a39104.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/939e3596ea2853760a39104.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85NmUxN2ZlOWEwNTcxOTA5NDA0NjEwNS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/96e17fe9a05719094046105.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/96e17fe9a05719094046105.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81M2QzYTFkYjdlNjVjNzNiOWU3NDEwNy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/53d3a1db7e65c73b9e74107.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/53d3a1db7e65c73b9e74107.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80NmYzYmVmYTYxNDRkODFhODE1NTEyMy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/46f3befa6144d81a8155123.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/46f3befa6144d81a8155123.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85ZDI0YTEyYzdlOTJjN2NjOWU4MzEwOC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9d24a12c7e92c7cc9e83108.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9d24a12c7e92c7cc9e83108.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85YTRiNzY0M2E5ZmQxMGEzNDllYzExNS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9a4b7643a9fd10a349ec115.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9a4b7643a9fd10a349ec115.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81YTE5OTYxZjQ5YTFmMGZmYTliMDExOC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/5a19961f49a1f0ffa9b0118.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/5a19961f49a1f0ffa9b0118.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wYjMyZjAzYjJmODU5NmRiY2Y5NDExMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/0b32f03b2f8596dbcf94112.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/0b32f03b2f8596dbcf94112.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9mN2Y0YzJmYzFkNDJhNDFjZmQ1MzEzMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/f7f4c2fc1d42a41cfd53131.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/f7f4c2fc1d42a41cfd53131.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iMWM4YmZjMTYwN2ZkOTIxODA2ZTEyOS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b1c8bfc1607fd921806e129.jpg\'><img width=\"112\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b1c8bfc1607fd921806e129.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8zM2NjYzdjYTE4NzRhMTJhZjg2NTEzMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/33ccc7ca1874a12af865132.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/33ccc7ca1874a12af865132.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wY2M4OGVjMTUxN2ZlODIxYjE2ZTEzMC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/0cc88ec1517fe821b16e130.jpg\'><img width=\"150\" height=\"86\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/0cc88ec1517fe821b16e130.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yYzdlNjY3NmI5YzgwMDk2NTlkOTEyNi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/2c7e6676b9c8009659d9126.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2c7e6676b9c8009659d9126.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81N2RlNGFkNjk1NjgyYzM2NzU3OTEyOC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/57de4ad695682c367579128.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/57de4ad695682c367579128.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC82MmZiNzJmMGFkNGUxNDEwNGQ1ZjEyNy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/62fb72f0ad4e14104d5f127.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/62fb72f0ad4e14104d5f127.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80YWYzZmJmYjI0NDU5ZDFiYzQ1NDg0LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4af3fbfb24459d1bc45484.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4af3fbfb24459d1bc45484.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8xYWIxZjRiNzJiMDk5MjU3Y2IxODk3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/1ab1f4b72b099257cb1897.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/1ab1f4b72b099257cb1897.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kYTI3NzIyZmFkOTExNGNmNGQ4MDEyMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/da27722fad9114cf4d80121.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/da27722fad9114cf4d80121.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iOTAwN2QwNmEyYjgxYmU2NDJhOTEwOS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b9007d06a2b81be642a9109.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b9007d06a2b81be642a9109.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85NzUwOWE1OTQ1ZTdmY2I5YTVmNjExMy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/97509a5945e7fcb9a5f6113.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/97509a5945e7fcb9a5f6113.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OTVkZjk1NDI2ZWE5ZmI0YzZmYjExNi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/795df95426ea9fb4c6fb116.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/795df95426ea9fb4c6fb116.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83Y2RlNjRkNmJiNjgwMjM2NWI3OTEwMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/7cde64d6bb6802365b79102.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/7cde64d6bb6802365b79102.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83ZWY3OTRmMTRiNGZmMjExYWI1ZTkxLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/7ef794f14b4ff211ab5e91.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/7ef794f14b4ff211ab5e91.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83ZWY3OTRmMTRiNGZmMjExYWI1ZTkyLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/7ef794f14b4ff211ab5e92.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/7ef794f14b4ff211ab5e92.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC84ZWEzOTZhYTQ5MTRmMDRhYTkwNTg4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/8ea396aa4914f04aa90588.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/8ea396aa4914f04aa90588.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80MWE3NmZhZmIwMTEwOTRmNTAwMDk2LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/41a76fafb011094f500096.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/41a76fafb011094f500096.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yODRlZTE0ODNlZjY4N2E4ZGVlNzk1LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/284ee1483ef687a8dee795.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/284ee1483ef687a8dee795.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81N2M1NzdjZGE4NzMxMTJkNDg2MjgyLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/57c577cda873112d486282.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/57c577cda873112d486282.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80MmYxNThmODg3NDYzZTE4Njc1Nzc1LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/42f158f887463e18675775.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/42f158f887463e18675775.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kZmI1OGJiZDU0MDNlZDVkYjQxMjg2LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/dfb58bbd5403ed5db41286.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/dfb58bbd5403ed5db41286.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jY2Q3M2VkZWUxNjA1ODNlMDE3MTg3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/ccd73edee160583e017187.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/ccd73edee160583e017187.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jNTQ2OTM0ZTRjZjBmNWFlYWNlMTEwMC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c546934e4cf0f5aeace1100.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c546934e4cf0f5aeace1100.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jMDEwZDkxOTA2YTdiZmY5ZTZiNjg1LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c010d91906a7bff9e6b685.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c010d91906a7bff9e6b685.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85MWE1NTNhMzhjMWQzNTQzNmMwYzgzLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/91a553a38c1d35436c0c83.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/91a553a38c1d35436c0c83.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8zNTBmMjQwNmZiYjg0MmU2MWJhOTgwLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/350f2406fbb842e61ba980.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/350f2406fbb842e61ba980.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8zNTBmMjQwNmZiYjg0MmU2MWJhOTgxLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/350f2406fbb842e61ba981.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/350f2406fbb842e61ba981.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8xMjg5ZGY4ZjAwMzFiOTZmZTAyMDc5LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/1289df8f0031b96fe02079.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/1289df8f0031b96fe02079.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80NDgwYjQ4OTZiMzdkMjY5OGIyNjc3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4480b4896b37d2698b2677.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4480b4896b37d2698b2677.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9hNDg4OGY4MDUwM2VlOTYwYjAyZjc0LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/a4888f80503ee960b02f74.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/a4888f80503ee960b02f74.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM5MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9lMzFmZGExNzA1YTliY2Y3ZTViODcwLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM5MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jMjBmMGEwOWQ1Yjc2Y2U5MzVhNjY3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM5MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yODcwNmY3OGIwYzYwOTk4NTBkNzY4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\'><img width=\"150\" height=\"115\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OWUwM2FlOGU1NTY1YzA4MDU0NzcyLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wN2M1NGVjZTkxNzAyODJlNzE2MTcxLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/07c54ece9170282e716171.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/07c54ece9170282e716171.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC84ZDc5Y2I3MTE0Y2ZhZDkxZjRkZTczLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/8d79cb7114cfad91f4de73.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/8d79cb7114cfad91f4de73.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzNSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81NmM5ZjhjMjI3N2M5ZTIyYzc2ZDk4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/56c9f8c2277c9e22c76d98.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/56c9f8c2277c9e22c76d98.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>','Gallery','','inherit','closed','closed','','2126-revision-v1','','','2024-10-21 06:59:12','2024-10-21 06:59:12','',2126,'http://fe2tech.com/?p=2397',0,'revision','',0),(2398,1,'2024-10-21 06:59:12','2024-10-21 06:59:12','<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMyOCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85NTA1YzQwZDFiYjNhMmVkZmJhMjc4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9505c40d1bb3a2edfba278.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9505c40d1bb3a2edfba278.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMyOSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8zOGRiMTRkM2NiNmQ3MjMzMmI3Yzc2LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/38db14d3cb6d72332b7c76.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/38db14d3cb6d72332b7c76.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iNWVkMWJlNWM0NWI3ZDA1MjQ0YTkzLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b5ed1be5c45b7d05244a93.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b5ed1be5c45b7d05244a93.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC84NDRlOTM0NjRjZjhmNWE2YWNlOTEwMy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/844e93464cf8f5a6ace9103.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/844e93464cf8f5a6ace9103.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OTVkNmM1NWIzZWIwYWI1NTNmYTk0LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/795d6c55b3eb0ab553fa94.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/795d6c55b3eb0ab553fa94.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9hMmU1YTdlZTc4NTBjMTBlOTg0MTkwLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/a2e5a7ee7850c10e984190.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/a2e5a7ee7850c10e984190.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzNCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9hMmU1YTdlZTc4NTBjMTBlOTg0MTg5LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/a2e5a7ee7850c10e984189.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/a2e5a7ee7850c10e984189.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzNiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80ZGM2Y2VjZjExNzFhODJmZjE2MDEwMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4dc6cecf1171a82ff160101.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4dc6cecf1171a82ff160101.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzNywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8xZDI2MGQyZmQyOTE2YmNmMzI4MDk5LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/1d260d2fd2916bcf328099.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/1d260d2fd2916bcf328099.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzOCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kYjNlOGUzNjUxODhlOGQ2YjE5OTExOS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/db3e8e365188e8d6b199119.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/db3e8e365188e8d6b199119.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzOSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iNDRjMTE0NGNlZmE3N2E0MmVlYjEwNi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b44c1144cefa77a42eeb106.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b44c1144cefa77a42eeb106.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kMDM3ZWEzZjM1ODE4Y2RmZDU5MDExNC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/d037ea3f35818cdfd590114.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/d037ea3f35818cdfd590114.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80OTI5MDQyMmRiOWM2MmMyM2I4ZDEyNS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/49290422db9c62c23b8d125.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/49290422db9c62c23b8d125.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80OTI5MDQyMmRiOWM2MmMyM2I4ZDEyNC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/49290422db9c62c23b8d124.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/49290422db9c62c23b8d124.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wNDk3Mjc5ZmY4MjE0MTdmMTgzMDEyMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/0497279ff821417f1830122.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/0497279ff821417f1830122.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80MTg1YTY4ZDc5MzNjMDZkOTkyMjExMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4185a68d7933c06d9922111.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4185a68d7933c06d9922111.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yNjY0ZDY2MjA5ZGNiMDgyZTljZDExNy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/2664d66209dcb082e9cd117.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2664d66209dcb082e9cd117.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85OTViOTU1MjRhZWNmM2IyYWFmZDEyMC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/995b95524aecf3b2aafd120.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/995b95524aecf3b2aafd120.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85MzllMzU5NmVhMjg1Mzc2MGEzOTEwNC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/939e3596ea2853760a39104.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/939e3596ea2853760a39104.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85NmUxN2ZlOWEwNTcxOTA5NDA0NjEwNS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/96e17fe9a05719094046105.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/96e17fe9a05719094046105.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81M2QzYTFkYjdlNjVjNzNiOWU3NDEwNy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/53d3a1db7e65c73b9e74107.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/53d3a1db7e65c73b9e74107.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80NmYzYmVmYTYxNDRkODFhODE1NTEyMy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/46f3befa6144d81a8155123.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/46f3befa6144d81a8155123.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85ZDI0YTEyYzdlOTJjN2NjOWU4MzEwOC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9d24a12c7e92c7cc9e83108.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9d24a12c7e92c7cc9e83108.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85YTRiNzY0M2E5ZmQxMGEzNDllYzExNS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9a4b7643a9fd10a349ec115.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9a4b7643a9fd10a349ec115.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81YTE5OTYxZjQ5YTFmMGZmYTliMDExOC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/5a19961f49a1f0ffa9b0118.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/5a19961f49a1f0ffa9b0118.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wYjMyZjAzYjJmODU5NmRiY2Y5NDExMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/0b32f03b2f8596dbcf94112.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/0b32f03b2f8596dbcf94112.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9mN2Y0YzJmYzFkNDJhNDFjZmQ1MzEzMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/f7f4c2fc1d42a41cfd53131.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/f7f4c2fc1d42a41cfd53131.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iMWM4YmZjMTYwN2ZkOTIxODA2ZTEyOS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b1c8bfc1607fd921806e129.jpg\'><img width=\"112\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b1c8bfc1607fd921806e129.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8zM2NjYzdjYTE4NzRhMTJhZjg2NTEzMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/33ccc7ca1874a12af865132.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/33ccc7ca1874a12af865132.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wY2M4OGVjMTUxN2ZlODIxYjE2ZTEzMC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/0cc88ec1517fe821b16e130.jpg\'><img width=\"150\" height=\"86\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/0cc88ec1517fe821b16e130.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yYzdlNjY3NmI5YzgwMDk2NTlkOTEyNi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/2c7e6676b9c8009659d9126.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2c7e6676b9c8009659d9126.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81N2RlNGFkNjk1NjgyYzM2NzU3OTEyOC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/57de4ad695682c367579128.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/57de4ad695682c367579128.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC82MmZiNzJmMGFkNGUxNDEwNGQ1ZjEyNy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/62fb72f0ad4e14104d5f127.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/62fb72f0ad4e14104d5f127.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80YWYzZmJmYjI0NDU5ZDFiYzQ1NDg0LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4af3fbfb24459d1bc45484.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4af3fbfb24459d1bc45484.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8xYWIxZjRiNzJiMDk5MjU3Y2IxODk3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/1ab1f4b72b099257cb1897.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/1ab1f4b72b099257cb1897.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kYTI3NzIyZmFkOTExNGNmNGQ4MDEyMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/da27722fad9114cf4d80121.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/da27722fad9114cf4d80121.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iOTAwN2QwNmEyYjgxYmU2NDJhOTEwOS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b9007d06a2b81be642a9109.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b9007d06a2b81be642a9109.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85NzUwOWE1OTQ1ZTdmY2I5YTVmNjExMy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/97509a5945e7fcb9a5f6113.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/97509a5945e7fcb9a5f6113.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OTVkZjk1NDI2ZWE5ZmI0YzZmYjExNi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/795df95426ea9fb4c6fb116.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/795df95426ea9fb4c6fb116.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83Y2RlNjRkNmJiNjgwMjM2NWI3OTEwMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/7cde64d6bb6802365b79102.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/7cde64d6bb6802365b79102.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83ZWY3OTRmMTRiNGZmMjExYWI1ZTkxLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/7ef794f14b4ff211ab5e91.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/7ef794f14b4ff211ab5e91.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83ZWY3OTRmMTRiNGZmMjExYWI1ZTkyLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/7ef794f14b4ff211ab5e92.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/7ef794f14b4ff211ab5e92.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC84ZWEzOTZhYTQ5MTRmMDRhYTkwNTg4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/8ea396aa4914f04aa90588.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/8ea396aa4914f04aa90588.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80MWE3NmZhZmIwMTEwOTRmNTAwMDk2LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/41a76fafb011094f500096.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/41a76fafb011094f500096.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yODRlZTE0ODNlZjY4N2E4ZGVlNzk1LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/284ee1483ef687a8dee795.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/284ee1483ef687a8dee795.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81N2M1NzdjZGE4NzMxMTJkNDg2MjgyLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/57c577cda873112d486282.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/57c577cda873112d486282.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80MmYxNThmODg3NDYzZTE4Njc1Nzc1LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/42f158f887463e18675775.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/42f158f887463e18675775.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kZmI1OGJiZDU0MDNlZDVkYjQxMjg2LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/dfb58bbd5403ed5db41286.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/dfb58bbd5403ed5db41286.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jY2Q3M2VkZWUxNjA1ODNlMDE3MTg3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/ccd73edee160583e017187.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/ccd73edee160583e017187.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jNTQ2OTM0ZTRjZjBmNWFlYWNlMTEwMC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c546934e4cf0f5aeace1100.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c546934e4cf0f5aeace1100.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jMDEwZDkxOTA2YTdiZmY5ZTZiNjg1LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c010d91906a7bff9e6b685.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c010d91906a7bff9e6b685.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85MWE1NTNhMzhjMWQzNTQzNmMwYzgzLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/91a553a38c1d35436c0c83.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/91a553a38c1d35436c0c83.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8zNTBmMjQwNmZiYjg0MmU2MWJhOTgwLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/350f2406fbb842e61ba980.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/350f2406fbb842e61ba980.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8zNTBmMjQwNmZiYjg0MmU2MWJhOTgxLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/350f2406fbb842e61ba981.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/350f2406fbb842e61ba981.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8xMjg5ZGY4ZjAwMzFiOTZmZTAyMDc5LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/1289df8f0031b96fe02079.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/1289df8f0031b96fe02079.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80NDgwYjQ4OTZiMzdkMjY5OGIyNjc3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4480b4896b37d2698b2677.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4480b4896b37d2698b2677.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9hNDg4OGY4MDUwM2VlOTYwYjAyZjc0LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/a4888f80503ee960b02f74.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/a4888f80503ee960b02f74.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM5MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9lMzFmZGExNzA1YTliY2Y3ZTViODcwLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM5MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jMjBmMGEwOWQ1Yjc2Y2U5MzVhNjY3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM5MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yODcwNmY3OGIwYzYwOTk4NTBkNzY4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\'><img width=\"150\" height=\"115\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OWUwM2FlOGU1NTY1YzA4MDU0NzcyLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wN2M1NGVjZTkxNzAyODJlNzE2MTcxLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/07c54ece9170282e716171.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/07c54ece9170282e716171.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC84ZDc5Y2I3MTE0Y2ZhZDkxZjRkZTczLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/8d79cb7114cfad91f4de73.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/8d79cb7114cfad91f4de73.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzNSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81NmM5ZjhjMjI3N2M5ZTIyYzc2ZDk4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/56c9f8c2277c9e22c76d98.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/56c9f8c2277c9e22c76d98.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>','Gallery','','inherit','closed','closed','','2126-revision-v1','','','2024-10-21 06:59:12','2024-10-21 06:59:12','',2126,'http://fe2tech.com/?p=2398',0,'revision','',0),(2399,1,'2024-10-21 06:59:13','2024-10-21 06:59:13','<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMyOCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85NTA1YzQwZDFiYjNhMmVkZmJhMjc4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9505c40d1bb3a2edfba278.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9505c40d1bb3a2edfba278.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMyOSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8zOGRiMTRkM2NiNmQ3MjMzMmI3Yzc2LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/38db14d3cb6d72332b7c76.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/38db14d3cb6d72332b7c76.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iNWVkMWJlNWM0NWI3ZDA1MjQ0YTkzLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b5ed1be5c45b7d05244a93.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b5ed1be5c45b7d05244a93.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC84NDRlOTM0NjRjZjhmNWE2YWNlOTEwMy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/844e93464cf8f5a6ace9103.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/844e93464cf8f5a6ace9103.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OTVkNmM1NWIzZWIwYWI1NTNmYTk0LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/795d6c55b3eb0ab553fa94.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/795d6c55b3eb0ab553fa94.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9hMmU1YTdlZTc4NTBjMTBlOTg0MTkwLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/a2e5a7ee7850c10e984190.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/a2e5a7ee7850c10e984190.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzNywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8xZDI2MGQyZmQyOTE2YmNmMzI4MDk5LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/1d260d2fd2916bcf328099.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/1d260d2fd2916bcf328099.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzOCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kYjNlOGUzNjUxODhlOGQ2YjE5OTExOS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/db3e8e365188e8d6b199119.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/db3e8e365188e8d6b199119.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kMDM3ZWEzZjM1ODE4Y2RmZDU5MDExNC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/d037ea3f35818cdfd590114.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/d037ea3f35818cdfd590114.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wNDk3Mjc5ZmY4MjE0MTdmMTgzMDEyMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/0497279ff821417f1830122.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/0497279ff821417f1830122.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80MTg1YTY4ZDc5MzNjMDZkOTkyMjExMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4185a68d7933c06d9922111.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4185a68d7933c06d9922111.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yNjY0ZDY2MjA5ZGNiMDgyZTljZDExNy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/2664d66209dcb082e9cd117.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2664d66209dcb082e9cd117.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85OTViOTU1MjRhZWNmM2IyYWFmZDEyMC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/995b95524aecf3b2aafd120.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/995b95524aecf3b2aafd120.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85NmUxN2ZlOWEwNTcxOTA5NDA0NjEwNS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/96e17fe9a05719094046105.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/96e17fe9a05719094046105.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81M2QzYTFkYjdlNjVjNzNiOWU3NDEwNy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/53d3a1db7e65c73b9e74107.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/53d3a1db7e65c73b9e74107.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80NmYzYmVmYTYxNDRkODFhODE1NTEyMy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/46f3befa6144d81a8155123.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/46f3befa6144d81a8155123.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85ZDI0YTEyYzdlOTJjN2NjOWU4MzEwOC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9d24a12c7e92c7cc9e83108.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9d24a12c7e92c7cc9e83108.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85YTRiNzY0M2E5ZmQxMGEzNDllYzExNS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9a4b7643a9fd10a349ec115.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9a4b7643a9fd10a349ec115.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81YTE5OTYxZjQ5YTFmMGZmYTliMDExOC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/5a19961f49a1f0ffa9b0118.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/5a19961f49a1f0ffa9b0118.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wYjMyZjAzYjJmODU5NmRiY2Y5NDExMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/0b32f03b2f8596dbcf94112.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/0b32f03b2f8596dbcf94112.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iMWM4YmZjMTYwN2ZkOTIxODA2ZTEyOS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b1c8bfc1607fd921806e129.jpg\'><img width=\"112\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b1c8bfc1607fd921806e129.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8zM2NjYzdjYTE4NzRhMTJhZjg2NTEzMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/33ccc7ca1874a12af865132.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/33ccc7ca1874a12af865132.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yYzdlNjY3NmI5YzgwMDk2NTlkOTEyNi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/2c7e6676b9c8009659d9126.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2c7e6676b9c8009659d9126.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzNiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80ZGM2Y2VjZjExNzFhODJmZjE2MDEwMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4dc6cecf1171a82ff160101.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4dc6cecf1171a82ff160101.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80YWYzZmJmYjI0NDU5ZDFiYzQ1NDg0LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4af3fbfb24459d1bc45484.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4af3fbfb24459d1bc45484.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzOSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iNDRjMTE0NGNlZmE3N2E0MmVlYjEwNi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b44c1144cefa77a42eeb106.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b44c1144cefa77a42eeb106.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kYTI3NzIyZmFkOTExNGNmNGQ4MDEyMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/da27722fad9114cf4d80121.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/da27722fad9114cf4d80121.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iOTAwN2QwNmEyYjgxYmU2NDJhOTEwOS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b9007d06a2b81be642a9109.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b9007d06a2b81be642a9109.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85NzUwOWE1OTQ1ZTdmY2I5YTVmNjExMy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/97509a5945e7fcb9a5f6113.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/97509a5945e7fcb9a5f6113.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83Y2RlNjRkNmJiNjgwMjM2NWI3OTEwMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/7cde64d6bb6802365b79102.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/7cde64d6bb6802365b79102.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83ZWY3OTRmMTRiNGZmMjExYWI1ZTkxLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/7ef794f14b4ff211ab5e91.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/7ef794f14b4ff211ab5e91.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80MWE3NmZhZmIwMTEwOTRmNTAwMDk2LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/41a76fafb011094f500096.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/41a76fafb011094f500096.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yODRlZTE0ODNlZjY4N2E4ZGVlNzk1LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/284ee1483ef687a8dee795.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/284ee1483ef687a8dee795.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81N2M1NzdjZGE4NzMxMTJkNDg2MjgyLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/57c577cda873112d486282.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/57c577cda873112d486282.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80MmYxNThmODg3NDYzZTE4Njc1Nzc1LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/42f158f887463e18675775.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/42f158f887463e18675775.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kZmI1OGJiZDU0MDNlZDVkYjQxMjg2LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/dfb58bbd5403ed5db41286.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/dfb58bbd5403ed5db41286.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jY2Q3M2VkZWUxNjA1ODNlMDE3MTg3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/ccd73edee160583e017187.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/ccd73edee160583e017187.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jMDEwZDkxOTA2YTdiZmY5ZTZiNjg1LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c010d91906a7bff9e6b685.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c010d91906a7bff9e6b685.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85MWE1NTNhMzhjMWQzNTQzNmMwYzgzLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/91a553a38c1d35436c0c83.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/91a553a38c1d35436c0c83.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8zNTBmMjQwNmZiYjg0MmU2MWJhOTgwLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/350f2406fbb842e61ba980.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/350f2406fbb842e61ba980.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8xMjg5ZGY4ZjAwMzFiOTZmZTAyMDc5LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/1289df8f0031b96fe02079.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/1289df8f0031b96fe02079.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9hNDg4OGY4MDUwM2VlOTYwYjAyZjc0LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/a4888f80503ee960b02f74.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/a4888f80503ee960b02f74.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM5MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9lMzFmZGExNzA1YTliY2Y3ZTViODcwLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM5MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jMjBmMGEwOWQ1Yjc2Y2U5MzVhNjY3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM5MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yODcwNmY3OGIwYzYwOTk4NTBkNzY4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\'><img width=\"150\" height=\"115\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OWUwM2FlOGU1NTY1YzA4MDU0NzcyLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wN2M1NGVjZTkxNzAyODJlNzE2MTcxLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/07c54ece9170282e716171.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/07c54ece9170282e716171.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC84ZDc5Y2I3MTE0Y2ZhZDkxZjRkZTczLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/8d79cb7114cfad91f4de73.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/8d79cb7114cfad91f4de73.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzNSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81NmM5ZjhjMjI3N2M5ZTIyYzc2ZDk4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/56c9f8c2277c9e22c76d98.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/56c9f8c2277c9e22c76d98.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80OTI5MDQyMmRiOWM2MmMyM2I4ZDEyNS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/49290422db9c62c23b8d125.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/49290422db9c62c23b8d125.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9mN2Y0YzJmYzFkNDJhNDFjZmQ1MzEzMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/f7f4c2fc1d42a41cfd53131.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/f7f4c2fc1d42a41cfd53131.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wY2M4OGVjMTUxN2ZlODIxYjE2ZTEzMC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/0cc88ec1517fe821b16e130.jpg\'><img width=\"150\" height=\"86\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/0cc88ec1517fe821b16e130.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC82MmZiNzJmMGFkNGUxNDEwNGQ1ZjEyNy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/62fb72f0ad4e14104d5f127.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/62fb72f0ad4e14104d5f127.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81N2RlNGFkNjk1NjgyYzM2NzU3OTEyOC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/57de4ad695682c367579128.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/57de4ad695682c367579128.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OTVkZjk1NDI2ZWE5ZmI0YzZmYjExNi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/795df95426ea9fb4c6fb116.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/795df95426ea9fb4c6fb116.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8xYWIxZjRiNzJiMDk5MjU3Y2IxODk3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/1ab1f4b72b099257cb1897.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/1ab1f4b72b099257cb1897.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC84ZWEzOTZhYTQ5MTRmMDRhYTkwNTg4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/8ea396aa4914f04aa90588.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/8ea396aa4914f04aa90588.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jNTQ2OTM0ZTRjZjBmNWFlYWNlMTEwMC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c546934e4cf0f5aeace1100.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c546934e4cf0f5aeace1100.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80NDgwYjQ4OTZiMzdkMjY5OGIyNjc3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4480b4896b37d2698b2677.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4480b4896b37d2698b2677.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>','Gallery','','inherit','closed','closed','','2126-revision-v1','','','2024-10-21 06:59:13','2024-10-21 06:59:13','',2126,'http://fe2tech.com/?p=2399',0,'revision','',0),(2400,1,'2024-10-21 07:01:09','2024-10-21 07:01:09','<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMyOCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85NTA1YzQwZDFiYjNhMmVkZmJhMjc4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9505c40d1bb3a2edfba278.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9505c40d1bb3a2edfba278.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMyOSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8zOGRiMTRkM2NiNmQ3MjMzMmI3Yzc2LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/38db14d3cb6d72332b7c76.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/38db14d3cb6d72332b7c76.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iNWVkMWJlNWM0NWI3ZDA1MjQ0YTkzLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b5ed1be5c45b7d05244a93.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b5ed1be5c45b7d05244a93.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC84NDRlOTM0NjRjZjhmNWE2YWNlOTEwMy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/844e93464cf8f5a6ace9103.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/844e93464cf8f5a6ace9103.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OTVkNmM1NWIzZWIwYWI1NTNmYTk0LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/795d6c55b3eb0ab553fa94.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/795d6c55b3eb0ab553fa94.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9hMmU1YTdlZTc4NTBjMTBlOTg0MTkwLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/a2e5a7ee7850c10e984190.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/a2e5a7ee7850c10e984190.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzNywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8xZDI2MGQyZmQyOTE2YmNmMzI4MDk5LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/1d260d2fd2916bcf328099.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/1d260d2fd2916bcf328099.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzOCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kYjNlOGUzNjUxODhlOGQ2YjE5OTExOS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/db3e8e365188e8d6b199119.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/db3e8e365188e8d6b199119.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kMDM3ZWEzZjM1ODE4Y2RmZDU5MDExNC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/d037ea3f35818cdfd590114.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/d037ea3f35818cdfd590114.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wNDk3Mjc5ZmY4MjE0MTdmMTgzMDEyMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/0497279ff821417f1830122.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/0497279ff821417f1830122.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80MTg1YTY4ZDc5MzNjMDZkOTkyMjExMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4185a68d7933c06d9922111.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4185a68d7933c06d9922111.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yNjY0ZDY2MjA5ZGNiMDgyZTljZDExNy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/2664d66209dcb082e9cd117.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2664d66209dcb082e9cd117.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85OTViOTU1MjRhZWNmM2IyYWFmZDEyMC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/995b95524aecf3b2aafd120.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/995b95524aecf3b2aafd120.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85NmUxN2ZlOWEwNTcxOTA5NDA0NjEwNS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/96e17fe9a05719094046105.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/96e17fe9a05719094046105.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81M2QzYTFkYjdlNjVjNzNiOWU3NDEwNy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/53d3a1db7e65c73b9e74107.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/53d3a1db7e65c73b9e74107.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80NmYzYmVmYTYxNDRkODFhODE1NTEyMy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/46f3befa6144d81a8155123.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/46f3befa6144d81a8155123.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85ZDI0YTEyYzdlOTJjN2NjOWU4MzEwOC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9d24a12c7e92c7cc9e83108.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9d24a12c7e92c7cc9e83108.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85YTRiNzY0M2E5ZmQxMGEzNDllYzExNS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9a4b7643a9fd10a349ec115.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9a4b7643a9fd10a349ec115.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81YTE5OTYxZjQ5YTFmMGZmYTliMDExOC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/5a19961f49a1f0ffa9b0118.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/5a19961f49a1f0ffa9b0118.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wYjMyZjAzYjJmODU5NmRiY2Y5NDExMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/0b32f03b2f8596dbcf94112.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/0b32f03b2f8596dbcf94112.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iMWM4YmZjMTYwN2ZkOTIxODA2ZTEyOS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b1c8bfc1607fd921806e129.jpg\'><img width=\"112\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b1c8bfc1607fd921806e129.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8zM2NjYzdjYTE4NzRhMTJhZjg2NTEzMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/33ccc7ca1874a12af865132.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/33ccc7ca1874a12af865132.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yYzdlNjY3NmI5YzgwMDk2NTlkOTEyNi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/2c7e6676b9c8009659d9126.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2c7e6676b9c8009659d9126.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzNiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80ZGM2Y2VjZjExNzFhODJmZjE2MDEwMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4dc6cecf1171a82ff160101.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4dc6cecf1171a82ff160101.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80YWYzZmJmYjI0NDU5ZDFiYzQ1NDg0LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4af3fbfb24459d1bc45484.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4af3fbfb24459d1bc45484.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzOSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iNDRjMTE0NGNlZmE3N2E0MmVlYjEwNi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b44c1144cefa77a42eeb106.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b44c1144cefa77a42eeb106.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kYTI3NzIyZmFkOTExNGNmNGQ4MDEyMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/da27722fad9114cf4d80121.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/da27722fad9114cf4d80121.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iOTAwN2QwNmEyYjgxYmU2NDJhOTEwOS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b9007d06a2b81be642a9109.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b9007d06a2b81be642a9109.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85NzUwOWE1OTQ1ZTdmY2I5YTVmNjExMy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/97509a5945e7fcb9a5f6113.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/97509a5945e7fcb9a5f6113.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83Y2RlNjRkNmJiNjgwMjM2NWI3OTEwMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/7cde64d6bb6802365b79102.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/7cde64d6bb6802365b79102.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83ZWY3OTRmMTRiNGZmMjExYWI1ZTkxLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/7ef794f14b4ff211ab5e91.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/7ef794f14b4ff211ab5e91.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80MWE3NmZhZmIwMTEwOTRmNTAwMDk2LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/41a76fafb011094f500096.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/41a76fafb011094f500096.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yODRlZTE0ODNlZjY4N2E4ZGVlNzk1LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/284ee1483ef687a8dee795.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/284ee1483ef687a8dee795.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81N2M1NzdjZGE4NzMxMTJkNDg2MjgyLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/57c577cda873112d486282.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/57c577cda873112d486282.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80MmYxNThmODg3NDYzZTE4Njc1Nzc1LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/42f158f887463e18675775.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/42f158f887463e18675775.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kZmI1OGJiZDU0MDNlZDVkYjQxMjg2LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/dfb58bbd5403ed5db41286.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/dfb58bbd5403ed5db41286.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jY2Q3M2VkZWUxNjA1ODNlMDE3MTg3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/ccd73edee160583e017187.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/ccd73edee160583e017187.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jMDEwZDkxOTA2YTdiZmY5ZTZiNjg1LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c010d91906a7bff9e6b685.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c010d91906a7bff9e6b685.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85MWE1NTNhMzhjMWQzNTQzNmMwYzgzLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/91a553a38c1d35436c0c83.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/91a553a38c1d35436c0c83.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8zNTBmMjQwNmZiYjg0MmU2MWJhOTgwLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/350f2406fbb842e61ba980.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/350f2406fbb842e61ba980.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8xMjg5ZGY4ZjAwMzFiOTZmZTAyMDc5LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/1289df8f0031b96fe02079.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/1289df8f0031b96fe02079.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9hNDg4OGY4MDUwM2VlOTYwYjAyZjc0LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/a4888f80503ee960b02f74.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/a4888f80503ee960b02f74.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM5MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9lMzFmZGExNzA1YTliY2Y3ZTViODcwLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM5MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jMjBmMGEwOWQ1Yjc2Y2U5MzVhNjY3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM5MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yODcwNmY3OGIwYzYwOTk4NTBkNzY4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\'><img width=\"150\" height=\"115\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OWUwM2FlOGU1NTY1YzA4MDU0NzcyLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wN2M1NGVjZTkxNzAyODJlNzE2MTcxLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/07c54ece9170282e716171.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/07c54ece9170282e716171.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC84ZDc5Y2I3MTE0Y2ZhZDkxZjRkZTczLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/8d79cb7114cfad91f4de73.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/8d79cb7114cfad91f4de73.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzNSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81NmM5ZjhjMjI3N2M5ZTIyYzc2ZDk4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/56c9f8c2277c9e22c76d98.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/56c9f8c2277c9e22c76d98.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80OTI5MDQyMmRiOWM2MmMyM2I4ZDEyNS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/49290422db9c62c23b8d125.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/49290422db9c62c23b8d125.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9mN2Y0YzJmYzFkNDJhNDFjZmQ1MzEzMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/f7f4c2fc1d42a41cfd53131.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/f7f4c2fc1d42a41cfd53131.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wY2M4OGVjMTUxN2ZlODIxYjE2ZTEzMC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/0cc88ec1517fe821b16e130.jpg\'><img width=\"150\" height=\"86\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/0cc88ec1517fe821b16e130.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC82MmZiNzJmMGFkNGUxNDEwNGQ1ZjEyNy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/62fb72f0ad4e14104d5f127.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/62fb72f0ad4e14104d5f127.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81N2RlNGFkNjk1NjgyYzM2NzU3OTEyOC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/57de4ad695682c367579128.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/57de4ad695682c367579128.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OTVkZjk1NDI2ZWE5ZmI0YzZmYjExNi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/795df95426ea9fb4c6fb116.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/795df95426ea9fb4c6fb116.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8xYWIxZjRiNzJiMDk5MjU3Y2IxODk3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/1ab1f4b72b099257cb1897.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/1ab1f4b72b099257cb1897.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC84ZWEzOTZhYTQ5MTRmMDRhYTkwNTg4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/8ea396aa4914f04aa90588.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/8ea396aa4914f04aa90588.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jNTQ2OTM0ZTRjZjBmNWFlYWNlMTEwMC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c546934e4cf0f5aeace1100.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c546934e4cf0f5aeace1100.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80NDgwYjQ4OTZiMzdkMjY5OGIyNjc3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4480b4896b37d2698b2677.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4480b4896b37d2698b2677.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>','Gallery','','inherit','closed','closed','','2126-revision-v1','','','2024-10-21 07:01:09','2024-10-21 07:01:09','',2126,'http://fe2tech.com/?p=2400',0,'revision','',0),(2401,1,'2024-10-21 07:01:09','2024-10-21 07:01:09','<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMyOCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85NTA1YzQwZDFiYjNhMmVkZmJhMjc4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9505c40d1bb3a2edfba278.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9505c40d1bb3a2edfba278.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMyOSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8zOGRiMTRkM2NiNmQ3MjMzMmI3Yzc2LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/38db14d3cb6d72332b7c76.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/38db14d3cb6d72332b7c76.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iNWVkMWJlNWM0NWI3ZDA1MjQ0YTkzLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b5ed1be5c45b7d05244a93.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b5ed1be5c45b7d05244a93.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC84NDRlOTM0NjRjZjhmNWE2YWNlOTEwMy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/844e93464cf8f5a6ace9103.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/844e93464cf8f5a6ace9103.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OTVkNmM1NWIzZWIwYWI1NTNmYTk0LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/795d6c55b3eb0ab553fa94.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/795d6c55b3eb0ab553fa94.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9hMmU1YTdlZTc4NTBjMTBlOTg0MTkwLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/a2e5a7ee7850c10e984190.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/a2e5a7ee7850c10e984190.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzNywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8xZDI2MGQyZmQyOTE2YmNmMzI4MDk5LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/1d260d2fd2916bcf328099.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/1d260d2fd2916bcf328099.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzOCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kYjNlOGUzNjUxODhlOGQ2YjE5OTExOS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/db3e8e365188e8d6b199119.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/db3e8e365188e8d6b199119.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kMDM3ZWEzZjM1ODE4Y2RmZDU5MDExNC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/d037ea3f35818cdfd590114.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/d037ea3f35818cdfd590114.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wNDk3Mjc5ZmY4MjE0MTdmMTgzMDEyMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/0497279ff821417f1830122.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/0497279ff821417f1830122.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80MTg1YTY4ZDc5MzNjMDZkOTkyMjExMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4185a68d7933c06d9922111.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4185a68d7933c06d9922111.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yNjY0ZDY2MjA5ZGNiMDgyZTljZDExNy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/2664d66209dcb082e9cd117.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2664d66209dcb082e9cd117.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85OTViOTU1MjRhZWNmM2IyYWFmZDEyMC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/995b95524aecf3b2aafd120.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/995b95524aecf3b2aafd120.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85NmUxN2ZlOWEwNTcxOTA5NDA0NjEwNS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/96e17fe9a05719094046105.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/96e17fe9a05719094046105.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81M2QzYTFkYjdlNjVjNzNiOWU3NDEwNy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/53d3a1db7e65c73b9e74107.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/53d3a1db7e65c73b9e74107.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80NmYzYmVmYTYxNDRkODFhODE1NTEyMy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/46f3befa6144d81a8155123.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/46f3befa6144d81a8155123.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85ZDI0YTEyYzdlOTJjN2NjOWU4MzEwOC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9d24a12c7e92c7cc9e83108.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9d24a12c7e92c7cc9e83108.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85YTRiNzY0M2E5ZmQxMGEzNDllYzExNS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9a4b7643a9fd10a349ec115.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9a4b7643a9fd10a349ec115.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81YTE5OTYxZjQ5YTFmMGZmYTliMDExOC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/5a19961f49a1f0ffa9b0118.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/5a19961f49a1f0ffa9b0118.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wYjMyZjAzYjJmODU5NmRiY2Y5NDExMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/0b32f03b2f8596dbcf94112.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/0b32f03b2f8596dbcf94112.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iMWM4YmZjMTYwN2ZkOTIxODA2ZTEyOS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b1c8bfc1607fd921806e129.jpg\'><img width=\"112\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b1c8bfc1607fd921806e129.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8zM2NjYzdjYTE4NzRhMTJhZjg2NTEzMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/33ccc7ca1874a12af865132.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/33ccc7ca1874a12af865132.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yYzdlNjY3NmI5YzgwMDk2NTlkOTEyNi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/2c7e6676b9c8009659d9126.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2c7e6676b9c8009659d9126.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzNiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80ZGM2Y2VjZjExNzFhODJmZjE2MDEwMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4dc6cecf1171a82ff160101.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4dc6cecf1171a82ff160101.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80YWYzZmJmYjI0NDU5ZDFiYzQ1NDg0LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4af3fbfb24459d1bc45484.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4af3fbfb24459d1bc45484.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzOSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iNDRjMTE0NGNlZmE3N2E0MmVlYjEwNi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b44c1144cefa77a42eeb106.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b44c1144cefa77a42eeb106.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kYTI3NzIyZmFkOTExNGNmNGQ4MDEyMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/da27722fad9114cf4d80121.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/da27722fad9114cf4d80121.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iOTAwN2QwNmEyYjgxYmU2NDJhOTEwOS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b9007d06a2b81be642a9109.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b9007d06a2b81be642a9109.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85NzUwOWE1OTQ1ZTdmY2I5YTVmNjExMy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/97509a5945e7fcb9a5f6113.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/97509a5945e7fcb9a5f6113.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83Y2RlNjRkNmJiNjgwMjM2NWI3OTEwMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/7cde64d6bb6802365b79102.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/7cde64d6bb6802365b79102.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83ZWY3OTRmMTRiNGZmMjExYWI1ZTkxLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/7ef794f14b4ff211ab5e91.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/7ef794f14b4ff211ab5e91.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80MWE3NmZhZmIwMTEwOTRmNTAwMDk2LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/41a76fafb011094f500096.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/41a76fafb011094f500096.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yODRlZTE0ODNlZjY4N2E4ZGVlNzk1LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/284ee1483ef687a8dee795.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/284ee1483ef687a8dee795.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81N2M1NzdjZGE4NzMxMTJkNDg2MjgyLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/57c577cda873112d486282.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/57c577cda873112d486282.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80MmYxNThmODg3NDYzZTE4Njc1Nzc1LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/42f158f887463e18675775.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/42f158f887463e18675775.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kZmI1OGJiZDU0MDNlZDVkYjQxMjg2LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/dfb58bbd5403ed5db41286.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/dfb58bbd5403ed5db41286.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jY2Q3M2VkZWUxNjA1ODNlMDE3MTg3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/ccd73edee160583e017187.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/ccd73edee160583e017187.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jMDEwZDkxOTA2YTdiZmY5ZTZiNjg1LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c010d91906a7bff9e6b685.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c010d91906a7bff9e6b685.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85MWE1NTNhMzhjMWQzNTQzNmMwYzgzLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/91a553a38c1d35436c0c83.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/91a553a38c1d35436c0c83.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8zNTBmMjQwNmZiYjg0MmU2MWJhOTgwLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/350f2406fbb842e61ba980.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/350f2406fbb842e61ba980.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8xMjg5ZGY4ZjAwMzFiOTZmZTAyMDc5LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/1289df8f0031b96fe02079.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/1289df8f0031b96fe02079.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9hNDg4OGY4MDUwM2VlOTYwYjAyZjc0LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/a4888f80503ee960b02f74.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/a4888f80503ee960b02f74.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM5MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9lMzFmZGExNzA1YTliY2Y3ZTViODcwLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM5MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jMjBmMGEwOWQ1Yjc2Y2U5MzVhNjY3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM5MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yODcwNmY3OGIwYzYwOTk4NTBkNzY4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\'><img width=\"150\" height=\"115\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OWUwM2FlOGU1NTY1YzA4MDU0NzcyLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wN2M1NGVjZTkxNzAyODJlNzE2MTcxLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/07c54ece9170282e716171.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/07c54ece9170282e716171.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC84ZDc5Y2I3MTE0Y2ZhZDkxZjRkZTczLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/8d79cb7114cfad91f4de73.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/8d79cb7114cfad91f4de73.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzNSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81NmM5ZjhjMjI3N2M5ZTIyYzc2ZDk4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/56c9f8c2277c9e22c76d98.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/56c9f8c2277c9e22c76d98.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80OTI5MDQyMmRiOWM2MmMyM2I4ZDEyNS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/49290422db9c62c23b8d125.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/49290422db9c62c23b8d125.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9mN2Y0YzJmYzFkNDJhNDFjZmQ1MzEzMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/f7f4c2fc1d42a41cfd53131.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/f7f4c2fc1d42a41cfd53131.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wY2M4OGVjMTUxN2ZlODIxYjE2ZTEzMC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/0cc88ec1517fe821b16e130.jpg\'><img width=\"150\" height=\"86\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/0cc88ec1517fe821b16e130.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC82MmZiNzJmMGFkNGUxNDEwNGQ1ZjEyNy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/62fb72f0ad4e14104d5f127.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/62fb72f0ad4e14104d5f127.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81N2RlNGFkNjk1NjgyYzM2NzU3OTEyOC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/57de4ad695682c367579128.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/57de4ad695682c367579128.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OTVkZjk1NDI2ZWE5ZmI0YzZmYjExNi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/795df95426ea9fb4c6fb116.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/795df95426ea9fb4c6fb116.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8xYWIxZjRiNzJiMDk5MjU3Y2IxODk3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/1ab1f4b72b099257cb1897.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/1ab1f4b72b099257cb1897.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC84ZWEzOTZhYTQ5MTRmMDRhYTkwNTg4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/8ea396aa4914f04aa90588.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/8ea396aa4914f04aa90588.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jNTQ2OTM0ZTRjZjBmNWFlYWNlMTEwMC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c546934e4cf0f5aeace1100.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c546934e4cf0f5aeace1100.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80NDgwYjQ4OTZiMzdkMjY5OGIyNjc3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4480b4896b37d2698b2677.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4480b4896b37d2698b2677.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>','Gallery','','inherit','closed','closed','','2126-revision-v1','','','2024-10-21 07:01:09','2024-10-21 07:01:09','',2126,'http://fe2tech.com/?p=2401',0,'revision','',0),(2402,1,'2024-10-21 07:01:09','2024-10-21 07:01:09','<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMyOCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85NTA1YzQwZDFiYjNhMmVkZmJhMjc4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9505c40d1bb3a2edfba278.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9505c40d1bb3a2edfba278.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMyOSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8zOGRiMTRkM2NiNmQ3MjMzMmI3Yzc2LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/38db14d3cb6d72332b7c76.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/38db14d3cb6d72332b7c76.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iNWVkMWJlNWM0NWI3ZDA1MjQ0YTkzLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b5ed1be5c45b7d05244a93.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b5ed1be5c45b7d05244a93.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC84NDRlOTM0NjRjZjhmNWE2YWNlOTEwMy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/844e93464cf8f5a6ace9103.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/844e93464cf8f5a6ace9103.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OTVkNmM1NWIzZWIwYWI1NTNmYTk0LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/795d6c55b3eb0ab553fa94.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/795d6c55b3eb0ab553fa94.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9hMmU1YTdlZTc4NTBjMTBlOTg0MTkwLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/a2e5a7ee7850c10e984190.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/a2e5a7ee7850c10e984190.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzNywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8xZDI2MGQyZmQyOTE2YmNmMzI4MDk5LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/1d260d2fd2916bcf328099.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/1d260d2fd2916bcf328099.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzOCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kYjNlOGUzNjUxODhlOGQ2YjE5OTExOS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/db3e8e365188e8d6b199119.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/db3e8e365188e8d6b199119.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kMDM3ZWEzZjM1ODE4Y2RmZDU5MDExNC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/d037ea3f35818cdfd590114.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/d037ea3f35818cdfd590114.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wNDk3Mjc5ZmY4MjE0MTdmMTgzMDEyMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/0497279ff821417f1830122.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/0497279ff821417f1830122.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80MTg1YTY4ZDc5MzNjMDZkOTkyMjExMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4185a68d7933c06d9922111.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4185a68d7933c06d9922111.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yNjY0ZDY2MjA5ZGNiMDgyZTljZDExNy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/2664d66209dcb082e9cd117.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2664d66209dcb082e9cd117.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85OTViOTU1MjRhZWNmM2IyYWFmZDEyMC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/995b95524aecf3b2aafd120.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/995b95524aecf3b2aafd120.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85NmUxN2ZlOWEwNTcxOTA5NDA0NjEwNS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/96e17fe9a05719094046105.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/96e17fe9a05719094046105.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81M2QzYTFkYjdlNjVjNzNiOWU3NDEwNy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/53d3a1db7e65c73b9e74107.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/53d3a1db7e65c73b9e74107.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80NmYzYmVmYTYxNDRkODFhODE1NTEyMy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/46f3befa6144d81a8155123.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/46f3befa6144d81a8155123.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85ZDI0YTEyYzdlOTJjN2NjOWU4MzEwOC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9d24a12c7e92c7cc9e83108.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9d24a12c7e92c7cc9e83108.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85YTRiNzY0M2E5ZmQxMGEzNDllYzExNS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9a4b7643a9fd10a349ec115.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9a4b7643a9fd10a349ec115.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81YTE5OTYxZjQ5YTFmMGZmYTliMDExOC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/5a19961f49a1f0ffa9b0118.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/5a19961f49a1f0ffa9b0118.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wYjMyZjAzYjJmODU5NmRiY2Y5NDExMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/0b32f03b2f8596dbcf94112.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/0b32f03b2f8596dbcf94112.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iMWM4YmZjMTYwN2ZkOTIxODA2ZTEyOS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b1c8bfc1607fd921806e129.jpg\'><img width=\"112\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b1c8bfc1607fd921806e129.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8zM2NjYzdjYTE4NzRhMTJhZjg2NTEzMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/33ccc7ca1874a12af865132.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/33ccc7ca1874a12af865132.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yYzdlNjY3NmI5YzgwMDk2NTlkOTEyNi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/2c7e6676b9c8009659d9126.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2c7e6676b9c8009659d9126.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80YWYzZmJmYjI0NDU5ZDFiYzQ1NDg0LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4af3fbfb24459d1bc45484.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4af3fbfb24459d1bc45484.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kYTI3NzIyZmFkOTExNGNmNGQ4MDEyMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/da27722fad9114cf4d80121.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/da27722fad9114cf4d80121.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iOTAwN2QwNmEyYjgxYmU2NDJhOTEwOS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b9007d06a2b81be642a9109.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b9007d06a2b81be642a9109.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85NzUwOWE1OTQ1ZTdmY2I5YTVmNjExMy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/97509a5945e7fcb9a5f6113.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/97509a5945e7fcb9a5f6113.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83Y2RlNjRkNmJiNjgwMjM2NWI3OTEwMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/7cde64d6bb6802365b79102.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/7cde64d6bb6802365b79102.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzNiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80ZGM2Y2VjZjExNzFhODJmZjE2MDEwMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4dc6cecf1171a82ff160101.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4dc6cecf1171a82ff160101.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83ZWY3OTRmMTRiNGZmMjExYWI1ZTkxLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/7ef794f14b4ff211ab5e91.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/7ef794f14b4ff211ab5e91.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80MWE3NmZhZmIwMTEwOTRmNTAwMDk2LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/41a76fafb011094f500096.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/41a76fafb011094f500096.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yODRlZTE0ODNlZjY4N2E4ZGVlNzk1LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/284ee1483ef687a8dee795.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/284ee1483ef687a8dee795.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81N2M1NzdjZGE4NzMxMTJkNDg2MjgyLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/57c577cda873112d486282.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/57c577cda873112d486282.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80MmYxNThmODg3NDYzZTE4Njc1Nzc1LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/42f158f887463e18675775.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/42f158f887463e18675775.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kZmI1OGJiZDU0MDNlZDVkYjQxMjg2LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/dfb58bbd5403ed5db41286.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/dfb58bbd5403ed5db41286.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jY2Q3M2VkZWUxNjA1ODNlMDE3MTg3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/ccd73edee160583e017187.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/ccd73edee160583e017187.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jMDEwZDkxOTA2YTdiZmY5ZTZiNjg1LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c010d91906a7bff9e6b685.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c010d91906a7bff9e6b685.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85MWE1NTNhMzhjMWQzNTQzNmMwYzgzLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/91a553a38c1d35436c0c83.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/91a553a38c1d35436c0c83.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8zNTBmMjQwNmZiYjg0MmU2MWJhOTgwLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/350f2406fbb842e61ba980.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/350f2406fbb842e61ba980.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8xMjg5ZGY4ZjAwMzFiOTZmZTAyMDc5LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/1289df8f0031b96fe02079.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/1289df8f0031b96fe02079.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9hNDg4OGY4MDUwM2VlOTYwYjAyZjc0LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/a4888f80503ee960b02f74.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/a4888f80503ee960b02f74.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM5MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9lMzFmZGExNzA1YTliY2Y3ZTViODcwLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM5MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jMjBmMGEwOWQ1Yjc2Y2U5MzVhNjY3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM5MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yODcwNmY3OGIwYzYwOTk4NTBkNzY4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\'><img width=\"150\" height=\"115\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OWUwM2FlOGU1NTY1YzA4MDU0NzcyLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wN2M1NGVjZTkxNzAyODJlNzE2MTcxLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/07c54ece9170282e716171.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/07c54ece9170282e716171.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC84ZDc5Y2I3MTE0Y2ZhZDkxZjRkZTczLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/8d79cb7114cfad91f4de73.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/8d79cb7114cfad91f4de73.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80OTI5MDQyMmRiOWM2MmMyM2I4ZDEyNS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/49290422db9c62c23b8d125.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/49290422db9c62c23b8d125.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9mN2Y0YzJmYzFkNDJhNDFjZmQ1MzEzMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/f7f4c2fc1d42a41cfd53131.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/f7f4c2fc1d42a41cfd53131.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC82MmZiNzJmMGFkNGUxNDEwNGQ1ZjEyNy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/62fb72f0ad4e14104d5f127.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/62fb72f0ad4e14104d5f127.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81N2RlNGFkNjk1NjgyYzM2NzU3OTEyOC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/57de4ad695682c367579128.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/57de4ad695682c367579128.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OTVkZjk1NDI2ZWE5ZmI0YzZmYjExNi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/795df95426ea9fb4c6fb116.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/795df95426ea9fb4c6fb116.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8xYWIxZjRiNzJiMDk5MjU3Y2IxODk3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/1ab1f4b72b099257cb1897.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/1ab1f4b72b099257cb1897.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jNTQ2OTM0ZTRjZjBmNWFlYWNlMTEwMC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c546934e4cf0f5aeace1100.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c546934e4cf0f5aeace1100.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80NDgwYjQ4OTZiMzdkMjY5OGIyNjc3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4480b4896b37d2698b2677.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4480b4896b37d2698b2677.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzOSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iNDRjMTE0NGNlZmE3N2E0MmVlYjEwNi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b44c1144cefa77a42eeb106.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b44c1144cefa77a42eeb106.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzNSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81NmM5ZjhjMjI3N2M5ZTIyYzc2ZDk4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/56c9f8c2277c9e22c76d98.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/56c9f8c2277c9e22c76d98.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC84ZWEzOTZhYTQ5MTRmMDRhYTkwNTg4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/8ea396aa4914f04aa90588.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/8ea396aa4914f04aa90588.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wY2M4OGVjMTUxN2ZlODIxYjE2ZTEzMC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/0cc88ec1517fe821b16e130.jpg\'><img width=\"150\" height=\"86\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/0cc88ec1517fe821b16e130.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>','Gallery','','inherit','closed','closed','','2126-revision-v1','','','2024-10-21 07:01:09','2024-10-21 07:01:09','',2126,'http://fe2tech.com/?p=2402',0,'revision','',0),(2403,1,'2024-10-21 07:02:50','2024-10-21 07:02:50','<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMyOCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85NTA1YzQwZDFiYjNhMmVkZmJhMjc4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9505c40d1bb3a2edfba278.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9505c40d1bb3a2edfba278.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMyOSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8zOGRiMTRkM2NiNmQ3MjMzMmI3Yzc2LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/38db14d3cb6d72332b7c76.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/38db14d3cb6d72332b7c76.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iNWVkMWJlNWM0NWI3ZDA1MjQ0YTkzLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b5ed1be5c45b7d05244a93.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b5ed1be5c45b7d05244a93.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC84NDRlOTM0NjRjZjhmNWE2YWNlOTEwMy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/844e93464cf8f5a6ace9103.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/844e93464cf8f5a6ace9103.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OTVkNmM1NWIzZWIwYWI1NTNmYTk0LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/795d6c55b3eb0ab553fa94.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/795d6c55b3eb0ab553fa94.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9hMmU1YTdlZTc4NTBjMTBlOTg0MTkwLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/a2e5a7ee7850c10e984190.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/a2e5a7ee7850c10e984190.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzNywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8xZDI2MGQyZmQyOTE2YmNmMzI4MDk5LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/1d260d2fd2916bcf328099.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/1d260d2fd2916bcf328099.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzOCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kYjNlOGUzNjUxODhlOGQ2YjE5OTExOS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/db3e8e365188e8d6b199119.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/db3e8e365188e8d6b199119.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kMDM3ZWEzZjM1ODE4Y2RmZDU5MDExNC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/d037ea3f35818cdfd590114.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/d037ea3f35818cdfd590114.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wNDk3Mjc5ZmY4MjE0MTdmMTgzMDEyMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/0497279ff821417f1830122.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/0497279ff821417f1830122.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80MTg1YTY4ZDc5MzNjMDZkOTkyMjExMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4185a68d7933c06d9922111.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4185a68d7933c06d9922111.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yNjY0ZDY2MjA5ZGNiMDgyZTljZDExNy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/2664d66209dcb082e9cd117.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2664d66209dcb082e9cd117.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85OTViOTU1MjRhZWNmM2IyYWFmZDEyMC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/995b95524aecf3b2aafd120.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/995b95524aecf3b2aafd120.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85NmUxN2ZlOWEwNTcxOTA5NDA0NjEwNS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/96e17fe9a05719094046105.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/96e17fe9a05719094046105.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81M2QzYTFkYjdlNjVjNzNiOWU3NDEwNy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/53d3a1db7e65c73b9e74107.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/53d3a1db7e65c73b9e74107.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80NmYzYmVmYTYxNDRkODFhODE1NTEyMy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/46f3befa6144d81a8155123.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/46f3befa6144d81a8155123.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85ZDI0YTEyYzdlOTJjN2NjOWU4MzEwOC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9d24a12c7e92c7cc9e83108.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9d24a12c7e92c7cc9e83108.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85YTRiNzY0M2E5ZmQxMGEzNDllYzExNS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9a4b7643a9fd10a349ec115.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9a4b7643a9fd10a349ec115.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81YTE5OTYxZjQ5YTFmMGZmYTliMDExOC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/5a19961f49a1f0ffa9b0118.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/5a19961f49a1f0ffa9b0118.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wYjMyZjAzYjJmODU5NmRiY2Y5NDExMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/0b32f03b2f8596dbcf94112.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/0b32f03b2f8596dbcf94112.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iMWM4YmZjMTYwN2ZkOTIxODA2ZTEyOS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b1c8bfc1607fd921806e129.jpg\'><img width=\"112\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b1c8bfc1607fd921806e129.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8zM2NjYzdjYTE4NzRhMTJhZjg2NTEzMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/33ccc7ca1874a12af865132.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/33ccc7ca1874a12af865132.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yYzdlNjY3NmI5YzgwMDk2NTlkOTEyNi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/2c7e6676b9c8009659d9126.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2c7e6676b9c8009659d9126.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80YWYzZmJmYjI0NDU5ZDFiYzQ1NDg0LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4af3fbfb24459d1bc45484.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4af3fbfb24459d1bc45484.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kYTI3NzIyZmFkOTExNGNmNGQ4MDEyMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/da27722fad9114cf4d80121.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/da27722fad9114cf4d80121.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iOTAwN2QwNmEyYjgxYmU2NDJhOTEwOS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b9007d06a2b81be642a9109.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b9007d06a2b81be642a9109.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85NzUwOWE1OTQ1ZTdmY2I5YTVmNjExMy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/97509a5945e7fcb9a5f6113.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/97509a5945e7fcb9a5f6113.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83Y2RlNjRkNmJiNjgwMjM2NWI3OTEwMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/7cde64d6bb6802365b79102.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/7cde64d6bb6802365b79102.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzNiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80ZGM2Y2VjZjExNzFhODJmZjE2MDEwMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4dc6cecf1171a82ff160101.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4dc6cecf1171a82ff160101.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83ZWY3OTRmMTRiNGZmMjExYWI1ZTkxLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/7ef794f14b4ff211ab5e91.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/7ef794f14b4ff211ab5e91.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80MWE3NmZhZmIwMTEwOTRmNTAwMDk2LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/41a76fafb011094f500096.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/41a76fafb011094f500096.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yODRlZTE0ODNlZjY4N2E4ZGVlNzk1LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/284ee1483ef687a8dee795.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/284ee1483ef687a8dee795.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81N2M1NzdjZGE4NzMxMTJkNDg2MjgyLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/57c577cda873112d486282.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/57c577cda873112d486282.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80MmYxNThmODg3NDYzZTE4Njc1Nzc1LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/42f158f887463e18675775.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/42f158f887463e18675775.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kZmI1OGJiZDU0MDNlZDVkYjQxMjg2LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/dfb58bbd5403ed5db41286.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/dfb58bbd5403ed5db41286.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jY2Q3M2VkZWUxNjA1ODNlMDE3MTg3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/ccd73edee160583e017187.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/ccd73edee160583e017187.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jMDEwZDkxOTA2YTdiZmY5ZTZiNjg1LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c010d91906a7bff9e6b685.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c010d91906a7bff9e6b685.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85MWE1NTNhMzhjMWQzNTQzNmMwYzgzLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/91a553a38c1d35436c0c83.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/91a553a38c1d35436c0c83.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8zNTBmMjQwNmZiYjg0MmU2MWJhOTgwLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/350f2406fbb842e61ba980.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/350f2406fbb842e61ba980.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8xMjg5ZGY4ZjAwMzFiOTZmZTAyMDc5LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/1289df8f0031b96fe02079.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/1289df8f0031b96fe02079.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9hNDg4OGY4MDUwM2VlOTYwYjAyZjc0LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/a4888f80503ee960b02f74.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/a4888f80503ee960b02f74.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM5MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9lMzFmZGExNzA1YTliY2Y3ZTViODcwLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM5MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jMjBmMGEwOWQ1Yjc2Y2U5MzVhNjY3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM5MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yODcwNmY3OGIwYzYwOTk4NTBkNzY4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\'><img width=\"150\" height=\"115\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OWUwM2FlOGU1NTY1YzA4MDU0NzcyLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wN2M1NGVjZTkxNzAyODJlNzE2MTcxLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/07c54ece9170282e716171.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/07c54ece9170282e716171.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC84ZDc5Y2I3MTE0Y2ZhZDkxZjRkZTczLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/8d79cb7114cfad91f4de73.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/8d79cb7114cfad91f4de73.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80OTI5MDQyMmRiOWM2MmMyM2I4ZDEyNS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/49290422db9c62c23b8d125.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/49290422db9c62c23b8d125.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9mN2Y0YzJmYzFkNDJhNDFjZmQ1MzEzMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/f7f4c2fc1d42a41cfd53131.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/f7f4c2fc1d42a41cfd53131.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC82MmZiNzJmMGFkNGUxNDEwNGQ1ZjEyNy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/62fb72f0ad4e14104d5f127.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/62fb72f0ad4e14104d5f127.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81N2RlNGFkNjk1NjgyYzM2NzU3OTEyOC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/57de4ad695682c367579128.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/57de4ad695682c367579128.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OTVkZjk1NDI2ZWE5ZmI0YzZmYjExNi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/795df95426ea9fb4c6fb116.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/795df95426ea9fb4c6fb116.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8xYWIxZjRiNzJiMDk5MjU3Y2IxODk3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/1ab1f4b72b099257cb1897.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/1ab1f4b72b099257cb1897.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jNTQ2OTM0ZTRjZjBmNWFlYWNlMTEwMC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c546934e4cf0f5aeace1100.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c546934e4cf0f5aeace1100.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80NDgwYjQ4OTZiMzdkMjY5OGIyNjc3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4480b4896b37d2698b2677.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4480b4896b37d2698b2677.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzOSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iNDRjMTE0NGNlZmE3N2E0MmVlYjEwNi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b44c1144cefa77a42eeb106.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b44c1144cefa77a42eeb106.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzNSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81NmM5ZjhjMjI3N2M5ZTIyYzc2ZDk4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/56c9f8c2277c9e22c76d98.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/56c9f8c2277c9e22c76d98.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC84ZWEzOTZhYTQ5MTRmMDRhYTkwNTg4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/8ea396aa4914f04aa90588.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/8ea396aa4914f04aa90588.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wY2M4OGVjMTUxN2ZlODIxYjE2ZTEzMC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/0cc88ec1517fe821b16e130.jpg\'><img width=\"150\" height=\"86\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/0cc88ec1517fe821b16e130.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>','Gallery','','inherit','closed','closed','','2126-revision-v1','','','2024-10-21 07:02:50','2024-10-21 07:02:50','',2126,'http://fe2tech.com/?p=2403',0,'revision','',0),(2404,1,'2024-10-21 07:02:50','2024-10-21 07:02:50','<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMyOCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85NTA1YzQwZDFiYjNhMmVkZmJhMjc4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9505c40d1bb3a2edfba278.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9505c40d1bb3a2edfba278.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMyOSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8zOGRiMTRkM2NiNmQ3MjMzMmI3Yzc2LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/38db14d3cb6d72332b7c76.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/38db14d3cb6d72332b7c76.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iNWVkMWJlNWM0NWI3ZDA1MjQ0YTkzLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b5ed1be5c45b7d05244a93.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b5ed1be5c45b7d05244a93.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC84NDRlOTM0NjRjZjhmNWE2YWNlOTEwMy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/844e93464cf8f5a6ace9103.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/844e93464cf8f5a6ace9103.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OTVkNmM1NWIzZWIwYWI1NTNmYTk0LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/795d6c55b3eb0ab553fa94.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/795d6c55b3eb0ab553fa94.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9hMmU1YTdlZTc4NTBjMTBlOTg0MTkwLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/a2e5a7ee7850c10e984190.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/a2e5a7ee7850c10e984190.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzNywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8xZDI2MGQyZmQyOTE2YmNmMzI4MDk5LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/1d260d2fd2916bcf328099.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/1d260d2fd2916bcf328099.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzOCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kYjNlOGUzNjUxODhlOGQ2YjE5OTExOS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/db3e8e365188e8d6b199119.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/db3e8e365188e8d6b199119.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kMDM3ZWEzZjM1ODE4Y2RmZDU5MDExNC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/d037ea3f35818cdfd590114.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/d037ea3f35818cdfd590114.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wNDk3Mjc5ZmY4MjE0MTdmMTgzMDEyMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/0497279ff821417f1830122.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/0497279ff821417f1830122.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80MTg1YTY4ZDc5MzNjMDZkOTkyMjExMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4185a68d7933c06d9922111.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4185a68d7933c06d9922111.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yNjY0ZDY2MjA5ZGNiMDgyZTljZDExNy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/2664d66209dcb082e9cd117.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2664d66209dcb082e9cd117.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85OTViOTU1MjRhZWNmM2IyYWFmZDEyMC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/995b95524aecf3b2aafd120.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/995b95524aecf3b2aafd120.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85NmUxN2ZlOWEwNTcxOTA5NDA0NjEwNS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/96e17fe9a05719094046105.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/96e17fe9a05719094046105.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81M2QzYTFkYjdlNjVjNzNiOWU3NDEwNy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/53d3a1db7e65c73b9e74107.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/53d3a1db7e65c73b9e74107.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80NmYzYmVmYTYxNDRkODFhODE1NTEyMy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/46f3befa6144d81a8155123.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/46f3befa6144d81a8155123.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85ZDI0YTEyYzdlOTJjN2NjOWU4MzEwOC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9d24a12c7e92c7cc9e83108.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9d24a12c7e92c7cc9e83108.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85YTRiNzY0M2E5ZmQxMGEzNDllYzExNS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9a4b7643a9fd10a349ec115.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9a4b7643a9fd10a349ec115.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81YTE5OTYxZjQ5YTFmMGZmYTliMDExOC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/5a19961f49a1f0ffa9b0118.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/5a19961f49a1f0ffa9b0118.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wYjMyZjAzYjJmODU5NmRiY2Y5NDExMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/0b32f03b2f8596dbcf94112.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/0b32f03b2f8596dbcf94112.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iMWM4YmZjMTYwN2ZkOTIxODA2ZTEyOS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b1c8bfc1607fd921806e129.jpg\'><img width=\"112\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b1c8bfc1607fd921806e129.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8zM2NjYzdjYTE4NzRhMTJhZjg2NTEzMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/33ccc7ca1874a12af865132.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/33ccc7ca1874a12af865132.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yYzdlNjY3NmI5YzgwMDk2NTlkOTEyNi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/2c7e6676b9c8009659d9126.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2c7e6676b9c8009659d9126.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80YWYzZmJmYjI0NDU5ZDFiYzQ1NDg0LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4af3fbfb24459d1bc45484.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4af3fbfb24459d1bc45484.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kYTI3NzIyZmFkOTExNGNmNGQ4MDEyMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/da27722fad9114cf4d80121.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/da27722fad9114cf4d80121.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iOTAwN2QwNmEyYjgxYmU2NDJhOTEwOS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b9007d06a2b81be642a9109.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b9007d06a2b81be642a9109.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85NzUwOWE1OTQ1ZTdmY2I5YTVmNjExMy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/97509a5945e7fcb9a5f6113.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/97509a5945e7fcb9a5f6113.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83Y2RlNjRkNmJiNjgwMjM2NWI3OTEwMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/7cde64d6bb6802365b79102.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/7cde64d6bb6802365b79102.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzNiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80ZGM2Y2VjZjExNzFhODJmZjE2MDEwMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4dc6cecf1171a82ff160101.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4dc6cecf1171a82ff160101.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83ZWY3OTRmMTRiNGZmMjExYWI1ZTkxLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/7ef794f14b4ff211ab5e91.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/7ef794f14b4ff211ab5e91.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80MWE3NmZhZmIwMTEwOTRmNTAwMDk2LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/41a76fafb011094f500096.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/41a76fafb011094f500096.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yODRlZTE0ODNlZjY4N2E4ZGVlNzk1LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/284ee1483ef687a8dee795.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/284ee1483ef687a8dee795.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81N2M1NzdjZGE4NzMxMTJkNDg2MjgyLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/57c577cda873112d486282.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/57c577cda873112d486282.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80MmYxNThmODg3NDYzZTE4Njc1Nzc1LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/42f158f887463e18675775.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/42f158f887463e18675775.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kZmI1OGJiZDU0MDNlZDVkYjQxMjg2LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/dfb58bbd5403ed5db41286.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/dfb58bbd5403ed5db41286.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jY2Q3M2VkZWUxNjA1ODNlMDE3MTg3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/ccd73edee160583e017187.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/ccd73edee160583e017187.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jMDEwZDkxOTA2YTdiZmY5ZTZiNjg1LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c010d91906a7bff9e6b685.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c010d91906a7bff9e6b685.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85MWE1NTNhMzhjMWQzNTQzNmMwYzgzLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/91a553a38c1d35436c0c83.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/91a553a38c1d35436c0c83.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8zNTBmMjQwNmZiYjg0MmU2MWJhOTgwLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/350f2406fbb842e61ba980.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/350f2406fbb842e61ba980.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8xMjg5ZGY4ZjAwMzFiOTZmZTAyMDc5LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/1289df8f0031b96fe02079.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/1289df8f0031b96fe02079.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9hNDg4OGY4MDUwM2VlOTYwYjAyZjc0LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/a4888f80503ee960b02f74.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/a4888f80503ee960b02f74.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM5MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9lMzFmZGExNzA1YTliY2Y3ZTViODcwLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM5MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jMjBmMGEwOWQ1Yjc2Y2U5MzVhNjY3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM5MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yODcwNmY3OGIwYzYwOTk4NTBkNzY4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\'><img width=\"150\" height=\"115\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OWUwM2FlOGU1NTY1YzA4MDU0NzcyLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wN2M1NGVjZTkxNzAyODJlNzE2MTcxLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/07c54ece9170282e716171.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/07c54ece9170282e716171.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC84ZDc5Y2I3MTE0Y2ZhZDkxZjRkZTczLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/8d79cb7114cfad91f4de73.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/8d79cb7114cfad91f4de73.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80OTI5MDQyMmRiOWM2MmMyM2I4ZDEyNS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/49290422db9c62c23b8d125.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/49290422db9c62c23b8d125.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9mN2Y0YzJmYzFkNDJhNDFjZmQ1MzEzMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/f7f4c2fc1d42a41cfd53131.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/f7f4c2fc1d42a41cfd53131.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC82MmZiNzJmMGFkNGUxNDEwNGQ1ZjEyNy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/62fb72f0ad4e14104d5f127.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/62fb72f0ad4e14104d5f127.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81N2RlNGFkNjk1NjgyYzM2NzU3OTEyOC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/57de4ad695682c367579128.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/57de4ad695682c367579128.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OTVkZjk1NDI2ZWE5ZmI0YzZmYjExNi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/795df95426ea9fb4c6fb116.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/795df95426ea9fb4c6fb116.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8xYWIxZjRiNzJiMDk5MjU3Y2IxODk3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/1ab1f4b72b099257cb1897.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/1ab1f4b72b099257cb1897.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jNTQ2OTM0ZTRjZjBmNWFlYWNlMTEwMC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c546934e4cf0f5aeace1100.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c546934e4cf0f5aeace1100.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80NDgwYjQ4OTZiMzdkMjY5OGIyNjc3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4480b4896b37d2698b2677.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4480b4896b37d2698b2677.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzOSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iNDRjMTE0NGNlZmE3N2E0MmVlYjEwNi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b44c1144cefa77a42eeb106.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b44c1144cefa77a42eeb106.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzNSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81NmM5ZjhjMjI3N2M5ZTIyYzc2ZDk4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/56c9f8c2277c9e22c76d98.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/56c9f8c2277c9e22c76d98.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC84ZWEzOTZhYTQ5MTRmMDRhYTkwNTg4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/8ea396aa4914f04aa90588.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/8ea396aa4914f04aa90588.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wY2M4OGVjMTUxN2ZlODIxYjE2ZTEzMC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/0cc88ec1517fe821b16e130.jpg\'><img width=\"150\" height=\"86\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/0cc88ec1517fe821b16e130.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>','Gallery','','inherit','closed','closed','','2126-revision-v1','','','2024-10-21 07:02:50','2024-10-21 07:02:50','',2126,'http://fe2tech.com/?p=2404',0,'revision','',0),(2405,1,'2024-10-21 07:02:51','2024-10-21 07:02:51','<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMyOCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85NTA1YzQwZDFiYjNhMmVkZmJhMjc4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9505c40d1bb3a2edfba278.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9505c40d1bb3a2edfba278.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMyOSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8zOGRiMTRkM2NiNmQ3MjMzMmI3Yzc2LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/38db14d3cb6d72332b7c76.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/38db14d3cb6d72332b7c76.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iNWVkMWJlNWM0NWI3ZDA1MjQ0YTkzLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b5ed1be5c45b7d05244a93.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b5ed1be5c45b7d05244a93.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC84NDRlOTM0NjRjZjhmNWE2YWNlOTEwMy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/844e93464cf8f5a6ace9103.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/844e93464cf8f5a6ace9103.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OTVkNmM1NWIzZWIwYWI1NTNmYTk0LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/795d6c55b3eb0ab553fa94.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/795d6c55b3eb0ab553fa94.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9hMmU1YTdlZTc4NTBjMTBlOTg0MTkwLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/a2e5a7ee7850c10e984190.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/a2e5a7ee7850c10e984190.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzNywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8xZDI2MGQyZmQyOTE2YmNmMzI4MDk5LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/1d260d2fd2916bcf328099.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/1d260d2fd2916bcf328099.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzOCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kYjNlOGUzNjUxODhlOGQ2YjE5OTExOS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/db3e8e365188e8d6b199119.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/db3e8e365188e8d6b199119.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kMDM3ZWEzZjM1ODE4Y2RmZDU5MDExNC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/d037ea3f35818cdfd590114.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/d037ea3f35818cdfd590114.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wNDk3Mjc5ZmY4MjE0MTdmMTgzMDEyMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/0497279ff821417f1830122.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/0497279ff821417f1830122.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80MTg1YTY4ZDc5MzNjMDZkOTkyMjExMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4185a68d7933c06d9922111.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4185a68d7933c06d9922111.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yNjY0ZDY2MjA5ZGNiMDgyZTljZDExNy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/2664d66209dcb082e9cd117.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2664d66209dcb082e9cd117.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85OTViOTU1MjRhZWNmM2IyYWFmZDEyMC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/995b95524aecf3b2aafd120.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/995b95524aecf3b2aafd120.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85NmUxN2ZlOWEwNTcxOTA5NDA0NjEwNS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/96e17fe9a05719094046105.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/96e17fe9a05719094046105.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81M2QzYTFkYjdlNjVjNzNiOWU3NDEwNy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/53d3a1db7e65c73b9e74107.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/53d3a1db7e65c73b9e74107.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80NmYzYmVmYTYxNDRkODFhODE1NTEyMy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/46f3befa6144d81a8155123.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/46f3befa6144d81a8155123.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85ZDI0YTEyYzdlOTJjN2NjOWU4MzEwOC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9d24a12c7e92c7cc9e83108.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9d24a12c7e92c7cc9e83108.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85YTRiNzY0M2E5ZmQxMGEzNDllYzExNS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9a4b7643a9fd10a349ec115.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9a4b7643a9fd10a349ec115.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81YTE5OTYxZjQ5YTFmMGZmYTliMDExOC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/5a19961f49a1f0ffa9b0118.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/5a19961f49a1f0ffa9b0118.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wYjMyZjAzYjJmODU5NmRiY2Y5NDExMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/0b32f03b2f8596dbcf94112.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/0b32f03b2f8596dbcf94112.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iMWM4YmZjMTYwN2ZkOTIxODA2ZTEyOS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b1c8bfc1607fd921806e129.jpg\'><img width=\"112\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b1c8bfc1607fd921806e129.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8zM2NjYzdjYTE4NzRhMTJhZjg2NTEzMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/33ccc7ca1874a12af865132.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/33ccc7ca1874a12af865132.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yYzdlNjY3NmI5YzgwMDk2NTlkOTEyNi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/2c7e6676b9c8009659d9126.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2c7e6676b9c8009659d9126.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80YWYzZmJmYjI0NDU5ZDFiYzQ1NDg0LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4af3fbfb24459d1bc45484.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4af3fbfb24459d1bc45484.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kYTI3NzIyZmFkOTExNGNmNGQ4MDEyMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/da27722fad9114cf4d80121.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/da27722fad9114cf4d80121.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iOTAwN2QwNmEyYjgxYmU2NDJhOTEwOS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b9007d06a2b81be642a9109.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b9007d06a2b81be642a9109.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85NzUwOWE1OTQ1ZTdmY2I5YTVmNjExMy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/97509a5945e7fcb9a5f6113.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/97509a5945e7fcb9a5f6113.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83Y2RlNjRkNmJiNjgwMjM2NWI3OTEwMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/7cde64d6bb6802365b79102.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/7cde64d6bb6802365b79102.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83ZWY3OTRmMTRiNGZmMjExYWI1ZTkxLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/7ef794f14b4ff211ab5e91.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/7ef794f14b4ff211ab5e91.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80MWE3NmZhZmIwMTEwOTRmNTAwMDk2LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/41a76fafb011094f500096.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/41a76fafb011094f500096.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yODRlZTE0ODNlZjY4N2E4ZGVlNzk1LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/284ee1483ef687a8dee795.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/284ee1483ef687a8dee795.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81N2M1NzdjZGE4NzMxMTJkNDg2MjgyLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/57c577cda873112d486282.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/57c577cda873112d486282.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80MmYxNThmODg3NDYzZTE4Njc1Nzc1LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/42f158f887463e18675775.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/42f158f887463e18675775.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kZmI1OGJiZDU0MDNlZDVkYjQxMjg2LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/dfb58bbd5403ed5db41286.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/dfb58bbd5403ed5db41286.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jY2Q3M2VkZWUxNjA1ODNlMDE3MTg3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/ccd73edee160583e017187.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/ccd73edee160583e017187.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jMDEwZDkxOTA2YTdiZmY5ZTZiNjg1LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c010d91906a7bff9e6b685.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c010d91906a7bff9e6b685.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85MWE1NTNhMzhjMWQzNTQzNmMwYzgzLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/91a553a38c1d35436c0c83.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/91a553a38c1d35436c0c83.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8zNTBmMjQwNmZiYjg0MmU2MWJhOTgwLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/350f2406fbb842e61ba980.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/350f2406fbb842e61ba980.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8xMjg5ZGY4ZjAwMzFiOTZmZTAyMDc5LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/1289df8f0031b96fe02079.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/1289df8f0031b96fe02079.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9hNDg4OGY4MDUwM2VlOTYwYjAyZjc0LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/a4888f80503ee960b02f74.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/a4888f80503ee960b02f74.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM5MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9lMzFmZGExNzA1YTliY2Y3ZTViODcwLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM5MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jMjBmMGEwOWQ1Yjc2Y2U5MzVhNjY3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM5MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yODcwNmY3OGIwYzYwOTk4NTBkNzY4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\'><img width=\"150\" height=\"115\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OWUwM2FlOGU1NTY1YzA4MDU0NzcyLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wN2M1NGVjZTkxNzAyODJlNzE2MTcxLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/07c54ece9170282e716171.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/07c54ece9170282e716171.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC84ZDc5Y2I3MTE0Y2ZhZDkxZjRkZTczLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/8d79cb7114cfad91f4de73.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/8d79cb7114cfad91f4de73.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80OTI5MDQyMmRiOWM2MmMyM2I4ZDEyNS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/49290422db9c62c23b8d125.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/49290422db9c62c23b8d125.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9mN2Y0YzJmYzFkNDJhNDFjZmQ1MzEzMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/f7f4c2fc1d42a41cfd53131.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/f7f4c2fc1d42a41cfd53131.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC82MmZiNzJmMGFkNGUxNDEwNGQ1ZjEyNy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/62fb72f0ad4e14104d5f127.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/62fb72f0ad4e14104d5f127.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OTVkZjk1NDI2ZWE5ZmI0YzZmYjExNi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/795df95426ea9fb4c6fb116.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/795df95426ea9fb4c6fb116.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8xYWIxZjRiNzJiMDk5MjU3Y2IxODk3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/1ab1f4b72b099257cb1897.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/1ab1f4b72b099257cb1897.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jNTQ2OTM0ZTRjZjBmNWFlYWNlMTEwMC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c546934e4cf0f5aeace1100.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c546934e4cf0f5aeace1100.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80NDgwYjQ4OTZiMzdkMjY5OGIyNjc3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4480b4896b37d2698b2677.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4480b4896b37d2698b2677.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzOSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iNDRjMTE0NGNlZmE3N2E0MmVlYjEwNi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b44c1144cefa77a42eeb106.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b44c1144cefa77a42eeb106.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzNSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81NmM5ZjhjMjI3N2M5ZTIyYzc2ZDk4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/56c9f8c2277c9e22c76d98.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/56c9f8c2277c9e22c76d98.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzNiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80ZGM2Y2VjZjExNzFhODJmZjE2MDEwMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4dc6cecf1171a82ff160101.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4dc6cecf1171a82ff160101.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC84ZWEzOTZhYTQ5MTRmMDRhYTkwNTg4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/8ea396aa4914f04aa90588.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/8ea396aa4914f04aa90588.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wY2M4OGVjMTUxN2ZlODIxYjE2ZTEzMC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/0cc88ec1517fe821b16e130.jpg\'><img width=\"150\" height=\"86\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/0cc88ec1517fe821b16e130.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>','Gallery','','inherit','closed','closed','','2126-revision-v1','','','2024-10-21 07:02:51','2024-10-21 07:02:51','',2126,'http://fe2tech.com/?p=2405',0,'revision','',0),(2406,1,'2024-10-21 07:04:07','2024-10-21 07:04:07','<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMyOCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85NTA1YzQwZDFiYjNhMmVkZmJhMjc4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9505c40d1bb3a2edfba278.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9505c40d1bb3a2edfba278.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMyOSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8zOGRiMTRkM2NiNmQ3MjMzMmI3Yzc2LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/38db14d3cb6d72332b7c76.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/38db14d3cb6d72332b7c76.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iNWVkMWJlNWM0NWI3ZDA1MjQ0YTkzLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b5ed1be5c45b7d05244a93.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b5ed1be5c45b7d05244a93.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC84NDRlOTM0NjRjZjhmNWE2YWNlOTEwMy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/844e93464cf8f5a6ace9103.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/844e93464cf8f5a6ace9103.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OTVkNmM1NWIzZWIwYWI1NTNmYTk0LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/795d6c55b3eb0ab553fa94.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/795d6c55b3eb0ab553fa94.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9hMmU1YTdlZTc4NTBjMTBlOTg0MTkwLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/a2e5a7ee7850c10e984190.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/a2e5a7ee7850c10e984190.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzNywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8xZDI2MGQyZmQyOTE2YmNmMzI4MDk5LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/1d260d2fd2916bcf328099.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/1d260d2fd2916bcf328099.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzOCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kYjNlOGUzNjUxODhlOGQ2YjE5OTExOS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/db3e8e365188e8d6b199119.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/db3e8e365188e8d6b199119.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kMDM3ZWEzZjM1ODE4Y2RmZDU5MDExNC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/d037ea3f35818cdfd590114.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/d037ea3f35818cdfd590114.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wNDk3Mjc5ZmY4MjE0MTdmMTgzMDEyMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/0497279ff821417f1830122.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/0497279ff821417f1830122.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80MTg1YTY4ZDc5MzNjMDZkOTkyMjExMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4185a68d7933c06d9922111.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4185a68d7933c06d9922111.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yNjY0ZDY2MjA5ZGNiMDgyZTljZDExNy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/2664d66209dcb082e9cd117.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2664d66209dcb082e9cd117.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85OTViOTU1MjRhZWNmM2IyYWFmZDEyMC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/995b95524aecf3b2aafd120.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/995b95524aecf3b2aafd120.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85NmUxN2ZlOWEwNTcxOTA5NDA0NjEwNS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/96e17fe9a05719094046105.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/96e17fe9a05719094046105.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81M2QzYTFkYjdlNjVjNzNiOWU3NDEwNy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/53d3a1db7e65c73b9e74107.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/53d3a1db7e65c73b9e74107.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80NmYzYmVmYTYxNDRkODFhODE1NTEyMy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/46f3befa6144d81a8155123.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/46f3befa6144d81a8155123.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85ZDI0YTEyYzdlOTJjN2NjOWU4MzEwOC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9d24a12c7e92c7cc9e83108.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9d24a12c7e92c7cc9e83108.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85YTRiNzY0M2E5ZmQxMGEzNDllYzExNS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9a4b7643a9fd10a349ec115.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9a4b7643a9fd10a349ec115.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81YTE5OTYxZjQ5YTFmMGZmYTliMDExOC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/5a19961f49a1f0ffa9b0118.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/5a19961f49a1f0ffa9b0118.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wYjMyZjAzYjJmODU5NmRiY2Y5NDExMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/0b32f03b2f8596dbcf94112.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/0b32f03b2f8596dbcf94112.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iMWM4YmZjMTYwN2ZkOTIxODA2ZTEyOS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b1c8bfc1607fd921806e129.jpg\'><img width=\"112\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b1c8bfc1607fd921806e129.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8zM2NjYzdjYTE4NzRhMTJhZjg2NTEzMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/33ccc7ca1874a12af865132.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/33ccc7ca1874a12af865132.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yYzdlNjY3NmI5YzgwMDk2NTlkOTEyNi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/2c7e6676b9c8009659d9126.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2c7e6676b9c8009659d9126.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80YWYzZmJmYjI0NDU5ZDFiYzQ1NDg0LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4af3fbfb24459d1bc45484.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4af3fbfb24459d1bc45484.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kYTI3NzIyZmFkOTExNGNmNGQ4MDEyMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/da27722fad9114cf4d80121.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/da27722fad9114cf4d80121.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iOTAwN2QwNmEyYjgxYmU2NDJhOTEwOS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b9007d06a2b81be642a9109.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b9007d06a2b81be642a9109.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85NzUwOWE1OTQ1ZTdmY2I5YTVmNjExMy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/97509a5945e7fcb9a5f6113.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/97509a5945e7fcb9a5f6113.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83Y2RlNjRkNmJiNjgwMjM2NWI3OTEwMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/7cde64d6bb6802365b79102.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/7cde64d6bb6802365b79102.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83ZWY3OTRmMTRiNGZmMjExYWI1ZTkxLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/7ef794f14b4ff211ab5e91.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/7ef794f14b4ff211ab5e91.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80MWE3NmZhZmIwMTEwOTRmNTAwMDk2LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/41a76fafb011094f500096.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/41a76fafb011094f500096.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yODRlZTE0ODNlZjY4N2E4ZGVlNzk1LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/284ee1483ef687a8dee795.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/284ee1483ef687a8dee795.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81N2M1NzdjZGE4NzMxMTJkNDg2MjgyLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/57c577cda873112d486282.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/57c577cda873112d486282.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80MmYxNThmODg3NDYzZTE4Njc1Nzc1LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/42f158f887463e18675775.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/42f158f887463e18675775.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kZmI1OGJiZDU0MDNlZDVkYjQxMjg2LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/dfb58bbd5403ed5db41286.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/dfb58bbd5403ed5db41286.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jY2Q3M2VkZWUxNjA1ODNlMDE3MTg3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/ccd73edee160583e017187.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/ccd73edee160583e017187.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jMDEwZDkxOTA2YTdiZmY5ZTZiNjg1LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c010d91906a7bff9e6b685.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c010d91906a7bff9e6b685.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85MWE1NTNhMzhjMWQzNTQzNmMwYzgzLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/91a553a38c1d35436c0c83.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/91a553a38c1d35436c0c83.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8zNTBmMjQwNmZiYjg0MmU2MWJhOTgwLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/350f2406fbb842e61ba980.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/350f2406fbb842e61ba980.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8xMjg5ZGY4ZjAwMzFiOTZmZTAyMDc5LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/1289df8f0031b96fe02079.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/1289df8f0031b96fe02079.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9hNDg4OGY4MDUwM2VlOTYwYjAyZjc0LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/a4888f80503ee960b02f74.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/a4888f80503ee960b02f74.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM5MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9lMzFmZGExNzA1YTliY2Y3ZTViODcwLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM5MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jMjBmMGEwOWQ1Yjc2Y2U5MzVhNjY3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM5MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yODcwNmY3OGIwYzYwOTk4NTBkNzY4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\'><img width=\"150\" height=\"115\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OWUwM2FlOGU1NTY1YzA4MDU0NzcyLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wN2M1NGVjZTkxNzAyODJlNzE2MTcxLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/07c54ece9170282e716171.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/07c54ece9170282e716171.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC84ZDc5Y2I3MTE0Y2ZhZDkxZjRkZTczLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/8d79cb7114cfad91f4de73.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/8d79cb7114cfad91f4de73.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80OTI5MDQyMmRiOWM2MmMyM2I4ZDEyNS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/49290422db9c62c23b8d125.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/49290422db9c62c23b8d125.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9mN2Y0YzJmYzFkNDJhNDFjZmQ1MzEzMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/f7f4c2fc1d42a41cfd53131.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/f7f4c2fc1d42a41cfd53131.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC82MmZiNzJmMGFkNGUxNDEwNGQ1ZjEyNy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/62fb72f0ad4e14104d5f127.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/62fb72f0ad4e14104d5f127.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OTVkZjk1NDI2ZWE5ZmI0YzZmYjExNi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/795df95426ea9fb4c6fb116.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/795df95426ea9fb4c6fb116.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8xYWIxZjRiNzJiMDk5MjU3Y2IxODk3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/1ab1f4b72b099257cb1897.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/1ab1f4b72b099257cb1897.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jNTQ2OTM0ZTRjZjBmNWFlYWNlMTEwMC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c546934e4cf0f5aeace1100.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c546934e4cf0f5aeace1100.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80NDgwYjQ4OTZiMzdkMjY5OGIyNjc3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4480b4896b37d2698b2677.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4480b4896b37d2698b2677.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzOSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iNDRjMTE0NGNlZmE3N2E0MmVlYjEwNi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b44c1144cefa77a42eeb106.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b44c1144cefa77a42eeb106.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzNSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81NmM5ZjhjMjI3N2M5ZTIyYzc2ZDk4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/56c9f8c2277c9e22c76d98.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/56c9f8c2277c9e22c76d98.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzNiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80ZGM2Y2VjZjExNzFhODJmZjE2MDEwMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4dc6cecf1171a82ff160101.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4dc6cecf1171a82ff160101.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC84ZWEzOTZhYTQ5MTRmMDRhYTkwNTg4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/8ea396aa4914f04aa90588.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/8ea396aa4914f04aa90588.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wY2M4OGVjMTUxN2ZlODIxYjE2ZTEzMC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/0cc88ec1517fe821b16e130.jpg\'><img width=\"150\" height=\"86\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/0cc88ec1517fe821b16e130.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>','Gallery','','inherit','closed','closed','','2126-revision-v1','','','2024-10-21 07:04:07','2024-10-21 07:04:07','',2126,'http://fe2tech.com/?p=2406',0,'revision','',0),(2407,1,'2024-10-21 07:04:07','2024-10-21 07:04:07','<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMyOCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85NTA1YzQwZDFiYjNhMmVkZmJhMjc4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9505c40d1bb3a2edfba278.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9505c40d1bb3a2edfba278.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMyOSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8zOGRiMTRkM2NiNmQ3MjMzMmI3Yzc2LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/38db14d3cb6d72332b7c76.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/38db14d3cb6d72332b7c76.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iNWVkMWJlNWM0NWI3ZDA1MjQ0YTkzLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b5ed1be5c45b7d05244a93.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b5ed1be5c45b7d05244a93.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC84NDRlOTM0NjRjZjhmNWE2YWNlOTEwMy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/844e93464cf8f5a6ace9103.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/844e93464cf8f5a6ace9103.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OTVkNmM1NWIzZWIwYWI1NTNmYTk0LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/795d6c55b3eb0ab553fa94.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/795d6c55b3eb0ab553fa94.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9hMmU1YTdlZTc4NTBjMTBlOTg0MTkwLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/a2e5a7ee7850c10e984190.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/a2e5a7ee7850c10e984190.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzNywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8xZDI2MGQyZmQyOTE2YmNmMzI4MDk5LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/1d260d2fd2916bcf328099.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/1d260d2fd2916bcf328099.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzOCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kYjNlOGUzNjUxODhlOGQ2YjE5OTExOS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/db3e8e365188e8d6b199119.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/db3e8e365188e8d6b199119.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kMDM3ZWEzZjM1ODE4Y2RmZDU5MDExNC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/d037ea3f35818cdfd590114.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/d037ea3f35818cdfd590114.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wNDk3Mjc5ZmY4MjE0MTdmMTgzMDEyMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/0497279ff821417f1830122.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/0497279ff821417f1830122.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80MTg1YTY4ZDc5MzNjMDZkOTkyMjExMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4185a68d7933c06d9922111.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4185a68d7933c06d9922111.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yNjY0ZDY2MjA5ZGNiMDgyZTljZDExNy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/2664d66209dcb082e9cd117.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2664d66209dcb082e9cd117.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85OTViOTU1MjRhZWNmM2IyYWFmZDEyMC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/995b95524aecf3b2aafd120.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/995b95524aecf3b2aafd120.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85NmUxN2ZlOWEwNTcxOTA5NDA0NjEwNS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/96e17fe9a05719094046105.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/96e17fe9a05719094046105.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81M2QzYTFkYjdlNjVjNzNiOWU3NDEwNy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/53d3a1db7e65c73b9e74107.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/53d3a1db7e65c73b9e74107.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80NmYzYmVmYTYxNDRkODFhODE1NTEyMy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/46f3befa6144d81a8155123.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/46f3befa6144d81a8155123.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85ZDI0YTEyYzdlOTJjN2NjOWU4MzEwOC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9d24a12c7e92c7cc9e83108.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9d24a12c7e92c7cc9e83108.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85YTRiNzY0M2E5ZmQxMGEzNDllYzExNS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9a4b7643a9fd10a349ec115.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9a4b7643a9fd10a349ec115.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81YTE5OTYxZjQ5YTFmMGZmYTliMDExOC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/5a19961f49a1f0ffa9b0118.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/5a19961f49a1f0ffa9b0118.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wYjMyZjAzYjJmODU5NmRiY2Y5NDExMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/0b32f03b2f8596dbcf94112.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/0b32f03b2f8596dbcf94112.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iMWM4YmZjMTYwN2ZkOTIxODA2ZTEyOS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b1c8bfc1607fd921806e129.jpg\'><img width=\"112\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b1c8bfc1607fd921806e129.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8zM2NjYzdjYTE4NzRhMTJhZjg2NTEzMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/33ccc7ca1874a12af865132.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/33ccc7ca1874a12af865132.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yYzdlNjY3NmI5YzgwMDk2NTlkOTEyNi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/2c7e6676b9c8009659d9126.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2c7e6676b9c8009659d9126.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80YWYzZmJmYjI0NDU5ZDFiYzQ1NDg0LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4af3fbfb24459d1bc45484.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4af3fbfb24459d1bc45484.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kYTI3NzIyZmFkOTExNGNmNGQ4MDEyMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/da27722fad9114cf4d80121.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/da27722fad9114cf4d80121.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iOTAwN2QwNmEyYjgxYmU2NDJhOTEwOS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b9007d06a2b81be642a9109.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b9007d06a2b81be642a9109.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85NzUwOWE1OTQ1ZTdmY2I5YTVmNjExMy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/97509a5945e7fcb9a5f6113.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/97509a5945e7fcb9a5f6113.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83Y2RlNjRkNmJiNjgwMjM2NWI3OTEwMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/7cde64d6bb6802365b79102.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/7cde64d6bb6802365b79102.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83ZWY3OTRmMTRiNGZmMjExYWI1ZTkxLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/7ef794f14b4ff211ab5e91.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/7ef794f14b4ff211ab5e91.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80MWE3NmZhZmIwMTEwOTRmNTAwMDk2LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/41a76fafb011094f500096.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/41a76fafb011094f500096.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yODRlZTE0ODNlZjY4N2E4ZGVlNzk1LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/284ee1483ef687a8dee795.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/284ee1483ef687a8dee795.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81N2M1NzdjZGE4NzMxMTJkNDg2MjgyLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/57c577cda873112d486282.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/57c577cda873112d486282.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80MmYxNThmODg3NDYzZTE4Njc1Nzc1LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/42f158f887463e18675775.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/42f158f887463e18675775.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kZmI1OGJiZDU0MDNlZDVkYjQxMjg2LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/dfb58bbd5403ed5db41286.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/dfb58bbd5403ed5db41286.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jY2Q3M2VkZWUxNjA1ODNlMDE3MTg3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/ccd73edee160583e017187.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/ccd73edee160583e017187.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jMDEwZDkxOTA2YTdiZmY5ZTZiNjg1LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c010d91906a7bff9e6b685.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c010d91906a7bff9e6b685.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85MWE1NTNhMzhjMWQzNTQzNmMwYzgzLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/91a553a38c1d35436c0c83.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/91a553a38c1d35436c0c83.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8zNTBmMjQwNmZiYjg0MmU2MWJhOTgwLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/350f2406fbb842e61ba980.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/350f2406fbb842e61ba980.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8xMjg5ZGY4ZjAwMzFiOTZmZTAyMDc5LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/1289df8f0031b96fe02079.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/1289df8f0031b96fe02079.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9hNDg4OGY4MDUwM2VlOTYwYjAyZjc0LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/a4888f80503ee960b02f74.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/a4888f80503ee960b02f74.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM5MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9lMzFmZGExNzA1YTliY2Y3ZTViODcwLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM5MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jMjBmMGEwOWQ1Yjc2Y2U5MzVhNjY3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM5MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yODcwNmY3OGIwYzYwOTk4NTBkNzY4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\'><img width=\"150\" height=\"115\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OWUwM2FlOGU1NTY1YzA4MDU0NzcyLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wN2M1NGVjZTkxNzAyODJlNzE2MTcxLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/07c54ece9170282e716171.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/07c54ece9170282e716171.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC84ZDc5Y2I3MTE0Y2ZhZDkxZjRkZTczLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/8d79cb7114cfad91f4de73.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/8d79cb7114cfad91f4de73.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80OTI5MDQyMmRiOWM2MmMyM2I4ZDEyNS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/49290422db9c62c23b8d125.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/49290422db9c62c23b8d125.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9mN2Y0YzJmYzFkNDJhNDFjZmQ1MzEzMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/f7f4c2fc1d42a41cfd53131.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/f7f4c2fc1d42a41cfd53131.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC82MmZiNzJmMGFkNGUxNDEwNGQ1ZjEyNy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/62fb72f0ad4e14104d5f127.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/62fb72f0ad4e14104d5f127.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OTVkZjk1NDI2ZWE5ZmI0YzZmYjExNi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/795df95426ea9fb4c6fb116.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/795df95426ea9fb4c6fb116.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8xYWIxZjRiNzJiMDk5MjU3Y2IxODk3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/1ab1f4b72b099257cb1897.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/1ab1f4b72b099257cb1897.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jNTQ2OTM0ZTRjZjBmNWFlYWNlMTEwMC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c546934e4cf0f5aeace1100.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c546934e4cf0f5aeace1100.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80NDgwYjQ4OTZiMzdkMjY5OGIyNjc3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4480b4896b37d2698b2677.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4480b4896b37d2698b2677.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzOSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iNDRjMTE0NGNlZmE3N2E0MmVlYjEwNi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b44c1144cefa77a42eeb106.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b44c1144cefa77a42eeb106.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzNSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81NmM5ZjhjMjI3N2M5ZTIyYzc2ZDk4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/56c9f8c2277c9e22c76d98.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/56c9f8c2277c9e22c76d98.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzNiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80ZGM2Y2VjZjExNzFhODJmZjE2MDEwMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4dc6cecf1171a82ff160101.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4dc6cecf1171a82ff160101.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC84ZWEzOTZhYTQ5MTRmMDRhYTkwNTg4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/8ea396aa4914f04aa90588.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/8ea396aa4914f04aa90588.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wY2M4OGVjMTUxN2ZlODIxYjE2ZTEzMC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/0cc88ec1517fe821b16e130.jpg\'><img width=\"150\" height=\"86\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/0cc88ec1517fe821b16e130.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>','Gallery','','inherit','closed','closed','','2126-revision-v1','','','2024-10-21 07:04:07','2024-10-21 07:04:07','',2126,'http://fe2tech.com/?p=2407',0,'revision','',0),(2408,1,'2024-10-21 07:04:08','2024-10-21 07:04:08','<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMyOCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85NTA1YzQwZDFiYjNhMmVkZmJhMjc4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9505c40d1bb3a2edfba278.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9505c40d1bb3a2edfba278.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMyOSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8zOGRiMTRkM2NiNmQ3MjMzMmI3Yzc2LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/38db14d3cb6d72332b7c76.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/38db14d3cb6d72332b7c76.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iNWVkMWJlNWM0NWI3ZDA1MjQ0YTkzLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b5ed1be5c45b7d05244a93.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b5ed1be5c45b7d05244a93.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC84NDRlOTM0NjRjZjhmNWE2YWNlOTEwMy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/844e93464cf8f5a6ace9103.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/844e93464cf8f5a6ace9103.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OTVkNmM1NWIzZWIwYWI1NTNmYTk0LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/795d6c55b3eb0ab553fa94.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/795d6c55b3eb0ab553fa94.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9hMmU1YTdlZTc4NTBjMTBlOTg0MTkwLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/a2e5a7ee7850c10e984190.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/a2e5a7ee7850c10e984190.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzNywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8xZDI2MGQyZmQyOTE2YmNmMzI4MDk5LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/1d260d2fd2916bcf328099.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/1d260d2fd2916bcf328099.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzOCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kYjNlOGUzNjUxODhlOGQ2YjE5OTExOS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/db3e8e365188e8d6b199119.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/db3e8e365188e8d6b199119.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kMDM3ZWEzZjM1ODE4Y2RmZDU5MDExNC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/d037ea3f35818cdfd590114.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/d037ea3f35818cdfd590114.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wNDk3Mjc5ZmY4MjE0MTdmMTgzMDEyMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/0497279ff821417f1830122.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/0497279ff821417f1830122.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80MTg1YTY4ZDc5MzNjMDZkOTkyMjExMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4185a68d7933c06d9922111.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4185a68d7933c06d9922111.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yNjY0ZDY2MjA5ZGNiMDgyZTljZDExNy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/2664d66209dcb082e9cd117.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2664d66209dcb082e9cd117.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85OTViOTU1MjRhZWNmM2IyYWFmZDEyMC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/995b95524aecf3b2aafd120.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/995b95524aecf3b2aafd120.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85NmUxN2ZlOWEwNTcxOTA5NDA0NjEwNS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/96e17fe9a05719094046105.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/96e17fe9a05719094046105.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81M2QzYTFkYjdlNjVjNzNiOWU3NDEwNy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/53d3a1db7e65c73b9e74107.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/53d3a1db7e65c73b9e74107.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80NmYzYmVmYTYxNDRkODFhODE1NTEyMy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/46f3befa6144d81a8155123.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/46f3befa6144d81a8155123.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85ZDI0YTEyYzdlOTJjN2NjOWU4MzEwOC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9d24a12c7e92c7cc9e83108.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9d24a12c7e92c7cc9e83108.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85YTRiNzY0M2E5ZmQxMGEzNDllYzExNS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9a4b7643a9fd10a349ec115.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9a4b7643a9fd10a349ec115.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81YTE5OTYxZjQ5YTFmMGZmYTliMDExOC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/5a19961f49a1f0ffa9b0118.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/5a19961f49a1f0ffa9b0118.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wYjMyZjAzYjJmODU5NmRiY2Y5NDExMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/0b32f03b2f8596dbcf94112.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/0b32f03b2f8596dbcf94112.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iMWM4YmZjMTYwN2ZkOTIxODA2ZTEyOS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b1c8bfc1607fd921806e129.jpg\'><img width=\"112\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b1c8bfc1607fd921806e129.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8zM2NjYzdjYTE4NzRhMTJhZjg2NTEzMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/33ccc7ca1874a12af865132.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/33ccc7ca1874a12af865132.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yYzdlNjY3NmI5YzgwMDk2NTlkOTEyNi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/2c7e6676b9c8009659d9126.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2c7e6676b9c8009659d9126.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80YWYzZmJmYjI0NDU5ZDFiYzQ1NDg0LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4af3fbfb24459d1bc45484.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4af3fbfb24459d1bc45484.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kYTI3NzIyZmFkOTExNGNmNGQ4MDEyMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/da27722fad9114cf4d80121.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/da27722fad9114cf4d80121.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iOTAwN2QwNmEyYjgxYmU2NDJhOTEwOS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b9007d06a2b81be642a9109.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b9007d06a2b81be642a9109.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85NzUwOWE1OTQ1ZTdmY2I5YTVmNjExMy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/97509a5945e7fcb9a5f6113.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/97509a5945e7fcb9a5f6113.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83Y2RlNjRkNmJiNjgwMjM2NWI3OTEwMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/7cde64d6bb6802365b79102.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/7cde64d6bb6802365b79102.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83ZWY3OTRmMTRiNGZmMjExYWI1ZTkxLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/7ef794f14b4ff211ab5e91.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/7ef794f14b4ff211ab5e91.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80MWE3NmZhZmIwMTEwOTRmNTAwMDk2LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/41a76fafb011094f500096.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/41a76fafb011094f500096.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yODRlZTE0ODNlZjY4N2E4ZGVlNzk1LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/284ee1483ef687a8dee795.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/284ee1483ef687a8dee795.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81N2M1NzdjZGE4NzMxMTJkNDg2MjgyLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/57c577cda873112d486282.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/57c577cda873112d486282.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80MmYxNThmODg3NDYzZTE4Njc1Nzc1LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/42f158f887463e18675775.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/42f158f887463e18675775.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kZmI1OGJiZDU0MDNlZDVkYjQxMjg2LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/dfb58bbd5403ed5db41286.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/dfb58bbd5403ed5db41286.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jY2Q3M2VkZWUxNjA1ODNlMDE3MTg3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/ccd73edee160583e017187.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/ccd73edee160583e017187.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85MWE1NTNhMzhjMWQzNTQzNmMwYzgzLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/91a553a38c1d35436c0c83.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/91a553a38c1d35436c0c83.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8xMjg5ZGY4ZjAwMzFiOTZmZTAyMDc5LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/1289df8f0031b96fe02079.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/1289df8f0031b96fe02079.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9hNDg4OGY4MDUwM2VlOTYwYjAyZjc0LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/a4888f80503ee960b02f74.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/a4888f80503ee960b02f74.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM5MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9lMzFmZGExNzA1YTliY2Y3ZTViODcwLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM5MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jMjBmMGEwOWQ1Yjc2Y2U5MzVhNjY3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM5MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yODcwNmY3OGIwYzYwOTk4NTBkNzY4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\'><img width=\"150\" height=\"115\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OWUwM2FlOGU1NTY1YzA4MDU0NzcyLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wN2M1NGVjZTkxNzAyODJlNzE2MTcxLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/07c54ece9170282e716171.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/07c54ece9170282e716171.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC84ZDc5Y2I3MTE0Y2ZhZDkxZjRkZTczLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/8d79cb7114cfad91f4de73.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/8d79cb7114cfad91f4de73.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80OTI5MDQyMmRiOWM2MmMyM2I4ZDEyNS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/49290422db9c62c23b8d125.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/49290422db9c62c23b8d125.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9mN2Y0YzJmYzFkNDJhNDFjZmQ1MzEzMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/f7f4c2fc1d42a41cfd53131.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/f7f4c2fc1d42a41cfd53131.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC82MmZiNzJmMGFkNGUxNDEwNGQ1ZjEyNy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/62fb72f0ad4e14104d5f127.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/62fb72f0ad4e14104d5f127.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OTVkZjk1NDI2ZWE5ZmI0YzZmYjExNi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/795df95426ea9fb4c6fb116.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/795df95426ea9fb4c6fb116.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8xYWIxZjRiNzJiMDk5MjU3Y2IxODk3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/1ab1f4b72b099257cb1897.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/1ab1f4b72b099257cb1897.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jNTQ2OTM0ZTRjZjBmNWFlYWNlMTEwMC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c546934e4cf0f5aeace1100.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c546934e4cf0f5aeace1100.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80NDgwYjQ4OTZiMzdkMjY5OGIyNjc3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4480b4896b37d2698b2677.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4480b4896b37d2698b2677.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzOSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iNDRjMTE0NGNlZmE3N2E0MmVlYjEwNi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b44c1144cefa77a42eeb106.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b44c1144cefa77a42eeb106.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzNSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81NmM5ZjhjMjI3N2M5ZTIyYzc2ZDk4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/56c9f8c2277c9e22c76d98.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/56c9f8c2277c9e22c76d98.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzNiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80ZGM2Y2VjZjExNzFhODJmZjE2MDEwMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4dc6cecf1171a82ff160101.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4dc6cecf1171a82ff160101.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC84ZWEzOTZhYTQ5MTRmMDRhYTkwNTg4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/8ea396aa4914f04aa90588.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/8ea396aa4914f04aa90588.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wY2M4OGVjMTUxN2ZlODIxYjE2ZTEzMC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/0cc88ec1517fe821b16e130.jpg\'><img width=\"150\" height=\"86\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/0cc88ec1517fe821b16e130.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>','Gallery','','inherit','closed','closed','','2126-revision-v1','','','2024-10-21 07:04:08','2024-10-21 07:04:08','',2126,'http://fe2tech.com/?p=2408',0,'revision','',0),(2409,1,'2024-10-28 01:47:45','2024-10-28 01:47:45','','fe2tech','','inherit','open','closed','','fe2tech','','','2024-10-28 01:47:45','2024-10-28 01:47:45','',0,'http://fe2tech.com/wp-content/uploads/2024/10/fe2tech.png',0,'attachment','image/png',0),(2411,1,'2024-10-28 01:57:53','2024-10-28 01:57:53','<a href=\"https://fe2tech.com/\">\n							<img width=\"200\" height=\"200\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9b3767fbcf1145d184ba29c6b29bde2c-free.png\" alt=\"\" />								</a>\n			    <ul>\n                    <li>\n            	   Office: 43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM                \n           </li>\n                    <li>\n            	   Factory: 176/9 Nguyễn Thị Tươi, KP Tân Phước, P. Tân Bình, Dĩ An city, Bình Dương                \n           </li>\n                    <li>\n            	   0968860386                \n           </li>\n            </ul>\n		Open Hours:Mon - Sat: 8 am - 5 pm,<br/>\nSunday: CLOSED		\n    <h3>\n        Menu\n        <i></i>\n    </h3>\n        <ul id=\"menu-main-menu\"><li id=\"menu-item-1955\"><a href=\"https://fe2tech.com/\">Home</a></li>\n<li id=\"menu-item-1965\"><a href=\"https://fe2tech.com/shop/\">Gallery</a></li>\n<li id=\"menu-item-1966\"><a href=\"https://fe2tech.com/services-v-2/\">Services</a></li>\n<li id=\"menu-item-1967\"><a href=\"https://fe2tech.com/team/\">Team &amp; Partners</a></li>\n<li id=\"menu-item-1960\"><a href=\"https://fe2tech.com/about/\">About Us</a></li>\n</ul>    \n    <h3>\n        Newsletter\n        <i></i>\n    </h3>\n		Sign up for alerts, our latest blogs, thoughts, and insights.		\n        <form method=\"post\" action=\"https://fe2tech.com/wp-admin/admin-ajax.php?action=tnp&amp;na=s\" style=\"\">\n<input type=\"hidden\" name=\"nlang\" value=\"\">\n<label for=\"tnp-1\">Your mail address</label>\n<input type=\"email\" name=\"ne\" id=\"tnp-1\" value=\"\" placeholder=\"\" required>\n<input type=\"submit\" value=\"Subscribe\" style=\"\">\n</form>    \n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n		<p>Copyright @2024 Trifles. All Rights Reserved by Far East High Tech</p>		\n        <ul id=\"menu-menu-footer-bottom\"><li id=\"menu-item-1878\"><a href=\"#\">Terms</a></li>\n<li id=\"menu-item-1879\"><a href=\"#\">Privacy &#038; Policy</a></li>\n<li id=\"menu-item-1880\"><a href=\"#\">Join Us</a></li>\n<li id=\"menu-item-1881\"><a href=\"#\">Need Help?</a></li>\n</ul>','Footer','','inherit','closed','closed','','799-revision-v1','','','2024-10-28 01:57:53','2024-10-28 01:57:53','',799,'http://fe2tech.com/?p=2411',0,'revision','',0),(2412,1,'2024-10-28 01:58:28','2024-10-28 01:58:28','<a href=\"https://fe2tech.com/\">\n							<img width=\"1469\" height=\"1278\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/fe2tech.png\" alt=\"\" />								</a>\n			    <ul>\n                    <li>\n            	   Office: 43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM                \n           </li>\n                    <li>\n            	   Factory: 176/9 Nguyễn Thị Tươi, KP Tân Phước, P. Tân Bình, Dĩ An city, Bình Dương                \n           </li>\n                    <li>\n            	   0968860386                \n           </li>\n            </ul>\n		Open Hours:Mon - Sat: 8 am - 5 pm,<br/>\nSunday: CLOSED		\n    <h3>\n        Menu\n        <i></i>\n    </h3>\n        <ul id=\"menu-main-menu\"><li id=\"menu-item-1955\"><a href=\"https://fe2tech.com/\">Home</a></li>\n<li id=\"menu-item-2132\"><a href=\"https://fe2tech.com/gallery/\">Gallery</a></li>\n<li id=\"menu-item-2131\"><a href=\"https://fe2tech.com/services/\">Services</a></li>\n<li id=\"menu-item-1967\"><a href=\"https://fe2tech.com/team-partners/\">Team &amp; Partners</a></li>\n<li id=\"menu-item-1960\"><a href=\"https://fe2tech.com/about/\">About Us</a></li>\n</ul>    \n    <h3>\n        Newsletter\n        <i></i>\n    </h3>\n		Sign up for alerts, our latest blogs, thoughts, and insights.		\n        <form method=\"post\" action=\"https://fe2tech.com/wp-admin/admin-ajax.php?action=tnp&amp;na=s\" style=\"\">\n<input type=\"hidden\" name=\"nlang\" value=\"\">\n<label for=\"tnp-1\">Your mail address</label>\n<input type=\"email\" name=\"ne\" id=\"tnp-1\" value=\"\" placeholder=\"\" required>\n<input type=\"submit\" value=\"Subscribe\" style=\"\">\n</form>    \n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n		<p>Copyright @2024 Trifles. All Rights Reserved by Far East High Tech</p>		\n        <ul id=\"menu-menu-footer-bottom\"><li id=\"menu-item-1878\"><a href=\"#\">Terms</a></li>\n<li id=\"menu-item-1879\"><a href=\"#\">Privacy &#038; Policy</a></li>\n<li id=\"menu-item-1880\"><a href=\"#\">Join Us</a></li>\n<li id=\"menu-item-1881\"><a href=\"#\">Need Help?</a></li>\n</ul>','Footer','','inherit','closed','closed','','799-revision-v1','','','2024-10-28 01:58:28','2024-10-28 01:58:28','',799,'http://fe2tech.com/?p=2412',0,'revision','',0),(2420,1,'2024-10-28 02:25:36','2024-10-28 02:25:36','<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMyOCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85NTA1YzQwZDFiYjNhMmVkZmJhMjc4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9505c40d1bb3a2edfba278.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9505c40d1bb3a2edfba278.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMyOSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8zOGRiMTRkM2NiNmQ3MjMzMmI3Yzc2LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/38db14d3cb6d72332b7c76.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/38db14d3cb6d72332b7c76.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iNWVkMWJlNWM0NWI3ZDA1MjQ0YTkzLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b5ed1be5c45b7d05244a93.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b5ed1be5c45b7d05244a93.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC84NDRlOTM0NjRjZjhmNWE2YWNlOTEwMy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/844e93464cf8f5a6ace9103.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/844e93464cf8f5a6ace9103.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OTVkNmM1NWIzZWIwYWI1NTNmYTk0LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/795d6c55b3eb0ab553fa94.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/795d6c55b3eb0ab553fa94.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9hMmU1YTdlZTc4NTBjMTBlOTg0MTkwLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/a2e5a7ee7850c10e984190.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/a2e5a7ee7850c10e984190.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzNywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8xZDI2MGQyZmQyOTE2YmNmMzI4MDk5LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/1d260d2fd2916bcf328099.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/1d260d2fd2916bcf328099.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzOCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kYjNlOGUzNjUxODhlOGQ2YjE5OTExOS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/db3e8e365188e8d6b199119.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/db3e8e365188e8d6b199119.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kMDM3ZWEzZjM1ODE4Y2RmZDU5MDExNC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/d037ea3f35818cdfd590114.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/d037ea3f35818cdfd590114.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wNDk3Mjc5ZmY4MjE0MTdmMTgzMDEyMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/0497279ff821417f1830122.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/0497279ff821417f1830122.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80MTg1YTY4ZDc5MzNjMDZkOTkyMjExMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4185a68d7933c06d9922111.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4185a68d7933c06d9922111.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yNjY0ZDY2MjA5ZGNiMDgyZTljZDExNy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/2664d66209dcb082e9cd117.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2664d66209dcb082e9cd117.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85OTViOTU1MjRhZWNmM2IyYWFmZDEyMC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/995b95524aecf3b2aafd120.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/995b95524aecf3b2aafd120.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85NmUxN2ZlOWEwNTcxOTA5NDA0NjEwNS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/96e17fe9a05719094046105.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/96e17fe9a05719094046105.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81M2QzYTFkYjdlNjVjNzNiOWU3NDEwNy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/53d3a1db7e65c73b9e74107.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/53d3a1db7e65c73b9e74107.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80NmYzYmVmYTYxNDRkODFhODE1NTEyMy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/46f3befa6144d81a8155123.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/46f3befa6144d81a8155123.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85ZDI0YTEyYzdlOTJjN2NjOWU4MzEwOC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9d24a12c7e92c7cc9e83108.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9d24a12c7e92c7cc9e83108.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85YTRiNzY0M2E5ZmQxMGEzNDllYzExNS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9a4b7643a9fd10a349ec115.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9a4b7643a9fd10a349ec115.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81YTE5OTYxZjQ5YTFmMGZmYTliMDExOC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/5a19961f49a1f0ffa9b0118.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/5a19961f49a1f0ffa9b0118.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wYjMyZjAzYjJmODU5NmRiY2Y5NDExMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/0b32f03b2f8596dbcf94112.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/0b32f03b2f8596dbcf94112.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iMWM4YmZjMTYwN2ZkOTIxODA2ZTEyOS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b1c8bfc1607fd921806e129.jpg\'><img width=\"112\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b1c8bfc1607fd921806e129.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8zM2NjYzdjYTE4NzRhMTJhZjg2NTEzMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/33ccc7ca1874a12af865132.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/33ccc7ca1874a12af865132.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yYzdlNjY3NmI5YzgwMDk2NTlkOTEyNi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/2c7e6676b9c8009659d9126.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2c7e6676b9c8009659d9126.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80YWYzZmJmYjI0NDU5ZDFiYzQ1NDg0LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4af3fbfb24459d1bc45484.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4af3fbfb24459d1bc45484.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kYTI3NzIyZmFkOTExNGNmNGQ4MDEyMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/da27722fad9114cf4d80121.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/da27722fad9114cf4d80121.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iOTAwN2QwNmEyYjgxYmU2NDJhOTEwOS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b9007d06a2b81be642a9109.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b9007d06a2b81be642a9109.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85NzUwOWE1OTQ1ZTdmY2I5YTVmNjExMy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/97509a5945e7fcb9a5f6113.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/97509a5945e7fcb9a5f6113.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83Y2RlNjRkNmJiNjgwMjM2NWI3OTEwMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/7cde64d6bb6802365b79102.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/7cde64d6bb6802365b79102.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83ZWY3OTRmMTRiNGZmMjExYWI1ZTkxLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/7ef794f14b4ff211ab5e91.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/7ef794f14b4ff211ab5e91.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80MWE3NmZhZmIwMTEwOTRmNTAwMDk2LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/41a76fafb011094f500096.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/41a76fafb011094f500096.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yODRlZTE0ODNlZjY4N2E4ZGVlNzk1LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/284ee1483ef687a8dee795.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/284ee1483ef687a8dee795.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81N2M1NzdjZGE4NzMxMTJkNDg2MjgyLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/57c577cda873112d486282.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/57c577cda873112d486282.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80MmYxNThmODg3NDYzZTE4Njc1Nzc1LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/42f158f887463e18675775.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/42f158f887463e18675775.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kZmI1OGJiZDU0MDNlZDVkYjQxMjg2LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/dfb58bbd5403ed5db41286.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/dfb58bbd5403ed5db41286.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jY2Q3M2VkZWUxNjA1ODNlMDE3MTg3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/ccd73edee160583e017187.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/ccd73edee160583e017187.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85MWE1NTNhMzhjMWQzNTQzNmMwYzgzLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/91a553a38c1d35436c0c83.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/91a553a38c1d35436c0c83.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8xMjg5ZGY4ZjAwMzFiOTZmZTAyMDc5LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/1289df8f0031b96fe02079.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/1289df8f0031b96fe02079.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9hNDg4OGY4MDUwM2VlOTYwYjAyZjc0LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/a4888f80503ee960b02f74.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/a4888f80503ee960b02f74.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM5MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9lMzFmZGExNzA1YTliY2Y3ZTViODcwLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM5MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jMjBmMGEwOWQ1Yjc2Y2U5MzVhNjY3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM5MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yODcwNmY3OGIwYzYwOTk4NTBkNzY4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\'><img width=\"150\" height=\"115\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OWUwM2FlOGU1NTY1YzA4MDU0NzcyLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wN2M1NGVjZTkxNzAyODJlNzE2MTcxLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/07c54ece9170282e716171.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/07c54ece9170282e716171.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC84ZDc5Y2I3MTE0Y2ZhZDkxZjRkZTczLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/8d79cb7114cfad91f4de73.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/8d79cb7114cfad91f4de73.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80OTI5MDQyMmRiOWM2MmMyM2I4ZDEyNS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/49290422db9c62c23b8d125.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/49290422db9c62c23b8d125.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9mN2Y0YzJmYzFkNDJhNDFjZmQ1MzEzMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/f7f4c2fc1d42a41cfd53131.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/f7f4c2fc1d42a41cfd53131.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC82MmZiNzJmMGFkNGUxNDEwNGQ1ZjEyNy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/62fb72f0ad4e14104d5f127.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/62fb72f0ad4e14104d5f127.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OTVkZjk1NDI2ZWE5ZmI0YzZmYjExNi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/795df95426ea9fb4c6fb116.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/795df95426ea9fb4c6fb116.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8xYWIxZjRiNzJiMDk5MjU3Y2IxODk3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/1ab1f4b72b099257cb1897.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/1ab1f4b72b099257cb1897.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jNTQ2OTM0ZTRjZjBmNWFlYWNlMTEwMC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c546934e4cf0f5aeace1100.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c546934e4cf0f5aeace1100.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80NDgwYjQ4OTZiMzdkMjY5OGIyNjc3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4480b4896b37d2698b2677.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4480b4896b37d2698b2677.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzOSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iNDRjMTE0NGNlZmE3N2E0MmVlYjEwNi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b44c1144cefa77a42eeb106.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b44c1144cefa77a42eeb106.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzNSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81NmM5ZjhjMjI3N2M5ZTIyYzc2ZDk4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/56c9f8c2277c9e22c76d98.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/56c9f8c2277c9e22c76d98.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzNiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80ZGM2Y2VjZjExNzFhODJmZjE2MDEwMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4dc6cecf1171a82ff160101.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4dc6cecf1171a82ff160101.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC84ZWEzOTZhYTQ5MTRmMDRhYTkwNTg4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/8ea396aa4914f04aa90588.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/8ea396aa4914f04aa90588.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wY2M4OGVjMTUxN2ZlODIxYjE2ZTEzMC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/0cc88ec1517fe821b16e130.jpg\'><img width=\"150\" height=\"86\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/0cc88ec1517fe821b16e130.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>','Gallery','','inherit','closed','closed','','2126-revision-v1','','','2024-10-28 02:25:36','2024-10-28 02:25:36','',2126,'http://fe2tech.com/?p=2420',0,'revision','',0),(2421,1,'2024-10-28 02:25:36','2024-10-28 02:25:36','<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMyOCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85NTA1YzQwZDFiYjNhMmVkZmJhMjc4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9505c40d1bb3a2edfba278.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9505c40d1bb3a2edfba278.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMyOSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8zOGRiMTRkM2NiNmQ3MjMzMmI3Yzc2LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/38db14d3cb6d72332b7c76.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/38db14d3cb6d72332b7c76.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iNWVkMWJlNWM0NWI3ZDA1MjQ0YTkzLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b5ed1be5c45b7d05244a93.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b5ed1be5c45b7d05244a93.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC84NDRlOTM0NjRjZjhmNWE2YWNlOTEwMy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/844e93464cf8f5a6ace9103.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/844e93464cf8f5a6ace9103.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OTVkNmM1NWIzZWIwYWI1NTNmYTk0LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/795d6c55b3eb0ab553fa94.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/795d6c55b3eb0ab553fa94.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9hMmU1YTdlZTc4NTBjMTBlOTg0MTkwLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/a2e5a7ee7850c10e984190.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/a2e5a7ee7850c10e984190.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzNywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8xZDI2MGQyZmQyOTE2YmNmMzI4MDk5LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/1d260d2fd2916bcf328099.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/1d260d2fd2916bcf328099.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzOCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kYjNlOGUzNjUxODhlOGQ2YjE5OTExOS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/db3e8e365188e8d6b199119.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/db3e8e365188e8d6b199119.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kMDM3ZWEzZjM1ODE4Y2RmZDU5MDExNC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/d037ea3f35818cdfd590114.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/d037ea3f35818cdfd590114.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wNDk3Mjc5ZmY4MjE0MTdmMTgzMDEyMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/0497279ff821417f1830122.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/0497279ff821417f1830122.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80MTg1YTY4ZDc5MzNjMDZkOTkyMjExMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4185a68d7933c06d9922111.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4185a68d7933c06d9922111.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yNjY0ZDY2MjA5ZGNiMDgyZTljZDExNy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/2664d66209dcb082e9cd117.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2664d66209dcb082e9cd117.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85OTViOTU1MjRhZWNmM2IyYWFmZDEyMC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/995b95524aecf3b2aafd120.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/995b95524aecf3b2aafd120.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85NmUxN2ZlOWEwNTcxOTA5NDA0NjEwNS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/96e17fe9a05719094046105.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/96e17fe9a05719094046105.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81M2QzYTFkYjdlNjVjNzNiOWU3NDEwNy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/53d3a1db7e65c73b9e74107.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/53d3a1db7e65c73b9e74107.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80NmYzYmVmYTYxNDRkODFhODE1NTEyMy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/46f3befa6144d81a8155123.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/46f3befa6144d81a8155123.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85ZDI0YTEyYzdlOTJjN2NjOWU4MzEwOC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9d24a12c7e92c7cc9e83108.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9d24a12c7e92c7cc9e83108.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85YTRiNzY0M2E5ZmQxMGEzNDllYzExNS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9a4b7643a9fd10a349ec115.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9a4b7643a9fd10a349ec115.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81YTE5OTYxZjQ5YTFmMGZmYTliMDExOC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/5a19961f49a1f0ffa9b0118.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/5a19961f49a1f0ffa9b0118.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wYjMyZjAzYjJmODU5NmRiY2Y5NDExMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/0b32f03b2f8596dbcf94112.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/0b32f03b2f8596dbcf94112.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iMWM4YmZjMTYwN2ZkOTIxODA2ZTEyOS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b1c8bfc1607fd921806e129.jpg\'><img width=\"112\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b1c8bfc1607fd921806e129.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8zM2NjYzdjYTE4NzRhMTJhZjg2NTEzMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/33ccc7ca1874a12af865132.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/33ccc7ca1874a12af865132.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yYzdlNjY3NmI5YzgwMDk2NTlkOTEyNi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/2c7e6676b9c8009659d9126.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2c7e6676b9c8009659d9126.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80YWYzZmJmYjI0NDU5ZDFiYzQ1NDg0LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4af3fbfb24459d1bc45484.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4af3fbfb24459d1bc45484.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kYTI3NzIyZmFkOTExNGNmNGQ4MDEyMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/da27722fad9114cf4d80121.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/da27722fad9114cf4d80121.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iOTAwN2QwNmEyYjgxYmU2NDJhOTEwOS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b9007d06a2b81be642a9109.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b9007d06a2b81be642a9109.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85NzUwOWE1OTQ1ZTdmY2I5YTVmNjExMy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/97509a5945e7fcb9a5f6113.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/97509a5945e7fcb9a5f6113.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83Y2RlNjRkNmJiNjgwMjM2NWI3OTEwMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/7cde64d6bb6802365b79102.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/7cde64d6bb6802365b79102.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83ZWY3OTRmMTRiNGZmMjExYWI1ZTkxLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/7ef794f14b4ff211ab5e91.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/7ef794f14b4ff211ab5e91.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80MWE3NmZhZmIwMTEwOTRmNTAwMDk2LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/41a76fafb011094f500096.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/41a76fafb011094f500096.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yODRlZTE0ODNlZjY4N2E4ZGVlNzk1LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/284ee1483ef687a8dee795.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/284ee1483ef687a8dee795.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81N2M1NzdjZGE4NzMxMTJkNDg2MjgyLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/57c577cda873112d486282.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/57c577cda873112d486282.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80MmYxNThmODg3NDYzZTE4Njc1Nzc1LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/42f158f887463e18675775.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/42f158f887463e18675775.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kZmI1OGJiZDU0MDNlZDVkYjQxMjg2LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/dfb58bbd5403ed5db41286.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/dfb58bbd5403ed5db41286.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jY2Q3M2VkZWUxNjA1ODNlMDE3MTg3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/ccd73edee160583e017187.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/ccd73edee160583e017187.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85MWE1NTNhMzhjMWQzNTQzNmMwYzgzLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/91a553a38c1d35436c0c83.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/91a553a38c1d35436c0c83.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8xMjg5ZGY4ZjAwMzFiOTZmZTAyMDc5LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/1289df8f0031b96fe02079.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/1289df8f0031b96fe02079.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9hNDg4OGY4MDUwM2VlOTYwYjAyZjc0LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/a4888f80503ee960b02f74.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/a4888f80503ee960b02f74.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM5MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9lMzFmZGExNzA1YTliY2Y3ZTViODcwLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM5MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jMjBmMGEwOWQ1Yjc2Y2U5MzVhNjY3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM5MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yODcwNmY3OGIwYzYwOTk4NTBkNzY4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\'><img width=\"150\" height=\"115\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OWUwM2FlOGU1NTY1YzA4MDU0NzcyLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wN2M1NGVjZTkxNzAyODJlNzE2MTcxLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/07c54ece9170282e716171.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/07c54ece9170282e716171.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC84ZDc5Y2I3MTE0Y2ZhZDkxZjRkZTczLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/8d79cb7114cfad91f4de73.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/8d79cb7114cfad91f4de73.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80OTI5MDQyMmRiOWM2MmMyM2I4ZDEyNS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/49290422db9c62c23b8d125.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/49290422db9c62c23b8d125.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9mN2Y0YzJmYzFkNDJhNDFjZmQ1MzEzMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/f7f4c2fc1d42a41cfd53131.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/f7f4c2fc1d42a41cfd53131.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC82MmZiNzJmMGFkNGUxNDEwNGQ1ZjEyNy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/62fb72f0ad4e14104d5f127.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/62fb72f0ad4e14104d5f127.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OTVkZjk1NDI2ZWE5ZmI0YzZmYjExNi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/795df95426ea9fb4c6fb116.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/795df95426ea9fb4c6fb116.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8xYWIxZjRiNzJiMDk5MjU3Y2IxODk3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/1ab1f4b72b099257cb1897.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/1ab1f4b72b099257cb1897.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jNTQ2OTM0ZTRjZjBmNWFlYWNlMTEwMC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c546934e4cf0f5aeace1100.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c546934e4cf0f5aeace1100.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80NDgwYjQ4OTZiMzdkMjY5OGIyNjc3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4480b4896b37d2698b2677.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4480b4896b37d2698b2677.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzOSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iNDRjMTE0NGNlZmE3N2E0MmVlYjEwNi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b44c1144cefa77a42eeb106.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b44c1144cefa77a42eeb106.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzNSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81NmM5ZjhjMjI3N2M5ZTIyYzc2ZDk4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/56c9f8c2277c9e22c76d98.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/56c9f8c2277c9e22c76d98.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzNiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80ZGM2Y2VjZjExNzFhODJmZjE2MDEwMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4dc6cecf1171a82ff160101.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4dc6cecf1171a82ff160101.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC84ZWEzOTZhYTQ5MTRmMDRhYTkwNTg4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/8ea396aa4914f04aa90588.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/8ea396aa4914f04aa90588.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wY2M4OGVjMTUxN2ZlODIxYjE2ZTEzMC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/0cc88ec1517fe821b16e130.jpg\'><img width=\"150\" height=\"86\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/0cc88ec1517fe821b16e130.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>','Gallery','','inherit','closed','closed','','2126-revision-v1','','','2024-10-28 02:25:36','2024-10-28 02:25:36','',2126,'http://fe2tech.com/?p=2421',0,'revision','',0),(2422,1,'2024-10-28 02:25:36','2024-10-28 02:25:36','<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMyOCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85NTA1YzQwZDFiYjNhMmVkZmJhMjc4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9505c40d1bb3a2edfba278.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9505c40d1bb3a2edfba278.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMyOSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8zOGRiMTRkM2NiNmQ3MjMzMmI3Yzc2LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/38db14d3cb6d72332b7c76.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/38db14d3cb6d72332b7c76.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iNWVkMWJlNWM0NWI3ZDA1MjQ0YTkzLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b5ed1be5c45b7d05244a93.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b5ed1be5c45b7d05244a93.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC84NDRlOTM0NjRjZjhmNWE2YWNlOTEwMy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/844e93464cf8f5a6ace9103.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/844e93464cf8f5a6ace9103.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OTVkNmM1NWIzZWIwYWI1NTNmYTk0LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/795d6c55b3eb0ab553fa94.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/795d6c55b3eb0ab553fa94.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9hMmU1YTdlZTc4NTBjMTBlOTg0MTkwLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/a2e5a7ee7850c10e984190.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/a2e5a7ee7850c10e984190.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzNywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8xZDI2MGQyZmQyOTE2YmNmMzI4MDk5LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/1d260d2fd2916bcf328099.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/1d260d2fd2916bcf328099.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzOCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kYjNlOGUzNjUxODhlOGQ2YjE5OTExOS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/db3e8e365188e8d6b199119.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/db3e8e365188e8d6b199119.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kMDM3ZWEzZjM1ODE4Y2RmZDU5MDExNC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/d037ea3f35818cdfd590114.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/d037ea3f35818cdfd590114.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wNDk3Mjc5ZmY4MjE0MTdmMTgzMDEyMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/0497279ff821417f1830122.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/0497279ff821417f1830122.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80MTg1YTY4ZDc5MzNjMDZkOTkyMjExMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4185a68d7933c06d9922111.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4185a68d7933c06d9922111.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yNjY0ZDY2MjA5ZGNiMDgyZTljZDExNy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/2664d66209dcb082e9cd117.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2664d66209dcb082e9cd117.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85OTViOTU1MjRhZWNmM2IyYWFmZDEyMC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/995b95524aecf3b2aafd120.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/995b95524aecf3b2aafd120.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85NmUxN2ZlOWEwNTcxOTA5NDA0NjEwNS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/96e17fe9a05719094046105.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/96e17fe9a05719094046105.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81M2QzYTFkYjdlNjVjNzNiOWU3NDEwNy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/53d3a1db7e65c73b9e74107.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/53d3a1db7e65c73b9e74107.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80NmYzYmVmYTYxNDRkODFhODE1NTEyMy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/46f3befa6144d81a8155123.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/46f3befa6144d81a8155123.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85ZDI0YTEyYzdlOTJjN2NjOWU4MzEwOC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9d24a12c7e92c7cc9e83108.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9d24a12c7e92c7cc9e83108.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85YTRiNzY0M2E5ZmQxMGEzNDllYzExNS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9a4b7643a9fd10a349ec115.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9a4b7643a9fd10a349ec115.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81YTE5OTYxZjQ5YTFmMGZmYTliMDExOC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/5a19961f49a1f0ffa9b0118.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/5a19961f49a1f0ffa9b0118.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wYjMyZjAzYjJmODU5NmRiY2Y5NDExMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/0b32f03b2f8596dbcf94112.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/0b32f03b2f8596dbcf94112.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iMWM4YmZjMTYwN2ZkOTIxODA2ZTEyOS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b1c8bfc1607fd921806e129.jpg\'><img width=\"112\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b1c8bfc1607fd921806e129.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8zM2NjYzdjYTE4NzRhMTJhZjg2NTEzMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/33ccc7ca1874a12af865132.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/33ccc7ca1874a12af865132.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yYzdlNjY3NmI5YzgwMDk2NTlkOTEyNi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/2c7e6676b9c8009659d9126.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2c7e6676b9c8009659d9126.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80YWYzZmJmYjI0NDU5ZDFiYzQ1NDg0LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4af3fbfb24459d1bc45484.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4af3fbfb24459d1bc45484.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kYTI3NzIyZmFkOTExNGNmNGQ4MDEyMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/da27722fad9114cf4d80121.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/da27722fad9114cf4d80121.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iOTAwN2QwNmEyYjgxYmU2NDJhOTEwOS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b9007d06a2b81be642a9109.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b9007d06a2b81be642a9109.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85NzUwOWE1OTQ1ZTdmY2I5YTVmNjExMy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/97509a5945e7fcb9a5f6113.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/97509a5945e7fcb9a5f6113.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83Y2RlNjRkNmJiNjgwMjM2NWI3OTEwMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/7cde64d6bb6802365b79102.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/7cde64d6bb6802365b79102.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83ZWY3OTRmMTRiNGZmMjExYWI1ZTkxLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/7ef794f14b4ff211ab5e91.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/7ef794f14b4ff211ab5e91.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80MWE3NmZhZmIwMTEwOTRmNTAwMDk2LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/41a76fafb011094f500096.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/41a76fafb011094f500096.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yODRlZTE0ODNlZjY4N2E4ZGVlNzk1LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/284ee1483ef687a8dee795.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/284ee1483ef687a8dee795.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81N2M1NzdjZGE4NzMxMTJkNDg2MjgyLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/57c577cda873112d486282.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/57c577cda873112d486282.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80MmYxNThmODg3NDYzZTE4Njc1Nzc1LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/42f158f887463e18675775.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/42f158f887463e18675775.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kZmI1OGJiZDU0MDNlZDVkYjQxMjg2LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/dfb58bbd5403ed5db41286.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/dfb58bbd5403ed5db41286.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jY2Q3M2VkZWUxNjA1ODNlMDE3MTg3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/ccd73edee160583e017187.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/ccd73edee160583e017187.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85MWE1NTNhMzhjMWQzNTQzNmMwYzgzLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/91a553a38c1d35436c0c83.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/91a553a38c1d35436c0c83.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8xMjg5ZGY4ZjAwMzFiOTZmZTAyMDc5LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/1289df8f0031b96fe02079.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/1289df8f0031b96fe02079.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9hNDg4OGY4MDUwM2VlOTYwYjAyZjc0LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/a4888f80503ee960b02f74.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/a4888f80503ee960b02f74.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM5MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9lMzFmZGExNzA1YTliY2Y3ZTViODcwLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM5MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jMjBmMGEwOWQ1Yjc2Y2U5MzVhNjY3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM5MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yODcwNmY3OGIwYzYwOTk4NTBkNzY4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\'><img width=\"150\" height=\"115\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OWUwM2FlOGU1NTY1YzA4MDU0NzcyLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wN2M1NGVjZTkxNzAyODJlNzE2MTcxLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/07c54ece9170282e716171.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/07c54ece9170282e716171.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC84ZDc5Y2I3MTE0Y2ZhZDkxZjRkZTczLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/8d79cb7114cfad91f4de73.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/8d79cb7114cfad91f4de73.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80OTI5MDQyMmRiOWM2MmMyM2I4ZDEyNS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/49290422db9c62c23b8d125.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/49290422db9c62c23b8d125.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9mN2Y0YzJmYzFkNDJhNDFjZmQ1MzEzMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/f7f4c2fc1d42a41cfd53131.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/f7f4c2fc1d42a41cfd53131.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC82MmZiNzJmMGFkNGUxNDEwNGQ1ZjEyNy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/62fb72f0ad4e14104d5f127.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/62fb72f0ad4e14104d5f127.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OTVkZjk1NDI2ZWE5ZmI0YzZmYjExNi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/795df95426ea9fb4c6fb116.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/795df95426ea9fb4c6fb116.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8xYWIxZjRiNzJiMDk5MjU3Y2IxODk3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/1ab1f4b72b099257cb1897.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/1ab1f4b72b099257cb1897.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jNTQ2OTM0ZTRjZjBmNWFlYWNlMTEwMC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c546934e4cf0f5aeace1100.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c546934e4cf0f5aeace1100.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80NDgwYjQ4OTZiMzdkMjY5OGIyNjc3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4480b4896b37d2698b2677.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4480b4896b37d2698b2677.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzOSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iNDRjMTE0NGNlZmE3N2E0MmVlYjEwNi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b44c1144cefa77a42eeb106.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b44c1144cefa77a42eeb106.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzNSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81NmM5ZjhjMjI3N2M5ZTIyYzc2ZDk4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/56c9f8c2277c9e22c76d98.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/56c9f8c2277c9e22c76d98.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzNiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80ZGM2Y2VjZjExNzFhODJmZjE2MDEwMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4dc6cecf1171a82ff160101.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4dc6cecf1171a82ff160101.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>','Gallery','','inherit','closed','closed','','2126-revision-v1','','','2024-10-28 02:25:36','2024-10-28 02:25:36','',2126,'http://fe2tech.com/?p=2422',0,'revision','',0),(2425,1,'2024-10-28 02:39:19','2024-10-28 02:39:19','About us\n	    <h3>\n        We satisfy you with innovative ideas and quality work.    </h3>\n		<p>At vero eos et accusamus et iusto odio digni goikussimos ducimus qui to bonfoeblanditiis praese. Ntium voluum deleniti.</p><p>We exceed expectations through innovative ideas and exceptional craftsmanship.</p>		\n													<img width=\"59\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png\" alt=\"\" />													\n	    <h3>\n        Time manage    </h3>\n		<p>Efficiently organizing tasks to maximize productivity and meet deadlines.</p>		\n													<img width=\"55\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-02.png\" alt=\"\" />													\n	    <h3>\n        Fulfill target    </h3>\n		<p>Achieving goals with precision and commitment, ensuring success.</p>		\n    <img width=\"369\" height=\"382\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-01.jpg\" alt=\"\" />		\n            <img width=\"111\" height=\"85\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/signature1.png\" alt=\"\" />\n        <h3>Hanley Robin</h3>\n        (Chairman and founder)\n            Want to know more about us?\n            Just download brochure...\n            <a href=\"#\">\n                                                                    Download Brochure            </a>\n			Company history\n	    <h3>\n        Fe2tech is a professional builder company    </h3>\n		<p>Fe2tech is a leading company in building and manufacturing high-quality mechanical solutions.</p>		\n			Start		\n								<h3>hihi</h3>\n								hihi','About','','inherit','closed','closed','','26-revision-v1','','','2024-10-28 02:39:19','2024-10-28 02:39:19','',26,'http://fe2tech.com/?p=2425',0,'revision','',0),(2426,1,'2024-10-28 02:39:19','2024-10-28 02:39:19','About us\n	    <h3>\n        We satisfy you with innovative ideas and quality work.    </h3>\n		<p>At vero eos et accusamus et iusto odio digni goikussimos ducimus qui to bonfoeblanditiis praese. Ntium voluum deleniti.</p><p>We exceed expectations through innovative ideas and exceptional craftsmanship.</p>		\n													<img width=\"59\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png\" alt=\"\" />													\n	    <h3>\n        Time manage    </h3>\n		<p>Efficiently organizing tasks to maximize productivity and meet deadlines.</p>		\n													<img width=\"55\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-02.png\" alt=\"\" />													\n	    <h3>\n        Fulfill target    </h3>\n		<p>Achieving goals with precision and commitment, ensuring success.</p>		\n    <img width=\"369\" height=\"382\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-01.jpg\" alt=\"\" />		\n            <img width=\"111\" height=\"85\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/signature1.png\" alt=\"\" />\n        <h3>Hanley Robin</h3>\n        (Chairman and founder)\n            Want to know more about us?\n            Just download brochure...\n            <a href=\"#\">\n                                                                    Download Brochure            </a>\n			Company history\n	    <h3>\n        Fe2tech is a professional builder company    </h3>\n		<p>Fe2tech is a leading company in building and manufacturing high-quality mechanical solutions.</p>		\n			Start		\n								<h3>hihi</h3>\n								hihi','About','','inherit','closed','closed','','26-revision-v1','','','2024-10-28 02:39:19','2024-10-28 02:39:19','',26,'http://fe2tech.com/?p=2426',0,'revision','',0),(2427,1,'2024-10-28 02:39:20','2024-10-28 02:39:20','About us\n	    <h3>\n        We satisfy you with innovative ideas and quality work.    </h3>\n		<p>We exceed expectations through innovative ideas and exceptional craftsmanship.</p>		\n													<img width=\"59\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png\" alt=\"\" />													\n	    <h3>\n        Time manage    </h3>\n		<p>Efficiently organizing tasks to maximize productivity and meet deadlines.</p>		\n													<img width=\"55\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-02.png\" alt=\"\" />													\n	    <h3>\n        Fulfill target    </h3>\n		<p>Achieving goals with precision and commitment, ensuring success.</p>		\n    <img width=\"369\" height=\"382\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-01.jpg\" alt=\"\" />		\n            <img width=\"111\" height=\"85\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/signature1.png\" alt=\"\" />\n        <h3>Hanley Robin</h3>\n        (Chairman and founder)\n            Want to know more about us?\n            Just download brochure...\n            <a href=\"#\">\n                                                                    Download Brochure            </a>\n			Company history\n	    <h3>\n        Far East High Tech is a professional builder company    </h3>\n		<p>Far East High Tech is a leading company in building and manufacturing high-quality mechanical solutions.</p>		\n			Start		\n								<h3>hihi</h3>\n								hihi','About','','inherit','closed','closed','','26-revision-v1','','','2024-10-28 02:39:20','2024-10-28 02:39:20','',26,'http://fe2tech.com/?p=2427',0,'revision','',0),(2428,1,'2024-10-28 02:41:07','2024-10-28 02:41:07','About us\n	    <h3>\n        We satisfy you with innovative ideas and quality work.    </h3>\n		<p>We exceed expectations through innovative ideas and exceptional craftsmanship.</p>		\n													<img width=\"59\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png\" alt=\"\" />													\n	    <h3>\n        Time manage    </h3>\n		<p>Efficiently organizing tasks to maximize productivity and meet deadlines.</p>		\n													<img width=\"55\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-02.png\" alt=\"\" />													\n	    <h3>\n        Fulfill target    </h3>\n		<p>Achieving goals with precision and commitment, ensuring success.</p>		\n    <img width=\"369\" height=\"382\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-01.jpg\" alt=\"\" />		\n            <img width=\"111\" height=\"85\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/signature1.png\" alt=\"\" />\n        <h3>Hanley Robin</h3>\n        (Chairman and founder)\n            Want to know more about us?\n            Just download brochure...\n            <a href=\"#\">\n                                                                    Download Brochure            </a>\n			Company history\n	    <h3>\n        Far East High Tech is a professional builder company    </h3>\n		<p>Far East High Tech is a leading company in building and manufacturing high-quality mechanical solutions.</p>		\n			Start		\n								<h3>hihi</h3>\n								hihi','About','','inherit','closed','closed','','26-revision-v1','','','2024-10-28 02:41:07','2024-10-28 02:41:07','',26,'http://fe2tech.com/?p=2428',0,'revision','',0),(2429,1,'2024-10-28 02:41:08','2024-10-28 02:41:08','About us\n	    <h3>\n        We satisfy you with innovative ideas and quality work.    </h3>\n		<p>We exceed expectations through innovative ideas and exceptional craftsmanship.</p>		\n													<img width=\"59\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png\" alt=\"\" />													\n	    <h3>\n        Time manage    </h3>\n		<p>Efficiently organizing tasks to maximize productivity and meet deadlines.</p>		\n													<img width=\"55\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-02.png\" alt=\"\" />													\n	    <h3>\n        Fulfill target    </h3>\n		<p>Achieving goals with precision and commitment, ensuring success.</p>		\n    <img width=\"369\" height=\"382\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-01.jpg\" alt=\"\" />		\n            <img width=\"111\" height=\"85\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/signature1.png\" alt=\"\" />\n        <h3>Hanley Robin</h3>\n        (Chairman and founder)\n            Want to know more about us?\n            Just download brochure...\n            <a href=\"#\">\n                                                                    Download Brochure            </a>\n			Company history\n	    <h3>\n        Far East High Tech is a professional builder company    </h3>\n		<p>Far East High Tech is a leading company in building and manufacturing high-quality mechanical solutions.</p>		\n			Start		\n								<h3>hihi</h3>\n								hihi','About','','inherit','closed','closed','','26-revision-v1','','','2024-10-28 02:41:08','2024-10-28 02:41:08','',26,'http://fe2tech.com/?p=2429',0,'revision','',0),(2430,1,'2024-10-28 02:41:08','2024-10-28 02:41:08','About us\n	    <h3>\n        We satisfy you with innovative ideas and quality work.    </h3>\n		<p>We exceed expectations through innovative ideas and exceptional craftsmanship.</p>		\n													<img width=\"59\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png\" alt=\"\" />													\n	    <h3>\n        Time manage    </h3>\n		<p>Efficiently organizing tasks to maximize productivity and meet deadlines.</p>		\n													<img width=\"55\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-02.png\" alt=\"\" />													\n	    <h3>\n        Fulfill target    </h3>\n		<p>Achieving goals with precision and commitment, ensuring success.</p>		\n    <img width=\"369\" height=\"382\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-01.jpg\" alt=\"\" />		\n            <img width=\"111\" height=\"85\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/signature1.png\" alt=\"\" />\n        <h3>Hanley Robin</h3>\n        (Chairman and founder)\n            Want to know more about us?\n            Just download brochure...\n            <a href=\"#\">\n                                                                    Download Brochure            </a>\n			Company history\n	    <h3>\n        Far East High Tech is a professional builder company    </h3>\n		<p>Far East High Tech is a leading company in building and manufacturing high-quality mechanical solutions.</p>		\n			Start		\n								<h3>2nd Feb, 2018</h3>\n								Exhibition Planning &amp; Exhibition Management\n								<h3>12th Jan, 2018</h3>\n								Establishment of Constrio\n								<h3>8th Jul, 2018</h3>\n								Registered as a construction company','About','','inherit','closed','closed','','26-revision-v1','','','2024-10-28 02:41:08','2024-10-28 02:41:08','',26,'http://fe2tech.com/?p=2430',0,'revision','',0),(2432,1,'2024-10-28 02:45:46','2024-10-28 02:45:46','<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n			Contact us\n	    <h3>\n        Feel free to contact us to solve any problem!    </h3>\n                        <img width=\"55\" height=\"65\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/info-icon-01.png\" alt=\"\" loading=\"lazy\" />                    \n                    <h3>Our head office address:</h3>\n                       3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia.                    \n                        <img width=\"66\" height=\"66\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/info-icon-02.png\" alt=\"\" loading=\"lazy\" />                    \n                    <h3>Call for help:</h3>\n                       (734) 697-2907<br />\n(843) 971-1906                    \n                        <img width=\"70\" height=\"68\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/info-icon-03.png\" alt=\"\" loading=\"lazy\" />                    \n                    <h3>Mail us for information:</h3>\n                       noreply@envato.com<br />\nnoreply@Constrio.com                    \n	    <h3>\n        Get in touch!    </h3>\n		At vero eos et accusamus et iusto odio digni goiku tori\nssimos ducimus qui blanditiis.		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ctthemes/cstri/wp-admin/admin-ajax.php#wpcf7-f91-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"91\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.6.4\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f91-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Name*\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail address*\" />\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send us now</button>\n</form>','Contact','','inherit','closed','closed','','24-revision-v1','','','2024-10-28 02:45:46','2024-10-28 02:45:46','',24,'http://fe2tech.com/?p=2432',0,'revision','',0),(2433,1,'2024-10-28 02:45:46','2024-10-28 02:45:46','<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n			Contact us\n	    <h3>\n        Feel free to contact us to solve any problem!    </h3>\n                        <img width=\"55\" height=\"65\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/info-icon-01.png\" alt=\"\" loading=\"lazy\" />                    \n                    <h3>Our head office address:</h3>\n                       3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia.                    \n                        <img width=\"66\" height=\"66\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/info-icon-02.png\" alt=\"\" loading=\"lazy\" />                    \n                    <h3>Call for help:</h3>\n                       (734) 697-2907<br />\n(843) 971-1906                    \n                        <img width=\"70\" height=\"68\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/info-icon-03.png\" alt=\"\" loading=\"lazy\" />                    \n                    <h3>Mail us for information:</h3>\n                       noreply@envato.com<br />\nnoreply@Constrio.com                    \n	    <h3>\n        Get in touch!    </h3>\n		At vero eos et accusamus et iusto odio digni goiku tori\nssimos ducimus qui blanditiis.		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ctthemes/cstri/wp-admin/admin-ajax.php#wpcf7-f91-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"91\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.6.4\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f91-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Name*\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail address*\" />\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send us now</button>\n</form>','Contact','','inherit','closed','closed','','24-revision-v1','','','2024-10-28 02:45:46','2024-10-28 02:45:46','',24,'http://fe2tech.com/?p=2433',0,'revision','',0),(2434,1,'2024-10-28 02:45:47','2024-10-28 02:45:47','<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20%C4%91%C6%B0%E1%BB%9Dng%20s%E1%BB%91%204%2C%20KP2%2C%20P.%20B%C3%ACnh%20Chi%E1%BB%83u%2C%20TP.%20Th%E1%BB%A7%20%C4%90%E1%BB%A9c%2C%20TPHCM&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n					aria-label=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n			></iframe>\n			Contact us\n	    <h3>\n        Feel free to contact us to solve any problem!    </h3>\n                        <img width=\"55\" height=\"65\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/info-icon-01.png\" alt=\"\" />                    \n                    <h3>Our head office address:</h3>\n                       43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM                    \n                        <img width=\"66\" height=\"66\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/info-icon-02.png\" alt=\"\" />                    \n                    <h3>Call for help:</h3>\n                       0968860386                    \n	    <h3>\n        Get in touch!    </h3>\n		At vero eos et accusamus et iusto odio digni goiku tori\nssimos ducimus qui blanditiis.		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f91-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"91\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f91-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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Name*\" value=\"\" type=\"text\" name=\"your-name\" />\n	</p>\n	<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail address*\" value=\"\" type=\"email\" name=\"your-email\" />\n	</p>\n	<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\" name=\"your-message\"></textarea>\n	</p>\n	<p><button type=\"submit\">Send us now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"45\"/></p>\n</form>','Contact','','inherit','closed','closed','','24-revision-v1','','','2024-10-28 02:45:47','2024-10-28 02:45:47','',24,'http://fe2tech.com/?p=2434',0,'revision','',0),(2435,1,'2024-10-28 02:46:37','2024-10-28 02:46:37','FAQ\n	    <h3>\n        You can learn more from our asked questions    </h3>\n		At vero eos et accusamus et iusto odio digni goiku\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. 		\n                    <a>What should I include in my personal statement?</a>\n                Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiusmod tempor incididunt</u> ut labore.\n                    <a>Will membership plans be charged automatically?</a>\n                Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiusmod tempor incididunt</u> ut labore.\n                    <a>How can I make a change to my application?</a>\n                Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiusmod tempor incididunt</u> ut labore.\n                    <a>Where can I find out about funding?</a>\n                Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiusmod tempor incididunt</u> ut labore.\n                    <a>What will happen when I’ve sent my application?</a>\n                Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiusmod tempor incididunt</u> ut labore.\n                    <a>Can I get a free trial before I purchase?</a>\n                Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiusmod tempor incididunt</u> ut labore.\n	    <h3>\n        Have any other questions?    </h3>\n		At vero eos et accusamus et iusto odio digni goiku tori\nssimos ducimus qui blanditiis.		\n<form action=\"/ctthemes/cstri/wp-admin/admin-ajax.php#wpcf7-f308-o1\" method=\"post\" novalidate=\"novalidate\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"308\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.1.4\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f308-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Name*\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail address*\" />\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Ask question...\"></textarea>\n<button type=\"submit\">Send us now</button>\n</form>','FAQ','','inherit','closed','closed','','30-revision-v1','','','2024-10-28 02:46:37','2024-10-28 02:46:37','',30,'http://fe2tech.com/?p=2435',0,'revision','',0),(2436,1,'2024-10-28 02:47:04','2024-10-28 02:47:04','Testimonials\n	    <h3>\n        We will satisfy you by our work ideas    </h3>\n		At vero eos et accusamus et iusto odio digni goiku\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. 		\n                                <img src=\"https://fe2tech.com/wp-content/uploads/2019/11/testimonial-01.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-01\" title=\"testimonial-01\" />                                <i>”</i>\n                            Lorem Ipsum available, but the majority have to sufferrer tobe alterati on in som. It is a long to be established.\n                            <h3>    \n                                Adam Chuhan                            </h3>\n                            Web designer\n                                <img src=\"https://fe2tech.com/wp-content/uploads/2019/11/testimonial-02.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-02\" title=\"testimonial-02\" />                                <i>”</i>\n                            Lorem Ipsum available, but the majority have to sufferrer tobe alterati on in som. It is a long to be established.\n                            <h3>    \n                                Erika Johnson                            </h3>\n                            Web designer\n                                <img src=\"https://fe2tech.com/wp-content/uploads/2019/11/testimonial-03.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-03\" title=\"testimonial-03\" />                                <i>”</i>\n                            Lorem Ipsum available, but the majority have to sufferrer tobe alterati on in som. It is a long to be established.\n                            <h3>    \n                                Allie Johnson                            </h3>\n                            SEO manager\n                                <img src=\"https://fe2tech.com/wp-content/uploads/2019/11/testimonial-04.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-04\" title=\"testimonial-04\" />                                <i>”</i>\n                            Lorem Ipsum available, but the majority have to sufferrer tobe alterati on in som. It is a long to be established.\n                            <h3>    \n                                James Smith                            </h3>\n                            Web designer\n                                <img src=\"https://fe2tech.com/wp-content/uploads/2019/11/testimonial-05.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-05\" title=\"testimonial-05\" />                                <i>”</i>\n                            Lorem Ipsum available, but the majority have to sufferrer tobe alterati on in som. It is a long to be established.\n                            <h3>    \n                                Sasha D Johnson                            </h3>\n                            SEO manager\n                                <img src=\"https://fe2tech.com/wp-content/uploads/2019/11/testimonial-06.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-06\" title=\"testimonial-06\" />                                <i>”</i>\n                            Lorem Ipsum available, but the majority have to sufferrer tobe alterati on in som. It is a long to be established.\n                            <h3>    \n                                Debra L Smith                            </h3>\n                            SEO manager','Testimonials','','inherit','closed','closed','','367-revision-v1','','','2024-10-28 02:47:04','2024-10-28 02:47:04','',367,'http://fe2tech.com/?p=2436',0,'revision','',0),(2437,1,'2024-10-28 02:47:57','2024-10-28 02:47:57','<a href=\"https://fe2tech.com/\">\n							<img width=\"1469\" height=\"1278\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/fe2tech.png\" alt=\"\" />								</a>\n			    <ul>\n                    <li>\n            	   Office: 43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM                \n           </li>\n                    <li>\n            	   Factory: 176/9 Nguyễn Thị Tươi, KP Tân Phước, P. Tân Bình, Dĩ An city, Bình Dương                \n           </li>\n                    <li>\n            	   0968860386                \n           </li>\n            </ul>\n		Open Hours:Mon - Sat: 8 am - 5 pm,<br/>\nSunday: CLOSED		\n    <h3>\n        Menu\n        <i></i>\n    </h3>\n        <ul id=\"menu-main-menu\"><li id=\"menu-item-1955\"><a href=\"https://fe2tech.com/\">Home</a></li>\n<li id=\"menu-item-2132\"><a href=\"https://fe2tech.com/gallery/\">Gallery</a></li>\n<li id=\"menu-item-2131\"><a href=\"https://fe2tech.com/services/\">Services</a></li>\n<li id=\"menu-item-1967\"><a href=\"https://fe2tech.com/team-partners/\">Team &amp; Partners</a></li>\n<li id=\"menu-item-1960\"><a href=\"https://fe2tech.com/about/\">About Us</a></li>\n</ul>    \n    <h3>\n        Newsletter\n        <i></i>\n    </h3>\n		Sign up for alerts, our latest blogs, thoughts, and insights.		\n        <form method=\"post\" action=\"https://fe2tech.com/wp-admin/admin-ajax.php?action=tnp&amp;na=s\" style=\"\">\n<input type=\"hidden\" name=\"nlang\" value=\"\">\n<label for=\"tnp-1\">Your mail address</label>\n<input type=\"email\" name=\"ne\" id=\"tnp-1\" value=\"\" placeholder=\"\" required>\n<input type=\"submit\" value=\"Subscribe\" style=\"\">\n</form>    \n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n		<p>Copyright @2024 Trifles. All Rights Reserved by Far East High Tech</p>','Footer','','inherit','closed','closed','','799-revision-v1','','','2024-10-28 02:47:57','2024-10-28 02:47:57','',799,'http://fe2tech.com/?p=2437',0,'revision','',0),(2438,1,'2024-10-28 02:59:38','2024-10-28 02:59:38','<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20%C4%91%C6%B0%E1%BB%9Dng%20s%E1%BB%91%204%2C%20KP2%2C%20P.%20B%C3%ACnh%20Chi%E1%BB%83u%2C%20TP.%20Th%E1%BB%A7%20%C4%90%E1%BB%A9c%2C%20TPHCM&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n					aria-label=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n			></iframe>\n			Contact us\n	    <h3>\n        Feel free to contact us to solve any problem!    </h3>\n                        <img width=\"55\" height=\"65\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/info-icon-01.png\" alt=\"\" />                    \n                    <h3>Our head office address:</h3>\n                       43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM                    \n                        <img width=\"66\" height=\"66\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/info-icon-02.png\" alt=\"\" />                    \n                    <h3>Call for help:</h3>\n                       0968860386                    \n	    <h3>\n        Get in touch!    </h3>\n		At vero eos et accusamus et iusto odio digni goiku tori\nssimos ducimus qui blanditiis.		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f91-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"91\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f91-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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Name*\" value=\"\" type=\"text\" name=\"your-name\" />\n	</p>\n	<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail address*\" value=\"\" type=\"email\" name=\"your-email\" />\n	</p>\n	<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\" name=\"your-message\"></textarea>\n	</p>\n	<p><button type=\"submit\">Send us now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"45\"/></p>\n</form>','Contact','','inherit','closed','closed','','24-revision-v1','','','2024-10-28 02:59:38','2024-10-28 02:59:38','',24,'http://fe2tech.com/?p=2438',0,'revision','',0),(2439,1,'2024-10-28 02:59:38','2024-10-28 02:59:38','<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20%C4%91%C6%B0%E1%BB%9Dng%20s%E1%BB%91%204%2C%20KP2%2C%20P.%20B%C3%ACnh%20Chi%E1%BB%83u%2C%20TP.%20Th%E1%BB%A7%20%C4%90%E1%BB%A9c%2C%20TPHCM&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n					aria-label=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n			></iframe>\n			Contact us\n	    <h3>\n        Feel free to contact us to solve any problem!    </h3>\n                        <img width=\"55\" height=\"65\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/info-icon-01.png\" alt=\"\" />                    \n                    <h3>Our head office address:</h3>\n                       43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM                    \n                        <img width=\"66\" height=\"66\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/info-icon-02.png\" alt=\"\" />                    \n                    <h3>Call for help:</h3>\n                       0968860386                    \n	    <h3>\n        Get in touch!    </h3>\n		At vero eos et accusamus et iusto odio digni goiku tori\nssimos ducimus qui blanditiis.		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f91-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"91\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f91-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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Name*\" value=\"\" type=\"text\" name=\"your-name\" />\n	</p>\n	<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail address*\" value=\"\" type=\"email\" name=\"your-email\" />\n	</p>\n	<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\" name=\"your-message\"></textarea>\n	</p>\n	<p><button type=\"submit\">Send us now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"45\"/></p>\n</form>','Contact','','inherit','closed','closed','','24-revision-v1','','','2024-10-28 02:59:38','2024-10-28 02:59:38','',24,'http://fe2tech.com/?p=2439',0,'revision','',0),(2440,1,'2024-10-28 02:59:38','2024-10-28 02:59:38','<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20%C4%91%C6%B0%E1%BB%9Dng%20s%E1%BB%91%204%2C%20KP2%2C%20P.%20B%C3%ACnh%20Chi%E1%BB%83u%2C%20TP.%20Th%E1%BB%A7%20%C4%90%E1%BB%A9c%2C%20TPHCM&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n					aria-label=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n			></iframe>\n			Contact us\n	    <h3>\n        Feel free to contact us to solve any problem!    </h3>\n                        <img width=\"55\" height=\"65\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/info-icon-01.png\" alt=\"\" />                    \n                    <h3>Our head office address:</h3>\n                       43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM                    \n                        <img width=\"66\" height=\"66\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/info-icon-02.png\" alt=\"\" />                    \n                    <h3>Call for help:</h3>\n                       0968860386                    \n	    <h3>\n        Get in touch!    </h3>\n		<p>If you have questions or want to learn more about our services, don’t hesitate to reach out. We’re here to help!</p>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f91-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"91\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f91-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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Name*\" value=\"\" type=\"text\" name=\"your-name\" />\n	</p>\n	<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail address*\" value=\"\" type=\"email\" name=\"your-email\" />\n	</p>\n	<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\" name=\"your-message\"></textarea>\n	</p>\n	<p><button type=\"submit\">Send us now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"192\"/></p>\n</form>','Contact','','inherit','closed','closed','','24-revision-v1','','','2024-10-28 02:59:38','2024-10-28 02:59:38','',24,'http://fe2tech.com/?p=2440',0,'revision','',0),(2441,1,'2024-10-28 03:02:25','2024-10-28 03:02:25','<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20%C4%91%C6%B0%E1%BB%9Dng%20s%E1%BB%91%204%2C%20KP2%2C%20P.%20B%C3%ACnh%20Chi%E1%BB%83u%2C%20TP.%20Th%E1%BB%A7%20%C4%90%E1%BB%A9c%2C%20TPHCM&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n					aria-label=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n			></iframe>\n			Contact us\n	    <h3>\n        Feel free to contact us to solve any problem!    </h3>\n                        <img width=\"55\" height=\"65\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/info-icon-01.png\" alt=\"\" />                    \n                    <h3>Our head office address:</h3>\n                       43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM                    \n                        <img width=\"66\" height=\"66\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/info-icon-02.png\" alt=\"\" />                    \n                    <h3>Call for help:</h3>\n                       0968860386                    \n	    <h3>\n        Get in touch!    </h3>\n		<p>If you have questions or want to learn more about our services, don’t hesitate to reach out. We’re here to help!</p>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f91-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"91\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f91-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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Name*\" value=\"\" type=\"text\" name=\"your-name\" />\n	</p>\n	<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail address*\" value=\"\" type=\"email\" name=\"your-email\" />\n	</p>\n	<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\" name=\"your-message\"></textarea>\n	</p>\n	<p><button type=\"submit\">Send us now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"192\"/></p>\n</form>','Contact','','inherit','closed','closed','','24-revision-v1','','','2024-10-28 03:02:25','2024-10-28 03:02:25','',24,'http://fe2tech.com/?p=2441',0,'revision','',0),(2442,1,'2024-10-28 03:02:25','2024-10-28 03:02:25','<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20%C4%91%C6%B0%E1%BB%9Dng%20s%E1%BB%91%204%2C%20KP2%2C%20P.%20B%C3%ACnh%20Chi%E1%BB%83u%2C%20TP.%20Th%E1%BB%A7%20%C4%90%E1%BB%A9c%2C%20TPHCM&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n					aria-label=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n			></iframe>\n			Contact us\n	    <h3>\n        Feel free to contact us to solve any problem!    </h3>\n                        <img width=\"55\" height=\"65\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/info-icon-01.png\" alt=\"\" />                    \n                    <h3>Our head office address:</h3>\n                       43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM                    \n                        <img width=\"66\" height=\"66\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/info-icon-02.png\" alt=\"\" />                    \n                    <h3>Call for help:</h3>\n                       0968860386                    \n	    <h3>\n        Get in touch!    </h3>\n		<p>If you have questions or want to learn more about our services, don’t hesitate to reach out. We’re here to help!</p>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f91-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"91\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f91-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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Name*\" value=\"\" type=\"text\" name=\"your-name\" />\n	</p>\n	<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail address*\" value=\"\" type=\"email\" name=\"your-email\" />\n	</p>\n	<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\" name=\"your-message\"></textarea>\n	</p>\n	<p><button type=\"submit\">Send us now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"192\"/></p>\n</form>','Contact','','inherit','closed','closed','','24-revision-v1','','','2024-10-28 03:02:25','2024-10-28 03:02:25','',24,'http://fe2tech.com/?p=2442',0,'revision','',0),(2443,1,'2024-10-28 03:02:26','2024-10-28 03:02:26','<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20%C4%91%C6%B0%E1%BB%9Dng%20s%E1%BB%91%204%2C%20KP2%2C%20P.%20B%C3%ACnh%20Chi%E1%BB%83u%2C%20TP.%20Th%E1%BB%A7%20%C4%90%E1%BB%A9c%2C%20TPHCM&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n					aria-label=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n			></iframe>\n			Contact us\n	    <h3>\n        Feel free to contact us to solve any problem!    </h3>\n                        <img width=\"55\" height=\"65\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/info-icon-01.png\" alt=\"\" />                    \n                    <h3>Our head office address:</h3>\n                       43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM                    \n                        <img width=\"66\" height=\"66\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/info-icon-02.png\" alt=\"\" />                    \n                    <h3>Call for help:</h3>\n                       0968860386                    \n                        <img width=\"70\" height=\"68\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/info-icon-03.png\" alt=\"\" />                    \n                    <h3>Mail us for information:</h3>\n                       luutin.nmpco@gmail.com                    \n	    <h3>\n        Get in touch!    </h3>\n		<p>If you have questions or want to learn more about our services, don’t hesitate to reach out. We’re here to help!</p>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f91-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"91\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f91-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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Name*\" value=\"\" type=\"text\" name=\"your-name\" />\n	</p>\n	<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail address*\" value=\"\" type=\"email\" name=\"your-email\" />\n	</p>\n	<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\" name=\"your-message\"></textarea>\n	</p>\n	<p><button type=\"submit\">Send us now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_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>','Contact','','inherit','closed','closed','','24-revision-v1','','','2024-10-28 03:02:26','2024-10-28 03:02:26','',24,'http://fe2tech.com/?p=2443',0,'revision','',0),(2446,1,'2024-10-28 03:07:45','2024-10-28 03:07:45','','CNC','','inherit','open','closed','','cnc','','','2024-10-28 03:07:45','2024-10-28 03:07:45','',0,'http://fe2tech.com/wp-content/uploads/2024/10/CNC.jpg',0,'attachment','image/jpeg',0),(2449,1,'2024-10-28 03:09:45','2024-10-28 03:09:45','','Types-Of-Lathe-Operation','','inherit','open','closed','','types-of-lathe-operation','','','2024-10-28 03:09:45','2024-10-28 03:09:45','',0,'http://fe2tech.com/wp-content/uploads/2024/10/Types-Of-Lathe-Operation.webp',0,'attachment','image/webp',0),(2452,1,'2024-10-28 03:11:33','2024-10-28 03:11:33','','istockphoto-98459248-612x612','','inherit','open','closed','','istockphoto-98459248-612x612','','','2024-10-28 03:11:33','2024-10-28 03:11:33','',0,'http://fe2tech.com/wp-content/uploads/2024/10/istockphoto-98459248-612x612-1.jpg',0,'attachment','image/jpeg',0),(2454,1,'2024-10-28 03:16:16','2024-10-28 03:16:16','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We assess plans and provide tailored machinery.    </h3>\n		<p>Our company’s strength lies in our team, who have developed groundbreaking machinery and equipment.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"151\" height=\"50\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Awards Winner\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Satisfied Clients\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Active projects\n													<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_14479.png\" alt=\"\" />													\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n    	    	198 Award-winning machinery and equipment manufacturing company.\n	    <h3>\n        We help you build your vision with our machinery.    </h3>\n		<p>We approach every project with precision and value clear, simple communication.</p>		\n                                            Engineering\n                                        85%\n                                            Design\n                                        80%\n                                            Production\n                                        90%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/automated-welding-services/\">Automated Welding Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/automated-welding-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/hydraulic-press-services/\">Hydraulic Press Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/hydraulic-press-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/grinding-service/\">Grinding Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/grinding-service/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_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	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We help businesses thrive by providing the latest machinery technology.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20%C4%91%C6%B0%E1%BB%9Dng%20s%E1%BB%91%204%2C%20KP2%2C%20P.%20B%C3%ACnh%20Chi%E1%BB%83u%2C%20TP.%20Th%E1%BB%A7%20%C4%90%E1%BB%A9c%2C%20TPHCM&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n					aria-label=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Services\">Services</option><option value=\"Interior Design\">Interior Design</option><option value=\"Metal Roofing\">Metal Roofing</option><option value=\"House Remodel\">House Remodel</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><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=\"72\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-10-28 03:16:16','2024-10-28 03:16:16','',9,'http://fe2tech.com/?p=2454',0,'revision','',0),(2455,1,'2024-10-28 03:16:16','2024-10-28 03:16:16','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We assess plans and provide tailored machinery.    </h3>\n		<p>Our company’s strength lies in our team, who have developed groundbreaking machinery and equipment.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"151\" height=\"50\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Awards Winner\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Satisfied Clients\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Active projects\n													<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_14479.png\" alt=\"\" />													\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n    	    	198 Award-winning machinery and equipment manufacturing company.\n	    <h3>\n        We help you build your vision with our machinery.    </h3>\n		<p>We approach every project with precision and value clear, simple communication.</p>		\n                                            Engineering\n                                        85%\n                                            Design\n                                        80%\n                                            Production\n                                        90%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/automated-welding-services/\">Automated Welding Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/automated-welding-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/hydraulic-press-services/\">Hydraulic Press Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/hydraulic-press-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/grinding-service/\">Grinding Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/grinding-service/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_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	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We help businesses thrive by providing the latest machinery technology.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20%C4%91%C6%B0%E1%BB%9Dng%20s%E1%BB%91%204%2C%20KP2%2C%20P.%20B%C3%ACnh%20Chi%E1%BB%83u%2C%20TP.%20Th%E1%BB%A7%20%C4%90%E1%BB%A9c%2C%20TPHCM&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n					aria-label=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Services\">Services</option><option value=\"Interior Design\">Interior Design</option><option value=\"Metal Roofing\">Metal Roofing</option><option value=\"House Remodel\">House Remodel</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><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=\"72\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-10-28 03:16:16','2024-10-28 03:16:16','',9,'http://fe2tech.com/?p=2455',0,'revision','',0),(2456,1,'2024-10-28 03:16:16','2024-10-28 03:16:16','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We assess plans and provide tailored machinery.    </h3>\n		<p>Our company’s strength lies in our team, who have developed groundbreaking machinery and equipment.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"151\" height=\"50\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Awards Winner\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Satisfied Clients\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Active projects\n													<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_14479.png\" alt=\"\" />													\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n    	    	198 Award-winning machinery and equipment manufacturing company.\n	    <h3>\n        We help you build your vision with our machinery.    </h3>\n		<p>We approach every project with precision and value clear, simple communication.</p>		\n                                            Engineering\n                                        85%\n                                            Design\n                                        80%\n                                            Production\n                                        90%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/precision-measurement-services/\">Precision Measurement Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/precision-measurement-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/planing-service/\">Planing Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/planing-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Turning and Milling Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"130\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We help businesses thrive by providing the latest machinery technology.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20%C4%91%C6%B0%E1%BB%9Dng%20s%E1%BB%91%204%2C%20KP2%2C%20P.%20B%C3%ACnh%20Chi%E1%BB%83u%2C%20TP.%20Th%E1%BB%A7%20%C4%90%E1%BB%A9c%2C%20TPHCM&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n					aria-label=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Services\">Services</option><option value=\"Interior Design\">Interior Design</option><option value=\"Metal Roofing\">Metal Roofing</option><option value=\"House Remodel\">House Remodel</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><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=\"8\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-10-28 03:16:16','2024-10-28 03:16:16','',9,'http://fe2tech.com/?p=2456',0,'revision','',0),(2457,1,'2024-10-28 03:39:15','2024-10-28 03:39:15','<a href=\"https://fe2tech.com/\">\n							<img width=\"1469\" height=\"1278\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/fe2tech.png\" alt=\"\" />								</a>\n			    <ul>\n                    <li>\n            	   Office: 43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM                \n           </li>\n                    <li>\n            	   Factory: 176/9 Nguyễn Thị Tươi, KP Tân Phước, P. Tân Bình, Dĩ An city, Bình Dương                \n           </li>\n                    <li>\n            	   0968860386                \n           </li>\n            </ul>\n		Open Hours:Mon - Sat: 8 am - 5 pm,<br/>\nSunday: CLOSED		\n    <h3>\n        Menu\n        <i></i>\n    </h3>\n        <ul id=\"menu-main-menu\"><li id=\"menu-item-1955\"><a href=\"https://fe2tech.com/\">Home</a></li>\n<li id=\"menu-item-2132\"><a href=\"https://fe2tech.com/gallery/\">Gallery</a></li>\n<li id=\"menu-item-2131\"><a href=\"https://fe2tech.com/services/\">Services</a></li>\n<li id=\"menu-item-1967\"><a href=\"https://fe2tech.com/team-partners/\">Team &amp; Partners</a></li>\n<li id=\"menu-item-1960\"><a href=\"https://fe2tech.com/about/\">About Us</a></li>\n</ul>    \n    <h3>\n        Newsletter\n        <i></i>\n    </h3>\n		Sign up for alerts, our latest blogs, thoughts, and insights.		\n        <form method=\"post\" action=\"https://fe2tech.com/wp-admin/admin-ajax.php?action=tnp&amp;na=s\" style=\"\">\n<input type=\"hidden\" name=\"nlang\" value=\"\">\n<label for=\"tnp-1\">Your mail address</label>\n<input type=\"email\" name=\"ne\" id=\"tnp-1\" value=\"\" placeholder=\"\" required>\n<input type=\"submit\" value=\"Subscribe\" style=\"\">\n</form>    \n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n		<p>Copyright @2024 Trifles. All Rights Reserved by Far East High Tech</p>','Footer','','inherit','closed','closed','','799-revision-v1','','','2024-10-28 03:39:15','2024-10-28 03:39:15','',799,'http://fe2tech.com/?p=2457',0,'revision','',0),(2458,1,'2024-10-28 04:15:35','2024-10-28 04:15:35','<a href=\"https://fe2tech.com/\">\n							<img width=\"1469\" height=\"1278\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/fe2tech.png\" alt=\"\" />								</a>\n			    <ul>\n                    <li>\n            	   Office: 43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM                \n           </li>\n                    <li>\n            	   Factory: 176/9 Nguyễn Thị Tươi, KP Tân Phước, P. Tân Bình, Dĩ An city, Bình Dương                \n           </li>\n                    <li>\n            	   0968860386                \n           </li>\n            </ul>\n    <h3>\n        Menu\n        <i></i>\n    </h3>\n        <ul id=\"menu-main-menu\"><li id=\"menu-item-1955\"><a href=\"https://fe2tech.com/\">Home</a></li>\n<li id=\"menu-item-2132\"><a href=\"https://fe2tech.com/gallery/\">Gallery</a></li>\n<li id=\"menu-item-2131\"><a href=\"https://fe2tech.com/services/\">Services</a></li>\n<li id=\"menu-item-1967\"><a href=\"https://fe2tech.com/team-partners/\">Team &amp; Partners</a></li>\n<li id=\"menu-item-1960\"><a href=\"https://fe2tech.com/about/\">About Us</a></li>\n</ul>    \n    <h3>\n        Open Hours:\n        <i></i>\n    </h3>\n		Mon - Sat: 8 am - 5 pm,<br/>\nSunday: CLOSED		\n    <h3>\n        Newsletter\n        <i></i>\n    </h3>\n		Sign up for alerts, our latest blogs, thoughts, and insights.		\n        <form method=\"post\" action=\"https://fe2tech.com/wp-admin/admin-ajax.php?action=tnp&amp;na=s\" style=\"\">\n<input type=\"hidden\" name=\"nlang\" value=\"\">\n<label for=\"tnp-1\">Your mail address</label>\n<input type=\"email\" name=\"ne\" id=\"tnp-1\" value=\"\" placeholder=\"\" required>\n<input type=\"submit\" value=\"Subscribe\" style=\"\">\n</form>    \n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n		<p>Copyright @2024 Trifles. All Rights Reserved by Far East High Tech</p>','Footer','','inherit','closed','closed','','799-revision-v1','','','2024-10-28 04:15:35','2024-10-28 04:15:35','',799,'http://fe2tech.com/?p=2458',0,'revision','',0),(2459,1,'2024-10-28 04:16:05','2024-10-28 04:16:05','<a href=\"https://fe2tech.com/\">\n							<img width=\"1469\" height=\"1278\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/fe2tech.png\" alt=\"\" />								</a>\n			    <ul>\n                    <li>\n            	   Office: 43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM                \n           </li>\n                    <li>\n            	   Factory: 176/9 Nguyễn Thị Tươi, KP Tân Phước, P. Tân Bình, Dĩ An city, Bình Dương                \n           </li>\n                    <li>\n            	   0968860386                \n           </li>\n            </ul>\n    <h3>\n        Menu\n        <i></i>\n    </h3>\n        <ul id=\"menu-main-menu\"><li id=\"menu-item-1955\"><a href=\"https://fe2tech.com/\">Home</a></li>\n<li id=\"menu-item-2132\"><a href=\"https://fe2tech.com/gallery/\">Gallery</a></li>\n<li id=\"menu-item-2131\"><a href=\"https://fe2tech.com/services/\">Services</a></li>\n<li id=\"menu-item-1967\"><a href=\"https://fe2tech.com/team-partners/\">Team &amp; Partners</a></li>\n<li id=\"menu-item-1960\"><a href=\"https://fe2tech.com/about/\">About Us</a></li>\n</ul>    \n    <h3>\n        Open Hours:\n        <i></i>\n    </h3>\n		Mon - Sat: 8 am - 5 pm,<br/>\nSunday: CLOSED		\n    <h3>\n        Newsletter\n        <i></i>\n    </h3>\n		Sign up for alerts, our latest blogs, thoughts, and insights.		\n        <form method=\"post\" action=\"https://fe2tech.com/wp-admin/admin-ajax.php?action=tnp&amp;na=s\" style=\"\">\n<input type=\"hidden\" name=\"nlang\" value=\"\">\n<label for=\"tnp-1\">Your mail address</label>\n<input type=\"email\" name=\"ne\" id=\"tnp-1\" value=\"\" placeholder=\"\" required>\n<input type=\"submit\" value=\"Subscribe\" style=\"\">\n</form>    \n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n		<p>Copyright @2024 Trifles. All Rights Reserved by Far East High Tech</p>','Footer','','inherit','closed','closed','','799-revision-v1','','','2024-10-28 04:16:05','2024-10-28 04:16:05','',799,'http://fe2tech.com/?p=2459',0,'revision','',0),(2460,1,'2024-10-28 04:17:27','2024-10-28 04:17:27','<a href=\"https://fe2tech.com/\">\n							<img width=\"1469\" height=\"1278\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/fe2tech.png\" alt=\"\" />								</a>\n			    <ul>\n                    <li>\n            	   Office: 43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM                \n           </li>\n                    <li>\n            	   Factory: 176/9 Nguyễn Thị Tươi, KP Tân Phước, P. Tân Bình, Dĩ An city, Bình Dương                \n           </li>\n                    <li>\n            	   0968860386                \n           </li>\n            </ul>\n    <h3>\n        Menu\n        <i></i>\n    </h3>\n        <ul id=\"menu-main-menu\"><li id=\"menu-item-1955\"><a href=\"https://fe2tech.com/\">Home</a></li>\n<li id=\"menu-item-2132\"><a href=\"https://fe2tech.com/gallery/\">Gallery</a></li>\n<li id=\"menu-item-2131\"><a href=\"https://fe2tech.com/services/\">Services</a></li>\n<li id=\"menu-item-1967\"><a href=\"https://fe2tech.com/team-partners/\">Team &amp; Partners</a></li>\n<li id=\"menu-item-1960\"><a href=\"https://fe2tech.com/about/\">About Us</a></li>\n</ul>    \n    <h3>\n        Open Hours:\n        <i></i>\n    </h3>\n		Mon - Sat: 8 am - 5 pm,<br/>\nSunday: CLOSED		\n    <h3>\n        Newsletter\n        <i></i>\n    </h3>\n		Sign up for alerts, our latest blogs, thoughts, and insights.		\n        <form method=\"post\" action=\"https://fe2tech.com/wp-admin/admin-ajax.php?action=tnp&amp;na=s\" style=\"\">\n<input type=\"hidden\" name=\"nlang\" value=\"\">\n<label for=\"tnp-1\">Your mail address</label>\n<input type=\"email\" name=\"ne\" id=\"tnp-1\" value=\"\" placeholder=\"\" required>\n<input type=\"submit\" value=\"Subscribe\" style=\"\">\n</form>    \n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n		<p>Copyright @2024 of Far East High Tech</p>','Footer','','inherit','closed','closed','','799-revision-v1','','','2024-10-28 04:17:27','2024-10-28 04:17:27','',799,'http://fe2tech.com/?p=2460',0,'revision','',0),(2461,1,'2024-10-28 04:18:53','2024-10-28 04:18:53','<a href=\"https://fe2tech.com/\">\n							<img width=\"1469\" height=\"1278\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/fe2tech.png\" alt=\"\" />								</a>\n			    <ul>\n                    <li>\n            	   Office: 43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM                \n           </li>\n                    <li>\n            	   Factory: 176/9 Nguyễn Thị Tươi, KP Tân Phước, P. Tân Bình, Dĩ An city, Bình Dương                \n           </li>\n                    <li>\n            	   0968860386                \n           </li>\n            </ul>\n    <h3>\n        Menu\n        <i></i>\n    </h3>\n        <ul id=\"menu-main-menu\"><li id=\"menu-item-1955\"><a href=\"https://fe2tech.com/\">Home</a></li>\n<li id=\"menu-item-2132\"><a href=\"https://fe2tech.com/gallery/\">Gallery</a></li>\n<li id=\"menu-item-2131\"><a href=\"https://fe2tech.com/services/\">Services</a></li>\n<li id=\"menu-item-1967\"><a href=\"https://fe2tech.com/team-partners/\">Team &amp; Partners</a></li>\n<li id=\"menu-item-1960\"><a href=\"https://fe2tech.com/about/\">About Us</a></li>\n</ul>    \n    <h3>\n        Open Hours\n        <i></i>\n    </h3>\n		Mon - Sat: 8 am - 5 pm,<br/>\nSunday: CLOSED		\n    <h3>\n        Newsletter\n        <i></i>\n    </h3>\n		Sign up for alerts, our latest blogs, thoughts, and insights.		\n        <form method=\"post\" action=\"https://fe2tech.com/wp-admin/admin-ajax.php?action=tnp&amp;na=s\" style=\"\">\n<input type=\"hidden\" name=\"nlang\" value=\"\">\n<label for=\"tnp-1\">Your mail address</label>\n<input type=\"email\" name=\"ne\" id=\"tnp-1\" value=\"\" placeholder=\"\" required>\n<input type=\"submit\" value=\"Subscribe\" style=\"\">\n</form>    \n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n		<p>Copyright @2024 of Far East High Tech</p>','Footer','','inherit','closed','closed','','799-revision-v1','','','2024-10-28 04:18:53','2024-10-28 04:18:53','',799,'http://fe2tech.com/?p=2461',0,'revision','',0),(2463,1,'2024-10-28 07:49:06','2024-10-28 07:49:06','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We assess plans and provide tailored machinery.    </h3>\n		<p>Our company’s strength lies in our team, who have developed groundbreaking machinery and equipment.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"151\" height=\"50\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Awards Winner\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Satisfied Clients\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Active projects\n													<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_14479.png\" alt=\"\" />													\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n    	    	198 Award-winning machinery and equipment manufacturing company.\n	    <h3>\n        We help you build your vision with our machinery.    </h3>\n		<p>We approach every project with precision and value clear, simple communication.</p>		\n                                            Engineering\n                                        85%\n                                            Design\n                                        80%\n                                            Production\n                                        90%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/precision-measurement-services/\">Precision Measurement Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/precision-measurement-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/planing-service/\">Planing Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/planing-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Turning and Milling Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"130\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We help businesses thrive by providing the latest machinery technology.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20%C4%91%C6%B0%E1%BB%9Dng%20s%E1%BB%91%204%2C%20KP2%2C%20P.%20B%C3%ACnh%20Chi%E1%BB%83u%2C%20TP.%20Th%E1%BB%A7%20%C4%90%E1%BB%A9c%2C%20TPHCM&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n					aria-label=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Services\">Services</option><option value=\"Interior Design\">Interior Design</option><option value=\"Metal Roofing\">Metal Roofing</option><option value=\"House Remodel\">House Remodel</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><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=\"8\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-10-28 07:49:06','2024-10-28 07:49:06','',9,'https://fe2tech.com/?p=2463',0,'revision','',0),(2464,1,'2024-10-28 07:49:07','2024-10-28 07:49:07','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We assess plans and provide tailored machinery.    </h3>\n		<p>Our company’s strength lies in our team, who have developed groundbreaking machinery and equipment.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"151\" height=\"50\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Awards Winner\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Satisfied Clients\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Active projects\n													<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_14479.png\" alt=\"\" />													\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n    	    	198 Award-winning machinery and equipment manufacturing company.\n	    <h3>\n        We help you build your vision with our machinery.    </h3>\n		<p>We approach every project with precision and value clear, simple communication.</p>		\n                                            Engineering\n                                        85%\n                                            Design\n                                        80%\n                                            Production\n                                        90%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/precision-measurement-services/\">Precision Measurement Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/precision-measurement-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/planing-service/\">Planing Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/planing-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Turning and Milling Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"130\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We help businesses thrive by providing the latest machinery technology.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20%C4%91%C6%B0%E1%BB%9Dng%20s%E1%BB%91%204%2C%20KP2%2C%20P.%20B%C3%ACnh%20Chi%E1%BB%83u%2C%20TP.%20Th%E1%BB%A7%20%C4%90%E1%BB%A9c%2C%20TPHCM&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n					aria-label=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o2\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Services\">Services</option><option value=\"Interior Design\">Interior Design</option><option value=\"Metal Roofing\">Metal Roofing</option><option value=\"House Remodel\">House Remodel</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><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=\"8\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-10-28 07:49:07','2024-10-28 07:49:07','',9,'https://fe2tech.com/?p=2464',0,'revision','',0),(2465,1,'2024-10-28 07:49:07','2024-10-28 07:49:07','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We assess plans and provide tailored machinery.    </h3>\n		<p>Our company’s strength lies in our team, who have developed groundbreaking machinery and equipment.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"151\" height=\"50\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Awards Winner\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Satisfied Clients\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Active projects\n													<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_14479.png\" alt=\"\" />													\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n    	    	198 Award-winning machinery and equipment manufacturing company.\n	    <h3>\n        We help you build your vision with our machinery.    </h3>\n		<p>We approach every project with precision and value clear, simple communication.</p>		\n                                            Engineering\n                                        85%\n                                            Design\n                                        80%\n                                            Production\n                                        90%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/precision-measurement-services/\">Precision Measurement Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/precision-measurement-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/planing-service/\">Planing Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/planing-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Turning and Milling Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"87\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We help businesses thrive by providing the latest machinery technology.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20%C4%91%C6%B0%E1%BB%9Dng%20s%E1%BB%91%204%2C%20KP2%2C%20P.%20B%C3%ACnh%20Chi%E1%BB%83u%2C%20TP.%20Th%E1%BB%A7%20%C4%90%E1%BB%A9c%2C%20TPHCM&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n					aria-label=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Services\">Services</option><option value=\"Interior Design\">Interior Design</option><option value=\"Metal Roofing\">Metal Roofing</option><option value=\"House Remodel\">House Remodel</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"108\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-10-28 07:49:07','2024-10-28 07:49:07','',9,'https://fe2tech.com/?p=2465',0,'revision','',0),(2466,1,'2024-10-28 07:49:57','2024-10-28 07:49:57','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We assess plans and provide tailored machinery.    </h3>\n		<p>Our company’s strength lies in our team, who have developed groundbreaking machinery and equipment.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"151\" height=\"50\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Awards Winner\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Satisfied Clients\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Active projects\n													<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_14479.png\" alt=\"\" />													\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n    	    	198 Award-winning machinery and equipment manufacturing company.\n	    <h3>\n        We help you build your vision with our machinery.    </h3>\n		<p>We approach every project with precision and value clear, simple communication.</p>		\n                                            Engineering\n                                        85%\n                                            Design\n                                        80%\n                                            Production\n                                        90%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/precision-measurement-services/\">Precision Measurement Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/precision-measurement-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/planing-service/\">Planing Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/planing-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Turning and Milling Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"87\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We help businesses thrive by providing the latest machinery technology.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20%C4%91%C6%B0%E1%BB%9Dng%20s%E1%BB%91%204%2C%20KP2%2C%20P.%20B%C3%ACnh%20Chi%E1%BB%83u%2C%20TP.%20Th%E1%BB%A7%20%C4%90%E1%BB%A9c%2C%20TPHCM&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n					aria-label=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Services\">Services</option><option value=\"Interior Design\">Interior Design</option><option value=\"Metal Roofing\">Metal Roofing</option><option value=\"House Remodel\">House Remodel</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"108\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-10-28 07:49:57','2024-10-28 07:49:57','',9,'https://fe2tech.com/?p=2466',0,'revision','',0),(2467,1,'2024-10-28 07:49:58','2024-10-28 07:49:58','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We assess plans and provide tailored machinery.    </h3>\n		<p>Our company’s strength lies in our team, who have developed groundbreaking machinery and equipment.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"151\" height=\"50\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Awards Winner\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Satisfied Clients\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Active projects\n													<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_14479.png\" alt=\"\" />													\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n    	    	198 Award-winning machinery and equipment manufacturing company.\n	    <h3>\n        We help you build your vision with our machinery.    </h3>\n		<p>We approach every project with precision and value clear, simple communication.</p>		\n                                            Engineering\n                                        85%\n                                            Design\n                                        80%\n                                            Production\n                                        90%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/precision-measurement-services/\">Precision Measurement Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/precision-measurement-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/planing-service/\">Planing Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/planing-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Turning and Milling Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"87\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We help businesses thrive by providing the latest machinery technology.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20%C4%91%C6%B0%E1%BB%9Dng%20s%E1%BB%91%204%2C%20KP2%2C%20P.%20B%C3%ACnh%20Chi%E1%BB%83u%2C%20TP.%20Th%E1%BB%A7%20%C4%90%E1%BB%A9c%2C%20TPHCM&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n					aria-label=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Services\">Services</option><option value=\"Interior Design\">Interior Design</option><option value=\"Metal Roofing\">Metal Roofing</option><option value=\"House Remodel\">House Remodel</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"108\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-10-28 07:49:58','2024-10-28 07:49:58','',9,'https://fe2tech.com/?p=2467',0,'revision','',0),(2468,1,'2024-10-28 07:49:58','2024-10-28 07:49:58','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We assess plans and provide tailored machinery.    </h3>\n		<p>Our company’s strength lies in our team, who have developed groundbreaking machinery and equipment.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"151\" height=\"50\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Awards Winner\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Satisfied Clients\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Active projects\n													<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_14479.png\" alt=\"\" />													\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n    	    	198 Award-winning machinery and equipment manufacturing company.\n	    <h3>\n        We help you build your vision with our machinery.    </h3>\n		<p>We approach every project with precision and value clear, simple communication.</p>		\n                                            Engineering\n                                        85%\n                                            Design\n                                        80%\n                                            Production\n                                        90%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/precision-measurement-services/\">Precision Measurement Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/precision-measurement-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/planing-service/\">Planing Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/planing-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Turning and Milling Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"22\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We help businesses thrive by providing the latest machinery technology.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20%C4%91%C6%B0%E1%BB%9Dng%20s%E1%BB%91%204%2C%20KP2%2C%20P.%20B%C3%ACnh%20Chi%E1%BB%83u%2C%20TP.%20Th%E1%BB%A7%20%C4%90%E1%BB%A9c%2C%20TPHCM&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n					aria-label=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Services\">Services</option><option value=\"Interior Design\">Interior Design</option><option value=\"Metal Roofing\">Metal Roofing</option><option value=\"House Remodel\">House Remodel</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"30\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-10-28 07:49:58','2024-10-28 07:49:58','',9,'https://fe2tech.com/?p=2468',0,'revision','',0),(2469,1,'2024-10-28 07:50:27','2024-10-28 07:50:27','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We assess plans and provide tailored machinery.    </h3>\n		<p>Our company’s strength lies in our team, who have developed groundbreaking machinery and equipment.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"151\" height=\"50\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Awards Winner\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Satisfied Clients\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Active projects\n													<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_14479.png\" alt=\"\" />													\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n    	    	198 Award-winning machinery and equipment manufacturing company.\n	    <h3>\n        We help you build your vision with our machinery.    </h3>\n		<p>We approach every project with precision and value clear, simple communication.</p>		\n                                            Engineering\n                                        85%\n                                            Design\n                                        80%\n                                            Production\n                                        90%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/precision-measurement-services/\">Precision Measurement Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/precision-measurement-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/planing-service/\">Planing Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/planing-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Turning and Milling Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"22\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We help businesses thrive by providing the latest machinery technology.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20%C4%91%C6%B0%E1%BB%9Dng%20s%E1%BB%91%204%2C%20KP2%2C%20P.%20B%C3%ACnh%20Chi%E1%BB%83u%2C%20TP.%20Th%E1%BB%A7%20%C4%90%E1%BB%A9c%2C%20TPHCM&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n					aria-label=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Services\">Services</option><option value=\"Interior Design\">Interior Design</option><option value=\"Metal Roofing\">Metal Roofing</option><option value=\"House Remodel\">House Remodel</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"30\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-10-28 07:50:27','2024-10-28 07:50:27','',9,'https://fe2tech.com/?p=2469',0,'revision','',0),(2470,1,'2024-10-28 07:50:28','2024-10-28 07:50:28','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We assess plans and provide tailored machinery.    </h3>\n		<p>Our company’s strength lies in our team, who have developed groundbreaking machinery and equipment.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"151\" height=\"50\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Awards Winner\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Satisfied Clients\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Active projects\n													<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_14479.png\" alt=\"\" />													\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n    	    	198 Award-winning machinery and equipment manufacturing company.\n	    <h3>\n        We help you build your vision with our machinery.    </h3>\n		<p>We approach every project with precision and value clear, simple communication.</p>		\n                                            Engineering\n                                        85%\n                                            Design\n                                        80%\n                                            Production\n                                        90%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/precision-measurement-services/\">Precision Measurement Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/precision-measurement-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/planing-service/\">Planing Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/planing-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Turning and Milling Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"22\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We help businesses thrive by providing the latest machinery technology.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20%C4%91%C6%B0%E1%BB%9Dng%20s%E1%BB%91%204%2C%20KP2%2C%20P.%20B%C3%ACnh%20Chi%E1%BB%83u%2C%20TP.%20Th%E1%BB%A7%20%C4%90%E1%BB%A9c%2C%20TPHCM&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n					aria-label=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Services\">Services</option><option value=\"Interior Design\">Interior Design</option><option value=\"Metal Roofing\">Metal Roofing</option><option value=\"House Remodel\">House Remodel</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"30\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-10-28 07:50:28','2024-10-28 07:50:28','',9,'https://fe2tech.com/?p=2470',0,'revision','',0),(2471,1,'2024-10-28 07:50:28','2024-10-28 07:50:28','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We assess plans and provide tailored machinery.    </h3>\n		<p>Our company’s strength lies in our team, who have developed groundbreaking machinery and equipment.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"151\" height=\"50\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Awards Winner\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Satisfied Clients\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Active projects\n													<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_14479.png\" alt=\"\" />													\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n    	    	198 Award-winning machinery and equipment manufacturing company.\n	    <h3>\n        We help you build your vision with our machinery.    </h3>\n		<p>We approach every project with precision and value clear, simple communication.</p>		\n                                            Engineering\n                                        85%\n                                            Design\n                                        80%\n                                            Production\n                                        90%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/precision-measurement-services/\">Precision Measurement Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/precision-measurement-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/planing-service/\">Planing Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/planing-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Turning and Milling Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"216\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We help businesses thrive by providing the latest machinery technology.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20%C4%91%C6%B0%E1%BB%9Dng%20s%E1%BB%91%204%2C%20KP2%2C%20P.%20B%C3%ACnh%20Chi%E1%BB%83u%2C%20TP.%20Th%E1%BB%A7%20%C4%90%E1%BB%A9c%2C%20TPHCM&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n					aria-label=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Services\">Services</option><option value=\"Interior Design\">Interior Design</option><option value=\"Metal Roofing\">Metal Roofing</option><option value=\"House Remodel\">House Remodel</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"147\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-10-28 07:50:28','2024-10-28 07:50:28','',9,'https://fe2tech.com/?p=2471',0,'revision','',0),(2472,1,'2024-10-28 07:56:39','2024-10-28 07:56:39','','free-character-illustration-download-in-svg-png-gif-file-formats--female-lady-woman-gee-me-pack-people-illustrations-2218178','','inherit','open','closed','','free-character-illustration-download-in-svg-png-gif-file-formats-female-lady-woman-gee-me-pack-people-illustrations-2218178','','','2024-10-28 07:56:39','2024-10-28 07:56:39','',28,'https://fe2tech.com/wp-content/uploads/2024/10/free-character-illustration-download-in-svg-png-gif-file-formats-female-lady-woman-gee-me-pack-people-illustrations-2218178.webp',0,'attachment','image/webp',0),(2473,1,'2024-10-28 07:59:22','2024-10-28 07:59:22','','2218144','','inherit','open','closed','','2218144','','','2024-10-28 07:59:22','2024-10-28 07:59:22','',28,'https://fe2tech.com/wp-content/uploads/2024/10/2218144.webp',0,'attachment','image/webp',0),(2474,1,'2024-10-28 08:01:24','2024-10-28 08:01:24','','2218222','','inherit','open','closed','','2218222','','','2024-10-28 08:01:24','2024-10-28 08:01:24','',28,'https://fe2tech.com/wp-content/uploads/2024/10/2218222.webp',0,'attachment','image/webp',0),(2476,1,'2024-10-28 08:02:30','2024-10-28 08:02:30','','2218208','','inherit','open','closed','','2218208','','','2024-10-28 08:02:30','2024-10-28 08:02:30','',28,'https://fe2tech.com/wp-content/uploads/2024/10/2218208.webp',0,'attachment','image/webp',0),(2477,1,'2024-10-28 08:03:06','2024-10-28 08:03:06','','2218229','','inherit','open','closed','','2218229','','','2024-10-28 08:03:06','2024-10-28 08:03:06','',28,'https://fe2tech.com/wp-content/uploads/2024/10/2218229.webp',0,'attachment','image/webp',0),(2478,1,'2024-10-28 08:03:35','2024-10-28 08:03:35','','2218159','','inherit','open','closed','','2218159','','','2024-10-28 08:03:35','2024-10-28 08:03:35','',28,'https://fe2tech.com/wp-content/uploads/2024/10/2218159.webp',0,'attachment','image/webp',0),(2479,1,'2024-10-28 08:04:07','2024-10-28 08:04:07','Our Team\n	    <h3>\n        We will exceed your expectations with our innovative solutions.    </h3>\n		<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-01.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Ronald Dumple                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Ronald Dumple                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-02.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	James Smith                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        James Smith                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-03.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Charles F Johnson                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Charles F Johnson                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-04.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Jodi C Johnson                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Jodi C Johnson                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-05.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Debra L Smith                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Debra L Smith                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-06.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Mrditch  Hohan                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Mrditch  Hohan                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n			Our Partners\n	    <h3>\n        We will exceed your expectations with our innovative solutions as your trusted partner.    </h3>\n		<p>As your trusted partner, we deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a href=\"#\"><img width=\"169\" height=\"35\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"143\" height=\"42\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"166\" height=\"38\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"170\" height=\"35\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>','Team &amp; Partners','','inherit','closed','closed','','28-revision-v1','','','2024-10-28 08:04:07','2024-10-28 08:04:07','',28,'https://fe2tech.com/?p=2479',0,'revision','',0),(2480,1,'2024-10-28 08:04:07','2024-10-28 08:04:07','Our Team\n	    <h3>\n        We will exceed your expectations with our innovative solutions.    </h3>\n		<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-01.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Ronald Dumple                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Ronald Dumple                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-02.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	James Smith                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        James Smith                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-03.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Charles F Johnson                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Charles F Johnson                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-04.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Jodi C Johnson                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Jodi C Johnson                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-05.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Debra L Smith                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Debra L Smith                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"369\" height=\"391\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/team-06.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Mrditch  Hohan                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Mrditch  Hohan                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n			Our Partners\n	    <h3>\n        We will exceed your expectations with our innovative solutions as your trusted partner.    </h3>\n		<p>As your trusted partner, we deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a href=\"#\"><img width=\"169\" height=\"35\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"143\" height=\"42\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"166\" height=\"38\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"170\" height=\"35\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>','Team &amp; Partners','','inherit','closed','closed','','28-revision-v1','','','2024-10-28 08:04:07','2024-10-28 08:04:07','',28,'https://fe2tech.com/?p=2480',0,'revision','',0),(2481,1,'2024-10-28 08:04:07','2024-10-28 08:04:07','Our Team\n	    <h3>\n        We will exceed your expectations with our innovative solutions.    </h3>\n		<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a ><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218208.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Ronald Dumple                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a >\n                                        Ronald Dumple                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/free-character-illustration-download-in-svg-png-gif-file-formats-female-lady-woman-gee-me-pack-people-illustrations-2218178.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	James Smith                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        James Smith                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218144.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Charles F Johnson                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Charles F Johnson                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218222.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Jodi C Johnson                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Jodi C Johnson                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218229.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Debra L Smith                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Debra L Smith                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218159.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Mrditch  Hohan                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Mrditch  Hohan                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n			Our Partners\n	    <h3>\n        We will exceed your expectations with our innovative solutions as your trusted partner.    </h3>\n		<p>As your trusted partner, we deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a href=\"#\"><img width=\"169\" height=\"35\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"143\" height=\"42\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"166\" height=\"38\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"170\" height=\"35\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>','Team &amp; Partners','','inherit','closed','closed','','28-revision-v1','','','2024-10-28 08:04:07','2024-10-28 08:04:07','',28,'https://fe2tech.com/?p=2481',0,'revision','',0),(2482,1,'2024-10-28 08:09:37','2024-10-28 08:09:37','','yuwa-engineering','','inherit','open','closed','','yuwa-engineering','','','2024-10-28 08:09:37','2024-10-28 08:09:37','',28,'https://fe2tech.com/wp-content/uploads/2024/10/yuwa-engineering.jpg',0,'attachment','image/jpeg',0),(2483,1,'2024-10-28 08:09:38','2024-10-28 08:09:38','','komatsu-kogyo','','inherit','open','closed','','komatsu-kogyo','','','2024-10-28 08:09:38','2024-10-28 08:09:38','',28,'https://fe2tech.com/wp-content/uploads/2024/10/komatsu-kogyo.jpg',0,'attachment','image/jpeg',0),(2484,1,'2024-10-28 08:09:39','2024-10-28 08:09:39','','samsung','','inherit','open','closed','','samsung','','','2024-10-28 08:09:39','2024-10-28 08:09:39','',28,'https://fe2tech.com/wp-content/uploads/2024/10/samsung.jpg',0,'attachment','image/jpeg',0),(2485,1,'2024-10-28 08:09:40','2024-10-28 08:09:40','','kim-long-motors','','inherit','open','closed','','kim-long-motors','','','2024-10-28 08:09:40','2024-10-28 08:09:40','',28,'https://fe2tech.com/wp-content/uploads/2024/10/kim-long-motors.png',0,'attachment','image/png',0),(2486,1,'2024-10-28 08:09:42','2024-10-28 08:09:42','','yoshimoto-vietnam','','inherit','open','closed','','yoshimoto-vietnam','','','2024-10-28 08:09:42','2024-10-28 08:09:42','',28,'https://fe2tech.com/wp-content/uploads/2024/10/yoshimoto-vietnam.png',0,'attachment','image/png',0),(2487,1,'2024-10-28 08:11:29','2024-10-28 08:11:29','Our Team\n	    <h3>\n        We will exceed your expectations with our innovative solutions.    </h3>\n		<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a ><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218208.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Ronald Dumple                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a >\n                                        Ronald Dumple                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/free-character-illustration-download-in-svg-png-gif-file-formats-female-lady-woman-gee-me-pack-people-illustrations-2218178.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	James Smith                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        James Smith                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218144.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Charles F Johnson                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Charles F Johnson                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218222.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Jodi C Johnson                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Jodi C Johnson                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218229.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Debra L Smith                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Debra L Smith                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218159.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Mrditch  Hohan                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Mrditch  Hohan                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n			Our Partners\n	    <h3>\n        We will exceed your expectations with our innovative solutions as your trusted partner.    </h3>\n		<p>As your trusted partner, we deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a href=\"#\"><img width=\"169\" height=\"35\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"143\" height=\"42\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"166\" height=\"38\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"170\" height=\"35\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>','Team &amp; Partners','','inherit','closed','closed','','28-revision-v1','','','2024-10-28 08:11:29','2024-10-28 08:11:29','',28,'https://fe2tech.com/?p=2487',0,'revision','',0),(2488,1,'2024-10-28 08:11:29','2024-10-28 08:11:29','Our Team\n	    <h3>\n        We will exceed your expectations with our innovative solutions.    </h3>\n		<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a ><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218208.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Ronald Dumple                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a >\n                                        Ronald Dumple                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/free-character-illustration-download-in-svg-png-gif-file-formats-female-lady-woman-gee-me-pack-people-illustrations-2218178.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	James Smith                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        James Smith                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218144.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Charles F Johnson                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Charles F Johnson                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218222.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Jodi C Johnson                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Jodi C Johnson                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218229.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Debra L Smith                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Debra L Smith                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218159.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Mrditch  Hohan                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Mrditch  Hohan                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n			Our Partners\n	    <h3>\n        We will exceed your expectations with our innovative solutions as your trusted partner.    </h3>\n		<p>As your trusted partner, we deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a href=\"#\"><img width=\"169\" height=\"35\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"143\" height=\"42\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"166\" height=\"38\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"170\" height=\"35\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>','Team &amp; Partners','','inherit','closed','closed','','28-revision-v1','','','2024-10-28 08:11:29','2024-10-28 08:11:29','',28,'https://fe2tech.com/?p=2488',0,'revision','',0),(2489,1,'2024-10-28 08:11:30','2024-10-28 08:11:30','Our Team\n	    <h3>\n        We will exceed your expectations with our innovative solutions.    </h3>\n		<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a ><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218208.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Ronald Dumple                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a >\n                                        Ronald Dumple                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/free-character-illustration-download-in-svg-png-gif-file-formats-female-lady-woman-gee-me-pack-people-illustrations-2218178.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	James Smith                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        James Smith                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218144.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Charles F Johnson                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Charles F Johnson                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218222.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Jodi C Johnson                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Jodi C Johnson                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218229.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Debra L Smith                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Debra L Smith                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218159.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Mrditch  Hohan                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Mrditch  Hohan                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n			Our Partners\n	    <h3>\n        We will exceed your expectations with our innovative solutions as your trusted partner.    </h3>\n		<p>As your trusted partner, we deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a href=\"#\"><img width=\"246\" height=\"205\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yoshimoto-vietnam.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"1586\" height=\"1586\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/kim-long-motors.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"697\" height=\"232\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/samsung.jpg\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"900\" height=\"900\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/komatsu-kogyo.jpg\" alt=\"\" /></a>\n                                <a ><img width=\"256\" height=\"256\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yuwa-engineering.jpg\" alt=\"\" /></a>','Team &amp; Partners','','inherit','closed','closed','','28-revision-v1','','','2024-10-28 08:11:30','2024-10-28 08:11:30','',28,'https://fe2tech.com/?p=2489',0,'revision','',0),(2491,1,'2024-10-28 08:19:26','2024-10-28 08:19:26','Our Team\n	    <h3>\n        We will exceed your expectations with our innovative solutions.    </h3>\n		<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a ><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218208.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Ronald Dumple                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a >\n                                        Ronald Dumple                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/free-character-illustration-download-in-svg-png-gif-file-formats-female-lady-woman-gee-me-pack-people-illustrations-2218178.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	James Smith                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        James Smith                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218144.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Charles F Johnson                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Charles F Johnson                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218222.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Jodi C Johnson                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Jodi C Johnson                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218229.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Debra L Smith                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Debra L Smith                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218159.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Mrditch  Hohan                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Mrditch  Hohan                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n			Our Partners\n	    <h3>\n        We will exceed your expectations with our innovative solutions as your trusted partner.    </h3>\n		<p>As your trusted partner, we deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a href=\"#\"><img width=\"246\" height=\"205\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yoshimoto-vietnam.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"1586\" height=\"1586\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/kim-long-motors.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"697\" height=\"232\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/samsung.jpg\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"900\" height=\"900\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/komatsu-kogyo.jpg\" alt=\"\" /></a>\n                                <a ><img width=\"256\" height=\"256\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yuwa-engineering.jpg\" alt=\"\" /></a>','Team &amp; Partners','','inherit','closed','closed','','28-revision-v1','','','2024-10-28 08:19:26','2024-10-28 08:19:26','',28,'https://fe2tech.com/?p=2491',0,'revision','',0),(2492,1,'2024-10-28 08:19:27','2024-10-28 08:19:27','Our Team\n	    <h3>\n        We will exceed your expectations with our innovative solutions.    </h3>\n		<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a ><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218208.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Ronald Dumple                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a >\n                                        Ronald Dumple                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/free-character-illustration-download-in-svg-png-gif-file-formats-female-lady-woman-gee-me-pack-people-illustrations-2218178.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	James Smith                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        James Smith                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218144.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Charles F Johnson                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Charles F Johnson                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218222.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Jodi C Johnson                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Jodi C Johnson                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218229.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Debra L Smith                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Debra L Smith                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218159.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Mrditch  Hohan                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Mrditch  Hohan                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n			Our Partners\n	    <h3>\n        We will exceed your expectations with our innovative solutions as your trusted partner.    </h3>\n		<p>As your trusted partner, we deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a href=\"#\"><img width=\"246\" height=\"205\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yoshimoto-vietnam.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"1586\" height=\"1586\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/kim-long-motors.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"697\" height=\"232\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/samsung.jpg\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"900\" height=\"900\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/komatsu-kogyo.jpg\" alt=\"\" /></a>\n                                <a ><img width=\"256\" height=\"256\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yuwa-engineering.jpg\" alt=\"\" /></a>','Team &amp; Partners','','inherit','closed','closed','','28-revision-v1','','','2024-10-28 08:19:27','2024-10-28 08:19:27','',28,'https://fe2tech.com/?p=2492',0,'revision','',0),(2493,1,'2024-10-28 08:19:27','2024-10-28 08:19:27','Our Team\n	    <h3>\n        We will exceed your expectations with our innovative solutions.    </h3>\n		<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a ><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218208.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Ronald Dumple                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a >\n                                        Ronald Dumple                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/free-character-illustration-download-in-svg-png-gif-file-formats-female-lady-woman-gee-me-pack-people-illustrations-2218178.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	James Smith                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        James Smith                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218144.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Charles F Johnson                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Charles F Johnson                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218222.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Jodi C Johnson                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Jodi C Johnson                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218229.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Debra L Smith                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Debra L Smith                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218159.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Mrditch  Hohan                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Mrditch  Hohan                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n			Our Partners\n	    <h3>\n        We will exceed your expectations with our innovative solutions as your trusted partner.    </h3>\n		<p>As your trusted partner, we deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a href=\"https://peraichi.com/landing_pages/view/ysvnv/\"><img width=\"246\" height=\"205\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yoshimoto-vietnam.png\" alt=\"\" /></a>\n                                <a href=\"https://kimlongmotor.com.vn/\"><img width=\"1586\" height=\"1586\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/kim-long-motors.png\" alt=\"\" /></a>\n                                <a href=\"https://www.samsung.com/vn/\"><img width=\"697\" height=\"232\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/samsung.jpg\" alt=\"\" /></a>\n                                <a href=\"https://komaz.co.jp/english/\"><img width=\"900\" height=\"900\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/komatsu-kogyo.jpg\" alt=\"\" /></a>\n                                <a ><img width=\"256\" height=\"256\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yuwa-engineering.jpg\" alt=\"\" /></a>','Team &amp; Partners','','inherit','closed','closed','','28-revision-v1','','','2024-10-28 08:19:27','2024-10-28 08:19:27','',28,'https://fe2tech.com/?p=2493',0,'revision','',0),(2494,1,'2024-10-28 08:20:36','2024-10-28 08:20:36','Our Team\n	    <h3>\n        We will exceed your expectations with our innovative solutions.    </h3>\n		<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a ><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218208.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Ronald Dumple                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a >\n                                        Ronald Dumple                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/free-character-illustration-download-in-svg-png-gif-file-formats-female-lady-woman-gee-me-pack-people-illustrations-2218178.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	James Smith                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        James Smith                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218144.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Charles F Johnson                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Charles F Johnson                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218222.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Jodi C Johnson                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Jodi C Johnson                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218229.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Debra L Smith                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Debra L Smith                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218159.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Mrditch  Hohan                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Mrditch  Hohan                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n			Our Partners\n	    <h3>\n        We will exceed your expectations with our innovative solutions as your trusted partner.    </h3>\n		<p>As your trusted partner, we deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a href=\"https://peraichi.com/landing_pages/view/ysvnv/\"><img width=\"246\" height=\"205\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yoshimoto-vietnam.png\" alt=\"\" /></a>\n                                <a href=\"https://kimlongmotor.com.vn/\"><img width=\"1586\" height=\"1586\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/kim-long-motors.png\" alt=\"\" /></a>\n                                <a href=\"https://www.samsung.com/vn/\"><img width=\"697\" height=\"232\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/samsung.jpg\" alt=\"\" /></a>\n                                <a href=\"https://komaz.co.jp/english/\"><img width=\"900\" height=\"900\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/komatsu-kogyo.jpg\" alt=\"\" /></a>\n                                <a ><img width=\"256\" height=\"256\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yuwa-engineering.jpg\" alt=\"\" /></a>','Team &amp; Partners','','inherit','closed','closed','','28-revision-v1','','','2024-10-28 08:20:36','2024-10-28 08:20:36','',28,'https://fe2tech.com/?p=2494',0,'revision','',0),(2495,1,'2024-10-28 08:20:36','2024-10-28 08:20:36','Our Team\n	    <h3>\n        We will exceed your expectations with our innovative solutions.    </h3>\n		<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a ><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218208.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Ronald Dumple                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a >\n                                        Ronald Dumple                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/free-character-illustration-download-in-svg-png-gif-file-formats-female-lady-woman-gee-me-pack-people-illustrations-2218178.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	James Smith                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        James Smith                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218144.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Charles F Johnson                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Charles F Johnson                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218222.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Jodi C Johnson                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Jodi C Johnson                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218229.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Debra L Smith                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Debra L Smith                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218159.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Mrditch  Hohan                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Mrditch  Hohan                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n			Our Partners\n	    <h3>\n        We will exceed your expectations with our innovative solutions as your trusted partner.    </h3>\n		<p>As your trusted partner, we deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a href=\"https://peraichi.com/landing_pages/view/ysvnv/\"><img width=\"246\" height=\"205\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yoshimoto-vietnam.png\" alt=\"\" /></a>\n                                <a href=\"https://kimlongmotor.com.vn/\"><img width=\"1586\" height=\"1586\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/kim-long-motors.png\" alt=\"\" /></a>\n                                <a href=\"https://www.samsung.com/vn/\"><img width=\"697\" height=\"232\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/samsung.jpg\" alt=\"\" /></a>\n                                <a href=\"https://komaz.co.jp/english/\"><img width=\"900\" height=\"900\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/komatsu-kogyo.jpg\" alt=\"\" /></a>\n                                <a ><img width=\"256\" height=\"256\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yuwa-engineering.jpg\" alt=\"\" /></a>','Team &amp; Partners','','inherit','closed','closed','','28-revision-v1','','','2024-10-28 08:20:36','2024-10-28 08:20:36','',28,'https://fe2tech.com/?p=2495',0,'revision','',0),(2496,1,'2024-10-28 08:20:36','2024-10-28 08:20:36','Our Team\n	    <h3>\n        We will exceed your expectations with our innovative solutions.    </h3>\n		<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a ><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218208.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Ronald Dumple                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a >\n                                        Ronald Dumple                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/free-character-illustration-download-in-svg-png-gif-file-formats-female-lady-woman-gee-me-pack-people-illustrations-2218178.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	James Smith                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        James Smith                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218144.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Charles F Johnson                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Charles F Johnson                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218222.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Jodi C Johnson                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Jodi C Johnson                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218229.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Debra L Smith                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Debra L Smith                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218159.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Mrditch  Hohan                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Mrditch  Hohan                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n			Our Partners\n	    <h3>\n        We will exceed your expectations with our innovative solutions as your trusted partner.    </h3>\n		<p>As your trusted partner, we deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a href=\"https://www.yoshimoto-sangyo.co.jp/vn/\"><img width=\"246\" height=\"205\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yoshimoto-vietnam.png\" alt=\"\" /></a>\n                                <a href=\"https://kimlongmotor.com.vn/\"><img width=\"1586\" height=\"1586\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/kim-long-motors.png\" alt=\"\" /></a>\n                                <a href=\"https://www.samsung.com/vn/\"><img width=\"697\" height=\"232\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/samsung.jpg\" alt=\"\" /></a>\n                                <a href=\"https://komaz.co.jp/english/\"><img width=\"900\" height=\"900\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/komatsu-kogyo.jpg\" alt=\"\" /></a>\n                                <a ><img width=\"256\" height=\"256\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yuwa-engineering.jpg\" alt=\"\" /></a>','Team &amp; Partners','','inherit','closed','closed','','28-revision-v1','','','2024-10-28 08:20:36','2024-10-28 08:20:36','',28,'https://fe2tech.com/?p=2496',0,'revision','',0),(2497,1,'2024-10-28 08:21:53','2024-10-28 08:21:53','Our Team\n	    <h3>\n        We will exceed your expectations with our innovative solutions.    </h3>\n		<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a ><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218208.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Ronald Dumple                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a >\n                                        Ronald Dumple                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/free-character-illustration-download-in-svg-png-gif-file-formats-female-lady-woman-gee-me-pack-people-illustrations-2218178.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	James Smith                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        James Smith                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218144.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Charles F Johnson                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Charles F Johnson                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218222.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Jodi C Johnson                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Jodi C Johnson                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218229.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Debra L Smith                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Debra L Smith                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218159.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Mrditch  Hohan                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Mrditch  Hohan                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n			Our Partners\n	    <h3>\n        We will exceed your expectations with our innovative solutions as your trusted partner.    </h3>\n		<p>As your trusted partner, we deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a href=\"https://www.yoshimoto-sangyo.co.jp/vn/\"><img width=\"246\" height=\"205\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yoshimoto-vietnam.png\" alt=\"\" /></a>\n                                <a href=\"https://kimlongmotor.com.vn/\"><img width=\"1586\" height=\"1586\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/kim-long-motors.png\" alt=\"\" /></a>\n                                <a href=\"https://www.samsung.com/vn/\"><img width=\"697\" height=\"232\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/samsung.jpg\" alt=\"\" /></a>\n                                <a href=\"https://komaz.co.jp/english/\"><img width=\"900\" height=\"900\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/komatsu-kogyo.jpg\" alt=\"\" /></a>\n                                <a ><img width=\"256\" height=\"256\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yuwa-engineering.jpg\" alt=\"\" /></a>','Team &amp; Partners','','inherit','closed','closed','','28-revision-v1','','','2024-10-28 08:21:53','2024-10-28 08:21:53','',28,'https://fe2tech.com/?p=2497',0,'revision','',0),(2498,1,'2024-10-28 08:21:53','2024-10-28 08:21:53','Our Team\n	    <h3>\n        We will exceed your expectations with our innovative solutions.    </h3>\n		<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a ><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218208.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Ronald Dumple                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a >\n                                        Ronald Dumple                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/free-character-illustration-download-in-svg-png-gif-file-formats-female-lady-woman-gee-me-pack-people-illustrations-2218178.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	James Smith                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        James Smith                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218144.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Charles F Johnson                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Charles F Johnson                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218222.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Jodi C Johnson                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Jodi C Johnson                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218229.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Debra L Smith                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Debra L Smith                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218159.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Mrditch  Hohan                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Mrditch  Hohan                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n			Our Partners\n	    <h3>\n        We will exceed your expectations with our innovative solutions as your trusted partner.    </h3>\n		<p>As your trusted partner, we deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a href=\"https://www.yoshimoto-sangyo.co.jp/vn/\"><img width=\"246\" height=\"205\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yoshimoto-vietnam.png\" alt=\"\" /></a>\n                                <a href=\"https://kimlongmotor.com.vn/\"><img width=\"1586\" height=\"1586\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/kim-long-motors.png\" alt=\"\" /></a>\n                                <a href=\"https://www.samsung.com/vn/\"><img width=\"697\" height=\"232\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/samsung.jpg\" alt=\"\" /></a>\n                                <a href=\"https://komaz.co.jp/english/\"><img width=\"900\" height=\"900\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/komatsu-kogyo.jpg\" alt=\"\" /></a>\n                                <a ><img width=\"256\" height=\"256\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yuwa-engineering.jpg\" alt=\"\" /></a>','Team &amp; Partners','','inherit','closed','closed','','28-revision-v1','','','2024-10-28 08:21:53','2024-10-28 08:21:53','',28,'https://fe2tech.com/?p=2498',0,'revision','',0),(2499,1,'2024-10-28 08:21:53','2024-10-28 08:21:53','Our Team\n	    <h3>\n        We will exceed your expectations with our innovative solutions.    </h3>\n		<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a ><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218208.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Ronald Dumple                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a >\n                                        Ronald Dumple                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/free-character-illustration-download-in-svg-png-gif-file-formats-female-lady-woman-gee-me-pack-people-illustrations-2218178.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	James Smith                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        James Smith                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218144.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Charles F Johnson                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Charles F Johnson                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218222.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Jodi C Johnson                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Jodi C Johnson                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218229.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Debra L Smith                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Debra L Smith                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218159.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Mrditch  Hohan                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Mrditch  Hohan                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n			Our Partners\n	    <h3>\n        We will exceed your expectations with our innovative solutions as your trusted partner.    </h3>\n		<p>As your trusted partner, we deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a href=\"https://www.yoshimoto-sangyo.co.jp/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"246\" height=\"205\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yoshimoto-vietnam.png\" alt=\"\" /></a>\n                                <a href=\"https://kimlongmotor.com.vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"1586\" height=\"1586\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/kim-long-motors.png\" alt=\"\" /></a>\n                                <a href=\"https://www.samsung.com/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"697\" height=\"232\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/samsung.jpg\" alt=\"\" /></a>\n                                <a href=\"https://komaz.co.jp/english/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"900\" height=\"900\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/komatsu-kogyo.jpg\" alt=\"\" /></a>\n                                <a ><img width=\"256\" height=\"256\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yuwa-engineering.jpg\" alt=\"\" /></a>','Team &amp; Partners','','inherit','closed','closed','','28-revision-v1','','','2024-10-28 08:21:53','2024-10-28 08:21:53','',28,'https://fe2tech.com/?p=2499',0,'revision','',0),(2500,1,'2024-10-28 08:22:58','2024-10-28 08:22:58','<a href=\"https://fe2tech.com/\">\n							<img width=\"1469\" height=\"1278\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/fe2tech.png\" alt=\"\" />								</a>\n			    <ul>\n                    <li>\n            	   Office: 43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM                \n           </li>\n                    <li>\n            	   Factory: 176/9 Nguyễn Thị Tươi, KP Tân Phước, P. Tân Bình, Dĩ An city, Bình Dương                \n           </li>\n                    <li>\n            	   0968860386                \n           </li>\n            </ul>\n    <h3>\n        Menu\n        <i></i>\n    </h3>\n        <ul id=\"menu-main-menu\"><li id=\"menu-item-1955\"><a href=\"https://fe2tech.com/\">Home</a></li>\n<li id=\"menu-item-2132\"><a href=\"https://fe2tech.com/gallery/\">Gallery</a></li>\n<li id=\"menu-item-2131\"><a href=\"https://fe2tech.com/services/\">Services</a></li>\n<li id=\"menu-item-1967\"><a href=\"https://fe2tech.com/team-partners/\">Team &amp; Partners</a></li>\n<li id=\"menu-item-1960\"><a href=\"https://fe2tech.com/about/\">About Us</a></li>\n</ul>    \n    <h3>\n        Open Hours\n        <i></i>\n    </h3>\n		Mon - Sat: 8 am - 5 pm,<br/>\nSunday: CLOSED		\n    <h3>\n        Newsletter\n        <i></i>\n    </h3>\n		Sign up for alerts, our latest blogs, thoughts, and insights.		\n        <form method=\"post\" action=\"https://fe2tech.com/wp-admin/admin-ajax.php?action=tnp&amp;na=s\" style=\"\">\n<input type=\"hidden\" name=\"nlang\" value=\"\">\n<label for=\"tnp-1\">Your mail address</label>\n<input type=\"email\" name=\"ne\" id=\"tnp-1\" value=\"\" placeholder=\"\" required>\n<input type=\"submit\" value=\"Subscribe\" style=\"\">\n</form>    \n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n		<p>Copyright @2024 of Far East High Tech</p>','Footer','','inherit','closed','closed','','799-revision-v1','','','2024-10-28 08:22:58','2024-10-28 08:22:58','',799,'https://fe2tech.com/?p=2500',0,'revision','',0),(2501,1,'2024-10-28 08:22:59','2024-10-28 08:22:59','<a href=\"https://fe2tech.com/\">\n							<img width=\"1469\" height=\"1278\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/fe2tech.png\" alt=\"\" />								</a>\n			    <ul>\n                    <li>\n            	   Office: 43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM                \n           </li>\n                    <li>\n            	   Factory: 176/9 Nguyễn Thị Tươi, KP Tân Phước, P. Tân Bình, Dĩ An city, Bình Dương                \n           </li>\n                    <li>\n            	   0968860386                \n           </li>\n            </ul>\n    <h3>\n        Menu\n        <i></i>\n    </h3>\n        <ul id=\"menu-main-menu\"><li id=\"menu-item-1955\"><a href=\"https://fe2tech.com/\">Home</a></li>\n<li id=\"menu-item-2132\"><a href=\"https://fe2tech.com/gallery/\">Gallery</a></li>\n<li id=\"menu-item-2131\"><a href=\"https://fe2tech.com/services/\">Services</a></li>\n<li id=\"menu-item-1967\"><a href=\"https://fe2tech.com/team-partners/\">Team &amp; Partners</a></li>\n<li id=\"menu-item-1960\"><a href=\"https://fe2tech.com/about/\">About Us</a></li>\n</ul>    \n    <h3>\n        Open Hours\n        <i></i>\n    </h3>\n		Mon - Sat: 8 am - 5 pm,<br/>\nSunday: CLOSED		\n    <h3>\n        Newsletter\n        <i></i>\n    </h3>\n		Sign up for alerts, our latest blogs, thoughts, and insights.		\n        <form method=\"post\" action=\"https://fe2tech.com/wp-admin/admin-ajax.php?action=tnp&amp;na=s\" style=\"\">\n<input type=\"hidden\" name=\"nlang\" value=\"\">\n<label for=\"tnp-1\">Your mail address</label>\n<input type=\"email\" name=\"ne\" id=\"tnp-1\" value=\"\" placeholder=\"\" required>\n<input type=\"submit\" value=\"Subscribe\" style=\"\">\n</form>    \n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n		<p>Copyright @2024 of Far East High Tech</p>','Footer','','inherit','closed','closed','','799-revision-v1','','','2024-10-28 08:22:59','2024-10-28 08:22:59','',799,'https://fe2tech.com/?p=2501',0,'revision','',0),(2502,1,'2024-10-28 08:22:59','2024-10-28 08:22:59','<a href=\"https://fe2tech.com/\">\n							<img width=\"1469\" height=\"1278\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/fe2tech.png\" alt=\"\" />								</a>\n			    <ul>\n                    <li>\n            	   Office: 43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM                \n           </li>\n                    <li>\n            	   Factory: 176/9 Nguyễn Thị Tươi, KP Tân Phước, P. Tân Bình, Dĩ An city, Bình Dương                \n           </li>\n                    <li>\n            	   0968860386                \n           </li>\n            </ul>\n    <h3>\n        Menu\n        <i></i>\n    </h3>\n        <ul id=\"menu-main-menu-2\"><li><a href=\"https://fe2tech.com/\">Home</a></li>\n<li><a href=\"https://fe2tech.com/gallery/\">Gallery</a></li>\n<li><a href=\"https://fe2tech.com/services/\">Services</a></li>\n<li><a href=\"https://fe2tech.com/team-partners/\">Team &amp; Partners</a></li>\n<li><a href=\"https://fe2tech.com/about/\">About Us</a></li>\n</ul>    \n    <h3>\n        Open Hours\n        <i></i>\n    </h3>\n		Mon - Sat: 8 am - 5 pm,<br/>\nSunday: CLOSED		\n    <h3>\n        Newsletter\n        <i></i>\n    </h3>\n		Sign up for alerts, our latest blogs, thoughts, and insights.		\n        <form method=\"post\" action=\"https://fe2tech.com/wp-admin/admin-ajax.php?action=tnp&amp;na=s\" style=\"\">\n<input type=\"hidden\" name=\"nlang\" value=\"\">\n<label for=\"tnp-3\">Your mail address</label>\n<input type=\"email\" name=\"ne\" id=\"tnp-3\" value=\"\" placeholder=\"\" required>\n<input type=\"submit\" value=\"Subscribe\" style=\"\">\n</form>    \n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n		<p>Copyright @2024 of Far East High Tech Ltd. Co.</p>','Footer','','inherit','closed','closed','','799-revision-v1','','','2024-10-28 08:22:59','2024-10-28 08:22:59','',799,'https://fe2tech.com/?p=2502',0,'revision','',0),(2503,1,'2024-10-28 08:26:01','2024-10-28 08:26:01','','2218231','','inherit','open','closed','','2218231','','','2024-10-28 08:26:01','2024-10-28 08:26:01','',26,'https://fe2tech.com/wp-content/uploads/2024/10/2218231.webp',0,'attachment','image/webp',0),(2504,1,'2024-10-28 08:27:07','2024-10-28 08:27:07','','BROCHURE','','inherit','open','closed','','brochure','','','2024-10-28 08:27:07','2024-10-28 08:27:07','',26,'https://fe2tech.com/wp-content/uploads/2024/10/BROCHURE.pdf',0,'attachment','application/pdf',0),(2506,1,'2024-10-28 08:32:11','2024-10-28 08:32:11','About us\n	    <h3>\n        We satisfy you with innovative ideas and quality work.    </h3>\n		<p>We exceed expectations through innovative ideas and exceptional craftsmanship.</p>		\n													<img width=\"59\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png\" alt=\"\" />													\n	    <h3>\n        Time manage    </h3>\n		<p>Efficiently organizing tasks to maximize productivity and meet deadlines.</p>		\n													<img width=\"55\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-02.png\" alt=\"\" />													\n	    <h3>\n        Fulfill target    </h3>\n		<p>Achieving goals with precision and commitment, ensuring success.</p>		\n    <img width=\"369\" height=\"382\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-01.jpg\" alt=\"\" />		\n            <img width=\"111\" height=\"85\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/signature1.png\" alt=\"\" />\n        <h3>Hanley Robin</h3>\n        (Chairman and founder)\n            Want to know more about us?\n            Just download brochure...\n            <a href=\"#\">\n                                                                    Download Brochure            </a>\n			Company history\n	    <h3>\n        Far East High Tech is a professional builder company    </h3>\n		<p>Far East High Tech is a leading company in building and manufacturing high-quality mechanical solutions.</p>		\n			Start		\n								<h3>2nd Feb, 2018</h3>\n								Exhibition Planning &amp; Exhibition Management\n								<h3>12th Jan, 2018</h3>\n								Establishment of Constrio\n								<h3>8th Jul, 2018</h3>\n								Registered as a construction company','About','','inherit','closed','closed','','26-revision-v1','','','2024-10-28 08:32:11','2024-10-28 08:32:11','',26,'https://fe2tech.com/?p=2506',0,'revision','',0),(2507,1,'2024-10-28 08:32:11','2024-10-28 08:32:11','About us\n	    <h3>\n        We satisfy you with innovative ideas and quality work.    </h3>\n		<p>We exceed expectations through innovative ideas and exceptional craftsmanship.</p>		\n													<img width=\"59\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png\" alt=\"\" />													\n	    <h3>\n        Time manage    </h3>\n		<p>Efficiently organizing tasks to maximize productivity and meet deadlines.</p>		\n													<img width=\"55\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-02.png\" alt=\"\" />													\n	    <h3>\n        Fulfill target    </h3>\n		<p>Achieving goals with precision and commitment, ensuring success.</p>		\n    <img width=\"369\" height=\"382\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-01.jpg\" alt=\"\" />		\n            <img width=\"111\" height=\"85\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/signature1.png\" alt=\"\" />\n        <h3>Hanley Robin</h3>\n        (Chairman and founder)\n            Want to know more about us?\n            Just download brochure...\n            <a href=\"#\">\n                                                                    Download Brochure            </a>\n			Company history\n	    <h3>\n        Far East High Tech is a professional builder company    </h3>\n		<p>Far East High Tech is a leading company in building and manufacturing high-quality mechanical solutions.</p>		\n			Start		\n								<h3>2nd Feb, 2018</h3>\n								Exhibition Planning &amp; Exhibition Management\n								<h3>12th Jan, 2018</h3>\n								Establishment of Constrio\n								<h3>8th Jul, 2018</h3>\n								Registered as a construction company','About','','inherit','closed','closed','','26-revision-v1','','','2024-10-28 08:32:11','2024-10-28 08:32:11','',26,'https://fe2tech.com/?p=2507',0,'revision','',0),(2508,1,'2024-10-28 08:32:12','2024-10-28 08:32:12','About us\n	    <h3>\n        We satisfy you with innovative ideas and quality work.    </h3>\n		<p>We exceed expectations through innovative ideas and exceptional craftsmanship.</p>		\n													<img width=\"59\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png\" alt=\"\" />													\n	    <h3>\n        Time manage    </h3>\n		<p>Efficiently organizing tasks to maximize productivity and meet deadlines.</p>		\n													<img width=\"55\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-02.png\" alt=\"\" />													\n	    <h3>\n        Fulfill target    </h3>\n		<p>Achieving goals with precision and commitment, ensuring success.</p>		\n    <img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218231.webp\" alt=\"\" />		\n            <img width=\"111\" height=\"85\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/signature1.png\" alt=\"\" />\n        <h3>Tin Luu</h3>\n        (Chairman and founder)\n            Want to know more about us?\n            Just download brochure...\n            <a href=\"https://fe2tech.com/wp-content/uploads/2024/10/BROCHURE.pdf\" target=\"_blank\" rel=\"nofollow noopener\">\n                                                                    Download Brochure            </a>\n			Company history\n	    <h3>\n        Far East High Tech is a professional builder company    </h3>\n		<p>Far East High Tech is a leading company in building and manufacturing high-quality mechanical solutions.</p>		\n			Start		\n								<h3>2nd Feb, 2018</h3>\n								Exhibition Planning &amp; Exhibition Management\n								<h3>12th Jan, 2018</h3>\n								Establishment of Constrio\n								<h3>8th Jul, 2018</h3>\n								Registered as a construction company','About','','inherit','closed','closed','','26-revision-v1','','','2024-10-28 08:32:12','2024-10-28 08:32:12','',26,'https://fe2tech.com/?p=2508',0,'revision','',0),(2511,1,'2024-10-28 08:35:21','2024-10-28 08:35:21','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We assess plans and provide tailored machinery.    </h3>\n		<p>Our company’s strength lies in our team, who have developed groundbreaking machinery and equipment.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"151\" height=\"50\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Awards Winner\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Satisfied Clients\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Active projects\n													<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_14479.png\" alt=\"\" />													\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n    	    	198 Award-winning machinery and equipment manufacturing company.\n	    <h3>\n        We help you build your vision with our machinery.    </h3>\n		<p>We approach every project with precision and value clear, simple communication.</p>		\n                                            Engineering\n                                        85%\n                                            Design\n                                        80%\n                                            Production\n                                        90%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/precision-measurement-services/\">Precision Measurement Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/precision-measurement-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/planing-service/\">Planing Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/planing-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Turning and Milling Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"216\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We help businesses thrive by providing the latest machinery technology.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20%C4%91%C6%B0%E1%BB%9Dng%20s%E1%BB%91%204%2C%20KP2%2C%20P.%20B%C3%ACnh%20Chi%E1%BB%83u%2C%20TP.%20Th%E1%BB%A7%20%C4%90%E1%BB%A9c%2C%20TPHCM&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n					aria-label=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Services\">Services</option><option value=\"Interior Design\">Interior Design</option><option value=\"Metal Roofing\">Metal Roofing</option><option value=\"House Remodel\">House Remodel</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"147\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-10-28 08:35:21','2024-10-28 08:35:21','',9,'https://fe2tech.com/?p=2511',0,'revision','',0),(2512,1,'2024-10-28 08:35:22','2024-10-28 08:35:22','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We assess plans and provide tailored machinery.    </h3>\n		<p>Our company’s strength lies in our team, who have developed groundbreaking machinery and equipment.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"151\" height=\"50\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Awards Winner\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Satisfied Clients\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Active projects\n													<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_14479.png\" alt=\"\" />													\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n    	    	198 Award-winning machinery and equipment manufacturing company.\n	    <h3>\n        We help you build your vision with our machinery.    </h3>\n		<p>We approach every project with precision and value clear, simple communication.</p>		\n                                            Engineering\n                                        85%\n                                            Design\n                                        80%\n                                            Production\n                                        90%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/precision-measurement-services/\">Precision Measurement Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/precision-measurement-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/planing-service/\">Planing Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/planing-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Turning and Milling Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"216\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We help businesses thrive by providing the latest machinery technology.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20%C4%91%C6%B0%E1%BB%9Dng%20s%E1%BB%91%204%2C%20KP2%2C%20P.%20B%C3%ACnh%20Chi%E1%BB%83u%2C%20TP.%20Th%E1%BB%A7%20%C4%90%E1%BB%A9c%2C%20TPHCM&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n					aria-label=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Services\">Services</option><option value=\"Interior Design\">Interior Design</option><option value=\"Metal Roofing\">Metal Roofing</option><option value=\"House Remodel\">House Remodel</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"147\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-10-28 08:35:22','2024-10-28 08:35:22','',9,'https://fe2tech.com/?p=2512',0,'revision','',0),(2513,1,'2024-10-28 08:35:22','2024-10-28 08:35:22','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We assess plans and provide tailored machinery.    </h3>\n		<p>Our company’s strength lies in our team, who have developed groundbreaking machinery and equipment.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"151\" height=\"50\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Awards Winner\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Satisfied Clients\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Active projects\n													<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_14479.png\" alt=\"\" />													\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n    	    	198 Award-winning machinery and equipment manufacturing company.\n	    <h3>\n        We help you build your vision with our machinery.    </h3>\n		<p>We approach every project with precision and value clear, simple communication.</p>		\n                                            Engineering\n                                        85%\n                                            Design\n                                        80%\n                                            Production\n                                        90%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/precision-measurement-services/\">Precision Measurement Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/precision-measurement-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/planing-service/\">Planing Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/planing-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Turning and Milling Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"148\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We help businesses thrive by providing the latest machinery technology.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20Street%20No.%204%2C%20Quarter%202%2C%20Binh%20Chieu%20Ward%2C%20Thu%20Duc%20City%2C%20Ho%20Chi%20Minh%20City&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\"\n					aria-label=\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Services\">Services</option><option value=\"Interior Design\">Interior Design</option><option value=\"Metal Roofing\">Metal Roofing</option><option value=\"House Remodel\">House Remodel</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"173\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-10-28 08:35:22','2024-10-28 08:35:22','',9,'https://fe2tech.com/?p=2513',0,'revision','',0),(2514,1,'2024-10-28 08:36:05','2024-10-28 08:36:05','<a href=\"https://fe2tech.com/\">\n							<img width=\"1469\" height=\"1278\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/fe2tech.png\" alt=\"\" />								</a>\n			    <ul>\n                    <li>\n            	   Office: 43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM                \n           </li>\n                    <li>\n            	   Factory: 176/9 Nguyễn Thị Tươi, KP Tân Phước, P. Tân Bình, Dĩ An city, Bình Dương                \n           </li>\n                    <li>\n            	   0968860386                \n           </li>\n            </ul>\n    <h3>\n        Menu\n        <i></i>\n    </h3>\n        <ul id=\"menu-main-menu-2\"><li><a href=\"https://fe2tech.com/\">Home</a></li>\n<li><a href=\"https://fe2tech.com/gallery/\">Gallery</a></li>\n<li><a href=\"https://fe2tech.com/services/\">Services</a></li>\n<li><a href=\"https://fe2tech.com/team-partners/\">Team &amp; Partners</a></li>\n<li><a href=\"https://fe2tech.com/about/\">About Us</a></li>\n</ul>    \n    <h3>\n        Open Hours\n        <i></i>\n    </h3>\n		Mon - Sat: 8 am - 5 pm,<br/>\nSunday: CLOSED		\n    <h3>\n        Newsletter\n        <i></i>\n    </h3>\n		Sign up for alerts, our latest blogs, thoughts, and insights.		\n        <form method=\"post\" action=\"https://fe2tech.com/wp-admin/admin-ajax.php?action=tnp&amp;na=s\" style=\"\">\n<input type=\"hidden\" name=\"nlang\" value=\"\">\n<label for=\"tnp-3\">Your mail address</label>\n<input type=\"email\" name=\"ne\" id=\"tnp-3\" value=\"\" placeholder=\"\" required>\n<input type=\"submit\" value=\"Subscribe\" style=\"\">\n</form>    \n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n		<p>Copyright @2024 of Far East High Tech Ltd. Co.</p>','Footer','','inherit','closed','closed','','799-revision-v1','','','2024-10-28 08:36:05','2024-10-28 08:36:05','',799,'https://fe2tech.com/?p=2514',0,'revision','',0),(2515,1,'2024-10-28 08:36:06','2024-10-28 08:36:06','<a href=\"https://fe2tech.com/\">\n							<img width=\"1469\" height=\"1278\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/fe2tech.png\" alt=\"\" />								</a>\n			    <ul>\n                    <li>\n            	   Office: 43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM                \n           </li>\n                    <li>\n            	   Factory: 176/9 Nguyễn Thị Tươi, KP Tân Phước, P. Tân Bình, Dĩ An city, Bình Dương                \n           </li>\n                    <li>\n            	   0968860386                \n           </li>\n            </ul>\n    <h3>\n        Menu\n        <i></i>\n    </h3>\n        <ul id=\"menu-main-menu-2\"><li><a href=\"https://fe2tech.com/\">Home</a></li>\n<li><a href=\"https://fe2tech.com/gallery/\">Gallery</a></li>\n<li><a href=\"https://fe2tech.com/services/\">Services</a></li>\n<li><a href=\"https://fe2tech.com/team-partners/\">Team &amp; Partners</a></li>\n<li><a href=\"https://fe2tech.com/about/\">About Us</a></li>\n</ul>    \n    <h3>\n        Open Hours\n        <i></i>\n    </h3>\n		Mon - Sat: 8 am - 5 pm,<br/>\nSunday: CLOSED		\n    <h3>\n        Newsletter\n        <i></i>\n    </h3>\n		Sign up for alerts, our latest blogs, thoughts, and insights.		\n        <form method=\"post\" action=\"https://fe2tech.com/wp-admin/admin-ajax.php?action=tnp&amp;na=s\" style=\"\">\n<input type=\"hidden\" name=\"nlang\" value=\"\">\n<label for=\"tnp-3\">Your mail address</label>\n<input type=\"email\" name=\"ne\" id=\"tnp-3\" value=\"\" placeholder=\"\" required>\n<input type=\"submit\" value=\"Subscribe\" style=\"\">\n</form>    \n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n		<p>Copyright @2024 of Far East High Tech Ltd. Co.</p>','Footer','','inherit','closed','closed','','799-revision-v1','','','2024-10-28 08:36:06','2024-10-28 08:36:06','',799,'https://fe2tech.com/?p=2515',0,'revision','',0),(2516,1,'2024-10-28 08:36:06','2024-10-28 08:36:06','<a href=\"https://fe2tech.com/\">\n							<img width=\"1469\" height=\"1278\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/fe2tech.png\" alt=\"\" />								</a>\n			    <ul>\n                    <li>\n            	   Office: 43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City                \n           </li>\n                    <li>\n            	   Factory: 176/9 Nguyen Thi Tuoi, Tan Phuoc Quarter, Tan Binh Ward, Di An City, Binh Duong                \n           </li>\n                    <li>\n            	   0968860386                \n           </li>\n            </ul>\n    <h3>\n        Menu\n        <i></i>\n    </h3>\n        <ul id=\"menu-main-menu-2\"><li><a href=\"https://fe2tech.com/\">Home</a></li>\n<li><a href=\"https://fe2tech.com/gallery/\">Gallery</a></li>\n<li><a href=\"https://fe2tech.com/services/\">Services</a></li>\n<li><a href=\"https://fe2tech.com/team-partners/\">Team &amp; Partners</a></li>\n<li><a href=\"https://fe2tech.com/about/\">About Us</a></li>\n</ul>    \n    <h3>\n        Open Hours\n        <i></i>\n    </h3>\n		Mon - Sat: 8 am - 5 pm,<br/>\nSunday: CLOSED		\n    <h3>\n        Newsletter\n        <i></i>\n    </h3>\n		Sign up for alerts, our latest blogs, thoughts, and insights.		\n        <form method=\"post\" action=\"https://fe2tech.com/wp-admin/admin-ajax.php?action=tnp&amp;na=s\" style=\"\">\n<input type=\"hidden\" name=\"nlang\" value=\"\">\n<label for=\"tnp-3\">Your mail address</label>\n<input type=\"email\" name=\"ne\" id=\"tnp-3\" value=\"\" placeholder=\"\" required>\n<input type=\"submit\" value=\"Subscribe\" style=\"\">\n</form>    \n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n		<p>Copyright @2024 of Far East High Tech Ltd. Co.</p>','Footer','','inherit','closed','closed','','799-revision-v1','','','2024-10-28 08:36:06','2024-10-28 08:36:06','',799,'https://fe2tech.com/?p=2516',0,'revision','',0),(2517,1,'2024-10-28 08:37:55','2024-10-28 08:37:55','<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20%C4%91%C6%B0%E1%BB%9Dng%20s%E1%BB%91%204%2C%20KP2%2C%20P.%20B%C3%ACnh%20Chi%E1%BB%83u%2C%20TP.%20Th%E1%BB%A7%20%C4%90%E1%BB%A9c%2C%20TPHCM&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n					aria-label=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n			></iframe>\n			Contact us\n	    <h3>\n        Feel free to contact us to solve any problem!    </h3>\n                        <img width=\"55\" height=\"65\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/info-icon-01.png\" alt=\"\" />                    \n                    <h3>Our head office address:</h3>\n                       43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM                    \n                        <img width=\"66\" height=\"66\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/info-icon-02.png\" alt=\"\" />                    \n                    <h3>Call for help:</h3>\n                       0968860386                    \n                        <img width=\"70\" height=\"68\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/info-icon-03.png\" alt=\"\" />                    \n                    <h3>Mail us for information:</h3>\n                       luutin.nmpco@gmail.com                    \n	    <h3>\n        Get in touch!    </h3>\n		<p>If you have questions or want to learn more about our services, don’t hesitate to reach out. We’re here to help!</p>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f91-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"91\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f91-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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Name*\" value=\"\" type=\"text\" name=\"your-name\" />\n	</p>\n	<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail address*\" value=\"\" type=\"email\" name=\"your-email\" />\n	</p>\n	<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\" name=\"your-message\"></textarea>\n	</p>\n	<p><button type=\"submit\">Send us now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_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>','Contact','','inherit','closed','closed','','24-revision-v1','','','2024-10-28 08:37:55','2024-10-28 08:37:55','',24,'https://fe2tech.com/?p=2517',0,'revision','',0),(2518,1,'2024-10-28 08:37:55','2024-10-28 08:37:55','<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20%C4%91%C6%B0%E1%BB%9Dng%20s%E1%BB%91%204%2C%20KP2%2C%20P.%20B%C3%ACnh%20Chi%E1%BB%83u%2C%20TP.%20Th%E1%BB%A7%20%C4%90%E1%BB%A9c%2C%20TPHCM&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n					aria-label=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n			></iframe>\n			Contact us\n	    <h3>\n        Feel free to contact us to solve any problem!    </h3>\n                        <img width=\"55\" height=\"65\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/info-icon-01.png\" alt=\"\" />                    \n                    <h3>Our head office address:</h3>\n                       43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM                    \n                        <img width=\"66\" height=\"66\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/info-icon-02.png\" alt=\"\" />                    \n                    <h3>Call for help:</h3>\n                       0968860386                    \n                        <img width=\"70\" height=\"68\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/info-icon-03.png\" alt=\"\" />                    \n                    <h3>Mail us for information:</h3>\n                       luutin.nmpco@gmail.com                    \n	    <h3>\n        Get in touch!    </h3>\n		<p>If you have questions or want to learn more about our services, don’t hesitate to reach out. We’re here to help!</p>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f91-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"91\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f91-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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Name*\" value=\"\" type=\"text\" name=\"your-name\" />\n	</p>\n	<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail address*\" value=\"\" type=\"email\" name=\"your-email\" />\n	</p>\n	<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\" name=\"your-message\"></textarea>\n	</p>\n	<p><button type=\"submit\">Send us now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_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>','Contact','','inherit','closed','closed','','24-revision-v1','','','2024-10-28 08:37:55','2024-10-28 08:37:55','',24,'https://fe2tech.com/?p=2518',0,'revision','',0),(2519,1,'2024-10-28 08:37:55','2024-10-28 08:37:55','<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20%C4%91%C6%B0%E1%BB%9Dng%20s%E1%BB%91%204%2C%20KP2%2C%20P.%20B%C3%ACnh%20Chi%E1%BB%83u%2C%20TP.%20Th%E1%BB%A7%20%C4%90%E1%BB%A9c%2C%20TPHCM&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n					aria-label=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n			></iframe>\n			Contact us\n	    <h3>\n        Feel free to contact us to solve any problem!    </h3>\n                        <img width=\"55\" height=\"65\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/info-icon-01.png\" alt=\"\" />                    \n                    <h3>Our head office address:</h3>\n                       43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City                    \n                        <img width=\"66\" height=\"66\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/info-icon-02.png\" alt=\"\" />                    \n                    <h3>Call for help:</h3>\n                       0968860386                    \n                        <img width=\"70\" height=\"68\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/info-icon-03.png\" alt=\"\" />                    \n                    <h3>Mail us for information:</h3>\n                       luutin.nmpco@gmail.com                    \n	    <h3>\n        Get in touch!    </h3>\n		<p>If you have questions or want to learn more about our services, don’t hesitate to reach out. We’re here to help!</p>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f91-o3\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"91\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f91-o3\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Name*\" value=\"\" type=\"text\" name=\"your-name\" />\n	</p>\n	<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail address*\" value=\"\" type=\"email\" name=\"your-email\" />\n	</p>\n	<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\" name=\"your-message\"></textarea>\n	</p>\n	<p><button type=\"submit\">Send us now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_3\" name=\"_wpcf7_ak_js\" value=\"112\"/></p>\n</form>','Contact','','inherit','closed','closed','','24-revision-v1','','','2024-10-28 08:37:55','2024-10-28 08:37:55','',24,'https://fe2tech.com/?p=2519',0,'revision','',0),(2520,1,'2024-10-28 08:53:00','2024-10-28 08:53:00','<a href=\"https://fe2tech.com/\">\n							<img width=\"1469\" height=\"1278\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/fe2tech.png\" alt=\"\" />								</a>\n			    <ul>\n                    <li>\n            	   Office: 43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City                \n           </li>\n                    <li>\n            	   Factory: 176/9 Nguyen Thi Tuoi, Tan Phuoc Quarter, Tan Binh Ward, Di An City, Binh Duong                \n           </li>\n                    <li>\n            	   0968860386                \n           </li>\n            </ul>\n    <h3>\n        Menu\n        <i></i>\n    </h3>\n        <ul id=\"menu-main-menu-2\"><li><a href=\"https://fe2tech.com/\">Home</a></li>\n<li><a href=\"https://fe2tech.com/gallery/\">Gallery</a></li>\n<li><a href=\"https://fe2tech.com/services/\">Services</a></li>\n<li><a href=\"https://fe2tech.com/team-partners/\">Team &amp; Partners</a></li>\n<li><a href=\"https://fe2tech.com/about/\">About Us</a></li>\n</ul>    \n    <h3>\n        Open Hours\n        <i></i>\n    </h3>\n		Mon - Sat: 8 am - 5 pm,<br/>\nSunday: CLOSED		\n    <h3>\n        Newsletter\n        <i></i>\n    </h3>\n		Sign up for alerts, our latest blogs, thoughts, and insights.		\n        <form method=\"post\" action=\"https://fe2tech.com/wp-admin/admin-ajax.php?action=tnp&amp;na=s\" style=\"\">\n<input type=\"hidden\" name=\"nlang\" value=\"\">\n<label for=\"tnp-3\">Your mail address</label>\n<input type=\"email\" name=\"ne\" id=\"tnp-3\" value=\"\" placeholder=\"\" required>\n<input type=\"submit\" value=\"Subscribe\" style=\"\">\n</form>    \n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n		<p>Copyright @2024 of Far East High Tech Ltd. Co.</p>','Footer','','inherit','closed','closed','','799-revision-v1','','','2024-10-28 08:53:00','2024-10-28 08:53:00','',799,'https://fe2tech.com/?p=2520',0,'revision','',0),(2521,1,'2024-10-28 08:53:00','2024-10-28 08:53:00','<a href=\"https://fe2tech.com/\">\n							<img width=\"1469\" height=\"1278\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/fe2tech.png\" alt=\"\" />								</a>\n			    <ul>\n                    <li>\n            	   Office: 43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City                \n           </li>\n                    <li>\n            	   Factory: 176/9 Nguyen Thi Tuoi, Tan Phuoc Quarter, Tan Binh Ward, Di An City, Binh Duong                \n           </li>\n                    <li>\n            	   0968860386                \n           </li>\n            </ul>\n    <h3>\n        Menu\n        <i></i>\n    </h3>\n        <ul id=\"menu-main-menu-2\"><li><a href=\"https://fe2tech.com/\">Home</a></li>\n<li><a href=\"https://fe2tech.com/gallery/\">Gallery</a></li>\n<li><a href=\"https://fe2tech.com/services/\">Services</a></li>\n<li><a href=\"https://fe2tech.com/team-partners/\">Team &amp; Partners</a></li>\n<li><a href=\"https://fe2tech.com/about/\">About Us</a></li>\n</ul>    \n    <h3>\n        Open Hours\n        <i></i>\n    </h3>\n		Mon - Sat: 8 am - 5 pm,<br/>\nSunday: CLOSED		\n    <h3>\n        Newsletter\n        <i></i>\n    </h3>\n		Sign up for alerts, our latest blogs, thoughts, and insights.		\n        <form method=\"post\" action=\"https://fe2tech.com/wp-admin/admin-ajax.php?action=tnp&amp;na=s\" style=\"\">\n<input type=\"hidden\" name=\"nlang\" value=\"\">\n<label for=\"tnp-3\">Your mail address</label>\n<input type=\"email\" name=\"ne\" id=\"tnp-3\" value=\"\" placeholder=\"\" required>\n<input type=\"submit\" value=\"Subscribe\" style=\"\">\n</form>    \n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n		<p>Copyright @2024 of Far East High Tech Ltd. Co.</p>','Footer','','inherit','closed','closed','','799-revision-v1','','','2024-10-28 08:53:00','2024-10-28 08:53:00','',799,'https://fe2tech.com/?p=2521',0,'revision','',0),(2522,1,'2024-10-28 08:53:00','2024-10-28 08:53:00','<a href=\"https://fe2tech.com/\">\n							<img width=\"1469\" height=\"1278\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/fe2tech.png\" alt=\"\" />								</a>\n			    <ul>\n                    <li>\n            	   Office: 43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City                \n           </li>\n                    <li>\n            	   Factory: 176/9 Nguyen Thi Tuoi, Tan Phuoc Quarter, Tan Binh Ward, Di An City, Binh Duong                \n           </li>\n                    <li>\n            	   0968860386                \n           </li>\n            </ul>\n    <h3>\n        Menu\n        <i></i>\n    </h3>\n        <ul id=\"menu-main-menu-2\"><li><a href=\"https://fe2tech.com/\">Home</a></li>\n<li><a href=\"https://fe2tech.com/gallery/\">Gallery</a></li>\n<li><a href=\"https://fe2tech.com/services/\">Services</a></li>\n<li><a href=\"https://fe2tech.com/team-partners/\">Team &amp; Partners</a></li>\n<li><a href=\"https://fe2tech.com/about/\">About Us</a></li>\n</ul>    \n    <h3>\n        Open Hours\n        <i></i>\n    </h3>\n		Mon - Sat: 8 am - 5 pm,<br/>\nSunday: CLOSED		\n    <h3>\n        Newsletter\n        <i></i>\n    </h3>\n		Sign up for alerts, our latest blogs, thoughts, and insights.		\n        <form method=\"post\" action=\"https://fe2tech.com/wp-admin/admin-ajax.php?action=tnp&amp;na=s\" style=\"\">\n<input type=\"hidden\" name=\"nlang\" value=\"\">\n<label for=\"tnp-3\">Your mail address</label>\n<input type=\"email\" name=\"ne\" id=\"tnp-3\" value=\"\" placeholder=\"\" required>\n<input type=\"submit\" value=\"Subscribe\" style=\"\">\n</form>    \n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n		<p>Copyright @2024 of Far East High Tech Ltd. Co.</p>','Footer','','inherit','closed','closed','','799-revision-v1','','','2024-10-28 08:53:00','2024-10-28 08:53:00','',799,'https://fe2tech.com/?p=2522',0,'revision','',0),(2525,1,'2024-11-05 02:24:12','2024-11-05 02:24:12','About us\n	    <h3>\n        We satisfy you with innovative ideas and quality work.    </h3>\n		<p>We exceed expectations through innovative ideas and exceptional craftsmanship.</p>		\n													<img width=\"59\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png\" alt=\"\" />													\n	    <h3>\n        Time manage    </h3>\n		<p>Efficiently organizing tasks to maximize productivity and meet deadlines.</p>		\n													<img width=\"55\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-02.png\" alt=\"\" />													\n	    <h3>\n        Fulfill target    </h3>\n		<p>Achieving goals with precision and commitment, ensuring success.</p>		\n    <img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218231.webp\" alt=\"\" />		\n            <img width=\"111\" height=\"85\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/signature1.png\" alt=\"\" />\n        <h3>Tin Luu</h3>\n        (Chairman and founder)\n            Want to know more about us?\n            Just download brochure...\n            <a href=\"https://fe2tech.com/wp-content/uploads/2024/10/BROCHURE.pdf\" target=\"_blank\" rel=\"nofollow noopener\">\n                                                                    Download Brochure            </a>\n			Company history\n	    <h3>\n        Far East High Tech is a professional builder company    </h3>\n		<p>Far East High Tech is a leading company in building and manufacturing high-quality mechanical solutions.</p>		\n			Start		\n								<h3>2nd Feb, 2018</h3>\n								Exhibition Planning &amp; Exhibition Management\n								<h3>12th Jan, 2018</h3>\n								Establishment of Constrio\n								<h3>8th Jul, 2018</h3>\n								Registered as a construction company','About','','inherit','closed','closed','','26-revision-v1','','','2024-11-05 02:24:12','2024-11-05 02:24:12','',26,'https://fe2tech.com/?p=2525',0,'revision','',0),(2526,1,'2024-11-05 02:24:13','2024-11-05 02:24:13','About us\n	    <h3>\n        We satisfy you with innovative ideas and quality work.    </h3>\n		<p>We exceed expectations through innovative ideas and exceptional craftsmanship.</p>		\n													<img width=\"59\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png\" alt=\"\" />													\n	    <h3>\n        Time manage    </h3>\n		<p>Efficiently organizing tasks to maximize productivity and meet deadlines.</p>		\n													<img width=\"55\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-02.png\" alt=\"\" />													\n	    <h3>\n        Fulfill target    </h3>\n		<p>Achieving goals with precision and commitment, ensuring success.</p>		\n    <img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218231.webp\" alt=\"\" />		\n            <img width=\"111\" height=\"85\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/signature1.png\" alt=\"\" />\n        <h3>Tin Luu</h3>\n        (Chairman and founder)\n            Want to know more about us?\n            Just download brochure...\n            <a href=\"https://fe2tech.com/wp-content/uploads/2024/10/BROCHURE.pdf\" target=\"_blank\" rel=\"nofollow noopener\">\n                                                                    Download Brochure            </a>\n			Company history\n	    <h3>\n        Far East High Tech is a professional builder company    </h3>\n		<p>Far East High Tech is a leading company in building and manufacturing high-quality mechanical solutions.</p>		\n			Start		\n								<h3>2nd Feb, 2018</h3>\n								Exhibition Planning &amp; Exhibition Management\n								<h3>12th Jan, 2018</h3>\n								Establishment of Constrio\n								<h3>8th Jul, 2018</h3>\n								Registered as a construction company','About','','inherit','closed','closed','','26-revision-v1','','','2024-11-05 02:24:13','2024-11-05 02:24:13','',26,'https://fe2tech.com/?p=2526',0,'revision','',0),(2527,1,'2024-11-05 02:24:13','2024-11-05 02:24:13','About us\n	    <h3>\n        We satisfy you with innovative ideas and quality work.    </h3>\n		<p>We exceed expectations through innovative ideas and exceptional craftsmanship.</p>		\n													<img width=\"59\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png\" alt=\"\" />													\n	    <h3>\n        Time manage    </h3>\n		<p>Efficiently organizing tasks to maximize productivity and meet deadlines.</p>		\n													<img width=\"55\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-02.png\" alt=\"\" />													\n	    <h3>\n        Fulfill target    </h3>\n		<p>Achieving goals with precision and commitment, ensuring success.</p>		\n    <img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218231.webp\" alt=\"\" />		\n            <img width=\"111\" height=\"85\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/signature1.png\" alt=\"\" />\n        <h3>Tin Luu</h3>\n        (Chairman and founder)\n            Want to know more about us?\n            Just download brochure...\n            <a href=\"https://fe2tech.com/wp-content/uploads/2024/10/BROCHURE.pdf\" target=\"_blank\" rel=\"nofollow noopener\">\n                                                                    Download Brochure            </a>\n			Company history\n	    <h3>\n        Far East High Tech is a professional builder company    </h3>\n		<p>Far East High Tech is a leading company in building and manufacturing high-quality mechanical solutions.</p>		\n			Start		\n								<h3>5th Jun, 2021</h3>\n								Expanded into international markets, beginning with partnerships in Europe\n								<h3>20th Oct, 2022</h3>\n								Achieved record sales, marking a major milestone in company growth\n								<h3>15th Aug, 2023</h3>\n								Named a top mechanical solutions provider in the Asia-Pacific region\n								<h3>12th Jan, 2021</h3>\n								Establishment of dedicated R&amp;D department for mechanical innovations\n								<h3>15th Mar, 2022</h3>\n								Released high-precision components for the aerospace sector\n								<h3>8th Apr, 2023</h3>\n								Introduced automated quality control systems to improve production efficiency','About','','inherit','closed','closed','','26-revision-v1','','','2024-11-05 02:24:13','2024-11-05 02:24:13','',26,'https://fe2tech.com/?p=2527',0,'revision','',0),(2529,1,'2024-11-05 02:27:11','2024-11-05 02:27:11','About us\n	    <h3>\n        We satisfy you with innovative ideas and quality work.    </h3>\n		<p>We exceed expectations through innovative ideas and exceptional craftsmanship.</p>		\n													<img width=\"59\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png\" alt=\"\" />													\n	    <h3>\n        Time manage    </h3>\n		<p>Efficiently organizing tasks to maximize productivity and meet deadlines.</p>		\n													<img width=\"55\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-02.png\" alt=\"\" />													\n	    <h3>\n        Fulfill target    </h3>\n		<p>Achieving goals with precision and commitment, ensuring success.</p>		\n    <img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218231.webp\" alt=\"\" />		\n            <img width=\"111\" height=\"85\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/signature1.png\" alt=\"\" />\n        <h3>Tin Luu</h3>\n        (Chairman and founder)\n            Want to know more about us?\n            Just download brochure...\n            <a href=\"https://fe2tech.com/wp-content/uploads/2024/10/BROCHURE.pdf\" target=\"_blank\" rel=\"nofollow noopener\">\n                                                                    Download Brochure            </a>\n			Company history\n	    <h3>\n        Far East High Tech is a professional builder company    </h3>\n		<p>Far East High Tech is a leading company in building and manufacturing high-quality mechanical solutions.</p>		\n			Start		\n								<h3>5th Jun, 2021</h3>\n								Expanded into international markets, beginning with partnerships in Europe\n								<h3>20th Oct, 2022</h3>\n								Achieved record sales, marking a major milestone in company growth\n								<h3>15th Aug, 2023</h3>\n								Named a top mechanical solutions provider in the Asia-Pacific region\n								<h3>12th Jan, 2021</h3>\n								Establishment of dedicated R&amp;D department for mechanical innovations\n								<h3>15th Mar, 2022</h3>\n								Released high-precision components for the aerospace sector\n								<h3>8th Apr, 2023</h3>\n								Introduced automated quality control systems to improve production efficiency','About','','inherit','closed','closed','','26-revision-v1','','','2024-11-05 02:27:11','2024-11-05 02:27:11','',26,'https://fe2tech.com/?p=2529',0,'revision','',0),(2530,1,'2024-11-05 02:27:12','2024-11-05 02:27:12','About us\n	    <h3>\n        We satisfy you with innovative ideas and quality work.    </h3>\n		<p>We exceed expectations through innovative ideas and exceptional craftsmanship.</p>		\n													<img width=\"59\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png\" alt=\"\" />													\n	    <h3>\n        Time manage    </h3>\n		<p>Efficiently organizing tasks to maximize productivity and meet deadlines.</p>		\n													<img width=\"55\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-02.png\" alt=\"\" />													\n	    <h3>\n        Fulfill target    </h3>\n		<p>Achieving goals with precision and commitment, ensuring success.</p>		\n    <img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218231.webp\" alt=\"\" />		\n            <img width=\"111\" height=\"85\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/signature1.png\" alt=\"\" />\n        <h3>Tin Luu</h3>\n        (Chairman and founder)\n            Want to know more about us?\n            Just download brochure...\n            <a href=\"https://fe2tech.com/wp-content/uploads/2024/10/BROCHURE.pdf\" target=\"_blank\" rel=\"nofollow noopener\">\n                                                                    Download Brochure            </a>\n			Company history\n	    <h3>\n        Far East High Tech is a professional builder company    </h3>\n		<p>Far East High Tech is a leading company in building and manufacturing high-quality mechanical solutions.</p>		\n			Start		\n								<h3>5th Jun, 2021</h3>\n								Expanded into international markets, beginning with partnerships in Europe\n								<h3>20th Oct, 2022</h3>\n								Achieved record sales, marking a major milestone in company growth\n								<h3>15th Aug, 2023</h3>\n								Named a top mechanical solutions provider in the Asia-Pacific region\n								<h3>12th Jan, 2021</h3>\n								Establishment of dedicated R&amp;D department for mechanical innovations\n								<h3>15th Mar, 2022</h3>\n								Released high-precision components for the aerospace sector\n								<h3>8th Apr, 2023</h3>\n								Introduced automated quality control systems to improve production efficiency','About','','inherit','closed','closed','','26-revision-v1','','','2024-11-05 02:27:12','2024-11-05 02:27:12','',26,'https://fe2tech.com/?p=2530',0,'revision','',0),(2531,1,'2024-11-05 02:27:12','2024-11-05 02:27:12','About us\n	    <h3>\n        We satisfy you with innovative ideas and quality work.    </h3>\n		<p>We exceed expectations through innovative ideas and exceptional craftsmanship.</p>		\n													<img width=\"59\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png\" alt=\"\" />													\n	    <h3>\n        Time manage    </h3>\n		<p>Efficiently organizing tasks to maximize productivity and meet deadlines.</p>		\n													<img width=\"55\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-02.png\" alt=\"\" />													\n	    <h3>\n        Fulfill target    </h3>\n		<p>Achieving goals with precision and commitment, ensuring success.</p>		\n    <img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218231.webp\" alt=\"\" />		\n            <img width=\"111\" height=\"85\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/signature1.png\" alt=\"\" />\n        <h3>Tin Luu</h3>\n        (Chairman and founder)\n            Want to know more about us?\n            Just download brochure...\n            <a href=\"https://fe2tech.com/wp-content/uploads/2024/10/BROCHURE.pdf\" target=\"_blank\" rel=\"nofollow noopener\">\n                                                                    Download Brochure            </a>\n			Company history\n	    <h3>\n        Far East High Tech is a professional builder company    </h3>\n		<p>Far East High Tech is a leading company in building and manufacturing high-quality mechanical solutions.</p>		\n			Start		\n								<h3>5th Jun, 2021</h3>\n								Expanded into international markets, beginning with partnerships in Europe\n								<h3>20th Oct, 2022</h3>\n								Achieved record sales, marking a major milestone in company growth\n								<h3>15th Aug, 2023</h3>\n								Named a top mechanical solutions provider in the Asia-Pacific region\n								<h3>12th Jan, 2021</h3>\n								Establishment of dedicated R&amp;D department for mechanical innovations\n								<h3>15th Mar, 2022</h3>\n								Released high-precision components for the aerospace sector\n								<h3>8th Apr, 2023</h3>\n								Introduced automated quality control systems to improve production efficiency','About','','inherit','closed','closed','','26-revision-v1','','','2024-11-05 02:27:12','2024-11-05 02:27:12','',26,'https://fe2tech.com/?p=2531',0,'revision','',0),(2538,1,'2024-11-05 02:44:10','2024-11-05 02:44:10','','signature1','','inherit','open','closed','','signature1-2','','','2024-11-05 02:44:10','2024-11-05 02:44:10','',26,'https://fe2tech.com/wp-content/uploads/2024/11/signature1.png',0,'attachment','image/png',0),(2539,1,'2024-11-05 02:44:24','2024-11-05 02:44:24','About us\n	    <h3>\n        We satisfy you with innovative ideas and quality work.    </h3>\n		<p>We exceed expectations through innovative ideas and exceptional craftsmanship.</p>		\n													<img width=\"59\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png\" alt=\"\" />													\n	    <h3>\n        Time manage    </h3>\n		<p>Efficiently organizing tasks to maximize productivity and meet deadlines.</p>		\n													<img width=\"55\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-02.png\" alt=\"\" />													\n	    <h3>\n        Fulfill target    </h3>\n		<p>Achieving goals with precision and commitment, ensuring success.</p>		\n    <img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218231.webp\" alt=\"\" />		\n            <img width=\"111\" height=\"85\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/signature1.png\" alt=\"\" />\n        <h3>Tin Luu</h3>\n        (Chairman and founder)\n            Want to know more about us?\n            Just download brochure...\n            <a href=\"https://fe2tech.com/wp-content/uploads/2024/10/BROCHURE.pdf\" target=\"_blank\" rel=\"nofollow noopener\">\n                                                                    Download Brochure            </a>\n			Company history\n	    <h3>\n        Far East High Tech is a professional builder company    </h3>\n		<p>Far East High Tech is a leading company in building and manufacturing high-quality mechanical solutions.</p>		\n			Start		\n								<h3>5th Jun, 2021</h3>\n								Expanded into international markets, beginning with partnerships in Europe\n								<h3>20th Oct, 2022</h3>\n								Achieved record sales, marking a major milestone in company growth\n								<h3>15th Aug, 2023</h3>\n								Named a top mechanical solutions provider in the Asia-Pacific region\n								<h3>12th Jan, 2021</h3>\n								Establishment of dedicated R&amp;D department for mechanical innovations\n								<h3>15th Mar, 2022</h3>\n								Released high-precision components for the aerospace sector\n								<h3>8th Apr, 2023</h3>\n								Introduced automated quality control systems to improve production efficiency','About','','inherit','closed','closed','','26-revision-v1','','','2024-11-05 02:44:24','2024-11-05 02:44:24','',26,'https://fe2tech.com/?p=2539',0,'revision','',0),(2540,1,'2024-11-05 02:44:25','2024-11-05 02:44:25','About us\n	    <h3>\n        We satisfy you with innovative ideas and quality work.    </h3>\n		<p>We exceed expectations through innovative ideas and exceptional craftsmanship.</p>		\n													<img width=\"59\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png\" alt=\"\" />													\n	    <h3>\n        Time manage    </h3>\n		<p>Efficiently organizing tasks to maximize productivity and meet deadlines.</p>		\n													<img width=\"55\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-02.png\" alt=\"\" />													\n	    <h3>\n        Fulfill target    </h3>\n		<p>Achieving goals with precision and commitment, ensuring success.</p>		\n    <img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218231.webp\" alt=\"\" />		\n            <img width=\"111\" height=\"85\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/signature1.png\" alt=\"\" />\n        <h3>Tin Luu</h3>\n        (Chairman and founder)\n            Want to know more about us?\n            Just download brochure...\n            <a href=\"https://fe2tech.com/wp-content/uploads/2024/10/BROCHURE.pdf\" target=\"_blank\" rel=\"nofollow noopener\">\n                                                                    Download Brochure            </a>\n			Company history\n	    <h3>\n        Far East High Tech is a professional builder company    </h3>\n		<p>Far East High Tech is a leading company in building and manufacturing high-quality mechanical solutions.</p>		\n			Start		\n								<h3>5th Jun, 2021</h3>\n								Expanded into international markets, beginning with partnerships in Europe\n								<h3>20th Oct, 2022</h3>\n								Achieved record sales, marking a major milestone in company growth\n								<h3>15th Aug, 2023</h3>\n								Named a top mechanical solutions provider in the Asia-Pacific region\n								<h3>12th Jan, 2021</h3>\n								Establishment of dedicated R&amp;D department for mechanical innovations\n								<h3>15th Mar, 2022</h3>\n								Released high-precision components for the aerospace sector\n								<h3>8th Apr, 2023</h3>\n								Introduced automated quality control systems to improve production efficiency','About','','inherit','closed','closed','','26-revision-v1','','','2024-11-05 02:44:25','2024-11-05 02:44:25','',26,'https://fe2tech.com/?p=2540',0,'revision','',0),(2541,1,'2024-11-05 02:44:25','2024-11-05 02:44:25','About us\n	    <h3>\n        We satisfy you with innovative ideas and quality work.    </h3>\n		<p>We exceed expectations through innovative ideas and exceptional craftsmanship.</p>		\n													<img width=\"59\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png\" alt=\"\" />													\n	    <h3>\n        Time manage    </h3>\n		<p>Efficiently organizing tasks to maximize productivity and meet deadlines.</p>		\n													<img width=\"55\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-02.png\" alt=\"\" />													\n	    <h3>\n        Fulfill target    </h3>\n		<p>Achieving goals with precision and commitment, ensuring success.</p>		\n    <img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218231.webp\" alt=\"\" />		\n            <img width=\"111\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature1.png\" alt=\"\" />\n        <h3>Tin Luu</h3>\n        (Chairman and founder)\n            Want to know more about us?\n            Just download brochure...\n            <a href=\"https://fe2tech.com/wp-content/uploads/2024/10/BROCHURE.pdf\" target=\"_blank\" rel=\"nofollow noopener\">\n                                                                    Download Brochure            </a>\n			Company history\n	    <h3>\n        Far East High Tech is a professional builder company    </h3>\n		<p>Far East High Tech is a leading company in building and manufacturing high-quality mechanical solutions.</p>		\n			Start		\n								<h3>5th Jun, 2021</h3>\n								Expanded into international markets, beginning with partnerships in Europe\n								<h3>20th Oct, 2022</h3>\n								Achieved record sales, marking a major milestone in company growth\n								<h3>15th Aug, 2023</h3>\n								Named a top mechanical solutions provider in the Asia-Pacific region\n								<h3>12th Jan, 2021</h3>\n								Establishment of dedicated R&amp;D department for mechanical innovations\n								<h3>15th Mar, 2022</h3>\n								Released high-precision components for the aerospace sector\n								<h3>8th Apr, 2023</h3>\n								Introduced automated quality control systems to improve production efficiency','About','','inherit','closed','closed','','26-revision-v1','','','2024-11-05 02:44:25','2024-11-05 02:44:25','',26,'https://fe2tech.com/?p=2541',0,'revision','',0),(2542,1,'2024-11-05 02:47:23','2024-11-05 02:47:23','','signature','','inherit','open','closed','','signature-2','','','2024-11-05 02:47:23','2024-11-05 02:47:23','',9,'https://fe2tech.com/wp-content/uploads/2024/11/signature.png',0,'attachment','image/png',0),(2543,1,'2024-11-05 02:47:33','2024-11-05 02:47:33','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We assess plans and provide tailored machinery.    </h3>\n		<p>Our company’s strength lies in our team, who have developed groundbreaking machinery and equipment.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"151\" height=\"50\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Awards Winner\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Satisfied Clients\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Active projects\n													<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_14479.png\" alt=\"\" />													\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n    	    	198 Award-winning machinery and equipment manufacturing company.\n	    <h3>\n        We help you build your vision with our machinery.    </h3>\n		<p>We approach every project with precision and value clear, simple communication.</p>		\n                                            Engineering\n                                        85%\n                                            Design\n                                        80%\n                                            Production\n                                        90%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/precision-measurement-services/\">Precision Measurement Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/precision-measurement-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/planing-service/\">Planing Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/planing-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Turning and Milling Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"148\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We help businesses thrive by providing the latest machinery technology.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20Street%20No.%204%2C%20Quarter%202%2C%20Binh%20Chieu%20Ward%2C%20Thu%20Duc%20City%2C%20Ho%20Chi%20Minh%20City&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\"\n					aria-label=\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Services\">Services</option><option value=\"Interior Design\">Interior Design</option><option value=\"Metal Roofing\">Metal Roofing</option><option value=\"House Remodel\">House Remodel</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"173\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-11-05 02:47:33','2024-11-05 02:47:33','',9,'https://fe2tech.com/?p=2543',0,'revision','',0),(2544,1,'2024-11-05 02:47:34','2024-11-05 02:47:34','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We assess plans and provide tailored machinery.    </h3>\n		<p>Our company’s strength lies in our team, who have developed groundbreaking machinery and equipment.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"151\" height=\"50\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Awards Winner\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Satisfied Clients\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Active projects\n													<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_14479.png\" alt=\"\" />													\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n    	    	198 Award-winning machinery and equipment manufacturing company.\n	    <h3>\n        We help you build your vision with our machinery.    </h3>\n		<p>We approach every project with precision and value clear, simple communication.</p>		\n                                            Engineering\n                                        85%\n                                            Design\n                                        80%\n                                            Production\n                                        90%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/precision-measurement-services/\">Precision Measurement Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/precision-measurement-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/planing-service/\">Planing Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/planing-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Turning and Milling Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"148\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We help businesses thrive by providing the latest machinery technology.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20Street%20No.%204%2C%20Quarter%202%2C%20Binh%20Chieu%20Ward%2C%20Thu%20Duc%20City%2C%20Ho%20Chi%20Minh%20City&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\"\n					aria-label=\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Services\">Services</option><option value=\"Interior Design\">Interior Design</option><option value=\"Metal Roofing\">Metal Roofing</option><option value=\"House Remodel\">House Remodel</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"173\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-11-05 02:47:34','2024-11-05 02:47:34','',9,'https://fe2tech.com/?p=2544',0,'revision','',0),(2545,1,'2024-11-05 02:47:34','2024-11-05 02:47:34','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We assess plans and provide tailored machinery.    </h3>\n		<p>Our company’s strength lies in our team, who have developed groundbreaking machinery and equipment.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Awards Winner\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Satisfied Clients\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Active projects\n													<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_14479.png\" alt=\"\" />													\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n    	    	198 Award-winning machinery and equipment manufacturing company.\n	    <h3>\n        We help you build your vision with our machinery.    </h3>\n		<p>We approach every project with precision and value clear, simple communication.</p>		\n                                            Engineering\n                                        85%\n                                            Design\n                                        80%\n                                            Production\n                                        90%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/precision-measurement-services/\">Precision Measurement Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/precision-measurement-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/planing-service/\">Planing Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/planing-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Turning and Milling Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"182\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We help businesses thrive by providing the latest machinery technology.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20Street%20No.%204%2C%20Quarter%202%2C%20Binh%20Chieu%20Ward%2C%20Thu%20Duc%20City%2C%20Ho%20Chi%20Minh%20City&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\"\n					aria-label=\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"140\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-11-05 02:47:34','2024-11-05 02:47:34','',9,'https://fe2tech.com/?p=2545',0,'revision','',0),(2547,1,'2024-11-22 02:59:54','2024-11-22 02:59:54','','logo','','inherit','open','closed','','logo','','','2024-11-22 02:59:54','2024-11-22 02:59:54','',0,'https://fe2tech.com/wp-content/uploads/2024/11/logo.jpg',0,'attachment','image/jpeg',0),(2550,1,'2024-11-22 03:01:39','2024-11-22 03:01:39','<a href=\"https://fe2tech.com/\">\n							<img width=\"1469\" height=\"1278\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/fe2tech.png\" alt=\"\" />								</a>\n			    <ul>\n                    <li>\n            	   Office: 43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City                \n           </li>\n                    <li>\n            	   Factory: 176/9 Nguyen Thi Tuoi, Tan Phuoc Quarter, Tan Binh Ward, Di An City, Binh Duong                \n           </li>\n                    <li>\n            	   0968860386                \n           </li>\n            </ul>\n    <h3>\n        Menu\n        <i></i>\n    </h3>\n        <ul id=\"menu-main-menu-2\"><li><a href=\"https://fe2tech.com/\">Home</a></li>\n<li><a href=\"https://fe2tech.com/gallery/\">Gallery</a></li>\n<li><a href=\"https://fe2tech.com/services/\">Services</a></li>\n<li><a href=\"https://fe2tech.com/team-partners/\">Team &amp; Partners</a></li>\n<li><a href=\"https://fe2tech.com/about/\">About Us</a></li>\n</ul>    \n    <h3>\n        Open Hours\n        <i></i>\n    </h3>\n		Mon - Sat: 8 am - 5 pm,<br/>\nSunday: CLOSED		\n    <h3>\n        Newsletter\n        <i></i>\n    </h3>\n		Sign up for alerts, our latest blogs, thoughts, and insights.		\n        <form method=\"post\" action=\"https://fe2tech.com/wp-admin/admin-ajax.php?action=tnp&amp;na=s\" style=\"\">\n<input type=\"hidden\" name=\"nlang\" value=\"\">\n<label for=\"tnp-3\">Your mail address</label>\n<input type=\"email\" name=\"ne\" id=\"tnp-3\" value=\"\" placeholder=\"\" required>\n<input type=\"submit\" value=\"Subscribe\" style=\"\">\n</form>    \n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n		<p>Copyright @2024 of Far East High Tech Ltd. Co.</p>','Footer','','inherit','closed','closed','','799-revision-v1','','','2024-11-22 03:01:39','2024-11-22 03:01:39','',799,'https://fe2tech.com/?p=2550',0,'revision','',0),(2551,1,'2024-11-22 03:01:40','2024-11-22 03:01:40','<a href=\"https://fe2tech.com/\">\n							<img width=\"1469\" height=\"1278\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/fe2tech.png\" alt=\"\" />								</a>\n			    <ul>\n                    <li>\n            	   Office: 43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City                \n           </li>\n                    <li>\n            	   Factory: 176/9 Nguyen Thi Tuoi, Tan Phuoc Quarter, Tan Binh Ward, Di An City, Binh Duong                \n           </li>\n                    <li>\n            	   0968860386                \n           </li>\n            </ul>\n    <h3>\n        Menu\n        <i></i>\n    </h3>\n        <ul id=\"menu-main-menu-2\"><li><a href=\"https://fe2tech.com/\">Home</a></li>\n<li><a href=\"https://fe2tech.com/gallery/\">Gallery</a></li>\n<li><a href=\"https://fe2tech.com/services/\">Services</a></li>\n<li><a href=\"https://fe2tech.com/team-partners/\">Team &amp; Partners</a></li>\n<li><a href=\"https://fe2tech.com/about/\">About Us</a></li>\n</ul>    \n    <h3>\n        Open Hours\n        <i></i>\n    </h3>\n		Mon - Sat: 8 am - 5 pm,<br/>\nSunday: CLOSED		\n    <h3>\n        Newsletter\n        <i></i>\n    </h3>\n		Sign up for alerts, our latest blogs, thoughts, and insights.		\n        <form method=\"post\" action=\"https://fe2tech.com/wp-admin/admin-ajax.php?action=tnp&amp;na=s\" style=\"\">\n<input type=\"hidden\" name=\"nlang\" value=\"\">\n<label for=\"tnp-3\">Your mail address</label>\n<input type=\"email\" name=\"ne\" id=\"tnp-3\" value=\"\" placeholder=\"\" required>\n<input type=\"submit\" value=\"Subscribe\" style=\"\">\n</form>    \n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n		<p>Copyright @2024 of Far East High Tech Ltd. Co.</p>','Footer','','inherit','closed','closed','','799-revision-v1','','','2024-11-22 03:01:40','2024-11-22 03:01:40','',799,'https://fe2tech.com/?p=2551',0,'revision','',0),(2552,1,'2024-11-22 03:01:40','2024-11-22 03:01:40','<a href=\"http://fe2tech.com/\">\n							<img width=\"208\" height=\"208\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/logo.jpg\" alt=\"\" />								</a>\n			    <ul>\n                    <li>\n            	   Office: 43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City                \n           </li>\n                    <li>\n            	   Factory: 176/9 Nguyen Thi Tuoi, Tan Phuoc Quarter, Tan Binh Ward, Di An City, Binh Duong                \n           </li>\n                    <li>\n            	   0968860386                \n           </li>\n            </ul>\n    <h3>\n        Menu\n        <i></i>\n    </h3>\n        <ul id=\"menu-main-menu-2\"><li><a href=\"https://fe2tech.com/\">Home</a></li>\n<li><a href=\"https://fe2tech.com/gallery/\">Gallery</a></li>\n<li><a href=\"https://fe2tech.com/services/\">Services</a></li>\n<li><a href=\"https://fe2tech.com/team-partners/\">Team &amp; Partners</a></li>\n<li><a href=\"https://fe2tech.com/about/\">About Us</a></li>\n</ul>    \n    <h3>\n        Open Hours\n        <i></i>\n    </h3>\n		Mon - Sat: 8 am - 5 pm,<br/>\nSunday: CLOSED		\n    <h3>\n        Newsletter\n        <i></i>\n    </h3>\n		Sign up for alerts, our latest blogs, thoughts, and insights.		\n        <form method=\"post\" action=\"https://fe2tech.com/wp-admin/admin-ajax.php?action=tnp&amp;na=s\" style=\"\">\n<input type=\"hidden\" name=\"nlang\" value=\"\">\n<label for=\"tnp-3\">Your mail address</label>\n<input type=\"email\" name=\"ne\" id=\"tnp-3\" value=\"\" placeholder=\"\" required>\n<input type=\"submit\" value=\"Subscribe\" style=\"\">\n</form>    \n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n		<p>Copyright @2024 of Far East High Tech Ltd. Co.</p>','Footer','','inherit','closed','closed','','799-revision-v1','','','2024-11-22 03:01:40','2024-11-22 03:01:40','',799,'https://fe2tech.com/?p=2552',0,'revision','',0),(2555,1,'2024-11-25 03:43:36','2024-11-25 03:43:36','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We assess plans and provide tailored machinery.    </h3>\n		<p>Our company’s strength lies in our team, who have developed groundbreaking machinery and equipment.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Awards Winner\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Satisfied Clients\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Active projects\n													<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_14479.png\" alt=\"\" />													\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n    	    	198 Award-winning machinery and equipment manufacturing company.\n	    <h3>\n        We help you build your vision with our machinery.    </h3>\n		<p>We approach every project with precision and value clear, simple communication.</p>		\n                                            Engineering\n                                        85%\n                                            Design\n                                        80%\n                                            Production\n                                        90%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/precision-measurement-services/\">Precision Measurement Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/precision-measurement-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/planing-service/\">Planing Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/planing-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Turning and Milling Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"182\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We help businesses thrive by providing the latest machinery technology.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20Street%20No.%204%2C%20Quarter%202%2C%20Binh%20Chieu%20Ward%2C%20Thu%20Duc%20City%2C%20Ho%20Chi%20Minh%20City&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\"\n					aria-label=\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"140\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-11-25 03:43:36','2024-11-25 03:43:36','',9,'https://fe2tech.com/?p=2555',0,'revision','',0),(2556,1,'2024-11-25 03:43:37','2024-11-25 03:43:37','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We assess plans and provide tailored machinery.    </h3>\n		<p>Our company’s strength lies in our team, who have developed groundbreaking machinery and equipment.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Awards Winner\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Satisfied Clients\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Active projects\n													<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_14479.png\" alt=\"\" />													\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n    	    	198 Award-winning machinery and equipment manufacturing company.\n	    <h3>\n        We help you build your vision with our machinery.    </h3>\n		<p>We approach every project with precision and value clear, simple communication.</p>		\n                                            Engineering\n                                        85%\n                                            Design\n                                        80%\n                                            Production\n                                        90%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/precision-measurement-services/\">Precision Measurement Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/precision-measurement-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/planing-service/\">Planing Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/planing-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Turning and Milling Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"182\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We help businesses thrive by providing the latest machinery technology.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20Street%20No.%204%2C%20Quarter%202%2C%20Binh%20Chieu%20Ward%2C%20Thu%20Duc%20City%2C%20Ho%20Chi%20Minh%20City&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\"\n					aria-label=\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"140\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-11-25 03:43:37','2024-11-25 03:43:37','',9,'https://fe2tech.com/?p=2556',0,'revision','',0),(2557,1,'2024-11-25 03:43:38','2024-11-25 03:43:38','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.    </h3>\n		<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Customer\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Personnel\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Oders per year\n													<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_14479.png\" alt=\"\" />													\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n    	    	198 Award-winning machinery and equipment manufacturing company.\n	    <h3>\n        We help you build your vision with our machinery.    </h3>\n		<p>We approach every project with precision and value clear, simple communication.</p>		\n                                            Engineering\n                                        85%\n                                            Design\n                                        80%\n                                            Production\n                                        90%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/precision-measurement-services/\">Precision Measurement Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/precision-measurement-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/planing-service/\">Planing Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/planing-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Turning and Milling Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"161\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We help businesses thrive by providing the latest machinery technology.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20Street%20No.%204%2C%20Quarter%202%2C%20Binh%20Chieu%20Ward%2C%20Thu%20Duc%20City%2C%20Ho%20Chi%20Minh%20City&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\"\n					aria-label=\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"155\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-11-25 03:43:38','2024-11-25 03:43:38','',9,'https://fe2tech.com/?p=2557',0,'revision','',0),(2559,1,'2024-11-25 04:12:52','2024-11-25 04:12:52','','f7bd4031-52df-4a12-b04c-ff5602d3b72a','','inherit','open','closed','','f7bd4031-52df-4a12-b04c-ff5602d3b72a','','','2024-11-25 04:12:52','2024-11-25 04:12:52','',9,'https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg',0,'attachment','image/jpeg',0),(2560,1,'2024-11-25 04:14:32','2024-11-25 04:14:32','','标题-1','','inherit','open','closed','','%e6%a0%87%e9%a2%98-1','','','2024-11-25 04:14:32','2024-11-25 04:14:32','',9,'https://fe2tech.com/wp-content/uploads/2024/11/标题-1.jpg',0,'attachment','image/jpeg',0),(2561,1,'2024-11-25 04:14:39','2024-11-25 04:14:39','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.    </h3>\n		<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Customer\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Personnel\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Oders per year\n													<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_14479.png\" alt=\"\" />													\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n    	    	198 Award-winning machinery and equipment manufacturing company.\n	    <h3>\n        We help you build your vision with our machinery.    </h3>\n		<p>We approach every project with precision and value clear, simple communication.</p>		\n                                            Engineering\n                                        85%\n                                            Design\n                                        80%\n                                            Production\n                                        90%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/precision-measurement-services/\">Precision Measurement Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/precision-measurement-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/planing-service/\">Planing Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/planing-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Turning and Milling Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"161\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We help businesses thrive by providing the latest machinery technology.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20Street%20No.%204%2C%20Quarter%202%2C%20Binh%20Chieu%20Ward%2C%20Thu%20Duc%20City%2C%20Ho%20Chi%20Minh%20City&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\"\n					aria-label=\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"155\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-11-25 04:14:39','2024-11-25 04:14:39','',9,'https://fe2tech.com/?p=2561',0,'revision','',0),(2562,1,'2024-11-25 04:14:40','2024-11-25 04:14:40','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.    </h3>\n		<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Customer\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Personnel\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Oders per year\n													<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_14479.png\" alt=\"\" />													\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n    	    	198 Award-winning machinery and equipment manufacturing company.\n	    <h3>\n        We help you build your vision with our machinery.    </h3>\n		<p>We approach every project with precision and value clear, simple communication.</p>		\n                                            Engineering\n                                        85%\n                                            Design\n                                        80%\n                                            Production\n                                        90%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/precision-measurement-services/\">Precision Measurement Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/precision-measurement-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/planing-service/\">Planing Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/planing-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Turning and Milling Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"161\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We help businesses thrive by providing the latest machinery technology.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20Street%20No.%204%2C%20Quarter%202%2C%20Binh%20Chieu%20Ward%2C%20Thu%20Duc%20City%2C%20Ho%20Chi%20Minh%20City&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\"\n					aria-label=\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"155\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-11-25 04:14:40','2024-11-25 04:14:40','',9,'https://fe2tech.com/?p=2562',0,'revision','',0),(2563,1,'2024-11-25 04:14:40','2024-11-25 04:14:40','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.    </h3>\n		<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Customer\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Personnel\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Oders per year\n													<img width=\"900\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/标题-1.jpg\" alt=\"\" />													\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />\n	    <h3>\n        We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.    </h3>\n		<p>Goals to achieve by 2026:</p>		\n                                            East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\n                                        30%\n                                            Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\n                                        10%\n                                            United States: Products related to medical instruments, optics, and audio equipment.\n                                        30%\n                                            Australia: Sheet metal products.\n                                        8%\n                                            Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\n                                        20%\n                                            Other markets and products.\n                                        2%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/precision-measurement-services/\">Precision Measurement Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/precision-measurement-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/planing-service/\">Planing Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/planing-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Turning and Milling Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"147\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We help businesses thrive by providing the latest machinery technology.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20Street%20No.%204%2C%20Quarter%202%2C%20Binh%20Chieu%20Ward%2C%20Thu%20Duc%20City%2C%20Ho%20Chi%20Minh%20City&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\"\n					aria-label=\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"230\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-11-25 04:14:40','2024-11-25 04:14:40','',9,'https://fe2tech.com/?p=2563',0,'revision','',0),(2565,1,'2024-11-25 04:21:11','2024-11-25 04:21:11','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.    </h3>\n		<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Customer\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Personnel\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Oders per year\n													<img width=\"900\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/标题-1.jpg\" alt=\"\" />													\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />\n	    <h3>\n        We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.    </h3>\n		<p>Goals to achieve by 2026:</p>		\n                                            East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\n                                        30%\n                                            Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\n                                        10%\n                                            United States: Products related to medical instruments, optics, and audio equipment.\n                                        30%\n                                            Australia: Sheet metal products.\n                                        8%\n                                            Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\n                                        20%\n                                            Other markets and products.\n                                        2%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/precision-measurement-services/\">Precision Measurement Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/precision-measurement-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/planing-service/\">Planing Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/planing-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Turning and Milling Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"147\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We help businesses thrive by providing the latest machinery technology.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20Street%20No.%204%2C%20Quarter%202%2C%20Binh%20Chieu%20Ward%2C%20Thu%20Duc%20City%2C%20Ho%20Chi%20Minh%20City&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\"\n					aria-label=\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"230\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-11-25 04:21:11','2024-11-25 04:21:11','',9,'https://fe2tech.com/?p=2565',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (2566,1,'2024-11-25 04:21:12','2024-11-25 04:21:12','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.    </h3>\n		<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Customer\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Personnel\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Oders per year\n													<img width=\"900\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/标题-1.jpg\" alt=\"\" />													\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />\n	    <h3>\n        We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.    </h3>\n		<p>Goals to achieve by 2026:</p>		\n                                            East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\n                                        30%\n                                            Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\n                                        10%\n                                            United States: Products related to medical instruments, optics, and audio equipment.\n                                        30%\n                                            Australia: Sheet metal products.\n                                        8%\n                                            Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\n                                        20%\n                                            Other markets and products.\n                                        2%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/precision-measurement-services/\">Precision Measurement Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/precision-measurement-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/planing-service/\">Planing Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/planing-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Turning and Milling Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"147\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We help businesses thrive by providing the latest machinery technology.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20Street%20No.%204%2C%20Quarter%202%2C%20Binh%20Chieu%20Ward%2C%20Thu%20Duc%20City%2C%20Ho%20Chi%20Minh%20City&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\"\n					aria-label=\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"230\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-11-25 04:21:12','2024-11-25 04:21:12','',9,'https://fe2tech.com/?p=2566',0,'revision','',0),(2567,1,'2024-11-25 04:21:12','2024-11-25 04:21:12','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.    </h3>\n		<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Customer\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Personnel\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Oders per year\n													<img width=\"900\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/标题-1.jpg\" alt=\"\" />													\n		<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>		\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />\n	    <h3>\n        We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.    </h3>\n		<p>Goals to achieve by 2026:</p>		\n                                            East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\n                                        30%\n                                            Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\n                                        10%\n                                            United States: Products related to medical instruments, optics, and audio equipment.\n                                        30%\n                                            Australia: Sheet metal products.\n                                        8%\n                                            Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\n                                        20%\n                                            Other markets and products.\n                                        2%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/precision-measurement-services/\">Precision Measurement Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/precision-measurement-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/planing-service/\">Planing Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/planing-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Turning and Milling Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"110\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We help businesses thrive by providing the latest machinery technology.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20Street%20No.%204%2C%20Quarter%202%2C%20Binh%20Chieu%20Ward%2C%20Thu%20Duc%20City%2C%20Ho%20Chi%20Minh%20City&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\"\n					aria-label=\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"103\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-11-25 04:21:12','2024-11-25 04:21:12','',9,'https://fe2tech.com/?p=2567',0,'revision','',0),(2568,1,'2024-11-25 04:21:53','2024-11-25 04:21:53','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.    </h3>\n		<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Customer\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Personnel\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Oders per year\n													<img width=\"900\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/标题-1.jpg\" alt=\"\" />													\n		<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>		\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />\n	    <h3>\n        We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.    </h3>\n		<p>Goals to achieve by 2026:</p>		\n                                            East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\n                                        30%\n                                            Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\n                                        10%\n                                            United States: Products related to medical instruments, optics, and audio equipment.\n                                        30%\n                                            Australia: Sheet metal products.\n                                        8%\n                                            Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\n                                        20%\n                                            Other markets and products.\n                                        2%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/precision-measurement-services/\">Precision Measurement Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/precision-measurement-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/planing-service/\">Planing Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/planing-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Turning and Milling Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"110\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We help businesses thrive by providing the latest machinery technology.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20Street%20No.%204%2C%20Quarter%202%2C%20Binh%20Chieu%20Ward%2C%20Thu%20Duc%20City%2C%20Ho%20Chi%20Minh%20City&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\"\n					aria-label=\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"103\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-11-25 04:21:53','2024-11-25 04:21:53','',9,'https://fe2tech.com/?p=2568',0,'revision','',0),(2569,1,'2024-11-25 04:21:54','2024-11-25 04:21:54','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.    </h3>\n		<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Customer\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Personnel\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Oders per year\n													<img width=\"900\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/标题-1.jpg\" alt=\"\" />													\n		<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>		\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />\n	    <h3>\n        We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.    </h3>\n		<p>Goals to achieve by 2026:</p>		\n                                            East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\n                                        30%\n                                            Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\n                                        10%\n                                            United States: Products related to medical instruments, optics, and audio equipment.\n                                        30%\n                                            Australia: Sheet metal products.\n                                        8%\n                                            Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\n                                        20%\n                                            Other markets and products.\n                                        2%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/precision-measurement-services/\">Precision Measurement Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/precision-measurement-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/planing-service/\">Planing Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/planing-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Turning and Milling Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"110\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We help businesses thrive by providing the latest machinery technology.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20Street%20No.%204%2C%20Quarter%202%2C%20Binh%20Chieu%20Ward%2C%20Thu%20Duc%20City%2C%20Ho%20Chi%20Minh%20City&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\"\n					aria-label=\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"103\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-11-25 04:21:54','2024-11-25 04:21:54','',9,'https://fe2tech.com/?p=2569',0,'revision','',0),(2570,1,'2024-11-25 04:21:54','2024-11-25 04:21:54','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.    </h3>\n		<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Customer\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Personnel\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Oders per year\n													<img width=\"900\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/标题-1.jpg\" alt=\"\" />													\n		<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>		\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />\n	    <h3>\n        We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.    </h3>\n		<p>Goals to achieve by 2026:</p>		\n                                            East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\n                                        30%\n                                            Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\n                                        10%\n                                            United States: Products related to medical instruments, optics, and audio equipment.\n                                        30%\n                                            Australia: Sheet metal products.\n                                        8%\n                                            Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\n                                        20%\n                                            Other markets and products.\n                                        2%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/precision-measurement-services/\">Precision Measurement Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/precision-measurement-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/planing-service/\">Planing Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/planing-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Turning and Milling Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"113\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We help businesses thrive by providing the latest machinery technology.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20Street%20No.%204%2C%20Quarter%202%2C%20Binh%20Chieu%20Ward%2C%20Thu%20Duc%20City%2C%20Ho%20Chi%20Minh%20City&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\"\n					aria-label=\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"7\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-11-25 04:21:54','2024-11-25 04:21:54','',9,'https://fe2tech.com/?p=2570',0,'revision','',0),(2571,1,'2024-11-25 04:25:18','2024-11-25 04:25:18','','huong-dan-tu-order-alibaba-chi-t','','inherit','open','closed','','huong-dan-tu-order-alibaba-chi-t','','','2024-11-25 04:25:18','2024-11-25 04:25:18','',9,'https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg',0,'attachment','image/jpeg',0),(2572,1,'2024-11-25 04:25:23','2024-11-25 04:25:23','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.    </h3>\n		<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Customer\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Personnel\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Oders per year\n													<img width=\"900\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/标题-1.jpg\" alt=\"\" />													\n		<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>		\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />\n	    <h3>\n        We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.    </h3>\n		<p>Goals to achieve by 2026:</p>		\n                                            East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\n                                        30%\n                                            Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\n                                        10%\n                                            United States: Products related to medical instruments, optics, and audio equipment.\n                                        30%\n                                            Australia: Sheet metal products.\n                                        8%\n                                            Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\n                                        20%\n                                            Other markets and products.\n                                        2%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/precision-measurement-services/\">Precision Measurement Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/precision-measurement-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/planing-service/\">Planing Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/planing-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Turning and Milling Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"113\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We help businesses thrive by providing the latest machinery technology.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20Street%20No.%204%2C%20Quarter%202%2C%20Binh%20Chieu%20Ward%2C%20Thu%20Duc%20City%2C%20Ho%20Chi%20Minh%20City&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\"\n					aria-label=\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"7\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-11-25 04:25:23','2024-11-25 04:25:23','',9,'https://fe2tech.com/?p=2572',0,'revision','',0),(2573,1,'2024-11-25 04:25:24','2024-11-25 04:25:24','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.    </h3>\n		<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Customer\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Personnel\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Oders per year\n													<img width=\"900\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/标题-1.jpg\" alt=\"\" />													\n		<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>		\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />\n	    <h3>\n        We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.    </h3>\n		<p>Goals to achieve by 2026:</p>		\n                                            East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\n                                        30%\n                                            Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\n                                        10%\n                                            United States: Products related to medical instruments, optics, and audio equipment.\n                                        30%\n                                            Australia: Sheet metal products.\n                                        8%\n                                            Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\n                                        20%\n                                            Other markets and products.\n                                        2%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/precision-measurement-services/\">Precision Measurement Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/precision-measurement-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/planing-service/\">Planing Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/planing-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Turning and Milling Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"113\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We help businesses thrive by providing the latest machinery technology.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20Street%20No.%204%2C%20Quarter%202%2C%20Binh%20Chieu%20Ward%2C%20Thu%20Duc%20City%2C%20Ho%20Chi%20Minh%20City&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\"\n					aria-label=\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"7\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-11-25 04:25:24','2024-11-25 04:25:24','',9,'https://fe2tech.com/?p=2573',0,'revision','',0),(2574,1,'2024-11-25 04:25:24','2024-11-25 04:25:24','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.    </h3>\n		<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Customer\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Personnel\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Oders per year\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>		\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />\n	    <h3>\n        We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.    </h3>\n		<p>Goals to achieve by 2026:</p>		\n                                            East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\n                                        30%\n                                            Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\n                                        10%\n                                            United States: Products related to medical instruments, optics, and audio equipment.\n                                        30%\n                                            Australia: Sheet metal products.\n                                        8%\n                                            Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\n                                        20%\n                                            Other markets and products.\n                                        2%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/precision-measurement-services/\">Precision Measurement Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/precision-measurement-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/planing-service/\">Planing Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/planing-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Turning and Milling Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"10\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We help businesses thrive by providing the latest machinery technology.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20Street%20No.%204%2C%20Quarter%202%2C%20Binh%20Chieu%20Ward%2C%20Thu%20Duc%20City%2C%20Ho%20Chi%20Minh%20City&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\"\n					aria-label=\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"43\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-11-25 04:25:24','2024-11-25 04:25:24','',9,'https://fe2tech.com/?p=2574',0,'revision','',0),(2575,1,'2024-11-25 04:31:29','2024-11-25 04:31:29','','CNC kim loại','CNC kim loại','inherit','open','closed','','cnc-kim-loai','','','2024-11-25 04:31:29','2024-11-25 04:31:29','',0,'https://fe2tech.com/wp-content/uploads/2024/11/Gia-cong-cnc-kim-loai-mang-lai-nhieu-hieu-qua-cao.jpg',0,'attachment','image/jpeg',0),(2576,1,'2024-11-25 04:32:50','2024-11-25 04:32:50','','z5730877816945_ae68a9fd53f6d9e264072dd5b7ccc9a4','','inherit','open','closed','','z5730877816945_ae68a9fd53f6d9e264072dd5b7ccc9a4','','','2024-11-25 04:32:50','2024-11-25 04:32:50','',0,'https://fe2tech.com/wp-content/uploads/2024/11/z5730877816945_ae68a9fd53f6d9e264072dd5b7ccc9a4.jpg',0,'attachment','image/jpeg',0),(2577,1,'2024-11-25 04:34:05','2024-11-25 04:34:05','','z5730877039706_bc9920fe3c6b725877e6f8d18f0bf53b','','inherit','open','closed','','z5730877039706_bc9920fe3c6b725877e6f8d18f0bf53b','','','2024-11-25 04:34:05','2024-11-25 04:34:05','',0,'https://fe2tech.com/wp-content/uploads/2024/11/z5730877039706_bc9920fe3c6b725877e6f8d18f0bf53b.jpg',0,'attachment','image/jpeg',0),(2578,1,'2024-11-25 04:34:42','2024-11-25 04:34:42','','FEHT','','inherit','open','closed','','feht','','','2024-11-25 04:34:42','2024-11-25 04:34:42','',0,'https://fe2tech.com/wp-content/uploads/2024/11/FEHT.png',0,'attachment','image/png',0),(2579,1,'2024-11-25 04:35:25','2024-11-25 04:35:25','','z5730877410081_d79c165708666da13a4697b171bd98f9','','inherit','open','closed','','z5730877410081_d79c165708666da13a4697b171bd98f9','','','2024-11-25 04:35:25','2024-11-25 04:35:25','',0,'https://fe2tech.com/wp-content/uploads/2024/11/z5730877410081_d79c165708666da13a4697b171bd98f9.jpg',0,'attachment','image/jpeg',0),(2580,1,'2024-11-25 04:53:40','2024-11-25 04:53:40','<a href=\"http://fe2tech.com/\">\n							<img width=\"208\" height=\"208\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/logo.jpg\" alt=\"\" />								</a>\n			    <ul>\n                    <li>\n            	   Office: 43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City                \n           </li>\n                    <li>\n            	   Factory: 176/9 Nguyen Thi Tuoi, Tan Phuoc Quarter, Tan Binh Ward, Di An City, Binh Duong                \n           </li>\n                    <li>\n            	   0968860386                \n           </li>\n            </ul>\n    <h3>\n        Menu\n        <i></i>\n    </h3>\n        <ul id=\"menu-main-menu-2\"><li><a href=\"https://fe2tech.com/\">Home</a></li>\n<li><a href=\"https://fe2tech.com/gallery/\">Gallery</a></li>\n<li><a href=\"https://fe2tech.com/services/\">Services</a></li>\n<li><a href=\"https://fe2tech.com/team-partners/\">Team &amp; Partners</a></li>\n<li><a href=\"https://fe2tech.com/about/\">About Us</a></li>\n</ul>    \n    <h3>\n        Open Hours\n        <i></i>\n    </h3>\n		Mon - Sat: 8 am - 5 pm,<br/>\nSunday: CLOSED		\n    <h3>\n        Newsletter\n        <i></i>\n    </h3>\n		Sign up for alerts, our latest blogs, thoughts, and insights.		\n        <form method=\"post\" action=\"https://fe2tech.com/wp-admin/admin-ajax.php?action=tnp&amp;na=s\" style=\"\">\n<input type=\"hidden\" name=\"nlang\" value=\"\">\n<label for=\"tnp-3\">Your mail address</label>\n<input type=\"email\" name=\"ne\" id=\"tnp-3\" value=\"\" placeholder=\"\" required>\n<input type=\"submit\" value=\"Subscribe\" style=\"\">\n</form>    \n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n		<p>Copyright @2024 of Far East High Tech Ltd. Co.</p>','Footer','','inherit','closed','closed','','799-revision-v1','','','2024-11-25 04:53:40','2024-11-25 04:53:40','',799,'https://fe2tech.com/?p=2580',0,'revision','',0),(2581,1,'2024-11-25 04:53:41','2024-11-25 04:53:41','<a href=\"http://fe2tech.com/\">\n							<img width=\"208\" height=\"208\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/logo.jpg\" alt=\"\" />								</a>\n			    <ul>\n                    <li>\n            	   Office: 43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City                \n           </li>\n                    <li>\n            	   Factory: 176/9 Nguyen Thi Tuoi, Tan Phuoc Quarter, Tan Binh Ward, Di An City, Binh Duong                \n           </li>\n                    <li>\n            	   0968860386                \n           </li>\n            </ul>\n    <h3>\n        Menu\n        <i></i>\n    </h3>\n        <ul id=\"menu-main-menu-2\"><li><a href=\"https://fe2tech.com/\">Home</a></li>\n<li><a href=\"https://fe2tech.com/gallery/\">Gallery</a></li>\n<li><a href=\"https://fe2tech.com/services/\">Services</a></li>\n<li><a href=\"https://fe2tech.com/team-partners/\">Team &amp; Partners</a></li>\n<li><a href=\"https://fe2tech.com/about/\">About Us</a></li>\n</ul>    \n    <h3>\n        Open Hours\n        <i></i>\n    </h3>\n		Mon - Sat: 8 am - 5 pm,<br/>\nSunday: CLOSED		\n    <h3>\n        Newsletter\n        <i></i>\n    </h3>\n		Sign up for alerts, our latest blogs, thoughts, and insights.		\n        <form method=\"post\" action=\"https://fe2tech.com/wp-admin/admin-ajax.php?action=tnp&amp;na=s\" style=\"\">\n<input type=\"hidden\" name=\"nlang\" value=\"\">\n<label for=\"tnp-3\">Your mail address</label>\n<input type=\"email\" name=\"ne\" id=\"tnp-3\" value=\"\" placeholder=\"\" required>\n<input type=\"submit\" value=\"Subscribe\" style=\"\">\n</form>    \n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n		<p>Copyright @2024 of Far East High Tech Ltd. Co.</p>','Footer','','inherit','closed','closed','','799-revision-v1','','','2024-11-25 04:53:41','2024-11-25 04:53:41','',799,'https://fe2tech.com/?p=2581',0,'revision','',0),(2582,1,'2024-11-25 04:53:41','2024-11-25 04:53:41','<a href=\"http://fe2tech.com/\">\n							<img width=\"208\" height=\"208\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/logo.jpg\" alt=\"\" />								</a>\n			    <ul>\n                    <li>\n            	   Office: 43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City                \n           </li>\n                    <li>\n            	   Factory: 176/9 Nguyen Thi Tuoi, Tan Phuoc Quarter, Tan Binh Ward, Di An City, Binh Duong                \n           </li>\n                    <li>\n            	   0968860386                \n           </li>\n            </ul>\n    <h3>\n        Menu\n        <i></i>\n    </h3>\n        <ul id=\"menu-main-menu-2\"><li><a href=\"https://fe2tech.com/\">Home</a></li>\n<li><a href=\"https://fe2tech.com/gallery/\">Product</a></li>\n<li><a href=\"https://fe2tech.com/services/\">Service</a></li>\n<li><a href=\"https://fe2tech.com/team-partners/\">Team &#038; Member Companies</a></li>\n<li><a href=\"https://fe2tech.com/about/\">About Us</a></li>\n</ul>    \n    <h3>\n        Open Hours\n        <i></i>\n    </h3>\n		<p>Mon - Sun: 24/24</p>		\n    <h3>\n        Newsletter\n        <i></i>\n    </h3>\n		Sign up for alerts, our latest blogs, thoughts, and insights.		\n        <form method=\"post\" action=\"https://fe2tech.com/wp-admin/admin-ajax.php?action=tnp&amp;na=s\" style=\"\">\n<input type=\"hidden\" name=\"nlang\" value=\"\">\n<label for=\"tnp-3\">Your mail address</label>\n<input type=\"email\" name=\"ne\" id=\"tnp-3\" value=\"\" placeholder=\"\" required>\n<input type=\"submit\" value=\"Subscribe\" style=\"\">\n</form>    \n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n		<p>Copyright @2024 of Far East High Tech Ltd. Co.</p>','Footer','','inherit','closed','closed','','799-revision-v1','','','2024-11-25 04:53:41','2024-11-25 04:53:41','',799,'https://fe2tech.com/?p=2582',0,'revision','',0),(2583,1,'2024-11-25 04:54:04','2024-11-25 04:54:04','<a href=\"http://fe2tech.com/\">\n							<img width=\"208\" height=\"208\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/logo.jpg\" alt=\"\" />								</a>\n			    <ul>\n                    <li>\n            	   Office: 43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City                \n           </li>\n                    <li>\n            	   Factory: 176/9 Nguyen Thi Tuoi, Tan Phuoc Quarter, Tan Binh Ward, Di An City, Binh Duong                \n           </li>\n                    <li>\n            	   0968860386                \n           </li>\n            </ul>\n    <h3>\n        Menu\n        <i></i>\n    </h3>\n        <ul id=\"menu-main-menu-2\"><li><a href=\"https://fe2tech.com/\">Home</a></li>\n<li><a href=\"https://fe2tech.com/gallery/\">Product</a></li>\n<li><a href=\"https://fe2tech.com/services/\">Service</a></li>\n<li><a href=\"https://fe2tech.com/team-partners/\">Team &#038; Member Companies</a></li>\n<li><a href=\"https://fe2tech.com/about/\">About Us</a></li>\n</ul>    \n    <h3>\n        Open Hours\n        <i></i>\n    </h3>\n		<p>Mon - Sun: 24/24</p>		\n    <h3>\n        Newsletter\n        <i></i>\n    </h3>\n		Sign up for alerts, our latest blogs, thoughts, and insights.		\n        <form method=\"post\" action=\"https://fe2tech.com/wp-admin/admin-ajax.php?action=tnp&amp;na=s\" style=\"\">\n<input type=\"hidden\" name=\"nlang\" value=\"\">\n<label for=\"tnp-3\">Your mail address</label>\n<input type=\"email\" name=\"ne\" id=\"tnp-3\" value=\"\" placeholder=\"\" required>\n<input type=\"submit\" value=\"Subscribe\" style=\"\">\n</form>    \n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n		<p>Copyright @2024 of Far East High Tech Ltd. Co.</p>','Footer','','inherit','closed','closed','','799-revision-v1','','','2024-11-25 04:54:04','2024-11-25 04:54:04','',799,'https://fe2tech.com/?p=2583',0,'revision','',0),(2584,1,'2024-11-25 04:54:05','2024-11-25 04:54:05','<a href=\"http://fe2tech.com/\">\n							<img width=\"208\" height=\"208\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/logo.jpg\" alt=\"\" />								</a>\n			    <ul>\n                    <li>\n            	   Office: 43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City                \n           </li>\n                    <li>\n            	   Factory: 176/9 Nguyen Thi Tuoi, Tan Phuoc Quarter, Tan Binh Ward, Di An City, Binh Duong                \n           </li>\n                    <li>\n            	   0968860386                \n           </li>\n            </ul>\n    <h3>\n        Menu\n        <i></i>\n    </h3>\n        <ul id=\"menu-main-menu-2\"><li><a href=\"https://fe2tech.com/\">Home</a></li>\n<li><a href=\"https://fe2tech.com/gallery/\">Product</a></li>\n<li><a href=\"https://fe2tech.com/services/\">Service</a></li>\n<li><a href=\"https://fe2tech.com/team-partners/\">Team &#038; Member Companies</a></li>\n<li><a href=\"https://fe2tech.com/about/\">About Us</a></li>\n</ul>    \n    <h3>\n        Open Hours\n        <i></i>\n    </h3>\n		<p>Mon - Sun: 24/24</p>		\n    <h3>\n        Newsletter\n        <i></i>\n    </h3>\n		Sign up for alerts, our latest blogs, thoughts, and insights.		\n        <form method=\"post\" action=\"https://fe2tech.com/wp-admin/admin-ajax.php?action=tnp&amp;na=s\" style=\"\">\n<input type=\"hidden\" name=\"nlang\" value=\"\">\n<label for=\"tnp-3\">Your mail address</label>\n<input type=\"email\" name=\"ne\" id=\"tnp-3\" value=\"\" placeholder=\"\" required>\n<input type=\"submit\" value=\"Subscribe\" style=\"\">\n</form>    \n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n		<p>Copyright @2024 of Far East High Tech Ltd. Co.</p>','Footer','','inherit','closed','closed','','799-revision-v1','','','2024-11-25 04:54:05','2024-11-25 04:54:05','',799,'https://fe2tech.com/?p=2584',0,'revision','',0),(2585,1,'2024-11-25 04:54:05','2024-11-25 04:54:05','<a href=\"http://fe2tech.com/\">\n							<img width=\"208\" height=\"208\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/logo.jpg\" alt=\"\" />								</a>\n			    <ul>\n                    <li>\n            	   Factory 1: Khac Niem Industrial Cluster, Khac Niem Ward, Bac Ninh City, Bac Ninh Province                \n           </li>\n                    <li>\n            	   Factory 2: 176/9 Nguyen Thi Tuoi, Tan Phuoc Quarter, Tan Binh Ward, Di An City, Binh Duong                \n           </li>\n                    <li>\n            	   0968860386                \n           </li>\n            </ul>\n    <h3>\n        Menu\n        <i></i>\n    </h3>\n        <ul id=\"menu-main-menu-2\"><li><a href=\"https://fe2tech.com/\">Home</a></li>\n<li><a href=\"https://fe2tech.com/gallery/\">Product</a></li>\n<li><a href=\"https://fe2tech.com/services/\">Service</a></li>\n<li><a href=\"https://fe2tech.com/team-partners/\">Team &#038; Member Companies</a></li>\n<li><a href=\"https://fe2tech.com/about/\">About Us</a></li>\n</ul>    \n    <h3>\n        Open Hours\n        <i></i>\n    </h3>\n		<p>Mon - Sun: 24/24</p>		\n    <h3>\n        Newsletter\n        <i></i>\n    </h3>\n		Sign up for alerts, our latest blogs, thoughts, and insights.		\n        <form method=\"post\" action=\"https://fe2tech.com/wp-admin/admin-ajax.php?action=tnp&amp;na=s\" style=\"\">\n<input type=\"hidden\" name=\"nlang\" value=\"\">\n<label for=\"tnp-3\">Your mail address</label>\n<input type=\"email\" name=\"ne\" id=\"tnp-3\" value=\"\" placeholder=\"\" required>\n<input type=\"submit\" value=\"Subscribe\" style=\"\">\n</form>    \n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n		<p>Copyright @2024 of Far East High Tech Ltd. Co.</p>','Footer','','inherit','closed','closed','','799-revision-v1','','','2024-11-25 04:54:05','2024-11-25 04:54:05','',799,'https://fe2tech.com/?p=2585',0,'revision','',0),(2586,1,'2024-11-25 08:04:01','2024-11-25 08:04:01','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.    </h3>\n		<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Customer\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Personnel\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Oders per year\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>		\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />\n	    <h3>\n        We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.    </h3>\n		<p>Goals to achieve by 2026:</p>		\n                                            East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\n                                        30%\n                                            Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\n                                        10%\n                                            United States: Products related to medical instruments, optics, and audio equipment.\n                                        30%\n                                            Australia: Sheet metal products.\n                                        8%\n                                            Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\n                                        20%\n                                            Other markets and products.\n                                        2%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/precision-measurement-services/\">Precision Measurement Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/precision-measurement-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/planing-service/\">Planing Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/planing-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Turning and Milling Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"10\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We help businesses thrive by providing the latest machinery technology.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20Street%20No.%204%2C%20Quarter%202%2C%20Binh%20Chieu%20Ward%2C%20Thu%20Duc%20City%2C%20Ho%20Chi%20Minh%20City&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\"\n					aria-label=\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"43\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-11-25 08:04:01','2024-11-25 08:04:01','',9,'https://fe2tech.com/?p=2586',0,'revision','',0),(2587,1,'2024-11-25 08:04:02','2024-11-25 08:04:02','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.    </h3>\n		<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Customer\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Personnel\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Oders per year\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>		\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />\n	    <h3>\n        We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.    </h3>\n		<p>Goals to achieve by 2026:</p>		\n                                            East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\n                                        30%\n                                            Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\n                                        10%\n                                            United States: Products related to medical instruments, optics, and audio equipment.\n                                        30%\n                                            Australia: Sheet metal products.\n                                        8%\n                                            Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\n                                        20%\n                                            Other markets and products.\n                                        2%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/precision-measurement-services/\">Precision Measurement Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/precision-measurement-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/planing-service/\">Planing Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/planing-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Turning and Milling Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"10\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We help businesses thrive by providing the latest machinery technology.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20Street%20No.%204%2C%20Quarter%202%2C%20Binh%20Chieu%20Ward%2C%20Thu%20Duc%20City%2C%20Ho%20Chi%20Minh%20City&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\"\n					aria-label=\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"43\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-11-25 08:04:02','2024-11-25 08:04:02','',9,'https://fe2tech.com/?p=2587',0,'revision','',0),(2588,1,'2024-11-25 08:04:03','2024-11-25 08:04:03','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.    </h3>\n		<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Customer\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Personnel\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Oders per year\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>		\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />\n	    <h3>\n        We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.    </h3>\n		<p>Goals to achieve by 2026:</p>		\n                                            East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\n                                        30%\n                                            Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\n                                        10%\n                                            United States: Products related to medical instruments, optics, and audio equipment.\n                                        30%\n                                            Australia: Sheet metal products.\n                                        8%\n                                            Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\n                                        20%\n                                            Other markets and products.\n                                        2%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/precision-measurement-services/\">Precision Measurement Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/precision-measurement-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/planing-service/\">Planing Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/planing-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Turning and Milling Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"3\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We help businesses thrive by providing the latest machinery technology.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20Street%20No.%204%2C%20Quarter%202%2C%20Binh%20Chieu%20Ward%2C%20Thu%20Duc%20City%2C%20Ho%20Chi%20Minh%20City&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\"\n					aria-label=\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"133\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-11-25 08:04:03','2024-11-25 08:04:03','',9,'https://fe2tech.com/?p=2588',0,'revision','',0),(2589,1,'2024-11-25 08:06:46','2024-11-25 08:06:46','','Finished-CNC-milled-parts-showcasing-the-precision-and-versatility-of-the-process','','inherit','open','closed','','finished-cnc-milled-parts-showcasing-the-precision-and-versatility-of-the-process','','','2024-11-25 08:06:46','2024-11-25 08:06:46','',0,'https://fe2tech.com/wp-content/uploads/2024/11/Finished-CNC-milled-parts-showcasing-the-precision-and-versatility-of-the-process.png',0,'attachment','image/png',0),(2590,1,'2024-11-25 08:07:14','2024-11-25 08:07:14','','z5952363746762_6241ac4c6625581b5db9b24a1ee05f68','','inherit','open','closed','','z5952363746762_6241ac4c6625581b5db9b24a1ee05f68','','','2024-11-25 08:07:14','2024-11-25 08:07:14','',0,'https://fe2tech.com/wp-content/uploads/2024/11/z5952363746762_6241ac4c6625581b5db9b24a1ee05f68.jpg',0,'attachment','image/jpeg',0),(2591,1,'2024-11-25 08:23:56','2024-11-25 08:23:56','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.    </h3>\n		<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Customer\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Personnel\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Oders per year\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>		\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />\n	    <h3>\n        We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.    </h3>\n		<p>Goals to achieve by 2026:</p>		\n                                            East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\n                                        30%\n                                            Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\n                                        10%\n                                            United States: Products related to medical instruments, optics, and audio equipment.\n                                        30%\n                                            Australia: Sheet metal products.\n                                        8%\n                                            Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\n                                        20%\n                                            Other markets and products.\n                                        2%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/precision-measurement-services/\">Precision Measurement Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/precision-measurement-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/planing-service/\">Planing Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/planing-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Turning and Milling Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"3\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We help businesses thrive by providing the latest machinery technology.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20Street%20No.%204%2C%20Quarter%202%2C%20Binh%20Chieu%20Ward%2C%20Thu%20Duc%20City%2C%20Ho%20Chi%20Minh%20City&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\"\n					aria-label=\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"133\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-11-25 08:23:56','2024-11-25 08:23:56','',9,'https://fe2tech.com/?p=2591',0,'revision','',0),(2592,1,'2024-11-25 08:23:57','2024-11-25 08:23:57','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.    </h3>\n		<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Customer\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Personnel\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Oders per year\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>		\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />\n	    <h3>\n        We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.    </h3>\n		<p>Goals to achieve by 2026:</p>		\n                                            East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\n                                        30%\n                                            Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\n                                        10%\n                                            United States: Products related to medical instruments, optics, and audio equipment.\n                                        30%\n                                            Australia: Sheet metal products.\n                                        8%\n                                            Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\n                                        20%\n                                            Other markets and products.\n                                        2%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/precision-measurement-services/\">Precision Measurement Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/precision-measurement-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/planing-service/\">Planing Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/planing-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Turning and Milling Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"3\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We help businesses thrive by providing the latest machinery technology.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20Street%20No.%204%2C%20Quarter%202%2C%20Binh%20Chieu%20Ward%2C%20Thu%20Duc%20City%2C%20Ho%20Chi%20Minh%20City&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\"\n					aria-label=\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"133\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-11-25 08:23:57','2024-11-25 08:23:57','',9,'https://fe2tech.com/?p=2592',0,'revision','',0),(2593,1,'2024-11-25 08:23:57','2024-11-25 08:23:57','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.    </h3>\n		<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Customer\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Personnel\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Oders per year\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>		\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />\n	    <h3>\n        We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.    </h3>\n		<p>Goals to achieve by 2026:</p>		\n                                            East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\n                                        30%\n                                            Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\n                                        10%\n                                            United States: Products related to medical instruments, optics, and audio equipment.\n                                        30%\n                                            Australia: Sheet metal products.\n                                        8%\n                                            Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\n                                        20%\n                                            Other markets and products.\n                                        2%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/precision-measurement-services/\">Precision Measurement Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/precision-measurement-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/planing-service/\">Planing Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/planing-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Turning and Milling Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"131\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We help businesses thrive by providing the latest machinery technology.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20Street%20No.%204%2C%20Quarter%202%2C%20Binh%20Chieu%20Ward%2C%20Thu%20Duc%20City%2C%20Ho%20Chi%20Minh%20City&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\"\n					aria-label=\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"191\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-11-25 08:23:57','2024-11-25 08:23:57','',9,'https://fe2tech.com/?p=2593',0,'revision','',0),(2594,1,'2024-11-26 02:26:38','2024-11-26 02:26:38','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.    </h3>\n		<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Customer\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Personnel\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Oders per year\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>		\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />\n	    <h3>\n        We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.    </h3>\n		<p>Goals to achieve by 2026:</p>		\n                                            East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\n                                        30%\n                                            Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\n                                        10%\n                                            United States: Products related to medical instruments, optics, and audio equipment.\n                                        30%\n                                            Australia: Sheet metal products.\n                                        8%\n                                            Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\n                                        20%\n                                            Other markets and products.\n                                        2%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/precision-measurement-services/\">Precision Measurement Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/precision-measurement-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/planing-service/\">Planing Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/planing-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Turning and Milling Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"131\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We help businesses thrive by providing the latest machinery technology.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20Street%20No.%204%2C%20Quarter%202%2C%20Binh%20Chieu%20Ward%2C%20Thu%20Duc%20City%2C%20Ho%20Chi%20Minh%20City&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\"\n					aria-label=\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"191\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-11-26 02:26:38','2024-11-26 02:26:38','',9,'https://fe2tech.com/?p=2594',0,'revision','',0),(2595,1,'2024-11-26 02:26:39','2024-11-26 02:26:39','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.    </h3>\n		<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Customer\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Personnel\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Oders per year\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>		\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />\n	    <h3>\n        We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.    </h3>\n		<p>Goals to achieve by 2026:</p>		\n                                            East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\n                                        30%\n                                            Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\n                                        10%\n                                            United States: Products related to medical instruments, optics, and audio equipment.\n                                        30%\n                                            Australia: Sheet metal products.\n                                        8%\n                                            Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\n                                        20%\n                                            Other markets and products.\n                                        2%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We showcase the best machinery solutions, crafted with precision, simplicity, and innovation. Our team designs groundbreaking products.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/precision-measurement-services/\">Precision Measurement Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/precision-measurement-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/planing-service/\">Planing Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/planing-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Turning and Milling Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"131\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We help businesses thrive by providing the latest machinery technology.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20Street%20No.%204%2C%20Quarter%202%2C%20Binh%20Chieu%20Ward%2C%20Thu%20Duc%20City%2C%20Ho%20Chi%20Minh%20City&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\"\n					aria-label=\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"191\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-11-26 02:26:39','2024-11-26 02:26:39','',9,'https://fe2tech.com/?p=2595',0,'revision','',0),(2596,1,'2024-11-26 02:26:39','2024-11-26 02:26:39','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.    </h3>\n		<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Customer\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Personnel\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Oders per year\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>		\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />\n	    <h3>\n        We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.    </h3>\n		<p>Goals to achieve by 2026:</p>		\n                                            East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\n                                        30%\n                                            Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\n                                        10%\n                                            United States: Products related to medical instruments, optics, and audio equipment.\n                                        30%\n                                            Australia: Sheet metal products.\n                                        8%\n                                            Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\n                                        20%\n                                            Other markets and products.\n                                        2%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/precision-measurement-services/\">Precision Measurement Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/precision-measurement-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/planing-service/\">Planing Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/planing-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Turning and Milling Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"188\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We help businesses thrive by providing the latest machinery technology.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20Street%20No.%204%2C%20Quarter%202%2C%20Binh%20Chieu%20Ward%2C%20Thu%20Duc%20City%2C%20Ho%20Chi%20Minh%20City&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\"\n					aria-label=\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"137\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-11-26 02:26:39','2024-11-26 02:26:39','',9,'https://fe2tech.com/?p=2596',0,'revision','',0),(2597,1,'2024-11-26 02:27:44','2024-11-26 02:27:44','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.    </h3>\n		<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Customer\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Personnel\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Oders per year\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>		\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />\n	    <h3>\n        We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.    </h3>\n		<p>Goals to achieve by 2026:</p>		\n                                            East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\n                                        30%\n                                            Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\n                                        10%\n                                            United States: Products related to medical instruments, optics, and audio equipment.\n                                        30%\n                                            Australia: Sheet metal products.\n                                        8%\n                                            Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\n                                        20%\n                                            Other markets and products.\n                                        2%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/precision-measurement-services/\">Precision Measurement Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/precision-measurement-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/planing-service/\">Planing Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/planing-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Turning and Milling Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"188\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We help businesses thrive by providing the latest machinery technology.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20Street%20No.%204%2C%20Quarter%202%2C%20Binh%20Chieu%20Ward%2C%20Thu%20Duc%20City%2C%20Ho%20Chi%20Minh%20City&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\"\n					aria-label=\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"137\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-11-26 02:27:44','2024-11-26 02:27:44','',9,'https://fe2tech.com/?p=2597',0,'revision','',0),(2598,1,'2024-11-26 02:27:45','2024-11-26 02:27:45','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.    </h3>\n		<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Customer\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Personnel\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Oders per year\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>		\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />\n	    <h3>\n        We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.    </h3>\n		<p>Goals to achieve by 2026:</p>		\n                                            East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\n                                        30%\n                                            Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\n                                        10%\n                                            United States: Products related to medical instruments, optics, and audio equipment.\n                                        30%\n                                            Australia: Sheet metal products.\n                                        8%\n                                            Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\n                                        20%\n                                            Other markets and products.\n                                        2%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/precision-measurement-services/\">Precision Measurement Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/precision-measurement-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/planing-service/\">Planing Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/planing-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Turning and Milling Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"188\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We help businesses thrive by providing the latest machinery technology.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20Street%20No.%204%2C%20Quarter%202%2C%20Binh%20Chieu%20Ward%2C%20Thu%20Duc%20City%2C%20Ho%20Chi%20Minh%20City&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\"\n					aria-label=\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"137\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-11-26 02:27:45','2024-11-26 02:27:45','',9,'https://fe2tech.com/?p=2598',0,'revision','',0),(2599,1,'2024-11-26 02:27:45','2024-11-26 02:27:45','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.    </h3>\n		<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Customer\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Personnel\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Oders per year\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>		\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />\n	    <h3>\n        We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.    </h3>\n		<p>Goals to achieve by 2026:</p>		\n                                            East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\n                                        30%\n                                            Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\n                                        10%\n                                            United States: Products related to medical instruments, optics, and audio equipment.\n                                        30%\n                                            Australia: Sheet metal products.\n                                        8%\n                                            Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\n                                        20%\n                                            Other markets and products.\n                                        2%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/precision-measurement-services/\">Precision Measurement Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/precision-measurement-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/planing-service/\">Planing Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/planing-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Turning and Milling Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"183\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We always provide a sense of security in terms of quality and progress.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20Street%20No.%204%2C%20Quarter%202%2C%20Binh%20Chieu%20Ward%2C%20Thu%20Duc%20City%2C%20Ho%20Chi%20Minh%20City&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\"\n					aria-label=\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"64\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-11-26 02:27:45','2024-11-26 02:27:45','',9,'https://fe2tech.com/?p=2599',0,'revision','',0),(2600,1,'2024-11-26 02:28:14','2024-11-26 02:28:14','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.    </h3>\n		<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Customer\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Personnel\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Oders per year\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>		\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />\n	    <h3>\n        We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.    </h3>\n		<p>Goals to achieve by 2026:</p>		\n                                            East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\n                                        30%\n                                            Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\n                                        10%\n                                            United States: Products related to medical instruments, optics, and audio equipment.\n                                        30%\n                                            Australia: Sheet metal products.\n                                        8%\n                                            Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\n                                        20%\n                                            Other markets and products.\n                                        2%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/precision-measurement-services/\">Precision Measurement Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/precision-measurement-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/planing-service/\">Planing Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/planing-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Turning and Milling Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"183\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We always provide a sense of security in terms of quality and progress.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20Street%20No.%204%2C%20Quarter%202%2C%20Binh%20Chieu%20Ward%2C%20Thu%20Duc%20City%2C%20Ho%20Chi%20Minh%20City&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\"\n					aria-label=\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"64\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-11-26 02:28:14','2024-11-26 02:28:14','',9,'https://fe2tech.com/?p=2600',0,'revision','',0),(2601,1,'2024-11-26 02:28:15','2024-11-26 02:28:15','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.    </h3>\n		<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Customer\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Personnel\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Oders per year\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>		\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />\n	    <h3>\n        We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.    </h3>\n		<p>Goals to achieve by 2026:</p>		\n                                            East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\n                                        30%\n                                            Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\n                                        10%\n                                            United States: Products related to medical instruments, optics, and audio equipment.\n                                        30%\n                                            Australia: Sheet metal products.\n                                        8%\n                                            Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\n                                        20%\n                                            Other markets and products.\n                                        2%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/precision-measurement-services/\">Precision Measurement Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/precision-measurement-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/planing-service/\">Planing Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/planing-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Turning and Milling Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"183\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We always provide a sense of security in terms of quality and progress.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored machinery solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20Street%20No.%204%2C%20Quarter%202%2C%20Binh%20Chieu%20Ward%2C%20Thu%20Duc%20City%2C%20Ho%20Chi%20Minh%20City&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\"\n					aria-label=\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"64\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-11-26 02:28:15','2024-11-26 02:28:15','',9,'https://fe2tech.com/?p=2601',0,'revision','',0),(2602,1,'2024-11-26 02:28:15','2024-11-26 02:28:15','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.    </h3>\n		<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Customer\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Personnel\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Oders per year\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>		\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />\n	    <h3>\n        We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.    </h3>\n		<p>Goals to achieve by 2026:</p>		\n                                            East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\n                                        30%\n                                            Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\n                                        10%\n                                            United States: Products related to medical instruments, optics, and audio equipment.\n                                        30%\n                                            Australia: Sheet metal products.\n                                        8%\n                                            Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\n                                        20%\n                                            Other markets and products.\n                                        2%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/precision-measurement-services/\">Precision Measurement Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/precision-measurement-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/planing-service/\">Planing Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/planing-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Turning and Milling Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"233\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We always provide a sense of security in terms of quality and progress.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20Street%20No.%204%2C%20Quarter%202%2C%20Binh%20Chieu%20Ward%2C%20Thu%20Duc%20City%2C%20Ho%20Chi%20Minh%20City&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\"\n					aria-label=\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"23\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-11-26 02:28:15','2024-11-26 02:28:15','',9,'https://fe2tech.com/?p=2602',0,'revision','',0),(2603,1,'2024-11-26 02:37:34','2024-11-26 02:37:34','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.    </h3>\n		<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Customer\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Personnel\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Oders per year\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>		\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />\n	    <h3>\n        We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.    </h3>\n		<p>Goals to achieve by 2026:</p>		\n                                            East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\n                                        30%\n                                            Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\n                                        10%\n                                            United States: Products related to medical instruments, optics, and audio equipment.\n                                        30%\n                                            Australia: Sheet metal products.\n                                        8%\n                                            Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\n                                        20%\n                                            Other markets and products.\n                                        2%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/precision-measurement-services/\">Precision Measurement Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/precision-measurement-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/planing-service/\">Planing Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/planing-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Turning and Milling Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"233\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We always provide a sense of security in terms of quality and progress.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20Street%20No.%204%2C%20Quarter%202%2C%20Binh%20Chieu%20Ward%2C%20Thu%20Duc%20City%2C%20Ho%20Chi%20Minh%20City&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\"\n					aria-label=\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"23\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-11-26 02:37:34','2024-11-26 02:37:34','',9,'https://fe2tech.com/?p=2603',0,'revision','',0),(2604,1,'2024-11-26 02:37:35','2024-11-26 02:37:35','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.    </h3>\n		<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Customer\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Personnel\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Oders per year\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>		\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />\n	    <h3>\n        We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.    </h3>\n		<p>Goals to achieve by 2026:</p>		\n                                            East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\n                                        30%\n                                            Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\n                                        10%\n                                            United States: Products related to medical instruments, optics, and audio equipment.\n                                        30%\n                                            Australia: Sheet metal products.\n                                        8%\n                                            Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\n                                        20%\n                                            Other markets and products.\n                                        2%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/precision-measurement-services/\">Precision Measurement Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/precision-measurement-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/planing-service/\">Planing Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/planing-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Turning and Milling Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"233\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We always provide a sense of security in terms of quality and progress.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20Street%20No.%204%2C%20Quarter%202%2C%20Binh%20Chieu%20Ward%2C%20Thu%20Duc%20City%2C%20Ho%20Chi%20Minh%20City&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\"\n					aria-label=\"43 Street No. 4, Quarter 2, Binh Chieu Ward, Thu Duc City, Ho Chi Minh City\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"23\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-11-26 02:37:35','2024-11-26 02:37:35','',9,'https://fe2tech.com/?p=2604',0,'revision','',0),(2605,1,'2024-11-26 02:37:35','2024-11-26 02:37:35','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.    </h3>\n		<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Customer\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Personnel\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Oders per year\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>		\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n    	<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />    \n	    <h3>\n        We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.    </h3>\n		<p>Goals to achieve by 2026:</p>		\n                                            East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\n                                        30%\n                                            Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\n                                        10%\n                                            United States: Products related to medical instruments, optics, and audio equipment.\n                                        30%\n                                            Australia: Sheet metal products.\n                                        8%\n                                            Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\n                                        20%\n                                            Other markets and products.\n                                        2%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/precision-measurement-services/\">Precision Measurement Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/precision-measurement-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/planing-service/\">Planing Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/planing-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Turning and Milling Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"22\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We always provide a sense of security in terms of quality and progress.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"28\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-11-26 02:37:35','2024-11-26 02:37:35','',9,'https://fe2tech.com/?p=2605',0,'revision','',0),(2606,1,'2024-11-26 02:38:27','2024-11-26 02:38:27','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.    </h3>\n		<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Customer\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Personnel\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Oders per year\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>		\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n    	<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />    \n	    <h3>\n        We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.    </h3>\n		<p>Goals to achieve by 2026:</p>		\n                                            East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\n                                        30%\n                                            Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\n                                        10%\n                                            United States: Products related to medical instruments, optics, and audio equipment.\n                                        30%\n                                            Australia: Sheet metal products.\n                                        8%\n                                            Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\n                                        20%\n                                            Other markets and products.\n                                        2%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/precision-measurement-services/\">Precision Measurement Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/precision-measurement-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/planing-service/\">Planing Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/planing-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Turning and Milling Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"22\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We always provide a sense of security in terms of quality and progress.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"28\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-11-26 02:38:27','2024-11-26 02:38:27','',9,'https://fe2tech.com/?p=2606',0,'revision','',0),(2607,1,'2024-11-26 02:38:28','2024-11-26 02:38:28','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.    </h3>\n		<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Customer\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Personnel\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Oders per year\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>		\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n    	<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />    \n	    <h3>\n        We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.    </h3>\n		<p>Goals to achieve by 2026:</p>		\n                                            East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\n                                        30%\n                                            Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\n                                        10%\n                                            United States: Products related to medical instruments, optics, and audio equipment.\n                                        30%\n                                            Australia: Sheet metal products.\n                                        8%\n                                            Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\n                                        20%\n                                            Other markets and products.\n                                        2%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/precision-measurement-services/\">Precision Measurement Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/precision-measurement-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/planing-service/\">Planing Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/planing-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Turning and Milling Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"22\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We always provide a sense of security in terms of quality and progress.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"28\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-11-26 02:38:28','2024-11-26 02:38:28','',9,'https://fe2tech.com/?p=2607',0,'revision','',0),(2608,1,'2024-11-26 02:38:28','2024-11-26 02:38:28','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.    </h3>\n		<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Customer\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Personnel\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Oders per year\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>		\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n    	<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n	    <h3>\n        We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.    </h3>\n		<p>Goals to achieve by 2026:</p>		\n                                            East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\n                                        30%\n                                            Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\n                                        10%\n                                            United States: Products related to medical instruments, optics, and audio equipment.\n                                        30%\n                                            Australia: Sheet metal products.\n                                        8%\n                                            Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\n                                        20%\n                                            Other markets and products.\n                                        2%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/precision-measurement-services/\">Precision Measurement Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/precision-measurement-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/planing-service/\">Planing Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/planing-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Turning and Milling Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"144\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We always provide a sense of security in terms of quality and progress.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"214\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-11-26 02:38:28','2024-11-26 02:38:28','',9,'https://fe2tech.com/?p=2608',0,'revision','',0),(2609,1,'2024-11-26 02:40:18','2024-11-26 02:40:18','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.    </h3>\n		<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Customer\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Personnel\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Oders per year\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>		\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n    	<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n	    <h3>\n        We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.    </h3>\n		<p>Goals to achieve by 2026:</p>		\n                                            East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\n                                        30%\n                                            Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\n                                        10%\n                                            United States: Products related to medical instruments, optics, and audio equipment.\n                                        30%\n                                            Australia: Sheet metal products.\n                                        8%\n                                            Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\n                                        20%\n                                            Other markets and products.\n                                        2%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/precision-measurement-services/\">Precision Measurement Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/precision-measurement-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/planing-service/\">Planing Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/planing-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Turning and Milling Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"144\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We always provide a sense of security in terms of quality and progress.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"214\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-11-26 02:40:18','2024-11-26 02:40:18','',9,'https://fe2tech.com/?p=2609',0,'revision','',0),(2610,1,'2024-11-26 02:40:19','2024-11-26 02:40:19','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.    </h3>\n		<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Customer\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Personnel\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Oders per year\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>		\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n    	<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n	    <h3>\n        We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.    </h3>\n		<p>Goals to achieve by 2026:</p>		\n                                            East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\n                                        30%\n                                            Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\n                                        10%\n                                            United States: Products related to medical instruments, optics, and audio equipment.\n                                        30%\n                                            Australia: Sheet metal products.\n                                        8%\n                                            Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\n                                        20%\n                                            Other markets and products.\n                                        2%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/precision-measurement-services/\">Precision Measurement Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/precision-measurement-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/planing-service/\">Planing Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/planing-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Turning and Milling Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"144\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We always provide a sense of security in terms of quality and progress.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"214\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-11-26 02:40:19','2024-11-26 02:40:19','',9,'https://fe2tech.com/?p=2610',0,'revision','',0),(2611,1,'2024-11-26 02:40:19','2024-11-26 02:40:19','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.    </h3>\n		<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Customer\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Personnel\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Oders per year\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>		\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n													<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />													\n	    <h3>\n        We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.    </h3>\n		<p>Goals to achieve by 2026:</p>		\n                                            East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\n                                        30%\n                                            Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\n                                        10%\n                                            United States: Products related to medical instruments, optics, and audio equipment.\n                                        30%\n                                            Australia: Sheet metal products.\n                                        8%\n                                            Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\n                                        20%\n                                            Other markets and products.\n                                        2%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/precision-measurement-services/\">Precision Measurement Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/precision-measurement-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/planing-service/\">Planing Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/planing-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Turning and Milling Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"164\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We always provide a sense of security in terms of quality and progress.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"192\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-11-26 02:40:19','2024-11-26 02:40:19','',9,'https://fe2tech.com/?p=2611',0,'revision','',0),(2615,1,'2024-11-26 03:04:34','2024-11-26 03:04:34','<a href=\"http://fe2tech.com/\">\n							<img width=\"208\" height=\"208\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/logo.jpg\" alt=\"\" />								</a>\n			    <ul>\n                    <li>\n            	   Factory 1: Khac Niem Industrial Cluster, Khac Niem Ward, Bac Ninh City, Bac Ninh Province                \n           </li>\n                    <li>\n            	   Factory 2: 176/9 Nguyen Thi Tuoi, Tan Phuoc Quarter, Tan Binh Ward, Di An City, Binh Duong                \n           </li>\n                    <li>\n            	   0968860386                \n           </li>\n            </ul>\n    <h3>\n        Menu\n        <i></i>\n    </h3>\n        <ul id=\"menu-main-menu-2\"><li><a href=\"https://fe2tech.com/\">Home</a></li>\n<li><a href=\"https://fe2tech.com/gallery/\">Product</a></li>\n<li><a href=\"https://fe2tech.com/services/\">Service</a></li>\n<li><a href=\"https://fe2tech.com/team-partners/\">Team &#038; Member Companies</a></li>\n<li><a href=\"https://fe2tech.com/about/\">About Us</a></li>\n</ul>    \n    <h3>\n        Open Hours\n        <i></i>\n    </h3>\n		<p>Mon - Sun: 24/24</p>		\n    <h3>\n        Newsletter\n        <i></i>\n    </h3>\n		Sign up for alerts, our latest blogs, thoughts, and insights.		\n        <form method=\"post\" action=\"https://fe2tech.com/wp-admin/admin-ajax.php?action=tnp&amp;na=s\" style=\"\">\n<input type=\"hidden\" name=\"nlang\" value=\"\">\n<label for=\"tnp-3\">Your mail address</label>\n<input type=\"email\" name=\"ne\" id=\"tnp-3\" value=\"\" placeholder=\"\" required>\n<input type=\"submit\" value=\"Subscribe\" style=\"\">\n</form>    \n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n		<p>Copyright @2024 of Far East High Tech Ltd. Co.</p>','Footer','','inherit','closed','closed','','799-revision-v1','','','2024-11-26 03:04:34','2024-11-26 03:04:34','',799,'https://fe2tech.com/?p=2615',0,'revision','',0),(2616,1,'2024-11-26 03:04:35','2024-11-26 03:04:35','<a href=\"http://fe2tech.com/\">\n							<img width=\"208\" height=\"208\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/logo.jpg\" alt=\"\" />								</a>\n			    <ul>\n                    <li>\n            	   Factory 1: Khac Niem Industrial Cluster, Khac Niem Ward, Bac Ninh City, Bac Ninh Province                \n           </li>\n                    <li>\n            	   Factory 2: 176/9 Nguyen Thi Tuoi, Tan Phuoc Quarter, Tan Binh Ward, Di An City, Binh Duong                \n           </li>\n                    <li>\n            	   0968860386                \n           </li>\n            </ul>\n    <h3>\n        Menu\n        <i></i>\n    </h3>\n        <ul id=\"menu-main-menu-2\"><li><a href=\"https://fe2tech.com/\">Home</a></li>\n<li><a href=\"https://fe2tech.com/gallery/\">Product</a></li>\n<li><a href=\"https://fe2tech.com/services/\">Service</a></li>\n<li><a href=\"https://fe2tech.com/team-partners/\">Team &#038; Member Companies</a></li>\n<li><a href=\"https://fe2tech.com/about/\">About Us</a></li>\n</ul>    \n    <h3>\n        Open Hours\n        <i></i>\n    </h3>\n		<p>Mon - Sun: 24/24</p>		\n    <h3>\n        Newsletter\n        <i></i>\n    </h3>\n		Sign up for alerts, our latest blogs, thoughts, and insights.		\n        <form method=\"post\" action=\"https://fe2tech.com/wp-admin/admin-ajax.php?action=tnp&amp;na=s\" style=\"\">\n<input type=\"hidden\" name=\"nlang\" value=\"\">\n<label for=\"tnp-3\">Your mail address</label>\n<input type=\"email\" name=\"ne\" id=\"tnp-3\" value=\"\" placeholder=\"\" required>\n<input type=\"submit\" value=\"Subscribe\" style=\"\">\n</form>    \n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n		<p>Copyright @2024 of Far East High Tech Ltd. Co.</p>','Footer','','inherit','closed','closed','','799-revision-v1','','','2024-11-26 03:04:35','2024-11-26 03:04:35','',799,'https://fe2tech.com/?p=2616',0,'revision','',0),(2617,1,'2024-11-26 03:04:35','2024-11-26 03:04:35','<a href=\"http://fe2tech.com/\">\n							<img width=\"208\" height=\"208\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/logo.jpg\" alt=\"\" />								</a>\n			    <ul>\n                    <li>\n            	   Factory 1: Khac Niem Industrial Cluster, Khac Niem Ward, Bac Ninh City, Bac Ninh Province                \n           </li>\n                    <li>\n            	   Factory 2: 176/9 Nguyen Thi Tuoi, Tan Phuoc Quarter, Tan Binh Ward, Di An City, Binh Duong                \n           </li>\n                    <li>\n            	   0968 86 03 86                \n           </li>\n            </ul>\n    <h3>\n        Menu\n        <i></i>\n    </h3>\n        <ul id=\"menu-main-menu-2\"><li><a href=\"https://fe2tech.com/\">Home</a></li>\n<li><a href=\"https://fe2tech.com/gallery/\">Product</a></li>\n<li><a href=\"https://fe2tech.com/services/\">Service</a></li>\n<li><a href=\"https://fe2tech.com/team-partners/\">Team &#038; Member Companies</a></li>\n<li><a href=\"https://fe2tech.com/about/\">About Us</a></li>\n</ul>    \n    <h3>\n        Open Hours\n        <i></i>\n    </h3>\n		<p>Mon - Sun: 24/24</p>		\n    <h3>\n        Newsletter\n        <i></i>\n    </h3>\n		Sign up for alerts, our latest blogs, thoughts, and insights.		\n        <form method=\"post\" action=\"https://fe2tech.com/wp-admin/admin-ajax.php?action=tnp&amp;na=s\" style=\"\">\n<input type=\"hidden\" name=\"nlang\" value=\"\">\n<label for=\"tnp-3\">Your mail address</label>\n<input type=\"email\" name=\"ne\" id=\"tnp-3\" value=\"\" placeholder=\"\" required>\n<input type=\"submit\" value=\"Subscribe\" style=\"\">\n</form>    \n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n		<p>Copyright @2024 of Far East High Tech Ltd. Co.</p>','Footer','','inherit','closed','closed','','799-revision-v1','','','2024-11-26 03:04:35','2024-11-26 03:04:35','',799,'https://fe2tech.com/?p=2617',0,'revision','',0),(2619,1,'2024-11-26 03:15:10','2024-11-26 03:15:10','<h3 class=\"title-service\">We excel in aluminum and steel products, particularly thin aluminum sheets and motorcycle-related toys.</h3>\r\n<div class=\"masonry-gallery\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112022581961_f2a47cd330f690d0a726b0888ff80ab1.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112022572357_0cdb065792788d3493b2e389df79a5e2.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112022611669_d154017fd0d3c02db6be468c7db9fa32.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035366910_4defd4ad74170bea5d4fa69518dafb6d.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035331028_b1fcc3e9f1979a96aaebf343697989b4.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035303451_55cd6bcbf16c201a507ca6ac10623d02.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035333555_19b4ef8a09ed63f106da162eac3d9775.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112022609645_43af0256c23b3f39325ac10fe40d3200.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035380871_0810f1b5bcdd3396a375bf5a785686ae.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112143350420_5fdf5495fc11f668a8b6e8b865a0670a.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112159599274_ed84aaa8ae44eb900b332183d18d35ff.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4379673923151_1f10bec1ef168974349f66b16772c543.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5997919286088_1aafc52570d9ee521cb7325aaa3efbbb.jpg\" alt=\"\" class=\"gallery-image\">\r\n</div>\r\n','CNC Milling Service','','publish','closed','closed','','cnc-milling-service','','','2024-12-17 03:58:57','2024-12-17 03:58:57','',0,'https://fe2tech.com/?post_type=service&#038;p=2619',0,'service','',0),(2620,1,'2024-11-26 03:15:04','2024-11-26 03:15:04','','cnc-milling-machining-service','','inherit','open','closed','','cnc-milling-machining-service','','','2024-11-26 03:15:04','2024-11-26 03:15:04','',2619,'https://fe2tech.com/wp-content/uploads/2024/11/cnc-milling-machining-service.jpg',0,'attachment','image/jpeg',0),(2621,1,'2024-11-26 03:15:10','2024-11-26 03:15:10','High-precision machining for complex parts using CNC milling machines, ideal for components requiring dimensional and surface accuracy.','CNC Milling Service','','inherit','closed','closed','','2619-revision-v1','','','2024-11-26 03:15:10','2024-11-26 03:15:10','',2619,'https://fe2tech.com/?p=2621',0,'revision','',0),(2622,1,'2024-11-26 03:16:58','2024-11-26 03:16:58','<h3 class=\"title-service\">We can manufacture all small to medium-sized items for all types of materials.</h3>\r\n<div class=\"masonry-gallery\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112523290035_3b7a728aff36d17b39821c04b01ee4d5.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112523303443_aeb69e713b0de04bc8b594cb00fb49ca.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035284762_1f2181b896dc72283dffd21ff2accf18.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035279331_ec2e9746f1d2b6055f9d822183a20b7b.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035401524_aa7e2e59cf891c7dd20122738c01da99.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035395698_a7f89619dfa324b6009e13e700d16a52.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035405011_b0e4efc850356273be1ea0ebf41973d5.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112523246386_fb69855463997d37d3a5b9189e8633a5.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112523253089_bd1c2eefa8e745863c395bcdd175f37c.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112523265271_a713cd9cae68eb5e8623d240ee9c0f46.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112523276603_ec2b0734a46271e77485348ecdebe9a5.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112143335944_8a90c104b6e5a3531a1b8d7a439e6db3.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112143337763_e6237e74ed00be98c9396eb0b6012587.jpg\" alt=\"\" class=\"gallery-image\">\r\n</div>\r\n','CNC Turning Service','','publish','closed','closed','','cnc-turning-service','','','2024-12-17 03:58:52','2024-12-17 03:58:52','',0,'https://fe2tech.com/?post_type=service&#038;p=2622',3,'service','',0),(2623,1,'2024-11-26 03:16:53','2024-11-26 03:16:53','','r_shutterstock_304656242','','inherit','open','closed','','r_shutterstock_304656242','','','2024-11-26 03:16:53','2024-11-26 03:16:53','',2622,'https://fe2tech.com/wp-content/uploads/2024/11/r_shutterstock_304656242.webp',0,'attachment','image/webp',0),(2624,1,'2024-11-26 03:16:58','2024-11-26 03:16:58','CNC lathe service to produce precise cylindrical or rotational parts.','CNC Turning Service','','inherit','closed','closed','','2622-revision-v1','','','2024-11-26 03:16:58','2024-11-26 03:16:58','',2622,'https://fe2tech.com/?p=2624',0,'revision','',0),(2625,1,'2024-11-26 03:18:49','2024-11-26 03:18:49','<h3 class=\"title-service\">These are support services for the mold industry and our detailed products.</h3>\r\n<div class=\"masonry-gallery\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112160416378_bce4411fe74027d63005630fc7884a80.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112161045939_2fab496392927de92680189440d9df11.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112162162899_9fa7af3084979b141c9a5af02bd64b8f.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112162913774_3cf6b72cb16904b5c0aa22911ad9062c.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112342749062_a373f44d190f5f95bac710bb2609c8dc.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112342752051_e8e5731247c67e8d13ba9032e0df2071.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112342758960_0cf70e0e2fc3c20f1fcdfa00de30734e.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112342779226_b9935186416483d88d8d4a3741c445ac.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112343562589_0c62c0c2a11f68e02e7302f2022d802f.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112343020134_4e3fd602c682b52d16603b05d64b5b3b.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112343022575_b75ed6f8141de2096bd693992964bc07.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112343024138_c84a3e4bb6f5d346d7a6e09e56086f61.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112343028537_b1ff9fb76f888c3ed07f01643f0020f0.jpg\" alt=\"\" class=\"gallery-image\">\r\n</div>\r\n','CNC Tool Grinder Service','','publish','closed','closed','','cnc-tool-grinder-service','','','2024-12-17 03:58:48','2024-12-17 03:58:48','',0,'https://fe2tech.com/?post_type=service&#038;p=2625',6,'service','',0),(2626,1,'2024-11-26 03:18:43','2024-11-26 03:18:43','','Operator,Make,Automotive,Parts,By,Cnc,Lathe,And,Cnc,Grinding','','inherit','open','closed','','operatormakeautomotivepartsbycnclatheandcncgrinding','','','2024-11-26 03:18:43','2024-11-26 03:18:43','',2625,'https://fe2tech.com/wp-content/uploads/2024/11/stock-photo-operator-make-automotive-parts-by-cnc-lathe-and-cnc-grinding-process-233149603.jpg',0,'attachment','image/jpeg',0),(2627,1,'2024-11-26 03:18:49','2024-11-26 03:18:49','Grinding and sharpening CNC tools for reuse or manufacturing new tools, ensuring high performance.','CNC Tool Grinder Service','','inherit','closed','closed','','2625-revision-v1','','','2024-11-26 03:18:49','2024-11-26 03:18:49','',2625,'https://fe2tech.com/?p=2627',0,'revision','',0),(2628,1,'2024-11-26 03:20:00','2024-11-26 03:20:00','<h3 class=\"title-service\">We can paint finished products according to customer requirements.</h3>\r\n<div class=\"masonry-gallery\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4614273923773_699996016c1c52f0895299d5358fe8a6.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4614243915927_45cd79faef986c5ca9f1ed80434ca840.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4859515672356_2e4104881b39c559fe9d687370a67394.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5095181853127_bdd8a417c860e722ad4f5e79f91dea8f.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5095181851706_d23ac9a42e1be2ea98d323da1f663eaf.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4749871034728_13d43ad63eed2b6e7e1496638d7853af.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4749871031095_9182ad19e7ac8defae8c32b8cc44b440.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4749871031211_ed4fe9d663e0c07fddaaef221a1144c7.jpg\" alt=\"\" class=\"gallery-image\">\r\n</div>\r\n\r\n','Sheet Metal Service','','publish','closed','closed','','sheet-metal-service','','','2024-12-17 03:58:44','2024-12-17 03:58:44','',0,'https://fe2tech.com/?post_type=service&#038;p=2628',9,'service','',0),(2629,1,'2024-11-26 03:19:52','2024-11-26 03:19:52','','shutterstock_laser cutting 312633680 resize','','inherit','open','closed','','shutterstock_laser-cutting-312633680-resize','','','2024-11-26 03:19:52','2024-11-26 03:19:52','',2628,'https://fe2tech.com/wp-content/uploads/2024/11/shutterstock_laser-cutting-312633680-resize.jpg',0,'attachment','image/jpeg',0),(2630,1,'2024-11-26 03:20:00','2024-11-26 03:20:00','Metal sheet processing including cutting, bending, and assembling, suitable for industrial and consumer applications.','Sheet Metal Service','','inherit','closed','closed','','2628-revision-v1','','','2024-11-26 03:20:00','2024-11-26 03:20:00','',2628,'https://fe2tech.com/?p=2630',0,'revision','',0),(2631,1,'2024-11-26 03:22:12','2024-11-26 03:22:12','<h3 class=\"title-service\">We have veteran welding engineers to ensure high-quality welded products.<br>We offer Mig welding, Tig welding, and laser welding.<br>Notably, we specialize in laser welding of aluminum for export to the U.S. market.</h3>\r\n<div class=\"masonry-gallery\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112380520686_e42a34abefc41f7baa77f40a51e11e10.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112380501656_5b9317f1571553500813fa23f5ffd678.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112380524857_d617d3c8ff36c93a8360aeb9239dc924.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4749871059944_22ebc1e4e9fef7e1a4c18a87b17ad83f.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112380533580_58467dd3a6c609d250f917b7cb523083.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112380547520_189c3d8c494143167c5bea938b7789c8.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112380509099_8e38c91b9a664647d606ed55ecccc8ae.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4749871065923_4d7a315a6e76ccde22ddab12dbdcd6c3.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4749871062649_2ef68ba42152c462b7730e250fa0695b.jpg\" alt=\"\" class=\"gallery-image\">\r\n</div>\r\n\r\n','Welding Service','','publish','closed','closed','','welding-service','','','2024-12-17 03:58:40','2024-12-17 03:58:40','',0,'https://fe2tech.com/?post_type=service&#038;p=2631',12,'service','',0),(2632,1,'2024-11-26 03:22:04','2024-11-26 03:22:04','','5-Types-of-Welding-Services-for-Industrial-Fabrication-1-resized-licensed','','inherit','open','closed','','5-types-of-welding-services-for-industrial-fabrication-1-resized-licensed','','','2024-11-26 03:22:04','2024-11-26 03:22:04','',2631,'https://fe2tech.com/wp-content/uploads/2024/11/5-Types-of-Welding-Services-for-Industrial-Fabrication-1-resized-licensed.jpg',0,'attachment','image/jpeg',0),(2633,1,'2024-11-26 03:22:12','2024-11-26 03:22:12','Metal welding service for structures and products, ensuring durability and aesthetic quality.','Welding Service','','inherit','closed','closed','','2631-revision-v1','','','2024-11-26 03:22:12','2024-11-26 03:22:12','',2631,'https://fe2tech.com/?p=2633',0,'revision','',0),(2634,1,'2024-11-26 03:24:12','2024-11-26 03:24:12','<h3 class=\"title-service\">Precision machining using electrical discharge, grinding, and wire cutting to achieve high accuracy for small and complex parts.</h3>\r\n<div class=\"masonry-gallery\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112398373909_156bfb41f9711a15035cfede452ce1a9.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112398387244_688f2cffa04694e309441b36b11b142f.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112398406318_cba797f1e93e87ade947c770d0d40a8f.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112398417726_5127342a763e9e24abc186f97a44aff8.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112399243827_06cc313a2878998df579b1c3dcedc86d.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112402158092_30b348ffeb1bd490d6abf2ba9eb85786.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112402161733_fb456855a646106f5d0896b14dc1774a.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112407952259_47d9353a1faa9e7f704c496b431fc2e8.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112407943622_643893c3e779b10c7addfe792dde6674.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112407932531_75c831c196d633f15a7d2ac8ca23dd73.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112475733731_0f87c5cb35371e36f87164b091dee9e7.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112475735545_8ad6ec49c1c9ca3aa9ad469ee5e61195.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112475588456_c7783008f04cb1da5c4706aaf8251962.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112475603193_4db6faf7d997e4dfc5f44d0ee583aadf.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112475604993_b73f539ad31fe52fc630284c8d45186a.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112475612691_cce8a7d594d6f4dcbe56f5186a04fefb.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112475615814_eaf58890986bbd9b960debe8d62378b9.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112405304306_a9b1bb837aea79fbe537c183eb90c6c1.jpg\" alt=\"\" class=\"gallery-image\">\r\n</div>\r\n','EDM, Grinding and Wire Cutting Service','','publish','closed','closed','','edm-grinding-and-wire-cutting-service','','','2024-12-17 03:58:36','2024-12-17 03:58:36','',0,'https://fe2tech.com/?post_type=service&#038;p=2634',15,'service','',0),(2635,1,'2024-11-26 03:24:06','2024-11-26 03:24:06','','img-edm_wire','','inherit','open','closed','','img-edm_wire','','','2024-11-26 03:24:06','2024-11-26 03:24:06','',2634,'https://fe2tech.com/wp-content/uploads/2024/11/img-edm_wire.jpg',0,'attachment','image/jpeg',0),(2636,1,'2024-11-26 03:24:12','2024-11-26 03:24:12','Precision machining using electrical discharge, grinding, and wire cutting to achieve high accuracy for small and complex parts.','EDM, Grinding and Wire Cutting Service','','inherit','closed','closed','','2634-revision-v1','','','2024-11-26 03:24:12','2024-11-26 03:24:12','',2634,'https://fe2tech.com/?p=2636',0,'revision','',0),(2638,1,'2024-11-26 03:25:26','2024-11-26 03:25:26','<h3 class=\"title-service\">In 2025, we will open a bolt manufacturing workshop to supply custom bolts tailored to customer needs.</h3>\r\n<div class=\"masonry-gallery\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112427132452_1dc48d6b077820afa8c47b96d3918f22.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112427136415_a92631bc5fc9cba8b18696aacf6afcb5.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112427143608_0e611231c1efc187f3162f79bf802d9e.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112427145342_1981e17957820257bc6cc69dca8d1a6a.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112431685389_a7fb16bd81f123c2bfc6a16da53debf2.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112431686395_bfab2b01f79ca6c359bec18f3bbadd26.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035271011_4c2ce6e425aafedb041eb23967031655.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112427126027_f0c082273a59f666b09963ae9bbe5130.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112427126859_88eeb6c98a738fc61976f7654b6d11a9.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112427127062_0723f7644f5d182c87b7d93725c07ce0.jpg\" alt=\"\" class=\"gallery-image\">\r\n</div>\r\n\r\n','Bolt Production','','publish','closed','closed','','bolt-production','','','2024-12-17 03:58:32','2024-12-17 03:58:32','',0,'https://fe2tech.com/?post_type=service&#038;p=2638',18,'service','',0),(2639,1,'2024-11-26 03:25:22','2024-11-26 03:25:22','','58128630f5528e42bfdc7468fdb7746b03c5','','inherit','open','closed','','58128630f5528e42bfdc7468fdb7746b03c5','','','2024-11-26 03:25:22','2024-11-26 03:25:22','',2638,'https://fe2tech.com/wp-content/uploads/2024/11/58128630f5528e42bfdc7468fdb7746b03c5.jpg',0,'attachment','image/jpeg',0),(2640,1,'2024-11-26 03:25:26','2024-11-26 03:25:26','Custom bolt manufacturing with tailored dimensions and materials to meet industrial demands.','Bolt Production','','inherit','closed','closed','','2638-revision-v1','','','2024-11-26 03:25:26','2024-11-26 03:25:26','',2638,'https://fe2tech.com/?p=2640',0,'revision','',0),(2642,1,'2024-11-26 03:26:35','2024-11-26 03:26:35','<h3 class=\"title-service\">We collaborate with surface treatment units specializing in plating materials for high-quality and reliable export products.<br>Our heat treatment units are currently providing services to major corporations in Vietnam.<br>We also offer services in cylindrical grinding and metal machining for special items, including extremely large or ultra-small sizes.</h3>\r\n<div class=\"masonry-gallery\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5960268346049_d526596f8ddfc4db5149cdf4c2a86994.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112404623542_5b0849b2bcc4cd3b845977435309590a.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4585711522486_378e8c68f46ae66fae3a9ecca6d6e086.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4449983141239_d83dcc0273bcc1b41d2586ff272b1265.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4584726243432_c37cf14cc34559d45891cddf89e5daba.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5953231842216_872f5a7181f5ce3d18a4b1eebe17896c.jpg\" alt=\"\" class=\"gallery-image\">\r\n</div>\r\n\r\n','Other Services','','publish','closed','closed','','other-services','','','2024-12-17 03:58:27','2024-12-17 03:58:27','',0,'https://fe2tech.com/?post_type=service&#038;p=2642',21,'service','',0),(2643,1,'2024-11-26 03:26:31','2024-11-26 03:26:31','','Custom-Machining-Shop_900x600','','inherit','open','closed','','custom-machining-shop_900x600','','','2024-11-26 03:26:31','2024-11-26 03:26:31','',2642,'https://fe2tech.com/wp-content/uploads/2024/11/Custom-Machining-Shop_900x600.jpg',0,'attachment','image/jpeg',0),(2644,1,'2024-11-26 03:26:35','2024-11-26 03:26:35','Custom machining or fabrication services tailored to meet specific customer requirements.','Other Services','','inherit','closed','closed','','2642-revision-v1','','','2024-11-26 03:26:35','2024-11-26 03:26:35','',2642,'https://fe2tech.com/?p=2644',0,'revision','',0),(2645,1,'2024-11-28 03:51:48','2024-11-28 03:51:48','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.    </h3>\n		<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Customer\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Personnel\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Oders per year\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>		\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n													<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />													\n	    <h3>\n        We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.    </h3>\n		<p>Goals to achieve by 2026:</p>		\n                                            East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\n                                        30%\n                                            Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\n                                        10%\n                                            United States: Products related to medical instruments, optics, and audio equipment.\n                                        30%\n                                            Australia: Sheet metal products.\n                                        8%\n                                            Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\n                                        20%\n                                            Other markets and products.\n                                        2%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/precision-measurement-services/\">Precision Measurement Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/precision-measurement-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/planing-service/\">Planing Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/planing-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Turning and Milling Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"164\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We always provide a sense of security in terms of quality and progress.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"192\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-11-28 03:51:48','2024-11-28 03:51:48','',9,'https://fe2tech.com/?p=2645',0,'revision','',0),(2646,1,'2024-11-28 03:51:49','2024-11-28 03:51:49','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.    </h3>\n		<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Customer\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Personnel\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Oders per year\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>		\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n													<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />													\n	    <h3>\n        We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.    </h3>\n		<p>Goals to achieve by 2026:</p>		\n                                            East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\n                                        30%\n                                            Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\n                                        10%\n                                            United States: Products related to medical instruments, optics, and audio equipment.\n                                        30%\n                                            Australia: Sheet metal products.\n                                        8%\n                                            Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\n                                        20%\n                                            Other markets and products.\n                                        2%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/precision-measurement-services/\">Precision Measurement Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/precision-measurement-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/planing-service/\">Planing Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/planing-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Turning and Milling Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/turning-and-milling-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/quality-inspection-services/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"164\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We always provide a sense of security in terms of quality and progress.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"192\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-11-28 03:51:49','2024-11-28 03:51:49','',9,'https://fe2tech.com/?p=2646',0,'revision','',0),(2647,1,'2024-11-28 03:51:49','2024-11-28 03:51:49','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.    </h3>\n		<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Customer\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Personnel\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Oders per year\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>		\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n													<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />													\n	    <h3>\n        We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.    </h3>\n		<p>Goals to achieve by 2026:</p>		\n                                            East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\n                                        30%\n                                            Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\n                                        10%\n                                            United States: Products related to medical instruments, optics, and audio equipment.\n                                        30%\n                                            Australia: Sheet metal products.\n                                        8%\n                                            Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\n                                        20%\n                                            Other markets and products.\n                                        2%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-milling-service/\">CNC Milling Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-milling-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-turning-service/\">CNC Turning Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-turning-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">CNC Tool Grinder Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/sheet-metal-service/\">Sheet Metal Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/sheet-metal-service/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"240\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We always provide a sense of security in terms of quality and progress.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"87\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-11-28 03:51:49','2024-11-28 03:51:49','',9,'https://fe2tech.com/?p=2647',0,'revision','',0),(2648,1,'2024-11-28 03:52:31','2024-11-28 03:52:31','<a href=\"https://fe2tech.com/service/quality-inspection-services/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/automated-welding-services/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/automated-welding-services/\">Automated Welding Services</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/hydraulic-press-services/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/hydraulic-press-services/\">Hydraulic Press Services</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/grinding-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/grinding-service/\">Grinding Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/cnc-machining-services/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/cnc-machining-services/\">CNC Machining Services</a></h3>','Services','','inherit','closed','closed','','2128-revision-v1','','','2024-11-28 03:52:31','2024-11-28 03:52:31','',2128,'https://fe2tech.com/?p=2648',0,'revision','',0),(2649,1,'2024-11-28 03:52:31','2024-11-28 03:52:31','<a href=\"https://fe2tech.com/service/quality-inspection-services/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/quality-inspection-services/\">Quality Inspection Services</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/automated-welding-services/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/automated-welding-services/\">Automated Welding Services</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/hydraulic-press-services/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/hydraulic-press-services/\">Hydraulic Press Services</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/grinding-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/grinding-service/\">Grinding Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/cnc-machining-services/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/cnc-machining-services/\">CNC Machining Services</a></h3>','Services','','inherit','closed','closed','','2128-revision-v1','','','2024-11-28 03:52:31','2024-11-28 03:52:31','',2128,'https://fe2tech.com/?p=2649',0,'revision','',0),(2650,1,'2024-11-28 03:52:32','2024-11-28 03:52:32','<a href=\"https://fe2tech.com/service/cnc-milling-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/cnc-milling-service/\">CNC Milling Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/cnc-turning-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/cnc-turning-service/\">CNC Turning Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">CNC Tool Grinder Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/sheet-metal-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/sheet-metal-service/\">Sheet Metal Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/welding-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/welding-service/\">Welding Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/edm-grinding-and-wire-cutting-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/edm-grinding-and-wire-cutting-service/\">EDM, Grinding and Wire Cutting Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/bolt-production/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/bolt-production/\">Bolt Production</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/other-services/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/other-services/\">Other Services</a></h3>','Services','','inherit','closed','closed','','2128-revision-v1','','','2024-11-28 03:52:32','2024-11-28 03:52:32','',2128,'https://fe2tech.com/?p=2650',0,'revision','',0),(2651,1,'2024-11-28 03:52:45','2024-11-28 03:52:45','<a href=\"https://fe2tech.com/service/cnc-milling-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/cnc-milling-service/\">CNC Milling Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/cnc-turning-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/cnc-turning-service/\">CNC Turning Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">CNC Tool Grinder Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/sheet-metal-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/sheet-metal-service/\">Sheet Metal Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/welding-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/welding-service/\">Welding Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/edm-grinding-and-wire-cutting-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/edm-grinding-and-wire-cutting-service/\">EDM, Grinding and Wire Cutting Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/bolt-production/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/bolt-production/\">Bolt Production</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/other-services/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/other-services/\">Other Services</a></h3>','Services','','inherit','closed','closed','','2128-revision-v1','','','2024-11-28 03:52:45','2024-11-28 03:52:45','',2128,'https://fe2tech.com/?p=2651',0,'revision','',0),(2652,1,'2024-11-28 03:52:46','2024-11-28 03:52:46','<a href=\"https://fe2tech.com/service/cnc-milling-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/cnc-milling-service/\">CNC Milling Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/cnc-turning-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/cnc-turning-service/\">CNC Turning Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">CNC Tool Grinder Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/sheet-metal-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/sheet-metal-service/\">Sheet Metal Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/welding-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/welding-service/\">Welding Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/edm-grinding-and-wire-cutting-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/edm-grinding-and-wire-cutting-service/\">EDM, Grinding and Wire Cutting Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/bolt-production/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/bolt-production/\">Bolt Production</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/other-services/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/other-services/\">Other Services</a></h3>','Services','','inherit','closed','closed','','2128-revision-v1','','','2024-11-28 03:52:46','2024-11-28 03:52:46','',2128,'https://fe2tech.com/?p=2652',0,'revision','',0),(2653,1,'2024-11-28 03:52:46','2024-11-28 03:52:46','<a href=\"https://fe2tech.com/service/cnc-milling-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/cnc-milling-service/\">CNC Milling Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/cnc-turning-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/cnc-turning-service/\">CNC Turning Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">CNC Tool Grinder Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/sheet-metal-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/sheet-metal-service/\">Sheet Metal Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/welding-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/welding-service/\">Welding Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/edm-grinding-and-wire-cutting-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/edm-grinding-and-wire-cutting-service/\">EDM, Grinding and Wire Cutting Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/bolt-production/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/bolt-production/\">Bolt Production</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/other-services/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/other-services/\">Other Services</a></h3>','Services','','inherit','closed','closed','','2128-revision-v1','','','2024-11-28 03:52:46','2024-11-28 03:52:46','',2128,'https://fe2tech.com/?p=2653',0,'revision','',0),(2654,1,'2024-11-28 03:54:51','2024-11-28 03:54:51','','Other','','inherit','open','closed','','other','','','2024-11-28 03:54:51','2024-11-28 03:54:51','',2642,'https://fe2tech.com/wp-content/uploads/2024/11/Other.jpg',0,'attachment','image/jpeg',0),(2655,1,'2024-11-28 03:54:52','2024-11-28 03:54:52','','tool grinding','','inherit','open','closed','','tool-grinding','','','2024-11-28 03:54:52','2024-11-28 03:54:52','',2642,'https://fe2tech.com/wp-content/uploads/2024/11/tool-grinding.jpg',0,'attachment','image/jpeg',0),(2656,1,'2024-11-28 03:54:53','2024-11-28 03:54:53','','sheet-metal','','inherit','open','closed','','sheet-metal','','','2024-11-28 03:54:53','2024-11-28 03:54:53','',2642,'https://fe2tech.com/wp-content/uploads/2024/11/sheet-metal.jpg',0,'attachment','image/jpeg',0),(2657,1,'2024-11-28 03:54:54','2024-11-28 03:54:54','','The abstract scene of  3-axis CNC machining centre and the G-code data cutting the injection mold part.','The abstract scene of  3-axis CNC machining centre and the G-code data cutting the injection mold part.The hi-precision CNC milling machine.','inherit','open','closed','','the-abstract-scene-of-3-axis-cnc-machining-centre-and-the-g-code-data-cutting-the-injection-mold-part','','','2024-11-28 03:54:54','2024-11-28 03:54:54','',2642,'https://fe2tech.com/wp-content/uploads/2024/11/CNC-Milling.jpg',0,'attachment','image/jpeg',0),(2658,1,'2024-11-28 03:56:41','2024-11-28 03:56:41','','Bolt','','inherit','open','closed','','bolt','','','2024-11-28 03:56:41','2024-11-28 03:56:41','',2642,'https://fe2tech.com/wp-content/uploads/2024/11/Bolt.webp',0,'attachment','image/webp',0),(2659,1,'2024-11-28 03:56:42','2024-11-28 03:56:42','','Welding','','inherit','open','closed','','welding','','','2024-11-28 03:56:42','2024-11-28 03:56:42','',2642,'https://fe2tech.com/wp-content/uploads/2024/11/Welding.webp',0,'attachment','image/webp',0),(2660,1,'2024-11-28 03:56:44','2024-11-28 03:56:44','','Wire Cut-EDM','','inherit','open','closed','','wire-cut-edm','','','2024-11-28 03:56:44','2024-11-28 03:56:44','',2642,'https://fe2tech.com/wp-content/uploads/2024/11/Wire-Cut-EDM.webp',0,'attachment','image/webp',0),(2661,1,'2024-11-28 03:56:45','2024-11-28 03:56:45','','CNC-turning','','inherit','open','closed','','cnc-turning','','','2024-11-28 03:56:45','2024-11-28 03:56:45','',2642,'https://fe2tech.com/wp-content/uploads/2024/11/CNC-turning.webp',0,'attachment','image/webp',0),(2663,1,'2024-11-28 04:04:54','2024-11-28 04:04:54','<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMyOCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85NTA1YzQwZDFiYjNhMmVkZmJhMjc4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9505c40d1bb3a2edfba278.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9505c40d1bb3a2edfba278.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMyOSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8zOGRiMTRkM2NiNmQ3MjMzMmI3Yzc2LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/38db14d3cb6d72332b7c76.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/38db14d3cb6d72332b7c76.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iNWVkMWJlNWM0NWI3ZDA1MjQ0YTkzLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b5ed1be5c45b7d05244a93.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b5ed1be5c45b7d05244a93.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC84NDRlOTM0NjRjZjhmNWE2YWNlOTEwMy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/844e93464cf8f5a6ace9103.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/844e93464cf8f5a6ace9103.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OTVkNmM1NWIzZWIwYWI1NTNmYTk0LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/795d6c55b3eb0ab553fa94.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/795d6c55b3eb0ab553fa94.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9hMmU1YTdlZTc4NTBjMTBlOTg0MTkwLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/a2e5a7ee7850c10e984190.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/a2e5a7ee7850c10e984190.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzNywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8xZDI2MGQyZmQyOTE2YmNmMzI4MDk5LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/1d260d2fd2916bcf328099.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/1d260d2fd2916bcf328099.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzOCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kYjNlOGUzNjUxODhlOGQ2YjE5OTExOS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/db3e8e365188e8d6b199119.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/db3e8e365188e8d6b199119.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kMDM3ZWEzZjM1ODE4Y2RmZDU5MDExNC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/d037ea3f35818cdfd590114.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/d037ea3f35818cdfd590114.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wNDk3Mjc5ZmY4MjE0MTdmMTgzMDEyMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/0497279ff821417f1830122.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/0497279ff821417f1830122.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80MTg1YTY4ZDc5MzNjMDZkOTkyMjExMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4185a68d7933c06d9922111.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4185a68d7933c06d9922111.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yNjY0ZDY2MjA5ZGNiMDgyZTljZDExNy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/2664d66209dcb082e9cd117.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2664d66209dcb082e9cd117.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85OTViOTU1MjRhZWNmM2IyYWFmZDEyMC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/995b95524aecf3b2aafd120.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/995b95524aecf3b2aafd120.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85NmUxN2ZlOWEwNTcxOTA5NDA0NjEwNS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/96e17fe9a05719094046105.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/96e17fe9a05719094046105.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81M2QzYTFkYjdlNjVjNzNiOWU3NDEwNy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/53d3a1db7e65c73b9e74107.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/53d3a1db7e65c73b9e74107.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80NmYzYmVmYTYxNDRkODFhODE1NTEyMy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/46f3befa6144d81a8155123.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/46f3befa6144d81a8155123.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85ZDI0YTEyYzdlOTJjN2NjOWU4MzEwOC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9d24a12c7e92c7cc9e83108.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9d24a12c7e92c7cc9e83108.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85YTRiNzY0M2E5ZmQxMGEzNDllYzExNS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9a4b7643a9fd10a349ec115.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9a4b7643a9fd10a349ec115.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81YTE5OTYxZjQ5YTFmMGZmYTliMDExOC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/5a19961f49a1f0ffa9b0118.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/5a19961f49a1f0ffa9b0118.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wYjMyZjAzYjJmODU5NmRiY2Y5NDExMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/0b32f03b2f8596dbcf94112.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/0b32f03b2f8596dbcf94112.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iMWM4YmZjMTYwN2ZkOTIxODA2ZTEyOS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b1c8bfc1607fd921806e129.jpg\'><img width=\"112\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b1c8bfc1607fd921806e129.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8zM2NjYzdjYTE4NzRhMTJhZjg2NTEzMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/33ccc7ca1874a12af865132.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/33ccc7ca1874a12af865132.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yYzdlNjY3NmI5YzgwMDk2NTlkOTEyNi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/2c7e6676b9c8009659d9126.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2c7e6676b9c8009659d9126.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80YWYzZmJmYjI0NDU5ZDFiYzQ1NDg0LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4af3fbfb24459d1bc45484.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4af3fbfb24459d1bc45484.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kYTI3NzIyZmFkOTExNGNmNGQ4MDEyMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/da27722fad9114cf4d80121.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/da27722fad9114cf4d80121.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iOTAwN2QwNmEyYjgxYmU2NDJhOTEwOS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b9007d06a2b81be642a9109.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b9007d06a2b81be642a9109.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85NzUwOWE1OTQ1ZTdmY2I5YTVmNjExMy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/97509a5945e7fcb9a5f6113.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/97509a5945e7fcb9a5f6113.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83Y2RlNjRkNmJiNjgwMjM2NWI3OTEwMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/7cde64d6bb6802365b79102.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/7cde64d6bb6802365b79102.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83ZWY3OTRmMTRiNGZmMjExYWI1ZTkxLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/7ef794f14b4ff211ab5e91.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/7ef794f14b4ff211ab5e91.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80MWE3NmZhZmIwMTEwOTRmNTAwMDk2LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/41a76fafb011094f500096.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/41a76fafb011094f500096.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yODRlZTE0ODNlZjY4N2E4ZGVlNzk1LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/284ee1483ef687a8dee795.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/284ee1483ef687a8dee795.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81N2M1NzdjZGE4NzMxMTJkNDg2MjgyLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/57c577cda873112d486282.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/57c577cda873112d486282.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80MmYxNThmODg3NDYzZTE4Njc1Nzc1LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/42f158f887463e18675775.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/42f158f887463e18675775.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kZmI1OGJiZDU0MDNlZDVkYjQxMjg2LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/dfb58bbd5403ed5db41286.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/dfb58bbd5403ed5db41286.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jY2Q3M2VkZWUxNjA1ODNlMDE3MTg3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/ccd73edee160583e017187.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/ccd73edee160583e017187.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85MWE1NTNhMzhjMWQzNTQzNmMwYzgzLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/91a553a38c1d35436c0c83.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/91a553a38c1d35436c0c83.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8xMjg5ZGY4ZjAwMzFiOTZmZTAyMDc5LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/1289df8f0031b96fe02079.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/1289df8f0031b96fe02079.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9hNDg4OGY4MDUwM2VlOTYwYjAyZjc0LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/a4888f80503ee960b02f74.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/a4888f80503ee960b02f74.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM5MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9lMzFmZGExNzA1YTliY2Y3ZTViODcwLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM5MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jMjBmMGEwOWQ1Yjc2Y2U5MzVhNjY3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM5MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yODcwNmY3OGIwYzYwOTk4NTBkNzY4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\'><img width=\"150\" height=\"115\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OWUwM2FlOGU1NTY1YzA4MDU0NzcyLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wN2M1NGVjZTkxNzAyODJlNzE2MTcxLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/07c54ece9170282e716171.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/07c54ece9170282e716171.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC84ZDc5Y2I3MTE0Y2ZhZDkxZjRkZTczLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/8d79cb7114cfad91f4de73.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/8d79cb7114cfad91f4de73.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80OTI5MDQyMmRiOWM2MmMyM2I4ZDEyNS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/49290422db9c62c23b8d125.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/49290422db9c62c23b8d125.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9mN2Y0YzJmYzFkNDJhNDFjZmQ1MzEzMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/f7f4c2fc1d42a41cfd53131.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/f7f4c2fc1d42a41cfd53131.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC82MmZiNzJmMGFkNGUxNDEwNGQ1ZjEyNy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/62fb72f0ad4e14104d5f127.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/62fb72f0ad4e14104d5f127.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OTVkZjk1NDI2ZWE5ZmI0YzZmYjExNi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/795df95426ea9fb4c6fb116.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/795df95426ea9fb4c6fb116.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8xYWIxZjRiNzJiMDk5MjU3Y2IxODk3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/1ab1f4b72b099257cb1897.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/1ab1f4b72b099257cb1897.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jNTQ2OTM0ZTRjZjBmNWFlYWNlMTEwMC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c546934e4cf0f5aeace1100.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c546934e4cf0f5aeace1100.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80NDgwYjQ4OTZiMzdkMjY5OGIyNjc3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4480b4896b37d2698b2677.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4480b4896b37d2698b2677.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzOSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iNDRjMTE0NGNlZmE3N2E0MmVlYjEwNi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b44c1144cefa77a42eeb106.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b44c1144cefa77a42eeb106.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzNSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81NmM5ZjhjMjI3N2M5ZTIyYzc2ZDk4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/56c9f8c2277c9e22c76d98.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/56c9f8c2277c9e22c76d98.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzNiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80ZGM2Y2VjZjExNzFhODJmZjE2MDEwMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4dc6cecf1171a82ff160101.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4dc6cecf1171a82ff160101.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>','Gallery','','inherit','closed','closed','','2126-revision-v1','','','2024-11-28 04:04:54','2024-11-28 04:04:54','',2126,'https://fe2tech.com/?p=2663',0,'revision','',0),(2664,1,'2024-11-28 04:04:55','2024-11-28 04:04:55','<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMyOCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85NTA1YzQwZDFiYjNhMmVkZmJhMjc4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9505c40d1bb3a2edfba278.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9505c40d1bb3a2edfba278.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMyOSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8zOGRiMTRkM2NiNmQ3MjMzMmI3Yzc2LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/38db14d3cb6d72332b7c76.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/38db14d3cb6d72332b7c76.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iNWVkMWJlNWM0NWI3ZDA1MjQ0YTkzLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b5ed1be5c45b7d05244a93.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b5ed1be5c45b7d05244a93.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC84NDRlOTM0NjRjZjhmNWE2YWNlOTEwMy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/844e93464cf8f5a6ace9103.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/844e93464cf8f5a6ace9103.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OTVkNmM1NWIzZWIwYWI1NTNmYTk0LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/795d6c55b3eb0ab553fa94.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/795d6c55b3eb0ab553fa94.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9hMmU1YTdlZTc4NTBjMTBlOTg0MTkwLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/a2e5a7ee7850c10e984190.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/a2e5a7ee7850c10e984190.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzNywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8xZDI2MGQyZmQyOTE2YmNmMzI4MDk5LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/1d260d2fd2916bcf328099.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/1d260d2fd2916bcf328099.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzOCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kYjNlOGUzNjUxODhlOGQ2YjE5OTExOS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/db3e8e365188e8d6b199119.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/db3e8e365188e8d6b199119.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kMDM3ZWEzZjM1ODE4Y2RmZDU5MDExNC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/d037ea3f35818cdfd590114.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/d037ea3f35818cdfd590114.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wNDk3Mjc5ZmY4MjE0MTdmMTgzMDEyMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/0497279ff821417f1830122.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/0497279ff821417f1830122.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80MTg1YTY4ZDc5MzNjMDZkOTkyMjExMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4185a68d7933c06d9922111.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4185a68d7933c06d9922111.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yNjY0ZDY2MjA5ZGNiMDgyZTljZDExNy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/2664d66209dcb082e9cd117.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2664d66209dcb082e9cd117.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85OTViOTU1MjRhZWNmM2IyYWFmZDEyMC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/995b95524aecf3b2aafd120.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/995b95524aecf3b2aafd120.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85NmUxN2ZlOWEwNTcxOTA5NDA0NjEwNS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/96e17fe9a05719094046105.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/96e17fe9a05719094046105.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81M2QzYTFkYjdlNjVjNzNiOWU3NDEwNy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/53d3a1db7e65c73b9e74107.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/53d3a1db7e65c73b9e74107.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80NmYzYmVmYTYxNDRkODFhODE1NTEyMy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/46f3befa6144d81a8155123.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/46f3befa6144d81a8155123.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85ZDI0YTEyYzdlOTJjN2NjOWU4MzEwOC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9d24a12c7e92c7cc9e83108.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9d24a12c7e92c7cc9e83108.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85YTRiNzY0M2E5ZmQxMGEzNDllYzExNS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9a4b7643a9fd10a349ec115.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9a4b7643a9fd10a349ec115.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81YTE5OTYxZjQ5YTFmMGZmYTliMDExOC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/5a19961f49a1f0ffa9b0118.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/5a19961f49a1f0ffa9b0118.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wYjMyZjAzYjJmODU5NmRiY2Y5NDExMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/0b32f03b2f8596dbcf94112.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/0b32f03b2f8596dbcf94112.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iMWM4YmZjMTYwN2ZkOTIxODA2ZTEyOS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b1c8bfc1607fd921806e129.jpg\'><img width=\"112\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b1c8bfc1607fd921806e129.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8zM2NjYzdjYTE4NzRhMTJhZjg2NTEzMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/33ccc7ca1874a12af865132.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/33ccc7ca1874a12af865132.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yYzdlNjY3NmI5YzgwMDk2NTlkOTEyNi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/2c7e6676b9c8009659d9126.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2c7e6676b9c8009659d9126.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80YWYzZmJmYjI0NDU5ZDFiYzQ1NDg0LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4af3fbfb24459d1bc45484.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4af3fbfb24459d1bc45484.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kYTI3NzIyZmFkOTExNGNmNGQ4MDEyMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/da27722fad9114cf4d80121.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/da27722fad9114cf4d80121.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iOTAwN2QwNmEyYjgxYmU2NDJhOTEwOS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b9007d06a2b81be642a9109.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b9007d06a2b81be642a9109.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85NzUwOWE1OTQ1ZTdmY2I5YTVmNjExMy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/97509a5945e7fcb9a5f6113.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/97509a5945e7fcb9a5f6113.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83Y2RlNjRkNmJiNjgwMjM2NWI3OTEwMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/7cde64d6bb6802365b79102.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/7cde64d6bb6802365b79102.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83ZWY3OTRmMTRiNGZmMjExYWI1ZTkxLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/7ef794f14b4ff211ab5e91.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/7ef794f14b4ff211ab5e91.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80MWE3NmZhZmIwMTEwOTRmNTAwMDk2LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/41a76fafb011094f500096.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/41a76fafb011094f500096.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yODRlZTE0ODNlZjY4N2E4ZGVlNzk1LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/284ee1483ef687a8dee795.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/284ee1483ef687a8dee795.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81N2M1NzdjZGE4NzMxMTJkNDg2MjgyLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/57c577cda873112d486282.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/57c577cda873112d486282.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80MmYxNThmODg3NDYzZTE4Njc1Nzc1LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/42f158f887463e18675775.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/42f158f887463e18675775.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9kZmI1OGJiZDU0MDNlZDVkYjQxMjg2LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/dfb58bbd5403ed5db41286.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/dfb58bbd5403ed5db41286.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jY2Q3M2VkZWUxNjA1ODNlMDE3MTg3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/ccd73edee160583e017187.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/ccd73edee160583e017187.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC85MWE1NTNhMzhjMWQzNTQzNmMwYzgzLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/91a553a38c1d35436c0c83.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/91a553a38c1d35436c0c83.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8xMjg5ZGY4ZjAwMzFiOTZmZTAyMDc5LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/1289df8f0031b96fe02079.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/1289df8f0031b96fe02079.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9hNDg4OGY4MDUwM2VlOTYwYjAyZjc0LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/a4888f80503ee960b02f74.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/a4888f80503ee960b02f74.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM5MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9lMzFmZGExNzA1YTliY2Y3ZTViODcwLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM5MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jMjBmMGEwOWQ1Yjc2Y2U5MzVhNjY3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM5MCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8yODcwNmY3OGIwYzYwOTk4NTBkNzY4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\'><img width=\"150\" height=\"115\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4OSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OWUwM2FlOGU1NTY1YzA4MDU0NzcyLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8wN2M1NGVjZTkxNzAyODJlNzE2MTcxLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/07c54ece9170282e716171.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/07c54ece9170282e716171.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4OCwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC84ZDc5Y2I3MTE0Y2ZhZDkxZjRkZTczLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/8d79cb7114cfad91f4de73.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/8d79cb7114cfad91f4de73.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0MSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80OTI5MDQyMmRiOWM2MmMyM2I4ZDEyNS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/49290422db9c62c23b8d125.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/49290422db9c62c23b8d125.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9mN2Y0YzJmYzFkNDJhNDFjZmQ1MzEzMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/f7f4c2fc1d42a41cfd53131.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/f7f4c2fc1d42a41cfd53131.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2MiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC82MmZiNzJmMGFkNGUxNDEwNGQ1ZjEyNy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/62fb72f0ad4e14104d5f127.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/62fb72f0ad4e14104d5f127.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2MywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC83OTVkZjk1NDI2ZWE5ZmI0YzZmYjExNi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/795df95426ea9fb4c6fb116.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/795df95426ea9fb4c6fb116.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NywidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC8xYWIxZjRiNzJiMDk5MjU3Y2IxODk3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/1ab1f4b72b099257cb1897.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/1ab1f4b72b099257cb1897.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3NiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9jNTQ2OTM0ZTRjZjBmNWFlYWNlMTEwMC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c546934e4cf0f5aeace1100.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c546934e4cf0f5aeace1100.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80NDgwYjQ4OTZiMzdkMjY5OGIyNjc3LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4480b4896b37d2698b2677.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4480b4896b37d2698b2677.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzOSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9iNDRjMTE0NGNlZmE3N2E0MmVlYjEwNi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b44c1144cefa77a42eeb106.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b44c1144cefa77a42eeb106.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzNSwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC81NmM5ZjhjMjI3N2M5ZTIyYzc2ZDk4LmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/56c9f8c2277c9e22c76d98.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/56c9f8c2277c9e22c76d98.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzNiwidXJsIjoiaHR0cDpcL1wvZmUydGVjaC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC80ZGM2Y2VjZjExNzFhODJmZjE2MDEwMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4dc6cecf1171a82ff160101.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4dc6cecf1171a82ff160101.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>','Gallery','','inherit','closed','closed','','2126-revision-v1','','','2024-11-28 04:04:55','2024-11-28 04:04:55','',2126,'https://fe2tech.com/?p=2664',0,'revision','',0),(2665,1,'2024-11-28 04:04:55','2024-11-28 04:04:55','Products\n	    <h6>\n        Our strength lies in mass production of aluminum and steel. We excel in innovation and deliver high-value products to our customers.    </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMyOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvOTUwNWM0MGQxYmIzYTJlZGZiYTI3OC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9505c40d1bb3a2edfba278.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9505c40d1bb3a2edfba278.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMyOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvMzhkYjE0ZDNjYjZkNzIzMzJiN2M3Ni5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/38db14d3cb6d72332b7c76.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/38db14d3cb6d72332b7c76.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvYjVlZDFiZTVjNDViN2QwNTI0NGE5My5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b5ed1be5c45b7d05244a93.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b5ed1be5c45b7d05244a93.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvODQ0ZTkzNDY0Y2Y4ZjVhNmFjZTkxMDMuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/844e93464cf8f5a6ace9103.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/844e93464cf8f5a6ace9103.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvNzk1ZDZjNTViM2ViMGFiNTUzZmE5NC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/795d6c55b3eb0ab553fa94.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/795d6c55b3eb0ab553fa94.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvYTJlNWE3ZWU3ODUwYzEwZTk4NDE5MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/a2e5a7ee7850c10e984190.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/a2e5a7ee7850c10e984190.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvMWQyNjBkMmZkMjkxNmJjZjMyODA5OS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/1d260d2fd2916bcf328099.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/1d260d2fd2916bcf328099.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvZGIzZThlMzY1MTg4ZThkNmIxOTkxMTkuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/db3e8e365188e8d6b199119.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/db3e8e365188e8d6b199119.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvZDAzN2VhM2YzNTgxOGNkZmQ1OTAxMTQuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/d037ea3f35818cdfd590114.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/d037ea3f35818cdfd590114.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvMDQ5NzI3OWZmODIxNDE3ZjE4MzAxMjIuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/0497279ff821417f1830122.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/0497279ff821417f1830122.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvNDE4NWE2OGQ3OTMzYzA2ZDk5MjIxMTEuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4185a68d7933c06d9922111.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4185a68d7933c06d9922111.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvMjY2NGQ2NjIwOWRjYjA4MmU5Y2QxMTcuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/2664d66209dcb082e9cd117.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2664d66209dcb082e9cd117.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvOTk1Yjk1NTI0YWVjZjNiMmFhZmQxMjAuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/995b95524aecf3b2aafd120.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/995b95524aecf3b2aafd120.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvOTZlMTdmZTlhMDU3MTkwOTQwNDYxMDUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/96e17fe9a05719094046105.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/96e17fe9a05719094046105.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvNTNkM2ExZGI3ZTY1YzczYjllNzQxMDcuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/53d3a1db7e65c73b9e74107.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/53d3a1db7e65c73b9e74107.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvNDZmM2JlZmE2MTQ0ZDgxYTgxNTUxMjMuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/46f3befa6144d81a8155123.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/46f3befa6144d81a8155123.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvOWQyNGExMmM3ZTkyYzdjYzllODMxMDguanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9d24a12c7e92c7cc9e83108.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9d24a12c7e92c7cc9e83108.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvOWE0Yjc2NDNhOWZkMTBhMzQ5ZWMxMTUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9a4b7643a9fd10a349ec115.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9a4b7643a9fd10a349ec115.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvNWExOTk2MWY0OWExZjBmZmE5YjAxMTguanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/5a19961f49a1f0ffa9b0118.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/5a19961f49a1f0ffa9b0118.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvMGIzMmYwM2IyZjg1OTZkYmNmOTQxMTIuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/0b32f03b2f8596dbcf94112.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/0b32f03b2f8596dbcf94112.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvYjFjOGJmYzE2MDdmZDkyMTgwNmUxMjkuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b1c8bfc1607fd921806e129.jpg\'><img width=\"112\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b1c8bfc1607fd921806e129.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvMzNjY2M3Y2ExODc0YTEyYWY4NjUxMzIuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/33ccc7ca1874a12af865132.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/33ccc7ca1874a12af865132.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvMmM3ZTY2NzZiOWM4MDA5NjU5ZDkxMjYuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/2c7e6676b9c8009659d9126.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2c7e6676b9c8009659d9126.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvNGFmM2ZiZmIyNDQ1OWQxYmM0NTQ4NC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4af3fbfb24459d1bc45484.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4af3fbfb24459d1bc45484.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvZGEyNzcyMmZhZDkxMTRjZjRkODAxMjEuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/da27722fad9114cf4d80121.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/da27722fad9114cf4d80121.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvYjkwMDdkMDZhMmI4MWJlNjQyYTkxMDkuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b9007d06a2b81be642a9109.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b9007d06a2b81be642a9109.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvOTc1MDlhNTk0NWU3ZmNiOWE1ZjYxMTMuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/97509a5945e7fcb9a5f6113.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/97509a5945e7fcb9a5f6113.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvN2NkZTY0ZDZiYjY4MDIzNjViNzkxMDIuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/7cde64d6bb6802365b79102.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/7cde64d6bb6802365b79102.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvN2VmNzk0ZjE0YjRmZjIxMWFiNWU5MS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/7ef794f14b4ff211ab5e91.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/7ef794f14b4ff211ab5e91.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvNDFhNzZmYWZiMDExMDk0ZjUwMDA5Ni5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/41a76fafb011094f500096.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/41a76fafb011094f500096.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvMjg0ZWUxNDgzZWY2ODdhOGRlZTc5NS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/284ee1483ef687a8dee795.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/284ee1483ef687a8dee795.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvNTdjNTc3Y2RhODczMTEyZDQ4NjI4Mi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/57c577cda873112d486282.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/57c577cda873112d486282.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvNDJmMTU4Zjg4NzQ2M2UxODY3NTc3NS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/42f158f887463e18675775.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/42f158f887463e18675775.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvZGZiNThiYmQ1NDAzZWQ1ZGI0MTI4Ni5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/dfb58bbd5403ed5db41286.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/dfb58bbd5403ed5db41286.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvY2NkNzNlZGVlMTYwNTgzZTAxNzE4Ny5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/ccd73edee160583e017187.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/ccd73edee160583e017187.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvOTFhNTUzYTM4YzFkMzU0MzZjMGM4My5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/91a553a38c1d35436c0c83.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/91a553a38c1d35436c0c83.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvMTI4OWRmOGYwMDMxYjk2ZmUwMjA3OS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/1289df8f0031b96fe02079.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/1289df8f0031b96fe02079.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvYTQ4ODhmODA1MDNlZTk2MGIwMmY3NC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/a4888f80503ee960b02f74.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/a4888f80503ee960b02f74.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM5MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvZTMxZmRhMTcwNWE5YmNmN2U1Yjg3MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM5MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvYzIwZjBhMDlkNWI3NmNlOTM1YTY2Ny5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM5MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvMjg3MDZmNzhiMGM2MDk5ODUwZDc2OC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\'><img width=\"150\" height=\"115\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvNzllMDNhZThlNTU2NWMwODA1NDc3Mi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvMDdjNTRlY2U5MTcwMjgyZTcxNjE3MS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/07c54ece9170282e716171.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/07c54ece9170282e716171.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvOGQ3OWNiNzExNGNmYWQ5MWY0ZGU3My5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/8d79cb7114cfad91f4de73.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/8d79cb7114cfad91f4de73.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvNDkyOTA0MjJkYjljNjJjMjNiOGQxMjUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/49290422db9c62c23b8d125.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/49290422db9c62c23b8d125.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvZjdmNGMyZmMxZDQyYTQxY2ZkNTMxMzEuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/f7f4c2fc1d42a41cfd53131.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/f7f4c2fc1d42a41cfd53131.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvNjJmYjcyZjBhZDRlMTQxMDRkNWYxMjcuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/62fb72f0ad4e14104d5f127.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/62fb72f0ad4e14104d5f127.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvNzk1ZGY5NTQyNmVhOWZiNGM2ZmIxMTYuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/795df95426ea9fb4c6fb116.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/795df95426ea9fb4c6fb116.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvMWFiMWY0YjcyYjA5OTI1N2NiMTg5Ny5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/1ab1f4b72b099257cb1897.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/1ab1f4b72b099257cb1897.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvYzU0NjkzNGU0Y2YwZjVhZWFjZTExMDAuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c546934e4cf0f5aeace1100.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c546934e4cf0f5aeace1100.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvNDQ4MGI0ODk2YjM3ZDI2OThiMjY3Ny5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4480b4896b37d2698b2677.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4480b4896b37d2698b2677.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvYjQ0YzExNDRjZWZhNzdhNDJlZWIxMDYuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b44c1144cefa77a42eeb106.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b44c1144cefa77a42eeb106.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvNTZjOWY4YzIyNzdjOWUyMmM3NmQ5OC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/56c9f8c2277c9e22c76d98.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/56c9f8c2277c9e22c76d98.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvNGRjNmNlY2YxMTcxYTgyZmYxNjAxMDEuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4dc6cecf1171a82ff160101.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4dc6cecf1171a82ff160101.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>','Gallery','','inherit','closed','closed','','2126-revision-v1','','','2024-11-28 04:04:55','2024-11-28 04:04:55','',2126,'https://fe2tech.com/?p=2665',0,'revision','',0),(2667,1,'2024-11-28 04:08:51','2024-11-28 04:08:51','','z6074652723212_8770f028ff646f014f1e9f6efe34962e','','inherit','open','closed','','z6074652723212_8770f028ff646f014f1e9f6efe34962e','','','2024-11-28 04:08:51','2024-11-28 04:08:51','',0,'https://fe2tech.com/wp-content/uploads/2024/11/z6074652723212_8770f028ff646f014f1e9f6efe34962e.jpg',0,'attachment','image/jpeg',0),(2668,1,'2024-11-28 04:08:53','2024-11-28 04:08:53','','z6074642763587_21ecce5d4accf371358eb4cbd73c800d','','inherit','open','closed','','z6074642763587_21ecce5d4accf371358eb4cbd73c800d','','','2024-11-28 04:08:53','2024-11-28 04:08:53','',0,'https://fe2tech.com/wp-content/uploads/2024/11/z6074642763587_21ecce5d4accf371358eb4cbd73c800d.jpg',0,'attachment','image/jpeg',0),(2669,1,'2024-11-28 04:08:54','2024-11-28 04:08:54','','z6074642849848_10b5670512096e654748e57b24a04afe','','inherit','open','closed','','z6074642849848_10b5670512096e654748e57b24a04afe','','','2024-11-28 04:08:54','2024-11-28 04:08:54','',0,'https://fe2tech.com/wp-content/uploads/2024/11/z6074642849848_10b5670512096e654748e57b24a04afe.jpg',0,'attachment','image/jpeg',0),(2670,1,'2024-11-28 04:08:55','2024-11-28 04:08:55','','z6074640758883_648a042f4b640d0f57a4441dd2109570','','inherit','open','closed','','z6074640758883_648a042f4b640d0f57a4441dd2109570','','','2024-11-28 04:08:55','2024-11-28 04:08:55','',0,'https://fe2tech.com/wp-content/uploads/2024/11/z6074640758883_648a042f4b640d0f57a4441dd2109570.jpg',0,'attachment','image/jpeg',0),(2671,1,'2024-11-28 04:08:56','2024-11-28 04:08:56','','z6074640849237_e7699b1bc6e38e0bf65eb3bca28ae8ca','','inherit','open','closed','','z6074640849237_e7699b1bc6e38e0bf65eb3bca28ae8ca','','','2024-11-28 04:08:56','2024-11-28 04:08:56','',0,'https://fe2tech.com/wp-content/uploads/2024/11/z6074640849237_e7699b1bc6e38e0bf65eb3bca28ae8ca.jpg',0,'attachment','image/jpeg',0),(2672,1,'2024-11-28 04:08:58','2024-11-28 04:08:58','','z6074640939718_b0ff6acad14b2ab5ed158171c76833f9','','inherit','open','closed','','z6074640939718_b0ff6acad14b2ab5ed158171c76833f9','','','2024-11-28 04:08:58','2024-11-28 04:08:58','',0,'https://fe2tech.com/wp-content/uploads/2024/11/z6074640939718_b0ff6acad14b2ab5ed158171c76833f9.jpg',0,'attachment','image/jpeg',0),(2673,1,'2024-11-28 04:08:59','2024-11-28 04:08:59','','z6074641052070_9efbc1586cb5e95cc54b8421a63f380e','','inherit','open','closed','','z6074641052070_9efbc1586cb5e95cc54b8421a63f380e','','','2024-11-28 04:08:59','2024-11-28 04:08:59','',0,'https://fe2tech.com/wp-content/uploads/2024/11/z6074641052070_9efbc1586cb5e95cc54b8421a63f380e.jpg',0,'attachment','image/jpeg',0),(2674,1,'2024-11-28 04:09:00','2024-11-28 04:09:00','','z6074641145273_7be5df3e1779aa04e890e40cc243cdee','','inherit','open','closed','','z6074641145273_7be5df3e1779aa04e890e40cc243cdee','','','2024-11-28 04:09:00','2024-11-28 04:09:00','',0,'https://fe2tech.com/wp-content/uploads/2024/11/z6074641145273_7be5df3e1779aa04e890e40cc243cdee.jpg',0,'attachment','image/jpeg',0),(2675,1,'2024-11-28 04:09:01','2024-11-28 04:09:01','','z6074640653285_5a87adf57ce0c4186fe4fb1579e357b5','','inherit','open','closed','','z6074640653285_5a87adf57ce0c4186fe4fb1579e357b5','','','2024-11-28 04:09:01','2024-11-28 04:09:01','',0,'https://fe2tech.com/wp-content/uploads/2024/11/z6074640653285_5a87adf57ce0c4186fe4fb1579e357b5.jpg',0,'attachment','image/jpeg',0),(2676,1,'2024-11-28 04:09:02','2024-11-28 04:09:02','','z6074641173826_45ae737f70dfb2d365abb397f139d708','','inherit','open','closed','','z6074641173826_45ae737f70dfb2d365abb397f139d708','','','2024-11-28 04:09:02','2024-11-28 04:09:02','',0,'https://fe2tech.com/wp-content/uploads/2024/11/z6074641173826_45ae737f70dfb2d365abb397f139d708.jpg',0,'attachment','image/jpeg',0),(2677,1,'2024-11-28 04:09:04','2024-11-28 04:09:04','','z6074641293113_b4b186c67b6e7829dd2a91d730cf9aa7','','inherit','open','closed','','z6074641293113_b4b186c67b6e7829dd2a91d730cf9aa7','','','2024-11-28 04:09:04','2024-11-28 04:09:04','',0,'https://fe2tech.com/wp-content/uploads/2024/11/z6074641293113_b4b186c67b6e7829dd2a91d730cf9aa7.jpg',0,'attachment','image/jpeg',0),(2678,1,'2024-11-28 04:09:05','2024-11-28 04:09:05','','z6074649965196_82fd76ddbbf38d64dae8af11b21537b9','','inherit','open','closed','','z6074649965196_82fd76ddbbf38d64dae8af11b21537b9','','','2024-11-28 04:09:05','2024-11-28 04:09:05','',0,'https://fe2tech.com/wp-content/uploads/2024/11/z6074649965196_82fd76ddbbf38d64dae8af11b21537b9.jpg',0,'attachment','image/jpeg',0),(2679,1,'2024-11-28 04:14:38','2024-11-28 04:14:38','','z6069736575578_e0a4f5473843e58ee1a79989f367ada9','','inherit','open','closed','','z6069736575578_e0a4f5473843e58ee1a79989f367ada9','','','2024-11-28 04:14:38','2024-11-28 04:14:38','',0,'https://fe2tech.com/wp-content/uploads/2024/11/z6069736575578_e0a4f5473843e58ee1a79989f367ada9.jpg',0,'attachment','image/jpeg',0),(2680,1,'2024-11-28 04:14:39','2024-11-28 04:14:39','','z6069736721586_16b9198420b399f9d82c058d9082a3e0','','inherit','open','closed','','z6069736721586_16b9198420b399f9d82c058d9082a3e0','','','2024-11-28 04:14:39','2024-11-28 04:14:39','',0,'https://fe2tech.com/wp-content/uploads/2024/11/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg',0,'attachment','image/jpeg',0),(2681,1,'2024-11-28 04:14:41','2024-11-28 04:14:41','','z6069735219679_91a6f6993146906f8465b43ddd0c2b3c','','inherit','open','closed','','z6069735219679_91a6f6993146906f8465b43ddd0c2b3c','','','2024-11-28 04:14:41','2024-11-28 04:14:41','',0,'https://fe2tech.com/wp-content/uploads/2024/11/z6069735219679_91a6f6993146906f8465b43ddd0c2b3c.jpg',0,'attachment','image/jpeg',0),(2682,1,'2024-11-28 04:14:42','2024-11-28 04:14:42','','z6069736761454_b98d468b133ac59ebbf5e62b693462a4','','inherit','open','closed','','z6069736761454_b98d468b133ac59ebbf5e62b693462a4','','','2024-11-28 04:14:42','2024-11-28 04:14:42','',0,'https://fe2tech.com/wp-content/uploads/2024/11/z6069736761454_b98d468b133ac59ebbf5e62b693462a4.jpg',0,'attachment','image/jpeg',0),(2683,1,'2024-11-28 04:14:43','2024-11-28 04:14:43','','z6069736784335_f93bc7820cfdc0b015c8224b9a1ace10','','inherit','open','closed','','z6069736784335_f93bc7820cfdc0b015c8224b9a1ace10','','','2024-11-28 04:14:43','2024-11-28 04:14:43','',0,'https://fe2tech.com/wp-content/uploads/2024/11/z6069736784335_f93bc7820cfdc0b015c8224b9a1ace10.jpg',0,'attachment','image/jpeg',0),(2684,1,'2024-11-28 04:14:44','2024-11-28 04:14:44','','z6069219941349_b0954e44a25a7d1543eb33ceeae20efb','','inherit','open','closed','','z6069219941349_b0954e44a25a7d1543eb33ceeae20efb','','','2024-11-28 04:14:44','2024-11-28 04:14:44','',0,'https://fe2tech.com/wp-content/uploads/2024/11/z6069219941349_b0954e44a25a7d1543eb33ceeae20efb.jpg',0,'attachment','image/jpeg',0),(2685,1,'2024-11-28 04:14:46','2024-11-28 04:14:46','','z6069735343201_d2922aa1680c57bfe2da9aaba121caa6','','inherit','open','closed','','z6069735343201_d2922aa1680c57bfe2da9aaba121caa6','','','2024-11-28 04:14:46','2024-11-28 04:14:46','',0,'https://fe2tech.com/wp-content/uploads/2024/11/z6069735343201_d2922aa1680c57bfe2da9aaba121caa6.jpg',0,'attachment','image/jpeg',0),(2686,1,'2024-11-28 04:14:47','2024-11-28 04:14:47','','z6069735441885_088dd417b659783376adfeb006d18180','','inherit','open','closed','','z6069735441885_088dd417b659783376adfeb006d18180','','','2024-11-28 04:14:47','2024-11-28 04:14:47','',0,'https://fe2tech.com/wp-content/uploads/2024/11/z6069735441885_088dd417b659783376adfeb006d18180.jpg',0,'attachment','image/jpeg',0),(2687,1,'2024-11-28 04:14:48','2024-11-28 04:14:48','','z6069735598101_0fdd0a773a22d6af92f694d7866b2a5a','','inherit','open','closed','','z6069735598101_0fdd0a773a22d6af92f694d7866b2a5a','','','2024-11-28 04:14:48','2024-11-28 04:14:48','',0,'https://fe2tech.com/wp-content/uploads/2024/11/z6069735598101_0fdd0a773a22d6af92f694d7866b2a5a.jpg',0,'attachment','image/jpeg',0),(2688,1,'2024-11-28 04:14:49','2024-11-28 04:14:49','','z6069735634632_da3df11cc1dfa978c5b70f2e44404712','','inherit','open','closed','','z6069735634632_da3df11cc1dfa978c5b70f2e44404712','','','2024-11-28 04:14:49','2024-11-28 04:14:49','',0,'https://fe2tech.com/wp-content/uploads/2024/11/z6069735634632_da3df11cc1dfa978c5b70f2e44404712.jpg',0,'attachment','image/jpeg',0),(2689,1,'2024-11-28 04:14:51','2024-11-28 04:14:51','','z6069735693987_bf7347f533ec750a2c4f9df1763b8881','','inherit','open','closed','','z6069735693987_bf7347f533ec750a2c4f9df1763b8881','','','2024-11-28 04:14:51','2024-11-28 04:14:51','',0,'https://fe2tech.com/wp-content/uploads/2024/11/z6069735693987_bf7347f533ec750a2c4f9df1763b8881.jpg',0,'attachment','image/jpeg',0),(2690,1,'2024-11-28 04:14:52','2024-11-28 04:14:52','','z6069735835496_a71ac50ddac36867fca21cee8c47fe0a','','inherit','open','closed','','z6069735835496_a71ac50ddac36867fca21cee8c47fe0a','','','2024-11-28 04:14:52','2024-11-28 04:14:52','',0,'https://fe2tech.com/wp-content/uploads/2024/11/z6069735835496_a71ac50ddac36867fca21cee8c47fe0a.jpg',0,'attachment','image/jpeg',0),(2691,1,'2024-11-28 04:14:53','2024-11-28 04:14:53','','z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b','','inherit','open','closed','','z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b','','','2024-11-28 04:14:53','2024-11-28 04:14:53','',0,'https://fe2tech.com/wp-content/uploads/2024/11/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg',0,'attachment','image/jpeg',0),(2692,1,'2024-11-28 04:14:54','2024-11-28 04:14:54','','z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d','','inherit','open','closed','','z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d','','','2024-11-28 04:14:54','2024-11-28 04:14:54','',0,'https://fe2tech.com/wp-content/uploads/2024/11/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg',0,'attachment','image/jpeg',0),(2693,1,'2024-11-28 04:14:56','2024-11-28 04:14:56','','z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc','','inherit','open','closed','','z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc','','','2024-11-28 04:14:56','2024-11-28 04:14:56','',0,'https://fe2tech.com/wp-content/uploads/2024/11/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg',0,'attachment','image/jpeg',0),(2694,1,'2024-11-28 04:14:57','2024-11-28 04:14:57','','z6069736165372_82569324de1c8fcc376cc0e737c0520e','','inherit','open','closed','','z6069736165372_82569324de1c8fcc376cc0e737c0520e','','','2024-11-28 04:14:57','2024-11-28 04:14:57','',0,'https://fe2tech.com/wp-content/uploads/2024/11/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg',0,'attachment','image/jpeg',0),(2695,1,'2024-11-28 04:14:58','2024-11-28 04:14:58','','z6069736324472_06f1ed1a1be2c3a5923070aff7d5e10e','','inherit','open','closed','','z6069736324472_06f1ed1a1be2c3a5923070aff7d5e10e','','','2024-11-28 04:14:58','2024-11-28 04:14:58','',0,'https://fe2tech.com/wp-content/uploads/2024/11/z6069736324472_06f1ed1a1be2c3a5923070aff7d5e10e.jpg',0,'attachment','image/jpeg',0),(2696,1,'2024-11-28 04:14:59','2024-11-28 04:14:59','','z6069736391051_4c3cae16a8ff4f216b8d53673772dd07','','inherit','open','closed','','z6069736391051_4c3cae16a8ff4f216b8d53673772dd07','','','2024-11-28 04:14:59','2024-11-28 04:14:59','',0,'https://fe2tech.com/wp-content/uploads/2024/11/z6069736391051_4c3cae16a8ff4f216b8d53673772dd07.jpg',0,'attachment','image/jpeg',0),(2697,1,'2024-11-28 04:15:01','2024-11-28 04:15:01','','z6069736455775_97a937807c807bf71369419a0a5d3d2c','','inherit','open','closed','','z6069736455775_97a937807c807bf71369419a0a5d3d2c','','','2024-11-28 04:15:01','2024-11-28 04:15:01','',0,'https://fe2tech.com/wp-content/uploads/2024/11/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg',0,'attachment','image/jpeg',0),(2698,1,'2024-11-28 04:15:59','2024-11-28 04:15:59','','z6069219949175_e2a105bcf223c832d6caab2d03fe0413','','inherit','open','closed','','z6069219949175_e2a105bcf223c832d6caab2d03fe0413','','','2024-11-28 04:15:59','2024-11-28 04:15:59','',0,'https://fe2tech.com/wp-content/uploads/2024/11/z6069219949175_e2a105bcf223c832d6caab2d03fe0413.jpg',0,'attachment','image/jpeg',0),(2699,1,'2024-11-28 04:16:00','2024-11-28 04:16:00','','z5799313165266_a15253e3a3e0a2c978ed667994b8f415','','inherit','open','closed','','z5799313165266_a15253e3a3e0a2c978ed667994b8f415','','','2024-11-28 04:16:00','2024-11-28 04:16:00','',0,'https://fe2tech.com/wp-content/uploads/2024/11/z5799313165266_a15253e3a3e0a2c978ed667994b8f415.jpg',0,'attachment','image/jpeg',0),(2700,1,'2024-11-28 04:16:01','2024-11-28 04:16:01','','z5799321604115_493f8355869dd3ca82a96e86e2982bfe','','inherit','open','closed','','z5799321604115_493f8355869dd3ca82a96e86e2982bfe','','','2024-11-28 04:16:01','2024-11-28 04:16:01','',0,'https://fe2tech.com/wp-content/uploads/2024/11/z5799321604115_493f8355869dd3ca82a96e86e2982bfe.jpg',0,'attachment','image/jpeg',0),(2701,1,'2024-11-28 04:16:02','2024-11-28 04:16:02','','z5799321696024_733a85bf835aea0a8afc8b269d149700','','inherit','open','closed','','z5799321696024_733a85bf835aea0a8afc8b269d149700','','','2024-11-28 04:16:02','2024-11-28 04:16:02','',0,'https://fe2tech.com/wp-content/uploads/2024/11/z5799321696024_733a85bf835aea0a8afc8b269d149700.jpg',0,'attachment','image/jpeg',0),(2702,1,'2024-11-28 04:16:04','2024-11-28 04:16:04','','z5799313179567_c3d6675a03762fb94376dc96f05389bd','','inherit','open','closed','','z5799313179567_c3d6675a03762fb94376dc96f05389bd','','','2024-11-28 04:16:04','2024-11-28 04:16:04','',0,'https://fe2tech.com/wp-content/uploads/2024/11/z5799313179567_c3d6675a03762fb94376dc96f05389bd.jpg',0,'attachment','image/jpeg',0),(2703,1,'2024-11-28 04:16:05','2024-11-28 04:16:05','','z5799313273454_ad716befaf43d2df147629d95262c520','','inherit','open','closed','','z5799313273454_ad716befaf43d2df147629d95262c520','','','2024-11-28 04:16:05','2024-11-28 04:16:05','',0,'https://fe2tech.com/wp-content/uploads/2024/11/z5799313273454_ad716befaf43d2df147629d95262c520.jpg',0,'attachment','image/jpeg',0),(2704,1,'2024-11-28 04:16:06','2024-11-28 04:16:06','','z5952363716249_96b2fea5fe33f4a24d8251c8aaf225e1','','inherit','open','closed','','z5952363716249_96b2fea5fe33f4a24d8251c8aaf225e1','','','2024-11-28 04:16:06','2024-11-28 04:16:06','',0,'https://fe2tech.com/wp-content/uploads/2024/11/z5952363716249_96b2fea5fe33f4a24d8251c8aaf225e1.jpg',0,'attachment','image/jpeg',0),(2705,1,'2024-11-28 04:16:07','2024-11-28 04:16:07','','z5952363723771_9eec4d51fc1723fb669f980084e20a61','','inherit','open','closed','','z5952363723771_9eec4d51fc1723fb669f980084e20a61','','','2024-11-28 04:16:07','2024-11-28 04:16:07','',0,'https://fe2tech.com/wp-content/uploads/2024/11/z5952363723771_9eec4d51fc1723fb669f980084e20a61.jpg',0,'attachment','image/jpeg',0),(2706,1,'2024-11-28 04:16:09','2024-11-28 04:16:09','','z5952363723892_5b7200026202a1efe96596109fad6857','','inherit','open','closed','','z5952363723892_5b7200026202a1efe96596109fad6857','','','2024-11-28 04:16:09','2024-11-28 04:16:09','',0,'https://fe2tech.com/wp-content/uploads/2024/11/z5952363723892_5b7200026202a1efe96596109fad6857.jpg',0,'attachment','image/jpeg',0),(2707,1,'2024-11-28 04:16:10','2024-11-28 04:16:10','','z5952363735361_9355fa7eb991123dc995dfaa2b4cf754','','inherit','open','closed','','z5952363735361_9355fa7eb991123dc995dfaa2b4cf754','','','2024-11-28 04:16:10','2024-11-28 04:16:10','',0,'https://fe2tech.com/wp-content/uploads/2024/11/z5952363735361_9355fa7eb991123dc995dfaa2b4cf754.jpg',0,'attachment','image/jpeg',0),(2708,1,'2024-11-28 04:16:11','2024-11-28 04:16:11','','z5952363746762_6241ac4c6625581b5db9b24a1ee05f68','','inherit','open','closed','','z5952363746762_6241ac4c6625581b5db9b24a1ee05f68-2','','','2024-11-28 04:16:11','2024-11-28 04:16:11','',0,'https://fe2tech.com/wp-content/uploads/2024/11/z5952363746762_6241ac4c6625581b5db9b24a1ee05f68-1.jpg',0,'attachment','image/jpeg',0),(2709,1,'2024-11-28 04:16:12','2024-11-28 04:16:12','','z5952363741409_d72124d9091280f6529a27a919be13c9','','inherit','open','closed','','z5952363741409_d72124d9091280f6529a27a919be13c9','','','2024-11-28 04:16:12','2024-11-28 04:16:12','',0,'https://fe2tech.com/wp-content/uploads/2024/11/z5952363741409_d72124d9091280f6529a27a919be13c9.jpg',0,'attachment','image/jpeg',0),(2710,1,'2024-11-28 04:17:37','2024-11-28 04:17:37','','z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c','','inherit','open','closed','','z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c','','','2024-11-28 04:17:37','2024-11-28 04:17:37','',0,'https://fe2tech.com/wp-content/uploads/2024/11/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg',0,'attachment','image/jpeg',0),(2711,1,'2024-11-28 04:17:38','2024-11-28 04:17:38','','z6069735037353_db87732b3ea9d93536bcd3aec64835a7','','inherit','open','closed','','z6069735037353_db87732b3ea9d93536bcd3aec64835a7','','','2024-11-28 04:17:38','2024-11-28 04:17:38','',0,'https://fe2tech.com/wp-content/uploads/2024/11/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg',0,'attachment','image/jpeg',0),(2712,1,'2024-11-28 04:17:40','2024-11-28 04:17:40','','z6069735059162_053b364ab761dc5a44279faf64395324','','inherit','open','closed','','z6069735059162_053b364ab761dc5a44279faf64395324','','','2024-11-28 04:17:40','2024-11-28 04:17:40','',0,'https://fe2tech.com/wp-content/uploads/2024/11/z6069735059162_053b364ab761dc5a44279faf64395324.jpg',0,'attachment','image/jpeg',0),(2713,1,'2024-11-28 04:17:41','2024-11-28 04:17:41','','z6069735078372_50abce5249c8acdcfbdf8a063489e186','','inherit','open','closed','','z6069735078372_50abce5249c8acdcfbdf8a063489e186','','','2024-11-28 04:17:41','2024-11-28 04:17:41','',0,'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg',0,'attachment','image/jpeg',0),(2714,1,'2024-11-28 04:17:42','2024-11-28 04:17:42','','z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6','','inherit','open','closed','','z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6','','','2024-11-28 04:17:42','2024-11-28 04:17:42','',0,'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg',0,'attachment','image/jpeg',0),(2715,1,'2024-11-28 04:17:43','2024-11-28 04:17:43','','z6069684949086_b29fdb50114a196cc3fdcc9e12caf105','','inherit','open','closed','','z6069684949086_b29fdb50114a196cc3fdcc9e12caf105','','','2024-11-28 04:17:43','2024-11-28 04:17:43','',0,'https://fe2tech.com/wp-content/uploads/2024/11/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg',0,'attachment','image/jpeg',0),(2716,1,'2024-11-28 04:17:45','2024-11-28 04:17:45','','z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f','','inherit','open','closed','','z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f','','','2024-11-28 04:17:45','2024-11-28 04:17:45','',0,'https://fe2tech.com/wp-content/uploads/2024/11/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg',0,'attachment','image/jpeg',0),(2717,1,'2024-11-28 04:18:32','2024-11-28 04:18:32','','z6028111300979_0052716b462843a5d1968f7870c72fd8','','inherit','open','closed','','z6028111300979_0052716b462843a5d1968f7870c72fd8','','','2024-11-28 04:18:32','2024-11-28 04:18:32','',0,'https://fe2tech.com/wp-content/uploads/2024/11/z6028111300979_0052716b462843a5d1968f7870c72fd8.jpg',0,'attachment','image/jpeg',0),(2718,1,'2024-11-28 04:18:33','2024-11-28 04:18:33','','z6028112000000_2440d5ae36f700840d0f0b583bbcbdfa','','inherit','open','closed','','z6028112000000_2440d5ae36f700840d0f0b583bbcbdfa','','','2024-11-28 04:18:33','2024-11-28 04:18:33','',0,'https://fe2tech.com/wp-content/uploads/2024/11/z6028112000000_2440d5ae36f700840d0f0b583bbcbdfa.jpg',0,'attachment','image/jpeg',0),(2719,1,'2024-11-28 04:18:34','2024-11-28 04:18:34','','z6028112670024_1806afd7d70bbbc523d63b0c61e9130b','','inherit','open','closed','','z6028112670024_1806afd7d70bbbc523d63b0c61e9130b','','','2024-11-28 04:18:34','2024-11-28 04:18:34','',0,'https://fe2tech.com/wp-content/uploads/2024/11/z6028112670024_1806afd7d70bbbc523d63b0c61e9130b.jpg',0,'attachment','image/jpeg',0),(2720,1,'2024-11-28 04:18:36','2024-11-28 04:18:36','','z6028113287912_e1aa8bdb9fe72b1fe22887ceaafc0dbd','','inherit','open','closed','','z6028113287912_e1aa8bdb9fe72b1fe22887ceaafc0dbd','','','2024-11-28 04:18:36','2024-11-28 04:18:36','',0,'https://fe2tech.com/wp-content/uploads/2024/11/z6028113287912_e1aa8bdb9fe72b1fe22887ceaafc0dbd.jpg',0,'attachment','image/jpeg',0),(2721,1,'2024-11-28 04:18:37','2024-11-28 04:18:37','','z6028113894704_3504e4bf093ad9f9d635c8bfa2aaaef6','','inherit','open','closed','','z6028113894704_3504e4bf093ad9f9d635c8bfa2aaaef6','','','2024-11-28 04:18:37','2024-11-28 04:18:37','',0,'https://fe2tech.com/wp-content/uploads/2024/11/z6028113894704_3504e4bf093ad9f9d635c8bfa2aaaef6.jpg',0,'attachment','image/jpeg',0),(2722,1,'2024-11-28 04:18:38','2024-11-28 04:18:38','','z6028114767739_d014b10da5088bc7d3675a6d00e77d33','','inherit','open','closed','','z6028114767739_d014b10da5088bc7d3675a6d00e77d33','','','2024-11-28 04:18:38','2024-11-28 04:18:38','',0,'https://fe2tech.com/wp-content/uploads/2024/11/z6028114767739_d014b10da5088bc7d3675a6d00e77d33.jpg',0,'attachment','image/jpeg',0),(2723,1,'2024-11-28 04:18:39','2024-11-28 04:18:39','','z5799321434561_6d2cb75edba82832e0cbd90673857bd3','','inherit','open','closed','','z5799321434561_6d2cb75edba82832e0cbd90673857bd3','','','2024-11-28 04:18:39','2024-11-28 04:18:39','',0,'https://fe2tech.com/wp-content/uploads/2024/11/z5799321434561_6d2cb75edba82832e0cbd90673857bd3.jpg',0,'attachment','image/jpeg',0),(2724,1,'2024-11-28 04:18:41','2024-11-28 04:18:41','','z5799321448088_6e6944c3ceb335897e2b4f4ad20975b7','','inherit','open','closed','','z5799321448088_6e6944c3ceb335897e2b4f4ad20975b7','','','2024-11-28 04:18:41','2024-11-28 04:18:41','',0,'https://fe2tech.com/wp-content/uploads/2024/11/z5799321448088_6e6944c3ceb335897e2b4f4ad20975b7.jpg',0,'attachment','image/jpeg',0),(2725,1,'2024-11-28 04:18:42','2024-11-28 04:18:42','','z5799321548557_1a5e69a89ca37953e0c04c88e529d951','','inherit','open','closed','','z5799321548557_1a5e69a89ca37953e0c04c88e529d951','','','2024-11-28 04:18:42','2024-11-28 04:18:42','',0,'https://fe2tech.com/wp-content/uploads/2024/11/z5799321548557_1a5e69a89ca37953e0c04c88e529d951.jpg',0,'attachment','image/jpeg',0),(2726,1,'2024-11-28 04:18:43','2024-11-28 04:18:43','','z6028109630704_29a82df97ea4ea7c37859f9667154da1','','inherit','open','closed','','z6028109630704_29a82df97ea4ea7c37859f9667154da1','','','2024-11-28 04:18:43','2024-11-28 04:18:43','',0,'https://fe2tech.com/wp-content/uploads/2024/11/z6028109630704_29a82df97ea4ea7c37859f9667154da1.jpg',0,'attachment','image/jpeg',0),(2727,1,'2024-11-28 04:18:44','2024-11-28 04:18:44','','z6028109675984_511bb58690a73ab9cc1adcd146ca46f2','','inherit','open','closed','','z6028109675984_511bb58690a73ab9cc1adcd146ca46f2','','','2024-11-28 04:18:44','2024-11-28 04:18:44','',0,'https://fe2tech.com/wp-content/uploads/2024/11/z6028109675984_511bb58690a73ab9cc1adcd146ca46f2.jpg',0,'attachment','image/jpeg',0),(2728,1,'2024-11-28 04:18:45','2024-11-28 04:18:45','','z6028110631415_9bd375451b2242776c3fa47a5e91f3e1','','inherit','open','closed','','z6028110631415_9bd375451b2242776c3fa47a5e91f3e1','','','2024-11-28 04:18:45','2024-11-28 04:18:45','',0,'https://fe2tech.com/wp-content/uploads/2024/11/z6028110631415_9bd375451b2242776c3fa47a5e91f3e1.jpg',0,'attachment','image/jpeg',0),(2729,1,'2024-11-28 04:18:47','2024-11-28 04:18:47','','z6028111167101_685de2e5395bbf8d97e4d2f8aa87fee3','','inherit','open','closed','','z6028111167101_685de2e5395bbf8d97e4d2f8aa87fee3','','','2024-11-28 04:18:47','2024-11-28 04:18:47','',0,'https://fe2tech.com/wp-content/uploads/2024/11/z6028111167101_685de2e5395bbf8d97e4d2f8aa87fee3.jpg',0,'attachment','image/jpeg',0),(2730,1,'2024-11-28 04:19:34','2024-11-28 04:19:34','','z5946591338687_fa514e164f2ee9961cfeece9b2a2962e','','inherit','open','closed','','z5946591338687_fa514e164f2ee9961cfeece9b2a2962e','','','2024-11-28 04:19:34','2024-11-28 04:19:34','',0,'https://fe2tech.com/wp-content/uploads/2024/11/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg',0,'attachment','image/jpeg',0),(2731,1,'2024-11-28 04:19:36','2024-11-28 04:19:36','','z5951482497981_4fe8d52c77fb970accaca99311b3e5b8','','inherit','open','closed','','z5951482497981_4fe8d52c77fb970accaca99311b3e5b8','','','2024-11-28 04:19:36','2024-11-28 04:19:36','',0,'https://fe2tech.com/wp-content/uploads/2024/11/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg',0,'attachment','image/jpeg',0),(2732,1,'2024-11-28 04:19:37','2024-11-28 04:19:37','','z6054377713994_731f3ac1f7f32326111a41f67d4a2e33','','inherit','open','closed','','z6054377713994_731f3ac1f7f32326111a41f67d4a2e33','','','2024-11-28 04:19:37','2024-11-28 04:19:37','',0,'https://fe2tech.com/wp-content/uploads/2024/11/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg',0,'attachment','image/jpeg',0),(2733,1,'2024-11-28 04:19:38','2024-11-28 04:19:38','','z5799321653767_797cada97b98642e62c91857c60b5b44','','inherit','open','closed','','z5799321653767_797cada97b98642e62c91857c60b5b44','','','2024-11-28 04:19:38','2024-11-28 04:19:38','',0,'https://fe2tech.com/wp-content/uploads/2024/11/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg',0,'attachment','image/jpeg',0),(2734,1,'2024-11-28 04:19:39','2024-11-28 04:19:39','','z5946591349194_d5010d1700c7ceb491b978b01be3dd28','','inherit','open','closed','','z5946591349194_d5010d1700c7ceb491b978b01be3dd28','','','2024-11-28 04:19:39','2024-11-28 04:19:39','',0,'https://fe2tech.com/wp-content/uploads/2024/11/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg',0,'attachment','image/jpeg',0),(2735,1,'2024-11-28 04:19:53','2024-11-28 04:19:53','Products\n	    <h6>\n        Our strength lies in mass production of aluminum and steel. We excel in innovation and deliver high-value products to our customers.    </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMyOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvOTUwNWM0MGQxYmIzYTJlZGZiYTI3OC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9505c40d1bb3a2edfba278.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9505c40d1bb3a2edfba278.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMyOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvMzhkYjE0ZDNjYjZkNzIzMzJiN2M3Ni5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/38db14d3cb6d72332b7c76.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/38db14d3cb6d72332b7c76.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvYjVlZDFiZTVjNDViN2QwNTI0NGE5My5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b5ed1be5c45b7d05244a93.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b5ed1be5c45b7d05244a93.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvODQ0ZTkzNDY0Y2Y4ZjVhNmFjZTkxMDMuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/844e93464cf8f5a6ace9103.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/844e93464cf8f5a6ace9103.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvNzk1ZDZjNTViM2ViMGFiNTUzZmE5NC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/795d6c55b3eb0ab553fa94.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/795d6c55b3eb0ab553fa94.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvYTJlNWE3ZWU3ODUwYzEwZTk4NDE5MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/a2e5a7ee7850c10e984190.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/a2e5a7ee7850c10e984190.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvMWQyNjBkMmZkMjkxNmJjZjMyODA5OS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/1d260d2fd2916bcf328099.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/1d260d2fd2916bcf328099.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvZGIzZThlMzY1MTg4ZThkNmIxOTkxMTkuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/db3e8e365188e8d6b199119.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/db3e8e365188e8d6b199119.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvZDAzN2VhM2YzNTgxOGNkZmQ1OTAxMTQuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/d037ea3f35818cdfd590114.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/d037ea3f35818cdfd590114.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvMDQ5NzI3OWZmODIxNDE3ZjE4MzAxMjIuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/0497279ff821417f1830122.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/0497279ff821417f1830122.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvNDE4NWE2OGQ3OTMzYzA2ZDk5MjIxMTEuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4185a68d7933c06d9922111.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4185a68d7933c06d9922111.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvMjY2NGQ2NjIwOWRjYjA4MmU5Y2QxMTcuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/2664d66209dcb082e9cd117.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2664d66209dcb082e9cd117.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvOTk1Yjk1NTI0YWVjZjNiMmFhZmQxMjAuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/995b95524aecf3b2aafd120.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/995b95524aecf3b2aafd120.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvOTZlMTdmZTlhMDU3MTkwOTQwNDYxMDUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/96e17fe9a05719094046105.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/96e17fe9a05719094046105.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvNTNkM2ExZGI3ZTY1YzczYjllNzQxMDcuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/53d3a1db7e65c73b9e74107.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/53d3a1db7e65c73b9e74107.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvNDZmM2JlZmE2MTQ0ZDgxYTgxNTUxMjMuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/46f3befa6144d81a8155123.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/46f3befa6144d81a8155123.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvOWQyNGExMmM3ZTkyYzdjYzllODMxMDguanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9d24a12c7e92c7cc9e83108.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9d24a12c7e92c7cc9e83108.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvOWE0Yjc2NDNhOWZkMTBhMzQ5ZWMxMTUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9a4b7643a9fd10a349ec115.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9a4b7643a9fd10a349ec115.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvNWExOTk2MWY0OWExZjBmZmE5YjAxMTguanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/5a19961f49a1f0ffa9b0118.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/5a19961f49a1f0ffa9b0118.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvMGIzMmYwM2IyZjg1OTZkYmNmOTQxMTIuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/0b32f03b2f8596dbcf94112.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/0b32f03b2f8596dbcf94112.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvYjFjOGJmYzE2MDdmZDkyMTgwNmUxMjkuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b1c8bfc1607fd921806e129.jpg\'><img width=\"112\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b1c8bfc1607fd921806e129.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvMzNjY2M3Y2ExODc0YTEyYWY4NjUxMzIuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/33ccc7ca1874a12af865132.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/33ccc7ca1874a12af865132.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvMmM3ZTY2NzZiOWM4MDA5NjU5ZDkxMjYuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/2c7e6676b9c8009659d9126.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2c7e6676b9c8009659d9126.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvNGFmM2ZiZmIyNDQ1OWQxYmM0NTQ4NC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4af3fbfb24459d1bc45484.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4af3fbfb24459d1bc45484.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvZGEyNzcyMmZhZDkxMTRjZjRkODAxMjEuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/da27722fad9114cf4d80121.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/da27722fad9114cf4d80121.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvYjkwMDdkMDZhMmI4MWJlNjQyYTkxMDkuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b9007d06a2b81be642a9109.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b9007d06a2b81be642a9109.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvOTc1MDlhNTk0NWU3ZmNiOWE1ZjYxMTMuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/97509a5945e7fcb9a5f6113.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/97509a5945e7fcb9a5f6113.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvN2NkZTY0ZDZiYjY4MDIzNjViNzkxMDIuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/7cde64d6bb6802365b79102.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/7cde64d6bb6802365b79102.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvN2VmNzk0ZjE0YjRmZjIxMWFiNWU5MS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/7ef794f14b4ff211ab5e91.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/7ef794f14b4ff211ab5e91.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvNDFhNzZmYWZiMDExMDk0ZjUwMDA5Ni5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/41a76fafb011094f500096.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/41a76fafb011094f500096.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvMjg0ZWUxNDgzZWY2ODdhOGRlZTc5NS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/284ee1483ef687a8dee795.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/284ee1483ef687a8dee795.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvNTdjNTc3Y2RhODczMTEyZDQ4NjI4Mi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/57c577cda873112d486282.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/57c577cda873112d486282.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvNDJmMTU4Zjg4NzQ2M2UxODY3NTc3NS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/42f158f887463e18675775.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/42f158f887463e18675775.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvZGZiNThiYmQ1NDAzZWQ1ZGI0MTI4Ni5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/dfb58bbd5403ed5db41286.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/dfb58bbd5403ed5db41286.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvY2NkNzNlZGVlMTYwNTgzZTAxNzE4Ny5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/ccd73edee160583e017187.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/ccd73edee160583e017187.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvOTFhNTUzYTM4YzFkMzU0MzZjMGM4My5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/91a553a38c1d35436c0c83.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/91a553a38c1d35436c0c83.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvMTI4OWRmOGYwMDMxYjk2ZmUwMjA3OS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/1289df8f0031b96fe02079.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/1289df8f0031b96fe02079.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvYTQ4ODhmODA1MDNlZTk2MGIwMmY3NC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/a4888f80503ee960b02f74.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/a4888f80503ee960b02f74.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM5MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvZTMxZmRhMTcwNWE5YmNmN2U1Yjg3MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM5MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvYzIwZjBhMDlkNWI3NmNlOTM1YTY2Ny5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM5MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvMjg3MDZmNzhiMGM2MDk5ODUwZDc2OC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\'><img width=\"150\" height=\"115\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvNzllMDNhZThlNTU2NWMwODA1NDc3Mi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvMDdjNTRlY2U5MTcwMjgyZTcxNjE3MS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/07c54ece9170282e716171.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/07c54ece9170282e716171.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvOGQ3OWNiNzExNGNmYWQ5MWY0ZGU3My5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/8d79cb7114cfad91f4de73.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/8d79cb7114cfad91f4de73.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvNDkyOTA0MjJkYjljNjJjMjNiOGQxMjUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/49290422db9c62c23b8d125.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/49290422db9c62c23b8d125.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvZjdmNGMyZmMxZDQyYTQxY2ZkNTMxMzEuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/f7f4c2fc1d42a41cfd53131.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/f7f4c2fc1d42a41cfd53131.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvNjJmYjcyZjBhZDRlMTQxMDRkNWYxMjcuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/62fb72f0ad4e14104d5f127.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/62fb72f0ad4e14104d5f127.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvNzk1ZGY5NTQyNmVhOWZiNGM2ZmIxMTYuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/795df95426ea9fb4c6fb116.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/795df95426ea9fb4c6fb116.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvMWFiMWY0YjcyYjA5OTI1N2NiMTg5Ny5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/1ab1f4b72b099257cb1897.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/1ab1f4b72b099257cb1897.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvYzU0NjkzNGU0Y2YwZjVhZWFjZTExMDAuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c546934e4cf0f5aeace1100.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c546934e4cf0f5aeace1100.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvNDQ4MGI0ODk2YjM3ZDI2OThiMjY3Ny5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4480b4896b37d2698b2677.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4480b4896b37d2698b2677.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvYjQ0YzExNDRjZWZhNzdhNDJlZWIxMDYuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b44c1144cefa77a42eeb106.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b44c1144cefa77a42eeb106.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvNTZjOWY4YzIyNzdjOWUyMmM3NmQ5OC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/56c9f8c2277c9e22c76d98.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/56c9f8c2277c9e22c76d98.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvNGRjNmNlY2YxMTcxYTgyZmYxNjAxMDEuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4dc6cecf1171a82ff160101.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4dc6cecf1171a82ff160101.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>','Gallery','','inherit','closed','closed','','2126-revision-v1','','','2024-11-28 04:19:53','2024-11-28 04:19:53','',2126,'https://fe2tech.com/?p=2735',0,'revision','',0),(2736,1,'2024-11-28 04:19:54','2024-11-28 04:19:54','Products\n	    <h6>\n        Our strength lies in mass production of aluminum and steel. We excel in innovation and deliver high-value products to our customers.    </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMyOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvOTUwNWM0MGQxYmIzYTJlZGZiYTI3OC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9505c40d1bb3a2edfba278.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9505c40d1bb3a2edfba278.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMyOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvMzhkYjE0ZDNjYjZkNzIzMzJiN2M3Ni5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/38db14d3cb6d72332b7c76.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/38db14d3cb6d72332b7c76.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvYjVlZDFiZTVjNDViN2QwNTI0NGE5My5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b5ed1be5c45b7d05244a93.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b5ed1be5c45b7d05244a93.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvODQ0ZTkzNDY0Y2Y4ZjVhNmFjZTkxMDMuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/844e93464cf8f5a6ace9103.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/844e93464cf8f5a6ace9103.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvNzk1ZDZjNTViM2ViMGFiNTUzZmE5NC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/795d6c55b3eb0ab553fa94.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/795d6c55b3eb0ab553fa94.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvYTJlNWE3ZWU3ODUwYzEwZTk4NDE5MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/a2e5a7ee7850c10e984190.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/a2e5a7ee7850c10e984190.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvMWQyNjBkMmZkMjkxNmJjZjMyODA5OS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/1d260d2fd2916bcf328099.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/1d260d2fd2916bcf328099.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvZGIzZThlMzY1MTg4ZThkNmIxOTkxMTkuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/db3e8e365188e8d6b199119.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/db3e8e365188e8d6b199119.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvZDAzN2VhM2YzNTgxOGNkZmQ1OTAxMTQuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/d037ea3f35818cdfd590114.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/d037ea3f35818cdfd590114.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvMDQ5NzI3OWZmODIxNDE3ZjE4MzAxMjIuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/0497279ff821417f1830122.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/0497279ff821417f1830122.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvNDE4NWE2OGQ3OTMzYzA2ZDk5MjIxMTEuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4185a68d7933c06d9922111.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4185a68d7933c06d9922111.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvMjY2NGQ2NjIwOWRjYjA4MmU5Y2QxMTcuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/2664d66209dcb082e9cd117.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2664d66209dcb082e9cd117.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvOTk1Yjk1NTI0YWVjZjNiMmFhZmQxMjAuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/995b95524aecf3b2aafd120.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/995b95524aecf3b2aafd120.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvOTZlMTdmZTlhMDU3MTkwOTQwNDYxMDUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/96e17fe9a05719094046105.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/96e17fe9a05719094046105.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvNTNkM2ExZGI3ZTY1YzczYjllNzQxMDcuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/53d3a1db7e65c73b9e74107.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/53d3a1db7e65c73b9e74107.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvNDZmM2JlZmE2MTQ0ZDgxYTgxNTUxMjMuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/46f3befa6144d81a8155123.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/46f3befa6144d81a8155123.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvOWQyNGExMmM3ZTkyYzdjYzllODMxMDguanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9d24a12c7e92c7cc9e83108.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9d24a12c7e92c7cc9e83108.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvOWE0Yjc2NDNhOWZkMTBhMzQ5ZWMxMTUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/9a4b7643a9fd10a349ec115.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/9a4b7643a9fd10a349ec115.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvNWExOTk2MWY0OWExZjBmZmE5YjAxMTguanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/5a19961f49a1f0ffa9b0118.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/5a19961f49a1f0ffa9b0118.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvMGIzMmYwM2IyZjg1OTZkYmNmOTQxMTIuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/0b32f03b2f8596dbcf94112.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/0b32f03b2f8596dbcf94112.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvYjFjOGJmYzE2MDdmZDkyMTgwNmUxMjkuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b1c8bfc1607fd921806e129.jpg\'><img width=\"112\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b1c8bfc1607fd921806e129.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvMzNjY2M3Y2ExODc0YTEyYWY4NjUxMzIuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/33ccc7ca1874a12af865132.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/33ccc7ca1874a12af865132.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvMmM3ZTY2NzZiOWM4MDA5NjU5ZDkxMjYuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/2c7e6676b9c8009659d9126.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2c7e6676b9c8009659d9126.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvNGFmM2ZiZmIyNDQ1OWQxYmM0NTQ4NC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4af3fbfb24459d1bc45484.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4af3fbfb24459d1bc45484.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvZGEyNzcyMmZhZDkxMTRjZjRkODAxMjEuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/da27722fad9114cf4d80121.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/da27722fad9114cf4d80121.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvYjkwMDdkMDZhMmI4MWJlNjQyYTkxMDkuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b9007d06a2b81be642a9109.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b9007d06a2b81be642a9109.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvOTc1MDlhNTk0NWU3ZmNiOWE1ZjYxMTMuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/97509a5945e7fcb9a5f6113.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/97509a5945e7fcb9a5f6113.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvN2NkZTY0ZDZiYjY4MDIzNjViNzkxMDIuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/7cde64d6bb6802365b79102.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/7cde64d6bb6802365b79102.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvN2VmNzk0ZjE0YjRmZjIxMWFiNWU5MS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/7ef794f14b4ff211ab5e91.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/7ef794f14b4ff211ab5e91.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvNDFhNzZmYWZiMDExMDk0ZjUwMDA5Ni5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/41a76fafb011094f500096.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/41a76fafb011094f500096.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvMjg0ZWUxNDgzZWY2ODdhOGRlZTc5NS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/284ee1483ef687a8dee795.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/284ee1483ef687a8dee795.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvNTdjNTc3Y2RhODczMTEyZDQ4NjI4Mi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/57c577cda873112d486282.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/57c577cda873112d486282.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvNDJmMTU4Zjg4NzQ2M2UxODY3NTc3NS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/42f158f887463e18675775.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/42f158f887463e18675775.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvZGZiNThiYmQ1NDAzZWQ1ZGI0MTI4Ni5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/dfb58bbd5403ed5db41286.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/dfb58bbd5403ed5db41286.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvY2NkNzNlZGVlMTYwNTgzZTAxNzE4Ny5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/ccd73edee160583e017187.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/ccd73edee160583e017187.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvOTFhNTUzYTM4YzFkMzU0MzZjMGM4My5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/91a553a38c1d35436c0c83.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/91a553a38c1d35436c0c83.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvMTI4OWRmOGYwMDMxYjk2ZmUwMjA3OS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/1289df8f0031b96fe02079.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/1289df8f0031b96fe02079.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvYTQ4ODhmODA1MDNlZTk2MGIwMmY3NC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/a4888f80503ee960b02f74.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/a4888f80503ee960b02f74.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM5MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvZTMxZmRhMTcwNWE5YmNmN2U1Yjg3MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/e31fda1705a9bcf7e5b870.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM5MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvYzIwZjBhMDlkNWI3NmNlOTM1YTY2Ny5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c20f0a09d5b76ce935a667.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM5MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvMjg3MDZmNzhiMGM2MDk5ODUwZDc2OC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\'><img width=\"150\" height=\"115\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/28706f78b0c6099850d768.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvNzllMDNhZThlNTU2NWMwODA1NDc3Mi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/79e03ae8e5565c08054772.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvMDdjNTRlY2U5MTcwMjgyZTcxNjE3MS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/07c54ece9170282e716171.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/07c54ece9170282e716171.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvOGQ3OWNiNzExNGNmYWQ5MWY0ZGU3My5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/8d79cb7114cfad91f4de73.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/8d79cb7114cfad91f4de73.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM0MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvNDkyOTA0MjJkYjljNjJjMjNiOGQxMjUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/49290422db9c62c23b8d125.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/49290422db9c62c23b8d125.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM1NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvZjdmNGMyZmMxZDQyYTQxY2ZkNTMxMzEuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/f7f4c2fc1d42a41cfd53131.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/f7f4c2fc1d42a41cfd53131.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvNjJmYjcyZjBhZDRlMTQxMDRkNWYxMjcuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/62fb72f0ad4e14104d5f127.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/62fb72f0ad4e14104d5f127.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvNzk1ZGY5NTQyNmVhOWZiNGM2ZmIxMTYuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/795df95426ea9fb4c6fb116.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/795df95426ea9fb4c6fb116.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM2NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvMWFiMWY0YjcyYjA5OTI1N2NiMTg5Ny5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/1ab1f4b72b099257cb1897.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/1ab1f4b72b099257cb1897.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM3NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvYzU0NjkzNGU0Y2YwZjVhZWFjZTExMDAuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/c546934e4cf0f5aeace1100.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/c546934e4cf0f5aeace1100.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjM4NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvNDQ4MGI0ODk2YjM3ZDI2OThiMjY3Ny5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4480b4896b37d2698b2677.jpg\'><img width=\"150\" height=\"69\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4480b4896b37d2698b2677.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvYjQ0YzExNDRjZWZhNzdhNDJlZWIxMDYuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/b44c1144cefa77a42eeb106.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/b44c1144cefa77a42eeb106.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvNTZjOWY4YzIyNzdjOWUyMmM3NmQ5OC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/56c9f8c2277c9e22c76d98.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/56c9f8c2277c9e22c76d98.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvNGRjNmNlY2YxMTcxYTgyZmYxNjAxMDEuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/10/4dc6cecf1171a82ff160101.jpg\'><img width=\"69\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/4dc6cecf1171a82ff160101.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>','Gallery','','inherit','closed','closed','','2126-revision-v1','','','2024-11-28 04:19:54','2024-11-28 04:19:54','',2126,'https://fe2tech.com/?p=2736',0,'revision','',0),(2737,1,'2024-11-28 04:19:54','2024-11-28 04:19:54','<h5>\n        Our strength lies in mass production of aluminum and steel. We excel in innovation and deliver high-value products to our customers.    </h5>\n			Welding\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDk5NjUxOTZfODJmZDc2ZGRiYmYzOGQ2NGRhZThhZjExYjIxNTM3YjkuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074649965196_82fd76ddbbf38d64dae8af11b21537b9.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074649965196_82fd76ddbbf38d64dae8af11b21537b9.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY2NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NTI3MjMyMTJfODc3MGYwMjhmZjY0NmYwMTRmMWU5ZjZlZmUzNDk2MmUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074652723212_8770f028ff646f014f1e9f6efe34962e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074652723212_8770f028ff646f014f1e9f6efe34962e.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA5Mzk3MThfYjBmZjZhY2FkMTRiMmFiNWVkMTU4MTcxYzc2ODMzZjkuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640939718_b0ff6acad14b2ab5ed158171c76833f9.jpg\'><img width=\"84\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640939718_b0ff6acad14b2ab5ed158171c76833f9.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDEyOTMxMTNfYjRiMTg2YzY3YjZlNzgyOWRkMmE5MWQ3MzBjZjlhYTcuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641293113_b4b186c67b6e7829dd2a91d730cf9aa7.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641293113_b4b186c67b6e7829dd2a91d730cf9aa7.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY2OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDI3NjM1ODdfMjFlY2NlNWQ0YWNjZjM3MTM1OGViNGNiZDczYzgwMGQuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074642763587_21ecce5d4accf371358eb4cbd73c800d.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074642763587_21ecce5d4accf371358eb4cbd73c800d.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY2OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDI4NDk4NDhfMTBiNTY3MDUxMjA5NmU2NTQ3NDhlNTdiMjRhMDRhZmUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074642849848_10b5670512096e654748e57b24a04afe.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074642849848_10b5670512096e654748e57b24a04afe.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA3NTg4ODNfNjQ4YTA0MmY0YjY0MGQwZjU3YTQ0NDFkZDIxMDk1NzAuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640758883_648a042f4b640d0f57a4441dd2109570.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640758883_648a042f4b640d0f57a4441dd2109570.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA4NDkyMzdfZTc2OTliMWJjNmUzOGUwYmY2NWViM2JjYTI4YWU4Y2EuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640849237_e7699b1bc6e38e0bf65eb3bca28ae8ca.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640849237_e7699b1bc6e38e0bf65eb3bca28ae8ca.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDEwNTIwNzBfOWVmYmMxNTg2Y2I1ZTk1Y2M1NGI4NDIxYTYzZjM4MGUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641052070_9efbc1586cb5e95cc54b8421a63f380e.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641052070_9efbc1586cb5e95cc54b8421a63f380e.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDExNDUyNzNfN2JlNWRmM2UxNzc5YWEwNGU4OTBlNDBjYzI0M2NkZWUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641145273_7be5df3e1779aa04e890e40cc243cdee.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641145273_7be5df3e1779aa04e890e40cc243cdee.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA2NTMyODVfNWE4N2FkZjU3Y2UwYzQxODZmZTRmYjE1NzllMzU3YjUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640653285_5a87adf57ce0c4186fe4fb1579e357b5.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640653285_5a87adf57ce0c4186fe4fb1579e357b5.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDExNzM4MjZfNDVhZTczN2Y3MGRmYjJkMzY1YWJiMzk3ZjEzOWQ3MDguanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641173826_45ae737f70dfb2d365abb397f139d708.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641173826_45ae737f70dfb2d365abb397f139d708.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			Mold\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY1NzU1NzhfZTBhNGY1NDczODQzZTU4ZWUxYTc5OTg5ZjM2N2FkYTkuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736575578_e0a4f5473843e58ee1a79989f367ada9.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736575578_e0a4f5473843e58ee1a79989f367ada9.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY3MjE1ODZfMTZiOTE5ODQyMGIzOTlmOWQ4MmMwNThkOTA4MmEzZTAuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUyMTk2NzlfOTFhNmY2OTkzMTQ2OTA2Zjg0NjViNDNkZGQwYzJiM2MuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735219679_91a6f6993146906f8465b43ddd0c2b3c.jpg\'><img width=\"68\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735219679_91a6f6993146906f8465b43ddd0c2b3c.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY3NjE0NTRfYjk4ZDQ2OGIxMzNhYzU5ZWJiZjVlNjJiNjkzNDYyYTQuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736761454_b98d468b133ac59ebbf5e62b693462a4.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736761454_b98d468b133ac59ebbf5e62b693462a4.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY3ODQzMzVfZjkzYmM3ODIwY2ZkYzBiMDE1YzgyMjRiOWExYWNlMTAuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736784335_f93bc7820cfdc0b015c8224b9a1ace10.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736784335_f93bc7820cfdc0b015c8224b9a1ace10.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjkyMTk5NDEzNDlfYjA5NTRlNDRhMjVhN2QxNTQzZWIzM2NlZWFlMjBlZmIuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069219941349_b0954e44a25a7d1543eb33ceeae20efb.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069219941349_b0954e44a25a7d1543eb33ceeae20efb.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUzNDMyMDFfZDI5MjJhYTE2ODBjNTdiZmUyZGE5YWFiYTEyMWNhYTYuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735343201_d2922aa1680c57bfe2da9aaba121caa6.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735343201_d2922aa1680c57bfe2da9aaba121caa6.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU0NDE4ODVfMDg4ZGQ0MTdiNjU5NzgzMzc2YWRmZWIwMDZkMTgxODAuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735441885_088dd417b659783376adfeb006d18180.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735441885_088dd417b659783376adfeb006d18180.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU1OTgxMDFfMGZkZDBhNzczYTIyZDZhZjkyZjY5NGQ3ODY2YjJhNWEuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735598101_0fdd0a773a22d6af92f694d7866b2a5a.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735598101_0fdd0a773a22d6af92f694d7866b2a5a.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU2MzQ2MzJfZGEzZGYxMWNjMWRmYTk3OGM1YjcwZjJlNDQ0MDQ3MTIuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735634632_da3df11cc1dfa978c5b70f2e44404712.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735634632_da3df11cc1dfa978c5b70f2e44404712.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU2OTM5ODdfYmY3MzQ3ZjUzM2VjNzUwYTJjNGY5ZGYxNzYzYjg4ODEuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735693987_bf7347f533ec750a2c4f9df1763b8881.jpg\'><img width=\"84\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735693987_bf7347f533ec750a2c4f9df1763b8881.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU4MzU0OTZfYTcxYWM1MGRkYWMzNjg2N2ZjYTIxY2VlOGM0N2ZlMGEuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735835496_a71ac50ddac36867fca21cee8c47fe0a.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735835496_a71ac50ddac36867fca21cee8c47fe0a.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU4OTM2OTJfNDhmNGE5ZjdjN2E5ZDA1ZGMwMzdhODBhYzFlNTc4MmIuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYwMDk1MTRfYWQ5MDg4N2YyNWQ3MzRlYzJkMjFkOGE2YTYzNGZmMmQuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYxMTA0MjZfYzNlY2UzZWM1NmY5ZThjYzBlNWM5YTk4Zjk3OTJiZmMuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYxNjUzNzJfODI1NjkzMjRkZTFjOGZjYzM3NmNjMGU3MzdjMDUyMGUuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYzMjQ0NzJfMDZmMWVkMWExYmUyYzNhNTkyMzA3MGFmZjdkNWUxMGUuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736324472_06f1ed1a1be2c3a5923070aff7d5e10e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736324472_06f1ed1a1be2c3a5923070aff7d5e10e.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYzOTEwNTFfNGMzY2FlMTZhOGZmNGYyMTZiOGQ1MzY3Mzc3MmRkMDcuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736391051_4c3cae16a8ff4f216b8d53673772dd07.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736391051_4c3cae16a8ff4f216b8d53673772dd07.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY0NTU3NzVfOTdhOTM3ODA3YzgwN2JmNzEzNjk0MTlhMGE1ZDNkMmMuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\'><img width=\"68\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			Machine Details\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjkyMTk5NDkxNzVfZTJhMTA1YmNmMjIzYzgzMmQ2Y2FhYjJkMDNmZTA0MTMuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069219949175_e2a105bcf223c832d6caab2d03fe0413.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069219949175_e2a105bcf223c832d6caab2d03fe0413.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMTMxNjUyNjZfYTE1MjUzZTNhM2UwYTJjOTc4ZWQ2Njc5OTRiOGY0MTUuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799313165266_a15253e3a3e0a2c978ed667994b8f415.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799313165266_a15253e3a3e0a2c978ed667994b8f415.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE2MDQxMTVfNDkzZjgzNTU4NjlkZDNjYTgyYTk2ZTg2ZTI5ODJiZmUuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321604115_493f8355869dd3ca82a96e86e2982bfe.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321604115_493f8355869dd3ca82a96e86e2982bfe.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE2OTYwMjRfNzMzYTg1YmY4MzVhZWEwYThhZmM4YjI2OWQxNDk3MDAuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321696024_733a85bf835aea0a8afc8b269d149700.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321696024_733a85bf835aea0a8afc8b269d149700.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMTMxNzk1NjdfYzNkNjY3NWEwMzc2MmZiOTQzNzZkYzk2ZjA1Mzg5YmQuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799313179567_c3d6675a03762fb94376dc96f05389bd.jpg\'><img width=\"150\" height=\"86\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799313179567_c3d6675a03762fb94376dc96f05389bd.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMTMyNzM0NTRfYWQ3MTZiZWZhZjQzZDJkZjE0NzYyOWQ5NTI2MmM1MjAuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799313273454_ad716befaf43d2df147629d95262c520.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799313273454_ad716befaf43d2df147629d95262c520.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MTYyNDlfOTZiMmZlYTVmZTMzZjRhMjRkODI1MWM4YWFmMjI1ZTEuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363716249_96b2fea5fe33f4a24d8251c8aaf225e1.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363716249_96b2fea5fe33f4a24d8251c8aaf225e1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MjM3NzFfOWVlYzRkNTFmYzE3MjNmYjY2OWY5ODAwODRlMjBhNjEuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363723771_9eec4d51fc1723fb669f980084e20a61.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363723771_9eec4d51fc1723fb669f980084e20a61.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MjM4OTJfNWI3MjAwMDI2MjAyYTFlZmU5NjU5NjEwOWZhZDY4NTcuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363723892_5b7200026202a1efe96596109fad6857.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363723892_5b7200026202a1efe96596109fad6857.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MzUzNjFfOTM1NWZhN2ViOTkxMTIzZGM5OTVkZmFhMmI0Y2Y3NTQuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363735361_9355fa7eb991123dc995dfaa2b4cf754.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363735361_9355fa7eb991123dc995dfaa2b4cf754.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3NDY3NjJfNjI0MWFjNGM2NjI1NTgxYjVkYjliMjRhMWVlMDVmNjgtMS5qcGciLCJzbGlkZXNob3ciOiJjZDlkYmE5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363746762_6241ac4c6625581b5db9b24a1ee05f68-1.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363746762_6241ac4c6625581b5db9b24a1ee05f68-1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3NDE0MDlfZDcyMTI0ZDkwOTEyODBmNjUyOWEyN2E5MTliZTEzYzkuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363741409_d72124d9091280f6529a27a919be13c9.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363741409_d72124d9091280f6529a27a919be13c9.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			Tool\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwMTgzMzRfMTdjNWZhYzk2ZmIyODQzZDc0YTc2Y2M3OWY5YjRmNWMuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\'><img width=\"150\" height=\"135\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwMzczNTNfZGI4NzczMmIzZWE5ZDkzNTM2YmNkM2FlYzY0ODM1YTcuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNTkxNjJfMDUzYjM2NGFiNzYxZGM1YTQ0Mjc5ZmFmNjQzOTUzMjQuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\'><img width=\"70\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNzgzNzJfNTBhYmNlNTI0OWM4YWNkY2ZiZGY4YTA2MzQ4OWUxODYuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNzg1NzBfMGFiNThiNDZiZjY4M2RmNmVjZGIyYzJkODc5NDViYTYuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\'><img width=\"150\" height=\"129\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk2ODQ5NDkwODZfYjI5ZmRiNTAxMTRhMTk2Y2MzZmRjYzllMTJjYWYxMDUuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\'><img width=\"150\" height=\"128\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk2ODQ5NDY2NDFfMTUwMGZiZTE2ZmVjM2ExNGVhZGI4ZTRhZWQxY2Y2M2YuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			Motorbike Parts\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTEzMDA5NzlfMDA1MjcxNmI0NjI4NDNhNWQxOTY4Zjc4NzBjNzJmZDguanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028111300979_0052716b462843a5d1968f7870c72fd8.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028111300979_0052716b462843a5d1968f7870c72fd8.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTIwMDAwMDBfMjQ0MGQ1YWUzNmY3MDA4NDBkMGYwYjU4M2JiY2JkZmEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028112000000_2440d5ae36f700840d0f0b583bbcbdfa.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028112000000_2440d5ae36f700840d0f0b583bbcbdfa.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTI2NzAwMjRfMTgwNmFmZDdkNzBiYmJjNTIzZDYzYjBjNjFlOTEzMGIuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028112670024_1806afd7d70bbbc523d63b0c61e9130b.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028112670024_1806afd7d70bbbc523d63b0c61e9130b.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTMyODc5MTJfZTFhYThiZGI5ZmU3MmIxZmUyMjg4N2NlYWFmYzBkYmQuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028113287912_e1aa8bdb9fe72b1fe22887ceaafc0dbd.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028113287912_e1aa8bdb9fe72b1fe22887ceaafc0dbd.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTM4OTQ3MDRfMzUwNGU0YmYwOTNhZDlmOWQ2MzVjOGJmYTJhYWFlZjYuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028113894704_3504e4bf093ad9f9d635c8bfa2aaaef6.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028113894704_3504e4bf093ad9f9d635c8bfa2aaaef6.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTQ3Njc3MzlfZDAxNGIxMGRhNTA4OGJjN2QzNjc1YTZkMDBlNzdkMzMuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028114767739_d014b10da5088bc7d3675a6d00e77d33.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028114767739_d014b10da5088bc7d3675a6d00e77d33.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE0MzQ1NjFfNmQyY2I3NWVkYmE4MjgzMmUwY2JkOTA2NzM4NTdiZDMuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321434561_6d2cb75edba82832e0cbd90673857bd3.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321434561_6d2cb75edba82832e0cbd90673857bd3.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE0NDgwODhfNmU2OTQ0YzNjZWIzMzU4OTdlMmI0ZjRhZDIwOTc1YjcuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321448088_6e6944c3ceb335897e2b4f4ad20975b7.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321448088_6e6944c3ceb335897e2b4f4ad20975b7.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE1NDg1NTdfMWE1ZTY5YTg5Y2EzNzk1M2UwYzA0Yzg4ZTUyOWQ5NTEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321548557_1a5e69a89ca37953e0c04c88e529d951.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321548557_1a5e69a89ca37953e0c04c88e529d951.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMDk2MzA3MDRfMjlhODJkZjk3ZWE0ZWE3YzM3ODU5Zjk2NjcxNTRkYTEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028109630704_29a82df97ea4ea7c37859f9667154da1.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028109630704_29a82df97ea4ea7c37859f9667154da1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMDk2NzU5ODRfNTExYmI1ODY5MGE3M2FiOWNjMWFkY2QxNDZjYTQ2ZjIuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028109675984_511bb58690a73ab9cc1adcd146ca46f2.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028109675984_511bb58690a73ab9cc1adcd146ca46f2.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTA2MzE0MTVfOWJkMzc1NDUxYjIyNDI3NzZjM2ZhNDdhNWU5MWYzZTEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028110631415_9bd375451b2242776c3fa47a5e91f3e1.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028110631415_9bd375451b2242776c3fa47a5e91f3e1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTExNjcxMDFfNjg1ZGUyZTUzOTViYmY4ZDk3ZTRkMmY4YWE4N2ZlZTMuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028111167101_685de2e5395bbf8d97e4d2f8aa87fee3.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028111167101_685de2e5395bbf8d97e4d2f8aa87fee3.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			Jig\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NDY1OTEzMzg2ODdfZmE1MTRlMTY0ZjJlZTk5NjFjZmVlY2U5YjJhMjk2MmUuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTE0ODI0OTc5ODFfNGZlOGQ1MmM3N2ZiOTcwYWNjYWNhOTkzMTFiM2U1YjguanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNTQzNzc3MTM5OTRfNzMxZjNhYzFmN2YzMjMyNjExMWE0MWY2N2Q0YTJlMzMuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE2NTM3NjdfNzk3Y2FkYTk3Yjk4NjQyZTYyYzkxODU3YzYwYjViNDQuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NDY1OTEzNDkxOTRfZDUwMTBkMTcwMGM3Y2ViNDkxYjk3OGIwMWJlM2RkMjguanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>','Gallery','','inherit','closed','closed','','2126-revision-v1','','','2024-11-28 04:19:54','2024-11-28 04:19:54','',2126,'https://fe2tech.com/?p=2737',0,'revision','',0),(2738,1,'2024-11-28 04:28:15','2024-11-28 04:28:15','<h5>\n        Our strength lies in mass production of aluminum and steel. We excel in innovation and deliver high-value products to our customers.    </h5>\n			Welding\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDk5NjUxOTZfODJmZDc2ZGRiYmYzOGQ2NGRhZThhZjExYjIxNTM3YjkuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074649965196_82fd76ddbbf38d64dae8af11b21537b9.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074649965196_82fd76ddbbf38d64dae8af11b21537b9.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY2NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NTI3MjMyMTJfODc3MGYwMjhmZjY0NmYwMTRmMWU5ZjZlZmUzNDk2MmUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074652723212_8770f028ff646f014f1e9f6efe34962e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074652723212_8770f028ff646f014f1e9f6efe34962e.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA5Mzk3MThfYjBmZjZhY2FkMTRiMmFiNWVkMTU4MTcxYzc2ODMzZjkuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640939718_b0ff6acad14b2ab5ed158171c76833f9.jpg\'><img width=\"84\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640939718_b0ff6acad14b2ab5ed158171c76833f9.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDEyOTMxMTNfYjRiMTg2YzY3YjZlNzgyOWRkMmE5MWQ3MzBjZjlhYTcuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641293113_b4b186c67b6e7829dd2a91d730cf9aa7.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641293113_b4b186c67b6e7829dd2a91d730cf9aa7.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY2OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDI3NjM1ODdfMjFlY2NlNWQ0YWNjZjM3MTM1OGViNGNiZDczYzgwMGQuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074642763587_21ecce5d4accf371358eb4cbd73c800d.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074642763587_21ecce5d4accf371358eb4cbd73c800d.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY2OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDI4NDk4NDhfMTBiNTY3MDUxMjA5NmU2NTQ3NDhlNTdiMjRhMDRhZmUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074642849848_10b5670512096e654748e57b24a04afe.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074642849848_10b5670512096e654748e57b24a04afe.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA3NTg4ODNfNjQ4YTA0MmY0YjY0MGQwZjU3YTQ0NDFkZDIxMDk1NzAuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640758883_648a042f4b640d0f57a4441dd2109570.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640758883_648a042f4b640d0f57a4441dd2109570.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA4NDkyMzdfZTc2OTliMWJjNmUzOGUwYmY2NWViM2JjYTI4YWU4Y2EuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640849237_e7699b1bc6e38e0bf65eb3bca28ae8ca.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640849237_e7699b1bc6e38e0bf65eb3bca28ae8ca.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDEwNTIwNzBfOWVmYmMxNTg2Y2I1ZTk1Y2M1NGI4NDIxYTYzZjM4MGUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641052070_9efbc1586cb5e95cc54b8421a63f380e.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641052070_9efbc1586cb5e95cc54b8421a63f380e.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDExNDUyNzNfN2JlNWRmM2UxNzc5YWEwNGU4OTBlNDBjYzI0M2NkZWUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641145273_7be5df3e1779aa04e890e40cc243cdee.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641145273_7be5df3e1779aa04e890e40cc243cdee.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA2NTMyODVfNWE4N2FkZjU3Y2UwYzQxODZmZTRmYjE1NzllMzU3YjUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640653285_5a87adf57ce0c4186fe4fb1579e357b5.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640653285_5a87adf57ce0c4186fe4fb1579e357b5.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDExNzM4MjZfNDVhZTczN2Y3MGRmYjJkMzY1YWJiMzk3ZjEzOWQ3MDguanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641173826_45ae737f70dfb2d365abb397f139d708.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641173826_45ae737f70dfb2d365abb397f139d708.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			Mold\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY1NzU1NzhfZTBhNGY1NDczODQzZTU4ZWUxYTc5OTg5ZjM2N2FkYTkuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736575578_e0a4f5473843e58ee1a79989f367ada9.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736575578_e0a4f5473843e58ee1a79989f367ada9.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY3MjE1ODZfMTZiOTE5ODQyMGIzOTlmOWQ4MmMwNThkOTA4MmEzZTAuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUyMTk2NzlfOTFhNmY2OTkzMTQ2OTA2Zjg0NjViNDNkZGQwYzJiM2MuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735219679_91a6f6993146906f8465b43ddd0c2b3c.jpg\'><img width=\"68\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735219679_91a6f6993146906f8465b43ddd0c2b3c.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY3NjE0NTRfYjk4ZDQ2OGIxMzNhYzU5ZWJiZjVlNjJiNjkzNDYyYTQuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736761454_b98d468b133ac59ebbf5e62b693462a4.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736761454_b98d468b133ac59ebbf5e62b693462a4.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY3ODQzMzVfZjkzYmM3ODIwY2ZkYzBiMDE1YzgyMjRiOWExYWNlMTAuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736784335_f93bc7820cfdc0b015c8224b9a1ace10.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736784335_f93bc7820cfdc0b015c8224b9a1ace10.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjkyMTk5NDEzNDlfYjA5NTRlNDRhMjVhN2QxNTQzZWIzM2NlZWFlMjBlZmIuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069219941349_b0954e44a25a7d1543eb33ceeae20efb.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069219941349_b0954e44a25a7d1543eb33ceeae20efb.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUzNDMyMDFfZDI5MjJhYTE2ODBjNTdiZmUyZGE5YWFiYTEyMWNhYTYuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735343201_d2922aa1680c57bfe2da9aaba121caa6.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735343201_d2922aa1680c57bfe2da9aaba121caa6.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU0NDE4ODVfMDg4ZGQ0MTdiNjU5NzgzMzc2YWRmZWIwMDZkMTgxODAuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735441885_088dd417b659783376adfeb006d18180.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735441885_088dd417b659783376adfeb006d18180.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU1OTgxMDFfMGZkZDBhNzczYTIyZDZhZjkyZjY5NGQ3ODY2YjJhNWEuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735598101_0fdd0a773a22d6af92f694d7866b2a5a.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735598101_0fdd0a773a22d6af92f694d7866b2a5a.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU2MzQ2MzJfZGEzZGYxMWNjMWRmYTk3OGM1YjcwZjJlNDQ0MDQ3MTIuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735634632_da3df11cc1dfa978c5b70f2e44404712.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735634632_da3df11cc1dfa978c5b70f2e44404712.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU2OTM5ODdfYmY3MzQ3ZjUzM2VjNzUwYTJjNGY5ZGYxNzYzYjg4ODEuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735693987_bf7347f533ec750a2c4f9df1763b8881.jpg\'><img width=\"84\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735693987_bf7347f533ec750a2c4f9df1763b8881.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU4MzU0OTZfYTcxYWM1MGRkYWMzNjg2N2ZjYTIxY2VlOGM0N2ZlMGEuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735835496_a71ac50ddac36867fca21cee8c47fe0a.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735835496_a71ac50ddac36867fca21cee8c47fe0a.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU4OTM2OTJfNDhmNGE5ZjdjN2E5ZDA1ZGMwMzdhODBhYzFlNTc4MmIuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYwMDk1MTRfYWQ5MDg4N2YyNWQ3MzRlYzJkMjFkOGE2YTYzNGZmMmQuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYxMTA0MjZfYzNlY2UzZWM1NmY5ZThjYzBlNWM5YTk4Zjk3OTJiZmMuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYxNjUzNzJfODI1NjkzMjRkZTFjOGZjYzM3NmNjMGU3MzdjMDUyMGUuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYzMjQ0NzJfMDZmMWVkMWExYmUyYzNhNTkyMzA3MGFmZjdkNWUxMGUuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736324472_06f1ed1a1be2c3a5923070aff7d5e10e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736324472_06f1ed1a1be2c3a5923070aff7d5e10e.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYzOTEwNTFfNGMzY2FlMTZhOGZmNGYyMTZiOGQ1MzY3Mzc3MmRkMDcuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736391051_4c3cae16a8ff4f216b8d53673772dd07.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736391051_4c3cae16a8ff4f216b8d53673772dd07.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY0NTU3NzVfOTdhOTM3ODA3YzgwN2JmNzEzNjk0MTlhMGE1ZDNkMmMuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\'><img width=\"68\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			Machine Details\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjkyMTk5NDkxNzVfZTJhMTA1YmNmMjIzYzgzMmQ2Y2FhYjJkMDNmZTA0MTMuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069219949175_e2a105bcf223c832d6caab2d03fe0413.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069219949175_e2a105bcf223c832d6caab2d03fe0413.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMTMxNjUyNjZfYTE1MjUzZTNhM2UwYTJjOTc4ZWQ2Njc5OTRiOGY0MTUuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799313165266_a15253e3a3e0a2c978ed667994b8f415.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799313165266_a15253e3a3e0a2c978ed667994b8f415.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE2MDQxMTVfNDkzZjgzNTU4NjlkZDNjYTgyYTk2ZTg2ZTI5ODJiZmUuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321604115_493f8355869dd3ca82a96e86e2982bfe.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321604115_493f8355869dd3ca82a96e86e2982bfe.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE2OTYwMjRfNzMzYTg1YmY4MzVhZWEwYThhZmM4YjI2OWQxNDk3MDAuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321696024_733a85bf835aea0a8afc8b269d149700.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321696024_733a85bf835aea0a8afc8b269d149700.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMTMxNzk1NjdfYzNkNjY3NWEwMzc2MmZiOTQzNzZkYzk2ZjA1Mzg5YmQuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799313179567_c3d6675a03762fb94376dc96f05389bd.jpg\'><img width=\"150\" height=\"86\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799313179567_c3d6675a03762fb94376dc96f05389bd.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMTMyNzM0NTRfYWQ3MTZiZWZhZjQzZDJkZjE0NzYyOWQ5NTI2MmM1MjAuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799313273454_ad716befaf43d2df147629d95262c520.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799313273454_ad716befaf43d2df147629d95262c520.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MTYyNDlfOTZiMmZlYTVmZTMzZjRhMjRkODI1MWM4YWFmMjI1ZTEuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363716249_96b2fea5fe33f4a24d8251c8aaf225e1.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363716249_96b2fea5fe33f4a24d8251c8aaf225e1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MjM3NzFfOWVlYzRkNTFmYzE3MjNmYjY2OWY5ODAwODRlMjBhNjEuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363723771_9eec4d51fc1723fb669f980084e20a61.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363723771_9eec4d51fc1723fb669f980084e20a61.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MjM4OTJfNWI3MjAwMDI2MjAyYTFlZmU5NjU5NjEwOWZhZDY4NTcuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363723892_5b7200026202a1efe96596109fad6857.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363723892_5b7200026202a1efe96596109fad6857.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MzUzNjFfOTM1NWZhN2ViOTkxMTIzZGM5OTVkZmFhMmI0Y2Y3NTQuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363735361_9355fa7eb991123dc995dfaa2b4cf754.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363735361_9355fa7eb991123dc995dfaa2b4cf754.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3NDY3NjJfNjI0MWFjNGM2NjI1NTgxYjVkYjliMjRhMWVlMDVmNjgtMS5qcGciLCJzbGlkZXNob3ciOiJjZDlkYmE5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363746762_6241ac4c6625581b5db9b24a1ee05f68-1.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363746762_6241ac4c6625581b5db9b24a1ee05f68-1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3NDE0MDlfZDcyMTI0ZDkwOTEyODBmNjUyOWEyN2E5MTliZTEzYzkuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363741409_d72124d9091280f6529a27a919be13c9.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363741409_d72124d9091280f6529a27a919be13c9.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			Tool\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwMTgzMzRfMTdjNWZhYzk2ZmIyODQzZDc0YTc2Y2M3OWY5YjRmNWMuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\'><img width=\"150\" height=\"135\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwMzczNTNfZGI4NzczMmIzZWE5ZDkzNTM2YmNkM2FlYzY0ODM1YTcuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNTkxNjJfMDUzYjM2NGFiNzYxZGM1YTQ0Mjc5ZmFmNjQzOTUzMjQuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\'><img width=\"70\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNzgzNzJfNTBhYmNlNTI0OWM4YWNkY2ZiZGY4YTA2MzQ4OWUxODYuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNzg1NzBfMGFiNThiNDZiZjY4M2RmNmVjZGIyYzJkODc5NDViYTYuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\'><img width=\"150\" height=\"129\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk2ODQ5NDkwODZfYjI5ZmRiNTAxMTRhMTk2Y2MzZmRjYzllMTJjYWYxMDUuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\'><img width=\"150\" height=\"128\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk2ODQ5NDY2NDFfMTUwMGZiZTE2ZmVjM2ExNGVhZGI4ZTRhZWQxY2Y2M2YuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			Motorbike Parts\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTEzMDA5NzlfMDA1MjcxNmI0NjI4NDNhNWQxOTY4Zjc4NzBjNzJmZDguanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028111300979_0052716b462843a5d1968f7870c72fd8.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028111300979_0052716b462843a5d1968f7870c72fd8.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTIwMDAwMDBfMjQ0MGQ1YWUzNmY3MDA4NDBkMGYwYjU4M2JiY2JkZmEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028112000000_2440d5ae36f700840d0f0b583bbcbdfa.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028112000000_2440d5ae36f700840d0f0b583bbcbdfa.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTI2NzAwMjRfMTgwNmFmZDdkNzBiYmJjNTIzZDYzYjBjNjFlOTEzMGIuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028112670024_1806afd7d70bbbc523d63b0c61e9130b.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028112670024_1806afd7d70bbbc523d63b0c61e9130b.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTMyODc5MTJfZTFhYThiZGI5ZmU3MmIxZmUyMjg4N2NlYWFmYzBkYmQuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028113287912_e1aa8bdb9fe72b1fe22887ceaafc0dbd.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028113287912_e1aa8bdb9fe72b1fe22887ceaafc0dbd.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTM4OTQ3MDRfMzUwNGU0YmYwOTNhZDlmOWQ2MzVjOGJmYTJhYWFlZjYuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028113894704_3504e4bf093ad9f9d635c8bfa2aaaef6.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028113894704_3504e4bf093ad9f9d635c8bfa2aaaef6.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTQ3Njc3MzlfZDAxNGIxMGRhNTA4OGJjN2QzNjc1YTZkMDBlNzdkMzMuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028114767739_d014b10da5088bc7d3675a6d00e77d33.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028114767739_d014b10da5088bc7d3675a6d00e77d33.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE0MzQ1NjFfNmQyY2I3NWVkYmE4MjgzMmUwY2JkOTA2NzM4NTdiZDMuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321434561_6d2cb75edba82832e0cbd90673857bd3.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321434561_6d2cb75edba82832e0cbd90673857bd3.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE0NDgwODhfNmU2OTQ0YzNjZWIzMzU4OTdlMmI0ZjRhZDIwOTc1YjcuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321448088_6e6944c3ceb335897e2b4f4ad20975b7.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321448088_6e6944c3ceb335897e2b4f4ad20975b7.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE1NDg1NTdfMWE1ZTY5YTg5Y2EzNzk1M2UwYzA0Yzg4ZTUyOWQ5NTEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321548557_1a5e69a89ca37953e0c04c88e529d951.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321548557_1a5e69a89ca37953e0c04c88e529d951.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMDk2MzA3MDRfMjlhODJkZjk3ZWE0ZWE3YzM3ODU5Zjk2NjcxNTRkYTEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028109630704_29a82df97ea4ea7c37859f9667154da1.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028109630704_29a82df97ea4ea7c37859f9667154da1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMDk2NzU5ODRfNTExYmI1ODY5MGE3M2FiOWNjMWFkY2QxNDZjYTQ2ZjIuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028109675984_511bb58690a73ab9cc1adcd146ca46f2.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028109675984_511bb58690a73ab9cc1adcd146ca46f2.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTA2MzE0MTVfOWJkMzc1NDUxYjIyNDI3NzZjM2ZhNDdhNWU5MWYzZTEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028110631415_9bd375451b2242776c3fa47a5e91f3e1.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028110631415_9bd375451b2242776c3fa47a5e91f3e1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTExNjcxMDFfNjg1ZGUyZTUzOTViYmY4ZDk3ZTRkMmY4YWE4N2ZlZTMuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028111167101_685de2e5395bbf8d97e4d2f8aa87fee3.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028111167101_685de2e5395bbf8d97e4d2f8aa87fee3.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			Jig\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NDY1OTEzMzg2ODdfZmE1MTRlMTY0ZjJlZTk5NjFjZmVlY2U5YjJhMjk2MmUuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTE0ODI0OTc5ODFfNGZlOGQ1MmM3N2ZiOTcwYWNjYWNhOTkzMTFiM2U1YjguanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNTQzNzc3MTM5OTRfNzMxZjNhYzFmN2YzMjMyNjExMWE0MWY2N2Q0YTJlMzMuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE2NTM3NjdfNzk3Y2FkYTk3Yjk4NjQyZTYyYzkxODU3YzYwYjViNDQuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NDY1OTEzNDkxOTRfZDUwMTBkMTcwMGM3Y2ViNDkxYjk3OGIwMWJlM2RkMjguanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>','Product','','inherit','closed','closed','','2126-revision-v1','','','2024-11-28 04:28:15','2024-11-28 04:28:15','',2126,'https://fe2tech.com/?p=2738',0,'revision','',0),(2739,1,'2024-11-28 04:29:47','2024-11-28 04:29:47','<a href=\"https://fe2tech.com/service/cnc-milling-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/cnc-milling-service/\">CNC Milling Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/cnc-turning-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/cnc-turning-service/\">CNC Turning Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">CNC Tool Grinder Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/sheet-metal-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/sheet-metal-service/\">Sheet Metal Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/welding-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/welding-service/\">Welding Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/edm-grinding-and-wire-cutting-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/edm-grinding-and-wire-cutting-service/\">EDM, Grinding and Wire Cutting Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/bolt-production/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/bolt-production/\">Bolt Production</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/other-services/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/other-services/\">Other Services</a></h3>','Service','','inherit','closed','closed','','2128-revision-v1','','','2024-11-28 04:29:47','2024-11-28 04:29:47','',2128,'https://fe2tech.com/?p=2739',0,'revision','',0),(2740,1,'2024-11-28 04:29:55','2024-11-28 04:29:55','Our Team\n	    <h3>\n        We will exceed your expectations with our innovative solutions.    </h3>\n		<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a ><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218208.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Ronald Dumple                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a >\n                                        Ronald Dumple                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/free-character-illustration-download-in-svg-png-gif-file-formats-female-lady-woman-gee-me-pack-people-illustrations-2218178.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	James Smith                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        James Smith                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218144.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Charles F Johnson                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Charles F Johnson                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218222.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Jodi C Johnson                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Jodi C Johnson                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218229.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Debra L Smith                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Debra L Smith                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218159.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Mrditch  Hohan                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Mrditch  Hohan                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n			Our Partners\n	    <h3>\n        We will exceed your expectations with our innovative solutions as your trusted partner.    </h3>\n		<p>As your trusted partner, we deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a href=\"https://www.yoshimoto-sangyo.co.jp/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"246\" height=\"205\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yoshimoto-vietnam.png\" alt=\"\" /></a>\n                                <a href=\"https://kimlongmotor.com.vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"1586\" height=\"1586\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/kim-long-motors.png\" alt=\"\" /></a>\n                                <a href=\"https://www.samsung.com/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"697\" height=\"232\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/samsung.jpg\" alt=\"\" /></a>\n                                <a href=\"https://komaz.co.jp/english/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"900\" height=\"900\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/komatsu-kogyo.jpg\" alt=\"\" /></a>\n                                <a ><img width=\"256\" height=\"256\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yuwa-engineering.jpg\" alt=\"\" /></a>','Team & Member Companies','','inherit','closed','closed','','28-revision-v1','','','2024-11-28 04:29:55','2024-11-28 04:29:55','',28,'https://fe2tech.com/?p=2740',0,'revision','',0),(2741,1,'2024-11-28 04:30:25','2024-11-28 04:30:25','<a href=\"https://fe2tech.com/service/cnc-milling-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/cnc-milling-service/\">CNC Milling Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/cnc-turning-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/cnc-turning-service/\">CNC Turning Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">CNC Tool Grinder Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/sheet-metal-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/sheet-metal-service/\">Sheet Metal Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/welding-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/welding-service/\">Welding Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/edm-grinding-and-wire-cutting-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/edm-grinding-and-wire-cutting-service/\">EDM, Grinding and Wire Cutting Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/bolt-production/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/bolt-production/\">Bolt Production</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/other-services/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/other-services/\">Other Services</a></h3>','Services','','inherit','closed','closed','','2128-revision-v1','','','2024-11-28 04:30:25','2024-11-28 04:30:25','',2128,'https://fe2tech.com/?p=2741',0,'revision','',0),(2748,1,'2024-12-09 08:58:03','2024-12-09 08:58:03','','FEHT-LOGO.cdr','','inherit','open','closed','','feht-logo-cdr','','','2024-12-09 08:58:03','2024-12-09 08:58:03','',0,'https://fe2tech.com/wp-content/uploads/2024/12/logo.jpg',0,'attachment','image/jpeg',0),(2751,1,'2024-12-09 09:05:02','2024-12-09 09:05:02','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.    </h3>\n		<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Customer\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Personnel\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Oders per year\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>		\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n													<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />													\n	    <h3>\n        We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.    </h3>\n		<p>Goals to achieve by 2026:</p>		\n                                            East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\n                                        30%\n                                            Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\n                                        10%\n                                            United States: Products related to medical instruments, optics, and audio equipment.\n                                        30%\n                                            Australia: Sheet metal products.\n                                        8%\n                                            Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\n                                        20%\n                                            Other markets and products.\n                                        2%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-milling-service/\">CNC Milling Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-milling-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-turning-service/\">CNC Turning Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-turning-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">CNC Tool Grinder Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/sheet-metal-service/\">Sheet Metal Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/sheet-metal-service/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"240\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We always provide a sense of security in terms of quality and progress.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"87\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-12-09 09:05:02','2024-12-09 09:05:02','',9,'https://fe2tech.com/?p=2751',0,'revision','',0),(2752,1,'2024-12-09 09:05:03','2024-12-09 09:05:03','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.    </h3>\n		<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Customer\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Personnel\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Oders per year\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>		\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n													<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />													\n	    <h3>\n        We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.    </h3>\n		<p>Goals to achieve by 2026:</p>		\n                                            East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\n                                        30%\n                                            Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\n                                        10%\n                                            United States: Products related to medical instruments, optics, and audio equipment.\n                                        30%\n                                            Australia: Sheet metal products.\n                                        8%\n                                            Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\n                                        20%\n                                            Other markets and products.\n                                        2%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-milling-service/\">CNC Milling Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-milling-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-turning-service/\">CNC Turning Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-turning-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">CNC Tool Grinder Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/sheet-metal-service/\">Sheet Metal Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/sheet-metal-service/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"240\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We always provide a sense of security in terms of quality and progress.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"87\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-12-09 09:05:03','2024-12-09 09:05:03','',9,'https://fe2tech.com/?p=2752',0,'revision','',0),(2753,1,'2024-12-09 09:05:03','2024-12-09 09:05:03','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.    </h3>\n		<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Customer\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Personnel\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Oders per year\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>		\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n													<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />													\n	    <h3>\n        We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.    </h3>\n		<p>Goals to achieve by 2026:</p>		\n                                            East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\n                                        30%\n                                            Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\n                                        10%\n                                            United States: Products related to medical instruments, optics, and audio equipment.\n                                        30%\n                                            Australia: Sheet metal products.\n                                        8%\n                                            Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\n                                        20%\n                                            Other markets and products.\n                                        2%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-milling-service/\">CNC Milling Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-milling-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-turning-service/\">CNC Turning Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-turning-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">CNC Tool Grinder Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/sheet-metal-service/\">Sheet Metal Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/sheet-metal-service/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"216\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We always provide a sense of security in terms of quality and progress.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"164\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-12-09 09:05:03','2024-12-09 09:05:03','',9,'https://fe2tech.com/?p=2753',0,'revision','',0),(2756,1,'2024-12-09 09:13:16','2024-12-09 09:13:16','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.    </h3>\n		<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Customer\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Personnel\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Oders per year\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>		\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n													<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />													\n	    <h3>\n        We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.    </h3>\n		<p>Goals to achieve by 2026:</p>		\n                                            East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\n                                        30%\n                                            Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\n                                        10%\n                                            United States: Products related to medical instruments, optics, and audio equipment.\n                                        30%\n                                            Australia: Sheet metal products.\n                                        8%\n                                            Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\n                                        20%\n                                            Other markets and products.\n                                        2%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-milling-service/\">CNC Milling Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-milling-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-turning-service/\">CNC Turning Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-turning-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">CNC Tool Grinder Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/sheet-metal-service/\">Sheet Metal Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/sheet-metal-service/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"216\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We always provide a sense of security in terms of quality and progress.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"164\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-12-09 09:13:16','2024-12-09 09:13:16','',9,'https://fe2tech.com/?p=2756',0,'revision','',0),(2757,1,'2024-12-09 09:13:17','2024-12-09 09:13:17','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.    </h3>\n		<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Customer\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Personnel\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Oders per year\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>		\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n													<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />													\n	    <h3>\n        We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.    </h3>\n		<p>Goals to achieve by 2026:</p>		\n                                            East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\n                                        30%\n                                            Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\n                                        10%\n                                            United States: Products related to medical instruments, optics, and audio equipment.\n                                        30%\n                                            Australia: Sheet metal products.\n                                        8%\n                                            Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\n                                        20%\n                                            Other markets and products.\n                                        2%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-milling-service/\">CNC Milling Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-milling-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-turning-service/\">CNC Turning Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-turning-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">CNC Tool Grinder Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/sheet-metal-service/\">Sheet Metal Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/sheet-metal-service/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"216\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We always provide a sense of security in terms of quality and progress.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"164\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-12-09 09:13:17','2024-12-09 09:13:17','',9,'https://fe2tech.com/?p=2757',0,'revision','',0),(2758,1,'2024-12-09 09:13:18','2024-12-09 09:13:18','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.    </h3>\n		<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Customer\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Personnel\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Oders per year\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>		\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n													<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />													\n	    <h3>\n        We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.    </h3>\n		<p>Goals to achieve by 2026:</p>		\n                                            East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\n                                        30%\n                                            Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\n                                        10%\n                                            United States: Products related to medical instruments, optics, and audio equipment.\n                                        30%\n                                            Australia: Sheet metal products.\n                                        8%\n                                            Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\n                                        20%\n                                            Other markets and products.\n                                        2%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-milling-service/\">CNC Milling Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-milling-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-turning-service/\">CNC Turning Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-turning-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">CNC Tool Grinder Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/sheet-metal-service/\">Sheet Metal Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/sheet-metal-service/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"33\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We always provide a sense of security in terms of quality and progress.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"129\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-12-09 09:13:18','2024-12-09 09:13:18','',9,'https://fe2tech.com/?p=2758',0,'revision','',0),(2759,1,'2024-12-09 09:13:53','2024-12-09 09:13:53','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.    </h3>\n		<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Customer\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Personnel\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Oders per year\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>		\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n													<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />													\n	    <h3>\n        We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.    </h3>\n		<p>Goals to achieve by 2026:</p>		\n                                            East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\n                                        30%\n                                            Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\n                                        10%\n                                            United States: Products related to medical instruments, optics, and audio equipment.\n                                        30%\n                                            Australia: Sheet metal products.\n                                        8%\n                                            Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\n                                        20%\n                                            Other markets and products.\n                                        2%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-milling-service/\">CNC Milling Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-milling-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-turning-service/\">CNC Turning Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-turning-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">CNC Tool Grinder Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/sheet-metal-service/\">Sheet Metal Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/sheet-metal-service/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"33\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We always provide a sense of security in terms of quality and progress.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"129\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-12-09 09:13:53','2024-12-09 09:13:53','',9,'https://fe2tech.com/?p=2759',0,'revision','',0),(2760,1,'2024-12-09 09:13:54','2024-12-09 09:13:54','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.    </h3>\n		<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Customer\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Personnel\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Oders per year\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>		\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n													<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />													\n	    <h3>\n        We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.    </h3>\n		<p>Goals to achieve by 2026:</p>		\n                                            East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\n                                        30%\n                                            Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\n                                        10%\n                                            United States: Products related to medical instruments, optics, and audio equipment.\n                                        30%\n                                            Australia: Sheet metal products.\n                                        8%\n                                            Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\n                                        20%\n                                            Other markets and products.\n                                        2%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-milling-service/\">CNC Milling Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-milling-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-turning-service/\">CNC Turning Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-turning-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">CNC Tool Grinder Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/sheet-metal-service/\">Sheet Metal Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/sheet-metal-service/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"33\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We always provide a sense of security in terms of quality and progress.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"129\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-12-09 09:13:54','2024-12-09 09:13:54','',9,'https://fe2tech.com/?p=2760',0,'revision','',0),(2761,1,'2024-12-09 09:13:54','2024-12-09 09:13:54','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.    </h3>\n		<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Customer\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Personnel\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Oders per year\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>		\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n													<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />													\n	    <h3>\n        We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.    </h3>\n		<p>Goals to achieve by 2026:</p>		\n                                            East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\n                                        30%\n                                            Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\n                                        10%\n                                            United States: Products related to medical instruments, optics, and audio equipment.\n                                        30%\n                                            Australia: Sheet metal products.\n                                        8%\n                                            Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\n                                        20%\n                                            Other markets and products.\n                                        2%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-milling-service/\">CNC Milling Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-milling-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-turning-service/\">CNC Turning Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-turning-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">CNC Tool Grinder Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/sheet-metal-service/\">Sheet Metal Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/sheet-metal-service/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"84\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We always provide a sense of security in terms of quality and progress.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"213\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-12-09 09:13:54','2024-12-09 09:13:54','',9,'https://fe2tech.com/?p=2761',0,'revision','',0),(2762,1,'2024-12-09 09:15:03','2024-12-09 09:15:03','<a href=\"http://fe2tech.com/\">\n							<img width=\"208\" height=\"208\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/logo.jpg\" alt=\"\" />								</a>\n			    <ul>\n                    <li>\n            	   Factory 1: Khac Niem Industrial Cluster, Khac Niem Ward, Bac Ninh City, Bac Ninh Province                \n           </li>\n                    <li>\n            	   Factory 2: 176/9 Nguyen Thi Tuoi, Tan Phuoc Quarter, Tan Binh Ward, Di An City, Binh Duong                \n           </li>\n                    <li>\n            	   0968 86 03 86                \n           </li>\n            </ul>\n    <h3>\n        Menu\n        <i></i>\n    </h3>\n        <ul id=\"menu-main-menu-2\"><li><a href=\"https://fe2tech.com/\">Home</a></li>\n<li><a href=\"https://fe2tech.com/gallery/\">Product</a></li>\n<li><a href=\"https://fe2tech.com/services/\">Service</a></li>\n<li><a href=\"https://fe2tech.com/team-partners/\">Team &#038; Member Companies</a></li>\n<li><a href=\"https://fe2tech.com/about/\">About Us</a></li>\n</ul>    \n    <h3>\n        Open Hours\n        <i></i>\n    </h3>\n		<p>Mon - Sun: 24/24</p>		\n    <h3>\n        Newsletter\n        <i></i>\n    </h3>\n		Sign up for alerts, our latest blogs, thoughts, and insights.		\n        <form method=\"post\" action=\"https://fe2tech.com/wp-admin/admin-ajax.php?action=tnp&amp;na=s\" style=\"\">\n<input type=\"hidden\" name=\"nlang\" value=\"\">\n<label for=\"tnp-3\">Your mail address</label>\n<input type=\"email\" name=\"ne\" id=\"tnp-3\" value=\"\" placeholder=\"\" required>\n<input type=\"submit\" value=\"Subscribe\" style=\"\">\n</form>    \n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n		<p>Copyright @2024 of Far East High Tech Ltd. Co.</p>','Footer','','inherit','closed','closed','','799-revision-v1','','','2024-12-09 09:15:03','2024-12-09 09:15:03','',799,'https://fe2tech.com/?p=2762',0,'revision','',0),(2763,1,'2024-12-09 09:15:03','2024-12-09 09:15:03','<a href=\"http://fe2tech.com/\">\n							<img width=\"208\" height=\"208\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/logo.jpg\" alt=\"\" />								</a>\n			    <ul>\n                    <li>\n            	   Factory 1: Khac Niem Industrial Cluster, Khac Niem Ward, Bac Ninh City, Bac Ninh Province                \n           </li>\n                    <li>\n            	   Factory 2: 176/9 Nguyen Thi Tuoi, Tan Phuoc Quarter, Tan Binh Ward, Di An City, Binh Duong                \n           </li>\n                    <li>\n            	   0968 86 03 86                \n           </li>\n            </ul>\n    <h3>\n        Menu\n        <i></i>\n    </h3>\n        <ul id=\"menu-main-menu-2\"><li><a href=\"https://fe2tech.com/\">Home</a></li>\n<li><a href=\"https://fe2tech.com/gallery/\">Product</a></li>\n<li><a href=\"https://fe2tech.com/services/\">Service</a></li>\n<li><a href=\"https://fe2tech.com/team-partners/\">Team &#038; Member Companies</a></li>\n<li><a href=\"https://fe2tech.com/about/\">About Us</a></li>\n</ul>    \n    <h3>\n        Open Hours\n        <i></i>\n    </h3>\n		<p>Mon - Sun: 24/24</p>		\n    <h3>\n        Newsletter\n        <i></i>\n    </h3>\n		Sign up for alerts, our latest blogs, thoughts, and insights.		\n        <form method=\"post\" action=\"https://fe2tech.com/wp-admin/admin-ajax.php?action=tnp&amp;na=s\" style=\"\">\n<input type=\"hidden\" name=\"nlang\" value=\"\">\n<label for=\"tnp-3\">Your mail address</label>\n<input type=\"email\" name=\"ne\" id=\"tnp-3\" value=\"\" placeholder=\"\" required>\n<input type=\"submit\" value=\"Subscribe\" style=\"\">\n</form>    \n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n		<p>Copyright @2024 of Far East High Tech Ltd. Co.</p>','Footer','','inherit','closed','closed','','799-revision-v1','','','2024-12-09 09:15:03','2024-12-09 09:15:03','',799,'https://fe2tech.com/?p=2763',0,'revision','',0),(2764,1,'2024-12-09 09:15:04','2024-12-09 09:15:04','<a href=\"http://fe2tech.com/\">\n							<img width=\"597\" height=\"597\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/logo.jpg\" alt=\"\" />								</a>\n			    <ul>\n                    <li>\n            	   Factory 1: Khac Niem Industrial Cluster, Khac Niem Ward, Bac Ninh City, Bac Ninh Province                \n           </li>\n                    <li>\n            	   Factory 2: 176/9 Nguyen Thi Tuoi, Tan Phuoc Quarter, Tan Binh Ward, Di An City, Binh Duong                \n           </li>\n                    <li>\n            	   0968 86 03 86                \n           </li>\n            </ul>\n    <h3>\n        Menu\n        <i></i>\n    </h3>\n        <ul id=\"menu-main-menu-2\"><li><a href=\"https://fe2tech.com/\">Home</a></li>\n<li><a href=\"https://fe2tech.com/product/\">Product</a></li>\n<li><a href=\"https://fe2tech.com/services/\">Service</a></li>\n<li><a href=\"https://fe2tech.com/team-member-companies/\">Team &#038; Member Companies</a></li>\n<li><a href=\"https://fe2tech.com/about/\">About Us</a></li>\n</ul>    \n    <h3>\n        Open Hours\n        <i></i>\n    </h3>\n		<p>Mon - Sun: 24/24</p>		\n    <h3>\n        Newsletter\n        <i></i>\n    </h3>\n		Sign up for alerts, our latest blogs, thoughts, and insights.		\n        <form method=\"post\" action=\"https://fe2tech.com/wp-admin/admin-ajax.php?action=tnp&amp;na=s\" style=\"\">\n<input type=\"hidden\" name=\"nlang\" value=\"\">\n<label for=\"tnp-3\">Your mail address</label>\n<input type=\"email\" name=\"ne\" id=\"tnp-3\" value=\"\" placeholder=\"\" required>\n<input type=\"submit\" value=\"Subscribe\" style=\"\">\n</form>    \n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n		<p>Copyright @2024 of Far East High Tech Ltd. Co.</p>','Footer','','inherit','closed','closed','','799-revision-v1','','','2024-12-09 09:15:04','2024-12-09 09:15:04','',799,'https://fe2tech.com/?p=2764',0,'revision','',0),(2765,1,'2024-12-09 09:16:04','2024-12-09 09:16:04','<a href=\"http://fe2tech.com/\">\n							<img width=\"597\" height=\"597\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/logo.jpg\" alt=\"\" />								</a>\n			    <ul>\n                    <li>\n            	   Factory 1: Khac Niem Industrial Cluster, Khac Niem Ward, Bac Ninh City, Bac Ninh Province                \n           </li>\n                    <li>\n            	   Factory 2: 176/9 Nguyen Thi Tuoi, Tan Phuoc Quarter, Tan Binh Ward, Di An City, Binh Duong                \n           </li>\n                    <li>\n            	   0968 86 03 86                \n           </li>\n            </ul>\n    <h3>\n        Menu\n        <i></i>\n    </h3>\n        <ul id=\"menu-main-menu-2\"><li><a href=\"https://fe2tech.com/\">Home</a></li>\n<li><a href=\"https://fe2tech.com/product/\">Product</a></li>\n<li><a href=\"https://fe2tech.com/services/\">Service</a></li>\n<li><a href=\"https://fe2tech.com/team-member-companies/\">Team &#038; Member Companies</a></li>\n<li><a href=\"https://fe2tech.com/about/\">About Us</a></li>\n</ul>    \n    <h3>\n        Open Hours\n        <i></i>\n    </h3>\n		<p>Mon - Sun: 24/24</p>		\n    <h3>\n        Newsletter\n        <i></i>\n    </h3>\n		Sign up for alerts, our latest blogs, thoughts, and insights.		\n        <form method=\"post\" action=\"https://fe2tech.com/wp-admin/admin-ajax.php?action=tnp&amp;na=s\" style=\"\">\n<input type=\"hidden\" name=\"nlang\" value=\"\">\n<label for=\"tnp-3\">Your mail address</label>\n<input type=\"email\" name=\"ne\" id=\"tnp-3\" value=\"\" placeholder=\"\" required>\n<input type=\"submit\" value=\"Subscribe\" style=\"\">\n</form>    \n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n		<p>Copyright @2024 of Far East High Tech Ltd. Co.</p>','Footer','','inherit','closed','closed','','799-revision-v1','','','2024-12-09 09:16:04','2024-12-09 09:16:04','',799,'https://fe2tech.com/?p=2765',0,'revision','',0),(2766,1,'2024-12-09 09:16:05','2024-12-09 09:16:05','<a href=\"http://fe2tech.com/\">\n							<img width=\"597\" height=\"597\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/logo.jpg\" alt=\"\" />								</a>\n			    <ul>\n                    <li>\n            	   Factory 1: Khac Niem Industrial Cluster, Khac Niem Ward, Bac Ninh City, Bac Ninh Province                \n           </li>\n                    <li>\n            	   Factory 2: 176/9 Nguyen Thi Tuoi, Tan Phuoc Quarter, Tan Binh Ward, Di An City, Binh Duong                \n           </li>\n                    <li>\n            	   0968 86 03 86                \n           </li>\n            </ul>\n    <h3>\n        Menu\n        <i></i>\n    </h3>\n        <ul id=\"menu-main-menu-2\"><li><a href=\"https://fe2tech.com/\">Home</a></li>\n<li><a href=\"https://fe2tech.com/product/\">Product</a></li>\n<li><a href=\"https://fe2tech.com/services/\">Service</a></li>\n<li><a href=\"https://fe2tech.com/team-member-companies/\">Team &#038; Member Companies</a></li>\n<li><a href=\"https://fe2tech.com/about/\">About Us</a></li>\n</ul>    \n    <h3>\n        Open Hours\n        <i></i>\n    </h3>\n		<p>Mon - Sun: 24/24</p>		\n    <h3>\n        Newsletter\n        <i></i>\n    </h3>\n		Sign up for alerts, our latest blogs, thoughts, and insights.		\n        <form method=\"post\" action=\"https://fe2tech.com/wp-admin/admin-ajax.php?action=tnp&amp;na=s\" style=\"\">\n<input type=\"hidden\" name=\"nlang\" value=\"\">\n<label for=\"tnp-3\">Your mail address</label>\n<input type=\"email\" name=\"ne\" id=\"tnp-3\" value=\"\" placeholder=\"\" required>\n<input type=\"submit\" value=\"Subscribe\" style=\"\">\n</form>    \n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n		<p>Copyright @2024 of Far East High Tech Ltd. Co.</p>','Footer','','inherit','closed','closed','','799-revision-v1','','','2024-12-09 09:16:05','2024-12-09 09:16:05','',799,'https://fe2tech.com/?p=2766',0,'revision','',0),(2767,1,'2024-12-09 09:16:05','2024-12-09 09:16:05','<a href=\"http://fe2tech.com/\">\n							<img width=\"597\" height=\"597\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/logo.jpg\" alt=\"\" />								</a>\n			    <ul>\n                    <li>\n            	   Factory 1: Khac Niem Industrial Cluster, Khac Niem Ward, Bac Ninh City, Bac Ninh Province                \n           </li>\n                    <li>\n            	   Factory 2: 176/9 Nguyen Thi Tuoi, Tan Phuoc Quarter, Tan Binh Ward, Di An City, Binh Duong                \n           </li>\n                    <li>\n            	   0968 86 03 86                \n           </li>\n            </ul>\n    <h3>\n        Menu\n        <i></i>\n    </h3>\n        <ul id=\"menu-main-menu-2\"><li><a href=\"https://fe2tech.com/\">Home</a></li>\n<li><a href=\"https://fe2tech.com/product/\">Product</a></li>\n<li><a href=\"https://fe2tech.com/services/\">Service</a></li>\n<li><a href=\"https://fe2tech.com/team-member-companies/\">Team &#038; Member Companies</a></li>\n<li><a href=\"https://fe2tech.com/about/\">About Us</a></li>\n</ul>    \n    <h3>\n        Open Hours\n        <i></i>\n    </h3>\n		<p>Mon - Sun: 24/24</p>		\n    <h3>\n        Newsletter\n        <i></i>\n    </h3>\n		Sign up for alerts, our latest blogs, thoughts, and insights.		\n        <form method=\"post\" action=\"https://fe2tech.com/wp-admin/admin-ajax.php?action=tnp&amp;na=s\" style=\"\">\n<input type=\"hidden\" name=\"nlang\" value=\"\">\n<label for=\"tnp-3\">Your mail address</label>\n<input type=\"email\" name=\"ne\" id=\"tnp-3\" value=\"\" placeholder=\"\" required>\n<input type=\"submit\" value=\"Subscribe\" style=\"\">\n</form>    \n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n		<p>Copyright @2024 of Far East High Tech Ltd. Co.</p>','Footer','','inherit','closed','closed','','799-revision-v1','','','2024-12-09 09:16:05','2024-12-09 09:16:05','',799,'https://fe2tech.com/?p=2767',0,'revision','',0),(2768,1,'2024-12-09 09:50:53','2024-12-09 09:50:53','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.    </h3>\n		<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Customer\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Personnel\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Oders per year\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>		\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n													<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />													\n	    <h3>\n        We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.    </h3>\n		<p>Goals to achieve by 2026:</p>		\n                                            East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\n                                        30%\n                                            Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\n                                        10%\n                                            United States: Products related to medical instruments, optics, and audio equipment.\n                                        30%\n                                            Australia: Sheet metal products.\n                                        8%\n                                            Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\n                                        20%\n                                            Other markets and products.\n                                        2%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-milling-service/\">CNC Milling Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-milling-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-turning-service/\">CNC Turning Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-turning-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">CNC Tool Grinder Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/sheet-metal-service/\">Sheet Metal Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/sheet-metal-service/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"84\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We always provide a sense of security in terms of quality and progress.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"213\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-12-09 09:50:53','2024-12-09 09:50:53','',9,'https://fe2tech.com/?p=2768',0,'revision','',0),(2769,1,'2024-12-09 09:50:54','2024-12-09 09:50:54','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.    </h3>\n		<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Customer\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Personnel\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Oders per year\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>		\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n													<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />													\n	    <h3>\n        We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.    </h3>\n		<p>Goals to achieve by 2026:</p>		\n                                            East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\n                                        30%\n                                            Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\n                                        10%\n                                            United States: Products related to medical instruments, optics, and audio equipment.\n                                        30%\n                                            Australia: Sheet metal products.\n                                        8%\n                                            Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\n                                        20%\n                                            Other markets and products.\n                                        2%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-milling-service/\">CNC Milling Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-milling-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-turning-service/\">CNC Turning Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-turning-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">CNC Tool Grinder Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/sheet-metal-service/\">Sheet Metal Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/sheet-metal-service/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"84\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We always provide a sense of security in terms of quality and progress.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"213\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-12-09 09:50:54','2024-12-09 09:50:54','',9,'https://fe2tech.com/?p=2769',0,'revision','',0),(2770,1,'2024-12-09 09:50:54','2024-12-09 09:50:54','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.    </h3>\n		<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>		\n                <a href=\"https://www.youtube.com/watch?v=oVQ4_PIqgz8\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Customer\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Personnel\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Oders per year\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>		\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n													<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />													\n	    <h3>\n        We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.    </h3>\n		<p>Goals to achieve by 2026:</p>		\n                                            East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\n                                        30%\n                                            Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\n                                        10%\n                                            United States: Products related to medical instruments, optics, and audio equipment.\n                                        30%\n                                            Australia: Sheet metal products.\n                                        8%\n                                            Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\n                                        20%\n                                            Other markets and products.\n                                        2%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-milling-service/\">CNC Milling Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-milling-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-turning-service/\">CNC Turning Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-turning-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">CNC Tool Grinder Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/sheet-metal-service/\">Sheet Metal Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/sheet-metal-service/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"28\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We always provide a sense of security in terms of quality and progress.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"14\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-12-09 09:50:54','2024-12-09 09:50:54','',9,'https://fe2tech.com/?p=2770',0,'revision','',0),(2774,1,'2024-12-10 02:11:12','2024-12-10 02:11:12','We excel in aluminum and steel products, particularly thin aluminum sheets and motorcycle-related toys.','CNC Milling Service','','inherit','closed','closed','','2619-revision-v1','','','2024-12-10 02:11:12','2024-12-10 02:11:12','',2619,'https://fe2tech.com/?p=2774',0,'revision','',0),(2775,1,'2024-12-10 02:12:29','2024-12-10 02:12:29','We can manufacture all small to medium-sized items for all types of materials.','CNC Turning Service','','inherit','closed','closed','','2622-revision-v1','','','2024-12-10 02:12:29','2024-12-10 02:12:29','',2622,'https://fe2tech.com/?p=2775',0,'revision','',0),(2776,1,'2024-12-10 02:13:06','2024-12-10 02:13:06','We have highly experienced engineers in the machining industry.\r\nThey provide consulting and propose tooling methods to optimize production time for our customers.','CNC Tool Grinder Service','','inherit','closed','closed','','2625-revision-v1','','','2024-12-10 02:13:06','2024-12-10 02:13:06','',2625,'https://fe2tech.com/?p=2776',0,'revision','',0),(2777,1,'2024-12-10 02:13:38','2024-12-10 02:13:38','We can paint finished products according to customer requirements.','Sheet Metal Service','','inherit','closed','closed','','2628-revision-v1','','','2024-12-10 02:13:38','2024-12-10 02:13:38','',2628,'https://fe2tech.com/?p=2777',0,'revision','',0),(2778,1,'2024-12-10 02:13:56','2024-12-10 02:13:56','We have veteran welding engineers to ensure high-quality welded products.\r\nWe offer Mig welding, Tig welding, and laser welding. Notably, we specialize in laser welding of aluminum for export to the U.S. market.','Sheet Metal Service','','inherit','closed','closed','','2628-revision-v1','','','2024-12-10 02:13:56','2024-12-10 02:13:56','',2628,'https://fe2tech.com/?p=2778',0,'revision','',0),(2779,1,'2024-12-10 02:14:07','2024-12-10 02:14:07','We can paint finished products according to customer requirements.','Sheet Metal Service','','inherit','closed','closed','','2628-revision-v1','','','2024-12-10 02:14:07','2024-12-10 02:14:07','',2628,'https://fe2tech.com/?p=2779',0,'revision','',0),(2780,1,'2024-12-10 02:14:25','2024-12-10 02:14:25','We have veteran welding engineers to ensure high-quality welded products.\r\nWe offer Mig welding, Tig welding, and laser welding. Notably, we specialize in laser welding of aluminum for export to the U.S. market.','Welding Service','','inherit','closed','closed','','2631-revision-v1','','','2024-12-10 02:14:25','2024-12-10 02:14:25','',2631,'https://fe2tech.com/?p=2780',0,'revision','',0),(2781,1,'2024-12-10 02:15:04','2024-12-10 02:15:04','These are support services for the mold industry and our detailed products.','CNC Tool Grinder Service','','inherit','closed','closed','','2625-revision-v1','','','2024-12-10 02:15:04','2024-12-10 02:15:04','',2625,'https://fe2tech.com/?p=2781',0,'revision','',0),(2782,1,'2024-12-10 02:15:29','2024-12-10 02:15:29','In 2025, we will open a bolt manufacturing workshop to supply custom bolts tailored to customer needs.','Bolt Production','','inherit','closed','closed','','2638-revision-v1','','','2024-12-10 02:15:29','2024-12-10 02:15:29','',2638,'https://fe2tech.com/?p=2782',0,'revision','',0),(2784,1,'2024-12-10 02:15:56','2024-12-10 02:15:56','We collaborate with surface treatment units specializing in plating materials for high-quality and reliable export products.\r\nOur heat treatment units are currently providing services to major corporations in Vietnam.\r\nWe also offer services in cylindrical grinding and metal machining for special items, including extremely large or ultra-small sizes.','Other Services','','inherit','closed','closed','','2642-revision-v1','','','2024-12-10 02:15:56','2024-12-10 02:15:56','',2642,'https://fe2tech.com/?p=2784',0,'revision','',0),(2785,1,'2024-12-10 02:19:22','2024-12-10 02:19:22','Our Team\n	    <h3>\n        We will exceed your expectations with our innovative solutions.    </h3>\n		<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a ><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218208.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Ronald Dumple                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a >\n                                        Ronald Dumple                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/free-character-illustration-download-in-svg-png-gif-file-formats-female-lady-woman-gee-me-pack-people-illustrations-2218178.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	James Smith                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        James Smith                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218144.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Charles F Johnson                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Charles F Johnson                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218222.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Jodi C Johnson                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Jodi C Johnson                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218229.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Debra L Smith                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Debra L Smith                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218159.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Mrditch  Hohan                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Mrditch  Hohan                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n			Our Partners\n	    <h3>\n        We will exceed your expectations with our innovative solutions as your trusted partner.    </h3>\n		<p>As your trusted partner, we deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a href=\"https://www.yoshimoto-sangyo.co.jp/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"246\" height=\"205\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yoshimoto-vietnam.png\" alt=\"\" /></a>\n                                <a href=\"https://kimlongmotor.com.vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"1586\" height=\"1586\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/kim-long-motors.png\" alt=\"\" /></a>\n                                <a href=\"https://www.samsung.com/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"697\" height=\"232\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/samsung.jpg\" alt=\"\" /></a>\n                                <a href=\"https://komaz.co.jp/english/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"900\" height=\"900\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/komatsu-kogyo.jpg\" alt=\"\" /></a>\n                                <a ><img width=\"256\" height=\"256\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yuwa-engineering.jpg\" alt=\"\" /></a>','Team & Member Companies','','inherit','closed','closed','','28-revision-v1','','','2024-12-10 02:19:22','2024-12-10 02:19:22','',28,'https://fe2tech.com/?p=2785',0,'revision','',0),(2786,1,'2024-12-10 02:19:23','2024-12-10 02:19:23','Our Team\n	    <h3>\n        We will exceed your expectations with our innovative solutions.    </h3>\n		<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a ><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218208.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Ronald Dumple                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a >\n                                        Ronald Dumple                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/free-character-illustration-download-in-svg-png-gif-file-formats-female-lady-woman-gee-me-pack-people-illustrations-2218178.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	James Smith                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        James Smith                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218144.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Charles F Johnson                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Charles F Johnson                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218222.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Jodi C Johnson                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Jodi C Johnson                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218229.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Debra L Smith                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Debra L Smith                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"https://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218159.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Mrditch  Hohan                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"https://fe2tech.com/team-details/\">\n                                        Mrditch  Hohan                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n			Our Partners\n	    <h3>\n        We will exceed your expectations with our innovative solutions as your trusted partner.    </h3>\n		<p>As your trusted partner, we deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a href=\"https://www.yoshimoto-sangyo.co.jp/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"246\" height=\"205\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yoshimoto-vietnam.png\" alt=\"\" /></a>\n                                <a href=\"https://kimlongmotor.com.vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"1586\" height=\"1586\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/kim-long-motors.png\" alt=\"\" /></a>\n                                <a href=\"https://www.samsung.com/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"697\" height=\"232\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/samsung.jpg\" alt=\"\" /></a>\n                                <a href=\"https://komaz.co.jp/english/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"900\" height=\"900\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/komatsu-kogyo.jpg\" alt=\"\" /></a>\n                                <a ><img width=\"256\" height=\"256\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yuwa-engineering.jpg\" alt=\"\" /></a>','Team & Member Companies','','inherit','closed','closed','','28-revision-v1','','','2024-12-10 02:19:23','2024-12-10 02:19:23','',28,'https://fe2tech.com/?p=2786',0,'revision','',0),(2787,1,'2024-12-10 02:19:23','2024-12-10 02:19:23','Our Team\n	    <h3>\n        We will exceed your expectations with our innovative solutions.    </h3>\n		<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a ><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218208.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Ronald Dumple                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a >\n                                        Ronald Dumple                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"http://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/free-character-illustration-download-in-svg-png-gif-file-formats-female-lady-woman-gee-me-pack-people-illustrations-2218178.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	James Smith                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"http://fe2tech.com/team-details/\">\n                                        James Smith                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"http://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218144.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Charles F Johnson                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"http://fe2tech.com/team-details/\">\n                                        Charles F Johnson                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"http://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218222.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Jodi C Johnson                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"http://fe2tech.com/team-details/\">\n                                        Jodi C Johnson                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"http://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218229.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Debra L Smith                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"http://fe2tech.com/team-details/\">\n                                        Debra L Smith                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"http://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218159.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Mrditch  Hohan                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"http://fe2tech.com/team-details/\">\n                                        Mrditch  Hohan                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n			Our Partners\n	    <h3>\n        We will exceed your expectations with our innovative solutions as your trusted partner.    </h3>\n		<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.</p>		\n                                <a href=\"https://www.yoshimoto-sangyo.co.jp/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"246\" height=\"205\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yoshimoto-vietnam.png\" alt=\"\" /></a>\n                                <a href=\"https://kimlongmotor.com.vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"1586\" height=\"1586\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/kim-long-motors.png\" alt=\"\" /></a>\n                                <a href=\"https://www.samsung.com/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"697\" height=\"232\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/samsung.jpg\" alt=\"\" /></a>\n                                <a href=\"https://komaz.co.jp/english/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"900\" height=\"900\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/komatsu-kogyo.jpg\" alt=\"\" /></a>\n                                <a ><img width=\"256\" height=\"256\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yuwa-engineering.jpg\" alt=\"\" /></a>','Team & Member Companies','','inherit','closed','closed','','28-revision-v1','','','2024-12-10 02:19:23','2024-12-10 02:19:23','',28,'https://fe2tech.com/?p=2787',0,'revision','',0),(2788,1,'2024-12-10 02:26:22','2024-12-10 02:26:22','About us\n	    <h3>\n        We satisfy you with innovative ideas and quality work.    </h3>\n		<p>We exceed expectations through innovative ideas and exceptional craftsmanship.</p>		\n													<img width=\"59\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png\" alt=\"\" />													\n	    <h3>\n        Time manage    </h3>\n		<p>Efficiently organizing tasks to maximize productivity and meet deadlines.</p>		\n													<img width=\"55\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-02.png\" alt=\"\" />													\n	    <h3>\n        Fulfill target    </h3>\n		<p>Achieving goals with precision and commitment, ensuring success.</p>		\n    <img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218231.webp\" alt=\"\" />		\n            <img width=\"111\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature1.png\" alt=\"\" />\n        <h3>Tin Luu</h3>\n        (Chairman and founder)\n            Want to know more about us?\n            Just download brochure...\n            <a href=\"https://fe2tech.com/wp-content/uploads/2024/10/BROCHURE.pdf\" target=\"_blank\" rel=\"nofollow noopener\">\n                                                                    Download Brochure            </a>\n			Company history\n	    <h3>\n        Far East High Tech is a professional builder company    </h3>\n		<p>Far East High Tech is a leading company in building and manufacturing high-quality mechanical solutions.</p>		\n			Start		\n								<h3>5th Jun, 2021</h3>\n								Expanded into international markets, beginning with partnerships in Europe\n								<h3>20th Oct, 2022</h3>\n								Achieved record sales, marking a major milestone in company growth\n								<h3>15th Aug, 2023</h3>\n								Named a top mechanical solutions provider in the Asia-Pacific region\n								<h3>12th Jan, 2021</h3>\n								Establishment of dedicated R&amp;D department for mechanical innovations\n								<h3>15th Mar, 2022</h3>\n								Released high-precision components for the aerospace sector\n								<h3>8th Apr, 2023</h3>\n								Introduced automated quality control systems to improve production efficiency','About','','inherit','closed','closed','','26-revision-v1','','','2024-12-10 02:26:22','2024-12-10 02:26:22','',26,'https://fe2tech.com/?p=2788',0,'revision','',0),(2789,1,'2024-12-10 02:26:22','2024-12-10 02:26:22','About us\n	    <h3>\n        We satisfy you with innovative ideas and quality work.    </h3>\n		<p>We exceed expectations through innovative ideas and exceptional craftsmanship.</p>		\n													<img width=\"59\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png\" alt=\"\" />													\n	    <h3>\n        Time manage    </h3>\n		<p>Efficiently organizing tasks to maximize productivity and meet deadlines.</p>		\n													<img width=\"55\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-02.png\" alt=\"\" />													\n	    <h3>\n        Fulfill target    </h3>\n		<p>Achieving goals with precision and commitment, ensuring success.</p>		\n    <img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218231.webp\" alt=\"\" />		\n            <img width=\"111\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature1.png\" alt=\"\" />\n        <h3>Tin Luu</h3>\n        (Chairman and founder)\n            Want to know more about us?\n            Just download brochure...\n            <a href=\"https://fe2tech.com/wp-content/uploads/2024/10/BROCHURE.pdf\" target=\"_blank\" rel=\"nofollow noopener\">\n                                                                    Download Brochure            </a>\n			Company history\n	    <h3>\n        Far East High Tech is a professional builder company    </h3>\n		<p>Far East High Tech is a leading company in building and manufacturing high-quality mechanical solutions.</p>		\n			Start		\n								<h3>5th Jun, 2021</h3>\n								Expanded into international markets, beginning with partnerships in Europe\n								<h3>20th Oct, 2022</h3>\n								Achieved record sales, marking a major milestone in company growth\n								<h3>15th Aug, 2023</h3>\n								Named a top mechanical solutions provider in the Asia-Pacific region\n								<h3>12th Jan, 2021</h3>\n								Establishment of dedicated R&amp;D department for mechanical innovations\n								<h3>15th Mar, 2022</h3>\n								Released high-precision components for the aerospace sector\n								<h3>8th Apr, 2023</h3>\n								Introduced automated quality control systems to improve production efficiency','About','','inherit','closed','closed','','26-revision-v1','','','2024-12-10 02:26:22','2024-12-10 02:26:22','',26,'https://fe2tech.com/?p=2789',0,'revision','',0),(2790,1,'2024-12-10 02:26:23','2024-12-10 02:26:23','About us\n	    <h3>\n        We satisfy you with innovative ideas and quality work.    </h3>\n		<p>We exceed expectations through innovative ideas and exceptional craftsmanship.</p>		\n													<img width=\"59\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png\" alt=\"\" />													\n	    <h3>\n        Time manage    </h3>\n		<p>Efficiently organizing tasks to maximize productivity and meet deadlines.</p>		\n													<img width=\"55\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-02.png\" alt=\"\" />													\n	    <h3>\n        Fulfill target    </h3>\n		<p>Achieving goals with precision and commitment, ensuring success.</p>		\n    <img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218231.webp\" alt=\"\" />		\n            <img width=\"111\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature1.png\" alt=\"\" />\n        <h3>Tin Luu</h3>\n        (Chairman and founder)\n            Want to know more about us?\n            Just download brochure...\n            <a href=\"https://fe2tech.com/wp-content/uploads/2024/10/BROCHURE.pdf\" target=\"_blank\" rel=\"nofollow noopener\">\n                                                                    Download Brochure            </a>\n			Company history\n	    <h3>\n        Far East High Tech is a professional builder company    </h3>\n		<p>Far East High Tech is a leading company in building and manufacturing high-quality mechanical solutions.</p>		\n			Start		\n								<h3>1st Apr, 2021</h3>\n								With the strong growth of Far East Tech, we decided to expand our branch in the South.\n								<h3>1st Jun, 2022</h3>\n								Far East Tech took a significant step in industrial-scale production with a 2000m2 workshop and 70 CNC machines in Bắc Ninh.\n								<h3>20th Nov, 2018</h3>\n								Far East Tech was established in Quế Võ, Bắc Ninh with 5 founding members.\n								<h3>30th Apr, 2021</h3>\n								We successfully acquired DMM Precision Engineering Co., Ltd. in Bình Dương, a company with experience in exporting goods to Japan since 2016,\nand thus, we established a machining company in the southern region.\n								<h3>2024</h3>\n								DMM Precision Engineering Co., Ltd. officially changed its name to Far East High Tech Co., Ltd.\nAfter 2025: This will be a year of strong development for our company team.','About','','inherit','closed','closed','','26-revision-v1','','','2024-12-10 02:26:23','2024-12-10 02:26:23','',26,'https://fe2tech.com/?p=2790',0,'revision','',0),(2796,1,'2024-12-10 02:57:48','2024-12-10 02:57:48','Our Team\n	    <h3>\n        We will exceed your expectations with our innovative solutions.    </h3>\n		<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a ><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218208.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Ronald Dumple                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a >\n                                        Ronald Dumple                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"http://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/free-character-illustration-download-in-svg-png-gif-file-formats-female-lady-woman-gee-me-pack-people-illustrations-2218178.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	James Smith                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"http://fe2tech.com/team-details/\">\n                                        James Smith                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"http://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218144.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Charles F Johnson                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"http://fe2tech.com/team-details/\">\n                                        Charles F Johnson                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"http://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218222.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Jodi C Johnson                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"http://fe2tech.com/team-details/\">\n                                        Jodi C Johnson                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"http://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218229.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Debra L Smith                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"http://fe2tech.com/team-details/\">\n                                        Debra L Smith                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"http://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218159.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Mrditch  Hohan                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"http://fe2tech.com/team-details/\">\n                                        Mrditch  Hohan                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n			Our Partners\n	    <h3>\n        We will exceed your expectations with our innovative solutions as your trusted partner.    </h3>\n		<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.</p>		\n                                <a href=\"https://www.yoshimoto-sangyo.co.jp/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"246\" height=\"205\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yoshimoto-vietnam.png\" alt=\"\" /></a>\n                                <a href=\"https://kimlongmotor.com.vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"1586\" height=\"1586\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/kim-long-motors.png\" alt=\"\" /></a>\n                                <a href=\"https://www.samsung.com/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"697\" height=\"232\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/samsung.jpg\" alt=\"\" /></a>\n                                <a href=\"https://komaz.co.jp/english/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"900\" height=\"900\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/komatsu-kogyo.jpg\" alt=\"\" /></a>\n                                <a ><img width=\"256\" height=\"256\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yuwa-engineering.jpg\" alt=\"\" /></a>','Team & Member Companies','','inherit','closed','closed','','28-revision-v1','','','2024-12-10 02:57:48','2024-12-10 02:57:48','',28,'https://fe2tech.com/?p=2796',0,'revision','',0),(2797,1,'2024-12-10 02:57:49','2024-12-10 02:57:49','Our Team\n	    <h3>\n        We will exceed your expectations with our innovative solutions.    </h3>\n		<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a ><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218208.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Ronald Dumple                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a >\n                                        Ronald Dumple                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"http://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/free-character-illustration-download-in-svg-png-gif-file-formats-female-lady-woman-gee-me-pack-people-illustrations-2218178.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	James Smith                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"http://fe2tech.com/team-details/\">\n                                        James Smith                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"http://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218144.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Charles F Johnson                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"http://fe2tech.com/team-details/\">\n                                        Charles F Johnson                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"http://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218222.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Jodi C Johnson                		        </h3>\n                		        Web Designer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"http://fe2tech.com/team-details/\">\n                                        Jodi C Johnson                                    </a>\n                                </h3>\n                                Web Designer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"http://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218229.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Debra L Smith                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"http://fe2tech.com/team-details/\">\n                                        Debra L Smith                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <a href=\"http://fe2tech.com/team-details/\"><img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218159.webp\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Mrditch  Hohan                		        </h3>\n                		        Web Developer\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                <h3>    \n                                    <a href=\"http://fe2tech.com/team-details/\">\n                                        Mrditch  Hohan                                    </a>\n                                </h3>\n                                Web Developer\n                                                                    <ul>\n                                        <li>Mail: noreply@envato.com</li>\n                                        <li>Call: (334) 886-3344</li>\n                                    </ul>\n                                                                                <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n			Our Partners\n	    <h3>\n        We will exceed your expectations with our innovative solutions as your trusted partner.    </h3>\n		<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.</p>		\n                                <a href=\"https://www.yoshimoto-sangyo.co.jp/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"246\" height=\"205\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yoshimoto-vietnam.png\" alt=\"\" /></a>\n                                <a href=\"https://kimlongmotor.com.vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"1586\" height=\"1586\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/kim-long-motors.png\" alt=\"\" /></a>\n                                <a href=\"https://www.samsung.com/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"697\" height=\"232\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/samsung.jpg\" alt=\"\" /></a>\n                                <a href=\"https://komaz.co.jp/english/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"900\" height=\"900\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/komatsu-kogyo.jpg\" alt=\"\" /></a>\n                                <a ><img width=\"256\" height=\"256\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yuwa-engineering.jpg\" alt=\"\" /></a>','Team & Member Companies','','inherit','closed','closed','','28-revision-v1','','','2024-12-10 02:57:49','2024-12-10 02:57:49','',28,'https://fe2tech.com/?p=2797',0,'revision','',0),(2798,1,'2024-12-10 02:57:49','2024-12-10 02:57:49','Our Team\n	    <h3>\n        We will exceed your expectations with our innovative solutions.    </h3>\n		<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a ><img width=\"597\" height=\"597\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/logo.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tech                                    </a>\n                                </h3>\n                                <a ><img width=\"182\" height=\"147\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FAR-East-Auto.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Auto Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Auto Tech                                    </a>\n                                </h3>\n                                <a ><img width=\"375\" height=\"335\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/Far-East-Tool-Vina.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tools Vina                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tools Vina                                    </a>\n                                </h3>\n                                <a ><img width=\"1200\" height=\"1100\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FE-TECH-LOGO-FINAL.png\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Engineering                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Engineering                                    </a>\n                                </h3>\n                                <a ></a>\n                            	<h3>	\n                	            	KS Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        KS Tech                                    </a>\n                                </h3>\n                                <a ></a>\n                            	<h3>	\n                	            	HM Company                		        </h3>\n                                <h3>    \n                                    <a >\n                                        HM Company                                    </a>\n                                </h3>\n                                <a ></a>\n                            	<h3>	\n                	            	HP Company                		        </h3>\n                                <h3>    \n                                    <a >\n                                        HP Company                                    </a>\n                                </h3>\n			Our Partners\n	    <h3>\n        We will exceed your expectations with our innovative solutions as your trusted partner.    </h3>\n		<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.</p>		\n                                <a href=\"https://www.yoshimoto-sangyo.co.jp/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"246\" height=\"205\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yoshimoto-vietnam.png\" alt=\"\" /></a>\n                                <a href=\"https://kimlongmotor.com.vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"1586\" height=\"1586\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/kim-long-motors.png\" alt=\"\" /></a>\n                                <a href=\"https://www.samsung.com/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"697\" height=\"232\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/samsung.jpg\" alt=\"\" /></a>\n                                <a href=\"https://komaz.co.jp/english/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"900\" height=\"900\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/komatsu-kogyo.jpg\" alt=\"\" /></a>\n                                <a ><img width=\"256\" height=\"256\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yuwa-engineering.jpg\" alt=\"\" /></a>','Team & Member Companies','','inherit','closed','closed','','28-revision-v1','','','2024-12-10 02:57:49','2024-12-10 02:57:49','',28,'https://fe2tech.com/?p=2798',0,'revision','',0),(2799,1,'2024-12-10 02:58:43','2024-12-10 02:58:43','Our Team\n	    <h3>\n        We will exceed your expectations with our innovative solutions.    </h3>\n		<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a ><img width=\"597\" height=\"597\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/logo.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tech                                    </a>\n                                </h3>\n                                <a ><img width=\"182\" height=\"147\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FAR-East-Auto.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Auto Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Auto Tech                                    </a>\n                                </h3>\n                                <a ><img width=\"375\" height=\"335\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/Far-East-Tool-Vina.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tools Vina                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tools Vina                                    </a>\n                                </h3>\n                                <a ><img width=\"1200\" height=\"1100\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FE-TECH-LOGO-FINAL.png\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Engineering                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Engineering                                    </a>\n                                </h3>\n                                <a ></a>\n                            	<h3>	\n                	            	KS Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        KS Tech                                    </a>\n                                </h3>\n                                <a ></a>\n                            	<h3>	\n                	            	HM Company                		        </h3>\n                                <h3>    \n                                    <a >\n                                        HM Company                                    </a>\n                                </h3>\n                                <a ></a>\n                            	<h3>	\n                	            	HP Company                		        </h3>\n                                <h3>    \n                                    <a >\n                                        HP Company                                    </a>\n                                </h3>\n			Our Partners\n	    <h3>\n        We will exceed your expectations with our innovative solutions as your trusted partner.    </h3>\n		<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.</p>		\n                                <a href=\"https://www.yoshimoto-sangyo.co.jp/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"246\" height=\"205\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yoshimoto-vietnam.png\" alt=\"\" /></a>\n                                <a href=\"https://kimlongmotor.com.vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"1586\" height=\"1586\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/kim-long-motors.png\" alt=\"\" /></a>\n                                <a href=\"https://www.samsung.com/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"697\" height=\"232\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/samsung.jpg\" alt=\"\" /></a>\n                                <a href=\"https://komaz.co.jp/english/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"900\" height=\"900\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/komatsu-kogyo.jpg\" alt=\"\" /></a>\n                                <a ><img width=\"256\" height=\"256\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yuwa-engineering.jpg\" alt=\"\" /></a>','Team & Member Companies','','inherit','closed','closed','','28-revision-v1','','','2024-12-10 02:58:43','2024-12-10 02:58:43','',28,'https://fe2tech.com/?p=2799',0,'revision','',0),(2800,1,'2024-12-10 02:58:43','2024-12-10 02:58:43','Our Team\n	    <h3>\n        We will exceed your expectations with our innovative solutions.    </h3>\n		<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a ><img width=\"597\" height=\"597\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/logo.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tech                                    </a>\n                                </h3>\n                                <a ><img width=\"182\" height=\"147\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FAR-East-Auto.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Auto Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Auto Tech                                    </a>\n                                </h3>\n                                <a ><img width=\"375\" height=\"335\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/Far-East-Tool-Vina.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tools Vina                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tools Vina                                    </a>\n                                </h3>\n                                <a ><img width=\"1200\" height=\"1100\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FE-TECH-LOGO-FINAL.png\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Engineering                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Engineering                                    </a>\n                                </h3>\n                                <a ></a>\n                            	<h3>	\n                	            	KS Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        KS Tech                                    </a>\n                                </h3>\n                                <a ></a>\n                            	<h3>	\n                	            	HM Company                		        </h3>\n                                <h3>    \n                                    <a >\n                                        HM Company                                    </a>\n                                </h3>\n                                <a ></a>\n                            	<h3>	\n                	            	HP Company                		        </h3>\n                                <h3>    \n                                    <a >\n                                        HP Company                                    </a>\n                                </h3>\n			Our Partners\n	    <h3>\n        We will exceed your expectations with our innovative solutions as your trusted partner.    </h3>\n		<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.</p>		\n                                <a href=\"https://www.yoshimoto-sangyo.co.jp/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"246\" height=\"205\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yoshimoto-vietnam.png\" alt=\"\" /></a>\n                                <a href=\"https://kimlongmotor.com.vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"1586\" height=\"1586\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/kim-long-motors.png\" alt=\"\" /></a>\n                                <a href=\"https://www.samsung.com/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"697\" height=\"232\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/samsung.jpg\" alt=\"\" /></a>\n                                <a href=\"https://komaz.co.jp/english/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"900\" height=\"900\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/komatsu-kogyo.jpg\" alt=\"\" /></a>\n                                <a ><img width=\"256\" height=\"256\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yuwa-engineering.jpg\" alt=\"\" /></a>','Team & Member Companies','','inherit','closed','closed','','28-revision-v1','','','2024-12-10 02:58:43','2024-12-10 02:58:43','',28,'https://fe2tech.com/?p=2800',0,'revision','',0),(2801,1,'2024-12-10 02:58:43','2024-12-10 02:58:43','Our Team\n	    <h3>\n        We will exceed your expectations with our innovative solutions.    </h3>\n		<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a ><img width=\"597\" height=\"597\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/logo.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tech                                    </a>\n                                </h3>\n                                <a ><img width=\"1200\" height=\"1100\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FE-TECH-LOGO-FINAL.png\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Engineering                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Engineering                                    </a>\n                                </h3>\n                                <a ><img width=\"375\" height=\"335\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/Far-East-Tool-Vina.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tools Vina                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tools Vina                                    </a>\n                                </h3>\n                                <a ><img width=\"182\" height=\"147\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FAR-East-Auto.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Auto Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Auto Tech                                    </a>\n                                </h3>\n			Our Partners\n	    <h3>\n        We will exceed your expectations with our innovative solutions as your trusted partner.    </h3>\n		<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.</p>		\n                                <a href=\"https://www.yoshimoto-sangyo.co.jp/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"246\" height=\"205\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yoshimoto-vietnam.png\" alt=\"\" /></a>\n                                <a href=\"https://kimlongmotor.com.vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"1586\" height=\"1586\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/kim-long-motors.png\" alt=\"\" /></a>\n                                <a href=\"https://www.samsung.com/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"697\" height=\"232\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/samsung.jpg\" alt=\"\" /></a>\n                                <a href=\"https://komaz.co.jp/english/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"900\" height=\"900\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/komatsu-kogyo.jpg\" alt=\"\" /></a>\n                                <a ><img width=\"256\" height=\"256\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yuwa-engineering.jpg\" alt=\"\" /></a>','Team & Member Companies','','inherit','closed','closed','','28-revision-v1','','','2024-12-10 02:58:43','2024-12-10 02:58:43','',28,'https://fe2tech.com/?p=2801',0,'revision','',0),(2802,1,'2024-12-10 02:59:46','2024-12-10 02:59:46','Our Team\n	    <h3>\n        We will exceed your expectations with our innovative solutions.    </h3>\n		<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a ><img width=\"597\" height=\"597\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/logo.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tech                                    </a>\n                                </h3>\n                                <a ><img width=\"1200\" height=\"1100\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FE-TECH-LOGO-FINAL.png\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Engineering                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Engineering                                    </a>\n                                </h3>\n                                <a ><img width=\"375\" height=\"335\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/Far-East-Tool-Vina.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tools Vina                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tools Vina                                    </a>\n                                </h3>\n                                <a ><img width=\"182\" height=\"147\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FAR-East-Auto.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Auto Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Auto Tech                                    </a>\n                                </h3>\n			Our Partners\n	    <h3>\n        We will exceed your expectations with our innovative solutions as your trusted partner.    </h3>\n		<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.</p>		\n                                <a href=\"https://www.yoshimoto-sangyo.co.jp/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"246\" height=\"205\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yoshimoto-vietnam.png\" alt=\"\" /></a>\n                                <a href=\"https://kimlongmotor.com.vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"1586\" height=\"1586\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/kim-long-motors.png\" alt=\"\" /></a>\n                                <a href=\"https://www.samsung.com/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"697\" height=\"232\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/samsung.jpg\" alt=\"\" /></a>\n                                <a href=\"https://komaz.co.jp/english/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"900\" height=\"900\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/komatsu-kogyo.jpg\" alt=\"\" /></a>\n                                <a ><img width=\"256\" height=\"256\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yuwa-engineering.jpg\" alt=\"\" /></a>','Team & Member Companies','','inherit','closed','closed','','28-revision-v1','','','2024-12-10 02:59:46','2024-12-10 02:59:46','',28,'https://fe2tech.com/?p=2802',0,'revision','',0),(2803,1,'2024-12-10 02:59:46','2024-12-10 02:59:46','Our Team\n	    <h3>\n        We will exceed your expectations with our innovative solutions.    </h3>\n		<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a ><img width=\"597\" height=\"597\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/logo.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tech                                    </a>\n                                </h3>\n                                <a ><img width=\"1200\" height=\"1100\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FE-TECH-LOGO-FINAL.png\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Engineering                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Engineering                                    </a>\n                                </h3>\n                                <a ><img width=\"375\" height=\"335\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/Far-East-Tool-Vina.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tools Vina                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tools Vina                                    </a>\n                                </h3>\n                                <a ><img width=\"182\" height=\"147\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FAR-East-Auto.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Auto Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Auto Tech                                    </a>\n                                </h3>\n			Our Partners\n	    <h3>\n        We will exceed your expectations with our innovative solutions as your trusted partner.    </h3>\n		<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.</p>		\n                                <a href=\"https://www.yoshimoto-sangyo.co.jp/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"246\" height=\"205\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yoshimoto-vietnam.png\" alt=\"\" /></a>\n                                <a href=\"https://kimlongmotor.com.vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"1586\" height=\"1586\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/kim-long-motors.png\" alt=\"\" /></a>\n                                <a href=\"https://www.samsung.com/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"697\" height=\"232\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/samsung.jpg\" alt=\"\" /></a>\n                                <a href=\"https://komaz.co.jp/english/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"900\" height=\"900\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/komatsu-kogyo.jpg\" alt=\"\" /></a>\n                                <a ><img width=\"256\" height=\"256\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yuwa-engineering.jpg\" alt=\"\" /></a>','Team & Member Companies','','inherit','closed','closed','','28-revision-v1','','','2024-12-10 02:59:46','2024-12-10 02:59:46','',28,'https://fe2tech.com/?p=2803',0,'revision','',0),(2804,1,'2024-12-10 02:59:46','2024-12-10 02:59:46','Our Team\n	    <h3>\n        We will exceed your expectations with our innovative solutions.    </h3>\n		<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a ><img width=\"597\" height=\"597\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/logo.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tech                                    </a>\n                                </h3>\n                                <a ><img width=\"1200\" height=\"1100\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FE-TECH-LOGO-FINAL.png\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Engineering                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Engineering                                    </a>\n                                </h3>\n                                <a ><img width=\"375\" height=\"335\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/Far-East-Tool-Vina.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tools Vina                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tools Vina                                    </a>\n                                </h3>\n                                <a ><img width=\"182\" height=\"147\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FAR-East-Auto.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Auto Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Auto Tech                                    </a>\n                                </h3>\n                                <a ></a>\n                            	<h3>	\n                	            	KS Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        KS Tech                                    </a>\n                                </h3>\n                                <a ></a>\n                            	<h3>	\n                	            	HM Company                		        </h3>\n                                <h3>    \n                                    <a >\n                                        HM Company                                    </a>\n                                </h3>\n                                <a ></a>\n                            	<h3>	\n                	            	HP Company                		        </h3>\n                                <h3>    \n                                    <a >\n                                        HP Company                                    </a>\n                                </h3>\n			Our Partners\n	    <h3>\n        We will exceed your expectations with our innovative solutions as your trusted partner.    </h3>\n		<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.</p>		\n                                <a href=\"https://www.yoshimoto-sangyo.co.jp/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"246\" height=\"205\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yoshimoto-vietnam.png\" alt=\"\" /></a>\n                                <a href=\"https://kimlongmotor.com.vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"1586\" height=\"1586\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/kim-long-motors.png\" alt=\"\" /></a>\n                                <a href=\"https://www.samsung.com/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"697\" height=\"232\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/samsung.jpg\" alt=\"\" /></a>\n                                <a href=\"https://komaz.co.jp/english/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"900\" height=\"900\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/komatsu-kogyo.jpg\" alt=\"\" /></a>\n                                <a ><img width=\"256\" height=\"256\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yuwa-engineering.jpg\" alt=\"\" /></a>','Team & Member Companies','','inherit','closed','closed','','28-revision-v1','','','2024-12-10 02:59:46','2024-12-10 02:59:46','',28,'https://fe2tech.com/?p=2804',0,'revision','',0),(2805,1,'2024-12-10 03:03:33','2024-12-10 03:03:33','Our Team\n	    <h3>\n        We will exceed your expectations with our innovative solutions.    </h3>\n		<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a ><img width=\"597\" height=\"597\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/logo.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tech                                    </a>\n                                </h3>\n                                <a ><img width=\"1200\" height=\"1100\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FE-TECH-LOGO-FINAL.png\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Engineering                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Engineering                                    </a>\n                                </h3>\n                                <a ><img width=\"375\" height=\"335\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/Far-East-Tool-Vina.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tools Vina                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tools Vina                                    </a>\n                                </h3>\n                                <a ><img width=\"182\" height=\"147\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FAR-East-Auto.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Auto Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Auto Tech                                    </a>\n                                </h3>\n                                <a ></a>\n                            	<h3>	\n                	            	KS Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        KS Tech                                    </a>\n                                </h3>\n                                <a ></a>\n                            	<h3>	\n                	            	HM Company                		        </h3>\n                                <h3>    \n                                    <a >\n                                        HM Company                                    </a>\n                                </h3>\n                                <a ></a>\n                            	<h3>	\n                	            	HP Company                		        </h3>\n                                <h3>    \n                                    <a >\n                                        HP Company                                    </a>\n                                </h3>\n			Our Partners\n	    <h3>\n        We will exceed your expectations with our innovative solutions as your trusted partner.    </h3>\n		<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.</p>		\n                                <a href=\"https://www.yoshimoto-sangyo.co.jp/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"246\" height=\"205\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yoshimoto-vietnam.png\" alt=\"\" /></a>\n                                <a href=\"https://kimlongmotor.com.vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"1586\" height=\"1586\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/kim-long-motors.png\" alt=\"\" /></a>\n                                <a href=\"https://www.samsung.com/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"697\" height=\"232\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/samsung.jpg\" alt=\"\" /></a>\n                                <a href=\"https://komaz.co.jp/english/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"900\" height=\"900\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/komatsu-kogyo.jpg\" alt=\"\" /></a>\n                                <a ><img width=\"256\" height=\"256\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yuwa-engineering.jpg\" alt=\"\" /></a>','Team & Member Companies','','inherit','closed','closed','','28-revision-v1','','','2024-12-10 03:03:33','2024-12-10 03:03:33','',28,'https://fe2tech.com/?p=2805',0,'revision','',0),(2806,1,'2024-12-10 03:03:34','2024-12-10 03:03:34','Our Team\n	    <h3>\n        We will exceed your expectations with our innovative solutions.    </h3>\n		<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a ><img width=\"597\" height=\"597\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/logo.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tech                                    </a>\n                                </h3>\n                                <a ><img width=\"1200\" height=\"1100\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FE-TECH-LOGO-FINAL.png\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Engineering                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Engineering                                    </a>\n                                </h3>\n                                <a ><img width=\"375\" height=\"335\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/Far-East-Tool-Vina.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tools Vina                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tools Vina                                    </a>\n                                </h3>\n                                <a ><img width=\"182\" height=\"147\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FAR-East-Auto.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Auto Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Auto Tech                                    </a>\n                                </h3>\n                                <a ></a>\n                            	<h3>	\n                	            	KS Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        KS Tech                                    </a>\n                                </h3>\n                                <a ></a>\n                            	<h3>	\n                	            	HM Company                		        </h3>\n                                <h3>    \n                                    <a >\n                                        HM Company                                    </a>\n                                </h3>\n                                <a ></a>\n                            	<h3>	\n                	            	HP Company                		        </h3>\n                                <h3>    \n                                    <a >\n                                        HP Company                                    </a>\n                                </h3>\n			Our Partners\n	    <h3>\n        We will exceed your expectations with our innovative solutions as your trusted partner.    </h3>\n		<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.</p>		\n                                <a href=\"https://www.yoshimoto-sangyo.co.jp/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"246\" height=\"205\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yoshimoto-vietnam.png\" alt=\"\" /></a>\n                                <a href=\"https://kimlongmotor.com.vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"1586\" height=\"1586\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/kim-long-motors.png\" alt=\"\" /></a>\n                                <a href=\"https://www.samsung.com/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"697\" height=\"232\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/samsung.jpg\" alt=\"\" /></a>\n                                <a href=\"https://komaz.co.jp/english/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"900\" height=\"900\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/komatsu-kogyo.jpg\" alt=\"\" /></a>\n                                <a ><img width=\"256\" height=\"256\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yuwa-engineering.jpg\" alt=\"\" /></a>','Team & Member Companies','','inherit','closed','closed','','28-revision-v1','','','2024-12-10 03:03:34','2024-12-10 03:03:34','',28,'https://fe2tech.com/?p=2806',0,'revision','',0),(2807,1,'2024-12-10 03:03:34','2024-12-10 03:03:34','Our Team\n	    <h3>\n        We will exceed your expectations with our innovative solutions.    </h3>\n		<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a ><img width=\"597\" height=\"597\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/logo.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tech                                    </a>\n                                </h3>\n                                <a ><img width=\"1200\" height=\"1100\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FE-TECH-LOGO-FINAL.png\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Engineering                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Engineering                                    </a>\n                                </h3>\n                                <a ><img width=\"375\" height=\"335\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/Far-East-Tool-Vina.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tools Vina                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tools Vina                                    </a>\n                                </h3>\n			Our Partners\n	    <h3>\n        We will exceed your expectations with our innovative solutions as your trusted partner.    </h3>\n		<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.</p>		\n                                <a href=\"https://www.yoshimoto-sangyo.co.jp/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"246\" height=\"205\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yoshimoto-vietnam.png\" alt=\"\" /></a>\n                                <a href=\"https://kimlongmotor.com.vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"1586\" height=\"1586\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/kim-long-motors.png\" alt=\"\" /></a>\n                                <a href=\"https://www.samsung.com/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"697\" height=\"232\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/samsung.jpg\" alt=\"\" /></a>\n                                <a href=\"https://komaz.co.jp/english/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"900\" height=\"900\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/komatsu-kogyo.jpg\" alt=\"\" /></a>\n                                <a ><img width=\"256\" height=\"256\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yuwa-engineering.jpg\" alt=\"\" /></a>','Team & Member Companies','','inherit','closed','closed','','28-revision-v1','','','2024-12-10 03:03:34','2024-12-10 03:03:34','',28,'https://fe2tech.com/?p=2807',0,'revision','',0),(2809,1,'2024-12-10 03:04:09','2024-12-10 03:04:09','Our Team\n	    <h3>\n        We will exceed your expectations with our innovative solutions.    </h3>\n		<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a ><img width=\"597\" height=\"597\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/logo.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tech                                    </a>\n                                </h3>\n                                <a ><img width=\"1200\" height=\"1100\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FE-TECH-LOGO-FINAL.png\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Engineering                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Engineering                                    </a>\n                                </h3>\n                                <a ><img width=\"375\" height=\"335\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/Far-East-Tool-Vina.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tools Vina                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tools Vina                                    </a>\n                                </h3>\n			Our Partners\n	    <h3>\n        We will exceed your expectations with our innovative solutions as your trusted partner.    </h3>\n		<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.</p>		\n                                <a href=\"https://www.yoshimoto-sangyo.co.jp/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"246\" height=\"205\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yoshimoto-vietnam.png\" alt=\"\" /></a>\n                                <a href=\"https://kimlongmotor.com.vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"1586\" height=\"1586\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/kim-long-motors.png\" alt=\"\" /></a>\n                                <a href=\"https://www.samsung.com/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"697\" height=\"232\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/samsung.jpg\" alt=\"\" /></a>\n                                <a href=\"https://komaz.co.jp/english/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"900\" height=\"900\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/komatsu-kogyo.jpg\" alt=\"\" /></a>\n                                <a ><img width=\"256\" height=\"256\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yuwa-engineering.jpg\" alt=\"\" /></a>','Team & Member Companies','','inherit','closed','closed','','28-revision-v1','','','2024-12-10 03:04:09','2024-12-10 03:04:09','',28,'https://fe2tech.com/?p=2809',0,'revision','',0),(2810,1,'2024-12-10 03:04:09','2024-12-10 03:04:09','Our Team\n	    <h3>\n        We will exceed your expectations with our innovative solutions.    </h3>\n		<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a ><img width=\"597\" height=\"597\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/logo.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tech                                    </a>\n                                </h3>\n                                <a ><img width=\"1200\" height=\"1100\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FE-TECH-LOGO-FINAL.png\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Engineering                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Engineering                                    </a>\n                                </h3>\n                                <a ><img width=\"375\" height=\"335\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/Far-East-Tool-Vina.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tools Vina                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tools Vina                                    </a>\n                                </h3>\n			Our Partners\n	    <h3>\n        We will exceed your expectations with our innovative solutions as your trusted partner.    </h3>\n		<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.</p>		\n                                <a href=\"https://www.yoshimoto-sangyo.co.jp/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"246\" height=\"205\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yoshimoto-vietnam.png\" alt=\"\" /></a>\n                                <a href=\"https://kimlongmotor.com.vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"1586\" height=\"1586\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/kim-long-motors.png\" alt=\"\" /></a>\n                                <a href=\"https://www.samsung.com/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"697\" height=\"232\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/samsung.jpg\" alt=\"\" /></a>\n                                <a href=\"https://komaz.co.jp/english/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"900\" height=\"900\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/komatsu-kogyo.jpg\" alt=\"\" /></a>\n                                <a ><img width=\"256\" height=\"256\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yuwa-engineering.jpg\" alt=\"\" /></a>','Team & Member Companies','','inherit','closed','closed','','28-revision-v1','','','2024-12-10 03:04:09','2024-12-10 03:04:09','',28,'https://fe2tech.com/?p=2810',0,'revision','',0),(2811,1,'2024-12-10 03:04:09','2024-12-10 03:04:09','Our Team\n	    <h3>\n        We will exceed your expectations with our innovative solutions.    </h3>\n		<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a ><img width=\"597\" height=\"597\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/logo.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tech                                    </a>\n                                </h3>\n                                <a ><img width=\"1200\" height=\"1100\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FE-TECH-LOGO-FINAL-1.png\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Engineering                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Engineering                                    </a>\n                                </h3>\n                                <a ><img width=\"375\" height=\"335\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/Far-East-Tool-Vina.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tools Vina                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tools Vina                                    </a>\n                                </h3>\n			Our Partners\n	    <h3>\n        We will exceed your expectations with our innovative solutions as your trusted partner.    </h3>\n		<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.</p>		\n                                <a href=\"https://www.yoshimoto-sangyo.co.jp/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"246\" height=\"205\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yoshimoto-vietnam.png\" alt=\"\" /></a>\n                                <a href=\"https://kimlongmotor.com.vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"1586\" height=\"1586\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/kim-long-motors.png\" alt=\"\" /></a>\n                                <a href=\"https://www.samsung.com/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"697\" height=\"232\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/samsung.jpg\" alt=\"\" /></a>\n                                <a href=\"https://komaz.co.jp/english/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"900\" height=\"900\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/komatsu-kogyo.jpg\" alt=\"\" /></a>\n                                <a ><img width=\"256\" height=\"256\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yuwa-engineering.jpg\" alt=\"\" /></a>','Team & Member Companies','','inherit','closed','closed','','28-revision-v1','','','2024-12-10 03:04:09','2024-12-10 03:04:09','',28,'https://fe2tech.com/?p=2811',0,'revision','',0),(2812,1,'2024-12-10 03:20:31','2024-12-10 03:20:31','','FEHT logo','','inherit','open','closed','','feht-logo','','','2024-12-10 03:20:31','2024-12-10 03:20:31','',28,'https://fe2tech.com/wp-content/uploads/2024/12/FEHT-logo.jpg',0,'attachment','image/jpeg',0),(2817,1,'2024-12-10 03:22:44','2024-12-10 03:22:44','Our Team\n	    <h3>\n        We will exceed your expectations with our innovative solutions.    </h3>\n		<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a ><img width=\"597\" height=\"597\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/logo.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tech                                    </a>\n                                </h3>\n                                <a ><img width=\"1200\" height=\"1100\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FE-TECH-LOGO-FINAL-1.png\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Engineering                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Engineering                                    </a>\n                                </h3>\n                                <a ><img width=\"375\" height=\"335\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/Far-East-Tool-Vina.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tools Vina                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tools Vina                                    </a>\n                                </h3>\n			Our Partners\n	    <h3>\n        We will exceed your expectations with our innovative solutions as your trusted partner.    </h3>\n		<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.</p>		\n                                <a href=\"https://www.yoshimoto-sangyo.co.jp/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"246\" height=\"205\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yoshimoto-vietnam.png\" alt=\"\" /></a>\n                                <a href=\"https://kimlongmotor.com.vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"1586\" height=\"1586\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/kim-long-motors.png\" alt=\"\" /></a>\n                                <a href=\"https://www.samsung.com/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"697\" height=\"232\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/samsung.jpg\" alt=\"\" /></a>\n                                <a href=\"https://komaz.co.jp/english/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"900\" height=\"900\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/komatsu-kogyo.jpg\" alt=\"\" /></a>\n                                <a ><img width=\"256\" height=\"256\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yuwa-engineering.jpg\" alt=\"\" /></a>','Team & Member Companies','','inherit','closed','closed','','28-revision-v1','','','2024-12-10 03:22:44','2024-12-10 03:22:44','',28,'https://fe2tech.com/?p=2817',0,'revision','',0),(2818,1,'2024-12-10 03:22:44','2024-12-10 03:22:44','Our Team\n	    <h3>\n        We will exceed your expectations with our innovative solutions.    </h3>\n		<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a ><img width=\"597\" height=\"597\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/logo.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tech                                    </a>\n                                </h3>\n                                <a ><img width=\"1200\" height=\"1100\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FE-TECH-LOGO-FINAL-1.png\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Engineering                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Engineering                                    </a>\n                                </h3>\n                                <a ><img width=\"375\" height=\"335\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/Far-East-Tool-Vina.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tools Vina                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tools Vina                                    </a>\n                                </h3>\n			Our Partners\n	    <h3>\n        We will exceed your expectations with our innovative solutions as your trusted partner.    </h3>\n		<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.</p>		\n                                <a href=\"https://www.yoshimoto-sangyo.co.jp/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"246\" height=\"205\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yoshimoto-vietnam.png\" alt=\"\" /></a>\n                                <a href=\"https://kimlongmotor.com.vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"1586\" height=\"1586\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/kim-long-motors.png\" alt=\"\" /></a>\n                                <a href=\"https://www.samsung.com/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"697\" height=\"232\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/samsung.jpg\" alt=\"\" /></a>\n                                <a href=\"https://komaz.co.jp/english/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"900\" height=\"900\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/komatsu-kogyo.jpg\" alt=\"\" /></a>\n                                <a ><img width=\"256\" height=\"256\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yuwa-engineering.jpg\" alt=\"\" /></a>','Team & Member Companies','','inherit','closed','closed','','28-revision-v1','','','2024-12-10 03:22:44','2024-12-10 03:22:44','',28,'https://fe2tech.com/?p=2818',0,'revision','',0),(2819,1,'2024-12-10 03:22:44','2024-12-10 03:22:44','Our Team\n	    <h3>\n        We will exceed your expectations with our innovative solutions.    </h3>\n		<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a ><img width=\"300\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FEHT-logo.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tech                                    </a>\n                                </h3>\n                                <a ><img width=\"327\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FE-TECH-LOGO-FINAL.png\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Engineering                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Engineering                                    </a>\n                                </h3>\n                                <a ><img width=\"335\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/Far-East-Tool-Vina.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tools Vina                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tools Vina                                    </a>\n                                </h3>\n			Our Partners\n	    <h3>\n        We will exceed your expectations with our innovative solutions as your trusted partner.    </h3>\n		<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.</p>		\n                                <a href=\"https://www.yoshimoto-sangyo.co.jp/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"246\" height=\"205\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yoshimoto-vietnam.png\" alt=\"\" /></a>\n                                <a href=\"https://kimlongmotor.com.vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"1586\" height=\"1586\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/kim-long-motors.png\" alt=\"\" /></a>\n                                <a href=\"https://www.samsung.com/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"697\" height=\"232\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/samsung.jpg\" alt=\"\" /></a>\n                                <a href=\"https://komaz.co.jp/english/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"900\" height=\"900\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/komatsu-kogyo.jpg\" alt=\"\" /></a>\n                                <a ><img width=\"256\" height=\"256\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yuwa-engineering.jpg\" alt=\"\" /></a>','Team & Member Companies','','inherit','closed','closed','','28-revision-v1','','','2024-12-10 03:22:44','2024-12-10 03:22:44','',28,'https://fe2tech.com/?p=2819',0,'revision','',0),(2820,1,'2024-12-10 03:32:45','2024-12-10 03:32:45','','z4379673923151_1f10bec1ef168974349f66b16772c543','','inherit','open','closed','','z4379673923151_1f10bec1ef168974349f66b16772c543','','','2024-12-10 03:32:45','2024-12-10 03:32:45','',2619,'https://fe2tech.com/wp-content/uploads/2024/11/z4379673923151_1f10bec1ef168974349f66b16772c543.jpg',0,'attachment','image/jpeg',0),(2821,1,'2024-12-10 03:32:46','2024-12-10 03:32:46','','z5997919286088_1aafc52570d9ee521cb7325aaa3efbbb','','inherit','open','closed','','z5997919286088_1aafc52570d9ee521cb7325aaa3efbbb','','','2024-12-10 03:32:46','2024-12-10 03:32:46','',2619,'https://fe2tech.com/wp-content/uploads/2024/11/z5997919286088_1aafc52570d9ee521cb7325aaa3efbbb.jpg',0,'attachment','image/jpeg',0),(2822,1,'2024-12-10 03:32:47','2024-12-10 03:32:47','','z6112022581961_f2a47cd330f690d0a726b0888ff80ab1','','inherit','open','closed','','z6112022581961_f2a47cd330f690d0a726b0888ff80ab1','','','2024-12-10 03:32:47','2024-12-10 03:32:47','',2619,'https://fe2tech.com/wp-content/uploads/2024/11/z6112022581961_f2a47cd330f690d0a726b0888ff80ab1.jpg',0,'attachment','image/jpeg',0),(2823,1,'2024-12-10 03:32:48','2024-12-10 03:32:48','','z6112022572357_0cdb065792788d3493b2e389df79a5e2','','inherit','open','closed','','z6112022572357_0cdb065792788d3493b2e389df79a5e2','','','2024-12-10 03:32:48','2024-12-10 03:32:48','',2619,'https://fe2tech.com/wp-content/uploads/2024/11/z6112022572357_0cdb065792788d3493b2e389df79a5e2.jpg',0,'attachment','image/jpeg',0),(2824,1,'2024-12-10 03:32:50','2024-12-10 03:32:50','','z6112022611669_d154017fd0d3c02db6be468c7db9fa32','','inherit','open','closed','','z6112022611669_d154017fd0d3c02db6be468c7db9fa32','','','2024-12-10 03:32:50','2024-12-10 03:32:50','',2619,'https://fe2tech.com/wp-content/uploads/2024/11/z6112022611669_d154017fd0d3c02db6be468c7db9fa32.jpg',0,'attachment','image/jpeg',0),(2825,1,'2024-12-10 03:32:51','2024-12-10 03:32:51','','z6112035366910_4defd4ad74170bea5d4fa69518dafb6d','','inherit','open','closed','','z6112035366910_4defd4ad74170bea5d4fa69518dafb6d','','','2024-12-10 03:32:51','2024-12-10 03:32:51','',2619,'https://fe2tech.com/wp-content/uploads/2024/11/z6112035366910_4defd4ad74170bea5d4fa69518dafb6d.jpg',0,'attachment','image/jpeg',0),(2826,1,'2024-12-10 03:32:52','2024-12-10 03:32:52','','z6112035331028_b1fcc3e9f1979a96aaebf343697989b4','','inherit','open','closed','','z6112035331028_b1fcc3e9f1979a96aaebf343697989b4','','','2024-12-10 03:32:52','2024-12-10 03:32:52','',2619,'https://fe2tech.com/wp-content/uploads/2024/11/z6112035331028_b1fcc3e9f1979a96aaebf343697989b4.jpg',0,'attachment','image/jpeg',0),(2827,1,'2024-12-10 03:32:54','2024-12-10 03:32:54','','z6112035303451_55cd6bcbf16c201a507ca6ac10623d02','','inherit','open','closed','','z6112035303451_55cd6bcbf16c201a507ca6ac10623d02','','','2024-12-10 03:32:54','2024-12-10 03:32:54','',2619,'https://fe2tech.com/wp-content/uploads/2024/11/z6112035303451_55cd6bcbf16c201a507ca6ac10623d02.jpg',0,'attachment','image/jpeg',0),(2828,1,'2024-12-10 03:32:55','2024-12-10 03:32:55','','z6112035333555_19b4ef8a09ed63f106da162eac3d9775','','inherit','open','closed','','z6112035333555_19b4ef8a09ed63f106da162eac3d9775','','','2024-12-10 03:32:55','2024-12-10 03:32:55','',2619,'https://fe2tech.com/wp-content/uploads/2024/11/z6112035333555_19b4ef8a09ed63f106da162eac3d9775.jpg',0,'attachment','image/jpeg',0),(2829,1,'2024-12-10 03:32:56','2024-12-10 03:32:56','','z6112022609645_43af0256c23b3f39325ac10fe40d3200','','inherit','open','closed','','z6112022609645_43af0256c23b3f39325ac10fe40d3200','','','2024-12-10 03:32:56','2024-12-10 03:32:56','',2619,'https://fe2tech.com/wp-content/uploads/2024/11/z6112022609645_43af0256c23b3f39325ac10fe40d3200.jpg',0,'attachment','image/jpeg',0),(2830,1,'2024-12-10 03:32:57','2024-12-10 03:32:57','','z6112035380871_0810f1b5bcdd3396a375bf5a785686ae','','inherit','open','closed','','z6112035380871_0810f1b5bcdd3396a375bf5a785686ae','','','2024-12-10 03:32:57','2024-12-10 03:32:57','',2619,'https://fe2tech.com/wp-content/uploads/2024/11/z6112035380871_0810f1b5bcdd3396a375bf5a785686ae.jpg',0,'attachment','image/jpeg',0),(2831,1,'2024-12-10 03:32:59','2024-12-10 03:32:59','','z6112143350420_5fdf5495fc11f668a8b6e8b865a0670a','','inherit','open','closed','','z6112143350420_5fdf5495fc11f668a8b6e8b865a0670a','','','2024-12-10 03:32:59','2024-12-10 03:32:59','',2619,'https://fe2tech.com/wp-content/uploads/2024/11/z6112143350420_5fdf5495fc11f668a8b6e8b865a0670a.jpg',0,'attachment','image/jpeg',0),(2832,1,'2024-12-10 03:33:00','2024-12-10 03:33:00','','z6112159599274_ed84aaa8ae44eb900b332183d18d35ff','','inherit','open','closed','','z6112159599274_ed84aaa8ae44eb900b332183d18d35ff','','','2024-12-10 03:33:00','2024-12-10 03:33:00','',2619,'https://fe2tech.com/wp-content/uploads/2024/11/z6112159599274_ed84aaa8ae44eb900b332183d18d35ff.jpg',0,'attachment','image/jpeg',0),(2833,1,'2024-12-10 03:33:10','2024-12-10 03:33:10','We excel in aluminum and steel products, particularly thin aluminum sheets and motorcycle-related toys.<img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4379673923151_1f10bec1ef168974349f66b16772c543.jpg\" alt=\"\" width=\"1280\" height=\"960\" class=\"alignnone size-full wp-image-2820\" />\r\n\r\n<img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5997919286088_1aafc52570d9ee521cb7325aaa3efbbb.jpg\" alt=\"\" width=\"139\" height=\"300\" class=\"alignnone size-medium wp-image-2821\" />\r\n\r\n<img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112022581961_f2a47cd330f690d0a726b0888ff80ab1.jpg\" alt=\"\" width=\"139\" height=\"300\" class=\"alignnone size-medium wp-image-2822\" />\r\n\r\n<img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112022572357_0cdb065792788d3493b2e389df79a5e2.jpg\" alt=\"\" width=\"225\" height=\"300\" class=\"alignnone size-medium wp-image-2823\" />\r\n\r\n<img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112022611669_d154017fd0d3c02db6be468c7db9fa32.jpg\" alt=\"\" width=\"225\" height=\"300\" class=\"alignnone size-medium wp-image-2824\" />\r\n\r\n<img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035366910_4defd4ad74170bea5d4fa69518dafb6d.jpg\" alt=\"\" width=\"225\" height=\"300\" class=\"alignnone size-medium wp-image-2825\" />\r\n\r\n<img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035331028_b1fcc3e9f1979a96aaebf343697989b4.jpg\" alt=\"\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-2826\" />\r\n\r\n<img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035303451_55cd6bcbf16c201a507ca6ac10623d02.jpg\" alt=\"\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-2827\" />\r\n\r\n<img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035333555_19b4ef8a09ed63f106da162eac3d9775.jpg\" alt=\"\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-2828\" />\r\n\r\n<img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112022609645_43af0256c23b3f39325ac10fe40d3200.jpg\" alt=\"\" width=\"225\" height=\"300\" class=\"alignnone size-medium wp-image-2829\" />\r\n\r\n<img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035380871_0810f1b5bcdd3396a375bf5a785686ae.jpg\" alt=\"\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-2830\" />\r\n\r\n<img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112143350420_5fdf5495fc11f668a8b6e8b865a0670a.jpg\" alt=\"\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-2831\" />\r\n\r\n<img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112159599274_ed84aaa8ae44eb900b332183d18d35ff.jpg\" alt=\"\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-2832\" />','CNC Milling Service','','inherit','closed','closed','','2619-revision-v1','','','2024-12-10 03:33:10','2024-12-10 03:33:10','',2619,'https://fe2tech.com/?p=2833',0,'revision','',0),(2834,1,'2024-12-10 03:34:14','2024-12-10 03:34:14','<div class=\"image-gallery\">\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4379673923151_1f10bec1ef168974349f66b16772c543.jpg\" alt=\"\" class=\"gallery-image\">\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5997919286088_1aafc52570d9ee521cb7325aaa3efbbb.jpg\" alt=\"\" class=\"gallery-image\">\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112022581961_f2a47cd330f690d0a726b0888ff80ab1.jpg\" alt=\"\" class=\"gallery-image\">\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112022572357_0cdb065792788d3493b2e389df79a5e2.jpg\" alt=\"\" class=\"gallery-image\">\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112022611669_d154017fd0d3c02db6be468c7db9fa32.jpg\" alt=\"\" class=\"gallery-image\">\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035366910_4defd4ad74170bea5d4fa69518dafb6d.jpg\" alt=\"\" class=\"gallery-image\">\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035331028_b1fcc3e9f1979a96aaebf343697989b4.jpg\" alt=\"\" class=\"gallery-image\">\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035303451_55cd6bcbf16c201a507ca6ac10623d02.jpg\" alt=\"\" class=\"gallery-image\">\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035333555_19b4ef8a09ed63f106da162eac3d9775.jpg\" alt=\"\" class=\"gallery-image\">\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112022609645_43af0256c23b3f39325ac10fe40d3200.jpg\" alt=\"\" class=\"gallery-image\">\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035380871_0810f1b5bcdd3396a375bf5a785686ae.jpg\" alt=\"\" class=\"gallery-image\">\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112143350420_5fdf5495fc11f668a8b6e8b865a0670a.jpg\" alt=\"\" class=\"gallery-image\">\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112159599274_ed84aaa8ae44eb900b332183d18d35ff.jpg\" alt=\"\" class=\"gallery-image\">\n</div>\n','CNC Milling Service','','inherit','closed','closed','','2619-autosave-v1','','','2024-12-10 03:34:14','2024-12-10 03:34:14','',2619,'https://fe2tech.com/?p=2834',0,'revision','',0),(2835,1,'2024-12-10 03:34:47','2024-12-10 03:34:47','<style>\r\n.image-gallery {\r\n  display: grid;\r\n  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));\r\n  gap: 15px;\r\n  justify-items: center;\r\n}\r\n\r\n.gallery-image {\r\n  width: 100%;\r\n  height: auto;\r\n  border-radius: 8px;\r\n  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);\r\n  transition: transform 0.3s ease, box-shadow 0.3s ease;\r\n}\r\n\r\n.gallery-image:hover {\r\n  transform: scale(1.05);\r\n  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);\r\n}\r\n\r\n</style>\r\n<div class=\"image-gallery\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4379673923151_1f10bec1ef168974349f66b16772c543.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5997919286088_1aafc52570d9ee521cb7325aaa3efbbb.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112022581961_f2a47cd330f690d0a726b0888ff80ab1.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112022572357_0cdb065792788d3493b2e389df79a5e2.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112022611669_d154017fd0d3c02db6be468c7db9fa32.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035366910_4defd4ad74170bea5d4fa69518dafb6d.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035331028_b1fcc3e9f1979a96aaebf343697989b4.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035303451_55cd6bcbf16c201a507ca6ac10623d02.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035333555_19b4ef8a09ed63f106da162eac3d9775.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112022609645_43af0256c23b3f39325ac10fe40d3200.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035380871_0810f1b5bcdd3396a375bf5a785686ae.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112143350420_5fdf5495fc11f668a8b6e8b865a0670a.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112159599274_ed84aaa8ae44eb900b332183d18d35ff.jpg\" alt=\"\" class=\"gallery-image\">\r\n</div>\r\n','CNC Milling Service','','inherit','closed','closed','','2619-revision-v1','','','2024-12-10 03:34:47','2024-12-10 03:34:47','',2619,'https://fe2tech.com/?p=2835',0,'revision','',0),(2836,1,'2024-12-10 03:34:56','2024-12-10 03:34:56','<style>\r\n.image-gallery {\r\n  display: grid;\r\n  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));\r\n  gap: 15px;\r\n  justify-items: center;\r\n}\r\n\r\n.gallery-image {\r\n  width: 100%;\r\n  height: auto;\r\n  border-radius: 8px;\r\n  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);\r\n  transition: transform 0.3s ease, box-shadow 0.3s ease;\r\n}\r\n\r\n.gallery-image:hover {\r\n  transform: scale(1.05);\r\n  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);\r\n}\r\n\r\n</style>\r\nWe excel in aluminum and steel products, particularly thin aluminum sheets and motorcycle-related toys.\r\n<div class=\"image-gallery\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4379673923151_1f10bec1ef168974349f66b16772c543.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5997919286088_1aafc52570d9ee521cb7325aaa3efbbb.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112022581961_f2a47cd330f690d0a726b0888ff80ab1.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112022572357_0cdb065792788d3493b2e389df79a5e2.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112022611669_d154017fd0d3c02db6be468c7db9fa32.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035366910_4defd4ad74170bea5d4fa69518dafb6d.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035331028_b1fcc3e9f1979a96aaebf343697989b4.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035303451_55cd6bcbf16c201a507ca6ac10623d02.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035333555_19b4ef8a09ed63f106da162eac3d9775.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112022609645_43af0256c23b3f39325ac10fe40d3200.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035380871_0810f1b5bcdd3396a375bf5a785686ae.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112143350420_5fdf5495fc11f668a8b6e8b865a0670a.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112159599274_ed84aaa8ae44eb900b332183d18d35ff.jpg\" alt=\"\" class=\"gallery-image\">\r\n</div>\r\n','CNC Milling Service','','inherit','closed','closed','','2619-revision-v1','','','2024-12-10 03:34:56','2024-12-10 03:34:56','',2619,'https://fe2tech.com/?p=2836',0,'revision','',0),(2837,1,'2024-12-10 03:36:17','2024-12-10 03:36:17','<style>\r\n.image-gallery {\r\n  display: grid;\r\n  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));\r\n  gap: 15px;\r\n  justify-items: stretch;  /* Căn chỉnh các phần tử trong lưới để lấp đầy không gian */\r\n}\r\n\r\n.gallery-image {\r\n  width: 100%;\r\n  height: 100%;\r\n  object-fit: cover;  /* Đảm bảo ảnh lấp đầy ô mà không bị méo */\r\n  border-radius: 8px;\r\n  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);\r\n  transition: transform 0.3s ease, box-shadow 0.3s ease;\r\n}\r\n\r\n.gallery-image:hover {\r\n  transform: scale(1.05);\r\n  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);\r\n}\r\n</style>\r\nWe excel in aluminum and steel products, particularly thin aluminum sheets and motorcycle-related toys.\r\n<div class=\"image-gallery\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4379673923151_1f10bec1ef168974349f66b16772c543.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5997919286088_1aafc52570d9ee521cb7325aaa3efbbb.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112022581961_f2a47cd330f690d0a726b0888ff80ab1.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112022572357_0cdb065792788d3493b2e389df79a5e2.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112022611669_d154017fd0d3c02db6be468c7db9fa32.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035366910_4defd4ad74170bea5d4fa69518dafb6d.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035331028_b1fcc3e9f1979a96aaebf343697989b4.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035303451_55cd6bcbf16c201a507ca6ac10623d02.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035333555_19b4ef8a09ed63f106da162eac3d9775.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112022609645_43af0256c23b3f39325ac10fe40d3200.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035380871_0810f1b5bcdd3396a375bf5a785686ae.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112143350420_5fdf5495fc11f668a8b6e8b865a0670a.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112159599274_ed84aaa8ae44eb900b332183d18d35ff.jpg\" alt=\"\" class=\"gallery-image\">\r\n</div>\r\n','CNC Milling Service','','inherit','closed','closed','','2619-revision-v1','','','2024-12-10 03:36:17','2024-12-10 03:36:17','',2619,'https://fe2tech.com/?p=2837',0,'revision','',0),(2838,1,'2024-12-10 03:38:53','2024-12-10 03:38:53','<style>\r\n.masonry-gallery {\r\n  column-count: 4; /* Số cột sẽ thay đổi tự động tùy theo kích thước màn hình */\r\n  column-gap: 15px; /* Khoảng cách giữa các cột */\r\n}\r\n\r\n.gallery-image {\r\n  width: 100%;\r\n  margin-bottom: 15px; /* Khoảng cách dưới ảnh */\r\n  object-fit: cover; /* Đảm bảo ảnh lấp đầy không gian */\r\n  border-radius: 8px;\r\n  transition: transform 0.3s ease, box-shadow 0.3s ease;\r\n}\r\n\r\n.gallery-image:hover {\r\n  transform: scale(1.05);\r\n  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);\r\n}\r\n\r\n/* Đảm bảo cho các cột tự động điều chỉnh cho các màn hình khác nhau */\r\n@media (max-width: 1200px) {\r\n  .masonry-gallery {\r\n    column-count: 3; /* 3 cột khi màn hình nhỏ hơn 1200px */\r\n  }\r\n}\r\n\r\n@media (max-width: 900px) {\r\n  .masonry-gallery {\r\n    column-count: 2; /* 2 cột khi màn hình nhỏ hơn 900px */\r\n  }\r\n}\r\n\r\n@media (max-width: 600px) {\r\n  .masonry-gallery {\r\n    column-count: 1; /* 1 cột khi màn hình nhỏ hơn 600px */\r\n  }\r\n}\r\n\r\n</style>\r\nWe excel in aluminum and steel products, particularly thin aluminum sheets and motorcycle-related toys.\r\n<div class=\"masonry-gallery\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4379673923151_1f10bec1ef168974349f66b16772c543.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5997919286088_1aafc52570d9ee521cb7325aaa3efbbb.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112022581961_f2a47cd330f690d0a726b0888ff80ab1.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112022572357_0cdb065792788d3493b2e389df79a5e2.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112022611669_d154017fd0d3c02db6be468c7db9fa32.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035366910_4defd4ad74170bea5d4fa69518dafb6d.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035331028_b1fcc3e9f1979a96aaebf343697989b4.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035303451_55cd6bcbf16c201a507ca6ac10623d02.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035333555_19b4ef8a09ed63f106da162eac3d9775.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112022609645_43af0256c23b3f39325ac10fe40d3200.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035380871_0810f1b5bcdd3396a375bf5a785686ae.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112143350420_5fdf5495fc11f668a8b6e8b865a0670a.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112159599274_ed84aaa8ae44eb900b332183d18d35ff.jpg\" alt=\"\" class=\"gallery-image\">\r\n</div>\r\n','CNC Milling Service','','inherit','closed','closed','','2619-revision-v1','','','2024-12-10 03:38:53','2024-12-10 03:38:53','',2619,'https://fe2tech.com/?p=2838',0,'revision','',0),(2839,1,'2024-12-10 03:42:24','2024-12-10 03:42:24','We excel in aluminum and steel products, particularly thin aluminum sheets and motorcycle-related toys.\r\n<div class=\"masonry-gallery\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4379673923151_1f10bec1ef168974349f66b16772c543.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5997919286088_1aafc52570d9ee521cb7325aaa3efbbb.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112022581961_f2a47cd330f690d0a726b0888ff80ab1.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112022572357_0cdb065792788d3493b2e389df79a5e2.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112022611669_d154017fd0d3c02db6be468c7db9fa32.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035366910_4defd4ad74170bea5d4fa69518dafb6d.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035331028_b1fcc3e9f1979a96aaebf343697989b4.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035303451_55cd6bcbf16c201a507ca6ac10623d02.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035333555_19b4ef8a09ed63f106da162eac3d9775.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112022609645_43af0256c23b3f39325ac10fe40d3200.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035380871_0810f1b5bcdd3396a375bf5a785686ae.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112143350420_5fdf5495fc11f668a8b6e8b865a0670a.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112159599274_ed84aaa8ae44eb900b332183d18d35ff.jpg\" alt=\"\" class=\"gallery-image\">\r\n</div>\r\n','CNC Milling Service','','inherit','closed','closed','','2619-revision-v1','','','2024-12-10 03:42:24','2024-12-10 03:42:24','',2619,'https://fe2tech.com/?p=2839',0,'revision','',0),(2840,1,'2024-12-10 03:44:50','2024-12-10 03:44:50','<h3 class=\"item--title st-default\">We excel in aluminum and steel products, particularly thin aluminum sheets and motorcycle-related toys.</h3>\r\n<div class=\"masonry-gallery\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4379673923151_1f10bec1ef168974349f66b16772c543.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5997919286088_1aafc52570d9ee521cb7325aaa3efbbb.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112022581961_f2a47cd330f690d0a726b0888ff80ab1.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112022572357_0cdb065792788d3493b2e389df79a5e2.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112022611669_d154017fd0d3c02db6be468c7db9fa32.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035366910_4defd4ad74170bea5d4fa69518dafb6d.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035331028_b1fcc3e9f1979a96aaebf343697989b4.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035303451_55cd6bcbf16c201a507ca6ac10623d02.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035333555_19b4ef8a09ed63f106da162eac3d9775.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112022609645_43af0256c23b3f39325ac10fe40d3200.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035380871_0810f1b5bcdd3396a375bf5a785686ae.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112143350420_5fdf5495fc11f668a8b6e8b865a0670a.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112159599274_ed84aaa8ae44eb900b332183d18d35ff.jpg\" alt=\"\" class=\"gallery-image\">\r\n</div>\r\n','CNC Milling Service','','inherit','closed','closed','','2619-revision-v1','','','2024-12-10 03:44:50','2024-12-10 03:44:50','',2619,'https://fe2tech.com/?p=2840',0,'revision','',0),(2841,1,'2024-12-10 03:45:48','2024-12-10 03:45:48','<h3 class=\"service-title\">We excel in aluminum and steel products, particularly thin aluminum sheets and motorcycle-related toys.</h3>\r\n<div class=\"masonry-gallery\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4379673923151_1f10bec1ef168974349f66b16772c543.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5997919286088_1aafc52570d9ee521cb7325aaa3efbbb.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112022581961_f2a47cd330f690d0a726b0888ff80ab1.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112022572357_0cdb065792788d3493b2e389df79a5e2.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112022611669_d154017fd0d3c02db6be468c7db9fa32.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035366910_4defd4ad74170bea5d4fa69518dafb6d.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035331028_b1fcc3e9f1979a96aaebf343697989b4.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035303451_55cd6bcbf16c201a507ca6ac10623d02.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035333555_19b4ef8a09ed63f106da162eac3d9775.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112022609645_43af0256c23b3f39325ac10fe40d3200.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035380871_0810f1b5bcdd3396a375bf5a785686ae.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112143350420_5fdf5495fc11f668a8b6e8b865a0670a.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112159599274_ed84aaa8ae44eb900b332183d18d35ff.jpg\" alt=\"\" class=\"gallery-image\">\r\n</div>\r\n','CNC Milling Service','','inherit','closed','closed','','2619-revision-v1','','','2024-12-10 03:45:48','2024-12-10 03:45:48','',2619,'https://fe2tech.com/?p=2841',0,'revision','',0),(2842,1,'2024-12-10 03:45:58','2024-12-10 03:45:58','<h3 class=\"title-service\">We excel in aluminum and steel products, particularly thin aluminum sheets and motorcycle-related toys.</h3>\r\n<div class=\"masonry-gallery\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4379673923151_1f10bec1ef168974349f66b16772c543.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5997919286088_1aafc52570d9ee521cb7325aaa3efbbb.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112022581961_f2a47cd330f690d0a726b0888ff80ab1.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112022572357_0cdb065792788d3493b2e389df79a5e2.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112022611669_d154017fd0d3c02db6be468c7db9fa32.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035366910_4defd4ad74170bea5d4fa69518dafb6d.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035331028_b1fcc3e9f1979a96aaebf343697989b4.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035303451_55cd6bcbf16c201a507ca6ac10623d02.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035333555_19b4ef8a09ed63f106da162eac3d9775.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112022609645_43af0256c23b3f39325ac10fe40d3200.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035380871_0810f1b5bcdd3396a375bf5a785686ae.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112143350420_5fdf5495fc11f668a8b6e8b865a0670a.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112159599274_ed84aaa8ae44eb900b332183d18d35ff.jpg\" alt=\"\" class=\"gallery-image\">\r\n</div>\r\n','CNC Milling Service','','inherit','closed','closed','','2619-revision-v1','','','2024-12-10 03:45:58','2024-12-10 03:45:58','',2619,'https://fe2tech.com/?p=2842',0,'revision','',0),(2843,1,'2024-12-10 03:51:11','2024-12-10 03:51:11','<h3 class=\"title-service\">We can manufacture all small to medium-sized items for all types of materials.</h3>\n<div class=\"masonry-gallery\">\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4379673923151_1f10bec1ef168974349f66b16772c543.jpg\" alt=\"\" class=\"gallery-image\">\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5997919286088_1aafc52570d9ee521cb7325aaa3efbbb.jpg\" alt=\"\" class=\"gallery-image\">\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112022581961_f2a47cd330f690d0a726b0888ff80ab1.jpg\" alt=\"\" class=\"gallery-image\">\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112022572357_0cdb065792788d3493b2e389df79a5e2.jpg\" alt=\"\" class=\"gallery-image\">\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112022611669_d154017fd0d3c02db6be468c7db9fa32.jpg\" alt=\"\" class=\"gallery-image\">\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035366910_4defd4ad74170bea5d4fa69518dafb6d.jpg\" alt=\"\" class=\"gallery-image\">\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035331028_b1fcc3e9f1979a96aaebf343697989b4.jpg\" alt=\"\" class=\"gallery-image\">\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035303451_55cd6bcbf16c201a507ca6ac10623d02.jpg\" alt=\"\" class=\"gallery-image\">\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035333555_19b4ef8a09ed63f106da162eac3d9775.jpg\" alt=\"\" class=\"gallery-image\">\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112022609645_43af0256c23b3f39325ac10fe40d3200.jpg\" alt=\"\" class=\"gallery-image\">\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035380871_0810f1b5bcdd3396a375bf5a785686ae.jpg\" alt=\"\" class=\"gallery-image\">\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112143350420_5fdf5495fc11f668a8b6e8b865a0670a.jpg\" alt=\"\" class=\"gallery-image\">\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112159599274_ed84aaa8ae44eb900b332183d18d35ff.jpg\" alt=\"\" class=\"gallery-image\">\n</div>\n','CNC Turning Service','','inherit','closed','closed','','2622-autosave-v1','','','2024-12-10 03:51:11','2024-12-10 03:51:11','',2622,'https://fe2tech.com/?p=2843',0,'revision','',0),(2844,1,'2024-12-10 03:49:36','2024-12-10 03:49:36','','z6112523290035_3b7a728aff36d17b39821c04b01ee4d5','','inherit','open','closed','','z6112523290035_3b7a728aff36d17b39821c04b01ee4d5','','','2024-12-10 03:49:36','2024-12-10 03:49:36','',2622,'https://fe2tech.com/wp-content/uploads/2024/11/z6112523290035_3b7a728aff36d17b39821c04b01ee4d5.jpg',0,'attachment','image/jpeg',0),(2845,1,'2024-12-10 03:49:37','2024-12-10 03:49:37','','z6112523303443_aeb69e713b0de04bc8b594cb00fb49ca','','inherit','open','closed','','z6112523303443_aeb69e713b0de04bc8b594cb00fb49ca','','','2024-12-10 03:49:37','2024-12-10 03:49:37','',2622,'https://fe2tech.com/wp-content/uploads/2024/11/z6112523303443_aeb69e713b0de04bc8b594cb00fb49ca.jpg',0,'attachment','image/jpeg',0),(2846,1,'2024-12-10 03:49:38','2024-12-10 03:49:38','','z6112035284762_1f2181b896dc72283dffd21ff2accf18','','inherit','open','closed','','z6112035284762_1f2181b896dc72283dffd21ff2accf18','','','2024-12-10 03:49:38','2024-12-10 03:49:38','',2622,'https://fe2tech.com/wp-content/uploads/2024/11/z6112035284762_1f2181b896dc72283dffd21ff2accf18.jpg',0,'attachment','image/jpeg',0),(2847,1,'2024-12-10 03:49:40','2024-12-10 03:49:40','','z6112035279331_ec2e9746f1d2b6055f9d822183a20b7b','','inherit','open','closed','','z6112035279331_ec2e9746f1d2b6055f9d822183a20b7b','','','2024-12-10 03:49:40','2024-12-10 03:49:40','',2622,'https://fe2tech.com/wp-content/uploads/2024/11/z6112035279331_ec2e9746f1d2b6055f9d822183a20b7b.jpg',0,'attachment','image/jpeg',0),(2848,1,'2024-12-10 03:49:41','2024-12-10 03:49:41','','z6112035401524_aa7e2e59cf891c7dd20122738c01da99','','inherit','open','closed','','z6112035401524_aa7e2e59cf891c7dd20122738c01da99','','','2024-12-10 03:49:41','2024-12-10 03:49:41','',2622,'https://fe2tech.com/wp-content/uploads/2024/11/z6112035401524_aa7e2e59cf891c7dd20122738c01da99.jpg',0,'attachment','image/jpeg',0),(2849,1,'2024-12-10 03:49:42','2024-12-10 03:49:42','','z6112035395698_a7f89619dfa324b6009e13e700d16a52','','inherit','open','closed','','z6112035395698_a7f89619dfa324b6009e13e700d16a52','','','2024-12-10 03:49:42','2024-12-10 03:49:42','',2622,'https://fe2tech.com/wp-content/uploads/2024/11/z6112035395698_a7f89619dfa324b6009e13e700d16a52.jpg',0,'attachment','image/jpeg',0),(2850,1,'2024-12-10 03:49:43','2024-12-10 03:49:43','','z6112035405011_b0e4efc850356273be1ea0ebf41973d5','','inherit','open','closed','','z6112035405011_b0e4efc850356273be1ea0ebf41973d5','','','2024-12-10 03:49:43','2024-12-10 03:49:43','',2622,'https://fe2tech.com/wp-content/uploads/2024/11/z6112035405011_b0e4efc850356273be1ea0ebf41973d5.jpg',0,'attachment','image/jpeg',0),(2851,1,'2024-12-10 03:49:45','2024-12-10 03:49:45','','z6112143335944_8a90c104b6e5a3531a1b8d7a439e6db3','','inherit','open','closed','','z6112143335944_8a90c104b6e5a3531a1b8d7a439e6db3','','','2024-12-10 03:49:45','2024-12-10 03:49:45','',2622,'https://fe2tech.com/wp-content/uploads/2024/11/z6112143335944_8a90c104b6e5a3531a1b8d7a439e6db3.jpg',0,'attachment','image/jpeg',0),(2852,1,'2024-12-10 03:49:46','2024-12-10 03:49:46','','z6112143337763_e6237e74ed00be98c9396eb0b6012587','','inherit','open','closed','','z6112143337763_e6237e74ed00be98c9396eb0b6012587','','','2024-12-10 03:49:46','2024-12-10 03:49:46','',2622,'https://fe2tech.com/wp-content/uploads/2024/11/z6112143337763_e6237e74ed00be98c9396eb0b6012587.jpg',0,'attachment','image/jpeg',0),(2853,1,'2024-12-10 03:49:47','2024-12-10 03:49:47','','z6112523246386_fb69855463997d37d3a5b9189e8633a5','','inherit','open','closed','','z6112523246386_fb69855463997d37d3a5b9189e8633a5','','','2024-12-10 03:49:47','2024-12-10 03:49:47','',2622,'https://fe2tech.com/wp-content/uploads/2024/11/z6112523246386_fb69855463997d37d3a5b9189e8633a5.jpg',0,'attachment','image/jpeg',0),(2854,1,'2024-12-10 03:49:48','2024-12-10 03:49:48','','z6112523253089_bd1c2eefa8e745863c395bcdd175f37c','','inherit','open','closed','','z6112523253089_bd1c2eefa8e745863c395bcdd175f37c','','','2024-12-10 03:49:48','2024-12-10 03:49:48','',2622,'https://fe2tech.com/wp-content/uploads/2024/11/z6112523253089_bd1c2eefa8e745863c395bcdd175f37c.jpg',0,'attachment','image/jpeg',0),(2855,1,'2024-12-10 03:49:50','2024-12-10 03:49:50','','z6112523265271_a713cd9cae68eb5e8623d240ee9c0f46','','inherit','open','closed','','z6112523265271_a713cd9cae68eb5e8623d240ee9c0f46','','','2024-12-10 03:49:50','2024-12-10 03:49:50','',2622,'https://fe2tech.com/wp-content/uploads/2024/11/z6112523265271_a713cd9cae68eb5e8623d240ee9c0f46.jpg',0,'attachment','image/jpeg',0),(2856,1,'2024-12-10 03:49:51','2024-12-10 03:49:51','','z6112523276603_ec2b0734a46271e77485348ecdebe9a5','','inherit','open','closed','','z6112523276603_ec2b0734a46271e77485348ecdebe9a5','','','2024-12-10 03:49:51','2024-12-10 03:49:51','',2622,'https://fe2tech.com/wp-content/uploads/2024/11/z6112523276603_ec2b0734a46271e77485348ecdebe9a5.jpg',0,'attachment','image/jpeg',0),(2857,1,'2024-12-10 03:51:17','2024-12-10 03:51:17','<h3 class=\"title-service\">We can manufacture all small to medium-sized items for all types of materials.</h3>\r\n<div class=\"masonry-gallery\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112523290035_3b7a728aff36d17b39821c04b01ee4d5.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112523303443_aeb69e713b0de04bc8b594cb00fb49ca.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035284762_1f2181b896dc72283dffd21ff2accf18.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035279331_ec2e9746f1d2b6055f9d822183a20b7b.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035401524_aa7e2e59cf891c7dd20122738c01da99.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035395698_a7f89619dfa324b6009e13e700d16a52.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035405011_b0e4efc850356273be1ea0ebf41973d5.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112143335944_8a90c104b6e5a3531a1b8d7a439e6db3.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112143337763_e6237e74ed00be98c9396eb0b6012587.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112523246386_fb69855463997d37d3a5b9189e8633a5.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112523253089_bd1c2eefa8e745863c395bcdd175f37c.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112523265271_a713cd9cae68eb5e8623d240ee9c0f46.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112523276603_ec2b0734a46271e77485348ecdebe9a5.jpg\" alt=\"\" class=\"gallery-image\">\r\n</div>\r\n','CNC Turning Service','','inherit','closed','closed','','2622-revision-v1','','','2024-12-10 03:51:17','2024-12-10 03:51:17','',2622,'https://fe2tech.com/?p=2857',0,'revision','',0),(2858,1,'2024-12-10 03:52:39','2024-12-10 03:52:39','','z6112475603193_4db6faf7d997e4dfc5f44d0ee583aadf','','inherit','open','closed','','z6112475603193_4db6faf7d997e4dfc5f44d0ee583aadf','','','2024-12-10 03:52:39','2024-12-10 03:52:39','',2625,'https://fe2tech.com/wp-content/uploads/2024/11/z6112475603193_4db6faf7d997e4dfc5f44d0ee583aadf.jpg',0,'attachment','image/jpeg',0),(2859,1,'2024-12-10 03:52:40','2024-12-10 03:52:40','','z6112475604993_b73f539ad31fe52fc630284c8d45186a','','inherit','open','closed','','z6112475604993_b73f539ad31fe52fc630284c8d45186a','','','2024-12-10 03:52:40','2024-12-10 03:52:40','',2625,'https://fe2tech.com/wp-content/uploads/2024/11/z6112475604993_b73f539ad31fe52fc630284c8d45186a.jpg',0,'attachment','image/jpeg',0),(2860,1,'2024-12-10 03:52:41','2024-12-10 03:52:41','','z6112475612691_cce8a7d594d6f4dcbe56f5186a04fefb','','inherit','open','closed','','z6112475612691_cce8a7d594d6f4dcbe56f5186a04fefb','','','2024-12-10 03:52:41','2024-12-10 03:52:41','',2625,'https://fe2tech.com/wp-content/uploads/2024/11/z6112475612691_cce8a7d594d6f4dcbe56f5186a04fefb.jpg',0,'attachment','image/jpeg',0),(2861,1,'2024-12-10 03:52:43','2024-12-10 03:52:43','','z6112475615814_eaf58890986bbd9b960debe8d62378b9','','inherit','open','closed','','z6112475615814_eaf58890986bbd9b960debe8d62378b9','','','2024-12-10 03:52:43','2024-12-10 03:52:43','',2625,'https://fe2tech.com/wp-content/uploads/2024/11/z6112475615814_eaf58890986bbd9b960debe8d62378b9.jpg',0,'attachment','image/jpeg',0),(2862,1,'2024-12-10 03:52:44','2024-12-10 03:52:44','','z6112398373909_156bfb41f9711a15035cfede452ce1a9','','inherit','open','closed','','z6112398373909_156bfb41f9711a15035cfede452ce1a9','','','2024-12-10 03:52:44','2024-12-10 03:52:44','',2625,'https://fe2tech.com/wp-content/uploads/2024/11/z6112398373909_156bfb41f9711a15035cfede452ce1a9.jpg',0,'attachment','image/jpeg',0),(2863,1,'2024-12-10 03:52:45','2024-12-10 03:52:45','','z6112398387244_688f2cffa04694e309441b36b11b142f','','inherit','open','closed','','z6112398387244_688f2cffa04694e309441b36b11b142f','','','2024-12-10 03:52:45','2024-12-10 03:52:45','',2625,'https://fe2tech.com/wp-content/uploads/2024/11/z6112398387244_688f2cffa04694e309441b36b11b142f.jpg',0,'attachment','image/jpeg',0),(2864,1,'2024-12-10 03:52:46','2024-12-10 03:52:46','','z6112398406318_cba797f1e93e87ade947c770d0d40a8f','','inherit','open','closed','','z6112398406318_cba797f1e93e87ade947c770d0d40a8f','','','2024-12-10 03:52:46','2024-12-10 03:52:46','',2625,'https://fe2tech.com/wp-content/uploads/2024/11/z6112398406318_cba797f1e93e87ade947c770d0d40a8f.jpg',0,'attachment','image/jpeg',0),(2865,1,'2024-12-10 03:52:47','2024-12-10 03:52:47','','z6112398417726_5127342a763e9e24abc186f97a44aff8','','inherit','open','closed','','z6112398417726_5127342a763e9e24abc186f97a44aff8','','','2024-12-10 03:52:47','2024-12-10 03:52:47','',2625,'https://fe2tech.com/wp-content/uploads/2024/11/z6112398417726_5127342a763e9e24abc186f97a44aff8.jpg',0,'attachment','image/jpeg',0),(2866,1,'2024-12-10 03:52:49','2024-12-10 03:52:49','','z6112399243827_06cc313a2878998df579b1c3dcedc86d','','inherit','open','closed','','z6112399243827_06cc313a2878998df579b1c3dcedc86d','','','2024-12-10 03:52:49','2024-12-10 03:52:49','',2625,'https://fe2tech.com/wp-content/uploads/2024/11/z6112399243827_06cc313a2878998df579b1c3dcedc86d.jpg',0,'attachment','image/jpeg',0),(2867,1,'2024-12-10 03:52:50','2024-12-10 03:52:50','','z6112402158092_30b348ffeb1bd490d6abf2ba9eb85786','','inherit','open','closed','','z6112402158092_30b348ffeb1bd490d6abf2ba9eb85786','','','2024-12-10 03:52:50','2024-12-10 03:52:50','',2625,'https://fe2tech.com/wp-content/uploads/2024/11/z6112402158092_30b348ffeb1bd490d6abf2ba9eb85786.jpg',0,'attachment','image/jpeg',0),(2868,1,'2024-12-10 03:52:51','2024-12-10 03:52:51','','z6112402161733_fb456855a646106f5d0896b14dc1774a','','inherit','open','closed','','z6112402161733_fb456855a646106f5d0896b14dc1774a','','','2024-12-10 03:52:51','2024-12-10 03:52:51','',2625,'https://fe2tech.com/wp-content/uploads/2024/11/z6112402161733_fb456855a646106f5d0896b14dc1774a.jpg',0,'attachment','image/jpeg',0),(2869,1,'2024-12-10 03:52:53','2024-12-10 03:52:53','','z6112405304306_a9b1bb837aea79fbe537c183eb90c6c1','','inherit','open','closed','','z6112405304306_a9b1bb837aea79fbe537c183eb90c6c1','','','2024-12-10 03:52:53','2024-12-10 03:52:53','',2625,'https://fe2tech.com/wp-content/uploads/2024/11/z6112405304306_a9b1bb837aea79fbe537c183eb90c6c1.jpg',0,'attachment','image/jpeg',0),(2870,1,'2024-12-10 03:52:54','2024-12-10 03:52:54','','z6112407952259_47d9353a1faa9e7f704c496b431fc2e8','','inherit','open','closed','','z6112407952259_47d9353a1faa9e7f704c496b431fc2e8','','','2024-12-10 03:52:54','2024-12-10 03:52:54','',2625,'https://fe2tech.com/wp-content/uploads/2024/11/z6112407952259_47d9353a1faa9e7f704c496b431fc2e8.jpg',0,'attachment','image/jpeg',0),(2871,1,'2024-12-10 03:52:55','2024-12-10 03:52:55','','z6112407943622_643893c3e779b10c7addfe792dde6674','','inherit','open','closed','','z6112407943622_643893c3e779b10c7addfe792dde6674','','','2024-12-10 03:52:55','2024-12-10 03:52:55','',2625,'https://fe2tech.com/wp-content/uploads/2024/11/z6112407943622_643893c3e779b10c7addfe792dde6674.jpg',0,'attachment','image/jpeg',0),(2872,1,'2024-12-10 03:52:56','2024-12-10 03:52:56','','z6112407932531_75c831c196d633f15a7d2ac8ca23dd73','','inherit','open','closed','','z6112407932531_75c831c196d633f15a7d2ac8ca23dd73','','','2024-12-10 03:52:56','2024-12-10 03:52:56','',2625,'https://fe2tech.com/wp-content/uploads/2024/11/z6112407932531_75c831c196d633f15a7d2ac8ca23dd73.jpg',0,'attachment','image/jpeg',0),(2873,1,'2024-12-10 03:52:58','2024-12-10 03:52:58','','z6112475733731_0f87c5cb35371e36f87164b091dee9e7','','inherit','open','closed','','z6112475733731_0f87c5cb35371e36f87164b091dee9e7','','','2024-12-10 03:52:58','2024-12-10 03:52:58','',2625,'https://fe2tech.com/wp-content/uploads/2024/11/z6112475733731_0f87c5cb35371e36f87164b091dee9e7.jpg',0,'attachment','image/jpeg',0),(2874,1,'2024-12-10 03:52:59','2024-12-10 03:52:59','','z6112475735545_8ad6ec49c1c9ca3aa9ad469ee5e61195','','inherit','open','closed','','z6112475735545_8ad6ec49c1c9ca3aa9ad469ee5e61195','','','2024-12-10 03:52:59','2024-12-10 03:52:59','',2625,'https://fe2tech.com/wp-content/uploads/2024/11/z6112475735545_8ad6ec49c1c9ca3aa9ad469ee5e61195.jpg',0,'attachment','image/jpeg',0),(2875,1,'2024-12-10 03:53:00','2024-12-10 03:53:00','','z6112475588456_c7783008f04cb1da5c4706aaf8251962','','inherit','open','closed','','z6112475588456_c7783008f04cb1da5c4706aaf8251962','','','2024-12-10 03:53:00','2024-12-10 03:53:00','',2625,'https://fe2tech.com/wp-content/uploads/2024/11/z6112475588456_c7783008f04cb1da5c4706aaf8251962.jpg',0,'attachment','image/jpeg',0),(2876,1,'2024-12-10 04:00:40','2024-12-10 04:00:40','<h3 class=\"title-service\">These are support services for the mold industry and our detailed products.</h3>\n<img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112342749062_a373f44d190f5f95bac710bb2609c8dc.jpg\" alt=\"\" width=\"960\" height=\"1280\" class=\"alignnone size-full wp-image-2889\" />\n\n<img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112342752051_e8e5731247c67e8d13ba9032e0df2071.jpg\" alt=\"\" width=\"225\" height=\"300\" class=\"alignnone size-medium wp-image-2890\" />\n\n<img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112342758960_0cf70e0e2fc3c20f1fcdfa00de30734e.jpg\" alt=\"\" width=\"225\" height=\"300\" class=\"alignnone size-medium wp-image-2891\" />\n\n<img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112342779226_b9935186416483d88d8d4a3741c445ac.jpg\" alt=\"\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-2892\" />\n\n<img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112343562589_0c62c0c2a11f68e02e7302f2022d802f.jpg\" alt=\"\" width=\"225\" height=\"300\" class=\"alignnone size-medium wp-image-2893\" />\n\n<img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112343020134_4e3fd602c682b52d16603b05d64b5b3b.jpg\" alt=\"\" width=\"225\" height=\"300\" class=\"alignnone size-medium wp-image-2894\" />\n\n<img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112343022575_b75ed6f8141de2096bd693992964bc07.jpg\" alt=\"\" width=\"225\" height=\"300\" class=\"alignnone size-medium wp-image-2895\" />\n\n<img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112343024138_c84a3e4bb6f5d346d7a6e09e56086f61.jpg\" alt=\"\" width=\"137\" height=\"300\" class=\"alignnone size-medium wp-image-2896\" />\n\n<img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112343028537_b1ff9fb76f888c3ed07f01643f0020f0.jpg\" alt=\"\" width=\"225\" height=\"300\" class=\"alignnone size-medium wp-image-2897\" />\n\n<img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112160416378_bce4411fe74027d63005630fc7884a80.jpg\" alt=\"\" width=\"140\" height=\"300\" class=\"alignnone size-medium wp-image-2898\" />\n\n<img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112161045939_2fab496392927de92680189440d9df11.jpg\" alt=\"\" width=\"225\" height=\"300\" class=\"alignnone size-medium wp-image-2899\" />\n\n<img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112162162899_9fa7af3084979b141c9a5af02bd64b8f.jpg\" alt=\"\" width=\"225\" height=\"300\" class=\"alignnone size-medium wp-image-2900\" />\n\n<img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112162913774_3cf6b72cb16904b5c0aa22911ad9062c.jpg\" alt=\"\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-2901\" />\n','CNC Tool Grinder Service','','inherit','closed','closed','','2625-autosave-v1','','','2024-12-10 04:00:40','2024-12-10 04:00:40','',2625,'https://fe2tech.com/?p=2876',0,'revision','',0),(2877,1,'2024-12-10 03:53:42','2024-12-10 03:53:42','<h3 class=\"title-service\">These are support services for the mold industry and our detailed products.</h3>\r\n<div class=\"masonry-gallery\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112475603193_4db6faf7d997e4dfc5f44d0ee583aadf.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112475604993_b73f539ad31fe52fc630284c8d45186a.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112475612691_cce8a7d594d6f4dcbe56f5186a04fefb.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112475615814_eaf58890986bbd9b960debe8d62378b9.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112398373909_156bfb41f9711a15035cfede452ce1a9.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112398387244_688f2cffa04694e309441b36b11b142f.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112398406318_cba797f1e93e87ade947c770d0d40a8f.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112398417726_5127342a763e9e24abc186f97a44aff8.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112399243827_06cc313a2878998df579b1c3dcedc86d.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112402158092_30b348ffeb1bd490d6abf2ba9eb85786.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112402161733_fb456855a646106f5d0896b14dc1774a.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112405304306_a9b1bb837aea79fbe537c183eb90c6c1.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112407952259_47d9353a1faa9e7f704c496b431fc2e8.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112407943622_643893c3e779b10c7addfe792dde6674.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112407932531_75c831c196d633f15a7d2ac8ca23dd73.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112475733731_0f87c5cb35371e36f87164b091dee9e7.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112475735545_8ad6ec49c1c9ca3aa9ad469ee5e61195.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112475588456_c7783008f04cb1da5c4706aaf8251962.jpg\" alt=\"\" class=\"gallery-image\">\r\n</div>\r\n','CNC Tool Grinder Service','','inherit','closed','closed','','2625-revision-v1','','','2024-12-10 03:53:42','2024-12-10 03:53:42','',2625,'https://fe2tech.com/?p=2877',0,'revision','',0),(2878,1,'2024-12-10 03:55:06','2024-12-10 03:55:06','','z4749871034728_13d43ad63eed2b6e7e1496638d7853af','','inherit','open','closed','','z4749871034728_13d43ad63eed2b6e7e1496638d7853af','','','2024-12-10 03:55:06','2024-12-10 03:55:06','',2628,'https://fe2tech.com/wp-content/uploads/2024/11/z4749871034728_13d43ad63eed2b6e7e1496638d7853af.jpg',0,'attachment','image/jpeg',0),(2879,1,'2024-12-10 03:55:07','2024-12-10 03:55:07','','z4749871031095_9182ad19e7ac8defae8c32b8cc44b440','','inherit','open','closed','','z4749871031095_9182ad19e7ac8defae8c32b8cc44b440','','','2024-12-10 03:55:07','2024-12-10 03:55:07','',2628,'https://fe2tech.com/wp-content/uploads/2024/11/z4749871031095_9182ad19e7ac8defae8c32b8cc44b440.jpg',0,'attachment','image/jpeg',0),(2880,1,'2024-12-10 03:55:09','2024-12-10 03:55:09','','z4749871031211_ed4fe9d663e0c07fddaaef221a1144c7','','inherit','open','closed','','z4749871031211_ed4fe9d663e0c07fddaaef221a1144c7','','','2024-12-10 03:55:09','2024-12-10 03:55:09','',2628,'https://fe2tech.com/wp-content/uploads/2024/11/z4749871031211_ed4fe9d663e0c07fddaaef221a1144c7.jpg',0,'attachment','image/jpeg',0),(2881,1,'2024-12-10 03:55:10','2024-12-10 03:55:10','','z4614273923773_699996016c1c52f0895299d5358fe8a6','','inherit','open','closed','','z4614273923773_699996016c1c52f0895299d5358fe8a6','','','2024-12-10 03:55:10','2024-12-10 03:55:10','',2628,'https://fe2tech.com/wp-content/uploads/2024/11/z4614273923773_699996016c1c52f0895299d5358fe8a6.jpg',0,'attachment','image/jpeg',0),(2882,1,'2024-12-10 03:55:11','2024-12-10 03:55:11','','z4614243915927_45cd79faef986c5ca9f1ed80434ca840','','inherit','open','closed','','z4614243915927_45cd79faef986c5ca9f1ed80434ca840','','','2024-12-10 03:55:11','2024-12-10 03:55:11','',2628,'https://fe2tech.com/wp-content/uploads/2024/11/z4614243915927_45cd79faef986c5ca9f1ed80434ca840.jpg',0,'attachment','image/jpeg',0),(2883,1,'2024-12-10 03:55:12','2024-12-10 03:55:12','','z4859515672356_2e4104881b39c559fe9d687370a67394','','inherit','open','closed','','z4859515672356_2e4104881b39c559fe9d687370a67394','','','2024-12-10 03:55:12','2024-12-10 03:55:12','',2628,'https://fe2tech.com/wp-content/uploads/2024/11/z4859515672356_2e4104881b39c559fe9d687370a67394.jpg',0,'attachment','image/jpeg',0),(2884,1,'2024-12-10 03:55:14','2024-12-10 03:55:14','','z5095181853127_bdd8a417c860e722ad4f5e79f91dea8f','','inherit','open','closed','','z5095181853127_bdd8a417c860e722ad4f5e79f91dea8f','','','2024-12-10 03:55:14','2024-12-10 03:55:14','',2628,'https://fe2tech.com/wp-content/uploads/2024/11/z5095181853127_bdd8a417c860e722ad4f5e79f91dea8f.jpg',0,'attachment','image/jpeg',0),(2885,1,'2024-12-10 03:55:15','2024-12-10 03:55:15','','z5095181851706_d23ac9a42e1be2ea98d323da1f663eaf','','inherit','open','closed','','z5095181851706_d23ac9a42e1be2ea98d323da1f663eaf','','','2024-12-10 03:55:15','2024-12-10 03:55:15','',2628,'https://fe2tech.com/wp-content/uploads/2024/11/z5095181851706_d23ac9a42e1be2ea98d323da1f663eaf.jpg',0,'attachment','image/jpeg',0),(2886,1,'2024-12-10 03:55:45','2024-12-10 03:55:45','<h3 class=\"title-service\">We can paint finished products according to customer requirements.</h3>\r\n<div class=\"masonry-gallery\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4749871034728_13d43ad63eed2b6e7e1496638d7853af.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4749871031095_9182ad19e7ac8defae8c32b8cc44b440.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4749871031211_ed4fe9d663e0c07fddaaef221a1144c7.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4614273923773_699996016c1c52f0895299d5358fe8a6.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4614243915927_45cd79faef986c5ca9f1ed80434ca840.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4859515672356_2e4104881b39c559fe9d687370a67394.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5095181853127_bdd8a417c860e722ad4f5e79f91dea8f.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5095181851706_d23ac9a42e1be2ea98d323da1f663eaf.jpg\" alt=\"\" class=\"gallery-image\">\r\n</div>\r\n\r\n','Sheet Metal Service','','inherit','closed','closed','','2628-revision-v1','','','2024-12-10 03:55:45','2024-12-10 03:55:45','',2628,'https://fe2tech.com/?p=2886',0,'revision','',0),(2887,1,'2024-12-10 03:57:38','2024-12-10 03:57:38','<h3 class=\"title-service\">Precision machining using electrical discharge, grinding, and wire cutting to achieve high accuracy for small and complex parts.</h3>\n\n','EDM, Grinding and Wire Cutting Service','','inherit','closed','closed','','2634-autosave-v1','','','2024-12-10 03:57:38','2024-12-10 03:57:38','',2634,'https://fe2tech.com/?p=2887',0,'revision','',0),(2888,1,'2024-12-10 03:59:48','2024-12-10 03:59:48','<h3 class=\"title-service\">Precision machining using electrical discharge, grinding, and wire cutting to achieve high accuracy for small and complex parts.</h3>\r\n<div class=\"masonry-gallery\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112475603193_4db6faf7d997e4dfc5f44d0ee583aadf.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112475604993_b73f539ad31fe52fc630284c8d45186a.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112475612691_cce8a7d594d6f4dcbe56f5186a04fefb.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112475615814_eaf58890986bbd9b960debe8d62378b9.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112398373909_156bfb41f9711a15035cfede452ce1a9.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112398387244_688f2cffa04694e309441b36b11b142f.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112398406318_cba797f1e93e87ade947c770d0d40a8f.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112398417726_5127342a763e9e24abc186f97a44aff8.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112399243827_06cc313a2878998df579b1c3dcedc86d.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112402158092_30b348ffeb1bd490d6abf2ba9eb85786.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112402161733_fb456855a646106f5d0896b14dc1774a.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112405304306_a9b1bb837aea79fbe537c183eb90c6c1.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112407952259_47d9353a1faa9e7f704c496b431fc2e8.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112407943622_643893c3e779b10c7addfe792dde6674.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112407932531_75c831c196d633f15a7d2ac8ca23dd73.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112475733731_0f87c5cb35371e36f87164b091dee9e7.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112475735545_8ad6ec49c1c9ca3aa9ad469ee5e61195.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112475588456_c7783008f04cb1da5c4706aaf8251962.jpg\" alt=\"\" class=\"gallery-image\">\r\n</div>\r\n','EDM, Grinding and Wire Cutting Service','','inherit','closed','closed','','2634-revision-v1','','','2024-12-10 03:59:48','2024-12-10 03:59:48','',2634,'https://fe2tech.com/?p=2888',0,'revision','',0),(2889,1,'2024-12-10 04:00:16','2024-12-10 04:00:16','','z6112342749062_a373f44d190f5f95bac710bb2609c8dc','','inherit','open','closed','','z6112342749062_a373f44d190f5f95bac710bb2609c8dc','','','2024-12-10 04:00:16','2024-12-10 04:00:16','',2625,'https://fe2tech.com/wp-content/uploads/2024/11/z6112342749062_a373f44d190f5f95bac710bb2609c8dc.jpg',0,'attachment','image/jpeg',0),(2890,1,'2024-12-10 04:00:18','2024-12-10 04:00:18','','z6112342752051_e8e5731247c67e8d13ba9032e0df2071','','inherit','open','closed','','z6112342752051_e8e5731247c67e8d13ba9032e0df2071','','','2024-12-10 04:00:18','2024-12-10 04:00:18','',2625,'https://fe2tech.com/wp-content/uploads/2024/11/z6112342752051_e8e5731247c67e8d13ba9032e0df2071.jpg',0,'attachment','image/jpeg',0),(2891,1,'2024-12-10 04:00:19','2024-12-10 04:00:19','','z6112342758960_0cf70e0e2fc3c20f1fcdfa00de30734e','','inherit','open','closed','','z6112342758960_0cf70e0e2fc3c20f1fcdfa00de30734e','','','2024-12-10 04:00:19','2024-12-10 04:00:19','',2625,'https://fe2tech.com/wp-content/uploads/2024/11/z6112342758960_0cf70e0e2fc3c20f1fcdfa00de30734e.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `wp_posts` VALUES (2892,1,'2024-12-10 04:00:20','2024-12-10 04:00:20','','z6112342779226_b9935186416483d88d8d4a3741c445ac','','inherit','open','closed','','z6112342779226_b9935186416483d88d8d4a3741c445ac','','','2024-12-10 04:00:20','2024-12-10 04:00:20','',2625,'https://fe2tech.com/wp-content/uploads/2024/11/z6112342779226_b9935186416483d88d8d4a3741c445ac.jpg',0,'attachment','image/jpeg',0),(2893,1,'2024-12-10 04:00:21','2024-12-10 04:00:21','','z6112343562589_0c62c0c2a11f68e02e7302f2022d802f','','inherit','open','closed','','z6112343562589_0c62c0c2a11f68e02e7302f2022d802f','','','2024-12-10 04:00:21','2024-12-10 04:00:21','',2625,'https://fe2tech.com/wp-content/uploads/2024/11/z6112343562589_0c62c0c2a11f68e02e7302f2022d802f.jpg',0,'attachment','image/jpeg',0),(2894,1,'2024-12-10 04:00:23','2024-12-10 04:00:23','','z6112343020134_4e3fd602c682b52d16603b05d64b5b3b','','inherit','open','closed','','z6112343020134_4e3fd602c682b52d16603b05d64b5b3b','','','2024-12-10 04:00:23','2024-12-10 04:00:23','',2625,'https://fe2tech.com/wp-content/uploads/2024/11/z6112343020134_4e3fd602c682b52d16603b05d64b5b3b.jpg',0,'attachment','image/jpeg',0),(2895,1,'2024-12-10 04:00:24','2024-12-10 04:00:24','','z6112343022575_b75ed6f8141de2096bd693992964bc07','','inherit','open','closed','','z6112343022575_b75ed6f8141de2096bd693992964bc07','','','2024-12-10 04:00:24','2024-12-10 04:00:24','',2625,'https://fe2tech.com/wp-content/uploads/2024/11/z6112343022575_b75ed6f8141de2096bd693992964bc07.jpg',0,'attachment','image/jpeg',0),(2896,1,'2024-12-10 04:00:25','2024-12-10 04:00:25','','z6112343024138_c84a3e4bb6f5d346d7a6e09e56086f61','','inherit','open','closed','','z6112343024138_c84a3e4bb6f5d346d7a6e09e56086f61','','','2024-12-10 04:00:25','2024-12-10 04:00:25','',2625,'https://fe2tech.com/wp-content/uploads/2024/11/z6112343024138_c84a3e4bb6f5d346d7a6e09e56086f61.jpg',0,'attachment','image/jpeg',0),(2897,1,'2024-12-10 04:00:26','2024-12-10 04:00:26','','z6112343028537_b1ff9fb76f888c3ed07f01643f0020f0','','inherit','open','closed','','z6112343028537_b1ff9fb76f888c3ed07f01643f0020f0','','','2024-12-10 04:00:26','2024-12-10 04:00:26','',2625,'https://fe2tech.com/wp-content/uploads/2024/11/z6112343028537_b1ff9fb76f888c3ed07f01643f0020f0.jpg',0,'attachment','image/jpeg',0),(2898,1,'2024-12-10 04:00:28','2024-12-10 04:00:28','','z6112160416378_bce4411fe74027d63005630fc7884a80','','inherit','open','closed','','z6112160416378_bce4411fe74027d63005630fc7884a80','','','2024-12-10 04:00:28','2024-12-10 04:00:28','',2625,'https://fe2tech.com/wp-content/uploads/2024/11/z6112160416378_bce4411fe74027d63005630fc7884a80.jpg',0,'attachment','image/jpeg',0),(2899,1,'2024-12-10 04:00:29','2024-12-10 04:00:29','','z6112161045939_2fab496392927de92680189440d9df11','','inherit','open','closed','','z6112161045939_2fab496392927de92680189440d9df11','','','2024-12-10 04:00:29','2024-12-10 04:00:29','',2625,'https://fe2tech.com/wp-content/uploads/2024/11/z6112161045939_2fab496392927de92680189440d9df11.jpg',0,'attachment','image/jpeg',0),(2900,1,'2024-12-10 04:00:31','2024-12-10 04:00:31','','z6112162162899_9fa7af3084979b141c9a5af02bd64b8f','','inherit','open','closed','','z6112162162899_9fa7af3084979b141c9a5af02bd64b8f','','','2024-12-10 04:00:31','2024-12-10 04:00:31','',2625,'https://fe2tech.com/wp-content/uploads/2024/11/z6112162162899_9fa7af3084979b141c9a5af02bd64b8f.jpg',0,'attachment','image/jpeg',0),(2901,1,'2024-12-10 04:00:32','2024-12-10 04:00:32','','z6112162913774_3cf6b72cb16904b5c0aa22911ad9062c','','inherit','open','closed','','z6112162913774_3cf6b72cb16904b5c0aa22911ad9062c','','','2024-12-10 04:00:32','2024-12-10 04:00:32','',2625,'https://fe2tech.com/wp-content/uploads/2024/11/z6112162913774_3cf6b72cb16904b5c0aa22911ad9062c.jpg',0,'attachment','image/jpeg',0),(2902,1,'2024-12-10 04:01:02','2024-12-10 04:01:02','<h3 class=\"title-service\">These are support services for the mold industry and our detailed products.</h3>\r\n<div class=\"masonry-gallery\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112342749062_a373f44d190f5f95bac710bb2609c8dc.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112342752051_e8e5731247c67e8d13ba9032e0df2071.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112342758960_0cf70e0e2fc3c20f1fcdfa00de30734e.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112342779226_b9935186416483d88d8d4a3741c445ac.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112343562589_0c62c0c2a11f68e02e7302f2022d802f.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112343020134_4e3fd602c682b52d16603b05d64b5b3b.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112343022575_b75ed6f8141de2096bd693992964bc07.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112343024138_c84a3e4bb6f5d346d7a6e09e56086f61.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112343028537_b1ff9fb76f888c3ed07f01643f0020f0.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112160416378_bce4411fe74027d63005630fc7884a80.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112161045939_2fab496392927de92680189440d9df11.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112162162899_9fa7af3084979b141c9a5af02bd64b8f.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112162913774_3cf6b72cb16904b5c0aa22911ad9062c.jpg\" alt=\"\" class=\"gallery-image\">\r\n</div>\r\n','CNC Tool Grinder Service','','inherit','closed','closed','','2625-revision-v1','','','2024-12-10 04:01:02','2024-12-10 04:01:02','',2625,'https://fe2tech.com/?p=2902',0,'revision','',0),(2903,1,'2024-12-10 04:02:27','2024-12-10 04:02:27','','z6112380533580_58467dd3a6c609d250f917b7cb523083','','inherit','open','closed','','z6112380533580_58467dd3a6c609d250f917b7cb523083','','','2024-12-10 04:02:27','2024-12-10 04:02:27','',2631,'https://fe2tech.com/wp-content/uploads/2024/11/z6112380533580_58467dd3a6c609d250f917b7cb523083.jpg',0,'attachment','image/jpeg',0),(2904,1,'2024-12-10 04:02:28','2024-12-10 04:02:28','','z6112380547520_189c3d8c494143167c5bea938b7789c8','','inherit','open','closed','','z6112380547520_189c3d8c494143167c5bea938b7789c8','','','2024-12-10 04:02:28','2024-12-10 04:02:28','',2631,'https://fe2tech.com/wp-content/uploads/2024/11/z6112380547520_189c3d8c494143167c5bea938b7789c8.jpg',0,'attachment','image/jpeg',0),(2905,1,'2024-12-10 04:02:29','2024-12-10 04:02:29','','z6112380509099_8e38c91b9a664647d606ed55ecccc8ae','','inherit','open','closed','','z6112380509099_8e38c91b9a664647d606ed55ecccc8ae','','','2024-12-10 04:02:29','2024-12-10 04:02:29','',2631,'https://fe2tech.com/wp-content/uploads/2024/11/z6112380509099_8e38c91b9a664647d606ed55ecccc8ae.jpg',0,'attachment','image/jpeg',0),(2906,1,'2024-12-10 04:02:32','2024-12-10 04:02:32','','z4749871065923_4d7a315a6e76ccde22ddab12dbdcd6c3','','inherit','open','closed','','z4749871065923_4d7a315a6e76ccde22ddab12dbdcd6c3','','','2024-12-10 04:02:32','2024-12-10 04:02:32','',2631,'https://fe2tech.com/wp-content/uploads/2024/11/z4749871065923_4d7a315a6e76ccde22ddab12dbdcd6c3.jpg',0,'attachment','image/jpeg',0),(2907,1,'2024-12-10 04:02:33','2024-12-10 04:02:33','','z4749871059944_22ebc1e4e9fef7e1a4c18a87b17ad83f','','inherit','open','closed','','z4749871059944_22ebc1e4e9fef7e1a4c18a87b17ad83f','','','2024-12-10 04:02:33','2024-12-10 04:02:33','',2631,'https://fe2tech.com/wp-content/uploads/2024/11/z4749871059944_22ebc1e4e9fef7e1a4c18a87b17ad83f.jpg',0,'attachment','image/jpeg',0),(2908,1,'2024-12-10 04:02:34','2024-12-10 04:02:34','','z4749871062649_2ef68ba42152c462b7730e250fa0695b','','inherit','open','closed','','z4749871062649_2ef68ba42152c462b7730e250fa0695b','','','2024-12-10 04:02:34','2024-12-10 04:02:34','',2631,'https://fe2tech.com/wp-content/uploads/2024/11/z4749871062649_2ef68ba42152c462b7730e250fa0695b.jpg',0,'attachment','image/jpeg',0),(2909,1,'2024-12-10 04:02:35','2024-12-10 04:02:35','','z6112380520686_e42a34abefc41f7baa77f40a51e11e10','','inherit','open','closed','','z6112380520686_e42a34abefc41f7baa77f40a51e11e10','','','2024-12-10 04:02:35','2024-12-10 04:02:35','',2631,'https://fe2tech.com/wp-content/uploads/2024/11/z6112380520686_e42a34abefc41f7baa77f40a51e11e10.jpg',0,'attachment','image/jpeg',0),(2910,1,'2024-12-10 04:02:37','2024-12-10 04:02:37','','z6112380501656_5b9317f1571553500813fa23f5ffd678','','inherit','open','closed','','z6112380501656_5b9317f1571553500813fa23f5ffd678','','','2024-12-10 04:02:37','2024-12-10 04:02:37','',2631,'https://fe2tech.com/wp-content/uploads/2024/11/z6112380501656_5b9317f1571553500813fa23f5ffd678.jpg',0,'attachment','image/jpeg',0),(2911,1,'2024-12-10 04:02:38','2024-12-10 04:02:38','','z6112380524857_d617d3c8ff36c93a8360aeb9239dc924','','inherit','open','closed','','z6112380524857_d617d3c8ff36c93a8360aeb9239dc924','','','2024-12-10 04:02:38','2024-12-10 04:02:38','',2631,'https://fe2tech.com/wp-content/uploads/2024/11/z6112380524857_d617d3c8ff36c93a8360aeb9239dc924.jpg',0,'attachment','image/jpeg',0),(2912,1,'2024-12-10 04:02:46','2024-12-10 04:02:46','\n<h3 class=\"title-service\">We have veteran welding engineers to ensure high-quality welded products.<br>We offer Mig welding, Tig welding, and laser welding. Notably, we specialize in laser welding of aluminum for export to the U.S. market.</h3>\n<img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112380533580_58467dd3a6c609d250f917b7cb523083.jpg\" alt=\"\" width=\"1152\" height=\"2560\" class=\"alignnone size-full wp-image-2903\" />\n\n<img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112380547520_189c3d8c494143167c5bea938b7789c8.jpg\" alt=\"\" width=\"135\" height=\"300\" class=\"alignnone size-medium wp-image-2904\" />\n\n<img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112380509099_8e38c91b9a664647d606ed55ecccc8ae.jpg\" alt=\"\" width=\"135\" height=\"300\" class=\"alignnone size-medium wp-image-2905\" />\n\n<img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4749871065923_4d7a315a6e76ccde22ddab12dbdcd6c3.jpg\" alt=\"\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-2906\" />\n\n<img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4749871059944_22ebc1e4e9fef7e1a4c18a87b17ad83f.jpg\" alt=\"\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-2907\" />\n\n<img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4749871062649_2ef68ba42152c462b7730e250fa0695b.jpg\" alt=\"\" width=\"300\" height=\"225\" class=\"alignnone size-medium wp-image-2908\" />\n\n<img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112380520686_e42a34abefc41f7baa77f40a51e11e10.jpg\" alt=\"\" width=\"135\" height=\"300\" class=\"alignnone size-medium wp-image-2909\" />\n\n<img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112380501656_5b9317f1571553500813fa23f5ffd678.jpg\" alt=\"\" width=\"135\" height=\"300\" class=\"alignnone size-medium wp-image-2910\" />\n\n<img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112380524857_d617d3c8ff36c93a8360aeb9239dc924.jpg\" alt=\"\" width=\"300\" height=\"135\" class=\"alignnone size-medium wp-image-2911\" />\n','Welding Service','','inherit','closed','closed','','2631-autosave-v1','','','2024-12-10 04:02:46','2024-12-10 04:02:46','',2631,'https://fe2tech.com/?p=2912',0,'revision','',0),(2913,1,'2024-12-10 04:03:25','2024-12-10 04:03:25','<h3 class=\"title-service\">We have veteran welding engineers to ensure high-quality welded products.<br>We offer Mig welding, Tig welding, and laser welding. Notably, we specialize in laser welding of aluminum for export to the U.S. market.</h3>\r\n<div class=\"masonry-gallery\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112380533580_58467dd3a6c609d250f917b7cb523083.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112380547520_189c3d8c494143167c5bea938b7789c8.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112380509099_8e38c91b9a664647d606ed55ecccc8ae.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4749871065923_4d7a315a6e76ccde22ddab12dbdcd6c3.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4749871059944_22ebc1e4e9fef7e1a4c18a87b17ad83f.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4749871062649_2ef68ba42152c462b7730e250fa0695b.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112380520686_e42a34abefc41f7baa77f40a51e11e10.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112380501656_5b9317f1571553500813fa23f5ffd678.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112380524857_d617d3c8ff36c93a8360aeb9239dc924.jpg\" alt=\"\" class=\"gallery-image\">\r\n</div>\r\n\r\n','Welding Service','','inherit','closed','closed','','2631-revision-v1','','','2024-12-10 04:03:25','2024-12-10 04:03:25','',2631,'https://fe2tech.com/?p=2913',0,'revision','',0),(2914,1,'2024-12-10 04:03:57','2024-12-10 04:03:57','<h3 class=\"title-service\">We have veteran welding engineers to ensure high-quality welded products.<br>We offer Mig welding, Tig welding, and laser welding.<br>Notably, we specialize in laser welding of aluminum for export to the U.S. market.</h3>\r\n<div class=\"masonry-gallery\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112380533580_58467dd3a6c609d250f917b7cb523083.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112380547520_189c3d8c494143167c5bea938b7789c8.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112380509099_8e38c91b9a664647d606ed55ecccc8ae.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4749871065923_4d7a315a6e76ccde22ddab12dbdcd6c3.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4749871059944_22ebc1e4e9fef7e1a4c18a87b17ad83f.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4749871062649_2ef68ba42152c462b7730e250fa0695b.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112380520686_e42a34abefc41f7baa77f40a51e11e10.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112380501656_5b9317f1571553500813fa23f5ffd678.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112380524857_d617d3c8ff36c93a8360aeb9239dc924.jpg\" alt=\"\" class=\"gallery-image\">\r\n</div>\r\n\r\n','Welding Service','','inherit','closed','closed','','2631-revision-v1','','','2024-12-10 04:03:57','2024-12-10 04:03:57','',2631,'https://fe2tech.com/?p=2914',0,'revision','',0),(2915,1,'2024-12-10 04:04:49','2024-12-10 04:04:49','','z6112427132452_1dc48d6b077820afa8c47b96d3918f22','','inherit','open','closed','','z6112427132452_1dc48d6b077820afa8c47b96d3918f22','','','2024-12-10 04:04:49','2024-12-10 04:04:49','',2638,'https://fe2tech.com/wp-content/uploads/2024/11/z6112427132452_1dc48d6b077820afa8c47b96d3918f22.jpg',0,'attachment','image/jpeg',0),(2916,1,'2024-12-10 04:04:50','2024-12-10 04:04:50','','z6112427136415_a92631bc5fc9cba8b18696aacf6afcb5','','inherit','open','closed','','z6112427136415_a92631bc5fc9cba8b18696aacf6afcb5','','','2024-12-10 04:04:50','2024-12-10 04:04:50','',2638,'https://fe2tech.com/wp-content/uploads/2024/11/z6112427136415_a92631bc5fc9cba8b18696aacf6afcb5.jpg',0,'attachment','image/jpeg',0),(2917,1,'2024-12-10 04:04:52','2024-12-10 04:04:52','','z6112427143608_0e611231c1efc187f3162f79bf802d9e','','inherit','open','closed','','z6112427143608_0e611231c1efc187f3162f79bf802d9e','','','2024-12-10 04:04:52','2024-12-10 04:04:52','',2638,'https://fe2tech.com/wp-content/uploads/2024/11/z6112427143608_0e611231c1efc187f3162f79bf802d9e.jpg',0,'attachment','image/jpeg',0),(2918,1,'2024-12-10 04:04:53','2024-12-10 04:04:53','','z6112427145342_1981e17957820257bc6cc69dca8d1a6a','','inherit','open','closed','','z6112427145342_1981e17957820257bc6cc69dca8d1a6a','','','2024-12-10 04:04:53','2024-12-10 04:04:53','',2638,'https://fe2tech.com/wp-content/uploads/2024/11/z6112427145342_1981e17957820257bc6cc69dca8d1a6a.jpg',0,'attachment','image/jpeg',0),(2919,1,'2024-12-10 04:04:54','2024-12-10 04:04:54','','z6112431685389_a7fb16bd81f123c2bfc6a16da53debf2','','inherit','open','closed','','z6112431685389_a7fb16bd81f123c2bfc6a16da53debf2','','','2024-12-10 04:04:54','2024-12-10 04:04:54','',2638,'https://fe2tech.com/wp-content/uploads/2024/11/z6112431685389_a7fb16bd81f123c2bfc6a16da53debf2.jpg',0,'attachment','image/jpeg',0),(2920,1,'2024-12-10 04:04:56','2024-12-10 04:04:56','','z6112431686395_bfab2b01f79ca6c359bec18f3bbadd26','','inherit','open','closed','','z6112431686395_bfab2b01f79ca6c359bec18f3bbadd26','','','2024-12-10 04:04:56','2024-12-10 04:04:56','',2638,'https://fe2tech.com/wp-content/uploads/2024/11/z6112431686395_bfab2b01f79ca6c359bec18f3bbadd26.jpg',0,'attachment','image/jpeg',0),(2921,1,'2024-12-10 04:04:57','2024-12-10 04:04:57','','z6112035271011_4c2ce6e425aafedb041eb23967031655','','inherit','open','closed','','z6112035271011_4c2ce6e425aafedb041eb23967031655','','','2024-12-10 04:04:57','2024-12-10 04:04:57','',2638,'https://fe2tech.com/wp-content/uploads/2024/11/z6112035271011_4c2ce6e425aafedb041eb23967031655.jpg',0,'attachment','image/jpeg',0),(2922,1,'2024-12-10 04:04:58','2024-12-10 04:04:58','','z6112427126027_f0c082273a59f666b09963ae9bbe5130','','inherit','open','closed','','z6112427126027_f0c082273a59f666b09963ae9bbe5130','','','2024-12-10 04:04:58','2024-12-10 04:04:58','',2638,'https://fe2tech.com/wp-content/uploads/2024/11/z6112427126027_f0c082273a59f666b09963ae9bbe5130.jpg',0,'attachment','image/jpeg',0),(2923,1,'2024-12-10 04:04:59','2024-12-10 04:04:59','','z6112427126859_88eeb6c98a738fc61976f7654b6d11a9','','inherit','open','closed','','z6112427126859_88eeb6c98a738fc61976f7654b6d11a9','','','2024-12-10 04:04:59','2024-12-10 04:04:59','',2638,'https://fe2tech.com/wp-content/uploads/2024/11/z6112427126859_88eeb6c98a738fc61976f7654b6d11a9.jpg',0,'attachment','image/jpeg',0),(2924,1,'2024-12-10 04:05:01','2024-12-10 04:05:01','','z6112427127062_0723f7644f5d182c87b7d93725c07ce0','','inherit','open','closed','','z6112427127062_0723f7644f5d182c87b7d93725c07ce0','','','2024-12-10 04:05:01','2024-12-10 04:05:01','',2638,'https://fe2tech.com/wp-content/uploads/2024/11/z6112427127062_0723f7644f5d182c87b7d93725c07ce0.jpg',0,'attachment','image/jpeg',0),(2925,1,'2024-12-10 04:05:26','2024-12-10 04:05:26','<h3 class=\"title-service\">In 2025, we will open a bolt manufacturing workshop to supply custom bolts tailored to customer needs.</h3>\n<div class=\"masonry-gallery\">\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112427132452_1dc48d6b077820afa8c47b96d3918f22.jpg\" alt=\"\" class=\"gallery-image\">\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112427136415_a92631bc5fc9cba8b18696aacf6afcb5.jpg\" alt=\"\" class=\"gallery-image\">\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112427143608_0e611231c1efc187f3162f79bf802d9e.jpg\" alt=\"\" class=\"gallery-image\">\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112427145342_1981e17957820257bc6cc69dca8d1a6a.jpg\" alt=\"\" class=\"gallery-image\">\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112431685389_a7fb16bd81f123c2bfc6a16da53debf2.jpg\" alt=\"\" class=\"gallery-image\">\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112431686395_bfab2b01f79ca6c359bec18f3bbadd26.jpg\" alt=\"\" class=\"gallery-image\">\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035271011_4c2ce6e425aafedb041eb23967031655.jpg\" alt=\"\" class=\"gallery-image\">\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112427126027_f0c082273a59f666b09963ae9bbe5130.jpg\" alt=\"\" class=\"gallery-image\">\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112427126859_88eeb6c98a738fc61976f7654b6d11a9.jpg\" alt=\"\" class=\"gallery-image\">\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112427127062_0723f7644f5d182c87b7d93725c07ce0.jpg\" alt=\"\" class=\"gallery-image\">\n</div>\n\n','Bolt Production','','inherit','closed','closed','','2638-autosave-v1','','','2024-12-10 04:05:26','2024-12-10 04:05:26','',2638,'https://fe2tech.com/?p=2925',0,'revision','',0),(2926,1,'2024-12-10 04:05:28','2024-12-10 04:05:28','<h3 class=\"title-service\">In 2025, we will open a bolt manufacturing workshop to supply custom bolts tailored to customer needs.</h3>\r\n<div class=\"masonry-gallery\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112427132452_1dc48d6b077820afa8c47b96d3918f22.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112427136415_a92631bc5fc9cba8b18696aacf6afcb5.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112427143608_0e611231c1efc187f3162f79bf802d9e.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112427145342_1981e17957820257bc6cc69dca8d1a6a.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112431685389_a7fb16bd81f123c2bfc6a16da53debf2.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112431686395_bfab2b01f79ca6c359bec18f3bbadd26.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035271011_4c2ce6e425aafedb041eb23967031655.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112427126027_f0c082273a59f666b09963ae9bbe5130.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112427126859_88eeb6c98a738fc61976f7654b6d11a9.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112427127062_0723f7644f5d182c87b7d93725c07ce0.jpg\" alt=\"\" class=\"gallery-image\">\r\n</div>\r\n\r\n','Bolt Production','','inherit','closed','closed','','2638-revision-v1','','','2024-12-10 04:05:28','2024-12-10 04:05:28','',2638,'https://fe2tech.com/?p=2926',0,'revision','',0),(2927,1,'2024-12-10 04:06:34','2024-12-10 04:06:34','','z5960268346049_d526596f8ddfc4db5149cdf4c2a86994','','inherit','open','closed','','z5960268346049_d526596f8ddfc4db5149cdf4c2a86994','','','2024-12-10 04:06:34','2024-12-10 04:06:34','',2642,'https://fe2tech.com/wp-content/uploads/2024/11/z5960268346049_d526596f8ddfc4db5149cdf4c2a86994.jpg',0,'attachment','image/jpeg',0),(2928,1,'2024-12-10 04:06:35','2024-12-10 04:06:35','','z6112404623542_5b0849b2bcc4cd3b845977435309590a','','inherit','open','closed','','z6112404623542_5b0849b2bcc4cd3b845977435309590a','','','2024-12-10 04:06:35','2024-12-10 04:06:35','',2642,'https://fe2tech.com/wp-content/uploads/2024/11/z6112404623542_5b0849b2bcc4cd3b845977435309590a.jpg',0,'attachment','image/jpeg',0),(2929,1,'2024-12-10 04:06:37','2024-12-10 04:06:37','','z4585711522486_378e8c68f46ae66fae3a9ecca6d6e086','','inherit','open','closed','','z4585711522486_378e8c68f46ae66fae3a9ecca6d6e086','','','2024-12-10 04:06:37','2024-12-10 04:06:37','',2642,'https://fe2tech.com/wp-content/uploads/2024/11/z4585711522486_378e8c68f46ae66fae3a9ecca6d6e086.jpg',0,'attachment','image/jpeg',0),(2930,1,'2024-12-10 04:06:38','2024-12-10 04:06:38','','z4449983141239_d83dcc0273bcc1b41d2586ff272b1265','','inherit','open','closed','','z4449983141239_d83dcc0273bcc1b41d2586ff272b1265','','','2024-12-10 04:06:38','2024-12-10 04:06:38','',2642,'https://fe2tech.com/wp-content/uploads/2024/11/z4449983141239_d83dcc0273bcc1b41d2586ff272b1265.jpg',0,'attachment','image/jpeg',0),(2931,1,'2024-12-10 04:06:39','2024-12-10 04:06:39','','z4584726243432_c37cf14cc34559d45891cddf89e5daba','','inherit','open','closed','','z4584726243432_c37cf14cc34559d45891cddf89e5daba','','','2024-12-10 04:06:39','2024-12-10 04:06:39','',2642,'https://fe2tech.com/wp-content/uploads/2024/11/z4584726243432_c37cf14cc34559d45891cddf89e5daba.jpg',0,'attachment','image/jpeg',0),(2932,1,'2024-12-10 04:06:41','2024-12-10 04:06:41','','z5953231842216_872f5a7181f5ce3d18a4b1eebe17896c','','inherit','open','closed','','z5953231842216_872f5a7181f5ce3d18a4b1eebe17896c','','','2024-12-10 04:06:41','2024-12-10 04:06:41','',2642,'https://fe2tech.com/wp-content/uploads/2024/11/z5953231842216_872f5a7181f5ce3d18a4b1eebe17896c.jpg',0,'attachment','image/jpeg',0),(2933,1,'2024-12-10 04:06:56','2024-12-10 04:06:56','<h3 class=\"title-service\">We collaborate with surface treatment units specializing in plating materials for high-quality and reliable export products.<br>Our heat treatment units are currently providing services to major corporations in Vietnam.<br>We also offer services in cylindrical grinding and metal machining for special items, including extremely large or ultra-small sizes.</h3>\n\n','Other Services','','inherit','closed','closed','','2642-autosave-v1','','','2024-12-10 04:06:56','2024-12-10 04:06:56','',2642,'https://fe2tech.com/?p=2933',0,'revision','',0),(2934,1,'2024-12-10 04:07:01','2024-12-10 04:07:01','<h3 class=\"title-service\">We collaborate with surface treatment units specializing in plating materials for high-quality and reliable export products.<br>Our heat treatment units are currently providing services to major corporations in Vietnam.<br>We also offer services in cylindrical grinding and metal machining for special items, including extremely large or ultra-small sizes.</h3>\r\n<div class=\"masonry-gallery\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5960268346049_d526596f8ddfc4db5149cdf4c2a86994.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112404623542_5b0849b2bcc4cd3b845977435309590a.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4585711522486_378e8c68f46ae66fae3a9ecca6d6e086.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4449983141239_d83dcc0273bcc1b41d2586ff272b1265.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4584726243432_c37cf14cc34559d45891cddf89e5daba.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5953231842216_872f5a7181f5ce3d18a4b1eebe17896c.jpg\" alt=\"\" class=\"gallery-image\">\r\n</div>\r\n\r\n','Other Services','','inherit','closed','closed','','2642-revision-v1','','','2024-12-10 04:07:01','2024-12-10 04:07:01','',2642,'https://fe2tech.com/?p=2934',0,'revision','',0),(2937,1,'2024-12-17 02:44:33','2024-12-17 02:44:33','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.    </h3>\n		<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>		\n                <a href=\"https://www.youtube.com/watch?v=oVQ4_PIqgz8\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Customer\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Personnel\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Oders per year\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>		\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n													<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />													\n	    <h3>\n        We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.    </h3>\n		<p>Goals to achieve by 2026:</p>		\n                                            East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\n                                        30%\n                                            Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\n                                        10%\n                                            United States: Products related to medical instruments, optics, and audio equipment.\n                                        30%\n                                            Australia: Sheet metal products.\n                                        8%\n                                            Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\n                                        20%\n                                            Other markets and products.\n                                        2%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-milling-service/\">CNC Milling Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-milling-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-turning-service/\">CNC Turning Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-turning-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">CNC Tool Grinder Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/sheet-metal-service/\">Sheet Metal Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/sheet-metal-service/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"28\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We always provide a sense of security in terms of quality and progress.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"14\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-12-17 02:44:33','2024-12-17 02:44:33','',9,'https://fe2tech.com/?p=2937',0,'revision','',0),(2938,1,'2024-12-17 02:44:34','2024-12-17 02:44:34','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.    </h3>\n		<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>		\n                <a href=\"https://www.youtube.com/watch?v=oVQ4_PIqgz8\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Customer\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Personnel\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Oders per year\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>		\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"47\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/banner-icon-01.png\" alt=\"\" />\n													<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />													\n	    <h3>\n        We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.    </h3>\n		<p>Goals to achieve by 2026:</p>		\n                                            East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\n                                        30%\n                                            Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\n                                        10%\n                                            United States: Products related to medical instruments, optics, and audio equipment.\n                                        30%\n                                            Australia: Sheet metal products.\n                                        8%\n                                            Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\n                                        20%\n                                            Other markets and products.\n                                        2%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-milling-service/\">CNC Milling Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-milling-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-turning-service/\">CNC Turning Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-turning-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">CNC Tool Grinder Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/sheet-metal-service/\">Sheet Metal Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/sheet-metal-service/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"28\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We always provide a sense of security in terms of quality and progress.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"14\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-12-17 02:44:34','2024-12-17 02:44:34','',9,'https://fe2tech.com/?p=2938',0,'revision','',0),(2939,1,'2024-12-17 02:44:35','2024-12-17 02:44:35','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.    </h3>\n		<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>		\n                <a href=\"https://www.youtube.com/watch?v=oVQ4_PIqgz8\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Customer\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Personnel\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Oders per year\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>		\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n													<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />													\n	    <h3>\n        We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.    </h3>\n		<p>Goals to achieve by 2026:</p>		\n                                            East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\n                                        30%\n                                            Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\n                                        10%\n                                            United States: Products related to medical instruments, optics, and audio equipment.\n                                        30%\n                                            Australia: Sheet metal products.\n                                        8%\n                                            Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\n                                        20%\n                                            Other markets and products.\n                                        2%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-milling-service/\">CNC Milling Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-milling-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-turning-service/\">CNC Turning Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-turning-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">CNC Tool Grinder Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/sheet-metal-service/\">Sheet Metal Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/sheet-metal-service/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"143\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We always provide a sense of security in terms of quality and progress.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"233\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-12-17 02:44:35','2024-12-17 02:44:35','',9,'https://fe2tech.com/?p=2939',0,'revision','',0),(2940,1,'2024-12-17 02:45:42','2024-12-17 02:45:42','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.    </h3>\n		<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>		\n                <a href=\"https://www.youtube.com/watch?v=oVQ4_PIqgz8\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Customer\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Personnel\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Oders per year\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>		\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n													<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />													\n	    <h3>\n        We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.    </h3>\n		<p>Goals to achieve by 2026:</p>		\n                                            East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\n                                        30%\n                                            Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\n                                        10%\n                                            United States: Products related to medical instruments, optics, and audio equipment.\n                                        30%\n                                            Australia: Sheet metal products.\n                                        8%\n                                            Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\n                                        20%\n                                            Other markets and products.\n                                        2%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-milling-service/\">CNC Milling Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-milling-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-turning-service/\">CNC Turning Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-turning-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">CNC Tool Grinder Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/sheet-metal-service/\">Sheet Metal Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/sheet-metal-service/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"143\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We always provide a sense of security in terms of quality and progress.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"233\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-12-17 02:45:42','2024-12-17 02:45:42','',9,'https://fe2tech.com/?p=2940',0,'revision','',0),(2941,1,'2024-12-17 02:45:43','2024-12-17 02:45:43','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.    </h3>\n		<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>		\n                <a href=\"https://www.youtube.com/watch?v=oVQ4_PIqgz8\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Customer\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Personnel\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Oders per year\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>		\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n													<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />													\n	    <h3>\n        We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.    </h3>\n		<p>Goals to achieve by 2026:</p>		\n                                            East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\n                                        30%\n                                            Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\n                                        10%\n                                            United States: Products related to medical instruments, optics, and audio equipment.\n                                        30%\n                                            Australia: Sheet metal products.\n                                        8%\n                                            Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\n                                        20%\n                                            Other markets and products.\n                                        2%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-milling-service/\">CNC Milling Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-milling-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-turning-service/\">CNC Turning Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-turning-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">CNC Tool Grinder Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/sheet-metal-service/\">Sheet Metal Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/sheet-metal-service/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"143\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We always provide a sense of security in terms of quality and progress.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"233\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-12-17 02:45:43','2024-12-17 02:45:43','',9,'https://fe2tech.com/?p=2941',0,'revision','',0),(2942,1,'2024-12-17 02:45:43','2024-12-17 02:45:43','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.    </h3>\n		<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>		\n                <a href=\"https://www.youtube.com/watch?v=oVQ4_PIqgz8\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Customer\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Personnel\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Oders per year\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>		\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" />\n													<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />													\n	    <h3>\n        We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.    </h3>\n		<p>Goals to achieve by 2026:</p>		\n                                            East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\n                                        30%\n                                            Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\n                                        10%\n                                            United States: Products related to medical instruments, optics, and audio equipment.\n                                        30%\n                                            Australia: Sheet metal products.\n                                        8%\n                                            Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\n                                        20%\n                                            Other markets and products.\n                                        2%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-milling-service/\">CNC Milling Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-milling-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-turning-service/\">CNC Turning Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-turning-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">CNC Tool Grinder Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/sheet-metal-service/\">Sheet Metal Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/sheet-metal-service/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"48\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We always provide a sense of security in terms of quality and progress.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"2\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-12-17 02:45:43','2024-12-17 02:45:43','',9,'https://fe2tech.com/?p=2942',0,'revision','',0),(2943,1,'2024-12-17 02:46:49','2024-12-17 02:46:49','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.    </h3>\n		<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>		\n                <a href=\"https://www.youtube.com/watch?v=oVQ4_PIqgz8\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Customer\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Personnel\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Oders per year\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>		\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" />\n													<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />													\n	    <h3>\n        We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.    </h3>\n		<p>Goals to achieve by 2026:</p>		\n                                            East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\n                                        30%\n                                            Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\n                                        10%\n                                            United States: Products related to medical instruments, optics, and audio equipment.\n                                        30%\n                                            Australia: Sheet metal products.\n                                        8%\n                                            Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\n                                        20%\n                                            Other markets and products.\n                                        2%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-milling-service/\">CNC Milling Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-milling-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-turning-service/\">CNC Turning Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-turning-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">CNC Tool Grinder Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/sheet-metal-service/\">Sheet Metal Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/sheet-metal-service/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"48\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We always provide a sense of security in terms of quality and progress.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"2\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-12-17 02:46:49','2024-12-17 02:46:49','',9,'https://fe2tech.com/?p=2943',0,'revision','',0),(2944,1,'2024-12-17 02:46:50','2024-12-17 02:46:50','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.    </h3>\n		<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>		\n                <a href=\"https://www.youtube.com/watch?v=oVQ4_PIqgz8\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Customer\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Personnel\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Oders per year\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>		\n    	<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />    \n    	    		<img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" />\n													<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />													\n	    <h3>\n        We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.    </h3>\n		<p>Goals to achieve by 2026:</p>		\n                                            East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\n                                        30%\n                                            Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\n                                        10%\n                                            United States: Products related to medical instruments, optics, and audio equipment.\n                                        30%\n                                            Australia: Sheet metal products.\n                                        8%\n                                            Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\n                                        20%\n                                            Other markets and products.\n                                        2%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-milling-service/\">CNC Milling Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-milling-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-turning-service/\">CNC Turning Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-turning-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">CNC Tool Grinder Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/sheet-metal-service/\">Sheet Metal Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/sheet-metal-service/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"48\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We always provide a sense of security in terms of quality and progress.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"2\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-12-17 02:46:50','2024-12-17 02:46:50','',9,'https://fe2tech.com/?p=2944',0,'revision','',0),(2945,1,'2024-12-17 02:46:50','2024-12-17 02:46:50','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.    </h3>\n		<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>		\n                <a href=\"https://www.youtube.com/watch?v=oVQ4_PIqgz8\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Customer\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Personnel\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Oders per year\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>		\n													<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />													\n													<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />													\n	    <h3>\n        We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.    </h3>\n		<p>Goals to achieve by 2026:</p>		\n                                            East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\n                                        30%\n                                            Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\n                                        10%\n                                            United States: Products related to medical instruments, optics, and audio equipment.\n                                        30%\n                                            Australia: Sheet metal products.\n                                        8%\n                                            Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\n                                        20%\n                                            Other markets and products.\n                                        2%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-milling-service/\">CNC Milling Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-milling-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-turning-service/\">CNC Turning Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-turning-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">CNC Tool Grinder Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/sheet-metal-service/\">Sheet Metal Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/sheet-metal-service/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"199\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We always provide a sense of security in terms of quality and progress.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"120\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-12-17 02:46:50','2024-12-17 02:46:50','',9,'https://fe2tech.com/?p=2945',0,'revision','',0),(2946,1,'2024-12-17 03:26:17','2024-12-17 03:26:17','<h3 class=\"title-service\">We excel in aluminum and steel products, particularly thin aluminum sheets and motorcycle-related toys.</h3>\r\n<div class=\"masonry-gallery\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112022581961_f2a47cd330f690d0a726b0888ff80ab1.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112022572357_0cdb065792788d3493b2e389df79a5e2.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112022611669_d154017fd0d3c02db6be468c7db9fa32.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035366910_4defd4ad74170bea5d4fa69518dafb6d.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035331028_b1fcc3e9f1979a96aaebf343697989b4.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035303451_55cd6bcbf16c201a507ca6ac10623d02.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035333555_19b4ef8a09ed63f106da162eac3d9775.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112022609645_43af0256c23b3f39325ac10fe40d3200.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035380871_0810f1b5bcdd3396a375bf5a785686ae.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112143350420_5fdf5495fc11f668a8b6e8b865a0670a.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112159599274_ed84aaa8ae44eb900b332183d18d35ff.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4379673923151_1f10bec1ef168974349f66b16772c543.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5997919286088_1aafc52570d9ee521cb7325aaa3efbbb.jpg\" alt=\"\" class=\"gallery-image\">\r\n</div>\r\n','CNC Milling Service','','inherit','closed','closed','','2619-revision-v1','','','2024-12-17 03:26:17','2024-12-17 03:26:17','',2619,'https://fe2tech.com/?p=2946',0,'revision','',0),(2947,1,'2024-12-17 03:27:09','2024-12-17 03:27:09','<h3 class=\"title-service\">We can manufacture all small to medium-sized items for all types of materials.</h3>\r\n<div class=\"masonry-gallery\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112523290035_3b7a728aff36d17b39821c04b01ee4d5.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112523303443_aeb69e713b0de04bc8b594cb00fb49ca.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035284762_1f2181b896dc72283dffd21ff2accf18.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035279331_ec2e9746f1d2b6055f9d822183a20b7b.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035401524_aa7e2e59cf891c7dd20122738c01da99.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035395698_a7f89619dfa324b6009e13e700d16a52.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035405011_b0e4efc850356273be1ea0ebf41973d5.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112523246386_fb69855463997d37d3a5b9189e8633a5.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112523253089_bd1c2eefa8e745863c395bcdd175f37c.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112523265271_a713cd9cae68eb5e8623d240ee9c0f46.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112523276603_ec2b0734a46271e77485348ecdebe9a5.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112143335944_8a90c104b6e5a3531a1b8d7a439e6db3.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112143337763_e6237e74ed00be98c9396eb0b6012587.jpg\" alt=\"\" class=\"gallery-image\">\r\n</div>\r\n','CNC Turning Service','','inherit','closed','closed','','2622-revision-v1','','','2024-12-17 03:27:09','2024-12-17 03:27:09','',2622,'https://fe2tech.com/?p=2947',0,'revision','',0),(2948,1,'2024-12-17 03:27:59','2024-12-17 03:27:59','<h3 class=\"title-service\">These are support services for the mold industry and our detailed products.</h3>\r\n<div class=\"masonry-gallery\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112160416378_bce4411fe74027d63005630fc7884a80.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112161045939_2fab496392927de92680189440d9df11.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112162162899_9fa7af3084979b141c9a5af02bd64b8f.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112162913774_3cf6b72cb16904b5c0aa22911ad9062c.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112342749062_a373f44d190f5f95bac710bb2609c8dc.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112342752051_e8e5731247c67e8d13ba9032e0df2071.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112342758960_0cf70e0e2fc3c20f1fcdfa00de30734e.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112342779226_b9935186416483d88d8d4a3741c445ac.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112343562589_0c62c0c2a11f68e02e7302f2022d802f.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112343020134_4e3fd602c682b52d16603b05d64b5b3b.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112343022575_b75ed6f8141de2096bd693992964bc07.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112343024138_c84a3e4bb6f5d346d7a6e09e56086f61.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112343028537_b1ff9fb76f888c3ed07f01643f0020f0.jpg\" alt=\"\" class=\"gallery-image\">\r\n</div>\r\n','CNC Tool Grinder Service','','inherit','closed','closed','','2625-revision-v1','','','2024-12-17 03:27:59','2024-12-17 03:27:59','',2625,'https://fe2tech.com/?p=2948',0,'revision','',0),(2949,1,'2024-12-17 03:28:54','2024-12-17 03:28:54','<h3 class=\"title-service\">We can paint finished products according to customer requirements.</h3>\r\n<div class=\"masonry-gallery\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4614273923773_699996016c1c52f0895299d5358fe8a6.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4614243915927_45cd79faef986c5ca9f1ed80434ca840.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4859515672356_2e4104881b39c559fe9d687370a67394.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5095181853127_bdd8a417c860e722ad4f5e79f91dea8f.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5095181851706_d23ac9a42e1be2ea98d323da1f663eaf.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4749871034728_13d43ad63eed2b6e7e1496638d7853af.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4749871031095_9182ad19e7ac8defae8c32b8cc44b440.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4749871031211_ed4fe9d663e0c07fddaaef221a1144c7.jpg\" alt=\"\" class=\"gallery-image\">\r\n</div>\r\n\r\n','Sheet Metal Service','','inherit','closed','closed','','2628-revision-v1','','','2024-12-17 03:28:54','2024-12-17 03:28:54','',2628,'https://fe2tech.com/?p=2949',0,'revision','',0),(2950,1,'2024-12-17 03:29:58','2024-12-17 03:29:58','<h3 class=\"title-service\">Precision machining using electrical discharge, grinding, and wire cutting to achieve high accuracy for small and complex parts.</h3>\r\n<div class=\"masonry-gallery\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112398373909_156bfb41f9711a15035cfede452ce1a9.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112398387244_688f2cffa04694e309441b36b11b142f.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112398406318_cba797f1e93e87ade947c770d0d40a8f.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112398417726_5127342a763e9e24abc186f97a44aff8.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112399243827_06cc313a2878998df579b1c3dcedc86d.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112402158092_30b348ffeb1bd490d6abf2ba9eb85786.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112402161733_fb456855a646106f5d0896b14dc1774a.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112405304306_a9b1bb837aea79fbe537c183eb90c6c1.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112407952259_47d9353a1faa9e7f704c496b431fc2e8.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112407943622_643893c3e779b10c7addfe792dde6674.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112407932531_75c831c196d633f15a7d2ac8ca23dd73.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112475733731_0f87c5cb35371e36f87164b091dee9e7.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112475735545_8ad6ec49c1c9ca3aa9ad469ee5e61195.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112475588456_c7783008f04cb1da5c4706aaf8251962.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112475603193_4db6faf7d997e4dfc5f44d0ee583aadf.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112475604993_b73f539ad31fe52fc630284c8d45186a.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112475612691_cce8a7d594d6f4dcbe56f5186a04fefb.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112475615814_eaf58890986bbd9b960debe8d62378b9.jpg\" alt=\"\" class=\"gallery-image\">\r\n</div>\r\n','EDM, Grinding and Wire Cutting Service','','inherit','closed','closed','','2634-revision-v1','','','2024-12-17 03:29:58','2024-12-17 03:29:58','',2634,'https://fe2tech.com/?p=2950',0,'revision','',0),(2951,1,'2024-12-17 03:30:36','2024-12-17 03:30:36','<h3 class=\"title-service\">Precision machining using electrical discharge, grinding, and wire cutting to achieve high accuracy for small and complex parts.</h3>\r\n<div class=\"masonry-gallery\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112398373909_156bfb41f9711a15035cfede452ce1a9.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112398387244_688f2cffa04694e309441b36b11b142f.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112398406318_cba797f1e93e87ade947c770d0d40a8f.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112398417726_5127342a763e9e24abc186f97a44aff8.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112399243827_06cc313a2878998df579b1c3dcedc86d.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112402158092_30b348ffeb1bd490d6abf2ba9eb85786.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112402161733_fb456855a646106f5d0896b14dc1774a.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112407952259_47d9353a1faa9e7f704c496b431fc2e8.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112407943622_643893c3e779b10c7addfe792dde6674.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112407932531_75c831c196d633f15a7d2ac8ca23dd73.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112475733731_0f87c5cb35371e36f87164b091dee9e7.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112475735545_8ad6ec49c1c9ca3aa9ad469ee5e61195.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112475588456_c7783008f04cb1da5c4706aaf8251962.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112475603193_4db6faf7d997e4dfc5f44d0ee583aadf.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112475604993_b73f539ad31fe52fc630284c8d45186a.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112475612691_cce8a7d594d6f4dcbe56f5186a04fefb.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112475615814_eaf58890986bbd9b960debe8d62378b9.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112405304306_a9b1bb837aea79fbe537c183eb90c6c1.jpg\" alt=\"\" class=\"gallery-image\">\r\n</div>\r\n','EDM, Grinding and Wire Cutting Service','','inherit','closed','closed','','2634-revision-v1','','','2024-12-17 03:30:36','2024-12-17 03:30:36','',2634,'https://fe2tech.com/?p=2951',0,'revision','',0),(2952,1,'2024-12-17 03:31:41','2024-12-17 03:31:41','<h3 class=\"title-service\">We have veteran welding engineers to ensure high-quality welded products.<br>We offer Mig welding, Tig welding, and laser welding.<br>Notably, we specialize in laser welding of aluminum for export to the U.S. market.</h3>\r\n<div class=\"masonry-gallery\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112380520686_e42a34abefc41f7baa77f40a51e11e10.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112380501656_5b9317f1571553500813fa23f5ffd678.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112380524857_d617d3c8ff36c93a8360aeb9239dc924.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112380533580_58467dd3a6c609d250f917b7cb523083.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112380547520_189c3d8c494143167c5bea938b7789c8.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112380509099_8e38c91b9a664647d606ed55ecccc8ae.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4749871065923_4d7a315a6e76ccde22ddab12dbdcd6c3.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4749871059944_22ebc1e4e9fef7e1a4c18a87b17ad83f.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4749871062649_2ef68ba42152c462b7730e250fa0695b.jpg\" alt=\"\" class=\"gallery-image\">\r\n</div>\r\n\r\n','Welding Service','','inherit','closed','closed','','2631-revision-v1','','','2024-12-17 03:31:41','2024-12-17 03:31:41','',2631,'https://fe2tech.com/?p=2952',0,'revision','',0),(2953,1,'2024-12-17 03:32:11','2024-12-17 03:32:11','<h3 class=\"title-service\">We have veteran welding engineers to ensure high-quality welded products.<br>We offer Mig welding, Tig welding, and laser welding.<br>Notably, we specialize in laser welding of aluminum for export to the U.S. market.</h3>\r\n<div class=\"masonry-gallery\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112380520686_e42a34abefc41f7baa77f40a51e11e10.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112380501656_5b9317f1571553500813fa23f5ffd678.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112380524857_d617d3c8ff36c93a8360aeb9239dc924.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4749871059944_22ebc1e4e9fef7e1a4c18a87b17ad83f.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112380533580_58467dd3a6c609d250f917b7cb523083.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112380547520_189c3d8c494143167c5bea938b7789c8.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112380509099_8e38c91b9a664647d606ed55ecccc8ae.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4749871065923_4d7a315a6e76ccde22ddab12dbdcd6c3.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4749871062649_2ef68ba42152c462b7730e250fa0695b.jpg\" alt=\"\" class=\"gallery-image\">\r\n</div>\r\n\r\n','Welding Service','','inherit','closed','closed','','2631-revision-v1','','','2024-12-17 03:32:11','2024-12-17 03:32:11','',2631,'https://fe2tech.com/?p=2953',0,'revision','',0),(2959,1,'2024-12-17 03:54:46','2024-12-17 03:54:46','<a href=\"http://fe2tech.com/\">\n							<img width=\"597\" height=\"597\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/logo.jpg\" alt=\"\" />								</a>\n			    <ul>\n                    <li>\n            	   Nhà máy 1: Số 4 Đoàn Thị Kia, Ấp Đông Chiêu, Phường Tân Đông Hiệp, Thành phố Dĩ An, Bình Dương, Việt Nam                \n           </li>\n                    <li>\n            	   Nhà máy 2: Cụm công nghiệp Khắc Niệm, Phường Khắc Niệm, Thành phố Bắc Ninh, Bắc Ninh, Việt Nam                \n           </li>\n                    <li>\n            	   Nhà máy 3: Số 1476 Đường Phố Vá, Phường Hạp Lĩnh, Thành phố Bắc Ninh, Bắc Ninh, Việt Nam                \n           </li>\n                    <li>\n            	   0968 86 03 86                \n           </li>\n            </ul>\n    <h3>\n        Menu\n        <i></i>\n    </h3>\n        <ul id=\"menu-main-menu-vi-2\"><li><a href=\"https://fe2tech.com/vi/trang-chu/\">Trang chủ</a></li>\n<li><a href=\"https://fe2tech.com/vi/san-pham/\">Sản phẩm</a></li>\n<li><a href=\"https://fe2tech.com/vi/dich-vu/\">Dịch vụ</a></li>\n<li><a href=\"https://fe2tech.com/vi/doi-ngu-doi-tac/\">Đội ngũ &amp; Đối tác</a></li>\n<li><a href=\"https://fe2tech.com/vi/ve-chung-toi/\">Về chúng tôi</a></li>\n<li><a href=\"#pll_switcher\">Languages</a></li>\n</ul>    \n    <h3>\n        Giờ mở cửa\n        <i></i>\n    </h3>\n		<p>Thứ Hai - Chủ Nhật: 24/24</p>		\n    <h3>\n        Newsletter\n        <i></i>\n    </h3>\n		<p>Đăng ký để nhận thông báo, blog mới nhất, ý tưởng và góc nhìn của chúng tôi.</p>		\n        <form method=\"post\" action=\"https://fe2tech.com/wp-admin/admin-ajax.php?action=tnp&amp;na=s\" style=\"\">\n<input type=\"hidden\" name=\"nlang\" value=\"\">\n<label for=\"tnp-3\">Your mail address</label>\n<input type=\"email\" name=\"ne\" id=\"tnp-3\" value=\"\" placeholder=\"\" required>\n<input type=\"submit\" value=\"Subscribe\" style=\"\">\n</form>    \n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n		<p>Copyright @2024 of Far East High Tech Ltd. Co.</p>','Footer - vi','','publish','closed','closed','','footer-vi','','','2025-03-17 03:38:23','2025-03-17 03:38:23','',0,'https://fe2tech.com/?post_type=footer&#038;p=2959',1,'footer','',0),(2960,1,'2024-12-17 03:54:46','2024-12-17 03:54:46','','Footer - vi','','inherit','closed','closed','','2959-revision-v1','','','2024-12-17 03:54:46','2024-12-17 03:54:46','',2959,'https://fe2tech.com/?p=2960',0,'revision','',0),(2961,1,'2024-12-17 03:55:22','2024-12-17 03:55:22','<a href=\"http://fe2tech.com/\">\n							<img width=\"597\" height=\"597\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/logo.jpg\" alt=\"\" />								</a>\n			    <ul>\n                    <li>\n            	   工場 1: ベトナム、ビンズオン省、ジアン市、タン・ドン・ヒエップ区、ドンチエウ村、4番地 ドアン・ティ・キア通り                \n           </li>\n                    <li>\n            	   工場 2: ベトナム、バクニン省、バクニン市、カック・ニエム区、カック・ニエム工業クラスター                \n           </li>\n                    <li>\n            	   工場 3: ベトナム、バクニン省、バクニン市、ハップ・リン区、1476番地 フォ・ヴァー通り                \n           </li>\n                    <li>\n            	   0968 86 03 86                \n           </li>\n            </ul>\n    <h3>\n        Menu\n        <i></i>\n    </h3>\n        <ul id=\"menu-menu-header-ja-2\"><li><a href=\"https://fe2tech.com/ja/%e3%83%9b%e3%83%bc%e3%83%a0/\">ホーム</a></li>\n<li><a href=\"https://fe2tech.com/ja/%e8%a3%bd%e5%93%81/\">製品</a></li>\n<li><a href=\"https://fe2tech.com/ja/%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">サービス</a></li>\n<li><a href=\"https://fe2tech.com/ja/%e3%83%81%e3%83%bc%e3%83%a0%e3%81%a8%e3%83%91%e3%83%bc%e3%83%88%e3%83%8a%e3%83%bc/\">チームとパートナー</a></li>\n<li><a href=\"https://fe2tech.com/ja/%e7%a7%81%e3%81%9f%e3%81%a1%e3%81%ab%e3%81%a4%e3%81%84%e3%81%a6/\">私たちについて</a></li>\n<li><a href=\"#pll_switcher\">Languages</a></li>\n</ul>    \n    <h3>\n        営業時間\n        <i></i>\n    </h3>\n		<p>月曜日~日曜日:24時間営業</p>		\n    <h3>\n        Newsletter\n        <i></i>\n    </h3>\n		<p>通知、最新のブログ、アイデア、洞察を受け取るためにサインアップしてください。</p>		\n        <form method=\"post\" action=\"https://fe2tech.com/wp-admin/admin-ajax.php?action=tnp&amp;na=s\" style=\"\">\n<input type=\"hidden\" name=\"nlang\" value=\"\">\n<label for=\"tnp-3\">Your mail address</label>\n<input type=\"email\" name=\"ne\" id=\"tnp-3\" value=\"\" placeholder=\"\" required>\n<input type=\"submit\" value=\"Subscribe\" style=\"\">\n</form>    \n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n		<p>Copyright @2024 of Far East High Tech Ltd. Co.</p>','Footer - ja','','publish','closed','closed','','footer-ja','','','2025-03-17 03:38:53','2025-03-17 03:38:53','',0,'https://fe2tech.com/?post_type=footer&#038;p=2961',2,'footer','',0),(2962,1,'2024-12-17 03:55:22','2024-12-17 03:55:22','','Footer - jp','','inherit','closed','closed','','2961-revision-v1','','','2024-12-17 03:55:22','2024-12-17 03:55:22','',2961,'https://fe2tech.com/?p=2962',0,'revision','',0),(2963,1,'2024-12-17 03:56:12','2024-12-17 03:56:12','','Footer - ja','','inherit','closed','closed','','2961-revision-v1','','','2024-12-17 03:56:12','2024-12-17 03:56:12','',2961,'https://fe2tech.com/?p=2963',0,'revision','',0),(2964,1,'2024-12-17 04:00:12','2024-12-17 04:00:12','<a href=\"https://fe2tech.com/service/cnc-milling-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/cnc-milling-service/\">CNC Milling Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/cnc-turning-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/cnc-turning-service/\">CNC Turning Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">CNC Tool Grinder Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/sheet-metal-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/sheet-metal-service/\">Sheet Metal Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/welding-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/welding-service/\">Welding Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/edm-grinding-and-wire-cutting-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/edm-grinding-and-wire-cutting-service/\">EDM, Grinding and Wire Cutting Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/bolt-production/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/bolt-production/\">Bolt Production</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/other-services/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/other-services/\">Other Services</a></h3>','Services','','inherit','closed','closed','','2128-revision-v1','','','2024-12-17 04:00:12','2024-12-17 04:00:12','',2128,'https://fe2tech.com/?p=2964',0,'revision','',0),(2965,1,'2024-12-17 04:00:13','2024-12-17 04:00:13','<a href=\"https://fe2tech.com/service/cnc-milling-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/cnc-milling-service/\">CNC Milling Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/cnc-turning-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/cnc-turning-service/\">CNC Turning Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">CNC Tool Grinder Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/sheet-metal-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/sheet-metal-service/\">Sheet Metal Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/welding-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/welding-service/\">Welding Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/edm-grinding-and-wire-cutting-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/edm-grinding-and-wire-cutting-service/\">EDM, Grinding and Wire Cutting Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/bolt-production/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/bolt-production/\">Bolt Production</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/other-services/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/other-services/\">Other Services</a></h3>','Services','','inherit','closed','closed','','2128-revision-v1','','','2024-12-17 04:00:13','2024-12-17 04:00:13','',2128,'https://fe2tech.com/?p=2965',0,'revision','',0),(2966,1,'2024-12-17 04:00:13','2024-12-17 04:00:13','<a href=\"https://fe2tech.com/service/cnc-milling-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/cnc-milling-service/\">CNC Milling Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/cnc-turning-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/cnc-turning-service/\">CNC Turning Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">CNC Tool Grinder Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/sheet-metal-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/sheet-metal-service/\">Sheet Metal Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/welding-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/welding-service/\">Welding Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/edm-grinding-and-wire-cutting-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/edm-grinding-and-wire-cutting-service/\">EDM, Grinding and Wire Cutting Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/bolt-production/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/bolt-production/\">Bolt Production</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/other-services/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/other-services/\">Other Services</a></h3>','Services','','inherit','closed','closed','','2128-revision-v1','','','2024-12-17 04:00:13','2024-12-17 04:00:13','',2128,'https://fe2tech.com/?p=2966',0,'revision','',0),(2967,1,'2024-12-17 04:00:25','2024-12-17 04:00:25','<a href=\"https://fe2tech.com/service/cnc-milling-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/cnc-milling-service/\">CNC Milling Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/cnc-turning-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/cnc-turning-service/\">CNC Turning Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">CNC Tool Grinder Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/sheet-metal-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/sheet-metal-service/\">Sheet Metal Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/welding-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/welding-service/\">Welding Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/edm-grinding-and-wire-cutting-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/edm-grinding-and-wire-cutting-service/\">EDM, Grinding and Wire Cutting Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/bolt-production/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/bolt-production/\">Bolt Production</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/other-services/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/other-services/\">Other Services</a></h3>','Services','','inherit','closed','closed','','2128-revision-v1','','','2024-12-17 04:00:25','2024-12-17 04:00:25','',2128,'https://fe2tech.com/?p=2967',0,'revision','',0),(2968,1,'2024-12-17 04:00:26','2024-12-17 04:00:26','<a href=\"https://fe2tech.com/service/cnc-milling-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/cnc-milling-service/\">CNC Milling Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/cnc-turning-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/cnc-turning-service/\">CNC Turning Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">CNC Tool Grinder Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/sheet-metal-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/sheet-metal-service/\">Sheet Metal Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/welding-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/welding-service/\">Welding Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/edm-grinding-and-wire-cutting-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/edm-grinding-and-wire-cutting-service/\">EDM, Grinding and Wire Cutting Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/bolt-production/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/bolt-production/\">Bolt Production</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/other-services/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/other-services/\">Other Services</a></h3>','Services','','inherit','closed','closed','','2128-revision-v1','','','2024-12-17 04:00:26','2024-12-17 04:00:26','',2128,'https://fe2tech.com/?p=2968',0,'revision','',0),(2969,1,'2024-12-17 04:00:26','2024-12-17 04:00:26','<a href=\"https://fe2tech.com/service/cnc-milling-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/cnc-milling-service/\">CNC Milling Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/cnc-turning-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/cnc-turning-service/\">CNC Turning Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">CNC Tool Grinder Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/sheet-metal-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/sheet-metal-service/\">Sheet Metal Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/welding-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/welding-service/\">Welding Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/edm-grinding-and-wire-cutting-service/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/edm-grinding-and-wire-cutting-service/\">EDM, Grinding and Wire Cutting Service</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/bolt-production/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/bolt-production/\">Bolt Production</a></h3>\n                                                    <a href=\"https://fe2tech.com/service/other-services/\"></a>\n                                                                    <h3><a href=\"https://fe2tech.com/service/other-services/\">Other Services</a></h3>','Services','','inherit','closed','closed','','2128-revision-v1','','','2024-12-17 04:00:26','2024-12-17 04:00:26','',2128,'https://fe2tech.com/?p=2969',0,'revision','',0),(2971,1,'2025-03-17 03:54:55','2024-12-17 04:06:24','','Languages','','publish','closed','closed','','languages','','','2025-03-17 03:54:55','2025-03-17 03:54:55','',0,'https://fe2tech.com/?p=2971',7,'nav_menu_item','',0),(2973,1,'2024-12-17 04:27:51','2024-12-17 04:27:51','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        Chúng tôi cung cấp nhiều loại sản phẩm cho ngành công nghiệp cơ khí trên toàn Việt Nam và quốc tế, đặc biệt tại các thị trường trọng điểm như Nhật Bản, Hàn Quốc, Hoa Kỳ và Úc. Chúng tôi cũng có kinh nghiệm xuất khẩu đến các thị trường này.    </h3>\n		<p>Thế mạnh lớn nhất của chúng tôi nằm ở đội ngũ nhân lực trẻ trung, đam mê học hỏi, sáng tạo và tự tin, có khả năng sản xuất đa dạng các sản phẩm cơ khí với chất lượng luôn ổn định.</p>		\n                <a href=\"https://www.youtube.com/watch?v=vUCVqLmXSPM\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Khách hàng\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Nhân sự\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Số đơn hàng mỗi năm\n														<a href=\"http://fe2tech.trustpass.alibaba.com/\" target=\"_blank\" rel=\"nofollow noopener\">\n							<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />								</a>\n		<p>Chúng tôi đã bắt đầu mở một cửa hàng trên Alibaba để kết nối với các đơn hàng từ khắp nơi trên thế giới.</p>		\n													<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />													\n													<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />													\n	    <h3>\n        Chúng tôi nỗ lực trở thành một trong những công ty chế biến cơ khí hàng đầu của Việt Nam, cung cấp ra thị trường quốc tế vào năm 2030. Trong tương lai, chúng tôi hướng đến việc sản xuất các sản phẩm máy móc hoàn chỉnh để giao trực tiếp đến người sử dụng cuối.    </h3>\n		<p>Mục tiêu đạt được vào năm 2026:</p>		\n                                            Đông Á (Nhật Bản, Hàn Quốc, v.v.): Xuất khẩu các linh kiện máy móc thay thế, phụ kiện xe máy và ô tô, phụ kiện ngành nước, khuôn mẫu và các bộ phận cơ khí khác.\n                                        30%\n                                            Châu Âu (Đức, Bulgaria, Hà Lan, v.v.): Sản xuất khuôn jig cho vòng bi ô tô và các bộ phận hộp điện cho máy móc tự động hóa.\n                                        10%\n                                            Hoa Kỳ: Các sản phẩm liên quan đến thiết bị y tế, quang học và thiết bị âm thanh.\n                                        30%\n                                            Úc: Sản phẩm kim loại tấm.\n                                        8%\n                                            Việt Nam: Máy tự động hóa nhỏ; bu lông xe máy và ô tô; sản phẩm trong ngành dầu khí.\n                                        20%\n                                            Các thị trường và sản phẩm khác.\n                                        2%\n	    <h3>\n        Chúng tôi cung cấp dịch vụ trong nhiều lĩnh vực.    </h3>\n		<p>Chúng tôi luôn đáp ứng yêu cầu thiết kế của khách hàng. Ngoại hình và kích thước là những yếu tố chúng tôi coi trọng nhất.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/vi/service/dich-vu-phay-cnc/\">Dịch vụ phay CNC</a></h3>\n                                        <a href=\"https://fe2tech.com/vi/service/dich-vu-phay-cnc/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/vi/service/dich-vu-tien-cnc/\">Dịch vụ tiện CNC</a></h3>\n                                        <a href=\"https://fe2tech.com/vi/service/dich-vu-tien-cnc/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/vi/service/dich-vu-mai-dung-cu-cnc/\">Dịch vụ mài dụng cụ CNC</a></h3>\n                                        <a href=\"https://fe2tech.com/vi/service/dich-vu-mai-dung-cu-cnc/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/vi/service/dich-vu-gia-cong-kim-loai-tam/\">Dịch vụ gia công kim loại tấm</a></h3>\n                                        <a href=\"https://fe2tech.com/vi/service/dich-vu-gia-cong-kim-loai-tam/\">Read more</a>\n    <a href=\"/services\">\n                Dịch vụ khác\n    </a>\n            	        		<h3>Có câu hỏi nào không?</h3>\n            	        		Call: 0968860386\n                    <h3>Liên hệ để nhận báo giá:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"hidden\" name=\"_wpcf7_recaptcha_response\" value=\"\" />\n	<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"12\"/></p>\n</form>\n	    <h3>\n        Chúng tôi có quy trình làm việc đơn giản.    </h3>\n		<p>Chúng tôi luôn mang đến cảm giác an tâm về chất lượng và tiến độ.</p>		\n                                                    <h3>Tìm chúng tôi</h3>\n                                                    Chúng tôi hiểu tầm quan trọng của việc xử lý mỗi dự án theo một cách tiếp cận toàn diện.\n                                                    <h3>Kết nối với chúng tôi</h3>\n                                                    Điều làm chúng tôi khác biệt so với các công ty khác là chuyên môn trong việc tạo ra các giải pháp tùy chỉnh.\n                                                    <h3>Thanh toán cho chúng tôi</h3>\n                                                    Chúng tôi khuyến khích mỗi thành viên trong đội ngũ trở thành phiên bản tốt nhất của chính mình, tạo ra một môi trường linh hoạt và hợp tác.\n                                                    <h3>Đạt được ước mơ của bạn</h3>\n                                                    Cốt lõi của mỗi doanh nghiệp là những giải pháp độc đáo, truyền cảm hứng cho sự đổi mới và phát triển.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        Liên hệ với chúng tôi bất cứ lúc nào nếu bạn cần sự giúp đỡ...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"hidden\" name=\"_wpcf7_recaptcha_response\" value=\"\" />\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"230\"/></p>\n</form>','Trang chủ','','publish','closed','closed','','trang-chu','','','2025-03-17 02:55:43','2025-03-17 02:55:43','',0,'https://fe2tech.com/?page_id=2973',1,'page','',0),(2974,1,'2024-12-17 04:27:51','2024-12-17 04:27:51','','Trang chủ','','inherit','closed','closed','','2973-revision-v1','','','2024-12-17 04:27:51','2024-12-17 04:27:51','',2973,'https://fe2tech.com/?p=2974',0,'revision','',0),(2976,1,'2024-12-17 04:41:59','2024-12-17 04:41:59','','Trang chủ','','inherit','closed','closed','','2973-revision-v1','','','2024-12-17 04:41:59','2024-12-17 04:41:59','',2973,'https://fe2tech.com/?p=2976',0,'revision','',0),(2977,1,'2024-12-17 04:42:00','2024-12-17 04:42:00','','Trang chủ','','inherit','closed','closed','','2973-revision-v1','','','2024-12-17 04:42:00','2024-12-17 04:42:00','',2973,'https://fe2tech.com/?p=2977',0,'revision','',0),(2978,1,'2024-12-17 04:42:00','2024-12-17 04:42:00','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        Chúng tôi cung cấp nhiều loại sản phẩm cho ngành công nghiệp cơ khí trên toàn Việt Nam và quốc tế, đặc biệt tại các thị trường trọng điểm như Nhật Bản, Hàn Quốc, Hoa Kỳ và Úc. Chúng tôi cũng có kinh nghiệm xuất khẩu đến các thị trường này.    </h3>\n		<p>Thế mạnh lớn nhất của chúng tôi nằm ở đội ngũ nhân lực trẻ trung, đam mê học hỏi, sáng tạo và tự tin, có khả năng sản xuất đa dạng các sản phẩm cơ khí với chất lượng luôn ổn định.</p>		\n                <a href=\"https://www.youtube.com/watch?v=oVQ4_PIqgz8\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Khách hàng\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Nhân sự\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Số đơn hàng mỗi năm\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>Chúng tôi đã bắt đầu mở một cửa hàng trên Alibaba để kết nối với các đơn hàng từ khắp nơi trên thế giới.</p>		\n													<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />													\n													<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />													\n	    <h3>\n        Chúng tôi nỗ lực trở thành một trong những công ty chế biến cơ khí hàng đầu của Việt Nam, cung cấp ra thị trường quốc tế vào năm 2030. Trong tương lai, chúng tôi hướng đến việc sản xuất các sản phẩm máy móc hoàn chỉnh để giao trực tiếp đến người sử dụng cuối.    </h3>\n		<p>Mục tiêu đạt được vào năm 2026:</p>		\n                                            Đông Á (Nhật Bản, Hàn Quốc, v.v.): Xuất khẩu các linh kiện máy móc thay thế, phụ kiện xe máy và ô tô, phụ kiện ngành nước, khuôn mẫu và các bộ phận cơ khí khác.\n                                        30%\n                                            Châu Âu (Đức, Bulgaria, Hà Lan, v.v.): Sản xuất khuôn jig cho vòng bi ô tô và các bộ phận hộp điện cho máy móc tự động hóa.\n                                        10%\n                                            Hoa Kỳ: Các sản phẩm liên quan đến thiết bị y tế, quang học và thiết bị âm thanh.\n                                        30%\n                                            Úc: Sản phẩm kim loại tấm.\n                                        8%\n                                            Việt Nam: Máy tự động hóa nhỏ; bu lông xe máy và ô tô; sản phẩm trong ngành dầu khí.\n                                        20%\n                                            Các thị trường và sản phẩm khác.\n                                        2%\n	    <h3>\n        Chúng tôi cung cấp dịch vụ trong nhiều lĩnh vực.    </h3>\n		<p>Chúng tôi luôn đáp ứng yêu cầu thiết kế của khách hàng. Ngoại hình và kích thước là những yếu tố chúng tôi coi trọng nhất.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-milling-service/\">CNC Milling Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-milling-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-turning-service/\">CNC Turning Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-turning-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">CNC Tool Grinder Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/sheet-metal-service/\">Sheet Metal Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/sheet-metal-service/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Có câu hỏi nào không?</h3>\n            	        		Call: 0968860386\n                    <h3>Liên hệ để nhận báo giá:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"79\"/></p>\n</form>\n	    <h3>\n        Chúng tôi có quy trình làm việc đơn giản.    </h3>\n		<p>Chúng tôi luôn mang đến cảm giác an tâm về chất lượng và tiến độ.</p>		\n                                                    <h3>Tìm chúng tôi</h3>\n                                                    Chúng tôi hiểu tầm quan trọng của việc xử lý mỗi dự án theo một cách tiếp cận toàn diện.\n                                                    <h3>Kết nối với chúng tôi</h3>\n                                                    Điều làm chúng tôi khác biệt so với các công ty khác là chuyên môn trong việc tạo ra các giải pháp tùy chỉnh.\n                                                    <h3>Thanh toán cho chúng tôi</h3>\n                                                    Chúng tôi khuyến khích mỗi thành viên trong đội ngũ trở thành phiên bản tốt nhất của chính mình, tạo ra một môi trường linh hoạt và hợp tác.\n                                                    <h3>Đạt được ước mơ của bạn</h3>\n                                                    Cốt lõi của mỗi doanh nghiệp là những giải pháp độc đáo, truyền cảm hứng cho sự đổi mới và phát triển.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        Liên hệ với chúng tôi bất cứ lúc nào nếu bạn cần sự giúp đỡ...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"189\"/></p>\n</form>','Trang chủ','','inherit','closed','closed','','2973-revision-v1','','','2024-12-17 04:42:00','2024-12-17 04:42:00','',2973,'https://fe2tech.com/?p=2978',0,'revision','',0),(2979,1,'2024-12-17 04:42:24','2024-12-17 04:42:24','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        Chúng tôi cung cấp nhiều loại sản phẩm cho ngành công nghiệp cơ khí trên toàn Việt Nam và quốc tế, đặc biệt tại các thị trường trọng điểm như Nhật Bản, Hàn Quốc, Hoa Kỳ và Úc. Chúng tôi cũng có kinh nghiệm xuất khẩu đến các thị trường này.    </h3>\n		<p>Thế mạnh lớn nhất của chúng tôi nằm ở đội ngũ nhân lực trẻ trung, đam mê học hỏi, sáng tạo và tự tin, có khả năng sản xuất đa dạng các sản phẩm cơ khí với chất lượng luôn ổn định.</p>		\n                <a href=\"https://www.youtube.com/watch?v=oVQ4_PIqgz8\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Khách hàng\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Nhân sự\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Số đơn hàng mỗi năm\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>Chúng tôi đã bắt đầu mở một cửa hàng trên Alibaba để kết nối với các đơn hàng từ khắp nơi trên thế giới.</p>		\n													<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />													\n													<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />													\n	    <h3>\n        Chúng tôi nỗ lực trở thành một trong những công ty chế biến cơ khí hàng đầu của Việt Nam, cung cấp ra thị trường quốc tế vào năm 2030. Trong tương lai, chúng tôi hướng đến việc sản xuất các sản phẩm máy móc hoàn chỉnh để giao trực tiếp đến người sử dụng cuối.    </h3>\n		<p>Mục tiêu đạt được vào năm 2026:</p>		\n                                            Đông Á (Nhật Bản, Hàn Quốc, v.v.): Xuất khẩu các linh kiện máy móc thay thế, phụ kiện xe máy và ô tô, phụ kiện ngành nước, khuôn mẫu và các bộ phận cơ khí khác.\n                                        30%\n                                            Châu Âu (Đức, Bulgaria, Hà Lan, v.v.): Sản xuất khuôn jig cho vòng bi ô tô và các bộ phận hộp điện cho máy móc tự động hóa.\n                                        10%\n                                            Hoa Kỳ: Các sản phẩm liên quan đến thiết bị y tế, quang học và thiết bị âm thanh.\n                                        30%\n                                            Úc: Sản phẩm kim loại tấm.\n                                        8%\n                                            Việt Nam: Máy tự động hóa nhỏ; bu lông xe máy và ô tô; sản phẩm trong ngành dầu khí.\n                                        20%\n                                            Các thị trường và sản phẩm khác.\n                                        2%\n	    <h3>\n        Chúng tôi cung cấp dịch vụ trong nhiều lĩnh vực.    </h3>\n		<p>Chúng tôi luôn đáp ứng yêu cầu thiết kế của khách hàng. Ngoại hình và kích thước là những yếu tố chúng tôi coi trọng nhất.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-milling-service/\">CNC Milling Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-milling-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-turning-service/\">CNC Turning Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-turning-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">CNC Tool Grinder Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/sheet-metal-service/\">Sheet Metal Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/sheet-metal-service/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Có câu hỏi nào không?</h3>\n            	        		Call: 0968860386\n                    <h3>Liên hệ để nhận báo giá:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"79\"/></p>\n</form>\n	    <h3>\n        Chúng tôi có quy trình làm việc đơn giản.    </h3>\n		<p>Chúng tôi luôn mang đến cảm giác an tâm về chất lượng và tiến độ.</p>		\n                                                    <h3>Tìm chúng tôi</h3>\n                                                    Chúng tôi hiểu tầm quan trọng của việc xử lý mỗi dự án theo một cách tiếp cận toàn diện.\n                                                    <h3>Kết nối với chúng tôi</h3>\n                                                    Điều làm chúng tôi khác biệt so với các công ty khác là chuyên môn trong việc tạo ra các giải pháp tùy chỉnh.\n                                                    <h3>Thanh toán cho chúng tôi</h3>\n                                                    Chúng tôi khuyến khích mỗi thành viên trong đội ngũ trở thành phiên bản tốt nhất của chính mình, tạo ra một môi trường linh hoạt và hợp tác.\n                                                    <h3>Đạt được ước mơ của bạn</h3>\n                                                    Cốt lõi của mỗi doanh nghiệp là những giải pháp độc đáo, truyền cảm hứng cho sự đổi mới và phát triển.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        Liên hệ với chúng tôi bất cứ lúc nào nếu bạn cần sự giúp đỡ...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"189\"/></p>\n</form>','Trang chủ','','inherit','closed','closed','','2973-revision-v1','','','2024-12-17 04:42:24','2024-12-17 04:42:24','',2973,'https://fe2tech.com/?p=2979',0,'revision','',0),(2980,1,'2024-12-17 04:42:25','2024-12-17 04:42:25','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        Chúng tôi cung cấp nhiều loại sản phẩm cho ngành công nghiệp cơ khí trên toàn Việt Nam và quốc tế, đặc biệt tại các thị trường trọng điểm như Nhật Bản, Hàn Quốc, Hoa Kỳ và Úc. Chúng tôi cũng có kinh nghiệm xuất khẩu đến các thị trường này.    </h3>\n		<p>Thế mạnh lớn nhất của chúng tôi nằm ở đội ngũ nhân lực trẻ trung, đam mê học hỏi, sáng tạo và tự tin, có khả năng sản xuất đa dạng các sản phẩm cơ khí với chất lượng luôn ổn định.</p>		\n                <a href=\"https://www.youtube.com/watch?v=oVQ4_PIqgz8\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Khách hàng\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Nhân sự\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Số đơn hàng mỗi năm\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>Chúng tôi đã bắt đầu mở một cửa hàng trên Alibaba để kết nối với các đơn hàng từ khắp nơi trên thế giới.</p>		\n													<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />													\n													<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />													\n	    <h3>\n        Chúng tôi nỗ lực trở thành một trong những công ty chế biến cơ khí hàng đầu của Việt Nam, cung cấp ra thị trường quốc tế vào năm 2030. Trong tương lai, chúng tôi hướng đến việc sản xuất các sản phẩm máy móc hoàn chỉnh để giao trực tiếp đến người sử dụng cuối.    </h3>\n		<p>Mục tiêu đạt được vào năm 2026:</p>		\n                                            Đông Á (Nhật Bản, Hàn Quốc, v.v.): Xuất khẩu các linh kiện máy móc thay thế, phụ kiện xe máy và ô tô, phụ kiện ngành nước, khuôn mẫu và các bộ phận cơ khí khác.\n                                        30%\n                                            Châu Âu (Đức, Bulgaria, Hà Lan, v.v.): Sản xuất khuôn jig cho vòng bi ô tô và các bộ phận hộp điện cho máy móc tự động hóa.\n                                        10%\n                                            Hoa Kỳ: Các sản phẩm liên quan đến thiết bị y tế, quang học và thiết bị âm thanh.\n                                        30%\n                                            Úc: Sản phẩm kim loại tấm.\n                                        8%\n                                            Việt Nam: Máy tự động hóa nhỏ; bu lông xe máy và ô tô; sản phẩm trong ngành dầu khí.\n                                        20%\n                                            Các thị trường và sản phẩm khác.\n                                        2%\n	    <h3>\n        Chúng tôi cung cấp dịch vụ trong nhiều lĩnh vực.    </h3>\n		<p>Chúng tôi luôn đáp ứng yêu cầu thiết kế của khách hàng. Ngoại hình và kích thước là những yếu tố chúng tôi coi trọng nhất.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-milling-service/\">CNC Milling Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-milling-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-turning-service/\">CNC Turning Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-turning-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">CNC Tool Grinder Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/sheet-metal-service/\">Sheet Metal Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/sheet-metal-service/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Có câu hỏi nào không?</h3>\n            	        		Call: 0968860386\n                    <h3>Liên hệ để nhận báo giá:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"79\"/></p>\n</form>\n	    <h3>\n        Chúng tôi có quy trình làm việc đơn giản.    </h3>\n		<p>Chúng tôi luôn mang đến cảm giác an tâm về chất lượng và tiến độ.</p>		\n                                                    <h3>Tìm chúng tôi</h3>\n                                                    Chúng tôi hiểu tầm quan trọng của việc xử lý mỗi dự án theo một cách tiếp cận toàn diện.\n                                                    <h3>Kết nối với chúng tôi</h3>\n                                                    Điều làm chúng tôi khác biệt so với các công ty khác là chuyên môn trong việc tạo ra các giải pháp tùy chỉnh.\n                                                    <h3>Thanh toán cho chúng tôi</h3>\n                                                    Chúng tôi khuyến khích mỗi thành viên trong đội ngũ trở thành phiên bản tốt nhất của chính mình, tạo ra một môi trường linh hoạt và hợp tác.\n                                                    <h3>Đạt được ước mơ của bạn</h3>\n                                                    Cốt lõi của mỗi doanh nghiệp là những giải pháp độc đáo, truyền cảm hứng cho sự đổi mới và phát triển.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        Liên hệ với chúng tôi bất cứ lúc nào nếu bạn cần sự giúp đỡ...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"189\"/></p>\n</form>','Trang chủ','','inherit','closed','closed','','2973-revision-v1','','','2024-12-17 04:42:25','2024-12-17 04:42:25','',2973,'https://fe2tech.com/?p=2980',0,'revision','',0),(2981,1,'2024-12-17 04:42:25','2024-12-17 04:42:25','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        Chúng tôi cung cấp nhiều loại sản phẩm cho ngành công nghiệp cơ khí trên toàn Việt Nam và quốc tế, đặc biệt tại các thị trường trọng điểm như Nhật Bản, Hàn Quốc, Hoa Kỳ và Úc. Chúng tôi cũng có kinh nghiệm xuất khẩu đến các thị trường này.    </h3>\n		<p>Thế mạnh lớn nhất của chúng tôi nằm ở đội ngũ nhân lực trẻ trung, đam mê học hỏi, sáng tạo và tự tin, có khả năng sản xuất đa dạng các sản phẩm cơ khí với chất lượng luôn ổn định.</p>		\n                <a href=\"https://www.youtube.com/watch?v=oVQ4_PIqgz8\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Khách hàng\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Nhân sự\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Số đơn hàng mỗi năm\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>Chúng tôi đã bắt đầu mở một cửa hàng trên Alibaba để kết nối với các đơn hàng từ khắp nơi trên thế giới.</p>		\n													<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />													\n													<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />													\n	    <h3>\n        Chúng tôi nỗ lực trở thành một trong những công ty chế biến cơ khí hàng đầu của Việt Nam, cung cấp ra thị trường quốc tế vào năm 2030. Trong tương lai, chúng tôi hướng đến việc sản xuất các sản phẩm máy móc hoàn chỉnh để giao trực tiếp đến người sử dụng cuối.    </h3>\n		<p>Mục tiêu đạt được vào năm 2026:</p>		\n                                            Đông Á (Nhật Bản, Hàn Quốc, v.v.): Xuất khẩu các linh kiện máy móc thay thế, phụ kiện xe máy và ô tô, phụ kiện ngành nước, khuôn mẫu và các bộ phận cơ khí khác.\n                                        30%\n                                            Châu Âu (Đức, Bulgaria, Hà Lan, v.v.): Sản xuất khuôn jig cho vòng bi ô tô và các bộ phận hộp điện cho máy móc tự động hóa.\n                                        10%\n                                            Hoa Kỳ: Các sản phẩm liên quan đến thiết bị y tế, quang học và thiết bị âm thanh.\n                                        30%\n                                            Úc: Sản phẩm kim loại tấm.\n                                        8%\n                                            Việt Nam: Máy tự động hóa nhỏ; bu lông xe máy và ô tô; sản phẩm trong ngành dầu khí.\n                                        20%\n                                            Các thị trường và sản phẩm khác.\n                                        2%\n	    <h3>\n        Chúng tôi cung cấp dịch vụ trong nhiều lĩnh vực.    </h3>\n		<p>Chúng tôi luôn đáp ứng yêu cầu thiết kế của khách hàng. Ngoại hình và kích thước là những yếu tố chúng tôi coi trọng nhất.</p>		\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Có câu hỏi nào không?</h3>\n            	        		Call: 0968860386\n                    <h3>Liên hệ để nhận báo giá:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"104\"/></p>\n</form>\n	    <h3>\n        Chúng tôi có quy trình làm việc đơn giản.    </h3>\n		<p>Chúng tôi luôn mang đến cảm giác an tâm về chất lượng và tiến độ.</p>		\n                                                    <h3>Tìm chúng tôi</h3>\n                                                    Chúng tôi hiểu tầm quan trọng của việc xử lý mỗi dự án theo một cách tiếp cận toàn diện.\n                                                    <h3>Kết nối với chúng tôi</h3>\n                                                    Điều làm chúng tôi khác biệt so với các công ty khác là chuyên môn trong việc tạo ra các giải pháp tùy chỉnh.\n                                                    <h3>Thanh toán cho chúng tôi</h3>\n                                                    Chúng tôi khuyến khích mỗi thành viên trong đội ngũ trở thành phiên bản tốt nhất của chính mình, tạo ra một môi trường linh hoạt và hợp tác.\n                                                    <h3>Đạt được ước mơ của bạn</h3>\n                                                    Cốt lõi của mỗi doanh nghiệp là những giải pháp độc đáo, truyền cảm hứng cho sự đổi mới và phát triển.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        Liên hệ với chúng tôi bất cứ lúc nào nếu bạn cần sự giúp đỡ...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"205\"/></p>\n</form>','Trang chủ','','inherit','closed','closed','','2973-revision-v1','','','2024-12-17 04:42:25','2024-12-17 04:42:25','',2973,'https://fe2tech.com/?p=2981',0,'revision','',0),(2982,1,'2024-12-17 04:46:33','2024-12-17 04:46:33','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        私たちは、ベトナム全土および世界中の機械産業向けに幅広い製品を提供しており、特に日本、韓国、アメリカ、オーストラリアといった主要市場での取引に力を入れています。また、これらの市場への輸出経験も豊富です。    </h3>\n		<p>私たちの最大の強みは、学ぶこと、革新することに情熱を持ち、自信を持った若い労働力にあります。このチームは、常に安定した高品質の機械製品を多様に製造する能力を備えています。</p>		\n                <a href=\"https://www.youtube.com/watch?v=vUCVqLmXSPM\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    顧客\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    人事\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    年間注文数\n														<a href=\"http://fe2tech.trustpass.alibaba.com/\" target=\"_blank\" rel=\"nofollow noopener\">\n							<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />								</a>\n		<p>私たちは、世界中からの注文と接続するためにAlibabaに店舗を開設し始めました。</p>		\n													<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />													\n													<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />													\n	    <h3>\n        私たちは、2030年までにベトナムの主要な機械加工企業の一つとして、国際市場に供給することを目指しています。将来的には、完成した機械製品を直接エンドユーザーに提供することを目標としています。    </h3>\n		<p>2026年までに達成する目標:</p>		\n                                            東アジア(日本、韓国など):交換用機械部品、オートバイおよび自動車のアクセサリー、水産業用のフィッティング、金型、その他の機械部品の輸出。\n                                        30%\n                                            ヨーロッパ(ドイツ、ブルガリア、オランダなど):自動車用ベアリングの治具および自動化機械の電気ボックス部品の生産。\n                                        10%\n                                            アメリカ合衆国:医療機器、光学機器、音響機器に関連する製品。\n                                        30%\n                                            オーストラリア:板金製品。\n                                        8%\n                                            ベトナム:小型自動化機械、オートバイおよび自動車のボルト、石油およびガス産業の製品。\n                                        20%\n                                            その他の市場と製品。\n                                        2%\n	    <h3>\n        私たちは複数の業界でサービスを提供しています。    </h3>\n		<p>私たちは常に顧客のデザイン要求を満たします。外観と寸法は、最も重要視している要素です。</p>		\n                                                    <h3><a href=\"https://fe2tech.com/ja/service/nc%e3%83%95%e3%83%a9%e3%82%a4%e3%82%b9%e5%8a%a0%e5%b7%a5%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">NCフライス加工サービス</a></h3>\n                                        <a href=\"https://fe2tech.com/ja/service/nc%e3%83%95%e3%83%a9%e3%82%a4%e3%82%b9%e5%8a%a0%e5%b7%a5%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/ja/service/cnc%e6%97%8b%e7%9b%a4%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">CNC旋盤サービス</a></h3>\n                                        <a href=\"https://fe2tech.com/ja/service/cnc%e6%97%8b%e7%9b%a4%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/ja/service/cnc%e3%83%84%e3%83%bc%e3%83%ab%e3%82%b0%e3%83%a9%e3%82%a4%e3%83%b3%e3%83%80%e3%83%bc%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">CNCツールグラインダーサービス</a></h3>\n                                        <a href=\"https://fe2tech.com/ja/service/cnc%e3%83%84%e3%83%bc%e3%83%ab%e3%82%b0%e3%83%a9%e3%82%a4%e3%83%b3%e3%83%80%e3%83%bc%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/ja/service/%e6%9d%bf%e9%87%91%e5%8a%a0%e5%b7%a5%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">板金加工サービス</a></h3>\n                                        <a href=\"https://fe2tech.com/ja/service/%e6%9d%bf%e9%87%91%e5%8a%a0%e5%b7%a5%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">Read more</a>\n    <a href=\"/services\">\n                その他のサービス\n    </a>\n            	        		<h3>質問がありますか?</h3>\n            	        		Call: 0968860386\n                    <h3>見積もりを取得するための連絡先:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"hidden\" name=\"_wpcf7_recaptcha_response\" value=\"\" />\n	<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"125\"/></p>\n</form>\n	    <h3>\n        私たちは簡単な作業手順を持っています。    </h3>\n		<p>私たちは常に品質と進捗において安心感を提供します。</p>		\n                                                    <h3>私たちを探す</h3>\n                                                    私たちは、各プロジェクトを総合的に取り扱う重要性を理解しています。\n                                                    <h3>私たちと接続する</h3>\n                                                    私たちが他のエージェンシーと異なる点は、カスタマイズされたソリューションを作成する専門知識にあります。\n                                                    <h3>私たちに支払う</h3>\n                                                    私たちは、各チームメンバーが自分自身の最高の姿を目指すことを奨励し、柔軟で協力的な環境を育んでいます。\n                                                    <h3>あなたの夢を実現する</h3>\n                                                    どのビジネスにも、革新と進歩を促す独自のソリューションがあります。\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        いつでもどんな助けが必要な場合でも、私たちにご連絡ください...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"hidden\" name=\"_wpcf7_recaptcha_response\" value=\"\" />\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"161\"/></p>\n</form>','ホーム','','publish','closed','closed','','%e3%83%9b%e3%83%bc%e3%83%a0','','','2025-03-17 02:55:54','2025-03-17 02:55:54','',0,'https://fe2tech.com/?page_id=2982',2,'page','',0),(2983,1,'2024-12-17 04:46:33','2024-12-17 04:46:33','','ホーム','','inherit','closed','closed','','2982-revision-v1','','','2024-12-17 04:46:33','2024-12-17 04:46:33','',2982,'https://fe2tech.com/?p=2983',0,'revision','',0),(2984,1,'2024-12-17 04:52:23','2024-12-17 04:52:23','','ホーム','','inherit','closed','closed','','2982-revision-v1','','','2024-12-17 04:52:23','2024-12-17 04:52:23','',2982,'https://fe2tech.com/?p=2984',0,'revision','',0),(2985,1,'2024-12-17 04:52:24','2024-12-17 04:52:24','','ホーム','','inherit','closed','closed','','2982-revision-v1','','','2024-12-17 04:52:24','2024-12-17 04:52:24','',2982,'https://fe2tech.com/?p=2985',0,'revision','',0),(2986,1,'2024-12-17 04:52:24','2024-12-17 04:52:24','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        私たちは、ベトナム全土および世界中の機械産業向けに幅広い製品を提供しており、特に日本、韓国、アメリカ、オーストラリアといった主要市場での取引に力を入れています。また、これらの市場への輸出経験も豊富です。    </h3>\n		<p>私たちの最大の強みは、学ぶこと、革新することに情熱を持ち、自信を持った若い労働力にあります。このチームは、常に安定した高品質の機械製品を多様に製造する能力を備えています。</p>		\n                <a href=\"https://www.youtube.com/watch?v=oVQ4_PIqgz8\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    顧客\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    人事\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    年間注文数\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>私たちは、世界中からの注文と接続するためにAlibabaに店舗を開設し始めました。</p>		\n													<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />													\n													<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />													\n	    <h3>\n        私たちは、2030年までにベトナムの主要な機械加工企業の一つとして、国際市場に供給することを目指しています。将来的には、完成した機械製品を直接エンドユーザーに提供することを目標としています。    </h3>\n		<p>2026年までに達成する目標:</p>		\n                                            東アジア(日本、韓国など):交換用機械部品、オートバイおよび自動車のアクセサリー、水産業用のフィッティング、金型、その他の機械部品の輸出。\n                                        30%\n                                            ヨーロッパ(ドイツ、ブルガリア、オランダなど):自動車用ベアリングの治具および自動化機械の電気ボックス部品の生産。\n                                        10%\n                                            アメリカ合衆国:医療機器、光学機器、音響機器に関連する製品。\n                                        30%\n                                            オーストラリア:板金製品。\n                                        8%\n                                            ベトナム:小型自動化機械、オートバイおよび自動車のボルト、石油およびガス産業の製品。\n                                        20%\n                                            その他の市場と製品。\n                                        2%\n	    <h3>\n        私たちは複数の業界でサービスを提供しています。    </h3>\n		<p>私たちは常に顧客のデザイン要求を満たします。外観と寸法は、最も重要視している要素です。</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-milling-service/\">CNC Milling Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-milling-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-turning-service/\">CNC Turning Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-turning-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">CNC Tool Grinder Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/sheet-metal-service/\">Sheet Metal Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/sheet-metal-service/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>質問がありますか?</h3>\n            	        		Call: 0968860386\n                    <h3>見積もりを取得するための連絡先:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"209\"/></p>\n</form>\n	    <h3>\n        私たちは簡単な作業手順を持っています。    </h3>\n		<p>私たちは常に品質と進捗において安心感を提供します。</p>		\n                                                    <h3>私たちを探す</h3>\n                                                    私たちは、各プロジェクトを総合的に取り扱う重要性を理解しています。\n                                                    <h3>私たちと接続する</h3>\n                                                    私たちが他のエージェンシーと異なる点は、カスタマイズされたソリューションを作成する専門知識にあります。\n                                                    <h3>私たちに支払う</h3>\n                                                    私たちは、各チームメンバーが自分自身の最高の姿を目指すことを奨励し、柔軟で協力的な環境を育んでいます。\n                                                    <h3>あなたの夢を実現する</h3>\n                                                    どのビジネスにも、革新と進歩を促す独自のソリューションがあります。\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        いつでもどんな助けが必要な場合でも、私たちにご連絡ください...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"185\"/></p>\n</form>','ホーム','','inherit','closed','closed','','2982-revision-v1','','','2024-12-17 04:52:24','2024-12-17 04:52:24','',2982,'https://fe2tech.com/?p=2986',0,'revision','',0),(2987,1,'2024-12-17 06:24:54','2024-12-17 06:24:54','Load more','Dịch vụ','','publish','closed','closed','','dich-vu','','','2024-12-17 06:25:18','2024-12-17 06:25:18','',0,'https://fe2tech.com/?page_id=2987',7,'page','',0),(2988,1,'2024-12-17 06:24:08','2024-12-17 06:24:08','','Elementor #2987','','inherit','closed','closed','','2987-revision-v1','','','2024-12-17 06:24:08','2024-12-17 06:24:08','',2987,'https://fe2tech.com/?p=2988',0,'revision','',0),(2989,1,'2024-12-17 06:24:54','2024-12-17 06:24:54','','Dịch vụ','','inherit','closed','closed','','2987-revision-v1','','','2024-12-17 06:24:54','2024-12-17 06:24:54','',2987,'https://fe2tech.com/?p=2989',0,'revision','',0),(2990,1,'2024-12-17 06:25:17','2024-12-17 06:25:17','','Dịch vụ','','inherit','closed','closed','','2987-revision-v1','','','2024-12-17 06:25:17','2024-12-17 06:25:17','',2987,'https://fe2tech.com/?p=2990',0,'revision','',0),(2991,1,'2024-12-17 06:25:18','2024-12-17 06:25:18','','Dịch vụ','','inherit','closed','closed','','2987-revision-v1','','','2024-12-17 06:25:18','2024-12-17 06:25:18','',2987,'https://fe2tech.com/?p=2991',0,'revision','',0),(2992,1,'2024-12-17 06:25:18','2024-12-17 06:25:18','Load more','Dịch vụ','','inherit','closed','closed','','2987-revision-v1','','','2024-12-17 06:25:18','2024-12-17 06:25:18','',2987,'https://fe2tech.com/?p=2992',0,'revision','',0),(2993,1,'2024-12-17 06:34:40','2024-12-17 06:34:40','Load more','サービス','','publish','closed','closed','','%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9','','','2024-12-17 06:35:08','2024-12-17 06:35:08','',0,'https://fe2tech.com/?page_id=2993',8,'page','',0),(2994,1,'2024-12-17 06:34:40','2024-12-17 06:34:40','','サービス','','inherit','closed','closed','','2993-revision-v1','','','2024-12-17 06:34:40','2024-12-17 06:34:40','',2993,'https://fe2tech.com/?p=2994',0,'revision','',0),(2995,1,'2024-12-17 06:35:07','2024-12-17 06:35:07','','サービス','','inherit','closed','closed','','2993-revision-v1','','','2024-12-17 06:35:07','2024-12-17 06:35:07','',2993,'https://fe2tech.com/?p=2995',0,'revision','',0),(2996,1,'2024-12-17 06:35:08','2024-12-17 06:35:08','','サービス','','inherit','closed','closed','','2993-revision-v1','','','2024-12-17 06:35:08','2024-12-17 06:35:08','',2993,'https://fe2tech.com/?p=2996',0,'revision','',0),(2997,1,'2024-12-17 06:35:08','2024-12-17 06:35:08','Load more','サービス','','inherit','closed','closed','','2993-revision-v1','','','2024-12-17 06:35:08','2024-12-17 06:35:08','',2993,'https://fe2tech.com/?p=2997',0,'revision','',0),(2998,1,'2024-12-17 06:35:47','2024-12-17 06:35:47','<h5>\n        Thế mạnh của chúng tôi nằm ở sản xuất hàng loạt nhôm và thép. Chúng tôi xuất sắc trong việc đổi mới và cung cấp các sản phẩm có giá trị cao cho khách hàng.    </h5>\n			Ô tô &amp; Xe máy\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWI2Mjc3NTE2NjIyMTQxYjY4MTc4ZjY2YmViYWFkZDkzby5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Ab6277516622141b68178f66bebaadd93o.jpg_350x350.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Ab6277516622141b68178f66bebaadd93o.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTQ5NjllZjIzNDNhMjQ0NjA4Y2M1MTFkMWU3YmUyOGUyWC5wbmdfMzUweDM1MC5wbmciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A4969ef2343a244608cc511d1e7be28e2X.png_350x350.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A4969ef2343a244608cc511d1e7be28e2X.png_350x350.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvSDliZTY0NjE0OTRjZjRmZTc5OTgxOTJkYzQ4MzA2NmM5di5wbmdfMzUweDM1MC5wbmciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/H9be6461494cf4fe7998192dc483066c9v.png_350x350.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/H9be6461494cf4fe7998192dc483066c9v.png_350x350.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvSDRjYmFjNDdhZTZjZjQ3MDViOTY2NjY4Y2ExYWJhZDUwOS5wbmdfMzUweDM1MC5wbmciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/H4cbac47ae6cf4705b966668ca1abad509.png_350x350.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/H4cbac47ae6cf4705b966668ca1abad509.png_350x350.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvSDZjMDBiZDIzN2Q4YjQ2ZDRiMDZhMWNjNmVmNzZhY2NmRS5wbmdfMzUweDM1MC5wbmciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/H6c00bd237d8b46d4b06a1cc6ef76accfE.png_350x350.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/H6c00bd237d8b46d4b06a1cc6ef76accfE.png_350x350.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvSDcxYWJlN2E3NjNhMzQ1YWU4N2RjZjcwYzI1YTcwYTMyTS5wbmdfMzUweDM1MC5wbmciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/H71abe7a763a345ae87dcf70c25a70a32M.png_350x350.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/H71abe7a763a345ae87dcf70c25a70a32M.png_350x350.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvMi5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/2.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/2.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTA0NWZlNDUzNDU2NjQzOTRhMmE4MDQ5OWI0YmQyMTE3aS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A045fe45345664394a2a80499b4bd2117i.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A045fe45345664394a2a80499b4bd2117i.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTg2ZTAzOWRmMWM5ZDRlODA5ZWE1M2RmZDY3NmJhNjdhTy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A86e039df1c9d4e809ea53dfd676ba67aO.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A86e039df1c9d4e809ea53dfd676ba67aO.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTc4NmRjNDI3YWY0NjQ1N2VhOTIzYzQxZWE3Njg4ZjY3US5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A786dc427af46457ea923c41ea7688f67Q.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A786dc427af46457ea923c41ea7688f67Q.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvNi5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/6.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/6.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTJlZDVhNWMzZjhmNTQ0Yzg5MTBhM2ZlMjlkYTVlMjk4NC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A2ed5a5c3f8f544c8910a3fe29da5e2984.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A2ed5a5c3f8f544c8910a3fe29da5e2984.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTNjODA2NDY4NTRjZDQ0MDFiNmI3MzdhODBlOGUyOWYyWi5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A3c80646854cd4401b6b737a80e8e29f2Z.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A3c80646854cd4401b6b737a80e8e29f2Z.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTUzZjk0ZmZmYTBlNjRiYThhNDczMzBlODVhMTc5MjE0bC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A53f94fffa0e64ba8a47330e85a179214l.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A53f94fffa0e64ba8a47330e85a179214l.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWE1NTlhYWE4ZThkNDQ4NjhiNzAwOTY3ZTE4MjYzMWUwTy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Aa559aaa8e8d44868b700967e182631e0O.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Aa559aaa8e8d44868b700967e182631e0O.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvNC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/4.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/4.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTI5MjA5ZmNhMTRlMzQ5MTI4NmE3YWUyYTdkNTM1MDY2dC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A29209fca14e3491286a7ae2a7d535066t.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A29209fca14e3491286a7ae2a7d535066t.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWZkNmU1MDE4ZDU0YTRjMzE5YjQ5NDFhZjU3ZTM4ZmMxZS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Afd6e5018d54a4c319b4941af57e38fc1e.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Afd6e5018d54a4c319b4941af57e38fc1e.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTg2MjZkZjVhZTg5YzQ1ODQ4NGNiZGVhYjZiMGEyNzY4RS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A8626df5ae89c458484cbdeab6b0a2768E.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A8626df5ae89c458484cbdeab6b0a2768E.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWVjMmE0Y2Q4OTVlNjQ4YjZiYzcxNzRkODY0ZTEwMzMyOS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Aec2a4cd895e648b6bc7174d864e103329.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Aec2a4cd895e648b6bc7174d864e103329.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvMS5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/1.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTVmYTcxYjBlZGRmNjQ4MDQ5YzVmMzNkMzMxNzM4NDYwbS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A5fa71b0eddf648049c5f33d331738460m.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A5fa71b0eddf648049c5f33d331738460m.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTliYzE4NzI2OTdkNjQ5ZTdhMjhkMTRjNDhjZDZiNzFicS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A9bc1872697d649e7a28d14c48cd6b71bq.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A9bc1872697d649e7a28d14c48cd6b71bq.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWQwYzc4MmI4NDYxNTQ4NGQ4MzAzYWQ5NjRjZDMwMmE0Qy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Ad0c782b84615484d8303ad964cd302a4C.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Ad0c782b84615484d8303ad964cd302a4C.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWVjM2Y0NGQyYzBjZjQ1MzY4NzBiMTkwOTdiNTAzNWY0QS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Aec3f44d2c0cf4536870b19097b5035f4A.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Aec3f44d2c0cf4536870b19097b5035f4A.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvOC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/8.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/8.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTVkZjYxOWNlODllYzQyMTg5YTVjNGQwNWJiYmE0ZjJkdy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A5df619ce89ec42189a5c4d05bbba4f2dw.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A5df619ce89ec42189a5c4d05bbba4f2dw.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTkyMDcwMTU1OThhZTQ3ZTRiYTU3ZDVkNjc1NWE3OTQ1Si5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A9207015598ae47e4ba57d5d6755a7945J.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A9207015598ae47e4ba57d5d6755a7945J.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWE2NzUxNGNhMTUzYTQzMjA4NjEyNjExYWYxNWFlNjg5dC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Aa67514ca153a43208612611af15ae689t.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Aa67514ca153a43208612611af15ae689t.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWM4YzU3YWY1N2ZjMDRhOWI4YWZiY2Y1MjE0ZDhiMTI1YS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Ac8c57af57fc04a9b8afbcf5214d8b125a.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Ac8c57af57fc04a9b8afbcf5214d8b125a.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWVhMWEyZWE2YzlkMDRiNzg5NzdkMWU4YzkwN2U3MjFjUi5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Aea1a2ea6c9d04b78977d1e8c907e721cR.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Aea1a2ea6c9d04b78977d1e8c907e721cR.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvNS5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/5.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/5.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvNy5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/7.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/7.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTRmYTIyYjNkYjQ3MDQxNDVhOWM4ZjJiNmQ0MTNiNGI3WS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A4fa22b3db4704145a9c8f2b6d413b4b7Y.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A4fa22b3db4704145a9c8f2b6d413b4b7Y.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQThjZmExNTRjYTcwYTQ2YzU5NjVlOTkzMjU1YjUzZWNiZy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A8cfa154ca70a46c5965e993255b53ecbg.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A8cfa154ca70a46c5965e993255b53ecbg.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTk2N2M2MzRhNTE3YzQ4ZjM4YzIzZDQ3NjZkYjViYmExYS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A967c634a517c48f38c23d4766db5bba1a.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A967c634a517c48f38c23d4766db5bba1a.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTQ2MjQxM2I2ZGUyYjQwMWJhNjBlOTliYmUxZDE1ZTMzSy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A462413b6de2b401ba60e99bbe1d15e33K.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A462413b6de2b401ba60e99bbe1d15e33K.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTY2MTM5OTE0MmE3MjQ3Mjc4YmJmNjlhOWQ2MDA3NTU2Vy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A661399142a7247278bbf69a9d6007556W.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A661399142a7247278bbf69a9d6007556W.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvMTAuanBnIiwic2xpZGVzaG93IjoiZTRlZWI1NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/10.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/10.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTE2ZWI3MWY1NDZjNDRjNGJhMDBjNmFmZTQ2NDY0ZDU5My5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A16eb71f546c44c4ba00c6afe46464d593.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A16eb71f546c44c4ba00c6afe46464d593.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTcyYTIxYmE5NjljODRiOThiNjNiOTg1MzgwYjk3ZWY1Ty5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A72a21ba969c84b98b63b985380b97ef5O.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A72a21ba969c84b98b63b985380b97ef5O.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTk5NTc0ZWJlMWE2YzQzMmFiZWJiOTE2ODBlM2UyMjdlMC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A99574ebe1a6c432abebb91680e3e227e0.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A99574ebe1a6c432abebb91680e3e227e0.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWM2ZDlhM2I3OWE5MDRlZWI5YzkyNWFmYTM3NGVjNTNhQS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Ac6d9a3b79a904eeb9c925afa374ec53aA.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Ac6d9a3b79a904eeb9c925afa374ec53aA.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWRlZjA1YzMyMTIxOTRmMjU5ZjE1NTZjZDUwODFhYjNlZy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Adef05c3212194f259f1556cd5081ab3eg.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Adef05c3212194f259f1556cd5081ab3eg.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvMy5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/3.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/3.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvOS5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/9.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/9.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTI2OGFhOGY5YjY1YzRjZGY5ZjQ1ZTU5NGYyY2Q4YWQ0TS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A268aa8f9b65c4cdf9f45e594f2cd8ad4M.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A268aa8f9b65c4cdf9f45e594f2cd8ad4M.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTg2NDQzMmYyNTcxNzQzNjg5MzQyYWUxNzNlZTlkYzlmZC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A864432f2571743689342ae173ee9dc9fd.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A864432f2571743689342ae173ee9dc9fd.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWJkNDM4NTFjOTI2NTRiZDk5Y2ZkY2E0NWQ4OTZmYmNiQi5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Abd43851c92654bd99cfdca45d896fbcbB.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Abd43851c92654bd99cfdca45d896fbcbB.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWNkZDEyMjYyOThkZDQ2MTNhYmYwMjFiZGNhYWQzMjBiMC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Acdd1226298dd4613abf021bdcaad320b0.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Acdd1226298dd4613abf021bdcaad320b0.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWU5MWJmN2Y1MWRiMzQwMmViYWZmNjEwYzI5OWU5YWFjRi5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Ae91bf7f51db3402ebaff610c299e9aacF.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Ae91bf7f51db3402ebaff610c299e9aacF.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTA1ZjE4ZDQ3ZTcwOTQ4YWU4Nzk1MTExZDA1NWY0MmZhMi5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A05f18d47e70948ae8795111d055f42fa2.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A05f18d47e70948ae8795111d055f42fa2.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTVjMzc3OTJmMzg0MzQzODhhMDJhMDQ3OWZjYmM0MTIzVC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A5c37792f38434388a02a0479fcbc4123T.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A5c37792f38434388a02a0479fcbc4123T.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQThjNDIwOTkyZjQ3NzQ1NTA5ZjRmMjkyYWM3YmQyMjU4SC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A8c420992f47745509f4f292ac7bd2258H.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A8c420992f47745509f4f292ac7bd2258H.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTEwMDFlNjNlYTU5MTQ5ZjhhODFhYmI5MmQ1ZDVmZTcxMy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A1001e63ea59149f8a81abb92d5d5fe713.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A1001e63ea59149f8a81abb92d5d5fe713.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTM2MzQ2Zjg4MWIxMDQ5OTZiNmMwNzBiNWQyY2ViZmY4dS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A36346f881b104996b6c070b5d2cebff8u.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A36346f881b104996b6c070b5d2cebff8u.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTE1NzE4M2MwN2E3NjRlYjg5NTdiYzRjZDEzOTgyODA4aS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A157183c07a764eb8957bc4cd13982808i.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A157183c07a764eb8957bc4cd13982808i.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			Các bộ phận gia công CNC\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"f3f0dbe\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rNS5qcGciLCJzbGlkZXNob3ciOiJmM2YwZGJlIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok5.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok5.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"f3f0dbe\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rNC5wbmciLCJzbGlkZXNob3ciOiJmM2YwZGJlIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok4.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok4.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"f3f0dbe\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW1hY2hpbmUyMi5hdmlmIiwic2xpZGVzaG93IjoiZjNmMGRiZSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-machine22.avif\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-machine22.avif\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"f3f0dbe\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW1hY2hpbmUzLmpwZyIsInNsaWRlc2hvdyI6ImYzZjBkYmUifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-machine3.jpg\'><img width=\"150\" height=\"100\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-machine3.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"f3f0dbe\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rMy5wbmciLCJzbGlkZXNob3ciOiJmM2YwZGJlIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok3.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok3.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"f3f0dbe\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rMS5wbmciLCJzbGlkZXNob3ciOiJmM2YwZGJlIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok1.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok1.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"f3f0dbe\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rMi5wbmciLCJzbGlkZXNob3ciOiJmM2YwZGJlIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok2.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok2.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"f3f0dbe\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rNy5wbmciLCJzbGlkZXNob3ciOiJmM2YwZGJlIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok7.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok7.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"f3f0dbe\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rOS5qcGciLCJzbGlkZXNob3ciOiJmM2YwZGJlIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok9.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok9.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"f3f0dbe\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rOC5qcGciLCJzbGlkZXNob3ciOiJmM2YwZGJlIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok8.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok8.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"f3f0dbe\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejU3MDk0NDM0NzY3OTdfY2IzZTllMGQ1OTZhZDYzMzEzNjZiOGE3MTFmNDY5MjYuanBnIiwic2xpZGVzaG93IjoiZjNmMGRiZSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z5709443476797_cb3e9e0d596ad6331366b8a711f46926.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z5709443476797_cb3e9e0d596ad6331366b8a711f46926.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			Kim loại tấm &amp; Gia công\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"804badd\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWwxLmpwZyIsInNsaWRlc2hvdyI6IjgwNGJhZGQifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal1.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"804badd\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWwzLmpwZyIsInNsaWRlc2hvdyI6IjgwNGJhZGQifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal3.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal3.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"804badd\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw0LmpwZyIsInNsaWRlc2hvdyI6IjgwNGJhZGQifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal4.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal4.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"804badd\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw1LmpwZyIsInNsaWRlc2hvdyI6IjgwNGJhZGQifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal5.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal5.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"804badd\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw3LmpwZyIsInNsaWRlc2hvdyI6IjgwNGJhZGQifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal7.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal7.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"804badd\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw4LmpwZyIsInNsaWRlc2hvdyI6IjgwNGJhZGQifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal8.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal8.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"804badd\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw5LmpwZyIsInNsaWRlc2hvdyI6IjgwNGJhZGQifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal9.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal9.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"804badd\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWwxMC5qcGciLCJzbGlkZXNob3ciOiI4MDRiYWRkIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal10.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal10.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"804badd\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWwyLnBuZyIsInNsaWRlc2hvdyI6IjgwNGJhZGQifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal2.png\'><img width=\"84\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal2.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"804badd\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw2LmpwZyIsInNsaWRlc2hvdyI6IjgwNGJhZGQifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal6.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal6.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			Linh kiện khuôn &amp; khuôn dập\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"51068f5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzYxNjUzNzJfODI1NjkzMjRkZTFjOGZjYzM3NmNjMGU3MzdjMDUyMGUuanBnIiwic2xpZGVzaG93IjoiNTEwNjhmNSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"51068f5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzY0NTU3NzVfOTdhOTM3ODA3YzgwN2JmNzEzNjk0MTlhMGE1ZDNkMmMuanBnIiwic2xpZGVzaG93IjoiNTEwNjhmNSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\'><img width=\"68\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"51068f5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzU4OTM2OTJfNDhmNGE5ZjdjN2E5ZDA1ZGMwMzdhODBhYzFlNTc4MmIuanBnIiwic2xpZGVzaG93IjoiNTEwNjhmNSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"51068f5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzYwMDk1MTRfYWQ5MDg4N2YyNWQ3MzRlYzJkMjFkOGE2YTYzNGZmMmQuanBnIiwic2xpZGVzaG93IjoiNTEwNjhmNSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"51068f5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzY3MjE1ODZfMTZiOTE5ODQyMGIzOTlmOWQ4MmMwNThkOTA4MmEzZTAuanBnIiwic2xpZGVzaG93IjoiNTEwNjhmNSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"51068f5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzYxMTA0MjZfYzNlY2UzZWM1NmY5ZThjYzBlNWM5YTk4Zjk3OTJiZmMuanBnIiwic2xpZGVzaG93IjoiNTEwNjhmNSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			Đinh ốc &amp; Bu lông công nghiệp\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"edd871c\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvSU1HXzEyMzcuanBlZyIsInNsaWRlc2hvdyI6ImVkZDg3MWMifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/IMG_1237.jpeg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/IMG_1237.jpeg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"edd871c\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvRFNDMDA4MjIuanBnIiwic2xpZGVzaG93IjoiZWRkODcxYyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/DSC00822.jpg\'><img width=\"150\" height=\"100\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/DSC00822.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			Dụng cụ\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1583ea9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwMTgzMzRfMTdjNWZhYzk2ZmIyODQzZDc0YTc2Y2M3OWY5YjRmNWMuanBnIiwic2xpZGVzaG93IjoiMTU4M2VhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\'><img width=\"150\" height=\"135\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1583ea9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwMzczNTNfZGI4NzczMmIzZWE5ZDkzNTM2YmNkM2FlYzY0ODM1YTcuanBnIiwic2xpZGVzaG93IjoiMTU4M2VhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1583ea9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNTkxNjJfMDUzYjM2NGFiNzYxZGM1YTQ0Mjc5ZmFmNjQzOTUzMjQuanBnIiwic2xpZGVzaG93IjoiMTU4M2VhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\'><img width=\"70\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1583ea9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNzgzNzJfNTBhYmNlNTI0OWM4YWNkY2ZiZGY4YTA2MzQ4OWUxODYuanBnIiwic2xpZGVzaG93IjoiMTU4M2VhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1583ea9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNzg1NzBfMGFiNThiNDZiZjY4M2RmNmVjZGIyYzJkODc5NDViYTYuanBnIiwic2xpZGVzaG93IjoiMTU4M2VhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\'><img width=\"150\" height=\"129\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1583ea9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk2ODQ5NDkwODZfYjI5ZmRiNTAxMTRhMTk2Y2MzZmRjYzllMTJjYWYxMDUuanBnIiwic2xpZGVzaG93IjoiMTU4M2VhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\'><img width=\"150\" height=\"128\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1583ea9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk2ODQ5NDY2NDFfMTUwMGZiZTE2ZmVjM2ExNGVhZGI4ZTRhZWQxY2Y2M2YuanBnIiwic2xpZGVzaG93IjoiMTU4M2VhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			Đồ gá\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"38c84c0\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NDY1OTEzMzg2ODdfZmE1MTRlMTY0ZjJlZTk5NjFjZmVlY2U5YjJhMjk2MmUuanBnIiwic2xpZGVzaG93IjoiMzhjODRjMCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"38c84c0\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTE0ODI0OTc5ODFfNGZlOGQ1MmM3N2ZiOTcwYWNjYWNhOTkzMTFiM2U1YjguanBnIiwic2xpZGVzaG93IjoiMzhjODRjMCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"38c84c0\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNTQzNzc3MTM5OTRfNzMxZjNhYzFmN2YzMjMyNjExMWE0MWY2N2Q0YTJlMzMuanBnIiwic2xpZGVzaG93IjoiMzhjODRjMCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"38c84c0\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE2NTM3NjdfNzk3Y2FkYTk3Yjk4NjQyZTYyYzkxODU3YzYwYjViNDQuanBnIiwic2xpZGVzaG93IjoiMzhjODRjMCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"38c84c0\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NDY1OTEzNDkxOTRfZDUwMTBkMTcwMGM3Y2ViNDkxYjk3OGIwMWJlM2RkMjguanBnIiwic2xpZGVzaG93IjoiMzhjODRjMCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>','Sản phẩm','','publish','closed','closed','','san-pham','','','2025-03-17 03:20:09','2025-03-17 03:20:09','',0,'https://fe2tech.com/?page_id=2998',4,'page','',0),(2999,1,'2024-12-17 06:35:47','2024-12-17 06:35:47','','Sản phẩm','','inherit','closed','closed','','2998-revision-v1','','','2024-12-17 06:35:47','2024-12-17 06:35:47','',2998,'https://fe2tech.com/?p=2999',0,'revision','',0),(3000,1,'2024-12-17 06:38:03','2024-12-17 06:38:03','','Sản phẩm','','inherit','closed','closed','','2998-revision-v1','','','2024-12-17 06:38:03','2024-12-17 06:38:03','',2998,'https://fe2tech.com/?p=3000',0,'revision','',0),(3001,1,'2024-12-17 06:38:04','2024-12-17 06:38:04','','Sản phẩm','','inherit','closed','closed','','2998-revision-v1','','','2024-12-17 06:38:04','2024-12-17 06:38:04','',2998,'https://fe2tech.com/?p=3001',0,'revision','',0),(3002,1,'2024-12-17 06:38:04','2024-12-17 06:38:04','<h5>\n        Thế mạnh của chúng tôi nằm ở sản xuất hàng loạt nhôm và thép. Chúng tôi xuất sắc trong việc đổi mới và cung cấp các sản phẩm có giá trị cao cho khách hàng.    </h5>\n			Hàn\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDk5NjUxOTZfODJmZDc2ZGRiYmYzOGQ2NGRhZThhZjExYjIxNTM3YjkuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074649965196_82fd76ddbbf38d64dae8af11b21537b9.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074649965196_82fd76ddbbf38d64dae8af11b21537b9.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY2NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NTI3MjMyMTJfODc3MGYwMjhmZjY0NmYwMTRmMWU5ZjZlZmUzNDk2MmUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074652723212_8770f028ff646f014f1e9f6efe34962e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074652723212_8770f028ff646f014f1e9f6efe34962e.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA5Mzk3MThfYjBmZjZhY2FkMTRiMmFiNWVkMTU4MTcxYzc2ODMzZjkuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640939718_b0ff6acad14b2ab5ed158171c76833f9.jpg\'><img width=\"84\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640939718_b0ff6acad14b2ab5ed158171c76833f9.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDEyOTMxMTNfYjRiMTg2YzY3YjZlNzgyOWRkMmE5MWQ3MzBjZjlhYTcuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641293113_b4b186c67b6e7829dd2a91d730cf9aa7.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641293113_b4b186c67b6e7829dd2a91d730cf9aa7.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY2OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDI3NjM1ODdfMjFlY2NlNWQ0YWNjZjM3MTM1OGViNGNiZDczYzgwMGQuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074642763587_21ecce5d4accf371358eb4cbd73c800d.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074642763587_21ecce5d4accf371358eb4cbd73c800d.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY2OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDI4NDk4NDhfMTBiNTY3MDUxMjA5NmU2NTQ3NDhlNTdiMjRhMDRhZmUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074642849848_10b5670512096e654748e57b24a04afe.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074642849848_10b5670512096e654748e57b24a04afe.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA3NTg4ODNfNjQ4YTA0MmY0YjY0MGQwZjU3YTQ0NDFkZDIxMDk1NzAuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640758883_648a042f4b640d0f57a4441dd2109570.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640758883_648a042f4b640d0f57a4441dd2109570.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA4NDkyMzdfZTc2OTliMWJjNmUzOGUwYmY2NWViM2JjYTI4YWU4Y2EuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640849237_e7699b1bc6e38e0bf65eb3bca28ae8ca.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640849237_e7699b1bc6e38e0bf65eb3bca28ae8ca.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDEwNTIwNzBfOWVmYmMxNTg2Y2I1ZTk1Y2M1NGI4NDIxYTYzZjM4MGUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641052070_9efbc1586cb5e95cc54b8421a63f380e.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641052070_9efbc1586cb5e95cc54b8421a63f380e.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDExNDUyNzNfN2JlNWRmM2UxNzc5YWEwNGU4OTBlNDBjYzI0M2NkZWUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641145273_7be5df3e1779aa04e890e40cc243cdee.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641145273_7be5df3e1779aa04e890e40cc243cdee.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA2NTMyODVfNWE4N2FkZjU3Y2UwYzQxODZmZTRmYjE1NzllMzU3YjUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640653285_5a87adf57ce0c4186fe4fb1579e357b5.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640653285_5a87adf57ce0c4186fe4fb1579e357b5.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDExNzM4MjZfNDVhZTczN2Y3MGRmYjJkMzY1YWJiMzk3ZjEzOWQ3MDguanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641173826_45ae737f70dfb2d365abb397f139d708.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641173826_45ae737f70dfb2d365abb397f139d708.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			Khuôn\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY1NzU1NzhfZTBhNGY1NDczODQzZTU4ZWUxYTc5OTg5ZjM2N2FkYTkuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736575578_e0a4f5473843e58ee1a79989f367ada9.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736575578_e0a4f5473843e58ee1a79989f367ada9.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY3MjE1ODZfMTZiOTE5ODQyMGIzOTlmOWQ4MmMwNThkOTA4MmEzZTAuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUyMTk2NzlfOTFhNmY2OTkzMTQ2OTA2Zjg0NjViNDNkZGQwYzJiM2MuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735219679_91a6f6993146906f8465b43ddd0c2b3c.jpg\'><img width=\"68\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735219679_91a6f6993146906f8465b43ddd0c2b3c.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY3NjE0NTRfYjk4ZDQ2OGIxMzNhYzU5ZWJiZjVlNjJiNjkzNDYyYTQuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736761454_b98d468b133ac59ebbf5e62b693462a4.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736761454_b98d468b133ac59ebbf5e62b693462a4.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY3ODQzMzVfZjkzYmM3ODIwY2ZkYzBiMDE1YzgyMjRiOWExYWNlMTAuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736784335_f93bc7820cfdc0b015c8224b9a1ace10.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736784335_f93bc7820cfdc0b015c8224b9a1ace10.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjkyMTk5NDEzNDlfYjA5NTRlNDRhMjVhN2QxNTQzZWIzM2NlZWFlMjBlZmIuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069219941349_b0954e44a25a7d1543eb33ceeae20efb.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069219941349_b0954e44a25a7d1543eb33ceeae20efb.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUzNDMyMDFfZDI5MjJhYTE2ODBjNTdiZmUyZGE5YWFiYTEyMWNhYTYuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735343201_d2922aa1680c57bfe2da9aaba121caa6.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735343201_d2922aa1680c57bfe2da9aaba121caa6.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU0NDE4ODVfMDg4ZGQ0MTdiNjU5NzgzMzc2YWRmZWIwMDZkMTgxODAuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735441885_088dd417b659783376adfeb006d18180.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735441885_088dd417b659783376adfeb006d18180.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU1OTgxMDFfMGZkZDBhNzczYTIyZDZhZjkyZjY5NGQ3ODY2YjJhNWEuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735598101_0fdd0a773a22d6af92f694d7866b2a5a.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735598101_0fdd0a773a22d6af92f694d7866b2a5a.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU2MzQ2MzJfZGEzZGYxMWNjMWRmYTk3OGM1YjcwZjJlNDQ0MDQ3MTIuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735634632_da3df11cc1dfa978c5b70f2e44404712.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735634632_da3df11cc1dfa978c5b70f2e44404712.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU2OTM5ODdfYmY3MzQ3ZjUzM2VjNzUwYTJjNGY5ZGYxNzYzYjg4ODEuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735693987_bf7347f533ec750a2c4f9df1763b8881.jpg\'><img width=\"84\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735693987_bf7347f533ec750a2c4f9df1763b8881.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU4MzU0OTZfYTcxYWM1MGRkYWMzNjg2N2ZjYTIxY2VlOGM0N2ZlMGEuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735835496_a71ac50ddac36867fca21cee8c47fe0a.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735835496_a71ac50ddac36867fca21cee8c47fe0a.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU4OTM2OTJfNDhmNGE5ZjdjN2E5ZDA1ZGMwMzdhODBhYzFlNTc4MmIuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYwMDk1MTRfYWQ5MDg4N2YyNWQ3MzRlYzJkMjFkOGE2YTYzNGZmMmQuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYxMTA0MjZfYzNlY2UzZWM1NmY5ZThjYzBlNWM5YTk4Zjk3OTJiZmMuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYxNjUzNzJfODI1NjkzMjRkZTFjOGZjYzM3NmNjMGU3MzdjMDUyMGUuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYzMjQ0NzJfMDZmMWVkMWExYmUyYzNhNTkyMzA3MGFmZjdkNWUxMGUuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736324472_06f1ed1a1be2c3a5923070aff7d5e10e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736324472_06f1ed1a1be2c3a5923070aff7d5e10e.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYzOTEwNTFfNGMzY2FlMTZhOGZmNGYyMTZiOGQ1MzY3Mzc3MmRkMDcuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736391051_4c3cae16a8ff4f216b8d53673772dd07.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736391051_4c3cae16a8ff4f216b8d53673772dd07.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY0NTU3NzVfOTdhOTM3ODA3YzgwN2JmNzEzNjk0MTlhMGE1ZDNkMmMuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\'><img width=\"68\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			Chi tiết máy\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjkyMTk5NDkxNzVfZTJhMTA1YmNmMjIzYzgzMmQ2Y2FhYjJkMDNmZTA0MTMuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069219949175_e2a105bcf223c832d6caab2d03fe0413.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069219949175_e2a105bcf223c832d6caab2d03fe0413.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMTMxNjUyNjZfYTE1MjUzZTNhM2UwYTJjOTc4ZWQ2Njc5OTRiOGY0MTUuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799313165266_a15253e3a3e0a2c978ed667994b8f415.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799313165266_a15253e3a3e0a2c978ed667994b8f415.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE2MDQxMTVfNDkzZjgzNTU4NjlkZDNjYTgyYTk2ZTg2ZTI5ODJiZmUuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321604115_493f8355869dd3ca82a96e86e2982bfe.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321604115_493f8355869dd3ca82a96e86e2982bfe.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE2OTYwMjRfNzMzYTg1YmY4MzVhZWEwYThhZmM4YjI2OWQxNDk3MDAuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321696024_733a85bf835aea0a8afc8b269d149700.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321696024_733a85bf835aea0a8afc8b269d149700.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMTMxNzk1NjdfYzNkNjY3NWEwMzc2MmZiOTQzNzZkYzk2ZjA1Mzg5YmQuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799313179567_c3d6675a03762fb94376dc96f05389bd.jpg\'><img width=\"150\" height=\"86\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799313179567_c3d6675a03762fb94376dc96f05389bd.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMTMyNzM0NTRfYWQ3MTZiZWZhZjQzZDJkZjE0NzYyOWQ5NTI2MmM1MjAuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799313273454_ad716befaf43d2df147629d95262c520.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799313273454_ad716befaf43d2df147629d95262c520.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MTYyNDlfOTZiMmZlYTVmZTMzZjRhMjRkODI1MWM4YWFmMjI1ZTEuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363716249_96b2fea5fe33f4a24d8251c8aaf225e1.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363716249_96b2fea5fe33f4a24d8251c8aaf225e1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MjM3NzFfOWVlYzRkNTFmYzE3MjNmYjY2OWY5ODAwODRlMjBhNjEuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363723771_9eec4d51fc1723fb669f980084e20a61.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363723771_9eec4d51fc1723fb669f980084e20a61.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MjM4OTJfNWI3MjAwMDI2MjAyYTFlZmU5NjU5NjEwOWZhZDY4NTcuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363723892_5b7200026202a1efe96596109fad6857.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363723892_5b7200026202a1efe96596109fad6857.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MzUzNjFfOTM1NWZhN2ViOTkxMTIzZGM5OTVkZmFhMmI0Y2Y3NTQuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363735361_9355fa7eb991123dc995dfaa2b4cf754.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363735361_9355fa7eb991123dc995dfaa2b4cf754.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3NDY3NjJfNjI0MWFjNGM2NjI1NTgxYjVkYjliMjRhMWVlMDVmNjgtMS5qcGciLCJzbGlkZXNob3ciOiJjZDlkYmE5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363746762_6241ac4c6625581b5db9b24a1ee05f68-1.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363746762_6241ac4c6625581b5db9b24a1ee05f68-1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3NDE0MDlfZDcyMTI0ZDkwOTEyODBmNjUyOWEyN2E5MTliZTEzYzkuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363741409_d72124d9091280f6529a27a919be13c9.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363741409_d72124d9091280f6529a27a919be13c9.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			Dụng cụ\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwMTgzMzRfMTdjNWZhYzk2ZmIyODQzZDc0YTc2Y2M3OWY5YjRmNWMuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\'><img width=\"150\" height=\"135\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwMzczNTNfZGI4NzczMmIzZWE5ZDkzNTM2YmNkM2FlYzY0ODM1YTcuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNTkxNjJfMDUzYjM2NGFiNzYxZGM1YTQ0Mjc5ZmFmNjQzOTUzMjQuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\'><img width=\"70\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNzgzNzJfNTBhYmNlNTI0OWM4YWNkY2ZiZGY4YTA2MzQ4OWUxODYuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNzg1NzBfMGFiNThiNDZiZjY4M2RmNmVjZGIyYzJkODc5NDViYTYuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\'><img width=\"150\" height=\"129\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk2ODQ5NDkwODZfYjI5ZmRiNTAxMTRhMTk2Y2MzZmRjYzllMTJjYWYxMDUuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\'><img width=\"150\" height=\"128\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk2ODQ5NDY2NDFfMTUwMGZiZTE2ZmVjM2ExNGVhZGI4ZTRhZWQxY2Y2M2YuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			Phụ tùng xe máy\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTEzMDA5NzlfMDA1MjcxNmI0NjI4NDNhNWQxOTY4Zjc4NzBjNzJmZDguanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028111300979_0052716b462843a5d1968f7870c72fd8.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028111300979_0052716b462843a5d1968f7870c72fd8.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTIwMDAwMDBfMjQ0MGQ1YWUzNmY3MDA4NDBkMGYwYjU4M2JiY2JkZmEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028112000000_2440d5ae36f700840d0f0b583bbcbdfa.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028112000000_2440d5ae36f700840d0f0b583bbcbdfa.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTI2NzAwMjRfMTgwNmFmZDdkNzBiYmJjNTIzZDYzYjBjNjFlOTEzMGIuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028112670024_1806afd7d70bbbc523d63b0c61e9130b.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028112670024_1806afd7d70bbbc523d63b0c61e9130b.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTMyODc5MTJfZTFhYThiZGI5ZmU3MmIxZmUyMjg4N2NlYWFmYzBkYmQuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028113287912_e1aa8bdb9fe72b1fe22887ceaafc0dbd.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028113287912_e1aa8bdb9fe72b1fe22887ceaafc0dbd.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTM4OTQ3MDRfMzUwNGU0YmYwOTNhZDlmOWQ2MzVjOGJmYTJhYWFlZjYuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028113894704_3504e4bf093ad9f9d635c8bfa2aaaef6.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028113894704_3504e4bf093ad9f9d635c8bfa2aaaef6.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTQ3Njc3MzlfZDAxNGIxMGRhNTA4OGJjN2QzNjc1YTZkMDBlNzdkMzMuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028114767739_d014b10da5088bc7d3675a6d00e77d33.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028114767739_d014b10da5088bc7d3675a6d00e77d33.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE0MzQ1NjFfNmQyY2I3NWVkYmE4MjgzMmUwY2JkOTA2NzM4NTdiZDMuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321434561_6d2cb75edba82832e0cbd90673857bd3.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321434561_6d2cb75edba82832e0cbd90673857bd3.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE0NDgwODhfNmU2OTQ0YzNjZWIzMzU4OTdlMmI0ZjRhZDIwOTc1YjcuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321448088_6e6944c3ceb335897e2b4f4ad20975b7.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321448088_6e6944c3ceb335897e2b4f4ad20975b7.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE1NDg1NTdfMWE1ZTY5YTg5Y2EzNzk1M2UwYzA0Yzg4ZTUyOWQ5NTEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321548557_1a5e69a89ca37953e0c04c88e529d951.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321548557_1a5e69a89ca37953e0c04c88e529d951.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMDk2MzA3MDRfMjlhODJkZjk3ZWE0ZWE3YzM3ODU5Zjk2NjcxNTRkYTEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028109630704_29a82df97ea4ea7c37859f9667154da1.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028109630704_29a82df97ea4ea7c37859f9667154da1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMDk2NzU5ODRfNTExYmI1ODY5MGE3M2FiOWNjMWFkY2QxNDZjYTQ2ZjIuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028109675984_511bb58690a73ab9cc1adcd146ca46f2.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028109675984_511bb58690a73ab9cc1adcd146ca46f2.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTA2MzE0MTVfOWJkMzc1NDUxYjIyNDI3NzZjM2ZhNDdhNWU5MWYzZTEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028110631415_9bd375451b2242776c3fa47a5e91f3e1.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028110631415_9bd375451b2242776c3fa47a5e91f3e1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTExNjcxMDFfNjg1ZGUyZTUzOTViYmY4ZDk3ZTRkMmY4YWE4N2ZlZTMuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028111167101_685de2e5395bbf8d97e4d2f8aa87fee3.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028111167101_685de2e5395bbf8d97e4d2f8aa87fee3.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			Khuôn jig\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NDY1OTEzMzg2ODdfZmE1MTRlMTY0ZjJlZTk5NjFjZmVlY2U5YjJhMjk2MmUuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTE0ODI0OTc5ODFfNGZlOGQ1MmM3N2ZiOTcwYWNjYWNhOTkzMTFiM2U1YjguanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNTQzNzc3MTM5OTRfNzMxZjNhYzFmN2YzMjMyNjExMWE0MWY2N2Q0YTJlMzMuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE2NTM3NjdfNzk3Y2FkYTk3Yjk4NjQyZTYyYzkxODU3YzYwYjViNDQuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NDY1OTEzNDkxOTRfZDUwMTBkMTcwMGM3Y2ViNDkxYjk3OGIwMWJlM2RkMjguanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>','Sản phẩm','','inherit','closed','closed','','2998-revision-v1','','','2024-12-17 06:38:04','2024-12-17 06:38:04','',2998,'https://fe2tech.com/?p=3002',0,'revision','',0),(3003,1,'2024-12-17 06:38:40','2024-12-17 06:38:40','<h5>\n        私たちの強みは、アルミニウムと鋼の大量生産にあります。私たちは革新に優れ、顧客に高付加価値の製品を提供します。    </h5>\n			自動車&オートバイ\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWI2Mjc3NTE2NjIyMTQxYjY4MTc4ZjY2YmViYWFkZDkzby5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Ab6277516622141b68178f66bebaadd93o.jpg_350x350.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Ab6277516622141b68178f66bebaadd93o.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTQ5NjllZjIzNDNhMjQ0NjA4Y2M1MTFkMWU3YmUyOGUyWC5wbmdfMzUweDM1MC5wbmciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A4969ef2343a244608cc511d1e7be28e2X.png_350x350.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A4969ef2343a244608cc511d1e7be28e2X.png_350x350.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvSDliZTY0NjE0OTRjZjRmZTc5OTgxOTJkYzQ4MzA2NmM5di5wbmdfMzUweDM1MC5wbmciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/H9be6461494cf4fe7998192dc483066c9v.png_350x350.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/H9be6461494cf4fe7998192dc483066c9v.png_350x350.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvSDRjYmFjNDdhZTZjZjQ3MDViOTY2NjY4Y2ExYWJhZDUwOS5wbmdfMzUweDM1MC5wbmciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/H4cbac47ae6cf4705b966668ca1abad509.png_350x350.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/H4cbac47ae6cf4705b966668ca1abad509.png_350x350.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvSDZjMDBiZDIzN2Q4YjQ2ZDRiMDZhMWNjNmVmNzZhY2NmRS5wbmdfMzUweDM1MC5wbmciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/H6c00bd237d8b46d4b06a1cc6ef76accfE.png_350x350.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/H6c00bd237d8b46d4b06a1cc6ef76accfE.png_350x350.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvSDcxYWJlN2E3NjNhMzQ1YWU4N2RjZjcwYzI1YTcwYTMyTS5wbmdfMzUweDM1MC5wbmciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/H71abe7a763a345ae87dcf70c25a70a32M.png_350x350.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/H71abe7a763a345ae87dcf70c25a70a32M.png_350x350.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvMi5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/2.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/2.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTA0NWZlNDUzNDU2NjQzOTRhMmE4MDQ5OWI0YmQyMTE3aS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A045fe45345664394a2a80499b4bd2117i.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A045fe45345664394a2a80499b4bd2117i.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTg2ZTAzOWRmMWM5ZDRlODA5ZWE1M2RmZDY3NmJhNjdhTy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A86e039df1c9d4e809ea53dfd676ba67aO.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A86e039df1c9d4e809ea53dfd676ba67aO.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTc4NmRjNDI3YWY0NjQ1N2VhOTIzYzQxZWE3Njg4ZjY3US5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A786dc427af46457ea923c41ea7688f67Q.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A786dc427af46457ea923c41ea7688f67Q.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvNi5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/6.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/6.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTJlZDVhNWMzZjhmNTQ0Yzg5MTBhM2ZlMjlkYTVlMjk4NC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A2ed5a5c3f8f544c8910a3fe29da5e2984.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A2ed5a5c3f8f544c8910a3fe29da5e2984.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTNjODA2NDY4NTRjZDQ0MDFiNmI3MzdhODBlOGUyOWYyWi5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A3c80646854cd4401b6b737a80e8e29f2Z.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A3c80646854cd4401b6b737a80e8e29f2Z.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTUzZjk0ZmZmYTBlNjRiYThhNDczMzBlODVhMTc5MjE0bC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A53f94fffa0e64ba8a47330e85a179214l.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A53f94fffa0e64ba8a47330e85a179214l.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWE1NTlhYWE4ZThkNDQ4NjhiNzAwOTY3ZTE4MjYzMWUwTy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Aa559aaa8e8d44868b700967e182631e0O.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Aa559aaa8e8d44868b700967e182631e0O.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvNC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/4.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/4.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTI5MjA5ZmNhMTRlMzQ5MTI4NmE3YWUyYTdkNTM1MDY2dC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A29209fca14e3491286a7ae2a7d535066t.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A29209fca14e3491286a7ae2a7d535066t.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWZkNmU1MDE4ZDU0YTRjMzE5YjQ5NDFhZjU3ZTM4ZmMxZS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Afd6e5018d54a4c319b4941af57e38fc1e.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Afd6e5018d54a4c319b4941af57e38fc1e.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTg2MjZkZjVhZTg5YzQ1ODQ4NGNiZGVhYjZiMGEyNzY4RS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A8626df5ae89c458484cbdeab6b0a2768E.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A8626df5ae89c458484cbdeab6b0a2768E.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWVjMmE0Y2Q4OTVlNjQ4YjZiYzcxNzRkODY0ZTEwMzMyOS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Aec2a4cd895e648b6bc7174d864e103329.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Aec2a4cd895e648b6bc7174d864e103329.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvMS5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/1.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTVmYTcxYjBlZGRmNjQ4MDQ5YzVmMzNkMzMxNzM4NDYwbS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A5fa71b0eddf648049c5f33d331738460m.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A5fa71b0eddf648049c5f33d331738460m.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTliYzE4NzI2OTdkNjQ5ZTdhMjhkMTRjNDhjZDZiNzFicS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A9bc1872697d649e7a28d14c48cd6b71bq.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A9bc1872697d649e7a28d14c48cd6b71bq.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWQwYzc4MmI4NDYxNTQ4NGQ4MzAzYWQ5NjRjZDMwMmE0Qy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Ad0c782b84615484d8303ad964cd302a4C.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Ad0c782b84615484d8303ad964cd302a4C.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWVjM2Y0NGQyYzBjZjQ1MzY4NzBiMTkwOTdiNTAzNWY0QS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Aec3f44d2c0cf4536870b19097b5035f4A.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Aec3f44d2c0cf4536870b19097b5035f4A.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvOC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/8.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/8.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTVkZjYxOWNlODllYzQyMTg5YTVjNGQwNWJiYmE0ZjJkdy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A5df619ce89ec42189a5c4d05bbba4f2dw.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A5df619ce89ec42189a5c4d05bbba4f2dw.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTkyMDcwMTU1OThhZTQ3ZTRiYTU3ZDVkNjc1NWE3OTQ1Si5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A9207015598ae47e4ba57d5d6755a7945J.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A9207015598ae47e4ba57d5d6755a7945J.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWE2NzUxNGNhMTUzYTQzMjA4NjEyNjExYWYxNWFlNjg5dC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Aa67514ca153a43208612611af15ae689t.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Aa67514ca153a43208612611af15ae689t.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWM4YzU3YWY1N2ZjMDRhOWI4YWZiY2Y1MjE0ZDhiMTI1YS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Ac8c57af57fc04a9b8afbcf5214d8b125a.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Ac8c57af57fc04a9b8afbcf5214d8b125a.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWVhMWEyZWE2YzlkMDRiNzg5NzdkMWU4YzkwN2U3MjFjUi5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Aea1a2ea6c9d04b78977d1e8c907e721cR.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Aea1a2ea6c9d04b78977d1e8c907e721cR.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvNS5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/5.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/5.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvNy5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/7.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/7.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTRmYTIyYjNkYjQ3MDQxNDVhOWM4ZjJiNmQ0MTNiNGI3WS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A4fa22b3db4704145a9c8f2b6d413b4b7Y.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A4fa22b3db4704145a9c8f2b6d413b4b7Y.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQThjZmExNTRjYTcwYTQ2YzU5NjVlOTkzMjU1YjUzZWNiZy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A8cfa154ca70a46c5965e993255b53ecbg.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A8cfa154ca70a46c5965e993255b53ecbg.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTk2N2M2MzRhNTE3YzQ4ZjM4YzIzZDQ3NjZkYjViYmExYS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A967c634a517c48f38c23d4766db5bba1a.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A967c634a517c48f38c23d4766db5bba1a.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTQ2MjQxM2I2ZGUyYjQwMWJhNjBlOTliYmUxZDE1ZTMzSy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A462413b6de2b401ba60e99bbe1d15e33K.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A462413b6de2b401ba60e99bbe1d15e33K.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTY2MTM5OTE0MmE3MjQ3Mjc4YmJmNjlhOWQ2MDA3NTU2Vy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A661399142a7247278bbf69a9d6007556W.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A661399142a7247278bbf69a9d6007556W.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvMTAuanBnIiwic2xpZGVzaG93IjoiZTE2MDI5NCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/10.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/10.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTE2ZWI3MWY1NDZjNDRjNGJhMDBjNmFmZTQ2NDY0ZDU5My5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A16eb71f546c44c4ba00c6afe46464d593.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A16eb71f546c44c4ba00c6afe46464d593.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTcyYTIxYmE5NjljODRiOThiNjNiOTg1MzgwYjk3ZWY1Ty5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A72a21ba969c84b98b63b985380b97ef5O.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A72a21ba969c84b98b63b985380b97ef5O.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTk5NTc0ZWJlMWE2YzQzMmFiZWJiOTE2ODBlM2UyMjdlMC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A99574ebe1a6c432abebb91680e3e227e0.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A99574ebe1a6c432abebb91680e3e227e0.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWM2ZDlhM2I3OWE5MDRlZWI5YzkyNWFmYTM3NGVjNTNhQS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Ac6d9a3b79a904eeb9c925afa374ec53aA.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Ac6d9a3b79a904eeb9c925afa374ec53aA.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWRlZjA1YzMyMTIxOTRmMjU5ZjE1NTZjZDUwODFhYjNlZy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Adef05c3212194f259f1556cd5081ab3eg.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Adef05c3212194f259f1556cd5081ab3eg.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvMy5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/3.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/3.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvOS5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/9.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/9.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTI2OGFhOGY5YjY1YzRjZGY5ZjQ1ZTU5NGYyY2Q4YWQ0TS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A268aa8f9b65c4cdf9f45e594f2cd8ad4M.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A268aa8f9b65c4cdf9f45e594f2cd8ad4M.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTg2NDQzMmYyNTcxNzQzNjg5MzQyYWUxNzNlZTlkYzlmZC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A864432f2571743689342ae173ee9dc9fd.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A864432f2571743689342ae173ee9dc9fd.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWJkNDM4NTFjOTI2NTRiZDk5Y2ZkY2E0NWQ4OTZmYmNiQi5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Abd43851c92654bd99cfdca45d896fbcbB.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Abd43851c92654bd99cfdca45d896fbcbB.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWNkZDEyMjYyOThkZDQ2MTNhYmYwMjFiZGNhYWQzMjBiMC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Acdd1226298dd4613abf021bdcaad320b0.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Acdd1226298dd4613abf021bdcaad320b0.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWU5MWJmN2Y1MWRiMzQwMmViYWZmNjEwYzI5OWU5YWFjRi5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Ae91bf7f51db3402ebaff610c299e9aacF.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Ae91bf7f51db3402ebaff610c299e9aacF.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTA1ZjE4ZDQ3ZTcwOTQ4YWU4Nzk1MTExZDA1NWY0MmZhMi5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A05f18d47e70948ae8795111d055f42fa2.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A05f18d47e70948ae8795111d055f42fa2.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTVjMzc3OTJmMzg0MzQzODhhMDJhMDQ3OWZjYmM0MTIzVC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A5c37792f38434388a02a0479fcbc4123T.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A5c37792f38434388a02a0479fcbc4123T.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQThjNDIwOTkyZjQ3NzQ1NTA5ZjRmMjkyYWM3YmQyMjU4SC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A8c420992f47745509f4f292ac7bd2258H.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A8c420992f47745509f4f292ac7bd2258H.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTEwMDFlNjNlYTU5MTQ5ZjhhODFhYmI5MmQ1ZDVmZTcxMy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A1001e63ea59149f8a81abb92d5d5fe713.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A1001e63ea59149f8a81abb92d5d5fe713.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTM2MzQ2Zjg4MWIxMDQ5OTZiNmMwNzBiNWQyY2ViZmY4dS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A36346f881b104996b6c070b5d2cebff8u.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A36346f881b104996b6c070b5d2cebff8u.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTE1NzE4M2MwN2E3NjRlYjg5NTdiYzRjZDEzOTgyODA4aS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A157183c07a764eb8957bc4cd13982808i.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A157183c07a764eb8957bc4cd13982808i.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			CNC加工部品\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c570843\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rNS5qcGciLCJzbGlkZXNob3ciOiJjNTcwODQzIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok5.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok5.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c570843\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rNC5wbmciLCJzbGlkZXNob3ciOiJjNTcwODQzIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok4.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok4.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c570843\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW1hY2hpbmUyMi5hdmlmIiwic2xpZGVzaG93IjoiYzU3MDg0MyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-machine22.avif\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-machine22.avif\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c570843\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW1hY2hpbmUzLmpwZyIsInNsaWRlc2hvdyI6ImM1NzA4NDMifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-machine3.jpg\'><img width=\"150\" height=\"100\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-machine3.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c570843\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rMy5wbmciLCJzbGlkZXNob3ciOiJjNTcwODQzIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok3.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok3.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c570843\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rMS5wbmciLCJzbGlkZXNob3ciOiJjNTcwODQzIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok1.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok1.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c570843\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rMi5wbmciLCJzbGlkZXNob3ciOiJjNTcwODQzIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok2.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok2.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c570843\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rNy5wbmciLCJzbGlkZXNob3ciOiJjNTcwODQzIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok7.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok7.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c570843\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rOS5qcGciLCJzbGlkZXNob3ciOiJjNTcwODQzIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok9.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok9.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c570843\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rOC5qcGciLCJzbGlkZXNob3ciOiJjNTcwODQzIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok8.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok8.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c570843\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejU3MDk0NDM0NzY3OTdfY2IzZTllMGQ1OTZhZDYzMzEzNjZiOGE3MTFmNDY5MjYuanBnIiwic2xpZGVzaG93IjoiYzU3MDg0MyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z5709443476797_cb3e9e0d596ad6331366b8a711f46926.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z5709443476797_cb3e9e0d596ad6331366b8a711f46926.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			板金加工&製作\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1cd9da4\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWwxLmpwZyIsInNsaWRlc2hvdyI6IjFjZDlkYTQifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal1.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1cd9da4\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWwzLmpwZyIsInNsaWRlc2hvdyI6IjFjZDlkYTQifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal3.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal3.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1cd9da4\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw0LmpwZyIsInNsaWRlc2hvdyI6IjFjZDlkYTQifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal4.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal4.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1cd9da4\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw1LmpwZyIsInNsaWRlc2hvdyI6IjFjZDlkYTQifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal5.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal5.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1cd9da4\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw3LmpwZyIsInNsaWRlc2hvdyI6IjFjZDlkYTQifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal7.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal7.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1cd9da4\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw4LmpwZyIsInNsaWRlc2hvdyI6IjFjZDlkYTQifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal8.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal8.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1cd9da4\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw5LmpwZyIsInNsaWRlc2hvdyI6IjFjZDlkYTQifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal9.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal9.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1cd9da4\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWwxMC5qcGciLCJzbGlkZXNob3ciOiIxY2Q5ZGE0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal10.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal10.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1cd9da4\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWwyLnBuZyIsInNsaWRlc2hvdyI6IjFjZDlkYTQifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal2.png\'><img width=\"84\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal2.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1cd9da4\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw2LmpwZyIsInNsaWRlc2hvdyI6IjFjZDlkYTQifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal6.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal6.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			金型・ダイ部品\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"2c28c08\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzYxNjUzNzJfODI1NjkzMjRkZTFjOGZjYzM3NmNjMGU3MzdjMDUyMGUuanBnIiwic2xpZGVzaG93IjoiMmMyOGMwOCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"2c28c08\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzY0NTU3NzVfOTdhOTM3ODA3YzgwN2JmNzEzNjk0MTlhMGE1ZDNkMmMuanBnIiwic2xpZGVzaG93IjoiMmMyOGMwOCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\'><img width=\"68\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"2c28c08\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzU4OTM2OTJfNDhmNGE5ZjdjN2E5ZDA1ZGMwMzdhODBhYzFlNTc4MmIuanBnIiwic2xpZGVzaG93IjoiMmMyOGMwOCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"2c28c08\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzYwMDk1MTRfYWQ5MDg4N2YyNWQ3MzRlYzJkMjFkOGE2YTYzNGZmMmQuanBnIiwic2xpZGVzaG93IjoiMmMyOGMwOCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"2c28c08\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzY3MjE1ODZfMTZiOTE5ODQyMGIzOTlmOWQ4MmMwNThkOTA4MmEzZTAuanBnIiwic2xpZGVzaG93IjoiMmMyOGMwOCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"2c28c08\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzYxMTA0MjZfYzNlY2UzZWM1NmY5ZThjYzBlNWM5YTk4Zjk3OTJiZmMuanBnIiwic2xpZGVzaG93IjoiMmMyOGMwOCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			産業用ファスナー&ボルト\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"66c41e5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvSU1HXzEyMzcuanBlZyIsInNsaWRlc2hvdyI6IjY2YzQxZTUifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/IMG_1237.jpeg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/IMG_1237.jpeg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"66c41e5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvRFNDMDA4MjIuanBnIiwic2xpZGVzaG93IjoiNjZjNDFlNSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/DSC00822.jpg\'><img width=\"150\" height=\"100\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/DSC00822.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			工具\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a432afc\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwMTgzMzRfMTdjNWZhYzk2ZmIyODQzZDc0YTc2Y2M3OWY5YjRmNWMuanBnIiwic2xpZGVzaG93IjoiYTQzMmFmYyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\'><img width=\"150\" height=\"135\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a432afc\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwMzczNTNfZGI4NzczMmIzZWE5ZDkzNTM2YmNkM2FlYzY0ODM1YTcuanBnIiwic2xpZGVzaG93IjoiYTQzMmFmYyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a432afc\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNTkxNjJfMDUzYjM2NGFiNzYxZGM1YTQ0Mjc5ZmFmNjQzOTUzMjQuanBnIiwic2xpZGVzaG93IjoiYTQzMmFmYyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\'><img width=\"70\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a432afc\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNzgzNzJfNTBhYmNlNTI0OWM4YWNkY2ZiZGY4YTA2MzQ4OWUxODYuanBnIiwic2xpZGVzaG93IjoiYTQzMmFmYyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a432afc\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNzg1NzBfMGFiNThiNDZiZjY4M2RmNmVjZGIyYzJkODc5NDViYTYuanBnIiwic2xpZGVzaG93IjoiYTQzMmFmYyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\'><img width=\"150\" height=\"129\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a432afc\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk2ODQ5NDkwODZfYjI5ZmRiNTAxMTRhMTk2Y2MzZmRjYzllMTJjYWYxMDUuanBnIiwic2xpZGVzaG93IjoiYTQzMmFmYyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\'><img width=\"150\" height=\"128\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a432afc\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk2ODQ5NDY2NDFfMTUwMGZiZTE2ZmVjM2ExNGVhZGI4ZTRhZWQxY2Y2M2YuanBnIiwic2xpZGVzaG93IjoiYTQzMmFmYyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			ジグ\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"8703d3d\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NDY1OTEzMzg2ODdfZmE1MTRlMTY0ZjJlZTk5NjFjZmVlY2U5YjJhMjk2MmUuanBnIiwic2xpZGVzaG93IjoiODcwM2QzZCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"8703d3d\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTE0ODI0OTc5ODFfNGZlOGQ1MmM3N2ZiOTcwYWNjYWNhOTkzMTFiM2U1YjguanBnIiwic2xpZGVzaG93IjoiODcwM2QzZCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"8703d3d\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNTQzNzc3MTM5OTRfNzMxZjNhYzFmN2YzMjMyNjExMWE0MWY2N2Q0YTJlMzMuanBnIiwic2xpZGVzaG93IjoiODcwM2QzZCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"8703d3d\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE2NTM3NjdfNzk3Y2FkYTk3Yjk4NjQyZTYyYzkxODU3YzYwYjViNDQuanBnIiwic2xpZGVzaG93IjoiODcwM2QzZCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"8703d3d\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NDY1OTEzNDkxOTRfZDUwMTBkMTcwMGM3Y2ViNDkxYjk3OGIwMWJlM2RkMjguanBnIiwic2xpZGVzaG93IjoiODcwM2QzZCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>','製品','','publish','closed','closed','','%e8%a3%bd%e5%93%81','','','2025-03-17 03:21:57','2025-03-17 03:21:57','',0,'https://fe2tech.com/?page_id=3003',5,'page','',0),(3004,1,'2024-12-17 06:38:40','2024-12-17 06:38:40','','製品','','inherit','closed','closed','','3003-revision-v1','','','2024-12-17 06:38:40','2024-12-17 06:38:40','',3003,'https://fe2tech.com/?p=3004',0,'revision','',0),(3005,1,'2024-12-17 06:39:59','2024-12-17 06:39:59','','製品','','inherit','closed','closed','','3003-revision-v1','','','2024-12-17 06:39:59','2024-12-17 06:39:59','',3003,'https://fe2tech.com/?p=3005',0,'revision','',0),(3006,1,'2024-12-17 06:40:00','2024-12-17 06:40:00','','製品','','inherit','closed','closed','','3003-revision-v1','','','2024-12-17 06:40:00','2024-12-17 06:40:00','',3003,'https://fe2tech.com/?p=3006',0,'revision','',0),(3007,1,'2024-12-17 06:40:01','2024-12-17 06:40:01','<h5>\n        私たちの強みは、アルミニウムと鋼の大量生産にあります。私たちは革新に優れ、顧客に高付加価値の製品を提供します。    </h5>\n			溶接\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDk5NjUxOTZfODJmZDc2ZGRiYmYzOGQ2NGRhZThhZjExYjIxNTM3YjkuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074649965196_82fd76ddbbf38d64dae8af11b21537b9.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074649965196_82fd76ddbbf38d64dae8af11b21537b9.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY2NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NTI3MjMyMTJfODc3MGYwMjhmZjY0NmYwMTRmMWU5ZjZlZmUzNDk2MmUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074652723212_8770f028ff646f014f1e9f6efe34962e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074652723212_8770f028ff646f014f1e9f6efe34962e.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA5Mzk3MThfYjBmZjZhY2FkMTRiMmFiNWVkMTU4MTcxYzc2ODMzZjkuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640939718_b0ff6acad14b2ab5ed158171c76833f9.jpg\'><img width=\"84\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640939718_b0ff6acad14b2ab5ed158171c76833f9.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDEyOTMxMTNfYjRiMTg2YzY3YjZlNzgyOWRkMmE5MWQ3MzBjZjlhYTcuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641293113_b4b186c67b6e7829dd2a91d730cf9aa7.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641293113_b4b186c67b6e7829dd2a91d730cf9aa7.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY2OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDI3NjM1ODdfMjFlY2NlNWQ0YWNjZjM3MTM1OGViNGNiZDczYzgwMGQuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074642763587_21ecce5d4accf371358eb4cbd73c800d.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074642763587_21ecce5d4accf371358eb4cbd73c800d.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY2OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDI4NDk4NDhfMTBiNTY3MDUxMjA5NmU2NTQ3NDhlNTdiMjRhMDRhZmUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074642849848_10b5670512096e654748e57b24a04afe.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074642849848_10b5670512096e654748e57b24a04afe.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA3NTg4ODNfNjQ4YTA0MmY0YjY0MGQwZjU3YTQ0NDFkZDIxMDk1NzAuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640758883_648a042f4b640d0f57a4441dd2109570.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640758883_648a042f4b640d0f57a4441dd2109570.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA4NDkyMzdfZTc2OTliMWJjNmUzOGUwYmY2NWViM2JjYTI4YWU4Y2EuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640849237_e7699b1bc6e38e0bf65eb3bca28ae8ca.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640849237_e7699b1bc6e38e0bf65eb3bca28ae8ca.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDEwNTIwNzBfOWVmYmMxNTg2Y2I1ZTk1Y2M1NGI4NDIxYTYzZjM4MGUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641052070_9efbc1586cb5e95cc54b8421a63f380e.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641052070_9efbc1586cb5e95cc54b8421a63f380e.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDExNDUyNzNfN2JlNWRmM2UxNzc5YWEwNGU4OTBlNDBjYzI0M2NkZWUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641145273_7be5df3e1779aa04e890e40cc243cdee.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641145273_7be5df3e1779aa04e890e40cc243cdee.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA2NTMyODVfNWE4N2FkZjU3Y2UwYzQxODZmZTRmYjE1NzllMzU3YjUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640653285_5a87adf57ce0c4186fe4fb1579e357b5.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640653285_5a87adf57ce0c4186fe4fb1579e357b5.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDExNzM4MjZfNDVhZTczN2Y3MGRmYjJkMzY1YWJiMzk3ZjEzOWQ3MDguanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641173826_45ae737f70dfb2d365abb397f139d708.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641173826_45ae737f70dfb2d365abb397f139d708.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			金型\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY1NzU1NzhfZTBhNGY1NDczODQzZTU4ZWUxYTc5OTg5ZjM2N2FkYTkuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736575578_e0a4f5473843e58ee1a79989f367ada9.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736575578_e0a4f5473843e58ee1a79989f367ada9.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY3MjE1ODZfMTZiOTE5ODQyMGIzOTlmOWQ4MmMwNThkOTA4MmEzZTAuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUyMTk2NzlfOTFhNmY2OTkzMTQ2OTA2Zjg0NjViNDNkZGQwYzJiM2MuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735219679_91a6f6993146906f8465b43ddd0c2b3c.jpg\'><img width=\"68\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735219679_91a6f6993146906f8465b43ddd0c2b3c.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY3NjE0NTRfYjk4ZDQ2OGIxMzNhYzU5ZWJiZjVlNjJiNjkzNDYyYTQuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736761454_b98d468b133ac59ebbf5e62b693462a4.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736761454_b98d468b133ac59ebbf5e62b693462a4.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY3ODQzMzVfZjkzYmM3ODIwY2ZkYzBiMDE1YzgyMjRiOWExYWNlMTAuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736784335_f93bc7820cfdc0b015c8224b9a1ace10.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736784335_f93bc7820cfdc0b015c8224b9a1ace10.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjkyMTk5NDEzNDlfYjA5NTRlNDRhMjVhN2QxNTQzZWIzM2NlZWFlMjBlZmIuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069219941349_b0954e44a25a7d1543eb33ceeae20efb.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069219941349_b0954e44a25a7d1543eb33ceeae20efb.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUzNDMyMDFfZDI5MjJhYTE2ODBjNTdiZmUyZGE5YWFiYTEyMWNhYTYuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735343201_d2922aa1680c57bfe2da9aaba121caa6.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735343201_d2922aa1680c57bfe2da9aaba121caa6.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU0NDE4ODVfMDg4ZGQ0MTdiNjU5NzgzMzc2YWRmZWIwMDZkMTgxODAuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735441885_088dd417b659783376adfeb006d18180.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735441885_088dd417b659783376adfeb006d18180.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU1OTgxMDFfMGZkZDBhNzczYTIyZDZhZjkyZjY5NGQ3ODY2YjJhNWEuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735598101_0fdd0a773a22d6af92f694d7866b2a5a.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735598101_0fdd0a773a22d6af92f694d7866b2a5a.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU2MzQ2MzJfZGEzZGYxMWNjMWRmYTk3OGM1YjcwZjJlNDQ0MDQ3MTIuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735634632_da3df11cc1dfa978c5b70f2e44404712.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735634632_da3df11cc1dfa978c5b70f2e44404712.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU2OTM5ODdfYmY3MzQ3ZjUzM2VjNzUwYTJjNGY5ZGYxNzYzYjg4ODEuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735693987_bf7347f533ec750a2c4f9df1763b8881.jpg\'><img width=\"84\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735693987_bf7347f533ec750a2c4f9df1763b8881.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU4MzU0OTZfYTcxYWM1MGRkYWMzNjg2N2ZjYTIxY2VlOGM0N2ZlMGEuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735835496_a71ac50ddac36867fca21cee8c47fe0a.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735835496_a71ac50ddac36867fca21cee8c47fe0a.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU4OTM2OTJfNDhmNGE5ZjdjN2E5ZDA1ZGMwMzdhODBhYzFlNTc4MmIuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYwMDk1MTRfYWQ5MDg4N2YyNWQ3MzRlYzJkMjFkOGE2YTYzNGZmMmQuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYxMTA0MjZfYzNlY2UzZWM1NmY5ZThjYzBlNWM5YTk4Zjk3OTJiZmMuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYxNjUzNzJfODI1NjkzMjRkZTFjOGZjYzM3NmNjMGU3MzdjMDUyMGUuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYzMjQ0NzJfMDZmMWVkMWExYmUyYzNhNTkyMzA3MGFmZjdkNWUxMGUuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736324472_06f1ed1a1be2c3a5923070aff7d5e10e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736324472_06f1ed1a1be2c3a5923070aff7d5e10e.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYzOTEwNTFfNGMzY2FlMTZhOGZmNGYyMTZiOGQ1MzY3Mzc3MmRkMDcuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736391051_4c3cae16a8ff4f216b8d53673772dd07.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736391051_4c3cae16a8ff4f216b8d53673772dd07.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY0NTU3NzVfOTdhOTM3ODA3YzgwN2JmNzEzNjk0MTlhMGE1ZDNkMmMuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\'><img width=\"68\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			機械の詳細\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjkyMTk5NDkxNzVfZTJhMTA1YmNmMjIzYzgzMmQ2Y2FhYjJkMDNmZTA0MTMuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069219949175_e2a105bcf223c832d6caab2d03fe0413.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069219949175_e2a105bcf223c832d6caab2d03fe0413.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMTMxNjUyNjZfYTE1MjUzZTNhM2UwYTJjOTc4ZWQ2Njc5OTRiOGY0MTUuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799313165266_a15253e3a3e0a2c978ed667994b8f415.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799313165266_a15253e3a3e0a2c978ed667994b8f415.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE2MDQxMTVfNDkzZjgzNTU4NjlkZDNjYTgyYTk2ZTg2ZTI5ODJiZmUuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321604115_493f8355869dd3ca82a96e86e2982bfe.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321604115_493f8355869dd3ca82a96e86e2982bfe.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE2OTYwMjRfNzMzYTg1YmY4MzVhZWEwYThhZmM4YjI2OWQxNDk3MDAuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321696024_733a85bf835aea0a8afc8b269d149700.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321696024_733a85bf835aea0a8afc8b269d149700.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMTMxNzk1NjdfYzNkNjY3NWEwMzc2MmZiOTQzNzZkYzk2ZjA1Mzg5YmQuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799313179567_c3d6675a03762fb94376dc96f05389bd.jpg\'><img width=\"150\" height=\"86\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799313179567_c3d6675a03762fb94376dc96f05389bd.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMTMyNzM0NTRfYWQ3MTZiZWZhZjQzZDJkZjE0NzYyOWQ5NTI2MmM1MjAuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799313273454_ad716befaf43d2df147629d95262c520.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799313273454_ad716befaf43d2df147629d95262c520.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MTYyNDlfOTZiMmZlYTVmZTMzZjRhMjRkODI1MWM4YWFmMjI1ZTEuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363716249_96b2fea5fe33f4a24d8251c8aaf225e1.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363716249_96b2fea5fe33f4a24d8251c8aaf225e1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MjM3NzFfOWVlYzRkNTFmYzE3MjNmYjY2OWY5ODAwODRlMjBhNjEuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363723771_9eec4d51fc1723fb669f980084e20a61.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363723771_9eec4d51fc1723fb669f980084e20a61.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MjM4OTJfNWI3MjAwMDI2MjAyYTFlZmU5NjU5NjEwOWZhZDY4NTcuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363723892_5b7200026202a1efe96596109fad6857.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363723892_5b7200026202a1efe96596109fad6857.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MzUzNjFfOTM1NWZhN2ViOTkxMTIzZGM5OTVkZmFhMmI0Y2Y3NTQuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363735361_9355fa7eb991123dc995dfaa2b4cf754.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363735361_9355fa7eb991123dc995dfaa2b4cf754.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3NDY3NjJfNjI0MWFjNGM2NjI1NTgxYjVkYjliMjRhMWVlMDVmNjgtMS5qcGciLCJzbGlkZXNob3ciOiJjZDlkYmE5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363746762_6241ac4c6625581b5db9b24a1ee05f68-1.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363746762_6241ac4c6625581b5db9b24a1ee05f68-1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3NDE0MDlfZDcyMTI0ZDkwOTEyODBmNjUyOWEyN2E5MTliZTEzYzkuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363741409_d72124d9091280f6529a27a919be13c9.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363741409_d72124d9091280f6529a27a919be13c9.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			工具\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwMTgzMzRfMTdjNWZhYzk2ZmIyODQzZDc0YTc2Y2M3OWY5YjRmNWMuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\'><img width=\"150\" height=\"135\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwMzczNTNfZGI4NzczMmIzZWE5ZDkzNTM2YmNkM2FlYzY0ODM1YTcuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNTkxNjJfMDUzYjM2NGFiNzYxZGM1YTQ0Mjc5ZmFmNjQzOTUzMjQuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\'><img width=\"70\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNzgzNzJfNTBhYmNlNTI0OWM4YWNkY2ZiZGY4YTA2MzQ4OWUxODYuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNzg1NzBfMGFiNThiNDZiZjY4M2RmNmVjZGIyYzJkODc5NDViYTYuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\'><img width=\"150\" height=\"129\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk2ODQ5NDkwODZfYjI5ZmRiNTAxMTRhMTk2Y2MzZmRjYzllMTJjYWYxMDUuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\'><img width=\"150\" height=\"128\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk2ODQ5NDY2NDFfMTUwMGZiZTE2ZmVjM2ExNGVhZGI4ZTRhZWQxY2Y2M2YuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			オートバイの部品\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTEzMDA5NzlfMDA1MjcxNmI0NjI4NDNhNWQxOTY4Zjc4NzBjNzJmZDguanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028111300979_0052716b462843a5d1968f7870c72fd8.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028111300979_0052716b462843a5d1968f7870c72fd8.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTIwMDAwMDBfMjQ0MGQ1YWUzNmY3MDA4NDBkMGYwYjU4M2JiY2JkZmEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028112000000_2440d5ae36f700840d0f0b583bbcbdfa.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028112000000_2440d5ae36f700840d0f0b583bbcbdfa.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTI2NzAwMjRfMTgwNmFmZDdkNzBiYmJjNTIzZDYzYjBjNjFlOTEzMGIuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028112670024_1806afd7d70bbbc523d63b0c61e9130b.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028112670024_1806afd7d70bbbc523d63b0c61e9130b.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTMyODc5MTJfZTFhYThiZGI5ZmU3MmIxZmUyMjg4N2NlYWFmYzBkYmQuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028113287912_e1aa8bdb9fe72b1fe22887ceaafc0dbd.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028113287912_e1aa8bdb9fe72b1fe22887ceaafc0dbd.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTM4OTQ3MDRfMzUwNGU0YmYwOTNhZDlmOWQ2MzVjOGJmYTJhYWFlZjYuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028113894704_3504e4bf093ad9f9d635c8bfa2aaaef6.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028113894704_3504e4bf093ad9f9d635c8bfa2aaaef6.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTQ3Njc3MzlfZDAxNGIxMGRhNTA4OGJjN2QzNjc1YTZkMDBlNzdkMzMuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028114767739_d014b10da5088bc7d3675a6d00e77d33.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028114767739_d014b10da5088bc7d3675a6d00e77d33.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE0MzQ1NjFfNmQyY2I3NWVkYmE4MjgzMmUwY2JkOTA2NzM4NTdiZDMuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321434561_6d2cb75edba82832e0cbd90673857bd3.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321434561_6d2cb75edba82832e0cbd90673857bd3.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE0NDgwODhfNmU2OTQ0YzNjZWIzMzU4OTdlMmI0ZjRhZDIwOTc1YjcuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321448088_6e6944c3ceb335897e2b4f4ad20975b7.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321448088_6e6944c3ceb335897e2b4f4ad20975b7.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE1NDg1NTdfMWE1ZTY5YTg5Y2EzNzk1M2UwYzA0Yzg4ZTUyOWQ5NTEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321548557_1a5e69a89ca37953e0c04c88e529d951.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321548557_1a5e69a89ca37953e0c04c88e529d951.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMDk2MzA3MDRfMjlhODJkZjk3ZWE0ZWE3YzM3ODU5Zjk2NjcxNTRkYTEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028109630704_29a82df97ea4ea7c37859f9667154da1.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028109630704_29a82df97ea4ea7c37859f9667154da1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMDk2NzU5ODRfNTExYmI1ODY5MGE3M2FiOWNjMWFkY2QxNDZjYTQ2ZjIuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028109675984_511bb58690a73ab9cc1adcd146ca46f2.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028109675984_511bb58690a73ab9cc1adcd146ca46f2.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTA2MzE0MTVfOWJkMzc1NDUxYjIyNDI3NzZjM2ZhNDdhNWU5MWYzZTEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028110631415_9bd375451b2242776c3fa47a5e91f3e1.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028110631415_9bd375451b2242776c3fa47a5e91f3e1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTExNjcxMDFfNjg1ZGUyZTUzOTViYmY4ZDk3ZTRkMmY4YWE4N2ZlZTMuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028111167101_685de2e5395bbf8d97e4d2f8aa87fee3.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028111167101_685de2e5395bbf8d97e4d2f8aa87fee3.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			治具\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NDY1OTEzMzg2ODdfZmE1MTRlMTY0ZjJlZTk5NjFjZmVlY2U5YjJhMjk2MmUuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTE0ODI0OTc5ODFfNGZlOGQ1MmM3N2ZiOTcwYWNjYWNhOTkzMTFiM2U1YjguanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNTQzNzc3MTM5OTRfNzMxZjNhYzFmN2YzMjMyNjExMWE0MWY2N2Q0YTJlMzMuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE2NTM3NjdfNzk3Y2FkYTk3Yjk4NjQyZTYyYzkxODU3YzYwYjViNDQuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NDY1OTEzNDkxOTRfZDUwMTBkMTcwMGM3Y2ViNDkxYjk3OGIwMWJlM2RkMjguanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>','製品','','inherit','closed','closed','','3003-revision-v1','','','2024-12-17 06:40:01','2024-12-17 06:40:01','',3003,'https://fe2tech.com/?p=3007',0,'revision','',0),(3008,1,'2024-12-17 06:41:01','2024-12-17 06:41:01','Đội ngũ của chúng tôi\n	    <h3>\n        Chúng tôi sẽ vượt qua mong đợi của bạn với những giải pháp sáng tạo.    </h3>\n		<p>Chúng tôi cung cấp những giải pháp sáng tạo vượt xa mong đợi của bạn, đảm bảo máy móc chất lượng cao và kết quả xuất sắc.</p>		\n                                <a ><img width=\"300\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FEHT-logo.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tech                                    </a>\n                                </h3>\n                                <a ><img width=\"327\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FE-TECH-LOGO-FINAL.png\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Engineering                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Engineering                                    </a>\n                                </h3>\n                                <a ><img width=\"335\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/Far-East-Tool-Vina.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tools Vina                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tools Vina                                    </a>\n                                </h3>\n			Các đối tác của chúng tôi\n	    <h3>\n        Chúng tôi sẽ vượt qua mong đợi của bạn với những giải pháp sáng tạo, như một đối tác đáng tin cậy.    </h3>\n		<p>Chúng tôi cam kết đảm bảo chất lượng lâu dài và sự đúng giờ bền vững cùng các đối tác.</p>		\n                                <a href=\"https://www.yoshimoto-sangyo.co.jp/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"246\" height=\"205\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yoshimoto-vietnam.png\" alt=\"\" /></a>\n                                <a href=\"https://kimlongmotor.com.vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"1586\" height=\"1586\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/kim-long-motors.png\" alt=\"\" /></a>\n                                <a href=\"https://www.samsung.com/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"697\" height=\"232\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/samsung.jpg\" alt=\"\" /></a>\n                                <a href=\"https://komaz.co.jp/english/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"900\" height=\"900\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/komatsu-kogyo.jpg\" alt=\"\" /></a>\n                                <a ><img width=\"256\" height=\"256\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yuwa-engineering.jpg\" alt=\"\" /></a>','Đội ngũ &amp; Đối tác','','publish','closed','closed','','doi-ngu-doi-tac','','','2024-12-17 09:35:48','2024-12-17 09:35:48','',0,'https://fe2tech.com/?page_id=3008',10,'page','',0),(3009,1,'2024-12-17 06:41:01','2024-12-17 06:41:01','','Đội ngũ &amp; Các công ty thành viên','','inherit','closed','closed','','3008-revision-v1','','','2024-12-17 06:41:01','2024-12-17 06:41:01','',3008,'https://fe2tech.com/?p=3009',0,'revision','',0),(3010,1,'2024-12-17 06:42:45','2024-12-17 06:42:45','','Đội ngũ &amp; Các công ty thành viên','','inherit','closed','closed','','3008-revision-v1','','','2024-12-17 06:42:45','2024-12-17 06:42:45','',3008,'https://fe2tech.com/?p=3010',0,'revision','',0),(3011,1,'2024-12-17 06:42:46','2024-12-17 06:42:46','','Đội ngũ &amp; Các công ty thành viên','','inherit','closed','closed','','3008-revision-v1','','','2024-12-17 06:42:46','2024-12-17 06:42:46','',3008,'https://fe2tech.com/?p=3011',0,'revision','',0),(3012,1,'2024-12-17 06:42:46','2024-12-17 06:42:46','Đội ngũ của chúng tôi\n	    <h3>\n        Chúng tôi sẽ vượt qua mong đợi của bạn với những giải pháp sáng tạo.    </h3>\n		<p>Chúng tôi cung cấp những giải pháp sáng tạo vượt xa mong đợi của bạn, đảm bảo máy móc chất lượng cao và kết quả xuất sắc.</p>		\n                                <a ><img width=\"300\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FEHT-logo.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tech                                    </a>\n                                </h3>\n                                <a ><img width=\"327\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FE-TECH-LOGO-FINAL.png\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Engineering                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Engineering                                    </a>\n                                </h3>\n                                <a ><img width=\"335\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/Far-East-Tool-Vina.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tools Vina                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tools Vina                                    </a>\n                                </h3>\n			Các đối tác của chúng tôi\n	    <h3>\n        Chúng tôi sẽ vượt qua mong đợi của bạn với những giải pháp sáng tạo, như một đối tác đáng tin cậy.    </h3>\n		<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.</p>		\n                                <a href=\"https://www.yoshimoto-sangyo.co.jp/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"246\" height=\"205\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yoshimoto-vietnam.png\" alt=\"\" /></a>\n                                <a href=\"https://kimlongmotor.com.vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"1586\" height=\"1586\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/kim-long-motors.png\" alt=\"\" /></a>\n                                <a href=\"https://www.samsung.com/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"697\" height=\"232\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/samsung.jpg\" alt=\"\" /></a>\n                                <a href=\"https://komaz.co.jp/english/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"900\" height=\"900\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/komatsu-kogyo.jpg\" alt=\"\" /></a>\n                                <a ><img width=\"256\" height=\"256\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yuwa-engineering.jpg\" alt=\"\" /></a>','Đội ngũ &amp; Các công ty thành viên','','inherit','closed','closed','','3008-revision-v1','','','2024-12-17 06:42:46','2024-12-17 06:42:46','',3008,'https://fe2tech.com/?p=3012',0,'revision','',0),(3013,1,'2024-12-17 06:43:18','2024-12-17 06:43:18','<p>Đội ngũ của chúng tôi</p>\n<h3>\n        Chúng tôi sẽ vượt qua mong đợi của bạn với những giải pháp sáng tạo.    </h3>\n<p>Chúng tôi cung cấp những giải pháp sáng tạo vượt xa mong đợi của bạn, đảm bảo máy móc chất lượng cao và kết quả xuất sắc.</p>\n<p>                                <a ><img width=\"300\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FEHT-logo.jpg\" alt=\"\" /></a></p>\n<h3>\n                	            	Far East Tech                		        </h3>\n<h3>\n                                    <a ><br />\n                                        Far East Tech                                    </a><br />\n                                </h3>\n<p>                                <a ><img width=\"327\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FE-TECH-LOGO-FINAL.png\" alt=\"\" /></a></p>\n<h3>\n                	            	Far East Engineering                		        </h3>\n<h3>\n                                    <a ><br />\n                                        Far East Engineering                                    </a><br />\n                                </h3>\n<p>                                <a ><img width=\"335\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/Far-East-Tool-Vina.jpg\" alt=\"\" /></a></p>\n<h3>\n                	            	Far East Tools Vina                		        </h3>\n<h3>\n                                    <a ><br />\n                                        Far East Tools Vina                                    </a><br />\n                                </h3>\n<p>			Các đối tác của chúng tôi</p>\n<h3>\n        Chúng tôi sẽ vượt qua mong đợi của bạn với những giải pháp sáng tạo, như một đối tác đáng tin cậy.    </h3>\n<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.</p>\n<p>                                <a href=\"https://www.yoshimoto-sangyo.co.jp/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"246\" height=\"205\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yoshimoto-vietnam.png\" alt=\"\" /></a><br />\n                                <a href=\"https://kimlongmotor.com.vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"1586\" height=\"1586\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/kim-long-motors.png\" alt=\"\" /></a><br />\n                                <a href=\"https://www.samsung.com/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"697\" height=\"232\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/samsung.jpg\" alt=\"\" /></a><br />\n                                <a href=\"https://komaz.co.jp/english/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"900\" height=\"900\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/komatsu-kogyo.jpg\" alt=\"\" /></a><br />\n                                <a ><img width=\"256\" height=\"256\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yuwa-engineering.jpg\" alt=\"\" /></a></p>\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','Đội ngũ &amp; Các công ty thành viên','','inherit','closed','closed','','3008-revision-v1','','','2024-12-17 06:43:18','2024-12-17 06:43:18','',3008,'https://fe2tech.com/?p=3013',0,'revision','',0),(3014,1,'2024-12-17 06:44:37','2024-12-17 06:44:37','私たちのチーム\n	    <h3>\n        私たちは革新的なソリューションでお客様の期待を超えます。    </h3>\n		<p>私たちは、お客様の期待を超える革新的なソリューションを提供し、最高品質の機械と優れた結果を保証します。</p>		\n                                <a ><img width=\"300\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FEHT-logo.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tech                                    </a>\n                                </h3>\n                                <a ><img width=\"327\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FE-TECH-LOGO-FINAL.png\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Engineering                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Engineering                                    </a>\n                                </h3>\n                                <a ><img width=\"335\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/Far-East-Tool-Vina.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tools Vina                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tools Vina                                    </a>\n                                </h3>\n			私たちのパートナー \n	    <h3>\n        私たちは、信頼できるパートナーとして革新的なソリューションでお客様の期待を超えます。    </h3>\n		<p>私たちは、パートナーとの長期的で永続的な品質と時間厳守を確保することを約束します。</p>		\n                                <a href=\"https://www.yoshimoto-sangyo.co.jp/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"246\" height=\"205\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yoshimoto-vietnam.png\" alt=\"\" /></a>\n                                <a href=\"https://kimlongmotor.com.vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"1586\" height=\"1586\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/kim-long-motors.png\" alt=\"\" /></a>\n                                <a href=\"https://www.samsung.com/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"697\" height=\"232\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/samsung.jpg\" alt=\"\" /></a>\n                                <a href=\"https://komaz.co.jp/english/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"900\" height=\"900\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/komatsu-kogyo.jpg\" alt=\"\" /></a>\n                                <a ><img width=\"256\" height=\"256\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yuwa-engineering.jpg\" alt=\"\" /></a>','チームとパートナー','','publish','closed','closed','','%e3%83%81%e3%83%bc%e3%83%a0%e3%81%a8%e3%83%91%e3%83%bc%e3%83%88%e3%83%8a%e3%83%bc','','','2024-12-17 09:37:09','2024-12-17 09:37:09','',0,'https://fe2tech.com/?page_id=3014',11,'page','',0),(3015,1,'2024-12-17 06:44:37','2024-12-17 06:44:37','','チームとメンバー企業','','inherit','closed','closed','','3014-revision-v1','','','2024-12-17 06:44:37','2024-12-17 06:44:37','',3014,'https://fe2tech.com/?p=3015',0,'revision','',0),(3016,1,'2024-12-17 06:45:56','2024-12-17 06:45:56','','チームとメンバー企業','','inherit','closed','closed','','3014-revision-v1','','','2024-12-17 06:45:56','2024-12-17 06:45:56','',3014,'https://fe2tech.com/?p=3016',0,'revision','',0),(3017,1,'2024-12-17 06:45:57','2024-12-17 06:45:57','','チームとメンバー企業','','inherit','closed','closed','','3014-revision-v1','','','2024-12-17 06:45:57','2024-12-17 06:45:57','',3014,'https://fe2tech.com/?p=3017',0,'revision','',0),(3018,1,'2024-12-17 06:45:57','2024-12-17 06:45:57','私たちのチーム\n	    <h3>\n        私たちは革新的なソリューションでお客様の期待を超えます。    </h3>\n		<p>私たちは、お客様の期待を超える革新的なソリューションを提供し、最高品質の機械と優れた結果を保証します。</p>		\n                                <a ><img width=\"300\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FEHT-logo.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tech                                    </a>\n                                </h3>\n                                <a ><img width=\"327\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FE-TECH-LOGO-FINAL.png\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Engineering                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Engineering                                    </a>\n                                </h3>\n                                <a ><img width=\"335\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/Far-East-Tool-Vina.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tools Vina                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tools Vina                                    </a>\n                                </h3>\n			私たちのパートナー \n	    <h3>\n        私たちは、信頼できるパートナーとして革新的なソリューションでお客様の期待を超えます。    </h3>\n		<p>私たちは、パートナーとの長期的で永続的な品質と時間厳守を確保することを約束します。</p>		\n                                <a href=\"https://www.yoshimoto-sangyo.co.jp/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"246\" height=\"205\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yoshimoto-vietnam.png\" alt=\"\" /></a>\n                                <a href=\"https://kimlongmotor.com.vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"1586\" height=\"1586\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/kim-long-motors.png\" alt=\"\" /></a>\n                                <a href=\"https://www.samsung.com/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"697\" height=\"232\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/samsung.jpg\" alt=\"\" /></a>\n                                <a href=\"https://komaz.co.jp/english/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"900\" height=\"900\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/komatsu-kogyo.jpg\" alt=\"\" /></a>\n                                <a ><img width=\"256\" height=\"256\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yuwa-engineering.jpg\" alt=\"\" /></a>','チームとメンバー企業','','inherit','closed','closed','','3014-revision-v1','','','2024-12-17 06:45:57','2024-12-17 06:45:57','',3014,'https://fe2tech.com/?p=3018',0,'revision','',0),(3019,1,'2024-12-17 06:46:31','2024-12-17 06:46:31','<p>Đội ngũ của chúng tôi</p>\n<h3>\n        Chúng tôi sẽ vượt qua mong đợi của bạn với những giải pháp sáng tạo.    </h3>\n<p>Chúng tôi cung cấp những giải pháp sáng tạo vượt xa mong đợi của bạn, đảm bảo máy móc chất lượng cao và kết quả xuất sắc.</p>\n<p>                                <a ><img width=\"300\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FEHT-logo.jpg\" alt=\"\" /></a></p>\n<h3>\n                	            	Far East Tech                		        </h3>\n<h3>\n                                    <a ><br />\n                                        Far East Tech                                    </a><br />\n                                </h3>\n<p>                                <a ><img width=\"327\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FE-TECH-LOGO-FINAL.png\" alt=\"\" /></a></p>\n<h3>\n                	            	Far East Engineering                		        </h3>\n<h3>\n                                    <a ><br />\n                                        Far East Engineering                                    </a><br />\n                                </h3>\n<p>                                <a ><img width=\"335\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/Far-East-Tool-Vina.jpg\" alt=\"\" /></a></p>\n<h3>\n                	            	Far East Tools Vina                		        </h3>\n<h3>\n                                    <a ><br />\n                                        Far East Tools Vina                                    </a><br />\n                                </h3>\n<p>			Các đối tác của chúng tôi</p>\n<h3>\n        Chúng tôi sẽ vượt qua mong đợi của bạn với những giải pháp sáng tạo, như một đối tác đáng tin cậy.    </h3>\n<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.</p>\n<p>                                <a href=\"https://www.yoshimoto-sangyo.co.jp/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"246\" height=\"205\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yoshimoto-vietnam.png\" alt=\"\" /></a><br />\n                                <a href=\"https://kimlongmotor.com.vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"1586\" height=\"1586\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/kim-long-motors.png\" alt=\"\" /></a><br />\n                                <a href=\"https://www.samsung.com/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"697\" height=\"232\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/samsung.jpg\" alt=\"\" /></a><br />\n                                <a href=\"https://komaz.co.jp/english/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"900\" height=\"900\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/komatsu-kogyo.jpg\" alt=\"\" /></a><br />\n                                <a ><img width=\"256\" height=\"256\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yuwa-engineering.jpg\" alt=\"\" /></a></p>\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','Đội ngũ &amp; Các công ty thành viên','','inherit','closed','closed','','3008-revision-v1','','','2024-12-17 06:46:31','2024-12-17 06:46:31','',3008,'https://fe2tech.com/?p=3019',0,'revision','',0),(3020,1,'2024-12-17 06:46:32','2024-12-17 06:46:32','<p>Đội ngũ của chúng tôi</p>\n<h3>\n        Chúng tôi sẽ vượt qua mong đợi của bạn với những giải pháp sáng tạo.    </h3>\n<p>Chúng tôi cung cấp những giải pháp sáng tạo vượt xa mong đợi của bạn, đảm bảo máy móc chất lượng cao và kết quả xuất sắc.</p>\n<p>                                <a ><img width=\"300\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FEHT-logo.jpg\" alt=\"\" /></a></p>\n<h3>\n                	            	Far East Tech                		        </h3>\n<h3>\n                                    <a ><br />\n                                        Far East Tech                                    </a><br />\n                                </h3>\n<p>                                <a ><img width=\"327\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FE-TECH-LOGO-FINAL.png\" alt=\"\" /></a></p>\n<h3>\n                	            	Far East Engineering                		        </h3>\n<h3>\n                                    <a ><br />\n                                        Far East Engineering                                    </a><br />\n                                </h3>\n<p>                                <a ><img width=\"335\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/Far-East-Tool-Vina.jpg\" alt=\"\" /></a></p>\n<h3>\n                	            	Far East Tools Vina                		        </h3>\n<h3>\n                                    <a ><br />\n                                        Far East Tools Vina                                    </a><br />\n                                </h3>\n<p>			Các đối tác của chúng tôi</p>\n<h3>\n        Chúng tôi sẽ vượt qua mong đợi của bạn với những giải pháp sáng tạo, như một đối tác đáng tin cậy.    </h3>\n<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.</p>\n<p>                                <a href=\"https://www.yoshimoto-sangyo.co.jp/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"246\" height=\"205\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yoshimoto-vietnam.png\" alt=\"\" /></a><br />\n                                <a href=\"https://kimlongmotor.com.vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"1586\" height=\"1586\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/kim-long-motors.png\" alt=\"\" /></a><br />\n                                <a href=\"https://www.samsung.com/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"697\" height=\"232\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/samsung.jpg\" alt=\"\" /></a><br />\n                                <a href=\"https://komaz.co.jp/english/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"900\" height=\"900\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/komatsu-kogyo.jpg\" alt=\"\" /></a><br />\n                                <a ><img width=\"256\" height=\"256\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yuwa-engineering.jpg\" alt=\"\" /></a></p>\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','Đội ngũ &amp; Các công ty thành viên','','inherit','closed','closed','','3008-revision-v1','','','2024-12-17 06:46:32','2024-12-17 06:46:32','',3008,'https://fe2tech.com/?p=3020',0,'revision','',0),(3021,1,'2024-12-17 06:46:32','2024-12-17 06:46:32','Đội ngũ của chúng tôi\n	    <h3>\n        Chúng tôi sẽ vượt qua mong đợi của bạn với những giải pháp sáng tạo.    </h3>\n		<p>Chúng tôi cung cấp những giải pháp sáng tạo vượt xa mong đợi của bạn, đảm bảo máy móc chất lượng cao và kết quả xuất sắc.</p>		\n                                <a ><img width=\"300\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FEHT-logo.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tech                                    </a>\n                                </h3>\n                                <a ><img width=\"327\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FE-TECH-LOGO-FINAL.png\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Engineering                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Engineering                                    </a>\n                                </h3>\n                                <a ><img width=\"335\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/Far-East-Tool-Vina.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tools Vina                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tools Vina                                    </a>\n                                </h3>\n			Các đối tác của chúng tôi\n	    <h3>\n        Chúng tôi sẽ vượt qua mong đợi của bạn với những giải pháp sáng tạo, như một đối tác đáng tin cậy.    </h3>\n		<p>Chúng tôi cam kết đảm bảo chất lượng lâu dài và sự đúng giờ bền vững cùng các đối tác.</p>		\n                                <a href=\"https://www.yoshimoto-sangyo.co.jp/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"246\" height=\"205\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yoshimoto-vietnam.png\" alt=\"\" /></a>\n                                <a href=\"https://kimlongmotor.com.vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"1586\" height=\"1586\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/kim-long-motors.png\" alt=\"\" /></a>\n                                <a href=\"https://www.samsung.com/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"697\" height=\"232\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/samsung.jpg\" alt=\"\" /></a>\n                                <a href=\"https://komaz.co.jp/english/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"900\" height=\"900\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/komatsu-kogyo.jpg\" alt=\"\" /></a>\n                                <a ><img width=\"256\" height=\"256\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yuwa-engineering.jpg\" alt=\"\" /></a>','Đội ngũ &amp; Các công ty thành viên','','inherit','closed','closed','','3008-revision-v1','','','2024-12-17 06:46:32','2024-12-17 06:46:32','',3008,'https://fe2tech.com/?p=3021',0,'revision','',0),(3022,1,'2024-12-17 06:47:35','2024-12-17 06:47:35','Về chúng tôi\n	    <h3>\n        Chúng tôi làm bạn hài lòng với những ý tưởng sáng tạo và công việc chất lượng.    </h3>\n		<p>Chúng tôi vượt qua mong đợi nhờ những ý tưởng sáng tạo và tay nghề xuất sắc.</p>		\n													<img width=\"59\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png\" alt=\"\" />													\n	    <h3>\n        Quản lý thời gian    </h3>\n		<p>Tổ chức công việc hiệu quả để tối đa hóa năng suất và hoàn thành đúng hạn.</p>		\n													<img width=\"55\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-02.png\" alt=\"\" />													\n	    <h3>\n        Hoàn thành mục tiêu    </h3>\n		<p>Đạt được mục tiêu với sự chính xác và cam kết, đảm bảo thành công.</p>		\n    <img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218231.webp\" alt=\"\" />		\n            <img width=\"111\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature1.png\" alt=\"\" />\n        <h3>Tin Luu</h3>\n        (Chủ tịch và người sáng lập)\n            Bạn muốn biết thêm về chúng tôi?\n            Chỉ cần tải brochure...\n            <a href=\"https://fe2tech.com/wp-content/uploads/2025/03/profile.pdf\" target=\"_blank\" rel=\"nofollow noopener\">\n                                                                    Tải Brochure            </a>\n			Lịch sử công ty\n	    <h3>\n        Far East High Tech là một công ty xây dựng chuyên nghiệp.    </h3>\n		<p>Far East High Tech là công ty hàng đầu trong việc xây dựng và sản xuất các giải pháp cơ khí chất lượng cao.</p>		\n			Start		\n								<h3>Ngày 1 tháng 4, 2021</h3>\n								Với sự phát triển mạnh mẽ của Far East Tech, chúng tôi quyết định mở rộng chi nhánh tại miền Nam.\n								<h3>Ngày 1 tháng 6, 2022</h3>\n								Far East Tech đã tiến một bước quan trọng trong sản xuất quy mô công nghiệp với một xưởng sản xuất rộng 2000m2 và 70 máy CNC tại Bắc Ninh.\n								<h3>Ngày 20 tháng 11, 2018</h3>\n								Far East Tech được thành lập tại Quế Võ, Bắc Ninh với 5 thành viên sáng lập.\n								<h3>Ngày 30 tháng 4, 2021</h3>\n								Chúng tôi đã thành công trong việc tiếp quản công ty DMM Precision Engineering Co., Ltd. tại Bình Dương, một công ty có kinh nghiệm xuất khẩu hàng hóa sang Nhật Bản từ năm 2016, và từ đó, chúng tôi đã thành lập một công ty gia công tại khu vực miền Nam.\n								<h3>2024</h3>\n								Công ty DMM Precision Engineering Co., Ltd. chính thức đổi tên thành Công ty TNHH Far East High Tech.\nSau năm 2025: Đây sẽ là năm phát triển mạnh mẽ của đội ngũ công ty chúng tôi.','Về chúng tôi','','publish','closed','closed','','ve-chung-toi','','','2025-03-17 03:26:07','2025-03-17 03:26:07','',0,'https://fe2tech.com/?page_id=3022',13,'page','',0),(3023,1,'2024-12-17 06:47:35','2024-12-17 06:47:35','','Về chúng tôi','','inherit','closed','closed','','3022-revision-v1','','','2024-12-17 06:47:35','2024-12-17 06:47:35','',3022,'https://fe2tech.com/?p=3023',0,'revision','',0),(3024,1,'2024-12-17 06:53:20','2024-12-17 06:53:20','','Về chúng tôi','','inherit','closed','closed','','3022-revision-v1','','','2024-12-17 06:53:20','2024-12-17 06:53:20','',3022,'https://fe2tech.com/?p=3024',0,'revision','',0),(3025,1,'2024-12-17 06:53:21','2024-12-17 06:53:21','','Về chúng tôi','','inherit','closed','closed','','3022-revision-v1','','','2024-12-17 06:53:21','2024-12-17 06:53:21','',3022,'https://fe2tech.com/?p=3025',0,'revision','',0),(3026,1,'2024-12-17 06:53:21','2024-12-17 06:53:21','Về chúng tôi\n	    <h3>\n        Chúng tôi làm bạn hài lòng với những ý tưởng sáng tạo và công việc chất lượng.    </h3>\n		<p>Chúng tôi vượt qua mong đợi nhờ những ý tưởng sáng tạo và tay nghề xuất sắc.</p>		\n													<img width=\"59\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png\" alt=\"\" />													\n	    <h3>\n        Quản lý thời gian    </h3>\n		<p>Tổ chức công việc hiệu quả để tối đa hóa năng suất và hoàn thành đúng hạn.</p>		\n													<img width=\"55\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-02.png\" alt=\"\" />													\n	    <h3>\n        Hoàn thành mục tiêu    </h3>\n		<p>Đạt được mục tiêu với sự chính xác và cam kết, đảm bảo thành công.</p>		\n    <img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218231.webp\" alt=\"\" />		\n            <img width=\"111\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature1.png\" alt=\"\" />\n        <h3>Tin Luu</h3>\n        (Chủ tịch và người sáng lập)\n            Bạn muốn biết thêm về chúng tôi?\n            Chỉ cần tải brochure...\n            <a href=\"https://fe2tech.com/wp-content/uploads/2024/10/BROCHURE.pdf\" target=\"_blank\" rel=\"nofollow noopener\">\n                                                                    Tải Brochure            </a>\n			Lịch sử công ty\n	    <h3>\n        Far East High Tech là một công ty xây dựng chuyên nghiệp.    </h3>\n		<p>Far East High Tech là công ty hàng đầu trong việc xây dựng và sản xuất các giải pháp cơ khí chất lượng cao.</p>		\n			Start		\n								<h3>Ngày 1 tháng 4, 2021</h3>\n								Với sự phát triển mạnh mẽ của Far East Tech, chúng tôi quyết định mở rộng chi nhánh tại miền Nam.\n								<h3>Ngày 1 tháng 6, 2022</h3>\n								Far East Tech đã tiến một bước quan trọng trong sản xuất quy mô công nghiệp với một xưởng sản xuất rộng 2000m2 và 70 máy CNC tại Bắc Ninh.\n								<h3>Ngày 20 tháng 11, 2018</h3>\n								Far East Tech được thành lập tại Quế Võ, Bắc Ninh với 5 thành viên sáng lập.\n								<h3>Ngày 30 tháng 4, 2021</h3>\n								Chúng tôi đã thành công trong việc tiếp quản công ty DMM Precision Engineering Co., Ltd. tại Bình Dương, một công ty có kinh nghiệm xuất khẩu hàng hóa sang Nhật Bản từ năm 2016, và từ đó, chúng tôi đã thành lập một công ty gia công tại khu vực miền Nam.\n								<h3>2024</h3>\n								Công ty DMM Precision Engineering Co., Ltd. chính thức đổi tên thành Công ty TNHH Far East High Tech.\nSau năm 2025: Đây sẽ là năm phát triển mạnh mẽ của đội ngũ công ty chúng tôi.','Về chúng tôi','','inherit','closed','closed','','3022-revision-v1','','','2024-12-17 06:53:21','2024-12-17 06:53:21','',3022,'https://fe2tech.com/?p=3026',0,'revision','',0),(3027,1,'2024-12-17 06:53:43','2024-12-17 06:53:43','About us\n	    <h3>\n        We satisfy you with innovative ideas and quality work.    </h3>\n		<p>We exceed expectations through innovative ideas and exceptional craftsmanship.</p>		\n													<img width=\"59\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png\" alt=\"\" />													\n	    <h3>\n        Time manage    </h3>\n		<p>Efficiently organizing tasks to maximize productivity and meet deadlines.</p>		\n													<img width=\"55\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-02.png\" alt=\"\" />													\n	    <h3>\n        Fulfill target    </h3>\n		<p>Achieving goals with precision and commitment, ensuring success.</p>		\n    <img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218231.webp\" alt=\"\" />		\n            <img width=\"111\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature1.png\" alt=\"\" />\n        <h3>Tin Luu</h3>\n        (Chairman and founder)\n            Want to know more about us?\n            Just download brochure...\n            <a href=\"https://fe2tech.com/wp-content/uploads/2024/10/BROCHURE.pdf\" target=\"_blank\" rel=\"nofollow noopener\">\n                                                                    Download Brochure            </a>\n			Company history\n	    <h3>\n        Far East High Tech is a professional builder company    </h3>\n		<p>Far East High Tech is a leading company in building and manufacturing high-quality mechanical solutions.</p>		\n			Start		\n								<h3>1st Apr, 2021</h3>\n								With the strong growth of Far East Tech, we decided to expand our branch in the South.\n								<h3>1st Jun, 2022</h3>\n								Far East Tech took a significant step in industrial-scale production with a 2000m2 workshop and 70 CNC machines in Bắc Ninh.\n								<h3>20th Nov, 2018</h3>\n								Far East Tech was established in Quế Võ, Bắc Ninh with 5 founding members.\n								<h3>30th Apr, 2021</h3>\n								We successfully acquired DMM Precision Engineering Co., Ltd. in Bình Dương, a company with experience in exporting goods to Japan since 2016,\nand thus, we established a machining company in the southern region.\n								<h3>2024</h3>\n								DMM Precision Engineering Co., Ltd. officially changed its name to Far East High Tech Co., Ltd.\nAfter 2025: This will be a year of strong development for our company team.','About Us','','inherit','closed','closed','','26-revision-v1','','','2024-12-17 06:53:43','2024-12-17 06:53:43','',26,'https://fe2tech.com/?p=3027',0,'revision','',0),(3028,1,'2024-12-17 06:54:07','2024-12-17 06:54:07','私たちについて\n	    <h3>\n        私たちは、革新的なアイデアと質の高い仕事でお客様を満足させます。    </h3>\n		<p>私たちは、革新的なアイデアと卓越した職人技で期待を超えます。</p>		\n													<img width=\"59\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png\" alt=\"\" />													\n	    <h3>\n        時間管理    </h3>\n		<p>生産性を最大化し、期限を守るためにタスクを効率的に整理します。</p>		\n													<img width=\"55\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-02.png\" alt=\"\" />													\n	    <h3>\n        目標を達成する    </h3>\n		<p>精度とコミットメントで目標を達成し、成功を確実にします。</p>		\n    <img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218231.webp\" alt=\"\" />		\n            <img width=\"111\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature1.png\" alt=\"\" />\n        <h3>Tin Luu</h3>\n        (会長兼創設者)\n            私たちについてもっと知りたいですか?\n            パンフレットをダウンロードするだけです...\n            <a href=\"https://fe2tech.com/wp-content/uploads/2025/03/profile.pdf\" target=\"_blank\" rel=\"nofollow noopener\">\n                                                                    Download Brochure            </a>\n			会社の歴史\n	    <h3>\n        Far East High Techは、プロフェッショナルな建設会社です。    </h3>\n		<p>Far East High Techは、高品質な機械ソリューションの構築と製造において先駆者的な企業です。</p>		\n			開始		\n								<h3>2021年4月1日</h3>\n								Far East Techの強力な成長に伴い、私たちは南部に支店を拡大することを決定しました。\n								<h3>2022年6月1日</h3>\n								Far East Techは、北寧に2000m2のワークショップと70台のCNC機械を備え、産業規模の生産において重要な一歩を踏み出しました。\n								<h3>2018年11月20日</h3>\n								Far East Techは、ベクビンのクエヴォで5人の創設メンバーと共に設立されました。\n								<h3>2021年4月30日</h3>\n								私たちは、2016年から日本への輸出経験を持つDMM Precision Engineering Co., Ltd.をビン Duongで買収し、これにより南部地域に機械加工会社を設立しました。\n								<h3>2024</h3>\n								DMM Precision Engineering Co., Ltd.は正式にFar East High Tech Co., Ltd.に社名を変更しました。\n2025年以降:これは私たちの会社チームにとって強力な発展の年となるでしょう。','私たちについて','','publish','closed','closed','','%e7%a7%81%e3%81%9f%e3%81%a1%e3%81%ab%e3%81%a4%e3%81%84%e3%81%a6','','','2025-03-17 03:26:14','2025-03-17 03:26:14','',0,'https://fe2tech.com/?page_id=3028',14,'page','',0),(3029,1,'2024-12-17 06:54:07','2024-12-17 06:54:07','','私たちについて','','inherit','closed','closed','','3028-revision-v1','','','2024-12-17 06:54:07','2024-12-17 06:54:07','',3028,'https://fe2tech.com/?p=3029',0,'revision','',0),(3030,1,'2024-12-17 06:57:49','2024-12-17 06:57:49','','私たちについて','','inherit','closed','closed','','3028-revision-v1','','','2024-12-17 06:57:49','2024-12-17 06:57:49','',3028,'https://fe2tech.com/?p=3030',0,'revision','',0),(3031,1,'2024-12-17 06:57:50','2024-12-17 06:57:50','','私たちについて','','inherit','closed','closed','','3028-revision-v1','','','2024-12-17 06:57:50','2024-12-17 06:57:50','',3028,'https://fe2tech.com/?p=3031',0,'revision','',0),(3032,1,'2024-12-17 06:57:50','2024-12-17 06:57:50','私たちについて\n	    <h3>\n        私たちは、革新的なアイデアと質の高い仕事でお客様を満足させます。    </h3>\n		<p>私たちは、革新的なアイデアと卓越した職人技で期待を超えます。</p>		\n													<img width=\"59\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png\" alt=\"\" />													\n	    <h3>\n        時間管理    </h3>\n		<p>生産性を最大化し、期限を守るためにタスクを効率的に整理します。</p>		\n													<img width=\"55\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-02.png\" alt=\"\" />													\n	    <h3>\n        目標を達成する    </h3>\n		<p>精度とコミットメントで目標を達成し、成功を確実にします。</p>		\n    <img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218231.webp\" alt=\"\" />		\n            <img width=\"111\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature1.png\" alt=\"\" />\n        <h3>Tin Luu</h3>\n        (会長兼創設者)\n            私たちについてもっと知りたいですか?\n            パンフレットをダウンロードするだけです...\n            <a href=\"https://fe2tech.com/wp-content/uploads/2024/10/BROCHURE.pdf\" target=\"_blank\" rel=\"nofollow noopener\">\n                                                                    Download Brochure            </a>\n			会社の歴史\n	    <h3>\n        Far East High Techは、プロフェッショナルな建設会社です。    </h3>\n		<p>Far East High Techは、高品質な機械ソリューションの構築と製造において先駆者的な企業です。</p>		\n			開始		\n								<h3>2021年4月1日</h3>\n								Far East Techの強力な成長に伴い、私たちは南部に支店を拡大することを決定しました。\n								<h3>2022年6月1日</h3>\n								Far East Techは、北寧に2000m2のワークショップと70台のCNC機械を備え、産業規模の生産において重要な一歩を踏み出しました。\n								<h3>2018年11月20日</h3>\n								Far East Techは、ベクビンのクエヴォで5人の創設メンバーと共に設立されました。\n								<h3>2021年4月30日</h3>\n								私たちは、2016年から日本への輸出経験を持つDMM Precision Engineering Co., Ltd.をビン Duongで買収し、これにより南部地域に機械加工会社を設立しました。\n								<h3>2024</h3>\n								DMM Precision Engineering Co., Ltd.は正式にFar East High Tech Co., Ltd.に社名を変更しました。\n2025年以降:これは私たちの会社チームにとって強力な発展の年となるでしょう。','私たちについて','','inherit','closed','closed','','3028-revision-v1','','','2024-12-17 06:57:50','2024-12-17 06:57:50','',3028,'https://fe2tech.com/?p=3032',0,'revision','',0),(3033,1,'2024-12-17 06:59:19','2024-12-17 06:59:19','<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20%C4%91%C6%B0%E1%BB%9Dng%20s%E1%BB%91%204%2C%20KP2%2C%20P.%20B%C3%ACnh%20Chi%E1%BB%83u%2C%20TP.%20Th%E1%BB%A7%20%C4%90%E1%BB%A9c%2C%20TPHCM&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n					aria-label=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n			></iframe>\n			Contact us\n	    <h3>\n        Hãy thoải mái liên hệ với chúng tôi để giải quyết mọi vấn đề!    </h3>\n                        <img width=\"55\" height=\"65\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/info-icon-01.png\" alt=\"\" />                    \n                    <h3>Địa chỉ văn phòng chính của chúng tôi:</h3>\n                       Số 43, Đường số 4, Khu phố 2, Phường Bình Chiểu, Thành phố Thủ Đức, TP. Hồ Chí Minh                    \n                        <img width=\"66\" height=\"66\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/info-icon-02.png\" alt=\"\" />                    \n                    <h3>Gọi để được giúp đỡ:</h3>\n                       0968860386                    \n                        <img width=\"70\" height=\"68\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/info-icon-03.png\" alt=\"\" />                    \n                    <h3>Gửi email cho chúng tôi để biết thêm thông tin:</h3>\n                       luutin.nmpco@gmail.com                    \n	    <h3>\n        Liên hệ với chúng tôi!    </h3>\n		<p>Nếu bạn có câu hỏi hoặc muốn tìm hiểu thêm về dịch vụ của chúng tôi, đừng ngần ngại liên hệ. Chúng tôi luôn sẵn sàng giúp đỡ!</p>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f91-o3\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"91\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f91-o3\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Name*\" value=\"\" type=\"text\" name=\"your-name\" />\n	</p>\n	<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail address*\" value=\"\" type=\"email\" name=\"your-email\" />\n	</p>\n	<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\" name=\"your-message\"></textarea>\n	</p>\n	<p><button type=\"submit\">Send us now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_3\" name=\"_wpcf7_ak_js\" value=\"137\"/></p>\n</form>','Liên hệ','','publish','closed','closed','','lien-he','','','2024-12-17 07:01:22','2024-12-17 07:01:22','',0,'https://fe2tech.com/?page_id=3033',16,'page','',0),(3034,1,'2024-12-17 06:59:19','2024-12-17 06:59:19','','Liên hệ','','inherit','closed','closed','','3033-revision-v1','','','2024-12-17 06:59:19','2024-12-17 06:59:19','',3033,'https://fe2tech.com/?p=3034',0,'revision','',0),(3035,1,'2024-12-17 07:01:22','2024-12-17 07:01:22','','Liên hệ','','inherit','closed','closed','','3033-revision-v1','','','2024-12-17 07:01:22','2024-12-17 07:01:22','',3033,'https://fe2tech.com/?p=3035',0,'revision','',0),(3036,1,'2024-12-17 07:01:22','2024-12-17 07:01:22','','Liên hệ','','inherit','closed','closed','','3033-revision-v1','','','2024-12-17 07:01:22','2024-12-17 07:01:22','',3033,'https://fe2tech.com/?p=3036',0,'revision','',0),(3037,1,'2024-12-17 07:01:22','2024-12-17 07:01:22','<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20%C4%91%C6%B0%E1%BB%9Dng%20s%E1%BB%91%204%2C%20KP2%2C%20P.%20B%C3%ACnh%20Chi%E1%BB%83u%2C%20TP.%20Th%E1%BB%A7%20%C4%90%E1%BB%A9c%2C%20TPHCM&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n					aria-label=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n			></iframe>\n			Contact us\n	    <h3>\n        Hãy thoải mái liên hệ với chúng tôi để giải quyết mọi vấn đề!    </h3>\n                        <img width=\"55\" height=\"65\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/info-icon-01.png\" alt=\"\" />                    \n                    <h3>Địa chỉ văn phòng chính của chúng tôi:</h3>\n                       Số 43, Đường số 4, Khu phố 2, Phường Bình Chiểu, Thành phố Thủ Đức, TP. Hồ Chí Minh                    \n                        <img width=\"66\" height=\"66\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/info-icon-02.png\" alt=\"\" />                    \n                    <h3>Gọi để được giúp đỡ:</h3>\n                       0968860386                    \n                        <img width=\"70\" height=\"68\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/info-icon-03.png\" alt=\"\" />                    \n                    <h3>Gửi email cho chúng tôi để biết thêm thông tin:</h3>\n                       luutin.nmpco@gmail.com                    \n	    <h3>\n        Liên hệ với chúng tôi!    </h3>\n		<p>Nếu bạn có câu hỏi hoặc muốn tìm hiểu thêm về dịch vụ của chúng tôi, đừng ngần ngại liên hệ. Chúng tôi luôn sẵn sàng giúp đỡ!</p>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f91-o3\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"91\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f91-o3\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Name*\" value=\"\" type=\"text\" name=\"your-name\" />\n	</p>\n	<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail address*\" value=\"\" type=\"email\" name=\"your-email\" />\n	</p>\n	<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\" name=\"your-message\"></textarea>\n	</p>\n	<p><button type=\"submit\">Send us now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_3\" name=\"_wpcf7_ak_js\" value=\"137\"/></p>\n</form>','Liên hệ','','inherit','closed','closed','','3033-revision-v1','','','2024-12-17 07:01:22','2024-12-17 07:01:22','',3033,'https://fe2tech.com/?p=3037',0,'revision','',0),(3038,1,'2024-12-17 07:01:53','2024-12-17 07:01:53','<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20%C4%91%C6%B0%E1%BB%9Dng%20s%E1%BB%91%204%2C%20KP2%2C%20P.%20B%C3%ACnh%20Chi%E1%BB%83u%2C%20TP.%20Th%E1%BB%A7%20%C4%90%E1%BB%A9c%2C%20TPHCM&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n					aria-label=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n			></iframe>\n			Contact us\n	    <h3>\n        どんな問題でも解決するために、お気軽にご連絡ください!    </h3>\n                        <img width=\"55\" height=\"65\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/info-icon-01.png\" alt=\"\" />                    \n                    <h3>本社の住所:</h3>\n                       ホーチミン市、スードゥック市、ビンチュー区、2区街道4番地43                    \n                        <img width=\"66\" height=\"66\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/info-icon-02.png\" alt=\"\" />                    \n                    <h3>サポートを呼ぶ:</h3>\n                       0968860386                    \n                        <img width=\"70\" height=\"68\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/info-icon-03.png\" alt=\"\" />                    \n                    <h3>情報については、私たちにメールしてください:</h3>\n                       luutin.nmpco@gmail.com                    \n	    <h3>\n        ご連絡ください!    </h3>\n		<p>質問がある場合や、私たちのサービスについてもっと知りたい場合は、遠慮なくご連絡ください。お手伝いできることを楽しみにしています!</p>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f91-o3\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"91\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f91-o3\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Name*\" value=\"\" type=\"text\" name=\"your-name\" />\n	</p>\n	<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail address*\" value=\"\" type=\"email\" name=\"your-email\" />\n	</p>\n	<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\" name=\"your-message\"></textarea>\n	</p>\n	<p><button type=\"submit\">Send us now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_3\" name=\"_wpcf7_ak_js\" value=\"228\"/></p>\n</form>','連絡先','','publish','closed','closed','','%e9%80%a3%e7%b5%a1%e5%85%88','','','2024-12-17 07:03:19','2024-12-17 07:03:19','',0,'https://fe2tech.com/?page_id=3038',17,'page','',0),(3039,1,'2024-12-17 07:01:53','2024-12-17 07:01:53','','連絡先','','inherit','closed','closed','','3038-revision-v1','','','2024-12-17 07:01:53','2024-12-17 07:01:53','',3038,'https://fe2tech.com/?p=3039',0,'revision','',0),(3040,1,'2024-12-17 07:03:18','2024-12-17 07:03:18','','連絡先','','inherit','closed','closed','','3038-revision-v1','','','2024-12-17 07:03:18','2024-12-17 07:03:18','',3038,'https://fe2tech.com/?p=3040',0,'revision','',0),(3041,1,'2024-12-17 07:03:19','2024-12-17 07:03:19','','連絡先','','inherit','closed','closed','','3038-revision-v1','','','2024-12-17 07:03:19','2024-12-17 07:03:19','',3038,'https://fe2tech.com/?p=3041',0,'revision','',0),(3042,1,'2024-12-17 07:03:19','2024-12-17 07:03:19','<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=43%20%C4%91%C6%B0%E1%BB%9Dng%20s%E1%BB%91%204%2C%20KP2%2C%20P.%20B%C3%ACnh%20Chi%E1%BB%83u%2C%20TP.%20Th%E1%BB%A7%20%C4%90%E1%BB%A9c%2C%20TPHCM&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n					aria-label=\"43 đường số 4, KP2, P. Bình Chiểu, TP. Thủ Đức, TPHCM\"\n			></iframe>\n			Contact us\n	    <h3>\n        どんな問題でも解決するために、お気軽にご連絡ください!    </h3>\n                        <img width=\"55\" height=\"65\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/info-icon-01.png\" alt=\"\" />                    \n                    <h3>本社の住所:</h3>\n                       ホーチミン市、スードゥック市、ビンチュー区、2区街道4番地43                    \n                        <img width=\"66\" height=\"66\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/info-icon-02.png\" alt=\"\" />                    \n                    <h3>サポートを呼ぶ:</h3>\n                       0968860386                    \n                        <img width=\"70\" height=\"68\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/info-icon-03.png\" alt=\"\" />                    \n                    <h3>情報については、私たちにメールしてください:</h3>\n                       luutin.nmpco@gmail.com                    \n	    <h3>\n        ご連絡ください!    </h3>\n		<p>質問がある場合や、私たちのサービスについてもっと知りたい場合は、遠慮なくご連絡ください。お手伝いできることを楽しみにしています!</p>		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f91-o3\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"91\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f91-o3\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Name*\" value=\"\" type=\"text\" name=\"your-name\" />\n	</p>\n	<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail address*\" value=\"\" type=\"email\" name=\"your-email\" />\n	</p>\n	<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\" name=\"your-message\"></textarea>\n	</p>\n	<p><button type=\"submit\">Send us now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_3\" name=\"_wpcf7_ak_js\" value=\"228\"/></p>\n</form>','連絡先','','inherit','closed','closed','','3038-revision-v1','','','2024-12-17 07:03:19','2024-12-17 07:03:19','',3038,'https://fe2tech.com/?p=3042',0,'revision','',0),(3043,1,'2024-12-17 07:06:25','2024-12-17 07:06:25','<h3 class=\"title-service\">Chúng tôi xuất sắc trong các sản phẩm nhôm và thép, đặc biệt là các tấm nhôm mỏng và đồ chơi liên quan đến xe máy.</h3>\r\n<div class=\"masonry-gallery\"><img class=\"gallery-image\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112022581961_f2a47cd330f690d0a726b0888ff80ab1.jpg\" alt=\"\" />\r\n<img class=\"gallery-image\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112022572357_0cdb065792788d3493b2e389df79a5e2.jpg\" alt=\"\" />\r\n<img class=\"gallery-image\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112022611669_d154017fd0d3c02db6be468c7db9fa32.jpg\" alt=\"\" />\r\n<img class=\"gallery-image\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035366910_4defd4ad74170bea5d4fa69518dafb6d.jpg\" alt=\"\" />\r\n<img class=\"gallery-image\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035331028_b1fcc3e9f1979a96aaebf343697989b4.jpg\" alt=\"\" />\r\n<img class=\"gallery-image\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035303451_55cd6bcbf16c201a507ca6ac10623d02.jpg\" alt=\"\" />\r\n<img class=\"gallery-image\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035333555_19b4ef8a09ed63f106da162eac3d9775.jpg\" alt=\"\" />\r\n<img class=\"gallery-image\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112022609645_43af0256c23b3f39325ac10fe40d3200.jpg\" alt=\"\" />\r\n<img class=\"gallery-image\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035380871_0810f1b5bcdd3396a375bf5a785686ae.jpg\" alt=\"\" />\r\n<img class=\"gallery-image\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112143350420_5fdf5495fc11f668a8b6e8b865a0670a.jpg\" alt=\"\" />\r\n<img class=\"gallery-image\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112159599274_ed84aaa8ae44eb900b332183d18d35ff.jpg\" alt=\"\" />\r\n<img class=\"gallery-image\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4379673923151_1f10bec1ef168974349f66b16772c543.jpg\" alt=\"\" />\r\n<img class=\"gallery-image\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5997919286088_1aafc52570d9ee521cb7325aaa3efbbb.jpg\" alt=\"\" /></div>','Dịch vụ phay CNC','','publish','closed','closed','','dich-vu-phay-cnc','','','2024-12-17 07:15:38','2024-12-17 07:15:38','',0,'https://fe2tech.com/?post_type=service&#038;p=3043',1,'service','',0),(3044,1,'2024-12-17 07:06:25','2024-12-17 07:06:25','<h3 class=\"title-service\">Chúng tôi xuất sắc trong các sản phẩm nhôm và thép, đặc biệt là các tấm nhôm mỏng và đồ chơi liên quan đến xe máy.</h3>\r\n<div class=\"masonry-gallery\"><img class=\"gallery-image\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112022581961_f2a47cd330f690d0a726b0888ff80ab1.jpg\" alt=\"\" />\r\n<img class=\"gallery-image\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112022572357_0cdb065792788d3493b2e389df79a5e2.jpg\" alt=\"\" />\r\n<img class=\"gallery-image\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112022611669_d154017fd0d3c02db6be468c7db9fa32.jpg\" alt=\"\" />\r\n<img class=\"gallery-image\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035366910_4defd4ad74170bea5d4fa69518dafb6d.jpg\" alt=\"\" />\r\n<img class=\"gallery-image\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035331028_b1fcc3e9f1979a96aaebf343697989b4.jpg\" alt=\"\" />\r\n<img class=\"gallery-image\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035303451_55cd6bcbf16c201a507ca6ac10623d02.jpg\" alt=\"\" />\r\n<img class=\"gallery-image\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035333555_19b4ef8a09ed63f106da162eac3d9775.jpg\" alt=\"\" />\r\n<img class=\"gallery-image\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112022609645_43af0256c23b3f39325ac10fe40d3200.jpg\" alt=\"\" />\r\n<img class=\"gallery-image\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035380871_0810f1b5bcdd3396a375bf5a785686ae.jpg\" alt=\"\" />\r\n<img class=\"gallery-image\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112143350420_5fdf5495fc11f668a8b6e8b865a0670a.jpg\" alt=\"\" />\r\n<img class=\"gallery-image\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112159599274_ed84aaa8ae44eb900b332183d18d35ff.jpg\" alt=\"\" />\r\n<img class=\"gallery-image\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4379673923151_1f10bec1ef168974349f66b16772c543.jpg\" alt=\"\" />\r\n<img class=\"gallery-image\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5997919286088_1aafc52570d9ee521cb7325aaa3efbbb.jpg\" alt=\"\" /></div>','Dịch vụ phay CNC','','inherit','closed','closed','','3043-revision-v1','','','2024-12-17 07:06:25','2024-12-17 07:06:25','',3043,'https://fe2tech.com/?p=3044',0,'revision','',0),(3045,1,'2024-12-17 07:07:25','2024-12-17 07:07:25','<h3 class=\"title-service\">私たちは、アルミニウムと鋼の製品に優れ、特に薄いアルミニウムシートやオートバイ関連のおもちゃに特化しています。</h3>\r\n<div class=\"masonry-gallery\"><img class=\"gallery-image\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112022581961_f2a47cd330f690d0a726b0888ff80ab1.jpg\" alt=\"\" />\r\n<img class=\"gallery-image\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112022572357_0cdb065792788d3493b2e389df79a5e2.jpg\" alt=\"\" />\r\n<img class=\"gallery-image\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112022611669_d154017fd0d3c02db6be468c7db9fa32.jpg\" alt=\"\" />\r\n<img class=\"gallery-image\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035366910_4defd4ad74170bea5d4fa69518dafb6d.jpg\" alt=\"\" />\r\n<img class=\"gallery-image\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035331028_b1fcc3e9f1979a96aaebf343697989b4.jpg\" alt=\"\" />\r\n<img class=\"gallery-image\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035303451_55cd6bcbf16c201a507ca6ac10623d02.jpg\" alt=\"\" />\r\n<img class=\"gallery-image\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035333555_19b4ef8a09ed63f106da162eac3d9775.jpg\" alt=\"\" />\r\n<img class=\"gallery-image\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112022609645_43af0256c23b3f39325ac10fe40d3200.jpg\" alt=\"\" />\r\n<img class=\"gallery-image\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035380871_0810f1b5bcdd3396a375bf5a785686ae.jpg\" alt=\"\" />\r\n<img class=\"gallery-image\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112143350420_5fdf5495fc11f668a8b6e8b865a0670a.jpg\" alt=\"\" />\r\n<img class=\"gallery-image\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112159599274_ed84aaa8ae44eb900b332183d18d35ff.jpg\" alt=\"\" />\r\n<img class=\"gallery-image\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4379673923151_1f10bec1ef168974349f66b16772c543.jpg\" alt=\"\" />\r\n<img class=\"gallery-image\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5997919286088_1aafc52570d9ee521cb7325aaa3efbbb.jpg\" alt=\"\" /></div>','NCフライス加工サービス','','publish','closed','closed','','nc%e3%83%95%e3%83%a9%e3%82%a4%e3%82%b9%e5%8a%a0%e5%b7%a5%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9','','','2024-12-17 07:15:43','2024-12-17 07:15:43','',0,'https://fe2tech.com/?post_type=service&#038;p=3045',2,'service','',0),(3046,1,'2024-12-17 07:07:25','2024-12-17 07:07:25','<h3 class=\"title-service\">私たちは、アルミニウムと鋼の製品に優れ、特に薄いアルミニウムシートやオートバイ関連のおもちゃに特化しています。</h3>\r\n<div class=\"masonry-gallery\"><img class=\"gallery-image\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112022581961_f2a47cd330f690d0a726b0888ff80ab1.jpg\" alt=\"\" />\r\n<img class=\"gallery-image\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112022572357_0cdb065792788d3493b2e389df79a5e2.jpg\" alt=\"\" />\r\n<img class=\"gallery-image\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112022611669_d154017fd0d3c02db6be468c7db9fa32.jpg\" alt=\"\" />\r\n<img class=\"gallery-image\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035366910_4defd4ad74170bea5d4fa69518dafb6d.jpg\" alt=\"\" />\r\n<img class=\"gallery-image\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035331028_b1fcc3e9f1979a96aaebf343697989b4.jpg\" alt=\"\" />\r\n<img class=\"gallery-image\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035303451_55cd6bcbf16c201a507ca6ac10623d02.jpg\" alt=\"\" />\r\n<img class=\"gallery-image\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035333555_19b4ef8a09ed63f106da162eac3d9775.jpg\" alt=\"\" />\r\n<img class=\"gallery-image\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112022609645_43af0256c23b3f39325ac10fe40d3200.jpg\" alt=\"\" />\r\n<img class=\"gallery-image\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035380871_0810f1b5bcdd3396a375bf5a785686ae.jpg\" alt=\"\" />\r\n<img class=\"gallery-image\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112143350420_5fdf5495fc11f668a8b6e8b865a0670a.jpg\" alt=\"\" />\r\n<img class=\"gallery-image\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112159599274_ed84aaa8ae44eb900b332183d18d35ff.jpg\" alt=\"\" />\r\n<img class=\"gallery-image\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4379673923151_1f10bec1ef168974349f66b16772c543.jpg\" alt=\"\" />\r\n<img class=\"gallery-image\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5997919286088_1aafc52570d9ee521cb7325aaa3efbbb.jpg\" alt=\"\" /></div>','NCフライス加工サービス','','inherit','closed','closed','','3045-revision-v1','','','2024-12-17 07:07:25','2024-12-17 07:07:25','',3045,'https://fe2tech.com/?p=3046',0,'revision','',0),(3047,1,'2024-12-17 07:10:11','2024-12-17 07:10:11','<h3 class=\"title-service\">Chúng tôi có thể sản xuất tất cả các sản phẩm nhỏ đến vừa cho tất cả các loại vật liệu.</h3>\r\n<div class=\"masonry-gallery\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112523290035_3b7a728aff36d17b39821c04b01ee4d5.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112523303443_aeb69e713b0de04bc8b594cb00fb49ca.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035284762_1f2181b896dc72283dffd21ff2accf18.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035279331_ec2e9746f1d2b6055f9d822183a20b7b.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035401524_aa7e2e59cf891c7dd20122738c01da99.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035395698_a7f89619dfa324b6009e13e700d16a52.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035405011_b0e4efc850356273be1ea0ebf41973d5.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112523246386_fb69855463997d37d3a5b9189e8633a5.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112523253089_bd1c2eefa8e745863c395bcdd175f37c.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112523265271_a713cd9cae68eb5e8623d240ee9c0f46.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112523276603_ec2b0734a46271e77485348ecdebe9a5.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112143335944_8a90c104b6e5a3531a1b8d7a439e6db3.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112143337763_e6237e74ed00be98c9396eb0b6012587.jpg\" alt=\"\" class=\"gallery-image\">\r\n</div>\r\n','Dịch vụ tiện CNC','','publish','closed','closed','','dich-vu-tien-cnc','','','2024-12-17 07:15:22','2024-12-17 07:15:22','',0,'https://fe2tech.com/?post_type=service&#038;p=3047',4,'service','',0),(3048,1,'2024-12-17 07:10:11','2024-12-17 07:10:11','<h3 class=\"title-service\">Chúng tôi có thể sản xuất tất cả các sản phẩm nhỏ đến vừa cho tất cả các loại vật liệu.</h3>\r\n<div class=\"masonry-gallery\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112523290035_3b7a728aff36d17b39821c04b01ee4d5.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112523303443_aeb69e713b0de04bc8b594cb00fb49ca.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035284762_1f2181b896dc72283dffd21ff2accf18.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035279331_ec2e9746f1d2b6055f9d822183a20b7b.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035401524_aa7e2e59cf891c7dd20122738c01da99.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035395698_a7f89619dfa324b6009e13e700d16a52.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035405011_b0e4efc850356273be1ea0ebf41973d5.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112523246386_fb69855463997d37d3a5b9189e8633a5.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112523253089_bd1c2eefa8e745863c395bcdd175f37c.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112523265271_a713cd9cae68eb5e8623d240ee9c0f46.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112523276603_ec2b0734a46271e77485348ecdebe9a5.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112143335944_8a90c104b6e5a3531a1b8d7a439e6db3.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112143337763_e6237e74ed00be98c9396eb0b6012587.jpg\" alt=\"\" class=\"gallery-image\">\r\n</div>\r\n','Dịch vụ tiện CNC','','inherit','closed','closed','','3047-revision-v1','','','2024-12-17 07:10:11','2024-12-17 07:10:11','',3047,'https://fe2tech.com/?p=3048',0,'revision','',0),(3051,1,'2024-12-17 07:15:04','2024-12-17 07:15:04','<h3 class=\"title-service\">私たちは、あらゆる種類の材料に対して、小型から中型のアイテムをすべて製造できます。</h3>\r\n<div class=\"masonry-gallery\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112523290035_3b7a728aff36d17b39821c04b01ee4d5.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112523303443_aeb69e713b0de04bc8b594cb00fb49ca.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035284762_1f2181b896dc72283dffd21ff2accf18.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035279331_ec2e9746f1d2b6055f9d822183a20b7b.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035401524_aa7e2e59cf891c7dd20122738c01da99.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035395698_a7f89619dfa324b6009e13e700d16a52.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035405011_b0e4efc850356273be1ea0ebf41973d5.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112523246386_fb69855463997d37d3a5b9189e8633a5.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112523253089_bd1c2eefa8e745863c395bcdd175f37c.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112523265271_a713cd9cae68eb5e8623d240ee9c0f46.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112523276603_ec2b0734a46271e77485348ecdebe9a5.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112143335944_8a90c104b6e5a3531a1b8d7a439e6db3.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112143337763_e6237e74ed00be98c9396eb0b6012587.jpg\" alt=\"\" class=\"gallery-image\">\r\n</div>\r\n','CNC旋盤サービス','','publish','closed','closed','','cnc%e6%97%8b%e7%9b%a4%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9','','','2024-12-17 07:15:04','2024-12-17 07:15:04','',0,'https://fe2tech.com/?post_type=service&#038;p=3051',5,'service','',0),(3052,1,'2024-12-17 07:15:04','2024-12-17 07:15:04','<h3 class=\"title-service\">私たちは、あらゆる種類の材料に対して、小型から中型のアイテムをすべて製造できます。</h3>\r\n<div class=\"masonry-gallery\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112523290035_3b7a728aff36d17b39821c04b01ee4d5.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112523303443_aeb69e713b0de04bc8b594cb00fb49ca.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035284762_1f2181b896dc72283dffd21ff2accf18.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035279331_ec2e9746f1d2b6055f9d822183a20b7b.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035401524_aa7e2e59cf891c7dd20122738c01da99.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035395698_a7f89619dfa324b6009e13e700d16a52.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035405011_b0e4efc850356273be1ea0ebf41973d5.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112523246386_fb69855463997d37d3a5b9189e8633a5.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112523253089_bd1c2eefa8e745863c395bcdd175f37c.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112523265271_a713cd9cae68eb5e8623d240ee9c0f46.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112523276603_ec2b0734a46271e77485348ecdebe9a5.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112143335944_8a90c104b6e5a3531a1b8d7a439e6db3.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112143337763_e6237e74ed00be98c9396eb0b6012587.jpg\" alt=\"\" class=\"gallery-image\">\r\n</div>\r\n','CNC旋盤サービス','','inherit','closed','closed','','3051-revision-v1','','','2024-12-17 07:15:04','2024-12-17 07:15:04','',3051,'https://fe2tech.com/?p=3052',0,'revision','',0),(3053,1,'2024-12-17 07:17:42','2024-12-17 07:17:42','<h3 class=\"title-service\">Đây là các dịch vụ hỗ trợ cho ngành khuôn mẫu và các sản phẩm chi tiết của chúng tôi.</h3>\r\n<div class=\"masonry-gallery\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112160416378_bce4411fe74027d63005630fc7884a80.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112161045939_2fab496392927de92680189440d9df11.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112162162899_9fa7af3084979b141c9a5af02bd64b8f.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112162913774_3cf6b72cb16904b5c0aa22911ad9062c.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112342749062_a373f44d190f5f95bac710bb2609c8dc.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112342752051_e8e5731247c67e8d13ba9032e0df2071.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112342758960_0cf70e0e2fc3c20f1fcdfa00de30734e.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112342779226_b9935186416483d88d8d4a3741c445ac.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112343562589_0c62c0c2a11f68e02e7302f2022d802f.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112343020134_4e3fd602c682b52d16603b05d64b5b3b.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112343022575_b75ed6f8141de2096bd693992964bc07.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112343024138_c84a3e4bb6f5d346d7a6e09e56086f61.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112343028537_b1ff9fb76f888c3ed07f01643f0020f0.jpg\" alt=\"\" class=\"gallery-image\">\r\n</div>\r\n','Dịch vụ mài dụng cụ CNC','','publish','closed','closed','','dich-vu-mai-dung-cu-cnc','','','2024-12-17 07:20:24','2024-12-17 07:20:24','',0,'https://fe2tech.com/?post_type=service&#038;p=3053',7,'service','',0),(3054,1,'2024-12-17 07:17:42','2024-12-17 07:17:42','<h3 class=\"title-service\">Đây là các dịch vụ hỗ trợ cho ngành khuôn mẫu và các sản phẩm chi tiết của chúng tôi.</h3>\r\n<div class=\"masonry-gallery\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112160416378_bce4411fe74027d63005630fc7884a80.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112161045939_2fab496392927de92680189440d9df11.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112162162899_9fa7af3084979b141c9a5af02bd64b8f.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112162913774_3cf6b72cb16904b5c0aa22911ad9062c.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112342749062_a373f44d190f5f95bac710bb2609c8dc.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112342752051_e8e5731247c67e8d13ba9032e0df2071.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112342758960_0cf70e0e2fc3c20f1fcdfa00de30734e.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112342779226_b9935186416483d88d8d4a3741c445ac.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112343562589_0c62c0c2a11f68e02e7302f2022d802f.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112343020134_4e3fd602c682b52d16603b05d64b5b3b.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112343022575_b75ed6f8141de2096bd693992964bc07.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112343024138_c84a3e4bb6f5d346d7a6e09e56086f61.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112343028537_b1ff9fb76f888c3ed07f01643f0020f0.jpg\" alt=\"\" class=\"gallery-image\">\r\n</div>\r\n','Dịch vụ mài dụng cụ CNC','','inherit','closed','closed','','3053-revision-v1','','','2024-12-17 07:17:42','2024-12-17 07:17:42','',3053,'https://fe2tech.com/?p=3054',0,'revision','',0),(3055,1,'2024-12-17 07:20:53','2024-12-17 07:20:53','<h3 class=\"title-service\">これらは、金型業界のサポートサービスと私たちの詳細な製品です。</h3>\r\n<div class=\"masonry-gallery\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112160416378_bce4411fe74027d63005630fc7884a80.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112161045939_2fab496392927de92680189440d9df11.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112162162899_9fa7af3084979b141c9a5af02bd64b8f.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112162913774_3cf6b72cb16904b5c0aa22911ad9062c.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112342749062_a373f44d190f5f95bac710bb2609c8dc.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112342752051_e8e5731247c67e8d13ba9032e0df2071.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112342758960_0cf70e0e2fc3c20f1fcdfa00de30734e.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112342779226_b9935186416483d88d8d4a3741c445ac.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112343562589_0c62c0c2a11f68e02e7302f2022d802f.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112343020134_4e3fd602c682b52d16603b05d64b5b3b.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112343022575_b75ed6f8141de2096bd693992964bc07.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112343024138_c84a3e4bb6f5d346d7a6e09e56086f61.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112343028537_b1ff9fb76f888c3ed07f01643f0020f0.jpg\" alt=\"\" class=\"gallery-image\">\r\n</div>\r\n','CNCツールグラインダーサービス','','publish','closed','closed','','cnc%e3%83%84%e3%83%bc%e3%83%ab%e3%82%b0%e3%83%a9%e3%82%a4%e3%83%b3%e3%83%80%e3%83%bc%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9','','','2024-12-17 07:20:53','2024-12-17 07:20:53','',0,'https://fe2tech.com/?post_type=service&#038;p=3055',8,'service','',0),(3056,1,'2024-12-17 07:20:53','2024-12-17 07:20:53','<h3 class=\"title-service\">これらは、金型業界のサポートサービスと私たちの詳細な製品です。</h3>\r\n<div class=\"masonry-gallery\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112160416378_bce4411fe74027d63005630fc7884a80.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112161045939_2fab496392927de92680189440d9df11.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112162162899_9fa7af3084979b141c9a5af02bd64b8f.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112162913774_3cf6b72cb16904b5c0aa22911ad9062c.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112342749062_a373f44d190f5f95bac710bb2609c8dc.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112342752051_e8e5731247c67e8d13ba9032e0df2071.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112342758960_0cf70e0e2fc3c20f1fcdfa00de30734e.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112342779226_b9935186416483d88d8d4a3741c445ac.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112343562589_0c62c0c2a11f68e02e7302f2022d802f.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112343020134_4e3fd602c682b52d16603b05d64b5b3b.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112343022575_b75ed6f8141de2096bd693992964bc07.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112343024138_c84a3e4bb6f5d346d7a6e09e56086f61.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112343028537_b1ff9fb76f888c3ed07f01643f0020f0.jpg\" alt=\"\" class=\"gallery-image\">\r\n</div>\r\n','CNCツールグラインダーサービス','','inherit','closed','closed','','3055-revision-v1','','','2024-12-17 07:20:53','2024-12-17 07:20:53','',3055,'https://fe2tech.com/?p=3056',0,'revision','',0),(3057,1,'2024-12-17 07:22:23','2024-12-17 07:22:23','<h3 class=\"title-service\">Chúng tôi có thể sơn các sản phẩm hoàn thiện theo yêu cầu của khách hàng.</h3>\r\n<div class=\"masonry-gallery\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4614273923773_699996016c1c52f0895299d5358fe8a6.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4614243915927_45cd79faef986c5ca9f1ed80434ca840.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4859515672356_2e4104881b39c559fe9d687370a67394.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5095181853127_bdd8a417c860e722ad4f5e79f91dea8f.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5095181851706_d23ac9a42e1be2ea98d323da1f663eaf.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4749871034728_13d43ad63eed2b6e7e1496638d7853af.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4749871031095_9182ad19e7ac8defae8c32b8cc44b440.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4749871031211_ed4fe9d663e0c07fddaaef221a1144c7.jpg\" alt=\"\" class=\"gallery-image\">\r\n</div>\r\n\r\n','Dịch vụ gia công kim loại tấm','','publish','closed','closed','','dich-vu-gia-cong-kim-loai-tam','','','2024-12-17 07:22:23','2024-12-17 07:22:23','',0,'https://fe2tech.com/?post_type=service&#038;p=3057',10,'service','',0),(3058,1,'2024-12-17 07:22:23','2024-12-17 07:22:23','<h3 class=\"title-service\">Chúng tôi có thể sơn các sản phẩm hoàn thiện theo yêu cầu của khách hàng.</h3>\r\n<div class=\"masonry-gallery\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4614273923773_699996016c1c52f0895299d5358fe8a6.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4614243915927_45cd79faef986c5ca9f1ed80434ca840.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4859515672356_2e4104881b39c559fe9d687370a67394.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5095181853127_bdd8a417c860e722ad4f5e79f91dea8f.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5095181851706_d23ac9a42e1be2ea98d323da1f663eaf.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4749871034728_13d43ad63eed2b6e7e1496638d7853af.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4749871031095_9182ad19e7ac8defae8c32b8cc44b440.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4749871031211_ed4fe9d663e0c07fddaaef221a1144c7.jpg\" alt=\"\" class=\"gallery-image\">\r\n</div>\r\n\r\n','Dịch vụ gia công kim loại tấm','','inherit','closed','closed','','3057-revision-v1','','','2024-12-17 07:22:23','2024-12-17 07:22:23','',3057,'https://fe2tech.com/?p=3058',0,'revision','',0),(3059,1,'2024-12-17 07:22:45','2024-12-17 07:22:45','<h3 class=\"title-service\">私たちは、お客様の要求に応じて完成品を塗装することができます。</h3>\r\n<div class=\"masonry-gallery\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4614273923773_699996016c1c52f0895299d5358fe8a6.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4614243915927_45cd79faef986c5ca9f1ed80434ca840.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4859515672356_2e4104881b39c559fe9d687370a67394.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5095181853127_bdd8a417c860e722ad4f5e79f91dea8f.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5095181851706_d23ac9a42e1be2ea98d323da1f663eaf.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4749871034728_13d43ad63eed2b6e7e1496638d7853af.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4749871031095_9182ad19e7ac8defae8c32b8cc44b440.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4749871031211_ed4fe9d663e0c07fddaaef221a1144c7.jpg\" alt=\"\" class=\"gallery-image\">\r\n</div>\r\n\r\n','板金加工サービス','','publish','closed','closed','','%e6%9d%bf%e9%87%91%e5%8a%a0%e5%b7%a5%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9','','','2024-12-17 07:22:52','2024-12-17 07:22:52','',0,'https://fe2tech.com/?post_type=service&#038;p=3059',11,'service','',0),(3060,1,'2024-12-17 07:22:45','2024-12-17 07:22:45','<h3 class=\"title-service\">私たちは、お客様の要求に応じて完成品を塗装することができます。</h3>\r\n<div class=\"masonry-gallery\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4614273923773_699996016c1c52f0895299d5358fe8a6.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4614243915927_45cd79faef986c5ca9f1ed80434ca840.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4859515672356_2e4104881b39c559fe9d687370a67394.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5095181853127_bdd8a417c860e722ad4f5e79f91dea8f.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5095181851706_d23ac9a42e1be2ea98d323da1f663eaf.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4749871034728_13d43ad63eed2b6e7e1496638d7853af.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4749871031095_9182ad19e7ac8defae8c32b8cc44b440.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4749871031211_ed4fe9d663e0c07fddaaef221a1144c7.jpg\" alt=\"\" class=\"gallery-image\">\r\n</div>\r\n\r\n','板金加工サービス','','inherit','closed','closed','','3059-revision-v1','','','2024-12-17 07:22:45','2024-12-17 07:22:45','',3059,'https://fe2tech.com/?p=3060',0,'revision','',0),(3061,1,'2024-12-17 07:30:41','2024-12-17 07:30:41','<h3 class=\"title-service\">Chúng tôi có các kỹ sư hàn dày dặn kinh nghiệm để đảm bảo các sản phẩm hàn chất lượng cao.<br>Chúng tôi cung cấp dịch vụ hàn Mig, hàn Tig và hàn laser.<br>Đặc biệt, chúng tôi chuyên hàn laser nhôm để xuất khẩu sang thị trường Mỹ.</h3>\r\n<div class=\"masonry-gallery\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112380520686_e42a34abefc41f7baa77f40a51e11e10.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112380501656_5b9317f1571553500813fa23f5ffd678.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112380524857_d617d3c8ff36c93a8360aeb9239dc924.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4749871059944_22ebc1e4e9fef7e1a4c18a87b17ad83f.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112380533580_58467dd3a6c609d250f917b7cb523083.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112380547520_189c3d8c494143167c5bea938b7789c8.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112380509099_8e38c91b9a664647d606ed55ecccc8ae.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4749871065923_4d7a315a6e76ccde22ddab12dbdcd6c3.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4749871062649_2ef68ba42152c462b7730e250fa0695b.jpg\" alt=\"\" class=\"gallery-image\">\r\n</div>\r\n\r\n','Dịch vụ hàn','','publish','closed','closed','','dich-vu-han','','','2024-12-17 07:30:41','2024-12-17 07:30:41','',0,'https://fe2tech.com/?post_type=service&#038;p=3061',13,'service','',0),(3062,1,'2024-12-17 07:30:41','2024-12-17 07:30:41','<h3 class=\"title-service\">Chúng tôi có các kỹ sư hàn dày dặn kinh nghiệm để đảm bảo các sản phẩm hàn chất lượng cao.<br>Chúng tôi cung cấp dịch vụ hàn Mig, hàn Tig và hàn laser.<br>Đặc biệt, chúng tôi chuyên hàn laser nhôm để xuất khẩu sang thị trường Mỹ.</h3>\r\n<div class=\"masonry-gallery\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112380520686_e42a34abefc41f7baa77f40a51e11e10.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112380501656_5b9317f1571553500813fa23f5ffd678.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112380524857_d617d3c8ff36c93a8360aeb9239dc924.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4749871059944_22ebc1e4e9fef7e1a4c18a87b17ad83f.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112380533580_58467dd3a6c609d250f917b7cb523083.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112380547520_189c3d8c494143167c5bea938b7789c8.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112380509099_8e38c91b9a664647d606ed55ecccc8ae.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4749871065923_4d7a315a6e76ccde22ddab12dbdcd6c3.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4749871062649_2ef68ba42152c462b7730e250fa0695b.jpg\" alt=\"\" class=\"gallery-image\">\r\n</div>\r\n\r\n','Dịch vụ hàn','','inherit','closed','closed','','3061-revision-v1','','','2024-12-17 07:30:41','2024-12-17 07:30:41','',3061,'https://fe2tech.com/?p=3062',0,'revision','',0),(3063,1,'2024-12-17 07:31:20','2024-12-17 07:31:20','<h3 class=\"title-service\">私たちは、高品質な溶接製品を保証するためのベテラン溶接エンジニアを揃えています。<br>Mig溶接、Tig溶接、レーザー溶接を提供しています。<br>特に、米国市場向けのアルミニウムのレーザー溶接に特化しています。</h3>\r\n<div class=\"masonry-gallery\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112380520686_e42a34abefc41f7baa77f40a51e11e10.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112380501656_5b9317f1571553500813fa23f5ffd678.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112380524857_d617d3c8ff36c93a8360aeb9239dc924.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4749871059944_22ebc1e4e9fef7e1a4c18a87b17ad83f.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112380533580_58467dd3a6c609d250f917b7cb523083.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112380547520_189c3d8c494143167c5bea938b7789c8.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112380509099_8e38c91b9a664647d606ed55ecccc8ae.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4749871065923_4d7a315a6e76ccde22ddab12dbdcd6c3.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4749871062649_2ef68ba42152c462b7730e250fa0695b.jpg\" alt=\"\" class=\"gallery-image\">\r\n</div>\r\n\r\n','溶接サービス','','publish','closed','closed','','%e6%ba%b6%e6%8e%a5%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9','','','2024-12-17 07:31:28','2024-12-17 07:31:28','',0,'https://fe2tech.com/?post_type=service&#038;p=3063',14,'service','',0),(3064,1,'2024-12-17 07:31:20','2024-12-17 07:31:20','<h3 class=\"title-service\">私たちは、高品質な溶接製品を保証するためのベテラン溶接エンジニアを揃えています。<br>Mig溶接、Tig溶接、レーザー溶接を提供しています。<br>特に、米国市場向けのアルミニウムのレーザー溶接に特化しています。</h3>\r\n<div class=\"masonry-gallery\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112380520686_e42a34abefc41f7baa77f40a51e11e10.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112380501656_5b9317f1571553500813fa23f5ffd678.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112380524857_d617d3c8ff36c93a8360aeb9239dc924.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4749871059944_22ebc1e4e9fef7e1a4c18a87b17ad83f.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112380533580_58467dd3a6c609d250f917b7cb523083.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112380547520_189c3d8c494143167c5bea938b7789c8.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112380509099_8e38c91b9a664647d606ed55ecccc8ae.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4749871065923_4d7a315a6e76ccde22ddab12dbdcd6c3.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4749871062649_2ef68ba42152c462b7730e250fa0695b.jpg\" alt=\"\" class=\"gallery-image\">\r\n</div>\r\n\r\n','溶接サービス','','inherit','closed','closed','','3063-revision-v1','','','2024-12-17 07:31:20','2024-12-17 07:31:20','',3063,'https://fe2tech.com/?p=3064',0,'revision','',0),(3065,1,'2024-12-17 07:31:24','2024-12-17 07:31:24','<h3 class=\"title-service\">私たちは、高品質な溶接製品を保証するためのベテラン溶接エンジニアを揃えています。<br>Mig溶接、Tig溶接、レーザー溶接を提供しています。<br>特に、米国市場向けのアルミニウムのレーザー溶接に特化しています。</h3>\n<div class=\"masonry-gallery\">\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112380520686_e42a34abefc41f7baa77f40a51e11e10.jpg\" alt=\"\" class=\"gallery-image\">\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112380501656_5b9317f1571553500813fa23f5ffd678.jpg\" alt=\"\" class=\"gallery-image\">\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112380524857_d617d3c8ff36c93a8360aeb9239dc924.jpg\" alt=\"\" class=\"gallery-image\">\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4749871059944_22ebc1e4e9fef7e1a4c18a87b17ad83f.jpg\" alt=\"\" class=\"gallery-image\">\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112380533580_58467dd3a6c609d250f917b7cb523083.jpg\" alt=\"\" class=\"gallery-image\">\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112380547520_189c3d8c494143167c5bea938b7789c8.jpg\" alt=\"\" class=\"gallery-image\">\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112380509099_8e38c91b9a664647d606ed55ecccc8ae.jpg\" alt=\"\" class=\"gallery-image\">\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4749871065923_4d7a315a6e76ccde22ddab12dbdcd6c3.jpg\" alt=\"\" class=\"gallery-image\">\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4749871062649_2ef68ba42152c462b7730e250fa0695b.jpg\" alt=\"\" class=\"gallery-image\">\n</div>\n\n','溶接サービス','','inherit','closed','closed','','3063-autosave-v1','','','2024-12-17 07:31:24','2024-12-17 07:31:24','',3063,'https://fe2tech.com/?p=3065',0,'revision','',0),(3066,1,'2024-12-17 07:33:24','2024-12-17 07:33:24','<h3 class=\"title-service\">Gia công chính xác sử dụng phóng điện, mài và cắt dây để đạt độ chính xác cao cho các chi tiết nhỏ và phức tạp.</h3>\r\n<div class=\"masonry-gallery\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112398373909_156bfb41f9711a15035cfede452ce1a9.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112398387244_688f2cffa04694e309441b36b11b142f.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112398406318_cba797f1e93e87ade947c770d0d40a8f.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112398417726_5127342a763e9e24abc186f97a44aff8.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112399243827_06cc313a2878998df579b1c3dcedc86d.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112402158092_30b348ffeb1bd490d6abf2ba9eb85786.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112402161733_fb456855a646106f5d0896b14dc1774a.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112407952259_47d9353a1faa9e7f704c496b431fc2e8.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112407943622_643893c3e779b10c7addfe792dde6674.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112407932531_75c831c196d633f15a7d2ac8ca23dd73.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112475733731_0f87c5cb35371e36f87164b091dee9e7.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112475735545_8ad6ec49c1c9ca3aa9ad469ee5e61195.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112475588456_c7783008f04cb1da5c4706aaf8251962.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112475603193_4db6faf7d997e4dfc5f44d0ee583aadf.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112475604993_b73f539ad31fe52fc630284c8d45186a.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112475612691_cce8a7d594d6f4dcbe56f5186a04fefb.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112475615814_eaf58890986bbd9b960debe8d62378b9.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112405304306_a9b1bb837aea79fbe537c183eb90c6c1.jpg\" alt=\"\" class=\"gallery-image\">\r\n</div>\r\n','Dịch vụ EDM, Mài và Cắt dây','','publish','closed','closed','','dich-vu-edm-mai-va-cat-day','','','2024-12-17 07:33:24','2024-12-17 07:33:24','',0,'https://fe2tech.com/?post_type=service&#038;p=3066',16,'service','',0),(3067,1,'2024-12-17 07:33:24','2024-12-17 07:33:24','<h3 class=\"title-service\">Gia công chính xác sử dụng phóng điện, mài và cắt dây để đạt độ chính xác cao cho các chi tiết nhỏ và phức tạp.</h3>\r\n<div class=\"masonry-gallery\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112398373909_156bfb41f9711a15035cfede452ce1a9.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112398387244_688f2cffa04694e309441b36b11b142f.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112398406318_cba797f1e93e87ade947c770d0d40a8f.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112398417726_5127342a763e9e24abc186f97a44aff8.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112399243827_06cc313a2878998df579b1c3dcedc86d.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112402158092_30b348ffeb1bd490d6abf2ba9eb85786.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112402161733_fb456855a646106f5d0896b14dc1774a.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112407952259_47d9353a1faa9e7f704c496b431fc2e8.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112407943622_643893c3e779b10c7addfe792dde6674.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112407932531_75c831c196d633f15a7d2ac8ca23dd73.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112475733731_0f87c5cb35371e36f87164b091dee9e7.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112475735545_8ad6ec49c1c9ca3aa9ad469ee5e61195.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112475588456_c7783008f04cb1da5c4706aaf8251962.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112475603193_4db6faf7d997e4dfc5f44d0ee583aadf.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112475604993_b73f539ad31fe52fc630284c8d45186a.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112475612691_cce8a7d594d6f4dcbe56f5186a04fefb.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112475615814_eaf58890986bbd9b960debe8d62378b9.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112405304306_a9b1bb837aea79fbe537c183eb90c6c1.jpg\" alt=\"\" class=\"gallery-image\">\r\n</div>\r\n','Dịch vụ EDM, Mài và Cắt dây','','inherit','closed','closed','','3066-revision-v1','','','2024-12-17 07:33:24','2024-12-17 07:33:24','',3066,'https://fe2tech.com/?p=3067',0,'revision','',0),(3068,1,'2024-12-17 07:33:49','2024-12-17 07:33:49','<h3 class=\"title-service\">精密加工は、放電加工、研削、ワイヤーカットを使用して、小型で複雑な部品の高精度を実現します。</h3>\r\n<div class=\"masonry-gallery\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112398373909_156bfb41f9711a15035cfede452ce1a9.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112398387244_688f2cffa04694e309441b36b11b142f.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112398406318_cba797f1e93e87ade947c770d0d40a8f.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112398417726_5127342a763e9e24abc186f97a44aff8.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112399243827_06cc313a2878998df579b1c3dcedc86d.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112402158092_30b348ffeb1bd490d6abf2ba9eb85786.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112402161733_fb456855a646106f5d0896b14dc1774a.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112407952259_47d9353a1faa9e7f704c496b431fc2e8.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112407943622_643893c3e779b10c7addfe792dde6674.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112407932531_75c831c196d633f15a7d2ac8ca23dd73.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112475733731_0f87c5cb35371e36f87164b091dee9e7.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112475735545_8ad6ec49c1c9ca3aa9ad469ee5e61195.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112475588456_c7783008f04cb1da5c4706aaf8251962.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112475603193_4db6faf7d997e4dfc5f44d0ee583aadf.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112475604993_b73f539ad31fe52fc630284c8d45186a.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112475612691_cce8a7d594d6f4dcbe56f5186a04fefb.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112475615814_eaf58890986bbd9b960debe8d62378b9.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112405304306_a9b1bb837aea79fbe537c183eb90c6c1.jpg\" alt=\"\" class=\"gallery-image\">\r\n</div>\r\n','EDM、研削、ワイヤーカットサービス','','publish','closed','closed','','edm%e3%80%81%e7%a0%94%e5%89%8a%e3%80%81%e3%83%af%e3%82%a4%e3%83%a4%e3%83%bc%e3%82%ab%e3%83%83%e3%83%88%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9','','','2024-12-17 07:33:58','2024-12-17 07:33:58','',0,'https://fe2tech.com/?post_type=service&#038;p=3068',17,'service','',0),(3069,1,'2024-12-17 07:33:49','2024-12-17 07:33:49','<h3 class=\"title-service\">精密加工は、放電加工、研削、ワイヤーカットを使用して、小型で複雑な部品の高精度を実現します。</h3>\r\n<div class=\"masonry-gallery\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112398373909_156bfb41f9711a15035cfede452ce1a9.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112398387244_688f2cffa04694e309441b36b11b142f.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112398406318_cba797f1e93e87ade947c770d0d40a8f.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112398417726_5127342a763e9e24abc186f97a44aff8.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112399243827_06cc313a2878998df579b1c3dcedc86d.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112402158092_30b348ffeb1bd490d6abf2ba9eb85786.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112402161733_fb456855a646106f5d0896b14dc1774a.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112407952259_47d9353a1faa9e7f704c496b431fc2e8.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112407943622_643893c3e779b10c7addfe792dde6674.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112407932531_75c831c196d633f15a7d2ac8ca23dd73.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112475733731_0f87c5cb35371e36f87164b091dee9e7.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112475735545_8ad6ec49c1c9ca3aa9ad469ee5e61195.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112475588456_c7783008f04cb1da5c4706aaf8251962.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112475603193_4db6faf7d997e4dfc5f44d0ee583aadf.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112475604993_b73f539ad31fe52fc630284c8d45186a.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112475612691_cce8a7d594d6f4dcbe56f5186a04fefb.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112475615814_eaf58890986bbd9b960debe8d62378b9.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112405304306_a9b1bb837aea79fbe537c183eb90c6c1.jpg\" alt=\"\" class=\"gallery-image\">\r\n</div>\r\n','EDM、研削、ワイヤーカットサービス','','inherit','closed','closed','','3068-revision-v1','','','2024-12-17 07:33:49','2024-12-17 07:33:49','',3068,'https://fe2tech.com/?p=3069',0,'revision','',0),(3070,1,'2024-12-17 07:35:13','2024-12-17 07:35:13','<h3 class=\"title-service\">Vào năm 2025, chúng tôi sẽ mở một xưởng sản xuất bu lông để cung cấp các loại bu lông tùy chỉnh theo nhu cầu của khách hàng.</h3>\r\n<div class=\"masonry-gallery\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112427132452_1dc48d6b077820afa8c47b96d3918f22.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112427136415_a92631bc5fc9cba8b18696aacf6afcb5.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112427143608_0e611231c1efc187f3162f79bf802d9e.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112427145342_1981e17957820257bc6cc69dca8d1a6a.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112431685389_a7fb16bd81f123c2bfc6a16da53debf2.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112431686395_bfab2b01f79ca6c359bec18f3bbadd26.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035271011_4c2ce6e425aafedb041eb23967031655.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112427126027_f0c082273a59f666b09963ae9bbe5130.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112427126859_88eeb6c98a738fc61976f7654b6d11a9.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112427127062_0723f7644f5d182c87b7d93725c07ce0.jpg\" alt=\"\" class=\"gallery-image\">\r\n</div>\r\n\r\n','Sản xuất bu lông','','publish','closed','closed','','san-xuat-bu-long','','','2024-12-17 07:35:13','2024-12-17 07:35:13','',0,'https://fe2tech.com/?post_type=service&#038;p=3070',19,'service','',0),(3071,1,'2024-12-17 07:35:13','2024-12-17 07:35:13','<h3 class=\"title-service\">Vào năm 2025, chúng tôi sẽ mở một xưởng sản xuất bu lông để cung cấp các loại bu lông tùy chỉnh theo nhu cầu của khách hàng.</h3>\r\n<div class=\"masonry-gallery\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112427132452_1dc48d6b077820afa8c47b96d3918f22.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112427136415_a92631bc5fc9cba8b18696aacf6afcb5.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112427143608_0e611231c1efc187f3162f79bf802d9e.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112427145342_1981e17957820257bc6cc69dca8d1a6a.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112431685389_a7fb16bd81f123c2bfc6a16da53debf2.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112431686395_bfab2b01f79ca6c359bec18f3bbadd26.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035271011_4c2ce6e425aafedb041eb23967031655.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112427126027_f0c082273a59f666b09963ae9bbe5130.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112427126859_88eeb6c98a738fc61976f7654b6d11a9.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112427127062_0723f7644f5d182c87b7d93725c07ce0.jpg\" alt=\"\" class=\"gallery-image\">\r\n</div>\r\n\r\n','Sản xuất bu lông','','inherit','closed','closed','','3070-revision-v1','','','2024-12-17 07:35:13','2024-12-17 07:35:13','',3070,'https://fe2tech.com/?p=3071',0,'revision','',0),(3072,1,'2024-12-17 07:35:36','2024-12-17 07:35:36','<h3 class=\"title-service\">2025年には、お客様のニーズに合わせたカスタムボルトを供給するためのボルト製造工場を開設する予定です。</h3>\r\n<div class=\"masonry-gallery\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112427132452_1dc48d6b077820afa8c47b96d3918f22.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112427136415_a92631bc5fc9cba8b18696aacf6afcb5.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112427143608_0e611231c1efc187f3162f79bf802d9e.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112427145342_1981e17957820257bc6cc69dca8d1a6a.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112431685389_a7fb16bd81f123c2bfc6a16da53debf2.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112431686395_bfab2b01f79ca6c359bec18f3bbadd26.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035271011_4c2ce6e425aafedb041eb23967031655.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112427126027_f0c082273a59f666b09963ae9bbe5130.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112427126859_88eeb6c98a738fc61976f7654b6d11a9.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112427127062_0723f7644f5d182c87b7d93725c07ce0.jpg\" alt=\"\" class=\"gallery-image\">\r\n</div>\r\n\r\n','ボルト製造','','publish','closed','closed','','%e3%83%9c%e3%83%ab%e3%83%88%e8%a3%bd%e9%80%a0','','','2024-12-17 07:35:36','2024-12-17 07:35:36','',0,'https://fe2tech.com/?post_type=service&#038;p=3072',20,'service','',0),(3073,1,'2024-12-17 07:35:36','2024-12-17 07:35:36','<h3 class=\"title-service\">2025年には、お客様のニーズに合わせたカスタムボルトを供給するためのボルト製造工場を開設する予定です。</h3>\r\n<div class=\"masonry-gallery\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112427132452_1dc48d6b077820afa8c47b96d3918f22.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112427136415_a92631bc5fc9cba8b18696aacf6afcb5.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112427143608_0e611231c1efc187f3162f79bf802d9e.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112427145342_1981e17957820257bc6cc69dca8d1a6a.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112431685389_a7fb16bd81f123c2bfc6a16da53debf2.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112431686395_bfab2b01f79ca6c359bec18f3bbadd26.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112035271011_4c2ce6e425aafedb041eb23967031655.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112427126027_f0c082273a59f666b09963ae9bbe5130.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112427126859_88eeb6c98a738fc61976f7654b6d11a9.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112427127062_0723f7644f5d182c87b7d93725c07ce0.jpg\" alt=\"\" class=\"gallery-image\">\r\n</div>\r\n\r\n','ボルト製造','','inherit','closed','closed','','3072-revision-v1','','','2024-12-17 07:35:36','2024-12-17 07:35:36','',3072,'https://fe2tech.com/?p=3073',0,'revision','',0),(3074,1,'2024-12-17 07:37:03','2024-12-17 07:37:03','<h3 class=\"title-service\">Chúng tôi hợp tác với các đơn vị xử lý bề mặt chuyên mạ vật liệu để tạo ra các sản phẩm xuất khẩu chất lượng cao và đáng tin cậy.<br>Các đơn vị xử lý nhiệt của chúng tôi hiện đang cung cấp dịch vụ cho các tập đoàn lớn tại Việt Nam.<br>Chúng tôi cũng cung cấp các dịch vụ mài trụ và gia công kim loại cho các sản phẩm đặc biệt, bao gồm cả kích thước cực lớn hoặc siêu nhỏ.</h3>\r\n<div class=\"masonry-gallery\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5960268346049_d526596f8ddfc4db5149cdf4c2a86994.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112404623542_5b0849b2bcc4cd3b845977435309590a.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4585711522486_378e8c68f46ae66fae3a9ecca6d6e086.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4449983141239_d83dcc0273bcc1b41d2586ff272b1265.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4584726243432_c37cf14cc34559d45891cddf89e5daba.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5953231842216_872f5a7181f5ce3d18a4b1eebe17896c.jpg\" alt=\"\" class=\"gallery-image\">\r\n</div>\r\n\r\n','Các dịch vụ khác','','publish','closed','closed','','cac-dich-vu-khac','','','2024-12-17 07:37:03','2024-12-17 07:37:03','',0,'https://fe2tech.com/?post_type=service&#038;p=3074',22,'service','',0),(3075,1,'2024-12-17 07:37:03','2024-12-17 07:37:03','<h3 class=\"title-service\">Chúng tôi hợp tác với các đơn vị xử lý bề mặt chuyên mạ vật liệu để tạo ra các sản phẩm xuất khẩu chất lượng cao và đáng tin cậy.<br>Các đơn vị xử lý nhiệt của chúng tôi hiện đang cung cấp dịch vụ cho các tập đoàn lớn tại Việt Nam.<br>Chúng tôi cũng cung cấp các dịch vụ mài trụ và gia công kim loại cho các sản phẩm đặc biệt, bao gồm cả kích thước cực lớn hoặc siêu nhỏ.</h3>\r\n<div class=\"masonry-gallery\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5960268346049_d526596f8ddfc4db5149cdf4c2a86994.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112404623542_5b0849b2bcc4cd3b845977435309590a.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4585711522486_378e8c68f46ae66fae3a9ecca6d6e086.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4449983141239_d83dcc0273bcc1b41d2586ff272b1265.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4584726243432_c37cf14cc34559d45891cddf89e5daba.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5953231842216_872f5a7181f5ce3d18a4b1eebe17896c.jpg\" alt=\"\" class=\"gallery-image\">\r\n</div>\r\n\r\n','Các dịch vụ khác','','inherit','closed','closed','','3074-revision-v1','','','2024-12-17 07:37:03','2024-12-17 07:37:03','',3074,'https://fe2tech.com/?p=3075',0,'revision','',0),(3076,1,'2024-12-17 07:37:41','2024-12-17 07:37:41','<h3 class=\"title-service\">私たちは、輸出向けの高品質で信頼性のある製品を製造するために、素材のメッキを専門とする表面処理ユニットと協力しています。<br>当社の熱処理ユニットは現在、ベトナムの主要企業にサービスを提供しています。<br>また、特大サイズや超小型サイズを含む特殊なアイテムに対して、円筒研削や金属加工のサービスも提供しています。</h3>\r\n<div class=\"masonry-gallery\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5960268346049_d526596f8ddfc4db5149cdf4c2a86994.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112404623542_5b0849b2bcc4cd3b845977435309590a.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4585711522486_378e8c68f46ae66fae3a9ecca6d6e086.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4449983141239_d83dcc0273bcc1b41d2586ff272b1265.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4584726243432_c37cf14cc34559d45891cddf89e5daba.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5953231842216_872f5a7181f5ce3d18a4b1eebe17896c.jpg\" alt=\"\" class=\"gallery-image\">\r\n</div>\r\n\r\n','その他のサービス','','publish','closed','closed','','%e3%81%9d%e3%81%ae%e4%bb%96%e3%81%ae%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9','','','2024-12-17 07:37:41','2024-12-17 07:37:41','',0,'https://fe2tech.com/?post_type=service&#038;p=3076',23,'service','',0),(3077,1,'2024-12-17 07:37:41','2024-12-17 07:37:41','<h3 class=\"title-service\">私たちは、輸出向けの高品質で信頼性のある製品を製造するために、素材のメッキを専門とする表面処理ユニットと協力しています。<br>当社の熱処理ユニットは現在、ベトナムの主要企業にサービスを提供しています。<br>また、特大サイズや超小型サイズを含む特殊なアイテムに対して、円筒研削や金属加工のサービスも提供しています。</h3>\r\n<div class=\"masonry-gallery\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5960268346049_d526596f8ddfc4db5149cdf4c2a86994.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6112404623542_5b0849b2bcc4cd3b845977435309590a.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4585711522486_378e8c68f46ae66fae3a9ecca6d6e086.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4449983141239_d83dcc0273bcc1b41d2586ff272b1265.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z4584726243432_c37cf14cc34559d45891cddf89e5daba.jpg\" alt=\"\" class=\"gallery-image\">\r\n  <img src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5953231842216_872f5a7181f5ce3d18a4b1eebe17896c.jpg\" alt=\"\" class=\"gallery-image\">\r\n</div>\r\n\r\n','その他のサービス','','inherit','closed','closed','','3076-revision-v1','','','2024-12-17 07:37:41','2024-12-17 07:37:41','',3076,'https://fe2tech.com/?p=3077',0,'revision','',0),(3078,1,'2025-03-17 03:49:53','2024-12-17 07:40:13',' ','','','publish','closed','closed','','3078','','','2025-03-17 03:49:53','2025-03-17 03:49:53','',0,'https://fe2tech.com/?p=3078',1,'nav_menu_item','',0),(3080,1,'2025-03-17 03:49:53','2024-12-17 07:40:13',' ','','','publish','closed','closed','','3080','','','2025-03-17 03:49:53','2025-03-17 03:49:53','',0,'https://fe2tech.com/?p=3080',2,'nav_menu_item','',0),(3081,1,'2025-03-17 03:49:53','2024-12-17 07:40:14',' ','','','publish','closed','closed','','3081','','','2025-03-17 03:49:53','2025-03-17 03:49:53','',0,'https://fe2tech.com/?p=3081',5,'nav_menu_item','',0),(3082,1,'2025-03-17 03:49:53','2024-12-17 07:40:14',' ','','','publish','closed','closed','','3082','','','2025-03-17 03:49:53','2025-03-17 03:49:53','',0,'https://fe2tech.com/?p=3082',4,'nav_menu_item','',0),(3083,1,'2025-03-17 03:49:53','2024-12-17 07:40:14',' ','','','publish','closed','closed','','3083','','','2025-03-17 03:49:53','2025-03-17 03:49:53','',0,'https://fe2tech.com/?p=3083',3,'nav_menu_item','',0),(3084,1,'2025-03-17 03:49:53','2024-12-17 07:40:14','','Languages','','publish','closed','closed','','languages-2','','','2025-03-17 03:49:53','2025-03-17 03:49:53','',0,'https://fe2tech.com/?p=3084',7,'nav_menu_item','',0),(3085,1,'2025-03-17 03:51:44','2024-12-17 07:45:14',' ','','','publish','closed','closed','','3085','','','2025-03-17 03:51:44','2025-03-17 03:51:44','',0,'https://fe2tech.com/?p=3085',1,'nav_menu_item','',0),(3086,1,'2025-03-17 03:51:44','2024-12-17 07:45:15',' ','','','publish','closed','closed','','3086','','','2025-03-17 03:51:44','2025-03-17 03:51:44','',0,'https://fe2tech.com/?p=3086',5,'nav_menu_item','',0),(3087,1,'2025-03-17 03:51:44','2024-12-17 07:45:15',' ','','','publish','closed','closed','','3087','','','2025-03-17 03:51:44','2025-03-17 03:51:44','',0,'https://fe2tech.com/?p=3087',4,'nav_menu_item','',0),(3088,1,'2025-03-17 03:51:44','2024-12-17 07:45:14',' ','','','publish','closed','closed','','3088','','','2025-03-17 03:51:44','2025-03-17 03:51:44','',0,'https://fe2tech.com/?p=3088',2,'nav_menu_item','',0),(3089,1,'2025-03-17 03:51:44','2024-12-17 07:45:15',' ','','','publish','closed','closed','','3089','','','2025-03-17 03:51:44','2025-03-17 03:51:44','',0,'https://fe2tech.com/?p=3089',3,'nav_menu_item','',0),(3090,1,'2025-03-17 03:51:44','2024-12-17 07:45:15','','Languages','','publish','closed','closed','','languages-3','','','2025-03-17 03:51:44','2025-03-17 03:51:44','',0,'https://fe2tech.com/?p=3090',7,'nav_menu_item','',0),(3091,1,'2024-12-17 07:49:27','2024-12-17 07:49:27','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        私たちは、ベトナム全土および世界中の機械産業向けに幅広い製品を提供しており、特に日本、韓国、アメリカ、オーストラリアといった主要市場での取引に力を入れています。また、これらの市場への輸出経験も豊富です。    </h3>\n		<p>私たちの最大の強みは、学ぶこと、革新することに情熱を持ち、自信を持った若い労働力にあります。このチームは、常に安定した高品質の機械製品を多様に製造する能力を備えています。</p>		\n                <a href=\"https://www.youtube.com/watch?v=oVQ4_PIqgz8\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    顧客\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    人事\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    年間注文数\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>私たちは、世界中からの注文と接続するためにAlibabaに店舗を開設し始めました。</p>		\n													<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />													\n													<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />													\n	    <h3>\n        私たちは、2030年までにベトナムの主要な機械加工企業の一つとして、国際市場に供給することを目指しています。将来的には、完成した機械製品を直接エンドユーザーに提供することを目標としています。    </h3>\n		<p>2026年までに達成する目標:</p>		\n                                            東アジア(日本、韓国など):交換用機械部品、オートバイおよび自動車のアクセサリー、水産業用のフィッティング、金型、その他の機械部品の輸出。\n                                        30%\n                                            ヨーロッパ(ドイツ、ブルガリア、オランダなど):自動車用ベアリングの治具および自動化機械の電気ボックス部品の生産。\n                                        10%\n                                            アメリカ合衆国:医療機器、光学機器、音響機器に関連する製品。\n                                        30%\n                                            オーストラリア:板金製品。\n                                        8%\n                                            ベトナム:小型自動化機械、オートバイおよび自動車のボルト、石油およびガス産業の製品。\n                                        20%\n                                            その他の市場と製品。\n                                        2%\n	    <h3>\n        私たちは複数の業界でサービスを提供しています。    </h3>\n		<p>私たちは常に顧客のデザイン要求を満たします。外観と寸法は、最も重要視している要素です。</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-milling-service/\">CNC Milling Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-milling-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-turning-service/\">CNC Turning Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-turning-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">CNC Tool Grinder Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/sheet-metal-service/\">Sheet Metal Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/sheet-metal-service/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>質問がありますか?</h3>\n            	        		Call: 0968860386\n                    <h3>見積もりを取得するための連絡先:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"209\"/></p>\n</form>\n	    <h3>\n        私たちは簡単な作業手順を持っています。    </h3>\n		<p>私たちは常に品質と進捗において安心感を提供します。</p>		\n                                                    <h3>私たちを探す</h3>\n                                                    私たちは、各プロジェクトを総合的に取り扱う重要性を理解しています。\n                                                    <h3>私たちと接続する</h3>\n                                                    私たちが他のエージェンシーと異なる点は、カスタマイズされたソリューションを作成する専門知識にあります。\n                                                    <h3>私たちに支払う</h3>\n                                                    私たちは、各チームメンバーが自分自身の最高の姿を目指すことを奨励し、柔軟で協力的な環境を育んでいます。\n                                                    <h3>あなたの夢を実現する</h3>\n                                                    どのビジネスにも、革新と進歩を促す独自のソリューションがあります。\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        いつでもどんな助けが必要な場合でも、私たちにご連絡ください...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"185\"/></p>\n</form>','ホーム','','inherit','closed','closed','','2982-revision-v1','','','2024-12-17 07:49:27','2024-12-17 07:49:27','',2982,'https://fe2tech.com/?p=3091',0,'revision','',0),(3092,1,'2024-12-17 07:49:28','2024-12-17 07:49:28','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        私たちは、ベトナム全土および世界中の機械産業向けに幅広い製品を提供しており、特に日本、韓国、アメリカ、オーストラリアといった主要市場での取引に力を入れています。また、これらの市場への輸出経験も豊富です。    </h3>\n		<p>私たちの最大の強みは、学ぶこと、革新することに情熱を持ち、自信を持った若い労働力にあります。このチームは、常に安定した高品質の機械製品を多様に製造する能力を備えています。</p>		\n                <a href=\"https://www.youtube.com/watch?v=oVQ4_PIqgz8\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    顧客\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    人事\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    年間注文数\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>私たちは、世界中からの注文と接続するためにAlibabaに店舗を開設し始めました。</p>		\n													<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />													\n													<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />													\n	    <h3>\n        私たちは、2030年までにベトナムの主要な機械加工企業の一つとして、国際市場に供給することを目指しています。将来的には、完成した機械製品を直接エンドユーザーに提供することを目標としています。    </h3>\n		<p>2026年までに達成する目標:</p>		\n                                            東アジア(日本、韓国など):交換用機械部品、オートバイおよび自動車のアクセサリー、水産業用のフィッティング、金型、その他の機械部品の輸出。\n                                        30%\n                                            ヨーロッパ(ドイツ、ブルガリア、オランダなど):自動車用ベアリングの治具および自動化機械の電気ボックス部品の生産。\n                                        10%\n                                            アメリカ合衆国:医療機器、光学機器、音響機器に関連する製品。\n                                        30%\n                                            オーストラリア:板金製品。\n                                        8%\n                                            ベトナム:小型自動化機械、オートバイおよび自動車のボルト、石油およびガス産業の製品。\n                                        20%\n                                            その他の市場と製品。\n                                        2%\n	    <h3>\n        私たちは複数の業界でサービスを提供しています。    </h3>\n		<p>私たちは常に顧客のデザイン要求を満たします。外観と寸法は、最も重要視している要素です。</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-milling-service/\">CNC Milling Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-milling-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-turning-service/\">CNC Turning Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-turning-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">CNC Tool Grinder Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/sheet-metal-service/\">Sheet Metal Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/sheet-metal-service/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>質問がありますか?</h3>\n            	        		Call: 0968860386\n                    <h3>見積もりを取得するための連絡先:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"209\"/></p>\n</form>\n	    <h3>\n        私たちは簡単な作業手順を持っています。    </h3>\n		<p>私たちは常に品質と進捗において安心感を提供します。</p>		\n                                                    <h3>私たちを探す</h3>\n                                                    私たちは、各プロジェクトを総合的に取り扱う重要性を理解しています。\n                                                    <h3>私たちと接続する</h3>\n                                                    私たちが他のエージェンシーと異なる点は、カスタマイズされたソリューションを作成する専門知識にあります。\n                                                    <h3>私たちに支払う</h3>\n                                                    私たちは、各チームメンバーが自分自身の最高の姿を目指すことを奨励し、柔軟で協力的な環境を育んでいます。\n                                                    <h3>あなたの夢を実現する</h3>\n                                                    どのビジネスにも、革新と進歩を促す独自のソリューションがあります。\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        いつでもどんな助けが必要な場合でも、私たちにご連絡ください...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"185\"/></p>\n</form>','ホーム','','inherit','closed','closed','','2982-revision-v1','','','2024-12-17 07:49:28','2024-12-17 07:49:28','',2982,'https://fe2tech.com/?p=3092',0,'revision','',0),(3093,1,'2024-12-17 07:49:28','2024-12-17 07:49:28','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        私たちは、ベトナム全土および世界中の機械産業向けに幅広い製品を提供しており、特に日本、韓国、アメリカ、オーストラリアといった主要市場での取引に力を入れています。また、これらの市場への輸出経験も豊富です。    </h3>\n		<p>私たちの最大の強みは、学ぶこと、革新することに情熱を持ち、自信を持った若い労働力にあります。このチームは、常に安定した高品質の機械製品を多様に製造する能力を備えています。</p>		\n                <a href=\"https://www.youtube.com/watch?v=oVQ4_PIqgz8\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    顧客\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    人事\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    年間注文数\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>私たちは、世界中からの注文と接続するためにAlibabaに店舗を開設し始めました。</p>		\n													<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />													\n													<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />													\n	    <h3>\n        私たちは、2030年までにベトナムの主要な機械加工企業の一つとして、国際市場に供給することを目指しています。将来的には、完成した機械製品を直接エンドユーザーに提供することを目標としています。    </h3>\n		<p>2026年までに達成する目標:</p>		\n                                            東アジア(日本、韓国など):交換用機械部品、オートバイおよび自動車のアクセサリー、水産業用のフィッティング、金型、その他の機械部品の輸出。\n                                        30%\n                                            ヨーロッパ(ドイツ、ブルガリア、オランダなど):自動車用ベアリングの治具および自動化機械の電気ボックス部品の生産。\n                                        10%\n                                            アメリカ合衆国:医療機器、光学機器、音響機器に関連する製品。\n                                        30%\n                                            オーストラリア:板金製品。\n                                        8%\n                                            ベトナム:小型自動化機械、オートバイおよび自動車のボルト、石油およびガス産業の製品。\n                                        20%\n                                            その他の市場と製品。\n                                        2%\n	    <h3>\n        私たちは複数の業界でサービスを提供しています。    </h3>\n		<p>私たちは常に顧客のデザイン要求を満たします。外観と寸法は、最も重要視している要素です。</p>		\n                                                    <h3><a href=\"https://fe2tech.com/ja/service/%e3%81%9d%e3%81%ae%e4%bb%96%e3%81%ae%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">その他のサービス</a></h3>\n                                        <a href=\"https://fe2tech.com/ja/service/%e3%81%9d%e3%81%ae%e4%bb%96%e3%81%ae%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/ja/service/%e3%83%9c%e3%83%ab%e3%83%88%e8%a3%bd%e9%80%a0/\">ボルト製造</a></h3>\n                                        <a href=\"https://fe2tech.com/ja/service/%e3%83%9c%e3%83%ab%e3%83%88%e8%a3%bd%e9%80%a0/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/ja/service/edm%e3%80%81%e7%a0%94%e5%89%8a%e3%80%81%e3%83%af%e3%82%a4%e3%83%a4%e3%83%bc%e3%82%ab%e3%83%83%e3%83%88%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">EDM、研削、ワイヤーカットサービス</a></h3>\n                                        <a href=\"https://fe2tech.com/ja/service/edm%e3%80%81%e7%a0%94%e5%89%8a%e3%80%81%e3%83%af%e3%82%a4%e3%83%a4%e3%83%bc%e3%82%ab%e3%83%83%e3%83%88%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/ja/service/%e6%ba%b6%e6%8e%a5%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">溶接サービス</a></h3>\n                                        <a href=\"https://fe2tech.com/ja/service/%e6%ba%b6%e6%8e%a5%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>質問がありますか?</h3>\n            	        		Call: 0968860386\n                    <h3>見積もりを取得するための連絡先:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"51\"/></p>\n</form>\n	    <h3>\n        私たちは簡単な作業手順を持っています。    </h3>\n		<p>私たちは常に品質と進捗において安心感を提供します。</p>		\n                                                    <h3>私たちを探す</h3>\n                                                    私たちは、各プロジェクトを総合的に取り扱う重要性を理解しています。\n                                                    <h3>私たちと接続する</h3>\n                                                    私たちが他のエージェンシーと異なる点は、カスタマイズされたソリューションを作成する専門知識にあります。\n                                                    <h3>私たちに支払う</h3>\n                                                    私たちは、各チームメンバーが自分自身の最高の姿を目指すことを奨励し、柔軟で協力的な環境を育んでいます。\n                                                    <h3>あなたの夢を実現する</h3>\n                                                    どのビジネスにも、革新と進歩を促す独自のソリューションがあります。\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        いつでもどんな助けが必要な場合でも、私たちにご連絡ください...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"213\"/></p>\n</form>','ホーム','','inherit','closed','closed','','2982-revision-v1','','','2024-12-17 07:49:28','2024-12-17 07:49:28','',2982,'https://fe2tech.com/?p=3093',0,'revision','',0),(3094,1,'2024-12-17 07:50:15','2024-12-17 07:50:15','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.    </h3>\n		<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>		\n                <a href=\"https://www.youtube.com/watch?v=oVQ4_PIqgz8\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Customer\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Personnel\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Oders per year\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>		\n													<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />													\n													<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />													\n	    <h3>\n        We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.    </h3>\n		<p>Goals to achieve by 2026:</p>		\n                                            East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\n                                        30%\n                                            Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\n                                        10%\n                                            United States: Products related to medical instruments, optics, and audio equipment.\n                                        30%\n                                            Australia: Sheet metal products.\n                                        8%\n                                            Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\n                                        20%\n                                            Other markets and products.\n                                        2%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-milling-service/\">CNC Milling Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-milling-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-turning-service/\">CNC Turning Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-turning-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">CNC Tool Grinder Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/sheet-metal-service/\">Sheet Metal Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/sheet-metal-service/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"199\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We always provide a sense of security in terms of quality and progress.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"120\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-12-17 07:50:15','2024-12-17 07:50:15','',9,'https://fe2tech.com/?p=3094',0,'revision','',0),(3095,1,'2024-12-17 07:50:16','2024-12-17 07:50:16','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.    </h3>\n		<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>		\n                <a href=\"https://www.youtube.com/watch?v=oVQ4_PIqgz8\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Customer\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Personnel\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Oders per year\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>		\n													<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />													\n													<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />													\n	    <h3>\n        We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.    </h3>\n		<p>Goals to achieve by 2026:</p>		\n                                            East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\n                                        30%\n                                            Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\n                                        10%\n                                            United States: Products related to medical instruments, optics, and audio equipment.\n                                        30%\n                                            Australia: Sheet metal products.\n                                        8%\n                                            Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\n                                        20%\n                                            Other markets and products.\n                                        2%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-milling-service/\">CNC Milling Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-milling-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-turning-service/\">CNC Turning Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-turning-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">CNC Tool Grinder Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/sheet-metal-service/\">Sheet Metal Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/sheet-metal-service/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"199\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We always provide a sense of security in terms of quality and progress.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"120\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-12-17 07:50:16','2024-12-17 07:50:16','',9,'https://fe2tech.com/?p=3095',0,'revision','',0),(3096,1,'2024-12-17 07:50:16','2024-12-17 07:50:16','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.    </h3>\n		<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>		\n                <a href=\"https://www.youtube.com/watch?v=oVQ4_PIqgz8\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Customer\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Personnel\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Oders per year\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>		\n													<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />													\n													<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />													\n	    <h3>\n        We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.    </h3>\n		<p>Goals to achieve by 2026:</p>		\n                                            East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\n                                        30%\n                                            Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\n                                        10%\n                                            United States: Products related to medical instruments, optics, and audio equipment.\n                                        30%\n                                            Australia: Sheet metal products.\n                                        8%\n                                            Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\n                                        20%\n                                            Other markets and products.\n                                        2%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/other-services/\">Other Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/other-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/bolt-production/\">Bolt Production</a></h3>\n                                        <a href=\"https://fe2tech.com/service/bolt-production/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/edm-grinding-and-wire-cutting-service/\">EDM, Grinding and Wire Cutting Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/edm-grinding-and-wire-cutting-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/welding-service/\">Welding Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/welding-service/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"97\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We always provide a sense of security in terms of quality and progress.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"223\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2024-12-17 07:50:16','2024-12-17 07:50:16','',9,'https://fe2tech.com/?p=3096',0,'revision','',0),(3097,1,'2024-12-17 08:01:10','2024-12-17 08:01:10','','Footer - vi','','inherit','closed','closed','','2959-revision-v1','','','2024-12-17 08:01:10','2024-12-17 08:01:10','',2959,'https://fe2tech.com/?p=3097',0,'revision','',0),(3098,1,'2024-12-17 08:01:11','2024-12-17 08:01:11','','Footer - vi','','inherit','closed','closed','','2959-revision-v1','','','2024-12-17 08:01:11','2024-12-17 08:01:11','',2959,'https://fe2tech.com/?p=3098',0,'revision','',0),(3099,1,'2024-12-17 08:01:11','2024-12-17 08:01:11','<a href=\"http://fe2tech.com/\">\n							<img width=\"597\" height=\"597\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/logo.jpg\" alt=\"\" />								</a>\n			    <ul>\n                    <li>\n            	   Nhà máy 1: Cụm công nghiệp Khắc Niệm, Phường Khắc Niệm, Thành phố Bắc Ninh, Tỉnh Bắc Ninh                \n           </li>\n                    <li>\n            	   Nhà máy 2: 176/9 Nguyễn Thị Tươi, Khu phố Tân Phước, Phường Tân Bình, Thành phố Dĩ An, Tỉnh Bình Dương                \n           </li>\n                    <li>\n            	   0968 86 03 86                \n           </li>\n            </ul>\n    <h3>\n        Menu\n        <i></i>\n    </h3>\n        <ul id=\"menu-main-menu-vi\"><li id=\"menu-item-3078\"><a href=\"https://fe2tech.com/vi/trang-chu/\">Trang chủ</a></li>\n<li id=\"menu-item-3080\"><a href=\"https://fe2tech.com/vi/san-pham/\">Sản phẩm</a></li>\n<li id=\"menu-item-3083\"><a href=\"https://fe2tech.com/vi/dich-vu/\">Dịch vụ</a></li>\n<li id=\"menu-item-3082\"><a href=\"https://fe2tech.com/vi/doi-ngu-cac-cong-ty-thanh-vien/\">Đội ngũ &amp; Các công ty thành viên</a></li>\n<li id=\"menu-item-3081\"><a href=\"https://fe2tech.com/vi/ve-chung-toi/\">Về chúng tôi</a></li>\n<li id=\"menu-item-3084\"><a href=\"#pll_switcher\">Languages</a></li>\n</ul>    \n    <h3>\n        Giờ mở cửa\n        <i></i>\n    </h3>\n		<p>Thứ Hai - Chủ Nhật: 24/24</p>		\n    <h3>\n        Newsletter\n        <i></i>\n    </h3>\n		<p>Đăng ký để nhận thông báo, blog mới nhất, ý tưởng và góc nhìn của chúng tôi.</p>		\n        <form method=\"post\" action=\"https://fe2tech.com/wp-admin/admin-ajax.php?action=tnp&amp;na=s\" style=\"\">\n<input type=\"hidden\" name=\"nlang\" value=\"\">\n<label for=\"tnp-3\">Your mail address</label>\n<input type=\"email\" name=\"ne\" id=\"tnp-3\" value=\"\" placeholder=\"\" required>\n<input type=\"submit\" value=\"Subscribe\" style=\"\">\n</form>    \n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n		<p>Copyright @2024 of Far East High Tech Ltd. Co.</p>','Footer - vi','','inherit','closed','closed','','2959-revision-v1','','','2024-12-17 08:01:11','2024-12-17 08:01:11','',2959,'https://fe2tech.com/?p=3099',0,'revision','',0),(3100,1,'2024-12-17 08:02:17','2024-12-17 08:02:17','','Footer - ja','','inherit','closed','closed','','2961-revision-v1','','','2024-12-17 08:02:17','2024-12-17 08:02:17','',2961,'https://fe2tech.com/?p=3100',0,'revision','',0),(3101,1,'2024-12-17 08:02:18','2024-12-17 08:02:18','','Footer - ja','','inherit','closed','closed','','2961-revision-v1','','','2024-12-17 08:02:18','2024-12-17 08:02:18','',2961,'https://fe2tech.com/?p=3101',0,'revision','',0),(3102,1,'2024-12-17 08:02:18','2024-12-17 08:02:18','<a href=\"http://fe2tech.com/\">\n							<img width=\"597\" height=\"597\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/logo.jpg\" alt=\"\" />								</a>\n			    <ul>\n                    <li>\n            	   工場1: バクニン省バクニン市、カクニエム区、カクニエム工業団地                \n           </li>\n                    <li>\n            	   工場2: ビンズオン省、ディアン市、タンビン区、タンフオック地区、グエン・ティ・トゥーイ176/9                \n           </li>\n                    <li>\n            	   0968 86 03 86                \n           </li>\n            </ul>\n    <h3>\n        Menu\n        <i></i>\n    </h3>\n        <ul id=\"menu-menu-header-ja\"><li id=\"menu-item-3085\"><a href=\"https://fe2tech.com/ja/%e3%83%9b%e3%83%bc%e3%83%a0/\">ホーム</a></li>\n<li id=\"menu-item-3088\"><a href=\"https://fe2tech.com/ja/%e8%a3%bd%e5%93%81/\">製品</a></li>\n<li id=\"menu-item-3089\"><a href=\"https://fe2tech.com/ja/%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">サービス</a></li>\n<li id=\"menu-item-3087\"><a href=\"https://fe2tech.com/ja/%e3%83%81%e3%83%bc%e3%83%a0%e3%81%a8%e3%83%a1%e3%83%b3%e3%83%90%e3%83%bc%e4%bc%81%e6%a5%ad/\">チームとメンバー企業</a></li>\n<li id=\"menu-item-3086\"><a href=\"https://fe2tech.com/ja/%e7%a7%81%e3%81%9f%e3%81%a1%e3%81%ab%e3%81%a4%e3%81%84%e3%81%a6/\">私たちについて</a></li>\n<li id=\"menu-item-3090\"><a href=\"#pll_switcher\">Languages</a></li>\n</ul>    \n    <h3>\n        営業時間\n        <i></i>\n    </h3>\n		<p>月曜日~日曜日:24時間営業</p>		\n    <h3>\n        Newsletter\n        <i></i>\n    </h3>\n		<p>通知、最新のブログ、アイデア、洞察を受け取るためにサインアップしてください。</p>		\n        <form method=\"post\" action=\"https://fe2tech.com/wp-admin/admin-ajax.php?action=tnp&amp;na=s\" style=\"\">\n<input type=\"hidden\" name=\"nlang\" value=\"\">\n<label for=\"tnp-3\">Your mail address</label>\n<input type=\"email\" name=\"ne\" id=\"tnp-3\" value=\"\" placeholder=\"\" required>\n<input type=\"submit\" value=\"Subscribe\" style=\"\">\n</form>    \n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n		<p>Copyright @2024 of Far East High Tech Ltd. Co.</p>','Footer - ja','','inherit','closed','closed','','2961-revision-v1','','','2024-12-17 08:02:18','2024-12-17 08:02:18','',2961,'https://fe2tech.com/?p=3102',0,'revision','',0),(3103,1,'2024-12-17 08:29:38','2024-12-17 08:29:38','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        Chúng tôi cung cấp nhiều loại sản phẩm cho ngành công nghiệp cơ khí trên toàn Việt Nam và quốc tế, đặc biệt tại các thị trường trọng điểm như Nhật Bản, Hàn Quốc, Hoa Kỳ và Úc. Chúng tôi cũng có kinh nghiệm xuất khẩu đến các thị trường này.    </h3>\n		<p>Thế mạnh lớn nhất của chúng tôi nằm ở đội ngũ nhân lực trẻ trung, đam mê học hỏi, sáng tạo và tự tin, có khả năng sản xuất đa dạng các sản phẩm cơ khí với chất lượng luôn ổn định.</p>		\n                <a href=\"https://www.youtube.com/watch?v=oVQ4_PIqgz8\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Khách hàng\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Nhân sự\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Số đơn hàng mỗi năm\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>Chúng tôi đã bắt đầu mở một cửa hàng trên Alibaba để kết nối với các đơn hàng từ khắp nơi trên thế giới.</p>		\n													<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />													\n													<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />													\n	    <h3>\n        Chúng tôi nỗ lực trở thành một trong những công ty chế biến cơ khí hàng đầu của Việt Nam, cung cấp ra thị trường quốc tế vào năm 2030. Trong tương lai, chúng tôi hướng đến việc sản xuất các sản phẩm máy móc hoàn chỉnh để giao trực tiếp đến người sử dụng cuối.    </h3>\n		<p>Mục tiêu đạt được vào năm 2026:</p>		\n                                            Đông Á (Nhật Bản, Hàn Quốc, v.v.): Xuất khẩu các linh kiện máy móc thay thế, phụ kiện xe máy và ô tô, phụ kiện ngành nước, khuôn mẫu và các bộ phận cơ khí khác.\n                                        30%\n                                            Châu Âu (Đức, Bulgaria, Hà Lan, v.v.): Sản xuất khuôn jig cho vòng bi ô tô và các bộ phận hộp điện cho máy móc tự động hóa.\n                                        10%\n                                            Hoa Kỳ: Các sản phẩm liên quan đến thiết bị y tế, quang học và thiết bị âm thanh.\n                                        30%\n                                            Úc: Sản phẩm kim loại tấm.\n                                        8%\n                                            Việt Nam: Máy tự động hóa nhỏ; bu lông xe máy và ô tô; sản phẩm trong ngành dầu khí.\n                                        20%\n                                            Các thị trường và sản phẩm khác.\n                                        2%\n	    <h3>\n        Chúng tôi cung cấp dịch vụ trong nhiều lĩnh vực.    </h3>\n		<p>Chúng tôi luôn đáp ứng yêu cầu thiết kế của khách hàng. Ngoại hình và kích thước là những yếu tố chúng tôi coi trọng nhất.</p>		\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Có câu hỏi nào không?</h3>\n            	        		Call: 0968860386\n                    <h3>Liên hệ để nhận báo giá:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"104\"/></p>\n</form>\n	    <h3>\n        Chúng tôi có quy trình làm việc đơn giản.    </h3>\n		<p>Chúng tôi luôn mang đến cảm giác an tâm về chất lượng và tiến độ.</p>		\n                                                    <h3>Tìm chúng tôi</h3>\n                                                    Chúng tôi hiểu tầm quan trọng của việc xử lý mỗi dự án theo một cách tiếp cận toàn diện.\n                                                    <h3>Kết nối với chúng tôi</h3>\n                                                    Điều làm chúng tôi khác biệt so với các công ty khác là chuyên môn trong việc tạo ra các giải pháp tùy chỉnh.\n                                                    <h3>Thanh toán cho chúng tôi</h3>\n                                                    Chúng tôi khuyến khích mỗi thành viên trong đội ngũ trở thành phiên bản tốt nhất của chính mình, tạo ra một môi trường linh hoạt và hợp tác.\n                                                    <h3>Đạt được ước mơ của bạn</h3>\n                                                    Cốt lõi của mỗi doanh nghiệp là những giải pháp độc đáo, truyền cảm hứng cho sự đổi mới và phát triển.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        Liên hệ với chúng tôi bất cứ lúc nào nếu bạn cần sự giúp đỡ...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"205\"/></p>\n</form>','Trang chủ','','inherit','closed','closed','','2973-revision-v1','','','2024-12-17 08:29:38','2024-12-17 08:29:38','',2973,'https://fe2tech.com/?p=3103',0,'revision','',0),(3104,1,'2024-12-17 08:29:39','2024-12-17 08:29:39','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        Chúng tôi cung cấp nhiều loại sản phẩm cho ngành công nghiệp cơ khí trên toàn Việt Nam và quốc tế, đặc biệt tại các thị trường trọng điểm như Nhật Bản, Hàn Quốc, Hoa Kỳ và Úc. Chúng tôi cũng có kinh nghiệm xuất khẩu đến các thị trường này.    </h3>\n		<p>Thế mạnh lớn nhất của chúng tôi nằm ở đội ngũ nhân lực trẻ trung, đam mê học hỏi, sáng tạo và tự tin, có khả năng sản xuất đa dạng các sản phẩm cơ khí với chất lượng luôn ổn định.</p>		\n                <a href=\"https://www.youtube.com/watch?v=oVQ4_PIqgz8\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Khách hàng\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Nhân sự\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Số đơn hàng mỗi năm\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>Chúng tôi đã bắt đầu mở một cửa hàng trên Alibaba để kết nối với các đơn hàng từ khắp nơi trên thế giới.</p>		\n													<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />													\n													<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />													\n	    <h3>\n        Chúng tôi nỗ lực trở thành một trong những công ty chế biến cơ khí hàng đầu của Việt Nam, cung cấp ra thị trường quốc tế vào năm 2030. Trong tương lai, chúng tôi hướng đến việc sản xuất các sản phẩm máy móc hoàn chỉnh để giao trực tiếp đến người sử dụng cuối.    </h3>\n		<p>Mục tiêu đạt được vào năm 2026:</p>		\n                                            Đông Á (Nhật Bản, Hàn Quốc, v.v.): Xuất khẩu các linh kiện máy móc thay thế, phụ kiện xe máy và ô tô, phụ kiện ngành nước, khuôn mẫu và các bộ phận cơ khí khác.\n                                        30%\n                                            Châu Âu (Đức, Bulgaria, Hà Lan, v.v.): Sản xuất khuôn jig cho vòng bi ô tô và các bộ phận hộp điện cho máy móc tự động hóa.\n                                        10%\n                                            Hoa Kỳ: Các sản phẩm liên quan đến thiết bị y tế, quang học và thiết bị âm thanh.\n                                        30%\n                                            Úc: Sản phẩm kim loại tấm.\n                                        8%\n                                            Việt Nam: Máy tự động hóa nhỏ; bu lông xe máy và ô tô; sản phẩm trong ngành dầu khí.\n                                        20%\n                                            Các thị trường và sản phẩm khác.\n                                        2%\n	    <h3>\n        Chúng tôi cung cấp dịch vụ trong nhiều lĩnh vực.    </h3>\n		<p>Chúng tôi luôn đáp ứng yêu cầu thiết kế của khách hàng. Ngoại hình và kích thước là những yếu tố chúng tôi coi trọng nhất.</p>		\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Có câu hỏi nào không?</h3>\n            	        		Call: 0968860386\n                    <h3>Liên hệ để nhận báo giá:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"104\"/></p>\n</form>\n	    <h3>\n        Chúng tôi có quy trình làm việc đơn giản.    </h3>\n		<p>Chúng tôi luôn mang đến cảm giác an tâm về chất lượng và tiến độ.</p>		\n                                                    <h3>Tìm chúng tôi</h3>\n                                                    Chúng tôi hiểu tầm quan trọng của việc xử lý mỗi dự án theo một cách tiếp cận toàn diện.\n                                                    <h3>Kết nối với chúng tôi</h3>\n                                                    Điều làm chúng tôi khác biệt so với các công ty khác là chuyên môn trong việc tạo ra các giải pháp tùy chỉnh.\n                                                    <h3>Thanh toán cho chúng tôi</h3>\n                                                    Chúng tôi khuyến khích mỗi thành viên trong đội ngũ trở thành phiên bản tốt nhất của chính mình, tạo ra một môi trường linh hoạt và hợp tác.\n                                                    <h3>Đạt được ước mơ của bạn</h3>\n                                                    Cốt lõi của mỗi doanh nghiệp là những giải pháp độc đáo, truyền cảm hứng cho sự đổi mới và phát triển.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        Liên hệ với chúng tôi bất cứ lúc nào nếu bạn cần sự giúp đỡ...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"205\"/></p>\n</form>','Trang chủ','','inherit','closed','closed','','2973-revision-v1','','','2024-12-17 08:29:39','2024-12-17 08:29:39','',2973,'https://fe2tech.com/?p=3104',0,'revision','',0),(3105,1,'2024-12-17 08:29:39','2024-12-17 08:29:39','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        Chúng tôi cung cấp nhiều loại sản phẩm cho ngành công nghiệp cơ khí trên toàn Việt Nam và quốc tế, đặc biệt tại các thị trường trọng điểm như Nhật Bản, Hàn Quốc, Hoa Kỳ và Úc. Chúng tôi cũng có kinh nghiệm xuất khẩu đến các thị trường này.    </h3>\n		<p>Thế mạnh lớn nhất của chúng tôi nằm ở đội ngũ nhân lực trẻ trung, đam mê học hỏi, sáng tạo và tự tin, có khả năng sản xuất đa dạng các sản phẩm cơ khí với chất lượng luôn ổn định.</p>		\n                <a href=\"https://www.youtube.com/watch?v=oVQ4_PIqgz8\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Khách hàng\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Nhân sự\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Số đơn hàng mỗi năm\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>Chúng tôi đã bắt đầu mở một cửa hàng trên Alibaba để kết nối với các đơn hàng từ khắp nơi trên thế giới.</p>		\n													<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />													\n													<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />													\n	    <h3>\n        Chúng tôi nỗ lực trở thành một trong những công ty chế biến cơ khí hàng đầu của Việt Nam, cung cấp ra thị trường quốc tế vào năm 2030. Trong tương lai, chúng tôi hướng đến việc sản xuất các sản phẩm máy móc hoàn chỉnh để giao trực tiếp đến người sử dụng cuối.    </h3>\n		<p>Mục tiêu đạt được vào năm 2026:</p>		\n                                            Đông Á (Nhật Bản, Hàn Quốc, v.v.): Xuất khẩu các linh kiện máy móc thay thế, phụ kiện xe máy và ô tô, phụ kiện ngành nước, khuôn mẫu và các bộ phận cơ khí khác.\n                                        30%\n                                            Châu Âu (Đức, Bulgaria, Hà Lan, v.v.): Sản xuất khuôn jig cho vòng bi ô tô và các bộ phận hộp điện cho máy móc tự động hóa.\n                                        10%\n                                            Hoa Kỳ: Các sản phẩm liên quan đến thiết bị y tế, quang học và thiết bị âm thanh.\n                                        30%\n                                            Úc: Sản phẩm kim loại tấm.\n                                        8%\n                                            Việt Nam: Máy tự động hóa nhỏ; bu lông xe máy và ô tô; sản phẩm trong ngành dầu khí.\n                                        20%\n                                            Các thị trường và sản phẩm khác.\n                                        2%\n	    <h3>\n        Chúng tôi cung cấp dịch vụ trong nhiều lĩnh vực.    </h3>\n		<p>Chúng tôi luôn đáp ứng yêu cầu thiết kế của khách hàng. Ngoại hình và kích thước là những yếu tố chúng tôi coi trọng nhất.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/vi/service/dich-vu-phay-cnc/\">Dịch vụ phay CNC</a></h3>\n                                        <a href=\"https://fe2tech.com/vi/service/dich-vu-phay-cnc/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/vi/service/dich-vu-tien-cnc/\">Dịch vụ tiện CNC</a></h3>\n                                        <a href=\"https://fe2tech.com/vi/service/dich-vu-tien-cnc/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/vi/service/dich-vu-mai-dung-cu-cnc/\">Dịch vụ mài dụng cụ CNC</a></h3>\n                                        <a href=\"https://fe2tech.com/vi/service/dich-vu-mai-dung-cu-cnc/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/vi/service/dich-vu-gia-cong-kim-loai-tam/\">Dịch vụ gia công kim loại tấm</a></h3>\n                                        <a href=\"https://fe2tech.com/vi/service/dich-vu-gia-cong-kim-loai-tam/\">Read more</a>\n    <a href=\"/services\">\n                Dịch vụ khác\n    </a>\n            	        		<h3>Có câu hỏi nào không?</h3>\n            	        		Call: 0968860386\n                    <h3>Liên hệ để nhận báo giá:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"202\"/></p>\n</form>\n	    <h3>\n        Chúng tôi có quy trình làm việc đơn giản.    </h3>\n		<p>Chúng tôi luôn mang đến cảm giác an tâm về chất lượng và tiến độ.</p>		\n                                                    <h3>Tìm chúng tôi</h3>\n                                                    Chúng tôi hiểu tầm quan trọng của việc xử lý mỗi dự án theo một cách tiếp cận toàn diện.\n                                                    <h3>Kết nối với chúng tôi</h3>\n                                                    Điều làm chúng tôi khác biệt so với các công ty khác là chuyên môn trong việc tạo ra các giải pháp tùy chỉnh.\n                                                    <h3>Thanh toán cho chúng tôi</h3>\n                                                    Chúng tôi khuyến khích mỗi thành viên trong đội ngũ trở thành phiên bản tốt nhất của chính mình, tạo ra một môi trường linh hoạt và hợp tác.\n                                                    <h3>Đạt được ước mơ của bạn</h3>\n                                                    Cốt lõi của mỗi doanh nghiệp là những giải pháp độc đáo, truyền cảm hứng cho sự đổi mới và phát triển.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        Liên hệ với chúng tôi bất cứ lúc nào nếu bạn cần sự giúp đỡ...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"87\"/></p>\n</form>','Trang chủ','','inherit','closed','closed','','2973-revision-v1','','','2024-12-17 08:29:39','2024-12-17 08:29:39','',2973,'https://fe2tech.com/?p=3105',0,'revision','',0),(3106,1,'2024-12-17 08:30:11','2024-12-17 08:30:11','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        私たちは、ベトナム全土および世界中の機械産業向けに幅広い製品を提供しており、特に日本、韓国、アメリカ、オーストラリアといった主要市場での取引に力を入れています。また、これらの市場への輸出経験も豊富です。    </h3>\n		<p>私たちの最大の強みは、学ぶこと、革新することに情熱を持ち、自信を持った若い労働力にあります。このチームは、常に安定した高品質の機械製品を多様に製造する能力を備えています。</p>		\n                <a href=\"https://www.youtube.com/watch?v=oVQ4_PIqgz8\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    顧客\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    人事\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    年間注文数\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>私たちは、世界中からの注文と接続するためにAlibabaに店舗を開設し始めました。</p>		\n													<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />													\n													<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />													\n	    <h3>\n        私たちは、2030年までにベトナムの主要な機械加工企業の一つとして、国際市場に供給することを目指しています。将来的には、完成した機械製品を直接エンドユーザーに提供することを目標としています。    </h3>\n		<p>2026年までに達成する目標:</p>		\n                                            東アジア(日本、韓国など):交換用機械部品、オートバイおよび自動車のアクセサリー、水産業用のフィッティング、金型、その他の機械部品の輸出。\n                                        30%\n                                            ヨーロッパ(ドイツ、ブルガリア、オランダなど):自動車用ベアリングの治具および自動化機械の電気ボックス部品の生産。\n                                        10%\n                                            アメリカ合衆国:医療機器、光学機器、音響機器に関連する製品。\n                                        30%\n                                            オーストラリア:板金製品。\n                                        8%\n                                            ベトナム:小型自動化機械、オートバイおよび自動車のボルト、石油およびガス産業の製品。\n                                        20%\n                                            その他の市場と製品。\n                                        2%\n	    <h3>\n        私たちは複数の業界でサービスを提供しています。    </h3>\n		<p>私たちは常に顧客のデザイン要求を満たします。外観と寸法は、最も重要視している要素です。</p>		\n                                                    <h3><a href=\"https://fe2tech.com/ja/service/%e3%81%9d%e3%81%ae%e4%bb%96%e3%81%ae%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">その他のサービス</a></h3>\n                                        <a href=\"https://fe2tech.com/ja/service/%e3%81%9d%e3%81%ae%e4%bb%96%e3%81%ae%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/ja/service/%e3%83%9c%e3%83%ab%e3%83%88%e8%a3%bd%e9%80%a0/\">ボルト製造</a></h3>\n                                        <a href=\"https://fe2tech.com/ja/service/%e3%83%9c%e3%83%ab%e3%83%88%e8%a3%bd%e9%80%a0/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/ja/service/edm%e3%80%81%e7%a0%94%e5%89%8a%e3%80%81%e3%83%af%e3%82%a4%e3%83%a4%e3%83%bc%e3%82%ab%e3%83%83%e3%83%88%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">EDM、研削、ワイヤーカットサービス</a></h3>\n                                        <a href=\"https://fe2tech.com/ja/service/edm%e3%80%81%e7%a0%94%e5%89%8a%e3%80%81%e3%83%af%e3%82%a4%e3%83%a4%e3%83%bc%e3%82%ab%e3%83%83%e3%83%88%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/ja/service/%e6%ba%b6%e6%8e%a5%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">溶接サービス</a></h3>\n                                        <a href=\"https://fe2tech.com/ja/service/%e6%ba%b6%e6%8e%a5%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>質問がありますか?</h3>\n            	        		Call: 0968860386\n                    <h3>見積もりを取得するための連絡先:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"51\"/></p>\n</form>\n	    <h3>\n        私たちは簡単な作業手順を持っています。    </h3>\n		<p>私たちは常に品質と進捗において安心感を提供します。</p>		\n                                                    <h3>私たちを探す</h3>\n                                                    私たちは、各プロジェクトを総合的に取り扱う重要性を理解しています。\n                                                    <h3>私たちと接続する</h3>\n                                                    私たちが他のエージェンシーと異なる点は、カスタマイズされたソリューションを作成する専門知識にあります。\n                                                    <h3>私たちに支払う</h3>\n                                                    私たちは、各チームメンバーが自分自身の最高の姿を目指すことを奨励し、柔軟で協力的な環境を育んでいます。\n                                                    <h3>あなたの夢を実現する</h3>\n                                                    どのビジネスにも、革新と進歩を促す独自のソリューションがあります。\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        いつでもどんな助けが必要な場合でも、私たちにご連絡ください...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"213\"/></p>\n</form>','ホーム','','inherit','closed','closed','','2982-revision-v1','','','2024-12-17 08:30:11','2024-12-17 08:30:11','',2982,'https://fe2tech.com/?p=3106',0,'revision','',0),(3107,1,'2024-12-17 08:30:11','2024-12-17 08:30:11','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        私たちは、ベトナム全土および世界中の機械産業向けに幅広い製品を提供しており、特に日本、韓国、アメリカ、オーストラリアといった主要市場での取引に力を入れています。また、これらの市場への輸出経験も豊富です。    </h3>\n		<p>私たちの最大の強みは、学ぶこと、革新することに情熱を持ち、自信を持った若い労働力にあります。このチームは、常に安定した高品質の機械製品を多様に製造する能力を備えています。</p>		\n                <a href=\"https://www.youtube.com/watch?v=oVQ4_PIqgz8\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    顧客\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    人事\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    年間注文数\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>私たちは、世界中からの注文と接続するためにAlibabaに店舗を開設し始めました。</p>		\n													<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />													\n													<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />													\n	    <h3>\n        私たちは、2030年までにベトナムの主要な機械加工企業の一つとして、国際市場に供給することを目指しています。将来的には、完成した機械製品を直接エンドユーザーに提供することを目標としています。    </h3>\n		<p>2026年までに達成する目標:</p>		\n                                            東アジア(日本、韓国など):交換用機械部品、オートバイおよび自動車のアクセサリー、水産業用のフィッティング、金型、その他の機械部品の輸出。\n                                        30%\n                                            ヨーロッパ(ドイツ、ブルガリア、オランダなど):自動車用ベアリングの治具および自動化機械の電気ボックス部品の生産。\n                                        10%\n                                            アメリカ合衆国:医療機器、光学機器、音響機器に関連する製品。\n                                        30%\n                                            オーストラリア:板金製品。\n                                        8%\n                                            ベトナム:小型自動化機械、オートバイおよび自動車のボルト、石油およびガス産業の製品。\n                                        20%\n                                            その他の市場と製品。\n                                        2%\n	    <h3>\n        私たちは複数の業界でサービスを提供しています。    </h3>\n		<p>私たちは常に顧客のデザイン要求を満たします。外観と寸法は、最も重要視している要素です。</p>		\n                                                    <h3><a href=\"https://fe2tech.com/ja/service/%e3%81%9d%e3%81%ae%e4%bb%96%e3%81%ae%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">その他のサービス</a></h3>\n                                        <a href=\"https://fe2tech.com/ja/service/%e3%81%9d%e3%81%ae%e4%bb%96%e3%81%ae%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/ja/service/%e3%83%9c%e3%83%ab%e3%83%88%e8%a3%bd%e9%80%a0/\">ボルト製造</a></h3>\n                                        <a href=\"https://fe2tech.com/ja/service/%e3%83%9c%e3%83%ab%e3%83%88%e8%a3%bd%e9%80%a0/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/ja/service/edm%e3%80%81%e7%a0%94%e5%89%8a%e3%80%81%e3%83%af%e3%82%a4%e3%83%a4%e3%83%bc%e3%82%ab%e3%83%83%e3%83%88%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">EDM、研削、ワイヤーカットサービス</a></h3>\n                                        <a href=\"https://fe2tech.com/ja/service/edm%e3%80%81%e7%a0%94%e5%89%8a%e3%80%81%e3%83%af%e3%82%a4%e3%83%a4%e3%83%bc%e3%82%ab%e3%83%83%e3%83%88%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/ja/service/%e6%ba%b6%e6%8e%a5%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">溶接サービス</a></h3>\n                                        <a href=\"https://fe2tech.com/ja/service/%e6%ba%b6%e6%8e%a5%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>質問がありますか?</h3>\n            	        		Call: 0968860386\n                    <h3>見積もりを取得するための連絡先:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"51\"/></p>\n</form>\n	    <h3>\n        私たちは簡単な作業手順を持っています。    </h3>\n		<p>私たちは常に品質と進捗において安心感を提供します。</p>		\n                                                    <h3>私たちを探す</h3>\n                                                    私たちは、各プロジェクトを総合的に取り扱う重要性を理解しています。\n                                                    <h3>私たちと接続する</h3>\n                                                    私たちが他のエージェンシーと異なる点は、カスタマイズされたソリューションを作成する専門知識にあります。\n                                                    <h3>私たちに支払う</h3>\n                                                    私たちは、各チームメンバーが自分自身の最高の姿を目指すことを奨励し、柔軟で協力的な環境を育んでいます。\n                                                    <h3>あなたの夢を実現する</h3>\n                                                    どのビジネスにも、革新と進歩を促す独自のソリューションがあります。\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        いつでもどんな助けが必要な場合でも、私たちにご連絡ください...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"213\"/></p>\n</form>','ホーム','','inherit','closed','closed','','2982-revision-v1','','','2024-12-17 08:30:11','2024-12-17 08:30:11','',2982,'https://fe2tech.com/?p=3107',0,'revision','',0),(3108,1,'2024-12-17 08:30:12','2024-12-17 08:30:12','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        私たちは、ベトナム全土および世界中の機械産業向けに幅広い製品を提供しており、特に日本、韓国、アメリカ、オーストラリアといった主要市場での取引に力を入れています。また、これらの市場への輸出経験も豊富です。    </h3>\n		<p>私たちの最大の強みは、学ぶこと、革新することに情熱を持ち、自信を持った若い労働力にあります。このチームは、常に安定した高品質の機械製品を多様に製造する能力を備えています。</p>		\n                <a href=\"https://www.youtube.com/watch?v=oVQ4_PIqgz8\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    顧客\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    人事\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    年間注文数\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>私たちは、世界中からの注文と接続するためにAlibabaに店舗を開設し始めました。</p>		\n													<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />													\n													<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />													\n	    <h3>\n        私たちは、2030年までにベトナムの主要な機械加工企業の一つとして、国際市場に供給することを目指しています。将来的には、完成した機械製品を直接エンドユーザーに提供することを目標としています。    </h3>\n		<p>2026年までに達成する目標:</p>		\n                                            東アジア(日本、韓国など):交換用機械部品、オートバイおよび自動車のアクセサリー、水産業用のフィッティング、金型、その他の機械部品の輸出。\n                                        30%\n                                            ヨーロッパ(ドイツ、ブルガリア、オランダなど):自動車用ベアリングの治具および自動化機械の電気ボックス部品の生産。\n                                        10%\n                                            アメリカ合衆国:医療機器、光学機器、音響機器に関連する製品。\n                                        30%\n                                            オーストラリア:板金製品。\n                                        8%\n                                            ベトナム:小型自動化機械、オートバイおよび自動車のボルト、石油およびガス産業の製品。\n                                        20%\n                                            その他の市場と製品。\n                                        2%\n	    <h3>\n        私たちは複数の業界でサービスを提供しています。    </h3>\n		<p>私たちは常に顧客のデザイン要求を満たします。外観と寸法は、最も重要視している要素です。</p>		\n                                                    <h3><a href=\"https://fe2tech.com/ja/service/nc%e3%83%95%e3%83%a9%e3%82%a4%e3%82%b9%e5%8a%a0%e5%b7%a5%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">NCフライス加工サービス</a></h3>\n                                        <a href=\"https://fe2tech.com/ja/service/nc%e3%83%95%e3%83%a9%e3%82%a4%e3%82%b9%e5%8a%a0%e5%b7%a5%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/ja/service/cnc%e6%97%8b%e7%9b%a4%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">CNC旋盤サービス</a></h3>\n                                        <a href=\"https://fe2tech.com/ja/service/cnc%e6%97%8b%e7%9b%a4%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/ja/service/cnc%e3%83%84%e3%83%bc%e3%83%ab%e3%82%b0%e3%83%a9%e3%82%a4%e3%83%b3%e3%83%80%e3%83%bc%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">CNCツールグラインダーサービス</a></h3>\n                                        <a href=\"https://fe2tech.com/ja/service/cnc%e3%83%84%e3%83%bc%e3%83%ab%e3%82%b0%e3%83%a9%e3%82%a4%e3%83%b3%e3%83%80%e3%83%bc%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/ja/service/%e6%9d%bf%e9%87%91%e5%8a%a0%e5%b7%a5%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">板金加工サービス</a></h3>\n                                        <a href=\"https://fe2tech.com/ja/service/%e6%9d%bf%e9%87%91%e5%8a%a0%e5%b7%a5%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">Read more</a>\n    <a href=\"/services\">\n                その他のサービス\n    </a>\n            	        		<h3>質問がありますか?</h3>\n            	        		Call: 0968860386\n                    <h3>見積もりを取得するための連絡先:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"34\"/></p>\n</form>\n	    <h3>\n        私たちは簡単な作業手順を持っています。    </h3>\n		<p>私たちは常に品質と進捗において安心感を提供します。</p>		\n                                                    <h3>私たちを探す</h3>\n                                                    私たちは、各プロジェクトを総合的に取り扱う重要性を理解しています。\n                                                    <h3>私たちと接続する</h3>\n                                                    私たちが他のエージェンシーと異なる点は、カスタマイズされたソリューションを作成する専門知識にあります。\n                                                    <h3>私たちに支払う</h3>\n                                                    私たちは、各チームメンバーが自分自身の最高の姿を目指すことを奨励し、柔軟で協力的な環境を育んでいます。\n                                                    <h3>あなたの夢を実現する</h3>\n                                                    どのビジネスにも、革新と進歩を促す独自のソリューションがあります。\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        いつでもどんな助けが必要な場合でも、私たちにご連絡ください...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"74\"/></p>\n</form>','ホーム','','inherit','closed','closed','','2982-revision-v1','','','2024-12-17 08:30:12','2024-12-17 08:30:12','',2982,'https://fe2tech.com/?p=3108',0,'revision','',0),(3111,1,'2024-12-17 09:31:13','2024-12-17 09:31:13','Our Team\n	    <h3>\n        We will exceed your expectations with our innovative solutions.    </h3>\n		<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a ><img width=\"300\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FEHT-logo.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tech                                    </a>\n                                </h3>\n                                <a ><img width=\"327\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FE-TECH-LOGO-FINAL.png\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Engineering                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Engineering                                    </a>\n                                </h3>\n                                <a ><img width=\"335\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/Far-East-Tool-Vina.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tools Vina                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tools Vina                                    </a>\n                                </h3>\n			Our Partners\n	    <h3>\n        We will exceed your expectations with our innovative solutions as your trusted partner.    </h3>\n		<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.</p>		\n                                <a href=\"https://www.yoshimoto-sangyo.co.jp/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"246\" height=\"205\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yoshimoto-vietnam.png\" alt=\"\" /></a>\n                                <a href=\"https://kimlongmotor.com.vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"1586\" height=\"1586\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/kim-long-motors.png\" alt=\"\" /></a>\n                                <a href=\"https://www.samsung.com/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"697\" height=\"232\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/samsung.jpg\" alt=\"\" /></a>\n                                <a href=\"https://komaz.co.jp/english/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"900\" height=\"900\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/komatsu-kogyo.jpg\" alt=\"\" /></a>\n                                <a ><img width=\"256\" height=\"256\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yuwa-engineering.jpg\" alt=\"\" /></a>','Team & Member','','inherit','closed','closed','','28-revision-v1','','','2024-12-17 09:31:13','2024-12-17 09:31:13','',28,'https://fe2tech.com/?p=3111',0,'revision','',0),(3112,1,'2024-12-17 09:31:25','2024-12-17 09:31:25','Đội ngũ của chúng tôi\n	    <h3>\n        Chúng tôi sẽ vượt qua mong đợi của bạn với những giải pháp sáng tạo.    </h3>\n		<p>Chúng tôi cung cấp những giải pháp sáng tạo vượt xa mong đợi của bạn, đảm bảo máy móc chất lượng cao và kết quả xuất sắc.</p>		\n                                <a ><img width=\"300\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FEHT-logo.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tech                                    </a>\n                                </h3>\n                                <a ><img width=\"327\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FE-TECH-LOGO-FINAL.png\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Engineering                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Engineering                                    </a>\n                                </h3>\n                                <a ><img width=\"335\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/Far-East-Tool-Vina.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tools Vina                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tools Vina                                    </a>\n                                </h3>\n			Các đối tác của chúng tôi\n	    <h3>\n        Chúng tôi sẽ vượt qua mong đợi của bạn với những giải pháp sáng tạo, như một đối tác đáng tin cậy.    </h3>\n		<p>Chúng tôi cam kết đảm bảo chất lượng lâu dài và sự đúng giờ bền vững cùng các đối tác.</p>		\n                                <a href=\"https://www.yoshimoto-sangyo.co.jp/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"246\" height=\"205\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yoshimoto-vietnam.png\" alt=\"\" /></a>\n                                <a href=\"https://kimlongmotor.com.vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"1586\" height=\"1586\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/kim-long-motors.png\" alt=\"\" /></a>\n                                <a href=\"https://www.samsung.com/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"697\" height=\"232\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/samsung.jpg\" alt=\"\" /></a>\n                                <a href=\"https://komaz.co.jp/english/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"900\" height=\"900\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/komatsu-kogyo.jpg\" alt=\"\" /></a>\n                                <a ><img width=\"256\" height=\"256\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yuwa-engineering.jpg\" alt=\"\" /></a>','Đội ngũ &amp; thành viên','','inherit','closed','closed','','3008-revision-v1','','','2024-12-17 09:31:25','2024-12-17 09:31:25','',3008,'https://fe2tech.com/?p=3112',0,'revision','',0),(3113,1,'2024-12-17 09:31:33','2024-12-17 09:31:33','Đội ngũ của chúng tôi\n	    <h3>\n        Chúng tôi sẽ vượt qua mong đợi của bạn với những giải pháp sáng tạo.    </h3>\n		<p>Chúng tôi cung cấp những giải pháp sáng tạo vượt xa mong đợi của bạn, đảm bảo máy móc chất lượng cao và kết quả xuất sắc.</p>		\n                                <a ><img width=\"300\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FEHT-logo.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tech                                    </a>\n                                </h3>\n                                <a ><img width=\"327\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FE-TECH-LOGO-FINAL.png\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Engineering                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Engineering                                    </a>\n                                </h3>\n                                <a ><img width=\"335\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/Far-East-Tool-Vina.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tools Vina                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tools Vina                                    </a>\n                                </h3>\n			Các đối tác của chúng tôi\n	    <h3>\n        Chúng tôi sẽ vượt qua mong đợi của bạn với những giải pháp sáng tạo, như một đối tác đáng tin cậy.    </h3>\n		<p>Chúng tôi cam kết đảm bảo chất lượng lâu dài và sự đúng giờ bền vững cùng các đối tác.</p>		\n                                <a href=\"https://www.yoshimoto-sangyo.co.jp/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"246\" height=\"205\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yoshimoto-vietnam.png\" alt=\"\" /></a>\n                                <a href=\"https://kimlongmotor.com.vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"1586\" height=\"1586\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/kim-long-motors.png\" alt=\"\" /></a>\n                                <a href=\"https://www.samsung.com/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"697\" height=\"232\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/samsung.jpg\" alt=\"\" /></a>\n                                <a href=\"https://komaz.co.jp/english/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"900\" height=\"900\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/komatsu-kogyo.jpg\" alt=\"\" /></a>\n                                <a ><img width=\"256\" height=\"256\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yuwa-engineering.jpg\" alt=\"\" /></a>','Đội ngũ &amp; Thành viên','','inherit','closed','closed','','3008-revision-v1','','','2024-12-17 09:31:33','2024-12-17 09:31:33','',3008,'https://fe2tech.com/?p=3113',0,'revision','',0),(3114,1,'2024-12-17 09:32:06','2024-12-17 09:32:06','私たちのチーム\n	    <h3>\n        私たちは革新的なソリューションでお客様の期待を超えます。    </h3>\n		<p>私たちは、お客様の期待を超える革新的なソリューションを提供し、最高品質の機械と優れた結果を保証します。</p>		\n                                <a ><img width=\"300\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FEHT-logo.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tech                                    </a>\n                                </h3>\n                                <a ><img width=\"327\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FE-TECH-LOGO-FINAL.png\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Engineering                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Engineering                                    </a>\n                                </h3>\n                                <a ><img width=\"335\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/Far-East-Tool-Vina.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tools Vina                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tools Vina                                    </a>\n                                </h3>\n			私たちのパートナー \n	    <h3>\n        私たちは、信頼できるパートナーとして革新的なソリューションでお客様の期待を超えます。    </h3>\n		<p>私たちは、パートナーとの長期的で永続的な品質と時間厳守を確保することを約束します。</p>		\n                                <a href=\"https://www.yoshimoto-sangyo.co.jp/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"246\" height=\"205\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yoshimoto-vietnam.png\" alt=\"\" /></a>\n                                <a href=\"https://kimlongmotor.com.vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"1586\" height=\"1586\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/kim-long-motors.png\" alt=\"\" /></a>\n                                <a href=\"https://www.samsung.com/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"697\" height=\"232\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/samsung.jpg\" alt=\"\" /></a>\n                                <a href=\"https://komaz.co.jp/english/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"900\" height=\"900\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/komatsu-kogyo.jpg\" alt=\"\" /></a>\n                                <a ><img width=\"256\" height=\"256\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yuwa-engineering.jpg\" alt=\"\" /></a>','チームとメンバー','','inherit','closed','closed','','3014-revision-v1','','','2024-12-17 09:32:06','2024-12-17 09:32:06','',3014,'https://fe2tech.com/?p=3114',0,'revision','',0),(3115,1,'2024-12-17 09:35:43','2024-12-17 09:35:43','Đội ngũ của chúng tôi\n	    <h3>\n        Chúng tôi sẽ vượt qua mong đợi của bạn với những giải pháp sáng tạo.    </h3>\n		<p>Chúng tôi cung cấp những giải pháp sáng tạo vượt xa mong đợi của bạn, đảm bảo máy móc chất lượng cao và kết quả xuất sắc.</p>		\n                                <a ><img width=\"300\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FEHT-logo.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tech                                    </a>\n                                </h3>\n                                <a ><img width=\"327\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FE-TECH-LOGO-FINAL.png\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Engineering                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Engineering                                    </a>\n                                </h3>\n                                <a ><img width=\"335\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/Far-East-Tool-Vina.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tools Vina                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tools Vina                                    </a>\n                                </h3>\n			Các đối tác của chúng tôi\n	    <h3>\n        Chúng tôi sẽ vượt qua mong đợi của bạn với những giải pháp sáng tạo, như một đối tác đáng tin cậy.    </h3>\n		<p>Chúng tôi cam kết đảm bảo chất lượng lâu dài và sự đúng giờ bền vững cùng các đối tác.</p>		\n                                <a href=\"https://www.yoshimoto-sangyo.co.jp/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"246\" height=\"205\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yoshimoto-vietnam.png\" alt=\"\" /></a>\n                                <a href=\"https://kimlongmotor.com.vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"1586\" height=\"1586\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/kim-long-motors.png\" alt=\"\" /></a>\n                                <a href=\"https://www.samsung.com/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"697\" height=\"232\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/samsung.jpg\" alt=\"\" /></a>\n                                <a href=\"https://komaz.co.jp/english/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"900\" height=\"900\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/komatsu-kogyo.jpg\" alt=\"\" /></a>\n                                <a ><img width=\"256\" height=\"256\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yuwa-engineering.jpg\" alt=\"\" /></a>','Đội ngũ &amp; Đối tác','','inherit','closed','closed','','3008-revision-v1','','','2024-12-17 09:35:43','2024-12-17 09:35:43','',3008,'https://fe2tech.com/?p=3115',0,'revision','',0),(3116,1,'2024-12-17 09:36:46','2024-12-17 09:36:46','Our Team\n	    <h3>\n        We will exceed your expectations with our innovative solutions.    </h3>\n		<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a ><img width=\"300\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FEHT-logo.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tech                                    </a>\n                                </h3>\n                                <a ><img width=\"327\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FE-TECH-LOGO-FINAL.png\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Engineering                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Engineering                                    </a>\n                                </h3>\n                                <a ><img width=\"335\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/Far-East-Tool-Vina.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tools Vina                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tools Vina                                    </a>\n                                </h3>\n			Our Partners\n	    <h3>\n        We will exceed your expectations with our innovative solutions as your trusted partner.    </h3>\n		<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.</p>		\n                                <a href=\"https://www.yoshimoto-sangyo.co.jp/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"246\" height=\"205\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yoshimoto-vietnam.png\" alt=\"\" /></a>\n                                <a href=\"https://kimlongmotor.com.vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"1586\" height=\"1586\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/kim-long-motors.png\" alt=\"\" /></a>\n                                <a href=\"https://www.samsung.com/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"697\" height=\"232\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/samsung.jpg\" alt=\"\" /></a>\n                                <a href=\"https://komaz.co.jp/english/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"900\" height=\"900\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/komatsu-kogyo.jpg\" alt=\"\" /></a>\n                                <a ><img width=\"256\" height=\"256\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yuwa-engineering.jpg\" alt=\"\" /></a>','Team & Partner','','inherit','closed','closed','','28-revision-v1','','','2024-12-17 09:36:46','2024-12-17 09:36:46','',28,'https://fe2tech.com/?p=3116',0,'revision','',0),(3117,1,'2024-12-17 09:37:09','2024-12-17 09:37:09','私たちのチーム\n	    <h3>\n        私たちは革新的なソリューションでお客様の期待を超えます。    </h3>\n		<p>私たちは、お客様の期待を超える革新的なソリューションを提供し、最高品質の機械と優れた結果を保証します。</p>		\n                                <a ><img width=\"300\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FEHT-logo.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tech                                    </a>\n                                </h3>\n                                <a ><img width=\"327\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FE-TECH-LOGO-FINAL.png\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Engineering                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Engineering                                    </a>\n                                </h3>\n                                <a ><img width=\"335\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/Far-East-Tool-Vina.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tools Vina                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tools Vina                                    </a>\n                                </h3>\n			私たちのパートナー \n	    <h3>\n        私たちは、信頼できるパートナーとして革新的なソリューションでお客様の期待を超えます。    </h3>\n		<p>私たちは、パートナーとの長期的で永続的な品質と時間厳守を確保することを約束します。</p>		\n                                <a href=\"https://www.yoshimoto-sangyo.co.jp/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"246\" height=\"205\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yoshimoto-vietnam.png\" alt=\"\" /></a>\n                                <a href=\"https://kimlongmotor.com.vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"1586\" height=\"1586\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/kim-long-motors.png\" alt=\"\" /></a>\n                                <a href=\"https://www.samsung.com/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"697\" height=\"232\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/samsung.jpg\" alt=\"\" /></a>\n                                <a href=\"https://komaz.co.jp/english/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"900\" height=\"900\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/komatsu-kogyo.jpg\" alt=\"\" /></a>\n                                <a ><img width=\"256\" height=\"256\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yuwa-engineering.jpg\" alt=\"\" /></a>','チームとパートナー','','inherit','closed','closed','','3014-revision-v1','','','2024-12-17 09:37:09','2024-12-17 09:37:09','',3014,'https://fe2tech.com/?p=3117',0,'revision','',0),(3123,1,'2024-12-25 03:02:11','2024-12-25 03:02:11','Our Team\n	    <h3>\n        We will exceed your expectations with our innovative solutions.    </h3>\n		<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a ><img width=\"300\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FEHT-logo.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tech                                    </a>\n                                </h3>\n                                <a ><img width=\"327\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FE-TECH-LOGO-FINAL.png\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Engineering                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Engineering                                    </a>\n                                </h3>\n                                <a ><img width=\"335\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/Far-East-Tool-Vina.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tools Vina                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tools Vina                                    </a>\n                                </h3>\n			Our Partners\n	    <h3>\n        We will exceed your expectations with our innovative solutions as your trusted partner.    </h3>\n		<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.</p>		\n                                <a href=\"https://www.yoshimoto-sangyo.co.jp/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"246\" height=\"205\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yoshimoto-vietnam.png\" alt=\"\" /></a>\n                                <a href=\"https://kimlongmotor.com.vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"1586\" height=\"1586\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/kim-long-motors.png\" alt=\"\" /></a>\n                                <a href=\"https://www.samsung.com/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"697\" height=\"232\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/samsung.jpg\" alt=\"\" /></a>\n                                <a href=\"https://komaz.co.jp/english/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"900\" height=\"900\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/komatsu-kogyo.jpg\" alt=\"\" /></a>\n                                <a ><img width=\"256\" height=\"256\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yuwa-engineering.jpg\" alt=\"\" /></a>','Team & Partner','','inherit','closed','closed','','28-revision-v1','','','2024-12-25 03:02:11','2024-12-25 03:02:11','',28,'https://fe2tech.com/?p=3123',0,'revision','',0),(3124,1,'2024-12-25 03:02:12','2024-12-25 03:02:12','Our Team\n	    <h3>\n        We will exceed your expectations with our innovative solutions.    </h3>\n		<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a ><img width=\"300\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FEHT-logo.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tech                                    </a>\n                                </h3>\n                                <a ><img width=\"327\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FE-TECH-LOGO-FINAL.png\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Engineering                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Engineering                                    </a>\n                                </h3>\n                                <a ><img width=\"335\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/Far-East-Tool-Vina.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tools Vina                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tools Vina                                    </a>\n                                </h3>\n			Our Partners\n	    <h3>\n        We will exceed your expectations with our innovative solutions as your trusted partner.    </h3>\n		<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.</p>		\n                                <a href=\"https://www.yoshimoto-sangyo.co.jp/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"246\" height=\"205\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yoshimoto-vietnam.png\" alt=\"\" /></a>\n                                <a href=\"https://kimlongmotor.com.vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"1586\" height=\"1586\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/kim-long-motors.png\" alt=\"\" /></a>\n                                <a href=\"https://www.samsung.com/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"697\" height=\"232\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/samsung.jpg\" alt=\"\" /></a>\n                                <a href=\"https://komaz.co.jp/english/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"900\" height=\"900\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/komatsu-kogyo.jpg\" alt=\"\" /></a>\n                                <a ><img width=\"256\" height=\"256\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yuwa-engineering.jpg\" alt=\"\" /></a>','Team & Partner','','inherit','closed','closed','','28-revision-v1','','','2024-12-25 03:02:12','2024-12-25 03:02:12','',28,'https://fe2tech.com/?p=3124',0,'revision','',0),(3125,1,'2024-12-25 03:02:12','2024-12-25 03:02:12','Our Team\n	    <h3>\n        We will exceed your expectations with our innovative solutions.    </h3>\n		<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a ><img width=\"327\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FE-TECH-LOGO-FINAL.png\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tech                                    </a>\n                                </h3>\n                                <a ><img width=\"1404\" height=\"1404\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FEE.png\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Engineering                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Engineering                                    </a>\n                                </h3>\n                                <a ><img width=\"513\" height=\"693\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FETS.png\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tools Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tools Tech                                    </a>\n                                </h3>\n			Our Partners\n	    <h3>\n        We will exceed your expectations with our innovative solutions as your trusted partner.    </h3>\n		<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.</p>		\n                                <a href=\"https://www.yoshimoto-sangyo.co.jp/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"246\" height=\"205\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yoshimoto-vietnam.png\" alt=\"\" /></a>\n                                <a href=\"https://kimlongmotor.com.vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"1586\" height=\"1586\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/kim-long-motors.png\" alt=\"\" /></a>\n                                <a href=\"https://www.samsung.com/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"697\" height=\"232\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/samsung.jpg\" alt=\"\" /></a>\n                                <a href=\"https://komaz.co.jp/english/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"900\" height=\"900\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/komatsu-kogyo.jpg\" alt=\"\" /></a>\n                                <a ><img width=\"256\" height=\"256\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yuwa-engineering.jpg\" alt=\"\" /></a>','Team & Partner','','inherit','closed','closed','','28-revision-v1','','','2024-12-25 03:02:12','2024-12-25 03:02:12','',28,'https://fe2tech.com/?p=3125',0,'revision','',0),(3128,1,'2024-12-25 03:11:17','2024-12-25 03:11:17','Our Team\n	    <h3>\n        We will exceed your expectations with our innovative solutions.    </h3>\n		<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a ><img width=\"327\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FE-TECH-LOGO-FINAL.png\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tech                                    </a>\n                                </h3>\n                                <a ><img width=\"1404\" height=\"1404\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FEE.png\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Engineering                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Engineering                                    </a>\n                                </h3>\n                                <a ><img width=\"513\" height=\"693\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FETS.png\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tools Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tools Tech                                    </a>\n                                </h3>\n			Our Partners\n	    <h3>\n        We will exceed your expectations with our innovative solutions as your trusted partner.    </h3>\n		<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.</p>		\n                                <a href=\"https://www.yoshimoto-sangyo.co.jp/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"246\" height=\"205\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yoshimoto-vietnam.png\" alt=\"\" /></a>\n                                <a href=\"https://kimlongmotor.com.vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"1586\" height=\"1586\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/kim-long-motors.png\" alt=\"\" /></a>\n                                <a href=\"https://www.samsung.com/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"697\" height=\"232\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/samsung.jpg\" alt=\"\" /></a>\n                                <a href=\"https://komaz.co.jp/english/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"900\" height=\"900\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/komatsu-kogyo.jpg\" alt=\"\" /></a>\n                                <a ><img width=\"256\" height=\"256\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yuwa-engineering.jpg\" alt=\"\" /></a>','Team & Partner','','inherit','closed','closed','','28-revision-v1','','','2024-12-25 03:11:17','2024-12-25 03:11:17','',28,'https://fe2tech.com/?p=3128',0,'revision','',0),(3129,1,'2024-12-25 03:11:18','2024-12-25 03:11:18','Our Team\n	    <h3>\n        We will exceed your expectations with our innovative solutions.    </h3>\n		<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a ><img width=\"327\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FE-TECH-LOGO-FINAL.png\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tech                                    </a>\n                                </h3>\n                                <a ><img width=\"1404\" height=\"1404\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FEE.png\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Engineering                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Engineering                                    </a>\n                                </h3>\n                                <a ><img width=\"513\" height=\"693\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FETS.png\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tools Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tools Tech                                    </a>\n                                </h3>\n			Our Partners\n	    <h3>\n        We will exceed your expectations with our innovative solutions as your trusted partner.    </h3>\n		<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.</p>		\n                                <a href=\"https://www.yoshimoto-sangyo.co.jp/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"246\" height=\"205\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yoshimoto-vietnam.png\" alt=\"\" /></a>\n                                <a href=\"https://kimlongmotor.com.vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"1586\" height=\"1586\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/kim-long-motors.png\" alt=\"\" /></a>\n                                <a href=\"https://www.samsung.com/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"697\" height=\"232\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/samsung.jpg\" alt=\"\" /></a>\n                                <a href=\"https://komaz.co.jp/english/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"900\" height=\"900\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/komatsu-kogyo.jpg\" alt=\"\" /></a>\n                                <a ><img width=\"256\" height=\"256\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yuwa-engineering.jpg\" alt=\"\" /></a>','Team & Partner','','inherit','closed','closed','','28-revision-v1','','','2024-12-25 03:11:18','2024-12-25 03:11:18','',28,'https://fe2tech.com/?p=3129',0,'revision','',0),(3130,1,'2024-12-25 03:11:18','2024-12-25 03:11:18','Our Team\n	    <h3>\n        We will exceed your expectations with our innovative solutions.    </h3>\n		<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a ></a>\n                            	<h3>	\n                	            	Far East Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tech                                    </a>\n                                </h3>\n                                <a ></a>\n                            	<h3>	\n                	            	Far East Engineering                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Engineering                                    </a>\n                                </h3>\n                                <a ></a>\n                            	<h3>	\n                	            	Far East Tools Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tools Tech                                    </a>\n                                </h3>\n			Our Partners\n	    <h3>\n        We will exceed your expectations with our innovative solutions as your trusted partner.    </h3>\n		<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.</p>		\n                                <a href=\"https://www.yoshimoto-sangyo.co.jp/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"246\" height=\"205\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yoshimoto-vietnam.png\" alt=\"\" /></a>\n                                <a href=\"https://kimlongmotor.com.vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"1586\" height=\"1586\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/kim-long-motors.png\" alt=\"\" /></a>\n                                <a href=\"https://www.samsung.com/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"697\" height=\"232\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/samsung.jpg\" alt=\"\" /></a>\n                                <a href=\"https://komaz.co.jp/english/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"900\" height=\"900\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/komatsu-kogyo.jpg\" alt=\"\" /></a>\n                                <a ><img width=\"256\" height=\"256\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yuwa-engineering.jpg\" alt=\"\" /></a>','Team & Partner','','inherit','closed','closed','','28-revision-v1','','','2024-12-25 03:11:18','2024-12-25 03:11:18','',28,'https://fe2tech.com/?p=3130',0,'revision','',0),(3131,1,'2024-12-25 03:37:10','2024-12-25 03:37:10','','FEE','','inherit','open','closed','','fee','','','2024-12-25 03:37:10','2024-12-25 03:37:10','',28,'https://fe2tech.com/wp-content/uploads/2024/12/FEE.jpg',0,'attachment','image/jpeg',0),(3133,1,'2024-12-25 03:37:13','2024-12-25 03:37:13','','FETS','','inherit','open','closed','','fets','','','2024-12-25 03:37:13','2024-12-25 03:37:13','',28,'https://fe2tech.com/wp-content/uploads/2024/12/FETS.png',0,'attachment','image/png',0),(3134,1,'2024-12-25 03:37:42','2024-12-25 03:37:42','Our Team\n	    <h3>\n        We will exceed your expectations with our innovative solutions.    </h3>\n		<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a ></a>\n                            	<h3>	\n                	            	Far East Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tech                                    </a>\n                                </h3>\n                                <a ></a>\n                            	<h3>	\n                	            	Far East Engineering                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Engineering                                    </a>\n                                </h3>\n                                <a ></a>\n                            	<h3>	\n                	            	Far East Tools Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tools Tech                                    </a>\n                                </h3>\n			Our Partners\n	    <h3>\n        We will exceed your expectations with our innovative solutions as your trusted partner.    </h3>\n		<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.</p>		\n                                <a href=\"https://www.yoshimoto-sangyo.co.jp/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"246\" height=\"205\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yoshimoto-vietnam.png\" alt=\"\" /></a>\n                                <a href=\"https://kimlongmotor.com.vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"1586\" height=\"1586\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/kim-long-motors.png\" alt=\"\" /></a>\n                                <a href=\"https://www.samsung.com/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"697\" height=\"232\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/samsung.jpg\" alt=\"\" /></a>\n                                <a href=\"https://komaz.co.jp/english/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"900\" height=\"900\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/komatsu-kogyo.jpg\" alt=\"\" /></a>\n                                <a ><img width=\"256\" height=\"256\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yuwa-engineering.jpg\" alt=\"\" /></a>','Team & Partner','','inherit','closed','closed','','28-revision-v1','','','2024-12-25 03:37:42','2024-12-25 03:37:42','',28,'https://fe2tech.com/?p=3134',0,'revision','',0),(3135,1,'2024-12-25 03:37:43','2024-12-25 03:37:43','Our Team\n	    <h3>\n        We will exceed your expectations with our innovative solutions.    </h3>\n		<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a ></a>\n                            	<h3>	\n                	            	Far East Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tech                                    </a>\n                                </h3>\n                                <a ></a>\n                            	<h3>	\n                	            	Far East Engineering                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Engineering                                    </a>\n                                </h3>\n                                <a ></a>\n                            	<h3>	\n                	            	Far East Tools Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tools Tech                                    </a>\n                                </h3>\n			Our Partners\n	    <h3>\n        We will exceed your expectations with our innovative solutions as your trusted partner.    </h3>\n		<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.</p>		\n                                <a href=\"https://www.yoshimoto-sangyo.co.jp/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"246\" height=\"205\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yoshimoto-vietnam.png\" alt=\"\" /></a>\n                                <a href=\"https://kimlongmotor.com.vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"1586\" height=\"1586\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/kim-long-motors.png\" alt=\"\" /></a>\n                                <a href=\"https://www.samsung.com/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"697\" height=\"232\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/samsung.jpg\" alt=\"\" /></a>\n                                <a href=\"https://komaz.co.jp/english/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"900\" height=\"900\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/komatsu-kogyo.jpg\" alt=\"\" /></a>\n                                <a ><img width=\"256\" height=\"256\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yuwa-engineering.jpg\" alt=\"\" /></a>','Team & Partner','','inherit','closed','closed','','28-revision-v1','','','2024-12-25 03:37:43','2024-12-25 03:37:43','',28,'https://fe2tech.com/?p=3135',0,'revision','',0),(3136,1,'2024-12-25 03:37:43','2024-12-25 03:37:43','Our Team\n	    <h3>\n        We will exceed your expectations with our innovative solutions.    </h3>\n		<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a ><img width=\"327\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FET.png\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tech                                    </a>\n                                </h3>\n                                <a ><img width=\"301\" height=\"301\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FEE.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Engineering                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Engineering                                    </a>\n                                </h3>\n                                <a ><img width=\"301\" height=\"301\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FETS.png\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tools Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tools Tech                                    </a>\n                                </h3>\n			Our Partners\n	    <h3>\n        We will exceed your expectations with our innovative solutions as your trusted partner.    </h3>\n		<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.</p>		\n                                <a href=\"https://www.yoshimoto-sangyo.co.jp/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"246\" height=\"205\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yoshimoto-vietnam.png\" alt=\"\" /></a>\n                                <a href=\"https://kimlongmotor.com.vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"1586\" height=\"1586\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/kim-long-motors.png\" alt=\"\" /></a>\n                                <a href=\"https://www.samsung.com/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"697\" height=\"232\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/samsung.jpg\" alt=\"\" /></a>\n                                <a href=\"https://komaz.co.jp/english/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"900\" height=\"900\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/komatsu-kogyo.jpg\" alt=\"\" /></a>\n                                <a ><img width=\"256\" height=\"256\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yuwa-engineering.jpg\" alt=\"\" /></a>','Team & Partner','','inherit','closed','closed','','28-revision-v1','','','2024-12-25 03:37:43','2024-12-25 03:37:43','',28,'https://fe2tech.com/?p=3136',0,'revision','',0),(3140,1,'2024-12-25 03:44:11','2024-12-25 03:44:11','Our Team\n	    <h3>\n        We will exceed your expectations with our innovative solutions.    </h3>\n		<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a ><img width=\"327\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FET.png\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tech                                    </a>\n                                </h3>\n                                <a ><img width=\"301\" height=\"301\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FEE.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Engineering                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Engineering                                    </a>\n                                </h3>\n                                <a ><img width=\"301\" height=\"301\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FETS.png\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tools Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tools Tech                                    </a>\n                                </h3>\n			Our Partners\n	    <h3>\n        We will exceed your expectations with our innovative solutions as your trusted partner.    </h3>\n		<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.</p>		\n                                <a href=\"https://www.yoshimoto-sangyo.co.jp/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"246\" height=\"205\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yoshimoto-vietnam.png\" alt=\"\" /></a>\n                                <a href=\"https://kimlongmotor.com.vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"1586\" height=\"1586\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/kim-long-motors.png\" alt=\"\" /></a>\n                                <a href=\"https://www.samsung.com/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"697\" height=\"232\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/samsung.jpg\" alt=\"\" /></a>\n                                <a href=\"https://komaz.co.jp/english/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"900\" height=\"900\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/komatsu-kogyo.jpg\" alt=\"\" /></a>\n                                <a ><img width=\"256\" height=\"256\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yuwa-engineering.jpg\" alt=\"\" /></a>','Team & Partner','','inherit','closed','closed','','28-revision-v1','','','2024-12-25 03:44:11','2024-12-25 03:44:11','',28,'https://fe2tech.com/?p=3140',0,'revision','',0),(3141,1,'2024-12-25 03:44:12','2024-12-25 03:44:12','Our Team\n	    <h3>\n        We will exceed your expectations with our innovative solutions.    </h3>\n		<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a ><img width=\"327\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FET.png\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tech                                    </a>\n                                </h3>\n                                <a ><img width=\"301\" height=\"301\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FEE.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Engineering                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Engineering                                    </a>\n                                </h3>\n                                <a ><img width=\"301\" height=\"301\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FETS.png\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tools Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tools Tech                                    </a>\n                                </h3>\n			Our Partners\n	    <h3>\n        We will exceed your expectations with our innovative solutions as your trusted partner.    </h3>\n		<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.</p>		\n                                <a href=\"https://www.yoshimoto-sangyo.co.jp/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"246\" height=\"205\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yoshimoto-vietnam.png\" alt=\"\" /></a>\n                                <a href=\"https://kimlongmotor.com.vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"1586\" height=\"1586\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/kim-long-motors.png\" alt=\"\" /></a>\n                                <a href=\"https://www.samsung.com/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"697\" height=\"232\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/samsung.jpg\" alt=\"\" /></a>\n                                <a href=\"https://komaz.co.jp/english/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"900\" height=\"900\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/komatsu-kogyo.jpg\" alt=\"\" /></a>\n                                <a ><img width=\"256\" height=\"256\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yuwa-engineering.jpg\" alt=\"\" /></a>','Team & Partner','','inherit','closed','closed','','28-revision-v1','','','2024-12-25 03:44:12','2024-12-25 03:44:12','',28,'https://fe2tech.com/?p=3141',0,'revision','',0),(3142,1,'2024-12-25 03:44:12','2024-12-25 03:44:12','Our Team\n	    <h3>\n        We will exceed your expectations with our innovative solutions.    </h3>\n		<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a ><img width=\"250\" height=\"229\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FET-1.png\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tech                                    </a>\n                                </h3>\n                                <a ><img width=\"250\" height=\"250\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FEE-1.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Engineering                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Engineering                                    </a>\n                                </h3>\n                                <a ><img width=\"250\" height=\"250\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FETS-1.png\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tools Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tools Tech                                    </a>\n                                </h3>\n			Our Partners\n	    <h3>\n        We will exceed your expectations with our innovative solutions as your trusted partner.    </h3>\n		<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.</p>		\n                                <a href=\"https://www.yoshimoto-sangyo.co.jp/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"246\" height=\"205\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yoshimoto-vietnam.png\" alt=\"\" /></a>\n                                <a href=\"https://kimlongmotor.com.vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"1586\" height=\"1586\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/kim-long-motors.png\" alt=\"\" /></a>\n                                <a href=\"https://www.samsung.com/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"697\" height=\"232\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/samsung.jpg\" alt=\"\" /></a>\n                                <a href=\"https://komaz.co.jp/english/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"900\" height=\"900\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/komatsu-kogyo.jpg\" alt=\"\" /></a>\n                                <a ><img width=\"256\" height=\"256\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yuwa-engineering.jpg\" alt=\"\" /></a>','Team & Partner','','inherit','closed','closed','','28-revision-v1','','','2024-12-25 03:44:12','2024-12-25 03:44:12','',28,'https://fe2tech.com/?p=3142',0,'revision','',0),(3145,1,'2024-12-25 03:48:18','2024-12-25 03:48:18','Our Team\n	    <h3>\n        We will exceed your expectations with our innovative solutions.    </h3>\n		<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a ><img width=\"250\" height=\"229\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FET-1.png\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tech                                    </a>\n                                </h3>\n                                <a ><img width=\"250\" height=\"250\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FEE-1.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Engineering                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Engineering                                    </a>\n                                </h3>\n                                <a ><img width=\"250\" height=\"250\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FETS-1.png\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tools Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tools Tech                                    </a>\n                                </h3>\n			Our Partners\n	    <h3>\n        We will exceed your expectations with our innovative solutions as your trusted partner.    </h3>\n		<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.</p>		\n                                <a href=\"https://www.yoshimoto-sangyo.co.jp/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"246\" height=\"205\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yoshimoto-vietnam.png\" alt=\"\" /></a>\n                                <a href=\"https://kimlongmotor.com.vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"1586\" height=\"1586\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/kim-long-motors.png\" alt=\"\" /></a>\n                                <a href=\"https://www.samsung.com/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"697\" height=\"232\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/samsung.jpg\" alt=\"\" /></a>\n                                <a href=\"https://komaz.co.jp/english/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"900\" height=\"900\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/komatsu-kogyo.jpg\" alt=\"\" /></a>\n                                <a ><img width=\"256\" height=\"256\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yuwa-engineering.jpg\" alt=\"\" /></a>','Team & Partner','','inherit','closed','closed','','28-revision-v1','','','2024-12-25 03:48:18','2024-12-25 03:48:18','',28,'https://fe2tech.com/?p=3145',0,'revision','',0),(3146,1,'2024-12-25 03:48:19','2024-12-25 03:48:19','Our Team\n	    <h3>\n        We will exceed your expectations with our innovative solutions.    </h3>\n		<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a ><img width=\"250\" height=\"229\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FET-1.png\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tech                                    </a>\n                                </h3>\n                                <a ><img width=\"250\" height=\"250\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FEE-1.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Engineering                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Engineering                                    </a>\n                                </h3>\n                                <a ><img width=\"250\" height=\"250\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FETS-1.png\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tools Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tools Tech                                    </a>\n                                </h3>\n			Our Partners\n	    <h3>\n        We will exceed your expectations with our innovative solutions as your trusted partner.    </h3>\n		<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.</p>		\n                                <a href=\"https://www.yoshimoto-sangyo.co.jp/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"246\" height=\"205\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yoshimoto-vietnam.png\" alt=\"\" /></a>\n                                <a href=\"https://kimlongmotor.com.vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"1586\" height=\"1586\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/kim-long-motors.png\" alt=\"\" /></a>\n                                <a href=\"https://www.samsung.com/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"697\" height=\"232\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/samsung.jpg\" alt=\"\" /></a>\n                                <a href=\"https://komaz.co.jp/english/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"900\" height=\"900\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/komatsu-kogyo.jpg\" alt=\"\" /></a>\n                                <a ><img width=\"256\" height=\"256\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yuwa-engineering.jpg\" alt=\"\" /></a>','Team & Partner','','inherit','closed','closed','','28-revision-v1','','','2024-12-25 03:48:19','2024-12-25 03:48:19','',28,'https://fe2tech.com/?p=3146',0,'revision','',0),(3147,1,'2024-12-25 03:48:19','2024-12-25 03:48:19','Our Team\n	    <h3>\n        We will exceed your expectations with our innovative solutions.    </h3>\n		<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a ><img width=\"327\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FET.png\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tech                                    </a>\n                                </h3>\n                                <a ><img width=\"301\" height=\"301\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FEE.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Engineering                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Engineering                                    </a>\n                                </h3>\n                                <a ><img width=\"301\" height=\"301\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FETS.png\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tools Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tools Tech                                    </a>\n                                </h3>\n			Our Partners\n	    <h3>\n        We will exceed your expectations with our innovative solutions as your trusted partner.    </h3>\n		<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.</p>		\n                                <a href=\"https://www.yoshimoto-sangyo.co.jp/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"246\" height=\"205\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yoshimoto-vietnam.png\" alt=\"\" /></a>\n                                <a href=\"https://kimlongmotor.com.vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"1586\" height=\"1586\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/kim-long-motors.png\" alt=\"\" /></a>\n                                <a href=\"https://www.samsung.com/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"697\" height=\"232\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/samsung.jpg\" alt=\"\" /></a>\n                                <a href=\"https://komaz.co.jp/english/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"900\" height=\"900\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/komatsu-kogyo.jpg\" alt=\"\" /></a>\n                                <a ><img width=\"256\" height=\"256\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yuwa-engineering.jpg\" alt=\"\" /></a>','Team & Partner','','inherit','closed','closed','','28-revision-v1','','','2024-12-25 03:48:19','2024-12-25 03:48:19','',28,'https://fe2tech.com/?p=3147',0,'revision','',0),(3148,1,'2024-12-25 03:49:18','2024-12-25 03:49:18','Our Team\n	    <h3>\n        We will exceed your expectations with our innovative solutions.    </h3>\n		<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a ><img width=\"327\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FET.png\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tech                                    </a>\n                                </h3>\n                                <a ><img width=\"301\" height=\"301\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FEE.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Engineering                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Engineering                                    </a>\n                                </h3>\n                                <a ><img width=\"301\" height=\"301\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FETS.png\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tools Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tools Tech                                    </a>\n                                </h3>\n			Our Partners\n	    <h3>\n        We will exceed your expectations with our innovative solutions as your trusted partner.    </h3>\n		<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.</p>		\n                                <a href=\"https://www.yoshimoto-sangyo.co.jp/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"246\" height=\"205\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yoshimoto-vietnam.png\" alt=\"\" /></a>\n                                <a href=\"https://kimlongmotor.com.vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"1586\" height=\"1586\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/kim-long-motors.png\" alt=\"\" /></a>\n                                <a href=\"https://www.samsung.com/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"697\" height=\"232\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/samsung.jpg\" alt=\"\" /></a>\n                                <a href=\"https://komaz.co.jp/english/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"900\" height=\"900\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/komatsu-kogyo.jpg\" alt=\"\" /></a>\n                                <a ><img width=\"256\" height=\"256\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yuwa-engineering.jpg\" alt=\"\" /></a>','Team & Partner','','inherit','closed','closed','','28-revision-v1','','','2024-12-25 03:49:18','2024-12-25 03:49:18','',28,'https://fe2tech.com/?p=3148',0,'revision','',0),(3149,1,'2024-12-25 03:49:19','2024-12-25 03:49:19','Our Team\n	    <h3>\n        We will exceed your expectations with our innovative solutions.    </h3>\n		<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a ><img width=\"327\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FET.png\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tech                                    </a>\n                                </h3>\n                                <a ><img width=\"301\" height=\"301\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FEE.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Engineering                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Engineering                                    </a>\n                                </h3>\n                                <a ><img width=\"301\" height=\"301\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FETS.png\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tools Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tools Tech                                    </a>\n                                </h3>\n			Our Partners\n	    <h3>\n        We will exceed your expectations with our innovative solutions as your trusted partner.    </h3>\n		<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.</p>		\n                                <a href=\"https://www.yoshimoto-sangyo.co.jp/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"246\" height=\"205\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yoshimoto-vietnam.png\" alt=\"\" /></a>\n                                <a href=\"https://kimlongmotor.com.vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"1586\" height=\"1586\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/kim-long-motors.png\" alt=\"\" /></a>\n                                <a href=\"https://www.samsung.com/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"697\" height=\"232\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/samsung.jpg\" alt=\"\" /></a>\n                                <a href=\"https://komaz.co.jp/english/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"900\" height=\"900\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/komatsu-kogyo.jpg\" alt=\"\" /></a>\n                                <a ><img width=\"256\" height=\"256\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yuwa-engineering.jpg\" alt=\"\" /></a>','Team & Partner','','inherit','closed','closed','','28-revision-v1','','','2024-12-25 03:49:19','2024-12-25 03:49:19','',28,'https://fe2tech.com/?p=3149',0,'revision','',0),(3150,1,'2024-12-25 03:49:19','2024-12-25 03:49:19','Our Team\n	    <h3>\n        We will exceed your expectations with our innovative solutions.    </h3>\n		<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a ><img width=\"327\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FET.png\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tech                                    </a>\n                                </h3>\n                                <a ><img width=\"301\" height=\"301\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FEE.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Engineering                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Engineering                                    </a>\n                                </h3>\n                                <a ><img width=\"301\" height=\"301\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FETS.png\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tools Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tools Tech                                    </a>\n                                </h3>\n			Our Partners\n	    <h3>\n        We will exceed your expectations with our innovative solutions as your trusted partner.    </h3>\n		<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.</p>		\n                                <a href=\"https://www.yoshimoto-sangyo.co.jp/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"246\" height=\"205\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yoshimoto-vietnam.png\" alt=\"\" /></a>\n                                <a href=\"https://kimlongmotor.com.vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"1586\" height=\"1586\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/kim-long-motors.png\" alt=\"\" /></a>\n                                <a href=\"https://www.samsung.com/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"697\" height=\"232\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/samsung.jpg\" alt=\"\" /></a>\n                                <a href=\"https://komaz.co.jp/english/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"900\" height=\"900\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/komatsu-kogyo.jpg\" alt=\"\" /></a>\n                                <a ><img width=\"256\" height=\"256\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yuwa-engineering.jpg\" alt=\"\" /></a>','Team & Partner','','inherit','closed','closed','','28-revision-v1','','','2024-12-25 03:49:19','2024-12-25 03:49:19','',28,'https://fe2tech.com/?p=3150',0,'revision','',0),(3151,1,'2024-12-25 03:53:55','2024-12-25 03:53:55','','FET','','inherit','open','closed','','fet','','','2024-12-25 03:53:55','2024-12-25 03:53:55','',28,'https://fe2tech.com/wp-content/uploads/2024/12/FET.png',0,'attachment','image/png',0),(3152,1,'2024-12-25 03:54:00','2024-12-25 03:54:00','Our Team\n	    <h3>\n        We will exceed your expectations with our innovative solutions.    </h3>\n		<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a ><img width=\"327\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FET.png\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tech                                    </a>\n                                </h3>\n                                <a ><img width=\"301\" height=\"301\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FEE.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Engineering                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Engineering                                    </a>\n                                </h3>\n                                <a ><img width=\"301\" height=\"301\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FETS.png\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tools Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tools Tech                                    </a>\n                                </h3>\n			Our Partners\n	    <h3>\n        We will exceed your expectations with our innovative solutions as your trusted partner.    </h3>\n		<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.</p>		\n                                <a href=\"https://www.yoshimoto-sangyo.co.jp/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"246\" height=\"205\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yoshimoto-vietnam.png\" alt=\"\" /></a>\n                                <a href=\"https://kimlongmotor.com.vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"1586\" height=\"1586\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/kim-long-motors.png\" alt=\"\" /></a>\n                                <a href=\"https://www.samsung.com/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"697\" height=\"232\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/samsung.jpg\" alt=\"\" /></a>\n                                <a href=\"https://komaz.co.jp/english/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"900\" height=\"900\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/komatsu-kogyo.jpg\" alt=\"\" /></a>\n                                <a ><img width=\"256\" height=\"256\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yuwa-engineering.jpg\" alt=\"\" /></a>','Team & Partner','','inherit','closed','closed','','28-revision-v1','','','2024-12-25 03:54:00','2024-12-25 03:54:00','',28,'https://fe2tech.com/?p=3152',0,'revision','',0),(3153,1,'2024-12-25 03:54:01','2024-12-25 03:54:01','Our Team\n	    <h3>\n        We will exceed your expectations with our innovative solutions.    </h3>\n		<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a ><img width=\"327\" height=\"300\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FET.png\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tech                                    </a>\n                                </h3>\n                                <a ><img width=\"301\" height=\"301\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FEE.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Engineering                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Engineering                                    </a>\n                                </h3>\n                                <a ><img width=\"301\" height=\"301\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FETS.png\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tools Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tools Tech                                    </a>\n                                </h3>\n			Our Partners\n	    <h3>\n        We will exceed your expectations with our innovative solutions as your trusted partner.    </h3>\n		<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.</p>		\n                                <a href=\"https://www.yoshimoto-sangyo.co.jp/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"246\" height=\"205\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yoshimoto-vietnam.png\" alt=\"\" /></a>\n                                <a href=\"https://kimlongmotor.com.vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"1586\" height=\"1586\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/kim-long-motors.png\" alt=\"\" /></a>\n                                <a href=\"https://www.samsung.com/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"697\" height=\"232\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/samsung.jpg\" alt=\"\" /></a>\n                                <a href=\"https://komaz.co.jp/english/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"900\" height=\"900\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/komatsu-kogyo.jpg\" alt=\"\" /></a>\n                                <a ><img width=\"256\" height=\"256\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yuwa-engineering.jpg\" alt=\"\" /></a>','Team & Partner','','inherit','closed','closed','','28-revision-v1','','','2024-12-25 03:54:01','2024-12-25 03:54:01','',28,'https://fe2tech.com/?p=3153',0,'revision','',0),(3154,1,'2024-12-25 03:54:01','2024-12-25 03:54:01','Our Team\n	    <h3>\n        We will exceed your expectations with our innovative solutions.    </h3>\n		<p>We deliver innovative solutions that go beyond your expectations, ensuring top-quality machinery and exceptional results.</p>		\n                                <a ><img width=\"500\" height=\"500\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FET.png\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tech                                    </a>\n                                </h3>\n                                <a ><img width=\"301\" height=\"301\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FEE.jpg\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Engineering                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Engineering                                    </a>\n                                </h3>\n                                <a ><img width=\"301\" height=\"301\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/FETS.png\" alt=\"\" /></a>\n                            	<h3>	\n                	            	Far East Tools Tech                		        </h3>\n                                <h3>    \n                                    <a >\n                                        Far East Tools Tech                                    </a>\n                                </h3>\n			Our Partners\n	    <h3>\n        We will exceed your expectations with our innovative solutions as your trusted partner.    </h3>\n		<p>We are committed to ensuring long-term and everlasting quality and punctuality with our partners.</p>		\n                                <a href=\"https://www.yoshimoto-sangyo.co.jp/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"246\" height=\"205\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yoshimoto-vietnam.png\" alt=\"\" /></a>\n                                <a href=\"https://kimlongmotor.com.vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"1586\" height=\"1586\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/kim-long-motors.png\" alt=\"\" /></a>\n                                <a href=\"https://www.samsung.com/vn/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"697\" height=\"232\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/samsung.jpg\" alt=\"\" /></a>\n                                <a href=\"https://komaz.co.jp/english/\" target=\"_blank\" rel=\"nofollow noopener\"><img width=\"900\" height=\"900\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/komatsu-kogyo.jpg\" alt=\"\" /></a>\n                                <a ><img width=\"256\" height=\"256\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/yuwa-engineering.jpg\" alt=\"\" /></a>','Team & Partner','','inherit','closed','closed','','28-revision-v1','','','2024-12-25 03:54:01','2024-12-25 03:54:01','',28,'https://fe2tech.com/?p=3154',0,'revision','',0),(3156,1,'2025-03-17 02:40:57','2025-03-17 02:40:57','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.    </h3>\n		<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>		\n                <a href=\"https://www.youtube.com/watch?v=oVQ4_PIqgz8\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Customer\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Personnel\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Oders per year\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>		\n													<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />													\n													<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />													\n	    <h3>\n        We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.    </h3>\n		<p>Goals to achieve by 2026:</p>		\n                                            East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\n                                        30%\n                                            Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\n                                        10%\n                                            United States: Products related to medical instruments, optics, and audio equipment.\n                                        30%\n                                            Australia: Sheet metal products.\n                                        8%\n                                            Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\n                                        20%\n                                            Other markets and products.\n                                        2%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/other-services/\">Other Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/other-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/bolt-production/\">Bolt Production</a></h3>\n                                        <a href=\"https://fe2tech.com/service/bolt-production/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/edm-grinding-and-wire-cutting-service/\">EDM, Grinding and Wire Cutting Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/edm-grinding-and-wire-cutting-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/welding-service/\">Welding Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/welding-service/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"97\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We always provide a sense of security in terms of quality and progress.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"223\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2025-03-17 02:40:57','2025-03-17 02:40:57','',9,'https://fe2tech.com/?p=3156',0,'revision','',0),(3157,1,'2025-03-17 02:40:59','2025-03-17 02:40:59','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.    </h3>\n		<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>		\n                <a href=\"https://www.youtube.com/watch?v=oVQ4_PIqgz8\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Customer\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Personnel\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Oders per year\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>		\n													<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />													\n													<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />													\n	    <h3>\n        We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.    </h3>\n		<p>Goals to achieve by 2026:</p>		\n                                            East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\n                                        30%\n                                            Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\n                                        10%\n                                            United States: Products related to medical instruments, optics, and audio equipment.\n                                        30%\n                                            Australia: Sheet metal products.\n                                        8%\n                                            Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\n                                        20%\n                                            Other markets and products.\n                                        2%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/other-services/\">Other Services</a></h3>\n                                        <a href=\"https://fe2tech.com/service/other-services/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/bolt-production/\">Bolt Production</a></h3>\n                                        <a href=\"https://fe2tech.com/service/bolt-production/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/edm-grinding-and-wire-cutting-service/\">EDM, Grinding and Wire Cutting Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/edm-grinding-and-wire-cutting-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/welding-service/\">Welding Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/welding-service/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"97\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We always provide a sense of security in terms of quality and progress.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"223\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2025-03-17 02:40:59','2025-03-17 02:40:59','',9,'https://fe2tech.com/?p=3157',0,'revision','',0),(3158,1,'2025-03-17 02:41:00','2025-03-17 02:41:00','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.    </h3>\n		<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>		\n                <a href=\"https://youtu.be/vUCVqLmXSPM?si=NDYrSC8zPIUGPj3lhttps://youtu.be/vUCVqLmXSPM?si=NDYrSC8zPIUGPj3l\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Customer\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Personnel\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Oders per year\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>		\n													<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />													\n													<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />													\n	    <h3>\n        We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.    </h3>\n		<p>Goals to achieve by 2026:</p>		\n                                            East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\n                                        30%\n                                            Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\n                                        10%\n                                            United States: Products related to medical instruments, optics, and audio equipment.\n                                        30%\n                                            Australia: Sheet metal products.\n                                        8%\n                                            Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\n                                        20%\n                                            Other markets and products.\n                                        2%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-milling-service/\">CNC Milling Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-milling-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-turning-service/\">CNC Turning Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-turning-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">CNC Tool Grinder Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/sheet-metal-service/\">Sheet Metal Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/sheet-metal-service/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"hidden\" name=\"_wpcf7_recaptcha_response\" value=\"\" />\n	<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"45\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We always provide a sense of security in terms of quality and progress.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"hidden\" name=\"_wpcf7_recaptcha_response\" value=\"\" />\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"220\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2025-03-17 02:41:00','2025-03-17 02:41:00','',9,'https://fe2tech.com/?p=3158',0,'revision','',0),(3159,1,'2025-03-17 02:41:51','2025-03-17 02:41:51','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        Chúng tôi cung cấp nhiều loại sản phẩm cho ngành công nghiệp cơ khí trên toàn Việt Nam và quốc tế, đặc biệt tại các thị trường trọng điểm như Nhật Bản, Hàn Quốc, Hoa Kỳ và Úc. Chúng tôi cũng có kinh nghiệm xuất khẩu đến các thị trường này.    </h3>\n		<p>Thế mạnh lớn nhất của chúng tôi nằm ở đội ngũ nhân lực trẻ trung, đam mê học hỏi, sáng tạo và tự tin, có khả năng sản xuất đa dạng các sản phẩm cơ khí với chất lượng luôn ổn định.</p>		\n                <a href=\"https://www.youtube.com/watch?v=oVQ4_PIqgz8\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Khách hàng\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Nhân sự\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Số đơn hàng mỗi năm\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>Chúng tôi đã bắt đầu mở một cửa hàng trên Alibaba để kết nối với các đơn hàng từ khắp nơi trên thế giới.</p>		\n													<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />													\n													<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />													\n	    <h3>\n        Chúng tôi nỗ lực trở thành một trong những công ty chế biến cơ khí hàng đầu của Việt Nam, cung cấp ra thị trường quốc tế vào năm 2030. Trong tương lai, chúng tôi hướng đến việc sản xuất các sản phẩm máy móc hoàn chỉnh để giao trực tiếp đến người sử dụng cuối.    </h3>\n		<p>Mục tiêu đạt được vào năm 2026:</p>		\n                                            Đông Á (Nhật Bản, Hàn Quốc, v.v.): Xuất khẩu các linh kiện máy móc thay thế, phụ kiện xe máy và ô tô, phụ kiện ngành nước, khuôn mẫu và các bộ phận cơ khí khác.\n                                        30%\n                                            Châu Âu (Đức, Bulgaria, Hà Lan, v.v.): Sản xuất khuôn jig cho vòng bi ô tô và các bộ phận hộp điện cho máy móc tự động hóa.\n                                        10%\n                                            Hoa Kỳ: Các sản phẩm liên quan đến thiết bị y tế, quang học và thiết bị âm thanh.\n                                        30%\n                                            Úc: Sản phẩm kim loại tấm.\n                                        8%\n                                            Việt Nam: Máy tự động hóa nhỏ; bu lông xe máy và ô tô; sản phẩm trong ngành dầu khí.\n                                        20%\n                                            Các thị trường và sản phẩm khác.\n                                        2%\n	    <h3>\n        Chúng tôi cung cấp dịch vụ trong nhiều lĩnh vực.    </h3>\n		<p>Chúng tôi luôn đáp ứng yêu cầu thiết kế của khách hàng. Ngoại hình và kích thước là những yếu tố chúng tôi coi trọng nhất.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/vi/service/dich-vu-phay-cnc/\">Dịch vụ phay CNC</a></h3>\n                                        <a href=\"https://fe2tech.com/vi/service/dich-vu-phay-cnc/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/vi/service/dich-vu-tien-cnc/\">Dịch vụ tiện CNC</a></h3>\n                                        <a href=\"https://fe2tech.com/vi/service/dich-vu-tien-cnc/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/vi/service/dich-vu-mai-dung-cu-cnc/\">Dịch vụ mài dụng cụ CNC</a></h3>\n                                        <a href=\"https://fe2tech.com/vi/service/dich-vu-mai-dung-cu-cnc/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/vi/service/dich-vu-gia-cong-kim-loai-tam/\">Dịch vụ gia công kim loại tấm</a></h3>\n                                        <a href=\"https://fe2tech.com/vi/service/dich-vu-gia-cong-kim-loai-tam/\">Read more</a>\n    <a href=\"/services\">\n                Dịch vụ khác\n    </a>\n            	        		<h3>Có câu hỏi nào không?</h3>\n            	        		Call: 0968860386\n                    <h3>Liên hệ để nhận báo giá:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"202\"/></p>\n</form>\n	    <h3>\n        Chúng tôi có quy trình làm việc đơn giản.    </h3>\n		<p>Chúng tôi luôn mang đến cảm giác an tâm về chất lượng và tiến độ.</p>		\n                                                    <h3>Tìm chúng tôi</h3>\n                                                    Chúng tôi hiểu tầm quan trọng của việc xử lý mỗi dự án theo một cách tiếp cận toàn diện.\n                                                    <h3>Kết nối với chúng tôi</h3>\n                                                    Điều làm chúng tôi khác biệt so với các công ty khác là chuyên môn trong việc tạo ra các giải pháp tùy chỉnh.\n                                                    <h3>Thanh toán cho chúng tôi</h3>\n                                                    Chúng tôi khuyến khích mỗi thành viên trong đội ngũ trở thành phiên bản tốt nhất của chính mình, tạo ra một môi trường linh hoạt và hợp tác.\n                                                    <h3>Đạt được ước mơ của bạn</h3>\n                                                    Cốt lõi của mỗi doanh nghiệp là những giải pháp độc đáo, truyền cảm hứng cho sự đổi mới và phát triển.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        Liên hệ với chúng tôi bất cứ lúc nào nếu bạn cần sự giúp đỡ...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"87\"/></p>\n</form>','Trang chủ','','inherit','closed','closed','','2973-revision-v1','','','2025-03-17 02:41:51','2025-03-17 02:41:51','',2973,'https://fe2tech.com/?p=3159',0,'revision','',0),(3160,1,'2025-03-17 02:41:52','2025-03-17 02:41:52','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        Chúng tôi cung cấp nhiều loại sản phẩm cho ngành công nghiệp cơ khí trên toàn Việt Nam và quốc tế, đặc biệt tại các thị trường trọng điểm như Nhật Bản, Hàn Quốc, Hoa Kỳ và Úc. Chúng tôi cũng có kinh nghiệm xuất khẩu đến các thị trường này.    </h3>\n		<p>Thế mạnh lớn nhất của chúng tôi nằm ở đội ngũ nhân lực trẻ trung, đam mê học hỏi, sáng tạo và tự tin, có khả năng sản xuất đa dạng các sản phẩm cơ khí với chất lượng luôn ổn định.</p>		\n                <a href=\"https://www.youtube.com/watch?v=oVQ4_PIqgz8\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Khách hàng\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Nhân sự\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Số đơn hàng mỗi năm\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>Chúng tôi đã bắt đầu mở một cửa hàng trên Alibaba để kết nối với các đơn hàng từ khắp nơi trên thế giới.</p>		\n													<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />													\n													<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />													\n	    <h3>\n        Chúng tôi nỗ lực trở thành một trong những công ty chế biến cơ khí hàng đầu của Việt Nam, cung cấp ra thị trường quốc tế vào năm 2030. Trong tương lai, chúng tôi hướng đến việc sản xuất các sản phẩm máy móc hoàn chỉnh để giao trực tiếp đến người sử dụng cuối.    </h3>\n		<p>Mục tiêu đạt được vào năm 2026:</p>		\n                                            Đông Á (Nhật Bản, Hàn Quốc, v.v.): Xuất khẩu các linh kiện máy móc thay thế, phụ kiện xe máy và ô tô, phụ kiện ngành nước, khuôn mẫu và các bộ phận cơ khí khác.\n                                        30%\n                                            Châu Âu (Đức, Bulgaria, Hà Lan, v.v.): Sản xuất khuôn jig cho vòng bi ô tô và các bộ phận hộp điện cho máy móc tự động hóa.\n                                        10%\n                                            Hoa Kỳ: Các sản phẩm liên quan đến thiết bị y tế, quang học và thiết bị âm thanh.\n                                        30%\n                                            Úc: Sản phẩm kim loại tấm.\n                                        8%\n                                            Việt Nam: Máy tự động hóa nhỏ; bu lông xe máy và ô tô; sản phẩm trong ngành dầu khí.\n                                        20%\n                                            Các thị trường và sản phẩm khác.\n                                        2%\n	    <h3>\n        Chúng tôi cung cấp dịch vụ trong nhiều lĩnh vực.    </h3>\n		<p>Chúng tôi luôn đáp ứng yêu cầu thiết kế của khách hàng. Ngoại hình và kích thước là những yếu tố chúng tôi coi trọng nhất.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/vi/service/dich-vu-phay-cnc/\">Dịch vụ phay CNC</a></h3>\n                                        <a href=\"https://fe2tech.com/vi/service/dich-vu-phay-cnc/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/vi/service/dich-vu-tien-cnc/\">Dịch vụ tiện CNC</a></h3>\n                                        <a href=\"https://fe2tech.com/vi/service/dich-vu-tien-cnc/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/vi/service/dich-vu-mai-dung-cu-cnc/\">Dịch vụ mài dụng cụ CNC</a></h3>\n                                        <a href=\"https://fe2tech.com/vi/service/dich-vu-mai-dung-cu-cnc/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/vi/service/dich-vu-gia-cong-kim-loai-tam/\">Dịch vụ gia công kim loại tấm</a></h3>\n                                        <a href=\"https://fe2tech.com/vi/service/dich-vu-gia-cong-kim-loai-tam/\">Read more</a>\n    <a href=\"/services\">\n                Dịch vụ khác\n    </a>\n            	        		<h3>Có câu hỏi nào không?</h3>\n            	        		Call: 0968860386\n                    <h3>Liên hệ để nhận báo giá:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"202\"/></p>\n</form>\n	    <h3>\n        Chúng tôi có quy trình làm việc đơn giản.    </h3>\n		<p>Chúng tôi luôn mang đến cảm giác an tâm về chất lượng và tiến độ.</p>		\n                                                    <h3>Tìm chúng tôi</h3>\n                                                    Chúng tôi hiểu tầm quan trọng của việc xử lý mỗi dự án theo một cách tiếp cận toàn diện.\n                                                    <h3>Kết nối với chúng tôi</h3>\n                                                    Điều làm chúng tôi khác biệt so với các công ty khác là chuyên môn trong việc tạo ra các giải pháp tùy chỉnh.\n                                                    <h3>Thanh toán cho chúng tôi</h3>\n                                                    Chúng tôi khuyến khích mỗi thành viên trong đội ngũ trở thành phiên bản tốt nhất của chính mình, tạo ra một môi trường linh hoạt và hợp tác.\n                                                    <h3>Đạt được ước mơ của bạn</h3>\n                                                    Cốt lõi của mỗi doanh nghiệp là những giải pháp độc đáo, truyền cảm hứng cho sự đổi mới và phát triển.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        Liên hệ với chúng tôi bất cứ lúc nào nếu bạn cần sự giúp đỡ...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"87\"/></p>\n</form>','Trang chủ','','inherit','closed','closed','','2973-revision-v1','','','2025-03-17 02:41:52','2025-03-17 02:41:52','',2973,'https://fe2tech.com/?p=3160',0,'revision','',0),(3161,1,'2025-03-17 02:41:53','2025-03-17 02:41:53','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        Chúng tôi cung cấp nhiều loại sản phẩm cho ngành công nghiệp cơ khí trên toàn Việt Nam và quốc tế, đặc biệt tại các thị trường trọng điểm như Nhật Bản, Hàn Quốc, Hoa Kỳ và Úc. Chúng tôi cũng có kinh nghiệm xuất khẩu đến các thị trường này.    </h3>\n		<p>Thế mạnh lớn nhất của chúng tôi nằm ở đội ngũ nhân lực trẻ trung, đam mê học hỏi, sáng tạo và tự tin, có khả năng sản xuất đa dạng các sản phẩm cơ khí với chất lượng luôn ổn định.</p>		\n                <a href=\"https://youtu.be/vUCVqLmXSPM?si=NDYrSC8zPIUGPj3l\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Khách hàng\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Nhân sự\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Số đơn hàng mỗi năm\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>Chúng tôi đã bắt đầu mở một cửa hàng trên Alibaba để kết nối với các đơn hàng từ khắp nơi trên thế giới.</p>		\n													<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />													\n													<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />													\n	    <h3>\n        Chúng tôi nỗ lực trở thành một trong những công ty chế biến cơ khí hàng đầu của Việt Nam, cung cấp ra thị trường quốc tế vào năm 2030. Trong tương lai, chúng tôi hướng đến việc sản xuất các sản phẩm máy móc hoàn chỉnh để giao trực tiếp đến người sử dụng cuối.    </h3>\n		<p>Mục tiêu đạt được vào năm 2026:</p>		\n                                            Đông Á (Nhật Bản, Hàn Quốc, v.v.): Xuất khẩu các linh kiện máy móc thay thế, phụ kiện xe máy và ô tô, phụ kiện ngành nước, khuôn mẫu và các bộ phận cơ khí khác.\n                                        30%\n                                            Châu Âu (Đức, Bulgaria, Hà Lan, v.v.): Sản xuất khuôn jig cho vòng bi ô tô và các bộ phận hộp điện cho máy móc tự động hóa.\n                                        10%\n                                            Hoa Kỳ: Các sản phẩm liên quan đến thiết bị y tế, quang học và thiết bị âm thanh.\n                                        30%\n                                            Úc: Sản phẩm kim loại tấm.\n                                        8%\n                                            Việt Nam: Máy tự động hóa nhỏ; bu lông xe máy và ô tô; sản phẩm trong ngành dầu khí.\n                                        20%\n                                            Các thị trường và sản phẩm khác.\n                                        2%\n	    <h3>\n        Chúng tôi cung cấp dịch vụ trong nhiều lĩnh vực.    </h3>\n		<p>Chúng tôi luôn đáp ứng yêu cầu thiết kế của khách hàng. Ngoại hình và kích thước là những yếu tố chúng tôi coi trọng nhất.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/vi/service/dich-vu-phay-cnc/\">Dịch vụ phay CNC</a></h3>\n                                        <a href=\"https://fe2tech.com/vi/service/dich-vu-phay-cnc/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/vi/service/dich-vu-tien-cnc/\">Dịch vụ tiện CNC</a></h3>\n                                        <a href=\"https://fe2tech.com/vi/service/dich-vu-tien-cnc/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/vi/service/dich-vu-mai-dung-cu-cnc/\">Dịch vụ mài dụng cụ CNC</a></h3>\n                                        <a href=\"https://fe2tech.com/vi/service/dich-vu-mai-dung-cu-cnc/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/vi/service/dich-vu-gia-cong-kim-loai-tam/\">Dịch vụ gia công kim loại tấm</a></h3>\n                                        <a href=\"https://fe2tech.com/vi/service/dich-vu-gia-cong-kim-loai-tam/\">Read more</a>\n    <a href=\"/services\">\n                Dịch vụ khác\n    </a>\n            	        		<h3>Có câu hỏi nào không?</h3>\n            	        		Call: 0968860386\n                    <h3>Liên hệ để nhận báo giá:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"hidden\" name=\"_wpcf7_recaptcha_response\" value=\"\" />\n	<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"48\"/></p>\n</form>\n	    <h3>\n        Chúng tôi có quy trình làm việc đơn giản.    </h3>\n		<p>Chúng tôi luôn mang đến cảm giác an tâm về chất lượng và tiến độ.</p>		\n                                                    <h3>Tìm chúng tôi</h3>\n                                                    Chúng tôi hiểu tầm quan trọng của việc xử lý mỗi dự án theo một cách tiếp cận toàn diện.\n                                                    <h3>Kết nối với chúng tôi</h3>\n                                                    Điều làm chúng tôi khác biệt so với các công ty khác là chuyên môn trong việc tạo ra các giải pháp tùy chỉnh.\n                                                    <h3>Thanh toán cho chúng tôi</h3>\n                                                    Chúng tôi khuyến khích mỗi thành viên trong đội ngũ trở thành phiên bản tốt nhất của chính mình, tạo ra một môi trường linh hoạt và hợp tác.\n                                                    <h3>Đạt được ước mơ của bạn</h3>\n                                                    Cốt lõi của mỗi doanh nghiệp là những giải pháp độc đáo, truyền cảm hứng cho sự đổi mới và phát triển.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        Liên hệ với chúng tôi bất cứ lúc nào nếu bạn cần sự giúp đỡ...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"hidden\" name=\"_wpcf7_recaptcha_response\" value=\"\" />\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"62\"/></p>\n</form>','Trang chủ','','inherit','closed','closed','','2973-revision-v1','','','2025-03-17 02:41:53','2025-03-17 02:41:53','',2973,'https://fe2tech.com/?p=3161',0,'revision','',0),(3162,1,'2025-03-17 02:42:25','2025-03-17 02:42:25','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        私たちは、ベトナム全土および世界中の機械産業向けに幅広い製品を提供しており、特に日本、韓国、アメリカ、オーストラリアといった主要市場での取引に力を入れています。また、これらの市場への輸出経験も豊富です。    </h3>\n		<p>私たちの最大の強みは、学ぶこと、革新することに情熱を持ち、自信を持った若い労働力にあります。このチームは、常に安定した高品質の機械製品を多様に製造する能力を備えています。</p>		\n                <a href=\"https://www.youtube.com/watch?v=oVQ4_PIqgz8\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    顧客\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    人事\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    年間注文数\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>私たちは、世界中からの注文と接続するためにAlibabaに店舗を開設し始めました。</p>		\n													<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />													\n													<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />													\n	    <h3>\n        私たちは、2030年までにベトナムの主要な機械加工企業の一つとして、国際市場に供給することを目指しています。将来的には、完成した機械製品を直接エンドユーザーに提供することを目標としています。    </h3>\n		<p>2026年までに達成する目標:</p>		\n                                            東アジア(日本、韓国など):交換用機械部品、オートバイおよび自動車のアクセサリー、水産業用のフィッティング、金型、その他の機械部品の輸出。\n                                        30%\n                                            ヨーロッパ(ドイツ、ブルガリア、オランダなど):自動車用ベアリングの治具および自動化機械の電気ボックス部品の生産。\n                                        10%\n                                            アメリカ合衆国:医療機器、光学機器、音響機器に関連する製品。\n                                        30%\n                                            オーストラリア:板金製品。\n                                        8%\n                                            ベトナム:小型自動化機械、オートバイおよび自動車のボルト、石油およびガス産業の製品。\n                                        20%\n                                            その他の市場と製品。\n                                        2%\n	    <h3>\n        私たちは複数の業界でサービスを提供しています。    </h3>\n		<p>私たちは常に顧客のデザイン要求を満たします。外観と寸法は、最も重要視している要素です。</p>		\n                                                    <h3><a href=\"https://fe2tech.com/ja/service/nc%e3%83%95%e3%83%a9%e3%82%a4%e3%82%b9%e5%8a%a0%e5%b7%a5%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">NCフライス加工サービス</a></h3>\n                                        <a href=\"https://fe2tech.com/ja/service/nc%e3%83%95%e3%83%a9%e3%82%a4%e3%82%b9%e5%8a%a0%e5%b7%a5%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/ja/service/cnc%e6%97%8b%e7%9b%a4%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">CNC旋盤サービス</a></h3>\n                                        <a href=\"https://fe2tech.com/ja/service/cnc%e6%97%8b%e7%9b%a4%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/ja/service/cnc%e3%83%84%e3%83%bc%e3%83%ab%e3%82%b0%e3%83%a9%e3%82%a4%e3%83%b3%e3%83%80%e3%83%bc%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">CNCツールグラインダーサービス</a></h3>\n                                        <a href=\"https://fe2tech.com/ja/service/cnc%e3%83%84%e3%83%bc%e3%83%ab%e3%82%b0%e3%83%a9%e3%82%a4%e3%83%b3%e3%83%80%e3%83%bc%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/ja/service/%e6%9d%bf%e9%87%91%e5%8a%a0%e5%b7%a5%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">板金加工サービス</a></h3>\n                                        <a href=\"https://fe2tech.com/ja/service/%e6%9d%bf%e9%87%91%e5%8a%a0%e5%b7%a5%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">Read more</a>\n    <a href=\"/services\">\n                その他のサービス\n    </a>\n            	        		<h3>質問がありますか?</h3>\n            	        		Call: 0968860386\n                    <h3>見積もりを取得するための連絡先:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"34\"/></p>\n</form>\n	    <h3>\n        私たちは簡単な作業手順を持っています。    </h3>\n		<p>私たちは常に品質と進捗において安心感を提供します。</p>		\n                                                    <h3>私たちを探す</h3>\n                                                    私たちは、各プロジェクトを総合的に取り扱う重要性を理解しています。\n                                                    <h3>私たちと接続する</h3>\n                                                    私たちが他のエージェンシーと異なる点は、カスタマイズされたソリューションを作成する専門知識にあります。\n                                                    <h3>私たちに支払う</h3>\n                                                    私たちは、各チームメンバーが自分自身の最高の姿を目指すことを奨励し、柔軟で協力的な環境を育んでいます。\n                                                    <h3>あなたの夢を実現する</h3>\n                                                    どのビジネスにも、革新と進歩を促す独自のソリューションがあります。\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        いつでもどんな助けが必要な場合でも、私たちにご連絡ください...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"74\"/></p>\n</form>','ホーム','','inherit','closed','closed','','2982-revision-v1','','','2025-03-17 02:42:25','2025-03-17 02:42:25','',2982,'https://fe2tech.com/?p=3162',0,'revision','',0),(3163,1,'2025-03-17 02:42:26','2025-03-17 02:42:26','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        私たちは、ベトナム全土および世界中の機械産業向けに幅広い製品を提供しており、特に日本、韓国、アメリカ、オーストラリアといった主要市場での取引に力を入れています。また、これらの市場への輸出経験も豊富です。    </h3>\n		<p>私たちの最大の強みは、学ぶこと、革新することに情熱を持ち、自信を持った若い労働力にあります。このチームは、常に安定した高品質の機械製品を多様に製造する能力を備えています。</p>		\n                <a href=\"https://www.youtube.com/watch?v=oVQ4_PIqgz8\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    顧客\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    人事\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    年間注文数\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>私たちは、世界中からの注文と接続するためにAlibabaに店舗を開設し始めました。</p>		\n													<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />													\n													<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />													\n	    <h3>\n        私たちは、2030年までにベトナムの主要な機械加工企業の一つとして、国際市場に供給することを目指しています。将来的には、完成した機械製品を直接エンドユーザーに提供することを目標としています。    </h3>\n		<p>2026年までに達成する目標:</p>		\n                                            東アジア(日本、韓国など):交換用機械部品、オートバイおよび自動車のアクセサリー、水産業用のフィッティング、金型、その他の機械部品の輸出。\n                                        30%\n                                            ヨーロッパ(ドイツ、ブルガリア、オランダなど):自動車用ベアリングの治具および自動化機械の電気ボックス部品の生産。\n                                        10%\n                                            アメリカ合衆国:医療機器、光学機器、音響機器に関連する製品。\n                                        30%\n                                            オーストラリア:板金製品。\n                                        8%\n                                            ベトナム:小型自動化機械、オートバイおよび自動車のボルト、石油およびガス産業の製品。\n                                        20%\n                                            その他の市場と製品。\n                                        2%\n	    <h3>\n        私たちは複数の業界でサービスを提供しています。    </h3>\n		<p>私たちは常に顧客のデザイン要求を満たします。外観と寸法は、最も重要視している要素です。</p>		\n                                                    <h3><a href=\"https://fe2tech.com/ja/service/nc%e3%83%95%e3%83%a9%e3%82%a4%e3%82%b9%e5%8a%a0%e5%b7%a5%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">NCフライス加工サービス</a></h3>\n                                        <a href=\"https://fe2tech.com/ja/service/nc%e3%83%95%e3%83%a9%e3%82%a4%e3%82%b9%e5%8a%a0%e5%b7%a5%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/ja/service/cnc%e6%97%8b%e7%9b%a4%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">CNC旋盤サービス</a></h3>\n                                        <a href=\"https://fe2tech.com/ja/service/cnc%e6%97%8b%e7%9b%a4%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/ja/service/cnc%e3%83%84%e3%83%bc%e3%83%ab%e3%82%b0%e3%83%a9%e3%82%a4%e3%83%b3%e3%83%80%e3%83%bc%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">CNCツールグラインダーサービス</a></h3>\n                                        <a href=\"https://fe2tech.com/ja/service/cnc%e3%83%84%e3%83%bc%e3%83%ab%e3%82%b0%e3%83%a9%e3%82%a4%e3%83%b3%e3%83%80%e3%83%bc%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/ja/service/%e6%9d%bf%e9%87%91%e5%8a%a0%e5%b7%a5%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">板金加工サービス</a></h3>\n                                        <a href=\"https://fe2tech.com/ja/service/%e6%9d%bf%e9%87%91%e5%8a%a0%e5%b7%a5%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">Read more</a>\n    <a href=\"/services\">\n                その他のサービス\n    </a>\n            	        		<h3>質問がありますか?</h3>\n            	        		Call: 0968860386\n                    <h3>見積もりを取得するための連絡先:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"34\"/></p>\n</form>\n	    <h3>\n        私たちは簡単な作業手順を持っています。    </h3>\n		<p>私たちは常に品質と進捗において安心感を提供します。</p>		\n                                                    <h3>私たちを探す</h3>\n                                                    私たちは、各プロジェクトを総合的に取り扱う重要性を理解しています。\n                                                    <h3>私たちと接続する</h3>\n                                                    私たちが他のエージェンシーと異なる点は、カスタマイズされたソリューションを作成する専門知識にあります。\n                                                    <h3>私たちに支払う</h3>\n                                                    私たちは、各チームメンバーが自分自身の最高の姿を目指すことを奨励し、柔軟で協力的な環境を育んでいます。\n                                                    <h3>あなたの夢を実現する</h3>\n                                                    どのビジネスにも、革新と進歩を促す独自のソリューションがあります。\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        いつでもどんな助けが必要な場合でも、私たちにご連絡ください...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\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\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"74\"/></p>\n</form>','ホーム','','inherit','closed','closed','','2982-revision-v1','','','2025-03-17 02:42:26','2025-03-17 02:42:26','',2982,'https://fe2tech.com/?p=3163',0,'revision','',0),(3164,1,'2025-03-17 02:42:27','2025-03-17 02:42:27','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        私たちは、ベトナム全土および世界中の機械産業向けに幅広い製品を提供しており、特に日本、韓国、アメリカ、オーストラリアといった主要市場での取引に力を入れています。また、これらの市場への輸出経験も豊富です。    </h3>\n		<p>私たちの最大の強みは、学ぶこと、革新することに情熱を持ち、自信を持った若い労働力にあります。このチームは、常に安定した高品質の機械製品を多様に製造する能力を備えています。</p>		\n                <a href=\"https://youtu.be/vUCVqLmXSPM?si=NDYrSC8zPIUGPj3l\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    顧客\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    人事\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    年間注文数\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>私たちは、世界中からの注文と接続するためにAlibabaに店舗を開設し始めました。</p>		\n													<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />													\n													<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />													\n	    <h3>\n        私たちは、2030年までにベトナムの主要な機械加工企業の一つとして、国際市場に供給することを目指しています。将来的には、完成した機械製品を直接エンドユーザーに提供することを目標としています。    </h3>\n		<p>2026年までに達成する目標:</p>		\n                                            東アジア(日本、韓国など):交換用機械部品、オートバイおよび自動車のアクセサリー、水産業用のフィッティング、金型、その他の機械部品の輸出。\n                                        30%\n                                            ヨーロッパ(ドイツ、ブルガリア、オランダなど):自動車用ベアリングの治具および自動化機械の電気ボックス部品の生産。\n                                        10%\n                                            アメリカ合衆国:医療機器、光学機器、音響機器に関連する製品。\n                                        30%\n                                            オーストラリア:板金製品。\n                                        8%\n                                            ベトナム:小型自動化機械、オートバイおよび自動車のボルト、石油およびガス産業の製品。\n                                        20%\n                                            その他の市場と製品。\n                                        2%\n	    <h3>\n        私たちは複数の業界でサービスを提供しています。    </h3>\n		<p>私たちは常に顧客のデザイン要求を満たします。外観と寸法は、最も重要視している要素です。</p>		\n                                                    <h3><a href=\"https://fe2tech.com/ja/service/nc%e3%83%95%e3%83%a9%e3%82%a4%e3%82%b9%e5%8a%a0%e5%b7%a5%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">NCフライス加工サービス</a></h3>\n                                        <a href=\"https://fe2tech.com/ja/service/nc%e3%83%95%e3%83%a9%e3%82%a4%e3%82%b9%e5%8a%a0%e5%b7%a5%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/ja/service/cnc%e6%97%8b%e7%9b%a4%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">CNC旋盤サービス</a></h3>\n                                        <a href=\"https://fe2tech.com/ja/service/cnc%e6%97%8b%e7%9b%a4%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/ja/service/cnc%e3%83%84%e3%83%bc%e3%83%ab%e3%82%b0%e3%83%a9%e3%82%a4%e3%83%b3%e3%83%80%e3%83%bc%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">CNCツールグラインダーサービス</a></h3>\n                                        <a href=\"https://fe2tech.com/ja/service/cnc%e3%83%84%e3%83%bc%e3%83%ab%e3%82%b0%e3%83%a9%e3%82%a4%e3%83%b3%e3%83%80%e3%83%bc%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/ja/service/%e6%9d%bf%e9%87%91%e5%8a%a0%e5%b7%a5%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">板金加工サービス</a></h3>\n                                        <a href=\"https://fe2tech.com/ja/service/%e6%9d%bf%e9%87%91%e5%8a%a0%e5%b7%a5%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">Read more</a>\n    <a href=\"/services\">\n                その他のサービス\n    </a>\n            	        		<h3>質問がありますか?</h3>\n            	        		Call: 0968860386\n                    <h3>見積もりを取得するための連絡先:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"hidden\" name=\"_wpcf7_recaptcha_response\" value=\"\" />\n	<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"41\"/></p>\n</form>\n	    <h3>\n        私たちは簡単な作業手順を持っています。    </h3>\n		<p>私たちは常に品質と進捗において安心感を提供します。</p>		\n                                                    <h3>私たちを探す</h3>\n                                                    私たちは、各プロジェクトを総合的に取り扱う重要性を理解しています。\n                                                    <h3>私たちと接続する</h3>\n                                                    私たちが他のエージェンシーと異なる点は、カスタマイズされたソリューションを作成する専門知識にあります。\n                                                    <h3>私たちに支払う</h3>\n                                                    私たちは、各チームメンバーが自分自身の最高の姿を目指すことを奨励し、柔軟で協力的な環境を育んでいます。\n                                                    <h3>あなたの夢を実現する</h3>\n                                                    どのビジネスにも、革新と進歩を促す独自のソリューションがあります。\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        いつでもどんな助けが必要な場合でも、私たちにご連絡ください...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"hidden\" name=\"_wpcf7_recaptcha_response\" value=\"\" />\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"34\"/></p>\n</form>','ホーム','','inherit','closed','closed','','2982-revision-v1','','','2025-03-17 02:42:27','2025-03-17 02:42:27','',2982,'https://fe2tech.com/?p=3164',0,'revision','',0),(3165,1,'2025-03-17 02:43:29','2025-03-17 02:43:29','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        私たちは、ベトナム全土および世界中の機械産業向けに幅広い製品を提供しており、特に日本、韓国、アメリカ、オーストラリアといった主要市場での取引に力を入れています。また、これらの市場への輸出経験も豊富です。    </h3>\n		<p>私たちの最大の強みは、学ぶこと、革新することに情熱を持ち、自信を持った若い労働力にあります。このチームは、常に安定した高品質の機械製品を多様に製造する能力を備えています。</p>		\n                <a href=\"https://youtu.be/vUCVqLmXSPM?si=NDYrSC8zPIUGPj3l\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    顧客\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    人事\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    年間注文数\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>私たちは、世界中からの注文と接続するためにAlibabaに店舗を開設し始めました。</p>		\n													<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />													\n													<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />													\n	    <h3>\n        私たちは、2030年までにベトナムの主要な機械加工企業の一つとして、国際市場に供給することを目指しています。将来的には、完成した機械製品を直接エンドユーザーに提供することを目標としています。    </h3>\n		<p>2026年までに達成する目標:</p>		\n                                            東アジア(日本、韓国など):交換用機械部品、オートバイおよび自動車のアクセサリー、水産業用のフィッティング、金型、その他の機械部品の輸出。\n                                        30%\n                                            ヨーロッパ(ドイツ、ブルガリア、オランダなど):自動車用ベアリングの治具および自動化機械の電気ボックス部品の生産。\n                                        10%\n                                            アメリカ合衆国:医療機器、光学機器、音響機器に関連する製品。\n                                        30%\n                                            オーストラリア:板金製品。\n                                        8%\n                                            ベトナム:小型自動化機械、オートバイおよび自動車のボルト、石油およびガス産業の製品。\n                                        20%\n                                            その他の市場と製品。\n                                        2%\n	    <h3>\n        私たちは複数の業界でサービスを提供しています。    </h3>\n		<p>私たちは常に顧客のデザイン要求を満たします。外観と寸法は、最も重要視している要素です。</p>		\n                                                    <h3><a href=\"https://fe2tech.com/ja/service/nc%e3%83%95%e3%83%a9%e3%82%a4%e3%82%b9%e5%8a%a0%e5%b7%a5%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">NCフライス加工サービス</a></h3>\n                                        <a href=\"https://fe2tech.com/ja/service/nc%e3%83%95%e3%83%a9%e3%82%a4%e3%82%b9%e5%8a%a0%e5%b7%a5%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/ja/service/cnc%e6%97%8b%e7%9b%a4%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">CNC旋盤サービス</a></h3>\n                                        <a href=\"https://fe2tech.com/ja/service/cnc%e6%97%8b%e7%9b%a4%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/ja/service/cnc%e3%83%84%e3%83%bc%e3%83%ab%e3%82%b0%e3%83%a9%e3%82%a4%e3%83%b3%e3%83%80%e3%83%bc%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">CNCツールグラインダーサービス</a></h3>\n                                        <a href=\"https://fe2tech.com/ja/service/cnc%e3%83%84%e3%83%bc%e3%83%ab%e3%82%b0%e3%83%a9%e3%82%a4%e3%83%b3%e3%83%80%e3%83%bc%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/ja/service/%e6%9d%bf%e9%87%91%e5%8a%a0%e5%b7%a5%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">板金加工サービス</a></h3>\n                                        <a href=\"https://fe2tech.com/ja/service/%e6%9d%bf%e9%87%91%e5%8a%a0%e5%b7%a5%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">Read more</a>\n    <a href=\"/services\">\n                その他のサービス\n    </a>\n            	        		<h3>質問がありますか?</h3>\n            	        		Call: 0968860386\n                    <h3>見積もりを取得するための連絡先:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"hidden\" name=\"_wpcf7_recaptcha_response\" value=\"\" />\n	<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"41\"/></p>\n</form>\n	    <h3>\n        私たちは簡単な作業手順を持っています。    </h3>\n		<p>私たちは常に品質と進捗において安心感を提供します。</p>		\n                                                    <h3>私たちを探す</h3>\n                                                    私たちは、各プロジェクトを総合的に取り扱う重要性を理解しています。\n                                                    <h3>私たちと接続する</h3>\n                                                    私たちが他のエージェンシーと異なる点は、カスタマイズされたソリューションを作成する専門知識にあります。\n                                                    <h3>私たちに支払う</h3>\n                                                    私たちは、各チームメンバーが自分自身の最高の姿を目指すことを奨励し、柔軟で協力的な環境を育んでいます。\n                                                    <h3>あなたの夢を実現する</h3>\n                                                    どのビジネスにも、革新と進歩を促す独自のソリューションがあります。\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        いつでもどんな助けが必要な場合でも、私たちにご連絡ください...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"hidden\" name=\"_wpcf7_recaptcha_response\" value=\"\" />\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"34\"/></p>\n</form>','ホーム','','inherit','closed','closed','','2982-revision-v1','','','2025-03-17 02:43:29','2025-03-17 02:43:29','',2982,'https://fe2tech.com/?p=3165',0,'revision','',0),(3166,1,'2025-03-17 02:43:30','2025-03-17 02:43:30','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        私たちは、ベトナム全土および世界中の機械産業向けに幅広い製品を提供しており、特に日本、韓国、アメリカ、オーストラリアといった主要市場での取引に力を入れています。また、これらの市場への輸出経験も豊富です。    </h3>\n		<p>私たちの最大の強みは、学ぶこと、革新することに情熱を持ち、自信を持った若い労働力にあります。このチームは、常に安定した高品質の機械製品を多様に製造する能力を備えています。</p>		\n                <a href=\"https://youtu.be/vUCVqLmXSPM?si=NDYrSC8zPIUGPj3l\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    顧客\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    人事\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    年間注文数\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>私たちは、世界中からの注文と接続するためにAlibabaに店舗を開設し始めました。</p>		\n													<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />													\n													<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />													\n	    <h3>\n        私たちは、2030年までにベトナムの主要な機械加工企業の一つとして、国際市場に供給することを目指しています。将来的には、完成した機械製品を直接エンドユーザーに提供することを目標としています。    </h3>\n		<p>2026年までに達成する目標:</p>		\n                                            東アジア(日本、韓国など):交換用機械部品、オートバイおよび自動車のアクセサリー、水産業用のフィッティング、金型、その他の機械部品の輸出。\n                                        30%\n                                            ヨーロッパ(ドイツ、ブルガリア、オランダなど):自動車用ベアリングの治具および自動化機械の電気ボックス部品の生産。\n                                        10%\n                                            アメリカ合衆国:医療機器、光学機器、音響機器に関連する製品。\n                                        30%\n                                            オーストラリア:板金製品。\n                                        8%\n                                            ベトナム:小型自動化機械、オートバイおよび自動車のボルト、石油およびガス産業の製品。\n                                        20%\n                                            その他の市場と製品。\n                                        2%\n	    <h3>\n        私たちは複数の業界でサービスを提供しています。    </h3>\n		<p>私たちは常に顧客のデザイン要求を満たします。外観と寸法は、最も重要視している要素です。</p>		\n                                                    <h3><a href=\"https://fe2tech.com/ja/service/nc%e3%83%95%e3%83%a9%e3%82%a4%e3%82%b9%e5%8a%a0%e5%b7%a5%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">NCフライス加工サービス</a></h3>\n                                        <a href=\"https://fe2tech.com/ja/service/nc%e3%83%95%e3%83%a9%e3%82%a4%e3%82%b9%e5%8a%a0%e5%b7%a5%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/ja/service/cnc%e6%97%8b%e7%9b%a4%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">CNC旋盤サービス</a></h3>\n                                        <a href=\"https://fe2tech.com/ja/service/cnc%e6%97%8b%e7%9b%a4%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/ja/service/cnc%e3%83%84%e3%83%bc%e3%83%ab%e3%82%b0%e3%83%a9%e3%82%a4%e3%83%b3%e3%83%80%e3%83%bc%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">CNCツールグラインダーサービス</a></h3>\n                                        <a href=\"https://fe2tech.com/ja/service/cnc%e3%83%84%e3%83%bc%e3%83%ab%e3%82%b0%e3%83%a9%e3%82%a4%e3%83%b3%e3%83%80%e3%83%bc%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/ja/service/%e6%9d%bf%e9%87%91%e5%8a%a0%e5%b7%a5%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">板金加工サービス</a></h3>\n                                        <a href=\"https://fe2tech.com/ja/service/%e6%9d%bf%e9%87%91%e5%8a%a0%e5%b7%a5%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">Read more</a>\n    <a href=\"/services\">\n                その他のサービス\n    </a>\n            	        		<h3>質問がありますか?</h3>\n            	        		Call: 0968860386\n                    <h3>見積もりを取得するための連絡先:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"hidden\" name=\"_wpcf7_recaptcha_response\" value=\"\" />\n	<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"41\"/></p>\n</form>\n	    <h3>\n        私たちは簡単な作業手順を持っています。    </h3>\n		<p>私たちは常に品質と進捗において安心感を提供します。</p>		\n                                                    <h3>私たちを探す</h3>\n                                                    私たちは、各プロジェクトを総合的に取り扱う重要性を理解しています。\n                                                    <h3>私たちと接続する</h3>\n                                                    私たちが他のエージェンシーと異なる点は、カスタマイズされたソリューションを作成する専門知識にあります。\n                                                    <h3>私たちに支払う</h3>\n                                                    私たちは、各チームメンバーが自分自身の最高の姿を目指すことを奨励し、柔軟で協力的な環境を育んでいます。\n                                                    <h3>あなたの夢を実現する</h3>\n                                                    どのビジネスにも、革新と進歩を促す独自のソリューションがあります。\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        いつでもどんな助けが必要な場合でも、私たちにご連絡ください...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"hidden\" name=\"_wpcf7_recaptcha_response\" value=\"\" />\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"34\"/></p>\n</form>','ホーム','','inherit','closed','closed','','2982-revision-v1','','','2025-03-17 02:43:30','2025-03-17 02:43:30','',2982,'https://fe2tech.com/?p=3166',0,'revision','',0),(3167,1,'2025-03-17 02:43:30','2025-03-17 02:43:30','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        私たちは、ベトナム全土および世界中の機械産業向けに幅広い製品を提供しており、特に日本、韓国、アメリカ、オーストラリアといった主要市場での取引に力を入れています。また、これらの市場への輸出経験も豊富です。    </h3>\n		<p>私たちの最大の強みは、学ぶこと、革新することに情熱を持ち、自信を持った若い労働力にあります。このチームは、常に安定した高品質の機械製品を多様に製造する能力を備えています。</p>		\n                <a href=\"https://www.youtube.com/watch?v=vUCVqLmXSPM\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    顧客\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    人事\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    年間注文数\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>私たちは、世界中からの注文と接続するためにAlibabaに店舗を開設し始めました。</p>		\n													<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />													\n													<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />													\n	    <h3>\n        私たちは、2030年までにベトナムの主要な機械加工企業の一つとして、国際市場に供給することを目指しています。将来的には、完成した機械製品を直接エンドユーザーに提供することを目標としています。    </h3>\n		<p>2026年までに達成する目標:</p>		\n                                            東アジア(日本、韓国など):交換用機械部品、オートバイおよび自動車のアクセサリー、水産業用のフィッティング、金型、その他の機械部品の輸出。\n                                        30%\n                                            ヨーロッパ(ドイツ、ブルガリア、オランダなど):自動車用ベアリングの治具および自動化機械の電気ボックス部品の生産。\n                                        10%\n                                            アメリカ合衆国:医療機器、光学機器、音響機器に関連する製品。\n                                        30%\n                                            オーストラリア:板金製品。\n                                        8%\n                                            ベトナム:小型自動化機械、オートバイおよび自動車のボルト、石油およびガス産業の製品。\n                                        20%\n                                            その他の市場と製品。\n                                        2%\n	    <h3>\n        私たちは複数の業界でサービスを提供しています。    </h3>\n		<p>私たちは常に顧客のデザイン要求を満たします。外観と寸法は、最も重要視している要素です。</p>		\n                                                    <h3><a href=\"https://fe2tech.com/ja/service/nc%e3%83%95%e3%83%a9%e3%82%a4%e3%82%b9%e5%8a%a0%e5%b7%a5%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">NCフライス加工サービス</a></h3>\n                                        <a href=\"https://fe2tech.com/ja/service/nc%e3%83%95%e3%83%a9%e3%82%a4%e3%82%b9%e5%8a%a0%e5%b7%a5%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/ja/service/cnc%e6%97%8b%e7%9b%a4%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">CNC旋盤サービス</a></h3>\n                                        <a href=\"https://fe2tech.com/ja/service/cnc%e6%97%8b%e7%9b%a4%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/ja/service/cnc%e3%83%84%e3%83%bc%e3%83%ab%e3%82%b0%e3%83%a9%e3%82%a4%e3%83%b3%e3%83%80%e3%83%bc%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">CNCツールグラインダーサービス</a></h3>\n                                        <a href=\"https://fe2tech.com/ja/service/cnc%e3%83%84%e3%83%bc%e3%83%ab%e3%82%b0%e3%83%a9%e3%82%a4%e3%83%b3%e3%83%80%e3%83%bc%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/ja/service/%e6%9d%bf%e9%87%91%e5%8a%a0%e5%b7%a5%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">板金加工サービス</a></h3>\n                                        <a href=\"https://fe2tech.com/ja/service/%e6%9d%bf%e9%87%91%e5%8a%a0%e5%b7%a5%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">Read more</a>\n    <a href=\"/services\">\n                その他のサービス\n    </a>\n            	        		<h3>質問がありますか?</h3>\n            	        		Call: 0968860386\n                    <h3>見積もりを取得するための連絡先:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"hidden\" name=\"_wpcf7_recaptcha_response\" value=\"\" />\n	<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"30\"/></p>\n</form>\n	    <h3>\n        私たちは簡単な作業手順を持っています。    </h3>\n		<p>私たちは常に品質と進捗において安心感を提供します。</p>		\n                                                    <h3>私たちを探す</h3>\n                                                    私たちは、各プロジェクトを総合的に取り扱う重要性を理解しています。\n                                                    <h3>私たちと接続する</h3>\n                                                    私たちが他のエージェンシーと異なる点は、カスタマイズされたソリューションを作成する専門知識にあります。\n                                                    <h3>私たちに支払う</h3>\n                                                    私たちは、各チームメンバーが自分自身の最高の姿を目指すことを奨励し、柔軟で協力的な環境を育んでいます。\n                                                    <h3>あなたの夢を実現する</h3>\n                                                    どのビジネスにも、革新と進歩を促す独自のソリューションがあります。\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        いつでもどんな助けが必要な場合でも、私たちにご連絡ください...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"hidden\" name=\"_wpcf7_recaptcha_response\" value=\"\" />\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"35\"/></p>\n</form>','ホーム','','inherit','closed','closed','','2982-revision-v1','','','2025-03-17 02:43:30','2025-03-17 02:43:30','',2982,'https://fe2tech.com/?p=3167',0,'revision','',0),(3168,1,'2025-03-17 02:44:20','2025-03-17 02:44:20','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.    </h3>\n		<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>		\n                <a href=\"https://youtu.be/vUCVqLmXSPM?si=NDYrSC8zPIUGPj3lhttps://youtu.be/vUCVqLmXSPM?si=NDYrSC8zPIUGPj3l\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Customer\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Personnel\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Oders per year\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>		\n													<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />													\n													<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />													\n	    <h3>\n        We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.    </h3>\n		<p>Goals to achieve by 2026:</p>		\n                                            East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\n                                        30%\n                                            Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\n                                        10%\n                                            United States: Products related to medical instruments, optics, and audio equipment.\n                                        30%\n                                            Australia: Sheet metal products.\n                                        8%\n                                            Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\n                                        20%\n                                            Other markets and products.\n                                        2%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-milling-service/\">CNC Milling Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-milling-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-turning-service/\">CNC Turning Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-turning-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">CNC Tool Grinder Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/sheet-metal-service/\">Sheet Metal Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/sheet-metal-service/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"hidden\" name=\"_wpcf7_recaptcha_response\" value=\"\" />\n	<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"45\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We always provide a sense of security in terms of quality and progress.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"hidden\" name=\"_wpcf7_recaptcha_response\" value=\"\" />\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"220\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2025-03-17 02:44:20','2025-03-17 02:44:20','',9,'https://fe2tech.com/?p=3168',0,'revision','',0),(3169,1,'2025-03-17 02:44:23','2025-03-17 02:44:23','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.    </h3>\n		<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>		\n                <a href=\"https://youtu.be/vUCVqLmXSPM?si=NDYrSC8zPIUGPj3lhttps://youtu.be/vUCVqLmXSPM?si=NDYrSC8zPIUGPj3l\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Customer\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Personnel\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Oders per year\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>		\n													<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />													\n													<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />													\n	    <h3>\n        We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.    </h3>\n		<p>Goals to achieve by 2026:</p>		\n                                            East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\n                                        30%\n                                            Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\n                                        10%\n                                            United States: Products related to medical instruments, optics, and audio equipment.\n                                        30%\n                                            Australia: Sheet metal products.\n                                        8%\n                                            Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\n                                        20%\n                                            Other markets and products.\n                                        2%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-milling-service/\">CNC Milling Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-milling-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-turning-service/\">CNC Turning Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-turning-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">CNC Tool Grinder Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/sheet-metal-service/\">Sheet Metal Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/sheet-metal-service/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"hidden\" name=\"_wpcf7_recaptcha_response\" value=\"\" />\n	<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"45\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We always provide a sense of security in terms of quality and progress.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"hidden\" name=\"_wpcf7_recaptcha_response\" value=\"\" />\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"220\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2025-03-17 02:44:23','2025-03-17 02:44:23','',9,'https://fe2tech.com/?p=3169',0,'revision','',0),(3170,1,'2025-03-17 02:44:24','2025-03-17 02:44:24','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.    </h3>\n		<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>		\n                <a href=\"https://www.youtube.com/watch?v=vUCVqLmXSPM\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Customer\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Personnel\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Oders per year\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>		\n													<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />													\n													<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />													\n	    <h3>\n        We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.    </h3>\n		<p>Goals to achieve by 2026:</p>		\n                                            East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\n                                        30%\n                                            Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\n                                        10%\n                                            United States: Products related to medical instruments, optics, and audio equipment.\n                                        30%\n                                            Australia: Sheet metal products.\n                                        8%\n                                            Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\n                                        20%\n                                            Other markets and products.\n                                        2%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-milling-service/\">CNC Milling Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-milling-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-turning-service/\">CNC Turning Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-turning-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">CNC Tool Grinder Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/sheet-metal-service/\">Sheet Metal Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/sheet-metal-service/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"hidden\" name=\"_wpcf7_recaptcha_response\" value=\"\" />\n	<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"45\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We always provide a sense of security in terms of quality and progress.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"hidden\" name=\"_wpcf7_recaptcha_response\" value=\"\" />\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"70\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2025-03-17 02:44:24','2025-03-17 02:44:24','',9,'https://fe2tech.com/?p=3170',0,'revision','',0),(3171,1,'2025-03-17 02:44:28','2025-03-17 02:44:28','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        Chúng tôi cung cấp nhiều loại sản phẩm cho ngành công nghiệp cơ khí trên toàn Việt Nam và quốc tế, đặc biệt tại các thị trường trọng điểm như Nhật Bản, Hàn Quốc, Hoa Kỳ và Úc. Chúng tôi cũng có kinh nghiệm xuất khẩu đến các thị trường này.    </h3>\n		<p>Thế mạnh lớn nhất của chúng tôi nằm ở đội ngũ nhân lực trẻ trung, đam mê học hỏi, sáng tạo và tự tin, có khả năng sản xuất đa dạng các sản phẩm cơ khí với chất lượng luôn ổn định.</p>		\n                <a href=\"https://youtu.be/vUCVqLmXSPM?si=NDYrSC8zPIUGPj3l\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Khách hàng\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Nhân sự\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Số đơn hàng mỗi năm\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>Chúng tôi đã bắt đầu mở một cửa hàng trên Alibaba để kết nối với các đơn hàng từ khắp nơi trên thế giới.</p>		\n													<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />													\n													<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />													\n	    <h3>\n        Chúng tôi nỗ lực trở thành một trong những công ty chế biến cơ khí hàng đầu của Việt Nam, cung cấp ra thị trường quốc tế vào năm 2030. Trong tương lai, chúng tôi hướng đến việc sản xuất các sản phẩm máy móc hoàn chỉnh để giao trực tiếp đến người sử dụng cuối.    </h3>\n		<p>Mục tiêu đạt được vào năm 2026:</p>		\n                                            Đông Á (Nhật Bản, Hàn Quốc, v.v.): Xuất khẩu các linh kiện máy móc thay thế, phụ kiện xe máy và ô tô, phụ kiện ngành nước, khuôn mẫu và các bộ phận cơ khí khác.\n                                        30%\n                                            Châu Âu (Đức, Bulgaria, Hà Lan, v.v.): Sản xuất khuôn jig cho vòng bi ô tô và các bộ phận hộp điện cho máy móc tự động hóa.\n                                        10%\n                                            Hoa Kỳ: Các sản phẩm liên quan đến thiết bị y tế, quang học và thiết bị âm thanh.\n                                        30%\n                                            Úc: Sản phẩm kim loại tấm.\n                                        8%\n                                            Việt Nam: Máy tự động hóa nhỏ; bu lông xe máy và ô tô; sản phẩm trong ngành dầu khí.\n                                        20%\n                                            Các thị trường và sản phẩm khác.\n                                        2%\n	    <h3>\n        Chúng tôi cung cấp dịch vụ trong nhiều lĩnh vực.    </h3>\n		<p>Chúng tôi luôn đáp ứng yêu cầu thiết kế của khách hàng. Ngoại hình và kích thước là những yếu tố chúng tôi coi trọng nhất.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/vi/service/dich-vu-phay-cnc/\">Dịch vụ phay CNC</a></h3>\n                                        <a href=\"https://fe2tech.com/vi/service/dich-vu-phay-cnc/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/vi/service/dich-vu-tien-cnc/\">Dịch vụ tiện CNC</a></h3>\n                                        <a href=\"https://fe2tech.com/vi/service/dich-vu-tien-cnc/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/vi/service/dich-vu-mai-dung-cu-cnc/\">Dịch vụ mài dụng cụ CNC</a></h3>\n                                        <a href=\"https://fe2tech.com/vi/service/dich-vu-mai-dung-cu-cnc/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/vi/service/dich-vu-gia-cong-kim-loai-tam/\">Dịch vụ gia công kim loại tấm</a></h3>\n                                        <a href=\"https://fe2tech.com/vi/service/dich-vu-gia-cong-kim-loai-tam/\">Read more</a>\n    <a href=\"/services\">\n                Dịch vụ khác\n    </a>\n            	        		<h3>Có câu hỏi nào không?</h3>\n            	        		Call: 0968860386\n                    <h3>Liên hệ để nhận báo giá:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"hidden\" name=\"_wpcf7_recaptcha_response\" value=\"\" />\n	<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"48\"/></p>\n</form>\n	    <h3>\n        Chúng tôi có quy trình làm việc đơn giản.    </h3>\n		<p>Chúng tôi luôn mang đến cảm giác an tâm về chất lượng và tiến độ.</p>		\n                                                    <h3>Tìm chúng tôi</h3>\n                                                    Chúng tôi hiểu tầm quan trọng của việc xử lý mỗi dự án theo một cách tiếp cận toàn diện.\n                                                    <h3>Kết nối với chúng tôi</h3>\n                                                    Điều làm chúng tôi khác biệt so với các công ty khác là chuyên môn trong việc tạo ra các giải pháp tùy chỉnh.\n                                                    <h3>Thanh toán cho chúng tôi</h3>\n                                                    Chúng tôi khuyến khích mỗi thành viên trong đội ngũ trở thành phiên bản tốt nhất của chính mình, tạo ra một môi trường linh hoạt và hợp tác.\n                                                    <h3>Đạt được ước mơ của bạn</h3>\n                                                    Cốt lõi của mỗi doanh nghiệp là những giải pháp độc đáo, truyền cảm hứng cho sự đổi mới và phát triển.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        Liên hệ với chúng tôi bất cứ lúc nào nếu bạn cần sự giúp đỡ...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"hidden\" name=\"_wpcf7_recaptcha_response\" value=\"\" />\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"62\"/></p>\n</form>','Trang chủ','','inherit','closed','closed','','2973-revision-v1','','','2025-03-17 02:44:28','2025-03-17 02:44:28','',2973,'https://fe2tech.com/?p=3171',0,'revision','',0),(3172,1,'2025-03-17 02:44:29','2025-03-17 02:44:29','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        Chúng tôi cung cấp nhiều loại sản phẩm cho ngành công nghiệp cơ khí trên toàn Việt Nam và quốc tế, đặc biệt tại các thị trường trọng điểm như Nhật Bản, Hàn Quốc, Hoa Kỳ và Úc. Chúng tôi cũng có kinh nghiệm xuất khẩu đến các thị trường này.    </h3>\n		<p>Thế mạnh lớn nhất của chúng tôi nằm ở đội ngũ nhân lực trẻ trung, đam mê học hỏi, sáng tạo và tự tin, có khả năng sản xuất đa dạng các sản phẩm cơ khí với chất lượng luôn ổn định.</p>		\n                <a href=\"https://youtu.be/vUCVqLmXSPM?si=NDYrSC8zPIUGPj3l\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Khách hàng\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Nhân sự\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Số đơn hàng mỗi năm\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>Chúng tôi đã bắt đầu mở một cửa hàng trên Alibaba để kết nối với các đơn hàng từ khắp nơi trên thế giới.</p>		\n													<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />													\n													<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />													\n	    <h3>\n        Chúng tôi nỗ lực trở thành một trong những công ty chế biến cơ khí hàng đầu của Việt Nam, cung cấp ra thị trường quốc tế vào năm 2030. Trong tương lai, chúng tôi hướng đến việc sản xuất các sản phẩm máy móc hoàn chỉnh để giao trực tiếp đến người sử dụng cuối.    </h3>\n		<p>Mục tiêu đạt được vào năm 2026:</p>		\n                                            Đông Á (Nhật Bản, Hàn Quốc, v.v.): Xuất khẩu các linh kiện máy móc thay thế, phụ kiện xe máy và ô tô, phụ kiện ngành nước, khuôn mẫu và các bộ phận cơ khí khác.\n                                        30%\n                                            Châu Âu (Đức, Bulgaria, Hà Lan, v.v.): Sản xuất khuôn jig cho vòng bi ô tô và các bộ phận hộp điện cho máy móc tự động hóa.\n                                        10%\n                                            Hoa Kỳ: Các sản phẩm liên quan đến thiết bị y tế, quang học và thiết bị âm thanh.\n                                        30%\n                                            Úc: Sản phẩm kim loại tấm.\n                                        8%\n                                            Việt Nam: Máy tự động hóa nhỏ; bu lông xe máy và ô tô; sản phẩm trong ngành dầu khí.\n                                        20%\n                                            Các thị trường và sản phẩm khác.\n                                        2%\n	    <h3>\n        Chúng tôi cung cấp dịch vụ trong nhiều lĩnh vực.    </h3>\n		<p>Chúng tôi luôn đáp ứng yêu cầu thiết kế của khách hàng. Ngoại hình và kích thước là những yếu tố chúng tôi coi trọng nhất.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/vi/service/dich-vu-phay-cnc/\">Dịch vụ phay CNC</a></h3>\n                                        <a href=\"https://fe2tech.com/vi/service/dich-vu-phay-cnc/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/vi/service/dich-vu-tien-cnc/\">Dịch vụ tiện CNC</a></h3>\n                                        <a href=\"https://fe2tech.com/vi/service/dich-vu-tien-cnc/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/vi/service/dich-vu-mai-dung-cu-cnc/\">Dịch vụ mài dụng cụ CNC</a></h3>\n                                        <a href=\"https://fe2tech.com/vi/service/dich-vu-mai-dung-cu-cnc/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/vi/service/dich-vu-gia-cong-kim-loai-tam/\">Dịch vụ gia công kim loại tấm</a></h3>\n                                        <a href=\"https://fe2tech.com/vi/service/dich-vu-gia-cong-kim-loai-tam/\">Read more</a>\n    <a href=\"/services\">\n                Dịch vụ khác\n    </a>\n            	        		<h3>Có câu hỏi nào không?</h3>\n            	        		Call: 0968860386\n                    <h3>Liên hệ để nhận báo giá:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"hidden\" name=\"_wpcf7_recaptcha_response\" value=\"\" />\n	<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"48\"/></p>\n</form>\n	    <h3>\n        Chúng tôi có quy trình làm việc đơn giản.    </h3>\n		<p>Chúng tôi luôn mang đến cảm giác an tâm về chất lượng và tiến độ.</p>		\n                                                    <h3>Tìm chúng tôi</h3>\n                                                    Chúng tôi hiểu tầm quan trọng của việc xử lý mỗi dự án theo một cách tiếp cận toàn diện.\n                                                    <h3>Kết nối với chúng tôi</h3>\n                                                    Điều làm chúng tôi khác biệt so với các công ty khác là chuyên môn trong việc tạo ra các giải pháp tùy chỉnh.\n                                                    <h3>Thanh toán cho chúng tôi</h3>\n                                                    Chúng tôi khuyến khích mỗi thành viên trong đội ngũ trở thành phiên bản tốt nhất của chính mình, tạo ra một môi trường linh hoạt và hợp tác.\n                                                    <h3>Đạt được ước mơ của bạn</h3>\n                                                    Cốt lõi của mỗi doanh nghiệp là những giải pháp độc đáo, truyền cảm hứng cho sự đổi mới và phát triển.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        Liên hệ với chúng tôi bất cứ lúc nào nếu bạn cần sự giúp đỡ...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"hidden\" name=\"_wpcf7_recaptcha_response\" value=\"\" />\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"62\"/></p>\n</form>','Trang chủ','','inherit','closed','closed','','2973-revision-v1','','','2025-03-17 02:44:29','2025-03-17 02:44:29','',2973,'https://fe2tech.com/?p=3172',0,'revision','',0),(3173,1,'2025-03-17 02:44:30','2025-03-17 02:44:30','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        Chúng tôi cung cấp nhiều loại sản phẩm cho ngành công nghiệp cơ khí trên toàn Việt Nam và quốc tế, đặc biệt tại các thị trường trọng điểm như Nhật Bản, Hàn Quốc, Hoa Kỳ và Úc. Chúng tôi cũng có kinh nghiệm xuất khẩu đến các thị trường này.    </h3>\n		<p>Thế mạnh lớn nhất của chúng tôi nằm ở đội ngũ nhân lực trẻ trung, đam mê học hỏi, sáng tạo và tự tin, có khả năng sản xuất đa dạng các sản phẩm cơ khí với chất lượng luôn ổn định.</p>		\n                <a href=\"https://www.youtube.com/watch?v=vUCVqLmXSPM\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Khách hàng\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Nhân sự\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Số đơn hàng mỗi năm\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>Chúng tôi đã bắt đầu mở một cửa hàng trên Alibaba để kết nối với các đơn hàng từ khắp nơi trên thế giới.</p>		\n													<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />													\n													<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />													\n	    <h3>\n        Chúng tôi nỗ lực trở thành một trong những công ty chế biến cơ khí hàng đầu của Việt Nam, cung cấp ra thị trường quốc tế vào năm 2030. Trong tương lai, chúng tôi hướng đến việc sản xuất các sản phẩm máy móc hoàn chỉnh để giao trực tiếp đến người sử dụng cuối.    </h3>\n		<p>Mục tiêu đạt được vào năm 2026:</p>		\n                                            Đông Á (Nhật Bản, Hàn Quốc, v.v.): Xuất khẩu các linh kiện máy móc thay thế, phụ kiện xe máy và ô tô, phụ kiện ngành nước, khuôn mẫu và các bộ phận cơ khí khác.\n                                        30%\n                                            Châu Âu (Đức, Bulgaria, Hà Lan, v.v.): Sản xuất khuôn jig cho vòng bi ô tô và các bộ phận hộp điện cho máy móc tự động hóa.\n                                        10%\n                                            Hoa Kỳ: Các sản phẩm liên quan đến thiết bị y tế, quang học và thiết bị âm thanh.\n                                        30%\n                                            Úc: Sản phẩm kim loại tấm.\n                                        8%\n                                            Việt Nam: Máy tự động hóa nhỏ; bu lông xe máy và ô tô; sản phẩm trong ngành dầu khí.\n                                        20%\n                                            Các thị trường và sản phẩm khác.\n                                        2%\n	    <h3>\n        Chúng tôi cung cấp dịch vụ trong nhiều lĩnh vực.    </h3>\n		<p>Chúng tôi luôn đáp ứng yêu cầu thiết kế của khách hàng. Ngoại hình và kích thước là những yếu tố chúng tôi coi trọng nhất.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/vi/service/dich-vu-phay-cnc/\">Dịch vụ phay CNC</a></h3>\n                                        <a href=\"https://fe2tech.com/vi/service/dich-vu-phay-cnc/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/vi/service/dich-vu-tien-cnc/\">Dịch vụ tiện CNC</a></h3>\n                                        <a href=\"https://fe2tech.com/vi/service/dich-vu-tien-cnc/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/vi/service/dich-vu-mai-dung-cu-cnc/\">Dịch vụ mài dụng cụ CNC</a></h3>\n                                        <a href=\"https://fe2tech.com/vi/service/dich-vu-mai-dung-cu-cnc/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/vi/service/dich-vu-gia-cong-kim-loai-tam/\">Dịch vụ gia công kim loại tấm</a></h3>\n                                        <a href=\"https://fe2tech.com/vi/service/dich-vu-gia-cong-kim-loai-tam/\">Read more</a>\n    <a href=\"/services\">\n                Dịch vụ khác\n    </a>\n            	        		<h3>Có câu hỏi nào không?</h3>\n            	        		Call: 0968860386\n                    <h3>Liên hệ để nhận báo giá:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"hidden\" name=\"_wpcf7_recaptcha_response\" value=\"\" />\n	<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"16\"/></p>\n</form>\n	    <h3>\n        Chúng tôi có quy trình làm việc đơn giản.    </h3>\n		<p>Chúng tôi luôn mang đến cảm giác an tâm về chất lượng và tiến độ.</p>		\n                                                    <h3>Tìm chúng tôi</h3>\n                                                    Chúng tôi hiểu tầm quan trọng của việc xử lý mỗi dự án theo một cách tiếp cận toàn diện.\n                                                    <h3>Kết nối với chúng tôi</h3>\n                                                    Điều làm chúng tôi khác biệt so với các công ty khác là chuyên môn trong việc tạo ra các giải pháp tùy chỉnh.\n                                                    <h3>Thanh toán cho chúng tôi</h3>\n                                                    Chúng tôi khuyến khích mỗi thành viên trong đội ngũ trở thành phiên bản tốt nhất của chính mình, tạo ra một môi trường linh hoạt và hợp tác.\n                                                    <h3>Đạt được ước mơ của bạn</h3>\n                                                    Cốt lõi của mỗi doanh nghiệp là những giải pháp độc đáo, truyền cảm hứng cho sự đổi mới và phát triển.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        Liên hệ với chúng tôi bất cứ lúc nào nếu bạn cần sự giúp đỡ...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"hidden\" name=\"_wpcf7_recaptcha_response\" value=\"\" />\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"219\"/></p>\n</form>','Trang chủ','','inherit','closed','closed','','2973-revision-v1','','','2025-03-17 02:44:30','2025-03-17 02:44:30','',2973,'https://fe2tech.com/?p=3173',0,'revision','',0),(3174,1,'2025-03-17 02:47:42','2025-03-17 02:47:42','','20250222_154721','','inherit','open','closed','','20250222_154721','','','2025-03-17 02:47:42','2025-03-17 02:47:42','',0,'https://fe2tech.com/wp-content/uploads/2025/03/20250222_154721.jpg',0,'attachment','image/jpeg',0),(3175,1,'2025-03-17 02:47:44','2025-03-17 02:47:44','','DSC00846','','inherit','open','closed','','dsc00846','','','2025-03-17 02:47:44','2025-03-17 02:47:44','',0,'https://fe2tech.com/wp-content/uploads/2025/03/DSC00846.jpg',0,'attachment','image/jpeg',0),(3176,1,'2025-03-17 02:47:47','2025-03-17 02:47:47','','DSC00833 2','','inherit','open','closed','','dsc00833-2','','','2025-03-17 02:47:47','2025-03-17 02:47:47','',0,'https://fe2tech.com/wp-content/uploads/2025/03/DSC00833-2.jpg',0,'attachment','image/jpeg',0),(3177,1,'2025-03-17 02:47:49','2025-03-17 02:47:49','','DSC00842 2','','inherit','open','closed','','dsc00842-2','','','2025-03-17 02:47:49','2025-03-17 02:47:49','',0,'https://fe2tech.com/wp-content/uploads/2025/03/DSC00842-2.jpg',0,'attachment','image/jpeg',0),(3178,1,'2025-03-17 02:47:51','2025-03-17 02:47:51','','DSC00817 3','','inherit','open','closed','','dsc00817-3','','','2025-03-17 02:47:51','2025-03-17 02:47:51','',0,'https://fe2tech.com/wp-content/uploads/2025/03/DSC00817-3.jpg',0,'attachment','image/jpeg',0),(3180,1,'2025-03-17 02:54:11','2025-03-17 02:54:11','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.    </h3>\n		<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>		\n                <a href=\"https://www.youtube.com/watch?v=vUCVqLmXSPM\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Customer\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Personnel\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Oders per year\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>		\n													<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />													\n													<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />													\n	    <h3>\n        We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.    </h3>\n		<p>Goals to achieve by 2026:</p>		\n                                            East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\n                                        30%\n                                            Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\n                                        10%\n                                            United States: Products related to medical instruments, optics, and audio equipment.\n                                        30%\n                                            Australia: Sheet metal products.\n                                        8%\n                                            Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\n                                        20%\n                                            Other markets and products.\n                                        2%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-milling-service/\">CNC Milling Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-milling-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-turning-service/\">CNC Turning Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-turning-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">CNC Tool Grinder Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/sheet-metal-service/\">Sheet Metal Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/sheet-metal-service/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"hidden\" name=\"_wpcf7_recaptcha_response\" value=\"\" />\n	<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"45\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We always provide a sense of security in terms of quality and progress.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"hidden\" name=\"_wpcf7_recaptcha_response\" value=\"\" />\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"70\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2025-03-17 02:54:11','2025-03-17 02:54:11','',9,'https://fe2tech.com/?p=3180',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (3181,1,'2025-03-17 02:54:13','2025-03-17 02:54:13','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.    </h3>\n		<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>		\n                <a href=\"https://www.youtube.com/watch?v=vUCVqLmXSPM\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Customer\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Personnel\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Oders per year\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>		\n													<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />													\n													<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />													\n	    <h3>\n        We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.    </h3>\n		<p>Goals to achieve by 2026:</p>		\n                                            East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\n                                        30%\n                                            Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\n                                        10%\n                                            United States: Products related to medical instruments, optics, and audio equipment.\n                                        30%\n                                            Australia: Sheet metal products.\n                                        8%\n                                            Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\n                                        20%\n                                            Other markets and products.\n                                        2%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-milling-service/\">CNC Milling Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-milling-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-turning-service/\">CNC Turning Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-turning-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">CNC Tool Grinder Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/sheet-metal-service/\">Sheet Metal Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/sheet-metal-service/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"hidden\" name=\"_wpcf7_recaptcha_response\" value=\"\" />\n	<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"45\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We always provide a sense of security in terms of quality and progress.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"hidden\" name=\"_wpcf7_recaptcha_response\" value=\"\" />\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"70\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2025-03-17 02:54:13','2025-03-17 02:54:13','',9,'https://fe2tech.com/?p=3181',0,'revision','',0),(3182,1,'2025-03-17 02:54:14','2025-03-17 02:54:14','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        We provide a wide range of products for the mechanical industry across Vietnam and worldwide, especially in key markets such as Japan, South Korea, the United States, and Australia. We also have experience in exporting to these markets.    </h3>\n		<p>Our greatest strength lies in our youthful workforce, passionate about learning, innovation, and confidence, capable of producing a variety of mechanical products with consistently high quality.</p>		\n                <a href=\"https://www.youtube.com/watch?v=vUCVqLmXSPM\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Customer\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Personnel\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Oders per year\n														<a href=\"http://fe2tech.trustpass.alibaba.com/\" target=\"_blank\" rel=\"nofollow noopener\">\n							<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />								</a>\n		<p>We have started to open a store on Alibaba to connect with orders from around the world.</p>		\n													<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />													\n													<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />													\n	    <h3>\n        We strive to become one of Vietnam\'s leading mechanical processing companies, supplying the international market by 2030. In the future, we aim to produce a complete machinery product to deliver directly to end-users.    </h3>\n		<p>Goals to achieve by 2026:</p>		\n                                            East Asia (Japan, South Korea, etc.): Export of replacement machinery components, motorcycle and car accessories, water industry fittings, molds, and other mechanical parts.\n                                        30%\n                                            Europe (Germany, Bulgaria, the Netherlands, etc.): Production jigs for automotive bearings, and electrical box components for automation machinery.\n                                        10%\n                                            United States: Products related to medical instruments, optics, and audio equipment.\n                                        30%\n                                            Australia: Sheet metal products.\n                                        8%\n                                            Vietnam: Small automation machines; motorcycle and car bolts; products in the oil and gas industry.\n                                        20%\n                                            Other markets and products.\n                                        2%\n	    <h3>\n        We offer services across multiple sectors    </h3>\n		<p>We always meet our customers\' design requirements. Appearance and dimensions are what we consider most important.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-milling-service/\">CNC Milling Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-milling-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-turning-service/\">CNC Turning Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-turning-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">CNC Tool Grinder Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/cnc-tool-grinder-service/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/service/sheet-metal-service/\">Sheet Metal Service</a></h3>\n                                        <a href=\"https://fe2tech.com/service/sheet-metal-service/\">Read more</a>\n    <a href=\"/services\">\n                More services\n    </a>\n            	        		<h3>Have any questions?</h3>\n            	        		Call: 0968860386\n                    <h3>Contact for getting quote:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"hidden\" name=\"_wpcf7_recaptcha_response\" value=\"\" />\n	<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"98\"/></p>\n</form>\n	    <h3>\n        We have some easy working procedure    </h3>\n		<p>We always provide a sense of security in terms of quality and progress.</p>		\n                                                    <h3>Find us</h3>\n                                                    We understand the importance of handling each project with a holistic approach.\n                                                    <h3>Connect with us</h3>\n                                                    What sets us apart from other agencies is our expertise in creating tailored solutions.\n                                                    <h3>Payment us</h3>\n                                                    We encourage every team member to be their best self, fostering a flexible and collaborative environment.\n                                                    <h3>Get your dream</h3>\n                                                    At its core, every business has unique solutions that inspire innovation and progress.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        Contact us for any kind of help at any time...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"hidden\" name=\"_wpcf7_recaptcha_response\" value=\"\" />\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"138\"/></p>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2025-03-17 02:54:14','2025-03-17 02:54:14','',9,'https://fe2tech.com/?p=3182',0,'revision','',0),(3183,1,'2025-03-17 02:55:41','2025-03-17 02:55:41','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        Chúng tôi cung cấp nhiều loại sản phẩm cho ngành công nghiệp cơ khí trên toàn Việt Nam và quốc tế, đặc biệt tại các thị trường trọng điểm như Nhật Bản, Hàn Quốc, Hoa Kỳ và Úc. Chúng tôi cũng có kinh nghiệm xuất khẩu đến các thị trường này.    </h3>\n		<p>Thế mạnh lớn nhất của chúng tôi nằm ở đội ngũ nhân lực trẻ trung, đam mê học hỏi, sáng tạo và tự tin, có khả năng sản xuất đa dạng các sản phẩm cơ khí với chất lượng luôn ổn định.</p>		\n                <a href=\"https://www.youtube.com/watch?v=vUCVqLmXSPM\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Khách hàng\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Nhân sự\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Số đơn hàng mỗi năm\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>Chúng tôi đã bắt đầu mở một cửa hàng trên Alibaba để kết nối với các đơn hàng từ khắp nơi trên thế giới.</p>		\n													<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />													\n													<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />													\n	    <h3>\n        Chúng tôi nỗ lực trở thành một trong những công ty chế biến cơ khí hàng đầu của Việt Nam, cung cấp ra thị trường quốc tế vào năm 2030. Trong tương lai, chúng tôi hướng đến việc sản xuất các sản phẩm máy móc hoàn chỉnh để giao trực tiếp đến người sử dụng cuối.    </h3>\n		<p>Mục tiêu đạt được vào năm 2026:</p>		\n                                            Đông Á (Nhật Bản, Hàn Quốc, v.v.): Xuất khẩu các linh kiện máy móc thay thế, phụ kiện xe máy và ô tô, phụ kiện ngành nước, khuôn mẫu và các bộ phận cơ khí khác.\n                                        30%\n                                            Châu Âu (Đức, Bulgaria, Hà Lan, v.v.): Sản xuất khuôn jig cho vòng bi ô tô và các bộ phận hộp điện cho máy móc tự động hóa.\n                                        10%\n                                            Hoa Kỳ: Các sản phẩm liên quan đến thiết bị y tế, quang học và thiết bị âm thanh.\n                                        30%\n                                            Úc: Sản phẩm kim loại tấm.\n                                        8%\n                                            Việt Nam: Máy tự động hóa nhỏ; bu lông xe máy và ô tô; sản phẩm trong ngành dầu khí.\n                                        20%\n                                            Các thị trường và sản phẩm khác.\n                                        2%\n	    <h3>\n        Chúng tôi cung cấp dịch vụ trong nhiều lĩnh vực.    </h3>\n		<p>Chúng tôi luôn đáp ứng yêu cầu thiết kế của khách hàng. Ngoại hình và kích thước là những yếu tố chúng tôi coi trọng nhất.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/vi/service/dich-vu-phay-cnc/\">Dịch vụ phay CNC</a></h3>\n                                        <a href=\"https://fe2tech.com/vi/service/dich-vu-phay-cnc/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/vi/service/dich-vu-tien-cnc/\">Dịch vụ tiện CNC</a></h3>\n                                        <a href=\"https://fe2tech.com/vi/service/dich-vu-tien-cnc/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/vi/service/dich-vu-mai-dung-cu-cnc/\">Dịch vụ mài dụng cụ CNC</a></h3>\n                                        <a href=\"https://fe2tech.com/vi/service/dich-vu-mai-dung-cu-cnc/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/vi/service/dich-vu-gia-cong-kim-loai-tam/\">Dịch vụ gia công kim loại tấm</a></h3>\n                                        <a href=\"https://fe2tech.com/vi/service/dich-vu-gia-cong-kim-loai-tam/\">Read more</a>\n    <a href=\"/services\">\n                Dịch vụ khác\n    </a>\n            	        		<h3>Có câu hỏi nào không?</h3>\n            	        		Call: 0968860386\n                    <h3>Liên hệ để nhận báo giá:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"hidden\" name=\"_wpcf7_recaptcha_response\" value=\"\" />\n	<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"16\"/></p>\n</form>\n	    <h3>\n        Chúng tôi có quy trình làm việc đơn giản.    </h3>\n		<p>Chúng tôi luôn mang đến cảm giác an tâm về chất lượng và tiến độ.</p>		\n                                                    <h3>Tìm chúng tôi</h3>\n                                                    Chúng tôi hiểu tầm quan trọng của việc xử lý mỗi dự án theo một cách tiếp cận toàn diện.\n                                                    <h3>Kết nối với chúng tôi</h3>\n                                                    Điều làm chúng tôi khác biệt so với các công ty khác là chuyên môn trong việc tạo ra các giải pháp tùy chỉnh.\n                                                    <h3>Thanh toán cho chúng tôi</h3>\n                                                    Chúng tôi khuyến khích mỗi thành viên trong đội ngũ trở thành phiên bản tốt nhất của chính mình, tạo ra một môi trường linh hoạt và hợp tác.\n                                                    <h3>Đạt được ước mơ của bạn</h3>\n                                                    Cốt lõi của mỗi doanh nghiệp là những giải pháp độc đáo, truyền cảm hứng cho sự đổi mới và phát triển.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        Liên hệ với chúng tôi bất cứ lúc nào nếu bạn cần sự giúp đỡ...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"hidden\" name=\"_wpcf7_recaptcha_response\" value=\"\" />\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"219\"/></p>\n</form>','Trang chủ','','inherit','closed','closed','','2973-revision-v1','','','2025-03-17 02:55:41','2025-03-17 02:55:41','',2973,'https://fe2tech.com/?p=3183',0,'revision','',0),(3184,1,'2025-03-17 02:55:43','2025-03-17 02:55:43','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        Chúng tôi cung cấp nhiều loại sản phẩm cho ngành công nghiệp cơ khí trên toàn Việt Nam và quốc tế, đặc biệt tại các thị trường trọng điểm như Nhật Bản, Hàn Quốc, Hoa Kỳ và Úc. Chúng tôi cũng có kinh nghiệm xuất khẩu đến các thị trường này.    </h3>\n		<p>Thế mạnh lớn nhất của chúng tôi nằm ở đội ngũ nhân lực trẻ trung, đam mê học hỏi, sáng tạo và tự tin, có khả năng sản xuất đa dạng các sản phẩm cơ khí với chất lượng luôn ổn định.</p>		\n                <a href=\"https://www.youtube.com/watch?v=vUCVqLmXSPM\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Khách hàng\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Nhân sự\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Số đơn hàng mỗi năm\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>Chúng tôi đã bắt đầu mở một cửa hàng trên Alibaba để kết nối với các đơn hàng từ khắp nơi trên thế giới.</p>		\n													<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />													\n													<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />													\n	    <h3>\n        Chúng tôi nỗ lực trở thành một trong những công ty chế biến cơ khí hàng đầu của Việt Nam, cung cấp ra thị trường quốc tế vào năm 2030. Trong tương lai, chúng tôi hướng đến việc sản xuất các sản phẩm máy móc hoàn chỉnh để giao trực tiếp đến người sử dụng cuối.    </h3>\n		<p>Mục tiêu đạt được vào năm 2026:</p>		\n                                            Đông Á (Nhật Bản, Hàn Quốc, v.v.): Xuất khẩu các linh kiện máy móc thay thế, phụ kiện xe máy và ô tô, phụ kiện ngành nước, khuôn mẫu và các bộ phận cơ khí khác.\n                                        30%\n                                            Châu Âu (Đức, Bulgaria, Hà Lan, v.v.): Sản xuất khuôn jig cho vòng bi ô tô và các bộ phận hộp điện cho máy móc tự động hóa.\n                                        10%\n                                            Hoa Kỳ: Các sản phẩm liên quan đến thiết bị y tế, quang học và thiết bị âm thanh.\n                                        30%\n                                            Úc: Sản phẩm kim loại tấm.\n                                        8%\n                                            Việt Nam: Máy tự động hóa nhỏ; bu lông xe máy và ô tô; sản phẩm trong ngành dầu khí.\n                                        20%\n                                            Các thị trường và sản phẩm khác.\n                                        2%\n	    <h3>\n        Chúng tôi cung cấp dịch vụ trong nhiều lĩnh vực.    </h3>\n		<p>Chúng tôi luôn đáp ứng yêu cầu thiết kế của khách hàng. Ngoại hình và kích thước là những yếu tố chúng tôi coi trọng nhất.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/vi/service/dich-vu-phay-cnc/\">Dịch vụ phay CNC</a></h3>\n                                        <a href=\"https://fe2tech.com/vi/service/dich-vu-phay-cnc/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/vi/service/dich-vu-tien-cnc/\">Dịch vụ tiện CNC</a></h3>\n                                        <a href=\"https://fe2tech.com/vi/service/dich-vu-tien-cnc/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/vi/service/dich-vu-mai-dung-cu-cnc/\">Dịch vụ mài dụng cụ CNC</a></h3>\n                                        <a href=\"https://fe2tech.com/vi/service/dich-vu-mai-dung-cu-cnc/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/vi/service/dich-vu-gia-cong-kim-loai-tam/\">Dịch vụ gia công kim loại tấm</a></h3>\n                                        <a href=\"https://fe2tech.com/vi/service/dich-vu-gia-cong-kim-loai-tam/\">Read more</a>\n    <a href=\"/services\">\n                Dịch vụ khác\n    </a>\n            	        		<h3>Có câu hỏi nào không?</h3>\n            	        		Call: 0968860386\n                    <h3>Liên hệ để nhận báo giá:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"hidden\" name=\"_wpcf7_recaptcha_response\" value=\"\" />\n	<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"16\"/></p>\n</form>\n	    <h3>\n        Chúng tôi có quy trình làm việc đơn giản.    </h3>\n		<p>Chúng tôi luôn mang đến cảm giác an tâm về chất lượng và tiến độ.</p>		\n                                                    <h3>Tìm chúng tôi</h3>\n                                                    Chúng tôi hiểu tầm quan trọng của việc xử lý mỗi dự án theo một cách tiếp cận toàn diện.\n                                                    <h3>Kết nối với chúng tôi</h3>\n                                                    Điều làm chúng tôi khác biệt so với các công ty khác là chuyên môn trong việc tạo ra các giải pháp tùy chỉnh.\n                                                    <h3>Thanh toán cho chúng tôi</h3>\n                                                    Chúng tôi khuyến khích mỗi thành viên trong đội ngũ trở thành phiên bản tốt nhất của chính mình, tạo ra một môi trường linh hoạt và hợp tác.\n                                                    <h3>Đạt được ước mơ của bạn</h3>\n                                                    Cốt lõi của mỗi doanh nghiệp là những giải pháp độc đáo, truyền cảm hứng cho sự đổi mới và phát triển.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        Liên hệ với chúng tôi bất cứ lúc nào nếu bạn cần sự giúp đỡ...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"hidden\" name=\"_wpcf7_recaptcha_response\" value=\"\" />\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"219\"/></p>\n</form>','Trang chủ','','inherit','closed','closed','','2973-revision-v1','','','2025-03-17 02:55:43','2025-03-17 02:55:43','',2973,'https://fe2tech.com/?p=3184',0,'revision','',0),(3185,1,'2025-03-17 02:55:43','2025-03-17 02:55:43','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        Chúng tôi cung cấp nhiều loại sản phẩm cho ngành công nghiệp cơ khí trên toàn Việt Nam và quốc tế, đặc biệt tại các thị trường trọng điểm như Nhật Bản, Hàn Quốc, Hoa Kỳ và Úc. Chúng tôi cũng có kinh nghiệm xuất khẩu đến các thị trường này.    </h3>\n		<p>Thế mạnh lớn nhất của chúng tôi nằm ở đội ngũ nhân lực trẻ trung, đam mê học hỏi, sáng tạo và tự tin, có khả năng sản xuất đa dạng các sản phẩm cơ khí với chất lượng luôn ổn định.</p>		\n                <a href=\"https://www.youtube.com/watch?v=vUCVqLmXSPM\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Khách hàng\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Nhân sự\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    Số đơn hàng mỗi năm\n														<a href=\"http://fe2tech.trustpass.alibaba.com/\" target=\"_blank\" rel=\"nofollow noopener\">\n							<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />								</a>\n		<p>Chúng tôi đã bắt đầu mở một cửa hàng trên Alibaba để kết nối với các đơn hàng từ khắp nơi trên thế giới.</p>		\n													<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />													\n													<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />													\n	    <h3>\n        Chúng tôi nỗ lực trở thành một trong những công ty chế biến cơ khí hàng đầu của Việt Nam, cung cấp ra thị trường quốc tế vào năm 2030. Trong tương lai, chúng tôi hướng đến việc sản xuất các sản phẩm máy móc hoàn chỉnh để giao trực tiếp đến người sử dụng cuối.    </h3>\n		<p>Mục tiêu đạt được vào năm 2026:</p>		\n                                            Đông Á (Nhật Bản, Hàn Quốc, v.v.): Xuất khẩu các linh kiện máy móc thay thế, phụ kiện xe máy và ô tô, phụ kiện ngành nước, khuôn mẫu và các bộ phận cơ khí khác.\n                                        30%\n                                            Châu Âu (Đức, Bulgaria, Hà Lan, v.v.): Sản xuất khuôn jig cho vòng bi ô tô và các bộ phận hộp điện cho máy móc tự động hóa.\n                                        10%\n                                            Hoa Kỳ: Các sản phẩm liên quan đến thiết bị y tế, quang học và thiết bị âm thanh.\n                                        30%\n                                            Úc: Sản phẩm kim loại tấm.\n                                        8%\n                                            Việt Nam: Máy tự động hóa nhỏ; bu lông xe máy và ô tô; sản phẩm trong ngành dầu khí.\n                                        20%\n                                            Các thị trường và sản phẩm khác.\n                                        2%\n	    <h3>\n        Chúng tôi cung cấp dịch vụ trong nhiều lĩnh vực.    </h3>\n		<p>Chúng tôi luôn đáp ứng yêu cầu thiết kế của khách hàng. Ngoại hình và kích thước là những yếu tố chúng tôi coi trọng nhất.</p>		\n                                                    <h3><a href=\"https://fe2tech.com/vi/service/dich-vu-phay-cnc/\">Dịch vụ phay CNC</a></h3>\n                                        <a href=\"https://fe2tech.com/vi/service/dich-vu-phay-cnc/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/vi/service/dich-vu-tien-cnc/\">Dịch vụ tiện CNC</a></h3>\n                                        <a href=\"https://fe2tech.com/vi/service/dich-vu-tien-cnc/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/vi/service/dich-vu-mai-dung-cu-cnc/\">Dịch vụ mài dụng cụ CNC</a></h3>\n                                        <a href=\"https://fe2tech.com/vi/service/dich-vu-mai-dung-cu-cnc/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/vi/service/dich-vu-gia-cong-kim-loai-tam/\">Dịch vụ gia công kim loại tấm</a></h3>\n                                        <a href=\"https://fe2tech.com/vi/service/dich-vu-gia-cong-kim-loai-tam/\">Read more</a>\n    <a href=\"/services\">\n                Dịch vụ khác\n    </a>\n            	        		<h3>Có câu hỏi nào không?</h3>\n            	        		Call: 0968860386\n                    <h3>Liên hệ để nhận báo giá:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"hidden\" name=\"_wpcf7_recaptcha_response\" value=\"\" />\n	<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"12\"/></p>\n</form>\n	    <h3>\n        Chúng tôi có quy trình làm việc đơn giản.    </h3>\n		<p>Chúng tôi luôn mang đến cảm giác an tâm về chất lượng và tiến độ.</p>		\n                                                    <h3>Tìm chúng tôi</h3>\n                                                    Chúng tôi hiểu tầm quan trọng của việc xử lý mỗi dự án theo một cách tiếp cận toàn diện.\n                                                    <h3>Kết nối với chúng tôi</h3>\n                                                    Điều làm chúng tôi khác biệt so với các công ty khác là chuyên môn trong việc tạo ra các giải pháp tùy chỉnh.\n                                                    <h3>Thanh toán cho chúng tôi</h3>\n                                                    Chúng tôi khuyến khích mỗi thành viên trong đội ngũ trở thành phiên bản tốt nhất của chính mình, tạo ra một môi trường linh hoạt và hợp tác.\n                                                    <h3>Đạt được ước mơ của bạn</h3>\n                                                    Cốt lõi của mỗi doanh nghiệp là những giải pháp độc đáo, truyền cảm hứng cho sự đổi mới và phát triển.\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        Liên hệ với chúng tôi bất cứ lúc nào nếu bạn cần sự giúp đỡ...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"hidden\" name=\"_wpcf7_recaptcha_response\" value=\"\" />\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"230\"/></p>\n</form>','Trang chủ','','inherit','closed','closed','','2973-revision-v1','','','2025-03-17 02:55:43','2025-03-17 02:55:43','',2973,'https://fe2tech.com/?p=3185',0,'revision','',0),(3186,1,'2025-03-17 02:55:53','2025-03-17 02:55:53','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        私たちは、ベトナム全土および世界中の機械産業向けに幅広い製品を提供しており、特に日本、韓国、アメリカ、オーストラリアといった主要市場での取引に力を入れています。また、これらの市場への輸出経験も豊富です。    </h3>\n		<p>私たちの最大の強みは、学ぶこと、革新することに情熱を持ち、自信を持った若い労働力にあります。このチームは、常に安定した高品質の機械製品を多様に製造する能力を備えています。</p>		\n                <a href=\"https://www.youtube.com/watch?v=vUCVqLmXSPM\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    顧客\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    人事\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    年間注文数\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>私たちは、世界中からの注文と接続するためにAlibabaに店舗を開設し始めました。</p>		\n													<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />													\n													<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />													\n	    <h3>\n        私たちは、2030年までにベトナムの主要な機械加工企業の一つとして、国際市場に供給することを目指しています。将来的には、完成した機械製品を直接エンドユーザーに提供することを目標としています。    </h3>\n		<p>2026年までに達成する目標:</p>		\n                                            東アジア(日本、韓国など):交換用機械部品、オートバイおよび自動車のアクセサリー、水産業用のフィッティング、金型、その他の機械部品の輸出。\n                                        30%\n                                            ヨーロッパ(ドイツ、ブルガリア、オランダなど):自動車用ベアリングの治具および自動化機械の電気ボックス部品の生産。\n                                        10%\n                                            アメリカ合衆国:医療機器、光学機器、音響機器に関連する製品。\n                                        30%\n                                            オーストラリア:板金製品。\n                                        8%\n                                            ベトナム:小型自動化機械、オートバイおよび自動車のボルト、石油およびガス産業の製品。\n                                        20%\n                                            その他の市場と製品。\n                                        2%\n	    <h3>\n        私たちは複数の業界でサービスを提供しています。    </h3>\n		<p>私たちは常に顧客のデザイン要求を満たします。外観と寸法は、最も重要視している要素です。</p>		\n                                                    <h3><a href=\"https://fe2tech.com/ja/service/nc%e3%83%95%e3%83%a9%e3%82%a4%e3%82%b9%e5%8a%a0%e5%b7%a5%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">NCフライス加工サービス</a></h3>\n                                        <a href=\"https://fe2tech.com/ja/service/nc%e3%83%95%e3%83%a9%e3%82%a4%e3%82%b9%e5%8a%a0%e5%b7%a5%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/ja/service/cnc%e6%97%8b%e7%9b%a4%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">CNC旋盤サービス</a></h3>\n                                        <a href=\"https://fe2tech.com/ja/service/cnc%e6%97%8b%e7%9b%a4%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/ja/service/cnc%e3%83%84%e3%83%bc%e3%83%ab%e3%82%b0%e3%83%a9%e3%82%a4%e3%83%b3%e3%83%80%e3%83%bc%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">CNCツールグラインダーサービス</a></h3>\n                                        <a href=\"https://fe2tech.com/ja/service/cnc%e3%83%84%e3%83%bc%e3%83%ab%e3%82%b0%e3%83%a9%e3%82%a4%e3%83%b3%e3%83%80%e3%83%bc%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/ja/service/%e6%9d%bf%e9%87%91%e5%8a%a0%e5%b7%a5%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">板金加工サービス</a></h3>\n                                        <a href=\"https://fe2tech.com/ja/service/%e6%9d%bf%e9%87%91%e5%8a%a0%e5%b7%a5%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">Read more</a>\n    <a href=\"/services\">\n                その他のサービス\n    </a>\n            	        		<h3>質問がありますか?</h3>\n            	        		Call: 0968860386\n                    <h3>見積もりを取得するための連絡先:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"hidden\" name=\"_wpcf7_recaptcha_response\" value=\"\" />\n	<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"30\"/></p>\n</form>\n	    <h3>\n        私たちは簡単な作業手順を持っています。    </h3>\n		<p>私たちは常に品質と進捗において安心感を提供します。</p>		\n                                                    <h3>私たちを探す</h3>\n                                                    私たちは、各プロジェクトを総合的に取り扱う重要性を理解しています。\n                                                    <h3>私たちと接続する</h3>\n                                                    私たちが他のエージェンシーと異なる点は、カスタマイズされたソリューションを作成する専門知識にあります。\n                                                    <h3>私たちに支払う</h3>\n                                                    私たちは、各チームメンバーが自分自身の最高の姿を目指すことを奨励し、柔軟で協力的な環境を育んでいます。\n                                                    <h3>あなたの夢を実現する</h3>\n                                                    どのビジネスにも、革新と進歩を促す独自のソリューションがあります。\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        いつでもどんな助けが必要な場合でも、私たちにご連絡ください...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"hidden\" name=\"_wpcf7_recaptcha_response\" value=\"\" />\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"35\"/></p>\n</form>','ホーム','','inherit','closed','closed','','2982-revision-v1','','','2025-03-17 02:55:53','2025-03-17 02:55:53','',2982,'https://fe2tech.com/?p=3186',0,'revision','',0),(3187,1,'2025-03-17 02:55:54','2025-03-17 02:55:54','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        私たちは、ベトナム全土および世界中の機械産業向けに幅広い製品を提供しており、特に日本、韓国、アメリカ、オーストラリアといった主要市場での取引に力を入れています。また、これらの市場への輸出経験も豊富です。    </h3>\n		<p>私たちの最大の強みは、学ぶこと、革新することに情熱を持ち、自信を持った若い労働力にあります。このチームは、常に安定した高品質の機械製品を多様に製造する能力を備えています。</p>		\n                <a href=\"https://www.youtube.com/watch?v=vUCVqLmXSPM\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    顧客\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    人事\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    年間注文数\n													<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />													\n		<p>私たちは、世界中からの注文と接続するためにAlibabaに店舗を開設し始めました。</p>		\n													<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />													\n													<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />													\n	    <h3>\n        私たちは、2030年までにベトナムの主要な機械加工企業の一つとして、国際市場に供給することを目指しています。将来的には、完成した機械製品を直接エンドユーザーに提供することを目標としています。    </h3>\n		<p>2026年までに達成する目標:</p>		\n                                            東アジア(日本、韓国など):交換用機械部品、オートバイおよび自動車のアクセサリー、水産業用のフィッティング、金型、その他の機械部品の輸出。\n                                        30%\n                                            ヨーロッパ(ドイツ、ブルガリア、オランダなど):自動車用ベアリングの治具および自動化機械の電気ボックス部品の生産。\n                                        10%\n                                            アメリカ合衆国:医療機器、光学機器、音響機器に関連する製品。\n                                        30%\n                                            オーストラリア:板金製品。\n                                        8%\n                                            ベトナム:小型自動化機械、オートバイおよび自動車のボルト、石油およびガス産業の製品。\n                                        20%\n                                            その他の市場と製品。\n                                        2%\n	    <h3>\n        私たちは複数の業界でサービスを提供しています。    </h3>\n		<p>私たちは常に顧客のデザイン要求を満たします。外観と寸法は、最も重要視している要素です。</p>		\n                                                    <h3><a href=\"https://fe2tech.com/ja/service/nc%e3%83%95%e3%83%a9%e3%82%a4%e3%82%b9%e5%8a%a0%e5%b7%a5%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">NCフライス加工サービス</a></h3>\n                                        <a href=\"https://fe2tech.com/ja/service/nc%e3%83%95%e3%83%a9%e3%82%a4%e3%82%b9%e5%8a%a0%e5%b7%a5%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/ja/service/cnc%e6%97%8b%e7%9b%a4%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">CNC旋盤サービス</a></h3>\n                                        <a href=\"https://fe2tech.com/ja/service/cnc%e6%97%8b%e7%9b%a4%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/ja/service/cnc%e3%83%84%e3%83%bc%e3%83%ab%e3%82%b0%e3%83%a9%e3%82%a4%e3%83%b3%e3%83%80%e3%83%bc%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">CNCツールグラインダーサービス</a></h3>\n                                        <a href=\"https://fe2tech.com/ja/service/cnc%e3%83%84%e3%83%bc%e3%83%ab%e3%82%b0%e3%83%a9%e3%82%a4%e3%83%b3%e3%83%80%e3%83%bc%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/ja/service/%e6%9d%bf%e9%87%91%e5%8a%a0%e5%b7%a5%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">板金加工サービス</a></h3>\n                                        <a href=\"https://fe2tech.com/ja/service/%e6%9d%bf%e9%87%91%e5%8a%a0%e5%b7%a5%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">Read more</a>\n    <a href=\"/services\">\n                その他のサービス\n    </a>\n            	        		<h3>質問がありますか?</h3>\n            	        		Call: 0968860386\n                    <h3>見積もりを取得するための連絡先:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"hidden\" name=\"_wpcf7_recaptcha_response\" value=\"\" />\n	<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"30\"/></p>\n</form>\n	    <h3>\n        私たちは簡単な作業手順を持っています。    </h3>\n		<p>私たちは常に品質と進捗において安心感を提供します。</p>		\n                                                    <h3>私たちを探す</h3>\n                                                    私たちは、各プロジェクトを総合的に取り扱う重要性を理解しています。\n                                                    <h3>私たちと接続する</h3>\n                                                    私たちが他のエージェンシーと異なる点は、カスタマイズされたソリューションを作成する専門知識にあります。\n                                                    <h3>私たちに支払う</h3>\n                                                    私たちは、各チームメンバーが自分自身の最高の姿を目指すことを奨励し、柔軟で協力的な環境を育んでいます。\n                                                    <h3>あなたの夢を実現する</h3>\n                                                    どのビジネスにも、革新と進歩を促す独自のソリューションがあります。\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        いつでもどんな助けが必要な場合でも、私たちにご連絡ください...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"hidden\" name=\"_wpcf7_recaptcha_response\" value=\"\" />\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"35\"/></p>\n</form>','ホーム','','inherit','closed','closed','','2982-revision-v1','','','2025-03-17 02:55:54','2025-03-17 02:55:54','',2982,'https://fe2tech.com/?p=3187',0,'revision','',0),(3188,1,'2025-03-17 02:55:54','2025-03-17 02:55:54','[rev_slider alias=\"home-1\"][/rev_slider]		\n	    <h3>\n        私たちは、ベトナム全土および世界中の機械産業向けに幅広い製品を提供しており、特に日本、韓国、アメリカ、オーストラリアといった主要市場での取引に力を入れています。また、これらの市場への輸出経験も豊富です。    </h3>\n		<p>私たちの最大の強みは、学ぶこと、革新することに情熱を持ち、自信を持った若い労働力にあります。このチームは、常に安定した高品質の機械製品を多様に製造する能力を備えています。</p>		\n                <a href=\"https://www.youtube.com/watch?v=vUCVqLmXSPM\">\n        </a>\n													<img width=\"150\" height=\"75\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature.png\" alt=\"\" />													\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    顧客\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    人事\n            <img width=\"48\" height=\"48\" src=\"https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png\" alt=\"\" decoding=\"async\" />        \n            1\n            +\n                    年間注文数\n														<a href=\"http://fe2tech.trustpass.alibaba.com/\" target=\"_blank\" rel=\"nofollow noopener\">\n							<img width=\"600\" height=\"400\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg\" alt=\"\" />								</a>\n		<p>私たちは、世界中からの注文と接続するためにAlibabaに店舗を開設し始めました。</p>		\n													<img width=\"2000\" height=\"2000\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png\" alt=\"\" />													\n													<img width=\"1280\" height=\"1026\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg\" alt=\"\" />													\n	    <h3>\n        私たちは、2030年までにベトナムの主要な機械加工企業の一つとして、国際市場に供給することを目指しています。将来的には、完成した機械製品を直接エンドユーザーに提供することを目標としています。    </h3>\n		<p>2026年までに達成する目標:</p>		\n                                            東アジア(日本、韓国など):交換用機械部品、オートバイおよび自動車のアクセサリー、水産業用のフィッティング、金型、その他の機械部品の輸出。\n                                        30%\n                                            ヨーロッパ(ドイツ、ブルガリア、オランダなど):自動車用ベアリングの治具および自動化機械の電気ボックス部品の生産。\n                                        10%\n                                            アメリカ合衆国:医療機器、光学機器、音響機器に関連する製品。\n                                        30%\n                                            オーストラリア:板金製品。\n                                        8%\n                                            ベトナム:小型自動化機械、オートバイおよび自動車のボルト、石油およびガス産業の製品。\n                                        20%\n                                            その他の市場と製品。\n                                        2%\n	    <h3>\n        私たちは複数の業界でサービスを提供しています。    </h3>\n		<p>私たちは常に顧客のデザイン要求を満たします。外観と寸法は、最も重要視している要素です。</p>		\n                                                    <h3><a href=\"https://fe2tech.com/ja/service/nc%e3%83%95%e3%83%a9%e3%82%a4%e3%82%b9%e5%8a%a0%e5%b7%a5%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">NCフライス加工サービス</a></h3>\n                                        <a href=\"https://fe2tech.com/ja/service/nc%e3%83%95%e3%83%a9%e3%82%a4%e3%82%b9%e5%8a%a0%e5%b7%a5%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/ja/service/cnc%e6%97%8b%e7%9b%a4%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">CNC旋盤サービス</a></h3>\n                                        <a href=\"https://fe2tech.com/ja/service/cnc%e6%97%8b%e7%9b%a4%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/ja/service/cnc%e3%83%84%e3%83%bc%e3%83%ab%e3%82%b0%e3%83%a9%e3%82%a4%e3%83%b3%e3%83%80%e3%83%bc%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">CNCツールグラインダーサービス</a></h3>\n                                        <a href=\"https://fe2tech.com/ja/service/cnc%e3%83%84%e3%83%bc%e3%83%ab%e3%82%b0%e3%83%a9%e3%82%a4%e3%83%b3%e3%83%80%e3%83%bc%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">Read more</a>\n                                                    <h3><a href=\"https://fe2tech.com/ja/service/%e6%9d%bf%e9%87%91%e5%8a%a0%e5%b7%a5%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">板金加工サービス</a></h3>\n                                        <a href=\"https://fe2tech.com/ja/service/%e6%9d%bf%e9%87%91%e5%8a%a0%e5%b7%a5%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">Read more</a>\n    <a href=\"/services\">\n                その他のサービス\n    </a>\n            	        		<h3>質問がありますか?</h3>\n            	        		Call: 0968860386\n                    <h3>見積もりを取得するための連絡先:</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f932-o5\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"932\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f932-o5\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"hidden\" name=\"_wpcf7_recaptcha_response\" value=\"\" />\n	<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email address\" value=\"\" type=\"email\" name=\"your-email\" /><button type=\"submit\">Get now</button>\n	</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_5\" name=\"_wpcf7_ak_js\" value=\"125\"/></p>\n</form>\n	    <h3>\n        私たちは簡単な作業手順を持っています。    </h3>\n		<p>私たちは常に品質と進捗において安心感を提供します。</p>		\n                                                    <h3>私たちを探す</h3>\n                                                    私たちは、各プロジェクトを総合的に取り扱う重要性を理解しています。\n                                                    <h3>私たちと接続する</h3>\n                                                    私たちが他のエージェンシーと異なる点は、カスタマイズされたソリューションを作成する専門知識にあります。\n                                                    <h3>私たちに支払う</h3>\n                                                    私たちは、各チームメンバーが自分自身の最高の姿を目指すことを奨励し、柔軟で協力的な環境を育んでいます。\n                                                    <h3>あなたの夢を実現する</h3>\n                                                    どのビジネスにも、革新と進歩を促す独自のソリューションがあります。\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10%C2%B057%2711.2%22N%20106%C2%B045%2713.0%22E&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n					aria-label=\"10°57&#039;11.2&quot;N 106°45&#039;13.0&quot;E\"\n			></iframe>\n	    <h3>\n        いつでもどんな助けが必要な場合でも、私たちにご連絡ください...    </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f974-o6\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"974\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.8\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f974-o6\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"hidden\" name=\"_wpcf7_recaptcha_response\" value=\"\" />\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name\" value=\"\" type=\"text\" name=\"your-name\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail adress\" value=\"\" type=\"email\" name=\"your-email\" />\n		</p>\n		<p><input size=\"40\" maxlength=\"400\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number\" value=\"\" type=\"text\" name=\"your-phone\" />\n		</p>\n		<p><select aria-required=\"true\" aria-invalid=\"false\" name=\"your-service\"><option value=\"Your Service\">Your Service</option><option value=\"Precision Measurement Services\">Precision Measurement Services</option><option value=\"Planing Service\">Planing Service</option><option value=\"Quality Inspection Services\">Quality Inspection Services</option><option value=\"Turning and Milling Services\">Turning and Milling Services</option><option value=\"Hydraulic Press Services\">Hydraulic Press Services</option><option value=\"Automated Welding Services\">Automated Welding Services</option><option value=\"CNC Machining Services\">CNC Machining Services</option><option value=\"Grinding Service\">Grinding Service</option><option value=\"Other\">Other</option></select>\n		</p>\n		<p><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Text message...\" name=\"your-message\"></textarea>\n		</p>\n		<p><button type=\"submit\">Send message</button>\n		</p>\n<p style=\"display: none !important;\" data-prefix=\"_wpcf7_ak_\"><label>&#916;<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"></textarea></label><input type=\"hidden\" id=\"ak_js_6\" name=\"_wpcf7_ak_js\" value=\"161\"/></p>\n</form>','ホーム','','inherit','closed','closed','','2982-revision-v1','','','2025-03-17 02:55:54','2025-03-17 02:55:54','',2982,'https://fe2tech.com/?p=3188',0,'revision','',0),(3190,1,'2025-03-17 03:02:13','2025-03-17 03:02:13','','Ab6277516622141b68178f66bebaadd93o.jpg_350x350','','inherit','open','closed','','ab6277516622141b68178f66bebaadd93o-jpg_350x350','','','2025-03-17 03:02:13','2025-03-17 03:02:13','',0,'https://fe2tech.com/wp-content/uploads/2025/03/Ab6277516622141b68178f66bebaadd93o.jpg_350x350.jpg',0,'attachment','image/jpeg',0),(3191,1,'2025-03-17 03:02:14','2025-03-17 03:02:14','','A4969ef2343a244608cc511d1e7be28e2X.png_350x350','','inherit','open','closed','','a4969ef2343a244608cc511d1e7be28e2x-png_350x350','','','2025-03-17 03:02:14','2025-03-17 03:02:14','',0,'https://fe2tech.com/wp-content/uploads/2025/03/A4969ef2343a244608cc511d1e7be28e2X.png_350x350.png',0,'attachment','image/png',0),(3192,1,'2025-03-17 03:02:16','2025-03-17 03:02:16','','H9be6461494cf4fe7998192dc483066c9v.png_350x350','','inherit','open','closed','','h9be6461494cf4fe7998192dc483066c9v-png_350x350','','','2025-03-17 03:02:16','2025-03-17 03:02:16','',0,'https://fe2tech.com/wp-content/uploads/2025/03/H9be6461494cf4fe7998192dc483066c9v.png_350x350.png',0,'attachment','image/png',0),(3193,1,'2025-03-17 03:02:18','2025-03-17 03:02:18','','H4cbac47ae6cf4705b966668ca1abad509.png_350x350','','inherit','open','closed','','h4cbac47ae6cf4705b966668ca1abad509-png_350x350','','','2025-03-17 03:02:18','2025-03-17 03:02:18','',0,'https://fe2tech.com/wp-content/uploads/2025/03/H4cbac47ae6cf4705b966668ca1abad509.png_350x350.png',0,'attachment','image/png',0),(3194,1,'2025-03-17 03:02:19','2025-03-17 03:02:19','','H6c00bd237d8b46d4b06a1cc6ef76accfE.png_350x350','','inherit','open','closed','','h6c00bd237d8b46d4b06a1cc6ef76accfe-png_350x350','','','2025-03-17 03:02:19','2025-03-17 03:02:19','',0,'https://fe2tech.com/wp-content/uploads/2025/03/H6c00bd237d8b46d4b06a1cc6ef76accfE.png_350x350.png',0,'attachment','image/png',0),(3195,1,'2025-03-17 03:02:21','2025-03-17 03:02:21','','H71abe7a763a345ae87dcf70c25a70a32M.png_350x350','','inherit','open','closed','','h71abe7a763a345ae87dcf70c25a70a32m-png_350x350','','','2025-03-17 03:02:21','2025-03-17 03:02:21','',0,'https://fe2tech.com/wp-content/uploads/2025/03/H71abe7a763a345ae87dcf70c25a70a32M.png_350x350.png',0,'attachment','image/png',0),(3196,1,'2025-03-17 03:02:22','2025-03-17 03:02:22','','2','','inherit','open','closed','','2','','','2025-03-17 03:02:22','2025-03-17 03:02:22','',0,'https://fe2tech.com/wp-content/uploads/2025/03/2.jpg',0,'attachment','image/jpeg',0),(3197,1,'2025-03-17 03:02:24','2025-03-17 03:02:24','','A045fe45345664394a2a80499b4bd2117i.jpg_350x350','','inherit','open','closed','','a045fe45345664394a2a80499b4bd2117i-jpg_350x350','','','2025-03-17 03:02:24','2025-03-17 03:02:24','',0,'https://fe2tech.com/wp-content/uploads/2025/03/A045fe45345664394a2a80499b4bd2117i.jpg_350x350.jpg',0,'attachment','image/jpeg',0),(3198,1,'2025-03-17 03:02:25','2025-03-17 03:02:25','','A86e039df1c9d4e809ea53dfd676ba67aO.jpg_350x350','','inherit','open','closed','','a86e039df1c9d4e809ea53dfd676ba67ao-jpg_350x350','','','2025-03-17 03:02:25','2025-03-17 03:02:25','',0,'https://fe2tech.com/wp-content/uploads/2025/03/A86e039df1c9d4e809ea53dfd676ba67aO.jpg_350x350.jpg',0,'attachment','image/jpeg',0),(3199,1,'2025-03-17 03:02:27','2025-03-17 03:02:27','','A786dc427af46457ea923c41ea7688f67Q.jpg_350x350','','inherit','open','closed','','a786dc427af46457ea923c41ea7688f67q-jpg_350x350','','','2025-03-17 03:02:27','2025-03-17 03:02:27','',0,'https://fe2tech.com/wp-content/uploads/2025/03/A786dc427af46457ea923c41ea7688f67Q.jpg_350x350.jpg',0,'attachment','image/jpeg',0),(3200,1,'2025-03-17 03:02:29','2025-03-17 03:02:29','','6','','inherit','open','closed','','6','','','2025-03-17 03:02:29','2025-03-17 03:02:29','',0,'https://fe2tech.com/wp-content/uploads/2025/03/6.jpg',0,'attachment','image/jpeg',0),(3201,1,'2025-03-17 03:02:31','2025-03-17 03:02:31','','A2ed5a5c3f8f544c8910a3fe29da5e2984.jpg_350x350','','inherit','open','closed','','a2ed5a5c3f8f544c8910a3fe29da5e2984-jpg_350x350','','','2025-03-17 03:02:31','2025-03-17 03:02:31','',0,'https://fe2tech.com/wp-content/uploads/2025/03/A2ed5a5c3f8f544c8910a3fe29da5e2984.jpg_350x350.jpg',0,'attachment','image/jpeg',0),(3202,1,'2025-03-17 03:02:33','2025-03-17 03:02:33','','A3c80646854cd4401b6b737a80e8e29f2Z.jpg_350x350','','inherit','open','closed','','a3c80646854cd4401b6b737a80e8e29f2z-jpg_350x350','','','2025-03-17 03:02:33','2025-03-17 03:02:33','',0,'https://fe2tech.com/wp-content/uploads/2025/03/A3c80646854cd4401b6b737a80e8e29f2Z.jpg_350x350.jpg',0,'attachment','image/jpeg',0),(3203,1,'2025-03-17 03:02:34','2025-03-17 03:02:34','','A53f94fffa0e64ba8a47330e85a179214l.jpg_350x350','','inherit','open','closed','','a53f94fffa0e64ba8a47330e85a179214l-jpg_350x350','','','2025-03-17 03:02:34','2025-03-17 03:02:34','',0,'https://fe2tech.com/wp-content/uploads/2025/03/A53f94fffa0e64ba8a47330e85a179214l.jpg_350x350.jpg',0,'attachment','image/jpeg',0),(3204,1,'2025-03-17 03:02:36','2025-03-17 03:02:36','','Aa559aaa8e8d44868b700967e182631e0O.jpg_350x350','','inherit','open','closed','','aa559aaa8e8d44868b700967e182631e0o-jpg_350x350','','','2025-03-17 03:02:36','2025-03-17 03:02:36','',0,'https://fe2tech.com/wp-content/uploads/2025/03/Aa559aaa8e8d44868b700967e182631e0O.jpg_350x350.jpg',0,'attachment','image/jpeg',0),(3205,1,'2025-03-17 03:02:38','2025-03-17 03:02:38','','4','','inherit','open','closed','','4','','','2025-03-17 03:02:38','2025-03-17 03:02:38','',0,'https://fe2tech.com/wp-content/uploads/2025/03/4.jpg',0,'attachment','image/jpeg',0),(3206,1,'2025-03-17 03:02:40','2025-03-17 03:02:40','','A29209fca14e3491286a7ae2a7d535066t.jpg_350x350','','inherit','open','closed','','a29209fca14e3491286a7ae2a7d535066t-jpg_350x350','','','2025-03-17 03:02:40','2025-03-17 03:02:40','',0,'https://fe2tech.com/wp-content/uploads/2025/03/A29209fca14e3491286a7ae2a7d535066t.jpg_350x350.jpg',0,'attachment','image/jpeg',0),(3207,1,'2025-03-17 03:02:42','2025-03-17 03:02:42','','Afd6e5018d54a4c319b4941af57e38fc1e.jpg_350x350','','inherit','open','closed','','afd6e5018d54a4c319b4941af57e38fc1e-jpg_350x350','','','2025-03-17 03:02:42','2025-03-17 03:02:42','',0,'https://fe2tech.com/wp-content/uploads/2025/03/Afd6e5018d54a4c319b4941af57e38fc1e.jpg_350x350.jpg',0,'attachment','image/jpeg',0),(3208,1,'2025-03-17 03:02:44','2025-03-17 03:02:44','','A8626df5ae89c458484cbdeab6b0a2768E.jpg_350x350','','inherit','open','closed','','a8626df5ae89c458484cbdeab6b0a2768e-jpg_350x350','','','2025-03-17 03:02:44','2025-03-17 03:02:44','',0,'https://fe2tech.com/wp-content/uploads/2025/03/A8626df5ae89c458484cbdeab6b0a2768E.jpg_350x350.jpg',0,'attachment','image/jpeg',0),(3209,1,'2025-03-17 03:02:46','2025-03-17 03:02:46','','Aec2a4cd895e648b6bc7174d864e103329.jpg_350x350','','inherit','open','closed','','aec2a4cd895e648b6bc7174d864e103329-jpg_350x350','','','2025-03-17 03:02:46','2025-03-17 03:02:46','',0,'https://fe2tech.com/wp-content/uploads/2025/03/Aec2a4cd895e648b6bc7174d864e103329.jpg_350x350.jpg',0,'attachment','image/jpeg',0),(3210,1,'2025-03-17 03:02:48','2025-03-17 03:02:48','','1','','inherit','open','closed','','1','','','2025-03-17 03:02:48','2025-03-17 03:02:48','',0,'https://fe2tech.com/wp-content/uploads/2025/03/1.jpg',0,'attachment','image/jpeg',0),(3211,1,'2025-03-17 03:02:49','2025-03-17 03:02:49','','A5fa71b0eddf648049c5f33d331738460m.jpg_350x350','','inherit','open','closed','','a5fa71b0eddf648049c5f33d331738460m-jpg_350x350','','','2025-03-17 03:02:49','2025-03-17 03:02:49','',0,'https://fe2tech.com/wp-content/uploads/2025/03/A5fa71b0eddf648049c5f33d331738460m.jpg_350x350.jpg',0,'attachment','image/jpeg',0),(3212,1,'2025-03-17 03:02:51','2025-03-17 03:02:51','','A9bc1872697d649e7a28d14c48cd6b71bq.jpg_350x350','','inherit','open','closed','','a9bc1872697d649e7a28d14c48cd6b71bq-jpg_350x350','','','2025-03-17 03:02:51','2025-03-17 03:02:51','',0,'https://fe2tech.com/wp-content/uploads/2025/03/A9bc1872697d649e7a28d14c48cd6b71bq.jpg_350x350.jpg',0,'attachment','image/jpeg',0),(3213,1,'2025-03-17 03:02:53','2025-03-17 03:02:53','','Ad0c782b84615484d8303ad964cd302a4C.jpg_350x350','','inherit','open','closed','','ad0c782b84615484d8303ad964cd302a4c-jpg_350x350','','','2025-03-17 03:02:53','2025-03-17 03:02:53','',0,'https://fe2tech.com/wp-content/uploads/2025/03/Ad0c782b84615484d8303ad964cd302a4C.jpg_350x350.jpg',0,'attachment','image/jpeg',0),(3214,1,'2025-03-17 03:02:55','2025-03-17 03:02:55','','Aec3f44d2c0cf4536870b19097b5035f4A.jpg_350x350','','inherit','open','closed','','aec3f44d2c0cf4536870b19097b5035f4a-jpg_350x350','','','2025-03-17 03:02:55','2025-03-17 03:02:55','',0,'https://fe2tech.com/wp-content/uploads/2025/03/Aec3f44d2c0cf4536870b19097b5035f4A.jpg_350x350.jpg',0,'attachment','image/jpeg',0),(3215,1,'2025-03-17 03:02:57','2025-03-17 03:02:57','','8','','inherit','open','closed','','8','','','2025-03-17 03:02:57','2025-03-17 03:02:57','',0,'https://fe2tech.com/wp-content/uploads/2025/03/8.jpg',0,'attachment','image/jpeg',0),(3216,1,'2025-03-17 03:02:59','2025-03-17 03:02:59','','A5df619ce89ec42189a5c4d05bbba4f2dw.jpg_350x350','','inherit','open','closed','','a5df619ce89ec42189a5c4d05bbba4f2dw-jpg_350x350','','','2025-03-17 03:02:59','2025-03-17 03:02:59','',0,'https://fe2tech.com/wp-content/uploads/2025/03/A5df619ce89ec42189a5c4d05bbba4f2dw.jpg_350x350.jpg',0,'attachment','image/jpeg',0),(3217,1,'2025-03-17 03:03:01','2025-03-17 03:03:01','','A9207015598ae47e4ba57d5d6755a7945J.jpg_350x350','','inherit','open','closed','','a9207015598ae47e4ba57d5d6755a7945j-jpg_350x350','','','2025-03-17 03:03:01','2025-03-17 03:03:01','',0,'https://fe2tech.com/wp-content/uploads/2025/03/A9207015598ae47e4ba57d5d6755a7945J.jpg_350x350.jpg',0,'attachment','image/jpeg',0),(3218,1,'2025-03-17 03:03:03','2025-03-17 03:03:03','','Aa67514ca153a43208612611af15ae689t.jpg_350x350','','inherit','open','closed','','aa67514ca153a43208612611af15ae689t-jpg_350x350','','','2025-03-17 03:03:03','2025-03-17 03:03:03','',0,'https://fe2tech.com/wp-content/uploads/2025/03/Aa67514ca153a43208612611af15ae689t.jpg_350x350.jpg',0,'attachment','image/jpeg',0),(3219,1,'2025-03-17 03:03:04','2025-03-17 03:03:04','','Ac8c57af57fc04a9b8afbcf5214d8b125a.jpg_350x350','','inherit','open','closed','','ac8c57af57fc04a9b8afbcf5214d8b125a-jpg_350x350','','','2025-03-17 03:03:04','2025-03-17 03:03:04','',0,'https://fe2tech.com/wp-content/uploads/2025/03/Ac8c57af57fc04a9b8afbcf5214d8b125a.jpg_350x350.jpg',0,'attachment','image/jpeg',0),(3220,1,'2025-03-17 03:03:06','2025-03-17 03:03:06','','Aea1a2ea6c9d04b78977d1e8c907e721cR.jpg_350x350','','inherit','open','closed','','aea1a2ea6c9d04b78977d1e8c907e721cr-jpg_350x350','','','2025-03-17 03:03:06','2025-03-17 03:03:06','',0,'https://fe2tech.com/wp-content/uploads/2025/03/Aea1a2ea6c9d04b78977d1e8c907e721cR.jpg_350x350.jpg',0,'attachment','image/jpeg',0),(3221,1,'2025-03-17 03:03:08','2025-03-17 03:03:08','','5','','inherit','open','closed','','5','','','2025-03-17 03:03:08','2025-03-17 03:03:08','',0,'https://fe2tech.com/wp-content/uploads/2025/03/5.jpg',0,'attachment','image/jpeg',0),(3222,1,'2025-03-17 03:03:09','2025-03-17 03:03:09','','7','','inherit','open','closed','','7','','','2025-03-17 03:03:09','2025-03-17 03:03:09','',0,'https://fe2tech.com/wp-content/uploads/2025/03/7.jpg',0,'attachment','image/jpeg',0),(3223,1,'2025-03-17 03:03:11','2025-03-17 03:03:11','','A4fa22b3db4704145a9c8f2b6d413b4b7Y.jpg_350x350','','inherit','open','closed','','a4fa22b3db4704145a9c8f2b6d413b4b7y-jpg_350x350','','','2025-03-17 03:03:11','2025-03-17 03:03:11','',0,'https://fe2tech.com/wp-content/uploads/2025/03/A4fa22b3db4704145a9c8f2b6d413b4b7Y.jpg_350x350.jpg',0,'attachment','image/jpeg',0),(3224,1,'2025-03-17 03:03:12','2025-03-17 03:03:12','','A8cfa154ca70a46c5965e993255b53ecbg.jpg_350x350','','inherit','open','closed','','a8cfa154ca70a46c5965e993255b53ecbg-jpg_350x350','','','2025-03-17 03:03:12','2025-03-17 03:03:12','',0,'https://fe2tech.com/wp-content/uploads/2025/03/A8cfa154ca70a46c5965e993255b53ecbg.jpg_350x350.jpg',0,'attachment','image/jpeg',0),(3225,1,'2025-03-17 03:03:14','2025-03-17 03:03:14','','A967c634a517c48f38c23d4766db5bba1a.jpg_350x350','','inherit','open','closed','','a967c634a517c48f38c23d4766db5bba1a-jpg_350x350','','','2025-03-17 03:03:14','2025-03-17 03:03:14','',0,'https://fe2tech.com/wp-content/uploads/2025/03/A967c634a517c48f38c23d4766db5bba1a.jpg_350x350.jpg',0,'attachment','image/jpeg',0),(3226,1,'2025-03-17 03:03:15','2025-03-17 03:03:15','','A462413b6de2b401ba60e99bbe1d15e33K.jpg_350x350','','inherit','open','closed','','a462413b6de2b401ba60e99bbe1d15e33k-jpg_350x350','','','2025-03-17 03:03:15','2025-03-17 03:03:15','',0,'https://fe2tech.com/wp-content/uploads/2025/03/A462413b6de2b401ba60e99bbe1d15e33K.jpg_350x350.jpg',0,'attachment','image/jpeg',0),(3227,1,'2025-03-17 03:03:17','2025-03-17 03:03:17','','A661399142a7247278bbf69a9d6007556W.jpg_350x350','','inherit','open','closed','','a661399142a7247278bbf69a9d6007556w-jpg_350x350','','','2025-03-17 03:03:17','2025-03-17 03:03:17','',0,'https://fe2tech.com/wp-content/uploads/2025/03/A661399142a7247278bbf69a9d6007556W.jpg_350x350.jpg',0,'attachment','image/jpeg',0),(3228,1,'2025-03-17 03:03:18','2025-03-17 03:03:18','','10','','inherit','open','closed','','10','','','2025-03-17 03:03:18','2025-03-17 03:03:18','',0,'https://fe2tech.com/wp-content/uploads/2025/03/10.jpg',0,'attachment','image/jpeg',0),(3229,1,'2025-03-17 03:03:20','2025-03-17 03:03:20','','A16eb71f546c44c4ba00c6afe46464d593.jpg_350x350','','inherit','open','closed','','a16eb71f546c44c4ba00c6afe46464d593-jpg_350x350','','','2025-03-17 03:03:20','2025-03-17 03:03:20','',0,'https://fe2tech.com/wp-content/uploads/2025/03/A16eb71f546c44c4ba00c6afe46464d593.jpg_350x350.jpg',0,'attachment','image/jpeg',0),(3230,1,'2025-03-17 03:03:21','2025-03-17 03:03:21','','A72a21ba969c84b98b63b985380b97ef5O.jpg_350x350','','inherit','open','closed','','a72a21ba969c84b98b63b985380b97ef5o-jpg_350x350','','','2025-03-17 03:03:21','2025-03-17 03:03:21','',0,'https://fe2tech.com/wp-content/uploads/2025/03/A72a21ba969c84b98b63b985380b97ef5O.jpg_350x350.jpg',0,'attachment','image/jpeg',0),(3231,1,'2025-03-17 03:03:23','2025-03-17 03:03:23','','A99574ebe1a6c432abebb91680e3e227e0.jpg_350x350','','inherit','open','closed','','a99574ebe1a6c432abebb91680e3e227e0-jpg_350x350','','','2025-03-17 03:03:23','2025-03-17 03:03:23','',0,'https://fe2tech.com/wp-content/uploads/2025/03/A99574ebe1a6c432abebb91680e3e227e0.jpg_350x350.jpg',0,'attachment','image/jpeg',0),(3232,1,'2025-03-17 03:03:25','2025-03-17 03:03:25','','Ac6d9a3b79a904eeb9c925afa374ec53aA.jpg_350x350','','inherit','open','closed','','ac6d9a3b79a904eeb9c925afa374ec53aa-jpg_350x350','','','2025-03-17 03:03:25','2025-03-17 03:03:25','',0,'https://fe2tech.com/wp-content/uploads/2025/03/Ac6d9a3b79a904eeb9c925afa374ec53aA.jpg_350x350.jpg',0,'attachment','image/jpeg',0),(3233,1,'2025-03-17 03:03:26','2025-03-17 03:03:26','','Adef05c3212194f259f1556cd5081ab3eg.jpg_350x350','','inherit','open','closed','','adef05c3212194f259f1556cd5081ab3eg-jpg_350x350','','','2025-03-17 03:03:26','2025-03-17 03:03:26','',0,'https://fe2tech.com/wp-content/uploads/2025/03/Adef05c3212194f259f1556cd5081ab3eg.jpg_350x350.jpg',0,'attachment','image/jpeg',0),(3234,1,'2025-03-17 03:03:28','2025-03-17 03:03:28','','3','','inherit','open','closed','','3','','','2025-03-17 03:03:28','2025-03-17 03:03:28','',0,'https://fe2tech.com/wp-content/uploads/2025/03/3.jpg',0,'attachment','image/jpeg',0),(3235,1,'2025-03-17 03:03:29','2025-03-17 03:03:29','','9','','inherit','open','closed','','9','','','2025-03-17 03:03:29','2025-03-17 03:03:29','',0,'https://fe2tech.com/wp-content/uploads/2025/03/9.jpg',0,'attachment','image/jpeg',0),(3236,1,'2025-03-17 03:03:32','2025-03-17 03:03:32','','A268aa8f9b65c4cdf9f45e594f2cd8ad4M.jpg_350x350','','inherit','open','closed','','a268aa8f9b65c4cdf9f45e594f2cd8ad4m-jpg_350x350','','','2025-03-17 03:03:32','2025-03-17 03:03:32','',0,'https://fe2tech.com/wp-content/uploads/2025/03/A268aa8f9b65c4cdf9f45e594f2cd8ad4M.jpg_350x350.jpg',0,'attachment','image/jpeg',0),(3237,1,'2025-03-17 03:03:34','2025-03-17 03:03:34','','A864432f2571743689342ae173ee9dc9fd.jpg_350x350','','inherit','open','closed','','a864432f2571743689342ae173ee9dc9fd-jpg_350x350','','','2025-03-17 03:03:34','2025-03-17 03:03:34','',0,'https://fe2tech.com/wp-content/uploads/2025/03/A864432f2571743689342ae173ee9dc9fd.jpg_350x350.jpg',0,'attachment','image/jpeg',0),(3238,1,'2025-03-17 03:03:36','2025-03-17 03:03:36','','Abd43851c92654bd99cfdca45d896fbcbB.jpg_350x350','','inherit','open','closed','','abd43851c92654bd99cfdca45d896fbcbb-jpg_350x350','','','2025-03-17 03:03:36','2025-03-17 03:03:36','',0,'https://fe2tech.com/wp-content/uploads/2025/03/Abd43851c92654bd99cfdca45d896fbcbB.jpg_350x350.jpg',0,'attachment','image/jpeg',0),(3239,1,'2025-03-17 03:03:38','2025-03-17 03:03:38','','Acdd1226298dd4613abf021bdcaad320b0.jpg_350x350','','inherit','open','closed','','acdd1226298dd4613abf021bdcaad320b0-jpg_350x350','','','2025-03-17 03:03:38','2025-03-17 03:03:38','',0,'https://fe2tech.com/wp-content/uploads/2025/03/Acdd1226298dd4613abf021bdcaad320b0.jpg_350x350.jpg',0,'attachment','image/jpeg',0),(3240,1,'2025-03-17 03:03:40','2025-03-17 03:03:40','','Ae91bf7f51db3402ebaff610c299e9aacF.jpg_350x350','','inherit','open','closed','','ae91bf7f51db3402ebaff610c299e9aacf-jpg_350x350','','','2025-03-17 03:03:40','2025-03-17 03:03:40','',0,'https://fe2tech.com/wp-content/uploads/2025/03/Ae91bf7f51db3402ebaff610c299e9aacF.jpg_350x350.jpg',0,'attachment','image/jpeg',0),(3241,1,'2025-03-17 03:03:42','2025-03-17 03:03:42','','A05f18d47e70948ae8795111d055f42fa2.jpg_350x350','','inherit','open','closed','','a05f18d47e70948ae8795111d055f42fa2-jpg_350x350','','','2025-03-17 03:03:42','2025-03-17 03:03:42','',0,'https://fe2tech.com/wp-content/uploads/2025/03/A05f18d47e70948ae8795111d055f42fa2.jpg_350x350.jpg',0,'attachment','image/jpeg',0),(3242,1,'2025-03-17 03:03:44','2025-03-17 03:03:44','','A5c37792f38434388a02a0479fcbc4123T.jpg_350x350','','inherit','open','closed','','a5c37792f38434388a02a0479fcbc4123t-jpg_350x350','','','2025-03-17 03:03:44','2025-03-17 03:03:44','',0,'https://fe2tech.com/wp-content/uploads/2025/03/A5c37792f38434388a02a0479fcbc4123T.jpg_350x350.jpg',0,'attachment','image/jpeg',0),(3243,1,'2025-03-17 03:03:46','2025-03-17 03:03:46','','A8c420992f47745509f4f292ac7bd2258H.jpg_350x350','','inherit','open','closed','','a8c420992f47745509f4f292ac7bd2258h-jpg_350x350','','','2025-03-17 03:03:46','2025-03-17 03:03:46','',0,'https://fe2tech.com/wp-content/uploads/2025/03/A8c420992f47745509f4f292ac7bd2258H.jpg_350x350.jpg',0,'attachment','image/jpeg',0),(3244,1,'2025-03-17 03:03:48','2025-03-17 03:03:48','','A1001e63ea59149f8a81abb92d5d5fe713.jpg_350x350','','inherit','open','closed','','a1001e63ea59149f8a81abb92d5d5fe713-jpg_350x350','','','2025-03-17 03:03:48','2025-03-17 03:03:48','',0,'https://fe2tech.com/wp-content/uploads/2025/03/A1001e63ea59149f8a81abb92d5d5fe713.jpg_350x350.jpg',0,'attachment','image/jpeg',0),(3245,1,'2025-03-17 03:03:50','2025-03-17 03:03:50','','A36346f881b104996b6c070b5d2cebff8u.jpg_350x350','','inherit','open','closed','','a36346f881b104996b6c070b5d2cebff8u-jpg_350x350','','','2025-03-17 03:03:50','2025-03-17 03:03:50','',0,'https://fe2tech.com/wp-content/uploads/2025/03/A36346f881b104996b6c070b5d2cebff8u.jpg_350x350.jpg',0,'attachment','image/jpeg',0),(3246,1,'2025-03-17 03:03:51','2025-03-17 03:03:51','','A157183c07a764eb8957bc4cd13982808i.jpg_350x350','','inherit','open','closed','','a157183c07a764eb8957bc4cd13982808i-jpg_350x350','','','2025-03-17 03:03:51','2025-03-17 03:03:51','',0,'https://fe2tech.com/wp-content/uploads/2025/03/A157183c07a764eb8957bc4cd13982808i.jpg_350x350.jpg',0,'attachment','image/jpeg',0),(3247,1,'2025-03-17 03:06:41','2025-03-17 03:06:41','','cnc ok5','','inherit','open','closed','','cnc-ok5','','','2025-03-17 03:06:41','2025-03-17 03:06:41','',0,'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok5.jpg',0,'attachment','image/jpeg',0),(3248,1,'2025-03-17 03:06:43','2025-03-17 03:06:43','','cnc ok4','','inherit','open','closed','','cnc-ok4','','','2025-03-17 03:06:43','2025-03-17 03:06:43','',0,'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok4.png',0,'attachment','image/png',0),(3249,1,'2025-03-17 03:06:44','2025-03-17 03:06:44','','cnc machine22','','inherit','open','closed','','cnc-machine22','','','2025-03-17 03:06:44','2025-03-17 03:06:44','',0,'https://fe2tech.com/wp-content/uploads/2025/03/cnc-machine22.avif',0,'attachment','image/avif',0),(3250,1,'2025-03-17 03:06:46','2025-03-17 03:06:46','','cnc machine3','','inherit','open','closed','','cnc-machine3','','','2025-03-17 03:06:46','2025-03-17 03:06:46','',0,'https://fe2tech.com/wp-content/uploads/2025/03/cnc-machine3.jpg',0,'attachment','image/jpeg',0),(3251,1,'2025-03-17 03:06:48','2025-03-17 03:06:48','','cnc ok3','','inherit','open','closed','','cnc-ok3','','','2025-03-17 03:06:48','2025-03-17 03:06:48','',0,'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok3.png',0,'attachment','image/png',0),(3252,1,'2025-03-17 03:06:49','2025-03-17 03:06:49','','cnc ok1','','inherit','open','closed','','cnc-ok1','','','2025-03-17 03:06:49','2025-03-17 03:06:49','',0,'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok1.png',0,'attachment','image/png',0),(3253,1,'2025-03-17 03:06:51','2025-03-17 03:06:51','','cnc ok2','','inherit','open','closed','','cnc-ok2','','','2025-03-17 03:06:51','2025-03-17 03:06:51','',0,'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok2.png',0,'attachment','image/png',0),(3254,1,'2025-03-17 03:06:53','2025-03-17 03:06:53','','cnc ok7','','inherit','open','closed','','cnc-ok7','','','2025-03-17 03:06:53','2025-03-17 03:06:53','',0,'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok7.png',0,'attachment','image/png',0),(3255,1,'2025-03-17 03:06:55','2025-03-17 03:06:55','','cnc ok9','','inherit','open','closed','','cnc-ok9','','','2025-03-17 03:06:55','2025-03-17 03:06:55','',0,'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok9.jpg',0,'attachment','image/jpeg',0),(3256,1,'2025-03-17 03:06:58','2025-03-17 03:06:58','','cnc ok8','','inherit','open','closed','','cnc-ok8','','','2025-03-17 03:06:58','2025-03-17 03:06:58','',0,'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok8.jpg',0,'attachment','image/jpeg',0),(3257,1,'2025-03-17 03:07:00','2025-03-17 03:07:00','','z5709443476797_cb3e9e0d596ad6331366b8a711f46926','','inherit','open','closed','','z5709443476797_cb3e9e0d596ad6331366b8a711f46926','','','2025-03-17 03:07:00','2025-03-17 03:07:00','',0,'https://fe2tech.com/wp-content/uploads/2025/03/z5709443476797_cb3e9e0d596ad6331366b8a711f46926.jpg',0,'attachment','image/jpeg',0),(3258,1,'2025-03-17 03:09:25','2025-03-17 03:09:25','','sheet metal1','','inherit','open','closed','','sheet-metal1','','','2025-03-17 03:09:25','2025-03-17 03:09:25','',0,'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal1.jpg',0,'attachment','image/jpeg',0),(3259,1,'2025-03-17 03:09:28','2025-03-17 03:09:28','','sheet metal3','','inherit','open','closed','','sheet-metal3','','','2025-03-17 03:09:28','2025-03-17 03:09:28','',0,'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal3.jpg',0,'attachment','image/jpeg',0),(3260,1,'2025-03-17 03:09:32','2025-03-17 03:09:32','','sheet metal4','','inherit','open','closed','','sheet-metal4','','','2025-03-17 03:09:32','2025-03-17 03:09:32','',0,'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal4.jpg',0,'attachment','image/jpeg',0),(3261,1,'2025-03-17 03:09:34','2025-03-17 03:09:34','','sheet metal5','','inherit','open','closed','','sheet-metal5','','','2025-03-17 03:09:34','2025-03-17 03:09:34','',0,'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal5.jpg',0,'attachment','image/jpeg',0),(3262,1,'2025-03-17 03:09:36','2025-03-17 03:09:36','','sheet metal7','','inherit','open','closed','','sheet-metal7','','','2025-03-17 03:09:36','2025-03-17 03:09:36','',0,'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal7.jpg',0,'attachment','image/jpeg',0),(3263,1,'2025-03-17 03:09:39','2025-03-17 03:09:39','','sheet metal8','','inherit','open','closed','','sheet-metal8','','','2025-03-17 03:09:39','2025-03-17 03:09:39','',0,'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal8.jpg',0,'attachment','image/jpeg',0),(3264,1,'2025-03-17 03:09:41','2025-03-17 03:09:41','','sheet metal9','','inherit','open','closed','','sheet-metal9','','','2025-03-17 03:09:41','2025-03-17 03:09:41','',0,'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal9.jpg',0,'attachment','image/jpeg',0),(3265,1,'2025-03-17 03:09:43','2025-03-17 03:09:43','','sheet metal10','','inherit','open','closed','','sheet-metal10','','','2025-03-17 03:09:43','2025-03-17 03:09:43','',0,'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal10.jpg',0,'attachment','image/jpeg',0),(3266,1,'2025-03-17 03:09:44','2025-03-17 03:09:44','','sheet metal2','','inherit','open','closed','','sheet-metal2','','','2025-03-17 03:09:44','2025-03-17 03:09:44','',0,'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal2.png',0,'attachment','image/png',0),(3267,1,'2025-03-17 03:09:46','2025-03-17 03:09:46','','sheet metal6','','inherit','open','closed','','sheet-metal6','','','2025-03-17 03:09:46','2025-03-17 03:09:46','',0,'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal6.jpg',0,'attachment','image/jpeg',0),(3268,1,'2025-03-17 03:11:11','2025-03-17 03:11:11','','z6069736165372_82569324de1c8fcc376cc0e737c0520e','','inherit','open','closed','','z6069736165372_82569324de1c8fcc376cc0e737c0520e-2','','','2025-03-17 03:11:11','2025-03-17 03:11:11','',0,'https://fe2tech.com/wp-content/uploads/2025/03/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg',0,'attachment','image/jpeg',0),(3269,1,'2025-03-17 03:11:13','2025-03-17 03:11:13','','z6069736455775_97a937807c807bf71369419a0a5d3d2c','','inherit','open','closed','','z6069736455775_97a937807c807bf71369419a0a5d3d2c-2','','','2025-03-17 03:11:13','2025-03-17 03:11:13','',0,'https://fe2tech.com/wp-content/uploads/2025/03/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg',0,'attachment','image/jpeg',0),(3270,1,'2025-03-17 03:11:15','2025-03-17 03:11:15','','z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b','','inherit','open','closed','','z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b-2','','','2025-03-17 03:11:15','2025-03-17 03:11:15','',0,'https://fe2tech.com/wp-content/uploads/2025/03/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg',0,'attachment','image/jpeg',0),(3271,1,'2025-03-17 03:11:16','2025-03-17 03:11:16','','z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d','','inherit','open','closed','','z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d-2','','','2025-03-17 03:11:16','2025-03-17 03:11:16','',0,'https://fe2tech.com/wp-content/uploads/2025/03/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg',0,'attachment','image/jpeg',0),(3272,1,'2025-03-17 03:11:18','2025-03-17 03:11:18','','z6069736721586_16b9198420b399f9d82c058d9082a3e0','','inherit','open','closed','','z6069736721586_16b9198420b399f9d82c058d9082a3e0-2','','','2025-03-17 03:11:18','2025-03-17 03:11:18','',0,'https://fe2tech.com/wp-content/uploads/2025/03/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg',0,'attachment','image/jpeg',0),(3273,1,'2025-03-17 03:11:19','2025-03-17 03:11:19','','z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc','','inherit','open','closed','','z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc-2','','','2025-03-17 03:11:19','2025-03-17 03:11:19','',0,'https://fe2tech.com/wp-content/uploads/2025/03/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg',0,'attachment','image/jpeg',0),(3274,1,'2025-03-17 03:13:14','2025-03-17 03:13:14','','IMG_1237','','inherit','open','closed','','img_1237','','','2025-03-17 03:13:14','2025-03-17 03:13:14','',0,'https://fe2tech.com/wp-content/uploads/2025/03/IMG_1237.jpeg',0,'attachment','image/jpeg',0),(3275,1,'2025-03-17 03:13:16','2025-03-17 03:13:16','','DSC00822','','inherit','open','closed','','dsc00822','','','2025-03-17 03:13:16','2025-03-17 03:13:16','',0,'https://fe2tech.com/wp-content/uploads/2025/03/DSC00822.jpg',0,'attachment','image/jpeg',0),(3276,1,'2025-03-17 03:13:36','2025-03-17 03:13:36','<h5>\n        Our strength lies in mass production of aluminum and steel. We excel in innovation and deliver high-value products to our customers.    </h5>\n			Welding\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDk5NjUxOTZfODJmZDc2ZGRiYmYzOGQ2NGRhZThhZjExYjIxNTM3YjkuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074649965196_82fd76ddbbf38d64dae8af11b21537b9.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074649965196_82fd76ddbbf38d64dae8af11b21537b9.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY2NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NTI3MjMyMTJfODc3MGYwMjhmZjY0NmYwMTRmMWU5ZjZlZmUzNDk2MmUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074652723212_8770f028ff646f014f1e9f6efe34962e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074652723212_8770f028ff646f014f1e9f6efe34962e.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA5Mzk3MThfYjBmZjZhY2FkMTRiMmFiNWVkMTU4MTcxYzc2ODMzZjkuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640939718_b0ff6acad14b2ab5ed158171c76833f9.jpg\'><img width=\"84\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640939718_b0ff6acad14b2ab5ed158171c76833f9.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDEyOTMxMTNfYjRiMTg2YzY3YjZlNzgyOWRkMmE5MWQ3MzBjZjlhYTcuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641293113_b4b186c67b6e7829dd2a91d730cf9aa7.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641293113_b4b186c67b6e7829dd2a91d730cf9aa7.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY2OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDI3NjM1ODdfMjFlY2NlNWQ0YWNjZjM3MTM1OGViNGNiZDczYzgwMGQuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074642763587_21ecce5d4accf371358eb4cbd73c800d.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074642763587_21ecce5d4accf371358eb4cbd73c800d.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY2OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDI4NDk4NDhfMTBiNTY3MDUxMjA5NmU2NTQ3NDhlNTdiMjRhMDRhZmUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074642849848_10b5670512096e654748e57b24a04afe.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074642849848_10b5670512096e654748e57b24a04afe.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA3NTg4ODNfNjQ4YTA0MmY0YjY0MGQwZjU3YTQ0NDFkZDIxMDk1NzAuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640758883_648a042f4b640d0f57a4441dd2109570.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640758883_648a042f4b640d0f57a4441dd2109570.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA4NDkyMzdfZTc2OTliMWJjNmUzOGUwYmY2NWViM2JjYTI4YWU4Y2EuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640849237_e7699b1bc6e38e0bf65eb3bca28ae8ca.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640849237_e7699b1bc6e38e0bf65eb3bca28ae8ca.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDEwNTIwNzBfOWVmYmMxNTg2Y2I1ZTk1Y2M1NGI4NDIxYTYzZjM4MGUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641052070_9efbc1586cb5e95cc54b8421a63f380e.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641052070_9efbc1586cb5e95cc54b8421a63f380e.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDExNDUyNzNfN2JlNWRmM2UxNzc5YWEwNGU4OTBlNDBjYzI0M2NkZWUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641145273_7be5df3e1779aa04e890e40cc243cdee.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641145273_7be5df3e1779aa04e890e40cc243cdee.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA2NTMyODVfNWE4N2FkZjU3Y2UwYzQxODZmZTRmYjE1NzllMzU3YjUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640653285_5a87adf57ce0c4186fe4fb1579e357b5.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640653285_5a87adf57ce0c4186fe4fb1579e357b5.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDExNzM4MjZfNDVhZTczN2Y3MGRmYjJkMzY1YWJiMzk3ZjEzOWQ3MDguanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641173826_45ae737f70dfb2d365abb397f139d708.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641173826_45ae737f70dfb2d365abb397f139d708.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			Mold\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY1NzU1NzhfZTBhNGY1NDczODQzZTU4ZWUxYTc5OTg5ZjM2N2FkYTkuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736575578_e0a4f5473843e58ee1a79989f367ada9.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736575578_e0a4f5473843e58ee1a79989f367ada9.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY3MjE1ODZfMTZiOTE5ODQyMGIzOTlmOWQ4MmMwNThkOTA4MmEzZTAuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUyMTk2NzlfOTFhNmY2OTkzMTQ2OTA2Zjg0NjViNDNkZGQwYzJiM2MuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735219679_91a6f6993146906f8465b43ddd0c2b3c.jpg\'><img width=\"68\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735219679_91a6f6993146906f8465b43ddd0c2b3c.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY3NjE0NTRfYjk4ZDQ2OGIxMzNhYzU5ZWJiZjVlNjJiNjkzNDYyYTQuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736761454_b98d468b133ac59ebbf5e62b693462a4.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736761454_b98d468b133ac59ebbf5e62b693462a4.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY3ODQzMzVfZjkzYmM3ODIwY2ZkYzBiMDE1YzgyMjRiOWExYWNlMTAuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736784335_f93bc7820cfdc0b015c8224b9a1ace10.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736784335_f93bc7820cfdc0b015c8224b9a1ace10.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjkyMTk5NDEzNDlfYjA5NTRlNDRhMjVhN2QxNTQzZWIzM2NlZWFlMjBlZmIuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069219941349_b0954e44a25a7d1543eb33ceeae20efb.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069219941349_b0954e44a25a7d1543eb33ceeae20efb.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUzNDMyMDFfZDI5MjJhYTE2ODBjNTdiZmUyZGE5YWFiYTEyMWNhYTYuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735343201_d2922aa1680c57bfe2da9aaba121caa6.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735343201_d2922aa1680c57bfe2da9aaba121caa6.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU0NDE4ODVfMDg4ZGQ0MTdiNjU5NzgzMzc2YWRmZWIwMDZkMTgxODAuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735441885_088dd417b659783376adfeb006d18180.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735441885_088dd417b659783376adfeb006d18180.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU1OTgxMDFfMGZkZDBhNzczYTIyZDZhZjkyZjY5NGQ3ODY2YjJhNWEuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735598101_0fdd0a773a22d6af92f694d7866b2a5a.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735598101_0fdd0a773a22d6af92f694d7866b2a5a.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU2MzQ2MzJfZGEzZGYxMWNjMWRmYTk3OGM1YjcwZjJlNDQ0MDQ3MTIuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735634632_da3df11cc1dfa978c5b70f2e44404712.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735634632_da3df11cc1dfa978c5b70f2e44404712.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU2OTM5ODdfYmY3MzQ3ZjUzM2VjNzUwYTJjNGY5ZGYxNzYzYjg4ODEuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735693987_bf7347f533ec750a2c4f9df1763b8881.jpg\'><img width=\"84\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735693987_bf7347f533ec750a2c4f9df1763b8881.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU4MzU0OTZfYTcxYWM1MGRkYWMzNjg2N2ZjYTIxY2VlOGM0N2ZlMGEuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735835496_a71ac50ddac36867fca21cee8c47fe0a.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735835496_a71ac50ddac36867fca21cee8c47fe0a.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU4OTM2OTJfNDhmNGE5ZjdjN2E5ZDA1ZGMwMzdhODBhYzFlNTc4MmIuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYwMDk1MTRfYWQ5MDg4N2YyNWQ3MzRlYzJkMjFkOGE2YTYzNGZmMmQuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYxMTA0MjZfYzNlY2UzZWM1NmY5ZThjYzBlNWM5YTk4Zjk3OTJiZmMuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYxNjUzNzJfODI1NjkzMjRkZTFjOGZjYzM3NmNjMGU3MzdjMDUyMGUuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYzMjQ0NzJfMDZmMWVkMWExYmUyYzNhNTkyMzA3MGFmZjdkNWUxMGUuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736324472_06f1ed1a1be2c3a5923070aff7d5e10e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736324472_06f1ed1a1be2c3a5923070aff7d5e10e.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYzOTEwNTFfNGMzY2FlMTZhOGZmNGYyMTZiOGQ1MzY3Mzc3MmRkMDcuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736391051_4c3cae16a8ff4f216b8d53673772dd07.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736391051_4c3cae16a8ff4f216b8d53673772dd07.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY0NTU3NzVfOTdhOTM3ODA3YzgwN2JmNzEzNjk0MTlhMGE1ZDNkMmMuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\'><img width=\"68\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			Machine Details\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjkyMTk5NDkxNzVfZTJhMTA1YmNmMjIzYzgzMmQ2Y2FhYjJkMDNmZTA0MTMuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069219949175_e2a105bcf223c832d6caab2d03fe0413.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069219949175_e2a105bcf223c832d6caab2d03fe0413.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMTMxNjUyNjZfYTE1MjUzZTNhM2UwYTJjOTc4ZWQ2Njc5OTRiOGY0MTUuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799313165266_a15253e3a3e0a2c978ed667994b8f415.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799313165266_a15253e3a3e0a2c978ed667994b8f415.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE2MDQxMTVfNDkzZjgzNTU4NjlkZDNjYTgyYTk2ZTg2ZTI5ODJiZmUuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321604115_493f8355869dd3ca82a96e86e2982bfe.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321604115_493f8355869dd3ca82a96e86e2982bfe.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE2OTYwMjRfNzMzYTg1YmY4MzVhZWEwYThhZmM4YjI2OWQxNDk3MDAuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321696024_733a85bf835aea0a8afc8b269d149700.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321696024_733a85bf835aea0a8afc8b269d149700.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMTMxNzk1NjdfYzNkNjY3NWEwMzc2MmZiOTQzNzZkYzk2ZjA1Mzg5YmQuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799313179567_c3d6675a03762fb94376dc96f05389bd.jpg\'><img width=\"150\" height=\"86\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799313179567_c3d6675a03762fb94376dc96f05389bd.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMTMyNzM0NTRfYWQ3MTZiZWZhZjQzZDJkZjE0NzYyOWQ5NTI2MmM1MjAuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799313273454_ad716befaf43d2df147629d95262c520.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799313273454_ad716befaf43d2df147629d95262c520.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MTYyNDlfOTZiMmZlYTVmZTMzZjRhMjRkODI1MWM4YWFmMjI1ZTEuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363716249_96b2fea5fe33f4a24d8251c8aaf225e1.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363716249_96b2fea5fe33f4a24d8251c8aaf225e1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MjM3NzFfOWVlYzRkNTFmYzE3MjNmYjY2OWY5ODAwODRlMjBhNjEuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363723771_9eec4d51fc1723fb669f980084e20a61.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363723771_9eec4d51fc1723fb669f980084e20a61.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MjM4OTJfNWI3MjAwMDI2MjAyYTFlZmU5NjU5NjEwOWZhZDY4NTcuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363723892_5b7200026202a1efe96596109fad6857.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363723892_5b7200026202a1efe96596109fad6857.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MzUzNjFfOTM1NWZhN2ViOTkxMTIzZGM5OTVkZmFhMmI0Y2Y3NTQuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363735361_9355fa7eb991123dc995dfaa2b4cf754.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363735361_9355fa7eb991123dc995dfaa2b4cf754.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3NDY3NjJfNjI0MWFjNGM2NjI1NTgxYjVkYjliMjRhMWVlMDVmNjgtMS5qcGciLCJzbGlkZXNob3ciOiJjZDlkYmE5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363746762_6241ac4c6625581b5db9b24a1ee05f68-1.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363746762_6241ac4c6625581b5db9b24a1ee05f68-1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3NDE0MDlfZDcyMTI0ZDkwOTEyODBmNjUyOWEyN2E5MTliZTEzYzkuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363741409_d72124d9091280f6529a27a919be13c9.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363741409_d72124d9091280f6529a27a919be13c9.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			Tool\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwMTgzMzRfMTdjNWZhYzk2ZmIyODQzZDc0YTc2Y2M3OWY5YjRmNWMuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\'><img width=\"150\" height=\"135\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwMzczNTNfZGI4NzczMmIzZWE5ZDkzNTM2YmNkM2FlYzY0ODM1YTcuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNTkxNjJfMDUzYjM2NGFiNzYxZGM1YTQ0Mjc5ZmFmNjQzOTUzMjQuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\'><img width=\"70\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNzgzNzJfNTBhYmNlNTI0OWM4YWNkY2ZiZGY4YTA2MzQ4OWUxODYuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNzg1NzBfMGFiNThiNDZiZjY4M2RmNmVjZGIyYzJkODc5NDViYTYuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\'><img width=\"150\" height=\"129\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk2ODQ5NDkwODZfYjI5ZmRiNTAxMTRhMTk2Y2MzZmRjYzllMTJjYWYxMDUuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\'><img width=\"150\" height=\"128\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk2ODQ5NDY2NDFfMTUwMGZiZTE2ZmVjM2ExNGVhZGI4ZTRhZWQxY2Y2M2YuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			Motorbike Parts\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTEzMDA5NzlfMDA1MjcxNmI0NjI4NDNhNWQxOTY4Zjc4NzBjNzJmZDguanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028111300979_0052716b462843a5d1968f7870c72fd8.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028111300979_0052716b462843a5d1968f7870c72fd8.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTIwMDAwMDBfMjQ0MGQ1YWUzNmY3MDA4NDBkMGYwYjU4M2JiY2JkZmEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028112000000_2440d5ae36f700840d0f0b583bbcbdfa.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028112000000_2440d5ae36f700840d0f0b583bbcbdfa.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTI2NzAwMjRfMTgwNmFmZDdkNzBiYmJjNTIzZDYzYjBjNjFlOTEzMGIuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028112670024_1806afd7d70bbbc523d63b0c61e9130b.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028112670024_1806afd7d70bbbc523d63b0c61e9130b.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTMyODc5MTJfZTFhYThiZGI5ZmU3MmIxZmUyMjg4N2NlYWFmYzBkYmQuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028113287912_e1aa8bdb9fe72b1fe22887ceaafc0dbd.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028113287912_e1aa8bdb9fe72b1fe22887ceaafc0dbd.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTM4OTQ3MDRfMzUwNGU0YmYwOTNhZDlmOWQ2MzVjOGJmYTJhYWFlZjYuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028113894704_3504e4bf093ad9f9d635c8bfa2aaaef6.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028113894704_3504e4bf093ad9f9d635c8bfa2aaaef6.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTQ3Njc3MzlfZDAxNGIxMGRhNTA4OGJjN2QzNjc1YTZkMDBlNzdkMzMuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028114767739_d014b10da5088bc7d3675a6d00e77d33.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028114767739_d014b10da5088bc7d3675a6d00e77d33.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE0MzQ1NjFfNmQyY2I3NWVkYmE4MjgzMmUwY2JkOTA2NzM4NTdiZDMuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321434561_6d2cb75edba82832e0cbd90673857bd3.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321434561_6d2cb75edba82832e0cbd90673857bd3.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE0NDgwODhfNmU2OTQ0YzNjZWIzMzU4OTdlMmI0ZjRhZDIwOTc1YjcuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321448088_6e6944c3ceb335897e2b4f4ad20975b7.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321448088_6e6944c3ceb335897e2b4f4ad20975b7.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE1NDg1NTdfMWE1ZTY5YTg5Y2EzNzk1M2UwYzA0Yzg4ZTUyOWQ5NTEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321548557_1a5e69a89ca37953e0c04c88e529d951.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321548557_1a5e69a89ca37953e0c04c88e529d951.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMDk2MzA3MDRfMjlhODJkZjk3ZWE0ZWE3YzM3ODU5Zjk2NjcxNTRkYTEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028109630704_29a82df97ea4ea7c37859f9667154da1.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028109630704_29a82df97ea4ea7c37859f9667154da1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMDk2NzU5ODRfNTExYmI1ODY5MGE3M2FiOWNjMWFkY2QxNDZjYTQ2ZjIuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028109675984_511bb58690a73ab9cc1adcd146ca46f2.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028109675984_511bb58690a73ab9cc1adcd146ca46f2.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTA2MzE0MTVfOWJkMzc1NDUxYjIyNDI3NzZjM2ZhNDdhNWU5MWYzZTEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028110631415_9bd375451b2242776c3fa47a5e91f3e1.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028110631415_9bd375451b2242776c3fa47a5e91f3e1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTExNjcxMDFfNjg1ZGUyZTUzOTViYmY4ZDk3ZTRkMmY4YWE4N2ZlZTMuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028111167101_685de2e5395bbf8d97e4d2f8aa87fee3.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028111167101_685de2e5395bbf8d97e4d2f8aa87fee3.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			Jig\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NDY1OTEzMzg2ODdfZmE1MTRlMTY0ZjJlZTk5NjFjZmVlY2U5YjJhMjk2MmUuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTE0ODI0OTc5ODFfNGZlOGQ1MmM3N2ZiOTcwYWNjYWNhOTkzMTFiM2U1YjguanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNTQzNzc3MTM5OTRfNzMxZjNhYzFmN2YzMjMyNjExMWE0MWY2N2Q0YTJlMzMuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE2NTM3NjdfNzk3Y2FkYTk3Yjk4NjQyZTYyYzkxODU3YzYwYjViNDQuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NDY1OTEzNDkxOTRfZDUwMTBkMTcwMGM3Y2ViNDkxYjk3OGIwMWJlM2RkMjguanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>','Product','','inherit','closed','closed','','2126-revision-v1','','','2025-03-17 03:13:36','2025-03-17 03:13:36','',2126,'https://fe2tech.com/?p=3276',0,'revision','',0),(3277,1,'2025-03-17 03:13:37','2025-03-17 03:13:37','<h5>\n        Our strength lies in mass production of aluminum and steel. We excel in innovation and deliver high-value products to our customers.    </h5>\n			Welding\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDk5NjUxOTZfODJmZDc2ZGRiYmYzOGQ2NGRhZThhZjExYjIxNTM3YjkuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074649965196_82fd76ddbbf38d64dae8af11b21537b9.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074649965196_82fd76ddbbf38d64dae8af11b21537b9.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY2NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NTI3MjMyMTJfODc3MGYwMjhmZjY0NmYwMTRmMWU5ZjZlZmUzNDk2MmUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074652723212_8770f028ff646f014f1e9f6efe34962e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074652723212_8770f028ff646f014f1e9f6efe34962e.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA5Mzk3MThfYjBmZjZhY2FkMTRiMmFiNWVkMTU4MTcxYzc2ODMzZjkuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640939718_b0ff6acad14b2ab5ed158171c76833f9.jpg\'><img width=\"84\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640939718_b0ff6acad14b2ab5ed158171c76833f9.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDEyOTMxMTNfYjRiMTg2YzY3YjZlNzgyOWRkMmE5MWQ3MzBjZjlhYTcuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641293113_b4b186c67b6e7829dd2a91d730cf9aa7.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641293113_b4b186c67b6e7829dd2a91d730cf9aa7.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY2OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDI3NjM1ODdfMjFlY2NlNWQ0YWNjZjM3MTM1OGViNGNiZDczYzgwMGQuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074642763587_21ecce5d4accf371358eb4cbd73c800d.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074642763587_21ecce5d4accf371358eb4cbd73c800d.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY2OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDI4NDk4NDhfMTBiNTY3MDUxMjA5NmU2NTQ3NDhlNTdiMjRhMDRhZmUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074642849848_10b5670512096e654748e57b24a04afe.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074642849848_10b5670512096e654748e57b24a04afe.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA3NTg4ODNfNjQ4YTA0MmY0YjY0MGQwZjU3YTQ0NDFkZDIxMDk1NzAuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640758883_648a042f4b640d0f57a4441dd2109570.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640758883_648a042f4b640d0f57a4441dd2109570.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA4NDkyMzdfZTc2OTliMWJjNmUzOGUwYmY2NWViM2JjYTI4YWU4Y2EuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640849237_e7699b1bc6e38e0bf65eb3bca28ae8ca.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640849237_e7699b1bc6e38e0bf65eb3bca28ae8ca.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDEwNTIwNzBfOWVmYmMxNTg2Y2I1ZTk1Y2M1NGI4NDIxYTYzZjM4MGUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641052070_9efbc1586cb5e95cc54b8421a63f380e.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641052070_9efbc1586cb5e95cc54b8421a63f380e.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDExNDUyNzNfN2JlNWRmM2UxNzc5YWEwNGU4OTBlNDBjYzI0M2NkZWUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641145273_7be5df3e1779aa04e890e40cc243cdee.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641145273_7be5df3e1779aa04e890e40cc243cdee.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA2NTMyODVfNWE4N2FkZjU3Y2UwYzQxODZmZTRmYjE1NzllMzU3YjUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640653285_5a87adf57ce0c4186fe4fb1579e357b5.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640653285_5a87adf57ce0c4186fe4fb1579e357b5.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDExNzM4MjZfNDVhZTczN2Y3MGRmYjJkMzY1YWJiMzk3ZjEzOWQ3MDguanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641173826_45ae737f70dfb2d365abb397f139d708.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641173826_45ae737f70dfb2d365abb397f139d708.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			Mold\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY1NzU1NzhfZTBhNGY1NDczODQzZTU4ZWUxYTc5OTg5ZjM2N2FkYTkuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736575578_e0a4f5473843e58ee1a79989f367ada9.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736575578_e0a4f5473843e58ee1a79989f367ada9.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY3MjE1ODZfMTZiOTE5ODQyMGIzOTlmOWQ4MmMwNThkOTA4MmEzZTAuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUyMTk2NzlfOTFhNmY2OTkzMTQ2OTA2Zjg0NjViNDNkZGQwYzJiM2MuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735219679_91a6f6993146906f8465b43ddd0c2b3c.jpg\'><img width=\"68\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735219679_91a6f6993146906f8465b43ddd0c2b3c.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY3NjE0NTRfYjk4ZDQ2OGIxMzNhYzU5ZWJiZjVlNjJiNjkzNDYyYTQuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736761454_b98d468b133ac59ebbf5e62b693462a4.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736761454_b98d468b133ac59ebbf5e62b693462a4.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY3ODQzMzVfZjkzYmM3ODIwY2ZkYzBiMDE1YzgyMjRiOWExYWNlMTAuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736784335_f93bc7820cfdc0b015c8224b9a1ace10.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736784335_f93bc7820cfdc0b015c8224b9a1ace10.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjkyMTk5NDEzNDlfYjA5NTRlNDRhMjVhN2QxNTQzZWIzM2NlZWFlMjBlZmIuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069219941349_b0954e44a25a7d1543eb33ceeae20efb.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069219941349_b0954e44a25a7d1543eb33ceeae20efb.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUzNDMyMDFfZDI5MjJhYTE2ODBjNTdiZmUyZGE5YWFiYTEyMWNhYTYuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735343201_d2922aa1680c57bfe2da9aaba121caa6.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735343201_d2922aa1680c57bfe2da9aaba121caa6.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU0NDE4ODVfMDg4ZGQ0MTdiNjU5NzgzMzc2YWRmZWIwMDZkMTgxODAuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735441885_088dd417b659783376adfeb006d18180.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735441885_088dd417b659783376adfeb006d18180.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU1OTgxMDFfMGZkZDBhNzczYTIyZDZhZjkyZjY5NGQ3ODY2YjJhNWEuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735598101_0fdd0a773a22d6af92f694d7866b2a5a.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735598101_0fdd0a773a22d6af92f694d7866b2a5a.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU2MzQ2MzJfZGEzZGYxMWNjMWRmYTk3OGM1YjcwZjJlNDQ0MDQ3MTIuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735634632_da3df11cc1dfa978c5b70f2e44404712.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735634632_da3df11cc1dfa978c5b70f2e44404712.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU2OTM5ODdfYmY3MzQ3ZjUzM2VjNzUwYTJjNGY5ZGYxNzYzYjg4ODEuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735693987_bf7347f533ec750a2c4f9df1763b8881.jpg\'><img width=\"84\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735693987_bf7347f533ec750a2c4f9df1763b8881.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU4MzU0OTZfYTcxYWM1MGRkYWMzNjg2N2ZjYTIxY2VlOGM0N2ZlMGEuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735835496_a71ac50ddac36867fca21cee8c47fe0a.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735835496_a71ac50ddac36867fca21cee8c47fe0a.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU4OTM2OTJfNDhmNGE5ZjdjN2E5ZDA1ZGMwMzdhODBhYzFlNTc4MmIuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYwMDk1MTRfYWQ5MDg4N2YyNWQ3MzRlYzJkMjFkOGE2YTYzNGZmMmQuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYxMTA0MjZfYzNlY2UzZWM1NmY5ZThjYzBlNWM5YTk4Zjk3OTJiZmMuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYxNjUzNzJfODI1NjkzMjRkZTFjOGZjYzM3NmNjMGU3MzdjMDUyMGUuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYzMjQ0NzJfMDZmMWVkMWExYmUyYzNhNTkyMzA3MGFmZjdkNWUxMGUuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736324472_06f1ed1a1be2c3a5923070aff7d5e10e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736324472_06f1ed1a1be2c3a5923070aff7d5e10e.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYzOTEwNTFfNGMzY2FlMTZhOGZmNGYyMTZiOGQ1MzY3Mzc3MmRkMDcuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736391051_4c3cae16a8ff4f216b8d53673772dd07.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736391051_4c3cae16a8ff4f216b8d53673772dd07.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY0NTU3NzVfOTdhOTM3ODA3YzgwN2JmNzEzNjk0MTlhMGE1ZDNkMmMuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\'><img width=\"68\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			Machine Details\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjkyMTk5NDkxNzVfZTJhMTA1YmNmMjIzYzgzMmQ2Y2FhYjJkMDNmZTA0MTMuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069219949175_e2a105bcf223c832d6caab2d03fe0413.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069219949175_e2a105bcf223c832d6caab2d03fe0413.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMTMxNjUyNjZfYTE1MjUzZTNhM2UwYTJjOTc4ZWQ2Njc5OTRiOGY0MTUuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799313165266_a15253e3a3e0a2c978ed667994b8f415.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799313165266_a15253e3a3e0a2c978ed667994b8f415.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE2MDQxMTVfNDkzZjgzNTU4NjlkZDNjYTgyYTk2ZTg2ZTI5ODJiZmUuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321604115_493f8355869dd3ca82a96e86e2982bfe.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321604115_493f8355869dd3ca82a96e86e2982bfe.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE2OTYwMjRfNzMzYTg1YmY4MzVhZWEwYThhZmM4YjI2OWQxNDk3MDAuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321696024_733a85bf835aea0a8afc8b269d149700.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321696024_733a85bf835aea0a8afc8b269d149700.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMTMxNzk1NjdfYzNkNjY3NWEwMzc2MmZiOTQzNzZkYzk2ZjA1Mzg5YmQuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799313179567_c3d6675a03762fb94376dc96f05389bd.jpg\'><img width=\"150\" height=\"86\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799313179567_c3d6675a03762fb94376dc96f05389bd.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMTMyNzM0NTRfYWQ3MTZiZWZhZjQzZDJkZjE0NzYyOWQ5NTI2MmM1MjAuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799313273454_ad716befaf43d2df147629d95262c520.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799313273454_ad716befaf43d2df147629d95262c520.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MTYyNDlfOTZiMmZlYTVmZTMzZjRhMjRkODI1MWM4YWFmMjI1ZTEuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363716249_96b2fea5fe33f4a24d8251c8aaf225e1.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363716249_96b2fea5fe33f4a24d8251c8aaf225e1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MjM3NzFfOWVlYzRkNTFmYzE3MjNmYjY2OWY5ODAwODRlMjBhNjEuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363723771_9eec4d51fc1723fb669f980084e20a61.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363723771_9eec4d51fc1723fb669f980084e20a61.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MjM4OTJfNWI3MjAwMDI2MjAyYTFlZmU5NjU5NjEwOWZhZDY4NTcuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363723892_5b7200026202a1efe96596109fad6857.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363723892_5b7200026202a1efe96596109fad6857.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MzUzNjFfOTM1NWZhN2ViOTkxMTIzZGM5OTVkZmFhMmI0Y2Y3NTQuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363735361_9355fa7eb991123dc995dfaa2b4cf754.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363735361_9355fa7eb991123dc995dfaa2b4cf754.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3NDY3NjJfNjI0MWFjNGM2NjI1NTgxYjVkYjliMjRhMWVlMDVmNjgtMS5qcGciLCJzbGlkZXNob3ciOiJjZDlkYmE5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363746762_6241ac4c6625581b5db9b24a1ee05f68-1.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363746762_6241ac4c6625581b5db9b24a1ee05f68-1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3NDE0MDlfZDcyMTI0ZDkwOTEyODBmNjUyOWEyN2E5MTliZTEzYzkuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363741409_d72124d9091280f6529a27a919be13c9.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363741409_d72124d9091280f6529a27a919be13c9.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			Tool\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwMTgzMzRfMTdjNWZhYzk2ZmIyODQzZDc0YTc2Y2M3OWY5YjRmNWMuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\'><img width=\"150\" height=\"135\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwMzczNTNfZGI4NzczMmIzZWE5ZDkzNTM2YmNkM2FlYzY0ODM1YTcuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNTkxNjJfMDUzYjM2NGFiNzYxZGM1YTQ0Mjc5ZmFmNjQzOTUzMjQuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\'><img width=\"70\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNzgzNzJfNTBhYmNlNTI0OWM4YWNkY2ZiZGY4YTA2MzQ4OWUxODYuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNzg1NzBfMGFiNThiNDZiZjY4M2RmNmVjZGIyYzJkODc5NDViYTYuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\'><img width=\"150\" height=\"129\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk2ODQ5NDkwODZfYjI5ZmRiNTAxMTRhMTk2Y2MzZmRjYzllMTJjYWYxMDUuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\'><img width=\"150\" height=\"128\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk2ODQ5NDY2NDFfMTUwMGZiZTE2ZmVjM2ExNGVhZGI4ZTRhZWQxY2Y2M2YuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			Motorbike Parts\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTEzMDA5NzlfMDA1MjcxNmI0NjI4NDNhNWQxOTY4Zjc4NzBjNzJmZDguanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028111300979_0052716b462843a5d1968f7870c72fd8.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028111300979_0052716b462843a5d1968f7870c72fd8.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTIwMDAwMDBfMjQ0MGQ1YWUzNmY3MDA4NDBkMGYwYjU4M2JiY2JkZmEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028112000000_2440d5ae36f700840d0f0b583bbcbdfa.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028112000000_2440d5ae36f700840d0f0b583bbcbdfa.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTI2NzAwMjRfMTgwNmFmZDdkNzBiYmJjNTIzZDYzYjBjNjFlOTEzMGIuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028112670024_1806afd7d70bbbc523d63b0c61e9130b.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028112670024_1806afd7d70bbbc523d63b0c61e9130b.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTMyODc5MTJfZTFhYThiZGI5ZmU3MmIxZmUyMjg4N2NlYWFmYzBkYmQuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028113287912_e1aa8bdb9fe72b1fe22887ceaafc0dbd.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028113287912_e1aa8bdb9fe72b1fe22887ceaafc0dbd.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTM4OTQ3MDRfMzUwNGU0YmYwOTNhZDlmOWQ2MzVjOGJmYTJhYWFlZjYuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028113894704_3504e4bf093ad9f9d635c8bfa2aaaef6.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028113894704_3504e4bf093ad9f9d635c8bfa2aaaef6.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTQ3Njc3MzlfZDAxNGIxMGRhNTA4OGJjN2QzNjc1YTZkMDBlNzdkMzMuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028114767739_d014b10da5088bc7d3675a6d00e77d33.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028114767739_d014b10da5088bc7d3675a6d00e77d33.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE0MzQ1NjFfNmQyY2I3NWVkYmE4MjgzMmUwY2JkOTA2NzM4NTdiZDMuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321434561_6d2cb75edba82832e0cbd90673857bd3.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321434561_6d2cb75edba82832e0cbd90673857bd3.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE0NDgwODhfNmU2OTQ0YzNjZWIzMzU4OTdlMmI0ZjRhZDIwOTc1YjcuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321448088_6e6944c3ceb335897e2b4f4ad20975b7.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321448088_6e6944c3ceb335897e2b4f4ad20975b7.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE1NDg1NTdfMWE1ZTY5YTg5Y2EzNzk1M2UwYzA0Yzg4ZTUyOWQ5NTEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321548557_1a5e69a89ca37953e0c04c88e529d951.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321548557_1a5e69a89ca37953e0c04c88e529d951.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMDk2MzA3MDRfMjlhODJkZjk3ZWE0ZWE3YzM3ODU5Zjk2NjcxNTRkYTEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028109630704_29a82df97ea4ea7c37859f9667154da1.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028109630704_29a82df97ea4ea7c37859f9667154da1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMDk2NzU5ODRfNTExYmI1ODY5MGE3M2FiOWNjMWFkY2QxNDZjYTQ2ZjIuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028109675984_511bb58690a73ab9cc1adcd146ca46f2.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028109675984_511bb58690a73ab9cc1adcd146ca46f2.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTA2MzE0MTVfOWJkMzc1NDUxYjIyNDI3NzZjM2ZhNDdhNWU5MWYzZTEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028110631415_9bd375451b2242776c3fa47a5e91f3e1.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028110631415_9bd375451b2242776c3fa47a5e91f3e1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTExNjcxMDFfNjg1ZGUyZTUzOTViYmY4ZDk3ZTRkMmY4YWE4N2ZlZTMuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028111167101_685de2e5395bbf8d97e4d2f8aa87fee3.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028111167101_685de2e5395bbf8d97e4d2f8aa87fee3.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			Jig\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NDY1OTEzMzg2ODdfZmE1MTRlMTY0ZjJlZTk5NjFjZmVlY2U5YjJhMjk2MmUuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTE0ODI0OTc5ODFfNGZlOGQ1MmM3N2ZiOTcwYWNjYWNhOTkzMTFiM2U1YjguanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNTQzNzc3MTM5OTRfNzMxZjNhYzFmN2YzMjMyNjExMWE0MWY2N2Q0YTJlMzMuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE2NTM3NjdfNzk3Y2FkYTk3Yjk4NjQyZTYyYzkxODU3YzYwYjViNDQuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NDY1OTEzNDkxOTRfZDUwMTBkMTcwMGM3Y2ViNDkxYjk3OGIwMWJlM2RkMjguanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>','Product','','inherit','closed','closed','','2126-revision-v1','','','2025-03-17 03:13:37','2025-03-17 03:13:37','',2126,'https://fe2tech.com/?p=3277',0,'revision','',0),(3278,1,'2025-03-17 03:13:38','2025-03-17 03:13:38','<h5>\n        Our strength lies in mass production of aluminum and steel. We excel in innovation and deliver high-value products to our customers.    </h5>\n			Automotive &amp; Motorcycle\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWI2Mjc3NTE2NjIyMTQxYjY4MTc4ZjY2YmViYWFkZDkzby5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Ab6277516622141b68178f66bebaadd93o.jpg_350x350.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Ab6277516622141b68178f66bebaadd93o.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTQ5NjllZjIzNDNhMjQ0NjA4Y2M1MTFkMWU3YmUyOGUyWC5wbmdfMzUweDM1MC5wbmciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A4969ef2343a244608cc511d1e7be28e2X.png_350x350.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A4969ef2343a244608cc511d1e7be28e2X.png_350x350.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvSDliZTY0NjE0OTRjZjRmZTc5OTgxOTJkYzQ4MzA2NmM5di5wbmdfMzUweDM1MC5wbmciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/H9be6461494cf4fe7998192dc483066c9v.png_350x350.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/H9be6461494cf4fe7998192dc483066c9v.png_350x350.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvSDRjYmFjNDdhZTZjZjQ3MDViOTY2NjY4Y2ExYWJhZDUwOS5wbmdfMzUweDM1MC5wbmciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/H4cbac47ae6cf4705b966668ca1abad509.png_350x350.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/H4cbac47ae6cf4705b966668ca1abad509.png_350x350.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvSDZjMDBiZDIzN2Q4YjQ2ZDRiMDZhMWNjNmVmNzZhY2NmRS5wbmdfMzUweDM1MC5wbmciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/H6c00bd237d8b46d4b06a1cc6ef76accfE.png_350x350.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/H6c00bd237d8b46d4b06a1cc6ef76accfE.png_350x350.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvSDcxYWJlN2E3NjNhMzQ1YWU4N2RjZjcwYzI1YTcwYTMyTS5wbmdfMzUweDM1MC5wbmciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/H71abe7a763a345ae87dcf70c25a70a32M.png_350x350.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/H71abe7a763a345ae87dcf70c25a70a32M.png_350x350.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/2.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/2.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTA0NWZlNDUzNDU2NjQzOTRhMmE4MDQ5OWI0YmQyMTE3aS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A045fe45345664394a2a80499b4bd2117i.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A045fe45345664394a2a80499b4bd2117i.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTg2ZTAzOWRmMWM5ZDRlODA5ZWE1M2RmZDY3NmJhNjdhTy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A86e039df1c9d4e809ea53dfd676ba67aO.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A86e039df1c9d4e809ea53dfd676ba67aO.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTc4NmRjNDI3YWY0NjQ1N2VhOTIzYzQxZWE3Njg4ZjY3US5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A786dc427af46457ea923c41ea7688f67Q.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A786dc427af46457ea923c41ea7688f67Q.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvNi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/6.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/6.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTJlZDVhNWMzZjhmNTQ0Yzg5MTBhM2ZlMjlkYTVlMjk4NC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A2ed5a5c3f8f544c8910a3fe29da5e2984.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A2ed5a5c3f8f544c8910a3fe29da5e2984.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTNjODA2NDY4NTRjZDQ0MDFiNmI3MzdhODBlOGUyOWYyWi5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A3c80646854cd4401b6b737a80e8e29f2Z.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A3c80646854cd4401b6b737a80e8e29f2Z.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTUzZjk0ZmZmYTBlNjRiYThhNDczMzBlODVhMTc5MjE0bC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A53f94fffa0e64ba8a47330e85a179214l.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A53f94fffa0e64ba8a47330e85a179214l.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWE1NTlhYWE4ZThkNDQ4NjhiNzAwOTY3ZTE4MjYzMWUwTy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Aa559aaa8e8d44868b700967e182631e0O.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Aa559aaa8e8d44868b700967e182631e0O.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvNC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/4.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/4.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTI5MjA5ZmNhMTRlMzQ5MTI4NmE3YWUyYTdkNTM1MDY2dC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A29209fca14e3491286a7ae2a7d535066t.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A29209fca14e3491286a7ae2a7d535066t.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWZkNmU1MDE4ZDU0YTRjMzE5YjQ5NDFhZjU3ZTM4ZmMxZS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Afd6e5018d54a4c319b4941af57e38fc1e.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Afd6e5018d54a4c319b4941af57e38fc1e.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTg2MjZkZjVhZTg5YzQ1ODQ4NGNiZGVhYjZiMGEyNzY4RS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A8626df5ae89c458484cbdeab6b0a2768E.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A8626df5ae89c458484cbdeab6b0a2768E.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWVjMmE0Y2Q4OTVlNjQ4YjZiYzcxNzRkODY0ZTEwMzMyOS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Aec2a4cd895e648b6bc7174d864e103329.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Aec2a4cd895e648b6bc7174d864e103329.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/1.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTVmYTcxYjBlZGRmNjQ4MDQ5YzVmMzNkMzMxNzM4NDYwbS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A5fa71b0eddf648049c5f33d331738460m.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A5fa71b0eddf648049c5f33d331738460m.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTliYzE4NzI2OTdkNjQ5ZTdhMjhkMTRjNDhjZDZiNzFicS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A9bc1872697d649e7a28d14c48cd6b71bq.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A9bc1872697d649e7a28d14c48cd6b71bq.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWQwYzc4MmI4NDYxNTQ4NGQ4MzAzYWQ5NjRjZDMwMmE0Qy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Ad0c782b84615484d8303ad964cd302a4C.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Ad0c782b84615484d8303ad964cd302a4C.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWVjM2Y0NGQyYzBjZjQ1MzY4NzBiMTkwOTdiNTAzNWY0QS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Aec3f44d2c0cf4536870b19097b5035f4A.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Aec3f44d2c0cf4536870b19097b5035f4A.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvOC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/8.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/8.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTVkZjYxOWNlODllYzQyMTg5YTVjNGQwNWJiYmE0ZjJkdy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A5df619ce89ec42189a5c4d05bbba4f2dw.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A5df619ce89ec42189a5c4d05bbba4f2dw.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTkyMDcwMTU1OThhZTQ3ZTRiYTU3ZDVkNjc1NWE3OTQ1Si5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A9207015598ae47e4ba57d5d6755a7945J.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A9207015598ae47e4ba57d5d6755a7945J.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWE2NzUxNGNhMTUzYTQzMjA4NjEyNjExYWYxNWFlNjg5dC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Aa67514ca153a43208612611af15ae689t.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Aa67514ca153a43208612611af15ae689t.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWM4YzU3YWY1N2ZjMDRhOWI4YWZiY2Y1MjE0ZDhiMTI1YS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Ac8c57af57fc04a9b8afbcf5214d8b125a.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Ac8c57af57fc04a9b8afbcf5214d8b125a.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWVhMWEyZWE2YzlkMDRiNzg5NzdkMWU4YzkwN2U3MjFjUi5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Aea1a2ea6c9d04b78977d1e8c907e721cR.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Aea1a2ea6c9d04b78977d1e8c907e721cR.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvNS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/5.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/5.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvNy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/7.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/7.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTRmYTIyYjNkYjQ3MDQxNDVhOWM4ZjJiNmQ0MTNiNGI3WS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A4fa22b3db4704145a9c8f2b6d413b4b7Y.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A4fa22b3db4704145a9c8f2b6d413b4b7Y.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQThjZmExNTRjYTcwYTQ2YzU5NjVlOTkzMjU1YjUzZWNiZy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A8cfa154ca70a46c5965e993255b53ecbg.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A8cfa154ca70a46c5965e993255b53ecbg.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTk2N2M2MzRhNTE3YzQ4ZjM4YzIzZDQ3NjZkYjViYmExYS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A967c634a517c48f38c23d4766db5bba1a.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A967c634a517c48f38c23d4766db5bba1a.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTQ2MjQxM2I2ZGUyYjQwMWJhNjBlOTliYmUxZDE1ZTMzSy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A462413b6de2b401ba60e99bbe1d15e33K.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A462413b6de2b401ba60e99bbe1d15e33K.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTY2MTM5OTE0MmE3MjQ3Mjc4YmJmNjlhOWQ2MDA3NTU2Vy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A661399142a7247278bbf69a9d6007556W.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A661399142a7247278bbf69a9d6007556W.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvMTAuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/10.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/10.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTE2ZWI3MWY1NDZjNDRjNGJhMDBjNmFmZTQ2NDY0ZDU5My5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A16eb71f546c44c4ba00c6afe46464d593.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A16eb71f546c44c4ba00c6afe46464d593.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTcyYTIxYmE5NjljODRiOThiNjNiOTg1MzgwYjk3ZWY1Ty5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A72a21ba969c84b98b63b985380b97ef5O.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A72a21ba969c84b98b63b985380b97ef5O.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTk5NTc0ZWJlMWE2YzQzMmFiZWJiOTE2ODBlM2UyMjdlMC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A99574ebe1a6c432abebb91680e3e227e0.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A99574ebe1a6c432abebb91680e3e227e0.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWM2ZDlhM2I3OWE5MDRlZWI5YzkyNWFmYTM3NGVjNTNhQS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Ac6d9a3b79a904eeb9c925afa374ec53aA.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Ac6d9a3b79a904eeb9c925afa374ec53aA.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWRlZjA1YzMyMTIxOTRmMjU5ZjE1NTZjZDUwODFhYjNlZy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Adef05c3212194f259f1556cd5081ab3eg.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Adef05c3212194f259f1556cd5081ab3eg.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvMy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/3.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/3.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvOS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/9.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/9.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTI2OGFhOGY5YjY1YzRjZGY5ZjQ1ZTU5NGYyY2Q4YWQ0TS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A268aa8f9b65c4cdf9f45e594f2cd8ad4M.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A268aa8f9b65c4cdf9f45e594f2cd8ad4M.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTg2NDQzMmYyNTcxNzQzNjg5MzQyYWUxNzNlZTlkYzlmZC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A864432f2571743689342ae173ee9dc9fd.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A864432f2571743689342ae173ee9dc9fd.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWJkNDM4NTFjOTI2NTRiZDk5Y2ZkY2E0NWQ4OTZmYmNiQi5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Abd43851c92654bd99cfdca45d896fbcbB.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Abd43851c92654bd99cfdca45d896fbcbB.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWNkZDEyMjYyOThkZDQ2MTNhYmYwMjFiZGNhYWQzMjBiMC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Acdd1226298dd4613abf021bdcaad320b0.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Acdd1226298dd4613abf021bdcaad320b0.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWU5MWJmN2Y1MWRiMzQwMmViYWZmNjEwYzI5OWU5YWFjRi5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Ae91bf7f51db3402ebaff610c299e9aacF.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Ae91bf7f51db3402ebaff610c299e9aacF.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTA1ZjE4ZDQ3ZTcwOTQ4YWU4Nzk1MTExZDA1NWY0MmZhMi5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A05f18d47e70948ae8795111d055f42fa2.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A05f18d47e70948ae8795111d055f42fa2.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTVjMzc3OTJmMzg0MzQzODhhMDJhMDQ3OWZjYmM0MTIzVC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A5c37792f38434388a02a0479fcbc4123T.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A5c37792f38434388a02a0479fcbc4123T.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQThjNDIwOTkyZjQ3NzQ1NTA5ZjRmMjkyYWM3YmQyMjU4SC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A8c420992f47745509f4f292ac7bd2258H.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A8c420992f47745509f4f292ac7bd2258H.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTEwMDFlNjNlYTU5MTQ5ZjhhODFhYmI5MmQ1ZDVmZTcxMy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A1001e63ea59149f8a81abb92d5d5fe713.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A1001e63ea59149f8a81abb92d5d5fe713.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTM2MzQ2Zjg4MWIxMDQ5OTZiNmMwNzBiNWQyY2ViZmY4dS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A36346f881b104996b6c070b5d2cebff8u.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A36346f881b104996b6c070b5d2cebff8u.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTE1NzE4M2MwN2E3NjRlYjg5NTdiYzRjZDEzOTgyODA4aS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A157183c07a764eb8957bc4cd13982808i.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A157183c07a764eb8957bc4cd13982808i.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			CNC Machined Parts\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rNS5qcGciLCJzbGlkZXNob3ciOiIxODUyY2M5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok5.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok5.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rNC5wbmciLCJzbGlkZXNob3ciOiIxODUyY2M5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok4.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok4.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW1hY2hpbmUyMi5hdmlmIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-machine22.avif\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-machine22.avif\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW1hY2hpbmUzLmpwZyIsInNsaWRlc2hvdyI6IjE4NTJjYzkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-machine3.jpg\'><img width=\"150\" height=\"100\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-machine3.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rMy5wbmciLCJzbGlkZXNob3ciOiIxODUyY2M5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok3.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok3.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rMS5wbmciLCJzbGlkZXNob3ciOiIxODUyY2M5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok1.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok1.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rMi5wbmciLCJzbGlkZXNob3ciOiIxODUyY2M5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok2.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok2.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rNy5wbmciLCJzbGlkZXNob3ciOiIxODUyY2M5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok7.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok7.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rOS5qcGciLCJzbGlkZXNob3ciOiIxODUyY2M5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok9.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok9.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rOC5qcGciLCJzbGlkZXNob3ciOiIxODUyY2M5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok8.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok8.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejU3MDk0NDM0NzY3OTdfY2IzZTllMGQ1OTZhZDYzMzEzNjZiOGE3MTFmNDY5MjYuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z5709443476797_cb3e9e0d596ad6331366b8a711f46926.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z5709443476797_cb3e9e0d596ad6331366b8a711f46926.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			Sheet Metal &amp; Fabrication\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWwxLmpwZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal1.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWwzLmpwZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal3.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal3.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw0LmpwZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal4.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal4.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw1LmpwZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal5.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal5.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw3LmpwZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal7.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal7.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw4LmpwZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal8.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal8.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw5LmpwZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal9.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal9.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWwxMC5qcGciLCJzbGlkZXNob3ciOiJjZDlkYmE5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal10.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal10.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWwyLnBuZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal2.png\'><img width=\"84\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal2.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw2LmpwZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal6.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal6.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			Mold &amp; Die Components\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzYxNjUzNzJfODI1NjkzMjRkZTFjOGZjYzM3NmNjMGU3MzdjMDUyMGUuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzY0NTU3NzVfOTdhOTM3ODA3YzgwN2JmNzEzNjk0MTlhMGE1ZDNkMmMuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\'><img width=\"68\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzU4OTM2OTJfNDhmNGE5ZjdjN2E5ZDA1ZGMwMzdhODBhYzFlNTc4MmIuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzYwMDk1MTRfYWQ5MDg4N2YyNWQ3MzRlYzJkMjFkOGE2YTYzNGZmMmQuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzY3MjE1ODZfMTZiOTE5ODQyMGIzOTlmOWQ4MmMwNThkOTA4MmEzZTAuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzYxMTA0MjZfYzNlY2UzZWM1NmY5ZThjYzBlNWM5YTk4Zjk3OTJiZmMuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			Industrial Fasteners &amp; Bolt\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3dcc60b\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvSU1HXzEyMzcuanBlZyIsInNsaWRlc2hvdyI6IjNkY2M2MGIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/IMG_1237.jpeg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/IMG_1237.jpeg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3dcc60b\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvRFNDMDA4MjIuanBnIiwic2xpZGVzaG93IjoiM2RjYzYwYiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/DSC00822.jpg\'><img width=\"150\" height=\"100\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/DSC00822.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			Tool\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwMTgzMzRfMTdjNWZhYzk2ZmIyODQzZDc0YTc2Y2M3OWY5YjRmNWMuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\'><img width=\"150\" height=\"135\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwMzczNTNfZGI4NzczMmIzZWE5ZDkzNTM2YmNkM2FlYzY0ODM1YTcuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNTkxNjJfMDUzYjM2NGFiNzYxZGM1YTQ0Mjc5ZmFmNjQzOTUzMjQuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\'><img width=\"70\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNzgzNzJfNTBhYmNlNTI0OWM4YWNkY2ZiZGY4YTA2MzQ4OWUxODYuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNzg1NzBfMGFiNThiNDZiZjY4M2RmNmVjZGIyYzJkODc5NDViYTYuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\'><img width=\"150\" height=\"129\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk2ODQ5NDkwODZfYjI5ZmRiNTAxMTRhMTk2Y2MzZmRjYzllMTJjYWYxMDUuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\'><img width=\"150\" height=\"128\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk2ODQ5NDY2NDFfMTUwMGZiZTE2ZmVjM2ExNGVhZGI4ZTRhZWQxY2Y2M2YuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			Jig\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NDY1OTEzMzg2ODdfZmE1MTRlMTY0ZjJlZTk5NjFjZmVlY2U5YjJhMjk2MmUuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTE0ODI0OTc5ODFfNGZlOGQ1MmM3N2ZiOTcwYWNjYWNhOTkzMTFiM2U1YjguanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNTQzNzc3MTM5OTRfNzMxZjNhYzFmN2YzMjMyNjExMWE0MWY2N2Q0YTJlMzMuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE2NTM3NjdfNzk3Y2FkYTk3Yjk4NjQyZTYyYzkxODU3YzYwYjViNDQuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NDY1OTEzNDkxOTRfZDUwMTBkMTcwMGM3Y2ViNDkxYjk3OGIwMWJlM2RkMjguanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>','Product','','inherit','closed','closed','','2126-revision-v1','','','2025-03-17 03:13:38','2025-03-17 03:13:38','',2126,'https://fe2tech.com/?p=3278',0,'revision','',0),(3280,1,'2025-03-17 03:20:07','2025-03-17 03:20:07','<h5>\n        Thế mạnh của chúng tôi nằm ở sản xuất hàng loạt nhôm và thép. Chúng tôi xuất sắc trong việc đổi mới và cung cấp các sản phẩm có giá trị cao cho khách hàng.    </h5>\n			Hàn\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDk5NjUxOTZfODJmZDc2ZGRiYmYzOGQ2NGRhZThhZjExYjIxNTM3YjkuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074649965196_82fd76ddbbf38d64dae8af11b21537b9.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074649965196_82fd76ddbbf38d64dae8af11b21537b9.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY2NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NTI3MjMyMTJfODc3MGYwMjhmZjY0NmYwMTRmMWU5ZjZlZmUzNDk2MmUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074652723212_8770f028ff646f014f1e9f6efe34962e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074652723212_8770f028ff646f014f1e9f6efe34962e.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA5Mzk3MThfYjBmZjZhY2FkMTRiMmFiNWVkMTU4MTcxYzc2ODMzZjkuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640939718_b0ff6acad14b2ab5ed158171c76833f9.jpg\'><img width=\"84\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640939718_b0ff6acad14b2ab5ed158171c76833f9.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDEyOTMxMTNfYjRiMTg2YzY3YjZlNzgyOWRkMmE5MWQ3MzBjZjlhYTcuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641293113_b4b186c67b6e7829dd2a91d730cf9aa7.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641293113_b4b186c67b6e7829dd2a91d730cf9aa7.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY2OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDI3NjM1ODdfMjFlY2NlNWQ0YWNjZjM3MTM1OGViNGNiZDczYzgwMGQuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074642763587_21ecce5d4accf371358eb4cbd73c800d.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074642763587_21ecce5d4accf371358eb4cbd73c800d.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY2OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDI4NDk4NDhfMTBiNTY3MDUxMjA5NmU2NTQ3NDhlNTdiMjRhMDRhZmUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074642849848_10b5670512096e654748e57b24a04afe.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074642849848_10b5670512096e654748e57b24a04afe.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA3NTg4ODNfNjQ4YTA0MmY0YjY0MGQwZjU3YTQ0NDFkZDIxMDk1NzAuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640758883_648a042f4b640d0f57a4441dd2109570.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640758883_648a042f4b640d0f57a4441dd2109570.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA4NDkyMzdfZTc2OTliMWJjNmUzOGUwYmY2NWViM2JjYTI4YWU4Y2EuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640849237_e7699b1bc6e38e0bf65eb3bca28ae8ca.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640849237_e7699b1bc6e38e0bf65eb3bca28ae8ca.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDEwNTIwNzBfOWVmYmMxNTg2Y2I1ZTk1Y2M1NGI4NDIxYTYzZjM4MGUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641052070_9efbc1586cb5e95cc54b8421a63f380e.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641052070_9efbc1586cb5e95cc54b8421a63f380e.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDExNDUyNzNfN2JlNWRmM2UxNzc5YWEwNGU4OTBlNDBjYzI0M2NkZWUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641145273_7be5df3e1779aa04e890e40cc243cdee.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641145273_7be5df3e1779aa04e890e40cc243cdee.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA2NTMyODVfNWE4N2FkZjU3Y2UwYzQxODZmZTRmYjE1NzllMzU3YjUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640653285_5a87adf57ce0c4186fe4fb1579e357b5.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640653285_5a87adf57ce0c4186fe4fb1579e357b5.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDExNzM4MjZfNDVhZTczN2Y3MGRmYjJkMzY1YWJiMzk3ZjEzOWQ3MDguanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641173826_45ae737f70dfb2d365abb397f139d708.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641173826_45ae737f70dfb2d365abb397f139d708.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			Khuôn\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY1NzU1NzhfZTBhNGY1NDczODQzZTU4ZWUxYTc5OTg5ZjM2N2FkYTkuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736575578_e0a4f5473843e58ee1a79989f367ada9.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736575578_e0a4f5473843e58ee1a79989f367ada9.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY3MjE1ODZfMTZiOTE5ODQyMGIzOTlmOWQ4MmMwNThkOTA4MmEzZTAuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUyMTk2NzlfOTFhNmY2OTkzMTQ2OTA2Zjg0NjViNDNkZGQwYzJiM2MuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735219679_91a6f6993146906f8465b43ddd0c2b3c.jpg\'><img width=\"68\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735219679_91a6f6993146906f8465b43ddd0c2b3c.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY3NjE0NTRfYjk4ZDQ2OGIxMzNhYzU5ZWJiZjVlNjJiNjkzNDYyYTQuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736761454_b98d468b133ac59ebbf5e62b693462a4.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736761454_b98d468b133ac59ebbf5e62b693462a4.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY3ODQzMzVfZjkzYmM3ODIwY2ZkYzBiMDE1YzgyMjRiOWExYWNlMTAuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736784335_f93bc7820cfdc0b015c8224b9a1ace10.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736784335_f93bc7820cfdc0b015c8224b9a1ace10.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjkyMTk5NDEzNDlfYjA5NTRlNDRhMjVhN2QxNTQzZWIzM2NlZWFlMjBlZmIuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069219941349_b0954e44a25a7d1543eb33ceeae20efb.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069219941349_b0954e44a25a7d1543eb33ceeae20efb.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUzNDMyMDFfZDI5MjJhYTE2ODBjNTdiZmUyZGE5YWFiYTEyMWNhYTYuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735343201_d2922aa1680c57bfe2da9aaba121caa6.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735343201_d2922aa1680c57bfe2da9aaba121caa6.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU0NDE4ODVfMDg4ZGQ0MTdiNjU5NzgzMzc2YWRmZWIwMDZkMTgxODAuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735441885_088dd417b659783376adfeb006d18180.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735441885_088dd417b659783376adfeb006d18180.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU1OTgxMDFfMGZkZDBhNzczYTIyZDZhZjkyZjY5NGQ3ODY2YjJhNWEuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735598101_0fdd0a773a22d6af92f694d7866b2a5a.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735598101_0fdd0a773a22d6af92f694d7866b2a5a.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU2MzQ2MzJfZGEzZGYxMWNjMWRmYTk3OGM1YjcwZjJlNDQ0MDQ3MTIuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735634632_da3df11cc1dfa978c5b70f2e44404712.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735634632_da3df11cc1dfa978c5b70f2e44404712.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU2OTM5ODdfYmY3MzQ3ZjUzM2VjNzUwYTJjNGY5ZGYxNzYzYjg4ODEuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735693987_bf7347f533ec750a2c4f9df1763b8881.jpg\'><img width=\"84\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735693987_bf7347f533ec750a2c4f9df1763b8881.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU4MzU0OTZfYTcxYWM1MGRkYWMzNjg2N2ZjYTIxY2VlOGM0N2ZlMGEuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735835496_a71ac50ddac36867fca21cee8c47fe0a.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735835496_a71ac50ddac36867fca21cee8c47fe0a.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU4OTM2OTJfNDhmNGE5ZjdjN2E5ZDA1ZGMwMzdhODBhYzFlNTc4MmIuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYwMDk1MTRfYWQ5MDg4N2YyNWQ3MzRlYzJkMjFkOGE2YTYzNGZmMmQuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYxMTA0MjZfYzNlY2UzZWM1NmY5ZThjYzBlNWM5YTk4Zjk3OTJiZmMuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYxNjUzNzJfODI1NjkzMjRkZTFjOGZjYzM3NmNjMGU3MzdjMDUyMGUuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYzMjQ0NzJfMDZmMWVkMWExYmUyYzNhNTkyMzA3MGFmZjdkNWUxMGUuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736324472_06f1ed1a1be2c3a5923070aff7d5e10e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736324472_06f1ed1a1be2c3a5923070aff7d5e10e.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYzOTEwNTFfNGMzY2FlMTZhOGZmNGYyMTZiOGQ1MzY3Mzc3MmRkMDcuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736391051_4c3cae16a8ff4f216b8d53673772dd07.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736391051_4c3cae16a8ff4f216b8d53673772dd07.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY0NTU3NzVfOTdhOTM3ODA3YzgwN2JmNzEzNjk0MTlhMGE1ZDNkMmMuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\'><img width=\"68\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			Chi tiết máy\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjkyMTk5NDkxNzVfZTJhMTA1YmNmMjIzYzgzMmQ2Y2FhYjJkMDNmZTA0MTMuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069219949175_e2a105bcf223c832d6caab2d03fe0413.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069219949175_e2a105bcf223c832d6caab2d03fe0413.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMTMxNjUyNjZfYTE1MjUzZTNhM2UwYTJjOTc4ZWQ2Njc5OTRiOGY0MTUuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799313165266_a15253e3a3e0a2c978ed667994b8f415.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799313165266_a15253e3a3e0a2c978ed667994b8f415.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE2MDQxMTVfNDkzZjgzNTU4NjlkZDNjYTgyYTk2ZTg2ZTI5ODJiZmUuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321604115_493f8355869dd3ca82a96e86e2982bfe.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321604115_493f8355869dd3ca82a96e86e2982bfe.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE2OTYwMjRfNzMzYTg1YmY4MzVhZWEwYThhZmM4YjI2OWQxNDk3MDAuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321696024_733a85bf835aea0a8afc8b269d149700.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321696024_733a85bf835aea0a8afc8b269d149700.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMTMxNzk1NjdfYzNkNjY3NWEwMzc2MmZiOTQzNzZkYzk2ZjA1Mzg5YmQuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799313179567_c3d6675a03762fb94376dc96f05389bd.jpg\'><img width=\"150\" height=\"86\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799313179567_c3d6675a03762fb94376dc96f05389bd.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMTMyNzM0NTRfYWQ3MTZiZWZhZjQzZDJkZjE0NzYyOWQ5NTI2MmM1MjAuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799313273454_ad716befaf43d2df147629d95262c520.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799313273454_ad716befaf43d2df147629d95262c520.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MTYyNDlfOTZiMmZlYTVmZTMzZjRhMjRkODI1MWM4YWFmMjI1ZTEuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363716249_96b2fea5fe33f4a24d8251c8aaf225e1.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363716249_96b2fea5fe33f4a24d8251c8aaf225e1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MjM3NzFfOWVlYzRkNTFmYzE3MjNmYjY2OWY5ODAwODRlMjBhNjEuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363723771_9eec4d51fc1723fb669f980084e20a61.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363723771_9eec4d51fc1723fb669f980084e20a61.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MjM4OTJfNWI3MjAwMDI2MjAyYTFlZmU5NjU5NjEwOWZhZDY4NTcuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363723892_5b7200026202a1efe96596109fad6857.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363723892_5b7200026202a1efe96596109fad6857.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MzUzNjFfOTM1NWZhN2ViOTkxMTIzZGM5OTVkZmFhMmI0Y2Y3NTQuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363735361_9355fa7eb991123dc995dfaa2b4cf754.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363735361_9355fa7eb991123dc995dfaa2b4cf754.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3NDY3NjJfNjI0MWFjNGM2NjI1NTgxYjVkYjliMjRhMWVlMDVmNjgtMS5qcGciLCJzbGlkZXNob3ciOiJjZDlkYmE5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363746762_6241ac4c6625581b5db9b24a1ee05f68-1.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363746762_6241ac4c6625581b5db9b24a1ee05f68-1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3NDE0MDlfZDcyMTI0ZDkwOTEyODBmNjUyOWEyN2E5MTliZTEzYzkuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363741409_d72124d9091280f6529a27a919be13c9.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363741409_d72124d9091280f6529a27a919be13c9.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			Dụng cụ\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwMTgzMzRfMTdjNWZhYzk2ZmIyODQzZDc0YTc2Y2M3OWY5YjRmNWMuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\'><img width=\"150\" height=\"135\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwMzczNTNfZGI4NzczMmIzZWE5ZDkzNTM2YmNkM2FlYzY0ODM1YTcuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNTkxNjJfMDUzYjM2NGFiNzYxZGM1YTQ0Mjc5ZmFmNjQzOTUzMjQuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\'><img width=\"70\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNzgzNzJfNTBhYmNlNTI0OWM4YWNkY2ZiZGY4YTA2MzQ4OWUxODYuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNzg1NzBfMGFiNThiNDZiZjY4M2RmNmVjZGIyYzJkODc5NDViYTYuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\'><img width=\"150\" height=\"129\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk2ODQ5NDkwODZfYjI5ZmRiNTAxMTRhMTk2Y2MzZmRjYzllMTJjYWYxMDUuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\'><img width=\"150\" height=\"128\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk2ODQ5NDY2NDFfMTUwMGZiZTE2ZmVjM2ExNGVhZGI4ZTRhZWQxY2Y2M2YuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			Phụ tùng xe máy\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTEzMDA5NzlfMDA1MjcxNmI0NjI4NDNhNWQxOTY4Zjc4NzBjNzJmZDguanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028111300979_0052716b462843a5d1968f7870c72fd8.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028111300979_0052716b462843a5d1968f7870c72fd8.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTIwMDAwMDBfMjQ0MGQ1YWUzNmY3MDA4NDBkMGYwYjU4M2JiY2JkZmEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028112000000_2440d5ae36f700840d0f0b583bbcbdfa.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028112000000_2440d5ae36f700840d0f0b583bbcbdfa.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTI2NzAwMjRfMTgwNmFmZDdkNzBiYmJjNTIzZDYzYjBjNjFlOTEzMGIuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028112670024_1806afd7d70bbbc523d63b0c61e9130b.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028112670024_1806afd7d70bbbc523d63b0c61e9130b.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTMyODc5MTJfZTFhYThiZGI5ZmU3MmIxZmUyMjg4N2NlYWFmYzBkYmQuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028113287912_e1aa8bdb9fe72b1fe22887ceaafc0dbd.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028113287912_e1aa8bdb9fe72b1fe22887ceaafc0dbd.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTM4OTQ3MDRfMzUwNGU0YmYwOTNhZDlmOWQ2MzVjOGJmYTJhYWFlZjYuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028113894704_3504e4bf093ad9f9d635c8bfa2aaaef6.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028113894704_3504e4bf093ad9f9d635c8bfa2aaaef6.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTQ3Njc3MzlfZDAxNGIxMGRhNTA4OGJjN2QzNjc1YTZkMDBlNzdkMzMuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028114767739_d014b10da5088bc7d3675a6d00e77d33.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028114767739_d014b10da5088bc7d3675a6d00e77d33.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE0MzQ1NjFfNmQyY2I3NWVkYmE4MjgzMmUwY2JkOTA2NzM4NTdiZDMuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321434561_6d2cb75edba82832e0cbd90673857bd3.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321434561_6d2cb75edba82832e0cbd90673857bd3.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE0NDgwODhfNmU2OTQ0YzNjZWIzMzU4OTdlMmI0ZjRhZDIwOTc1YjcuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321448088_6e6944c3ceb335897e2b4f4ad20975b7.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321448088_6e6944c3ceb335897e2b4f4ad20975b7.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE1NDg1NTdfMWE1ZTY5YTg5Y2EzNzk1M2UwYzA0Yzg4ZTUyOWQ5NTEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321548557_1a5e69a89ca37953e0c04c88e529d951.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321548557_1a5e69a89ca37953e0c04c88e529d951.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMDk2MzA3MDRfMjlhODJkZjk3ZWE0ZWE3YzM3ODU5Zjk2NjcxNTRkYTEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028109630704_29a82df97ea4ea7c37859f9667154da1.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028109630704_29a82df97ea4ea7c37859f9667154da1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMDk2NzU5ODRfNTExYmI1ODY5MGE3M2FiOWNjMWFkY2QxNDZjYTQ2ZjIuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028109675984_511bb58690a73ab9cc1adcd146ca46f2.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028109675984_511bb58690a73ab9cc1adcd146ca46f2.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTA2MzE0MTVfOWJkMzc1NDUxYjIyNDI3NzZjM2ZhNDdhNWU5MWYzZTEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028110631415_9bd375451b2242776c3fa47a5e91f3e1.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028110631415_9bd375451b2242776c3fa47a5e91f3e1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTExNjcxMDFfNjg1ZGUyZTUzOTViYmY4ZDk3ZTRkMmY4YWE4N2ZlZTMuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028111167101_685de2e5395bbf8d97e4d2f8aa87fee3.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028111167101_685de2e5395bbf8d97e4d2f8aa87fee3.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			Khuôn jig\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NDY1OTEzMzg2ODdfZmE1MTRlMTY0ZjJlZTk5NjFjZmVlY2U5YjJhMjk2MmUuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTE0ODI0OTc5ODFfNGZlOGQ1MmM3N2ZiOTcwYWNjYWNhOTkzMTFiM2U1YjguanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNTQzNzc3MTM5OTRfNzMxZjNhYzFmN2YzMjMyNjExMWE0MWY2N2Q0YTJlMzMuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE2NTM3NjdfNzk3Y2FkYTk3Yjk4NjQyZTYyYzkxODU3YzYwYjViNDQuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NDY1OTEzNDkxOTRfZDUwMTBkMTcwMGM3Y2ViNDkxYjk3OGIwMWJlM2RkMjguanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>','Sản phẩm','','inherit','closed','closed','','2998-revision-v1','','','2025-03-17 03:20:07','2025-03-17 03:20:07','',2998,'https://fe2tech.com/?p=3280',0,'revision','',0),(3281,1,'2025-03-17 03:20:08','2025-03-17 03:20:08','<h5>\n        Thế mạnh của chúng tôi nằm ở sản xuất hàng loạt nhôm và thép. Chúng tôi xuất sắc trong việc đổi mới và cung cấp các sản phẩm có giá trị cao cho khách hàng.    </h5>\n			Hàn\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDk5NjUxOTZfODJmZDc2ZGRiYmYzOGQ2NGRhZThhZjExYjIxNTM3YjkuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074649965196_82fd76ddbbf38d64dae8af11b21537b9.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074649965196_82fd76ddbbf38d64dae8af11b21537b9.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY2NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NTI3MjMyMTJfODc3MGYwMjhmZjY0NmYwMTRmMWU5ZjZlZmUzNDk2MmUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074652723212_8770f028ff646f014f1e9f6efe34962e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074652723212_8770f028ff646f014f1e9f6efe34962e.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA5Mzk3MThfYjBmZjZhY2FkMTRiMmFiNWVkMTU4MTcxYzc2ODMzZjkuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640939718_b0ff6acad14b2ab5ed158171c76833f9.jpg\'><img width=\"84\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640939718_b0ff6acad14b2ab5ed158171c76833f9.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDEyOTMxMTNfYjRiMTg2YzY3YjZlNzgyOWRkMmE5MWQ3MzBjZjlhYTcuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641293113_b4b186c67b6e7829dd2a91d730cf9aa7.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641293113_b4b186c67b6e7829dd2a91d730cf9aa7.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY2OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDI3NjM1ODdfMjFlY2NlNWQ0YWNjZjM3MTM1OGViNGNiZDczYzgwMGQuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074642763587_21ecce5d4accf371358eb4cbd73c800d.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074642763587_21ecce5d4accf371358eb4cbd73c800d.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY2OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDI4NDk4NDhfMTBiNTY3MDUxMjA5NmU2NTQ3NDhlNTdiMjRhMDRhZmUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074642849848_10b5670512096e654748e57b24a04afe.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074642849848_10b5670512096e654748e57b24a04afe.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA3NTg4ODNfNjQ4YTA0MmY0YjY0MGQwZjU3YTQ0NDFkZDIxMDk1NzAuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640758883_648a042f4b640d0f57a4441dd2109570.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640758883_648a042f4b640d0f57a4441dd2109570.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA4NDkyMzdfZTc2OTliMWJjNmUzOGUwYmY2NWViM2JjYTI4YWU4Y2EuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640849237_e7699b1bc6e38e0bf65eb3bca28ae8ca.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640849237_e7699b1bc6e38e0bf65eb3bca28ae8ca.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDEwNTIwNzBfOWVmYmMxNTg2Y2I1ZTk1Y2M1NGI4NDIxYTYzZjM4MGUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641052070_9efbc1586cb5e95cc54b8421a63f380e.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641052070_9efbc1586cb5e95cc54b8421a63f380e.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDExNDUyNzNfN2JlNWRmM2UxNzc5YWEwNGU4OTBlNDBjYzI0M2NkZWUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641145273_7be5df3e1779aa04e890e40cc243cdee.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641145273_7be5df3e1779aa04e890e40cc243cdee.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA2NTMyODVfNWE4N2FkZjU3Y2UwYzQxODZmZTRmYjE1NzllMzU3YjUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640653285_5a87adf57ce0c4186fe4fb1579e357b5.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640653285_5a87adf57ce0c4186fe4fb1579e357b5.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDExNzM4MjZfNDVhZTczN2Y3MGRmYjJkMzY1YWJiMzk3ZjEzOWQ3MDguanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641173826_45ae737f70dfb2d365abb397f139d708.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641173826_45ae737f70dfb2d365abb397f139d708.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			Khuôn\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY1NzU1NzhfZTBhNGY1NDczODQzZTU4ZWUxYTc5OTg5ZjM2N2FkYTkuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736575578_e0a4f5473843e58ee1a79989f367ada9.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736575578_e0a4f5473843e58ee1a79989f367ada9.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY3MjE1ODZfMTZiOTE5ODQyMGIzOTlmOWQ4MmMwNThkOTA4MmEzZTAuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUyMTk2NzlfOTFhNmY2OTkzMTQ2OTA2Zjg0NjViNDNkZGQwYzJiM2MuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735219679_91a6f6993146906f8465b43ddd0c2b3c.jpg\'><img width=\"68\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735219679_91a6f6993146906f8465b43ddd0c2b3c.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY3NjE0NTRfYjk4ZDQ2OGIxMzNhYzU5ZWJiZjVlNjJiNjkzNDYyYTQuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736761454_b98d468b133ac59ebbf5e62b693462a4.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736761454_b98d468b133ac59ebbf5e62b693462a4.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY3ODQzMzVfZjkzYmM3ODIwY2ZkYzBiMDE1YzgyMjRiOWExYWNlMTAuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736784335_f93bc7820cfdc0b015c8224b9a1ace10.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736784335_f93bc7820cfdc0b015c8224b9a1ace10.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjkyMTk5NDEzNDlfYjA5NTRlNDRhMjVhN2QxNTQzZWIzM2NlZWFlMjBlZmIuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069219941349_b0954e44a25a7d1543eb33ceeae20efb.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069219941349_b0954e44a25a7d1543eb33ceeae20efb.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUzNDMyMDFfZDI5MjJhYTE2ODBjNTdiZmUyZGE5YWFiYTEyMWNhYTYuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735343201_d2922aa1680c57bfe2da9aaba121caa6.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735343201_d2922aa1680c57bfe2da9aaba121caa6.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU0NDE4ODVfMDg4ZGQ0MTdiNjU5NzgzMzc2YWRmZWIwMDZkMTgxODAuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735441885_088dd417b659783376adfeb006d18180.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735441885_088dd417b659783376adfeb006d18180.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU1OTgxMDFfMGZkZDBhNzczYTIyZDZhZjkyZjY5NGQ3ODY2YjJhNWEuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735598101_0fdd0a773a22d6af92f694d7866b2a5a.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735598101_0fdd0a773a22d6af92f694d7866b2a5a.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU2MzQ2MzJfZGEzZGYxMWNjMWRmYTk3OGM1YjcwZjJlNDQ0MDQ3MTIuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735634632_da3df11cc1dfa978c5b70f2e44404712.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735634632_da3df11cc1dfa978c5b70f2e44404712.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU2OTM5ODdfYmY3MzQ3ZjUzM2VjNzUwYTJjNGY5ZGYxNzYzYjg4ODEuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735693987_bf7347f533ec750a2c4f9df1763b8881.jpg\'><img width=\"84\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735693987_bf7347f533ec750a2c4f9df1763b8881.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU4MzU0OTZfYTcxYWM1MGRkYWMzNjg2N2ZjYTIxY2VlOGM0N2ZlMGEuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735835496_a71ac50ddac36867fca21cee8c47fe0a.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735835496_a71ac50ddac36867fca21cee8c47fe0a.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU4OTM2OTJfNDhmNGE5ZjdjN2E5ZDA1ZGMwMzdhODBhYzFlNTc4MmIuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYwMDk1MTRfYWQ5MDg4N2YyNWQ3MzRlYzJkMjFkOGE2YTYzNGZmMmQuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYxMTA0MjZfYzNlY2UzZWM1NmY5ZThjYzBlNWM5YTk4Zjk3OTJiZmMuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYxNjUzNzJfODI1NjkzMjRkZTFjOGZjYzM3NmNjMGU3MzdjMDUyMGUuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYzMjQ0NzJfMDZmMWVkMWExYmUyYzNhNTkyMzA3MGFmZjdkNWUxMGUuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736324472_06f1ed1a1be2c3a5923070aff7d5e10e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736324472_06f1ed1a1be2c3a5923070aff7d5e10e.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYzOTEwNTFfNGMzY2FlMTZhOGZmNGYyMTZiOGQ1MzY3Mzc3MmRkMDcuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736391051_4c3cae16a8ff4f216b8d53673772dd07.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736391051_4c3cae16a8ff4f216b8d53673772dd07.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY0NTU3NzVfOTdhOTM3ODA3YzgwN2JmNzEzNjk0MTlhMGE1ZDNkMmMuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\'><img width=\"68\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			Chi tiết máy\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjkyMTk5NDkxNzVfZTJhMTA1YmNmMjIzYzgzMmQ2Y2FhYjJkMDNmZTA0MTMuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069219949175_e2a105bcf223c832d6caab2d03fe0413.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069219949175_e2a105bcf223c832d6caab2d03fe0413.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMTMxNjUyNjZfYTE1MjUzZTNhM2UwYTJjOTc4ZWQ2Njc5OTRiOGY0MTUuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799313165266_a15253e3a3e0a2c978ed667994b8f415.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799313165266_a15253e3a3e0a2c978ed667994b8f415.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE2MDQxMTVfNDkzZjgzNTU4NjlkZDNjYTgyYTk2ZTg2ZTI5ODJiZmUuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321604115_493f8355869dd3ca82a96e86e2982bfe.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321604115_493f8355869dd3ca82a96e86e2982bfe.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE2OTYwMjRfNzMzYTg1YmY4MzVhZWEwYThhZmM4YjI2OWQxNDk3MDAuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321696024_733a85bf835aea0a8afc8b269d149700.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321696024_733a85bf835aea0a8afc8b269d149700.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMTMxNzk1NjdfYzNkNjY3NWEwMzc2MmZiOTQzNzZkYzk2ZjA1Mzg5YmQuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799313179567_c3d6675a03762fb94376dc96f05389bd.jpg\'><img width=\"150\" height=\"86\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799313179567_c3d6675a03762fb94376dc96f05389bd.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMTMyNzM0NTRfYWQ3MTZiZWZhZjQzZDJkZjE0NzYyOWQ5NTI2MmM1MjAuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799313273454_ad716befaf43d2df147629d95262c520.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799313273454_ad716befaf43d2df147629d95262c520.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MTYyNDlfOTZiMmZlYTVmZTMzZjRhMjRkODI1MWM4YWFmMjI1ZTEuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363716249_96b2fea5fe33f4a24d8251c8aaf225e1.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363716249_96b2fea5fe33f4a24d8251c8aaf225e1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MjM3NzFfOWVlYzRkNTFmYzE3MjNmYjY2OWY5ODAwODRlMjBhNjEuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363723771_9eec4d51fc1723fb669f980084e20a61.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363723771_9eec4d51fc1723fb669f980084e20a61.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MjM4OTJfNWI3MjAwMDI2MjAyYTFlZmU5NjU5NjEwOWZhZDY4NTcuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363723892_5b7200026202a1efe96596109fad6857.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363723892_5b7200026202a1efe96596109fad6857.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MzUzNjFfOTM1NWZhN2ViOTkxMTIzZGM5OTVkZmFhMmI0Y2Y3NTQuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363735361_9355fa7eb991123dc995dfaa2b4cf754.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363735361_9355fa7eb991123dc995dfaa2b4cf754.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3NDY3NjJfNjI0MWFjNGM2NjI1NTgxYjVkYjliMjRhMWVlMDVmNjgtMS5qcGciLCJzbGlkZXNob3ciOiJjZDlkYmE5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363746762_6241ac4c6625581b5db9b24a1ee05f68-1.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363746762_6241ac4c6625581b5db9b24a1ee05f68-1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3NDE0MDlfZDcyMTI0ZDkwOTEyODBmNjUyOWEyN2E5MTliZTEzYzkuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363741409_d72124d9091280f6529a27a919be13c9.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363741409_d72124d9091280f6529a27a919be13c9.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			Dụng cụ\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwMTgzMzRfMTdjNWZhYzk2ZmIyODQzZDc0YTc2Y2M3OWY5YjRmNWMuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\'><img width=\"150\" height=\"135\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwMzczNTNfZGI4NzczMmIzZWE5ZDkzNTM2YmNkM2FlYzY0ODM1YTcuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNTkxNjJfMDUzYjM2NGFiNzYxZGM1YTQ0Mjc5ZmFmNjQzOTUzMjQuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\'><img width=\"70\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNzgzNzJfNTBhYmNlNTI0OWM4YWNkY2ZiZGY4YTA2MzQ4OWUxODYuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNzg1NzBfMGFiNThiNDZiZjY4M2RmNmVjZGIyYzJkODc5NDViYTYuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\'><img width=\"150\" height=\"129\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk2ODQ5NDkwODZfYjI5ZmRiNTAxMTRhMTk2Y2MzZmRjYzllMTJjYWYxMDUuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\'><img width=\"150\" height=\"128\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk2ODQ5NDY2NDFfMTUwMGZiZTE2ZmVjM2ExNGVhZGI4ZTRhZWQxY2Y2M2YuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			Phụ tùng xe máy\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTEzMDA5NzlfMDA1MjcxNmI0NjI4NDNhNWQxOTY4Zjc4NzBjNzJmZDguanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028111300979_0052716b462843a5d1968f7870c72fd8.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028111300979_0052716b462843a5d1968f7870c72fd8.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTIwMDAwMDBfMjQ0MGQ1YWUzNmY3MDA4NDBkMGYwYjU4M2JiY2JkZmEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028112000000_2440d5ae36f700840d0f0b583bbcbdfa.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028112000000_2440d5ae36f700840d0f0b583bbcbdfa.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTI2NzAwMjRfMTgwNmFmZDdkNzBiYmJjNTIzZDYzYjBjNjFlOTEzMGIuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028112670024_1806afd7d70bbbc523d63b0c61e9130b.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028112670024_1806afd7d70bbbc523d63b0c61e9130b.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTMyODc5MTJfZTFhYThiZGI5ZmU3MmIxZmUyMjg4N2NlYWFmYzBkYmQuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028113287912_e1aa8bdb9fe72b1fe22887ceaafc0dbd.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028113287912_e1aa8bdb9fe72b1fe22887ceaafc0dbd.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTM4OTQ3MDRfMzUwNGU0YmYwOTNhZDlmOWQ2MzVjOGJmYTJhYWFlZjYuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028113894704_3504e4bf093ad9f9d635c8bfa2aaaef6.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028113894704_3504e4bf093ad9f9d635c8bfa2aaaef6.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTQ3Njc3MzlfZDAxNGIxMGRhNTA4OGJjN2QzNjc1YTZkMDBlNzdkMzMuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028114767739_d014b10da5088bc7d3675a6d00e77d33.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028114767739_d014b10da5088bc7d3675a6d00e77d33.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE0MzQ1NjFfNmQyY2I3NWVkYmE4MjgzMmUwY2JkOTA2NzM4NTdiZDMuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321434561_6d2cb75edba82832e0cbd90673857bd3.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321434561_6d2cb75edba82832e0cbd90673857bd3.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE0NDgwODhfNmU2OTQ0YzNjZWIzMzU4OTdlMmI0ZjRhZDIwOTc1YjcuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321448088_6e6944c3ceb335897e2b4f4ad20975b7.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321448088_6e6944c3ceb335897e2b4f4ad20975b7.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE1NDg1NTdfMWE1ZTY5YTg5Y2EzNzk1M2UwYzA0Yzg4ZTUyOWQ5NTEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321548557_1a5e69a89ca37953e0c04c88e529d951.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321548557_1a5e69a89ca37953e0c04c88e529d951.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMDk2MzA3MDRfMjlhODJkZjk3ZWE0ZWE3YzM3ODU5Zjk2NjcxNTRkYTEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028109630704_29a82df97ea4ea7c37859f9667154da1.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028109630704_29a82df97ea4ea7c37859f9667154da1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMDk2NzU5ODRfNTExYmI1ODY5MGE3M2FiOWNjMWFkY2QxNDZjYTQ2ZjIuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028109675984_511bb58690a73ab9cc1adcd146ca46f2.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028109675984_511bb58690a73ab9cc1adcd146ca46f2.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTA2MzE0MTVfOWJkMzc1NDUxYjIyNDI3NzZjM2ZhNDdhNWU5MWYzZTEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028110631415_9bd375451b2242776c3fa47a5e91f3e1.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028110631415_9bd375451b2242776c3fa47a5e91f3e1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTExNjcxMDFfNjg1ZGUyZTUzOTViYmY4ZDk3ZTRkMmY4YWE4N2ZlZTMuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028111167101_685de2e5395bbf8d97e4d2f8aa87fee3.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028111167101_685de2e5395bbf8d97e4d2f8aa87fee3.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			Khuôn jig\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NDY1OTEzMzg2ODdfZmE1MTRlMTY0ZjJlZTk5NjFjZmVlY2U5YjJhMjk2MmUuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTE0ODI0OTc5ODFfNGZlOGQ1MmM3N2ZiOTcwYWNjYWNhOTkzMTFiM2U1YjguanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNTQzNzc3MTM5OTRfNzMxZjNhYzFmN2YzMjMyNjExMWE0MWY2N2Q0YTJlMzMuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE2NTM3NjdfNzk3Y2FkYTk3Yjk4NjQyZTYyYzkxODU3YzYwYjViNDQuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NDY1OTEzNDkxOTRfZDUwMTBkMTcwMGM3Y2ViNDkxYjk3OGIwMWJlM2RkMjguanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>','Sản phẩm','','inherit','closed','closed','','2998-revision-v1','','','2025-03-17 03:20:08','2025-03-17 03:20:08','',2998,'https://fe2tech.com/?p=3281',0,'revision','',0),(3282,1,'2025-03-17 03:20:09','2025-03-17 03:20:09','<h5>\n        Thế mạnh của chúng tôi nằm ở sản xuất hàng loạt nhôm và thép. Chúng tôi xuất sắc trong việc đổi mới và cung cấp các sản phẩm có giá trị cao cho khách hàng.    </h5>\n			Ô tô &amp; Xe máy\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWI2Mjc3NTE2NjIyMTQxYjY4MTc4ZjY2YmViYWFkZDkzby5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Ab6277516622141b68178f66bebaadd93o.jpg_350x350.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Ab6277516622141b68178f66bebaadd93o.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTQ5NjllZjIzNDNhMjQ0NjA4Y2M1MTFkMWU3YmUyOGUyWC5wbmdfMzUweDM1MC5wbmciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A4969ef2343a244608cc511d1e7be28e2X.png_350x350.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A4969ef2343a244608cc511d1e7be28e2X.png_350x350.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvSDliZTY0NjE0OTRjZjRmZTc5OTgxOTJkYzQ4MzA2NmM5di5wbmdfMzUweDM1MC5wbmciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/H9be6461494cf4fe7998192dc483066c9v.png_350x350.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/H9be6461494cf4fe7998192dc483066c9v.png_350x350.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvSDRjYmFjNDdhZTZjZjQ3MDViOTY2NjY4Y2ExYWJhZDUwOS5wbmdfMzUweDM1MC5wbmciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/H4cbac47ae6cf4705b966668ca1abad509.png_350x350.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/H4cbac47ae6cf4705b966668ca1abad509.png_350x350.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvSDZjMDBiZDIzN2Q4YjQ2ZDRiMDZhMWNjNmVmNzZhY2NmRS5wbmdfMzUweDM1MC5wbmciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/H6c00bd237d8b46d4b06a1cc6ef76accfE.png_350x350.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/H6c00bd237d8b46d4b06a1cc6ef76accfE.png_350x350.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvSDcxYWJlN2E3NjNhMzQ1YWU4N2RjZjcwYzI1YTcwYTMyTS5wbmdfMzUweDM1MC5wbmciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/H71abe7a763a345ae87dcf70c25a70a32M.png_350x350.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/H71abe7a763a345ae87dcf70c25a70a32M.png_350x350.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvMi5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/2.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/2.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTA0NWZlNDUzNDU2NjQzOTRhMmE4MDQ5OWI0YmQyMTE3aS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A045fe45345664394a2a80499b4bd2117i.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A045fe45345664394a2a80499b4bd2117i.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTg2ZTAzOWRmMWM5ZDRlODA5ZWE1M2RmZDY3NmJhNjdhTy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A86e039df1c9d4e809ea53dfd676ba67aO.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A86e039df1c9d4e809ea53dfd676ba67aO.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTc4NmRjNDI3YWY0NjQ1N2VhOTIzYzQxZWE3Njg4ZjY3US5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A786dc427af46457ea923c41ea7688f67Q.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A786dc427af46457ea923c41ea7688f67Q.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvNi5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/6.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/6.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTJlZDVhNWMzZjhmNTQ0Yzg5MTBhM2ZlMjlkYTVlMjk4NC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A2ed5a5c3f8f544c8910a3fe29da5e2984.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A2ed5a5c3f8f544c8910a3fe29da5e2984.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTNjODA2NDY4NTRjZDQ0MDFiNmI3MzdhODBlOGUyOWYyWi5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A3c80646854cd4401b6b737a80e8e29f2Z.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A3c80646854cd4401b6b737a80e8e29f2Z.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTUzZjk0ZmZmYTBlNjRiYThhNDczMzBlODVhMTc5MjE0bC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A53f94fffa0e64ba8a47330e85a179214l.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A53f94fffa0e64ba8a47330e85a179214l.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWE1NTlhYWE4ZThkNDQ4NjhiNzAwOTY3ZTE4MjYzMWUwTy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Aa559aaa8e8d44868b700967e182631e0O.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Aa559aaa8e8d44868b700967e182631e0O.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvNC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/4.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/4.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTI5MjA5ZmNhMTRlMzQ5MTI4NmE3YWUyYTdkNTM1MDY2dC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A29209fca14e3491286a7ae2a7d535066t.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A29209fca14e3491286a7ae2a7d535066t.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWZkNmU1MDE4ZDU0YTRjMzE5YjQ5NDFhZjU3ZTM4ZmMxZS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Afd6e5018d54a4c319b4941af57e38fc1e.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Afd6e5018d54a4c319b4941af57e38fc1e.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTg2MjZkZjVhZTg5YzQ1ODQ4NGNiZGVhYjZiMGEyNzY4RS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A8626df5ae89c458484cbdeab6b0a2768E.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A8626df5ae89c458484cbdeab6b0a2768E.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWVjMmE0Y2Q4OTVlNjQ4YjZiYzcxNzRkODY0ZTEwMzMyOS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Aec2a4cd895e648b6bc7174d864e103329.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Aec2a4cd895e648b6bc7174d864e103329.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvMS5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/1.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTVmYTcxYjBlZGRmNjQ4MDQ5YzVmMzNkMzMxNzM4NDYwbS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A5fa71b0eddf648049c5f33d331738460m.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A5fa71b0eddf648049c5f33d331738460m.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTliYzE4NzI2OTdkNjQ5ZTdhMjhkMTRjNDhjZDZiNzFicS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A9bc1872697d649e7a28d14c48cd6b71bq.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A9bc1872697d649e7a28d14c48cd6b71bq.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWQwYzc4MmI4NDYxNTQ4NGQ4MzAzYWQ5NjRjZDMwMmE0Qy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Ad0c782b84615484d8303ad964cd302a4C.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Ad0c782b84615484d8303ad964cd302a4C.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWVjM2Y0NGQyYzBjZjQ1MzY4NzBiMTkwOTdiNTAzNWY0QS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Aec3f44d2c0cf4536870b19097b5035f4A.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Aec3f44d2c0cf4536870b19097b5035f4A.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvOC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/8.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/8.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTVkZjYxOWNlODllYzQyMTg5YTVjNGQwNWJiYmE0ZjJkdy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A5df619ce89ec42189a5c4d05bbba4f2dw.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A5df619ce89ec42189a5c4d05bbba4f2dw.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTkyMDcwMTU1OThhZTQ3ZTRiYTU3ZDVkNjc1NWE3OTQ1Si5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A9207015598ae47e4ba57d5d6755a7945J.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A9207015598ae47e4ba57d5d6755a7945J.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWE2NzUxNGNhMTUzYTQzMjA4NjEyNjExYWYxNWFlNjg5dC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Aa67514ca153a43208612611af15ae689t.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Aa67514ca153a43208612611af15ae689t.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWM4YzU3YWY1N2ZjMDRhOWI4YWZiY2Y1MjE0ZDhiMTI1YS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Ac8c57af57fc04a9b8afbcf5214d8b125a.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Ac8c57af57fc04a9b8afbcf5214d8b125a.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWVhMWEyZWE2YzlkMDRiNzg5NzdkMWU4YzkwN2U3MjFjUi5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Aea1a2ea6c9d04b78977d1e8c907e721cR.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Aea1a2ea6c9d04b78977d1e8c907e721cR.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvNS5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/5.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/5.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvNy5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/7.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/7.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTRmYTIyYjNkYjQ3MDQxNDVhOWM4ZjJiNmQ0MTNiNGI3WS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A4fa22b3db4704145a9c8f2b6d413b4b7Y.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A4fa22b3db4704145a9c8f2b6d413b4b7Y.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQThjZmExNTRjYTcwYTQ2YzU5NjVlOTkzMjU1YjUzZWNiZy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A8cfa154ca70a46c5965e993255b53ecbg.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A8cfa154ca70a46c5965e993255b53ecbg.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTk2N2M2MzRhNTE3YzQ4ZjM4YzIzZDQ3NjZkYjViYmExYS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A967c634a517c48f38c23d4766db5bba1a.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A967c634a517c48f38c23d4766db5bba1a.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTQ2MjQxM2I2ZGUyYjQwMWJhNjBlOTliYmUxZDE1ZTMzSy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A462413b6de2b401ba60e99bbe1d15e33K.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A462413b6de2b401ba60e99bbe1d15e33K.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTY2MTM5OTE0MmE3MjQ3Mjc4YmJmNjlhOWQ2MDA3NTU2Vy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A661399142a7247278bbf69a9d6007556W.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A661399142a7247278bbf69a9d6007556W.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvMTAuanBnIiwic2xpZGVzaG93IjoiZTRlZWI1NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/10.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/10.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTE2ZWI3MWY1NDZjNDRjNGJhMDBjNmFmZTQ2NDY0ZDU5My5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A16eb71f546c44c4ba00c6afe46464d593.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A16eb71f546c44c4ba00c6afe46464d593.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTcyYTIxYmE5NjljODRiOThiNjNiOTg1MzgwYjk3ZWY1Ty5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A72a21ba969c84b98b63b985380b97ef5O.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A72a21ba969c84b98b63b985380b97ef5O.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTk5NTc0ZWJlMWE2YzQzMmFiZWJiOTE2ODBlM2UyMjdlMC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A99574ebe1a6c432abebb91680e3e227e0.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A99574ebe1a6c432abebb91680e3e227e0.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWM2ZDlhM2I3OWE5MDRlZWI5YzkyNWFmYTM3NGVjNTNhQS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Ac6d9a3b79a904eeb9c925afa374ec53aA.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Ac6d9a3b79a904eeb9c925afa374ec53aA.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWRlZjA1YzMyMTIxOTRmMjU5ZjE1NTZjZDUwODFhYjNlZy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Adef05c3212194f259f1556cd5081ab3eg.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Adef05c3212194f259f1556cd5081ab3eg.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvMy5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/3.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/3.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvOS5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/9.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/9.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTI2OGFhOGY5YjY1YzRjZGY5ZjQ1ZTU5NGYyY2Q4YWQ0TS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A268aa8f9b65c4cdf9f45e594f2cd8ad4M.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A268aa8f9b65c4cdf9f45e594f2cd8ad4M.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTg2NDQzMmYyNTcxNzQzNjg5MzQyYWUxNzNlZTlkYzlmZC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A864432f2571743689342ae173ee9dc9fd.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A864432f2571743689342ae173ee9dc9fd.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWJkNDM4NTFjOTI2NTRiZDk5Y2ZkY2E0NWQ4OTZmYmNiQi5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Abd43851c92654bd99cfdca45d896fbcbB.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Abd43851c92654bd99cfdca45d896fbcbB.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWNkZDEyMjYyOThkZDQ2MTNhYmYwMjFiZGNhYWQzMjBiMC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Acdd1226298dd4613abf021bdcaad320b0.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Acdd1226298dd4613abf021bdcaad320b0.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWU5MWJmN2Y1MWRiMzQwMmViYWZmNjEwYzI5OWU5YWFjRi5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Ae91bf7f51db3402ebaff610c299e9aacF.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Ae91bf7f51db3402ebaff610c299e9aacF.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTA1ZjE4ZDQ3ZTcwOTQ4YWU4Nzk1MTExZDA1NWY0MmZhMi5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A05f18d47e70948ae8795111d055f42fa2.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A05f18d47e70948ae8795111d055f42fa2.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTVjMzc3OTJmMzg0MzQzODhhMDJhMDQ3OWZjYmM0MTIzVC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A5c37792f38434388a02a0479fcbc4123T.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A5c37792f38434388a02a0479fcbc4123T.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQThjNDIwOTkyZjQ3NzQ1NTA5ZjRmMjkyYWM3YmQyMjU4SC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A8c420992f47745509f4f292ac7bd2258H.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A8c420992f47745509f4f292ac7bd2258H.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTEwMDFlNjNlYTU5MTQ5ZjhhODFhYmI5MmQ1ZDVmZTcxMy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A1001e63ea59149f8a81abb92d5d5fe713.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A1001e63ea59149f8a81abb92d5d5fe713.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTM2MzQ2Zjg4MWIxMDQ5OTZiNmMwNzBiNWQyY2ViZmY4dS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A36346f881b104996b6c070b5d2cebff8u.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A36346f881b104996b6c070b5d2cebff8u.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e4eeb57\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTE1NzE4M2MwN2E3NjRlYjg5NTdiYzRjZDEzOTgyODA4aS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlNGVlYjU3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A157183c07a764eb8957bc4cd13982808i.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A157183c07a764eb8957bc4cd13982808i.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			Các bộ phận gia công CNC\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"f3f0dbe\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rNS5qcGciLCJzbGlkZXNob3ciOiJmM2YwZGJlIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok5.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok5.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"f3f0dbe\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rNC5wbmciLCJzbGlkZXNob3ciOiJmM2YwZGJlIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok4.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok4.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"f3f0dbe\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW1hY2hpbmUyMi5hdmlmIiwic2xpZGVzaG93IjoiZjNmMGRiZSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-machine22.avif\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-machine22.avif\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"f3f0dbe\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW1hY2hpbmUzLmpwZyIsInNsaWRlc2hvdyI6ImYzZjBkYmUifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-machine3.jpg\'><img width=\"150\" height=\"100\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-machine3.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"f3f0dbe\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rMy5wbmciLCJzbGlkZXNob3ciOiJmM2YwZGJlIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok3.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok3.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"f3f0dbe\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rMS5wbmciLCJzbGlkZXNob3ciOiJmM2YwZGJlIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok1.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok1.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"f3f0dbe\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rMi5wbmciLCJzbGlkZXNob3ciOiJmM2YwZGJlIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok2.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok2.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"f3f0dbe\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rNy5wbmciLCJzbGlkZXNob3ciOiJmM2YwZGJlIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok7.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok7.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"f3f0dbe\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rOS5qcGciLCJzbGlkZXNob3ciOiJmM2YwZGJlIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok9.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok9.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"f3f0dbe\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rOC5qcGciLCJzbGlkZXNob3ciOiJmM2YwZGJlIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok8.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok8.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"f3f0dbe\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejU3MDk0NDM0NzY3OTdfY2IzZTllMGQ1OTZhZDYzMzEzNjZiOGE3MTFmNDY5MjYuanBnIiwic2xpZGVzaG93IjoiZjNmMGRiZSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z5709443476797_cb3e9e0d596ad6331366b8a711f46926.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z5709443476797_cb3e9e0d596ad6331366b8a711f46926.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			Kim loại tấm &amp; Gia công\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"804badd\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWwxLmpwZyIsInNsaWRlc2hvdyI6IjgwNGJhZGQifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal1.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"804badd\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWwzLmpwZyIsInNsaWRlc2hvdyI6IjgwNGJhZGQifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal3.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal3.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"804badd\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw0LmpwZyIsInNsaWRlc2hvdyI6IjgwNGJhZGQifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal4.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal4.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"804badd\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw1LmpwZyIsInNsaWRlc2hvdyI6IjgwNGJhZGQifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal5.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal5.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"804badd\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw3LmpwZyIsInNsaWRlc2hvdyI6IjgwNGJhZGQifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal7.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal7.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"804badd\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw4LmpwZyIsInNsaWRlc2hvdyI6IjgwNGJhZGQifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal8.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal8.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"804badd\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw5LmpwZyIsInNsaWRlc2hvdyI6IjgwNGJhZGQifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal9.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal9.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"804badd\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWwxMC5qcGciLCJzbGlkZXNob3ciOiI4MDRiYWRkIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal10.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal10.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"804badd\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWwyLnBuZyIsInNsaWRlc2hvdyI6IjgwNGJhZGQifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal2.png\'><img width=\"84\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal2.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"804badd\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw2LmpwZyIsInNsaWRlc2hvdyI6IjgwNGJhZGQifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal6.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal6.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			Linh kiện khuôn &amp; khuôn dập\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"51068f5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzYxNjUzNzJfODI1NjkzMjRkZTFjOGZjYzM3NmNjMGU3MzdjMDUyMGUuanBnIiwic2xpZGVzaG93IjoiNTEwNjhmNSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"51068f5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzY0NTU3NzVfOTdhOTM3ODA3YzgwN2JmNzEzNjk0MTlhMGE1ZDNkMmMuanBnIiwic2xpZGVzaG93IjoiNTEwNjhmNSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\'><img width=\"68\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"51068f5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzU4OTM2OTJfNDhmNGE5ZjdjN2E5ZDA1ZGMwMzdhODBhYzFlNTc4MmIuanBnIiwic2xpZGVzaG93IjoiNTEwNjhmNSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"51068f5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzYwMDk1MTRfYWQ5MDg4N2YyNWQ3MzRlYzJkMjFkOGE2YTYzNGZmMmQuanBnIiwic2xpZGVzaG93IjoiNTEwNjhmNSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"51068f5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzY3MjE1ODZfMTZiOTE5ODQyMGIzOTlmOWQ4MmMwNThkOTA4MmEzZTAuanBnIiwic2xpZGVzaG93IjoiNTEwNjhmNSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"51068f5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzYxMTA0MjZfYzNlY2UzZWM1NmY5ZThjYzBlNWM5YTk4Zjk3OTJiZmMuanBnIiwic2xpZGVzaG93IjoiNTEwNjhmNSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			Đinh ốc &amp; Bu lông công nghiệp\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"edd871c\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvSU1HXzEyMzcuanBlZyIsInNsaWRlc2hvdyI6ImVkZDg3MWMifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/IMG_1237.jpeg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/IMG_1237.jpeg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"edd871c\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvRFNDMDA4MjIuanBnIiwic2xpZGVzaG93IjoiZWRkODcxYyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/DSC00822.jpg\'><img width=\"150\" height=\"100\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/DSC00822.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			Dụng cụ\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1583ea9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwMTgzMzRfMTdjNWZhYzk2ZmIyODQzZDc0YTc2Y2M3OWY5YjRmNWMuanBnIiwic2xpZGVzaG93IjoiMTU4M2VhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\'><img width=\"150\" height=\"135\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1583ea9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwMzczNTNfZGI4NzczMmIzZWE5ZDkzNTM2YmNkM2FlYzY0ODM1YTcuanBnIiwic2xpZGVzaG93IjoiMTU4M2VhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1583ea9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNTkxNjJfMDUzYjM2NGFiNzYxZGM1YTQ0Mjc5ZmFmNjQzOTUzMjQuanBnIiwic2xpZGVzaG93IjoiMTU4M2VhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\'><img width=\"70\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1583ea9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNzgzNzJfNTBhYmNlNTI0OWM4YWNkY2ZiZGY4YTA2MzQ4OWUxODYuanBnIiwic2xpZGVzaG93IjoiMTU4M2VhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1583ea9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNzg1NzBfMGFiNThiNDZiZjY4M2RmNmVjZGIyYzJkODc5NDViYTYuanBnIiwic2xpZGVzaG93IjoiMTU4M2VhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\'><img width=\"150\" height=\"129\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1583ea9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk2ODQ5NDkwODZfYjI5ZmRiNTAxMTRhMTk2Y2MzZmRjYzllMTJjYWYxMDUuanBnIiwic2xpZGVzaG93IjoiMTU4M2VhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\'><img width=\"150\" height=\"128\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1583ea9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk2ODQ5NDY2NDFfMTUwMGZiZTE2ZmVjM2ExNGVhZGI4ZTRhZWQxY2Y2M2YuanBnIiwic2xpZGVzaG93IjoiMTU4M2VhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			Đồ gá\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"38c84c0\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NDY1OTEzMzg2ODdfZmE1MTRlMTY0ZjJlZTk5NjFjZmVlY2U5YjJhMjk2MmUuanBnIiwic2xpZGVzaG93IjoiMzhjODRjMCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"38c84c0\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTE0ODI0OTc5ODFfNGZlOGQ1MmM3N2ZiOTcwYWNjYWNhOTkzMTFiM2U1YjguanBnIiwic2xpZGVzaG93IjoiMzhjODRjMCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"38c84c0\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNTQzNzc3MTM5OTRfNzMxZjNhYzFmN2YzMjMyNjExMWE0MWY2N2Q0YTJlMzMuanBnIiwic2xpZGVzaG93IjoiMzhjODRjMCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"38c84c0\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE2NTM3NjdfNzk3Y2FkYTk3Yjk4NjQyZTYyYzkxODU3YzYwYjViNDQuanBnIiwic2xpZGVzaG93IjoiMzhjODRjMCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"38c84c0\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NDY1OTEzNDkxOTRfZDUwMTBkMTcwMGM3Y2ViNDkxYjk3OGIwMWJlM2RkMjguanBnIiwic2xpZGVzaG93IjoiMzhjODRjMCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>','Sản phẩm','','inherit','closed','closed','','2998-revision-v1','','','2025-03-17 03:20:09','2025-03-17 03:20:09','',2998,'https://fe2tech.com/?p=3282',0,'revision','',0),(3283,1,'2025-03-17 03:21:56','2025-03-17 03:21:56','<h5>\n        私たちの強みは、アルミニウムと鋼の大量生産にあります。私たちは革新に優れ、顧客に高付加価値の製品を提供します。    </h5>\n			溶接\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDk5NjUxOTZfODJmZDc2ZGRiYmYzOGQ2NGRhZThhZjExYjIxNTM3YjkuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074649965196_82fd76ddbbf38d64dae8af11b21537b9.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074649965196_82fd76ddbbf38d64dae8af11b21537b9.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY2NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NTI3MjMyMTJfODc3MGYwMjhmZjY0NmYwMTRmMWU5ZjZlZmUzNDk2MmUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074652723212_8770f028ff646f014f1e9f6efe34962e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074652723212_8770f028ff646f014f1e9f6efe34962e.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA5Mzk3MThfYjBmZjZhY2FkMTRiMmFiNWVkMTU4MTcxYzc2ODMzZjkuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640939718_b0ff6acad14b2ab5ed158171c76833f9.jpg\'><img width=\"84\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640939718_b0ff6acad14b2ab5ed158171c76833f9.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDEyOTMxMTNfYjRiMTg2YzY3YjZlNzgyOWRkMmE5MWQ3MzBjZjlhYTcuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641293113_b4b186c67b6e7829dd2a91d730cf9aa7.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641293113_b4b186c67b6e7829dd2a91d730cf9aa7.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY2OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDI3NjM1ODdfMjFlY2NlNWQ0YWNjZjM3MTM1OGViNGNiZDczYzgwMGQuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074642763587_21ecce5d4accf371358eb4cbd73c800d.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074642763587_21ecce5d4accf371358eb4cbd73c800d.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY2OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDI4NDk4NDhfMTBiNTY3MDUxMjA5NmU2NTQ3NDhlNTdiMjRhMDRhZmUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074642849848_10b5670512096e654748e57b24a04afe.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074642849848_10b5670512096e654748e57b24a04afe.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA3NTg4ODNfNjQ4YTA0MmY0YjY0MGQwZjU3YTQ0NDFkZDIxMDk1NzAuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640758883_648a042f4b640d0f57a4441dd2109570.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640758883_648a042f4b640d0f57a4441dd2109570.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA4NDkyMzdfZTc2OTliMWJjNmUzOGUwYmY2NWViM2JjYTI4YWU4Y2EuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640849237_e7699b1bc6e38e0bf65eb3bca28ae8ca.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640849237_e7699b1bc6e38e0bf65eb3bca28ae8ca.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDEwNTIwNzBfOWVmYmMxNTg2Y2I1ZTk1Y2M1NGI4NDIxYTYzZjM4MGUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641052070_9efbc1586cb5e95cc54b8421a63f380e.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641052070_9efbc1586cb5e95cc54b8421a63f380e.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDExNDUyNzNfN2JlNWRmM2UxNzc5YWEwNGU4OTBlNDBjYzI0M2NkZWUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641145273_7be5df3e1779aa04e890e40cc243cdee.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641145273_7be5df3e1779aa04e890e40cc243cdee.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA2NTMyODVfNWE4N2FkZjU3Y2UwYzQxODZmZTRmYjE1NzllMzU3YjUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640653285_5a87adf57ce0c4186fe4fb1579e357b5.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640653285_5a87adf57ce0c4186fe4fb1579e357b5.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDExNzM4MjZfNDVhZTczN2Y3MGRmYjJkMzY1YWJiMzk3ZjEzOWQ3MDguanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641173826_45ae737f70dfb2d365abb397f139d708.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641173826_45ae737f70dfb2d365abb397f139d708.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			金型\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY1NzU1NzhfZTBhNGY1NDczODQzZTU4ZWUxYTc5OTg5ZjM2N2FkYTkuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736575578_e0a4f5473843e58ee1a79989f367ada9.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736575578_e0a4f5473843e58ee1a79989f367ada9.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY3MjE1ODZfMTZiOTE5ODQyMGIzOTlmOWQ4MmMwNThkOTA4MmEzZTAuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUyMTk2NzlfOTFhNmY2OTkzMTQ2OTA2Zjg0NjViNDNkZGQwYzJiM2MuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735219679_91a6f6993146906f8465b43ddd0c2b3c.jpg\'><img width=\"68\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735219679_91a6f6993146906f8465b43ddd0c2b3c.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY3NjE0NTRfYjk4ZDQ2OGIxMzNhYzU5ZWJiZjVlNjJiNjkzNDYyYTQuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736761454_b98d468b133ac59ebbf5e62b693462a4.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736761454_b98d468b133ac59ebbf5e62b693462a4.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY3ODQzMzVfZjkzYmM3ODIwY2ZkYzBiMDE1YzgyMjRiOWExYWNlMTAuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736784335_f93bc7820cfdc0b015c8224b9a1ace10.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736784335_f93bc7820cfdc0b015c8224b9a1ace10.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjkyMTk5NDEzNDlfYjA5NTRlNDRhMjVhN2QxNTQzZWIzM2NlZWFlMjBlZmIuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069219941349_b0954e44a25a7d1543eb33ceeae20efb.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069219941349_b0954e44a25a7d1543eb33ceeae20efb.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUzNDMyMDFfZDI5MjJhYTE2ODBjNTdiZmUyZGE5YWFiYTEyMWNhYTYuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735343201_d2922aa1680c57bfe2da9aaba121caa6.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735343201_d2922aa1680c57bfe2da9aaba121caa6.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU0NDE4ODVfMDg4ZGQ0MTdiNjU5NzgzMzc2YWRmZWIwMDZkMTgxODAuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735441885_088dd417b659783376adfeb006d18180.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735441885_088dd417b659783376adfeb006d18180.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU1OTgxMDFfMGZkZDBhNzczYTIyZDZhZjkyZjY5NGQ3ODY2YjJhNWEuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735598101_0fdd0a773a22d6af92f694d7866b2a5a.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735598101_0fdd0a773a22d6af92f694d7866b2a5a.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU2MzQ2MzJfZGEzZGYxMWNjMWRmYTk3OGM1YjcwZjJlNDQ0MDQ3MTIuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735634632_da3df11cc1dfa978c5b70f2e44404712.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735634632_da3df11cc1dfa978c5b70f2e44404712.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU2OTM5ODdfYmY3MzQ3ZjUzM2VjNzUwYTJjNGY5ZGYxNzYzYjg4ODEuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735693987_bf7347f533ec750a2c4f9df1763b8881.jpg\'><img width=\"84\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735693987_bf7347f533ec750a2c4f9df1763b8881.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU4MzU0OTZfYTcxYWM1MGRkYWMzNjg2N2ZjYTIxY2VlOGM0N2ZlMGEuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735835496_a71ac50ddac36867fca21cee8c47fe0a.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735835496_a71ac50ddac36867fca21cee8c47fe0a.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU4OTM2OTJfNDhmNGE5ZjdjN2E5ZDA1ZGMwMzdhODBhYzFlNTc4MmIuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYwMDk1MTRfYWQ5MDg4N2YyNWQ3MzRlYzJkMjFkOGE2YTYzNGZmMmQuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYxMTA0MjZfYzNlY2UzZWM1NmY5ZThjYzBlNWM5YTk4Zjk3OTJiZmMuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYxNjUzNzJfODI1NjkzMjRkZTFjOGZjYzM3NmNjMGU3MzdjMDUyMGUuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYzMjQ0NzJfMDZmMWVkMWExYmUyYzNhNTkyMzA3MGFmZjdkNWUxMGUuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736324472_06f1ed1a1be2c3a5923070aff7d5e10e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736324472_06f1ed1a1be2c3a5923070aff7d5e10e.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYzOTEwNTFfNGMzY2FlMTZhOGZmNGYyMTZiOGQ1MzY3Mzc3MmRkMDcuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736391051_4c3cae16a8ff4f216b8d53673772dd07.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736391051_4c3cae16a8ff4f216b8d53673772dd07.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY0NTU3NzVfOTdhOTM3ODA3YzgwN2JmNzEzNjk0MTlhMGE1ZDNkMmMuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\'><img width=\"68\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			機械の詳細\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjkyMTk5NDkxNzVfZTJhMTA1YmNmMjIzYzgzMmQ2Y2FhYjJkMDNmZTA0MTMuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069219949175_e2a105bcf223c832d6caab2d03fe0413.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069219949175_e2a105bcf223c832d6caab2d03fe0413.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMTMxNjUyNjZfYTE1MjUzZTNhM2UwYTJjOTc4ZWQ2Njc5OTRiOGY0MTUuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799313165266_a15253e3a3e0a2c978ed667994b8f415.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799313165266_a15253e3a3e0a2c978ed667994b8f415.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE2MDQxMTVfNDkzZjgzNTU4NjlkZDNjYTgyYTk2ZTg2ZTI5ODJiZmUuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321604115_493f8355869dd3ca82a96e86e2982bfe.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321604115_493f8355869dd3ca82a96e86e2982bfe.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE2OTYwMjRfNzMzYTg1YmY4MzVhZWEwYThhZmM4YjI2OWQxNDk3MDAuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321696024_733a85bf835aea0a8afc8b269d149700.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321696024_733a85bf835aea0a8afc8b269d149700.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMTMxNzk1NjdfYzNkNjY3NWEwMzc2MmZiOTQzNzZkYzk2ZjA1Mzg5YmQuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799313179567_c3d6675a03762fb94376dc96f05389bd.jpg\'><img width=\"150\" height=\"86\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799313179567_c3d6675a03762fb94376dc96f05389bd.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMTMyNzM0NTRfYWQ3MTZiZWZhZjQzZDJkZjE0NzYyOWQ5NTI2MmM1MjAuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799313273454_ad716befaf43d2df147629d95262c520.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799313273454_ad716befaf43d2df147629d95262c520.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MTYyNDlfOTZiMmZlYTVmZTMzZjRhMjRkODI1MWM4YWFmMjI1ZTEuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363716249_96b2fea5fe33f4a24d8251c8aaf225e1.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363716249_96b2fea5fe33f4a24d8251c8aaf225e1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MjM3NzFfOWVlYzRkNTFmYzE3MjNmYjY2OWY5ODAwODRlMjBhNjEuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363723771_9eec4d51fc1723fb669f980084e20a61.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363723771_9eec4d51fc1723fb669f980084e20a61.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MjM4OTJfNWI3MjAwMDI2MjAyYTFlZmU5NjU5NjEwOWZhZDY4NTcuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363723892_5b7200026202a1efe96596109fad6857.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363723892_5b7200026202a1efe96596109fad6857.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MzUzNjFfOTM1NWZhN2ViOTkxMTIzZGM5OTVkZmFhMmI0Y2Y3NTQuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363735361_9355fa7eb991123dc995dfaa2b4cf754.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363735361_9355fa7eb991123dc995dfaa2b4cf754.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3NDY3NjJfNjI0MWFjNGM2NjI1NTgxYjVkYjliMjRhMWVlMDVmNjgtMS5qcGciLCJzbGlkZXNob3ciOiJjZDlkYmE5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363746762_6241ac4c6625581b5db9b24a1ee05f68-1.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363746762_6241ac4c6625581b5db9b24a1ee05f68-1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3NDE0MDlfZDcyMTI0ZDkwOTEyODBmNjUyOWEyN2E5MTliZTEzYzkuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363741409_d72124d9091280f6529a27a919be13c9.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363741409_d72124d9091280f6529a27a919be13c9.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			工具\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwMTgzMzRfMTdjNWZhYzk2ZmIyODQzZDc0YTc2Y2M3OWY5YjRmNWMuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\'><img width=\"150\" height=\"135\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwMzczNTNfZGI4NzczMmIzZWE5ZDkzNTM2YmNkM2FlYzY0ODM1YTcuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNTkxNjJfMDUzYjM2NGFiNzYxZGM1YTQ0Mjc5ZmFmNjQzOTUzMjQuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\'><img width=\"70\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNzgzNzJfNTBhYmNlNTI0OWM4YWNkY2ZiZGY4YTA2MzQ4OWUxODYuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNzg1NzBfMGFiNThiNDZiZjY4M2RmNmVjZGIyYzJkODc5NDViYTYuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\'><img width=\"150\" height=\"129\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk2ODQ5NDkwODZfYjI5ZmRiNTAxMTRhMTk2Y2MzZmRjYzllMTJjYWYxMDUuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\'><img width=\"150\" height=\"128\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk2ODQ5NDY2NDFfMTUwMGZiZTE2ZmVjM2ExNGVhZGI4ZTRhZWQxY2Y2M2YuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			オートバイの部品\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTEzMDA5NzlfMDA1MjcxNmI0NjI4NDNhNWQxOTY4Zjc4NzBjNzJmZDguanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028111300979_0052716b462843a5d1968f7870c72fd8.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028111300979_0052716b462843a5d1968f7870c72fd8.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTIwMDAwMDBfMjQ0MGQ1YWUzNmY3MDA4NDBkMGYwYjU4M2JiY2JkZmEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028112000000_2440d5ae36f700840d0f0b583bbcbdfa.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028112000000_2440d5ae36f700840d0f0b583bbcbdfa.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTI2NzAwMjRfMTgwNmFmZDdkNzBiYmJjNTIzZDYzYjBjNjFlOTEzMGIuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028112670024_1806afd7d70bbbc523d63b0c61e9130b.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028112670024_1806afd7d70bbbc523d63b0c61e9130b.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTMyODc5MTJfZTFhYThiZGI5ZmU3MmIxZmUyMjg4N2NlYWFmYzBkYmQuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028113287912_e1aa8bdb9fe72b1fe22887ceaafc0dbd.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028113287912_e1aa8bdb9fe72b1fe22887ceaafc0dbd.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTM4OTQ3MDRfMzUwNGU0YmYwOTNhZDlmOWQ2MzVjOGJmYTJhYWFlZjYuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028113894704_3504e4bf093ad9f9d635c8bfa2aaaef6.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028113894704_3504e4bf093ad9f9d635c8bfa2aaaef6.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTQ3Njc3MzlfZDAxNGIxMGRhNTA4OGJjN2QzNjc1YTZkMDBlNzdkMzMuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028114767739_d014b10da5088bc7d3675a6d00e77d33.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028114767739_d014b10da5088bc7d3675a6d00e77d33.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE0MzQ1NjFfNmQyY2I3NWVkYmE4MjgzMmUwY2JkOTA2NzM4NTdiZDMuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321434561_6d2cb75edba82832e0cbd90673857bd3.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321434561_6d2cb75edba82832e0cbd90673857bd3.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE0NDgwODhfNmU2OTQ0YzNjZWIzMzU4OTdlMmI0ZjRhZDIwOTc1YjcuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321448088_6e6944c3ceb335897e2b4f4ad20975b7.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321448088_6e6944c3ceb335897e2b4f4ad20975b7.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE1NDg1NTdfMWE1ZTY5YTg5Y2EzNzk1M2UwYzA0Yzg4ZTUyOWQ5NTEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321548557_1a5e69a89ca37953e0c04c88e529d951.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321548557_1a5e69a89ca37953e0c04c88e529d951.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMDk2MzA3MDRfMjlhODJkZjk3ZWE0ZWE3YzM3ODU5Zjk2NjcxNTRkYTEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028109630704_29a82df97ea4ea7c37859f9667154da1.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028109630704_29a82df97ea4ea7c37859f9667154da1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMDk2NzU5ODRfNTExYmI1ODY5MGE3M2FiOWNjMWFkY2QxNDZjYTQ2ZjIuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028109675984_511bb58690a73ab9cc1adcd146ca46f2.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028109675984_511bb58690a73ab9cc1adcd146ca46f2.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTA2MzE0MTVfOWJkMzc1NDUxYjIyNDI3NzZjM2ZhNDdhNWU5MWYzZTEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028110631415_9bd375451b2242776c3fa47a5e91f3e1.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028110631415_9bd375451b2242776c3fa47a5e91f3e1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTExNjcxMDFfNjg1ZGUyZTUzOTViYmY4ZDk3ZTRkMmY4YWE4N2ZlZTMuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028111167101_685de2e5395bbf8d97e4d2f8aa87fee3.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028111167101_685de2e5395bbf8d97e4d2f8aa87fee3.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			治具\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NDY1OTEzMzg2ODdfZmE1MTRlMTY0ZjJlZTk5NjFjZmVlY2U5YjJhMjk2MmUuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTE0ODI0OTc5ODFfNGZlOGQ1MmM3N2ZiOTcwYWNjYWNhOTkzMTFiM2U1YjguanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNTQzNzc3MTM5OTRfNzMxZjNhYzFmN2YzMjMyNjExMWE0MWY2N2Q0YTJlMzMuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE2NTM3NjdfNzk3Y2FkYTk3Yjk4NjQyZTYyYzkxODU3YzYwYjViNDQuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NDY1OTEzNDkxOTRfZDUwMTBkMTcwMGM3Y2ViNDkxYjk3OGIwMWJlM2RkMjguanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>','製品','','inherit','closed','closed','','3003-revision-v1','','','2025-03-17 03:21:56','2025-03-17 03:21:56','',3003,'https://fe2tech.com/?p=3283',0,'revision','',0),(3284,1,'2025-03-17 03:21:57','2025-03-17 03:21:57','<h5>\n        私たちの強みは、アルミニウムと鋼の大量生産にあります。私たちは革新に優れ、顧客に高付加価値の製品を提供します。    </h5>\n			溶接\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDk5NjUxOTZfODJmZDc2ZGRiYmYzOGQ2NGRhZThhZjExYjIxNTM3YjkuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074649965196_82fd76ddbbf38d64dae8af11b21537b9.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074649965196_82fd76ddbbf38d64dae8af11b21537b9.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY2NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NTI3MjMyMTJfODc3MGYwMjhmZjY0NmYwMTRmMWU5ZjZlZmUzNDk2MmUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074652723212_8770f028ff646f014f1e9f6efe34962e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074652723212_8770f028ff646f014f1e9f6efe34962e.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA5Mzk3MThfYjBmZjZhY2FkMTRiMmFiNWVkMTU4MTcxYzc2ODMzZjkuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640939718_b0ff6acad14b2ab5ed158171c76833f9.jpg\'><img width=\"84\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640939718_b0ff6acad14b2ab5ed158171c76833f9.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDEyOTMxMTNfYjRiMTg2YzY3YjZlNzgyOWRkMmE5MWQ3MzBjZjlhYTcuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641293113_b4b186c67b6e7829dd2a91d730cf9aa7.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641293113_b4b186c67b6e7829dd2a91d730cf9aa7.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY2OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDI3NjM1ODdfMjFlY2NlNWQ0YWNjZjM3MTM1OGViNGNiZDczYzgwMGQuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074642763587_21ecce5d4accf371358eb4cbd73c800d.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074642763587_21ecce5d4accf371358eb4cbd73c800d.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY2OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDI4NDk4NDhfMTBiNTY3MDUxMjA5NmU2NTQ3NDhlNTdiMjRhMDRhZmUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074642849848_10b5670512096e654748e57b24a04afe.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074642849848_10b5670512096e654748e57b24a04afe.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA3NTg4ODNfNjQ4YTA0MmY0YjY0MGQwZjU3YTQ0NDFkZDIxMDk1NzAuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640758883_648a042f4b640d0f57a4441dd2109570.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640758883_648a042f4b640d0f57a4441dd2109570.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA4NDkyMzdfZTc2OTliMWJjNmUzOGUwYmY2NWViM2JjYTI4YWU4Y2EuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640849237_e7699b1bc6e38e0bf65eb3bca28ae8ca.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640849237_e7699b1bc6e38e0bf65eb3bca28ae8ca.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDEwNTIwNzBfOWVmYmMxNTg2Y2I1ZTk1Y2M1NGI4NDIxYTYzZjM4MGUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641052070_9efbc1586cb5e95cc54b8421a63f380e.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641052070_9efbc1586cb5e95cc54b8421a63f380e.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDExNDUyNzNfN2JlNWRmM2UxNzc5YWEwNGU4OTBlNDBjYzI0M2NkZWUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641145273_7be5df3e1779aa04e890e40cc243cdee.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641145273_7be5df3e1779aa04e890e40cc243cdee.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDA2NTMyODVfNWE4N2FkZjU3Y2UwYzQxODZmZTRmYjE1NzllMzU3YjUuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074640653285_5a87adf57ce0c4186fe4fb1579e357b5.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074640653285_5a87adf57ce0c4186fe4fb1579e357b5.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNzQ2NDExNzM4MjZfNDVhZTczN2Y3MGRmYjJkMzY1YWJiMzk3ZjEzOWQ3MDguanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6074641173826_45ae737f70dfb2d365abb397f139d708.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6074641173826_45ae737f70dfb2d365abb397f139d708.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			金型\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY3OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY1NzU1NzhfZTBhNGY1NDczODQzZTU4ZWUxYTc5OTg5ZjM2N2FkYTkuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736575578_e0a4f5473843e58ee1a79989f367ada9.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736575578_e0a4f5473843e58ee1a79989f367ada9.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY3MjE1ODZfMTZiOTE5ODQyMGIzOTlmOWQ4MmMwNThkOTA4MmEzZTAuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUyMTk2NzlfOTFhNmY2OTkzMTQ2OTA2Zjg0NjViNDNkZGQwYzJiM2MuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735219679_91a6f6993146906f8465b43ddd0c2b3c.jpg\'><img width=\"68\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735219679_91a6f6993146906f8465b43ddd0c2b3c.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY3NjE0NTRfYjk4ZDQ2OGIxMzNhYzU5ZWJiZjVlNjJiNjkzNDYyYTQuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736761454_b98d468b133ac59ebbf5e62b693462a4.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736761454_b98d468b133ac59ebbf5e62b693462a4.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY3ODQzMzVfZjkzYmM3ODIwY2ZkYzBiMDE1YzgyMjRiOWExYWNlMTAuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736784335_f93bc7820cfdc0b015c8224b9a1ace10.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736784335_f93bc7820cfdc0b015c8224b9a1ace10.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjkyMTk5NDEzNDlfYjA5NTRlNDRhMjVhN2QxNTQzZWIzM2NlZWFlMjBlZmIuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069219941349_b0954e44a25a7d1543eb33ceeae20efb.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069219941349_b0954e44a25a7d1543eb33ceeae20efb.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUzNDMyMDFfZDI5MjJhYTE2ODBjNTdiZmUyZGE5YWFiYTEyMWNhYTYuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735343201_d2922aa1680c57bfe2da9aaba121caa6.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735343201_d2922aa1680c57bfe2da9aaba121caa6.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU0NDE4ODVfMDg4ZGQ0MTdiNjU5NzgzMzc2YWRmZWIwMDZkMTgxODAuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735441885_088dd417b659783376adfeb006d18180.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735441885_088dd417b659783376adfeb006d18180.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU1OTgxMDFfMGZkZDBhNzczYTIyZDZhZjkyZjY5NGQ3ODY2YjJhNWEuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735598101_0fdd0a773a22d6af92f694d7866b2a5a.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735598101_0fdd0a773a22d6af92f694d7866b2a5a.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU2MzQ2MzJfZGEzZGYxMWNjMWRmYTk3OGM1YjcwZjJlNDQ0MDQ3MTIuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735634632_da3df11cc1dfa978c5b70f2e44404712.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735634632_da3df11cc1dfa978c5b70f2e44404712.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY4OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU2OTM5ODdfYmY3MzQ3ZjUzM2VjNzUwYTJjNGY5ZGYxNzYzYjg4ODEuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735693987_bf7347f533ec750a2c4f9df1763b8881.jpg\'><img width=\"84\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735693987_bf7347f533ec750a2c4f9df1763b8881.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU4MzU0OTZfYTcxYWM1MGRkYWMzNjg2N2ZjYTIxY2VlOGM0N2ZlMGEuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735835496_a71ac50ddac36867fca21cee8c47fe0a.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735835496_a71ac50ddac36867fca21cee8c47fe0a.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzU4OTM2OTJfNDhmNGE5ZjdjN2E5ZDA1ZGMwMzdhODBhYzFlNTc4MmIuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYwMDk1MTRfYWQ5MDg4N2YyNWQ3MzRlYzJkMjFkOGE2YTYzNGZmMmQuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYxMTA0MjZfYzNlY2UzZWM1NmY5ZThjYzBlNWM5YTk4Zjk3OTJiZmMuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYxNjUzNzJfODI1NjkzMjRkZTFjOGZjYzM3NmNjMGU3MzdjMDUyMGUuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYzMjQ0NzJfMDZmMWVkMWExYmUyYzNhNTkyMzA3MGFmZjdkNWUxMGUuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736324472_06f1ed1a1be2c3a5923070aff7d5e10e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736324472_06f1ed1a1be2c3a5923070aff7d5e10e.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzYzOTEwNTFfNGMzY2FlMTZhOGZmNGYyMTZiOGQ1MzY3Mzc3MmRkMDcuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736391051_4c3cae16a8ff4f216b8d53673772dd07.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736391051_4c3cae16a8ff4f216b8d53673772dd07.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzY0NTU3NzVfOTdhOTM3ODA3YzgwN2JmNzEzNjk0MTlhMGE1ZDNkMmMuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\'><img width=\"68\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			機械の詳細\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjkyMTk5NDkxNzVfZTJhMTA1YmNmMjIzYzgzMmQ2Y2FhYjJkMDNmZTA0MTMuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069219949175_e2a105bcf223c832d6caab2d03fe0413.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069219949175_e2a105bcf223c832d6caab2d03fe0413.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY5OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMTMxNjUyNjZfYTE1MjUzZTNhM2UwYTJjOTc4ZWQ2Njc5OTRiOGY0MTUuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799313165266_a15253e3a3e0a2c978ed667994b8f415.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799313165266_a15253e3a3e0a2c978ed667994b8f415.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE2MDQxMTVfNDkzZjgzNTU4NjlkZDNjYTgyYTk2ZTg2ZTI5ODJiZmUuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321604115_493f8355869dd3ca82a96e86e2982bfe.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321604115_493f8355869dd3ca82a96e86e2982bfe.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE2OTYwMjRfNzMzYTg1YmY4MzVhZWEwYThhZmM4YjI2OWQxNDk3MDAuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321696024_733a85bf835aea0a8afc8b269d149700.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321696024_733a85bf835aea0a8afc8b269d149700.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMTMxNzk1NjdfYzNkNjY3NWEwMzc2MmZiOTQzNzZkYzk2ZjA1Mzg5YmQuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799313179567_c3d6675a03762fb94376dc96f05389bd.jpg\'><img width=\"150\" height=\"86\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799313179567_c3d6675a03762fb94376dc96f05389bd.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMTMyNzM0NTRfYWQ3MTZiZWZhZjQzZDJkZjE0NzYyOWQ5NTI2MmM1MjAuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799313273454_ad716befaf43d2df147629d95262c520.jpg\'><img width=\"150\" height=\"112\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799313273454_ad716befaf43d2df147629d95262c520.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MTYyNDlfOTZiMmZlYTVmZTMzZjRhMjRkODI1MWM4YWFmMjI1ZTEuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363716249_96b2fea5fe33f4a24d8251c8aaf225e1.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363716249_96b2fea5fe33f4a24d8251c8aaf225e1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MjM3NzFfOWVlYzRkNTFmYzE3MjNmYjY2OWY5ODAwODRlMjBhNjEuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363723771_9eec4d51fc1723fb669f980084e20a61.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363723771_9eec4d51fc1723fb669f980084e20a61.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MjM4OTJfNWI3MjAwMDI2MjAyYTFlZmU5NjU5NjEwOWZhZDY4NTcuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363723892_5b7200026202a1efe96596109fad6857.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363723892_5b7200026202a1efe96596109fad6857.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3MzUzNjFfOTM1NWZhN2ViOTkxMTIzZGM5OTVkZmFhMmI0Y2Y3NTQuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363735361_9355fa7eb991123dc995dfaa2b4cf754.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363735361_9355fa7eb991123dc995dfaa2b4cf754.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3NDY3NjJfNjI0MWFjNGM2NjI1NTgxYjVkYjliMjRhMWVlMDVmNjgtMS5qcGciLCJzbGlkZXNob3ciOiJjZDlkYmE5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363746762_6241ac4c6625581b5db9b24a1ee05f68-1.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363746762_6241ac4c6625581b5db9b24a1ee05f68-1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTIzNjM3NDE0MDlfZDcyMTI0ZDkwOTEyODBmNjUyOWEyN2E5MTliZTEzYzkuanBnIiwic2xpZGVzaG93IjoiY2Q5ZGJhOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5952363741409_d72124d9091280f6529a27a919be13c9.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5952363741409_d72124d9091280f6529a27a919be13c9.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			工具\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwMTgzMzRfMTdjNWZhYzk2ZmIyODQzZDc0YTc2Y2M3OWY5YjRmNWMuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\'><img width=\"150\" height=\"135\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwMzczNTNfZGI4NzczMmIzZWE5ZDkzNTM2YmNkM2FlYzY0ODM1YTcuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNTkxNjJfMDUzYjM2NGFiNzYxZGM1YTQ0Mjc5ZmFmNjQzOTUzMjQuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\'><img width=\"70\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNzgzNzJfNTBhYmNlNTI0OWM4YWNkY2ZiZGY4YTA2MzQ4OWUxODYuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNzg1NzBfMGFiNThiNDZiZjY4M2RmNmVjZGIyYzJkODc5NDViYTYuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\'><img width=\"150\" height=\"129\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk2ODQ5NDkwODZfYjI5ZmRiNTAxMTRhMTk2Y2MzZmRjYzllMTJjYWYxMDUuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\'><img width=\"150\" height=\"128\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk2ODQ5NDY2NDFfMTUwMGZiZTE2ZmVjM2ExNGVhZGI4ZTRhZWQxY2Y2M2YuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			オートバイの部品\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTEzMDA5NzlfMDA1MjcxNmI0NjI4NDNhNWQxOTY4Zjc4NzBjNzJmZDguanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028111300979_0052716b462843a5d1968f7870c72fd8.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028111300979_0052716b462843a5d1968f7870c72fd8.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTIwMDAwMDBfMjQ0MGQ1YWUzNmY3MDA4NDBkMGYwYjU4M2JiY2JkZmEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028112000000_2440d5ae36f700840d0f0b583bbcbdfa.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028112000000_2440d5ae36f700840d0f0b583bbcbdfa.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTI2NzAwMjRfMTgwNmFmZDdkNzBiYmJjNTIzZDYzYjBjNjFlOTEzMGIuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028112670024_1806afd7d70bbbc523d63b0c61e9130b.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028112670024_1806afd7d70bbbc523d63b0c61e9130b.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTMyODc5MTJfZTFhYThiZGI5ZmU3MmIxZmUyMjg4N2NlYWFmYzBkYmQuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028113287912_e1aa8bdb9fe72b1fe22887ceaafc0dbd.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028113287912_e1aa8bdb9fe72b1fe22887ceaafc0dbd.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTM4OTQ3MDRfMzUwNGU0YmYwOTNhZDlmOWQ2MzVjOGJmYTJhYWFlZjYuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028113894704_3504e4bf093ad9f9d635c8bfa2aaaef6.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028113894704_3504e4bf093ad9f9d635c8bfa2aaaef6.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTQ3Njc3MzlfZDAxNGIxMGRhNTA4OGJjN2QzNjc1YTZkMDBlNzdkMzMuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028114767739_d014b10da5088bc7d3675a6d00e77d33.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028114767739_d014b10da5088bc7d3675a6d00e77d33.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE0MzQ1NjFfNmQyY2I3NWVkYmE4MjgzMmUwY2JkOTA2NzM4NTdiZDMuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321434561_6d2cb75edba82832e0cbd90673857bd3.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321434561_6d2cb75edba82832e0cbd90673857bd3.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE0NDgwODhfNmU2OTQ0YzNjZWIzMzU4OTdlMmI0ZjRhZDIwOTc1YjcuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321448088_6e6944c3ceb335897e2b4f4ad20975b7.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321448088_6e6944c3ceb335897e2b4f4ad20975b7.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE1NDg1NTdfMWE1ZTY5YTg5Y2EzNzk1M2UwYzA0Yzg4ZTUyOWQ5NTEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321548557_1a5e69a89ca37953e0c04c88e529d951.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321548557_1a5e69a89ca37953e0c04c88e529d951.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMDk2MzA3MDRfMjlhODJkZjk3ZWE0ZWE3YzM3ODU5Zjk2NjcxNTRkYTEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028109630704_29a82df97ea4ea7c37859f9667154da1.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028109630704_29a82df97ea4ea7c37859f9667154da1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMDk2NzU5ODRfNTExYmI1ODY5MGE3M2FiOWNjMWFkY2QxNDZjYTQ2ZjIuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028109675984_511bb58690a73ab9cc1adcd146ca46f2.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028109675984_511bb58690a73ab9cc1adcd146ca46f2.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTA2MzE0MTVfOWJkMzc1NDUxYjIyNDI3NzZjM2ZhNDdhNWU5MWYzZTEuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028110631415_9bd375451b2242776c3fa47a5e91f3e1.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028110631415_9bd375451b2242776c3fa47a5e91f3e1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcyOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwMjgxMTExNjcxMDFfNjg1ZGUyZTUzOTViYmY4ZDk3ZTRkMmY4YWE4N2ZlZTMuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6028111167101_685de2e5395bbf8d97e4d2f8aa87fee3.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6028111167101_685de2e5395bbf8d97e4d2f8aa87fee3.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			治具\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NDY1OTEzMzg2ODdfZmE1MTRlMTY0ZjJlZTk5NjFjZmVlY2U5YjJhMjk2MmUuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTE0ODI0OTc5ODFfNGZlOGQ1MmM3N2ZiOTcwYWNjYWNhOTkzMTFiM2U1YjguanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNTQzNzc3MTM5OTRfNzMxZjNhYzFmN2YzMjMyNjExMWE0MWY2N2Q0YTJlMzMuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE2NTM3NjdfNzk3Y2FkYTk3Yjk4NjQyZTYyYzkxODU3YzYwYjViNDQuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NDY1OTEzNDkxOTRfZDUwMTBkMTcwMGM3Y2ViNDkxYjk3OGIwMWJlM2RkMjguanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>','製品','','inherit','closed','closed','','3003-revision-v1','','','2025-03-17 03:21:57','2025-03-17 03:21:57','',3003,'https://fe2tech.com/?p=3284',0,'revision','',0),(3285,1,'2025-03-17 03:21:57','2025-03-17 03:21:57','<h5>\n        私たちの強みは、アルミニウムと鋼の大量生産にあります。私たちは革新に優れ、顧客に高付加価値の製品を提供します。    </h5>\n			自動車&オートバイ\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWI2Mjc3NTE2NjIyMTQxYjY4MTc4ZjY2YmViYWFkZDkzby5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Ab6277516622141b68178f66bebaadd93o.jpg_350x350.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Ab6277516622141b68178f66bebaadd93o.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTQ5NjllZjIzNDNhMjQ0NjA4Y2M1MTFkMWU3YmUyOGUyWC5wbmdfMzUweDM1MC5wbmciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A4969ef2343a244608cc511d1e7be28e2X.png_350x350.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A4969ef2343a244608cc511d1e7be28e2X.png_350x350.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvSDliZTY0NjE0OTRjZjRmZTc5OTgxOTJkYzQ4MzA2NmM5di5wbmdfMzUweDM1MC5wbmciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/H9be6461494cf4fe7998192dc483066c9v.png_350x350.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/H9be6461494cf4fe7998192dc483066c9v.png_350x350.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvSDRjYmFjNDdhZTZjZjQ3MDViOTY2NjY4Y2ExYWJhZDUwOS5wbmdfMzUweDM1MC5wbmciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/H4cbac47ae6cf4705b966668ca1abad509.png_350x350.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/H4cbac47ae6cf4705b966668ca1abad509.png_350x350.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvSDZjMDBiZDIzN2Q4YjQ2ZDRiMDZhMWNjNmVmNzZhY2NmRS5wbmdfMzUweDM1MC5wbmciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/H6c00bd237d8b46d4b06a1cc6ef76accfE.png_350x350.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/H6c00bd237d8b46d4b06a1cc6ef76accfE.png_350x350.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvSDcxYWJlN2E3NjNhMzQ1YWU4N2RjZjcwYzI1YTcwYTMyTS5wbmdfMzUweDM1MC5wbmciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/H71abe7a763a345ae87dcf70c25a70a32M.png_350x350.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/H71abe7a763a345ae87dcf70c25a70a32M.png_350x350.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvMi5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/2.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/2.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTA0NWZlNDUzNDU2NjQzOTRhMmE4MDQ5OWI0YmQyMTE3aS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A045fe45345664394a2a80499b4bd2117i.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A045fe45345664394a2a80499b4bd2117i.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTg2ZTAzOWRmMWM5ZDRlODA5ZWE1M2RmZDY3NmJhNjdhTy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A86e039df1c9d4e809ea53dfd676ba67aO.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A86e039df1c9d4e809ea53dfd676ba67aO.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTc4NmRjNDI3YWY0NjQ1N2VhOTIzYzQxZWE3Njg4ZjY3US5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A786dc427af46457ea923c41ea7688f67Q.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A786dc427af46457ea923c41ea7688f67Q.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvNi5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/6.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/6.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTJlZDVhNWMzZjhmNTQ0Yzg5MTBhM2ZlMjlkYTVlMjk4NC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A2ed5a5c3f8f544c8910a3fe29da5e2984.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A2ed5a5c3f8f544c8910a3fe29da5e2984.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTNjODA2NDY4NTRjZDQ0MDFiNmI3MzdhODBlOGUyOWYyWi5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A3c80646854cd4401b6b737a80e8e29f2Z.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A3c80646854cd4401b6b737a80e8e29f2Z.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTUzZjk0ZmZmYTBlNjRiYThhNDczMzBlODVhMTc5MjE0bC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A53f94fffa0e64ba8a47330e85a179214l.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A53f94fffa0e64ba8a47330e85a179214l.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWE1NTlhYWE4ZThkNDQ4NjhiNzAwOTY3ZTE4MjYzMWUwTy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Aa559aaa8e8d44868b700967e182631e0O.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Aa559aaa8e8d44868b700967e182631e0O.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvNC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/4.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/4.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTI5MjA5ZmNhMTRlMzQ5MTI4NmE3YWUyYTdkNTM1MDY2dC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A29209fca14e3491286a7ae2a7d535066t.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A29209fca14e3491286a7ae2a7d535066t.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWZkNmU1MDE4ZDU0YTRjMzE5YjQ5NDFhZjU3ZTM4ZmMxZS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Afd6e5018d54a4c319b4941af57e38fc1e.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Afd6e5018d54a4c319b4941af57e38fc1e.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTg2MjZkZjVhZTg5YzQ1ODQ4NGNiZGVhYjZiMGEyNzY4RS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A8626df5ae89c458484cbdeab6b0a2768E.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A8626df5ae89c458484cbdeab6b0a2768E.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWVjMmE0Y2Q4OTVlNjQ4YjZiYzcxNzRkODY0ZTEwMzMyOS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Aec2a4cd895e648b6bc7174d864e103329.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Aec2a4cd895e648b6bc7174d864e103329.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvMS5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/1.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTVmYTcxYjBlZGRmNjQ4MDQ5YzVmMzNkMzMxNzM4NDYwbS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A5fa71b0eddf648049c5f33d331738460m.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A5fa71b0eddf648049c5f33d331738460m.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTliYzE4NzI2OTdkNjQ5ZTdhMjhkMTRjNDhjZDZiNzFicS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A9bc1872697d649e7a28d14c48cd6b71bq.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A9bc1872697d649e7a28d14c48cd6b71bq.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWQwYzc4MmI4NDYxNTQ4NGQ4MzAzYWQ5NjRjZDMwMmE0Qy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Ad0c782b84615484d8303ad964cd302a4C.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Ad0c782b84615484d8303ad964cd302a4C.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWVjM2Y0NGQyYzBjZjQ1MzY4NzBiMTkwOTdiNTAzNWY0QS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Aec3f44d2c0cf4536870b19097b5035f4A.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Aec3f44d2c0cf4536870b19097b5035f4A.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvOC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/8.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/8.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTVkZjYxOWNlODllYzQyMTg5YTVjNGQwNWJiYmE0ZjJkdy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A5df619ce89ec42189a5c4d05bbba4f2dw.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A5df619ce89ec42189a5c4d05bbba4f2dw.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTkyMDcwMTU1OThhZTQ3ZTRiYTU3ZDVkNjc1NWE3OTQ1Si5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A9207015598ae47e4ba57d5d6755a7945J.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A9207015598ae47e4ba57d5d6755a7945J.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWE2NzUxNGNhMTUzYTQzMjA4NjEyNjExYWYxNWFlNjg5dC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Aa67514ca153a43208612611af15ae689t.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Aa67514ca153a43208612611af15ae689t.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWM4YzU3YWY1N2ZjMDRhOWI4YWZiY2Y1MjE0ZDhiMTI1YS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Ac8c57af57fc04a9b8afbcf5214d8b125a.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Ac8c57af57fc04a9b8afbcf5214d8b125a.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWVhMWEyZWE2YzlkMDRiNzg5NzdkMWU4YzkwN2U3MjFjUi5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Aea1a2ea6c9d04b78977d1e8c907e721cR.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Aea1a2ea6c9d04b78977d1e8c907e721cR.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvNS5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/5.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/5.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvNy5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/7.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/7.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTRmYTIyYjNkYjQ3MDQxNDVhOWM4ZjJiNmQ0MTNiNGI3WS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A4fa22b3db4704145a9c8f2b6d413b4b7Y.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A4fa22b3db4704145a9c8f2b6d413b4b7Y.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQThjZmExNTRjYTcwYTQ2YzU5NjVlOTkzMjU1YjUzZWNiZy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A8cfa154ca70a46c5965e993255b53ecbg.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A8cfa154ca70a46c5965e993255b53ecbg.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTk2N2M2MzRhNTE3YzQ4ZjM4YzIzZDQ3NjZkYjViYmExYS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A967c634a517c48f38c23d4766db5bba1a.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A967c634a517c48f38c23d4766db5bba1a.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTQ2MjQxM2I2ZGUyYjQwMWJhNjBlOTliYmUxZDE1ZTMzSy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A462413b6de2b401ba60e99bbe1d15e33K.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A462413b6de2b401ba60e99bbe1d15e33K.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTY2MTM5OTE0MmE3MjQ3Mjc4YmJmNjlhOWQ2MDA3NTU2Vy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A661399142a7247278bbf69a9d6007556W.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A661399142a7247278bbf69a9d6007556W.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvMTAuanBnIiwic2xpZGVzaG93IjoiZTE2MDI5NCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/10.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/10.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTE2ZWI3MWY1NDZjNDRjNGJhMDBjNmFmZTQ2NDY0ZDU5My5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A16eb71f546c44c4ba00c6afe46464d593.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A16eb71f546c44c4ba00c6afe46464d593.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTcyYTIxYmE5NjljODRiOThiNjNiOTg1MzgwYjk3ZWY1Ty5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A72a21ba969c84b98b63b985380b97ef5O.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A72a21ba969c84b98b63b985380b97ef5O.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTk5NTc0ZWJlMWE2YzQzMmFiZWJiOTE2ODBlM2UyMjdlMC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A99574ebe1a6c432abebb91680e3e227e0.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A99574ebe1a6c432abebb91680e3e227e0.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWM2ZDlhM2I3OWE5MDRlZWI5YzkyNWFmYTM3NGVjNTNhQS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Ac6d9a3b79a904eeb9c925afa374ec53aA.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Ac6d9a3b79a904eeb9c925afa374ec53aA.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWRlZjA1YzMyMTIxOTRmMjU5ZjE1NTZjZDUwODFhYjNlZy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Adef05c3212194f259f1556cd5081ab3eg.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Adef05c3212194f259f1556cd5081ab3eg.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvMy5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/3.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/3.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvOS5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/9.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/9.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTI2OGFhOGY5YjY1YzRjZGY5ZjQ1ZTU5NGYyY2Q4YWQ0TS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A268aa8f9b65c4cdf9f45e594f2cd8ad4M.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A268aa8f9b65c4cdf9f45e594f2cd8ad4M.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTg2NDQzMmYyNTcxNzQzNjg5MzQyYWUxNzNlZTlkYzlmZC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A864432f2571743689342ae173ee9dc9fd.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A864432f2571743689342ae173ee9dc9fd.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWJkNDM4NTFjOTI2NTRiZDk5Y2ZkY2E0NWQ4OTZmYmNiQi5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Abd43851c92654bd99cfdca45d896fbcbB.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Abd43851c92654bd99cfdca45d896fbcbB.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWNkZDEyMjYyOThkZDQ2MTNhYmYwMjFiZGNhYWQzMjBiMC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Acdd1226298dd4613abf021bdcaad320b0.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Acdd1226298dd4613abf021bdcaad320b0.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWU5MWJmN2Y1MWRiMzQwMmViYWZmNjEwYzI5OWU5YWFjRi5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Ae91bf7f51db3402ebaff610c299e9aacF.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Ae91bf7f51db3402ebaff610c299e9aacF.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTA1ZjE4ZDQ3ZTcwOTQ4YWU4Nzk1MTExZDA1NWY0MmZhMi5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A05f18d47e70948ae8795111d055f42fa2.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A05f18d47e70948ae8795111d055f42fa2.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTVjMzc3OTJmMzg0MzQzODhhMDJhMDQ3OWZjYmM0MTIzVC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A5c37792f38434388a02a0479fcbc4123T.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A5c37792f38434388a02a0479fcbc4123T.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQThjNDIwOTkyZjQ3NzQ1NTA5ZjRmMjkyYWM3YmQyMjU4SC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A8c420992f47745509f4f292ac7bd2258H.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A8c420992f47745509f4f292ac7bd2258H.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTEwMDFlNjNlYTU5MTQ5ZjhhODFhYmI5MmQ1ZDVmZTcxMy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A1001e63ea59149f8a81abb92d5d5fe713.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A1001e63ea59149f8a81abb92d5d5fe713.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTM2MzQ2Zjg4MWIxMDQ5OTZiNmMwNzBiNWQyY2ViZmY4dS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A36346f881b104996b6c070b5d2cebff8u.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A36346f881b104996b6c070b5d2cebff8u.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"e160294\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTE1NzE4M2MwN2E3NjRlYjg5NTdiYzRjZDEzOTgyODA4aS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiJlMTYwMjk0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A157183c07a764eb8957bc4cd13982808i.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A157183c07a764eb8957bc4cd13982808i.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			CNC加工部品\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c570843\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rNS5qcGciLCJzbGlkZXNob3ciOiJjNTcwODQzIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok5.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok5.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c570843\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rNC5wbmciLCJzbGlkZXNob3ciOiJjNTcwODQzIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok4.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok4.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c570843\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW1hY2hpbmUyMi5hdmlmIiwic2xpZGVzaG93IjoiYzU3MDg0MyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-machine22.avif\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-machine22.avif\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c570843\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW1hY2hpbmUzLmpwZyIsInNsaWRlc2hvdyI6ImM1NzA4NDMifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-machine3.jpg\'><img width=\"150\" height=\"100\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-machine3.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c570843\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rMy5wbmciLCJzbGlkZXNob3ciOiJjNTcwODQzIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok3.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok3.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c570843\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rMS5wbmciLCJzbGlkZXNob3ciOiJjNTcwODQzIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok1.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok1.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c570843\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rMi5wbmciLCJzbGlkZXNob3ciOiJjNTcwODQzIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok2.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok2.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c570843\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rNy5wbmciLCJzbGlkZXNob3ciOiJjNTcwODQzIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok7.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok7.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c570843\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rOS5qcGciLCJzbGlkZXNob3ciOiJjNTcwODQzIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok9.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok9.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c570843\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rOC5qcGciLCJzbGlkZXNob3ciOiJjNTcwODQzIn0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok8.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok8.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c570843\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejU3MDk0NDM0NzY3OTdfY2IzZTllMGQ1OTZhZDYzMzEzNjZiOGE3MTFmNDY5MjYuanBnIiwic2xpZGVzaG93IjoiYzU3MDg0MyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z5709443476797_cb3e9e0d596ad6331366b8a711f46926.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z5709443476797_cb3e9e0d596ad6331366b8a711f46926.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			板金加工&製作\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1cd9da4\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWwxLmpwZyIsInNsaWRlc2hvdyI6IjFjZDlkYTQifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal1.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1cd9da4\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWwzLmpwZyIsInNsaWRlc2hvdyI6IjFjZDlkYTQifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal3.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal3.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1cd9da4\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw0LmpwZyIsInNsaWRlc2hvdyI6IjFjZDlkYTQifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal4.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal4.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1cd9da4\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw1LmpwZyIsInNsaWRlc2hvdyI6IjFjZDlkYTQifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal5.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal5.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1cd9da4\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw3LmpwZyIsInNsaWRlc2hvdyI6IjFjZDlkYTQifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal7.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal7.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1cd9da4\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw4LmpwZyIsInNsaWRlc2hvdyI6IjFjZDlkYTQifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal8.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal8.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1cd9da4\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw5LmpwZyIsInNsaWRlc2hvdyI6IjFjZDlkYTQifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal9.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal9.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1cd9da4\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWwxMC5qcGciLCJzbGlkZXNob3ciOiIxY2Q5ZGE0In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal10.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal10.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1cd9da4\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWwyLnBuZyIsInNsaWRlc2hvdyI6IjFjZDlkYTQifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal2.png\'><img width=\"84\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal2.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1cd9da4\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw2LmpwZyIsInNsaWRlc2hvdyI6IjFjZDlkYTQifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal6.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal6.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			金型・ダイ部品\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"2c28c08\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzYxNjUzNzJfODI1NjkzMjRkZTFjOGZjYzM3NmNjMGU3MzdjMDUyMGUuanBnIiwic2xpZGVzaG93IjoiMmMyOGMwOCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"2c28c08\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzY0NTU3NzVfOTdhOTM3ODA3YzgwN2JmNzEzNjk0MTlhMGE1ZDNkMmMuanBnIiwic2xpZGVzaG93IjoiMmMyOGMwOCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\'><img width=\"68\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"2c28c08\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzU4OTM2OTJfNDhmNGE5ZjdjN2E5ZDA1ZGMwMzdhODBhYzFlNTc4MmIuanBnIiwic2xpZGVzaG93IjoiMmMyOGMwOCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"2c28c08\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzYwMDk1MTRfYWQ5MDg4N2YyNWQ3MzRlYzJkMjFkOGE2YTYzNGZmMmQuanBnIiwic2xpZGVzaG93IjoiMmMyOGMwOCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"2c28c08\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzY3MjE1ODZfMTZiOTE5ODQyMGIzOTlmOWQ4MmMwNThkOTA4MmEzZTAuanBnIiwic2xpZGVzaG93IjoiMmMyOGMwOCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"2c28c08\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzYxMTA0MjZfYzNlY2UzZWM1NmY5ZThjYzBlNWM5YTk4Zjk3OTJiZmMuanBnIiwic2xpZGVzaG93IjoiMmMyOGMwOCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			産業用ファスナー&ボルト\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"66c41e5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvSU1HXzEyMzcuanBlZyIsInNsaWRlc2hvdyI6IjY2YzQxZTUifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/IMG_1237.jpeg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/IMG_1237.jpeg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"66c41e5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvRFNDMDA4MjIuanBnIiwic2xpZGVzaG93IjoiNjZjNDFlNSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/DSC00822.jpg\'><img width=\"150\" height=\"100\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/DSC00822.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			工具\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a432afc\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwMTgzMzRfMTdjNWZhYzk2ZmIyODQzZDc0YTc2Y2M3OWY5YjRmNWMuanBnIiwic2xpZGVzaG93IjoiYTQzMmFmYyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\'><img width=\"150\" height=\"135\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a432afc\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwMzczNTNfZGI4NzczMmIzZWE5ZDkzNTM2YmNkM2FlYzY0ODM1YTcuanBnIiwic2xpZGVzaG93IjoiYTQzMmFmYyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a432afc\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNTkxNjJfMDUzYjM2NGFiNzYxZGM1YTQ0Mjc5ZmFmNjQzOTUzMjQuanBnIiwic2xpZGVzaG93IjoiYTQzMmFmYyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\'><img width=\"70\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a432afc\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNzgzNzJfNTBhYmNlNTI0OWM4YWNkY2ZiZGY4YTA2MzQ4OWUxODYuanBnIiwic2xpZGVzaG93IjoiYTQzMmFmYyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a432afc\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNzg1NzBfMGFiNThiNDZiZjY4M2RmNmVjZGIyYzJkODc5NDViYTYuanBnIiwic2xpZGVzaG93IjoiYTQzMmFmYyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\'><img width=\"150\" height=\"129\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a432afc\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk2ODQ5NDkwODZfYjI5ZmRiNTAxMTRhMTk2Y2MzZmRjYzllMTJjYWYxMDUuanBnIiwic2xpZGVzaG93IjoiYTQzMmFmYyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\'><img width=\"150\" height=\"128\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a432afc\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk2ODQ5NDY2NDFfMTUwMGZiZTE2ZmVjM2ExNGVhZGI4ZTRhZWQxY2Y2M2YuanBnIiwic2xpZGVzaG93IjoiYTQzMmFmYyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			ジグ\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"8703d3d\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NDY1OTEzMzg2ODdfZmE1MTRlMTY0ZjJlZTk5NjFjZmVlY2U5YjJhMjk2MmUuanBnIiwic2xpZGVzaG93IjoiODcwM2QzZCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"8703d3d\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTE0ODI0OTc5ODFfNGZlOGQ1MmM3N2ZiOTcwYWNjYWNhOTkzMTFiM2U1YjguanBnIiwic2xpZGVzaG93IjoiODcwM2QzZCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"8703d3d\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNTQzNzc3MTM5OTRfNzMxZjNhYzFmN2YzMjMyNjExMWE0MWY2N2Q0YTJlMzMuanBnIiwic2xpZGVzaG93IjoiODcwM2QzZCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"8703d3d\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE2NTM3NjdfNzk3Y2FkYTk3Yjk4NjQyZTYyYzkxODU3YzYwYjViNDQuanBnIiwic2xpZGVzaG93IjoiODcwM2QzZCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"8703d3d\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NDY1OTEzNDkxOTRfZDUwMTBkMTcwMGM3Y2ViNDkxYjk3OGIwMWJlM2RkMjguanBnIiwic2xpZGVzaG93IjoiODcwM2QzZCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>','製品','','inherit','closed','closed','','3003-revision-v1','','','2025-03-17 03:21:57','2025-03-17 03:21:57','',3003,'https://fe2tech.com/?p=3285',0,'revision','',0),(3286,1,'2025-03-17 03:25:43','2025-03-17 03:25:43','','profile','','inherit','open','closed','','profile','','','2025-03-17 03:25:43','2025-03-17 03:25:43','',26,'https://fe2tech.com/wp-content/uploads/2025/03/profile.pdf',0,'attachment','application/pdf',0),(3287,1,'2025-03-17 03:26:00','2025-03-17 03:26:00','About us\n	    <h3>\n        We satisfy you with innovative ideas and quality work.    </h3>\n		<p>We exceed expectations through innovative ideas and exceptional craftsmanship.</p>		\n													<img width=\"59\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png\" alt=\"\" />													\n	    <h3>\n        Time manage    </h3>\n		<p>Efficiently organizing tasks to maximize productivity and meet deadlines.</p>		\n													<img width=\"55\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-02.png\" alt=\"\" />													\n	    <h3>\n        Fulfill target    </h3>\n		<p>Achieving goals with precision and commitment, ensuring success.</p>		\n    <img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218231.webp\" alt=\"\" />		\n            <img width=\"111\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature1.png\" alt=\"\" />\n        <h3>Tin Luu</h3>\n        (Chairman and founder)\n            Want to know more about us?\n            Just download brochure...\n            <a href=\"https://fe2tech.com/wp-content/uploads/2024/10/BROCHURE.pdf\" target=\"_blank\" rel=\"nofollow noopener\">\n                                                                    Download Brochure            </a>\n			Company history\n	    <h3>\n        Far East High Tech is a professional builder company    </h3>\n		<p>Far East High Tech is a leading company in building and manufacturing high-quality mechanical solutions.</p>		\n			Start		\n								<h3>1st Apr, 2021</h3>\n								With the strong growth of Far East Tech, we decided to expand our branch in the South.\n								<h3>1st Jun, 2022</h3>\n								Far East Tech took a significant step in industrial-scale production with a 2000m2 workshop and 70 CNC machines in Bắc Ninh.\n								<h3>20th Nov, 2018</h3>\n								Far East Tech was established in Quế Võ, Bắc Ninh with 5 founding members.\n								<h3>30th Apr, 2021</h3>\n								We successfully acquired DMM Precision Engineering Co., Ltd. in Bình Dương, a company with experience in exporting goods to Japan since 2016,\nand thus, we established a machining company in the southern region.\n								<h3>2024</h3>\n								DMM Precision Engineering Co., Ltd. officially changed its name to Far East High Tech Co., Ltd.\nAfter 2025: This will be a year of strong development for our company team.','About Us','','inherit','closed','closed','','26-revision-v1','','','2025-03-17 03:26:00','2025-03-17 03:26:00','',26,'https://fe2tech.com/?p=3287',0,'revision','',0),(3288,1,'2025-03-17 03:26:01','2025-03-17 03:26:01','About us\n	    <h3>\n        We satisfy you with innovative ideas and quality work.    </h3>\n		<p>We exceed expectations through innovative ideas and exceptional craftsmanship.</p>		\n													<img width=\"59\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png\" alt=\"\" />													\n	    <h3>\n        Time manage    </h3>\n		<p>Efficiently organizing tasks to maximize productivity and meet deadlines.</p>		\n													<img width=\"55\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-02.png\" alt=\"\" />													\n	    <h3>\n        Fulfill target    </h3>\n		<p>Achieving goals with precision and commitment, ensuring success.</p>		\n    <img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218231.webp\" alt=\"\" />		\n            <img width=\"111\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature1.png\" alt=\"\" />\n        <h3>Tin Luu</h3>\n        (Chairman and founder)\n            Want to know more about us?\n            Just download brochure...\n            <a href=\"https://fe2tech.com/wp-content/uploads/2024/10/BROCHURE.pdf\" target=\"_blank\" rel=\"nofollow noopener\">\n                                                                    Download Brochure            </a>\n			Company history\n	    <h3>\n        Far East High Tech is a professional builder company    </h3>\n		<p>Far East High Tech is a leading company in building and manufacturing high-quality mechanical solutions.</p>		\n			Start		\n								<h3>1st Apr, 2021</h3>\n								With the strong growth of Far East Tech, we decided to expand our branch in the South.\n								<h3>1st Jun, 2022</h3>\n								Far East Tech took a significant step in industrial-scale production with a 2000m2 workshop and 70 CNC machines in Bắc Ninh.\n								<h3>20th Nov, 2018</h3>\n								Far East Tech was established in Quế Võ, Bắc Ninh with 5 founding members.\n								<h3>30th Apr, 2021</h3>\n								We successfully acquired DMM Precision Engineering Co., Ltd. in Bình Dương, a company with experience in exporting goods to Japan since 2016,\nand thus, we established a machining company in the southern region.\n								<h3>2024</h3>\n								DMM Precision Engineering Co., Ltd. officially changed its name to Far East High Tech Co., Ltd.\nAfter 2025: This will be a year of strong development for our company team.','About Us','','inherit','closed','closed','','26-revision-v1','','','2025-03-17 03:26:01','2025-03-17 03:26:01','',26,'https://fe2tech.com/?p=3288',0,'revision','',0),(3289,1,'2025-03-17 03:26:01','2025-03-17 03:26:01','About us\n	    <h3>\n        We satisfy you with innovative ideas and quality work.    </h3>\n		<p>We exceed expectations through innovative ideas and exceptional craftsmanship.</p>		\n													<img width=\"59\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png\" alt=\"\" />													\n	    <h3>\n        Time manage    </h3>\n		<p>Efficiently organizing tasks to maximize productivity and meet deadlines.</p>		\n													<img width=\"55\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-02.png\" alt=\"\" />													\n	    <h3>\n        Fulfill target    </h3>\n		<p>Achieving goals with precision and commitment, ensuring success.</p>		\n    <img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218231.webp\" alt=\"\" />		\n            <img width=\"111\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature1.png\" alt=\"\" />\n        <h3>Tin Luu</h3>\n        (Chairman and founder)\n            Want to know more about us?\n            Just download brochure...\n            <a href=\"https://fe2tech.com/wp-content/uploads/2025/03/profile.pdf\" target=\"_blank\" rel=\"nofollow noopener\">\n                                                                    Download Brochure            </a>\n			Company history\n	    <h3>\n        Far East High Tech is a professional builder company    </h3>\n		<p>Far East High Tech is a leading company in building and manufacturing high-quality mechanical solutions.</p>		\n			Start		\n								<h3>1st Apr, 2021</h3>\n								With the strong growth of Far East Tech, we decided to expand our branch in the South.\n								<h3>1st Jun, 2022</h3>\n								Far East Tech took a significant step in industrial-scale production with a 2000m2 workshop and 70 CNC machines in Bắc Ninh.\n								<h3>20th Nov, 2018</h3>\n								Far East Tech was established in Quế Võ, Bắc Ninh with 5 founding members.\n								<h3>30th Apr, 2021</h3>\n								We successfully acquired DMM Precision Engineering Co., Ltd. in Bình Dương, a company with experience in exporting goods to Japan since 2016,\nand thus, we established a machining company in the southern region.\n								<h3>2024</h3>\n								DMM Precision Engineering Co., Ltd. officially changed its name to Far East High Tech Co., Ltd.\nAfter 2025: This will be a year of strong development for our company team.','About Us','','inherit','closed','closed','','26-revision-v1','','','2025-03-17 03:26:01','2025-03-17 03:26:01','',26,'https://fe2tech.com/?p=3289',0,'revision','',0),(3290,1,'2025-03-17 03:26:06','2025-03-17 03:26:06','Về chúng tôi\n	    <h3>\n        Chúng tôi làm bạn hài lòng với những ý tưởng sáng tạo và công việc chất lượng.    </h3>\n		<p>Chúng tôi vượt qua mong đợi nhờ những ý tưởng sáng tạo và tay nghề xuất sắc.</p>		\n													<img width=\"59\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png\" alt=\"\" />													\n	    <h3>\n        Quản lý thời gian    </h3>\n		<p>Tổ chức công việc hiệu quả để tối đa hóa năng suất và hoàn thành đúng hạn.</p>		\n													<img width=\"55\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-02.png\" alt=\"\" />													\n	    <h3>\n        Hoàn thành mục tiêu    </h3>\n		<p>Đạt được mục tiêu với sự chính xác và cam kết, đảm bảo thành công.</p>		\n    <img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218231.webp\" alt=\"\" />		\n            <img width=\"111\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature1.png\" alt=\"\" />\n        <h3>Tin Luu</h3>\n        (Chủ tịch và người sáng lập)\n            Bạn muốn biết thêm về chúng tôi?\n            Chỉ cần tải brochure...\n            <a href=\"https://fe2tech.com/wp-content/uploads/2024/10/BROCHURE.pdf\" target=\"_blank\" rel=\"nofollow noopener\">\n                                                                    Tải Brochure            </a>\n			Lịch sử công ty\n	    <h3>\n        Far East High Tech là một công ty xây dựng chuyên nghiệp.    </h3>\n		<p>Far East High Tech là công ty hàng đầu trong việc xây dựng và sản xuất các giải pháp cơ khí chất lượng cao.</p>		\n			Start		\n								<h3>Ngày 1 tháng 4, 2021</h3>\n								Với sự phát triển mạnh mẽ của Far East Tech, chúng tôi quyết định mở rộng chi nhánh tại miền Nam.\n								<h3>Ngày 1 tháng 6, 2022</h3>\n								Far East Tech đã tiến một bước quan trọng trong sản xuất quy mô công nghiệp với một xưởng sản xuất rộng 2000m2 và 70 máy CNC tại Bắc Ninh.\n								<h3>Ngày 20 tháng 11, 2018</h3>\n								Far East Tech được thành lập tại Quế Võ, Bắc Ninh với 5 thành viên sáng lập.\n								<h3>Ngày 30 tháng 4, 2021</h3>\n								Chúng tôi đã thành công trong việc tiếp quản công ty DMM Precision Engineering Co., Ltd. tại Bình Dương, một công ty có kinh nghiệm xuất khẩu hàng hóa sang Nhật Bản từ năm 2016, và từ đó, chúng tôi đã thành lập một công ty gia công tại khu vực miền Nam.\n								<h3>2024</h3>\n								Công ty DMM Precision Engineering Co., Ltd. chính thức đổi tên thành Công ty TNHH Far East High Tech.\nSau năm 2025: Đây sẽ là năm phát triển mạnh mẽ của đội ngũ công ty chúng tôi.','Về chúng tôi','','inherit','closed','closed','','3022-revision-v1','','','2025-03-17 03:26:06','2025-03-17 03:26:06','',3022,'https://fe2tech.com/?p=3290',0,'revision','',0),(3291,1,'2025-03-17 03:26:07','2025-03-17 03:26:07','Về chúng tôi\n	    <h3>\n        Chúng tôi làm bạn hài lòng với những ý tưởng sáng tạo và công việc chất lượng.    </h3>\n		<p>Chúng tôi vượt qua mong đợi nhờ những ý tưởng sáng tạo và tay nghề xuất sắc.</p>		\n													<img width=\"59\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png\" alt=\"\" />													\n	    <h3>\n        Quản lý thời gian    </h3>\n		<p>Tổ chức công việc hiệu quả để tối đa hóa năng suất và hoàn thành đúng hạn.</p>		\n													<img width=\"55\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-02.png\" alt=\"\" />													\n	    <h3>\n        Hoàn thành mục tiêu    </h3>\n		<p>Đạt được mục tiêu với sự chính xác và cam kết, đảm bảo thành công.</p>		\n    <img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218231.webp\" alt=\"\" />		\n            <img width=\"111\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature1.png\" alt=\"\" />\n        <h3>Tin Luu</h3>\n        (Chủ tịch và người sáng lập)\n            Bạn muốn biết thêm về chúng tôi?\n            Chỉ cần tải brochure...\n            <a href=\"https://fe2tech.com/wp-content/uploads/2024/10/BROCHURE.pdf\" target=\"_blank\" rel=\"nofollow noopener\">\n                                                                    Tải Brochure            </a>\n			Lịch sử công ty\n	    <h3>\n        Far East High Tech là một công ty xây dựng chuyên nghiệp.    </h3>\n		<p>Far East High Tech là công ty hàng đầu trong việc xây dựng và sản xuất các giải pháp cơ khí chất lượng cao.</p>		\n			Start		\n								<h3>Ngày 1 tháng 4, 2021</h3>\n								Với sự phát triển mạnh mẽ của Far East Tech, chúng tôi quyết định mở rộng chi nhánh tại miền Nam.\n								<h3>Ngày 1 tháng 6, 2022</h3>\n								Far East Tech đã tiến một bước quan trọng trong sản xuất quy mô công nghiệp với một xưởng sản xuất rộng 2000m2 và 70 máy CNC tại Bắc Ninh.\n								<h3>Ngày 20 tháng 11, 2018</h3>\n								Far East Tech được thành lập tại Quế Võ, Bắc Ninh với 5 thành viên sáng lập.\n								<h3>Ngày 30 tháng 4, 2021</h3>\n								Chúng tôi đã thành công trong việc tiếp quản công ty DMM Precision Engineering Co., Ltd. tại Bình Dương, một công ty có kinh nghiệm xuất khẩu hàng hóa sang Nhật Bản từ năm 2016, và từ đó, chúng tôi đã thành lập một công ty gia công tại khu vực miền Nam.\n								<h3>2024</h3>\n								Công ty DMM Precision Engineering Co., Ltd. chính thức đổi tên thành Công ty TNHH Far East High Tech.\nSau năm 2025: Đây sẽ là năm phát triển mạnh mẽ của đội ngũ công ty chúng tôi.','Về chúng tôi','','inherit','closed','closed','','3022-revision-v1','','','2025-03-17 03:26:07','2025-03-17 03:26:07','',3022,'https://fe2tech.com/?p=3291',0,'revision','',0),(3292,1,'2025-03-17 03:26:07','2025-03-17 03:26:07','Về chúng tôi\n	    <h3>\n        Chúng tôi làm bạn hài lòng với những ý tưởng sáng tạo và công việc chất lượng.    </h3>\n		<p>Chúng tôi vượt qua mong đợi nhờ những ý tưởng sáng tạo và tay nghề xuất sắc.</p>		\n													<img width=\"59\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png\" alt=\"\" />													\n	    <h3>\n        Quản lý thời gian    </h3>\n		<p>Tổ chức công việc hiệu quả để tối đa hóa năng suất và hoàn thành đúng hạn.</p>		\n													<img width=\"55\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-02.png\" alt=\"\" />													\n	    <h3>\n        Hoàn thành mục tiêu    </h3>\n		<p>Đạt được mục tiêu với sự chính xác và cam kết, đảm bảo thành công.</p>		\n    <img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218231.webp\" alt=\"\" />		\n            <img width=\"111\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature1.png\" alt=\"\" />\n        <h3>Tin Luu</h3>\n        (Chủ tịch và người sáng lập)\n            Bạn muốn biết thêm về chúng tôi?\n            Chỉ cần tải brochure...\n            <a href=\"https://fe2tech.com/wp-content/uploads/2025/03/profile.pdf\" target=\"_blank\" rel=\"nofollow noopener\">\n                                                                    Tải Brochure            </a>\n			Lịch sử công ty\n	    <h3>\n        Far East High Tech là một công ty xây dựng chuyên nghiệp.    </h3>\n		<p>Far East High Tech là công ty hàng đầu trong việc xây dựng và sản xuất các giải pháp cơ khí chất lượng cao.</p>		\n			Start		\n								<h3>Ngày 1 tháng 4, 2021</h3>\n								Với sự phát triển mạnh mẽ của Far East Tech, chúng tôi quyết định mở rộng chi nhánh tại miền Nam.\n								<h3>Ngày 1 tháng 6, 2022</h3>\n								Far East Tech đã tiến một bước quan trọng trong sản xuất quy mô công nghiệp với một xưởng sản xuất rộng 2000m2 và 70 máy CNC tại Bắc Ninh.\n								<h3>Ngày 20 tháng 11, 2018</h3>\n								Far East Tech được thành lập tại Quế Võ, Bắc Ninh với 5 thành viên sáng lập.\n								<h3>Ngày 30 tháng 4, 2021</h3>\n								Chúng tôi đã thành công trong việc tiếp quản công ty DMM Precision Engineering Co., Ltd. tại Bình Dương, một công ty có kinh nghiệm xuất khẩu hàng hóa sang Nhật Bản từ năm 2016, và từ đó, chúng tôi đã thành lập một công ty gia công tại khu vực miền Nam.\n								<h3>2024</h3>\n								Công ty DMM Precision Engineering Co., Ltd. chính thức đổi tên thành Công ty TNHH Far East High Tech.\nSau năm 2025: Đây sẽ là năm phát triển mạnh mẽ của đội ngũ công ty chúng tôi.','Về chúng tôi','','inherit','closed','closed','','3022-revision-v1','','','2025-03-17 03:26:07','2025-03-17 03:26:07','',3022,'https://fe2tech.com/?p=3292',0,'revision','',0),(3293,1,'2025-03-17 03:26:13','2025-03-17 03:26:13','私たちについて\n	    <h3>\n        私たちは、革新的なアイデアと質の高い仕事でお客様を満足させます。    </h3>\n		<p>私たちは、革新的なアイデアと卓越した職人技で期待を超えます。</p>		\n													<img width=\"59\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png\" alt=\"\" />													\n	    <h3>\n        時間管理    </h3>\n		<p>生産性を最大化し、期限を守るためにタスクを効率的に整理します。</p>		\n													<img width=\"55\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-02.png\" alt=\"\" />													\n	    <h3>\n        目標を達成する    </h3>\n		<p>精度とコミットメントで目標を達成し、成功を確実にします。</p>		\n    <img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218231.webp\" alt=\"\" />		\n            <img width=\"111\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature1.png\" alt=\"\" />\n        <h3>Tin Luu</h3>\n        (会長兼創設者)\n            私たちについてもっと知りたいですか?\n            パンフレットをダウンロードするだけです...\n            <a href=\"https://fe2tech.com/wp-content/uploads/2024/10/BROCHURE.pdf\" target=\"_blank\" rel=\"nofollow noopener\">\n                                                                    Download Brochure            </a>\n			会社の歴史\n	    <h3>\n        Far East High Techは、プロフェッショナルな建設会社です。    </h3>\n		<p>Far East High Techは、高品質な機械ソリューションの構築と製造において先駆者的な企業です。</p>		\n			開始		\n								<h3>2021年4月1日</h3>\n								Far East Techの強力な成長に伴い、私たちは南部に支店を拡大することを決定しました。\n								<h3>2022年6月1日</h3>\n								Far East Techは、北寧に2000m2のワークショップと70台のCNC機械を備え、産業規模の生産において重要な一歩を踏み出しました。\n								<h3>2018年11月20日</h3>\n								Far East Techは、ベクビンのクエヴォで5人の創設メンバーと共に設立されました。\n								<h3>2021年4月30日</h3>\n								私たちは、2016年から日本への輸出経験を持つDMM Precision Engineering Co., Ltd.をビン Duongで買収し、これにより南部地域に機械加工会社を設立しました。\n								<h3>2024</h3>\n								DMM Precision Engineering Co., Ltd.は正式にFar East High Tech Co., Ltd.に社名を変更しました。\n2025年以降:これは私たちの会社チームにとって強力な発展の年となるでしょう。','私たちについて','','inherit','closed','closed','','3028-revision-v1','','','2025-03-17 03:26:13','2025-03-17 03:26:13','',3028,'https://fe2tech.com/?p=3293',0,'revision','',0),(3294,1,'2025-03-17 03:26:13','2025-03-17 03:26:13','私たちについて\n	    <h3>\n        私たちは、革新的なアイデアと質の高い仕事でお客様を満足させます。    </h3>\n		<p>私たちは、革新的なアイデアと卓越した職人技で期待を超えます。</p>		\n													<img width=\"59\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png\" alt=\"\" />													\n	    <h3>\n        時間管理    </h3>\n		<p>生産性を最大化し、期限を守るためにタスクを効率的に整理します。</p>		\n													<img width=\"55\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-02.png\" alt=\"\" />													\n	    <h3>\n        目標を達成する    </h3>\n		<p>精度とコミットメントで目標を達成し、成功を確実にします。</p>		\n    <img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218231.webp\" alt=\"\" />		\n            <img width=\"111\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature1.png\" alt=\"\" />\n        <h3>Tin Luu</h3>\n        (会長兼創設者)\n            私たちについてもっと知りたいですか?\n            パンフレットをダウンロードするだけです...\n            <a href=\"https://fe2tech.com/wp-content/uploads/2024/10/BROCHURE.pdf\" target=\"_blank\" rel=\"nofollow noopener\">\n                                                                    Download Brochure            </a>\n			会社の歴史\n	    <h3>\n        Far East High Techは、プロフェッショナルな建設会社です。    </h3>\n		<p>Far East High Techは、高品質な機械ソリューションの構築と製造において先駆者的な企業です。</p>		\n			開始		\n								<h3>2021年4月1日</h3>\n								Far East Techの強力な成長に伴い、私たちは南部に支店を拡大することを決定しました。\n								<h3>2022年6月1日</h3>\n								Far East Techは、北寧に2000m2のワークショップと70台のCNC機械を備え、産業規模の生産において重要な一歩を踏み出しました。\n								<h3>2018年11月20日</h3>\n								Far East Techは、ベクビンのクエヴォで5人の創設メンバーと共に設立されました。\n								<h3>2021年4月30日</h3>\n								私たちは、2016年から日本への輸出経験を持つDMM Precision Engineering Co., Ltd.をビン Duongで買収し、これにより南部地域に機械加工会社を設立しました。\n								<h3>2024</h3>\n								DMM Precision Engineering Co., Ltd.は正式にFar East High Tech Co., Ltd.に社名を変更しました。\n2025年以降:これは私たちの会社チームにとって強力な発展の年となるでしょう。','私たちについて','','inherit','closed','closed','','3028-revision-v1','','','2025-03-17 03:26:13','2025-03-17 03:26:13','',3028,'https://fe2tech.com/?p=3294',0,'revision','',0),(3295,1,'2025-03-17 03:26:14','2025-03-17 03:26:14','私たちについて\n	    <h3>\n        私たちは、革新的なアイデアと質の高い仕事でお客様を満足させます。    </h3>\n		<p>私たちは、革新的なアイデアと卓越した職人技で期待を超えます。</p>		\n													<img width=\"59\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png\" alt=\"\" />													\n	    <h3>\n        時間管理    </h3>\n		<p>生産性を最大化し、期限を守るためにタスクを効率的に整理します。</p>		\n													<img width=\"55\" height=\"58\" src=\"https://fe2tech.com/wp-content/uploads/2019/11/icon-box-02.png\" alt=\"\" />													\n	    <h3>\n        目標を達成する    </h3>\n		<p>精度とコミットメントで目標を達成し、成功を確実にします。</p>		\n    <img width=\"338\" height=\"450\" src=\"https://fe2tech.com/wp-content/uploads/2024/10/2218231.webp\" alt=\"\" />		\n            <img width=\"111\" height=\"55\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/signature1.png\" alt=\"\" />\n        <h3>Tin Luu</h3>\n        (会長兼創設者)\n            私たちについてもっと知りたいですか?\n            パンフレットをダウンロードするだけです...\n            <a href=\"https://fe2tech.com/wp-content/uploads/2025/03/profile.pdf\" target=\"_blank\" rel=\"nofollow noopener\">\n                                                                    Download Brochure            </a>\n			会社の歴史\n	    <h3>\n        Far East High Techは、プロフェッショナルな建設会社です。    </h3>\n		<p>Far East High Techは、高品質な機械ソリューションの構築と製造において先駆者的な企業です。</p>		\n			開始		\n								<h3>2021年4月1日</h3>\n								Far East Techの強力な成長に伴い、私たちは南部に支店を拡大することを決定しました。\n								<h3>2022年6月1日</h3>\n								Far East Techは、北寧に2000m2のワークショップと70台のCNC機械を備え、産業規模の生産において重要な一歩を踏み出しました。\n								<h3>2018年11月20日</h3>\n								Far East Techは、ベクビンのクエヴォで5人の創設メンバーと共に設立されました。\n								<h3>2021年4月30日</h3>\n								私たちは、2016年から日本への輸出経験を持つDMM Precision Engineering Co., Ltd.をビン Duongで買収し、これにより南部地域に機械加工会社を設立しました。\n								<h3>2024</h3>\n								DMM Precision Engineering Co., Ltd.は正式にFar East High Tech Co., Ltd.に社名を変更しました。\n2025年以降:これは私たちの会社チームにとって強力な発展の年となるでしょう。','私たちについて','','inherit','closed','closed','','3028-revision-v1','','','2025-03-17 03:26:14','2025-03-17 03:26:14','',3028,'https://fe2tech.com/?p=3295',0,'revision','',0),(3296,1,'2025-03-17 03:37:20','2025-03-17 03:37:20','<a href=\"http://fe2tech.com/\">\n							<img width=\"597\" height=\"597\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/logo.jpg\" alt=\"\" />								</a>\n			    <ul>\n                    <li>\n            	   Factory 1: Khac Niem Industrial Cluster, Khac Niem Ward, Bac Ninh City, Bac Ninh Province                \n           </li>\n                    <li>\n            	   Factory 2: 176/9 Nguyen Thi Tuoi, Tan Phuoc Quarter, Tan Binh Ward, Di An City, Binh Duong                \n           </li>\n                    <li>\n            	   0968 86 03 86                \n           </li>\n            </ul>\n    <h3>\n        Menu\n        <i></i>\n    </h3>\n        <ul id=\"menu-main-menu-2\"><li><a href=\"https://fe2tech.com/\">Home</a></li>\n<li><a href=\"https://fe2tech.com/product/\">Product</a></li>\n<li><a href=\"https://fe2tech.com/services/\">Service</a></li>\n<li><a href=\"https://fe2tech.com/team-member-companies/\">Team &#038; Member Companies</a></li>\n<li><a href=\"https://fe2tech.com/about/\">About Us</a></li>\n</ul>    \n    <h3>\n        Open Hours\n        <i></i>\n    </h3>\n		<p>Mon - Sun: 24/24</p>		\n    <h3>\n        Newsletter\n        <i></i>\n    </h3>\n		Sign up for alerts, our latest blogs, thoughts, and insights.		\n        <form method=\"post\" action=\"https://fe2tech.com/wp-admin/admin-ajax.php?action=tnp&amp;na=s\" style=\"\">\n<input type=\"hidden\" name=\"nlang\" value=\"\">\n<label for=\"tnp-3\">Your mail address</label>\n<input type=\"email\" name=\"ne\" id=\"tnp-3\" value=\"\" placeholder=\"\" required>\n<input type=\"submit\" value=\"Subscribe\" style=\"\">\n</form>    \n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n		<p>Copyright @2024 of Far East High Tech Ltd. Co.</p>','Footer','','inherit','closed','closed','','799-revision-v1','','','2025-03-17 03:37:20','2025-03-17 03:37:20','',799,'https://fe2tech.com/?p=3296',0,'revision','',0),(3297,1,'2025-03-17 03:37:20','2025-03-17 03:37:20','<a href=\"http://fe2tech.com/\">\n							<img width=\"597\" height=\"597\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/logo.jpg\" alt=\"\" />								</a>\n			    <ul>\n                    <li>\n            	   Factory 1: Khac Niem Industrial Cluster, Khac Niem Ward, Bac Ninh City, Bac Ninh Province                \n           </li>\n                    <li>\n            	   Factory 2: 176/9 Nguyen Thi Tuoi, Tan Phuoc Quarter, Tan Binh Ward, Di An City, Binh Duong                \n           </li>\n                    <li>\n            	   0968 86 03 86                \n           </li>\n            </ul>\n    <h3>\n        Menu\n        <i></i>\n    </h3>\n        <ul id=\"menu-main-menu-2\"><li><a href=\"https://fe2tech.com/\">Home</a></li>\n<li><a href=\"https://fe2tech.com/product/\">Product</a></li>\n<li><a href=\"https://fe2tech.com/services/\">Service</a></li>\n<li><a href=\"https://fe2tech.com/team-member-companies/\">Team &#038; Member Companies</a></li>\n<li><a href=\"https://fe2tech.com/about/\">About Us</a></li>\n</ul>    \n    <h3>\n        Open Hours\n        <i></i>\n    </h3>\n		<p>Mon - Sun: 24/24</p>		\n    <h3>\n        Newsletter\n        <i></i>\n    </h3>\n		Sign up for alerts, our latest blogs, thoughts, and insights.		\n        <form method=\"post\" action=\"https://fe2tech.com/wp-admin/admin-ajax.php?action=tnp&amp;na=s\" style=\"\">\n<input type=\"hidden\" name=\"nlang\" value=\"\">\n<label for=\"tnp-3\">Your mail address</label>\n<input type=\"email\" name=\"ne\" id=\"tnp-3\" value=\"\" placeholder=\"\" required>\n<input type=\"submit\" value=\"Subscribe\" style=\"\">\n</form>    \n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n		<p>Copyright @2024 of Far East High Tech Ltd. Co.</p>','Footer','','inherit','closed','closed','','799-revision-v1','','','2025-03-17 03:37:20','2025-03-17 03:37:20','',799,'https://fe2tech.com/?p=3297',0,'revision','',0),(3298,1,'2025-03-17 03:37:21','2025-03-17 03:37:21','<a href=\"http://fe2tech.com/\">\n							<img width=\"597\" height=\"597\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/logo.jpg\" alt=\"\" />								</a>\n			    <ul>\n                    <li>\n            	   Factory 1: No. 4 Doan Thi Kia, Dong Chieu Hamlet, Tan Dong\nHiep Ward, Di An City, Binh Duong, Viet Nam                \n           </li>\n                    <li>\n            	   Factory 2: Khac Niem Industrial Cluster, Khac Niem Ward, Bac Ninh\nCit, Bac Ninh, Viet Nam                \n           </li>\n                    <li>\n            	   Factory 3: 1476 Pho Va Street, Hap Linh Ward, Bac Ninh City, Bac\nNinh, Viet Nam                \n           </li>\n                    <li>\n            	   0968 86 03 86                \n           </li>\n            </ul>\n    <h3>\n        Menu\n        <i></i>\n    </h3>\n        <ul id=\"menu-main-menu-2\"><li><a href=\"https://fe2tech.com/\">Home</a></li>\n<li><a href=\"https://fe2tech.com/product/\">Product</a></li>\n<li><a href=\"https://fe2tech.com/services/\">Service</a></li>\n<li><a href=\"https://fe2tech.com/team-partner/\">Team &#038; Partner</a></li>\n<li><a href=\"https://fe2tech.com/about-us/\">About Us</a></li>\n<li><a href=\"#pll_switcher\">Languages</a></li>\n</ul>    \n    <h3>\n        Open Hours\n        <i></i>\n    </h3>\n		<p>Mon - Sun: 24/24</p>		\n    <h3>\n        Newsletter\n        <i></i>\n    </h3>\n		Sign up for alerts, our latest blogs, thoughts, and insights.		\n        <form method=\"post\" action=\"https://fe2tech.com/wp-admin/admin-ajax.php?action=tnp&amp;na=s\" style=\"\">\n<input type=\"hidden\" name=\"nlang\" value=\"\">\n<label for=\"tnp-3\">Your mail address</label>\n<input type=\"email\" name=\"ne\" id=\"tnp-3\" value=\"\" placeholder=\"\" required>\n<input type=\"submit\" value=\"Subscribe\" style=\"\">\n</form>    \n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n		<p>Copyright @2024 of Far East High Tech Ltd. Co.</p>','Footer','','inherit','closed','closed','','799-revision-v1','','','2025-03-17 03:37:21','2025-03-17 03:37:21','',799,'https://fe2tech.com/?p=3298',0,'revision','',0),(3299,1,'2025-03-17 03:38:22','2025-03-17 03:38:22','<a href=\"http://fe2tech.com/\">\n							<img width=\"597\" height=\"597\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/logo.jpg\" alt=\"\" />								</a>\n			    <ul>\n                    <li>\n            	   Nhà máy 1: Cụm công nghiệp Khắc Niệm, Phường Khắc Niệm, Thành phố Bắc Ninh, Tỉnh Bắc Ninh                \n           </li>\n                    <li>\n            	   Nhà máy 2: 176/9 Nguyễn Thị Tươi, Khu phố Tân Phước, Phường Tân Bình, Thành phố Dĩ An, Tỉnh Bình Dương                \n           </li>\n                    <li>\n            	   0968 86 03 86                \n           </li>\n            </ul>\n    <h3>\n        Menu\n        <i></i>\n    </h3>\n        <ul id=\"menu-main-menu-vi\"><li id=\"menu-item-3078\"><a href=\"https://fe2tech.com/vi/trang-chu/\">Trang chủ</a></li>\n<li id=\"menu-item-3080\"><a href=\"https://fe2tech.com/vi/san-pham/\">Sản phẩm</a></li>\n<li id=\"menu-item-3083\"><a href=\"https://fe2tech.com/vi/dich-vu/\">Dịch vụ</a></li>\n<li id=\"menu-item-3082\"><a href=\"https://fe2tech.com/vi/doi-ngu-cac-cong-ty-thanh-vien/\">Đội ngũ &amp; Các công ty thành viên</a></li>\n<li id=\"menu-item-3081\"><a href=\"https://fe2tech.com/vi/ve-chung-toi/\">Về chúng tôi</a></li>\n<li id=\"menu-item-3084\"><a href=\"#pll_switcher\">Languages</a></li>\n</ul>    \n    <h3>\n        Giờ mở cửa\n        <i></i>\n    </h3>\n		<p>Thứ Hai - Chủ Nhật: 24/24</p>		\n    <h3>\n        Newsletter\n        <i></i>\n    </h3>\n		<p>Đăng ký để nhận thông báo, blog mới nhất, ý tưởng và góc nhìn của chúng tôi.</p>		\n        <form method=\"post\" action=\"https://fe2tech.com/wp-admin/admin-ajax.php?action=tnp&amp;na=s\" style=\"\">\n<input type=\"hidden\" name=\"nlang\" value=\"\">\n<label for=\"tnp-3\">Your mail address</label>\n<input type=\"email\" name=\"ne\" id=\"tnp-3\" value=\"\" placeholder=\"\" required>\n<input type=\"submit\" value=\"Subscribe\" style=\"\">\n</form>    \n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n		<p>Copyright @2024 of Far East High Tech Ltd. Co.</p>','Footer - vi','','inherit','closed','closed','','2959-revision-v1','','','2025-03-17 03:38:22','2025-03-17 03:38:22','',2959,'https://fe2tech.com/?p=3299',0,'revision','',0),(3300,1,'2025-03-17 03:38:23','2025-03-17 03:38:23','<a href=\"http://fe2tech.com/\">\n							<img width=\"597\" height=\"597\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/logo.jpg\" alt=\"\" />								</a>\n			    <ul>\n                    <li>\n            	   Nhà máy 1: Cụm công nghiệp Khắc Niệm, Phường Khắc Niệm, Thành phố Bắc Ninh, Tỉnh Bắc Ninh                \n           </li>\n                    <li>\n            	   Nhà máy 2: 176/9 Nguyễn Thị Tươi, Khu phố Tân Phước, Phường Tân Bình, Thành phố Dĩ An, Tỉnh Bình Dương                \n           </li>\n                    <li>\n            	   0968 86 03 86                \n           </li>\n            </ul>\n    <h3>\n        Menu\n        <i></i>\n    </h3>\n        <ul id=\"menu-main-menu-vi\"><li id=\"menu-item-3078\"><a href=\"https://fe2tech.com/vi/trang-chu/\">Trang chủ</a></li>\n<li id=\"menu-item-3080\"><a href=\"https://fe2tech.com/vi/san-pham/\">Sản phẩm</a></li>\n<li id=\"menu-item-3083\"><a href=\"https://fe2tech.com/vi/dich-vu/\">Dịch vụ</a></li>\n<li id=\"menu-item-3082\"><a href=\"https://fe2tech.com/vi/doi-ngu-cac-cong-ty-thanh-vien/\">Đội ngũ &amp; Các công ty thành viên</a></li>\n<li id=\"menu-item-3081\"><a href=\"https://fe2tech.com/vi/ve-chung-toi/\">Về chúng tôi</a></li>\n<li id=\"menu-item-3084\"><a href=\"#pll_switcher\">Languages</a></li>\n</ul>    \n    <h3>\n        Giờ mở cửa\n        <i></i>\n    </h3>\n		<p>Thứ Hai - Chủ Nhật: 24/24</p>		\n    <h3>\n        Newsletter\n        <i></i>\n    </h3>\n		<p>Đăng ký để nhận thông báo, blog mới nhất, ý tưởng và góc nhìn của chúng tôi.</p>		\n        <form method=\"post\" action=\"https://fe2tech.com/wp-admin/admin-ajax.php?action=tnp&amp;na=s\" style=\"\">\n<input type=\"hidden\" name=\"nlang\" value=\"\">\n<label for=\"tnp-3\">Your mail address</label>\n<input type=\"email\" name=\"ne\" id=\"tnp-3\" value=\"\" placeholder=\"\" required>\n<input type=\"submit\" value=\"Subscribe\" style=\"\">\n</form>    \n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n		<p>Copyright @2024 of Far East High Tech Ltd. Co.</p>','Footer - vi','','inherit','closed','closed','','2959-revision-v1','','','2025-03-17 03:38:23','2025-03-17 03:38:23','',2959,'https://fe2tech.com/?p=3300',0,'revision','',0),(3301,1,'2025-03-17 03:38:23','2025-03-17 03:38:23','<a href=\"http://fe2tech.com/\">\n							<img width=\"597\" height=\"597\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/logo.jpg\" alt=\"\" />								</a>\n			    <ul>\n                    <li>\n            	   Nhà máy 1: Số 4 Đoàn Thị Kia, Ấp Đông Chiêu, Phường Tân Đông Hiệp, Thành phố Dĩ An, Bình Dương, Việt Nam                \n           </li>\n                    <li>\n            	   Nhà máy 2: Cụm công nghiệp Khắc Niệm, Phường Khắc Niệm, Thành phố Bắc Ninh, Bắc Ninh, Việt Nam                \n           </li>\n                    <li>\n            	   Nhà máy 3: Số 1476 Đường Phố Vá, Phường Hạp Lĩnh, Thành phố Bắc Ninh, Bắc Ninh, Việt Nam                \n           </li>\n                    <li>\n            	   0968 86 03 86                \n           </li>\n            </ul>\n    <h3>\n        Menu\n        <i></i>\n    </h3>\n        <ul id=\"menu-main-menu-vi-2\"><li><a href=\"https://fe2tech.com/vi/trang-chu/\">Trang chủ</a></li>\n<li><a href=\"https://fe2tech.com/vi/san-pham/\">Sản phẩm</a></li>\n<li><a href=\"https://fe2tech.com/vi/dich-vu/\">Dịch vụ</a></li>\n<li><a href=\"https://fe2tech.com/vi/doi-ngu-doi-tac/\">Đội ngũ &amp; Đối tác</a></li>\n<li><a href=\"https://fe2tech.com/vi/ve-chung-toi/\">Về chúng tôi</a></li>\n<li><a href=\"#pll_switcher\">Languages</a></li>\n</ul>    \n    <h3>\n        Giờ mở cửa\n        <i></i>\n    </h3>\n		<p>Thứ Hai - Chủ Nhật: 24/24</p>		\n    <h3>\n        Newsletter\n        <i></i>\n    </h3>\n		<p>Đăng ký để nhận thông báo, blog mới nhất, ý tưởng và góc nhìn của chúng tôi.</p>		\n        <form method=\"post\" action=\"https://fe2tech.com/wp-admin/admin-ajax.php?action=tnp&amp;na=s\" style=\"\">\n<input type=\"hidden\" name=\"nlang\" value=\"\">\n<label for=\"tnp-3\">Your mail address</label>\n<input type=\"email\" name=\"ne\" id=\"tnp-3\" value=\"\" placeholder=\"\" required>\n<input type=\"submit\" value=\"Subscribe\" style=\"\">\n</form>    \n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n		<p>Copyright @2024 of Far East High Tech Ltd. Co.</p>','Footer - vi','','inherit','closed','closed','','2959-revision-v1','','','2025-03-17 03:38:23','2025-03-17 03:38:23','',2959,'https://fe2tech.com/?p=3301',0,'revision','',0),(3302,1,'2025-03-17 03:38:53','2025-03-17 03:38:53','<a href=\"http://fe2tech.com/\">\n							<img width=\"597\" height=\"597\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/logo.jpg\" alt=\"\" />								</a>\n			    <ul>\n                    <li>\n            	   工場1: バクニン省バクニン市、カクニエム区、カクニエム工業団地                \n           </li>\n                    <li>\n            	   工場2: ビンズオン省、ディアン市、タンビン区、タンフオック地区、グエン・ティ・トゥーイ176/9                \n           </li>\n                    <li>\n            	   0968 86 03 86                \n           </li>\n            </ul>\n    <h3>\n        Menu\n        <i></i>\n    </h3>\n        <ul id=\"menu-menu-header-ja\"><li id=\"menu-item-3085\"><a href=\"https://fe2tech.com/ja/%e3%83%9b%e3%83%bc%e3%83%a0/\">ホーム</a></li>\n<li id=\"menu-item-3088\"><a href=\"https://fe2tech.com/ja/%e8%a3%bd%e5%93%81/\">製品</a></li>\n<li id=\"menu-item-3089\"><a href=\"https://fe2tech.com/ja/%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">サービス</a></li>\n<li id=\"menu-item-3087\"><a href=\"https://fe2tech.com/ja/%e3%83%81%e3%83%bc%e3%83%a0%e3%81%a8%e3%83%a1%e3%83%b3%e3%83%90%e3%83%bc%e4%bc%81%e6%a5%ad/\">チームとメンバー企業</a></li>\n<li id=\"menu-item-3086\"><a href=\"https://fe2tech.com/ja/%e7%a7%81%e3%81%9f%e3%81%a1%e3%81%ab%e3%81%a4%e3%81%84%e3%81%a6/\">私たちについて</a></li>\n<li id=\"menu-item-3090\"><a href=\"#pll_switcher\">Languages</a></li>\n</ul>    \n    <h3>\n        営業時間\n        <i></i>\n    </h3>\n		<p>月曜日~日曜日:24時間営業</p>		\n    <h3>\n        Newsletter\n        <i></i>\n    </h3>\n		<p>通知、最新のブログ、アイデア、洞察を受け取るためにサインアップしてください。</p>		\n        <form method=\"post\" action=\"https://fe2tech.com/wp-admin/admin-ajax.php?action=tnp&amp;na=s\" style=\"\">\n<input type=\"hidden\" name=\"nlang\" value=\"\">\n<label for=\"tnp-3\">Your mail address</label>\n<input type=\"email\" name=\"ne\" id=\"tnp-3\" value=\"\" placeholder=\"\" required>\n<input type=\"submit\" value=\"Subscribe\" style=\"\">\n</form>    \n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n		<p>Copyright @2024 of Far East High Tech Ltd. Co.</p>','Footer - ja','','inherit','closed','closed','','2961-revision-v1','','','2025-03-17 03:38:53','2025-03-17 03:38:53','',2961,'https://fe2tech.com/?p=3302',0,'revision','',0),(3303,1,'2025-03-17 03:38:53','2025-03-17 03:38:53','<a href=\"http://fe2tech.com/\">\n							<img width=\"597\" height=\"597\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/logo.jpg\" alt=\"\" />								</a>\n			    <ul>\n                    <li>\n            	   工場1: バクニン省バクニン市、カクニエム区、カクニエム工業団地                \n           </li>\n                    <li>\n            	   工場2: ビンズオン省、ディアン市、タンビン区、タンフオック地区、グエン・ティ・トゥーイ176/9                \n           </li>\n                    <li>\n            	   0968 86 03 86                \n           </li>\n            </ul>\n    <h3>\n        Menu\n        <i></i>\n    </h3>\n        <ul id=\"menu-menu-header-ja\"><li id=\"menu-item-3085\"><a href=\"https://fe2tech.com/ja/%e3%83%9b%e3%83%bc%e3%83%a0/\">ホーム</a></li>\n<li id=\"menu-item-3088\"><a href=\"https://fe2tech.com/ja/%e8%a3%bd%e5%93%81/\">製品</a></li>\n<li id=\"menu-item-3089\"><a href=\"https://fe2tech.com/ja/%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">サービス</a></li>\n<li id=\"menu-item-3087\"><a href=\"https://fe2tech.com/ja/%e3%83%81%e3%83%bc%e3%83%a0%e3%81%a8%e3%83%a1%e3%83%b3%e3%83%90%e3%83%bc%e4%bc%81%e6%a5%ad/\">チームとメンバー企業</a></li>\n<li id=\"menu-item-3086\"><a href=\"https://fe2tech.com/ja/%e7%a7%81%e3%81%9f%e3%81%a1%e3%81%ab%e3%81%a4%e3%81%84%e3%81%a6/\">私たちについて</a></li>\n<li id=\"menu-item-3090\"><a href=\"#pll_switcher\">Languages</a></li>\n</ul>    \n    <h3>\n        営業時間\n        <i></i>\n    </h3>\n		<p>月曜日~日曜日:24時間営業</p>		\n    <h3>\n        Newsletter\n        <i></i>\n    </h3>\n		<p>通知、最新のブログ、アイデア、洞察を受け取るためにサインアップしてください。</p>		\n        <form method=\"post\" action=\"https://fe2tech.com/wp-admin/admin-ajax.php?action=tnp&amp;na=s\" style=\"\">\n<input type=\"hidden\" name=\"nlang\" value=\"\">\n<label for=\"tnp-3\">Your mail address</label>\n<input type=\"email\" name=\"ne\" id=\"tnp-3\" value=\"\" placeholder=\"\" required>\n<input type=\"submit\" value=\"Subscribe\" style=\"\">\n</form>    \n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n		<p>Copyright @2024 of Far East High Tech Ltd. Co.</p>','Footer - ja','','inherit','closed','closed','','2961-revision-v1','','','2025-03-17 03:38:53','2025-03-17 03:38:53','',2961,'https://fe2tech.com/?p=3303',0,'revision','',0),(3304,1,'2025-03-17 03:38:53','2025-03-17 03:38:53','<a href=\"http://fe2tech.com/\">\n							<img width=\"597\" height=\"597\" src=\"https://fe2tech.com/wp-content/uploads/2024/12/logo.jpg\" alt=\"\" />								</a>\n			    <ul>\n                    <li>\n            	   工場 1: ベトナム、ビンズオン省、ジアン市、タン・ドン・ヒエップ区、ドンチエウ村、4番地 ドアン・ティ・キア通り                \n           </li>\n                    <li>\n            	   工場 2: ベトナム、バクニン省、バクニン市、カック・ニエム区、カック・ニエム工業クラスター                \n           </li>\n                    <li>\n            	   工場 3: ベトナム、バクニン省、バクニン市、ハップ・リン区、1476番地 フォ・ヴァー通り                \n           </li>\n                    <li>\n            	   0968 86 03 86                \n           </li>\n            </ul>\n    <h3>\n        Menu\n        <i></i>\n    </h3>\n        <ul id=\"menu-menu-header-ja-2\"><li><a href=\"https://fe2tech.com/ja/%e3%83%9b%e3%83%bc%e3%83%a0/\">ホーム</a></li>\n<li><a href=\"https://fe2tech.com/ja/%e8%a3%bd%e5%93%81/\">製品</a></li>\n<li><a href=\"https://fe2tech.com/ja/%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/\">サービス</a></li>\n<li><a href=\"https://fe2tech.com/ja/%e3%83%81%e3%83%bc%e3%83%a0%e3%81%a8%e3%83%91%e3%83%bc%e3%83%88%e3%83%8a%e3%83%bc/\">チームとパートナー</a></li>\n<li><a href=\"https://fe2tech.com/ja/%e7%a7%81%e3%81%9f%e3%81%a1%e3%81%ab%e3%81%a4%e3%81%84%e3%81%a6/\">私たちについて</a></li>\n<li><a href=\"#pll_switcher\">Languages</a></li>\n</ul>    \n    <h3>\n        営業時間\n        <i></i>\n    </h3>\n		<p>月曜日~日曜日:24時間営業</p>		\n    <h3>\n        Newsletter\n        <i></i>\n    </h3>\n		<p>通知、最新のブログ、アイデア、洞察を受け取るためにサインアップしてください。</p>		\n        <form method=\"post\" action=\"https://fe2tech.com/wp-admin/admin-ajax.php?action=tnp&amp;na=s\" style=\"\">\n<input type=\"hidden\" name=\"nlang\" value=\"\">\n<label for=\"tnp-3\">Your mail address</label>\n<input type=\"email\" name=\"ne\" id=\"tnp-3\" value=\"\" placeholder=\"\" required>\n<input type=\"submit\" value=\"Subscribe\" style=\"\">\n</form>    \n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n		<p>Copyright @2024 of Far East High Tech Ltd. Co.</p>','Footer - ja','','inherit','closed','closed','','2961-revision-v1','','','2025-03-17 03:38:53','2025-03-17 03:38:53','',2961,'https://fe2tech.com/?p=3304',0,'revision','',0),(3305,1,'2025-03-17 03:46:51','2025-03-17 03:46:51','','Cert QMS FAR EAST 2025','','inherit','open','closed','','cert-qms-far-east-2025','','','2025-03-17 03:46:51','2025-03-17 03:46:51','',0,'https://fe2tech.com/wp-content/uploads/2025/03/Cert-QMS-FAR-EAST-2025.pdf',0,'attachment','application/pdf',0),(3306,1,'2025-03-17 03:54:55','2025-03-17 03:47:19','','Certification','','publish','closed','closed','','certification','','','2025-03-17 03:54:55','2025-03-17 03:54:55','',0,'https://fe2tech.com/?p=3306',6,'nav_menu_item','',0),(3307,1,'2025-03-17 03:49:53','2025-03-17 03:49:53','','Chứng nhận','','publish','closed','closed','','chung-nhan','','','2025-03-17 03:49:53','2025-03-17 03:49:53','',0,'https://fe2tech.com/?p=3307',6,'nav_menu_item','',0),(3308,1,'2025-03-17 03:51:44','2025-03-17 03:50:33','','認証','','publish','closed','closed','','%e8%aa%8d%e8%a8%bc','','','2025-03-17 03:51:44','2025-03-17 03:51:44','',0,'https://fe2tech.com/?p=3308',6,'nav_menu_item','',0),(3309,1,'2025-03-18 06:36:20','2025-03-18 06:36:20','','A16eb71f546c44c4ba00c6afe46464d593.jpg_350x350','','inherit','open','closed','','a16eb71f546c44c4ba00c6afe46464d593-jpg_350x350-2','','','2025-03-18 06:36:20','2025-03-18 06:36:20','',0,'https://fe2tech.com/wp-content/uploads/2025/03/A16eb71f546c44c4ba00c6afe46464d593-1.jpg_350x350-1.jpg',0,'attachment','image/jpeg',0),(3310,1,'2025-03-18 06:36:22','2025-03-18 06:36:22','','A72a21ba969c84b98b63b985380b97ef5O.jpg_350x350','','inherit','open','closed','','a72a21ba969c84b98b63b985380b97ef5o-jpg_350x350-2','','','2025-03-18 06:36:22','2025-03-18 06:36:22','',0,'https://fe2tech.com/wp-content/uploads/2025/03/A72a21ba969c84b98b63b985380b97ef5O-1.jpg_350x350-1.jpg',0,'attachment','image/jpeg',0),(3311,1,'2025-03-18 06:36:24','2025-03-18 06:36:24','','Ac6d9a3b79a904eeb9c925afa374ec53aA.jpg_350x350','','inherit','open','closed','','ac6d9a3b79a904eeb9c925afa374ec53aa-jpg_350x350-2','','','2025-03-18 06:36:24','2025-03-18 06:36:24','',0,'https://fe2tech.com/wp-content/uploads/2025/03/Ac6d9a3b79a904eeb9c925afa374ec53aA-1.jpg_350x350-1.jpg',0,'attachment','image/jpeg',0),(3312,1,'2025-03-18 06:36:25','2025-03-18 06:36:25','','3','','inherit','open','closed','','3-2','','','2025-03-18 06:36:25','2025-03-18 06:36:25','',0,'https://fe2tech.com/wp-content/uploads/2025/03/3-1.jpg',0,'attachment','image/jpeg',0),(3313,1,'2025-03-18 06:36:27','2025-03-18 06:36:27','','9','','inherit','open','closed','','9-2','','','2025-03-18 06:36:27','2025-03-18 06:36:27','',0,'https://fe2tech.com/wp-content/uploads/2025/03/9-1.jpg',0,'attachment','image/jpeg',0),(3314,1,'2025-03-18 06:36:29','2025-03-18 06:36:29','','A268aa8f9b65c4cdf9f45e594f2cd8ad4M.jpg_350x350','','inherit','open','closed','','a268aa8f9b65c4cdf9f45e594f2cd8ad4m-jpg_350x350-2','','','2025-03-18 06:36:29','2025-03-18 06:36:29','',0,'https://fe2tech.com/wp-content/uploads/2025/03/A268aa8f9b65c4cdf9f45e594f2cd8ad4M-1.jpg_350x350-1.jpg',0,'attachment','image/jpeg',0),(3315,1,'2025-03-18 06:36:31','2025-03-18 06:36:31','','A864432f2571743689342ae173ee9dc9fd.jpg_350x350','','inherit','open','closed','','a864432f2571743689342ae173ee9dc9fd-jpg_350x350-2','','','2025-03-18 06:36:31','2025-03-18 06:36:31','',0,'https://fe2tech.com/wp-content/uploads/2025/03/A864432f2571743689342ae173ee9dc9fd-1.jpg_350x350-1.jpg',0,'attachment','image/jpeg',0),(3316,1,'2025-03-18 06:36:33','2025-03-18 06:36:33','','Abd43851c92654bd99cfdca45d896fbcbB.jpg_350x350','','inherit','open','closed','','abd43851c92654bd99cfdca45d896fbcbb-jpg_350x350-2','','','2025-03-18 06:36:33','2025-03-18 06:36:33','',0,'https://fe2tech.com/wp-content/uploads/2025/03/Abd43851c92654bd99cfdca45d896fbcbB-1.jpg_350x350-1.jpg',0,'attachment','image/jpeg',0),(3317,1,'2025-03-18 06:36:35','2025-03-18 06:36:35','','A1001e63ea59149f8a81abb92d5d5fe713.jpg_350x350','','inherit','open','closed','','a1001e63ea59149f8a81abb92d5d5fe713-jpg_350x350-2','','','2025-03-18 06:36:35','2025-03-18 06:36:35','',0,'https://fe2tech.com/wp-content/uploads/2025/03/A1001e63ea59149f8a81abb92d5d5fe713-1.jpg_350x350-1.jpg',0,'attachment','image/jpeg',0),(3318,1,'2025-03-18 06:36:36','2025-03-18 06:36:36','','A36346f881b104996b6c070b5d2cebff8u.jpg_350x350','','inherit','open','closed','','a36346f881b104996b6c070b5d2cebff8u-jpg_350x350-2','','','2025-03-18 06:36:36','2025-03-18 06:36:36','',0,'https://fe2tech.com/wp-content/uploads/2025/03/A36346f881b104996b6c070b5d2cebff8u-1.jpg_350x350-1.jpg',0,'attachment','image/jpeg',0),(3319,1,'2025-03-18 06:36:38','2025-03-18 06:36:38','','A157183c07a764eb8957bc4cd13982808i.jpg_350x350','','inherit','open','closed','','a157183c07a764eb8957bc4cd13982808i-jpg_350x350-2','','','2025-03-18 06:36:38','2025-03-18 06:36:38','',0,'https://fe2tech.com/wp-content/uploads/2025/03/A157183c07a764eb8957bc4cd13982808i-1.jpg_350x350-1.jpg',0,'attachment','image/jpeg',0),(3320,1,'2025-03-18 06:36:39','2025-03-18 06:36:39','','A4969ef2343a244608cc511d1e7be28e2X.png_350x350','','inherit','open','closed','','a4969ef2343a244608cc511d1e7be28e2x-png_350x350-2','','','2025-03-18 06:36:39','2025-03-18 06:36:39','',0,'https://fe2tech.com/wp-content/uploads/2025/03/A4969ef2343a244608cc511d1e7be28e2X-1.png_350x350-1.png',0,'attachment','image/png',0),(3321,1,'2025-03-18 06:36:40','2025-03-18 06:36:40','','H9be6461494cf4fe7998192dc483066c9v.png_350x350','','inherit','open','closed','','h9be6461494cf4fe7998192dc483066c9v-png_350x350-2','','','2025-03-18 06:36:40','2025-03-18 06:36:40','',0,'https://fe2tech.com/wp-content/uploads/2025/03/H9be6461494cf4fe7998192dc483066c9v-1.png_350x350-1.png',0,'attachment','image/png',0),(3322,1,'2025-03-18 06:36:42','2025-03-18 06:36:42','','H4cbac47ae6cf4705b966668ca1abad509.png_350x350','','inherit','open','closed','','h4cbac47ae6cf4705b966668ca1abad509-png_350x350-2','','','2025-03-18 06:36:42','2025-03-18 06:36:42','',0,'https://fe2tech.com/wp-content/uploads/2025/03/H4cbac47ae6cf4705b966668ca1abad509-1.png_350x350-1.png',0,'attachment','image/png',0),(3323,1,'2025-03-18 06:36:44','2025-03-18 06:36:44','','H6c00bd237d8b46d4b06a1cc6ef76accfE.png_350x350','','inherit','open','closed','','h6c00bd237d8b46d4b06a1cc6ef76accfe-png_350x350-2','','','2025-03-18 06:36:44','2025-03-18 06:36:44','',0,'https://fe2tech.com/wp-content/uploads/2025/03/H6c00bd237d8b46d4b06a1cc6ef76accfE-1.png_350x350-1.png',0,'attachment','image/png',0),(3324,1,'2025-03-18 06:36:45','2025-03-18 06:36:45','','H71abe7a763a345ae87dcf70c25a70a32M.png_350x350','','inherit','open','closed','','h71abe7a763a345ae87dcf70c25a70a32m-png_350x350-2','','','2025-03-18 06:36:45','2025-03-18 06:36:45','',0,'https://fe2tech.com/wp-content/uploads/2025/03/H71abe7a763a345ae87dcf70c25a70a32M-1.png_350x350-1.png',0,'attachment','image/png',0),(3325,1,'2025-03-18 06:36:47','2025-03-18 06:36:47','','2','','inherit','open','closed','','2-2','','','2025-03-18 06:36:47','2025-03-18 06:36:47','',0,'https://fe2tech.com/wp-content/uploads/2025/03/2-1.jpg',0,'attachment','image/jpeg',0),(3326,1,'2025-03-18 06:36:48','2025-03-18 06:36:48','','A786dc427af46457ea923c41ea7688f67Q.jpg_350x350','','inherit','open','closed','','a786dc427af46457ea923c41ea7688f67q-jpg_350x350-2','','','2025-03-18 06:36:48','2025-03-18 06:36:48','',0,'https://fe2tech.com/wp-content/uploads/2025/03/A786dc427af46457ea923c41ea7688f67Q-1.jpg_350x350-1.jpg',0,'attachment','image/jpeg',0),(3327,1,'2025-03-18 06:36:50','2025-03-18 06:36:50','','A2ed5a5c3f8f544c8910a3fe29da5e2984.jpg_350x350','','inherit','open','closed','','a2ed5a5c3f8f544c8910a3fe29da5e2984-jpg_350x350-2','','','2025-03-18 06:36:50','2025-03-18 06:36:50','',0,'https://fe2tech.com/wp-content/uploads/2025/03/A2ed5a5c3f8f544c8910a3fe29da5e2984-1.jpg_350x350-1.jpg',0,'attachment','image/jpeg',0),(3328,1,'2025-03-18 06:36:51','2025-03-18 06:36:51','','A53f94fffa0e64ba8a47330e85a179214l.jpg_350x350','','inherit','open','closed','','a53f94fffa0e64ba8a47330e85a179214l-jpg_350x350-2','','','2025-03-18 06:36:51','2025-03-18 06:36:51','',0,'https://fe2tech.com/wp-content/uploads/2025/03/A53f94fffa0e64ba8a47330e85a179214l-1.jpg_350x350-1.jpg',0,'attachment','image/jpeg',0),(3329,1,'2025-03-18 06:36:53','2025-03-18 06:36:53','','Aa559aaa8e8d44868b700967e182631e0O.jpg_350x350','','inherit','open','closed','','aa559aaa8e8d44868b700967e182631e0o-jpg_350x350-2','','','2025-03-18 06:36:53','2025-03-18 06:36:53','',0,'https://fe2tech.com/wp-content/uploads/2025/03/Aa559aaa8e8d44868b700967e182631e0O-1.jpg_350x350-1.jpg',0,'attachment','image/jpeg',0),(3330,1,'2025-03-18 06:36:54','2025-03-18 06:36:54','','4','','inherit','open','closed','','4-2','','','2025-03-18 06:36:54','2025-03-18 06:36:54','',0,'https://fe2tech.com/wp-content/uploads/2025/03/4-1.jpg',0,'attachment','image/jpeg',0),(3331,1,'2025-03-18 06:36:56','2025-03-18 06:36:56','','A8626df5ae89c458484cbdeab6b0a2768E.jpg_350x350','','inherit','open','closed','','a8626df5ae89c458484cbdeab6b0a2768e-jpg_350x350-2','','','2025-03-18 06:36:56','2025-03-18 06:36:56','',0,'https://fe2tech.com/wp-content/uploads/2025/03/A8626df5ae89c458484cbdeab6b0a2768E-1.jpg_350x350-1.jpg',0,'attachment','image/jpeg',0),(3332,1,'2025-03-18 06:36:58','2025-03-18 06:36:58','','1','','inherit','open','closed','','1-2','','','2025-03-18 06:36:58','2025-03-18 06:36:58','',0,'https://fe2tech.com/wp-content/uploads/2025/03/1-1.jpg',0,'attachment','image/jpeg',0),(3333,1,'2025-03-18 06:36:59','2025-03-18 06:36:59','','A5fa71b0eddf648049c5f33d331738460m.jpg_350x350','','inherit','open','closed','','a5fa71b0eddf648049c5f33d331738460m-jpg_350x350-2','','','2025-03-18 06:36:59','2025-03-18 06:36:59','',0,'https://fe2tech.com/wp-content/uploads/2025/03/A5fa71b0eddf648049c5f33d331738460m-1.jpg_350x350-1.jpg',0,'attachment','image/jpeg',0),(3334,1,'2025-03-18 06:37:01','2025-03-18 06:37:01','','A5df619ce89ec42189a5c4d05bbba4f2dw.jpg_350x350','','inherit','open','closed','','a5df619ce89ec42189a5c4d05bbba4f2dw-jpg_350x350-2','','','2025-03-18 06:37:01','2025-03-18 06:37:01','',0,'https://fe2tech.com/wp-content/uploads/2025/03/A5df619ce89ec42189a5c4d05bbba4f2dw-1.jpg_350x350-1.jpg',0,'attachment','image/jpeg',0),(3335,1,'2025-03-18 06:37:02','2025-03-18 06:37:02','','Aea1a2ea6c9d04b78977d1e8c907e721cR.jpg_350x350','','inherit','open','closed','','aea1a2ea6c9d04b78977d1e8c907e721cr-jpg_350x350-2','','','2025-03-18 06:37:02','2025-03-18 06:37:02','',0,'https://fe2tech.com/wp-content/uploads/2025/03/Aea1a2ea6c9d04b78977d1e8c907e721cR-1.jpg_350x350-1.jpg',0,'attachment','image/jpeg',0),(3336,1,'2025-03-18 06:37:04','2025-03-18 06:37:04','','5','','inherit','open','closed','','5-2','','','2025-03-18 06:37:04','2025-03-18 06:37:04','',0,'https://fe2tech.com/wp-content/uploads/2025/03/5-1.jpg',0,'attachment','image/jpeg',0),(3338,1,'2025-03-18 06:37:05','2025-03-18 06:37:05','','7','','inherit','open','closed','','7-2','','','2025-03-18 06:37:05','2025-03-18 06:37:05','',0,'https://fe2tech.com/wp-content/uploads/2025/03/7-1.jpg',0,'attachment','image/jpeg',0),(3339,1,'2025-03-18 06:37:07','2025-03-18 06:37:07','','A967c634a517c48f38c23d4766db5bba1a.jpg_350x350','','inherit','open','closed','','a967c634a517c48f38c23d4766db5bba1a-jpg_350x350-2','','','2025-03-18 06:37:07','2025-03-18 06:37:07','',0,'https://fe2tech.com/wp-content/uploads/2025/03/A967c634a517c48f38c23d4766db5bba1a-1.jpg_350x350-1.jpg',0,'attachment','image/jpeg',0),(3340,1,'2025-03-18 06:37:09','2025-03-18 06:37:09','','A462413b6de2b401ba60e99bbe1d15e33K.jpg_350x350','','inherit','open','closed','','a462413b6de2b401ba60e99bbe1d15e33k-jpg_350x350-2','','','2025-03-18 06:37:09','2025-03-18 06:37:09','',0,'https://fe2tech.com/wp-content/uploads/2025/03/A462413b6de2b401ba60e99bbe1d15e33K-1.jpg_350x350-1.jpg',0,'attachment','image/jpeg',0),(3341,1,'2025-03-18 06:37:10','2025-03-18 06:37:10','','A661399142a7247278bbf69a9d6007556W.jpg_350x350','','inherit','open','closed','','a661399142a7247278bbf69a9d6007556w-jpg_350x350-2','','','2025-03-18 06:37:10','2025-03-18 06:37:10','',0,'https://fe2tech.com/wp-content/uploads/2025/03/A661399142a7247278bbf69a9d6007556W-1.jpg_350x350-1.jpg',0,'attachment','image/jpeg',0),(3342,1,'2025-03-18 06:37:12','2025-03-18 06:37:12','','10','','inherit','open','closed','','10-2','','','2025-03-18 06:37:12','2025-03-18 06:37:12','',0,'https://fe2tech.com/wp-content/uploads/2025/03/10-1.jpg',0,'attachment','image/jpeg',0),(3343,1,'2025-03-18 06:37:42','2025-03-18 06:37:42','<h5>\n        Our strength lies in mass production of aluminum and steel. We excel in innovation and deliver high-value products to our customers.    </h5>\n			Automotive &amp; Motorcycle\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWI2Mjc3NTE2NjIyMTQxYjY4MTc4ZjY2YmViYWFkZDkzby5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Ab6277516622141b68178f66bebaadd93o.jpg_350x350.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Ab6277516622141b68178f66bebaadd93o.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTQ5NjllZjIzNDNhMjQ0NjA4Y2M1MTFkMWU3YmUyOGUyWC5wbmdfMzUweDM1MC5wbmciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A4969ef2343a244608cc511d1e7be28e2X.png_350x350.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A4969ef2343a244608cc511d1e7be28e2X.png_350x350.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvSDliZTY0NjE0OTRjZjRmZTc5OTgxOTJkYzQ4MzA2NmM5di5wbmdfMzUweDM1MC5wbmciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/H9be6461494cf4fe7998192dc483066c9v.png_350x350.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/H9be6461494cf4fe7998192dc483066c9v.png_350x350.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvSDRjYmFjNDdhZTZjZjQ3MDViOTY2NjY4Y2ExYWJhZDUwOS5wbmdfMzUweDM1MC5wbmciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/H4cbac47ae6cf4705b966668ca1abad509.png_350x350.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/H4cbac47ae6cf4705b966668ca1abad509.png_350x350.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvSDZjMDBiZDIzN2Q4YjQ2ZDRiMDZhMWNjNmVmNzZhY2NmRS5wbmdfMzUweDM1MC5wbmciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/H6c00bd237d8b46d4b06a1cc6ef76accfE.png_350x350.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/H6c00bd237d8b46d4b06a1cc6ef76accfE.png_350x350.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvSDcxYWJlN2E3NjNhMzQ1YWU4N2RjZjcwYzI1YTcwYTMyTS5wbmdfMzUweDM1MC5wbmciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/H71abe7a763a345ae87dcf70c25a70a32M.png_350x350.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/H71abe7a763a345ae87dcf70c25a70a32M.png_350x350.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/2.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/2.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTA0NWZlNDUzNDU2NjQzOTRhMmE4MDQ5OWI0YmQyMTE3aS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A045fe45345664394a2a80499b4bd2117i.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A045fe45345664394a2a80499b4bd2117i.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTg2ZTAzOWRmMWM5ZDRlODA5ZWE1M2RmZDY3NmJhNjdhTy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A86e039df1c9d4e809ea53dfd676ba67aO.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A86e039df1c9d4e809ea53dfd676ba67aO.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTc4NmRjNDI3YWY0NjQ1N2VhOTIzYzQxZWE3Njg4ZjY3US5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A786dc427af46457ea923c41ea7688f67Q.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A786dc427af46457ea923c41ea7688f67Q.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvNi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/6.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/6.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTJlZDVhNWMzZjhmNTQ0Yzg5MTBhM2ZlMjlkYTVlMjk4NC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A2ed5a5c3f8f544c8910a3fe29da5e2984.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A2ed5a5c3f8f544c8910a3fe29da5e2984.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTNjODA2NDY4NTRjZDQ0MDFiNmI3MzdhODBlOGUyOWYyWi5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A3c80646854cd4401b6b737a80e8e29f2Z.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A3c80646854cd4401b6b737a80e8e29f2Z.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTUzZjk0ZmZmYTBlNjRiYThhNDczMzBlODVhMTc5MjE0bC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A53f94fffa0e64ba8a47330e85a179214l.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A53f94fffa0e64ba8a47330e85a179214l.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWE1NTlhYWE4ZThkNDQ4NjhiNzAwOTY3ZTE4MjYzMWUwTy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Aa559aaa8e8d44868b700967e182631e0O.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Aa559aaa8e8d44868b700967e182631e0O.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvNC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/4.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/4.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTI5MjA5ZmNhMTRlMzQ5MTI4NmE3YWUyYTdkNTM1MDY2dC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A29209fca14e3491286a7ae2a7d535066t.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A29209fca14e3491286a7ae2a7d535066t.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWZkNmU1MDE4ZDU0YTRjMzE5YjQ5NDFhZjU3ZTM4ZmMxZS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Afd6e5018d54a4c319b4941af57e38fc1e.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Afd6e5018d54a4c319b4941af57e38fc1e.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTg2MjZkZjVhZTg5YzQ1ODQ4NGNiZGVhYjZiMGEyNzY4RS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A8626df5ae89c458484cbdeab6b0a2768E.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A8626df5ae89c458484cbdeab6b0a2768E.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWVjMmE0Y2Q4OTVlNjQ4YjZiYzcxNzRkODY0ZTEwMzMyOS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Aec2a4cd895e648b6bc7174d864e103329.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Aec2a4cd895e648b6bc7174d864e103329.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/1.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTVmYTcxYjBlZGRmNjQ4MDQ5YzVmMzNkMzMxNzM4NDYwbS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A5fa71b0eddf648049c5f33d331738460m.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A5fa71b0eddf648049c5f33d331738460m.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTliYzE4NzI2OTdkNjQ5ZTdhMjhkMTRjNDhjZDZiNzFicS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A9bc1872697d649e7a28d14c48cd6b71bq.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A9bc1872697d649e7a28d14c48cd6b71bq.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWQwYzc4MmI4NDYxNTQ4NGQ4MzAzYWQ5NjRjZDMwMmE0Qy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Ad0c782b84615484d8303ad964cd302a4C.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Ad0c782b84615484d8303ad964cd302a4C.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWVjM2Y0NGQyYzBjZjQ1MzY4NzBiMTkwOTdiNTAzNWY0QS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Aec3f44d2c0cf4536870b19097b5035f4A.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Aec3f44d2c0cf4536870b19097b5035f4A.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvOC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/8.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/8.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTVkZjYxOWNlODllYzQyMTg5YTVjNGQwNWJiYmE0ZjJkdy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A5df619ce89ec42189a5c4d05bbba4f2dw.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A5df619ce89ec42189a5c4d05bbba4f2dw.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTkyMDcwMTU1OThhZTQ3ZTRiYTU3ZDVkNjc1NWE3OTQ1Si5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A9207015598ae47e4ba57d5d6755a7945J.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A9207015598ae47e4ba57d5d6755a7945J.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWE2NzUxNGNhMTUzYTQzMjA4NjEyNjExYWYxNWFlNjg5dC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Aa67514ca153a43208612611af15ae689t.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Aa67514ca153a43208612611af15ae689t.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWM4YzU3YWY1N2ZjMDRhOWI4YWZiY2Y1MjE0ZDhiMTI1YS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Ac8c57af57fc04a9b8afbcf5214d8b125a.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Ac8c57af57fc04a9b8afbcf5214d8b125a.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWVhMWEyZWE2YzlkMDRiNzg5NzdkMWU4YzkwN2U3MjFjUi5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Aea1a2ea6c9d04b78977d1e8c907e721cR.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Aea1a2ea6c9d04b78977d1e8c907e721cR.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvNS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/5.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/5.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvNy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/7.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/7.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTRmYTIyYjNkYjQ3MDQxNDVhOWM4ZjJiNmQ0MTNiNGI3WS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A4fa22b3db4704145a9c8f2b6d413b4b7Y.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A4fa22b3db4704145a9c8f2b6d413b4b7Y.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQThjZmExNTRjYTcwYTQ2YzU5NjVlOTkzMjU1YjUzZWNiZy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A8cfa154ca70a46c5965e993255b53ecbg.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A8cfa154ca70a46c5965e993255b53ecbg.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTk2N2M2MzRhNTE3YzQ4ZjM4YzIzZDQ3NjZkYjViYmExYS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A967c634a517c48f38c23d4766db5bba1a.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A967c634a517c48f38c23d4766db5bba1a.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTQ2MjQxM2I2ZGUyYjQwMWJhNjBlOTliYmUxZDE1ZTMzSy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A462413b6de2b401ba60e99bbe1d15e33K.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A462413b6de2b401ba60e99bbe1d15e33K.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTY2MTM5OTE0MmE3MjQ3Mjc4YmJmNjlhOWQ2MDA3NTU2Vy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A661399142a7247278bbf69a9d6007556W.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A661399142a7247278bbf69a9d6007556W.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvMTAuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/10.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/10.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTE2ZWI3MWY1NDZjNDRjNGJhMDBjNmFmZTQ2NDY0ZDU5My5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A16eb71f546c44c4ba00c6afe46464d593.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A16eb71f546c44c4ba00c6afe46464d593.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTcyYTIxYmE5NjljODRiOThiNjNiOTg1MzgwYjk3ZWY1Ty5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A72a21ba969c84b98b63b985380b97ef5O.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A72a21ba969c84b98b63b985380b97ef5O.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTk5NTc0ZWJlMWE2YzQzMmFiZWJiOTE2ODBlM2UyMjdlMC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A99574ebe1a6c432abebb91680e3e227e0.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A99574ebe1a6c432abebb91680e3e227e0.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWM2ZDlhM2I3OWE5MDRlZWI5YzkyNWFmYTM3NGVjNTNhQS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Ac6d9a3b79a904eeb9c925afa374ec53aA.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Ac6d9a3b79a904eeb9c925afa374ec53aA.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWRlZjA1YzMyMTIxOTRmMjU5ZjE1NTZjZDUwODFhYjNlZy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Adef05c3212194f259f1556cd5081ab3eg.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Adef05c3212194f259f1556cd5081ab3eg.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvMy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/3.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/3.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvOS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/9.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/9.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTI2OGFhOGY5YjY1YzRjZGY5ZjQ1ZTU5NGYyY2Q4YWQ0TS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A268aa8f9b65c4cdf9f45e594f2cd8ad4M.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A268aa8f9b65c4cdf9f45e594f2cd8ad4M.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTg2NDQzMmYyNTcxNzQzNjg5MzQyYWUxNzNlZTlkYzlmZC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A864432f2571743689342ae173ee9dc9fd.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A864432f2571743689342ae173ee9dc9fd.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWJkNDM4NTFjOTI2NTRiZDk5Y2ZkY2E0NWQ4OTZmYmNiQi5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Abd43851c92654bd99cfdca45d896fbcbB.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Abd43851c92654bd99cfdca45d896fbcbB.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWNkZDEyMjYyOThkZDQ2MTNhYmYwMjFiZGNhYWQzMjBiMC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Acdd1226298dd4613abf021bdcaad320b0.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Acdd1226298dd4613abf021bdcaad320b0.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWU5MWJmN2Y1MWRiMzQwMmViYWZmNjEwYzI5OWU5YWFjRi5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Ae91bf7f51db3402ebaff610c299e9aacF.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Ae91bf7f51db3402ebaff610c299e9aacF.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTA1ZjE4ZDQ3ZTcwOTQ4YWU4Nzk1MTExZDA1NWY0MmZhMi5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A05f18d47e70948ae8795111d055f42fa2.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A05f18d47e70948ae8795111d055f42fa2.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTVjMzc3OTJmMzg0MzQzODhhMDJhMDQ3OWZjYmM0MTIzVC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A5c37792f38434388a02a0479fcbc4123T.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A5c37792f38434388a02a0479fcbc4123T.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQThjNDIwOTkyZjQ3NzQ1NTA5ZjRmMjkyYWM3YmQyMjU4SC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A8c420992f47745509f4f292ac7bd2258H.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A8c420992f47745509f4f292ac7bd2258H.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTEwMDFlNjNlYTU5MTQ5ZjhhODFhYmI5MmQ1ZDVmZTcxMy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A1001e63ea59149f8a81abb92d5d5fe713.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A1001e63ea59149f8a81abb92d5d5fe713.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTM2MzQ2Zjg4MWIxMDQ5OTZiNmMwNzBiNWQyY2ViZmY4dS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A36346f881b104996b6c070b5d2cebff8u.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A36346f881b104996b6c070b5d2cebff8u.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTE1NzE4M2MwN2E3NjRlYjg5NTdiYzRjZDEzOTgyODA4aS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A157183c07a764eb8957bc4cd13982808i.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A157183c07a764eb8957bc4cd13982808i.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			CNC Machined Parts\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rNS5qcGciLCJzbGlkZXNob3ciOiIxODUyY2M5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok5.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok5.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rNC5wbmciLCJzbGlkZXNob3ciOiIxODUyY2M5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok4.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok4.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW1hY2hpbmUyMi5hdmlmIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-machine22.avif\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-machine22.avif\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW1hY2hpbmUzLmpwZyIsInNsaWRlc2hvdyI6IjE4NTJjYzkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-machine3.jpg\'><img width=\"150\" height=\"100\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-machine3.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rMy5wbmciLCJzbGlkZXNob3ciOiIxODUyY2M5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok3.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok3.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rMS5wbmciLCJzbGlkZXNob3ciOiIxODUyY2M5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok1.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok1.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rMi5wbmciLCJzbGlkZXNob3ciOiIxODUyY2M5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok2.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok2.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rNy5wbmciLCJzbGlkZXNob3ciOiIxODUyY2M5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok7.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok7.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rOS5qcGciLCJzbGlkZXNob3ciOiIxODUyY2M5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok9.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok9.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rOC5qcGciLCJzbGlkZXNob3ciOiIxODUyY2M5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok8.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok8.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejU3MDk0NDM0NzY3OTdfY2IzZTllMGQ1OTZhZDYzMzEzNjZiOGE3MTFmNDY5MjYuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z5709443476797_cb3e9e0d596ad6331366b8a711f46926.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z5709443476797_cb3e9e0d596ad6331366b8a711f46926.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			Sheet Metal &amp; Fabrication\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWwxLmpwZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal1.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWwzLmpwZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal3.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal3.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw0LmpwZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal4.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal4.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw1LmpwZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal5.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal5.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw3LmpwZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal7.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal7.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw4LmpwZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal8.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal8.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw5LmpwZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal9.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal9.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWwxMC5qcGciLCJzbGlkZXNob3ciOiJjZDlkYmE5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal10.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal10.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWwyLnBuZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal2.png\'><img width=\"84\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal2.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw2LmpwZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal6.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal6.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			Mold &amp; Die Components\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzYxNjUzNzJfODI1NjkzMjRkZTFjOGZjYzM3NmNjMGU3MzdjMDUyMGUuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzY0NTU3NzVfOTdhOTM3ODA3YzgwN2JmNzEzNjk0MTlhMGE1ZDNkMmMuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\'><img width=\"68\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzU4OTM2OTJfNDhmNGE5ZjdjN2E5ZDA1ZGMwMzdhODBhYzFlNTc4MmIuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzYwMDk1MTRfYWQ5MDg4N2YyNWQ3MzRlYzJkMjFkOGE2YTYzNGZmMmQuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzY3MjE1ODZfMTZiOTE5ODQyMGIzOTlmOWQ4MmMwNThkOTA4MmEzZTAuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzYxMTA0MjZfYzNlY2UzZWM1NmY5ZThjYzBlNWM5YTk4Zjk3OTJiZmMuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			Industrial Fasteners &amp; Bolt\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3dcc60b\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvSU1HXzEyMzcuanBlZyIsInNsaWRlc2hvdyI6IjNkY2M2MGIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/IMG_1237.jpeg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/IMG_1237.jpeg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3dcc60b\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvRFNDMDA4MjIuanBnIiwic2xpZGVzaG93IjoiM2RjYzYwYiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/DSC00822.jpg\'><img width=\"150\" height=\"100\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/DSC00822.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			Tool\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwMTgzMzRfMTdjNWZhYzk2ZmIyODQzZDc0YTc2Y2M3OWY5YjRmNWMuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\'><img width=\"150\" height=\"135\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwMzczNTNfZGI4NzczMmIzZWE5ZDkzNTM2YmNkM2FlYzY0ODM1YTcuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNTkxNjJfMDUzYjM2NGFiNzYxZGM1YTQ0Mjc5ZmFmNjQzOTUzMjQuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\'><img width=\"70\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNzgzNzJfNTBhYmNlNTI0OWM4YWNkY2ZiZGY4YTA2MzQ4OWUxODYuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNzg1NzBfMGFiNThiNDZiZjY4M2RmNmVjZGIyYzJkODc5NDViYTYuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\'><img width=\"150\" height=\"129\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk2ODQ5NDkwODZfYjI5ZmRiNTAxMTRhMTk2Y2MzZmRjYzllMTJjYWYxMDUuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\'><img width=\"150\" height=\"128\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk2ODQ5NDY2NDFfMTUwMGZiZTE2ZmVjM2ExNGVhZGI4ZTRhZWQxY2Y2M2YuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			Jig\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NDY1OTEzMzg2ODdfZmE1MTRlMTY0ZjJlZTk5NjFjZmVlY2U5YjJhMjk2MmUuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTE0ODI0OTc5ODFfNGZlOGQ1MmM3N2ZiOTcwYWNjYWNhOTkzMTFiM2U1YjguanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNTQzNzc3MTM5OTRfNzMxZjNhYzFmN2YzMjMyNjExMWE0MWY2N2Q0YTJlMzMuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE2NTM3NjdfNzk3Y2FkYTk3Yjk4NjQyZTYyYzkxODU3YzYwYjViNDQuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NDY1OTEzNDkxOTRfZDUwMTBkMTcwMGM3Y2ViNDkxYjk3OGIwMWJlM2RkMjguanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>','Product','','inherit','closed','closed','','2126-revision-v1','','','2025-03-18 06:37:42','2025-03-18 06:37:42','',2126,'https://fe2tech.com/?p=3343',0,'revision','',0),(3344,1,'2025-03-18 06:37:44','2025-03-18 06:37:44','<h5>\n        Our strength lies in mass production of aluminum and steel. We excel in innovation and deliver high-value products to our customers.    </h5>\n			Automotive &amp; Motorcycle\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWI2Mjc3NTE2NjIyMTQxYjY4MTc4ZjY2YmViYWFkZDkzby5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Ab6277516622141b68178f66bebaadd93o.jpg_350x350.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Ab6277516622141b68178f66bebaadd93o.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTQ5NjllZjIzNDNhMjQ0NjA4Y2M1MTFkMWU3YmUyOGUyWC5wbmdfMzUweDM1MC5wbmciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A4969ef2343a244608cc511d1e7be28e2X.png_350x350.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A4969ef2343a244608cc511d1e7be28e2X.png_350x350.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvSDliZTY0NjE0OTRjZjRmZTc5OTgxOTJkYzQ4MzA2NmM5di5wbmdfMzUweDM1MC5wbmciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/H9be6461494cf4fe7998192dc483066c9v.png_350x350.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/H9be6461494cf4fe7998192dc483066c9v.png_350x350.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvSDRjYmFjNDdhZTZjZjQ3MDViOTY2NjY4Y2ExYWJhZDUwOS5wbmdfMzUweDM1MC5wbmciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/H4cbac47ae6cf4705b966668ca1abad509.png_350x350.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/H4cbac47ae6cf4705b966668ca1abad509.png_350x350.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvSDZjMDBiZDIzN2Q4YjQ2ZDRiMDZhMWNjNmVmNzZhY2NmRS5wbmdfMzUweDM1MC5wbmciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/H6c00bd237d8b46d4b06a1cc6ef76accfE.png_350x350.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/H6c00bd237d8b46d4b06a1cc6ef76accfE.png_350x350.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvSDcxYWJlN2E3NjNhMzQ1YWU4N2RjZjcwYzI1YTcwYTMyTS5wbmdfMzUweDM1MC5wbmciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/H71abe7a763a345ae87dcf70c25a70a32M.png_350x350.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/H71abe7a763a345ae87dcf70c25a70a32M.png_350x350.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvMi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/2.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/2.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTA0NWZlNDUzNDU2NjQzOTRhMmE4MDQ5OWI0YmQyMTE3aS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A045fe45345664394a2a80499b4bd2117i.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A045fe45345664394a2a80499b4bd2117i.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTg2ZTAzOWRmMWM5ZDRlODA5ZWE1M2RmZDY3NmJhNjdhTy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A86e039df1c9d4e809ea53dfd676ba67aO.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A86e039df1c9d4e809ea53dfd676ba67aO.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE5OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTc4NmRjNDI3YWY0NjQ1N2VhOTIzYzQxZWE3Njg4ZjY3US5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A786dc427af46457ea923c41ea7688f67Q.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A786dc427af46457ea923c41ea7688f67Q.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvNi5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/6.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/6.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTJlZDVhNWMzZjhmNTQ0Yzg5MTBhM2ZlMjlkYTVlMjk4NC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A2ed5a5c3f8f544c8910a3fe29da5e2984.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A2ed5a5c3f8f544c8910a3fe29da5e2984.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTNjODA2NDY4NTRjZDQ0MDFiNmI3MzdhODBlOGUyOWYyWi5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A3c80646854cd4401b6b737a80e8e29f2Z.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A3c80646854cd4401b6b737a80e8e29f2Z.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTUzZjk0ZmZmYTBlNjRiYThhNDczMzBlODVhMTc5MjE0bC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A53f94fffa0e64ba8a47330e85a179214l.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A53f94fffa0e64ba8a47330e85a179214l.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWE1NTlhYWE4ZThkNDQ4NjhiNzAwOTY3ZTE4MjYzMWUwTy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Aa559aaa8e8d44868b700967e182631e0O.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Aa559aaa8e8d44868b700967e182631e0O.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvNC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/4.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/4.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTI5MjA5ZmNhMTRlMzQ5MTI4NmE3YWUyYTdkNTM1MDY2dC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A29209fca14e3491286a7ae2a7d535066t.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A29209fca14e3491286a7ae2a7d535066t.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWZkNmU1MDE4ZDU0YTRjMzE5YjQ5NDFhZjU3ZTM4ZmMxZS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Afd6e5018d54a4c319b4941af57e38fc1e.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Afd6e5018d54a4c319b4941af57e38fc1e.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTg2MjZkZjVhZTg5YzQ1ODQ4NGNiZGVhYjZiMGEyNzY4RS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A8626df5ae89c458484cbdeab6b0a2768E.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A8626df5ae89c458484cbdeab6b0a2768E.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIwOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWVjMmE0Y2Q4OTVlNjQ4YjZiYzcxNzRkODY0ZTEwMzMyOS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Aec2a4cd895e648b6bc7174d864e103329.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Aec2a4cd895e648b6bc7174d864e103329.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/1.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTVmYTcxYjBlZGRmNjQ4MDQ5YzVmMzNkMzMxNzM4NDYwbS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A5fa71b0eddf648049c5f33d331738460m.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A5fa71b0eddf648049c5f33d331738460m.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTliYzE4NzI2OTdkNjQ5ZTdhMjhkMTRjNDhjZDZiNzFicS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A9bc1872697d649e7a28d14c48cd6b71bq.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A9bc1872697d649e7a28d14c48cd6b71bq.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWQwYzc4MmI4NDYxNTQ4NGQ4MzAzYWQ5NjRjZDMwMmE0Qy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Ad0c782b84615484d8303ad964cd302a4C.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Ad0c782b84615484d8303ad964cd302a4C.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWVjM2Y0NGQyYzBjZjQ1MzY4NzBiMTkwOTdiNTAzNWY0QS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Aec3f44d2c0cf4536870b19097b5035f4A.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Aec3f44d2c0cf4536870b19097b5035f4A.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvOC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/8.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/8.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTVkZjYxOWNlODllYzQyMTg5YTVjNGQwNWJiYmE0ZjJkdy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A5df619ce89ec42189a5c4d05bbba4f2dw.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A5df619ce89ec42189a5c4d05bbba4f2dw.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTkyMDcwMTU1OThhZTQ3ZTRiYTU3ZDVkNjc1NWE3OTQ1Si5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A9207015598ae47e4ba57d5d6755a7945J.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A9207015598ae47e4ba57d5d6755a7945J.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWE2NzUxNGNhMTUzYTQzMjA4NjEyNjExYWYxNWFlNjg5dC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Aa67514ca153a43208612611af15ae689t.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Aa67514ca153a43208612611af15ae689t.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIxOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWM4YzU3YWY1N2ZjMDRhOWI4YWZiY2Y1MjE0ZDhiMTI1YS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Ac8c57af57fc04a9b8afbcf5214d8b125a.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Ac8c57af57fc04a9b8afbcf5214d8b125a.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWVhMWEyZWE2YzlkMDRiNzg5NzdkMWU4YzkwN2U3MjFjUi5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Aea1a2ea6c9d04b78977d1e8c907e721cR.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Aea1a2ea6c9d04b78977d1e8c907e721cR.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvNS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/5.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/5.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvNy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/7.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/7.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTRmYTIyYjNkYjQ3MDQxNDVhOWM4ZjJiNmQ0MTNiNGI3WS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A4fa22b3db4704145a9c8f2b6d413b4b7Y.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A4fa22b3db4704145a9c8f2b6d413b4b7Y.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQThjZmExNTRjYTcwYTQ2YzU5NjVlOTkzMjU1YjUzZWNiZy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A8cfa154ca70a46c5965e993255b53ecbg.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A8cfa154ca70a46c5965e993255b53ecbg.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTk2N2M2MzRhNTE3YzQ4ZjM4YzIzZDQ3NjZkYjViYmExYS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A967c634a517c48f38c23d4766db5bba1a.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A967c634a517c48f38c23d4766db5bba1a.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTQ2MjQxM2I2ZGUyYjQwMWJhNjBlOTliYmUxZDE1ZTMzSy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A462413b6de2b401ba60e99bbe1d15e33K.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A462413b6de2b401ba60e99bbe1d15e33K.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTY2MTM5OTE0MmE3MjQ3Mjc4YmJmNjlhOWQ2MDA3NTU2Vy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A661399142a7247278bbf69a9d6007556W.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A661399142a7247278bbf69a9d6007556W.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvMTAuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/10.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/10.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIyOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTE2ZWI3MWY1NDZjNDRjNGJhMDBjNmFmZTQ2NDY0ZDU5My5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A16eb71f546c44c4ba00c6afe46464d593.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A16eb71f546c44c4ba00c6afe46464d593.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTcyYTIxYmE5NjljODRiOThiNjNiOTg1MzgwYjk3ZWY1Ty5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A72a21ba969c84b98b63b985380b97ef5O.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A72a21ba969c84b98b63b985380b97ef5O.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTk5NTc0ZWJlMWE2YzQzMmFiZWJiOTE2ODBlM2UyMjdlMC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A99574ebe1a6c432abebb91680e3e227e0.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A99574ebe1a6c432abebb91680e3e227e0.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWM2ZDlhM2I3OWE5MDRlZWI5YzkyNWFmYTM3NGVjNTNhQS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Ac6d9a3b79a904eeb9c925afa374ec53aA.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Ac6d9a3b79a904eeb9c925afa374ec53aA.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWRlZjA1YzMyMTIxOTRmMjU5ZjE1NTZjZDUwODFhYjNlZy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Adef05c3212194f259f1556cd5081ab3eg.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Adef05c3212194f259f1556cd5081ab3eg.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvMy5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/3.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/3.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvOS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/9.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/9.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTI2OGFhOGY5YjY1YzRjZGY5ZjQ1ZTU5NGYyY2Q4YWQ0TS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A268aa8f9b65c4cdf9f45e594f2cd8ad4M.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A268aa8f9b65c4cdf9f45e594f2cd8ad4M.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTg2NDQzMmYyNTcxNzQzNjg5MzQyYWUxNzNlZTlkYzlmZC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A864432f2571743689342ae173ee9dc9fd.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A864432f2571743689342ae173ee9dc9fd.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWJkNDM4NTFjOTI2NTRiZDk5Y2ZkY2E0NWQ4OTZmYmNiQi5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Abd43851c92654bd99cfdca45d896fbcbB.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Abd43851c92654bd99cfdca45d896fbcbB.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzIzOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWNkZDEyMjYyOThkZDQ2MTNhYmYwMjFiZGNhYWQzMjBiMC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Acdd1226298dd4613abf021bdcaad320b0.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Acdd1226298dd4613abf021bdcaad320b0.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWU5MWJmN2Y1MWRiMzQwMmViYWZmNjEwYzI5OWU5YWFjRi5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Ae91bf7f51db3402ebaff610c299e9aacF.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Ae91bf7f51db3402ebaff610c299e9aacF.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTA1ZjE4ZDQ3ZTcwOTQ4YWU4Nzk1MTExZDA1NWY0MmZhMi5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A05f18d47e70948ae8795111d055f42fa2.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A05f18d47e70948ae8795111d055f42fa2.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTVjMzc3OTJmMzg0MzQzODhhMDJhMDQ3OWZjYmM0MTIzVC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A5c37792f38434388a02a0479fcbc4123T.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A5c37792f38434388a02a0479fcbc4123T.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQThjNDIwOTkyZjQ3NzQ1NTA5ZjRmMjkyYWM3YmQyMjU4SC5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A8c420992f47745509f4f292ac7bd2258H.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A8c420992f47745509f4f292ac7bd2258H.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTEwMDFlNjNlYTU5MTQ5ZjhhODFhYmI5MmQ1ZDVmZTcxMy5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A1001e63ea59149f8a81abb92d5d5fe713.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A1001e63ea59149f8a81abb92d5d5fe713.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTM2MzQ2Zjg4MWIxMDQ5OTZiNmMwNzBiNWQyY2ViZmY4dS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A36346f881b104996b6c070b5d2cebff8u.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A36346f881b104996b6c070b5d2cebff8u.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTE1NzE4M2MwN2E3NjRlYjg5NTdiYzRjZDEzOTgyODA4aS5qcGdfMzUweDM1MC5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A157183c07a764eb8957bc4cd13982808i.jpg_350x350.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A157183c07a764eb8957bc4cd13982808i.jpg_350x350.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			CNC Machined Parts\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rNS5qcGciLCJzbGlkZXNob3ciOiIxODUyY2M5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok5.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok5.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rNC5wbmciLCJzbGlkZXNob3ciOiIxODUyY2M5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok4.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok4.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW1hY2hpbmUyMi5hdmlmIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-machine22.avif\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-machine22.avif\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW1hY2hpbmUzLmpwZyIsInNsaWRlc2hvdyI6IjE4NTJjYzkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-machine3.jpg\'><img width=\"150\" height=\"100\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-machine3.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rMy5wbmciLCJzbGlkZXNob3ciOiIxODUyY2M5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok3.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok3.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rMS5wbmciLCJzbGlkZXNob3ciOiIxODUyY2M5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok1.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok1.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rMi5wbmciLCJzbGlkZXNob3ciOiIxODUyY2M5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok2.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok2.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rNy5wbmciLCJzbGlkZXNob3ciOiIxODUyY2M5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok7.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok7.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rOS5qcGciLCJzbGlkZXNob3ciOiIxODUyY2M5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok9.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok9.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rOC5qcGciLCJzbGlkZXNob3ciOiIxODUyY2M5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok8.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok8.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejU3MDk0NDM0NzY3OTdfY2IzZTllMGQ1OTZhZDYzMzEzNjZiOGE3MTFmNDY5MjYuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z5709443476797_cb3e9e0d596ad6331366b8a711f46926.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z5709443476797_cb3e9e0d596ad6331366b8a711f46926.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			Sheet Metal &amp; Fabrication\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWwxLmpwZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal1.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWwzLmpwZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal3.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal3.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw0LmpwZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal4.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal4.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw1LmpwZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal5.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal5.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw3LmpwZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal7.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal7.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw4LmpwZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal8.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal8.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw5LmpwZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal9.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal9.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWwxMC5qcGciLCJzbGlkZXNob3ciOiJjZDlkYmE5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal10.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal10.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWwyLnBuZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal2.png\'><img width=\"84\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal2.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw2LmpwZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal6.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal6.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			Mold &amp; Die Components\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzYxNjUzNzJfODI1NjkzMjRkZTFjOGZjYzM3NmNjMGU3MzdjMDUyMGUuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzY0NTU3NzVfOTdhOTM3ODA3YzgwN2JmNzEzNjk0MTlhMGE1ZDNkMmMuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\'><img width=\"68\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzU4OTM2OTJfNDhmNGE5ZjdjN2E5ZDA1ZGMwMzdhODBhYzFlNTc4MmIuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzYwMDk1MTRfYWQ5MDg4N2YyNWQ3MzRlYzJkMjFkOGE2YTYzNGZmMmQuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzY3MjE1ODZfMTZiOTE5ODQyMGIzOTlmOWQ4MmMwNThkOTA4MmEzZTAuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzYxMTA0MjZfYzNlY2UzZWM1NmY5ZThjYzBlNWM5YTk4Zjk3OTJiZmMuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			Industrial Fasteners &amp; Bolt\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3dcc60b\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvSU1HXzEyMzcuanBlZyIsInNsaWRlc2hvdyI6IjNkY2M2MGIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/IMG_1237.jpeg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/IMG_1237.jpeg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3dcc60b\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvRFNDMDA4MjIuanBnIiwic2xpZGVzaG93IjoiM2RjYzYwYiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/DSC00822.jpg\'><img width=\"150\" height=\"100\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/DSC00822.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			Tool\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwMTgzMzRfMTdjNWZhYzk2ZmIyODQzZDc0YTc2Y2M3OWY5YjRmNWMuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\'><img width=\"150\" height=\"135\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwMzczNTNfZGI4NzczMmIzZWE5ZDkzNTM2YmNkM2FlYzY0ODM1YTcuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNTkxNjJfMDUzYjM2NGFiNzYxZGM1YTQ0Mjc5ZmFmNjQzOTUzMjQuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\'><img width=\"70\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNzgzNzJfNTBhYmNlNTI0OWM4YWNkY2ZiZGY4YTA2MzQ4OWUxODYuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNzg1NzBfMGFiNThiNDZiZjY4M2RmNmVjZGIyYzJkODc5NDViYTYuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\'><img width=\"150\" height=\"129\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk2ODQ5NDkwODZfYjI5ZmRiNTAxMTRhMTk2Y2MzZmRjYzllMTJjYWYxMDUuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\'><img width=\"150\" height=\"128\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk2ODQ5NDY2NDFfMTUwMGZiZTE2ZmVjM2ExNGVhZGI4ZTRhZWQxY2Y2M2YuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			Jig\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NDY1OTEzMzg2ODdfZmE1MTRlMTY0ZjJlZTk5NjFjZmVlY2U5YjJhMjk2MmUuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTE0ODI0OTc5ODFfNGZlOGQ1MmM3N2ZiOTcwYWNjYWNhOTkzMTFiM2U1YjguanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNTQzNzc3MTM5OTRfNzMxZjNhYzFmN2YzMjMyNjExMWE0MWY2N2Q0YTJlMzMuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE2NTM3NjdfNzk3Y2FkYTk3Yjk4NjQyZTYyYzkxODU3YzYwYjViNDQuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NDY1OTEzNDkxOTRfZDUwMTBkMTcwMGM3Y2ViNDkxYjk3OGIwMWJlM2RkMjguanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>','Product','','inherit','closed','closed','','2126-revision-v1','','','2025-03-18 06:37:44','2025-03-18 06:37:44','',2126,'https://fe2tech.com/?p=3344',0,'revision','',0),(3345,1,'2025-03-18 06:37:44','2025-03-18 06:37:44','<h5>\n        Our strength lies in mass production of aluminum and steel. We excel in innovation and deliver high-value products to our customers.    </h5>\n			Automotive &amp; Motorcycle\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMwOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTE2ZWI3MWY1NDZjNDRjNGJhMDBjNmFmZTQ2NDY0ZDU5My0xLmpwZ18zNTB4MzUwLTEuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A16eb71f546c44c4ba00c6afe46464d593-1.jpg_350x350-1.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A16eb71f546c44c4ba00c6afe46464d593-1.jpg_350x350-1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMxMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTcyYTIxYmE5NjljODRiOThiNjNiOTg1MzgwYjk3ZWY1Ty0xLmpwZ18zNTB4MzUwLTEuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A72a21ba969c84b98b63b985380b97ef5O-1.jpg_350x350-1.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A72a21ba969c84b98b63b985380b97ef5O-1.jpg_350x350-1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMxMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWM2ZDlhM2I3OWE5MDRlZWI5YzkyNWFmYTM3NGVjNTNhQS0xLmpwZ18zNTB4MzUwLTEuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Ac6d9a3b79a904eeb9c925afa374ec53aA-1.jpg_350x350-1.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Ac6d9a3b79a904eeb9c925afa374ec53aA-1.jpg_350x350-1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMxMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvMy0xLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/3-1.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/3-1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMxMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvOS0xLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/9-1.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/9-1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMxNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTI2OGFhOGY5YjY1YzRjZGY5ZjQ1ZTU5NGYyY2Q4YWQ0TS0xLmpwZ18zNTB4MzUwLTEuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A268aa8f9b65c4cdf9f45e594f2cd8ad4M-1.jpg_350x350-1.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A268aa8f9b65c4cdf9f45e594f2cd8ad4M-1.jpg_350x350-1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMxNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTg2NDQzMmYyNTcxNzQzNjg5MzQyYWUxNzNlZTlkYzlmZC0xLmpwZ18zNTB4MzUwLTEuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A864432f2571743689342ae173ee9dc9fd-1.jpg_350x350-1.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A864432f2571743689342ae173ee9dc9fd-1.jpg_350x350-1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMxNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWJkNDM4NTFjOTI2NTRiZDk5Y2ZkY2E0NWQ4OTZmYmNiQi0xLmpwZ18zNTB4MzUwLTEuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Abd43851c92654bd99cfdca45d896fbcbB-1.jpg_350x350-1.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Abd43851c92654bd99cfdca45d896fbcbB-1.jpg_350x350-1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMxNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTEwMDFlNjNlYTU5MTQ5ZjhhODFhYmI5MmQ1ZDVmZTcxMy0xLmpwZ18zNTB4MzUwLTEuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A1001e63ea59149f8a81abb92d5d5fe713-1.jpg_350x350-1.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A1001e63ea59149f8a81abb92d5d5fe713-1.jpg_350x350-1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMxOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTM2MzQ2Zjg4MWIxMDQ5OTZiNmMwNzBiNWQyY2ViZmY4dS0xLmpwZ18zNTB4MzUwLTEuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A36346f881b104996b6c070b5d2cebff8u-1.jpg_350x350-1.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A36346f881b104996b6c070b5d2cebff8u-1.jpg_350x350-1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMxOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTE1NzE4M2MwN2E3NjRlYjg5NTdiYzRjZDEzOTgyODA4aS0xLmpwZ18zNTB4MzUwLTEuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A157183c07a764eb8957bc4cd13982808i-1.jpg_350x350-1.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A157183c07a764eb8957bc4cd13982808i-1.jpg_350x350-1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMyMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTQ5NjllZjIzNDNhMjQ0NjA4Y2M1MTFkMWU3YmUyOGUyWC0xLnBuZ18zNTB4MzUwLTEucG5nIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A4969ef2343a244608cc511d1e7be28e2X-1.png_350x350-1.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A4969ef2343a244608cc511d1e7be28e2X-1.png_350x350-1.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMyMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvSDliZTY0NjE0OTRjZjRmZTc5OTgxOTJkYzQ4MzA2NmM5di0xLnBuZ18zNTB4MzUwLTEucG5nIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/H9be6461494cf4fe7998192dc483066c9v-1.png_350x350-1.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/H9be6461494cf4fe7998192dc483066c9v-1.png_350x350-1.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMyMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvSDRjYmFjNDdhZTZjZjQ3MDViOTY2NjY4Y2ExYWJhZDUwOS0xLnBuZ18zNTB4MzUwLTEucG5nIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/H4cbac47ae6cf4705b966668ca1abad509-1.png_350x350-1.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/H4cbac47ae6cf4705b966668ca1abad509-1.png_350x350-1.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMyMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvSDZjMDBiZDIzN2Q4YjQ2ZDRiMDZhMWNjNmVmNzZhY2NmRS0xLnBuZ18zNTB4MzUwLTEucG5nIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/H6c00bd237d8b46d4b06a1cc6ef76accfE-1.png_350x350-1.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/H6c00bd237d8b46d4b06a1cc6ef76accfE-1.png_350x350-1.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMyNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvSDcxYWJlN2E3NjNhMzQ1YWU4N2RjZjcwYzI1YTcwYTMyTS0xLnBuZ18zNTB4MzUwLTEucG5nIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/H71abe7a763a345ae87dcf70c25a70a32M-1.png_350x350-1.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/H71abe7a763a345ae87dcf70c25a70a32M-1.png_350x350-1.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMyNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvMi0xLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/2-1.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/2-1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMyNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTc4NmRjNDI3YWY0NjQ1N2VhOTIzYzQxZWE3Njg4ZjY3US0xLmpwZ18zNTB4MzUwLTEuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A786dc427af46457ea923c41ea7688f67Q-1.jpg_350x350-1.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A786dc427af46457ea923c41ea7688f67Q-1.jpg_350x350-1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMyNywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTJlZDVhNWMzZjhmNTQ0Yzg5MTBhM2ZlMjlkYTVlMjk4NC0xLmpwZ18zNTB4MzUwLTEuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A2ed5a5c3f8f544c8910a3fe29da5e2984-1.jpg_350x350-1.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A2ed5a5c3f8f544c8910a3fe29da5e2984-1.jpg_350x350-1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMyOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTUzZjk0ZmZmYTBlNjRiYThhNDczMzBlODVhMTc5MjE0bC0xLmpwZ18zNTB4MzUwLTEuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A53f94fffa0e64ba8a47330e85a179214l-1.jpg_350x350-1.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A53f94fffa0e64ba8a47330e85a179214l-1.jpg_350x350-1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMyOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWE1NTlhYWE4ZThkNDQ4NjhiNzAwOTY3ZTE4MjYzMWUwTy0xLmpwZ18zNTB4MzUwLTEuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Aa559aaa8e8d44868b700967e182631e0O-1.jpg_350x350-1.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Aa559aaa8e8d44868b700967e182631e0O-1.jpg_350x350-1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMzMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvNC0xLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/4-1.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/4-1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMzMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTg2MjZkZjVhZTg5YzQ1ODQ4NGNiZGVhYjZiMGEyNzY4RS0xLmpwZ18zNTB4MzUwLTEuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A8626df5ae89c458484cbdeab6b0a2768E-1.jpg_350x350-1.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A8626df5ae89c458484cbdeab6b0a2768E-1.jpg_350x350-1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMzMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvMS0xLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/1-1.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/1-1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMzMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTVmYTcxYjBlZGRmNjQ4MDQ5YzVmMzNkMzMxNzM4NDYwbS0xLmpwZ18zNTB4MzUwLTEuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A5fa71b0eddf648049c5f33d331738460m-1.jpg_350x350-1.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A5fa71b0eddf648049c5f33d331738460m-1.jpg_350x350-1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMzNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTVkZjYxOWNlODllYzQyMTg5YTVjNGQwNWJiYmE0ZjJkdy0xLmpwZ18zNTB4MzUwLTEuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A5df619ce89ec42189a5c4d05bbba4f2dw-1.jpg_350x350-1.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A5df619ce89ec42189a5c4d05bbba4f2dw-1.jpg_350x350-1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMzNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQWVhMWEyZWE2YzlkMDRiNzg5NzdkMWU4YzkwN2U3MjFjUi0xLmpwZ18zNTB4MzUwLTEuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/Aea1a2ea6c9d04b78977d1e8c907e721cR-1.jpg_350x350-1.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/Aea1a2ea6c9d04b78977d1e8c907e721cR-1.jpg_350x350-1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMzNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvNS0xLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/5-1.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/5-1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMzOCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvNy0xLmpwZyIsInNsaWRlc2hvdyI6IjU2MDNhODcifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/7-1.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/7-1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzMzOSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTk2N2M2MzRhNTE3YzQ4ZjM4YzIzZDQ3NjZkYjViYmExYS0xLmpwZ18zNTB4MzUwLTEuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A967c634a517c48f38c23d4766db5bba1a-1.jpg_350x350-1.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A967c634a517c48f38c23d4766db5bba1a-1.jpg_350x350-1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzM0MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTQ2MjQxM2I2ZGUyYjQwMWJhNjBlOTliYmUxZDE1ZTMzSy0xLmpwZ18zNTB4MzUwLTEuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A462413b6de2b401ba60e99bbe1d15e33K-1.jpg_350x350-1.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A462413b6de2b401ba60e99bbe1d15e33K-1.jpg_350x350-1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzM0MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvQTY2MTM5OTE0MmE3MjQ3Mjc4YmJmNjlhOWQ2MDA3NTU2Vy0xLmpwZ18zNTB4MzUwLTEuanBnIiwic2xpZGVzaG93IjoiNTYwM2E4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/A661399142a7247278bbf69a9d6007556W-1.jpg_350x350-1.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/A661399142a7247278bbf69a9d6007556W-1.jpg_350x350-1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"5603a87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzM0MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvMTAtMS5qcGciLCJzbGlkZXNob3ciOiI1NjAzYTg3In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/10-1.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/10-1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			CNC Machined Parts\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rNS5qcGciLCJzbGlkZXNob3ciOiIxODUyY2M5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok5.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok5.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rNC5wbmciLCJzbGlkZXNob3ciOiIxODUyY2M5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok4.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok4.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI0OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW1hY2hpbmUyMi5hdmlmIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-machine22.avif\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-machine22.avif\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW1hY2hpbmUzLmpwZyIsInNsaWRlc2hvdyI6IjE4NTJjYzkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-machine3.jpg\'><img width=\"150\" height=\"100\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-machine3.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rMy5wbmciLCJzbGlkZXNob3ciOiIxODUyY2M5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok3.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok3.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rMS5wbmciLCJzbGlkZXNob3ciOiIxODUyY2M5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok1.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok1.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rMi5wbmciLCJzbGlkZXNob3ciOiIxODUyY2M5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok2.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok2.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rNy5wbmciLCJzbGlkZXNob3ciOiIxODUyY2M5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok7.png\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok7.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rOS5qcGciLCJzbGlkZXNob3ciOiIxODUyY2M5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok9.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok9.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvY25jLW9rOC5qcGciLCJzbGlkZXNob3ciOiIxODUyY2M5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok8.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok8.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"1852cc9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejU3MDk0NDM0NzY3OTdfY2IzZTllMGQ1OTZhZDYzMzEzNjZiOGE3MTFmNDY5MjYuanBnIiwic2xpZGVzaG93IjoiMTg1MmNjOSJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z5709443476797_cb3e9e0d596ad6331366b8a711f46926.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z5709443476797_cb3e9e0d596ad6331366b8a711f46926.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			Sheet Metal &amp; Fabrication\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWwxLmpwZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal1.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI1OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWwzLmpwZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal3.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal3.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw0LmpwZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal4.jpg\'><img width=\"150\" height=\"84\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal4.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw1LmpwZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal5.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal5.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw3LmpwZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal7.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal7.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw4LmpwZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal8.jpg\'><img width=\"150\" height=\"113\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal8.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw5LmpwZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal9.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal9.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWwxMC5qcGciLCJzbGlkZXNob3ciOiJjZDlkYmE5In0%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal10.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal10.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2NiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWwyLnBuZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal2.png\'><img width=\"84\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal2.png\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"cd9dba9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2NywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvc2hlZXQtbWV0YWw2LmpwZyIsInNsaWRlc2hvdyI6ImNkOWRiYTkifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal6.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal6.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			Mold &amp; Die Components\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2OCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzYxNjUzNzJfODI1NjkzMjRkZTFjOGZjYzM3NmNjMGU3MzdjMDUyMGUuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI2OSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzY0NTU3NzVfOTdhOTM3ODA3YzgwN2JmNzEzNjk0MTlhMGE1ZDNkMmMuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\'><img width=\"68\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3MCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzU4OTM2OTJfNDhmNGE5ZjdjN2E5ZDA1ZGMwMzdhODBhYzFlNTc4MmIuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3MSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzYwMDk1MTRfYWQ5MDg4N2YyNWQ3MzRlYzJkMjFkOGE2YTYzNGZmMmQuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3MiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzY3MjE1ODZfMTZiOTE5ODQyMGIzOTlmOWQ4MmMwNThkOTA4MmEzZTAuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7eb3b87\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3MywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvejYwNjk3MzYxMTA0MjZfYzNlY2UzZWM1NmY5ZThjYzBlNWM5YTk4Zjk3OTJiZmMuanBnIiwic2xpZGVzaG93IjoiN2ViM2I4NyJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			Industrial Fasteners &amp; Bolt\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3dcc60b\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3NCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvSU1HXzEyMzcuanBlZyIsInNsaWRlc2hvdyI6IjNkY2M2MGIifQ%3D%3D\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/IMG_1237.jpeg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/IMG_1237.jpeg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3dcc60b\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzI3NSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI1XC8wM1wvRFNDMDA4MjIuanBnIiwic2xpZGVzaG93IjoiM2RjYzYwYiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2025/03/DSC00822.jpg\'><img width=\"150\" height=\"100\" src=\"https://fe2tech.com/wp-content/uploads/2025/03/DSC00822.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			Tool\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwMTgzMzRfMTdjNWZhYzk2ZmIyODQzZDc0YTc2Y2M3OWY5YjRmNWMuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\'><img width=\"150\" height=\"135\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwMzczNTNfZGI4NzczMmIzZWE5ZDkzNTM2YmNkM2FlYzY0ODM1YTcuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNTkxNjJfMDUzYjM2NGFiNzYxZGM1YTQ0Mjc5ZmFmNjQzOTUzMjQuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\'><img width=\"70\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735059162_053b364ab761dc5a44279faf64395324.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNzgzNzJfNTBhYmNlNTI0OWM4YWNkY2ZiZGY4YTA2MzQ4OWUxODYuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\'><img width=\"150\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk3MzUwNzg1NzBfMGFiNThiNDZiZjY4M2RmNmVjZGIyYzJkODc5NDViYTYuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\'><img width=\"150\" height=\"129\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk2ODQ5NDkwODZfYjI5ZmRiNTAxMTRhMTk2Y2MzZmRjYzllMTJjYWYxMDUuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\'><img width=\"150\" height=\"128\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a165f68\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcxNiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNjk2ODQ5NDY2NDFfMTUwMGZiZTE2ZmVjM2ExNGVhZGI4ZTRhZWQxY2Y2M2YuanBnIiwic2xpZGVzaG93IjoiYTE2NWY2OCJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>\n			Jig\n	    <h6>\n            </h6>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NDY1OTEzMzg2ODdfZmE1MTRlMTY0ZjJlZTk5NjFjZmVlY2U5YjJhMjk2MmUuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMSwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NTE0ODI0OTc5ODFfNGZlOGQ1MmM3N2ZiOTcwYWNjYWNhOTkzMTFiM2U1YjguanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMiwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejYwNTQzNzc3MTM5OTRfNzMxZjNhYzFmN2YzMjMyNjExMWE0MWY2N2Q0YTJlMzMuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczMywidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU3OTkzMjE2NTM3NjdfNzk3Y2FkYTk3Yjk4NjQyZTYyYzkxODU3YzYwYjViNDQuanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"09a76d6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjczNCwidXJsIjoiaHR0cHM6XC9cL2ZlMnRlY2guY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMVwvejU5NDY1OTEzNDkxOTRfZDUwMTBkMTcwMGM3Y2ViNDkxYjk3OGIwMWJlM2RkMjguanBnIiwic2xpZGVzaG93IjoiMDlhNzZkNiJ9\" href=\'https://fe2tech.com/wp-content/uploads/2024/11/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\'><img width=\"113\" height=\"150\" src=\"https://fe2tech.com/wp-content/uploads/2024/11/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>','Product','','inherit','closed','closed','','2126-revision-v1','','','2025-03-18 06:37:44','2025-03-18 06:37:44','',2126,'https://fe2tech.com/?p=3345',0,'revision','',0);
/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_revslider_css`
--

DROP TABLE IF EXISTS `wp_revslider_css`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_revslider_css` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `handle` text NOT NULL,
  `settings` longtext DEFAULT NULL,
  `hover` longtext DEFAULT NULL,
  `advanced` longtext DEFAULT NULL,
  `params` longtext NOT NULL,
  PRIMARY KEY (`id`),
  KEY `handle_index` (`handle`(64))
) ENGINE=InnoDB AUTO_INCREMENT=110 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_revslider_css`
--

LOCK TABLES `wp_revslider_css` WRITE;
/*!40000 ALTER TABLE `wp_revslider_css` DISABLE KEYS */;
INSERT INTO `wp_revslider_css` VALUES (1,'.tp-caption.medium_grey','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\"},\"hover\":[]}','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"padding\":\"2px 4px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#888\"}'),(2,'.tp-caption.small_text','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\"},\"hover\":[]}','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"14px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(3,'.tp-caption.medium_text','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\"},\"hover\":[]}','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(4,'.tp-caption.large_text','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\"},\"hover\":[]}','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"40px\",\"line-height\":\"40px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(5,'.tp-caption.very_large_text','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\",\"letter-spacing\":\"-2px\"},\"hover\":[]}','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(6,'.tp-caption.very_big_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\",\"padding-top\":\"1px\"},\"hover\":[]}','{\"color\":\"#fff\",\"font-weight\":\"800\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"padding\":\"0px 4px\",\"background-color\":\"#000\"}'),(7,'.tp-caption.very_big_black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\",\"padding-top\":\"1px\"},\"hover\":[]}','{\"color\":\"#000\",\"font-weight\":\"700\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"padding\":\"0px 4px\",\"background-color\":\"#fff\"}'),(8,'.tp-caption.modern_medium_fat','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\"},\"hover\":[]}','{\"color\":\"#000\",\"font-weight\":\"800\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(9,'.tp-caption.modern_medium_fat_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\"},\"hover\":[]}','{\"color\":\"#fff\",\"font-weight\":\"800\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(10,'.tp-caption.modern_medium_light','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\"},\"hover\":[]}','{\"color\":\"#000\",\"font-weight\":\"300\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(11,'.tp-caption.modern_big_bluebg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"letter-spacing\":\"0\"},\"hover\":[]}','{\"color\":\"#fff\",\"font-weight\":\"800\",\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"padding\":\"3px 10px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#4e5b6c\"}'),(12,'.tp-caption.modern_big_redbg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"padding-top\":\"1px\",\"letter-spacing\":\"0\"},\"hover\":[]}','{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"padding\":\"3px 10px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#de543e\"}'),(13,'.tp-caption.modern_small_text_dark','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\"},\"hover\":[]}','{\"color\":\"#555\",\"font-size\":\"14px\",\"line-height\":\"22px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(14,'.tp-caption.boxshadow','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"-moz-box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\",\"-webkit-box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\",\"box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\"},\"hover\":[]}','[]'),(15,'.tp-caption.black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":[]}','{\"color\":\"#000\"}'),(16,'.tp-caption.noshadow','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":[]}','[]'),(17,'.tp-caption.thinheadline_dark','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\"},\"hover\":[]}','{\"color\":\"rgba(0,0,0,0.85)\",\"font-weight\":\"300\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"transparent\"}'),(18,'.tp-caption.thintext_dark','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\"},\"hover\":[]}','{\"color\":\"rgba(0,0,0,0.85)\",\"font-weight\":\"300\",\"font-size\":\"16px\",\"line-height\":\"26px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"transparent\"}'),(19,'.tp-caption.largeblackbg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":[]}','{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#000\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}'),(20,'.tp-caption.largepinkbg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":[]}','{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#db4360\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}'),(21,'.tp-caption.largewhitebg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":[]}','{\"color\":\"#000\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#fff\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}'),(22,'.tp-caption.largegreenbg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":[]}','{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#67ae73\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}'),(23,'.tp-caption.excerpt','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\",\"letter-spacing\":\"-1.5px\",\"width\":\"150px\",\"white-space\":\"normal !important\",\"height\":\"auto\"},\"hover\":[]}','{\"font-size\":\"36px\",\"line-height\":\"36px\",\"font-weight\":\"700\",\"font-family\":\"Arial\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"rgba(0, 0, 0, 1)\",\"margin\":\"0px\",\"padding\":\"1px 4px 0px 4px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}'),(24,'.tp-caption.large_bold_grey','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":[]}','{\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(102, 102, 102)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"margin\":\"0px\",\"padding\":\"1px 4px 0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(25,'.tp-caption.medium_thin_grey','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":[]}','{\"font-size\":\"34px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(102, 102, 102)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"1px 4px 0px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(26,'.tp-caption.small_thin_grey','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":[]}','{\"font-size\":\"18px\",\"line-height\":\"26px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(117, 117, 117)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"1px 4px 0px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(27,'.tp-caption.lightgrey_divider','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"width\":\"370px\",\"height\":\"3px\",\"background-position\":\"initial initial\",\"background-repeat\":\"initial initial\"},\"hover\":[]}','{\"text-decoration\":\"none\",\"background-color\":\"rgba(235, 235, 235, 1)\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),(28,'.tp-caption.large_bold_darkblue','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":[]}','{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(52, 73, 94)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(29,'.tp-caption.medium_bg_darkblue','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":[]}','{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(52, 73, 94)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(30,'.tp-caption.medium_bold_red','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":[]}','{\"font-size\":\"24px\",\"line-height\":\"30px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(227, 58, 12)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(31,'.tp-caption.medium_light_red','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":[]}','{\"font-size\":\"21px\",\"line-height\":\"26px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(227, 58, 12)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(32,'.tp-caption.medium_bg_red','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":[]}','{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(227, 58, 12)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(33,'.tp-caption.medium_bold_orange','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":[]}','{\"font-size\":\"24px\",\"line-height\":\"30px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(243, 156, 18)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(34,'.tp-caption.medium_bg_orange','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":[]}','{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(243, 156, 18)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(35,'.tp-caption.grassfloor','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"width\":\"4000px\",\"height\":\"150px\"},\"hover\":[]}','{\"text-decoration\":\"none\",\"background-color\":\"rgba(160, 179, 151, 1)\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),(36,'.tp-caption.large_bold_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":[]}','{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(37,'.tp-caption.medium_light_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":[]}','{\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(38,'.tp-caption.mediumlarge_light_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":[]}','{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(39,'.tp-caption.mediumlarge_light_white_center','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":[]}','{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px 0px 0px 0px\",\"text-align\":\"center\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(40,'.tp-caption.medium_bg_asbestos','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":[]}','{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(127, 140, 141)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(41,'.tp-caption.medium_light_black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":[]}','{\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(42,'.tp-caption.large_bold_black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":[]}','{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(43,'.tp-caption.mediumlarge_light_darkblue','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":[]}','{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(52, 73, 94)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(44,'.tp-caption.small_light_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":[]}','{\"font-size\":\"17px\",\"line-height\":\"28px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(45,'.tp-caption.roundedimage','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":[]}','{\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),(46,'.tp-caption.large_bg_black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":[]}','{\"font-size\":\"40px\",\"line-height\":\"40px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(0, 0, 0)\",\"padding\":\"10px 20px 15px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(47,'.tp-caption.mediumwhitebg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":[]}','{\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(255, 255, 255)\",\"padding\":\"5px 15px 10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(0, 0, 0)\",\"border-style\":\"none\"}'),(48,'.tp-caption.MarkerDisplay','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ff0000\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"font-style\":\"normal\",\"font-family\":\"Permanent Marker\",\"padding\":\"0px 0px 0px 0px\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(49,'.tp-caption.Restaurant-Display','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"font-size\":\"120px\",\"line-height\":\"120px\",\"font-weight\":\"700\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(50,'.tp-caption.Restaurant-Cursive','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Nothing you could do\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(51,'.tp-caption.Restaurant-ScrollDownText','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(52,'.tp-caption.Restaurant-Description','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"font-size\":\"20px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(53,'.tp-caption.Restaurant-Price','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(54,'.tp-caption.Restaurant-Menuitem','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"500\",\"easing\":\"power2.inOut\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(55,'.tp-caption.Furniture-LogoText','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"color\":\"#e6cfa3\",\"color-transparency\":\"1\",\"font-size\":\"160px\",\"line-height\":\"150px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(56,'.tp-caption.Furniture-Plus','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0.5\",\"easing\":\"none\"}','{\"idle\":{\"text-shadow\":\"none\",\"box-shadow\":\"rgba(0,0,0,0.1) 0 1px 3px\"},\"hover\":\"\"}','{\"color\":\"#e6cfa3\",\"color-transparency\":\"1\",\"font-size\":\"20\",\"line-height\":\"20px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":[\"6px\",\"7px\",\"4px\",\"7px\"],\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(57,'.tp-caption.Furniture-Title','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"text-shadow\":\"none\",\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"700\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(58,'.tp-caption.Furniture-Subtitle','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"20px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(59,'.tp-caption.Gym-Display','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"80px\",\"line-height\":\"70px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(60,'.tp-caption.Gym-Subline','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"5px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(61,'.tp-caption.Gym-SmallText','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"22\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(62,'.tp-caption.Fashion-SmallText','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"12px\",\"line-height\":\"20px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(63,'.tp-caption.Fashion-BigDisplay','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(64,'.tp-caption.Fashion-TextBlock','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"40px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(65,'.tp-caption.Sports-Display','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"13px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"130px\",\"line-height\":\"130px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(66,'.tp-caption.Sports-DisplayFat','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":[\"\"],\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"130px\",\"line-height\":\"130px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(67,'.tp-caption.Sports-Subline','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"4px\"},\"hover\":\"\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"32px\",\"line-height\":\"32px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(68,'.tp-caption.Instagram-Caption','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(69,'.tp-caption.News-Title','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"70px\",\"line-height\":\"60px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Roboto Slab\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(70,'.tp-caption.News-Subtitle','{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"0.65\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"0px\",\"border-radius\":[\"0\",\"0\",\"0px\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"300\",\"easing\":\"power3.inOut\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"24px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Roboto Slab\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(71,'.tp-caption.Photography-Display','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"5px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"80px\",\"line-height\":\"70px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(72,'.tp-caption.Photography-Subline','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#777777\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(73,'.tp-caption.Photography-ImageHover','{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"0.5\",\"scalex\":\"0.8\",\"scaley\":\"0.8\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"1000\",\"easing\":\"power3.inOut\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20\",\"line-height\":\"22\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(74,'.tp-caption.Photography-Menuitem','{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#00ffde\",\"background-transparency\":\"0.65\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"200\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"3px\",\"5px\",\"3px\",\"8px\"],\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0.65\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(75,'.tp-caption.Photography-Textblock','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(76,'.tp-caption.Photography-Subline-2','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"0.35\",\"font-size\":\"20px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(77,'.tp-caption.Photography-ImageHover2','{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"0.5\",\"scalex\":\"0.8\",\"scaley\":\"0.8\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"500\",\"easing\":\"back.out\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20\",\"line-height\":\"22\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Arial\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(78,'.tp-caption.WebProduct-Title','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#333333\",\"color-transparency\":\"1\",\"font-size\":\"90px\",\"line-height\":\"90px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(79,'.tp-caption.WebProduct-SubTitle','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#999999\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(80,'.tp-caption.WebProduct-Content','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#999999\",\"color-transparency\":\"1\",\"font-size\":\"16px\",\"line-height\":\"24px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(81,'.tp-caption.WebProduct-Menuitem','{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#999999\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"200\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"3px\",\"5px\",\"3px\",\"8px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#333333\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(82,'.tp-caption.WebProduct-Title-Light','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"90px\",\"line-height\":\"90px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(83,'.tp-caption.WebProduct-SubTitle-Light','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"0.35\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"parallax\":\"-\"}'),(84,'.tp-caption.WebProduct-Content-Light','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"0.65\",\"font-size\":\"16px\",\"line-height\":\"24px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"parallax\":\"-\"}'),(85,'.tp-caption.FatRounded','{\"hover\":\"true\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#d3d3d3\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"50px\",\"50px\",\"50px\",\"50px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"none\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"20px\",\"22px\",\"20px\",\"25px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0.5\",\"border-color\":\"#d3d3d3\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"50px\",\"50px\",\"50px\",\"50px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(86,'.tp-caption.NotGeneric-Title','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"[object Object]\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"70px\",\"line-height\":\"70px\",\"font-weight\":\"800\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"10px 0px 10px 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(87,'.tp-caption.NotGeneric-SubTitle','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"4px\",\"text-align\":\"left\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"13px\",\"line-height\":\"20px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(88,'.tp-caption.NotGeneric-CallToAction','{\"hover\":\"true\",\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":\"0px 0px 0px 0px\",\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power3.out\"}','{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"10px 30px 10px 30px\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(89,'.tp-caption.NotGeneric-Icon','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"default\",\"speed\":\"300\",\"easing\":\"power3.out\"}','{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"0px 0px 0px 0px\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"0px\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(90,'.tp-caption.NotGeneric-Menuitem','{\"hover\":\"true\",\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":\"0px 0px 0px 0px\",\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power1.inOut\"}','{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"27px 30px 27px 30px\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.15\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(91,'.tp-caption.MarkerStyle','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"text-align\":\"left\",\"0\":\"\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"30px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"\\\"Permanent Marker\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(92,'.tp-caption.Gym-Menuitem','{\"hover\":\"true\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"200\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"3px\",\"5px\",\"3px\",\"8px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(93,'.tp-caption.Newspaper-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#FFFFFF\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power1.inOut\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"13px\",\"line-height\":\"17px\",\"font-weight\":\"700\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#ffffff\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(94,'.tp-caption.Newspaper-Subtitle','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#a8d8ee\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(95,'.tp-caption.Newspaper-Title','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"50px\",\"line-height\":\"55px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Roboto Slab\\\"\",\"padding\":[\"0\",\"0\",\"10px\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(96,'.tp-caption.Newspaper-Title-Centered','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"50px\",\"line-height\":\"55px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Roboto Slab\\\"\",\"padding\":[\"0\",\"0\",\"10px\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"center\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(97,'.tp-caption.Hero-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power1.inOut\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(98,'.tp-caption.Video-Title','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"5px\",\"5px\",\"5px\",\"5px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"-20%\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(99,'.tp-caption.Video-SubTitle','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"12px\",\"line-height\":\"12px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"5px\",\"5px\",\"5px\",\"5px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0.35\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"-20%\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(100,'.tp-caption.NotGeneric-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power1.inOut\"}','{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(101,'.tp-caption.NotGeneric-BigButton','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power1.inOut\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"27px\",\"30px\",\"27px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.15\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(102,'.tp-caption.WebProduct-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#333333\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"2\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"300\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"1px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"16px\",\"line-height\":\"48px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0px\",\"40px\",\"0px\",\"40px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#333333\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"2\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(103,'.tp-caption.Restaurant-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffe081\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"300\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#0a0a0a\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(104,'.tp-caption.Gym-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#72a800\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power1.inOut\"}','{\"idle\":{\"letter-spacing\":\"1px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"13px\",\"35px\",\"13px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#8bc027\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(105,'.tp-caption.Gym-Button-Light','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#72a800\",\"background-transparency\":\"0\",\"border-color\":\"#8bc027\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power2.inOut\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(106,'.tp-caption.Sports-Button-Light','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"500\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(107,'.tp-caption.Sports-Button-Red','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"500\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#db1c22\",\"background-transparency\":\"1\",\"border-color\":\"#db1c22\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(108,'.tp-caption.Photography-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"300\",\"easing\":\"power3.out\"}','{\"idle\":{\"letter-spacing\":\"1px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"13px\",\"35px\",\"13px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(109,'.tp-caption.Newspaper-Button-2','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}');
/*!40000 ALTER TABLE `wp_revslider_css` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_revslider_layer_animations`
--

DROP TABLE IF EXISTS `wp_revslider_layer_animations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_revslider_layer_animations` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `handle` text NOT NULL,
  `params` text NOT NULL,
  `settings` text DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_revslider_layer_animations`
--

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

--
-- Table structure for table `wp_revslider_navigations`
--

DROP TABLE IF EXISTS `wp_revslider_navigations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_revslider_navigations` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `name` varchar(191) NOT NULL,
  `handle` varchar(191) NOT NULL,
  `type` varchar(191) NOT NULL,
  `css` longtext NOT NULL,
  `markup` longtext NOT NULL,
  `settings` longtext DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_revslider_navigations`
--

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

--
-- Table structure for table `wp_revslider_sliders`
--

DROP TABLE IF EXISTS `wp_revslider_sliders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_revslider_sliders` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `title` tinytext NOT NULL,
  `alias` tinytext DEFAULT NULL,
  `params` longtext NOT NULL,
  `settings` text DEFAULT NULL,
  `type` varchar(191) NOT NULL DEFAULT '',
  PRIMARY KEY (`id`),
  KEY `type_index` (`type`(8))
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_revslider_sliders`
--

LOCK TABLES `wp_revslider_sliders` WRITE;
/*!40000 ALTER TABLE `wp_revslider_sliders` DISABLE KEYS */;
INSERT INTO `wp_revslider_sliders` VALUES (1,'Home 1','home-1','{\"addOns\":[],\"version\":\"6.7.20\",\"pakps\":false,\"shortcode\":\"[rev_slider alias=\\\"home-1\\\"][\\/rev_slider]\",\"type\":\"standard\",\"layouttype\":\"auto\",\"sourcetype\":\"gallery\",\"googleFont\":[],\"id\":\"\",\"class\":\"\",\"wrapperclass\":\"\",\"snap\":{\"adjust\":\"none\",\"snap\":false,\"helpLines\":false,\"gap\":20},\"source\":{\"gallery\":[],\"post\":{\"excerptLimit\":55,\"maxPosts\":30,\"fetchType\":\"cat_tag\",\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"post\",\"list\":\"\",\"sortDirection\":\"DESC\",\"subType\":\"post\"},\"woo\":{\"excerptLimit\":55,\"maxProducts\":30,\"featuredOnly\":false,\"inStockOnly\":false,\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"product\",\"sortDirection\":\"DESC\",\"regPriceFrom\":\"\",\"regPriceTo\":\"\",\"salePriceFrom\":\"\",\"salePriceTo\":\"\"},\"instagram\":{\"count\":\"\",\"hashTag\":\"\",\"transient\":1200,\"type\":\"user\",\"userId\":\"\",\"token_source\":\"account\",\"connect_with\":\"\"},\"facebook\":{\"album\":\"\",\"appId\":\"\",\"appSecret\":\"\",\"count\":\"\",\"transient\":1200,\"typeSource\":\"album\",\"token_source\":\"account\",\"connect_with\":\"\",\"page_id\":\"\"},\"flickr\":{\"apiKey\":\"\",\"count\":\"\",\"galleryURL\":\"\",\"groupURL\":\"\",\"photoSet\":\"\",\"transient\":1200,\"type\":\"publicphotos\",\"userURL\":\"\"},\"twitter\":{\"accessSecret\":\"\",\"accessToken\":\"\",\"consumerKey\":\"\",\"consumerSecret\":\"\",\"count\":\"\",\"excludeReplies\":false,\"imageOnly\":false,\"includeRetweets\":false,\"transient\":1200,\"userId\":\"\"},\"vimeo\":{\"albumId\":\"\",\"channelName\":\"\",\"count\":\"\",\"transient\":1200,\"groupName\":\"\",\"typeSource\":\"user\",\"userName\":\"\"},\"youtube\":{\"api\":\"\",\"channelId\":\"\",\"count\":\"\",\"playList\":\"\",\"transient\":1200,\"typeSource\":\"channel\"}},\"def\":{\"intelligentInherit\":true,\"autoResponsive\":true,\"responsiveChilds\":true,\"responsiveOffset\":true,\"transition\":\"fade\",\"transitionDuration\":300,\"delay\":9000,\"background\":{\"fit\":\"cover\",\"fitX\":100,\"fitY\":100,\"position\":\"center center\",\"positionX\":0,\"positionY\":0,\"repeat\":\"no-repeat\",\"imageSourceType\":\"full\"},\"panZoom\":{\"set\":false,\"blurStart\":0,\"blurEnd\":0,\"duration\":10000,\"ease\":\"none\",\"fitEnd\":100,\"fitStart\":100,\"xEnd\":0,\"yEnd\":0,\"xStart\":0,\"yStart\":0,\"rotateStart\":0,\"rotateEnd\":0}},\"size\":{\"enableUpscaling\":false,\"respectAspectRatio\":false,\"disableForceFullWidth\":false,\"custom\":{\"d\":true,\"n\":true,\"t\":true,\"m\":true},\"minHeightFullScreen\":0,\"minHeight\":0,\"maxWidth\":0,\"maxHeight\":0,\"fullScreenOffsetContainer\":\"\",\"fullScreenOffset\":\"\",\"width\":{\"d\":1230,\"n\":1024,\"t\":778,\"m\":480},\"height\":{\"d\":602,\"n\":602,\"t\":540,\"m\":540},\"editorCache\":{\"d\":602,\"n\":602,\"t\":540,\"m\":540},\"overflow\":false,\"useFullScreenHeight\":true,\"overflowHidden\":false,\"gridEQModule\":false,\"forceOverflow\":false,\"keepBPHeight\":true,\"ignoreHeightChanges\":true},\"codes\":{\"css\":\"\",\"javascript\":\"\",\"javascript7\":\"\"},\"carousel\":{\"orientation\":\"h\",\"prevNextVis\":\"50px\",\"justify\":false,\"justifyMaxWidth\":false,\"snap\":true,\"borderRadius\":0,\"borderRadiusUnit\":\"px\",\"ease\":\"power3.inOut\",\"fadeOut\":true,\"scale\":false,\"offsetScale\":false,\"horizontal\":\"center\",\"vertical\":\"center\",\"infinity\":false,\"maxItems\":3,\"maxRotation\":0,\"maxOpacity\":100,\"paddingTop\":0,\"paddingBottom\":0,\"rotation\":false,\"scaleDown\":50,\"space\":0,\"speed\":800,\"stretch\":false,\"varyFade\":false,\"varyRotate\":false,\"varyScale\":false,\"showAllLayers\":false,\"skewX\":0,\"skewY\":0,\"spin\":\"off\",\"spinAngle\":0,\"overshoot\":false},\"hero\":{\"activeSlide\":-1},\"layout\":{\"bg\":{\"color\":\"transparent\",\"padding\":0,\"dottedOverlay\":\"none\",\"dottedOverlaySize\":1,\"dottedColorA\":\"transparent\",\"dottedColorB\":\"#000000\",\"shadow\":0,\"useImage\":false,\"image\":\"\",\"imageSourceType\":\"full\",\"fit\":\"cover\",\"position\":\"center center\",\"repeat\":\"no-repeat\"},\"spinner\":{\"color\":\"#ffffff\",\"type\":\"0\"},\"position\":{\"marginTop\":0,\"marginBottom\":0,\"marginLeft\":0,\"marginRight\":0,\"align\":\"center\",\"fixedOnTop\":false,\"addClear\":false}},\"visibility\":{\"hideSelectedLayersUnderLimit\":0,\"hideAllLayersUnderLimit\":0,\"hideSliderUnderLimit\":0},\"general\":{\"slideshow\":{\"slideShow\":true,\"stopOnHover\":false,\"stopSlider\":false,\"stopAfterLoops\":0,\"stopAtSlide\":1,\"shuffle\":false,\"loopSingle\":false,\"viewPort\":false,\"viewPortStart\":\"wait\",\"viewPortArea\":{\"d\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"},\"n\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"},\"t\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"},\"m\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"}},\"presetSliderHeight\":false,\"initDelay\":0,\"waitForInit\":false},\"progressbar\":{\"set\":false,\"alignby\":\"slider\",\"style\":\"horizontal\",\"size\":5,\"radius\":10,\"vertical\":\"bottom\",\"horizontal\":\"left\",\"x\":0,\"y\":0,\"color\":\"rgba(255,255,255,0.5)\",\"bgcolor\":\"transparent\",\"basedon\":\"slide\",\"gapsize\":0,\"gap\":false,\"gapcolor\":\"rgba(255,255,255,0.5)\",\"reset\":\"reset\",\"visibility\":{\"d\":true,\"m\":true,\"n\":true,\"t\":true}},\"firstSlide\":{\"set\":false,\"duration\":300,\"slotAmount\":7,\"type\":\"fade\",\"alternativeFirstSlideSet\":false,\"alternativeFirstSlide\":1},\"icache\":\"default\",\"DPR\":\"dpr\",\"observeWrap\":false,\"layerSelection\":false,\"lazyLoad\":\"none\",\"nextSlideOnFocus\":false,\"disableFocusListener\":false,\"freezeOnBlur\":false,\"mISB\":false,\"enableurlhash\":false,\"disableOnMobile\":false,\"autoPlayVideoOnMobile\":true,\"disablePanZoomMobile\":false,\"useWPML\":false,\"perspective\":600,\"perspectiveType\":\"local\"},\"nav\":{\"preview\":{\"width\":50,\"height\":100},\"swipe\":{\"set\":false,\"setOnDesktop\":false,\"setMobileCarousel\":true,\"setDesktopCarousel\":true,\"blockDragVertical\":false,\"direction\":\"horizontal\",\"minTouch\":1,\"velocity\":75},\"keyboard\":{\"direction\":\"horizontal\",\"set\":false},\"mouse\":{\"set\":\"off\",\"reverse\":\"default\",\"viewport\":50,\"calldelay\":1000,\"threshold\":50},\"arrows\":{\"set\":true,\"rtl\":false,\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"style\":\"1000\",\"preset\":\"default\",\"presets\":{\"bg-color\":\"rgba(0,0,0,0.5)\",\"bg-color-def\":false,\"bg-size\":\"40\",\"bg-size-def\":false,\"arrow-color\":\"#ffffff\",\"arrow-color-def\":false,\"arrow-size\":\"20\",\"arrow-size-def\":false,\"hover-bg-color\":\"#000000\",\"hover-bg-color-def\":false,\"left-icon\":\"\\\\e82c\",\"left-icon-def\":false,\"right-icon\":\"\\\\e82d\",\"right-icon-def\":false},\"alwaysOn\":true,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778,\"left\":{\"anim\":\"fade\",\"horizontal\":\"left\",\"vertical\":\"center\",\"offsetX\":30,\"offsetY\":0,\"align\":\"slider\"},\"right\":{\"anim\":\"fade\",\"horizontal\":\"right\",\"vertical\":\"center\",\"offsetX\":30,\"offsetY\":0,\"align\":\"slider\"}},\"thumbs\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":\"2000\",\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778,\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":5,\"direction\":\"horizontal\",\"height\":50,\"width\":100,\"widthMin\":100,\"innerOuter\":\"inner\",\"offsetX\":0,\"offsetY\":20,\"space\":5,\"align\":\"slider\",\"padding\":5,\"wrapperColor\":\"transparent\",\"mhoffset\":0,\"mvoffset\":0},\"tabs\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":\"4000\",\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778,\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":5,\"direction\":\"horizontal\",\"height\":50,\"width\":100,\"widthMin\":100,\"innerOuter\":\"inner\",\"offsetX\":0,\"offsetY\":20,\"space\":5,\"align\":\"slider\",\"padding\":5,\"wrapperColor\":\"transparent\",\"mhoffset\":0,\"mvoffset\":0},\"bullets\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":\"3000\",\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"direction\":\"horizontal\",\"offsetX\":0,\"offsetY\":20,\"align\":\"slider\",\"space\":5,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778},\"scrubber\":{\"set\":false,\"preset\":\"default\",\"animSpeed\":\"1000ms\",\"on\":true,\"direction\":\"horizontal\",\"s\":1000,\"dIn\":1000,\"dOut\":1200,\"show\":true,\"space\":5,\"width\":100,\"widthMin\":100,\"height\":30,\"align\":\"slider\",\"anim\":\"fade\",\"innerOuter\":\"inner\",\"offsetX\":0,\"offsetY\":20,\"vertical\":\"bottom\",\"horizontal\":\"center\",\"wrapperColor\":\"transparent\",\"spanWrapper\":false,\"padding\":5,\"thumbScale\":100,\"handleScale\":100,\"hoverScale\":false,\"thumbnail\":false,\"handleProgress\":false,\"progressAlign\":\"left\",\"scale\":100,\"fade\":true,\"animScale\":false,\"translate\":0,\"spin\":false,\"handleArrows\":true,\"trackPattern\":\"dots\",\"minSize\":\"60%\",\"thumbOffset\":0,\"skew\":0,\"changeOnRelease\":false,\"style\":\"5000\",\"presets\":[]}},\"troubleshooting\":{\"alternateImageType\":\"off\",\"alternateURL\":\"\",\"jsNoConflict\":false,\"jsInBody\":false,\"outPutFilter\":\"none\",\"simplify_ie8_ios4\":false,\"ignoreHeightChanges\":false,\"ignoreHeightChangesUnderLimit\":0},\"parallax\":{\"set\":false,\"setDDD\":false,\"disableOnMobile\":false,\"levels\":[5,10,15,20,25,30,35,40,45,46,47,48,49,50,51,30],\"ddd\":{\"BGFreeze\":false,\"layerOverflow\":false,\"overflow\":false,\"shadow\":false,\"zCorrection\":65},\"mouse\":{\"speed\":0,\"bgSpeed\":0,\"layersSpeed\":0,\"origo\":\"slideCenter\",\"type\":\"scroll\",\"omulti\":1,\"smulti\":1,\"env\":\"single\",\"dir\":\"same\"}},\"modal\":{\"bodyclass\":\"\",\"horizontal\":\"center\",\"vertical\":\"middle\",\"cover\":true,\"allowPageScroll\":false,\"coverColor\":\"rgba(0,0,0,0.5)\",\"coverSpeed\":1000},\"scrolleffects\":{\"set\":false,\"setBlur\":false,\"setFade\":false,\"setGrayScale\":false,\"bg\":false,\"direction\":\"both\",\"layers\":false,\"maxBlur\":10,\"multiplicator\":\"1.3\",\"multiplicatorLayers\":\"1.3\",\"disableOnMobile\":false,\"parallaxLayers\":false,\"staticLayers\":false,\"staticParallaxLayers\":false,\"tilt\":30},\"scrolltimeline\":{\"set\":false,\"fixed\":false,\"fixedStart\":2000,\"fixedEnd\":4000,\"layers\":false,\"ease\":\"none\",\"speed\":500,\"pullcontent\":false},\"skins\":{\"colorsAtStart\":false,\"cid\":2,\"colors\":[{\"alias\":\"Highlight\",\"v\":\"#ff0000\"},{\"alias\":\"Headline Text\",\"v\":\"#ffffff\"},{\"alias\":\"Content Text\",\"v\":\"#00ffff\"}]},\"modalshortcode\":\"[rev_slider usage=\\\"modal\\\" alias=\\\"home-1\\\"][\\/rev_slider]\"}','{\"version\":\"6.7.20\"}',''),(2,'Home 2','home-2','{\"addOns\":[],\"version\":\"6.6.21\",\"shortcode\":\"[rev_slider alias=\\\"home-2\\\"][\\/rev_slider]\",\"type\":\"standard\",\"layouttype\":\"fullwidth\",\"sourcetype\":\"gallery\",\"googleFont\":[],\"id\":\"\",\"class\":\"\",\"wrapperclass\":\"\",\"source\":{\"gallery\":[],\"post\":{\"excerptLimit\":55,\"maxPosts\":30,\"fetchType\":\"cat_tag\",\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"post\",\"list\":\"\",\"sortDirection\":\"DESC\",\"subType\":\"post\"},\"woo\":{\"excerptLimit\":55,\"maxProducts\":30,\"featuredOnly\":false,\"inStockOnly\":false,\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"product\",\"sortDirection\":\"DESC\",\"regPriceFrom\":\"\",\"regPriceTo\":\"\",\"salePriceFrom\":\"\",\"salePriceTo\":\"\"},\"instagram\":{\"count\":\"\",\"hashTag\":\"\",\"transient\":1200,\"type\":\"user\",\"userId\":\"\"},\"facebook\":{\"album\":\"\",\"appId\":\"\",\"appSecret\":\"\",\"count\":\"\",\"pageURL\":\"\",\"transient\":1200,\"typeSource\":\"album\"},\"flickr\":{\"apiKey\":\"\",\"count\":\"\",\"galleryURL\":\"\",\"groupURL\":\"\",\"photoSet\":\"\",\"transient\":1200,\"type\":\"publicphotos\",\"userURL\":\"\"},\"twitter\":{\"accessSecret\":\"\",\"accessToken\":\"\",\"consumerKey\":\"\",\"consumerSecret\":\"\",\"count\":\"\",\"excludeReplies\":false,\"imageOnly\":false,\"includeRetweets\":false,\"transient\":1200,\"userId\":\"\"},\"vimeo\":{\"albumId\":\"\",\"channelName\":\"\",\"count\":\"\",\"transient\":1200,\"groupName\":\"\",\"typeSource\":\"user\",\"userName\":\"\"},\"youtube\":{\"api\":\"\",\"channelId\":\"\",\"count\":\"\",\"playList\":\"\",\"transient\":1200,\"typeSource\":\"channel\"}},\"def\":{\"intelligentInherit\":true,\"autoResponsive\":true,\"responsiveChilds\":true,\"responsiveOffset\":true,\"transition\":\"fade\",\"transitionDuration\":300,\"delay\":9000,\"background\":{\"fit\":\"cover\",\"fitX\":100,\"fitY\":100,\"position\":\"center center\",\"positionX\":0,\"positionY\":0,\"repeat\":\"no-repeat\",\"imageSourceType\":\"full\"},\"panZoom\":{\"set\":false,\"blurStart\":0,\"blurEnd\":0,\"duration\":10000,\"ease\":\"none\",\"fitEnd\":100,\"fitStart\":100,\"xEnd\":0,\"yEnd\":0,\"xStart\":0,\"yStart\":0,\"rotateStart\":0,\"rotateEnd\":0}},\"size\":{\"respectAspectRatio\":false,\"disableForceFullWidth\":false,\"custom\":{\"d\":true,\"n\":true,\"t\":true,\"m\":true},\"minHeightFullScreen\":\"\",\"minHeight\":\"\",\"maxWidth\":0,\"maxHeight\":0,\"fullScreenOffsetContainer\":\"\",\"fullScreenOffset\":\"\",\"width\":{\"d\":\"1230px\",\"n\":1024,\"t\":778,\"m\":480},\"height\":{\"d\":\"685px\",\"n\":\"685px\",\"t\":\"640px\",\"m\":\"640px\"},\"editorCache\":{\"d\":685,\"n\":685,\"t\":640,\"m\":640},\"overflow\":false,\"gridEQModule\":false,\"forceOverflow\":false,\"keepBPHeight\":true},\"codes\":{\"javascript\":\"\",\"javascript7\":\"\",\"css\":\"@media screen and (max-width: 1400px) {\\n\\t.tp-bullets.custom {\\n\\t\\tleft: auto !important;\\n\\t\\tright: 80px !important;\\n\\t}\\n}\"},\"carousel\":{\"borderRadius\":0,\"borderRadiusUnit\":\"px\",\"ease\":\"power3.inOut\",\"fadeOut\":true,\"scale\":false,\"horizontal\":\"center\",\"vertical\":\"center\",\"infinity\":false,\"maxItems\":3,\"maxRotation\":0,\"maxOpacity\":100,\"paddingTop\":0,\"paddingBottom\":0,\"rotation\":false,\"scaleDown\":50,\"space\":0,\"speed\":800,\"stretch\":false,\"varyFade\":false,\"varyRotate\":false,\"varyScale\":false,\"showAllLayers\":false},\"hero\":{\"activeSlide\":-1},\"layout\":{\"bg\":{\"color\":\"transparent\",\"padding\":0,\"dottedOverlay\":\"none\",\"shadow\":0,\"useImage\":false,\"image\":\"\",\"fit\":\"cover\",\"position\":\"center center\",\"repeat\":\"no-repeat\"},\"spinner\":{\"color\":\"#ffffff\",\"type\":\"0\"},\"position\":{\"marginTop\":0,\"marginBottom\":0,\"marginLeft\":0,\"marginRight\":0,\"align\":\"center\",\"fixedOnTop\":false,\"addClear\":false}},\"visibility\":{\"hideSelectedLayersUnderLimit\":0,\"hideAllLayersUnderLimit\":0,\"hideSliderUnderLimit\":0},\"general\":{\"slideshow\":{\"slideShow\":true,\"stopOnHover\":false,\"stopSlider\":false,\"stopAfterLoops\":0,\"stopAtSlide\":1,\"shuffle\":false,\"loopSingle\":false,\"viewPort\":false,\"viewPortStart\":\"wait\",\"viewPortArea\":{\"d\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"},\"n\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"},\"t\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"},\"m\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"}},\"presetSliderHeight\":false,\"initDelay\":0,\"waitForInit\":false},\"progressbar\":{\"set\":false,\"height\":5,\"position\":\"bottom\",\"color\":\"rgba(255,255,255,0.5)\"},\"firstSlide\":{\"set\":false,\"duration\":300,\"slotAmount\":7,\"type\":\"fade\",\"alternativeFirstSlideSet\":false,\"alternativeFirstSlide\":1},\"layerSelection\":false,\"lazyLoad\":\"none\",\"nextSlideOnFocus\":false,\"disableFocusListener\":false,\"disableOnMobile\":false,\"autoPlayVideoOnMobile\":true,\"disablePanZoomMobile\":false,\"useWPML\":false},\"nav\":{\"preview\":{\"width\":50,\"height\":100},\"swipe\":{\"set\":false,\"setOnDesktop\":false,\"blockDragVertical\":false,\"direction\":\"horizontal\",\"minTouch\":1,\"velocity\":75},\"keyboard\":{\"direction\":\"horizontal\",\"set\":false},\"mouse\":{\"set\":\"off\",\"reverse\":\"default\"},\"arrows\":{\"set\":false,\"rtl\":false,\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"style\":\"1000\",\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778,\"left\":{\"anim\":\"fade\",\"horizontal\":\"left\",\"vertical\":\"center\",\"offsetX\":30,\"offsetY\":0,\"align\":\"slider\"},\"right\":{\"anim\":\"fade\",\"horizontal\":\"right\",\"vertical\":\"center\",\"offsetX\":30,\"offsetY\":0,\"align\":\"slider\"}},\"thumbs\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":\"2000\",\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778,\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":5,\"direction\":\"horizontal\",\"height\":50,\"width\":100,\"widthMin\":100,\"innerOuter\":\"inner\",\"offsetX\":0,\"offsetY\":20,\"space\":5,\"align\":\"slider\",\"padding\":5,\"wrapperColor\":\"transparent\"},\"tabs\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":\"4000\",\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778,\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":5,\"direction\":\"horizontal\",\"height\":50,\"width\":100,\"widthMin\":100,\"innerOuter\":\"inner\",\"offsetX\":0,\"offsetY\":20,\"space\":5,\"align\":\"slider\",\"padding\":5,\"wrapperColor\":\"transparent\"},\"bullets\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":true,\"rtl\":false,\"style\":\"3006\",\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"horizontal\":\"left\",\"vertical\":\"center\",\"direction\":\"vertical\",\"offsetX\":\"50px\",\"offsetY\":\"0px\",\"align\":\"slider\",\"space\":\"8\",\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778}},\"troubleshooting\":{\"ignoreHeightChanges\":false,\"ignoreHeightChangesUnderLimit\":0,\"alternateImageType\":\"off\",\"alternateURL\":\"\",\"jsNoConflict\":false,\"jsInBody\":false,\"outPutFilter\":\"none\",\"simplify_ie8_ios4\":false},\"parallax\":{\"set\":true,\"setDDD\":false,\"disableOnMobile\":false,\"levels\":[5,10,15,20,25,30,35,40,45,46,47,48,49,50,51,30],\"ddd\":{\"BGFreeze\":false,\"layerOverflow\":false,\"overflow\":false,\"shadow\":false,\"zCorrection\":65},\"mouse\":{\"speed\":0,\"bgSpeed\":0,\"layersSpeed\":0,\"origo\":\"slideCenter\",\"type\":\"scroll\"}},\"modal\":{\"bodyclass\":\"\",\"horizontal\":\"center\",\"vertical\":\"middle\",\"cover\":true,\"coverColor\":\"rgba(0,0,0,0.5)\"},\"scrolleffects\":{\"set\":false,\"setBlur\":false,\"setFade\":false,\"setGrayScale\":false,\"bg\":false,\"direction\":\"both\",\"layers\":false,\"maxBlur\":10,\"multiplicator\":\"1.3\",\"multiplicatorLayers\":\"1.3\",\"disableOnMobile\":false,\"parallaxLayers\":false,\"staticLayers\":false,\"staticParallaxLayers\":false,\"tilt\":30},\"scrolltimeline\":{\"set\":false,\"fixed\":false,\"fixedStart\":2000,\"fixedEnd\":4000,\"layers\":false,\"ease\":\"none\",\"speed\":500},\"modalshortcode\":\"[rev_slider usage=\\\"modal\\\" alias=\\\"home-2\\\"][\\/rev_slider]\",\"imported\":true,\"uid\":false}','{\"version\":\"6.6.21\"}',''),(3,'Home 3','home-3','{\"addOns\":[],\"version\":\"6.6.10\",\"shortcode\":\"[rev_slider alias=\\\"home-3\\\"][\\/rev_slider]\",\"type\":\"standard\",\"layouttype\":\"fullwidth\",\"sourcetype\":\"gallery\",\"googleFont\":[],\"id\":\"\",\"class\":\"\",\"wrapperclass\":\"\",\"source\":{\"gallery\":[],\"post\":{\"excerptLimit\":55,\"maxPosts\":30,\"fetchType\":\"cat_tag\",\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"post\",\"list\":\"\",\"sortDirection\":\"DESC\",\"subType\":\"post\"},\"woo\":{\"excerptLimit\":55,\"maxProducts\":30,\"featuredOnly\":false,\"inStockOnly\":false,\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"product\",\"sortDirection\":\"DESC\",\"regPriceFrom\":\"\",\"regPriceTo\":\"\",\"salePriceFrom\":\"\",\"salePriceTo\":\"\"},\"instagram\":{\"count\":\"\",\"hashTag\":\"\",\"transient\":1200,\"type\":\"user\",\"userId\":\"\"},\"facebook\":{\"album\":\"\",\"appId\":\"\",\"appSecret\":\"\",\"count\":\"\",\"pageURL\":\"\",\"transient\":1200,\"typeSource\":\"album\"},\"flickr\":{\"apiKey\":\"\",\"count\":\"\",\"galleryURL\":\"\",\"groupURL\":\"\",\"photoSet\":\"\",\"transient\":1200,\"type\":\"publicphotos\",\"userURL\":\"\"},\"twitter\":{\"accessSecret\":\"\",\"accessToken\":\"\",\"consumerKey\":\"\",\"consumerSecret\":\"\",\"count\":\"\",\"excludeReplies\":false,\"imageOnly\":false,\"includeRetweets\":false,\"transient\":1200,\"userId\":\"\"},\"vimeo\":{\"albumId\":\"\",\"channelName\":\"\",\"count\":\"\",\"transient\":1200,\"groupName\":\"\",\"typeSource\":\"user\",\"userName\":\"\"},\"youtube\":{\"api\":\"\",\"channelId\":\"\",\"count\":\"\",\"playList\":\"\",\"transient\":1200,\"typeSource\":\"channel\"}},\"def\":{\"intelligentInherit\":true,\"autoResponsive\":true,\"responsiveChilds\":true,\"responsiveOffset\":true,\"transition\":\"fade\",\"transitionDuration\":300,\"delay\":9000,\"background\":{\"fit\":\"cover\",\"fitX\":100,\"fitY\":100,\"position\":\"center center\",\"positionX\":0,\"positionY\":0,\"repeat\":\"no-repeat\",\"imageSourceType\":\"full\"},\"panZoom\":{\"set\":false,\"blurStart\":0,\"blurEnd\":0,\"duration\":10000,\"ease\":\"none\",\"fitEnd\":100,\"fitStart\":100,\"xEnd\":0,\"yEnd\":0,\"xStart\":0,\"yStart\":0,\"rotateStart\":0,\"rotateEnd\":0}},\"size\":{\"respectAspectRatio\":false,\"disableForceFullWidth\":false,\"custom\":{\"d\":true,\"n\":true,\"t\":true,\"m\":true},\"minHeightFullScreen\":\"\",\"minHeight\":\"\",\"maxWidth\":0,\"maxHeight\":0,\"fullScreenOffsetContainer\":\"\",\"fullScreenOffset\":\"\",\"width\":{\"d\":\"1230px\",\"n\":1024,\"t\":778,\"m\":480},\"height\":{\"d\":\"880px\",\"n\":\"880px\",\"t\":\"640px\",\"m\":\"580px\"},\"editorCache\":{\"d\":880,\"n\":880,\"t\":640,\"m\":580},\"overflow\":false,\"gridEQModule\":false,\"forceOverflow\":false,\"keepBPHeight\":true},\"codes\":{\"css\":\"\",\"javascript\":\"\"},\"carousel\":{\"borderRadius\":0,\"borderRadiusUnit\":\"px\",\"ease\":\"power3.inOut\",\"fadeOut\":true,\"scale\":false,\"horizontal\":\"center\",\"vertical\":\"center\",\"infinity\":false,\"maxItems\":3,\"maxRotation\":0,\"maxOpacity\":100,\"paddingTop\":0,\"paddingBottom\":0,\"rotation\":false,\"scaleDown\":50,\"space\":0,\"speed\":800,\"stretch\":false,\"varyFade\":false,\"varyRotate\":false,\"varyScale\":false,\"showAllLayers\":false},\"hero\":{\"activeSlide\":-1},\"layout\":{\"bg\":{\"color\":\"transparent\",\"padding\":0,\"dottedOverlay\":\"none\",\"shadow\":0,\"useImage\":false,\"image\":\"\",\"fit\":\"cover\",\"position\":\"center center\",\"repeat\":\"no-repeat\"},\"spinner\":{\"color\":\"#ffffff\",\"type\":\"0\"},\"position\":{\"marginTop\":0,\"marginBottom\":0,\"marginLeft\":0,\"marginRight\":0,\"align\":\"center\",\"fixedOnTop\":false,\"addClear\":false}},\"visibility\":{\"hideSelectedLayersUnderLimit\":0,\"hideAllLayersUnderLimit\":0,\"hideSliderUnderLimit\":0},\"general\":{\"slideshow\":{\"slideShow\":true,\"stopOnHover\":false,\"stopSlider\":false,\"stopAfterLoops\":0,\"stopAtSlide\":1,\"shuffle\":false,\"loopSingle\":false,\"viewPort\":false,\"viewPortStart\":\"wait\",\"viewPortArea\":{\"d\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"},\"n\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"},\"t\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"},\"m\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"}},\"presetSliderHeight\":false,\"initDelay\":0,\"waitForInit\":false},\"progressbar\":{\"set\":false,\"height\":5,\"position\":\"bottom\",\"color\":\"rgba(255,255,255,0.5)\"},\"firstSlide\":{\"set\":false,\"duration\":300,\"slotAmount\":7,\"type\":\"fade\",\"alternativeFirstSlideSet\":false,\"alternativeFirstSlide\":1},\"layerSelection\":false,\"lazyLoad\":\"none\",\"nextSlideOnFocus\":false,\"disableFocusListener\":false,\"disableOnMobile\":false,\"autoPlayVideoOnMobile\":true,\"disablePanZoomMobile\":false,\"useWPML\":false},\"nav\":{\"preview\":{\"width\":50,\"height\":100},\"swipe\":{\"set\":false,\"setOnDesktop\":false,\"blockDragVertical\":false,\"direction\":\"horizontal\",\"minTouch\":1,\"velocity\":75},\"keyboard\":{\"direction\":\"horizontal\",\"set\":false},\"mouse\":{\"set\":\"off\",\"reverse\":\"default\"},\"arrows\":{\"set\":false,\"rtl\":false,\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"style\":\"1000\",\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778,\"left\":{\"anim\":\"fade\",\"horizontal\":\"left\",\"vertical\":\"center\",\"offsetX\":30,\"offsetY\":0,\"align\":\"slider\"},\"right\":{\"anim\":\"fade\",\"horizontal\":\"right\",\"vertical\":\"center\",\"offsetX\":30,\"offsetY\":0,\"align\":\"slider\"}},\"thumbs\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":\"2000\",\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778,\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":5,\"direction\":\"horizontal\",\"height\":50,\"width\":100,\"widthMin\":100,\"innerOuter\":\"inner\",\"offsetX\":0,\"offsetY\":20,\"space\":5,\"align\":\"slider\",\"padding\":5,\"wrapperColor\":\"transparent\"},\"tabs\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":\"4000\",\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778,\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":5,\"direction\":\"horizontal\",\"height\":50,\"width\":100,\"widthMin\":100,\"innerOuter\":\"inner\",\"offsetX\":0,\"offsetY\":20,\"space\":5,\"align\":\"slider\",\"padding\":5,\"wrapperColor\":\"transparent\"},\"bullets\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":true,\"rtl\":false,\"style\":\"3006\",\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"horizontal\":\"right\",\"vertical\":\"center\",\"direction\":\"vertical\",\"offsetX\":\"40px\",\"offsetY\":\"0px\",\"align\":\"slider\",\"space\":5,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778}},\"troubleshooting\":{\"ignoreHeightChanges\":false,\"ignoreHeightChangesUnderLimit\":0,\"alternateImageType\":\"off\",\"alternateURL\":\"\",\"jsNoConflict\":false,\"jsInBody\":false,\"outPutFilter\":\"none\",\"simplify_ie8_ios4\":false},\"parallax\":{\"set\":true,\"setDDD\":false,\"disableOnMobile\":false,\"levels\":[5,10,15,20,25,30,35,40,45,46,47,48,49,50,51,30],\"ddd\":{\"BGFreeze\":false,\"layerOverflow\":false,\"overflow\":false,\"shadow\":false,\"zCorrection\":65},\"mouse\":{\"speed\":0,\"bgSpeed\":0,\"layersSpeed\":0,\"origo\":\"slideCenter\",\"type\":\"scroll\"}},\"modal\":{\"bodyclass\":\"\",\"horizontal\":\"center\",\"vertical\":\"middle\",\"cover\":true,\"coverColor\":\"rgba(0,0,0,0.5)\"},\"scrolleffects\":{\"set\":false,\"setBlur\":false,\"setFade\":false,\"setGrayScale\":false,\"bg\":false,\"direction\":\"both\",\"layers\":false,\"maxBlur\":10,\"multiplicator\":\"1.3\",\"multiplicatorLayers\":\"1.3\",\"disableOnMobile\":false,\"parallaxLayers\":false,\"staticLayers\":false,\"staticParallaxLayers\":false,\"tilt\":30},\"scrolltimeline\":{\"set\":false,\"fixed\":false,\"fixedStart\":2000,\"fixedEnd\":4000,\"layers\":false,\"ease\":\"none\",\"speed\":500},\"modalshortcode\":\"[rev_slider usage=\\\"modal\\\" alias=\\\"home-3\\\"][\\/rev_slider]\",\"imported\":true,\"uid\":false}','{\"version\":\"6.6.21\"}','');
/*!40000 ALTER TABLE `wp_revslider_sliders` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_revslider_sliders7`
--

DROP TABLE IF EXISTS `wp_revslider_sliders7`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_revslider_sliders7` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `title` tinytext NOT NULL,
  `alias` tinytext DEFAULT NULL,
  `params` longtext NOT NULL,
  `settings` text DEFAULT NULL,
  `type` varchar(191) NOT NULL DEFAULT '',
  PRIMARY KEY (`id`),
  KEY `type_index` (`type`(8))
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_revslider_sliders7`
--

LOCK TABLES `wp_revslider_sliders7` WRITE;
/*!40000 ALTER TABLE `wp_revslider_sliders7` DISABLE KEYS */;
INSERT INTO `wp_revslider_sliders7` VALUES (1,'Home 1','home-1','{\"migrated\":\"sr6\",\"uSize\":[false,true,true,true,true],\"title\":\"Home 1\",\"alias\":\"home-1\",\"type\":\"standard\",\"fonts\":{\"Poppins\":{\"name\":\"Poppins\",\"normal\":{\"700\":true},\"subset\":[]},\"Roboto\":{\"name\":\"Roboto\",\"normal\":{\"400\":true},\"subset\":{\"latin\":true}}},\"vPort\":[\"100px\",\"100px\",\"100px\",\"100px\",\"100px\"],\"size\":{\"fullWidth\":false,\"fullHeightOffset\":\",\",\"contentFH\":true,\"width\":[1230,1230,1024,778,480],\"height\":[602,602,602,540,540],\"cachedHeight\":[602,602,602,540,540],\"keepBPHeight\":true,\"maxWidth\":0},\"carousel\":{\"type\":\"h\",\"align\":\"center\",\"maxV\":3,\"justify\":false,\"scale\":false,\"minS\":50,\"vScale\":false,\"oScale\":false,\"space\":0,\"rotation\":false,\"maxR\":0,\"varR\":false,\"opacity\":true,\"maxO\":100,\"varO\":false,\"spin\":\"off\",\"spinA\":0,\"snap\":true,\"infinity\":false,\"skewX\":0,\"skewY\":0,\"ease\":\"power3.inOut\",\"dur\":800,\"overshoot\":false,\"stretch\":false,\"showAllLayers\":false,\"jMWidth\":false,\"bR\":0,\"bRU\":\"px\",\"pNV\":\"50px\",\"pT\":0,\"pB\":0},\"pLoader\":{\"type\":\"0\"},\"general\":{\"perspectiveType\":\"local\"},\"shdw\":0,\"bg\":{\"color\":{\"orig\":\"transparent\",\"type\":\"solid\",\"string\":\"transparent\"}},\"nav\":{\"m\":{\"cd\":1000},\"p\":{\"w\":50,\"h\":100},\"arrows\":{\"set\":true,\"def\":{\"bg-color\":{\"title\":\"BG-Color\",\"type\":\"color\",\"data\":\"rgba(0,0,0,0.5)\"},\"bg-size\":{\"title\":\"BG-Size\",\"type\":\"custom\",\"data\":\"40\"},\"arrow-color\":{\"title\":\"Arrow-Color\",\"type\":\"color\",\"data\":\"#ffffff\"},\"arrow-size\":{\"title\":\"Arrow-Size\",\"type\":\"custom\",\"data\":\"20\"},\"hover-bg-color\":{\"title\":\"Hover-BG-Color\",\"type\":\"color\",\"data\":\"#000000\"},\"left-icon\":{\"title\":\"Left-Icon\",\"type\":\"icon\",\"data\":\"\\\\e82c\"},\"right-icon\":{\"title\":\"Right-Icon\",\"type\":\"icon\",\"data\":\"\\\\e82d\"}},\"cst\":{\"bg-color\":\"rgba(0,0,0,0.5)\",\"bg-color-def\":false,\"bg-size\":\"40\",\"bg-size-def\":false,\"arrow-color\":\"#ffffff\",\"arrow-color-def\":false,\"arrow-size\":\"20\",\"arrow-size-def\":false,\"hover-bg-color\":\"#000000\",\"hover-bg-color-def\":false,\"left-icon\":\"\\\\e82c\",\"left-icon-def\":false,\"right-icon\":\"\\\\e82d\",\"right-icon-def\":false},\"key\":\"hesperiden\",\"t\":\"1000\",\"m\":\"hslide\",\"css\":\".hesperiden.sr7-arrows {\\n\\tcursor:pointer;\\n\\tbackground:##bg-color##;\\n\\twidth:##bg-size##px;\\n\\theight:##bg-size##px;\\n\\tposition:absolute;\\n\\tdisplay:block;\\n\\tz-index:1000;\\n    border-radius: 50%;\\n}\\n.hesperiden.sr7-arrows.sr7-touchhover {\\n\\tbackground:##hover-bg-color##;\\n}\\n.hesperiden.sr7-arrows:before {\\n\\tfont-family: \'revicons\';\\n\\tfont-size:##arrow-size##px;\\n\\tcolor:##arrow-color##;\\n\\tdisplay:block;\\n\\tline-height: ##bg-size##px;\\n\\ttext-align: center;\\n}\\n.hesperiden.sr7-arrows.sr7-leftarrow:before {\\n\\tcontent: \'##left-icon##\';\\n    margin-left:-3px;\\n}\\n.hesperiden.sr7-arrows.sr7-rightarrow:before {\\n\\tcontent: \'##right-icon##\';\\n    margin-right:-3px;\\n}\",\"html\":\"\",\"ps\":\"default\",\"on\":true,\"s\":1000,\"dIn\":[\"#a\",1000,\"#a\",\"#a\",\"#a\"],\"dOut\":[\"#a\",200,\"#a\",\"#a\",1200],\"show\":[true,true,true,true,true],\"l\":{\"a\":\"slider\",\"anim\":\"fade\",\"x\":[\"#a\",30,\"#a\",\"#a\",\"#a\"],\"y\":[\"#a\",0,\"#a\",\"#a\",\"#a\"],\"v\":[\"#a\",\"center\",\"#a\",\"#a\",\"#a\"],\"h\":[\"#a\",\"left\",\"#a\",\"#a\",\"#a\"]},\"r\":{\"a\":\"slider\",\"anim\":\"fade\",\"x\":[\"#a\",30,\"#a\",\"#a\",\"#a\"],\"y\":[\"#a\",0,\"#a\",\"#a\",\"#a\"],\"v\":[\"#a\",\"center\",\"#a\",\"#a\",\"#a\"],\"h\":[\"#a\",\"right\",\"#a\",\"#a\",\"#a\"]}}},\"thumb\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/DSC00842-2.jpg\",\"aU\":[],\"imgs\":[{\"lib_id\":3177,\"lib\":\"medialibrary\",\"src\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/DSC00842-2.jpg\"},{\"lib_id\":3175,\"lib\":\"medialibrary\",\"src\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/DSC00846.jpg\"},{\"lib_id\":3176,\"lib\":\"medialibrary\",\"src\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/DSC00833-2.jpg\"},{\"lib_id\":3178,\"lib\":\"medialibrary\",\"src\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/DSC00817-3.jpg\"},{\"lib_id\":3174,\"lib\":\"medialibrary\",\"src\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/20250222_154721.jpg\"},{\"lib_id\":2589,\"lib\":\"medialibrary\",\"src\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/Finished-CNC-milled-parts-showcasing-the-precision-and-versatility-of-the-process.png\"},{\"lib_id\":2590,\"lib\":\"medialibrary\",\"src\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363746762_6241ac4c6625581b5db9b24a1ee05f68.jpg\"}]}','{\"version\":\"6.7.20\"}',''),(2,'Home 2','home-2','{\"migrated\":\"sr6\",\"uSize\":[false,true,true,true,true],\"title\":\"Home 2\",\"alias\":\"home-2\",\"type\":\"standard\",\"fonts\":{\"Poppins\":{\"name\":\"Poppins\",\"normal\":{\"400\":true,\"500\":true,\"700\":true},\"subset\":{\"latin\":true}},\"Roboto\":{\"name\":\"Roboto\",\"normal\":{\"400\":true},\"subset\":{\"latin\":true}}},\"vPort\":[\"100px\",\"100px\",\"100px\",\"100px\",\"100px\"],\"size\":{\"fullHeightOffset\":\",\",\"width\":[\"1230px\",\"1230px\",1024,778,480],\"height\":[\"685px\",\"685px\",\"685px\",\"640px\",\"640px\"],\"cachedHeight\":[685,685,685,640,640],\"keepBPHeight\":true,\"maxWidth\":0},\"codes\":{\"css\":\"@media screen and (max-width: 1400px) {\\n\\t.tp-bullets.custom {\\n\\t\\tleft: auto !important;\\n\\t\\tright: 80px !important;\\n\\t}\\n}\"},\"carousel\":{\"type\":\"h\",\"align\":\"center\",\"maxV\":3,\"justify\":false,\"scale\":false,\"minS\":50,\"vScale\":false,\"oScale\":false,\"space\":0,\"rotation\":false,\"maxR\":0,\"varR\":false,\"opacity\":true,\"maxO\":100,\"varO\":false,\"spin\":\"off\",\"spinA\":0,\"snap\":true,\"infinity\":false,\"skewX\":0,\"skewY\":0,\"ease\":\"power3.inOut\",\"dur\":800,\"overshoot\":false,\"stretch\":false,\"showAllLayers\":false,\"jMWidth\":false,\"bR\":0,\"bRU\":\"px\",\"pNV\":\"50px\",\"pT\":0,\"pB\":0},\"pLoader\":{\"type\":\"0\"},\"general\":{\"perspectiveType\":\"local\"},\"shdw\":0,\"bg\":{\"color\":{\"orig\":\"transparent\",\"type\":\"solid\",\"string\":\"transparent\"}},\"mod\":{\"use\":true,\"om\":null,\"sm\":null},\"nav\":{\"p\":{\"w\":50,\"h\":100},\"bullets\":{\"set\":true,\"def\":[],\"cst\":[],\"key\":\"custom\",\"t\":\"3006\",\"css\":\".custom.sr7-bullets {\\n}\\n.custom.sr7-bullets:before {\\n\\tcontent:\' \';\\n\\tposition:absolute;\\n\\twidth:100%;\\n\\theight:100%;\\n\\tbackground:transparent;\\n\\tpadding:10px;\\n\\tmargin-left:-10px;margin-top:-10px;\\n\\tbox-sizing:content-box;\\n}\\n.custom .sr7-bullet {\\n\\twidth:12px;\\n\\theight:12px;\\n\\tposition:absolute;\\n\\tbackground:#aaa;\\n    background:rgba(125,125,125,0.5);\\n\\tcursor: pointer;\\n\\tbox-sizing:content-box;\\n}\\n.custom .sr7-bullet.sr7-touchhover,\\n.custom .sr7-bullet.selected {\\n\\tbackground:rgb(125,125,125);\\n}\\n.custom .sr7-bullimg {\\n}\\n.custom .sr7-bullet-title {\\n}\\n\",\"html\":\"\",\"on\":true,\"d\":[\"#a\",\"vertical\",\"#a\",\"#a\",\"#a\"],\"ps\":\"default\",\"s\":1000,\"dIn\":[\"#a\",1000,\"#a\",\"#a\",\"#a\"],\"dOut\":[\"#a\",200,\"#a\",\"#a\",1200],\"show\":[true,true,true,true,true],\"g\":8,\"a\":\"slider\",\"anim\":\"fade\",\"x\":[\"#a\",\"50px\",\"#a\",\"#a\",\"#a\"],\"y\":[\"#a\",\"0px\",\"#a\",\"#a\",\"#a\"],\"v\":[\"#a\",\"center\",\"#a\",\"#a\",\"#a\"],\"h\":[\"#a\",\"left\",\"#a\",\"#a\",\"#a\"]}},\"thumb\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-slider-04.jpg\",\"aU\":[],\"imgs\":[{\"lib_id\":1006,\"lib\":\"\",\"src\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-slider-04.jpg\"},{\"lib_id\":1009,\"lib\":\"\",\"src\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-slider-05.jpg\"},{\"lib_id\":1018,\"lib\":\"\",\"src\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-slider-06.jpg\"}]}','{\"version\":\"6.7.20\"}',''),(3,'Home 3','home-3','{\"migrated\":\"sr6\",\"uSize\":[false,true,true,true,true],\"title\":\"Home 3\",\"alias\":\"home-3\",\"type\":\"standard\",\"fonts\":{\"Poppins\":{\"name\":\"Poppins\",\"normal\":{\"700\":true},\"subset\":{\"latin\":true}},\"Roboto\":{\"name\":\"Roboto\",\"normal\":{\"400\":true},\"subset\":{\"latin\":true}}},\"vPort\":[\"100px\",\"100px\",\"100px\",\"100px\",\"100px\"],\"size\":{\"fullHeightOffset\":\",\",\"width\":[\"1230px\",\"1230px\",1024,778,480],\"height\":[\"880px\",\"880px\",\"880px\",\"640px\",\"580px\"],\"cachedHeight\":[880,880,880,640,580],\"keepBPHeight\":true,\"maxWidth\":0},\"carousel\":{\"type\":\"h\",\"align\":\"center\",\"maxV\":3,\"justify\":false,\"scale\":false,\"minS\":50,\"vScale\":false,\"oScale\":false,\"space\":0,\"rotation\":false,\"maxR\":0,\"varR\":false,\"opacity\":true,\"maxO\":100,\"varO\":false,\"spin\":\"off\",\"spinA\":0,\"snap\":true,\"infinity\":false,\"skewX\":0,\"skewY\":0,\"ease\":\"power3.inOut\",\"dur\":800,\"overshoot\":false,\"stretch\":false,\"showAllLayers\":false,\"jMWidth\":false,\"bR\":0,\"bRU\":\"px\",\"pNV\":\"50px\",\"pT\":0,\"pB\":0},\"pLoader\":{\"type\":\"0\"},\"general\":{\"perspectiveType\":\"local\"},\"shdw\":0,\"bg\":{\"color\":{\"orig\":\"transparent\",\"type\":\"solid\",\"string\":\"transparent\"}},\"mod\":{\"use\":true,\"om\":null,\"sm\":null},\"nav\":{\"p\":{\"w\":50,\"h\":100},\"bullets\":{\"set\":true,\"def\":[],\"cst\":[],\"key\":\"custom\",\"t\":\"3006\",\"css\":\".custom.sr7-bullets {\\n}\\n.custom.sr7-bullets:before {\\n\\tcontent:\' \';\\n\\tposition:absolute;\\n\\twidth:100%;\\n\\theight:100%;\\n\\tbackground:transparent;\\n\\tpadding:10px;\\n\\tmargin-left:-10px;margin-top:-10px;\\n\\tbox-sizing:content-box;\\n}\\n.custom .sr7-bullet {\\n\\twidth:12px;\\n\\theight:12px;\\n\\tposition:absolute;\\n\\tbackground:#aaa;\\n    background:rgba(125,125,125,0.5);\\n\\tcursor: pointer;\\n\\tbox-sizing:content-box;\\n}\\n.custom .sr7-bullet.sr7-touchhover,\\n.custom .sr7-bullet.selected {\\n\\tbackground:rgb(125,125,125);\\n}\\n.custom .sr7-bullimg {\\n}\\n.custom .sr7-bullet-title {\\n}\\n\",\"html\":\"\",\"on\":true,\"d\":[\"#a\",\"vertical\",\"#a\",\"#a\",\"#a\"],\"ps\":\"default\",\"s\":1000,\"dIn\":[\"#a\",1000,\"#a\",\"#a\",\"#a\"],\"dOut\":[\"#a\",200,\"#a\",\"#a\",1200],\"show\":[true,true,true,true,true],\"g\":5,\"a\":\"slider\",\"anim\":\"fade\",\"x\":[\"#a\",\"40px\",\"#a\",\"#a\",\"#a\"],\"y\":[\"#a\",\"0px\",\"#a\",\"#a\",\"#a\"],\"v\":[\"#a\",\"center\",\"#a\",\"#a\",\"#a\"],\"h\":[\"#a\",\"right\",\"#a\",\"#a\",\"#a\"]}},\"thumb\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-slider-07.jpg\",\"aU\":[],\"imgs\":[{\"lib_id\":1255,\"lib\":\"\",\"src\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-slider-07.jpg\"},{\"lib_id\":1257,\"lib\":\"\",\"src\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-slider-08.jpg\"},{\"lib_id\":1258,\"lib\":\"\",\"src\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-slider-09.jpg\"}]}','{\"version\":\"6.7.20\"}','');
/*!40000 ALTER TABLE `wp_revslider_sliders7` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_revslider_slides`
--

DROP TABLE IF EXISTS `wp_revslider_slides`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_revslider_slides` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `slider_id` int(9) NOT NULL,
  `slide_order` int(11) NOT NULL,
  `params` longtext NOT NULL,
  `layers` longtext NOT NULL,
  `settings` text NOT NULL DEFAULT '',
  PRIMARY KEY (`id`),
  KEY `slider_id_index` (`slider_id`)
) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_revslider_slides`
--

LOCK TABLES `wp_revslider_slides` WRITE;
/*!40000 ALTER TABLE `wp_revslider_slides` DISABLE KEYS */;
INSERT INTO `wp_revslider_slides` VALUES (1,1,1,'{\"bg\":{\"type\":\"image\",\"position\":\"center bottom\",\"image\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/DSC00842-2.jpg\",\"imageId\":3177,\"imageLib\":\"medialibrary\",\"imageWidth\":6000,\"imageHeight\":4000,\"imageRatio\":1.5},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"slideChange\":{\"in\":{\"o\":0},\"out\":{\"a\":false},\"title\":\"*opacity* Fade In\",\"main\":\"basic\",\"group\":\"fade\",\"preset\":\"fade\"},\"nav\":{\"arrows\":{\"presets\":{\"bg-color\":\"rgba(0,0,0,0.5)\",\"bg-color-def\":false,\"bg-size\":\"40\",\"bg-size-def\":false,\"arrow-color\":\"#ffffff\",\"arrow-color-def\":false,\"arrow-size\":\"20\",\"arrow-size-def\":false,\"hover-bg-color\":\"#000000\",\"hover-bg-color-def\":false,\"left-icon\":\"\\\\e82c\",\"left-icon-def\":false,\"right-icon\":\"\\\\e82d\",\"right-icon-def\":false}}}}','{\"0\":{\"text\":\"#1 Commitment to product quality for customers.\",\"alias\":\"Text-0\",\"uid\":0,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"629px\",\"e\":true},\"n\":{\"v\":\"629px\"},\"t\":{\"v\":\"629px\"},\"m\":{\"v\":\"629px\"}},\"height\":{\"d\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-11px\",\"e\":true},\"n\":{\"v\":\"-11px\"},\"t\":{\"v\":\"-11px\"},\"m\":{\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"position\":\"absolute\",\"zIndex\":8},\"attributes\":{\"classes\":\"title-box-shadow\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"1\",\"groupOrder\":8},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":\"50\"},\"n\":{\"v\":\"50\"},\"t\":{\"v\":\"50\"},\"m\":{\"v\":\"50\"}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"ease\":\"circ.out\",\"speed\":\"800\",\"start\":800,\"startRelative\":800,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":800}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7400,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":800},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false,\"hoverFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Poppins\",\"fontSize\":{\"d\":{\"v\":\"48px\",\"e\":true},\"n\":{\"v\":\"48px\"},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"24px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"lineHeight\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"60px\"},\"t\":{\"v\":\"38px\",\"e\":true},\"m\":{\"v\":\"30px\",\"e\":true}},\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"type\":\"text\"},\"1\":{\"text\":\"\",\"alias\":\"Group-1\",\"uid\":1,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"631px\",\"e\":true},\"n\":{\"v\":\"631px\"},\"t\":{\"v\":\"631px\"},\"m\":{\"v\":\"631px\"}},\"height\":{\"d\":{\"v\":\"268px\",\"e\":true},\"n\":{\"v\":\"268px\"},\"t\":{\"v\":\"200px\",\"e\":true},\"m\":{\"v\":\"190px\",\"e\":true}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667},\"n\":{\"v\":1.6666666666666667},\"t\":{\"v\":1.6666666666666667},\"m\":{\"v\":1.6666666666666667}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"37px\",\"e\":true},\"n\":{\"v\":\"37px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"y\":{\"d\":{\"v\":\"118px\",\"e\":true},\"n\":{\"v\":\"118px\"},\"t\":{\"v\":\"118px\"},\"m\":{\"v\":\"130px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"position\":\"absolute\",\"zIndex\":10},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false},\"group\":{\"groupOrder\":10},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"opacity\":1},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":8700,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false,\"hoverFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"type\":\"group\"},\"2\":{\"text\":\"<span class=\\\"btn btn-preset3\\\"><i class=\\\"fac fac-envelope space-right\\\"><\\/i>Contact today<\\/span>\",\"alias\":\"Text-2\",\"uid\":2,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"position\":\"absolute\",\"zIndex\":9},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"1\",\"groupOrder\":9},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":50},\"n\":{\"v\":50},\"t\":{\"v\":50},\"m\":{\"v\":50}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"ease\":\"circ.out\",\"speed\":\"800\",\"start\":1000,\"startRelative\":1000,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":800}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7200,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":1000},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false,\"hoverFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"actions\":{\"action\":[{\"action\":\"link\",\"tooltip_event\":\"click\",\"link_open_in\":\"_self\",\"link_follow\":\"nofollow\",\"link_type\":\"a\",\"image_link\":\"https:\\/\\/fe2tech.com\\/contact\"}]},\"type\":\"button\"},\"4\":{\"text\":\"\",\"alias\":\"Shape-4\",\"uid\":4,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"3000px\",\"e\":true},\"n\":{\"v\":\"3000px\",\"e\":true},\"t\":{\"v\":\"3000px\"},\"m\":{\"v\":\"3000px\"}},\"height\":{\"d\":{\"v\":\"126px\",\"e\":true},\"n\":{\"v\":\"126px\",\"e\":true},\"t\":{\"v\":\"126px\"},\"m\":{\"v\":\"127px\",\"e\":true}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667},\"n\":{\"v\":1.6666666666666667},\"t\":{\"v\":1.6666666666666667},\"m\":{\"v\":1.6666666666666667}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"-45px\",\"e\":true},\"n\":{\"v\":\"-45px\",\"e\":true},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-1px\",\"e\":true},\"n\":{\"v\":\"-1px\",\"e\":true},\"t\":{\"v\":\"-1px\"},\"m\":{\"v\":\"-1px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"position\":\"absolute\",\"zIndex\":11},\"attributes\":{\"classes\":\"shap-slider-bottom\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":11},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"opacity\":1},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":8700,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false,\"hoverFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"backgroundColor\":\"#ffffff\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"visibility\":{\"m\":false},\"type\":\"shape\"},\"5\":{\"text\":\"<div class=\\\"ct-slider-nav\\\">\\n\\t<span class=\\\"slider-nav-left\\\"><i class=\\\"fac fac-angle-left\\\"><\\/i><\\/span>\\n\\t<span class=\\\"slider-nav-right\\\"><i class=\\\"fac fac-angle-right\\\"><\\/i><\\/span>\\n<\\/div>\",\"alias\":\"Text-5\",\"uid\":5,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"118px\",\"e\":true},\"n\":{\"v\":\"118px\"},\"t\":{\"v\":\"118px\"},\"m\":{\"v\":\"118px\"}},\"height\":{\"d\":{\"v\":\"53px\",\"e\":true},\"n\":{\"v\":\"53px\"},\"t\":{\"v\":\"53px\"},\"m\":{\"v\":\"53px\"}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"30px\"},\"m\":{\"v\":\"30px\"}},\"y\":{\"d\":{\"v\":\"101px\",\"e\":true},\"n\":{\"v\":\"101px\"},\"t\":{\"v\":\"101px\"},\"m\":{\"v\":\"101px\"}},\"horizontal\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"right\"},\"t\":{\"v\":\"right\"},\"m\":{\"v\":\"right\"}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"position\":\"absolute\",\"zIndex\":12},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":12},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":50},\"n\":{\"v\":50},\"t\":{\"v\":50},\"m\":{\"v\":50}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"speed\":1000,\"start\":800,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7500,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":800},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false,\"hoverFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"type\":\"text\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7,\"position\":\"absolute\"},\"version\":\"6.6.21\",\"text\":\"\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6,\"position\":\"absolute\"},\"version\":\"6.6.21\",\"text\":\"\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5,\"position\":\"absolute\"},\"version\":\"6.6.21\",\"text\":\"\"}}','{\"version\":\"6.7.20\"}'),(2,1,2,'{\"bg\":{\"type\":\"image\",\"position\":\"center bottom\",\"image\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/DSC00846.jpg\",\"imageId\":3175,\"imageLib\":\"medialibrary\",\"imageWidth\":6000,\"imageHeight\":4000,\"imageRatio\":1.5},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"slideChange\":{\"in\":{\"o\":0},\"out\":{\"a\":false},\"title\":\"*opacity* Fade In\",\"main\":\"basic\",\"group\":\"fade\",\"preset\":\"fade\"},\"nav\":{\"arrows\":{\"presets\":{\"bg-color\":\"rgba(0,0,0,0.5)\",\"bg-color-def\":false,\"bg-size\":\"40\",\"bg-size-def\":false,\"arrow-color\":\"#ffffff\",\"arrow-color-def\":false,\"arrow-size\":\"20\",\"arrow-size-def\":false,\"hover-bg-color\":\"#000000\",\"hover-bg-color-def\":false,\"left-icon\":\"\\\\e82c\",\"left-icon-def\":false,\"right-icon\":\"\\\\e82d\",\"right-icon-def\":false}}}}','{\"0\":{\"text\":\"#2 Meeting the fastest delivery timelines\",\"alias\":\"Text-0\",\"uid\":0,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"557px\",\"e\":true},\"n\":{\"v\":\"557px\"},\"t\":{\"v\":\"557px\"},\"m\":{\"v\":\"557px\"}},\"height\":{\"d\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-12px\",\"e\":true},\"n\":{\"v\":\"-12px\"},\"t\":{\"v\":\"-12px\"},\"m\":{\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"position\":\"absolute\",\"zIndex\":8},\"attributes\":{\"classes\":\"title-box-shadow\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"1\",\"groupOrder\":8},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":\"50\"},\"n\":{\"v\":\"50\"},\"t\":{\"v\":\"50\"},\"m\":{\"v\":\"50\"}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"ease\":\"circ.out\",\"speed\":\"800\",\"start\":800,\"startRelative\":800,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":800}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7400,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":800},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false,\"hoverFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Poppins\",\"fontSize\":{\"d\":{\"v\":\"48px\",\"e\":true},\"n\":{\"v\":\"48px\"},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"24px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"lineHeight\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"60px\"},\"t\":{\"v\":\"38px\",\"e\":true},\"m\":{\"v\":\"30px\",\"e\":true}},\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"type\":\"text\"},\"1\":{\"text\":\"\",\"alias\":\"Group-1\",\"uid\":1,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"558px\",\"e\":true},\"n\":{\"v\":\"558px\"},\"t\":{\"v\":\"558px\"},\"m\":{\"v\":\"558px\"}},\"height\":{\"d\":{\"v\":\"268px\",\"e\":true},\"n\":{\"v\":\"268px\"},\"t\":{\"v\":\"200px\",\"e\":true},\"m\":{\"v\":\"190px\",\"e\":true}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667},\"n\":{\"v\":1.6666666666666667},\"t\":{\"v\":1.6666666666666667},\"m\":{\"v\":1.6666666666666667}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"y\":{\"d\":{\"v\":\"120px\",\"e\":true},\"n\":{\"v\":\"120px\"},\"t\":{\"v\":\"120px\"},\"m\":{\"v\":\"130px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"position\":\"absolute\",\"zIndex\":10},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false},\"group\":{\"groupOrder\":10},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"opacity\":1},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":8700,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false,\"hoverFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"type\":\"group\"},\"2\":{\"text\":\"<span class=\\\"btn btn-preset3\\\"><i class=\\\"fac fac-envelope space-right\\\"><\\/i>Contact today<\\/span>\",\"alias\":\"Text-2\",\"uid\":2,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"position\":\"absolute\",\"zIndex\":9},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"1\",\"groupOrder\":9},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":50},\"n\":{\"v\":50},\"t\":{\"v\":50},\"m\":{\"v\":50}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"ease\":\"circ.out\",\"speed\":\"800\",\"start\":1000,\"startRelative\":1000,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":800}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7200,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":1000},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false,\"hoverFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"actions\":{\"action\":[{\"action\":\"link\",\"tooltip_event\":\"click\",\"link_open_in\":\"_self\",\"link_follow\":\"nofollow\",\"link_type\":\"a\",\"image_link\":\"https:\\/\\/fe2tech.com\\/contact\"}]},\"type\":\"text\"},\"4\":{\"text\":\"\",\"alias\":\"Shape-4\",\"uid\":4,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"3000px\",\"e\":true},\"n\":{\"v\":\"3000px\",\"e\":true},\"t\":{\"v\":\"3000px\"},\"m\":{\"v\":\"3000px\"}},\"height\":{\"d\":{\"v\":\"126px\",\"e\":true},\"n\":{\"v\":\"126px\",\"e\":true},\"t\":{\"v\":\"126px\"},\"m\":{\"v\":\"127px\",\"e\":true}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667},\"n\":{\"v\":1.6666666666666667},\"t\":{\"v\":1.6666666666666667},\"m\":{\"v\":1.6666666666666667}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"-45px\",\"e\":true},\"n\":{\"v\":\"-45px\",\"e\":true},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-1px\",\"e\":true},\"n\":{\"v\":\"-1px\",\"e\":true},\"t\":{\"v\":\"-1px\"},\"m\":{\"v\":\"-1px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"position\":\"absolute\",\"zIndex\":11},\"attributes\":{\"classes\":\"shap-slider-bottom\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":11},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"opacity\":1},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":8700,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false,\"hoverFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"backgroundColor\":\"#ffffff\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"visibility\":{\"m\":false},\"type\":\"shape\"},\"5\":{\"text\":\"<div class=\\\"ct-slider-nav\\\">\\n\\t<span class=\\\"slider-nav-left\\\"><i class=\\\"fac fac-angle-left\\\"><\\/i><\\/span>\\n\\t<span class=\\\"slider-nav-right\\\"><i class=\\\"fac fac-angle-right\\\"><\\/i><\\/span>\\n<\\/div>\",\"alias\":\"Text-5\",\"uid\":5,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"118px\",\"e\":true},\"n\":{\"v\":\"118px\"},\"t\":{\"v\":\"118px\"},\"m\":{\"v\":\"118px\"}},\"height\":{\"d\":{\"v\":\"53px\",\"e\":true},\"n\":{\"v\":\"53px\"},\"t\":{\"v\":\"53px\"},\"m\":{\"v\":\"53px\"}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"30px\"},\"m\":{\"v\":\"30px\"}},\"y\":{\"d\":{\"v\":\"101px\",\"e\":true},\"n\":{\"v\":\"101px\"},\"t\":{\"v\":\"101px\"},\"m\":{\"v\":\"101px\"}},\"horizontal\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"right\"},\"t\":{\"v\":\"right\"},\"m\":{\"v\":\"right\"}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"position\":\"absolute\",\"zIndex\":12},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":12},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":50},\"n\":{\"v\":50},\"t\":{\"v\":50},\"m\":{\"v\":50}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"speed\":\"800\",\"start\":1000,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":800}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7700,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":1000},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false,\"hoverFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"type\":\"text\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7,\"position\":\"absolute\"},\"version\":\"6.6.21\",\"text\":\"\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6,\"position\":\"absolute\"},\"version\":\"6.6.21\",\"text\":\"\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5,\"position\":\"absolute\"},\"version\":\"6.6.21\",\"text\":\"\"}}','{\"version\":\"6.7.20\"}'),(3,1,3,'{\"bg\":{\"type\":\"image\",\"image\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/DSC00833-2.jpg\",\"imageId\":3176,\"imageLib\":\"medialibrary\",\"imageWidth\":4192,\"imageHeight\":2795,\"imageRatio\":1.4998211091234348},\"thumb\":{\"customThumbSrc\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/mechanical-metal-gear-technology-banner-background_1909838.jpg\",\"customThumbSrcId\":1973,\"customAdminThumbSrc\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/mechanical-metal-gear-technology-banner-background_1909838.jpg\",\"customAdminThumbSrcId\":1973},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"slideChange\":{\"in\":{\"o\":0},\"out\":{\"a\":false},\"title\":\"*opacity* Fade In\",\"main\":\"basic\",\"group\":\"fade\",\"preset\":\"fade\"},\"nav\":{\"arrows\":{\"presets\":{\"bg-color\":\"rgba(0,0,0,0.5)\",\"bg-color-def\":false,\"bg-size\":\"40\",\"bg-size-def\":false,\"arrow-color\":\"#ffffff\",\"arrow-color-def\":false,\"arrow-size\":\"20\",\"arrow-size-def\":false,\"hover-bg-color\":\"#000000\",\"hover-bg-color-def\":false,\"left-icon\":\"\\\\e82c\",\"left-icon-def\":false,\"right-icon\":\"\\\\e82d\",\"right-icon-def\":false}}}}','{\"0\":{\"text\":\"#3 Improving mass production\",\"alias\":\"Text-0\",\"uid\":0,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-12px\",\"e\":true},\"n\":{\"v\":\"-12px\"},\"t\":{\"v\":\"-12px\"},\"m\":{\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"position\":\"absolute\",\"zIndex\":8},\"attributes\":{\"classes\":\"title-box-shadow\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"1\",\"groupOrder\":8},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":\"50\"},\"n\":{\"v\":\"50\"},\"t\":{\"v\":\"50\"},\"m\":{\"v\":\"50\"}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"ease\":\"circ.out\",\"speed\":\"800\",\"start\":800,\"startRelative\":800,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":800}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7400,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":800},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false,\"hoverFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Poppins\",\"fontSize\":{\"d\":{\"v\":\"48px\",\"e\":true},\"n\":{\"v\":\"48px\"},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"24px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"lineHeight\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"60px\"},\"t\":{\"v\":\"38px\",\"e\":true},\"m\":{\"v\":\"30px\",\"e\":true}},\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"type\":\"text\"},\"1\":{\"text\":\"\",\"alias\":\"Group-1\",\"uid\":1,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"520px\",\"e\":true},\"n\":{\"v\":\"520px\"},\"t\":{\"v\":\"520px\"},\"m\":{\"v\":\"520px\"}},\"height\":{\"d\":{\"v\":\"268px\",\"e\":true},\"n\":{\"v\":\"268px\"},\"t\":{\"v\":\"200px\",\"e\":true},\"m\":{\"v\":\"190px\",\"e\":true}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667},\"n\":{\"v\":1.6666666666666667},\"t\":{\"v\":1.6666666666666667},\"m\":{\"v\":1.6666666666666667}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"y\":{\"d\":{\"v\":\"120px\",\"e\":true},\"n\":{\"v\":\"120px\"},\"t\":{\"v\":\"120px\"},\"m\":{\"v\":\"130px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"position\":\"absolute\",\"zIndex\":10},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false},\"group\":{\"groupOrder\":10},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"opacity\":1},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":8700,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false,\"hoverFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"type\":\"group\"},\"2\":{\"text\":\"<span class=\\\"btn btn-preset3\\\"><i class=\\\"fac fac-envelope space-right\\\"><\\/i>Contact today<\\/span>\",\"alias\":\"Text-2\",\"uid\":2,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"position\":\"absolute\",\"zIndex\":9},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"1\",\"groupOrder\":9},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":50},\"n\":{\"v\":50},\"t\":{\"v\":50},\"m\":{\"v\":50}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"ease\":\"circ.out\",\"speed\":\"800\",\"start\":1000,\"startRelative\":1000,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":800}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7200,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":1000},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false,\"hoverFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"actions\":{\"action\":[{\"action\":\"link\",\"tooltip_event\":\"click\",\"link_open_in\":\"_self\",\"link_follow\":\"nofollow\",\"link_type\":\"a\",\"image_link\":\"https:\\/\\/fe2tech.com\\/contact\"}]},\"type\":\"text\"},\"4\":{\"text\":\"\",\"alias\":\"Shape-4\",\"uid\":4,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"3000px\",\"e\":true},\"n\":{\"v\":\"3000px\",\"e\":true},\"t\":{\"v\":\"3000px\"},\"m\":{\"v\":\"3000px\"}},\"height\":{\"d\":{\"v\":\"126px\",\"e\":true},\"n\":{\"v\":\"126px\",\"e\":true},\"t\":{\"v\":\"126px\"},\"m\":{\"v\":\"127px\",\"e\":true}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667},\"n\":{\"v\":1.6666666666666667},\"t\":{\"v\":1.6666666666666667},\"m\":{\"v\":1.6666666666666667}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"-45px\",\"e\":true},\"n\":{\"v\":\"-45px\",\"e\":true},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-1px\",\"e\":true},\"n\":{\"v\":\"-1px\",\"e\":true},\"t\":{\"v\":\"-1px\"},\"m\":{\"v\":\"-1px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"position\":\"absolute\",\"zIndex\":11},\"attributes\":{\"classes\":\"shap-slider-bottom\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":11},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"opacity\":1},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":8700,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false,\"hoverFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"backgroundColor\":\"#ffffff\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"visibility\":{\"m\":false},\"type\":\"shape\"},\"5\":{\"text\":\"<div class=\\\"ct-slider-nav\\\">\\n\\t<span class=\\\"slider-nav-left\\\"><i class=\\\"fac fac-angle-left\\\"><\\/i><\\/span>\\n\\t<span class=\\\"slider-nav-right\\\"><i class=\\\"fac fac-angle-right\\\"><\\/i><\\/span>\\n<\\/div>\",\"alias\":\"Text-5\",\"uid\":5,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"118px\",\"e\":true},\"n\":{\"v\":\"118px\"},\"t\":{\"v\":\"118px\"},\"m\":{\"v\":\"118px\"}},\"height\":{\"d\":{\"v\":\"53px\",\"e\":true},\"n\":{\"v\":\"53px\"},\"t\":{\"v\":\"53px\"},\"m\":{\"v\":\"53px\"}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"30px\"},\"m\":{\"v\":\"30px\"}},\"y\":{\"d\":{\"v\":\"101px\",\"e\":true},\"n\":{\"v\":\"101px\"},\"t\":{\"v\":\"101px\"},\"m\":{\"v\":\"101px\"}},\"horizontal\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"right\"},\"t\":{\"v\":\"right\"},\"m\":{\"v\":\"right\"}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"position\":\"absolute\",\"zIndex\":12},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":12},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":50},\"n\":{\"v\":50},\"t\":{\"v\":50},\"m\":{\"v\":50}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"speed\":\"800\",\"start\":990,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":800}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7710,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":990},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false,\"hoverFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"type\":\"text\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7,\"position\":\"absolute\"},\"version\":\"6.6.21\",\"text\":\"\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6,\"position\":\"absolute\"},\"version\":\"6.6.21\",\"text\":\"\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5,\"position\":\"absolute\"},\"version\":\"6.6.21\",\"text\":\"\"}}','{\"version\":\"6.7.20\"}'),(4,2,1,'{\"runtime\":{\"collapsedGroups\":[]},\"bg\":{\"type\":\"image\",\"image\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-slider-04.jpg\",\"imageId\":1006},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"timeline\":{\"transition\":[\"boxfade\"],\"slots\":[\"default\"],\"duration\":[\"default\"],\"easeIn\":[\"default\"],\"easeOut\":[\"default\"],\"rotation\":[\"default\"]},\"panzoom\":{\"set\":true,\"fitEnd\":\"115%\"},\"version\":\"6.6.20\",\"slideChange\":{\"adpr\":false}}','{\"0\":{\"text\":\"\",\"alias\":\"Group-0\",\"uid\":0,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"800px\",\"e\":true},\"n\":{\"v\":\"800px\",\"e\":true},\"t\":{\"v\":\"800px\"},\"m\":{\"v\":\"800px\"}},\"height\":{\"d\":{\"v\":\"335px\",\"e\":true},\"n\":{\"v\":\"335px\",\"e\":true},\"t\":{\"v\":\"265px\",\"e\":true},\"m\":{\"v\":\"385px\",\"e\":true}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667},\"n\":{\"v\":1.6666666666666667},\"t\":{\"v\":1.6666666666666667},\"m\":{\"v\":1.6666666666666667}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\",\"e\":true},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"y\":{\"d\":{\"v\":\"18px\",\"e\":true},\"n\":{\"v\":\"18px\",\"e\":true},\"t\":{\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":14,\"position\":\"absolute\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false},\"group\":{\"groupOrder\":14},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"opacity\":1},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":8700,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"group\",\"version\":\"6.6.21\"},\"1\":{\"text\":\"We are Contio\",\"alias\":\"Text-1\",\"uid\":1,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"70px\",\"e\":true},\"n\":{\"v\":\"70px\",\"e\":true},\"t\":{\"v\":\"65px\",\"e\":true},\"m\":{\"v\":\"65px\"}},\"y\":{\"d\":{\"v\":\"-6px\",\"e\":true},\"n\":{\"v\":\"-6px\",\"e\":true},\"t\":{\"v\":\"-6px\",\"e\":true},\"m\":{\"v\":\"-6px\"}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"zIndex\":9,\"position\":\"absolute\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"0\",\"groupOrder\":9},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.inOut\",\"speed\":1200,\"start\":900,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1200},\"sfx\":{\"effect\":\"blocktoleft\"}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7800,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":900},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Poppins\",\"fontSize\":{\"d\":{\"v\":\"22px\",\"e\":true},\"n\":{\"v\":\"22px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"16px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\"},\"m\":{\"v\":\"500\"}},\"lineHeight\":{\"d\":{\"v\":\"26px\",\"e\":true},\"n\":{\"v\":\"26px\"},\"t\":{\"v\":\"26px\"},\"m\":{\"v\":\"26px\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\",\"version\":\"6.6.21\"},\"2\":{\"text\":\"\",\"alias\":\"Shape-2\",\"uid\":2,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"height\":{\"d\":{\"v\":\"3px\",\"e\":true},\"n\":{\"v\":\"3px\"},\"t\":{\"v\":\"3px\"},\"m\":{\"v\":\"3px\"}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667},\"n\":{\"v\":1.6666666666666667},\"t\":{\"v\":1.6666666666666667},\"m\":{\"v\":1.6666666666666667}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"5px\",\"e\":true},\"n\":{\"v\":\"5px\"},\"t\":{\"v\":\"5px\"},\"m\":{\"v\":\"5px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":8,\"position\":\"absolute\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"0\",\"groupOrder\":8},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.inOut\",\"speed\":1200,\"start\":900,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1200},\"sfx\":{\"effect\":\"blocktoleft\"}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7800,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":900},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"backgroundColor\":\"{&type&:&linear&,&angle&:&270&,&colors&:[{&r&:255,&g&:159,&b&:0,&a&:1,&position&:0,&align&:&top&},{&r&:255,&g&:159,&b&:0,&a&:1,&position&:0,&align&:&bottom&},{&r&:245,&g&:83,&b&:1,&a&:1,&position&:100,&align&:&bottom&},{&r&:245,&g&:83,&b&:1,&a&:1,&position&:100,&align&:&top&}],&easing&:&none&,&strength&:100}\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"shape\",\"version\":\"6.6.21\"},\"3\":{\"text\":\"Best Builder Company\\nin Worldwide\",\"alias\":\"Text-3\",\"uid\":3,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"35px\",\"e\":true},\"n\":{\"v\":\"35px\"},\"t\":{\"v\":\"35px\",\"e\":true},\"m\":{\"v\":\"35px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":10,\"position\":\"absolute\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"0\",\"groupOrder\":10},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.inOut\",\"speed\":1200,\"start\":1200,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1200},\"sfx\":{\"effect\":\"blocktoleft\"}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7500,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":1200},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Poppins\",\"fontSize\":{\"d\":{\"v\":\"48px\",\"e\":true},\"n\":{\"v\":\"48px\"},\"t\":{\"v\":\"32px\",\"e\":true},\"m\":{\"v\":\"26px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"lineHeight\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"60px\"},\"t\":{\"v\":\"40px\",\"e\":true},\"m\":{\"v\":\"34px\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\",\"version\":\"6.6.21\"},\"4\":{\"text\":\"It is a long established fact that a reader will be distracted by the readable content tutorials of instute.\",\"alias\":\"Text-4\",\"uid\":4,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"560px\",\"e\":true},\"n\":{\"v\":\"560px\"},\"t\":{\"v\":\"410px\",\"e\":true},\"m\":{\"v\":\"310px\",\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"173px\",\"e\":true},\"n\":{\"v\":\"173px\"},\"t\":{\"v\":\"126px\",\"e\":true},\"m\":{\"v\":\"124px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":11,\"position\":\"absolute\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"0\",\"groupOrder\":11},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.inOut\",\"speed\":1200,\"start\":1400,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1200},\"sfx\":{\"effect\":\"blocktoleft\"}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7300,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":1400},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Poppins\",\"fontSize\":{\"d\":{\"v\":\"16px\",\"e\":true},\"n\":{\"v\":\"16px\"},\"t\":{\"v\":\"14px\",\"e\":true},\"m\":{\"v\":\"14px\"}},\"lineHeight\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"27px\",\"e\":true},\"m\":{\"v\":\"27px\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\",\"version\":\"6.6.21\"},\"5\":{\"text\":\"<span class=\\\"btn btn-default\\\"><i class=\\\"fac fac-user space-right\\\"><\\/i>About team<\\/span>\",\"alias\":\"Text-5\",\"uid\":5,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"m\":{\"v\":\"85px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":12,\"position\":\"absolute\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"0\",\"groupOrder\":12},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.inOut\",\"speed\":1200,\"start\":1600,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1200},\"sfx\":{\"effect\":\"blocktoleft\"}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7100,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":1600},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"d\":{\"v\":\"16px\",\"e\":true},\"n\":{\"v\":\"16px\"},\"t\":{\"v\":\"16px\",\"e\":true},\"m\":{\"v\":\"16px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"55px\",\"e\":true},\"n\":{\"v\":\"55px\"},\"t\":{\"v\":\"55px\",\"e\":true},\"m\":{\"v\":\"55px\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[{\"action\":\"link\",\"tooltip_event\":\"click\",\"link_open_in\":\"_self\",\"link_follow\":\"nofollow\",\"link_type\":\"a\",\"image_link\":\"https:\\/\\/demo.casethemes.net\\/contio\\/about\\/\"}]},\"type\":\"text\",\"version\":\"6.6.21\"},\"6\":{\"text\":\"<span class=\\\"btn btn-gray\\\"><i class=\\\"fac fac-location-arrow space-right\\\"><\\/i>Send request<\\/span>\",\"alias\":\"Copy text-5\",\"uid\":6,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"205px\",\"e\":true},\"n\":{\"v\":\"205px\"},\"t\":{\"v\":\"205px\"},\"m\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\",\"e\":true}},\"zIndex\":13,\"position\":\"absolute\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"0\",\"groupOrder\":13},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.inOut\",\"speed\":1200,\"start\":1800,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1200},\"sfx\":{\"effect\":\"blocktoleft\"}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":6900,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":1800},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"d\":{\"v\":\"16px\",\"e\":true},\"n\":{\"v\":\"16px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"15px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"55px\",\"e\":true},\"n\":{\"v\":\"55px\",\"e\":true},\"t\":{\"v\":\"55px\",\"e\":true},\"m\":{\"v\":\"55px\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[{\"action\":\"link\",\"tooltip_event\":\"click\",\"link_open_in\":\"_self\",\"link_follow\":\"nofollow\",\"link_type\":\"a\",\"image_link\":\"https:\\/\\/demo.casethemes.net\\/contio\\/contact\\/\"}]},\"type\":\"text\",\"version\":\"6.6.21\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7,\"position\":\"absolute\"},\"version\":\"6.6.21\",\"text\":\"\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6,\"position\":\"absolute\"},\"version\":\"6.6.21\",\"text\":\"\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5,\"position\":\"absolute\"},\"version\":\"6.6.21\",\"text\":\"\"}}','{\"version\":\"6.6.21\"}'),(5,2,2,'{\"runtime\":{\"collapsedGroups\":[]},\"bg\":{\"type\":\"image\",\"image\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-slider-05.jpg\",\"imageId\":1009},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"timeline\":{\"transition\":[\"boxfade\"],\"slots\":[\"default\"],\"duration\":[\"default\"],\"easeIn\":[\"default\"],\"easeOut\":[\"default\"],\"rotation\":[\"default\"]},\"panzoom\":{\"set\":true,\"fitStart\":\"115%\"},\"version\":\"6.6.20\",\"slideChange\":{\"adpr\":false}}','{\"0\":{\"text\":\"\",\"alias\":\"Group-0\",\"uid\":0,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"800px\",\"e\":true},\"n\":{\"v\":\"800px\",\"e\":true},\"t\":{\"v\":\"800px\"},\"m\":{\"v\":\"800px\"}},\"height\":{\"d\":{\"v\":\"335px\",\"e\":true},\"n\":{\"v\":\"335px\",\"e\":true},\"t\":{\"v\":\"265px\",\"e\":true},\"m\":{\"v\":\"305px\",\"e\":true}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667},\"n\":{\"v\":1.6666666666666667},\"t\":{\"v\":1.6666666666666667},\"m\":{\"v\":1.6666666666666667}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\",\"e\":true},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"y\":{\"d\":{\"v\":\"18px\",\"e\":true},\"n\":{\"v\":\"18px\",\"e\":true},\"t\":{\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":14,\"position\":\"absolute\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false},\"group\":{\"groupOrder\":14},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"opacity\":1},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":8700,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"group\",\"version\":\"6.6.21\"},\"1\":{\"text\":\"We are Contio\",\"alias\":\"Text-1\",\"uid\":1,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"70px\",\"e\":true},\"n\":{\"v\":\"70px\",\"e\":true},\"t\":{\"v\":\"65px\",\"e\":true},\"m\":{\"v\":\"65px\"}},\"y\":{\"d\":{\"v\":\"-6px\",\"e\":true},\"n\":{\"v\":\"-6px\",\"e\":true},\"t\":{\"v\":\"-6px\",\"e\":true},\"m\":{\"v\":\"-6px\"}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"zIndex\":9,\"position\":\"absolute\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"0\",\"groupOrder\":9},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.inOut\",\"speed\":1200,\"start\":900,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1200},\"sfx\":{\"effect\":\"blocktoleft\"}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7800,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":900},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Poppins\",\"fontSize\":{\"d\":{\"v\":\"22px\",\"e\":true},\"n\":{\"v\":\"22px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"16px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\"},\"m\":{\"v\":\"500\"}},\"lineHeight\":{\"d\":{\"v\":\"26px\",\"e\":true},\"n\":{\"v\":\"26px\"},\"t\":{\"v\":\"26px\"},\"m\":{\"v\":\"26px\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\",\"version\":\"6.6.21\"},\"2\":{\"text\":\"\",\"alias\":\"Shape-2\",\"uid\":2,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"height\":{\"d\":{\"v\":\"3px\",\"e\":true},\"n\":{\"v\":\"3px\"},\"t\":{\"v\":\"3px\"},\"m\":{\"v\":\"3px\"}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667},\"n\":{\"v\":1.6666666666666667},\"t\":{\"v\":1.6666666666666667},\"m\":{\"v\":1.6666666666666667}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"5px\",\"e\":true},\"n\":{\"v\":\"5px\"},\"t\":{\"v\":\"5px\"},\"m\":{\"v\":\"5px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":8,\"position\":\"absolute\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"0\",\"groupOrder\":8},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.inOut\",\"speed\":1200,\"start\":900,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1200},\"sfx\":{\"effect\":\"blocktoleft\"}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7800,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":900},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"backgroundColor\":\"{&type&:&linear&,&angle&:&270&,&colors&:[{&r&:255,&g&:159,&b&:0,&a&:1,&position&:0,&align&:&top&},{&r&:255,&g&:159,&b&:0,&a&:1,&position&:0,&align&:&bottom&},{&r&:245,&g&:83,&b&:1,&a&:1,&position&:100,&align&:&bottom&},{&r&:245,&g&:83,&b&:1,&a&:1,&position&:100,&align&:&top&}],&easing&:&none&,&strength&:100}\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"shape\",\"version\":\"6.6.21\"},\"3\":{\"text\":\"Constrio group\'s 2019\\ncorporate video\",\"alias\":\"Text-3\",\"uid\":3,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"35px\",\"e\":true},\"n\":{\"v\":\"35px\"},\"t\":{\"v\":\"35px\",\"e\":true},\"m\":{\"v\":\"35px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":10,\"position\":\"absolute\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"0\",\"groupOrder\":10},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.inOut\",\"speed\":1200,\"start\":1200,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1200},\"sfx\":{\"effect\":\"blocktoleft\"}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7500,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":1200},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Poppins\",\"fontSize\":{\"d\":{\"v\":\"48px\",\"e\":true},\"n\":{\"v\":\"48px\"},\"t\":{\"v\":\"32px\",\"e\":true},\"m\":{\"v\":\"26px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"lineHeight\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"60px\"},\"t\":{\"v\":\"40px\",\"e\":true},\"m\":{\"v\":\"34px\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\",\"version\":\"6.6.21\"},\"4\":{\"text\":\"It is a long established fact that a reader will be distracted by the readable content tutorials of instute.\",\"alias\":\"Text-4\",\"uid\":4,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"560px\",\"e\":true},\"n\":{\"v\":\"560px\",\"e\":true},\"t\":{\"v\":\"410px\",\"e\":true},\"m\":{\"v\":\"310px\",\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"173px\",\"e\":true},\"n\":{\"v\":\"173px\"},\"t\":{\"v\":\"126px\",\"e\":true},\"m\":{\"v\":\"124px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":11,\"position\":\"absolute\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"0\",\"groupOrder\":11},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.inOut\",\"speed\":1200,\"start\":1400,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1200},\"sfx\":{\"effect\":\"blocktoleft\"}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7300,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":1400},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Poppins\",\"fontSize\":{\"d\":{\"v\":\"16px\",\"e\":true},\"n\":{\"v\":\"16px\"},\"t\":{\"v\":\"14px\",\"e\":true},\"m\":{\"v\":\"14px\"}},\"lineHeight\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"27px\",\"e\":true},\"m\":{\"v\":\"27px\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\",\"version\":\"6.6.21\"},\"5\":{\"text\":\"<a class=\\\"ct-video-button\\\" href=\\\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\\\"><i class=\\\"fac fac-play\\\"><\\/i><span class=\\\"line-video-animation line-video-1\\\"><\\/span><span class=\\\"line-video-animation line-video-2\\\"><\\/span><span class=\\\"line-video-animation line-video-3\\\"><\\/span>Video<\\/a>\",\"alias\":\"Text-5\",\"uid\":5,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\",\"e\":true}},\"zIndex\":13,\"position\":\"absolute\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"0\",\"groupOrder\":13},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.inOut\",\"speed\":1200,\"start\":1600,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1200},\"sfx\":{\"effect\":\"blocktoleft\"}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7100,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":1600},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"d\":{\"v\":\"16px\",\"e\":true},\"n\":{\"v\":\"16px\"},\"t\":{\"v\":\"16px\",\"e\":true},\"m\":{\"v\":\"16px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"55px\",\"e\":true},\"n\":{\"v\":\"55px\"},\"t\":{\"v\":\"55px\",\"e\":true},\"m\":{\"v\":\"55px\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\",\"version\":\"6.6.21\"},\"6\":{\"text\":\"<span class=\\\"btn btn-gray\\\"><i class=\\\"fac fac-location-arrow space-right\\\"><\\/i>Send request<\\/span>\",\"alias\":\"Copy text-5\",\"uid\":6,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"85px\",\"e\":true},\"n\":{\"v\":\"85px\"},\"t\":{\"v\":\"85px\"},\"m\":{\"v\":\"85px\",\"e\":true}},\"y\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\",\"e\":true}},\"zIndex\":12,\"position\":\"absolute\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"0\",\"groupOrder\":12},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.inOut\",\"speed\":1200,\"start\":1800,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1200},\"sfx\":{\"effect\":\"blocktoleft\"}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":6900,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":1800},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"d\":{\"v\":\"16px\",\"e\":true},\"n\":{\"v\":\"16px\"},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"15px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"55px\",\"e\":true},\"n\":{\"v\":\"55px\"},\"t\":{\"v\":\"55px\",\"e\":true},\"m\":{\"v\":\"55px\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[{\"action\":\"link\",\"tooltip_event\":\"click\",\"link_open_in\":\"_self\",\"link_follow\":\"nofollow\",\"link_type\":\"a\",\"image_link\":\"https:\\/\\/demo.casethemes.net\\/contio\\/contact\\/\"}]},\"type\":\"text\",\"version\":\"6.6.21\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7,\"position\":\"absolute\"},\"version\":\"6.6.21\",\"text\":\"\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6,\"position\":\"absolute\"},\"version\":\"6.6.21\",\"text\":\"\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5,\"position\":\"absolute\"},\"version\":\"6.6.21\",\"text\":\"\"}}','{\"version\":\"6.6.21\"}'),(6,2,3,'{\"runtime\":{\"collapsedGroups\":[]},\"bg\":{\"type\":\"image\",\"image\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-slider-06.jpg\",\"imageId\":1018},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"timeline\":{\"transition\":[\"boxfade\"],\"slots\":[\"default\"],\"duration\":[\"default\"],\"easeIn\":[\"default\"],\"easeOut\":[\"default\"],\"rotation\":[\"default\"]},\"panzoom\":{\"set\":true,\"fitEnd\":\"115%\",\"fitStart\":\"100%\"},\"version\":\"6.6.20\",\"slideChange\":{\"adpr\":false}}','{\"0\":{\"text\":\"\",\"alias\":\"Group-0\",\"uid\":0,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"800px\",\"e\":true},\"n\":{\"v\":\"800px\",\"e\":true},\"t\":{\"v\":\"800px\"},\"m\":{\"v\":\"800px\"}},\"height\":{\"d\":{\"v\":\"335px\",\"e\":true},\"n\":{\"v\":\"335px\",\"e\":true},\"t\":{\"v\":\"265px\",\"e\":true},\"m\":{\"v\":\"305px\",\"e\":true}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667},\"n\":{\"v\":1.6666666666666667},\"t\":{\"v\":1.6666666666666667},\"m\":{\"v\":1.6666666666666667}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\",\"e\":true},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"y\":{\"d\":{\"v\":\"18px\",\"e\":true},\"n\":{\"v\":\"18px\",\"e\":true},\"t\":{\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":14,\"position\":\"absolute\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false},\"group\":{\"groupOrder\":14},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"opacity\":1},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":8700,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"group\",\"version\":\"6.6.21\"},\"1\":{\"text\":\"We are Contio\",\"alias\":\"Text-1\",\"uid\":1,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"70px\",\"e\":true},\"n\":{\"v\":\"70px\",\"e\":true},\"t\":{\"v\":\"65px\",\"e\":true},\"m\":{\"v\":\"65px\"}},\"y\":{\"d\":{\"v\":\"-6px\",\"e\":true},\"n\":{\"v\":\"-6px\",\"e\":true},\"t\":{\"v\":\"-6px\",\"e\":true},\"m\":{\"v\":\"-6px\"}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"zIndex\":9,\"position\":\"absolute\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"0\",\"groupOrder\":9},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.inOut\",\"speed\":1200,\"start\":900,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1200},\"sfx\":{\"effect\":\"blocktoleft\"}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7800,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":900},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Poppins\",\"fontSize\":{\"d\":{\"v\":\"22px\",\"e\":true},\"n\":{\"v\":\"22px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"16px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\"},\"m\":{\"v\":\"500\"}},\"lineHeight\":{\"d\":{\"v\":\"26px\",\"e\":true},\"n\":{\"v\":\"26px\"},\"t\":{\"v\":\"26px\"},\"m\":{\"v\":\"26px\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\",\"version\":\"6.6.21\"},\"2\":{\"text\":\"\",\"alias\":\"Shape-2\",\"uid\":2,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"height\":{\"d\":{\"v\":\"3px\",\"e\":true},\"n\":{\"v\":\"3px\"},\"t\":{\"v\":\"3px\"},\"m\":{\"v\":\"3px\"}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667},\"n\":{\"v\":1.6666666666666667},\"t\":{\"v\":1.6666666666666667},\"m\":{\"v\":1.6666666666666667}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"5px\",\"e\":true},\"n\":{\"v\":\"5px\"},\"t\":{\"v\":\"5px\"},\"m\":{\"v\":\"5px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":8,\"position\":\"absolute\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"0\",\"groupOrder\":8},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.inOut\",\"speed\":1200,\"start\":900,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1200},\"sfx\":{\"effect\":\"blocktoleft\"}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7800,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":900},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"backgroundColor\":\"{&type&:&linear&,&angle&:&270&,&colors&:[{&r&:255,&g&:159,&b&:0,&a&:1,&position&:0,&align&:&top&},{&r&:255,&g&:159,&b&:0,&a&:1,&position&:0,&align&:&bottom&},{&r&:245,&g&:83,&b&:1,&a&:1,&position&:100,&align&:&bottom&},{&r&:245,&g&:83,&b&:1,&a&:1,&position&:100,&align&:&top&}],&easing&:&none&,&strength&:100}\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"shape\",\"version\":\"6.6.21\"},\"3\":{\"text\":\"See the Constrio group\\u2019s\\nhighlights of employees\",\"alias\":\"Text-3\",\"uid\":3,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"35px\",\"e\":true},\"n\":{\"v\":\"35px\"},\"t\":{\"v\":\"35px\",\"e\":true},\"m\":{\"v\":\"35px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":10,\"position\":\"absolute\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"0\",\"groupOrder\":10},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.inOut\",\"speed\":1200,\"start\":1200,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1200},\"sfx\":{\"effect\":\"blocktoleft\"}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7500,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":1200},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Poppins\",\"fontSize\":{\"d\":{\"v\":\"48px\",\"e\":true},\"n\":{\"v\":\"48px\"},\"t\":{\"v\":\"32px\",\"e\":true},\"m\":{\"v\":\"26px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"lineHeight\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"60px\"},\"t\":{\"v\":\"40px\",\"e\":true},\"m\":{\"v\":\"34px\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\",\"version\":\"6.6.21\"},\"4\":{\"text\":\"It is a long established fact that a reader will be distracted by the readable content tutorials of instute.\",\"alias\":\"Text-4\",\"uid\":4,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"640px\",\"e\":true},\"n\":{\"v\":\"640px\"},\"t\":{\"v\":\"410px\",\"e\":true},\"m\":{\"v\":\"310px\",\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"173px\",\"e\":true},\"n\":{\"v\":\"173px\"},\"t\":{\"v\":\"126px\",\"e\":true},\"m\":{\"v\":\"124px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":11,\"position\":\"absolute\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"0\",\"groupOrder\":11},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.inOut\",\"speed\":1200,\"start\":1400,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1200},\"sfx\":{\"effect\":\"blocktoleft\"}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7300,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":1400},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Poppins\",\"fontSize\":{\"d\":{\"v\":\"16px\",\"e\":true},\"n\":{\"v\":\"16px\"},\"t\":{\"v\":\"14px\",\"e\":true},\"m\":{\"v\":\"14px\"}},\"lineHeight\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"27px\",\"e\":true},\"m\":{\"v\":\"27px\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\",\"version\":\"6.6.21\"},\"6\":{\"text\":\"<span class=\\\"btn btn-gray\\\"><i class=\\\"fac fac-location-arrow space-right\\\"><\\/i>Send request<\\/span>\",\"alias\":\"Copy text-5\",\"uid\":6,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\",\"e\":true}},\"zIndex\":12,\"position\":\"absolute\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"0\",\"groupOrder\":12},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.inOut\",\"speed\":1200,\"start\":1800,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1200},\"sfx\":{\"effect\":\"blocktoleft\"}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":6900,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":1800},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"d\":{\"v\":\"16px\",\"e\":true},\"n\":{\"v\":\"16px\"},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"15px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"55px\",\"e\":true},\"n\":{\"v\":\"55px\"},\"t\":{\"v\":\"55px\",\"e\":true},\"m\":{\"v\":\"55px\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[{\"action\":\"link\",\"tooltip_event\":\"click\",\"link_open_in\":\"_self\",\"link_follow\":\"nofollow\",\"link_type\":\"a\",\"image_link\":\"https:\\/\\/demo.casethemes.net\\/contio\\/contact\\/\"}]},\"type\":\"text\",\"version\":\"6.6.21\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7,\"position\":\"absolute\"},\"version\":\"6.6.21\",\"text\":\"\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6,\"position\":\"absolute\"},\"version\":\"6.6.21\",\"text\":\"\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5,\"position\":\"absolute\"},\"version\":\"6.6.21\",\"text\":\"\"}}','{\"version\":\"6.6.21\"}'),(7,3,1,'{\"runtime\":{\"collapsedGroups\":[]},\"bg\":{\"type\":\"image\",\"image\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-slider-07.jpg\",\"imageId\":1255},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"timeline\":{\"transition\":[\"boxslide\"],\"slots\":[\"default\"],\"duration\":[\"default\"],\"easeIn\":[\"default\"],\"easeOut\":[\"default\"],\"rotation\":[\"default\"]},\"effects\":{\"parallax\":\"5\"},\"version\":\"6.6.20\",\"slideChange\":{\"adpr\":false}}','{\"0\":{\"text\":\"\",\"alias\":\"Group-0\",\"uid\":0,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"570px\",\"e\":true},\"n\":{\"v\":\"570px\"},\"t\":{\"v\":\"430px\",\"e\":true},\"m\":{\"v\":\"290px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"345px\",\"e\":true},\"n\":{\"v\":\"345px\"},\"t\":{\"v\":\"305px\",\"e\":true},\"m\":{\"v\":\"305px\"}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667},\"n\":{\"v\":1.6666666666666667},\"t\":{\"v\":1.6666666666666667},\"m\":{\"v\":1.6666666666666667}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"30px\"},\"m\":{\"v\":\"20px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"224px\",\"e\":true},\"n\":{\"v\":\"224px\"},\"t\":{\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":13,\"position\":\"absolute\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false},\"group\":{\"groupOrder\":13},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"50\"},\"n\":{\"v\":\"50\"},\"t\":{\"v\":\"50\"},\"m\":{\"v\":\"50\"}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"speed\":\"800\",\"start\":700,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":800}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":8000,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":700},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"backgroundColor\":\"rgba(255, 255, 255, 0.9)\",\"borderRadius\":{\"v\":[\"8px\",\"8px\",\"8px\",\"8px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"group\",\"version\":\"6.6.21\"},\"1\":{\"text\":\"Best Builder Company\\nin Worldwide\",\"alias\":\"Text-1\",\"uid\":1,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"600px\",\"e\":true},\"n\":{\"v\":\"600px\"},\"t\":{\"v\":\"600px\"},\"m\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"80px\",\"e\":true},\"n\":{\"v\":\"80px\"},\"t\":{\"v\":\"40px\",\"e\":true},\"m\":{\"v\":\"30px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"47px\",\"e\":true},\"n\":{\"v\":\"47px\"},\"t\":{\"v\":\"47px\"},\"m\":{\"v\":\"48px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":9,\"position\":\"absolute\"},\"attributes\":{\"classes\":\"title-box-shadow\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"0\",\"groupOrder\":9},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":\"50\"},\"n\":{\"v\":\"50\"},\"t\":{\"v\":\"50\"},\"m\":{\"v\":\"50\"}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"speed\":\"800\",\"start\":1100,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":800}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7600,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":1100},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#0f1c72\",\"e\":true},\"n\":{\"v\":\"#0f1c72\"},\"t\":{\"v\":\"#0f1c72\"},\"m\":{\"v\":\"#0f1c72\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Poppins\",\"fontSize\":{\"d\":{\"v\":\"48px\",\"e\":true},\"n\":{\"v\":\"48px\"},\"t\":{\"v\":\"36px\",\"e\":true},\"m\":{\"v\":\"21px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"lineHeight\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"60px\"},\"t\":{\"v\":\"45px\",\"e\":true},\"m\":{\"v\":\"28px\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\",\"version\":\"6.6.21\"},\"2\":{\"text\":\"\",\"alias\":\"Shape-2\",\"uid\":2,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"83px\",\"e\":true},\"n\":{\"v\":\"83px\",\"e\":true},\"t\":{\"v\":\"53px\",\"e\":true},\"m\":{\"v\":\"43px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"3px\",\"e\":true},\"n\":{\"v\":\"3px\",\"e\":true},\"t\":{\"v\":\"3px\"},\"m\":{\"v\":\"3px\"}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667},\"n\":{\"v\":1.6666666666666667},\"t\":{\"v\":1.6666666666666667},\"m\":{\"v\":1.6666666666666667}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"-27px\",\"e\":true},\"n\":{\"v\":\"-27px\",\"e\":true},\"t\":{\"v\":\"-27px\"},\"m\":{\"v\":\"-27px\"}},\"y\":{\"d\":{\"v\":\"64px\",\"e\":true},\"n\":{\"v\":\"64px\",\"e\":true},\"t\":{\"v\":\"64px\"},\"m\":{\"v\":\"64px\"}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"zIndex\":8,\"position\":\"absolute\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"0\",\"groupOrder\":8},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"-50\"},\"n\":{\"v\":\"-50\"},\"t\":{\"v\":\"-50\"},\"m\":{\"v\":\"-50\"}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"speed\":\"800\",\"start\":900,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":800}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7800,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":900},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"backgroundColor\":\"{&type&:&linear&,&angle&:&90&,&colors&:[{&r&:245,&g&:83,&b&:1,&a&:1,&position&:0,&align&:&top&},{&r&:245,&g&:83,&b&:1,&a&:1,&position&:0,&align&:&bottom&},{&r&:255,&g&:159,&b&:0,&a&:1,&position&:100,&align&:&bottom&},{&r&:255,&g&:159,&b&:0,&a&:1,&position&:100,&align&:&top&}],&easing&:&none&,&strength&:100}\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"shape\",\"version\":\"6.6.21\"},\"3\":{\"text\":\"Your Columbia, Constrio Custom Home Builder\",\"alias\":\"Text-3\",\"uid\":3,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"m\":{\"v\":\"240px\",\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"80px\",\"e\":true},\"n\":{\"v\":\"80px\"},\"t\":{\"v\":\"40px\",\"e\":true},\"m\":{\"v\":\"30px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"180px\",\"e\":true},\"n\":{\"v\":\"180px\"},\"t\":{\"v\":\"145px\",\"e\":true},\"m\":{\"v\":\"121px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":10,\"position\":\"absolute\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"0\",\"groupOrder\":10},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":\"50\"},\"n\":{\"v\":\"50\"},\"t\":{\"v\":\"50\"},\"m\":{\"v\":\"50\"}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"speed\":\"800\",\"start\":1300,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":800}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7400,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":1300},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#4b546e\",\"e\":true},\"n\":{\"v\":\"#4b546e\"},\"t\":{\"v\":\"#4b546e\"},\"m\":{\"v\":\"#4b546e\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"d\":{\"v\":\"18px\",\"e\":true},\"n\":{\"v\":\"18px\"},\"t\":{\"v\":\"16px\",\"e\":true},\"m\":{\"v\":\"16px\"}},\"lineHeight\":{\"d\":{\"v\":\"29px\",\"e\":true},\"n\":{\"v\":\"29px\"},\"t\":{\"v\":\"29px\"},\"m\":{\"v\":\"26px\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\",\"version\":\"6.6.21\"},\"4\":{\"text\":\"<span class=\\\"btn btn-preset4\\\"><i class=\\\"fac fac-user space-right\\\"><\\/i>About team<\\/span>\",\"alias\":\"Text-4\",\"uid\":4,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"155px\",\"e\":true},\"n\":{\"v\":\"155px\"},\"t\":{\"v\":\"115px\",\"e\":true},\"m\":{\"v\":\"95px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"60px\"},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":12,\"position\":\"absolute\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"0\",\"groupOrder\":12},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":\"50\"},\"n\":{\"v\":\"50\"},\"t\":{\"v\":\"50\"},\"m\":{\"v\":\"50\"}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"speed\":\"700\",\"start\":1700,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":700}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7000,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":1700},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#000000\",\"e\":true},\"n\":{\"v\":\"#000000\"},\"t\":{\"v\":\"#000000\"},\"m\":{\"v\":\"#000000\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"d\":{\"v\":\"16px\",\"e\":true},\"n\":{\"v\":\"16px\"},\"t\":{\"v\":\"16px\"},\"m\":{\"v\":\"16px\"}},\"lineHeight\":{\"d\":{\"v\":\"58px\",\"e\":true},\"n\":{\"v\":\"58px\"},\"t\":{\"v\":\"58px\"},\"m\":{\"v\":\"58px\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[{\"action\":\"link\",\"tooltip_event\":\"click\",\"link_open_in\":\"_self\",\"link_follow\":\"nofollow\",\"link_type\":\"a\",\"image_link\":\"https:\\/\\/demo.casethemes.net\\/contio\\/about\\/\"}]},\"type\":\"text\",\"version\":\"6.6.21\"},\"5\":{\"text\":\"<a class=\\\"ct-video-button size2\\\" href=\\\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\\\"><i class=\\\"fac fac-play\\\"><\\/i>Video<\\/a>\",\"alias\":\"Text-5\",\"uid\":5,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"80px\",\"e\":true},\"n\":{\"v\":\"80px\",\"e\":true},\"t\":{\"v\":\"40px\",\"e\":true},\"m\":{\"v\":\"30px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"60px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":11,\"position\":\"absolute\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"0\",\"groupOrder\":11},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":\"50\"},\"n\":{\"v\":\"50\"},\"t\":{\"v\":\"50\"},\"m\":{\"v\":\"50\"}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"speed\":\"800\",\"start\":1500,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":800}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7200,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":1500},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"d\":{\"v\":\"16px\",\"e\":true},\"n\":{\"v\":\"16px\",\"e\":true},\"t\":{\"v\":\"16px\"},\"m\":{\"v\":\"16px\"}},\"lineHeight\":{\"d\":{\"v\":\"58px\",\"e\":true},\"n\":{\"v\":\"58px\",\"e\":true},\"t\":{\"v\":\"58px\"},\"m\":{\"v\":\"58px\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\",\"version\":\"6.6.21\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7,\"position\":\"absolute\"},\"version\":\"6.6.21\",\"text\":\"\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6,\"position\":\"absolute\"},\"version\":\"6.6.21\",\"text\":\"\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5,\"position\":\"absolute\"},\"version\":\"6.6.21\",\"text\":\"\"}}','{\"version\":\"6.6.21\"}'),(8,3,2,'{\"runtime\":{\"collapsedGroups\":[]},\"bg\":{\"type\":\"image\",\"image\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-slider-08.jpg\",\"imageId\":1257},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"timeline\":{\"transition\":[\"boxfade\"],\"slots\":[\"default\"],\"duration\":[\"default\"],\"easeIn\":[\"default\"],\"easeOut\":[\"default\"],\"rotation\":[\"default\"]},\"effects\":{\"parallax\":\"5\"},\"version\":\"6.6.20\",\"slideChange\":{\"adpr\":false}}','{\"0\":{\"text\":\"\",\"alias\":\"Group-0\",\"uid\":0,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"570px\",\"e\":true},\"n\":{\"v\":\"570px\"},\"t\":{\"v\":\"430px\",\"e\":true},\"m\":{\"v\":\"290px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"345px\",\"e\":true},\"n\":{\"v\":\"345px\"},\"t\":{\"v\":\"305px\",\"e\":true},\"m\":{\"v\":\"305px\"}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667},\"n\":{\"v\":1.6666666666666667},\"t\":{\"v\":1.6666666666666667},\"m\":{\"v\":1.6666666666666667}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"30px\"},\"m\":{\"v\":\"20px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"224px\",\"e\":true},\"n\":{\"v\":\"224px\"},\"t\":{\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":13,\"position\":\"absolute\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false},\"group\":{\"groupOrder\":13},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"50\"},\"n\":{\"v\":\"50\"},\"t\":{\"v\":\"50\"},\"m\":{\"v\":\"50\"}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"speed\":\"800\",\"start\":700,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":800}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":8000,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":700},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"backgroundColor\":\"rgba(255, 255, 255, 0.9)\",\"borderRadius\":{\"v\":[\"8px\",\"8px\",\"8px\",\"8px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"group\",\"version\":\"6.6.21\"},\"1\":{\"text\":\"Constrio Grupo posic\\ncomode los l\\u00edderes\",\"alias\":\"Text-1\",\"uid\":1,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"600px\",\"e\":true},\"n\":{\"v\":\"600px\"},\"t\":{\"v\":\"600px\"},\"m\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"80px\",\"e\":true},\"n\":{\"v\":\"80px\"},\"t\":{\"v\":\"40px\",\"e\":true},\"m\":{\"v\":\"30px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"47px\",\"e\":true},\"n\":{\"v\":\"47px\"},\"t\":{\"v\":\"47px\"},\"m\":{\"v\":\"48px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":10,\"position\":\"absolute\"},\"attributes\":{\"classes\":\"title-box-shadow\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"0\",\"groupOrder\":10},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":\"50\"},\"n\":{\"v\":\"50\"},\"t\":{\"v\":\"50\"},\"m\":{\"v\":\"50\"}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"speed\":\"800\",\"start\":1100,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":800}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7600,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":1100},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#0f1c72\",\"e\":true},\"n\":{\"v\":\"#0f1c72\"},\"t\":{\"v\":\"#0f1c72\"},\"m\":{\"v\":\"#0f1c72\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Poppins\",\"fontSize\":{\"d\":{\"v\":\"48px\",\"e\":true},\"n\":{\"v\":\"48px\"},\"t\":{\"v\":\"36px\",\"e\":true},\"m\":{\"v\":\"21px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"lineHeight\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"60px\"},\"t\":{\"v\":\"45px\",\"e\":true},\"m\":{\"v\":\"28px\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\",\"version\":\"6.6.21\"},\"2\":{\"text\":\"\",\"alias\":\"Shape-2\",\"uid\":2,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"83px\",\"e\":true},\"n\":{\"v\":\"83px\",\"e\":true},\"t\":{\"v\":\"53px\",\"e\":true},\"m\":{\"v\":\"43px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"3px\",\"e\":true},\"n\":{\"v\":\"3px\",\"e\":true},\"t\":{\"v\":\"3px\"},\"m\":{\"v\":\"3px\"}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667},\"n\":{\"v\":1.6666666666666667},\"t\":{\"v\":1.6666666666666667},\"m\":{\"v\":1.6666666666666667}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"-27px\",\"e\":true},\"n\":{\"v\":\"-27px\",\"e\":true},\"t\":{\"v\":\"-27px\"},\"m\":{\"v\":\"-27px\"}},\"y\":{\"d\":{\"v\":\"64px\",\"e\":true},\"n\":{\"v\":\"64px\",\"e\":true},\"t\":{\"v\":\"64px\"},\"m\":{\"v\":\"64px\"}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"zIndex\":9,\"position\":\"absolute\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"0\",\"groupOrder\":9},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"-50\"},\"n\":{\"v\":\"-50\"},\"t\":{\"v\":\"-50\"},\"m\":{\"v\":\"-50\"}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"speed\":\"800\",\"start\":900,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":800}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7800,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":900},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"backgroundColor\":\"{&type&:&linear&,&angle&:&90&,&colors&:[{&r&:245,&g&:83,&b&:1,&a&:1,&position&:0,&align&:&top&},{&r&:245,&g&:83,&b&:1,&a&:1,&position&:0,&align&:&bottom&},{&r&:255,&g&:159,&b&:0,&a&:1,&position&:100,&align&:&bottom&},{&r&:255,&g&:159,&b&:0,&a&:1,&position&:100,&align&:&top&}],&easing&:&none&,&strength&:100}\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"shape\",\"version\":\"6.6.21\"},\"3\":{\"text\":\"Your Columbia, Constrio Custom Home Builder\",\"alias\":\"Text-3\",\"uid\":3,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"m\":{\"v\":\"240px\",\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"80px\",\"e\":true},\"n\":{\"v\":\"80px\"},\"t\":{\"v\":\"40px\",\"e\":true},\"m\":{\"v\":\"30px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"180px\",\"e\":true},\"n\":{\"v\":\"180px\"},\"t\":{\"v\":\"145px\",\"e\":true},\"m\":{\"v\":\"121px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":11,\"position\":\"absolute\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"0\",\"groupOrder\":11},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":\"50\"},\"n\":{\"v\":\"50\"},\"t\":{\"v\":\"50\"},\"m\":{\"v\":\"50\"}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"speed\":\"800\",\"start\":1300,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":800}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7400,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":1300},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#4b546e\",\"e\":true},\"n\":{\"v\":\"#4b546e\"},\"t\":{\"v\":\"#4b546e\"},\"m\":{\"v\":\"#4b546e\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"d\":{\"v\":\"18px\",\"e\":true},\"n\":{\"v\":\"18px\"},\"t\":{\"v\":\"16px\",\"e\":true},\"m\":{\"v\":\"16px\"}},\"lineHeight\":{\"d\":{\"v\":\"29px\",\"e\":true},\"n\":{\"v\":\"29px\"},\"t\":{\"v\":\"29px\"},\"m\":{\"v\":\"26px\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\",\"version\":\"6.6.21\"},\"4\":{\"text\":\"<span class=\\\"btn btn-preset4\\\"><i class=\\\"fac fac-user space-right\\\"><\\/i>About team<\\/span>\",\"alias\":\"Text-4\",\"uid\":4,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"80px\",\"e\":true},\"n\":{\"v\":\"80px\"},\"t\":{\"v\":\"40px\",\"e\":true},\"m\":{\"v\":\"30px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"60px\"},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\"}},\"horizontal\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":12,\"position\":\"absolute\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"0\",\"groupOrder\":12},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":\"50\"},\"n\":{\"v\":\"50\"},\"t\":{\"v\":\"50\"},\"m\":{\"v\":\"50\"}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"speed\":\"700\",\"start\":1700,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":700}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7000,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":1700},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#000000\",\"e\":true},\"n\":{\"v\":\"#000000\"},\"t\":{\"v\":\"#000000\"},\"m\":{\"v\":\"#000000\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"d\":{\"v\":\"16px\",\"e\":true},\"n\":{\"v\":\"16px\"},\"t\":{\"v\":\"16px\"},\"m\":{\"v\":\"16px\"}},\"lineHeight\":{\"d\":{\"v\":\"58px\",\"e\":true},\"n\":{\"v\":\"58px\"},\"t\":{\"v\":\"58px\"},\"m\":{\"v\":\"58px\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[{\"action\":\"link\",\"tooltip_event\":\"click\",\"link_open_in\":\"_self\",\"link_follow\":\"nofollow\",\"link_type\":\"a\",\"image_link\":\"https:\\/\\/demo.casethemes.net\\/contio\\/about\\/\"}]},\"type\":\"text\",\"version\":\"6.6.21\"},\"5\":{\"text\":\"<a class=\\\"ct-video-button size3\\\" href=\\\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\\\"><i class=\\\"fac fac-play\\\"><\\/i><span class=\\\"line-video-animation line-video-1\\\"><\\/span><span class=\\\"line-video-animation line-video-2\\\"><\\/span><span class=\\\"line-video-animation line-video-3\\\"><\\/span>Video<\\/a>\",\"alias\":\"Text-5\",\"uid\":5,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"170px\",\"e\":true},\"n\":{\"v\":\"60px\",\"e\":true},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"30px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"335px\",\"e\":true},\"n\":{\"v\":\"335px\",\"e\":true},\"t\":{\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"right\",\"e\":true},\"t\":{\"v\":\"right\",\"e\":true},\"m\":{\"v\":\"right\"}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":8,\"position\":\"absolute\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":8},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":\"50\"},\"n\":{\"v\":\"50\"},\"t\":{\"v\":\"50\"},\"m\":{\"v\":\"50\"}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"speed\":\"800\",\"start\":1500,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":800}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7200,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":1500},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"d\":{\"v\":\"16px\",\"e\":true},\"n\":{\"v\":\"16px\",\"e\":true},\"t\":{\"v\":\"16px\"},\"m\":{\"v\":\"16px\"}},\"lineHeight\":{\"d\":{\"v\":\"146px\",\"e\":true},\"n\":{\"v\":\"146px\",\"e\":true},\"t\":{\"v\":\"146px\"},\"m\":{\"v\":\"146px\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"visibility\":{\"m\":false,\"t\":false},\"type\":\"text\",\"version\":\"6.6.21\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7,\"position\":\"absolute\"},\"version\":\"6.6.21\",\"text\":\"\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6,\"position\":\"absolute\"},\"version\":\"6.6.21\",\"text\":\"\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5,\"position\":\"absolute\"},\"version\":\"6.6.21\",\"text\":\"\"}}','{\"version\":\"6.6.21\"}'),(9,3,3,'{\"runtime\":{\"collapsedGroups\":[]},\"bg\":{\"type\":\"image\",\"image\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-slider-09.jpg\",\"imageId\":1258},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"timeline\":{\"transition\":[\"boxrandomrotate\"],\"slots\":[\"default\"],\"duration\":[\"default\"],\"easeIn\":[\"default\"],\"easeOut\":[\"default\"],\"rotation\":[\"default\"]},\"effects\":{\"parallax\":\"5\"},\"uid\":13,\"version\":\"6.6.20\",\"slideChange\":{\"adpr\":false}}','{\"0\":{\"text\":\"\",\"alias\":\"Group-0\",\"uid\":0,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"570px\",\"e\":true},\"n\":{\"v\":\"570px\"},\"t\":{\"v\":\"430px\",\"e\":true},\"m\":{\"v\":\"290px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"345px\",\"e\":true},\"n\":{\"v\":\"345px\"},\"t\":{\"v\":\"305px\",\"e\":true},\"m\":{\"v\":\"305px\"}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667},\"n\":{\"v\":1.6666666666666667},\"t\":{\"v\":1.6666666666666667},\"m\":{\"v\":1.6666666666666667}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"30px\"},\"m\":{\"v\":\"20px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"224px\",\"e\":true},\"n\":{\"v\":\"224px\"},\"t\":{\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":13,\"position\":\"absolute\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false},\"group\":{\"groupOrder\":13},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"50\"},\"n\":{\"v\":\"50\"},\"t\":{\"v\":\"50\"},\"m\":{\"v\":\"50\"}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"speed\":\"800\",\"start\":700,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":800}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":8000,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":700},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"backgroundColor\":\"rgba(255, 255, 255, 0.9)\",\"borderRadius\":{\"v\":[\"8px\",\"8px\",\"8px\",\"8px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"group\",\"version\":\"6.6.21\"},\"1\":{\"text\":\"Constrio Grupo posic\\ncomode los l\\u00edderes\",\"alias\":\"Text-1\",\"uid\":1,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"600px\",\"e\":true},\"n\":{\"v\":\"600px\"},\"t\":{\"v\":\"600px\"},\"m\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"80px\",\"e\":true},\"n\":{\"v\":\"80px\"},\"t\":{\"v\":\"40px\",\"e\":true},\"m\":{\"v\":\"30px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"47px\",\"e\":true},\"n\":{\"v\":\"47px\"},\"t\":{\"v\":\"47px\"},\"m\":{\"v\":\"48px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":9,\"position\":\"absolute\"},\"attributes\":{\"classes\":\"title-box-shadow\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"0\",\"groupOrder\":9},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":\"50\"},\"n\":{\"v\":\"50\"},\"t\":{\"v\":\"50\"},\"m\":{\"v\":\"50\"}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"speed\":\"800\",\"start\":1100,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":800}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7600,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":1100},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#0f1c72\",\"e\":true},\"n\":{\"v\":\"#0f1c72\"},\"t\":{\"v\":\"#0f1c72\"},\"m\":{\"v\":\"#0f1c72\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Poppins\",\"fontSize\":{\"d\":{\"v\":\"48px\",\"e\":true},\"n\":{\"v\":\"48px\"},\"t\":{\"v\":\"36px\",\"e\":true},\"m\":{\"v\":\"21px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"lineHeight\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"60px\"},\"t\":{\"v\":\"45px\",\"e\":true},\"m\":{\"v\":\"28px\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\",\"version\":\"6.6.21\"},\"2\":{\"text\":\"\",\"alias\":\"Shape-2\",\"uid\":2,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"83px\",\"e\":true},\"n\":{\"v\":\"83px\",\"e\":true},\"t\":{\"v\":\"53px\",\"e\":true},\"m\":{\"v\":\"43px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"3px\",\"e\":true},\"n\":{\"v\":\"3px\",\"e\":true},\"t\":{\"v\":\"3px\"},\"m\":{\"v\":\"3px\"}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667},\"n\":{\"v\":1.6666666666666667},\"t\":{\"v\":1.6666666666666667},\"m\":{\"v\":1.6666666666666667}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"-27px\",\"e\":true},\"n\":{\"v\":\"-27px\",\"e\":true},\"t\":{\"v\":\"-27px\"},\"m\":{\"v\":\"-27px\"}},\"y\":{\"d\":{\"v\":\"64px\",\"e\":true},\"n\":{\"v\":\"64px\",\"e\":true},\"t\":{\"v\":\"64px\"},\"m\":{\"v\":\"64px\"}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"zIndex\":8,\"position\":\"absolute\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"0\",\"groupOrder\":8},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"-50\"},\"n\":{\"v\":\"-50\"},\"t\":{\"v\":\"-50\"},\"m\":{\"v\":\"-50\"}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"speed\":\"800\",\"start\":900,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":800}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7800,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":900},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"backgroundColor\":\"{&type&:&linear&,&angle&:&90&,&colors&:[{&r&:245,&g&:83,&b&:1,&a&:1,&position&:0,&align&:&top&},{&r&:245,&g&:83,&b&:1,&a&:1,&position&:0,&align&:&bottom&},{&r&:255,&g&:159,&b&:0,&a&:1,&position&:100,&align&:&bottom&},{&r&:255,&g&:159,&b&:0,&a&:1,&position&:100,&align&:&top&}],&easing&:&none&,&strength&:100}\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"shape\",\"version\":\"6.6.21\"},\"3\":{\"text\":\"Your Columbia, Constrio Custom Home Builder\",\"alias\":\"Text-3\",\"uid\":3,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"m\":{\"v\":\"240px\",\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"80px\",\"e\":true},\"n\":{\"v\":\"80px\"},\"t\":{\"v\":\"40px\",\"e\":true},\"m\":{\"v\":\"30px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"180px\",\"e\":true},\"n\":{\"v\":\"180px\"},\"t\":{\"v\":\"145px\",\"e\":true},\"m\":{\"v\":\"121px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":10,\"position\":\"absolute\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"0\",\"groupOrder\":10},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":\"50\"},\"n\":{\"v\":\"50\"},\"t\":{\"v\":\"50\"},\"m\":{\"v\":\"50\"}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"speed\":\"800\",\"start\":1300,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":800}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7400,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":1300},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#4b546e\",\"e\":true},\"n\":{\"v\":\"#4b546e\"},\"t\":{\"v\":\"#4b546e\"},\"m\":{\"v\":\"#4b546e\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"d\":{\"v\":\"18px\",\"e\":true},\"n\":{\"v\":\"18px\"},\"t\":{\"v\":\"16px\",\"e\":true},\"m\":{\"v\":\"16px\"}},\"lineHeight\":{\"d\":{\"v\":\"29px\",\"e\":true},\"n\":{\"v\":\"29px\"},\"t\":{\"v\":\"29px\"},\"m\":{\"v\":\"26px\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\",\"version\":\"6.6.21\"},\"4\":{\"text\":\"<span class=\\\"btn btn-preset4\\\"><i class=\\\"fac fac-user space-right\\\"><\\/i>About team<\\/span>\",\"alias\":\"Text-4\",\"uid\":4,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"155px\",\"e\":true},\"n\":{\"v\":\"155px\"},\"t\":{\"v\":\"115px\",\"e\":true},\"m\":{\"v\":\"95px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"60px\"},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":12,\"position\":\"absolute\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"0\",\"groupOrder\":12},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":\"50\"},\"n\":{\"v\":\"50\"},\"t\":{\"v\":\"50\"},\"m\":{\"v\":\"50\"}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"speed\":\"700\",\"start\":1700,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":700}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7000,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":1700},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#000000\",\"e\":true},\"n\":{\"v\":\"#000000\"},\"t\":{\"v\":\"#000000\"},\"m\":{\"v\":\"#000000\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"d\":{\"v\":\"16px\",\"e\":true},\"n\":{\"v\":\"16px\"},\"t\":{\"v\":\"16px\"},\"m\":{\"v\":\"16px\"}},\"lineHeight\":{\"d\":{\"v\":\"58px\",\"e\":true},\"n\":{\"v\":\"58px\"},\"t\":{\"v\":\"58px\"},\"m\":{\"v\":\"58px\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[{\"action\":\"link\",\"tooltip_event\":\"click\",\"link_open_in\":\"_self\",\"link_follow\":\"nofollow\",\"link_type\":\"a\",\"image_link\":\"https:\\/\\/demo.casethemes.net\\/contio\\/about\\/\"}]},\"type\":\"text\",\"version\":\"6.6.21\"},\"5\":{\"text\":\"<a class=\\\"ct-video-button size2\\\" href=\\\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\\\"><i class=\\\"fac fac-play\\\"><\\/i>Video<\\/a>\",\"alias\":\"Text-5\",\"uid\":5,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"80px\",\"e\":true},\"n\":{\"v\":\"80px\",\"e\":true},\"t\":{\"v\":\"40px\",\"e\":true},\"m\":{\"v\":\"30px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"60px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":11,\"position\":\"absolute\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"0\",\"groupOrder\":11},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":\"50\"},\"n\":{\"v\":\"50\"},\"t\":{\"v\":\"50\"},\"m\":{\"v\":\"50\"}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"speed\":\"800\",\"start\":1500,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":800}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7200,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":1500},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"d\":{\"v\":\"16px\",\"e\":true},\"n\":{\"v\":\"16px\",\"e\":true},\"t\":{\"v\":\"16px\"},\"m\":{\"v\":\"16px\"}},\"lineHeight\":{\"d\":{\"v\":\"58px\",\"e\":true},\"n\":{\"v\":\"58px\",\"e\":true},\"t\":{\"v\":\"58px\"},\"m\":{\"v\":\"58px\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\",\"version\":\"6.6.21\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7,\"position\":\"absolute\"},\"version\":\"6.6.21\",\"text\":\"\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6,\"position\":\"absolute\"},\"version\":\"6.6.21\",\"text\":\"\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5,\"position\":\"absolute\"},\"version\":\"6.6.21\",\"text\":\"\"}}','{\"version\":\"6.6.21\"}'),(12,1,4,'{\"bg\":{\"type\":\"image\",\"image\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/DSC00817-3.jpg\",\"imageId\":3178,\"imageLib\":\"medialibrary\",\"imageWidth\":4192,\"imageHeight\":2795,\"imageRatio\":1.4998211091234348},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"slideChange\":{\"in\":{\"o\":0},\"out\":{\"a\":false},\"title\":\"*opacity* Fade In\",\"main\":\"basic\",\"group\":\"fade\",\"preset\":\"fade\"},\"nav\":{\"arrows\":{\"presets\":{\"bg-color\":\"rgba(0,0,0,0.5)\",\"bg-color-def\":false,\"bg-size\":\"40\",\"bg-size-def\":false,\"arrow-color\":\"#ffffff\",\"arrow-color-def\":false,\"arrow-size\":\"20\",\"arrow-size-def\":false,\"hover-bg-color\":\"#000000\",\"hover-bg-color-def\":false,\"left-icon\":\"\\\\e82c\",\"left-icon-def\":false,\"right-icon\":\"\\\\e82d\",\"right-icon-def\":false}}}}','{\"0\":{\"text\":\"#4 Providing the best value to global customers\",\"alias\":\"Text-0\",\"uid\":0,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"629px\",\"e\":true},\"n\":{\"v\":\"629px\"},\"t\":{\"v\":\"629px\"},\"m\":{\"v\":\"629px\"}},\"height\":{\"d\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-11px\",\"e\":true},\"n\":{\"v\":\"-11px\"},\"t\":{\"v\":\"-11px\"},\"m\":{\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"position\":\"absolute\",\"zIndex\":8},\"attributes\":{\"classes\":\"title-box-shadow\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"1\",\"groupOrder\":8},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":\"50\"},\"n\":{\"v\":\"50\"},\"t\":{\"v\":\"50\"},\"m\":{\"v\":\"50\"}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"ease\":\"circ.out\",\"speed\":\"800\",\"start\":800,\"startRelative\":800,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":800}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7400,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":800},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false,\"hoverFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Poppins\",\"fontSize\":{\"d\":{\"v\":\"48px\",\"e\":true},\"n\":{\"v\":\"48px\"},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"24px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"lineHeight\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"60px\"},\"t\":{\"v\":\"38px\",\"e\":true},\"m\":{\"v\":\"30px\",\"e\":true}},\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"type\":\"text\"},\"1\":{\"text\":\"\",\"alias\":\"Group-1\",\"uid\":1,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"631px\",\"e\":true},\"n\":{\"v\":\"631px\"},\"t\":{\"v\":\"631px\"},\"m\":{\"v\":\"631px\"}},\"height\":{\"d\":{\"v\":\"268px\",\"e\":true},\"n\":{\"v\":\"268px\"},\"t\":{\"v\":\"200px\",\"e\":true},\"m\":{\"v\":\"190px\",\"e\":true}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667},\"n\":{\"v\":1.6666666666666667},\"t\":{\"v\":1.6666666666666667},\"m\":{\"v\":1.6666666666666667}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"37px\",\"e\":true},\"n\":{\"v\":\"37px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"y\":{\"d\":{\"v\":\"118px\",\"e\":true},\"n\":{\"v\":\"118px\"},\"t\":{\"v\":\"118px\"},\"m\":{\"v\":\"130px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"position\":\"absolute\",\"zIndex\":10},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false},\"group\":{\"groupOrder\":10},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"opacity\":1},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":8700,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false,\"hoverFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"type\":\"group\"},\"2\":{\"text\":\"<span class=\\\"btn btn-preset3\\\"><i class=\\\"fac fac-envelope space-right\\\"><\\/i>Contact today<\\/span>\",\"alias\":\"Text-2\",\"uid\":2,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"position\":\"absolute\",\"zIndex\":9},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"1\",\"groupOrder\":9},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":50},\"n\":{\"v\":50},\"t\":{\"v\":50},\"m\":{\"v\":50}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"ease\":\"circ.out\",\"speed\":\"800\",\"start\":1000,\"startRelative\":1000,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":800}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7200,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":1000},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false,\"hoverFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"actions\":{\"action\":[{\"action\":\"link\",\"tooltip_event\":\"click\",\"link_open_in\":\"_self\",\"link_follow\":\"nofollow\",\"link_type\":\"a\",\"image_link\":\"https:\\/\\/fe2tech.com\\/contact\"}]},\"type\":\"button\"},\"4\":{\"text\":\"\",\"alias\":\"Shape-4\",\"uid\":4,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"3000px\",\"e\":true},\"n\":{\"v\":\"3000px\",\"e\":true},\"t\":{\"v\":\"3000px\"},\"m\":{\"v\":\"3000px\"}},\"height\":{\"d\":{\"v\":\"126px\",\"e\":true},\"n\":{\"v\":\"126px\",\"e\":true},\"t\":{\"v\":\"126px\"},\"m\":{\"v\":\"127px\",\"e\":true}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667},\"n\":{\"v\":1.6666666666666667},\"t\":{\"v\":1.6666666666666667},\"m\":{\"v\":1.6666666666666667}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"-45px\",\"e\":true},\"n\":{\"v\":\"-45px\",\"e\":true},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-1px\",\"e\":true},\"n\":{\"v\":\"-1px\",\"e\":true},\"t\":{\"v\":\"-1px\"},\"m\":{\"v\":\"-1px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"position\":\"absolute\",\"zIndex\":11},\"attributes\":{\"classes\":\"shap-slider-bottom\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":11},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"opacity\":1},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":8700,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false,\"hoverFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"backgroundColor\":\"#ffffff\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"visibility\":{\"m\":false},\"type\":\"shape\"},\"5\":{\"text\":\"<div class=\\\"ct-slider-nav\\\">\\n\\t<span class=\\\"slider-nav-left\\\"><i class=\\\"fac fac-angle-left\\\"><\\/i><\\/span>\\n\\t<span class=\\\"slider-nav-right\\\"><i class=\\\"fac fac-angle-right\\\"><\\/i><\\/span>\\n<\\/div>\",\"alias\":\"Text-5\",\"uid\":5,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"118px\",\"e\":true},\"n\":{\"v\":\"118px\"},\"t\":{\"v\":\"118px\"},\"m\":{\"v\":\"118px\"}},\"height\":{\"d\":{\"v\":\"53px\",\"e\":true},\"n\":{\"v\":\"53px\"},\"t\":{\"v\":\"53px\"},\"m\":{\"v\":\"53px\"}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"30px\"},\"m\":{\"v\":\"30px\"}},\"y\":{\"d\":{\"v\":\"101px\",\"e\":true},\"n\":{\"v\":\"101px\"},\"t\":{\"v\":\"101px\"},\"m\":{\"v\":\"101px\"}},\"horizontal\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"right\"},\"t\":{\"v\":\"right\"},\"m\":{\"v\":\"right\"}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"position\":\"absolute\",\"zIndex\":12},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":12},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":50},\"n\":{\"v\":50},\"t\":{\"v\":50},\"m\":{\"v\":50}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"speed\":1000,\"start\":800,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7500,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":800},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false,\"hoverFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"type\":\"text\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7,\"position\":\"absolute\"},\"version\":\"6.6.21\",\"text\":\"\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6,\"position\":\"absolute\"},\"version\":\"6.6.21\",\"text\":\"\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5,\"position\":\"absolute\"},\"version\":\"6.6.21\",\"text\":\"\"}}','{\"version\":\"6.7.20\"}'),(13,1,5,'{\"bg\":{\"type\":\"image\",\"image\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/20250222_154721.jpg\",\"imageId\":3174,\"imageLib\":\"medialibrary\",\"imageWidth\":2992,\"imageHeight\":2992,\"imageRatio\":1},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"slideChange\":{\"in\":{\"o\":0},\"out\":{\"a\":false},\"title\":\"*opacity* Fade In\",\"main\":\"basic\",\"group\":\"fade\",\"preset\":\"fade\"},\"nav\":{\"arrows\":{\"presets\":{\"bg-color\":\"rgba(0,0,0,0.5)\",\"bg-color-def\":false,\"bg-size\":\"40\",\"bg-size-def\":false,\"arrow-color\":\"#ffffff\",\"arrow-color-def\":false,\"arrow-size\":\"20\",\"arrow-size-def\":false,\"hover-bg-color\":\"#000000\",\"hover-bg-color-def\":false,\"left-icon\":\"\\\\e82c\",\"left-icon-def\":false,\"right-icon\":\"\\\\e82d\",\"right-icon-def\":false}}}}','{\"0\":{\"text\":\"\",\"alias\":\"Text-0\",\"uid\":0,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"629px\",\"e\":true},\"n\":{\"v\":\"629px\"},\"t\":{\"v\":\"629px\"},\"m\":{\"v\":\"629px\"}},\"height\":{\"d\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-11px\",\"e\":true},\"n\":{\"v\":\"-11px\"},\"t\":{\"v\":\"-11px\"},\"m\":{\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"position\":\"absolute\",\"zIndex\":8},\"attributes\":{\"classes\":\"title-box-shadow\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"1\",\"groupOrder\":8},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":\"50\"},\"n\":{\"v\":\"50\"},\"t\":{\"v\":\"50\"},\"m\":{\"v\":\"50\"}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"ease\":\"circ.out\",\"speed\":\"800\",\"start\":800,\"startRelative\":800,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":800}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7400,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":800},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false,\"hoverFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Poppins\",\"fontSize\":{\"d\":{\"v\":\"48px\",\"e\":true},\"n\":{\"v\":\"48px\"},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"24px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"lineHeight\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"60px\"},\"t\":{\"v\":\"38px\",\"e\":true},\"m\":{\"v\":\"30px\",\"e\":true}},\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"type\":\"text\"},\"1\":{\"text\":\"\",\"alias\":\"Group-1\",\"uid\":1,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"631px\",\"e\":true},\"n\":{\"v\":\"631px\"},\"t\":{\"v\":\"631px\"},\"m\":{\"v\":\"631px\"}},\"height\":{\"d\":{\"v\":\"268px\",\"e\":true},\"n\":{\"v\":\"268px\"},\"t\":{\"v\":\"200px\",\"e\":true},\"m\":{\"v\":\"190px\",\"e\":true}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667},\"n\":{\"v\":1.6666666666666667},\"t\":{\"v\":1.6666666666666667},\"m\":{\"v\":1.6666666666666667}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"37px\",\"e\":true},\"n\":{\"v\":\"37px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"y\":{\"d\":{\"v\":\"118px\",\"e\":true},\"n\":{\"v\":\"118px\"},\"t\":{\"v\":\"118px\"},\"m\":{\"v\":\"130px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"position\":\"absolute\",\"zIndex\":10},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false},\"group\":{\"groupOrder\":10},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"opacity\":1},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":8700,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false,\"hoverFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"type\":\"group\"},\"2\":{\"text\":\"<span class=\\\"btn btn-preset3\\\"><i class=\\\"fac fac-envelope space-right\\\"><\\/i>Contact today<\\/span>\",\"alias\":\"Text-2\",\"uid\":2,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"position\":\"absolute\",\"zIndex\":9},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"1\",\"groupOrder\":9},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":50},\"n\":{\"v\":50},\"t\":{\"v\":50},\"m\":{\"v\":50}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"ease\":\"circ.out\",\"speed\":\"800\",\"start\":1000,\"startRelative\":1000,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":800}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7200,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":1000},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false,\"hoverFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"actions\":{\"action\":[{\"action\":\"link\",\"tooltip_event\":\"click\",\"link_open_in\":\"_self\",\"link_follow\":\"nofollow\",\"link_type\":\"a\",\"image_link\":\"https:\\/\\/fe2tech.com\\/contact\"}]},\"type\":\"button\"},\"4\":{\"text\":\"\",\"alias\":\"Shape-4\",\"uid\":4,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"3000px\",\"e\":true},\"n\":{\"v\":\"3000px\",\"e\":true},\"t\":{\"v\":\"3000px\"},\"m\":{\"v\":\"3000px\"}},\"height\":{\"d\":{\"v\":\"126px\",\"e\":true},\"n\":{\"v\":\"126px\",\"e\":true},\"t\":{\"v\":\"126px\"},\"m\":{\"v\":\"127px\",\"e\":true}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667},\"n\":{\"v\":1.6666666666666667},\"t\":{\"v\":1.6666666666666667},\"m\":{\"v\":1.6666666666666667}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"-45px\",\"e\":true},\"n\":{\"v\":\"-45px\",\"e\":true},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-1px\",\"e\":true},\"n\":{\"v\":\"-1px\",\"e\":true},\"t\":{\"v\":\"-1px\"},\"m\":{\"v\":\"-1px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"position\":\"absolute\",\"zIndex\":11},\"attributes\":{\"classes\":\"shap-slider-bottom\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":11},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"opacity\":1},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":8700,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false,\"hoverFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"backgroundColor\":\"#ffffff\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"visibility\":{\"m\":false},\"type\":\"shape\"},\"5\":{\"text\":\"<div class=\\\"ct-slider-nav\\\">\\n\\t<span class=\\\"slider-nav-left\\\"><i class=\\\"fac fac-angle-left\\\"><\\/i><\\/span>\\n\\t<span class=\\\"slider-nav-right\\\"><i class=\\\"fac fac-angle-right\\\"><\\/i><\\/span>\\n<\\/div>\",\"alias\":\"Text-5\",\"uid\":5,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"118px\",\"e\":true},\"n\":{\"v\":\"118px\"},\"t\":{\"v\":\"118px\"},\"m\":{\"v\":\"118px\"}},\"height\":{\"d\":{\"v\":\"53px\",\"e\":true},\"n\":{\"v\":\"53px\"},\"t\":{\"v\":\"53px\"},\"m\":{\"v\":\"53px\"}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"30px\"},\"m\":{\"v\":\"30px\"}},\"y\":{\"d\":{\"v\":\"101px\",\"e\":true},\"n\":{\"v\":\"101px\"},\"t\":{\"v\":\"101px\"},\"m\":{\"v\":\"101px\"}},\"horizontal\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"right\"},\"t\":{\"v\":\"right\"},\"m\":{\"v\":\"right\"}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"position\":\"absolute\",\"zIndex\":12},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":12},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":50},\"n\":{\"v\":50},\"t\":{\"v\":50},\"m\":{\"v\":50}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"speed\":1000,\"start\":800,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7500,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":800},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false,\"hoverFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"type\":\"text\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7,\"position\":\"absolute\"},\"version\":\"6.6.21\",\"text\":\"\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6,\"position\":\"absolute\"},\"version\":\"6.6.21\",\"text\":\"\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5,\"position\":\"absolute\"},\"version\":\"6.6.21\",\"text\":\"\"}}','{\"version\":\"6.7.20\"}'),(14,1,6,'{\"bg\":{\"type\":\"image\",\"image\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/Finished-CNC-milled-parts-showcasing-the-precision-and-versatility-of-the-process.png\",\"imageId\":2589,\"imageLib\":\"medialibrary\",\"imageWidth\":512,\"imageHeight\":512,\"imageRatio\":1},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"publish\":{\"state\":\"unpublished\"},\"slideChange\":{\"in\":{\"o\":0},\"out\":{\"a\":false},\"title\":\"*opacity* Fade In\",\"main\":\"basic\",\"group\":\"fade\",\"preset\":\"fade\"},\"nav\":{\"arrows\":{\"presets\":{\"bg-color\":\"rgba(0,0,0,0.5)\",\"bg-color-def\":false,\"bg-size\":\"40\",\"bg-size-def\":false,\"arrow-color\":\"#ffffff\",\"arrow-color-def\":false,\"arrow-size\":\"20\",\"arrow-size-def\":false,\"hover-bg-color\":\"#000000\",\"hover-bg-color-def\":false,\"left-icon\":\"\\\\e82c\",\"left-icon-def\":false,\"right-icon\":\"\\\\e82d\",\"right-icon-def\":false}}}}','{\"0\":{\"text\":\"\",\"alias\":\"Text-0\",\"uid\":0,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"629px\",\"e\":true},\"n\":{\"v\":\"629px\"},\"t\":{\"v\":\"629px\"},\"m\":{\"v\":\"629px\"}},\"height\":{\"d\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-11px\",\"e\":true},\"n\":{\"v\":\"-11px\"},\"t\":{\"v\":\"-11px\"},\"m\":{\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"position\":\"absolute\",\"zIndex\":8},\"attributes\":{\"classes\":\"title-box-shadow\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"1\",\"groupOrder\":8},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":\"50\"},\"n\":{\"v\":\"50\"},\"t\":{\"v\":\"50\"},\"m\":{\"v\":\"50\"}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"ease\":\"circ.out\",\"speed\":\"800\",\"start\":800,\"startRelative\":800,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":800}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7400,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":800},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false,\"hoverFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Poppins\",\"fontSize\":{\"d\":{\"v\":\"48px\",\"e\":true},\"n\":{\"v\":\"48px\"},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"24px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"lineHeight\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"60px\"},\"t\":{\"v\":\"38px\",\"e\":true},\"m\":{\"v\":\"30px\",\"e\":true}},\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"type\":\"text\"},\"1\":{\"text\":\"\",\"alias\":\"Group-1\",\"uid\":1,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"631px\",\"e\":true},\"n\":{\"v\":\"631px\"},\"t\":{\"v\":\"631px\"},\"m\":{\"v\":\"631px\"}},\"height\":{\"d\":{\"v\":\"268px\",\"e\":true},\"n\":{\"v\":\"268px\"},\"t\":{\"v\":\"200px\",\"e\":true},\"m\":{\"v\":\"190px\",\"e\":true}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667},\"n\":{\"v\":1.6666666666666667},\"t\":{\"v\":1.6666666666666667},\"m\":{\"v\":1.6666666666666667}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"37px\",\"e\":true},\"n\":{\"v\":\"37px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"y\":{\"d\":{\"v\":\"118px\",\"e\":true},\"n\":{\"v\":\"118px\"},\"t\":{\"v\":\"118px\"},\"m\":{\"v\":\"130px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"position\":\"absolute\",\"zIndex\":10},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false},\"group\":{\"groupOrder\":10},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"opacity\":1},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":8700,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false,\"hoverFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"type\":\"group\"},\"2\":{\"text\":\"<span class=\\\"btn btn-preset3\\\"><i class=\\\"fac fac-envelope space-right\\\"><\\/i>Contact today<\\/span>\",\"alias\":\"Text-2\",\"uid\":2,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"position\":\"absolute\",\"zIndex\":9},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"1\",\"groupOrder\":9},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":50},\"n\":{\"v\":50},\"t\":{\"v\":50},\"m\":{\"v\":50}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"ease\":\"circ.out\",\"speed\":\"800\",\"start\":1000,\"startRelative\":1000,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":800}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7200,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":1000},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false,\"hoverFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"actions\":{\"action\":[{\"action\":\"link\",\"tooltip_event\":\"click\",\"link_open_in\":\"_self\",\"link_follow\":\"nofollow\",\"link_type\":\"a\",\"image_link\":\"https:\\/\\/fe2tech.com\\/contact\"}]},\"type\":\"button\"},\"4\":{\"text\":\"\",\"alias\":\"Shape-4\",\"uid\":4,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"3000px\",\"e\":true},\"n\":{\"v\":\"3000px\",\"e\":true},\"t\":{\"v\":\"3000px\"},\"m\":{\"v\":\"3000px\"}},\"height\":{\"d\":{\"v\":\"126px\",\"e\":true},\"n\":{\"v\":\"126px\",\"e\":true},\"t\":{\"v\":\"126px\"},\"m\":{\"v\":\"127px\",\"e\":true}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667},\"n\":{\"v\":1.6666666666666667},\"t\":{\"v\":1.6666666666666667},\"m\":{\"v\":1.6666666666666667}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"-45px\",\"e\":true},\"n\":{\"v\":\"-45px\",\"e\":true},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-1px\",\"e\":true},\"n\":{\"v\":\"-1px\",\"e\":true},\"t\":{\"v\":\"-1px\"},\"m\":{\"v\":\"-1px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"position\":\"absolute\",\"zIndex\":11},\"attributes\":{\"classes\":\"shap-slider-bottom\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":11},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"opacity\":1},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":8700,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false,\"hoverFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"backgroundColor\":\"#ffffff\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"visibility\":{\"m\":false},\"type\":\"shape\"},\"5\":{\"text\":\"<div class=\\\"ct-slider-nav\\\">\\n\\t<span class=\\\"slider-nav-left\\\"><i class=\\\"fac fac-angle-left\\\"><\\/i><\\/span>\\n\\t<span class=\\\"slider-nav-right\\\"><i class=\\\"fac fac-angle-right\\\"><\\/i><\\/span>\\n<\\/div>\",\"alias\":\"Text-5\",\"uid\":5,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"118px\",\"e\":true},\"n\":{\"v\":\"118px\"},\"t\":{\"v\":\"118px\"},\"m\":{\"v\":\"118px\"}},\"height\":{\"d\":{\"v\":\"53px\",\"e\":true},\"n\":{\"v\":\"53px\"},\"t\":{\"v\":\"53px\"},\"m\":{\"v\":\"53px\"}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"30px\"},\"m\":{\"v\":\"30px\"}},\"y\":{\"d\":{\"v\":\"101px\",\"e\":true},\"n\":{\"v\":\"101px\"},\"t\":{\"v\":\"101px\"},\"m\":{\"v\":\"101px\"}},\"horizontal\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"right\"},\"t\":{\"v\":\"right\"},\"m\":{\"v\":\"right\"}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"position\":\"absolute\",\"zIndex\":12},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":12},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":50},\"n\":{\"v\":50},\"t\":{\"v\":50},\"m\":{\"v\":50}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"speed\":1000,\"start\":800,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7500,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":800},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false,\"hoverFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"type\":\"text\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7,\"position\":\"absolute\"},\"version\":\"6.6.21\",\"text\":\"\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6,\"position\":\"absolute\"},\"version\":\"6.6.21\",\"text\":\"\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5,\"position\":\"absolute\"},\"version\":\"6.6.21\",\"text\":\"\"}}','{\"version\":\"6.7.20\"}'),(15,1,7,'{\"bg\":{\"type\":\"image\",\"image\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363746762_6241ac4c6625581b5db9b24a1ee05f68.jpg\",\"imageId\":2590,\"imageLib\":\"medialibrary\",\"imageWidth\":1280,\"imageHeight\":960,\"imageRatio\":1.3333333333333333},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"publish\":{\"state\":\"unpublished\"},\"slideChange\":{\"in\":{\"o\":0},\"out\":{\"a\":false},\"title\":\"*opacity* Fade In\",\"main\":\"basic\",\"group\":\"fade\",\"preset\":\"fade\"},\"nav\":{\"arrows\":{\"presets\":{\"bg-color\":\"rgba(0,0,0,0.5)\",\"bg-color-def\":false,\"bg-size\":\"40\",\"bg-size-def\":false,\"arrow-color\":\"#ffffff\",\"arrow-color-def\":false,\"arrow-size\":\"20\",\"arrow-size-def\":false,\"hover-bg-color\":\"#000000\",\"hover-bg-color-def\":false,\"left-icon\":\"\\\\e82c\",\"left-icon-def\":false,\"right-icon\":\"\\\\e82d\",\"right-icon-def\":false}}}}','{\"0\":{\"text\":\"\",\"alias\":\"Text-0\",\"uid\":0,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"629px\",\"e\":true},\"n\":{\"v\":\"629px\"},\"t\":{\"v\":\"629px\"},\"m\":{\"v\":\"629px\"}},\"height\":{\"d\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-11px\",\"e\":true},\"n\":{\"v\":\"-11px\"},\"t\":{\"v\":\"-11px\"},\"m\":{\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"position\":\"absolute\",\"zIndex\":8},\"attributes\":{\"classes\":\"title-box-shadow\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"1\",\"groupOrder\":8},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":\"50\"},\"n\":{\"v\":\"50\"},\"t\":{\"v\":\"50\"},\"m\":{\"v\":\"50\"}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"ease\":\"circ.out\",\"speed\":\"800\",\"start\":800,\"startRelative\":800,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":800}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7400,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":800},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false,\"hoverFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Poppins\",\"fontSize\":{\"d\":{\"v\":\"48px\",\"e\":true},\"n\":{\"v\":\"48px\"},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"24px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"lineHeight\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"60px\"},\"t\":{\"v\":\"38px\",\"e\":true},\"m\":{\"v\":\"30px\",\"e\":true}},\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"type\":\"text\"},\"1\":{\"text\":\"\",\"alias\":\"Group-1\",\"uid\":1,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"631px\",\"e\":true},\"n\":{\"v\":\"631px\"},\"t\":{\"v\":\"631px\"},\"m\":{\"v\":\"631px\"}},\"height\":{\"d\":{\"v\":\"268px\",\"e\":true},\"n\":{\"v\":\"268px\"},\"t\":{\"v\":\"200px\",\"e\":true},\"m\":{\"v\":\"190px\",\"e\":true}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667},\"n\":{\"v\":1.6666666666666667},\"t\":{\"v\":1.6666666666666667},\"m\":{\"v\":1.6666666666666667}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"37px\",\"e\":true},\"n\":{\"v\":\"37px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"y\":{\"d\":{\"v\":\"118px\",\"e\":true},\"n\":{\"v\":\"118px\"},\"t\":{\"v\":\"118px\"},\"m\":{\"v\":\"130px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"position\":\"absolute\",\"zIndex\":10},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false},\"group\":{\"groupOrder\":10},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"opacity\":1},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":8700,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false,\"hoverFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"type\":\"group\"},\"2\":{\"text\":\"<span class=\\\"btn btn-preset3\\\"><i class=\\\"fac fac-envelope space-right\\\"><\\/i>Contact today<\\/span>\",\"alias\":\"Text-2\",\"uid\":2,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"position\":\"absolute\",\"zIndex\":9},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"1\",\"groupOrder\":9},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":50},\"n\":{\"v\":50},\"t\":{\"v\":50},\"m\":{\"v\":50}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"ease\":\"circ.out\",\"speed\":\"800\",\"start\":1000,\"startRelative\":1000,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":800}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7200,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":1000},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false,\"hoverFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"actions\":{\"action\":[{\"action\":\"link\",\"tooltip_event\":\"click\",\"link_open_in\":\"_self\",\"link_follow\":\"nofollow\",\"link_type\":\"a\",\"image_link\":\"https:\\/\\/fe2tech.com\\/contact\"}]},\"type\":\"button\"},\"4\":{\"text\":\"\",\"alias\":\"Shape-4\",\"uid\":4,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"3000px\",\"e\":true},\"n\":{\"v\":\"3000px\",\"e\":true},\"t\":{\"v\":\"3000px\"},\"m\":{\"v\":\"3000px\"}},\"height\":{\"d\":{\"v\":\"126px\",\"e\":true},\"n\":{\"v\":\"126px\",\"e\":true},\"t\":{\"v\":\"126px\"},\"m\":{\"v\":\"127px\",\"e\":true}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667},\"n\":{\"v\":1.6666666666666667},\"t\":{\"v\":1.6666666666666667},\"m\":{\"v\":1.6666666666666667}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"-45px\",\"e\":true},\"n\":{\"v\":\"-45px\",\"e\":true},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-1px\",\"e\":true},\"n\":{\"v\":\"-1px\",\"e\":true},\"t\":{\"v\":\"-1px\"},\"m\":{\"v\":\"-1px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"position\":\"absolute\",\"zIndex\":11},\"attributes\":{\"classes\":\"shap-slider-bottom\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":11},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"opacity\":1},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":8700,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false,\"hoverFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"backgroundColor\":\"#ffffff\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"visibility\":{\"m\":false},\"type\":\"shape\"},\"5\":{\"text\":\"<div class=\\\"ct-slider-nav\\\">\\n\\t<span class=\\\"slider-nav-left\\\"><i class=\\\"fac fac-angle-left\\\"><\\/i><\\/span>\\n\\t<span class=\\\"slider-nav-right\\\"><i class=\\\"fac fac-angle-right\\\"><\\/i><\\/span>\\n<\\/div>\",\"alias\":\"Text-5\",\"uid\":5,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"118px\",\"e\":true},\"n\":{\"v\":\"118px\"},\"t\":{\"v\":\"118px\"},\"m\":{\"v\":\"118px\"}},\"height\":{\"d\":{\"v\":\"53px\",\"e\":true},\"n\":{\"v\":\"53px\"},\"t\":{\"v\":\"53px\"},\"m\":{\"v\":\"53px\"}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"30px\"},\"m\":{\"v\":\"30px\"}},\"y\":{\"d\":{\"v\":\"101px\",\"e\":true},\"n\":{\"v\":\"101px\"},\"t\":{\"v\":\"101px\"},\"m\":{\"v\":\"101px\"}},\"horizontal\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"right\"},\"t\":{\"v\":\"right\"},\"m\":{\"v\":\"right\"}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"position\":\"absolute\",\"zIndex\":12},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":12},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":50},\"n\":{\"v\":50},\"t\":{\"v\":50},\"m\":{\"v\":50}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"speed\":1000,\"start\":800,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7500,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":800},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false,\"hoverFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"type\":\"text\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7,\"position\":\"absolute\"},\"version\":\"6.6.21\",\"text\":\"\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6,\"position\":\"absolute\"},\"version\":\"6.6.21\",\"text\":\"\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5,\"position\":\"absolute\"},\"version\":\"6.6.21\",\"text\":\"\"}}','{\"version\":\"6.7.20\"}');
/*!40000 ALTER TABLE `wp_revslider_slides` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_revslider_slides7`
--

DROP TABLE IF EXISTS `wp_revslider_slides7`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_revslider_slides7` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `slider_id` int(11) NOT NULL,
  `slide_order` int(11) NOT NULL,
  `params` longtext NOT NULL,
  `layers` longtext NOT NULL,
  `settings` text NOT NULL DEFAULT '',
  `static` varchar(191) NOT NULL DEFAULT '',
  PRIMARY KEY (`id`),
  KEY `slider_id_index` (`slider_id`)
) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_revslider_slides7`
--

LOCK TABLES `wp_revslider_slides7` WRITE;
/*!40000 ALTER TABLE `wp_revslider_slides7` DISABLE KEYS */;
INSERT INTO `wp_revslider_slides7` VALUES (1,1,1,'{\"addOns\":[],\"id\":1,\"version\":\"7.0.0\",\"actions\":[{\"a\":\"link\",\"evt\":\"click\",\"target\":\"_self\",\"flw\":\"nofollow\",\"ltype\":\"a\",\"link\":\"https:\\/\\/fe2tech.com\\/contact\",\"src\":[2]}],\"title\":\"\",\"parentId\":null,\"language\":\"default\",\"order\":1,\"thumb\":{\"src\":\"\",\"srcId\":\"\",\"admin\":\"\",\"adminId\":\"\",\"dimension\":\"slider\",\"default\":{\"image\":{\"src\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/DSC00842-2.jpg\",\"repeat\":\"\",\"size\":\"cover\",\"pos\":{\"x\":\"50%\",\"y\":\"100%\"}}}},\"description\":\"\",\"attr\":{\"class\":\"\",\"data\":\"\",\"id\":\"\",\"a\":\"\",\"aO\":\"ml\",\"t\":\"\",\"tO\":\"\",\"deepLink\":\"\",\"attr\":\"\"},\"publish\":{\"from\":\"\",\"to\":\"\",\"state\":\"\"},\"slideshow\":{\"stop\":false,\"len\":\"default\",\"hal\":0,\"hom\":false,\"hfn\":false},\"loop\":{\"u\":false,\"r\":-1,\"s\":0,\"e\":99999}}','{\"0\":{\"id\":0,\"alias\":\"Text-0\",\"content\":{\"text\":\"#1 Commitment to product quality for customers.\"},\"size\":{\"w\":[\"629px\",\"629px\",\"629px\",\"629px\",\"629px\"],\"h\":[\"#a\",\"auto\",\"auto\",\"auto\",\"auto\"],\"minW\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"minH\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pos\":{\"x\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"y\":[\"-11px\",\"-11px\",\"-11px\",\"-11px\",\"auto\"],\"pos\":\"absolute\",\"float\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"clear\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pid\":\"1\",\"zIndex\":8,\"order\":9,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"vA\":\"top\",\"bg\":{\"color\":{\"orig\":\"transparent\",\"type\":\"solid\",\"string\":\"transparent\"}},\"attr\":{\"aO\":\"ml\",\"class\":\"title-box-shadow\",\"tO\":\"ml\"},\"tl\":{\"in\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":0,\"f\":0,\"e\":\"circ.out\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[\"50\",\"50\",\"50\",\"50\",\"50\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1},{\"t\":800,\"d\":800,\"f\":800,\"e\":\"circ.out\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"xRe\":0,\"yRe\":0,\"off\":1}]}},\"out\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"n\",\"x\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"y\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1}]}}},\"p\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"m\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"color\":[\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\"],\"font\":{\"family\":\"Poppins\",\"size\":[\"48px\",\"48px\",\"48px\",\"30px\",\"24px\"],\"weight\":[\"700\",\"700\",\"700\",\"700\",\"700\"],\"ls\":[0,0,0,0,0]},\"lh\":[\"60px\",\"60px\",\"60px\",\"38px\",\"30px\"],\"type\":\"text\"},\"1\":{\"fluid\":{\"sp\":true},\"id\":1,\"alias\":\"Group-1\",\"subtype\":\"group\",\"size\":{\"w\":[\"631px\",\"631px\",\"631px\",\"631px\",\"631px\"],\"h\":[\"268px\",\"268px\",\"268px\",\"200px\",\"190px\"],\"minW\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"minH\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pos\":{\"x\":[\"37px\",\"37px\",\"37px\",\"20px\",\"20px\"],\"y\":[\"118px\",\"118px\",\"118px\",\"118px\",\"130px\"],\"pos\":\"absolute\",\"float\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"clear\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"zIndex\":10,\"order\":10,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"vA\":\"top\",\"bg\":{\"color\":{\"orig\":\"transparent\",\"type\":\"solid\",\"string\":\"transparent\"}},\"attr\":{\"aO\":\"ml\",\"tO\":\"ml\"},\"tl\":{\"in\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":0,\"f\":0,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"xRe\":0,\"yRe\":0,\"off\":0},{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"xRe\":0,\"yRe\":0,\"off\":0}]}},\"out\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"n\",\"x\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"y\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":0}]}}},\"p\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"m\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"lh\":[\"#a\",25,\"20\",\"15\",\"9\"],\"type\":\"container\"},\"2\":{\"listen\":[\"click\"],\"id\":2,\"alias\":\"Text-2\",\"subtype\":\"button\",\"content\":{\"text\":\"<span class=\\\"btn btn-preset3\\\"><i class=\\\"fac fac-envelope space-right\\\"><\\/i>Contact today<\\/span>\"},\"size\":{\"w\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"h\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"minW\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"minH\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pos\":{\"x\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"y\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"v\":[\"bottom\",\"bottom\",\"bottom\",\"bottom\",\"bottom\"],\"pos\":\"absolute\",\"float\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"clear\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pid\":\"1\",\"zIndex\":9,\"order\":8,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"vA\":\"top\",\"bg\":{\"color\":{\"orig\":\"transparent\",\"type\":\"solid\",\"string\":\"transparent\"}},\"attr\":{\"aO\":\"ml\",\"tO\":\"ml\"},\"tl\":{\"in\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":0,\"f\":0,\"e\":\"circ.out\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[50,50,50,50,50],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1},{\"t\":1000,\"d\":800,\"f\":800,\"e\":\"circ.out\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"xRe\":0,\"yRe\":0,\"off\":1}]}},\"out\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"n\",\"x\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"y\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1}]}}},\"p\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"m\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"color\":[\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\"],\"font\":{\"size\":[\"#a\",20,\"16\",\"12\",\"7\"],\"weight\":[400,400,400,400,400],\"ls\":[0,0,0,0,0]},\"lh\":[\"#a\",25,\"20\",\"15\",\"9\"],\"tag\":\"a\",\"target\":\"_self\",\"href\":\"https:\\/\\/fe2tech.com\\/contact\",\"rel\":\"nofollow\",\"type\":\"text\"},\"4\":{\"id\":4,\"alias\":\"Shape-4\",\"size\":{\"w\":[\"3000px\",\"3000px\",\"3000px\",\"3000px\",\"3000px\"],\"h\":[\"126px\",\"126px\",\"126px\",\"126px\",\"127px\"],\"minW\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"minH\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pos\":{\"x\":[\"-45px\",\"-45px\",\"-45px\",\"30px\",\"auto\"],\"y\":[\"-1px\",\"-1px\",\"-1px\",\"-1px\",\"-1px\"],\"v\":[\"bottom\",\"bottom\",\"bottom\",\"bottom\",\"bottom\"],\"pos\":\"absolute\",\"float\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"clear\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"zIndex\":11,\"order\":11,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"vA\":\"top\",\"bg\":{\"color\":{\"type\":\"solid\",\"orig\":\"#ffffff\",\"string\":\"rgba(255, 255, 255, 1)\"}},\"attr\":{\"aO\":\"ml\",\"class\":\"shap-slider-bottom\",\"tO\":\"ml\"},\"tl\":{\"in\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":0,\"f\":0,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"xRe\":0,\"yRe\":0,\"off\":0},{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"xRe\":0,\"yRe\":0,\"off\":0}]}},\"out\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"n\",\"x\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"y\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":0}]}}},\"vis\":[true,true,true,true,false],\"viSH\":false,\"viOC\":false,\"p\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"m\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"type\":\"shape\"},\"5\":{\"id\":5,\"alias\":\"Text-5\",\"content\":{\"text\":\"<div class=\\\"ct-slider-nav\\\">\\n\\t<span class=\\\"slider-nav-left\\\"><i class=\\\"fac fac-angle-left\\\"><\\/i><\\/span>\\n\\t<span class=\\\"slider-nav-right\\\"><i class=\\\"fac fac-angle-right\\\"><\\/i><\\/span>\\n<\\/div>\"},\"size\":{\"w\":[\"118px\",\"118px\",\"118px\",\"118px\",\"118px\"],\"h\":[\"53px\",\"53px\",\"53px\",\"53px\",\"53px\"],\"minW\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"minH\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pos\":{\"x\":[\"30px\",\"30px\",\"30px\",\"30px\",\"30px\"],\"y\":[\"101px\",\"101px\",\"101px\",\"101px\",\"101px\"],\"h\":[\"right\",\"right\",\"right\",\"right\",\"right\"],\"v\":[\"bottom\",\"bottom\",\"bottom\",\"bottom\",\"bottom\"],\"pos\":\"absolute\",\"float\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"clear\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"zIndex\":12,\"order\":12,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"vA\":\"top\",\"bg\":{\"color\":{\"orig\":\"transparent\",\"type\":\"solid\",\"string\":\"transparent\"}},\"attr\":{\"aO\":\"ml\",\"tO\":\"ml\"},\"tl\":{\"in\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":0,\"f\":0,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[50,50,50,50,50],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":0},{\"t\":800,\"d\":1000,\"f\":1000,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"xRe\":0,\"yRe\":0,\"off\":0}]}},\"out\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"n\",\"x\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"y\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":0}]}}},\"p\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"m\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"color\":[\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\"],\"font\":{\"size\":[\"#a\",20,\"16\",\"12\",\"7\"],\"weight\":[400,400,400,400,400],\"ls\":[0,0,0,0,0]},\"lh\":[\"#a\",25,\"20\",\"15\",\"9\"],\"type\":\"text\"},\"6\":{\"rTo\":\"slide\",\"id\":6,\"alias\":\"Slide BG Layer\",\"subtype\":\"slidebg\",\"size\":{\"cMode\":\"cover\"},\"pos\":{\"h\":[\"center\",\"center\",\"center\",\"center\",\"center\"],\"v\":[\"center\",\"center\",\"center\",\"center\",\"center\"],\"pos\":\"absolute\"},\"zIndex\":0,\"order\":0,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"bg\":{\"image\":{\"ratio\":1.5,\"src\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/DSC00842-2.jpg\",\"lib\":\"medialibrary\",\"lib_id\":3177,\"lib_size\":\"\",\"fromStream\":false,\"streamType\":\"gallery\",\"pos\":{\"x\":\"50%\",\"y\":\"100%\"},\"repeat\":\"\",\"size\":\"cover\",\"sizeVal\":\"100%\",\"seo\":false}},\"tl\":{\"in\":{\"bg\":{\"ms\":1000,\"rnd\":false,\"temp\":{\"t\":\"*opacity* Fade In\",\"p\":\"fade\",\"m\":\"basic\",\"g\":\"fade\"},\"addOns\":[],\"in\":{\"o\":0},\"out\":{\"a\":false}}}},\"type\":\"shape\"}}','{\"version\":\"6.7.20\"}',''),(2,1,2,'{\"addOns\":[],\"id\":2,\"version\":\"7.0.0\",\"actions\":[{\"a\":\"link\",\"evt\":\"click\",\"target\":\"_self\",\"flw\":\"nofollow\",\"ltype\":\"a\",\"link\":\"https:\\/\\/fe2tech.com\\/contact\",\"src\":[2]}],\"title\":\"\",\"parentId\":null,\"language\":\"default\",\"order\":2,\"thumb\":{\"src\":\"\",\"srcId\":\"\",\"admin\":\"\",\"adminId\":\"\",\"dimension\":\"slider\",\"default\":{\"image\":{\"src\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/DSC00846.jpg\",\"repeat\":\"\",\"size\":\"cover\",\"pos\":{\"x\":\"50%\",\"y\":\"100%\"}}}},\"description\":\"\",\"attr\":{\"class\":\"\",\"data\":\"\",\"id\":\"\",\"a\":\"\",\"aO\":\"ml\",\"t\":\"\",\"tO\":\"\",\"deepLink\":\"\",\"attr\":\"\"},\"publish\":{\"from\":\"\",\"to\":\"\",\"state\":\"\"},\"slideshow\":{\"stop\":false,\"len\":\"default\",\"hal\":0,\"hom\":false,\"hfn\":false},\"loop\":{\"u\":false,\"r\":-1,\"s\":0,\"e\":99999}}','{\"0\":{\"id\":0,\"alias\":\"Text-0\",\"content\":{\"text\":\"#2 Meeting the fastest delivery timelines\"},\"size\":{\"w\":[\"557px\",\"557px\",\"557px\",\"557px\",\"557px\"],\"h\":[\"#a\",\"auto\",\"auto\",\"auto\",\"auto\"],\"minW\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"minH\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pos\":{\"x\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"y\":[\"-12px\",\"-12px\",\"-12px\",\"-12px\",\"auto\"],\"pos\":\"absolute\",\"float\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"clear\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pid\":\"1\",\"zIndex\":8,\"order\":9,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"vA\":\"top\",\"bg\":{\"color\":{\"orig\":\"transparent\",\"type\":\"solid\",\"string\":\"transparent\"}},\"attr\":{\"aO\":\"ml\",\"class\":\"title-box-shadow\",\"tO\":\"ml\"},\"tl\":{\"in\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":0,\"f\":0,\"e\":\"circ.out\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[\"50\",\"50\",\"50\",\"50\",\"50\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1},{\"t\":800,\"d\":800,\"f\":800,\"e\":\"circ.out\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"xRe\":0,\"yRe\":0,\"off\":1}]}},\"out\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"n\",\"x\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"y\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1}]}}},\"p\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"m\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"color\":[\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\"],\"font\":{\"family\":\"Poppins\",\"size\":[\"48px\",\"48px\",\"48px\",\"30px\",\"24px\"],\"weight\":[\"700\",\"700\",\"700\",\"700\",\"700\"],\"ls\":[0,0,0,0,0]},\"lh\":[\"60px\",\"60px\",\"60px\",\"38px\",\"30px\"],\"type\":\"text\"},\"1\":{\"fluid\":{\"sp\":true},\"id\":1,\"alias\":\"Group-1\",\"subtype\":\"group\",\"size\":{\"w\":[\"558px\",\"558px\",\"558px\",\"558px\",\"558px\"],\"h\":[\"268px\",\"268px\",\"268px\",\"200px\",\"190px\"],\"minW\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"minH\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pos\":{\"x\":[\"30px\",\"30px\",\"30px\",\"20px\",\"20px\"],\"y\":[\"120px\",\"120px\",\"120px\",\"120px\",\"130px\"],\"pos\":\"absolute\",\"float\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"clear\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"zIndex\":10,\"order\":10,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"vA\":\"top\",\"bg\":{\"color\":{\"orig\":\"transparent\",\"type\":\"solid\",\"string\":\"transparent\"}},\"attr\":{\"aO\":\"ml\",\"tO\":\"ml\"},\"tl\":{\"in\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":0,\"f\":0,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"xRe\":0,\"yRe\":0,\"off\":0},{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"xRe\":0,\"yRe\":0,\"off\":0}]}},\"out\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"n\",\"x\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"y\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":0}]}}},\"p\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"m\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"lh\":[\"#a\",25,\"20\",\"15\",\"9\"],\"type\":\"container\"},\"2\":{\"listen\":[\"click\"],\"id\":2,\"alias\":\"Text-2\",\"content\":{\"text\":\"<span class=\\\"btn btn-preset3\\\"><i class=\\\"fac fac-envelope space-right\\\"><\\/i>Contact today<\\/span>\"},\"size\":{\"w\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"h\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"minW\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"minH\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pos\":{\"x\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"y\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"v\":[\"bottom\",\"bottom\",\"bottom\",\"bottom\",\"bottom\"],\"pos\":\"absolute\",\"float\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"clear\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pid\":\"1\",\"zIndex\":9,\"order\":8,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"vA\":\"top\",\"bg\":{\"color\":{\"orig\":\"transparent\",\"type\":\"solid\",\"string\":\"transparent\"}},\"attr\":{\"aO\":\"ml\",\"tO\":\"ml\"},\"tl\":{\"in\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":0,\"f\":0,\"e\":\"circ.out\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[50,50,50,50,50],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1},{\"t\":1000,\"d\":800,\"f\":800,\"e\":\"circ.out\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"xRe\":0,\"yRe\":0,\"off\":1}]}},\"out\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"n\",\"x\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"y\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1}]}}},\"p\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"m\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"color\":[\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\"],\"font\":{\"size\":[\"#a\",20,\"16\",\"12\",\"7\"],\"weight\":[400,400,400,400,400],\"ls\":[0,0,0,0,0]},\"lh\":[\"#a\",25,\"20\",\"15\",\"9\"],\"tag\":\"a\",\"target\":\"_self\",\"href\":\"https:\\/\\/fe2tech.com\\/contact\",\"rel\":\"nofollow\",\"type\":\"text\"},\"4\":{\"id\":4,\"alias\":\"Shape-4\",\"size\":{\"w\":[\"3000px\",\"3000px\",\"3000px\",\"3000px\",\"3000px\"],\"h\":[\"126px\",\"126px\",\"126px\",\"126px\",\"127px\"],\"minW\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"minH\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pos\":{\"x\":[\"-45px\",\"-45px\",\"-45px\",\"30px\",\"auto\"],\"y\":[\"-1px\",\"-1px\",\"-1px\",\"-1px\",\"-1px\"],\"v\":[\"bottom\",\"bottom\",\"bottom\",\"bottom\",\"bottom\"],\"pos\":\"absolute\",\"float\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"clear\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"zIndex\":11,\"order\":11,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"vA\":\"top\",\"bg\":{\"color\":{\"type\":\"solid\",\"orig\":\"#ffffff\",\"string\":\"rgba(255, 255, 255, 1)\"}},\"attr\":{\"aO\":\"ml\",\"class\":\"shap-slider-bottom\",\"tO\":\"ml\"},\"tl\":{\"in\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":0,\"f\":0,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"xRe\":0,\"yRe\":0,\"off\":0},{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"xRe\":0,\"yRe\":0,\"off\":0}]}},\"out\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"n\",\"x\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"y\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":0}]}}},\"vis\":[true,true,true,true,false],\"viSH\":false,\"viOC\":false,\"p\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"m\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"type\":\"shape\"},\"5\":{\"id\":5,\"alias\":\"Text-5\",\"content\":{\"text\":\"<div class=\\\"ct-slider-nav\\\">\\n\\t<span class=\\\"slider-nav-left\\\"><i class=\\\"fac fac-angle-left\\\"><\\/i><\\/span>\\n\\t<span class=\\\"slider-nav-right\\\"><i class=\\\"fac fac-angle-right\\\"><\\/i><\\/span>\\n<\\/div>\"},\"size\":{\"w\":[\"118px\",\"118px\",\"118px\",\"118px\",\"118px\"],\"h\":[\"53px\",\"53px\",\"53px\",\"53px\",\"53px\"],\"minW\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"minH\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pos\":{\"x\":[\"30px\",\"30px\",\"30px\",\"30px\",\"30px\"],\"y\":[\"101px\",\"101px\",\"101px\",\"101px\",\"101px\"],\"h\":[\"right\",\"right\",\"right\",\"right\",\"right\"],\"v\":[\"bottom\",\"bottom\",\"bottom\",\"bottom\",\"bottom\"],\"pos\":\"absolute\",\"float\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"clear\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"zIndex\":12,\"order\":12,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"vA\":\"top\",\"bg\":{\"color\":{\"orig\":\"transparent\",\"type\":\"solid\",\"string\":\"transparent\"}},\"attr\":{\"aO\":\"ml\",\"tO\":\"ml\"},\"tl\":{\"in\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":0,\"f\":0,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[50,50,50,50,50],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":0},{\"t\":1000,\"d\":800,\"f\":800,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"xRe\":0,\"yRe\":0,\"off\":0}]}},\"out\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"n\",\"x\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"y\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":0}]}}},\"p\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"m\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"color\":[\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\"],\"font\":{\"size\":[\"#a\",20,\"16\",\"12\",\"7\"],\"weight\":[400,400,400,400,400],\"ls\":[0,0,0,0,0]},\"lh\":[\"#a\",25,\"20\",\"15\",\"9\"],\"type\":\"text\"},\"6\":{\"rTo\":\"slide\",\"id\":6,\"alias\":\"Slide BG Layer\",\"subtype\":\"slidebg\",\"size\":{\"cMode\":\"cover\"},\"pos\":{\"h\":[\"center\",\"center\",\"center\",\"center\",\"center\"],\"v\":[\"center\",\"center\",\"center\",\"center\",\"center\"],\"pos\":\"absolute\"},\"zIndex\":0,\"order\":0,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"bg\":{\"image\":{\"ratio\":1.5,\"src\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/DSC00846.jpg\",\"lib\":\"medialibrary\",\"lib_id\":3175,\"lib_size\":\"\",\"fromStream\":false,\"streamType\":\"gallery\",\"pos\":{\"x\":\"50%\",\"y\":\"100%\"},\"repeat\":\"\",\"size\":\"cover\",\"sizeVal\":\"100%\",\"seo\":false}},\"tl\":{\"in\":{\"bg\":{\"ms\":1000,\"rnd\":false,\"temp\":{\"t\":\"*opacity* Fade In\",\"p\":\"fade\",\"m\":\"basic\",\"g\":\"fade\"},\"addOns\":[],\"in\":{\"o\":0},\"out\":{\"a\":false}}}},\"type\":\"shape\"}}','{\"version\":\"6.7.20\"}',''),(3,1,3,'{\"addOns\":[],\"id\":3,\"version\":\"7.0.0\",\"actions\":[{\"a\":\"link\",\"evt\":\"click\",\"target\":\"_self\",\"flw\":\"nofollow\",\"ltype\":\"a\",\"link\":\"https:\\/\\/fe2tech.com\\/contact\",\"src\":[2]}],\"title\":\"\",\"parentId\":null,\"language\":\"default\",\"order\":3,\"thumb\":{\"src\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/mechanical-metal-gear-technology-banner-background_1909838.jpg\",\"srcId\":1973,\"admin\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/10\\/mechanical-metal-gear-technology-banner-background_1909838.jpg\",\"adminId\":1973,\"dimension\":\"slider\",\"default\":{\"image\":{\"src\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/DSC00833-2.jpg\",\"repeat\":\"\",\"size\":\"cover\",\"pos\":{\"x\":\"50%\",\"y\":\"50%\"}}}},\"description\":\"\",\"attr\":{\"class\":\"\",\"data\":\"\",\"id\":\"\",\"a\":\"\",\"aO\":\"ml\",\"t\":\"\",\"tO\":\"\",\"deepLink\":\"\",\"attr\":\"\"},\"publish\":{\"from\":\"\",\"to\":\"\",\"state\":\"\"},\"slideshow\":{\"stop\":false,\"len\":\"default\",\"hal\":0,\"hom\":false,\"hfn\":false},\"loop\":{\"u\":false,\"r\":-1,\"s\":0,\"e\":99999}}','{\"0\":{\"id\":0,\"alias\":\"Text-0\",\"content\":{\"text\":\"#3 Improving mass production\"},\"size\":{\"w\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"h\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"minW\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"minH\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pos\":{\"x\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"y\":[\"-12px\",\"-12px\",\"-12px\",\"-12px\",\"auto\"],\"pos\":\"absolute\",\"float\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"clear\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pid\":\"1\",\"zIndex\":8,\"order\":9,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"vA\":\"top\",\"bg\":{\"color\":{\"orig\":\"transparent\",\"type\":\"solid\",\"string\":\"transparent\"}},\"attr\":{\"aO\":\"ml\",\"class\":\"title-box-shadow\",\"tO\":\"ml\"},\"tl\":{\"in\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":0,\"f\":0,\"e\":\"circ.out\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[\"50\",\"50\",\"50\",\"50\",\"50\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1},{\"t\":800,\"d\":800,\"f\":800,\"e\":\"circ.out\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"xRe\":0,\"yRe\":0,\"off\":1}]}},\"out\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"n\",\"x\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"y\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1}]}}},\"p\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"m\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"color\":[\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\"],\"font\":{\"family\":\"Poppins\",\"size\":[\"48px\",\"48px\",\"48px\",\"30px\",\"24px\"],\"weight\":[\"700\",\"700\",\"700\",\"700\",\"700\"],\"ls\":[0,0,0,0,0]},\"lh\":[\"60px\",\"60px\",\"60px\",\"38px\",\"30px\"],\"type\":\"text\"},\"1\":{\"fluid\":{\"sp\":true},\"id\":1,\"alias\":\"Group-1\",\"subtype\":\"group\",\"size\":{\"w\":[\"520px\",\"520px\",\"520px\",\"520px\",\"520px\"],\"h\":[\"268px\",\"268px\",\"268px\",\"200px\",\"190px\"],\"minW\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"minH\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pos\":{\"x\":[\"30px\",\"30px\",\"30px\",\"20px\",\"20px\"],\"y\":[\"120px\",\"120px\",\"120px\",\"120px\",\"130px\"],\"pos\":\"absolute\",\"float\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"clear\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"zIndex\":10,\"order\":10,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"vA\":\"top\",\"bg\":{\"color\":{\"orig\":\"transparent\",\"type\":\"solid\",\"string\":\"transparent\"}},\"attr\":{\"aO\":\"ml\",\"tO\":\"ml\"},\"tl\":{\"in\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":0,\"f\":0,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"xRe\":0,\"yRe\":0,\"off\":0},{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"xRe\":0,\"yRe\":0,\"off\":0}]}},\"out\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"n\",\"x\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"y\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":0}]}}},\"p\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"m\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"lh\":[\"#a\",25,\"20\",\"15\",\"9\"],\"type\":\"container\"},\"2\":{\"listen\":[\"click\"],\"id\":2,\"alias\":\"Text-2\",\"content\":{\"text\":\"<span class=\\\"btn btn-preset3\\\"><i class=\\\"fac fac-envelope space-right\\\"><\\/i>Contact today<\\/span>\"},\"size\":{\"w\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"h\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"minW\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"minH\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pos\":{\"x\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"y\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"v\":[\"bottom\",\"bottom\",\"bottom\",\"bottom\",\"bottom\"],\"pos\":\"absolute\",\"float\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"clear\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pid\":\"1\",\"zIndex\":9,\"order\":8,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"vA\":\"top\",\"bg\":{\"color\":{\"orig\":\"transparent\",\"type\":\"solid\",\"string\":\"transparent\"}},\"attr\":{\"aO\":\"ml\",\"tO\":\"ml\"},\"tl\":{\"in\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":0,\"f\":0,\"e\":\"circ.out\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[50,50,50,50,50],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1},{\"t\":1000,\"d\":800,\"f\":800,\"e\":\"circ.out\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"xRe\":0,\"yRe\":0,\"off\":1}]}},\"out\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"n\",\"x\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"y\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1}]}}},\"p\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"m\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"color\":[\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\"],\"font\":{\"size\":[\"#a\",20,\"16\",\"12\",\"7\"],\"weight\":[400,400,400,400,400],\"ls\":[0,0,0,0,0]},\"lh\":[\"#a\",25,\"20\",\"15\",\"9\"],\"tag\":\"a\",\"target\":\"_self\",\"href\":\"https:\\/\\/fe2tech.com\\/contact\",\"rel\":\"nofollow\",\"type\":\"text\"},\"4\":{\"id\":4,\"alias\":\"Shape-4\",\"size\":{\"w\":[\"3000px\",\"3000px\",\"3000px\",\"3000px\",\"3000px\"],\"h\":[\"126px\",\"126px\",\"126px\",\"126px\",\"127px\"],\"minW\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"minH\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pos\":{\"x\":[\"-45px\",\"-45px\",\"-45px\",\"30px\",\"auto\"],\"y\":[\"-1px\",\"-1px\",\"-1px\",\"-1px\",\"-1px\"],\"v\":[\"bottom\",\"bottom\",\"bottom\",\"bottom\",\"bottom\"],\"pos\":\"absolute\",\"float\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"clear\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"zIndex\":11,\"order\":11,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"vA\":\"top\",\"bg\":{\"color\":{\"type\":\"solid\",\"orig\":\"#ffffff\",\"string\":\"rgba(255, 255, 255, 1)\"}},\"attr\":{\"aO\":\"ml\",\"class\":\"shap-slider-bottom\",\"tO\":\"ml\"},\"tl\":{\"in\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":0,\"f\":0,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"xRe\":0,\"yRe\":0,\"off\":0},{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"xRe\":0,\"yRe\":0,\"off\":0}]}},\"out\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"n\",\"x\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"y\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":0}]}}},\"vis\":[true,true,true,true,false],\"viSH\":false,\"viOC\":false,\"p\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"m\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"type\":\"shape\"},\"5\":{\"id\":5,\"alias\":\"Text-5\",\"content\":{\"text\":\"<div class=\\\"ct-slider-nav\\\">\\n\\t<span class=\\\"slider-nav-left\\\"><i class=\\\"fac fac-angle-left\\\"><\\/i><\\/span>\\n\\t<span class=\\\"slider-nav-right\\\"><i class=\\\"fac fac-angle-right\\\"><\\/i><\\/span>\\n<\\/div>\"},\"size\":{\"w\":[\"118px\",\"118px\",\"118px\",\"118px\",\"118px\"],\"h\":[\"53px\",\"53px\",\"53px\",\"53px\",\"53px\"],\"minW\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"minH\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pos\":{\"x\":[\"30px\",\"30px\",\"30px\",\"30px\",\"30px\"],\"y\":[\"101px\",\"101px\",\"101px\",\"101px\",\"101px\"],\"h\":[\"right\",\"right\",\"right\",\"right\",\"right\"],\"v\":[\"bottom\",\"bottom\",\"bottom\",\"bottom\",\"bottom\"],\"pos\":\"absolute\",\"float\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"clear\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"zIndex\":12,\"order\":12,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"vA\":\"top\",\"bg\":{\"color\":{\"orig\":\"transparent\",\"type\":\"solid\",\"string\":\"transparent\"}},\"attr\":{\"aO\":\"ml\",\"tO\":\"ml\"},\"tl\":{\"in\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":0,\"f\":0,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[50,50,50,50,50],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":0},{\"t\":990,\"d\":800,\"f\":800,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"xRe\":0,\"yRe\":0,\"off\":0}]}},\"out\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"n\",\"x\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"y\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":0}]}}},\"p\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"m\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"color\":[\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\"],\"font\":{\"size\":[\"#a\",20,\"16\",\"12\",\"7\"],\"weight\":[400,400,400,400,400],\"ls\":[0,0,0,0,0]},\"lh\":[\"#a\",25,\"20\",\"15\",\"9\"],\"type\":\"text\"},\"6\":{\"rTo\":\"slide\",\"id\":6,\"alias\":\"Slide BG Layer\",\"subtype\":\"slidebg\",\"size\":{\"cMode\":\"cover\"},\"pos\":{\"h\":[\"center\",\"center\",\"center\",\"center\",\"center\"],\"v\":[\"center\",\"center\",\"center\",\"center\",\"center\"],\"pos\":\"absolute\"},\"zIndex\":0,\"order\":0,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"bg\":{\"image\":{\"ratio\":1.4998211091234348,\"src\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/DSC00833-2.jpg\",\"lib\":\"medialibrary\",\"lib_id\":3176,\"lib_size\":\"\",\"fromStream\":false,\"streamType\":\"gallery\",\"pos\":{\"x\":\"50%\",\"y\":\"50%\"},\"repeat\":\"\",\"size\":\"cover\",\"sizeVal\":\"100%\",\"seo\":false}},\"tl\":{\"in\":{\"bg\":{\"ms\":1000,\"rnd\":false,\"temp\":{\"t\":\"*opacity* Fade In\",\"p\":\"fade\",\"m\":\"basic\",\"g\":\"fade\"},\"addOns\":[],\"in\":{\"o\":0},\"out\":{\"a\":false}}}},\"type\":\"shape\"}}','{\"version\":\"6.7.20\"}',''),(4,2,1,'{\"addOns\":[],\"id\":4,\"version\":\"7.0.0\",\"actions\":[{\"a\":\"link\",\"evt\":\"click\",\"target\":\"_self\",\"flw\":\"nofollow\",\"ltype\":\"a\",\"link\":\"https:\\/\\/demo.casethemes.net\\/contio\\/about\\/\",\"src\":[5]},{\"a\":\"link\",\"evt\":\"click\",\"target\":\"_self\",\"flw\":\"nofollow\",\"ltype\":\"a\",\"link\":\"https:\\/\\/demo.casethemes.net\\/contio\\/contact\\/\",\"src\":[6]}],\"title\":\"\",\"parentId\":null,\"language\":\"default\",\"order\":\"1\",\"thumb\":{\"src\":\"\",\"srcId\":\"\",\"admin\":\"\",\"adminId\":\"\",\"dimension\":\"slider\",\"default\":{\"image\":{\"src\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-slider-04.jpg\",\"repeat\":\"\",\"size\":\"cover\",\"pos\":{\"x\":\"50%\",\"y\":\"50%\"}}}},\"description\":\"\",\"attr\":{\"class\":\"\",\"data\":\"\",\"id\":\"\",\"a\":\"\",\"aO\":\"ml\",\"t\":\"\",\"tO\":\"\",\"deepLink\":\"\",\"attr\":\"\"},\"publish\":{\"from\":\"\",\"to\":\"\",\"state\":\"\"},\"slideshow\":{\"stop\":false,\"len\":\"default\",\"hal\":0,\"hom\":false,\"hfn\":false},\"loop\":{\"u\":false,\"r\":-1,\"s\":0,\"e\":99999}}','[{\"fluid\":{\"sp\":true},\"id\":0,\"alias\":\"Group-0\",\"subtype\":\"group\",\"size\":{\"w\":[\"800px\",\"800px\",\"800px\",\"800px\",\"800px\"],\"h\":[\"335px\",\"335px\",\"335px\",\"265px\",\"385px\"],\"minW\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"minH\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pos\":{\"x\":[\"30px\",\"30px\",\"30px\",\"20px\",\"20px\"],\"y\":[\"18px\",\"18px\",\"18px\",\"auto\",\"auto\"],\"v\":[\"middle\",\"middle\",\"middle\",\"middle\",\"middle\"],\"pos\":\"absolute\",\"float\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"clear\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"zIndex\":14,\"order\":14,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"vA\":\"top\",\"bg\":{\"color\":{\"orig\":\"transparent\",\"type\":\"solid\",\"string\":\"transparent\"}},\"attr\":{\"aO\":\"ml\",\"tO\":\"ml\"},\"tl\":{\"in\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":0,\"f\":0,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"xRe\":0,\"yRe\":0,\"off\":0},{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"xRe\":0,\"yRe\":0,\"off\":0}]}},\"out\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"n\",\"x\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"y\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":0}]}}},\"p\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"m\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"lh\":[\"#a\",25,\"20\",\"15\",\"9\"],\"type\":\"container\"},{\"id\":1,\"alias\":\"Text-1\",\"content\":{\"text\":\"We are Contio\"},\"size\":{\"w\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"h\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"minW\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"minH\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pos\":{\"x\":[\"70px\",\"70px\",\"70px\",\"65px\",\"65px\"],\"y\":[\"-6px\",\"-6px\",\"-6px\",\"-6px\",\"-6px\"],\"pos\":\"absolute\",\"float\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"clear\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pid\":\"0\",\"zIndex\":9,\"order\":12,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"vA\":\"top\",\"bg\":{\"color\":{\"orig\":\"transparent\",\"type\":\"solid\",\"string\":\"transparent\"}},\"attr\":{\"aO\":\"ml\",\"tO\":\"ml\"},\"tl\":{\"in\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":0,\"f\":0,\"e\":\"power4.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1},{\"t\":900,\"d\":1200,\"f\":1200,\"e\":\"power4.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"fx\":\"cleft\",\"fxc\":\"#ffffff\",\"fxe\":\"power4.inOut\",\"fxs\":1200,\"xRe\":0,\"yRe\":0,\"off\":1}]}},\"out\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"n\",\"x\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"y\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1}]}}},\"p\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"m\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"color\":[\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\"],\"font\":{\"family\":\"Poppins\",\"size\":[\"22px\",\"22px\",\"22px\",\"20px\",\"16px\"],\"weight\":[\"500\",\"500\",\"500\",\"500\",\"500\"],\"ls\":[0,0,0,0,0]},\"lh\":[\"26px\",\"26px\",\"26px\",\"26px\",\"26px\"],\"type\":\"text\"},{\"id\":2,\"alias\":\"Shape-2\",\"size\":{\"w\":[\"50px\",\"50px\",\"50px\",\"50px\",\"50px\"],\"h\":[\"3px\",\"3px\",\"3px\",\"3px\",\"3px\"],\"minW\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"minH\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pos\":{\"x\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"y\":[\"5px\",\"5px\",\"5px\",\"5px\",\"5px\"],\"pos\":\"absolute\",\"float\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"clear\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pid\":\"0\",\"zIndex\":8,\"order\":13,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"vA\":\"top\",\"bg\":{\"color\":{\"type\":\"linear\",\"angle\":\"270\",\"easing\":\"none\",\"strength\":100,\"orig\":[{\"rgba\":\"rgba(255,159,0,1)\",\"p\":0,\"align\":\"bottom\"},{\"rgba\":\"rgba(245,83,1,1)\",\"p\":100,\"align\":\"top\"}],\"string\":\"linear-gradient(270deg,rgba(255,159,0,1) 0%,rgba(245,83,1,1) 100%)\"}},\"attr\":{\"aO\":\"ml\",\"tO\":\"ml\"},\"tl\":{\"in\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":0,\"f\":0,\"e\":\"power4.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1},{\"t\":900,\"d\":1200,\"f\":1200,\"e\":\"power4.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"fx\":\"cleft\",\"fxc\":\"#ffffff\",\"fxe\":\"power4.inOut\",\"fxs\":1200,\"xRe\":0,\"yRe\":0,\"off\":1}]}},\"out\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"n\",\"x\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"y\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1}]}}},\"p\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"m\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"type\":\"shape\"},{\"id\":3,\"alias\":\"Text-3\",\"content\":{\"text\":\"Best Builder Company\\nin Worldwide\"},\"size\":{\"w\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"h\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"minW\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"minH\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pos\":{\"x\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"y\":[\"35px\",\"35px\",\"35px\",\"35px\",\"35px\"],\"pos\":\"absolute\",\"float\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"clear\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pid\":\"0\",\"zIndex\":10,\"order\":11,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"vA\":\"top\",\"bg\":{\"color\":{\"orig\":\"transparent\",\"type\":\"solid\",\"string\":\"transparent\"}},\"attr\":{\"aO\":\"ml\",\"tO\":\"ml\"},\"tl\":{\"in\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":0,\"f\":0,\"e\":\"power4.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1},{\"t\":1200,\"d\":1200,\"f\":1200,\"e\":\"power4.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"fx\":\"cleft\",\"fxc\":\"#ffffff\",\"fxe\":\"power4.inOut\",\"fxs\":1200,\"xRe\":0,\"yRe\":0,\"off\":1}]}},\"out\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"n\",\"x\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"y\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1}]}}},\"p\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"m\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"color\":[\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\"],\"font\":{\"family\":\"Poppins\",\"size\":[\"48px\",\"48px\",\"48px\",\"32px\",\"26px\"],\"weight\":[\"700\",\"700\",\"700\",\"700\",\"700\"],\"ls\":[0,0,0,0,0]},\"lh\":[\"60px\",\"60px\",\"60px\",\"40px\",\"34px\"],\"type\":\"text\"},{\"id\":4,\"alias\":\"Text-4\",\"content\":{\"text\":\"It is a long established fact that a reader will be distracted by the readable content tutorials of instute.\"},\"size\":{\"w\":[\"560px\",\"560px\",\"560px\",\"410px\",\"310px\"],\"h\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"minW\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"minH\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pos\":{\"x\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"y\":[\"173px\",\"173px\",\"173px\",\"126px\",\"124px\"],\"pos\":\"absolute\",\"float\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"clear\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pid\":\"0\",\"zIndex\":11,\"order\":10,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"vA\":\"top\",\"bg\":{\"color\":{\"orig\":\"transparent\",\"type\":\"solid\",\"string\":\"transparent\"}},\"attr\":{\"aO\":\"ml\",\"tO\":\"ml\"},\"tl\":{\"in\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":0,\"f\":0,\"e\":\"power4.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1},{\"t\":1400,\"d\":1200,\"f\":1200,\"e\":\"power4.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"fx\":\"cleft\",\"fxc\":\"#ffffff\",\"fxe\":\"power4.inOut\",\"fxs\":1200,\"xRe\":0,\"yRe\":0,\"off\":1}]}},\"out\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"n\",\"x\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"y\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1}]}}},\"p\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"m\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"color\":[\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\"],\"font\":{\"family\":\"Poppins\",\"size\":[\"16px\",\"16px\",\"16px\",\"14px\",\"14px\"],\"weight\":[400,400,400,400,400],\"ls\":[0,0,0,0,0]},\"lh\":[\"30px\",\"30px\",\"30px\",\"27px\",\"27px\"],\"type\":\"text\"},{\"listen\":[\"click\"],\"id\":5,\"alias\":\"Text-5\",\"content\":{\"text\":\"<span class=\\\"btn btn-default\\\"><i class=\\\"fac fac-user space-right\\\"><\\/i>About team<\\/span>\"},\"size\":{\"w\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"h\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"minW\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"minH\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pos\":{\"x\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"y\":[\"auto\",\"auto\",\"auto\",\"auto\",\"85px\"],\"v\":[\"bottom\",\"bottom\",\"bottom\",\"bottom\",\"bottom\"],\"pos\":\"absolute\",\"float\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"clear\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pid\":\"0\",\"zIndex\":12,\"order\":9,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"vA\":\"top\",\"bg\":{\"color\":{\"orig\":\"transparent\",\"type\":\"solid\",\"string\":\"transparent\"}},\"attr\":{\"aO\":\"ml\",\"tO\":\"ml\"},\"tl\":{\"in\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":0,\"f\":0,\"e\":\"power4.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1},{\"t\":1600,\"d\":1200,\"f\":1200,\"e\":\"power4.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"fx\":\"cleft\",\"fxc\":\"#ffffff\",\"fxe\":\"power4.inOut\",\"fxs\":1200,\"xRe\":0,\"yRe\":0,\"off\":1}]}},\"out\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"n\",\"x\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"y\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1}]}}},\"p\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"m\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"color\":[\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\"],\"font\":{\"size\":[\"16px\",\"16px\",\"16px\",\"16px\",\"16px\"],\"weight\":[400,400,400,400,400],\"ls\":[0,0,0,0,0]},\"lh\":[\"55px\",\"55px\",\"55px\",\"55px\",\"55px\"],\"tag\":\"a\",\"target\":\"_self\",\"href\":\"https:\\/\\/demo.casethemes.net\\/contio\\/about\\/\",\"rel\":\"nofollow\",\"type\":\"text\"},{\"listen\":[\"click\"],\"id\":6,\"alias\":\"Copy text-5\",\"content\":{\"text\":\"<span class=\\\"btn btn-gray\\\"><i class=\\\"fac fac-location-arrow space-right\\\"><\\/i>Send request<\\/span>\"},\"size\":{\"w\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"h\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"minW\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"minH\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pos\":{\"x\":[\"205px\",\"205px\",\"205px\",\"205px\",\"auto\"],\"y\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"v\":[\"bottom\",\"bottom\",\"bottom\",\"bottom\",\"bottom\"],\"pos\":\"absolute\",\"float\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"clear\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pid\":\"0\",\"zIndex\":13,\"order\":8,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"vA\":\"top\",\"bg\":{\"color\":{\"orig\":\"transparent\",\"type\":\"solid\",\"string\":\"transparent\"}},\"attr\":{\"aO\":\"ml\",\"tO\":\"ml\"},\"tl\":{\"in\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":0,\"f\":0,\"e\":\"power4.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1},{\"t\":1800,\"d\":1200,\"f\":1200,\"e\":\"power4.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"fx\":\"cleft\",\"fxc\":\"#ffffff\",\"fxe\":\"power4.inOut\",\"fxs\":1200,\"xRe\":0,\"yRe\":0,\"off\":1}]}},\"out\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"n\",\"x\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"y\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1}]}}},\"p\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"m\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"color\":[\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\"],\"font\":{\"size\":[\"16px\",\"16px\",\"16px\",\"15px\",\"15px\"],\"weight\":[400,400,400,400,400],\"ls\":[0,0,0,0,0]},\"lh\":[\"55px\",\"55px\",\"55px\",\"55px\",\"55px\"],\"tag\":\"a\",\"target\":\"_self\",\"href\":\"https:\\/\\/demo.casethemes.net\\/contio\\/contact\\/\",\"rel\":\"nofollow\",\"type\":\"text\"},{\"rTo\":\"slide\",\"id\":7,\"alias\":\"Slide BG Layer\",\"subtype\":\"slidebg\",\"size\":{\"cMode\":\"cover\"},\"pos\":{\"h\":[\"center\",\"center\",\"center\",\"center\",\"center\"],\"v\":[\"center\",\"center\",\"center\",\"center\",\"center\"],\"pos\":\"absolute\"},\"zIndex\":0,\"order\":0,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"bg\":{\"image\":{\"ratio\":1,\"src\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-slider-04.jpg\",\"lib\":\"\",\"lib_id\":1006,\"lib_size\":\"\",\"fromStream\":false,\"streamType\":\"gallery\",\"pos\":{\"x\":\"50%\",\"y\":\"50%\"},\"repeat\":\"\",\"size\":\"cover\",\"sizeVal\":\"100%\",\"seo\":false}},\"tl\":{\"in\":{\"bg\":{\"ms\":1000,\"rnd\":false,\"temp\":{\"t\":\"*shuffle* Random\",\"p\":\"\",\"m\":\"\",\"g\":\"\"},\"addOns\":[],\"f\":\"random\",\"in\":{\"o\":0,\"sx\":1.1,\"sy\":1.1,\"m\":true,\"row\":5,\"col\":5},\"out\":{\"a\":false}},\"pan\":{\"pers\":600,\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":300,\"d\":0,\"f\":0,\"e\":\"none\",\"x\":0,\"y\":0,\"sX\":\"100%\",\"rZ\":0,\"off\":0},{\"t\":300,\"d\":10000,\"f\":10000,\"e\":\"none\",\"x\":0,\"y\":0,\"sX\":\"115%\",\"rZ\":0,\"off\":0}]}}},\"type\":\"shape\"}]','{\"version\":\"6.7.20\"}',''),(5,2,2,'{\"addOns\":[],\"id\":5,\"version\":\"7.0.0\",\"actions\":[{\"a\":\"link\",\"evt\":\"click\",\"target\":\"_self\",\"flw\":\"nofollow\",\"ltype\":\"a\",\"link\":\"https:\\/\\/demo.casethemes.net\\/contio\\/contact\\/\",\"src\":[6]}],\"title\":\"\",\"parentId\":null,\"language\":\"default\",\"order\":\"2\",\"thumb\":{\"src\":\"\",\"srcId\":\"\",\"admin\":\"\",\"adminId\":\"\",\"dimension\":\"slider\",\"default\":{\"image\":{\"src\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-slider-05.jpg\",\"repeat\":\"\",\"size\":\"cover\",\"pos\":{\"x\":\"50%\",\"y\":\"50%\"}}}},\"description\":\"\",\"attr\":{\"class\":\"\",\"data\":\"\",\"id\":\"\",\"a\":\"\",\"aO\":\"ml\",\"t\":\"\",\"tO\":\"\",\"deepLink\":\"\",\"attr\":\"\"},\"publish\":{\"from\":\"\",\"to\":\"\",\"state\":\"\"},\"slideshow\":{\"stop\":false,\"len\":\"default\",\"hal\":0,\"hom\":false,\"hfn\":false},\"loop\":{\"u\":false,\"r\":-1,\"s\":0,\"e\":99999}}','[{\"fluid\":{\"sp\":true},\"id\":0,\"alias\":\"Group-0\",\"subtype\":\"group\",\"size\":{\"w\":[\"800px\",\"800px\",\"800px\",\"800px\",\"800px\"],\"h\":[\"335px\",\"335px\",\"335px\",\"265px\",\"305px\"],\"minW\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"minH\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pos\":{\"x\":[\"30px\",\"30px\",\"30px\",\"20px\",\"20px\"],\"y\":[\"18px\",\"18px\",\"18px\",\"auto\",\"auto\"],\"v\":[\"middle\",\"middle\",\"middle\",\"middle\",\"middle\"],\"pos\":\"absolute\",\"float\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"clear\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"zIndex\":14,\"order\":14,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"vA\":\"top\",\"bg\":{\"color\":{\"orig\":\"transparent\",\"type\":\"solid\",\"string\":\"transparent\"}},\"attr\":{\"aO\":\"ml\",\"tO\":\"ml\"},\"tl\":{\"in\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":0,\"f\":0,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"xRe\":0,\"yRe\":0,\"off\":0},{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"xRe\":0,\"yRe\":0,\"off\":0}]}},\"out\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"n\",\"x\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"y\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":0}]}}},\"p\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"m\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"lh\":[\"#a\",25,\"20\",\"15\",\"9\"],\"type\":\"container\"},{\"id\":1,\"alias\":\"Text-1\",\"content\":{\"text\":\"We are Contio\"},\"size\":{\"w\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"h\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"minW\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"minH\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pos\":{\"x\":[\"70px\",\"70px\",\"70px\",\"65px\",\"65px\"],\"y\":[\"-6px\",\"-6px\",\"-6px\",\"-6px\",\"-6px\"],\"pos\":\"absolute\",\"float\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"clear\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pid\":\"0\",\"zIndex\":9,\"order\":12,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"vA\":\"top\",\"bg\":{\"color\":{\"orig\":\"transparent\",\"type\":\"solid\",\"string\":\"transparent\"}},\"attr\":{\"aO\":\"ml\",\"tO\":\"ml\"},\"tl\":{\"in\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":0,\"f\":0,\"e\":\"power4.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1},{\"t\":900,\"d\":1200,\"f\":1200,\"e\":\"power4.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"fx\":\"cleft\",\"fxc\":\"#ffffff\",\"fxe\":\"power4.inOut\",\"fxs\":1200,\"xRe\":0,\"yRe\":0,\"off\":1}]}},\"out\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"n\",\"x\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"y\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1}]}}},\"p\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"m\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"color\":[\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\"],\"font\":{\"family\":\"Poppins\",\"size\":[\"22px\",\"22px\",\"22px\",\"20px\",\"16px\"],\"weight\":[\"500\",\"500\",\"500\",\"500\",\"500\"],\"ls\":[0,0,0,0,0]},\"lh\":[\"26px\",\"26px\",\"26px\",\"26px\",\"26px\"],\"type\":\"text\"},{\"id\":2,\"alias\":\"Shape-2\",\"size\":{\"w\":[\"50px\",\"50px\",\"50px\",\"50px\",\"50px\"],\"h\":[\"3px\",\"3px\",\"3px\",\"3px\",\"3px\"],\"minW\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"minH\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pos\":{\"x\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"y\":[\"5px\",\"5px\",\"5px\",\"5px\",\"5px\"],\"pos\":\"absolute\",\"float\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"clear\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pid\":\"0\",\"zIndex\":8,\"order\":13,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"vA\":\"top\",\"bg\":{\"color\":{\"type\":\"linear\",\"angle\":\"270\",\"easing\":\"none\",\"strength\":100,\"orig\":[{\"rgba\":\"rgba(255,159,0,1)\",\"p\":0,\"align\":\"bottom\"},{\"rgba\":\"rgba(245,83,1,1)\",\"p\":100,\"align\":\"top\"}],\"string\":\"linear-gradient(270deg,rgba(255,159,0,1) 0%,rgba(245,83,1,1) 100%)\"}},\"attr\":{\"aO\":\"ml\",\"tO\":\"ml\"},\"tl\":{\"in\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":0,\"f\":0,\"e\":\"power4.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1},{\"t\":900,\"d\":1200,\"f\":1200,\"e\":\"power4.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"fx\":\"cleft\",\"fxc\":\"#ffffff\",\"fxe\":\"power4.inOut\",\"fxs\":1200,\"xRe\":0,\"yRe\":0,\"off\":1}]}},\"out\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"n\",\"x\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"y\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1}]}}},\"p\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"m\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"type\":\"shape\"},{\"id\":3,\"alias\":\"Text-3\",\"content\":{\"text\":\"Constrio group\'s 2019\\ncorporate video\"},\"size\":{\"w\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"h\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"minW\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"minH\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pos\":{\"x\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"y\":[\"35px\",\"35px\",\"35px\",\"35px\",\"35px\"],\"pos\":\"absolute\",\"float\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"clear\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pid\":\"0\",\"zIndex\":10,\"order\":11,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"vA\":\"top\",\"bg\":{\"color\":{\"orig\":\"transparent\",\"type\":\"solid\",\"string\":\"transparent\"}},\"attr\":{\"aO\":\"ml\",\"tO\":\"ml\"},\"tl\":{\"in\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":0,\"f\":0,\"e\":\"power4.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1},{\"t\":1200,\"d\":1200,\"f\":1200,\"e\":\"power4.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"fx\":\"cleft\",\"fxc\":\"#ffffff\",\"fxe\":\"power4.inOut\",\"fxs\":1200,\"xRe\":0,\"yRe\":0,\"off\":1}]}},\"out\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"n\",\"x\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"y\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1}]}}},\"p\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"m\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"color\":[\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\"],\"font\":{\"family\":\"Poppins\",\"size\":[\"48px\",\"48px\",\"48px\",\"32px\",\"26px\"],\"weight\":[\"700\",\"700\",\"700\",\"700\",\"700\"],\"ls\":[0,0,0,0,0]},\"lh\":[\"60px\",\"60px\",\"60px\",\"40px\",\"34px\"],\"type\":\"text\"},{\"id\":4,\"alias\":\"Text-4\",\"content\":{\"text\":\"It is a long established fact that a reader will be distracted by the readable content tutorials of instute.\"},\"size\":{\"w\":[\"560px\",\"560px\",\"560px\",\"410px\",\"310px\"],\"h\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"minW\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"minH\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pos\":{\"x\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"y\":[\"173px\",\"173px\",\"173px\",\"126px\",\"124px\"],\"pos\":\"absolute\",\"float\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"clear\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pid\":\"0\",\"zIndex\":11,\"order\":10,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"vA\":\"top\",\"bg\":{\"color\":{\"orig\":\"transparent\",\"type\":\"solid\",\"string\":\"transparent\"}},\"attr\":{\"aO\":\"ml\",\"tO\":\"ml\"},\"tl\":{\"in\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":0,\"f\":0,\"e\":\"power4.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1},{\"t\":1400,\"d\":1200,\"f\":1200,\"e\":\"power4.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"fx\":\"cleft\",\"fxc\":\"#ffffff\",\"fxe\":\"power4.inOut\",\"fxs\":1200,\"xRe\":0,\"yRe\":0,\"off\":1}]}},\"out\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"n\",\"x\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"y\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1}]}}},\"p\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"m\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"color\":[\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\"],\"font\":{\"family\":\"Poppins\",\"size\":[\"16px\",\"16px\",\"16px\",\"14px\",\"14px\"],\"weight\":[400,400,400,400,400],\"ls\":[0,0,0,0,0]},\"lh\":[\"30px\",\"30px\",\"30px\",\"27px\",\"27px\"],\"type\":\"text\"},{\"id\":5,\"alias\":\"Text-5\",\"content\":{\"text\":\"<a class=\\\"ct-video-button\\\" href=\\\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\\\"><i class=\\\"fac fac-play\\\"><\\/i><span class=\\\"line-video-animation line-video-1\\\"><\\/span><span class=\\\"line-video-animation line-video-2\\\"><\\/span><span class=\\\"line-video-animation line-video-3\\\"><\\/span>Video<\\/a>\"},\"size\":{\"w\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"h\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"minW\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"minH\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pos\":{\"x\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"y\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"v\":[\"bottom\",\"bottom\",\"bottom\",\"bottom\",\"bottom\"],\"pos\":\"absolute\",\"float\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"clear\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pid\":\"0\",\"zIndex\":13,\"order\":8,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"vA\":\"top\",\"bg\":{\"color\":{\"orig\":\"transparent\",\"type\":\"solid\",\"string\":\"transparent\"}},\"attr\":{\"aO\":\"ml\",\"tO\":\"ml\"},\"tl\":{\"in\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":0,\"f\":0,\"e\":\"power4.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1},{\"t\":1600,\"d\":1200,\"f\":1200,\"e\":\"power4.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"fx\":\"cleft\",\"fxc\":\"#ffffff\",\"fxe\":\"power4.inOut\",\"fxs\":1200,\"xRe\":0,\"yRe\":0,\"off\":1}]}},\"out\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"n\",\"x\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"y\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1}]}}},\"p\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"m\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"color\":[\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\"],\"font\":{\"size\":[\"16px\",\"16px\",\"16px\",\"16px\",\"16px\"],\"weight\":[400,400,400,400,400],\"ls\":[0,0,0,0,0]},\"lh\":[\"55px\",\"55px\",\"55px\",\"55px\",\"55px\"],\"type\":\"text\"},{\"listen\":[\"click\"],\"id\":6,\"alias\":\"Copy text-5\",\"content\":{\"text\":\"<span class=\\\"btn btn-gray\\\"><i class=\\\"fac fac-location-arrow space-right\\\"><\\/i>Send request<\\/span>\"},\"size\":{\"w\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"h\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"minW\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"minH\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pos\":{\"x\":[\"85px\",\"85px\",\"85px\",\"85px\",\"85px\"],\"y\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"v\":[\"bottom\",\"bottom\",\"bottom\",\"bottom\",\"bottom\"],\"pos\":\"absolute\",\"float\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"clear\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pid\":\"0\",\"zIndex\":12,\"order\":9,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"vA\":\"top\",\"bg\":{\"color\":{\"orig\":\"transparent\",\"type\":\"solid\",\"string\":\"transparent\"}},\"attr\":{\"aO\":\"ml\",\"tO\":\"ml\"},\"tl\":{\"in\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":0,\"f\":0,\"e\":\"power4.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1},{\"t\":1800,\"d\":1200,\"f\":1200,\"e\":\"power4.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"fx\":\"cleft\",\"fxc\":\"#ffffff\",\"fxe\":\"power4.inOut\",\"fxs\":1200,\"xRe\":0,\"yRe\":0,\"off\":1}]}},\"out\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"n\",\"x\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"y\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1}]}}},\"p\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"m\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"color\":[\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\"],\"font\":{\"size\":[\"16px\",\"16px\",\"16px\",\"15px\",\"15px\"],\"weight\":[400,400,400,400,400],\"ls\":[0,0,0,0,0]},\"lh\":[\"55px\",\"55px\",\"55px\",\"55px\",\"55px\"],\"tag\":\"a\",\"target\":\"_self\",\"href\":\"https:\\/\\/demo.casethemes.net\\/contio\\/contact\\/\",\"rel\":\"nofollow\",\"type\":\"text\"},{\"rTo\":\"slide\",\"id\":7,\"alias\":\"Slide BG Layer\",\"subtype\":\"slidebg\",\"size\":{\"cMode\":\"cover\"},\"pos\":{\"h\":[\"center\",\"center\",\"center\",\"center\",\"center\"],\"v\":[\"center\",\"center\",\"center\",\"center\",\"center\"],\"pos\":\"absolute\"},\"zIndex\":0,\"order\":0,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"bg\":{\"image\":{\"ratio\":1,\"src\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-slider-05.jpg\",\"lib\":\"\",\"lib_id\":1009,\"lib_size\":\"\",\"fromStream\":false,\"streamType\":\"gallery\",\"pos\":{\"x\":\"50%\",\"y\":\"50%\"},\"repeat\":\"\",\"size\":\"cover\",\"sizeVal\":\"100%\",\"seo\":false}},\"tl\":{\"in\":{\"bg\":{\"ms\":1000,\"rnd\":false,\"temp\":{\"t\":\"*shuffle* Random\",\"p\":\"\",\"m\":\"\",\"g\":\"\"},\"addOns\":[],\"f\":\"random\",\"in\":{\"o\":0,\"sx\":1.1,\"sy\":1.1,\"m\":true,\"row\":5,\"col\":5},\"out\":{\"a\":false}},\"pan\":{\"pers\":600,\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":300,\"d\":0,\"f\":0,\"e\":\"none\",\"x\":0,\"y\":0,\"sX\":\"115%\",\"rZ\":0,\"off\":0},{\"t\":300,\"d\":10000,\"f\":10000,\"e\":\"none\",\"x\":0,\"y\":0,\"sX\":\"100%\",\"rZ\":0,\"off\":0}]}}},\"type\":\"shape\"}]','{\"version\":\"6.7.20\"}',''),(6,2,3,'{\"addOns\":[],\"id\":6,\"version\":\"7.0.0\",\"actions\":[{\"a\":\"link\",\"evt\":\"click\",\"target\":\"_self\",\"flw\":\"nofollow\",\"ltype\":\"a\",\"link\":\"https:\\/\\/demo.casethemes.net\\/contio\\/contact\\/\",\"src\":[6]}],\"title\":\"\",\"parentId\":null,\"language\":\"default\",\"order\":\"3\",\"thumb\":{\"src\":\"\",\"srcId\":\"\",\"admin\":\"\",\"adminId\":\"\",\"dimension\":\"slider\",\"default\":{\"image\":{\"src\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-slider-06.jpg\",\"repeat\":\"\",\"size\":\"cover\",\"pos\":{\"x\":\"50%\",\"y\":\"50%\"}}}},\"description\":\"\",\"attr\":{\"class\":\"\",\"data\":\"\",\"id\":\"\",\"a\":\"\",\"aO\":\"ml\",\"t\":\"\",\"tO\":\"\",\"deepLink\":\"\",\"attr\":\"\"},\"publish\":{\"from\":\"\",\"to\":\"\",\"state\":\"\"},\"slideshow\":{\"stop\":false,\"len\":\"default\",\"hal\":0,\"hom\":false,\"hfn\":false},\"loop\":{\"u\":false,\"r\":-1,\"s\":0,\"e\":99999}}','{\"0\":{\"fluid\":{\"sp\":true},\"id\":0,\"alias\":\"Group-0\",\"subtype\":\"group\",\"size\":{\"w\":[\"800px\",\"800px\",\"800px\",\"800px\",\"800px\"],\"h\":[\"335px\",\"335px\",\"335px\",\"265px\",\"305px\"],\"minW\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"minH\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pos\":{\"x\":[\"30px\",\"30px\",\"30px\",\"20px\",\"20px\"],\"y\":[\"18px\",\"18px\",\"18px\",\"auto\",\"auto\"],\"v\":[\"middle\",\"middle\",\"middle\",\"middle\",\"middle\"],\"pos\":\"absolute\",\"float\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"clear\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"zIndex\":14,\"order\":14,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"vA\":\"top\",\"bg\":{\"color\":{\"orig\":\"transparent\",\"type\":\"solid\",\"string\":\"transparent\"}},\"attr\":{\"aO\":\"ml\",\"tO\":\"ml\"},\"tl\":{\"in\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":0,\"f\":0,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"xRe\":0,\"yRe\":0,\"off\":0},{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"xRe\":0,\"yRe\":0,\"off\":0}]}},\"out\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"n\",\"x\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"y\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":0}]}}},\"p\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"m\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"lh\":[\"#a\",25,\"20\",\"15\",\"9\"],\"type\":\"container\"},\"1\":{\"id\":1,\"alias\":\"Text-1\",\"content\":{\"text\":\"We are Contio\"},\"size\":{\"w\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"h\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"minW\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"minH\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pos\":{\"x\":[\"70px\",\"70px\",\"70px\",\"65px\",\"65px\"],\"y\":[\"-6px\",\"-6px\",\"-6px\",\"-6px\",\"-6px\"],\"pos\":\"absolute\",\"float\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"clear\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pid\":\"0\",\"zIndex\":9,\"order\":11,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"vA\":\"top\",\"bg\":{\"color\":{\"orig\":\"transparent\",\"type\":\"solid\",\"string\":\"transparent\"}},\"attr\":{\"aO\":\"ml\",\"tO\":\"ml\"},\"tl\":{\"in\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":0,\"f\":0,\"e\":\"power4.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1},{\"t\":900,\"d\":1200,\"f\":1200,\"e\":\"power4.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"fx\":\"cleft\",\"fxc\":\"#ffffff\",\"fxe\":\"power4.inOut\",\"fxs\":1200,\"xRe\":0,\"yRe\":0,\"off\":1}]}},\"out\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"n\",\"x\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"y\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1}]}}},\"p\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"m\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"color\":[\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\"],\"font\":{\"family\":\"Poppins\",\"size\":[\"22px\",\"22px\",\"22px\",\"20px\",\"16px\"],\"weight\":[\"500\",\"500\",\"500\",\"500\",\"500\"],\"ls\":[0,0,0,0,0]},\"lh\":[\"26px\",\"26px\",\"26px\",\"26px\",\"26px\"],\"type\":\"text\"},\"2\":{\"id\":2,\"alias\":\"Shape-2\",\"size\":{\"w\":[\"50px\",\"50px\",\"50px\",\"50px\",\"50px\"],\"h\":[\"3px\",\"3px\",\"3px\",\"3px\",\"3px\"],\"minW\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"minH\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pos\":{\"x\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"y\":[\"5px\",\"5px\",\"5px\",\"5px\",\"5px\"],\"pos\":\"absolute\",\"float\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"clear\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pid\":\"0\",\"zIndex\":8,\"order\":12,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"vA\":\"top\",\"bg\":{\"color\":{\"type\":\"linear\",\"angle\":\"270\",\"easing\":\"none\",\"strength\":100,\"orig\":[{\"rgba\":\"rgba(255,159,0,1)\",\"p\":0,\"align\":\"bottom\"},{\"rgba\":\"rgba(245,83,1,1)\",\"p\":100,\"align\":\"top\"}],\"string\":\"linear-gradient(270deg,rgba(255,159,0,1) 0%,rgba(245,83,1,1) 100%)\"}},\"attr\":{\"aO\":\"ml\",\"tO\":\"ml\"},\"tl\":{\"in\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":0,\"f\":0,\"e\":\"power4.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1},{\"t\":900,\"d\":1200,\"f\":1200,\"e\":\"power4.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"fx\":\"cleft\",\"fxc\":\"#ffffff\",\"fxe\":\"power4.inOut\",\"fxs\":1200,\"xRe\":0,\"yRe\":0,\"off\":1}]}},\"out\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"n\",\"x\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"y\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1}]}}},\"p\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"m\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"type\":\"shape\"},\"3\":{\"id\":3,\"alias\":\"Text-3\",\"content\":{\"text\":\"See the Constrio group\\u2019s\\nhighlights of employees\"},\"size\":{\"w\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"h\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"minW\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"minH\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pos\":{\"x\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"y\":[\"35px\",\"35px\",\"35px\",\"35px\",\"35px\"],\"pos\":\"absolute\",\"float\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"clear\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pid\":\"0\",\"zIndex\":10,\"order\":10,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"vA\":\"top\",\"bg\":{\"color\":{\"orig\":\"transparent\",\"type\":\"solid\",\"string\":\"transparent\"}},\"attr\":{\"aO\":\"ml\",\"tO\":\"ml\"},\"tl\":{\"in\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":0,\"f\":0,\"e\":\"power4.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1},{\"t\":1200,\"d\":1200,\"f\":1200,\"e\":\"power4.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"fx\":\"cleft\",\"fxc\":\"#ffffff\",\"fxe\":\"power4.inOut\",\"fxs\":1200,\"xRe\":0,\"yRe\":0,\"off\":1}]}},\"out\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"n\",\"x\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"y\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1}]}}},\"p\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"m\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"color\":[\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\"],\"font\":{\"family\":\"Poppins\",\"size\":[\"48px\",\"48px\",\"48px\",\"32px\",\"26px\"],\"weight\":[\"700\",\"700\",\"700\",\"700\",\"700\"],\"ls\":[0,0,0,0,0]},\"lh\":[\"60px\",\"60px\",\"60px\",\"40px\",\"34px\"],\"type\":\"text\"},\"4\":{\"id\":4,\"alias\":\"Text-4\",\"content\":{\"text\":\"It is a long established fact that a reader will be distracted by the readable content tutorials of instute.\"},\"size\":{\"w\":[\"640px\",\"640px\",\"640px\",\"410px\",\"310px\"],\"h\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"minW\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"minH\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pos\":{\"x\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"y\":[\"173px\",\"173px\",\"173px\",\"126px\",\"124px\"],\"pos\":\"absolute\",\"float\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"clear\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pid\":\"0\",\"zIndex\":11,\"order\":9,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"vA\":\"top\",\"bg\":{\"color\":{\"orig\":\"transparent\",\"type\":\"solid\",\"string\":\"transparent\"}},\"attr\":{\"aO\":\"ml\",\"tO\":\"ml\"},\"tl\":{\"in\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":0,\"f\":0,\"e\":\"power4.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1},{\"t\":1400,\"d\":1200,\"f\":1200,\"e\":\"power4.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"fx\":\"cleft\",\"fxc\":\"#ffffff\",\"fxe\":\"power4.inOut\",\"fxs\":1200,\"xRe\":0,\"yRe\":0,\"off\":1}]}},\"out\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"n\",\"x\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"y\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1}]}}},\"p\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"m\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"color\":[\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\"],\"font\":{\"family\":\"Poppins\",\"size\":[\"16px\",\"16px\",\"16px\",\"14px\",\"14px\"],\"weight\":[400,400,400,400,400],\"ls\":[0,0,0,0,0]},\"lh\":[\"30px\",\"30px\",\"30px\",\"27px\",\"27px\"],\"type\":\"text\"},\"6\":{\"listen\":[\"click\"],\"id\":6,\"alias\":\"Copy text-5\",\"content\":{\"text\":\"<span class=\\\"btn btn-gray\\\"><i class=\\\"fac fac-location-arrow space-right\\\"><\\/i>Send request<\\/span>\"},\"size\":{\"w\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"h\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"minW\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"minH\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pos\":{\"x\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"y\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"v\":[\"bottom\",\"bottom\",\"bottom\",\"bottom\",\"bottom\"],\"pos\":\"absolute\",\"float\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"clear\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pid\":\"0\",\"zIndex\":12,\"order\":8,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"vA\":\"top\",\"bg\":{\"color\":{\"orig\":\"transparent\",\"type\":\"solid\",\"string\":\"transparent\"}},\"attr\":{\"aO\":\"ml\",\"tO\":\"ml\"},\"tl\":{\"in\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":0,\"f\":0,\"e\":\"power4.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1},{\"t\":1800,\"d\":1200,\"f\":1200,\"e\":\"power4.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"fx\":\"cleft\",\"fxc\":\"#ffffff\",\"fxe\":\"power4.inOut\",\"fxs\":1200,\"xRe\":0,\"yRe\":0,\"off\":1}]}},\"out\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"n\",\"x\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"y\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1}]}}},\"p\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"m\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"color\":[\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\"],\"font\":{\"size\":[\"16px\",\"16px\",\"16px\",\"15px\",\"15px\"],\"weight\":[400,400,400,400,400],\"ls\":[0,0,0,0,0]},\"lh\":[\"55px\",\"55px\",\"55px\",\"55px\",\"55px\"],\"tag\":\"a\",\"target\":\"_self\",\"href\":\"https:\\/\\/demo.casethemes.net\\/contio\\/contact\\/\",\"rel\":\"nofollow\",\"type\":\"text\"},\"7\":{\"rTo\":\"slide\",\"id\":7,\"alias\":\"Slide BG Layer\",\"subtype\":\"slidebg\",\"size\":{\"cMode\":\"cover\"},\"pos\":{\"h\":[\"center\",\"center\",\"center\",\"center\",\"center\"],\"v\":[\"center\",\"center\",\"center\",\"center\",\"center\"],\"pos\":\"absolute\"},\"zIndex\":0,\"order\":0,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"bg\":{\"image\":{\"ratio\":1,\"src\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-slider-06.jpg\",\"lib\":\"\",\"lib_id\":1018,\"lib_size\":\"\",\"fromStream\":false,\"streamType\":\"gallery\",\"pos\":{\"x\":\"50%\",\"y\":\"50%\"},\"repeat\":\"\",\"size\":\"cover\",\"sizeVal\":\"100%\",\"seo\":false}},\"tl\":{\"in\":{\"bg\":{\"ms\":1000,\"rnd\":false,\"temp\":{\"t\":\"*shuffle* Random\",\"p\":\"\",\"m\":\"\",\"g\":\"\"},\"addOns\":[],\"f\":\"random\",\"in\":{\"o\":0,\"sx\":1.1,\"sy\":1.1,\"m\":true,\"row\":5,\"col\":5},\"out\":{\"a\":false}},\"pan\":{\"pers\":600,\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":300,\"d\":0,\"f\":0,\"e\":\"none\",\"x\":0,\"y\":0,\"sX\":\"100%\",\"rZ\":0,\"off\":0},{\"t\":300,\"d\":10000,\"f\":10000,\"e\":\"none\",\"x\":0,\"y\":0,\"sX\":\"115%\",\"rZ\":0,\"off\":0}]}}},\"type\":\"shape\"}}','{\"version\":\"6.7.20\"}',''),(7,3,1,'{\"addOns\":[],\"id\":7,\"version\":\"7.0.0\",\"actions\":[{\"a\":\"link\",\"evt\":\"click\",\"target\":\"_self\",\"flw\":\"nofollow\",\"ltype\":\"a\",\"link\":\"https:\\/\\/demo.casethemes.net\\/contio\\/about\\/\",\"src\":[4]}],\"title\":\"\",\"parentId\":null,\"language\":\"default\",\"order\":\"1\",\"thumb\":{\"src\":\"\",\"srcId\":\"\",\"admin\":\"\",\"adminId\":\"\",\"dimension\":\"slider\",\"default\":{\"image\":{\"src\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-slider-07.jpg\",\"repeat\":\"\",\"size\":\"cover\",\"pos\":{\"x\":\"50%\",\"y\":\"50%\"}}}},\"description\":\"\",\"attr\":{\"class\":\"\",\"data\":\"\",\"id\":\"\",\"a\":\"\",\"aO\":\"ml\",\"t\":\"\",\"tO\":\"\",\"deepLink\":\"\",\"attr\":\"\"},\"publish\":{\"from\":\"\",\"to\":\"\",\"state\":\"\"},\"slideshow\":{\"stop\":false,\"len\":\"default\",\"hal\":0,\"hom\":false,\"hfn\":false},\"loop\":{\"u\":false,\"r\":-1,\"s\":0,\"e\":99999}}','[{\"fluid\":{\"sp\":true},\"id\":0,\"alias\":\"Group-0\",\"subtype\":\"group\",\"size\":{\"w\":[\"570px\",\"570px\",\"570px\",\"430px\",\"290px\"],\"h\":[\"345px\",\"345px\",\"345px\",\"305px\",\"305px\"],\"minW\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"minH\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pos\":{\"x\":[\"30px\",\"30px\",\"30px\",\"30px\",\"20px\"],\"y\":[\"224px\",\"224px\",\"224px\",\"auto\",\"auto\"],\"v\":[\"top\",\"top\",\"top\",\"middle\",\"middle\"],\"pos\":\"absolute\",\"float\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"clear\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"zIndex\":13,\"order\":13,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"vA\":\"top\",\"bg\":{\"color\":{\"type\":\"solid\",\"orig\":\"rgba(255, 255, 255, 0.9)\",\"string\":\"rgba(255, 255, 255, 0.9)\"}},\"attr\":{\"aO\":\"ml\",\"tO\":\"ml\"},\"tl\":{\"in\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":0,\"f\":0,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[\"50\",\"50\",\"50\",\"50\",\"50\"],\"y\":[0,0,0,0,0],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":0},{\"t\":700,\"d\":800,\"f\":800,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"xRe\":0,\"yRe\":0,\"off\":0}]}},\"out\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"n\",\"x\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"y\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":0}]}}},\"p\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"m\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"radius\":{\"t\":\"8px\",\"r\":\"8px\",\"b\":\"8px\",\"l\":\"8px\"},\"lh\":[\"#a\",25,\"20\",\"15\",\"9\"],\"type\":\"container\"},{\"id\":1,\"alias\":\"Text-1\",\"content\":{\"text\":\"Best Builder Company\\nin Worldwide\"},\"size\":{\"w\":[\"600px\",\"600px\",\"600px\",\"600px\",\"auto\"],\"h\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"minW\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"minH\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pos\":{\"x\":[\"80px\",\"80px\",\"80px\",\"40px\",\"30px\"],\"y\":[\"47px\",\"47px\",\"47px\",\"47px\",\"48px\"],\"pos\":\"absolute\",\"float\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"clear\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pid\":\"0\",\"zIndex\":9,\"order\":11,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"vA\":\"top\",\"bg\":{\"color\":{\"orig\":\"transparent\",\"type\":\"solid\",\"string\":\"transparent\"}},\"attr\":{\"aO\":\"ml\",\"class\":\"title-box-shadow\",\"tO\":\"ml\"},\"tl\":{\"in\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":0,\"f\":0,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[\"50\",\"50\",\"50\",\"50\",\"50\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1},{\"t\":1100,\"d\":800,\"f\":800,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"xRe\":0,\"yRe\":0,\"off\":1}]}},\"out\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"n\",\"x\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"y\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1}]}}},\"p\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"m\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"color\":[\"#0f1c72\",\"#0f1c72\",\"#0f1c72\",\"#0f1c72\",\"#0f1c72\"],\"font\":{\"family\":\"Poppins\",\"size\":[\"48px\",\"48px\",\"48px\",\"36px\",\"21px\"],\"weight\":[\"700\",\"700\",\"700\",\"700\",\"700\"],\"ls\":[0,0,0,0,0]},\"lh\":[\"60px\",\"60px\",\"60px\",\"45px\",\"28px\"],\"type\":\"text\"},{\"id\":2,\"alias\":\"Shape-2\",\"size\":{\"w\":[\"83px\",\"83px\",\"83px\",\"53px\",\"43px\"],\"h\":[\"3px\",\"3px\",\"3px\",\"3px\",\"3px\"],\"minW\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"minH\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pos\":{\"x\":[\"-27px\",\"-27px\",\"-27px\",\"-27px\",\"-27px\"],\"y\":[\"64px\",\"64px\",\"64px\",\"64px\",\"64px\"],\"pos\":\"absolute\",\"float\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"clear\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pid\":\"0\",\"zIndex\":8,\"order\":12,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"vA\":\"top\",\"bg\":{\"color\":{\"type\":\"linear\",\"angle\":\"90\",\"easing\":\"none\",\"strength\":100,\"orig\":[{\"rgba\":\"rgba(245,83,1,1)\",\"p\":0,\"align\":\"bottom\"},{\"rgba\":\"rgba(255,159,0,1)\",\"p\":100,\"align\":\"top\"}],\"string\":\"linear-gradient(90deg,rgba(245,83,1,1) 0%,rgba(255,159,0,1) 100%)\"}},\"attr\":{\"aO\":\"ml\",\"tO\":\"ml\"},\"tl\":{\"in\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":0,\"f\":0,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[\"-50\",\"-50\",\"-50\",\"-50\",\"-50\"],\"y\":[0,0,0,0,0],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1},{\"t\":900,\"d\":800,\"f\":800,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"xRe\":0,\"yRe\":0,\"off\":1}]}},\"out\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"n\",\"x\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"y\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1}]}}},\"p\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"m\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"type\":\"shape\"},{\"id\":3,\"alias\":\"Text-3\",\"content\":{\"text\":\"Your Columbia, Constrio Custom Home Builder\"},\"size\":{\"w\":[\"#a\",\"auto\",\"auto\",\"auto\",\"240px\"],\"h\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"minW\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"minH\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pos\":{\"x\":[\"80px\",\"80px\",\"80px\",\"40px\",\"30px\"],\"y\":[\"180px\",\"180px\",\"180px\",\"145px\",\"121px\"],\"pos\":\"absolute\",\"float\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"clear\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pid\":\"0\",\"zIndex\":10,\"order\":10,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"vA\":\"top\",\"bg\":{\"color\":{\"orig\":\"transparent\",\"type\":\"solid\",\"string\":\"transparent\"}},\"attr\":{\"aO\":\"ml\",\"tO\":\"ml\"},\"tl\":{\"in\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":0,\"f\":0,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[\"50\",\"50\",\"50\",\"50\",\"50\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1},{\"t\":1300,\"d\":800,\"f\":800,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"xRe\":0,\"yRe\":0,\"off\":1}]}},\"out\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"n\",\"x\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"y\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1}]}}},\"p\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"m\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"color\":[\"#4b546e\",\"#4b546e\",\"#4b546e\",\"#4b546e\",\"#4b546e\"],\"font\":{\"size\":[\"18px\",\"18px\",\"18px\",\"16px\",\"16px\"],\"weight\":[400,400,400,400,400],\"ls\":[0,0,0,0,0]},\"lh\":[\"29px\",\"29px\",\"29px\",\"29px\",\"26px\"],\"type\":\"text\"},{\"listen\":[\"click\"],\"id\":4,\"alias\":\"Text-4\",\"content\":{\"text\":\"<span class=\\\"btn btn-preset4\\\"><i class=\\\"fac fac-user space-right\\\"><\\/i>About team<\\/span>\"},\"size\":{\"w\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"h\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"minW\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"minH\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pos\":{\"x\":[\"155px\",\"155px\",\"155px\",\"115px\",\"95px\"],\"y\":[\"60px\",\"60px\",\"60px\",\"50px\",\"50px\"],\"v\":[\"bottom\",\"bottom\",\"bottom\",\"bottom\",\"bottom\"],\"pos\":\"absolute\",\"float\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"clear\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pid\":\"0\",\"zIndex\":12,\"order\":8,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"vA\":\"top\",\"bg\":{\"color\":{\"orig\":\"transparent\",\"type\":\"solid\",\"string\":\"transparent\"}},\"attr\":{\"aO\":\"ml\",\"tO\":\"ml\"},\"tl\":{\"in\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":0,\"f\":0,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[\"50\",\"50\",\"50\",\"50\",\"50\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1},{\"t\":1700,\"d\":700,\"f\":700,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"xRe\":0,\"yRe\":0,\"off\":1}]}},\"out\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"n\",\"x\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"y\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1}]}}},\"p\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"m\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"color\":[\"#000000\",\"#000000\",\"#000000\",\"#000000\",\"#000000\"],\"font\":{\"size\":[\"16px\",\"16px\",\"16px\",\"16px\",\"16px\"],\"weight\":[400,400,400,400,400],\"ls\":[0,0,0,0,0]},\"lh\":[\"58px\",\"58px\",\"58px\",\"58px\",\"58px\"],\"tag\":\"a\",\"target\":\"_self\",\"href\":\"https:\\/\\/demo.casethemes.net\\/contio\\/about\\/\",\"rel\":\"nofollow\",\"type\":\"text\"},{\"id\":5,\"alias\":\"Text-5\",\"content\":{\"text\":\"<a class=\\\"ct-video-button size2\\\" href=\\\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\\\"><i class=\\\"fac fac-play\\\"><\\/i>Video<\\/a>\"},\"size\":{\"w\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"h\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"minW\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"minH\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pos\":{\"x\":[\"80px\",\"80px\",\"80px\",\"40px\",\"30px\"],\"y\":[\"60px\",\"60px\",\"60px\",\"50px\",\"50px\"],\"v\":[\"bottom\",\"bottom\",\"bottom\",\"bottom\",\"bottom\"],\"pos\":\"absolute\",\"float\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"clear\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pid\":\"0\",\"zIndex\":11,\"order\":9,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"vA\":\"top\",\"bg\":{\"color\":{\"orig\":\"transparent\",\"type\":\"solid\",\"string\":\"transparent\"}},\"attr\":{\"aO\":\"ml\",\"tO\":\"ml\"},\"tl\":{\"in\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":0,\"f\":0,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[\"50\",\"50\",\"50\",\"50\",\"50\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1},{\"t\":1500,\"d\":800,\"f\":800,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"xRe\":0,\"yRe\":0,\"off\":1}]}},\"out\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"n\",\"x\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"y\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1}]}}},\"p\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"m\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"color\":[\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\"],\"font\":{\"size\":[\"16px\",\"16px\",\"16px\",\"16px\",\"16px\"],\"weight\":[400,400,400,400,400],\"ls\":[0,0,0,0,0]},\"lh\":[\"58px\",\"58px\",\"58px\",\"58px\",\"58px\"],\"type\":\"text\"},{\"rTo\":\"slide\",\"id\":6,\"alias\":\"Slide BG Layer\",\"subtype\":\"slidebg\",\"size\":{\"cMode\":\"cover\"},\"pos\":{\"h\":[\"center\",\"center\",\"center\",\"center\",\"center\"],\"v\":[\"center\",\"center\",\"center\",\"center\",\"center\"],\"pos\":\"absolute\"},\"zIndex\":0,\"order\":0,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"bg\":{\"image\":{\"ratio\":1,\"src\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-slider-07.jpg\",\"lib\":\"\",\"lib_id\":1255,\"lib_size\":\"\",\"fromStream\":false,\"streamType\":\"gallery\",\"pos\":{\"x\":\"50%\",\"y\":\"50%\"},\"repeat\":\"\",\"size\":\"cover\",\"sizeVal\":\"100%\",\"seo\":false}},\"tl\":{\"in\":{\"bg\":{\"ms\":1000,\"rnd\":false,\"temp\":{\"t\":\"*add* Simple\",\"p\":\"\",\"m\":\"\",\"g\":\"\"},\"addOns\":[],\"f\":\"nodelay\",\"in\":{\"o\":0,\"sx\":0,\"sy\":0,\"row\":5,\"col\":5},\"out\":{\"a\":false}}}},\"mod\":{\"s\":{\"u\":true,\"x\":0,\"y\":25,\"s\":0,\"e\":\"power3.out\",\"ut\":false,\"rX\":0,\"rY\":0,\"rZ\":0,\"sc\":1},\"mask\":false},\"type\":\"shape\"}]','{\"version\":\"6.7.20\"}',''),(8,3,2,'{\"addOns\":[],\"id\":8,\"version\":\"7.0.0\",\"actions\":[{\"a\":\"link\",\"evt\":\"click\",\"target\":\"_self\",\"flw\":\"nofollow\",\"ltype\":\"a\",\"link\":\"https:\\/\\/demo.casethemes.net\\/contio\\/about\\/\",\"src\":[4]}],\"title\":\"\",\"parentId\":null,\"language\":\"default\",\"order\":\"2\",\"thumb\":{\"src\":\"\",\"srcId\":\"\",\"admin\":\"\",\"adminId\":\"\",\"dimension\":\"slider\",\"default\":{\"image\":{\"src\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-slider-08.jpg\",\"repeat\":\"\",\"size\":\"cover\",\"pos\":{\"x\":\"50%\",\"y\":\"50%\"}}}},\"description\":\"\",\"attr\":{\"class\":\"\",\"data\":\"\",\"id\":\"\",\"a\":\"\",\"aO\":\"ml\",\"t\":\"\",\"tO\":\"\",\"deepLink\":\"\",\"attr\":\"\"},\"publish\":{\"from\":\"\",\"to\":\"\",\"state\":\"\"},\"slideshow\":{\"stop\":false,\"len\":\"default\",\"hal\":0,\"hom\":false,\"hfn\":false},\"loop\":{\"u\":false,\"r\":-1,\"s\":0,\"e\":99999}}','[{\"fluid\":{\"sp\":true},\"id\":0,\"alias\":\"Group-0\",\"subtype\":\"group\",\"size\":{\"w\":[\"570px\",\"570px\",\"570px\",\"430px\",\"290px\"],\"h\":[\"345px\",\"345px\",\"345px\",\"305px\",\"305px\"],\"minW\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"minH\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pos\":{\"x\":[\"30px\",\"30px\",\"30px\",\"30px\",\"20px\"],\"y\":[\"224px\",\"224px\",\"224px\",\"auto\",\"auto\"],\"v\":[\"top\",\"top\",\"top\",\"middle\",\"middle\"],\"pos\":\"absolute\",\"float\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"clear\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"zIndex\":13,\"order\":13,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"vA\":\"top\",\"bg\":{\"color\":{\"type\":\"solid\",\"orig\":\"rgba(255, 255, 255, 0.9)\",\"string\":\"rgba(255, 255, 255, 0.9)\"}},\"attr\":{\"aO\":\"ml\",\"tO\":\"ml\"},\"tl\":{\"in\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":0,\"f\":0,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[\"50\",\"50\",\"50\",\"50\",\"50\"],\"y\":[0,0,0,0,0],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":0},{\"t\":700,\"d\":800,\"f\":800,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"xRe\":0,\"yRe\":0,\"off\":0}]}},\"out\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"n\",\"x\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"y\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":0}]}}},\"p\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"m\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"radius\":{\"t\":\"8px\",\"r\":\"8px\",\"b\":\"8px\",\"l\":\"8px\"},\"lh\":[\"#a\",25,\"20\",\"15\",\"9\"],\"type\":\"container\"},{\"id\":1,\"alias\":\"Text-1\",\"content\":{\"text\":\"Constrio Grupo posic\\ncomode los l\\u00edderes\"},\"size\":{\"w\":[\"600px\",\"600px\",\"600px\",\"600px\",\"auto\"],\"h\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"minW\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"minH\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pos\":{\"x\":[\"80px\",\"80px\",\"80px\",\"40px\",\"30px\"],\"y\":[\"47px\",\"47px\",\"47px\",\"47px\",\"48px\"],\"pos\":\"absolute\",\"float\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"clear\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pid\":\"0\",\"zIndex\":10,\"order\":11,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"vA\":\"top\",\"bg\":{\"color\":{\"orig\":\"transparent\",\"type\":\"solid\",\"string\":\"transparent\"}},\"attr\":{\"aO\":\"ml\",\"class\":\"title-box-shadow\",\"tO\":\"ml\"},\"tl\":{\"in\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":0,\"f\":0,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[\"50\",\"50\",\"50\",\"50\",\"50\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1},{\"t\":1100,\"d\":800,\"f\":800,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"xRe\":0,\"yRe\":0,\"off\":1}]}},\"out\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"n\",\"x\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"y\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1}]}}},\"p\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"m\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"color\":[\"#0f1c72\",\"#0f1c72\",\"#0f1c72\",\"#0f1c72\",\"#0f1c72\"],\"font\":{\"family\":\"Poppins\",\"size\":[\"48px\",\"48px\",\"48px\",\"36px\",\"21px\"],\"weight\":[\"700\",\"700\",\"700\",\"700\",\"700\"],\"ls\":[0,0,0,0,0]},\"lh\":[\"60px\",\"60px\",\"60px\",\"45px\",\"28px\"],\"type\":\"text\"},{\"id\":2,\"alias\":\"Shape-2\",\"size\":{\"w\":[\"83px\",\"83px\",\"83px\",\"53px\",\"43px\"],\"h\":[\"3px\",\"3px\",\"3px\",\"3px\",\"3px\"],\"minW\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"minH\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pos\":{\"x\":[\"-27px\",\"-27px\",\"-27px\",\"-27px\",\"-27px\"],\"y\":[\"64px\",\"64px\",\"64px\",\"64px\",\"64px\"],\"pos\":\"absolute\",\"float\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"clear\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pid\":\"0\",\"zIndex\":9,\"order\":12,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"vA\":\"top\",\"bg\":{\"color\":{\"type\":\"linear\",\"angle\":\"90\",\"easing\":\"none\",\"strength\":100,\"orig\":[{\"rgba\":\"rgba(245,83,1,1)\",\"p\":0,\"align\":\"bottom\"},{\"rgba\":\"rgba(255,159,0,1)\",\"p\":100,\"align\":\"top\"}],\"string\":\"linear-gradient(90deg,rgba(245,83,1,1) 0%,rgba(255,159,0,1) 100%)\"}},\"attr\":{\"aO\":\"ml\",\"tO\":\"ml\"},\"tl\":{\"in\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":0,\"f\":0,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[\"-50\",\"-50\",\"-50\",\"-50\",\"-50\"],\"y\":[0,0,0,0,0],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1},{\"t\":900,\"d\":800,\"f\":800,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"xRe\":0,\"yRe\":0,\"off\":1}]}},\"out\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"n\",\"x\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"y\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1}]}}},\"p\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"m\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"type\":\"shape\"},{\"id\":3,\"alias\":\"Text-3\",\"content\":{\"text\":\"Your Columbia, Constrio Custom Home Builder\"},\"size\":{\"w\":[\"#a\",\"auto\",\"auto\",\"auto\",\"240px\"],\"h\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"minW\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"minH\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pos\":{\"x\":[\"80px\",\"80px\",\"80px\",\"40px\",\"30px\"],\"y\":[\"180px\",\"180px\",\"180px\",\"145px\",\"121px\"],\"pos\":\"absolute\",\"float\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"clear\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pid\":\"0\",\"zIndex\":11,\"order\":10,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"vA\":\"top\",\"bg\":{\"color\":{\"orig\":\"transparent\",\"type\":\"solid\",\"string\":\"transparent\"}},\"attr\":{\"aO\":\"ml\",\"tO\":\"ml\"},\"tl\":{\"in\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":0,\"f\":0,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[\"50\",\"50\",\"50\",\"50\",\"50\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1},{\"t\":1300,\"d\":800,\"f\":800,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"xRe\":0,\"yRe\":0,\"off\":1}]}},\"out\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"n\",\"x\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"y\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1}]}}},\"p\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"m\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"color\":[\"#4b546e\",\"#4b546e\",\"#4b546e\",\"#4b546e\",\"#4b546e\"],\"font\":{\"size\":[\"18px\",\"18px\",\"18px\",\"16px\",\"16px\"],\"weight\":[400,400,400,400,400],\"ls\":[0,0,0,0,0]},\"lh\":[\"29px\",\"29px\",\"29px\",\"29px\",\"26px\"],\"type\":\"text\"},{\"listen\":[\"click\"],\"id\":4,\"alias\":\"Text-4\",\"content\":{\"text\":\"<span class=\\\"btn btn-preset4\\\"><i class=\\\"fac fac-user space-right\\\"><\\/i>About team<\\/span>\"},\"size\":{\"w\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"h\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"minW\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"minH\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pos\":{\"x\":[\"80px\",\"80px\",\"80px\",\"40px\",\"30px\"],\"y\":[\"60px\",\"60px\",\"60px\",\"50px\",\"50px\"],\"v\":[\"bottom\",\"bottom\",\"bottom\",\"bottom\",\"bottom\"],\"pos\":\"absolute\",\"float\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"clear\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pid\":\"0\",\"zIndex\":12,\"order\":9,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"vA\":\"top\",\"bg\":{\"color\":{\"orig\":\"transparent\",\"type\":\"solid\",\"string\":\"transparent\"}},\"attr\":{\"aO\":\"ml\",\"tO\":\"ml\"},\"tl\":{\"in\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":0,\"f\":0,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[\"50\",\"50\",\"50\",\"50\",\"50\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1},{\"t\":1700,\"d\":700,\"f\":700,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"xRe\":0,\"yRe\":0,\"off\":1}]}},\"out\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"n\",\"x\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"y\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1}]}}},\"p\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"m\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"color\":[\"#000000\",\"#000000\",\"#000000\",\"#000000\",\"#000000\"],\"font\":{\"size\":[\"16px\",\"16px\",\"16px\",\"16px\",\"16px\"],\"weight\":[400,400,400,400,400],\"ls\":[0,0,0,0,0]},\"lh\":[\"58px\",\"58px\",\"58px\",\"58px\",\"58px\"],\"tag\":\"a\",\"target\":\"_self\",\"href\":\"https:\\/\\/demo.casethemes.net\\/contio\\/about\\/\",\"rel\":\"nofollow\",\"type\":\"text\"},{\"id\":5,\"alias\":\"Text-5\",\"content\":{\"text\":\"<a class=\\\"ct-video-button size3\\\" href=\\\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\\\"><i class=\\\"fac fac-play\\\"><\\/i><span class=\\\"line-video-animation line-video-1\\\"><\\/span><span class=\\\"line-video-animation line-video-2\\\"><\\/span><span class=\\\"line-video-animation line-video-3\\\"><\\/span>Video<\\/a>\"},\"size\":{\"w\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"h\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"minW\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"minH\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pos\":{\"x\":[\"170px\",\"170px\",\"60px\",\"30px\",\"30px\"],\"y\":[\"335px\",\"335px\",\"335px\",\"auto\",\"auto\"],\"h\":[\"right\",\"right\",\"right\",\"right\",\"right\"],\"v\":[\"top\",\"top\",\"top\",\"middle\",\"middle\"],\"pos\":\"absolute\",\"float\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"clear\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"zIndex\":8,\"order\":8,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"vA\":\"top\",\"bg\":{\"color\":{\"orig\":\"transparent\",\"type\":\"solid\",\"string\":\"transparent\"}},\"attr\":{\"aO\":\"ml\",\"tO\":\"ml\"},\"tl\":{\"in\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":0,\"f\":0,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[\"50\",\"50\",\"50\",\"50\",\"50\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":0},{\"t\":1500,\"d\":800,\"f\":800,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"xRe\":0,\"yRe\":0,\"off\":0}]}},\"out\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"n\",\"x\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"y\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":0}]}}},\"vis\":[true,true,true,false,false],\"viSH\":false,\"viOC\":false,\"p\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"m\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"color\":[\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\"],\"font\":{\"size\":[\"16px\",\"16px\",\"16px\",\"16px\",\"16px\"],\"weight\":[400,400,400,400,400],\"ls\":[0,0,0,0,0]},\"lh\":[\"146px\",\"146px\",\"146px\",\"146px\",\"146px\"],\"type\":\"text\"},{\"rTo\":\"slide\",\"id\":6,\"alias\":\"Slide BG Layer\",\"subtype\":\"slidebg\",\"size\":{\"cMode\":\"cover\"},\"pos\":{\"h\":[\"center\",\"center\",\"center\",\"center\",\"center\"],\"v\":[\"center\",\"center\",\"center\",\"center\",\"center\"],\"pos\":\"absolute\"},\"zIndex\":0,\"order\":0,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"bg\":{\"image\":{\"ratio\":1,\"src\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-slider-08.jpg\",\"lib\":\"\",\"lib_id\":1257,\"lib_size\":\"\",\"fromStream\":false,\"streamType\":\"gallery\",\"pos\":{\"x\":\"50%\",\"y\":\"50%\"},\"repeat\":\"\",\"size\":\"cover\",\"sizeVal\":\"100%\",\"seo\":false}},\"tl\":{\"in\":{\"bg\":{\"ms\":1000,\"rnd\":false,\"temp\":{\"t\":\"*shuffle* Random\",\"p\":\"\",\"m\":\"\",\"g\":\"\"},\"addOns\":[],\"f\":\"random\",\"in\":{\"o\":0,\"sx\":1.1,\"sy\":1.1,\"m\":true,\"row\":5,\"col\":5},\"out\":{\"a\":false}}}},\"mod\":{\"s\":{\"u\":true,\"x\":0,\"y\":25,\"s\":0,\"e\":\"power3.out\",\"ut\":false,\"rX\":0,\"rY\":0,\"rZ\":0,\"sc\":1},\"mask\":false},\"type\":\"shape\"}]','{\"version\":\"6.7.20\"}',''),(9,3,3,'{\"addOns\":[],\"id\":9,\"version\":\"7.0.0\",\"actions\":[{\"a\":\"link\",\"evt\":\"click\",\"target\":\"_self\",\"flw\":\"nofollow\",\"ltype\":\"a\",\"link\":\"https:\\/\\/demo.casethemes.net\\/contio\\/about\\/\",\"src\":[4]}],\"title\":\"\",\"parentId\":null,\"language\":\"default\",\"order\":\"3\",\"thumb\":{\"src\":\"\",\"srcId\":\"\",\"admin\":\"\",\"adminId\":\"\",\"dimension\":\"slider\",\"default\":{\"image\":{\"src\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-slider-09.jpg\",\"repeat\":\"\",\"size\":\"cover\",\"pos\":{\"x\":\"50%\",\"y\":\"50%\"}}}},\"description\":\"\",\"attr\":{\"class\":\"\",\"data\":\"\",\"id\":\"\",\"a\":\"\",\"aO\":\"ml\",\"t\":\"\",\"tO\":\"\",\"deepLink\":\"\",\"attr\":\"\"},\"publish\":{\"from\":\"\",\"to\":\"\",\"state\":\"\"},\"slideshow\":{\"stop\":false,\"len\":\"default\",\"hal\":0,\"hom\":false,\"hfn\":false},\"loop\":{\"u\":false,\"r\":-1,\"s\":0,\"e\":99999}}','[{\"fluid\":{\"sp\":true},\"id\":0,\"alias\":\"Group-0\",\"subtype\":\"group\",\"size\":{\"w\":[\"570px\",\"570px\",\"570px\",\"430px\",\"290px\"],\"h\":[\"345px\",\"345px\",\"345px\",\"305px\",\"305px\"],\"minW\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"minH\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pos\":{\"x\":[\"30px\",\"30px\",\"30px\",\"30px\",\"20px\"],\"y\":[\"224px\",\"224px\",\"224px\",\"auto\",\"auto\"],\"v\":[\"top\",\"top\",\"top\",\"middle\",\"middle\"],\"pos\":\"absolute\",\"float\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"clear\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"zIndex\":13,\"order\":13,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"vA\":\"top\",\"bg\":{\"color\":{\"type\":\"solid\",\"orig\":\"rgba(255, 255, 255, 0.9)\",\"string\":\"rgba(255, 255, 255, 0.9)\"}},\"attr\":{\"aO\":\"ml\",\"tO\":\"ml\"},\"tl\":{\"in\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":0,\"f\":0,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[\"50\",\"50\",\"50\",\"50\",\"50\"],\"y\":[0,0,0,0,0],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":0},{\"t\":700,\"d\":800,\"f\":800,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"xRe\":0,\"yRe\":0,\"off\":0}]}},\"out\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"n\",\"x\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"y\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":0}]}}},\"p\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"m\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"radius\":{\"t\":\"8px\",\"r\":\"8px\",\"b\":\"8px\",\"l\":\"8px\"},\"lh\":[\"#a\",25,\"20\",\"15\",\"9\"],\"type\":\"container\"},{\"id\":1,\"alias\":\"Text-1\",\"content\":{\"text\":\"Constrio Grupo posic\\ncomode los l\\u00edderes\"},\"size\":{\"w\":[\"600px\",\"600px\",\"600px\",\"600px\",\"auto\"],\"h\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"minW\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"minH\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pos\":{\"x\":[\"80px\",\"80px\",\"80px\",\"40px\",\"30px\"],\"y\":[\"47px\",\"47px\",\"47px\",\"47px\",\"48px\"],\"pos\":\"absolute\",\"float\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"clear\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pid\":\"0\",\"zIndex\":9,\"order\":11,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"vA\":\"top\",\"bg\":{\"color\":{\"orig\":\"transparent\",\"type\":\"solid\",\"string\":\"transparent\"}},\"attr\":{\"aO\":\"ml\",\"class\":\"title-box-shadow\",\"tO\":\"ml\"},\"tl\":{\"in\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":0,\"f\":0,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[\"50\",\"50\",\"50\",\"50\",\"50\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1},{\"t\":1100,\"d\":800,\"f\":800,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"xRe\":0,\"yRe\":0,\"off\":1}]}},\"out\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"n\",\"x\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"y\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1}]}}},\"p\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"m\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"color\":[\"#0f1c72\",\"#0f1c72\",\"#0f1c72\",\"#0f1c72\",\"#0f1c72\"],\"font\":{\"family\":\"Poppins\",\"size\":[\"48px\",\"48px\",\"48px\",\"36px\",\"21px\"],\"weight\":[\"700\",\"700\",\"700\",\"700\",\"700\"],\"ls\":[0,0,0,0,0]},\"lh\":[\"60px\",\"60px\",\"60px\",\"45px\",\"28px\"],\"type\":\"text\"},{\"id\":2,\"alias\":\"Shape-2\",\"size\":{\"w\":[\"83px\",\"83px\",\"83px\",\"53px\",\"43px\"],\"h\":[\"3px\",\"3px\",\"3px\",\"3px\",\"3px\"],\"minW\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"minH\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pos\":{\"x\":[\"-27px\",\"-27px\",\"-27px\",\"-27px\",\"-27px\"],\"y\":[\"64px\",\"64px\",\"64px\",\"64px\",\"64px\"],\"pos\":\"absolute\",\"float\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"clear\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pid\":\"0\",\"zIndex\":8,\"order\":12,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"vA\":\"top\",\"bg\":{\"color\":{\"type\":\"linear\",\"angle\":\"90\",\"easing\":\"none\",\"strength\":100,\"orig\":[{\"rgba\":\"rgba(245,83,1,1)\",\"p\":0,\"align\":\"bottom\"},{\"rgba\":\"rgba(255,159,0,1)\",\"p\":100,\"align\":\"top\"}],\"string\":\"linear-gradient(90deg,rgba(245,83,1,1) 0%,rgba(255,159,0,1) 100%)\"}},\"attr\":{\"aO\":\"ml\",\"tO\":\"ml\"},\"tl\":{\"in\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":0,\"f\":0,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[\"-50\",\"-50\",\"-50\",\"-50\",\"-50\"],\"y\":[0,0,0,0,0],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1},{\"t\":900,\"d\":800,\"f\":800,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"xRe\":0,\"yRe\":0,\"off\":1}]}},\"out\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"n\",\"x\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"y\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1}]}}},\"p\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"m\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"type\":\"shape\"},{\"id\":3,\"alias\":\"Text-3\",\"content\":{\"text\":\"Your Columbia, Constrio Custom Home Builder\"},\"size\":{\"w\":[\"#a\",\"auto\",\"auto\",\"auto\",\"240px\"],\"h\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"minW\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"minH\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pos\":{\"x\":[\"80px\",\"80px\",\"80px\",\"40px\",\"30px\"],\"y\":[\"180px\",\"180px\",\"180px\",\"145px\",\"121px\"],\"pos\":\"absolute\",\"float\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"clear\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pid\":\"0\",\"zIndex\":10,\"order\":10,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"vA\":\"top\",\"bg\":{\"color\":{\"orig\":\"transparent\",\"type\":\"solid\",\"string\":\"transparent\"}},\"attr\":{\"aO\":\"ml\",\"tO\":\"ml\"},\"tl\":{\"in\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":0,\"f\":0,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[\"50\",\"50\",\"50\",\"50\",\"50\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1},{\"t\":1300,\"d\":800,\"f\":800,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"xRe\":0,\"yRe\":0,\"off\":1}]}},\"out\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"n\",\"x\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"y\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1}]}}},\"p\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"m\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"color\":[\"#4b546e\",\"#4b546e\",\"#4b546e\",\"#4b546e\",\"#4b546e\"],\"font\":{\"size\":[\"18px\",\"18px\",\"18px\",\"16px\",\"16px\"],\"weight\":[400,400,400,400,400],\"ls\":[0,0,0,0,0]},\"lh\":[\"29px\",\"29px\",\"29px\",\"29px\",\"26px\"],\"type\":\"text\"},{\"listen\":[\"click\"],\"id\":4,\"alias\":\"Text-4\",\"content\":{\"text\":\"<span class=\\\"btn btn-preset4\\\"><i class=\\\"fac fac-user space-right\\\"><\\/i>About team<\\/span>\"},\"size\":{\"w\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"h\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"minW\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"minH\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pos\":{\"x\":[\"155px\",\"155px\",\"155px\",\"115px\",\"95px\"],\"y\":[\"60px\",\"60px\",\"60px\",\"50px\",\"50px\"],\"v\":[\"bottom\",\"bottom\",\"bottom\",\"bottom\",\"bottom\"],\"pos\":\"absolute\",\"float\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"clear\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pid\":\"0\",\"zIndex\":12,\"order\":8,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"vA\":\"top\",\"bg\":{\"color\":{\"orig\":\"transparent\",\"type\":\"solid\",\"string\":\"transparent\"}},\"attr\":{\"aO\":\"ml\",\"tO\":\"ml\"},\"tl\":{\"in\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":0,\"f\":0,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[\"50\",\"50\",\"50\",\"50\",\"50\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1},{\"t\":1700,\"d\":700,\"f\":700,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"xRe\":0,\"yRe\":0,\"off\":1}]}},\"out\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"n\",\"x\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"y\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1}]}}},\"p\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"m\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"color\":[\"#000000\",\"#000000\",\"#000000\",\"#000000\",\"#000000\"],\"font\":{\"size\":[\"16px\",\"16px\",\"16px\",\"16px\",\"16px\"],\"weight\":[400,400,400,400,400],\"ls\":[0,0,0,0,0]},\"lh\":[\"58px\",\"58px\",\"58px\",\"58px\",\"58px\"],\"tag\":\"a\",\"target\":\"_self\",\"href\":\"https:\\/\\/demo.casethemes.net\\/contio\\/about\\/\",\"rel\":\"nofollow\",\"type\":\"text\"},{\"id\":5,\"alias\":\"Text-5\",\"content\":{\"text\":\"<a class=\\\"ct-video-button size2\\\" href=\\\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\\\"><i class=\\\"fac fac-play\\\"><\\/i>Video<\\/a>\"},\"size\":{\"w\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"h\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"minW\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"minH\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pos\":{\"x\":[\"80px\",\"80px\",\"80px\",\"40px\",\"30px\"],\"y\":[\"60px\",\"60px\",\"60px\",\"50px\",\"50px\"],\"v\":[\"bottom\",\"bottom\",\"bottom\",\"bottom\",\"bottom\"],\"pos\":\"absolute\",\"float\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"clear\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pid\":\"0\",\"zIndex\":11,\"order\":9,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"vA\":\"top\",\"bg\":{\"color\":{\"orig\":\"transparent\",\"type\":\"solid\",\"string\":\"transparent\"}},\"attr\":{\"aO\":\"ml\",\"tO\":\"ml\"},\"tl\":{\"in\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":0,\"f\":0,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[\"50\",\"50\",\"50\",\"50\",\"50\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1},{\"t\":1500,\"d\":800,\"f\":800,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"xRe\":0,\"yRe\":0,\"off\":1}]}},\"out\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"n\",\"x\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"y\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1}]}}},\"p\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"m\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"color\":[\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\"],\"font\":{\"size\":[\"16px\",\"16px\",\"16px\",\"16px\",\"16px\"],\"weight\":[400,400,400,400,400],\"ls\":[0,0,0,0,0]},\"lh\":[\"58px\",\"58px\",\"58px\",\"58px\",\"58px\"],\"type\":\"text\"},{\"rTo\":\"slide\",\"id\":6,\"alias\":\"Slide BG Layer\",\"subtype\":\"slidebg\",\"size\":{\"cMode\":\"cover\"},\"pos\":{\"h\":[\"center\",\"center\",\"center\",\"center\",\"center\"],\"v\":[\"center\",\"center\",\"center\",\"center\",\"center\"],\"pos\":\"absolute\"},\"zIndex\":0,\"order\":0,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"bg\":{\"image\":{\"ratio\":1,\"src\":\"http:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2019\\/11\\/bg-slider-09.jpg\",\"lib\":\"\",\"lib_id\":1258,\"lib_size\":\"\",\"fromStream\":false,\"streamType\":\"gallery\",\"pos\":{\"x\":\"50%\",\"y\":\"50%\"},\"repeat\":\"\",\"size\":\"cover\",\"sizeVal\":\"100%\",\"seo\":false}},\"tl\":{\"in\":{\"bg\":{\"ms\":1000,\"rnd\":false,\"temp\":{\"t\":\"*rotate_left* Scale & Fade\",\"p\":\"\",\"m\":\"\",\"g\":\"\"},\"addOns\":[],\"f\":\"random\",\"in\":{\"o\":0,\"r\":\"{-45,45}\",\"sx\":0,\"sy\":0,\"row\":5,\"col\":5},\"out\":{\"a\":false}}}},\"mod\":{\"s\":{\"u\":true,\"x\":0,\"y\":25,\"s\":0,\"e\":\"power3.out\",\"ut\":false,\"rX\":0,\"rY\":0,\"rZ\":0,\"sc\":1},\"mask\":false},\"type\":\"shape\"}]','{\"version\":\"6.7.20\"}',''),(10,1,0,'{\"addOns\":[],\"id\":10,\"version\":\"7.0.0\",\"title\":\"Global Layers\",\"parentId\":null,\"language\":\"default\",\"oflow\":false,\"global\":true,\"respVP\":true,\"pos\":\"front\",\"fullHeight\":true}','[]','{\"version\":\"6.7.20\"}','1'),(11,2,0,'{\"addOns\":[],\"id\":11,\"version\":\"7.0.0\",\"title\":\"Global Layers\",\"parentId\":null,\"language\":\"default\",\"oflow\":false,\"global\":true,\"respVP\":true,\"pos\":\"front\",\"fullHeight\":true}','[]','{\"version\":\"6.7.20\"}','1'),(12,3,0,'{\"addOns\":[],\"id\":12,\"version\":\"7.0.0\",\"title\":\"\",\"parentId\":null,\"language\":\"default\",\"oflow\":false,\"global\":true,\"respVP\":true,\"pos\":\"front\",\"fullHeight\":true}','[]','{\"version\":\"6.7.20\"}','1'),(15,1,4,'{\"addOns\":[],\"id\":15,\"version\":\"7.0.0\",\"actions\":[{\"a\":\"link\",\"evt\":\"click\",\"target\":\"_self\",\"flw\":\"nofollow\",\"ltype\":\"a\",\"link\":\"https:\\/\\/fe2tech.com\\/contact\",\"src\":[2]}],\"title\":\"\",\"parentId\":null,\"language\":\"default\",\"order\":4,\"thumb\":{\"src\":\"\",\"srcId\":\"\",\"admin\":\"\",\"adminId\":\"\",\"dimension\":\"slider\",\"default\":{\"image\":{\"src\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/DSC00817-3.jpg\",\"repeat\":\"\",\"size\":\"cover\",\"pos\":{\"x\":\"50%\",\"y\":\"50%\"}}}},\"description\":\"\",\"attr\":{\"class\":\"\",\"data\":\"\",\"id\":\"\",\"a\":\"\",\"aO\":\"ml\",\"t\":\"\",\"tO\":\"\",\"deepLink\":\"\",\"attr\":\"\"},\"publish\":{\"from\":\"\",\"to\":\"\",\"state\":\"\"},\"slideshow\":{\"stop\":false,\"len\":\"default\",\"hal\":0,\"hom\":false,\"hfn\":false},\"loop\":{\"u\":false,\"r\":-1,\"s\":0,\"e\":99999}}','{\"0\":{\"id\":0,\"alias\":\"Text-0\",\"content\":{\"text\":\"#4 Providing the best value to global customers\"},\"size\":{\"w\":[\"629px\",\"629px\",\"629px\",\"629px\",\"629px\"],\"h\":[\"#a\",\"auto\",\"auto\",\"auto\",\"auto\"],\"minW\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"minH\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pos\":{\"x\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"y\":[\"-11px\",\"-11px\",\"-11px\",\"-11px\",\"auto\"],\"pos\":\"absolute\",\"float\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"clear\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pid\":\"1\",\"zIndex\":8,\"order\":9,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"vA\":\"top\",\"bg\":{\"color\":{\"orig\":\"transparent\",\"type\":\"solid\",\"string\":\"transparent\"}},\"attr\":{\"aO\":\"ml\",\"class\":\"title-box-shadow\",\"tO\":\"ml\"},\"tl\":{\"in\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":0,\"f\":0,\"e\":\"circ.out\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[\"50\",\"50\",\"50\",\"50\",\"50\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1},{\"t\":800,\"d\":800,\"f\":800,\"e\":\"circ.out\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"xRe\":0,\"yRe\":0,\"off\":1}]}},\"out\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"n\",\"x\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"y\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1}]}}},\"p\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"m\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"color\":[\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\"],\"font\":{\"family\":\"Poppins\",\"size\":[\"48px\",\"48px\",\"48px\",\"30px\",\"24px\"],\"weight\":[\"700\",\"700\",\"700\",\"700\",\"700\"],\"ls\":[0,0,0,0,0]},\"lh\":[\"60px\",\"60px\",\"60px\",\"38px\",\"30px\"],\"type\":\"text\"},\"1\":{\"fluid\":{\"sp\":true},\"id\":1,\"alias\":\"Group-1\",\"subtype\":\"group\",\"size\":{\"w\":[\"631px\",\"631px\",\"631px\",\"631px\",\"631px\"],\"h\":[\"268px\",\"268px\",\"268px\",\"200px\",\"190px\"],\"minW\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"minH\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pos\":{\"x\":[\"37px\",\"37px\",\"37px\",\"20px\",\"20px\"],\"y\":[\"118px\",\"118px\",\"118px\",\"118px\",\"130px\"],\"pos\":\"absolute\",\"float\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"clear\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"zIndex\":10,\"order\":10,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"vA\":\"top\",\"bg\":{\"color\":{\"orig\":\"transparent\",\"type\":\"solid\",\"string\":\"transparent\"}},\"attr\":{\"aO\":\"ml\",\"tO\":\"ml\"},\"tl\":{\"in\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":0,\"f\":0,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"xRe\":0,\"yRe\":0,\"off\":0},{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"xRe\":0,\"yRe\":0,\"off\":0}]}},\"out\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"n\",\"x\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"y\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":0}]}}},\"p\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"m\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"lh\":[\"#a\",25,\"20\",\"15\",\"9\"],\"type\":\"container\"},\"2\":{\"listen\":[\"click\"],\"id\":2,\"alias\":\"Text-2\",\"subtype\":\"button\",\"content\":{\"text\":\"<span class=\\\"btn btn-preset3\\\"><i class=\\\"fac fac-envelope space-right\\\"><\\/i>Contact today<\\/span>\"},\"size\":{\"w\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"h\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"minW\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"minH\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pos\":{\"x\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"y\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"v\":[\"bottom\",\"bottom\",\"bottom\",\"bottom\",\"bottom\"],\"pos\":\"absolute\",\"float\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"clear\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pid\":\"1\",\"zIndex\":9,\"order\":8,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"vA\":\"top\",\"bg\":{\"color\":{\"orig\":\"transparent\",\"type\":\"solid\",\"string\":\"transparent\"}},\"attr\":{\"aO\":\"ml\",\"tO\":\"ml\"},\"tl\":{\"in\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":0,\"f\":0,\"e\":\"circ.out\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[50,50,50,50,50],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1},{\"t\":1000,\"d\":800,\"f\":800,\"e\":\"circ.out\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"xRe\":0,\"yRe\":0,\"off\":1}]}},\"out\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"n\",\"x\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"y\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1}]}}},\"p\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"m\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"color\":[\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\"],\"font\":{\"size\":[\"#a\",20,\"16\",\"12\",\"7\"],\"weight\":[400,400,400,400,400],\"ls\":[0,0,0,0,0]},\"lh\":[\"#a\",25,\"20\",\"15\",\"9\"],\"tag\":\"a\",\"target\":\"_self\",\"href\":\"https:\\/\\/fe2tech.com\\/contact\",\"rel\":\"nofollow\",\"type\":\"text\"},\"4\":{\"id\":4,\"alias\":\"Shape-4\",\"size\":{\"w\":[\"3000px\",\"3000px\",\"3000px\",\"3000px\",\"3000px\"],\"h\":[\"126px\",\"126px\",\"126px\",\"126px\",\"127px\"],\"minW\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"minH\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pos\":{\"x\":[\"-45px\",\"-45px\",\"-45px\",\"30px\",\"auto\"],\"y\":[\"-1px\",\"-1px\",\"-1px\",\"-1px\",\"-1px\"],\"v\":[\"bottom\",\"bottom\",\"bottom\",\"bottom\",\"bottom\"],\"pos\":\"absolute\",\"float\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"clear\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"zIndex\":11,\"order\":11,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"vA\":\"top\",\"bg\":{\"color\":{\"type\":\"solid\",\"orig\":\"#ffffff\",\"string\":\"rgba(255, 255, 255, 1)\"}},\"attr\":{\"aO\":\"ml\",\"class\":\"shap-slider-bottom\",\"tO\":\"ml\"},\"tl\":{\"in\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":0,\"f\":0,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"xRe\":0,\"yRe\":0,\"off\":0},{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"xRe\":0,\"yRe\":0,\"off\":0}]}},\"out\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"n\",\"x\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"y\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":0}]}}},\"vis\":[true,true,true,true,false],\"viSH\":false,\"viOC\":false,\"p\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"m\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"type\":\"shape\"},\"5\":{\"id\":5,\"alias\":\"Text-5\",\"content\":{\"text\":\"<div class=\\\"ct-slider-nav\\\">\\n\\t<span class=\\\"slider-nav-left\\\"><i class=\\\"fac fac-angle-left\\\"><\\/i><\\/span>\\n\\t<span class=\\\"slider-nav-right\\\"><i class=\\\"fac fac-angle-right\\\"><\\/i><\\/span>\\n<\\/div>\"},\"size\":{\"w\":[\"118px\",\"118px\",\"118px\",\"118px\",\"118px\"],\"h\":[\"53px\",\"53px\",\"53px\",\"53px\",\"53px\"],\"minW\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"minH\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pos\":{\"x\":[\"30px\",\"30px\",\"30px\",\"30px\",\"30px\"],\"y\":[\"101px\",\"101px\",\"101px\",\"101px\",\"101px\"],\"h\":[\"right\",\"right\",\"right\",\"right\",\"right\"],\"v\":[\"bottom\",\"bottom\",\"bottom\",\"bottom\",\"bottom\"],\"pos\":\"absolute\",\"float\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"clear\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"zIndex\":12,\"order\":12,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"vA\":\"top\",\"bg\":{\"color\":{\"orig\":\"transparent\",\"type\":\"solid\",\"string\":\"transparent\"}},\"attr\":{\"aO\":\"ml\",\"tO\":\"ml\"},\"tl\":{\"in\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":0,\"f\":0,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[50,50,50,50,50],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":0},{\"t\":800,\"d\":1000,\"f\":1000,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"xRe\":0,\"yRe\":0,\"off\":0}]}},\"out\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"n\",\"x\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"y\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":0}]}}},\"p\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"m\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"color\":[\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\"],\"font\":{\"size\":[\"#a\",20,\"16\",\"12\",\"7\"],\"weight\":[400,400,400,400,400],\"ls\":[0,0,0,0,0]},\"lh\":[\"#a\",25,\"20\",\"15\",\"9\"],\"type\":\"text\"},\"6\":{\"rTo\":\"slide\",\"id\":6,\"alias\":\"Slide BG Layer\",\"subtype\":\"slidebg\",\"size\":{\"cMode\":\"cover\"},\"pos\":{\"h\":[\"center\",\"center\",\"center\",\"center\",\"center\"],\"v\":[\"center\",\"center\",\"center\",\"center\",\"center\"],\"pos\":\"absolute\"},\"zIndex\":0,\"order\":0,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"bg\":{\"image\":{\"ratio\":1.4998211091234348,\"src\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/DSC00817-3.jpg\",\"lib\":\"medialibrary\",\"lib_id\":3178,\"lib_size\":\"\",\"fromStream\":false,\"streamType\":\"gallery\",\"pos\":{\"x\":\"50%\",\"y\":\"50%\"},\"repeat\":\"\",\"size\":\"cover\",\"sizeVal\":\"100%\",\"seo\":false}},\"tl\":{\"in\":{\"bg\":{\"ms\":1000,\"rnd\":false,\"temp\":{\"t\":\"*opacity* Fade In\",\"p\":\"fade\",\"m\":\"basic\",\"g\":\"fade\"},\"addOns\":[],\"in\":{\"o\":0},\"out\":{\"a\":false}}}},\"type\":\"shape\"}}','{\"version\":\"6.7.20\"}',''),(16,1,5,'{\"addOns\":[],\"id\":16,\"version\":\"7.0.0\",\"actions\":[{\"a\":\"link\",\"evt\":\"click\",\"target\":\"_self\",\"flw\":\"nofollow\",\"ltype\":\"a\",\"link\":\"https:\\/\\/fe2tech.com\\/contact\",\"src\":[2]}],\"title\":\"\",\"parentId\":null,\"language\":\"default\",\"order\":5,\"thumb\":{\"src\":\"\",\"srcId\":\"\",\"admin\":\"\",\"adminId\":\"\",\"dimension\":\"slider\",\"default\":{\"image\":{\"src\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/20250222_154721.jpg\",\"repeat\":\"\",\"size\":\"cover\",\"pos\":{\"x\":\"50%\",\"y\":\"50%\"}}}},\"description\":\"\",\"attr\":{\"class\":\"\",\"data\":\"\",\"id\":\"\",\"a\":\"\",\"aO\":\"ml\",\"t\":\"\",\"tO\":\"\",\"deepLink\":\"\",\"attr\":\"\"},\"publish\":{\"from\":\"\",\"to\":\"\",\"state\":\"\"},\"slideshow\":{\"stop\":false,\"len\":\"default\",\"hal\":0,\"hom\":false,\"hfn\":false},\"loop\":{\"u\":false,\"r\":-1,\"s\":0,\"e\":99999}}','{\"0\":{\"id\":0,\"alias\":\"Text-0\",\"size\":{\"w\":[\"629px\",\"629px\",\"629px\",\"629px\",\"629px\"],\"h\":[\"#a\",\"auto\",\"auto\",\"auto\",\"auto\"],\"minW\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"minH\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pos\":{\"x\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"y\":[\"-11px\",\"-11px\",\"-11px\",\"-11px\",\"auto\"],\"pos\":\"absolute\",\"float\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"clear\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pid\":\"1\",\"zIndex\":8,\"order\":9,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"vA\":\"top\",\"bg\":{\"color\":{\"orig\":\"transparent\",\"type\":\"solid\",\"string\":\"transparent\"}},\"attr\":{\"aO\":\"ml\",\"class\":\"title-box-shadow\",\"tO\":\"ml\"},\"tl\":{\"in\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":0,\"f\":0,\"e\":\"circ.out\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[\"50\",\"50\",\"50\",\"50\",\"50\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1},{\"t\":800,\"d\":800,\"f\":800,\"e\":\"circ.out\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"xRe\":0,\"yRe\":0,\"off\":1}]}},\"out\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"n\",\"x\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"y\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1}]}}},\"p\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"m\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"color\":[\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\"],\"font\":{\"family\":\"Poppins\",\"size\":[\"48px\",\"48px\",\"48px\",\"30px\",\"24px\"],\"weight\":[\"700\",\"700\",\"700\",\"700\",\"700\"],\"ls\":[0,0,0,0,0]},\"lh\":[\"60px\",\"60px\",\"60px\",\"38px\",\"30px\"],\"type\":\"text\"},\"1\":{\"fluid\":{\"sp\":true},\"id\":1,\"alias\":\"Group-1\",\"subtype\":\"group\",\"size\":{\"w\":[\"631px\",\"631px\",\"631px\",\"631px\",\"631px\"],\"h\":[\"268px\",\"268px\",\"268px\",\"200px\",\"190px\"],\"minW\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"minH\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pos\":{\"x\":[\"37px\",\"37px\",\"37px\",\"20px\",\"20px\"],\"y\":[\"118px\",\"118px\",\"118px\",\"118px\",\"130px\"],\"pos\":\"absolute\",\"float\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"clear\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"zIndex\":10,\"order\":10,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"vA\":\"top\",\"bg\":{\"color\":{\"orig\":\"transparent\",\"type\":\"solid\",\"string\":\"transparent\"}},\"attr\":{\"aO\":\"ml\",\"tO\":\"ml\"},\"tl\":{\"in\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":0,\"f\":0,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"xRe\":0,\"yRe\":0,\"off\":0},{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"xRe\":0,\"yRe\":0,\"off\":0}]}},\"out\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"n\",\"x\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"y\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":0}]}}},\"p\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"m\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"lh\":[\"#a\",25,\"20\",\"15\",\"9\"],\"type\":\"container\"},\"2\":{\"listen\":[\"click\"],\"id\":2,\"alias\":\"Text-2\",\"subtype\":\"button\",\"content\":{\"text\":\"<span class=\\\"btn btn-preset3\\\"><i class=\\\"fac fac-envelope space-right\\\"><\\/i>Contact today<\\/span>\"},\"size\":{\"w\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"h\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"minW\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"minH\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pos\":{\"x\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"y\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"v\":[\"bottom\",\"bottom\",\"bottom\",\"bottom\",\"bottom\"],\"pos\":\"absolute\",\"float\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"clear\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pid\":\"1\",\"zIndex\":9,\"order\":8,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"vA\":\"top\",\"bg\":{\"color\":{\"orig\":\"transparent\",\"type\":\"solid\",\"string\":\"transparent\"}},\"attr\":{\"aO\":\"ml\",\"tO\":\"ml\"},\"tl\":{\"in\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":0,\"f\":0,\"e\":\"circ.out\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[50,50,50,50,50],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1},{\"t\":1000,\"d\":800,\"f\":800,\"e\":\"circ.out\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"xRe\":0,\"yRe\":0,\"off\":1}]}},\"out\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"n\",\"x\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"y\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1}]}}},\"p\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"m\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"color\":[\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\"],\"font\":{\"size\":[\"#a\",20,\"16\",\"12\",\"7\"],\"weight\":[400,400,400,400,400],\"ls\":[0,0,0,0,0]},\"lh\":[\"#a\",25,\"20\",\"15\",\"9\"],\"tag\":\"a\",\"target\":\"_self\",\"href\":\"https:\\/\\/fe2tech.com\\/contact\",\"rel\":\"nofollow\",\"type\":\"text\"},\"4\":{\"id\":4,\"alias\":\"Shape-4\",\"size\":{\"w\":[\"3000px\",\"3000px\",\"3000px\",\"3000px\",\"3000px\"],\"h\":[\"126px\",\"126px\",\"126px\",\"126px\",\"127px\"],\"minW\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"minH\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pos\":{\"x\":[\"-45px\",\"-45px\",\"-45px\",\"30px\",\"auto\"],\"y\":[\"-1px\",\"-1px\",\"-1px\",\"-1px\",\"-1px\"],\"v\":[\"bottom\",\"bottom\",\"bottom\",\"bottom\",\"bottom\"],\"pos\":\"absolute\",\"float\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"clear\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"zIndex\":11,\"order\":11,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"vA\":\"top\",\"bg\":{\"color\":{\"type\":\"solid\",\"orig\":\"#ffffff\",\"string\":\"rgba(255, 255, 255, 1)\"}},\"attr\":{\"aO\":\"ml\",\"class\":\"shap-slider-bottom\",\"tO\":\"ml\"},\"tl\":{\"in\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":0,\"f\":0,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"xRe\":0,\"yRe\":0,\"off\":0},{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"xRe\":0,\"yRe\":0,\"off\":0}]}},\"out\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"n\",\"x\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"y\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":0}]}}},\"vis\":[true,true,true,true,false],\"viSH\":false,\"viOC\":false,\"p\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"m\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"type\":\"shape\"},\"5\":{\"id\":5,\"alias\":\"Text-5\",\"content\":{\"text\":\"<div class=\\\"ct-slider-nav\\\">\\n\\t<span class=\\\"slider-nav-left\\\"><i class=\\\"fac fac-angle-left\\\"><\\/i><\\/span>\\n\\t<span class=\\\"slider-nav-right\\\"><i class=\\\"fac fac-angle-right\\\"><\\/i><\\/span>\\n<\\/div>\"},\"size\":{\"w\":[\"118px\",\"118px\",\"118px\",\"118px\",\"118px\"],\"h\":[\"53px\",\"53px\",\"53px\",\"53px\",\"53px\"],\"minW\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"minH\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pos\":{\"x\":[\"30px\",\"30px\",\"30px\",\"30px\",\"30px\"],\"y\":[\"101px\",\"101px\",\"101px\",\"101px\",\"101px\"],\"h\":[\"right\",\"right\",\"right\",\"right\",\"right\"],\"v\":[\"bottom\",\"bottom\",\"bottom\",\"bottom\",\"bottom\"],\"pos\":\"absolute\",\"float\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"clear\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"zIndex\":12,\"order\":12,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"vA\":\"top\",\"bg\":{\"color\":{\"orig\":\"transparent\",\"type\":\"solid\",\"string\":\"transparent\"}},\"attr\":{\"aO\":\"ml\",\"tO\":\"ml\"},\"tl\":{\"in\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":0,\"f\":0,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[50,50,50,50,50],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":0},{\"t\":800,\"d\":1000,\"f\":1000,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"xRe\":0,\"yRe\":0,\"off\":0}]}},\"out\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"n\",\"x\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"y\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":0}]}}},\"p\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"m\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"color\":[\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\"],\"font\":{\"size\":[\"#a\",20,\"16\",\"12\",\"7\"],\"weight\":[400,400,400,400,400],\"ls\":[0,0,0,0,0]},\"lh\":[\"#a\",25,\"20\",\"15\",\"9\"],\"type\":\"text\"},\"6\":{\"rTo\":\"slide\",\"id\":6,\"alias\":\"Slide BG Layer\",\"subtype\":\"slidebg\",\"size\":{\"cMode\":\"cover\"},\"pos\":{\"h\":[\"center\",\"center\",\"center\",\"center\",\"center\"],\"v\":[\"center\",\"center\",\"center\",\"center\",\"center\"],\"pos\":\"absolute\"},\"zIndex\":0,\"order\":0,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"bg\":{\"image\":{\"ratio\":1,\"src\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2025\\/03\\/20250222_154721.jpg\",\"lib\":\"medialibrary\",\"lib_id\":3174,\"lib_size\":\"\",\"fromStream\":false,\"streamType\":\"gallery\",\"pos\":{\"x\":\"50%\",\"y\":\"50%\"},\"repeat\":\"\",\"size\":\"cover\",\"sizeVal\":\"100%\",\"seo\":false}},\"tl\":{\"in\":{\"bg\":{\"ms\":1000,\"rnd\":false,\"temp\":{\"t\":\"*opacity* Fade In\",\"p\":\"fade\",\"m\":\"basic\",\"g\":\"fade\"},\"addOns\":[],\"in\":{\"o\":0},\"out\":{\"a\":false}}}},\"type\":\"shape\"}}','{\"version\":\"6.7.20\"}',''),(17,1,6,'{\"addOns\":[],\"id\":17,\"version\":\"7.0.0\",\"actions\":[{\"a\":\"link\",\"evt\":\"click\",\"target\":\"_self\",\"flw\":\"nofollow\",\"ltype\":\"a\",\"link\":\"https:\\/\\/fe2tech.com\\/contact\",\"src\":[2]}],\"title\":\"\",\"parentId\":null,\"language\":\"default\",\"order\":6,\"thumb\":{\"src\":\"\",\"srcId\":\"\",\"admin\":\"\",\"adminId\":\"\",\"dimension\":\"slider\",\"default\":{\"image\":{\"src\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/Finished-CNC-milled-parts-showcasing-the-precision-and-versatility-of-the-process.png\",\"repeat\":\"\",\"size\":\"cover\",\"pos\":{\"x\":\"50%\",\"y\":\"50%\"}}}},\"description\":\"\",\"attr\":{\"class\":\"\",\"data\":\"\",\"id\":\"\",\"a\":\"\",\"aO\":\"ml\",\"t\":\"\",\"tO\":\"\",\"deepLink\":\"\",\"attr\":\"\"},\"publish\":{\"from\":\"\",\"to\":\"\",\"state\":\"unpublished\"},\"slideshow\":{\"stop\":false,\"len\":\"default\",\"hal\":0,\"hom\":false,\"hfn\":false},\"loop\":{\"u\":false,\"r\":-1,\"s\":0,\"e\":99999}}','{\"0\":{\"id\":0,\"alias\":\"Text-0\",\"size\":{\"w\":[\"629px\",\"629px\",\"629px\",\"629px\",\"629px\"],\"h\":[\"#a\",\"auto\",\"auto\",\"auto\",\"auto\"],\"minW\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"minH\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pos\":{\"x\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"y\":[\"-11px\",\"-11px\",\"-11px\",\"-11px\",\"auto\"],\"pos\":\"absolute\",\"float\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"clear\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pid\":\"1\",\"zIndex\":8,\"order\":9,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"vA\":\"top\",\"bg\":{\"color\":{\"orig\":\"transparent\",\"type\":\"solid\",\"string\":\"transparent\"}},\"attr\":{\"aO\":\"ml\",\"class\":\"title-box-shadow\",\"tO\":\"ml\"},\"tl\":{\"in\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":0,\"f\":0,\"e\":\"circ.out\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[\"50\",\"50\",\"50\",\"50\",\"50\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1},{\"t\":800,\"d\":800,\"f\":800,\"e\":\"circ.out\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"xRe\":0,\"yRe\":0,\"off\":1}]}},\"out\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"n\",\"x\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"y\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1}]}}},\"p\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"m\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"color\":[\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\"],\"font\":{\"family\":\"Poppins\",\"size\":[\"48px\",\"48px\",\"48px\",\"30px\",\"24px\"],\"weight\":[\"700\",\"700\",\"700\",\"700\",\"700\"],\"ls\":[0,0,0,0,0]},\"lh\":[\"60px\",\"60px\",\"60px\",\"38px\",\"30px\"],\"type\":\"text\"},\"1\":{\"fluid\":{\"sp\":true},\"id\":1,\"alias\":\"Group-1\",\"subtype\":\"group\",\"size\":{\"w\":[\"631px\",\"631px\",\"631px\",\"631px\",\"631px\"],\"h\":[\"268px\",\"268px\",\"268px\",\"200px\",\"190px\"],\"minW\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"minH\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pos\":{\"x\":[\"37px\",\"37px\",\"37px\",\"20px\",\"20px\"],\"y\":[\"118px\",\"118px\",\"118px\",\"118px\",\"130px\"],\"pos\":\"absolute\",\"float\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"clear\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"zIndex\":10,\"order\":10,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"vA\":\"top\",\"bg\":{\"color\":{\"orig\":\"transparent\",\"type\":\"solid\",\"string\":\"transparent\"}},\"attr\":{\"aO\":\"ml\",\"tO\":\"ml\"},\"tl\":{\"in\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":0,\"f\":0,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"xRe\":0,\"yRe\":0,\"off\":0},{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"xRe\":0,\"yRe\":0,\"off\":0}]}},\"out\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"n\",\"x\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"y\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":0}]}}},\"p\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"m\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"lh\":[\"#a\",25,\"20\",\"15\",\"9\"],\"type\":\"container\"},\"2\":{\"listen\":[\"click\"],\"id\":2,\"alias\":\"Text-2\",\"subtype\":\"button\",\"content\":{\"text\":\"<span class=\\\"btn btn-preset3\\\"><i class=\\\"fac fac-envelope space-right\\\"><\\/i>Contact today<\\/span>\"},\"size\":{\"w\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"h\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"minW\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"minH\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pos\":{\"x\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"y\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"v\":[\"bottom\",\"bottom\",\"bottom\",\"bottom\",\"bottom\"],\"pos\":\"absolute\",\"float\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"clear\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pid\":\"1\",\"zIndex\":9,\"order\":8,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"vA\":\"top\",\"bg\":{\"color\":{\"orig\":\"transparent\",\"type\":\"solid\",\"string\":\"transparent\"}},\"attr\":{\"aO\":\"ml\",\"tO\":\"ml\"},\"tl\":{\"in\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":0,\"f\":0,\"e\":\"circ.out\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[50,50,50,50,50],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1},{\"t\":1000,\"d\":800,\"f\":800,\"e\":\"circ.out\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"xRe\":0,\"yRe\":0,\"off\":1}]}},\"out\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"n\",\"x\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"y\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1}]}}},\"p\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"m\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"color\":[\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\"],\"font\":{\"size\":[\"#a\",20,\"16\",\"12\",\"7\"],\"weight\":[400,400,400,400,400],\"ls\":[0,0,0,0,0]},\"lh\":[\"#a\",25,\"20\",\"15\",\"9\"],\"tag\":\"a\",\"target\":\"_self\",\"href\":\"https:\\/\\/fe2tech.com\\/contact\",\"rel\":\"nofollow\",\"type\":\"text\"},\"4\":{\"id\":4,\"alias\":\"Shape-4\",\"size\":{\"w\":[\"3000px\",\"3000px\",\"3000px\",\"3000px\",\"3000px\"],\"h\":[\"126px\",\"126px\",\"126px\",\"126px\",\"127px\"],\"minW\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"minH\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pos\":{\"x\":[\"-45px\",\"-45px\",\"-45px\",\"30px\",\"auto\"],\"y\":[\"-1px\",\"-1px\",\"-1px\",\"-1px\",\"-1px\"],\"v\":[\"bottom\",\"bottom\",\"bottom\",\"bottom\",\"bottom\"],\"pos\":\"absolute\",\"float\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"clear\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"zIndex\":11,\"order\":11,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"vA\":\"top\",\"bg\":{\"color\":{\"type\":\"solid\",\"orig\":\"#ffffff\",\"string\":\"rgba(255, 255, 255, 1)\"}},\"attr\":{\"aO\":\"ml\",\"class\":\"shap-slider-bottom\",\"tO\":\"ml\"},\"tl\":{\"in\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":0,\"f\":0,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"xRe\":0,\"yRe\":0,\"off\":0},{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"xRe\":0,\"yRe\":0,\"off\":0}]}},\"out\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"n\",\"x\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"y\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":0}]}}},\"vis\":[true,true,true,true,false],\"viSH\":false,\"viOC\":false,\"p\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"m\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"type\":\"shape\"},\"5\":{\"id\":5,\"alias\":\"Text-5\",\"content\":{\"text\":\"<div class=\\\"ct-slider-nav\\\">\\n\\t<span class=\\\"slider-nav-left\\\"><i class=\\\"fac fac-angle-left\\\"><\\/i><\\/span>\\n\\t<span class=\\\"slider-nav-right\\\"><i class=\\\"fac fac-angle-right\\\"><\\/i><\\/span>\\n<\\/div>\"},\"size\":{\"w\":[\"118px\",\"118px\",\"118px\",\"118px\",\"118px\"],\"h\":[\"53px\",\"53px\",\"53px\",\"53px\",\"53px\"],\"minW\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"minH\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pos\":{\"x\":[\"30px\",\"30px\",\"30px\",\"30px\",\"30px\"],\"y\":[\"101px\",\"101px\",\"101px\",\"101px\",\"101px\"],\"h\":[\"right\",\"right\",\"right\",\"right\",\"right\"],\"v\":[\"bottom\",\"bottom\",\"bottom\",\"bottom\",\"bottom\"],\"pos\":\"absolute\",\"float\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"clear\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"zIndex\":12,\"order\":12,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"vA\":\"top\",\"bg\":{\"color\":{\"orig\":\"transparent\",\"type\":\"solid\",\"string\":\"transparent\"}},\"attr\":{\"aO\":\"ml\",\"tO\":\"ml\"},\"tl\":{\"in\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":0,\"f\":0,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[50,50,50,50,50],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":0},{\"t\":800,\"d\":1000,\"f\":1000,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"xRe\":0,\"yRe\":0,\"off\":0}]}},\"out\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"n\",\"x\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"y\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":0}]}}},\"p\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"m\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"color\":[\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\"],\"font\":{\"size\":[\"#a\",20,\"16\",\"12\",\"7\"],\"weight\":[400,400,400,400,400],\"ls\":[0,0,0,0,0]},\"lh\":[\"#a\",25,\"20\",\"15\",\"9\"],\"type\":\"text\"},\"6\":{\"rTo\":\"slide\",\"id\":6,\"alias\":\"Slide BG Layer\",\"subtype\":\"slidebg\",\"size\":{\"cMode\":\"cover\"},\"pos\":{\"h\":[\"center\",\"center\",\"center\",\"center\",\"center\"],\"v\":[\"center\",\"center\",\"center\",\"center\",\"center\"],\"pos\":\"absolute\"},\"zIndex\":0,\"order\":0,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"bg\":{\"image\":{\"ratio\":1,\"src\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/Finished-CNC-milled-parts-showcasing-the-precision-and-versatility-of-the-process.png\",\"lib\":\"medialibrary\",\"lib_id\":2589,\"lib_size\":\"\",\"fromStream\":false,\"streamType\":\"gallery\",\"pos\":{\"x\":\"50%\",\"y\":\"50%\"},\"repeat\":\"\",\"size\":\"cover\",\"sizeVal\":\"100%\",\"seo\":false}},\"tl\":{\"in\":{\"bg\":{\"ms\":1000,\"rnd\":false,\"temp\":{\"t\":\"*opacity* Fade In\",\"p\":\"fade\",\"m\":\"basic\",\"g\":\"fade\"},\"addOns\":[],\"in\":{\"o\":0},\"out\":{\"a\":false}}}},\"type\":\"shape\"}}','{\"version\":\"6.7.20\"}',''),(18,1,7,'{\"addOns\":[],\"id\":18,\"version\":\"7.0.0\",\"actions\":[{\"a\":\"link\",\"evt\":\"click\",\"target\":\"_self\",\"flw\":\"nofollow\",\"ltype\":\"a\",\"link\":\"https:\\/\\/fe2tech.com\\/contact\",\"src\":[2]}],\"title\":\"\",\"parentId\":null,\"language\":\"default\",\"order\":7,\"thumb\":{\"src\":\"\",\"srcId\":\"\",\"admin\":\"\",\"adminId\":\"\",\"dimension\":\"slider\",\"default\":{\"image\":{\"src\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363746762_6241ac4c6625581b5db9b24a1ee05f68.jpg\",\"repeat\":\"\",\"size\":\"cover\",\"pos\":{\"x\":\"50%\",\"y\":\"50%\"}}}},\"description\":\"\",\"attr\":{\"class\":\"\",\"data\":\"\",\"id\":\"\",\"a\":\"\",\"aO\":\"ml\",\"t\":\"\",\"tO\":\"\",\"deepLink\":\"\",\"attr\":\"\"},\"publish\":{\"from\":\"\",\"to\":\"\",\"state\":\"unpublished\"},\"slideshow\":{\"stop\":false,\"len\":\"default\",\"hal\":0,\"hom\":false,\"hfn\":false},\"loop\":{\"u\":false,\"r\":-1,\"s\":0,\"e\":99999}}','{\"0\":{\"id\":0,\"alias\":\"Text-0\",\"size\":{\"w\":[\"629px\",\"629px\",\"629px\",\"629px\",\"629px\"],\"h\":[\"#a\",\"auto\",\"auto\",\"auto\",\"auto\"],\"minW\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"minH\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pos\":{\"x\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"y\":[\"-11px\",\"-11px\",\"-11px\",\"-11px\",\"auto\"],\"pos\":\"absolute\",\"float\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"clear\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pid\":\"1\",\"zIndex\":8,\"order\":9,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"vA\":\"top\",\"bg\":{\"color\":{\"orig\":\"transparent\",\"type\":\"solid\",\"string\":\"transparent\"}},\"attr\":{\"aO\":\"ml\",\"class\":\"title-box-shadow\",\"tO\":\"ml\"},\"tl\":{\"in\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":0,\"f\":0,\"e\":\"circ.out\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[\"50\",\"50\",\"50\",\"50\",\"50\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1},{\"t\":800,\"d\":800,\"f\":800,\"e\":\"circ.out\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"xRe\":0,\"yRe\":0,\"off\":1}]}},\"out\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"n\",\"x\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"y\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1}]}}},\"p\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"m\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"color\":[\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\"],\"font\":{\"family\":\"Poppins\",\"size\":[\"48px\",\"48px\",\"48px\",\"30px\",\"24px\"],\"weight\":[\"700\",\"700\",\"700\",\"700\",\"700\"],\"ls\":[0,0,0,0,0]},\"lh\":[\"60px\",\"60px\",\"60px\",\"38px\",\"30px\"],\"type\":\"text\"},\"1\":{\"fluid\":{\"sp\":true},\"id\":1,\"alias\":\"Group-1\",\"subtype\":\"group\",\"size\":{\"w\":[\"631px\",\"631px\",\"631px\",\"631px\",\"631px\"],\"h\":[\"268px\",\"268px\",\"268px\",\"200px\",\"190px\"],\"minW\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"minH\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pos\":{\"x\":[\"37px\",\"37px\",\"37px\",\"20px\",\"20px\"],\"y\":[\"118px\",\"118px\",\"118px\",\"118px\",\"130px\"],\"pos\":\"absolute\",\"float\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"clear\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"zIndex\":10,\"order\":10,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"vA\":\"top\",\"bg\":{\"color\":{\"orig\":\"transparent\",\"type\":\"solid\",\"string\":\"transparent\"}},\"attr\":{\"aO\":\"ml\",\"tO\":\"ml\"},\"tl\":{\"in\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":0,\"f\":0,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"xRe\":0,\"yRe\":0,\"off\":0},{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"xRe\":0,\"yRe\":0,\"off\":0}]}},\"out\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"n\",\"x\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"y\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":0}]}}},\"p\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"m\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"lh\":[\"#a\",25,\"20\",\"15\",\"9\"],\"type\":\"container\"},\"2\":{\"listen\":[\"click\"],\"id\":2,\"alias\":\"Text-2\",\"subtype\":\"button\",\"content\":{\"text\":\"<span class=\\\"btn btn-preset3\\\"><i class=\\\"fac fac-envelope space-right\\\"><\\/i>Contact today<\\/span>\"},\"size\":{\"w\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"h\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"minW\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"minH\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pos\":{\"x\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"y\":[\"auto\",\"auto\",\"auto\",\"auto\",\"auto\"],\"v\":[\"bottom\",\"bottom\",\"bottom\",\"bottom\",\"bottom\"],\"pos\":\"absolute\",\"float\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"clear\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pid\":\"1\",\"zIndex\":9,\"order\":8,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"vA\":\"top\",\"bg\":{\"color\":{\"orig\":\"transparent\",\"type\":\"solid\",\"string\":\"transparent\"}},\"attr\":{\"aO\":\"ml\",\"tO\":\"ml\"},\"tl\":{\"in\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":0,\"f\":0,\"e\":\"circ.out\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[50,50,50,50,50],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1},{\"t\":1000,\"d\":800,\"f\":800,\"e\":\"circ.out\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"xRe\":0,\"yRe\":0,\"off\":1}]}},\"out\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"n\",\"x\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"y\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":1}]}}},\"p\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"m\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"color\":[\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\"],\"font\":{\"size\":[\"#a\",20,\"16\",\"12\",\"7\"],\"weight\":[400,400,400,400,400],\"ls\":[0,0,0,0,0]},\"lh\":[\"#a\",25,\"20\",\"15\",\"9\"],\"tag\":\"a\",\"target\":\"_self\",\"href\":\"https:\\/\\/fe2tech.com\\/contact\",\"rel\":\"nofollow\",\"type\":\"text\"},\"4\":{\"id\":4,\"alias\":\"Shape-4\",\"size\":{\"w\":[\"3000px\",\"3000px\",\"3000px\",\"3000px\",\"3000px\"],\"h\":[\"126px\",\"126px\",\"126px\",\"126px\",\"127px\"],\"minW\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"minH\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pos\":{\"x\":[\"-45px\",\"-45px\",\"-45px\",\"30px\",\"auto\"],\"y\":[\"-1px\",\"-1px\",\"-1px\",\"-1px\",\"-1px\"],\"v\":[\"bottom\",\"bottom\",\"bottom\",\"bottom\",\"bottom\"],\"pos\":\"absolute\",\"float\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"clear\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"zIndex\":11,\"order\":11,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"vA\":\"top\",\"bg\":{\"color\":{\"type\":\"solid\",\"orig\":\"#ffffff\",\"string\":\"rgba(255, 255, 255, 1)\"}},\"attr\":{\"aO\":\"ml\",\"class\":\"shap-slider-bottom\",\"tO\":\"ml\"},\"tl\":{\"in\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":0,\"f\":0,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"xRe\":0,\"yRe\":0,\"off\":0},{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"xRe\":0,\"yRe\":0,\"off\":0}]}},\"out\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"n\",\"x\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"y\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":0}]}}},\"vis\":[true,true,true,true,false],\"viSH\":false,\"viOC\":false,\"p\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"m\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"type\":\"shape\"},\"5\":{\"id\":5,\"alias\":\"Text-5\",\"content\":{\"text\":\"<div class=\\\"ct-slider-nav\\\">\\n\\t<span class=\\\"slider-nav-left\\\"><i class=\\\"fac fac-angle-left\\\"><\\/i><\\/span>\\n\\t<span class=\\\"slider-nav-right\\\"><i class=\\\"fac fac-angle-right\\\"><\\/i><\\/span>\\n<\\/div>\"},\"size\":{\"w\":[\"118px\",\"118px\",\"118px\",\"118px\",\"118px\"],\"h\":[\"53px\",\"53px\",\"53px\",\"53px\",\"53px\"],\"minW\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"minH\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"pos\":{\"x\":[\"30px\",\"30px\",\"30px\",\"30px\",\"30px\"],\"y\":[\"101px\",\"101px\",\"101px\",\"101px\",\"101px\"],\"h\":[\"right\",\"right\",\"right\",\"right\",\"right\"],\"v\":[\"bottom\",\"bottom\",\"bottom\",\"bottom\",\"bottom\"],\"pos\":\"absolute\",\"float\":[\"none\",\"none\",\"none\",\"none\",\"none\"],\"clear\":[\"none\",\"none\",\"none\",\"none\",\"none\"]},\"zIndex\":12,\"order\":12,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"vA\":\"top\",\"bg\":{\"color\":{\"orig\":\"transparent\",\"type\":\"solid\",\"string\":\"transparent\"}},\"attr\":{\"aO\":\"ml\",\"tO\":\"ml\"},\"tl\":{\"in\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":0,\"f\":0,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[50,50,50,50,50],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":0},{\"t\":800,\"d\":1000,\"f\":1000,\"e\":\"power3.inOut\",\"pE\":\"d\",\"x\":[0,0,0,0,0],\"y\":[0,0,0,0,0],\"o\":1,\"xRe\":0,\"yRe\":0,\"off\":0}]}},\"out\":{\"content\":{\"pers\":\"600px\",\"orig\":{\"x\":\"50%\",\"y\":\"50%\",\"z\":\"0\"},\"all\":[{\"t\":0,\"d\":300,\"f\":300,\"e\":\"power3.inOut\",\"pE\":\"n\",\"x\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"y\":[\"inherit\",\"inherit\",\"inherit\",\"inherit\",\"inherit\"],\"o\":0,\"xRe\":0,\"yRe\":0,\"off\":0}]}}},\"p\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"m\":{\"t\":[0,0,0,0,0],\"b\":[0,0,0,0,0],\"l\":[0,0,0,0,0],\"r\":[0,0,0,0,0]},\"color\":[\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\",\"#ffffff\"],\"font\":{\"size\":[\"#a\",20,\"16\",\"12\",\"7\"],\"weight\":[400,400,400,400,400],\"ls\":[0,0,0,0,0]},\"lh\":[\"#a\",25,\"20\",\"15\",\"9\"],\"type\":\"text\"},\"6\":{\"rTo\":\"slide\",\"id\":6,\"alias\":\"Slide BG Layer\",\"subtype\":\"slidebg\",\"size\":{\"cMode\":\"cover\"},\"pos\":{\"h\":[\"center\",\"center\",\"center\",\"center\",\"center\"],\"v\":[\"center\",\"center\",\"center\",\"center\",\"center\"],\"pos\":\"absolute\"},\"zIndex\":0,\"order\":0,\"display\":[\"block\",\"block\",\"block\",\"block\",\"block\"],\"bg\":{\"image\":{\"ratio\":1.3333333333333333,\"src\":\"https:\\/\\/fe2tech.com\\/wp-content\\/uploads\\/2024\\/11\\/z5952363746762_6241ac4c6625581b5db9b24a1ee05f68.jpg\",\"lib\":\"medialibrary\",\"lib_id\":2590,\"lib_size\":\"\",\"fromStream\":false,\"streamType\":\"gallery\",\"pos\":{\"x\":\"50%\",\"y\":\"50%\"},\"repeat\":\"\",\"size\":\"cover\",\"sizeVal\":\"100%\",\"seo\":false}},\"tl\":{\"in\":{\"bg\":{\"ms\":1000,\"rnd\":false,\"temp\":{\"t\":\"*opacity* Fade In\",\"p\":\"fade\",\"m\":\"basic\",\"g\":\"fade\"},\"addOns\":[],\"in\":{\"o\":0},\"out\":{\"a\":false}}}},\"type\":\"shape\"}}','{\"version\":\"6.7.20\"}','');
/*!40000 ALTER TABLE `wp_revslider_slides7` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_revslider_static_slides`
--

DROP TABLE IF EXISTS `wp_revslider_static_slides`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_revslider_static_slides` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `slider_id` int(9) NOT NULL,
  `params` longtext NOT NULL,
  `layers` longtext NOT NULL,
  `settings` text NOT NULL,
  PRIMARY KEY (`id`),
  KEY `slider_id_index` (`slider_id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_revslider_static_slides`
--

LOCK TABLES `wp_revslider_static_slides` WRITE;
/*!40000 ALTER TABLE `wp_revslider_static_slides` DISABLE KEYS */;
INSERT INTO `wp_revslider_static_slides` VALUES (1,1,'{\"static\":{\"isstatic\":true},\"title\":\"Global Layers\",\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"slideChange\":{\"in\":{\"o\":0},\"out\":{\"a\":false},\"title\":\"*opacity* Fade In\",\"main\":\"basic\",\"group\":\"fade\",\"preset\":\"fade\"},\"nav\":{\"arrows\":{\"presets\":{\"bg-color\":\"rgba(0,0,0,0.5)\",\"bg-color-def\":false,\"bg-size\":\"40\",\"bg-size-def\":false,\"arrow-color\":\"#ffffff\",\"arrow-color-def\":false,\"arrow-size\":\"20\",\"arrow-size-def\":false,\"hover-bg-color\":\"#000000\",\"hover-bg-color-def\":false,\"left-icon\":\"\\\\e82c\",\"left-icon-def\":false,\"right-icon\":\"\\\\e82d\",\"right-icon-def\":false}}}}','{\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":0}},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":0}},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":0}}}','{\"version\":\"6.7.20\"}'),(2,2,'{\"static\":{\"isstatic\":true},\"runtime\":{\"collapsedGroups\":[]},\"title\":\"Global Layers\",\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"timeline\":{\"transition\":[\"fade\"],\"slots\":[0],\"duration\":[1000],\"easeIn\":[\"default\"],\"easeOut\":[\"default\"],\"rotation\":[0]},\"version\":\"6.6.20\",\"slideChange\":{\"adpr\":false},\"bg\":{\"image\":\"\"}}','{\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":0,\"position\":\"absolute\"},\"version\":\"6.6.21\",\"text\":\"\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":0,\"position\":\"absolute\"},\"version\":\"6.6.21\",\"text\":\"\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":0,\"position\":\"absolute\"},\"version\":\"6.6.21\",\"text\":\"\"}}','{\"version\":\"6.6.21\"}'),(3,3,'{\"version\":\"6.6.20\",\"slideChange\":{\"adpr\":false},\"bg\":{\"image\":\"\"}}','[]','{\"version\":\"6.6.21\"}');
/*!40000 ALTER TABLE `wp_revslider_static_slides` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_term_relationships`
--

DROP TABLE IF EXISTS `wp_term_relationships`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_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_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_term_relationships`
--

LOCK TABLES `wp_term_relationships` WRITE;
/*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */;
INSERT INTO `wp_term_relationships` VALUES (1,55,0),(1,56,0),(2,55,0),(2,65,0),(3,55,0),(3,66,0),(4,55,0),(4,67,0),(5,55,0),(5,68,0),(6,55,0),(6,69,0),(7,55,0),(7,70,0),(8,55,0),(8,71,0),(9,54,0),(9,55,0),(9,72,0),(9,73,0),(24,54,0),(24,80,0),(26,54,0),(26,79,0),(28,54,0),(28,78,0),(30,54,0),(59,56,0),(59,58,0),(63,56,0),(63,62,0),(367,54,0),(758,11,0),(758,20,0),(758,33,0),(758,35,0),(771,11,0),(771,33,0),(771,35,0),(772,12,0),(772,20,0),(772,33,0),(773,10,0),(773,20,0),(773,33,0),(773,36,0),(774,11,0),(774,20,0),(774,33,0),(774,35,0),(775,10,0),(775,20,0),(775,33,0),(775,35,0),(776,11,0),(776,20,0),(776,33,0),(776,35,0),(777,12,0),(777,20,0),(777,28,0),(777,33,0),(778,11,0),(778,20,0),(778,28,0),(778,33,0),(778,35,0),(778,38,0),(780,20,0),(780,28,0),(780,33,0),(780,35,0),(780,36,0),(780,38,0),(781,10,0),(781,20,0),(781,28,0),(781,33,0),(781,38,0),(782,10,0),(782,20,0),(782,28,0),(782,33,0),(782,38,0),(799,54,0),(799,74,0),(1214,29,0),(1217,29,0),(1786,41,0),(1878,40,0),(1879,40,0),(1880,40,0),(1881,40,0),(1884,42,0),(1885,42,0),(1886,42,0),(1887,42,0),(1888,42,0),(1889,43,0),(1890,43,0),(1891,43,0),(1892,43,0),(1893,43,0),(1894,41,0),(1895,41,0),(1896,41,0),(1897,41,0),(1898,41,0),(1900,41,0),(1955,39,0),(1960,39,0),(1967,39,0),(2019,10,0),(2019,33,0),(2020,11,0),(2020,33,0),(2023,12,0),(2023,33,0),(2025,33,0),(2025,35,0),(2027,33,0),(2027,36,0),(2126,54,0),(2126,77,0),(2128,54,0),(2128,76,0),(2131,39,0),(2132,39,0),(2619,50,0),(2619,54,0),(2619,81,0),(2622,50,0),(2622,54,0),(2622,82,0),(2625,50,0),(2625,54,0),(2625,83,0),(2628,47,0),(2628,54,0),(2628,84,0),(2631,51,0),(2631,54,0),(2631,85,0),(2634,52,0),(2634,54,0),(2634,86,0),(2638,52,0),(2638,54,0),(2638,87,0),(2642,53,0),(2642,54,0),(2642,88,0),(2959,57,0),(2959,74,0),(2961,61,0),(2961,74,0),(2971,39,0),(2973,57,0),(2973,73,0),(2982,61,0),(2982,73,0),(2987,57,0),(2987,76,0),(2993,61,0),(2993,76,0),(2998,57,0),(2998,77,0),(3003,61,0),(3003,77,0),(3008,57,0),(3008,78,0),(3014,61,0),(3014,78,0),(3022,57,0),(3022,79,0),(3028,61,0),(3028,79,0),(3033,57,0),(3033,80,0),(3038,61,0),(3038,80,0),(3043,50,0),(3043,57,0),(3043,81,0),(3045,50,0),(3045,61,0),(3045,81,0),(3047,50,0),(3047,57,0),(3047,82,0),(3051,50,0),(3051,61,0),(3051,82,0),(3053,50,0),(3053,57,0),(3053,83,0),(3055,50,0),(3055,61,0),(3055,83,0),(3057,47,0),(3057,57,0),(3057,84,0),(3059,47,0),(3059,61,0),(3059,84,0),(3061,51,0),(3061,57,0),(3061,85,0),(3063,51,0),(3063,61,0),(3063,85,0),(3066,52,0),(3066,57,0),(3066,86,0),(3068,52,0),(3068,61,0),(3068,86,0),(3070,52,0),(3070,57,0),(3070,87,0),(3072,52,0),(3072,61,0),(3072,87,0),(3074,53,0),(3074,57,0),(3074,88,0),(3076,53,0),(3076,61,0),(3076,88,0),(3078,75,0),(3080,75,0),(3081,75,0),(3082,75,0),(3083,75,0),(3084,75,0),(3085,89,0),(3086,89,0),(3087,89,0),(3088,89,0),(3089,89,0),(3090,89,0),(3306,39,0),(3307,75,0),(3308,89,0);
/*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_term_taxonomy`
--

DROP TABLE IF EXISTS `wp_term_taxonomy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_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=90 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_term_taxonomy`
--

LOCK TABLES `wp_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','',0,0),(2,2,'category','',0,0),(3,3,'category','',0,0),(4,4,'category','',0,0),(5,5,'post_tag','',0,0),(6,6,'post_tag','',0,0),(7,7,'post_tag','',0,0),(8,8,'post_tag','',0,0),(9,9,'post_tag','',0,0),(10,10,'product_cat','',0,1),(11,11,'product_cat','',0,1),(12,12,'product_cat','',0,1),(13,13,'product_visibility','',0,0),(14,14,'product_visibility','',0,0),(15,15,'portfolio-category','',0,0),(16,16,'product_type','',0,0),(17,17,'product_visibility','',0,0),(18,18,'product_type','',0,0),(19,19,'portfolio-category','',0,0),(20,20,'product_tag','',0,0),(21,21,'product_visibility','',0,0),(22,22,'elementor_library_type','',0,0),(23,23,'portfolio-category','',0,0),(24,24,'product_visibility','',0,0),(25,25,'product_visibility','',0,0),(26,26,'product_visibility','',0,0),(27,27,'product_visibility','',0,0),(28,28,'product_visibility','',0,0),(29,29,'elementor_library_type','',0,2),(33,33,'product_type','',0,5),(34,34,'portfolio-category','',0,0),(35,35,'product_cat','',0,1),(36,36,'product_cat','',0,1),(37,37,'product_type','',0,0),(38,38,'product_tag','',0,0),(39,39,'nav_menu','',0,7),(40,40,'nav_menu','',0,4),(41,41,'nav_menu','',0,7),(42,42,'nav_menu','',0,5),(43,43,'nav_menu','',0,5),(44,44,'nav_menu','',0,0),(47,47,'service-category','',0,3),(50,50,'service-category','',0,9),(51,51,'service-category','',0,3),(52,52,'service-category','',0,6),(53,53,'service-category','',0,3),(54,54,'language','a:3:{s:6:\"locale\";s:5:\"en_US\";s:3:\"rtl\";i:0;s:9:\"flag_code\";s:2:\"us\";}',0,15),(55,55,'term_language','',0,9),(56,56,'term_translations','a:3:{s:2:\"en\";i:1;s:2:\"vi\";i:59;s:2:\"ja\";i:63;}',0,3),(57,57,'language','a:3:{s:6:\"locale\";s:2:\"vi\";s:3:\"rtl\";i:0;s:9:\"flag_code\";s:2:\"vn\";}',0,15),(58,58,'term_language','',0,1),(59,59,'category','',0,0),(61,61,'language','a:3:{s:6:\"locale\";s:2:\"ja\";s:3:\"rtl\";i:0;s:9:\"flag_code\";s:2:\"jp\";}',0,15),(62,62,'term_language','',0,1),(63,63,'category','',0,0),(65,65,'term_translations','a:1:{s:2:\"en\";i:2;}',0,1),(66,66,'term_translations','a:1:{s:2:\"en\";i:3;}',0,1),(67,67,'term_translations','a:1:{s:2:\"en\";i:4;}',0,1),(68,68,'term_translations','a:1:{s:2:\"en\";i:5;}',0,1),(69,69,'term_translations','a:1:{s:2:\"en\";i:6;}',0,1),(70,70,'term_translations','a:1:{s:2:\"en\";i:7;}',0,1),(71,71,'term_translations','a:1:{s:2:\"en\";i:8;}',0,1),(72,72,'term_translations','a:1:{s:2:\"en\";i:9;}',0,1),(73,73,'post_translations','a:3:{s:2:\"en\";i:9;s:2:\"vi\";i:2973;s:2:\"ja\";i:2982;}',0,3),(74,74,'post_translations','a:3:{s:2:\"vi\";i:2959;s:2:\"en\";i:799;s:2:\"ja\";i:2961;}',0,3),(75,75,'nav_menu','',0,7),(76,76,'post_translations','a:3:{s:2:\"vi\";i:2987;s:2:\"en\";i:2128;s:2:\"ja\";i:2993;}',0,3),(77,77,'post_translations','a:3:{s:2:\"vi\";i:2998;s:2:\"en\";i:2126;s:2:\"ja\";i:3003;}',0,3),(78,78,'post_translations','a:3:{s:2:\"vi\";i:3008;s:2:\"en\";i:28;s:2:\"ja\";i:3014;}',0,3),(79,79,'post_translations','a:3:{s:2:\"vi\";i:3022;s:2:\"en\";i:26;s:2:\"ja\";i:3028;}',0,3),(80,80,'post_translations','a:3:{s:2:\"vi\";i:3033;s:2:\"en\";i:24;s:2:\"ja\";i:3038;}',0,3),(81,81,'post_translations','a:3:{s:2:\"vi\";i:3043;s:2:\"en\";i:2619;s:2:\"ja\";i:3045;}',0,3),(82,82,'post_translations','a:3:{s:2:\"vi\";i:3047;s:2:\"en\";i:2622;s:2:\"ja\";i:3051;}',0,3),(83,83,'post_translations','a:3:{s:2:\"vi\";i:3053;s:2:\"en\";i:2625;s:2:\"ja\";i:3055;}',0,3),(84,84,'post_translations','a:3:{s:2:\"vi\";i:3057;s:2:\"en\";i:2628;s:2:\"ja\";i:3059;}',0,3),(85,85,'post_translations','a:3:{s:2:\"vi\";i:3061;s:2:\"en\";i:2631;s:2:\"ja\";i:3063;}',0,3),(86,86,'post_translations','a:3:{s:2:\"vi\";i:3066;s:2:\"en\";i:2634;s:2:\"ja\";i:3068;}',0,3),(87,87,'post_translations','a:3:{s:2:\"vi\";i:3070;s:2:\"en\";i:2638;s:2:\"ja\";i:3072;}',0,3),(88,88,'post_translations','a:3:{s:2:\"vi\";i:3074;s:2:\"en\";i:2642;s:2:\"ja\";i:3076;}',0,3),(89,89,'nav_menu','',0,7);
/*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_termmeta`
--

DROP TABLE IF EXISTS `wp_termmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_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 AUTO_INCREMENT=16 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_termmeta`
--

LOCK TABLES `wp_termmeta` WRITE;
/*!40000 ALTER TABLE `wp_termmeta` DISABLE KEYS */;
INSERT INTO `wp_termmeta` VALUES (1,10,'order','0'),(2,11,'order','0'),(3,12,'order','0'),(4,35,'order','0'),(5,36,'order','0'),(6,11,'product_count_product_cat','1'),(7,35,'product_count_product_cat','1'),(8,12,'product_count_product_cat','1'),(9,10,'product_count_product_cat','1'),(10,36,'product_count_product_cat','1'),(11,20,'product_count_product_tag','0'),(12,38,'product_count_product_tag','0'),(13,54,'_pll_strings_translations','a:42:{i:0;a:2:{i:0;s:42:\"%%sitename%% %%page%% %%sep%% %%sitedesc%%\";i:1;s:42:\"%%sitename%% %%page%% %%sep%% %%sitedesc%%\";}i:1;a:2:{i:0;s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";i:1;s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";}i:2;a:2:{i:0;s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";i:1;s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";}i:3;a:2:{i:0;s:41:\"%%name%%, Author at %%sitename%% %%page%%\";i:1;s:41:\"%%name%%, Author at %%sitename%% %%page%%\";}i:4;a:2:{i:0;s:38:\"%%date%% %%page%% %%sep%% %%sitename%%\";i:1;s:38:\"%%date%% %%page%% %%sep%% %%sitename%%\";}i:5;a:2:{i:0;s:63:\"You searched for %%searchphrase%% %%page%% %%sep%% %%sitename%%\";i:1;s:63:\"You searched for %%searchphrase%% %%page%% %%sep%% %%sitename%%\";}i:6;a:2:{i:0;s:35:\"Page not found %%sep%% %%sitename%%\";i:1;s:35:\"Page not found %%sep%% %%sitename%%\";}i:7;a:2:{i:0;s:2:\"»\";i:1;s:2:\"»\";}i:8;a:2:{i:0;s:4:\"Home\";i:1;s:4:\"Home\";}i:9;a:2:{i:0;s:12:\"Archives for\";i:1;s:12:\"Archives for\";}i:10;a:2:{i:0;s:16:\"You searched for\";i:1;s:16:\"You searched for\";}i:11;a:2:{i:0;s:25:\"Error 404: Page not found\";i:1;s:25:\"Error 404: Page not found\";}i:12;a:2:{i:0;s:53:\"The post %%POSTLINK%% appeared first on %%BLOGLINK%%.\";i:1;s:53:\"The post %%POSTLINK%% appeared first on %%BLOGLINK%%.\";}i:13;a:2:{i:0;s:10:\"Quick View\";i:1;s:10:\"Quick View\";}i:14;a:2:{i:0;s:11:\"My wishlist\";i:1;s:11:\"My wishlist\";}i:15;a:2:{i:0;s:15:\"Add to wishlist\";i:1;s:15:\"Add to wishlist\";}i:16;a:2:{i:0;s:15:\"Browse wishlist\";i:1;s:15:\"Browse wishlist\";}i:17;a:2:{i:0;s:40:\"The product is already in your wishlist!\";i:1;s:40:\"The product is already in your wishlist!\";}i:18;a:2:{i:0;s:14:\"Product added!\";i:1;s:14:\"Product added!\";}i:19;a:2:{i:0;s:11:\"Add to cart\";i:1;s:11:\"Add to cart\";}i:20;a:2:{i:0;s:22:\"My wishlist on fe2tech\";i:1;s:22:\"My wishlist on fe2tech\";}i:21;a:2:{i:0;s:4:\"Time\";i:1;s:4:\"Time\";}i:22;a:2:{i:0;s:17:\": Monday - Sunday\";i:1;s:17:\": Monday - Sunday\";}i:23;a:2:{i:0;s:22:\"Call Us: 0968 86 03 86\";i:1;s:22:\"Call Us: 0968 86 03 86\";}i:24;a:2:{i:0;s:11:\"(Mon - Sun)\";i:1;s:11:\"(Mon - Sun)\";}i:25;a:2:{i:0;s:89:\"Factory 1: Khac Niem Industrial Cluster, Khac Niem Ward, Bac Ninh City, Bac Ninh Province\";i:1;s:89:\"Factory 1: Khac Niem Industrial Cluster, Khac Niem Ward, Bac Ninh City, Bac Ninh Province\";}i:26;a:2:{i:0;s:90:\"Factory 2: 176/9 Nguyen Thi Tuoi, Tan Phuoc Quarter, Tan Binh Ward, Di An City, Binh Duong\";i:1;s:90:\"Factory 2: 176/9 Nguyen Thi Tuoi, Tan Phuoc Quarter, Tan Binh Ward, Di An City, Binh Duong\";}i:27;a:2:{i:0;s:10:\"Contact Us\";i:1;s:10:\"Contact Us\";}i:28;a:2:{i:0;s:7:\"fe2tech\";i:1;s:7:\"fe2tech\";}i:29;a:2:{i:0;s:6:\"F j, Y\";i:1;s:6:\"F j, Y\";}i:30;a:2:{i:0;s:5:\"g:i a\";i:1;s:5:\"g:i a\";}i:31;a:2:{i:0;s:51:\"%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%\";i:1;s:51:\"%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%\";}i:32;a:2:{i:0;s:8:\"%%name%%\";i:1;s:8:\"%%name%%\";}i:33;a:2:{i:0;s:8:\"%%date%%\";i:1;s:8:\"%%date%%\";}i:34;a:2:{i:0;s:9:\"%%title%%\";i:1;s:9:\"%%title%%\";}i:35;a:2:{i:0;s:23:\"%%term_title%% Archives\";i:1;s:23:\"%%term_title%% Archives\";}i:36;a:2:{i:0;s:21:\"%%pt_plural%% Archive\";i:1;s:21:\"%%pt_plural%% Archive\";}i:37;a:2:{i:0;s:6:\"Search\";i:1;s:6:\"Search\";}i:38;a:2:{i:0;s:10:\"Categories\";i:1;s:10:\"Categories\";}i:39;a:2:{i:0;s:8:\"Archives\";i:1;s:8:\"Archives\";}i:40;a:2:{i:0;s:7:\"Gallery\";i:1;s:7:\"Gallery\";}i:41;a:2:{i:0;s:4:\"Tags\";i:1;s:4:\"Tags\";}}'),(14,57,'_pll_strings_translations','a:42:{i:0;a:2:{i:0;s:42:\"%%sitename%% %%page%% %%sep%% %%sitedesc%%\";i:1;s:42:\"%%sitename%% %%page%% %%sep%% %%sitedesc%%\";}i:1;a:2:{i:0;s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";i:1;s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";}i:2;a:2:{i:0;s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";i:1;s:55:\"Lưu trữ %%term_title%% %%page%% %%sep%% %%sitename%%\";}i:3;a:2:{i:0;s:41:\"%%name%%, Author at %%sitename%% %%page%%\";i:1;s:48:\"%%name%%, Tác giả tại %%sitename%% %%page%%\";}i:4;a:2:{i:0;s:38:\"%%date%% %%page%% %%sep%% %%sitename%%\";i:1;s:38:\"%%date%% %%page%% %%sep%% %%sitename%%\";}i:5;a:2:{i:0;s:63:\"You searched for %%searchphrase%% %%page%% %%sep%% %%sitename%%\";i:1;s:69:\"Bạn đã tìm kiếm %%searchphrase%% %%page%% %%sep%% %%sitename%%\";}i:6;a:2:{i:0;s:35:\"Page not found %%sep%% %%sitename%%\";i:1;s:45:\"Không tìm thấy trang %%sep%% %%sitename%%\";}i:7;a:2:{i:0;s:2:\"»\";i:1;s:2:\"»\";}i:8;a:2:{i:0;s:4:\"Home\";i:1;s:11:\"Trang chủ\";}i:9;a:2:{i:0;s:12:\"Archives for\";i:1;s:14:\"Lưu trữ cho\";}i:10;a:2:{i:0;s:16:\"You searched for\";i:1;s:22:\"Bạn đã tìm kiếm\";}i:11;a:2:{i:0;s:25:\"Error 404: Page not found\";i:1;s:35:\"Lỗi 404: Không tìm thấy trang\";}i:12;a:2:{i:0;s:53:\"The post %%POSTLINK%% appeared first on %%BLOGLINK%%.\";i:1;s:77:\"Bài viết %%POSTLINK%% xuất hiện lần đầu tiên trên %%BLOGLINK%%.\";}i:13;a:2:{i:0;s:10:\"Quick View\";i:1;s:9:\"Xem nhanh\";}i:14;a:2:{i:0;s:11:\"My wishlist\";i:1;s:33:\"Danh sách yêu thích của tôi\";}i:15;a:2:{i:0;s:15:\"Add to wishlist\";i:1;s:33:\"Thêm vào danh sách yêu thích\";}i:16;a:2:{i:0;s:15:\"Browse wishlist\";i:1;s:30:\"Duyệt danh sách yêu thích\";}i:17;a:2:{i:0;s:40:\"The product is already in your wishlist!\";i:1;s:63:\"Sản phẩm đã có trong danh sách yêu thích của bạn!\";}i:18;a:2:{i:0;s:14:\"Product added!\";i:1;s:38:\"Sản phẩm đã được thêm vào!\";}i:19;a:2:{i:0;s:11:\"Add to cart\";i:1;s:22:\"Thêm vào giỏ hàng\";}i:20;a:2:{i:0;s:22:\"My wishlist on fe2tech\";i:1;s:47:\"Danh sách yêu thích của tôi trên fe2tech\";}i:21;a:2:{i:0;s:4:\"Time\";i:1;s:11:\"Thời gian\";}i:22;a:2:{i:0;s:17:\": Monday - Sunday\";i:1;s:26:\": Thứ Hai - Chủ Nhật\";}i:23;a:2:{i:0;s:22:\"Call Us: 0968 86 03 86\";i:1;s:36:\"Gọi cho chúng tôi: 0968 86 03 86\";}i:24;a:2:{i:0;s:11:\"(Mon - Sun)\";i:1;s:26:\"(Thứ Hai - Chủ Nhật)\";}i:25;a:2:{i:0;s:89:\"Factory 1: Khac Niem Industrial Cluster, Khac Niem Ward, Bac Ninh City, Bac Ninh Province\";i:1;s:116:\"Nhà máy 1: Cụm công nghiệp Khắc Niệm, Phường Khắc Niệm, Thành phố Bắc Ninh, Tỉnh Bắc Ninh\";}i:26;a:2:{i:0;s:90:\"Factory 2: 176/9 Nguyen Thi Tuoi, Tan Phuoc Quarter, Tan Binh Ward, Di An City, Binh Duong\";i:1;s:130:\"Nhà máy 2: 176/9 Nguyễn Thị Tươi, Khu phố Tân Phước, Phường Tân Bình, Thành phố Dĩ An, Tỉnh Bình Dương\";}i:27;a:2:{i:0;s:10:\"Contact Us\";i:1;s:10:\"Liên hệ\";}i:28;a:2:{i:0;s:7:\"fe2tech\";i:1;s:7:\"fe2tech\";}i:29;a:2:{i:0;s:6:\"F j, Y\";i:1;s:6:\"F j, Y\";}i:30;a:2:{i:0;s:5:\"g:i a\";i:1;s:5:\"g:i a\";}i:31;a:2:{i:0;s:51:\"%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%\";i:1;s:54:\"Lưu trữ %%pt_plural%% %%page%% %%sep%% %%sitename%%\";}i:32;a:2:{i:0;s:8:\"%%name%%\";i:1;s:8:\"%%name%%\";}i:33;a:2:{i:0;s:8:\"%%date%%\";i:1;s:8:\"%%date%%\";}i:34;a:2:{i:0;s:9:\"%%title%%\";i:1;s:9:\"%%title%%\";}i:35;a:2:{i:0;s:23:\"%%term_title%% Archives\";i:1;s:25:\"Lưu trữ %%term_title%%\";}i:36;a:2:{i:0;s:21:\"%%pt_plural%% Archive\";i:1;s:24:\"Lưu trữ %%pt_plural%%\";}i:37;a:2:{i:0;s:6:\"Search\";i:1;s:11:\"Tìm kiếm\";}i:38;a:2:{i:0;s:10:\"Categories\";i:1;s:10:\"Danh mục\";}i:39;a:2:{i:0;s:8:\"Archives\";i:1;s:10:\"Lưu trữ\";}i:40;a:2:{i:0;s:7:\"Gallery\";i:1;s:17:\"Thư viện ảnh\";}i:41;a:2:{i:0;s:4:\"Tags\";i:1;s:5:\"Thẻ\";}}'),(15,61,'_pll_strings_translations','a:42:{i:0;a:2:{i:0;s:42:\"%%sitename%% %%page%% %%sep%% %%sitedesc%%\";i:1;s:42:\"%%sitename%% %%page%% %%sep%% %%sitedesc%%\";}i:1;a:2:{i:0;s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";i:1;s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";}i:2;a:2:{i:0;s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";i:1;s:60:\"%%term_title%% アーカイブ %%page%% %%sep%% %%sitename%%\";}i:3;a:2:{i:0;s:41:\"%%name%%, Author at %%sitename%% %%page%%\";i:1;s:42:\"%%name%%、%%sitename%% の著者 %%page%%\";}i:4;a:2:{i:0;s:38:\"%%date%% %%page%% %%sep%% %%sitename%%\";i:1;s:38:\"%%date%% %%page%% %%sep%% %%sitename%%\";}i:5;a:2:{i:0;s:63:\"You searched for %%searchphrase%% %%page%% %%sep%% %%sitename%%\";i:1;s:71:\"%%searchphrase%% %%page%% %%sep%% %%sitename%% を検索しました。\";}i:6;a:2:{i:0;s:35:\"Page not found %%sep%% %%sitename%%\";i:1;s:54:\"ページが見つかりません %%sep%% %%sitename%%\";}i:7;a:2:{i:0;s:2:\"»\";i:1;s:2:\"»\";}i:8;a:2:{i:0;s:4:\"Home\";i:1;s:9:\"ホーム\";}i:9;a:2:{i:0;s:12:\"Archives for\";i:1;s:15:\"アーカイブ\";}i:10;a:2:{i:0;s:16:\"You searched for\";i:1;s:21:\"検索した内容は\";}i:11;a:2:{i:0;s:25:\"Error 404: Page not found\";i:1;s:48:\"エラー 404: ページが見つかりません\";}i:12;a:2:{i:0;s:53:\"The post %%POSTLINK%% appeared first on %%BLOGLINK%%.\";i:1;s:74:\"%%POSTLINK%% の投稿は、%%BLOGLINK%% に最初に登場しました。\";}i:13;a:2:{i:0;s:10:\"Quick View\";i:1;s:21:\"クイックビュー\";}i:14;a:2:{i:0;s:11:\"My wishlist\";i:1;s:30:\"私のウィッシュリスト\";}i:15;a:2:{i:0;s:15:\"Add to wishlist\";i:1;s:33:\"ウィッシュリストに追加\";}i:16;a:2:{i:0;s:15:\"Browse wishlist\";i:1;s:33:\"ウィッシュリストを閲覧\";}i:17;a:2:{i:0;s:40:\"The product is already in your wishlist!\";i:1;s:78:\"この製品はすでにあなたのウィッシュリストにあります!\";}i:18;a:2:{i:0;s:14:\"Product added!\";i:1;s:33:\"製品が追加されました!\";}i:19;a:2:{i:0;s:11:\"Add to cart\";i:1;s:18:\"カートに追加\";}i:20;a:2:{i:0;s:22:\"My wishlist on fe2tech\";i:1;s:41:\"fe2tech の私のウィッシュリスト\";}i:21;a:2:{i:0;s:4:\"Time\";i:1;s:6:\"時間\";}i:22;a:2:{i:0;s:17:\": Monday - Sunday\";i:1;s:23:\": 月曜日 - 日曜日\";}i:23;a:2:{i:0;s:22:\"Call Us: 0968 86 03 86\";i:1;s:36:\"お電話ください: 0968 86 03 86\";}i:24;a:2:{i:0;s:11:\"(Mon - Sun)\";i:1;s:23:\"(月曜日 - 日曜日)\";}i:25;a:2:{i:0;s:89:\"Factory 1: Khac Niem Industrial Cluster, Khac Niem Ward, Bac Ninh City, Bac Ninh Province\";i:1;s:87:\"工場1: バクニン省 バクニン市 カクニエム区 カクニエム工業団地\";}i:26;a:2:{i:0;s:90:\"Factory 2: 176/9 Nguyen Thi Tuoi, Tan Phuoc Quarter, Tan Binh Ward, Di An City, Binh Duong\";i:1;s:146:\"工場2: ベトナム、ビンズオン省、ディアン市、タンビン区、タンフオック地区、グエン・ティ・トゥーイ176/9\";}i:27;a:2:{i:0;s:10:\"Contact Us\";i:1;s:18:\"お問い合わせ\";}i:28;a:2:{i:0;s:7:\"fe2tech\";i:1;s:7:\"fe2tech\";}i:29;a:2:{i:0;s:6:\"F j, Y\";i:1;s:6:\"F j, Y\";}i:30;a:2:{i:0;s:5:\"g:i a\";i:1;s:5:\"g:i a\";}i:31;a:2:{i:0;s:51:\"%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%\";i:1;s:59:\"%%pt_plural%% アーカイブ %%page%% %%sep%% %%sitename%%\";}i:32;a:2:{i:0;s:8:\"%%name%%\";i:1;s:8:\"%%name%%\";}i:33;a:2:{i:0;s:8:\"%%date%%\";i:1;s:8:\"%%date%%\";}i:34;a:2:{i:0;s:9:\"%%title%%\";i:1;s:9:\"%%title%%\";}i:35;a:2:{i:0;s:23:\"%%term_title%% Archives\";i:1;s:30:\"%%term_title%% アーカイブ\";}i:36;a:2:{i:0;s:21:\"%%pt_plural%% Archive\";i:1;s:29:\"%%pt_plural%% アーカイブ\";}i:37;a:2:{i:0;s:6:\"Search\";i:1;s:6:\"検索\";}i:38;a:2:{i:0;s:10:\"Categories\";i:1;s:15:\"カテゴリー\";}i:39;a:2:{i:0;s:8:\"Archives\";i:1;s:15:\"アーカイブ\";}i:40;a:2:{i:0;s:7:\"Gallery\";i:1;s:15:\"ギャラリー\";}i:41;a:2:{i:0;s:4:\"Tags\";i:1;s:6:\"タグ\";}}');
/*!40000 ALTER TABLE `wp_termmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_terms`
--

DROP TABLE IF EXISTS `wp_terms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_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=90 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_terms`
--

LOCK TABLES `wp_terms` WRITE;
/*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */;
INSERT INTO `wp_terms` VALUES (1,'Builder','builder',0),(2,'Construction','construction',0),(3,'Tracking','tracking',0),(4,'Uncategorized @eu','uncategorized-eu',0),(5,'Builder','builder',0),(6,'Cloud','cloud',0),(7,'Map','map',0),(8,'Tower','tower',0),(9,'Truck','truck',0),(10,'CNC Machines','cnc-machines',0),(11,'Surface Processing Machines','surface-processing-machines',0),(12,'Material Forming Machines','material-forming-machines',0),(13,'exclude-from-catalog','exclude-from-catalog',0),(14,'exclude-from-search','exclude-from-search',0),(15,'Exterior','exterior',0),(16,'external','external',0),(17,'featured','featured',0),(18,'grouped','grouped',0),(19,'Interior','interior',0),(20,'marketing','marketing',0),(21,'outofstock','outofstock',0),(22,'page','page',0),(23,'Plan','plan',0),(24,'rated-1','rated-1',0),(25,'rated-2','rated-2',0),(26,'rated-3','rated-3',0),(27,'rated-4','rated-4',0),(28,'rated-5','rated-5',0),(29,'section','section',0),(33,'simple','simple',0),(34,'Sketching','sketching',0),(35,'Welding Machines','welding-machines',0),(36,'Inspection and Measurement Machines','inspection-and-measurement-machines',0),(37,'variable','variable',0),(38,'web design','web-design',0),(39,'Main Menu','main-menu',0),(40,'Menu Footer Bottom','menu-footer-bottom',0),(41,'Menu Footer Links','menu-footer-links',0),(42,'Menu One Page 1','menu-one-page-1',0),(43,'Menu One Page 2','menu-one-page-2',0),(44,'Menu Services','menu-services',0),(47,'Material Forming Services','material-forming-services',0),(50,'CNC Machining Services','cnc-machining-services',0),(51,'Metal Fabrication Services','metal-fabrication-services',0),(52,'Precision Engineering Services','precision-engineering-services',0),(53,'Other Services','other-services',0),(54,'English','en',0),(55,'English','pll_en',0),(56,'pll_6760f4144bc4a','pll_6760f4144bc4a',0),(57,'Tiếng Việt','vi',0),(58,'Tiếng Việt','pll_vi',0),(59,'Uncategorized','uncategorized-vi',0),(61,'日本語','ja',0),(62,'日本語','pll_ja',0),(63,'Uncategorized','uncategorized-ja',0),(65,'pll_6760f440e7409','pll_6760f440e7409',0),(66,'pll_6760f440e7432','pll_6760f440e7432',0),(67,'pll_6760f440e7441','pll_6760f440e7441',0),(68,'pll_6760f440e7451','pll_6760f440e7451',0),(69,'pll_6760f440e745f','pll_6760f440e745f',0),(70,'pll_6760f440e746f','pll_6760f440e746f',0),(71,'pll_6760f440e747f','pll_6760f440e747f',0),(72,'pll_6760f440e7490','pll_6760f440e7490',0),(73,'pll_6760f4514b8dc','pll_6760f4514b8dc',0),(74,'pll_6760f6061cc34','pll_6760f6061cc34',0),(75,'Main Menu - vi','main-menu-vi',0),(76,'pll_6761190ad2c3c','pll_6761190ad2c3c',0),(77,'pll_67611bc63245a','pll_67611bc63245a',0),(78,'pll_67611cffcf2d5','pll_67611cffcf2d5',0),(79,'pll_67611e89555ec','pll_67611e89555ec',0),(80,'pll_67612149c6794','pll_67612149c6794',0),(81,'pll_676122f11b483','pll_676122f11b483',0),(82,'pll_676123d38f943','pll_676123d38f943',0),(83,'pll_67612596be612','pll_67612596be612',0),(84,'pll_676126af59d63','pll_676126af59d63',0),(85,'pll_676128a1a6605','pll_676128a1a6605',0),(86,'pll_676129445d496','pll_676129445d496',0),(87,'pll_676129b0f2fd9','pll_676129b0f2fd9',0),(88,'pll_67612a1f12360','pll_67612a1f12360',0),(89,'Menu Header - ja','menu-header-ja',0);
/*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_tm_taskmeta`
--

DROP TABLE IF EXISTS `wp_tm_taskmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_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=55 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_tm_taskmeta`
--

LOCK TABLES `wp_tm_taskmeta` WRITE;
/*!40000 ALTER TABLE `wp_tm_taskmeta` DISABLE KEYS */;
INSERT INTO `wp_tm_taskmeta` VALUES (1,1,'task_options','a:3:{s:3:\"url\";s:19:\"https://fe2tech.com\";s:12:\"preload_type\";s:6:\"manual\";s:22:\"anonymous_user_allowed\";b:0;}'),(2,2,'task_options','a:3:{s:3:\"url\";s:20:\"https://fe2tech.com/\";s:12:\"preload_type\";s:6:\"manual\";s:22:\"anonymous_user_allowed\";b:0;}'),(3,3,'task_options','a:3:{s:3:\"url\";s:25:\"https://fe2tech.com/2024/\";s:12:\"preload_type\";s:6:\"manual\";s:22:\"anonymous_user_allowed\";b:0;}'),(4,4,'task_options','a:3:{s:3:\"url\";s:28:\"https://fe2tech.com/2024/10/\";s:12:\"preload_type\";s:6:\"manual\";s:22:\"anonymous_user_allowed\";b:0;}'),(5,5,'task_options','a:3:{s:3:\"url\";s:31:\"https://fe2tech.com/2024/10/28/\";s:12:\"preload_type\";s:6:\"manual\";s:22:\"anonymous_user_allowed\";b:0;}'),(6,6,'task_options','a:3:{s:3:\"url\";s:19:\"https://fe2tech.com\";s:12:\"preload_type\";s:6:\"manual\";s:22:\"anonymous_user_allowed\";b:0;}'),(7,7,'task_options','a:3:{s:3:\"url\";s:20:\"https://fe2tech.com/\";s:12:\"preload_type\";s:6:\"manual\";s:22:\"anonymous_user_allowed\";b:0;}'),(8,8,'task_options','a:3:{s:3:\"url\";s:19:\"https://fe2tech.com\";s:12:\"preload_type\";s:6:\"manual\";s:22:\"anonymous_user_allowed\";b:0;}'),(9,9,'task_options','a:3:{s:3:\"url\";s:20:\"https://fe2tech.com/\";s:12:\"preload_type\";s:6:\"manual\";s:22:\"anonymous_user_allowed\";b:0;}'),(10,10,'task_options','a:3:{s:3:\"url\";s:19:\"https://fe2tech.com\";s:12:\"preload_type\";s:6:\"manual\";s:22:\"anonymous_user_allowed\";b:0;}'),(11,11,'task_options','a:3:{s:3:\"url\";s:20:\"https://fe2tech.com/\";s:12:\"preload_type\";s:6:\"manual\";s:22:\"anonymous_user_allowed\";b:0;}'),(12,12,'task_options','a:3:{s:3:\"url\";s:19:\"https://fe2tech.com\";s:12:\"preload_type\";s:6:\"manual\";s:22:\"anonymous_user_allowed\";b:0;}'),(13,13,'task_options','a:3:{s:3:\"url\";s:34:\"https://fe2tech.com/team-partners/\";s:12:\"preload_type\";s:6:\"manual\";s:22:\"anonymous_user_allowed\";b:0;}'),(14,14,'task_options','a:3:{s:3:\"url\";s:19:\"https://fe2tech.com\";s:12:\"preload_type\";s:6:\"manual\";s:22:\"anonymous_user_allowed\";b:0;}'),(15,15,'task_options','a:3:{s:3:\"url\";s:34:\"https://fe2tech.com/team-partners/\";s:12:\"preload_type\";s:6:\"manual\";s:22:\"anonymous_user_allowed\";b:0;}'),(16,16,'task_options','a:3:{s:3:\"url\";s:19:\"https://fe2tech.com\";s:12:\"preload_type\";s:6:\"manual\";s:22:\"anonymous_user_allowed\";b:0;}'),(17,17,'task_options','a:3:{s:3:\"url\";s:34:\"https://fe2tech.com/team-partners/\";s:12:\"preload_type\";s:6:\"manual\";s:22:\"anonymous_user_allowed\";b:0;}'),(18,18,'task_options','a:3:{s:3:\"url\";s:19:\"https://fe2tech.com\";s:12:\"preload_type\";s:6:\"manual\";s:22:\"anonymous_user_allowed\";b:0;}'),(19,19,'task_options','a:3:{s:3:\"url\";s:34:\"https://fe2tech.com/team-partners/\";s:12:\"preload_type\";s:6:\"manual\";s:22:\"anonymous_user_allowed\";b:0;}'),(20,20,'task_options','a:3:{s:3:\"url\";s:19:\"https://fe2tech.com\";s:12:\"preload_type\";s:6:\"manual\";s:22:\"anonymous_user_allowed\";b:0;}'),(21,21,'task_options','a:3:{s:3:\"url\";s:34:\"https://fe2tech.com/team-partners/\";s:12:\"preload_type\";s:6:\"manual\";s:22:\"anonymous_user_allowed\";b:0;}'),(22,22,'task_options','a:3:{s:3:\"url\";s:19:\"https://fe2tech.com\";s:12:\"preload_type\";s:6:\"manual\";s:22:\"anonymous_user_allowed\";b:0;}'),(23,23,'task_options','a:3:{s:3:\"url\";s:34:\"https://fe2tech.com/footer/footer/\";s:12:\"preload_type\";s:6:\"manual\";s:22:\"anonymous_user_allowed\";b:0;}'),(24,24,'task_options','a:3:{s:3:\"url\";s:27:\"https://fe2tech.com/footer/\";s:12:\"preload_type\";s:6:\"manual\";s:22:\"anonymous_user_allowed\";b:0;}'),(25,25,'task_options','a:3:{s:3:\"url\";s:19:\"https://fe2tech.com\";s:12:\"preload_type\";s:6:\"manual\";s:22:\"anonymous_user_allowed\";b:0;}'),(26,26,'task_options','a:3:{s:3:\"url\";s:26:\"https://fe2tech.com/about/\";s:12:\"preload_type\";s:6:\"manual\";s:22:\"anonymous_user_allowed\";b:0;}'),(27,27,'task_options','a:3:{s:3:\"url\";s:19:\"https://fe2tech.com\";s:12:\"preload_type\";s:6:\"manual\";s:22:\"anonymous_user_allowed\";b:0;}'),(28,28,'task_options','a:3:{s:3:\"url\";s:20:\"https://fe2tech.com/\";s:12:\"preload_type\";s:6:\"manual\";s:22:\"anonymous_user_allowed\";b:0;}'),(29,29,'task_options','a:3:{s:3:\"url\";s:19:\"https://fe2tech.com\";s:12:\"preload_type\";s:6:\"manual\";s:22:\"anonymous_user_allowed\";b:0;}'),(30,30,'task_options','a:3:{s:3:\"url\";s:34:\"https://fe2tech.com/footer/footer/\";s:12:\"preload_type\";s:6:\"manual\";s:22:\"anonymous_user_allowed\";b:0;}'),(31,31,'task_options','a:3:{s:3:\"url\";s:27:\"https://fe2tech.com/footer/\";s:12:\"preload_type\";s:6:\"manual\";s:22:\"anonymous_user_allowed\";b:0;}'),(32,32,'task_options','a:3:{s:3:\"url\";s:19:\"https://fe2tech.com\";s:12:\"preload_type\";s:6:\"manual\";s:22:\"anonymous_user_allowed\";b:0;}'),(33,33,'task_options','a:3:{s:3:\"url\";s:28:\"https://fe2tech.com/contact/\";s:12:\"preload_type\";s:6:\"manual\";s:22:\"anonymous_user_allowed\";b:0;}'),(34,34,'task_options','a:3:{s:3:\"url\";s:19:\"https://fe2tech.com\";s:12:\"preload_type\";s:6:\"manual\";s:22:\"anonymous_user_allowed\";b:0;}'),(35,35,'task_options','a:3:{s:3:\"url\";s:34:\"https://fe2tech.com/footer/footer/\";s:12:\"preload_type\";s:6:\"manual\";s:22:\"anonymous_user_allowed\";b:0;}'),(36,36,'task_options','a:3:{s:3:\"url\";s:27:\"https://fe2tech.com/footer/\";s:12:\"preload_type\";s:6:\"manual\";s:22:\"anonymous_user_allowed\";b:0;}'),(37,37,'task_options','a:3:{s:3:\"url\";s:19:\"https://fe2tech.com\";s:12:\"preload_type\";s:6:\"manual\";s:22:\"anonymous_user_allowed\";b:0;}'),(38,38,'task_options','a:3:{s:3:\"url\";s:20:\"https://fe2tech.com/\";s:12:\"preload_type\";s:6:\"manual\";s:22:\"anonymous_user_allowed\";b:0;}'),(39,39,'task_options','a:3:{s:3:\"url\";s:25:\"https://fe2tech.com/2024/\";s:12:\"preload_type\";s:6:\"manual\";s:22:\"anonymous_user_allowed\";b:0;}'),(40,40,'task_options','a:3:{s:3:\"url\";s:28:\"https://fe2tech.com/2024/11/\";s:12:\"preload_type\";s:6:\"manual\";s:22:\"anonymous_user_allowed\";b:0;}'),(41,41,'task_options','a:3:{s:3:\"url\";s:31:\"https://fe2tech.com/2024/11/05/\";s:12:\"preload_type\";s:6:\"manual\";s:22:\"anonymous_user_allowed\";b:0;}'),(42,42,'task_options','a:3:{s:3:\"url\";s:19:\"https://fe2tech.com\";s:12:\"preload_type\";s:6:\"manual\";s:22:\"anonymous_user_allowed\";b:0;}'),(43,43,'task_options','a:3:{s:3:\"url\";s:26:\"https://fe2tech.com/about/\";s:12:\"preload_type\";s:6:\"manual\";s:22:\"anonymous_user_allowed\";b:0;}'),(44,44,'task_options','a:3:{s:3:\"url\";s:19:\"https://fe2tech.com\";s:12:\"preload_type\";s:6:\"manual\";s:22:\"anonymous_user_allowed\";b:0;}'),(45,45,'task_options','a:3:{s:3:\"url\";s:26:\"https://fe2tech.com/about/\";s:12:\"preload_type\";s:6:\"manual\";s:22:\"anonymous_user_allowed\";b:0;}'),(46,46,'task_options','a:3:{s:3:\"url\";s:19:\"https://fe2tech.com\";s:12:\"preload_type\";s:6:\"manual\";s:22:\"anonymous_user_allowed\";b:0;}'),(47,47,'task_options','a:3:{s:3:\"url\";s:26:\"https://fe2tech.com/about/\";s:12:\"preload_type\";s:6:\"manual\";s:22:\"anonymous_user_allowed\";b:0;}'),(48,48,'task_options','a:3:{s:3:\"url\";s:19:\"https://fe2tech.com\";s:12:\"preload_type\";s:6:\"manual\";s:22:\"anonymous_user_allowed\";b:0;}'),(49,49,'task_options','a:3:{s:3:\"url\";s:20:\"https://fe2tech.com/\";s:12:\"preload_type\";s:6:\"manual\";s:22:\"anonymous_user_allowed\";b:0;}'),(50,50,'task_options','a:3:{s:3:\"url\";s:19:\"https://fe2tech.com\";s:12:\"preload_type\";s:6:\"manual\";s:22:\"anonymous_user_allowed\";b:0;}'),(51,51,'task_options','a:3:{s:3:\"url\";s:20:\"https://fe2tech.com/\";s:12:\"preload_type\";s:6:\"manual\";s:22:\"anonymous_user_allowed\";b:0;}'),(52,52,'task_options','a:3:{s:3:\"url\";s:25:\"https://fe2tech.com/2024/\";s:12:\"preload_type\";s:6:\"manual\";s:22:\"anonymous_user_allowed\";b:0;}'),(53,53,'task_options','a:3:{s:3:\"url\";s:28:\"https://fe2tech.com/2024/11/\";s:12:\"preload_type\";s:6:\"manual\";s:22:\"anonymous_user_allowed\";b:0;}'),(54,54,'task_options','a:3:{s:3:\"url\";s:31:\"https://fe2tech.com/2024/11/22/\";s:12:\"preload_type\";s:6:\"manual\";s:22:\"anonymous_user_allowed\";b:0;}');
/*!40000 ALTER TABLE `wp_tm_taskmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_tm_tasks`
--

DROP TABLE IF EXISTS `wp_tm_tasks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_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=55 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_tm_tasks`
--

LOCK TABLES `wp_tm_tasks` WRITE;
/*!40000 ALTER TABLE `wp_tm_tasks` DISABLE KEYS */;
INSERT INTO `wp_tm_tasks` VALUES (1,1,'load-url-task','WP_Optimize_Load_Url_Task',0,'Preload - https://fe2tech.com','2024-10-28 04:48:05',0,'active'),(2,1,'load-url-task','WP_Optimize_Load_Url_Task',0,'Preload - https://fe2tech.com/','2024-10-28 04:48:05',0,'active'),(3,1,'load-url-task','WP_Optimize_Load_Url_Task',0,'Preload - https://fe2tech.com/2024/','2024-10-28 04:48:05',0,'active'),(4,1,'load-url-task','WP_Optimize_Load_Url_Task',0,'Preload - https://fe2tech.com/2024/10/','2024-10-28 04:48:05',0,'active'),(5,1,'load-url-task','WP_Optimize_Load_Url_Task',0,'Preload - https://fe2tech.com/2024/10/28/','2024-10-28 04:48:05',0,'active'),(6,1,'load-url-task','WP_Optimize_Load_Url_Task',0,'Preload - https://fe2tech.com','2024-10-28 07:49:07',0,'active'),(7,1,'load-url-task','WP_Optimize_Load_Url_Task',0,'Preload - https://fe2tech.com/','2024-10-28 07:49:07',0,'active'),(8,1,'load-url-task','WP_Optimize_Load_Url_Task',0,'Preload - https://fe2tech.com','2024-10-28 07:49:59',0,'active'),(9,1,'load-url-task','WP_Optimize_Load_Url_Task',0,'Preload - https://fe2tech.com/','2024-10-28 07:49:59',0,'active'),(10,1,'load-url-task','WP_Optimize_Load_Url_Task',0,'Preload - https://fe2tech.com','2024-10-28 07:50:28',0,'active'),(11,1,'load-url-task','WP_Optimize_Load_Url_Task',0,'Preload - https://fe2tech.com/','2024-10-28 07:50:28',0,'active'),(12,1,'load-url-task','WP_Optimize_Load_Url_Task',0,'Preload - https://fe2tech.com','2024-10-28 08:04:08',0,'active'),(13,1,'load-url-task','WP_Optimize_Load_Url_Task',0,'Preload - https://fe2tech.com/team-partners/','2024-10-28 08:04:08',0,'active'),(14,1,'load-url-task','WP_Optimize_Load_Url_Task',0,'Preload - https://fe2tech.com','2024-10-28 08:11:30',0,'active'),(15,1,'load-url-task','WP_Optimize_Load_Url_Task',0,'Preload - https://fe2tech.com/team-partners/','2024-10-28 08:11:30',0,'active'),(16,1,'load-url-task','WP_Optimize_Load_Url_Task',0,'Preload - https://fe2tech.com','2024-10-28 08:19:27',0,'active'),(17,1,'load-url-task','WP_Optimize_Load_Url_Task',0,'Preload - https://fe2tech.com/team-partners/','2024-10-28 08:19:27',0,'active'),(18,1,'load-url-task','WP_Optimize_Load_Url_Task',0,'Preload - https://fe2tech.com','2024-10-28 08:20:37',0,'active'),(19,1,'load-url-task','WP_Optimize_Load_Url_Task',0,'Preload - https://fe2tech.com/team-partners/','2024-10-28 08:20:37',0,'active'),(20,1,'load-url-task','WP_Optimize_Load_Url_Task',0,'Preload - https://fe2tech.com','2024-10-28 08:21:54',0,'active'),(21,1,'load-url-task','WP_Optimize_Load_Url_Task',0,'Preload - https://fe2tech.com/team-partners/','2024-10-28 08:21:54',0,'active'),(22,1,'load-url-task','WP_Optimize_Load_Url_Task',0,'Preload - https://fe2tech.com','2024-10-28 08:22:59',0,'active'),(23,1,'load-url-task','WP_Optimize_Load_Url_Task',0,'Preload - https://fe2tech.com/footer/footer/','2024-10-28 08:22:59',0,'active'),(24,1,'load-url-task','WP_Optimize_Load_Url_Task',0,'Preload - https://fe2tech.com/footer/','2024-10-28 08:22:59',0,'active'),(25,1,'load-url-task','WP_Optimize_Load_Url_Task',0,'Preload - https://fe2tech.com','2024-10-28 08:32:12',0,'active'),(26,1,'load-url-task','WP_Optimize_Load_Url_Task',0,'Preload - https://fe2tech.com/about/','2024-10-28 08:32:12',0,'active'),(27,1,'load-url-task','WP_Optimize_Load_Url_Task',0,'Preload - https://fe2tech.com','2024-10-28 08:35:22',0,'active'),(28,1,'load-url-task','WP_Optimize_Load_Url_Task',0,'Preload - https://fe2tech.com/','2024-10-28 08:35:22',0,'active'),(29,1,'load-url-task','WP_Optimize_Load_Url_Task',0,'Preload - https://fe2tech.com','2024-10-28 08:36:06',0,'active'),(30,1,'load-url-task','WP_Optimize_Load_Url_Task',0,'Preload - https://fe2tech.com/footer/footer/','2024-10-28 08:36:06',0,'active'),(31,1,'load-url-task','WP_Optimize_Load_Url_Task',0,'Preload - https://fe2tech.com/footer/','2024-10-28 08:36:06',0,'active'),(32,1,'load-url-task','WP_Optimize_Load_Url_Task',0,'Preload - https://fe2tech.com','2024-10-28 08:37:56',0,'active'),(33,1,'load-url-task','WP_Optimize_Load_Url_Task',0,'Preload - https://fe2tech.com/contact/','2024-10-28 08:37:56',0,'active'),(34,1,'load-url-task','WP_Optimize_Load_Url_Task',0,'Preload - https://fe2tech.com','2024-10-28 08:53:00',0,'active'),(35,1,'load-url-task','WP_Optimize_Load_Url_Task',0,'Preload - https://fe2tech.com/footer/footer/','2024-10-28 08:53:00',0,'active'),(36,1,'load-url-task','WP_Optimize_Load_Url_Task',0,'Preload - https://fe2tech.com/footer/','2024-10-28 08:53:01',0,'active'),(37,1,'load-url-task','WP_Optimize_Load_Url_Task',0,'Preload - https://fe2tech.com','2024-11-05 02:18:46',0,'active'),(38,1,'load-url-task','WP_Optimize_Load_Url_Task',0,'Preload - https://fe2tech.com/','2024-11-05 02:18:46',0,'active'),(39,1,'load-url-task','WP_Optimize_Load_Url_Task',0,'Preload - https://fe2tech.com/2024/','2024-11-05 02:18:46',0,'active'),(40,1,'load-url-task','WP_Optimize_Load_Url_Task',0,'Preload - https://fe2tech.com/2024/11/','2024-11-05 02:18:46',0,'active'),(41,1,'load-url-task','WP_Optimize_Load_Url_Task',0,'Preload - https://fe2tech.com/2024/11/05/','2024-11-05 02:18:46',0,'active'),(42,1,'load-url-task','WP_Optimize_Load_Url_Task',0,'Preload - https://fe2tech.com','2024-11-05 02:24:13',0,'active'),(43,1,'load-url-task','WP_Optimize_Load_Url_Task',0,'Preload - https://fe2tech.com/about/','2024-11-05 02:24:13',0,'active'),(44,1,'load-url-task','WP_Optimize_Load_Url_Task',0,'Preload - https://fe2tech.com','2024-11-05 02:27:13',0,'active'),(45,1,'load-url-task','WP_Optimize_Load_Url_Task',0,'Preload - https://fe2tech.com/about/','2024-11-05 02:27:13',0,'active'),(46,1,'load-url-task','WP_Optimize_Load_Url_Task',0,'Preload - https://fe2tech.com','2024-11-05 02:44:26',0,'active'),(47,1,'load-url-task','WP_Optimize_Load_Url_Task',0,'Preload - https://fe2tech.com/about/','2024-11-05 02:44:26',0,'active'),(48,1,'load-url-task','WP_Optimize_Load_Url_Task',0,'Preload - https://fe2tech.com','2024-11-05 02:47:35',0,'active'),(49,1,'load-url-task','WP_Optimize_Load_Url_Task',0,'Preload - https://fe2tech.com/','2024-11-05 02:47:35',0,'active'),(50,1,'load-url-task','WP_Optimize_Load_Url_Task',0,'Preload - https://fe2tech.com','2024-11-22 02:55:17',0,'active'),(51,1,'load-url-task','WP_Optimize_Load_Url_Task',0,'Preload - https://fe2tech.com/','2024-11-22 02:55:17',0,'active'),(52,1,'load-url-task','WP_Optimize_Load_Url_Task',0,'Preload - https://fe2tech.com/2024/','2024-11-22 02:55:17',0,'active'),(53,1,'load-url-task','WP_Optimize_Load_Url_Task',0,'Preload - https://fe2tech.com/2024/11/','2024-11-22 02:55:17',0,'active'),(54,1,'load-url-task','WP_Optimize_Load_Url_Task',0,'Preload - https://fe2tech.com/2024/11/22/','2024-11-22 02:55:17',0,'active');
/*!40000 ALTER TABLE `wp_tm_tasks` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_usermeta`
--

DROP TABLE IF EXISTS `wp_usermeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_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=37 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_usermeta`
--

LOCK TABLES `wp_usermeta` WRITE;
/*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */;
INSERT INTO `wp_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,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wp_user_level','10'),(14,1,'dismissed_wp_pointers',''),(15,1,'show_welcome_panel','1'),(16,1,'session_tokens','a:2:{s:64:\"505f1a82e16113875e60e4ef7e9c0c6fdeee3f04c8dd0e9de4a2bf8f95f2b993\";a:4:{s:10:\"expiration\";i:1743386948;s:2:\"ip\";s:9:\"127.0.0.1\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36\";s:5:\"login\";i:1742177348;}s:64:\"76b0f78e4836120187dbbbea0902656d23c9606d9c96df795a881b78ea70423d\";a:4:{s:10:\"expiration\";i:1742452417;s:2:\"ip\";s:9:\"127.0.0.1\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36\";s:5:\"login\";i:1742279617;}}'),(17,1,'wp_dashboard_quick_press_last_post_id','3155'),(18,1,'community-events-location','a:1:{s:2:\"ip\";s:9:\"127.0.0.0\";}'),(19,1,'_woocommerce_tracks_anon_id','woo:vyvKtE75VbM61higcGKGxX7Y'),(20,1,'elementor_introduction','a:3:{s:27:\"ai-get-started-announcement\";b:1;s:20:\"globals_introduction\";b:1;s:28:\"yoast-introduction-editor-v2\";b:1;}'),(21,1,'wc_last_active','1729468800'),(22,1,'meta-box-order_product','a:3:{s:4:\"side\";s:84:\"submitdiv,postimagediv,woocommerce-product-images,product_catdiv,tagsdiv-product_tag\";s:6:\"normal\";s:55:\"woocommerce-product-data,postcustom,slugdiv,postexcerpt\";s:8:\"advanced\";s:0:\"\";}'),(23,1,'wp_user-settings','editor=tinymce&libraryContent=browse&posts_list_mode=list&post_dfw=off'),(24,1,'wp_user-settings-time','1734422562'),(25,1,'last_update','1729350166'),(26,1,'wp_persisted_preferences','a:3:{s:4:\"core\";a:2:{s:26:\"isComplementaryAreaVisible\";b:1;s:10:\"openPanels\";a:2:{i:0;s:11:\"post-status\";i:1;s:24:\"yoast-seo/document-panel\";}}s:14:\"core/edit-post\";a:1:{s:12:\"welcomeGuide\";b:0;}s:9:\"_modified\";s:24:\"2024-10-28T07:47:43.323Z\";}'),(27,1,'wp_yoast_notifications','a:1:{i:0;a:2:{s:7:\"message\";s:340:\"<p>You can speed up your site and get insight into your internal linking structure by letting us perform a few optimizations to the way SEO data is stored. We estimate this will take less than a minute.</p><a class=\"button\" href=\"https://fe2tech.com/wp-admin/admin.php?page=wpseo_tools&start-indexation=true\">Start SEO data optimization</a>\";s:7:\"options\";a:10:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:13:\"wpseo-reindex\";s:7:\"user_id\";i:1;s:5:\"nonce\";N;s:8:\"priority\";d:0.8;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";s:20:\"wpseo_manage_options\";s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}}'),(28,1,'nav_menu_recently_edited','39'),(29,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\";}'),(30,1,'metaboxhidden_nav-menus','a:7:{i:0;s:23:\"add-post-type-portfolio\";i:1;s:21:\"add-post-type-service\";i:2;s:20:\"add-post-type-footer\";i:3;s:12:\"add-post_tag\";i:4;s:15:\"add-post_format\";i:5;s:22:\"add-portfolio-category\";i:6;s:20:\"add-service-category\";}'),(31,1,'wpforms_overview_table_columns','a:6:{i:1;s:4:\"name\";i:2;s:4:\"tags\";i:3;s:6:\"author\";i:4;s:9:\"shortcode\";i:5;s:7:\"created\";i:6;s:9:\"locations\";}'),(32,1,'closedpostboxes_page','a:0:{}'),(33,1,'metaboxhidden_page','a:0:{}'),(34,1,'edit_service_per_page','30'),(35,1,'pll_strings_per_page','50'),(36,1,'_yoast_wpseo_profile_updated','1742441252');
/*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_users`
--

DROP TABLE IF EXISTS `wp_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_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_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_users`
--

LOCK TABLES `wp_users` WRITE;
/*!40000 ALTER TABLE `wp_users` DISABLE KEYS */;
INSERT INTO `wp_users` VALUES (1,'admin','$P$B9ttts3wd4a3CUT4djLsYbhMKcDAK..','admin','vannguyen.tran.164@gmail.com','https://fe2tech.com','2024-10-18 15:16:20','',0,'admin');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wc_admin_note_actions`
--

DROP TABLE IF EXISTS `wp_wc_admin_note_actions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_admin_note_actions` (
  `action_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `note_id` bigint(20) unsigned NOT NULL,
  `name` varchar(255) NOT NULL,
  `label` varchar(255) NOT NULL,
  `query` longtext NOT NULL,
  `status` varchar(255) NOT NULL,
  `actioned_text` varchar(255) NOT NULL,
  `nonce_action` varchar(255) DEFAULT NULL,
  `nonce_name` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`action_id`),
  KEY `note_id` (`note_id`)
) ENGINE=InnoDB AUTO_INCREMENT=662 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_admin_note_actions`
--

LOCK TABLES `wp_wc_admin_note_actions` WRITE;
/*!40000 ALTER TABLE `wp_wc_admin_note_actions` DISABLE KEYS */;
INSERT INTO `wp_wc_admin_note_actions` VALUES (83,56,'notify-refund-returns-page','Edit page','https://fe2tech.com/wp-admin/post.php?post=14&action=edit','actioned','',NULL,NULL),(166,57,'visit-the-theme-marketplace','Visit the theme marketplace','https://woocommerce.com/product-category/themes/?utm_source=inbox&utm_medium=product','actioned','',NULL,NULL),(167,58,'day-after-first-product','Learn more','https://woocommerce.com/document/woocommerce-customizer/?utm_source=inbox&utm_medium=product','actioned','',NULL,NULL),(168,59,'learn-more','Learn more','https://woocommerce.com/posts/pre-launch-checklist-the-essentials/?utm_source=inbox&utm_medium=product','actioned','',NULL,NULL),(251,60,'learn-more','Learn more','https://woocommerce.com/mobile/?utm_medium=product','actioned','',NULL,NULL),(580,1,'wayflyer_bnpl_q4_2021','Level up with funding','https://woocommerce.com/products/wayflyer/?utm_source=inbox_note&utm_medium=product&utm_campaign=wayflyer_bnpl_q4_2021','actioned','',NULL,NULL),(581,2,'wc_shipping_mobile_app_usps_q4_2021','Get WooCommerce Shipping','https://woocommerce.com/woocommerce-shipping/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc_shipping_mobile_app_usps_q4_2021','actioned','',NULL,NULL),(582,3,'learn-more','Learn more','https://woocommerce.com/posts/ecommerce-shipping-solutions-guide/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','actioned','',NULL,NULL),(583,4,'optimizing-the-checkout-flow','Learn more','https://woocommerce.com/posts/optimizing-woocommerce-checkout?utm_source=inbox_note&utm_medium=product&utm_campaign=optimizing-the-checkout-flow','actioned','',NULL,NULL),(584,5,'qualitative-feedback-from-new-users','Share feedback','https://automattic.survey.fm/woopayments-new-user-feedback','actioned','',NULL,NULL),(585,6,'share-feedback','Share feedback','https://automattic.survey.fm/paypal-feedback','unactioned','',NULL,NULL),(586,7,'get-started','Get started','https://woocommerce.com/products/google-listings-and-ads?utm_source=inbox_note&utm_medium=product&utm_campaign=get-started','actioned','',NULL,NULL),(587,8,'update-wc-subscriptions-3-0-15','View latest version','https://fe2tech.com/wp-admin/&page=wc-addons&section=helper','actioned','',NULL,NULL),(588,9,'update-wc-core-5-4-0','How to update WooCommerce','https://docs.woocommerce.com/document/how-to-update-woocommerce/','actioned','',NULL,NULL),(589,12,'ppxo-pps-install-paypal-payments-1','View upgrade guide','https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/','actioned','',NULL,NULL),(590,13,'ppxo-pps-install-paypal-payments-2','View upgrade guide','https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/','actioned','',NULL,NULL),(591,14,'learn-more','Learn more','https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','unactioned','',NULL,NULL),(592,14,'dismiss','Dismiss','','actioned','',NULL,NULL),(593,15,'learn-more','Learn more','https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','unactioned','',NULL,NULL),(594,15,'dismiss','Dismiss','','actioned','',NULL,NULL),(595,16,'learn-more','Learn more','https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','unactioned','',NULL,NULL),(596,16,'dismiss','Dismiss','','actioned','',NULL,NULL),(597,17,'learn-more','Learn more','https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','unactioned','',NULL,NULL),(598,17,'dismiss','Dismiss','','actioned','',NULL,NULL),(599,18,'share-feedback','Share feedback','https://automattic.survey.fm/store-management','unactioned','',NULL,NULL),(600,19,'learn-more','Learn more','https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/','unactioned','',NULL,NULL),(601,19,'woocommerce-core-paypal-march-2022-dismiss','Dismiss','','actioned','',NULL,NULL),(602,20,'learn-more','Learn more','https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/','unactioned','',NULL,NULL),(603,20,'dismiss','Dismiss','','actioned','',NULL,NULL),(604,21,'pinterest_03_2022_update','Update Instructions','https://woocommerce.com/document/pinterest-for-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=pinterest_03_2022_update#section-3','actioned','',NULL,NULL),(605,22,'store_setup_survey_survey_q2_2022_share_your_thoughts','Tell us how it’s going','https://automattic.survey.fm/store-setup-survey-2022','actioned','',NULL,NULL),(606,23,'needs-update-eway-payment-gateway-rin-action-button-2022-12-20','See available updates','https://fe2tech.com/wp-admin/update-core.php','unactioned','',NULL,NULL),(607,23,'needs-update-eway-payment-gateway-rin-dismiss-button-2022-12-20','Dismiss','#','actioned','',NULL,NULL),(608,24,'updated-eway-payment-gateway-rin-action-button-2022-12-20','See all updates','https://fe2tech.com/wp-admin/update-core.php','unactioned','',NULL,NULL),(609,24,'updated-eway-payment-gateway-rin-dismiss-button-2022-12-20','Dismiss','#','actioned','',NULL,NULL),(610,25,'share-navigation-survey-feedback','Share feedback','https://automattic.survey.fm/new-ecommerce-plan-navigation','actioned','',NULL,NULL),(611,26,'woopay-beta-merchantrecruitment-activate-04MAY23','Activate WooPay','https://fe2tech.com/wp-admin/admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout','actioned','',NULL,NULL),(612,26,'woopay-beta-merchantrecruitment-activate-learnmore-04MAY23','Learn More','https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-activate-learnmore-04MAY23','unactioned','',NULL,NULL),(613,27,'woocommerce-wcpay-march-2023-update-needed-button','See Blog Post','https://developer.woocommerce.com/2023/03/23/critical-vulnerability-detected-in-woocommerce-payments-what-you-need-to-know','unactioned','',NULL,NULL),(614,27,'woocommerce-wcpay-march-2023-update-needed-dismiss-button','Dismiss','#','actioned','',NULL,NULL),(615,28,'tap_to_pay_iphone_q2_2023_no_wcpay','Simplify my payments','https://woocommerce.com/products/woocommerce-payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=tap_to_pay_iphone_q2_2023_no_wcpay','actioned','',NULL,NULL),(616,29,'extension-settings','See available updates','https://fe2tech.com/wp-admin/update-core.php','unactioned','',NULL,NULL),(617,29,'dismiss','Dismiss','#','actioned','',NULL,NULL),(618,30,'woopay-beta-merchantrecruitment-update-WCPay-04MAY23','Update WooCommerce Payments','https://fe2tech.com/wp-admin/plugins.php?plugin_status=all','unactioned','',NULL,NULL),(619,30,'woopay-beta-merchantrecruitment-update-activate-04MAY23','Activate WooPay','https://fe2tech.com/wp-admin/admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout','actioned','',NULL,NULL),(620,31,'woopay-beta-existingmerchants-noaction-documentation-27APR23','Documentation','https://woocommerce.com/document/woopay-merchant-documentation/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-existingmerchants-noaction-documentation-27APR23','actioned','',NULL,NULL),(621,32,'woopay-beta-existingmerchants-update-WCPay-27APR23','Update WooCommerce Payments','https://fe2tech.com/wp-admin/plugins.php?plugin_status=all','actioned','',NULL,NULL),(622,33,'woopay-beta-merchantrecruitment-short-activate-04MAY23','Activate WooPay','https://fe2tech.com/wp-admin/admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout','actioned','',NULL,NULL),(623,33,'woopay-beta-merchantrecruitment-short-activate-learnmore-04MAY23','Learn More','https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-04MAY23','actioned','',NULL,NULL),(624,34,'woopay-beta-merchantrecruitment-short-update-WCPay-04MAY23','Update WooCommerce Payments','https://fe2tech.com/wp-admin/plugins.php?plugin_status=all','unactioned','',NULL,NULL),(625,34,'woopay-beta-merchantrecruitment-short-update-activate-04MAY23','Activate WooPay','https://fe2tech.com/wp-admin/admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout','actioned','',NULL,NULL),(626,35,'woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTA','Activate WooPay Test A','https://fe2tech.com/wp-admin/admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout','unactioned','',NULL,NULL),(627,35,'woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA','Learn More','https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA','unactioned','',NULL,NULL),(628,36,'woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTB','Activate WooPay Test B','https://fe2tech.com/wp-admin/admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout','unactioned','',NULL,NULL),(629,36,'woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA','Learn More','https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA','unactioned','',NULL,NULL),(630,37,'woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTC','Activate WooPay Test C','https://fe2tech.com/wp-admin/admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout','unactioned','',NULL,NULL),(631,37,'woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTC','Learn More','https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTC','unactioned','',NULL,NULL),(632,38,'woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTD','Activate WooPay Test D','https://fe2tech.com/wp-admin/admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout','unactioned','',NULL,NULL),(633,38,'woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTD','Learn More','https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTD','unactioned','',NULL,NULL),(634,39,'woopay-beta-merchantrecruitment-short-activate-button-09MAY23','Activate WooPay','https://fe2tech.com/wp-admin/admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout','unactioned','',NULL,NULL),(635,39,'woopay-beta-merchantrecruitment-short-activate-learnmore-button2-09MAY23','Learn More','https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-button2-09MAY23','unactioned','',NULL,NULL),(636,40,'woopay-beta-merchantrecruitment-short-update-WCPay-09MAY23','Update WooCommerce Payments','https://fe2tech.com/wp-admin/plugins.php?plugin_status=all','unactioned','',NULL,NULL),(637,40,'woopay-beta-merchantrecruitment-short-update-activate-09MAY23','Activate WooPay','https://fe2tech.com/wp-admin/admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout','unactioned','',NULL,NULL),(638,41,'woocommerce-WCSubscriptions-June-2023-updated-needed-Plugin-Settings','See available updates','https://fe2tech.com/wp-admin/plugins.php?plugin_status=all','unactioned','',NULL,NULL),(639,41,'woocommerce-WCSubscriptions-June-2023-updated-needed-dismiss','Dismiss','#','actioned','',NULL,NULL),(640,42,'woocommerce-WCReturnsWarranty-June-2023-updated-needed','See available updates','https://fe2tech.com/wp-admin/plugins.php?plugin_status=all','unactioned','',NULL,NULL),(641,42,'woocommerce-WCReturnsWarranty-June-2023-updated-needed','Dismiss','#','actioned','',NULL,NULL),(642,43,'woocommerce-WCOPC-June-2023-updated-needed','See available updates','https://fe2tech.com/wp-admin/plugins.php?plugin_status=all','actioned','',NULL,NULL),(643,43,'woocommerce-WCOPC-June-2023-updated-needed','Dismiss','https://fe2tech.com/wp-admin/#','actioned','',NULL,NULL),(644,44,'woocommerce-WCGC-July-2023-update-needed','See available updates','https://fe2tech.com/wp-admin/plugins.php?plugin_status=all','unactioned','',NULL,NULL),(645,44,'woocommerce-WCGC-July-2023-update-needed','Dismiss','#','actioned','',NULL,NULL),(646,45,'learn-more','Learn more','https://woocommerce.com/document/fedex/?utm_medium=product&utm_source=inbox_note&utm_campaign=learn-more#july-2023-api-outage','unactioned','',NULL,NULL),(647,46,'plugin-list','See available updates','https://fe2tech.com/wp-admin/plugins.php?plugin_status=all','unactioned','',NULL,NULL),(648,46,'dismiss','Dismiss','https://fe2tech.com/wp-admin/admin.php?page=wc-admin','actioned','',NULL,NULL),(649,47,'woocommerce-WCStripe-Aug-2023-update-needed','See available updates','https://fe2tech.com/wp-admin/update-core.php?','unactioned','',NULL,NULL),(650,47,'dismiss','Dismiss','#','actioned','',NULL,NULL),(651,48,'dismiss','Dismiss','#','actioned','',NULL,NULL),(652,49,'dismiss','Dismiss','#','actioned','',NULL,NULL),(653,50,'avalara_q3-2023_noAvaTax','Automate my sales tax','https://woocommerce.com/products/woocommerce-avatax/?utm_source=inbox_note&utm_medium=product&utm_campaign=avalara_q3-2023_noAvaTax','unactioned','',NULL,NULL),(654,51,'woocommerce-usermeta-Sept2023-productvendors','See available updates','https://fe2tech.com/wp-admin/plugins.php','unactioned','',NULL,NULL),(655,51,'dismiss','Dismiss','https://fe2tech.com/wp-admin/#','actioned','',NULL,NULL),(656,52,'woocommerce-STRIPE-Oct-2023-update-needed','See available updates','https://fe2tech.com/wp-admin/update-core.php','unactioned','',NULL,NULL),(657,52,'dismiss','Dismiss','#','actioned','',NULL,NULL),(658,53,'amazon-mcf-review-button-2023-12-07','Leave a review','https://woocommerce.com/products/woocommerce-amazon-fulfillment/?review&utm_source=inbox_note&utm_medium=product&utm_campaign=amazon-mcf-review-button-2023-12-07','actioned','',NULL,NULL),(659,53,'amazon-mcf-support-button-2023-12-07','Request support','https://woocommerce.com/my-account/contact-support/?utm_source=inbox_note&utm_medium=product&utm_campaign=amazon-mcf-support-button-2023-12-07','actioned','',NULL,NULL),(660,54,'view_docs','Learn about Deposit schedules','https://woocommerce.com/document/woopayments/deposits/deposit-schedule/?utm_source=inbox_note&utm_medium=product&utm_campaign=view_docs#available-funds','unactioned','',NULL,NULL),(661,55,'stripe_securityupdate_q4_2024_click','Review and update','https://woocommerce.com/document/stripe/admin-experience/updated-requirements-for-stripe-plugin-mid-2024/?utm_source=inbox_note&utm_medium=product&utm_campaign=stripe_securityupdate_q4_2024_click','unactioned','',NULL,NULL);
/*!40000 ALTER TABLE `wp_wc_admin_note_actions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wc_admin_notes`
--

DROP TABLE IF EXISTS `wp_wc_admin_notes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_admin_notes` (
  `note_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `type` varchar(20) NOT NULL,
  `locale` varchar(20) NOT NULL,
  `title` longtext NOT NULL,
  `content` longtext NOT NULL,
  `content_data` longtext DEFAULT NULL,
  `status` varchar(200) NOT NULL,
  `source` varchar(200) NOT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_reminder` datetime DEFAULT NULL,
  `is_snoozable` tinyint(1) NOT NULL DEFAULT 0,
  `layout` varchar(20) NOT NULL DEFAULT '',
  `image` varchar(200) DEFAULT NULL,
  `is_deleted` tinyint(1) NOT NULL DEFAULT 0,
  `is_read` tinyint(1) NOT NULL DEFAULT 0,
  `icon` varchar(200) NOT NULL DEFAULT 'info',
  PRIMARY KEY (`note_id`)
) ENGINE=InnoDB AUTO_INCREMENT=61 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_admin_notes`
--

LOCK TABLES `wp_wc_admin_notes` WRITE;
/*!40000 ALTER TABLE `wp_wc_admin_notes` DISABLE KEYS */;
INSERT INTO `wp_wc_admin_notes` VALUES (1,'wayflyer_bnpl_q4_2021','marketing','en_US','Grow your business with funding through Wayflyer','Fast, flexible financing to boost cash flow and help your business grow – one fee, no interest rates, penalties, equity, or personal guarantees. Based on your store’s performance, Wayflyer provides funding and analytical insights to invest in your business.','{}','pending','woocommerce.com','2024-10-18 15:19:02',NULL,0,'plain','',0,0,'info'),(2,'wc_shipping_mobile_app_usps_q4_2021','marketing','en_US','Print and manage your shipping labels with WooCommerce Shipping and the WooCommerce Mobile App','Save time by printing, purchasing, refunding, and tracking shipping labels generated by <a href=\"https://woocommerce.com/woocommerce-shipping/\">WooCommerce Shipping</a> – all directly from your mobile device!','{}','pending','woocommerce.com','2024-10-18 15:19:02',NULL,0,'plain','',0,0,'info'),(3,'your-first-product','info','en_US','Your first product','That’s huge! You’re well on your way to building a successful online store — now it’s time to think about how you’ll fulfill your orders.<br /><br />Read our shipping guide to learn best practices and options for putting together your shipping strategy. And for WooCommerce stores in the United States, you can print discounted shipping labels via USPS with <a href=\"https://href.li/?https://woocommerce.com/shipping\" target=\"_blank\">WooCommerce Shipping</a>.','{}','pending','woocommerce.com','2024-10-18 15:19:02',NULL,0,'plain','',0,0,'info'),(4,'wc-admin-optimizing-the-checkout-flow','info','en_US','Optimizing the checkout flow','It’s crucial to get your store’s checkout as smooth as possible to avoid losing sales. Let’s take a look at how you can optimize the checkout experience for your shoppers.','{}','pending','woocommerce.com','2024-10-18 15:19:02',NULL,0,'plain','',0,0,'info'),(5,'wc-payments-qualitative-feedback','info','en_US','WooPayments setup - let us know what you think','Congrats on enabling WooPayments for your store. Please share your feedback in this 2 minute survey to help us improve the setup process.','{}','pending','woocommerce.com','2024-10-18 15:19:02',NULL,0,'plain','',0,0,'info'),(6,'share-your-feedback-on-paypal','info','en_US','Share your feedback on PayPal','Share your feedback in this 2 minute survey about how we can make the process of accepting payments more useful for your store.','{}','pending','woocommerce.com','2024-10-18 15:19:02',NULL,0,'plain','',0,0,'info'),(7,'google_listings_and_ads_install','marketing','en_US','Drive traffic and sales with Google','Reach online shoppers to drive traffic and sales for your store by showcasing products across Google, for free or with ads.','{}','pending','woocommerce.com','2024-10-18 15:19:02',NULL,0,'plain','',0,0,'info'),(8,'wc-subscriptions-security-update-3-0-15','info','en_US','WooCommerce Subscriptions security update!','We recently released an important security update to WooCommerce Subscriptions. To ensure your site’s data is protected, please upgrade <strong>WooCommerce Subscriptions to version 3.0.15</strong> or later.<br /><br />Click the button below to view and update to the latest Subscriptions version, or log in to <a href=\"https://woocommerce.com/my-dashboard\">WooCommerce.com Dashboard</a> and navigate to your <strong>Downloads</strong> page.<br /><br />We recommend always using the latest version of WooCommerce Subscriptions, and other software running on your site, to ensure maximum security.<br /><br />If you have any questions we are here to help — just <a href=\"https://woocommerce.com/my-account/create-a-ticket/\">open a ticket</a>.','{}','pending','woocommerce.com','2024-10-18 15:19:02',NULL,0,'plain','',0,0,'info'),(9,'woocommerce-core-update-5-4-0','info','en_US','Update to WooCommerce 5.4.1 now','WooCommerce 5.4.1 addresses a checkout issue discovered in WooCommerce 5.4. We recommend upgrading to WooCommerce 5.4.1 as soon as possible.','{}','pending','woocommerce.com','2024-10-18 15:19:02',NULL,0,'plain','',0,0,'info'),(10,'wcpay-promo-2020-11','marketing','en_US','wcpay-promo-2020-11','wcpay-promo-2020-11','{}','pending','woocommerce.com','2024-10-18 15:19:02',NULL,0,'plain','',0,0,'info'),(11,'wcpay-promo-2020-12','marketing','en_US','wcpay-promo-2020-12','wcpay-promo-2020-12','{}','pending','woocommerce.com','2024-10-18 15:19:02',NULL,0,'plain','',0,0,'info'),(12,'ppxo-pps-upgrade-paypal-payments-1','info','en_US','Get the latest PayPal extension for WooCommerce','Heads up! There’s a new PayPal on the block!<br /><br />Now is a great time to upgrade to our latest <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal extension</a> to continue to receive support and updates with PayPal.<br /><br />Get access to a full suite of PayPal payment methods, extensive currency and country coverage, and pay later options with the all-new PayPal extension for WooCommerce.','{}','pending','woocommerce.com','2024-10-18 15:19:02',NULL,0,'plain','',0,0,'info'),(13,'ppxo-pps-upgrade-paypal-payments-2','info','en_US','Upgrade your PayPal experience!','Get access to a full suite of PayPal payment methods, extensive currency and country coverage, offer subscription and recurring payments, and the new PayPal pay later options.<br /><br />Start using our <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">latest PayPal today</a> to continue to receive support and updates.','{}','pending','woocommerce.com','2024-10-18 15:19:02',NULL,0,'plain','',0,0,'info'),(14,'woocommerce-core-sqli-july-2021-need-to-update','update','en_US','Action required: Critical vulnerabilities in WooCommerce','In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br />Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br /><br />For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.','{}','pending','woocommerce.com','2024-10-18 15:19:02',NULL,0,'plain','',0,0,'info'),(15,'woocommerce-blocks-sqli-july-2021-need-to-update','update','en_US','Action required: Critical vulnerabilities in WooCommerce Blocks','In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br />Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br /><br />For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.','{}','pending','woocommerce.com','2024-10-18 15:19:02',NULL,0,'plain','',0,0,'info'),(16,'woocommerce-core-sqli-july-2021-store-patched','update','en_US','Solved: Critical vulnerabilities patched in WooCommerce','In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br /><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.','{}','pending','woocommerce.com','2024-10-18 15:19:02',NULL,0,'plain','',0,0,'info'),(17,'woocommerce-blocks-sqli-july-2021-store-patched','update','en_US','Solved: Critical vulnerabilities patched in WooCommerce Blocks','In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br /><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.','{}','pending','woocommerce.com','2024-10-18 15:19:02',NULL,0,'plain','',0,0,'info'),(18,'habit-moment-survey','marketing','en_US','We’re all ears! Share your experience so far with WooCommerce','We’d love your input to shape the future of WooCommerce together. Feel free to share any feedback, ideas or suggestions that you have.','{}','pending','woocommerce.com','2024-10-18 15:19:02',NULL,0,'plain','',0,0,'info'),(19,'woocommerce-core-paypal-march-2022-updated','update','en_US','Security auto-update of WooCommerce','<strong>Your store has been updated to the latest secure version of WooCommerce</strong>. We worked with WordPress to deploy PayPal Standard security updates for stores running WooCommerce (version 3.5 to 6.3). It’s recommended to disable PayPal Standard, and use <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal Payments</a> to accept PayPal.','{}','pending','woocommerce.com','2024-10-18 15:19:02',NULL,0,'plain','',0,0,'info'),(20,'woocommerce-core-paypal-march-2022-updated-nopp','update','en_US','Security auto-update of WooCommerce','<strong>Your store has been updated to the latest secure version of WooCommerce</strong>. We worked with WordPress to deploy security updates related to PayPal Standard payment gateway for stores running WooCommerce (version 3.5 to 6.3).','{}','pending','woocommerce.com','2024-10-18 15:19:02',NULL,0,'plain','',0,0,'info'),(21,'pinterest_03_2022_update','marketing','en_US','Your Pinterest for WooCommerce plugin is out of date!','Update to the latest version of Pinterest for WooCommerce to continue using this plugin and keep your store connected with Pinterest. To update, visit <strong>Plugins &gt; Installed Plugins</strong>, and click on “update now” under Pinterest for WooCommerce.','{}','pending','woocommerce.com','2024-10-18 15:19:02',NULL,0,'plain','',0,0,'info'),(22,'store_setup_survey_survey_q2_2022','survey','en_US','How is your store setup going?','Our goal is to make sure you have all the right tools to start setting up your store in the smoothest way possible.\r\nWe’d love to know if we hit our mark and how we can improve. To collect your thoughts, we made a 2-minute survey.','{}','pending','woocommerce.com','2024-10-18 15:19:02',NULL,0,'plain','',0,0,'info'),(23,'needs-update-eway-payment-gateway-rin-2022-12-20','update','en_US','Security vulnerability patched in WooCommerce Eway Gateway','In response to a potential vulnerability identified in WooCommerce Eway Gateway versions 3.1.0 to 3.5.0, we’ve worked to deploy security fixes and have released an updated version.\r\nNo external exploits have been detected, but we recommend you update to your latest supported version 3.1.26, 3.2.3, 3.3.1, 3.4.6, or 3.5.1','{}','pending','woocommerce.com','2024-10-18 15:19:02',NULL,0,'plain','',0,0,'info'),(24,'updated-eway-payment-gateway-rin-2022-12-20','update','en_US','WooCommerce Eway Gateway has been automatically updated','Your store is now running the latest secure version of WooCommerce Eway Gateway. We worked with the WordPress Plugins team to deploy a software update to stores running WooCommerce Eway Gateway (versions 3.1.0 to 3.5.0) in response to a security vulnerability that was discovered.','{}','pending','woocommerce.com','2024-10-18 15:19:02',NULL,0,'plain','',0,0,'info'),(25,'ecomm-wc-navigation-survey-2023','info','en_US','Navigating WooCommerce on WordPress.com','We are improving the WooCommerce navigation on WordPress.com and would love your help to make it better! Please share your experience with us in this 2-minute survey.','{}','pending','woocommerce.com','2024-10-18 15:19:02',NULL,0,'plain','',0,0,'info'),(26,'woopay-beta-merchantrecruitment-04MAY23','info','en_US','Increase conversions with WooPay — our fastest checkout yet','WooPay, a new express checkout feature built into WooCommerce Payments, is now available —and we’re inviting you to be one of the first to try it. \r\n<br><br>\r\nBoost conversions by offering your customers a simple, secure way to pay with a single click.\r\n<br><br>\r\nGet started in seconds.','{}','pending','woocommerce.com','2024-10-18 15:19:02',NULL,0,'plain','',0,0,'info'),(27,'woocommerce-wcpay-march-2023-update-needed','update','en_US','Action required: Security update for WooCommerce Payments','<strong>Your store requires a security update for WooCommerce Payments</strong>. Please update to the latest version of WooCommerce Payments immediately to address a potential vulnerability discovered on March 22. For more information on how to update, visit this WooCommerce Developer Blog Post.','{}','pending','woocommerce.com','2024-10-18 15:19:02',NULL,0,'plain','',0,0,'info'),(28,'tap_to_pay_iphone_q2_2023_no_wcpay','marketing','en_US','Accept in-person contactless payments on your iPhone','Tap to Pay on iPhone and WooCommerce Payments is quick, secure, and simple to set up — no extra terminals or card readers are needed. Accept contactless debit and credit cards, Apple Pay, and other NFC digital wallets in person.','{}','pending','woocommerce.com','2024-10-18 15:19:02',NULL,0,'plain','',0,0,'info'),(29,'woocommerce-WCPreOrders-april-2023-update-needed','update','en_US','Action required: Security update of WooCommerce Pre-Orders extension','<strong>Your store requires a security update for the WooCommerce Pre-Orders extension</strong>. Please update the WooCommerce Pre-Orders extension immediately to address a potential vulnerability discovered on April 11.','{}','pending','woocommerce.com','2024-10-18 15:19:02',NULL,0,'plain','',0,0,'info'),(30,'woopay-beta-merchantrecruitment-update-04MAY23','info','en_US','Increase conversions with WooPay — our fastest checkout yet','WooPay, a new express checkout feature built into WooCommerce Payments, is now available — and you’re invited to try it. \r\n<br /><br />\r\nBoost conversions by offering your customers a simple, secure way to pay with a single click.\r\n<br /><br />\r\nUpdate WooCommerce Payments to get started.','{}','pending','woocommerce.com','2024-10-18 15:19:02',NULL,0,'plain','',0,0,'info'),(31,'woopay-beta-existingmerchants-noaction-27APR23','info','en_US','WooPay is back!','Thanks for previously trying WooPay, the express checkout feature built into WooCommerce Payments. We’re excited to announce that WooPay availability has resumed. No action is required on your part.\r\n<br /><br />\r\nYou can now continue boosting conversions by offering your customers a simple, secure way to pay with a single click.','{}','pending','woocommerce.com','2024-10-18 15:19:02',NULL,0,'plain','',0,0,'info'),(32,'woopay-beta-existingmerchants-update-27APR23','info','en_US','WooPay is back!','Thanks for previously trying WooPay, the express checkout feature built into WooCommerce Payments. We’re excited to announce that WooPay availability has resumed.\r\n<br /><br />\r\n\r\nUpdate to the latest WooCommerce Payments version to continue boosting conversions by offering your customers a simple, secure way to pay with a single click.','{}','pending','woocommerce.com','2024-10-18 15:19:02',NULL,0,'plain','',0,0,'info'),(33,'woopay-beta-merchantrecruitment-short-04MAY23','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\nBoost conversions by letting customers pay with a single click.','{}','pending','woocommerce.com','2024-10-18 15:19:02',NULL,0,'plain','',0,0,'info'),(34,'woopay-beta-merchantrecruitment-short-update-04MAY23','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, our new express checkout feature. <br>Boost conversions by letting customers pay with a single click. <br><br>Update to the latest version of WooCommerce Payments to get started.','{}','pending','woocommerce.com','2024-10-18 15:19:02',NULL,0,'plain','',0,0,'info'),(35,'woopay-beta-merchantrecruitment-short-06MAY23-TESTA','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\nBoost conversions by letting customers pay with a single click.','{}','pending','woocommerce.com','2024-10-18 15:19:02',NULL,0,'plain','',0,0,'info'),(36,'woopay-beta-merchantrecruitment-short-06MAY23-TESTB','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\nBoost conversions by letting customers pay with a single click.','{}','pending','woocommerce.com','2024-10-18 15:19:02',NULL,0,'plain','',0,0,'info'),(37,'woopay-beta-merchantrecruitment-short-06MAY23-TESTC','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\nBoost conversions by letting customers pay with a single click.','{}','pending','woocommerce.com','2024-10-18 15:19:02',NULL,0,'plain','',0,0,'info'),(38,'woopay-beta-merchantrecruitment-short-06MAY23-TESTD','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\nBoost conversions by letting customers pay with a single click.','{}','pending','woocommerce.com','2024-10-18 15:19:02',NULL,0,'plain','',0,0,'info'),(39,'woopay-beta-merchantrecruitment-short-09MAY23','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\nBoost conversions by letting customers pay with a single click.','{}','pending','woocommerce.com','2024-10-18 15:19:02',NULL,0,'plain','',0,0,'info'),(40,'woopay-beta-merchantrecruitment-short-update-09MAY23','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, our new express checkout feature. <br>Boost conversions by letting customers pay with a single click. <br><br>Update to the latest version of WooCommerce Payments to get started.','{}','pending','woocommerce.com','2024-10-18 15:19:02',NULL,0,'plain','',0,0,'info'),(41,'woocommerce-WCSubscriptions-June-2023-updated-needed','marketing','en_US','Action required: Security update of WooCommerce Subscriptions','<strong>Your store requires a security update for the WooCommerce Subscriptions plugin</strong>. Please update the WooCommerce Subscriptions plugin immediately to address a potential vulnerability.','{}','pending','woocommerce.com','2024-10-18 15:19:02',NULL,0,'plain','',0,0,'info'),(42,'woocommerce-WCReturnsWarranty-June-2023-updated-needed','update','en_US','Action required: Security update of WooCommerce Returns and Warranty Requests extension','<strong>Your store requires a security update for the Returns and Warranty Requests extension</strong>.  Please update to the latest version of the WooCommerce Returns and Warranty Requests extension immediately to address a potential vulnerability discovered on May 31.','{}','pending','woocommerce.com','2024-10-18 15:19:02',NULL,0,'plain','',0,0,'info'),(43,'woocommerce-WCOPC-June-2023-updated-needed','update','en_US','Action required: Security update of WooCommerce One Page Checkout','<strong>Your shop requires a security update to address a vulnerability in the WooCommerce One Page Checkout extension</strong>. The fix for this vulnerability was released for this extension on June 13th. Please update immediately.','{}','pending','woocommerce.com','2024-10-18 15:19:02',NULL,0,'plain','',0,0,'info'),(44,'woocommerce-WCGC-July-2023-update-needed','update','en_US','Action required: Security update of WooCommerce GoCardless Extension','<strong>Your shop requires a security update to address a vulnerability in the WooCommerce GoCardless extension</strong>. The fix for this vulnerability was released on July 4th. Please update immediately.','{}','pending','woocommerce.com','2024-10-18 15:19:02',NULL,0,'plain','',0,0,'info'),(45,'woocommerce-shipping-fedex-api-outage-2023-07-16','warning','en_US','Scheduled FedEx API outage — July 2023','On July 16 there will be a full outage of the FedEx API from 04:00 to 08:00 AM UTC. Due to planned maintenance by FedEx, you\'ll be unable to provide FedEx shipping rates during this time. Follow the link below for more information and recommendations on how to minimize impact.','{}','pending','woocommerce.com','2024-10-18 15:19:02',NULL,0,'plain','',0,0,'info'),(46,'wcship-2023-07-hazmat-update-needed','update','en_US','Action required: USPS HAZMAT compliance update for WooCommerce Shipping & Tax extension','<strong>Your store requires an update for the WooCommerce Shipping extension</strong>. Please update to the latest version of the WooCommerce Shipping &amp; Tax extension immediately to ensure compliance with new USPS HAZMAT rules currently in effect.','{}','pending','woocommerce.com','2024-10-18 15:19:02',NULL,0,'plain','',0,0,'info'),(47,'woocommerce-WCStripe-Aug-2023-update-needed','update','en_US','Action required: Security update for WooCommerce Stripe plugin','<strong>Your shop requires an important security update for the  WooCommerce Stripe plugin</strong>. The fix for this vulnerability was released on July 31. Please update immediately.','{}','pending','woocommerce.com','2024-10-18 15:19:02',NULL,0,'plain','',0,0,'info'),(48,'woocommerce-WCStripe-Aug-2023-security-updated','update','en_US','Security update of WooCommerce Stripe plugin','<strong>Your store has been updated to the latest secure version of the WooCommerce Stripe plugin</strong>. This update was released on July 31.','{}','pending','woocommerce.com','2024-10-18 15:19:02',NULL,0,'plain','',0,0,'info'),(49,'woocommerce-WooPayments-Aug-2023-security-updated','update','en_US','Security update of WooPayments (WooCommerce Payments) plugin','<strong>Your store has been updated to the more secure version of WooPayments (WooCommerce Payments)</strong>. This update was released on July 31.','{}','pending','woocommerce.com','2024-10-18 15:19:02',NULL,0,'plain','',0,0,'info'),(50,'avalara_q3-2023_noAvaTax','marketing','en_US','Automatically calculate VAT in real time','Take the effort out of determining tax rates and sell confidently across borders with automated tax management from Avalara AvaTax— including built-in VAT calculation when you sell into or across the EU and UK. Save time and stay compliant when you let Avalara do the heavy lifting.','{}','pending','woocommerce.com','2024-10-18 15:19:02',NULL,0,'plain','',0,0,'info'),(51,'woocommerce-usermeta-Sept2023-productvendors','update','en_US','Your store requires a security update','<strong>Your shop needs an update to address a vulnerability in WooCommerce.</strong> The fix was released on Sept 15. Please update WooCommerce to the latest version immediately. <a href=\"https://developer.woocommerce.com/2023/09/16/woocommerce-vulnerability-reintroduced-from-7-0-1/\" />Read our developer update</a> for more information.','{}','pending','woocommerce.com','2024-10-18 15:19:02',NULL,0,'plain','',0,0,'info'),(52,'woocommerce-STRIPE-Oct-2023-update-needed','update','en_US','Action required: Security update for WooCommerce Stripe Gateway','<strong>Your shop requires a security update to address a vulnerability in the WooCommerce Stripe Gateway</strong>. The fix for this vulnerability was released on October 17. Please update immediately.','{}','pending','woocommerce.com','2024-10-18 15:19:02',NULL,0,'plain','',0,0,'info'),(53,'amazon-mcf-reviews-2023-12-07','marketing','en_US','Enjoying Amazon MCF for WooCommerce?','We\'re Never Settle, the developers behind Amazon MCF for WooCommerce, and would be deeply honored to have your review. Reviews help immensely as other users can learn how MCF can solve their needs too! Not happy or need help? Please reach out for support and we’d love to make things right!','{}','pending','woocommerce.com','2024-10-18 15:19:02',NULL,0,'plain','',0,0,'info'),(54,'remove_estimated_deposits_2024','marketing','en_US','Estimated deposits are going away','To provide more accurate deposit information and support the expansion of instant deposits, estimated deposit details will no longer be available in WooPayments. We recommend upgrading to the latest version of WooPayments for more detailed balance status information.','{}','pending','woocommerce.com','2024-10-18 15:19:02',NULL,0,'plain','',0,0,'info'),(55,'stripe_securityupdate_q3_2024','update','en_US','Security update required for your Stripe extension','To continue securely accepting payments, you must update your Stripe extension to at least version 8.6, re-authenticate, and turn on the new checkout experience. Review the documentation for instructions on how to make the necessary changes from your WooCommerce dashboard.','{}','pending','woocommerce.com','2024-10-18 15:19:02',NULL,0,'plain','',0,0,'info'),(56,'wc-refund-returns-page','info','en_US','Setup a Refund and Returns Policy page to boost your store\'s credibility.','We have created a sample draft Refund and Returns Policy page for you. Please have a look and update it to fit your store.','{}','unactioned','woocommerce-core','2024-10-18 15:19:03',NULL,0,'plain','',0,0,'info'),(57,'wc-admin-choosing-a-theme','marketing','en_US','Choosing a theme?','Check out the themes that are compatible with WooCommerce and choose one aligned with your brand and business needs.','{}','unactioned','woocommerce-admin','2024-10-19 15:19:23',NULL,0,'plain','',0,0,'info'),(58,'wc-admin-customizing-product-catalog','info','en_US','How to customize your product catalog','You want your product catalog and images to look great and align with your brand. This guide will give you all the tips you need to get your products looking great in your store.','{}','unactioned','woocommerce-admin','2024-10-19 15:19:23',NULL,0,'plain','',0,0,'info'),(59,'wc-admin-launch-checklist','info','en_US','Ready to launch your store?','To make sure you never get that sinking \"what did I forget\" feeling, we\'ve put together the essential pre-launch checklist.','{}','unactioned','woocommerce-admin','2024-10-19 15:19:24',NULL,0,'plain','',0,0,'info'),(60,'wc-admin-mobile-app','info','en_US','Install Woo mobile app','Install the WooCommerce mobile app to manage orders, receive sales notifications, and view key metrics — wherever you are.','{}','unactioned','woocommerce-admin','2024-10-21 02:24:15',NULL,0,'plain','',0,0,'info');
/*!40000 ALTER TABLE `wp_wc_admin_notes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wc_category_lookup`
--

DROP TABLE IF EXISTS `wp_wc_category_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_category_lookup` (
  `category_tree_id` bigint(20) unsigned NOT NULL,
  `category_id` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`category_tree_id`,`category_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_category_lookup`
--

LOCK TABLES `wp_wc_category_lookup` WRITE;
/*!40000 ALTER TABLE `wp_wc_category_lookup` DISABLE KEYS */;
INSERT INTO `wp_wc_category_lookup` VALUES (10,10),(11,11),(12,12),(15,15),(35,35),(36,36);
/*!40000 ALTER TABLE `wp_wc_category_lookup` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wc_customer_lookup`
--

DROP TABLE IF EXISTS `wp_wc_customer_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_customer_lookup` (
  `customer_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `username` varchar(60) NOT NULL DEFAULT '',
  `first_name` varchar(255) NOT NULL,
  `last_name` varchar(255) NOT NULL,
  `email` varchar(100) DEFAULT NULL,
  `date_last_active` timestamp NULL DEFAULT NULL,
  `date_registered` timestamp NULL DEFAULT NULL,
  `country` char(2) NOT NULL DEFAULT '',
  `postcode` varchar(20) NOT NULL DEFAULT '',
  `city` varchar(100) NOT NULL DEFAULT '',
  `state` varchar(100) NOT NULL DEFAULT '',
  PRIMARY KEY (`customer_id`),
  UNIQUE KEY `user_id` (`user_id`),
  KEY `email` (`email`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_customer_lookup`
--

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

--
-- Table structure for table `wp_wc_download_log`
--

DROP TABLE IF EXISTS `wp_wc_download_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_download_log` (
  `download_log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `timestamp` datetime NOT NULL,
  `permission_id` bigint(20) unsigned NOT NULL,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `user_ip_address` varchar(100) DEFAULT '',
  PRIMARY KEY (`download_log_id`),
  KEY `permission_id` (`permission_id`),
  KEY `timestamp` (`timestamp`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_download_log`
--

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

--
-- Table structure for table `wp_wc_order_addresses`
--

DROP TABLE IF EXISTS `wp_wc_order_addresses`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_order_addresses` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_id` bigint(20) unsigned NOT NULL,
  `address_type` varchar(20) DEFAULT NULL,
  `first_name` text DEFAULT NULL,
  `last_name` text DEFAULT NULL,
  `company` text DEFAULT NULL,
  `address_1` text DEFAULT NULL,
  `address_2` text DEFAULT NULL,
  `city` text DEFAULT NULL,
  `state` text DEFAULT NULL,
  `postcode` text DEFAULT NULL,
  `country` text DEFAULT NULL,
  `email` varchar(320) DEFAULT NULL,
  `phone` varchar(100) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `address_type_order_id` (`address_type`,`order_id`),
  KEY `order_id` (`order_id`),
  KEY `email` (`email`(191)),
  KEY `phone` (`phone`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_order_addresses`
--

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

--
-- Table structure for table `wp_wc_order_coupon_lookup`
--

DROP TABLE IF EXISTS `wp_wc_order_coupon_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_order_coupon_lookup` (
  `order_id` bigint(20) unsigned NOT NULL,
  `coupon_id` bigint(20) NOT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `discount_amount` double NOT NULL DEFAULT 0,
  PRIMARY KEY (`order_id`,`coupon_id`),
  KEY `coupon_id` (`coupon_id`),
  KEY `date_created` (`date_created`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_order_coupon_lookup`
--

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

--
-- Table structure for table `wp_wc_order_operational_data`
--

DROP TABLE IF EXISTS `wp_wc_order_operational_data`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_order_operational_data` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_id` bigint(20) unsigned DEFAULT NULL,
  `created_via` varchar(100) DEFAULT NULL,
  `woocommerce_version` varchar(20) DEFAULT NULL,
  `prices_include_tax` tinyint(1) DEFAULT NULL,
  `coupon_usages_are_counted` tinyint(1) DEFAULT NULL,
  `download_permission_granted` tinyint(1) DEFAULT NULL,
  `cart_hash` varchar(100) DEFAULT NULL,
  `new_order_email_sent` tinyint(1) DEFAULT NULL,
  `order_key` varchar(100) DEFAULT NULL,
  `order_stock_reduced` tinyint(1) DEFAULT NULL,
  `date_paid_gmt` datetime DEFAULT NULL,
  `date_completed_gmt` datetime DEFAULT NULL,
  `shipping_tax_amount` decimal(26,8) DEFAULT NULL,
  `shipping_total_amount` decimal(26,8) DEFAULT NULL,
  `discount_tax_amount` decimal(26,8) DEFAULT NULL,
  `discount_total_amount` decimal(26,8) DEFAULT NULL,
  `recorded_sales` tinyint(1) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `order_id` (`order_id`),
  KEY `order_key` (`order_key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_order_operational_data`
--

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

--
-- Table structure for table `wp_wc_order_product_lookup`
--

DROP TABLE IF EXISTS `wp_wc_order_product_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_order_product_lookup` (
  `order_item_id` bigint(20) unsigned NOT NULL,
  `order_id` bigint(20) unsigned NOT NULL,
  `product_id` bigint(20) unsigned NOT NULL,
  `variation_id` bigint(20) unsigned NOT NULL,
  `customer_id` bigint(20) unsigned DEFAULT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `product_qty` int(11) NOT NULL,
  `product_net_revenue` double NOT NULL DEFAULT 0,
  `product_gross_revenue` double NOT NULL DEFAULT 0,
  `coupon_amount` double NOT NULL DEFAULT 0,
  `tax_amount` double NOT NULL DEFAULT 0,
  `shipping_amount` double NOT NULL DEFAULT 0,
  `shipping_tax_amount` double NOT NULL DEFAULT 0,
  PRIMARY KEY (`order_item_id`),
  KEY `order_id` (`order_id`),
  KEY `product_id` (`product_id`),
  KEY `customer_id` (`customer_id`),
  KEY `date_created` (`date_created`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_order_product_lookup`
--

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

--
-- Table structure for table `wp_wc_order_stats`
--

DROP TABLE IF EXISTS `wp_wc_order_stats`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_order_stats` (
  `order_id` bigint(20) unsigned NOT NULL,
  `parent_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_paid` datetime DEFAULT '0000-00-00 00:00:00',
  `date_completed` datetime DEFAULT '0000-00-00 00:00:00',
  `num_items_sold` int(11) NOT NULL DEFAULT 0,
  `total_sales` double NOT NULL DEFAULT 0,
  `tax_total` double NOT NULL DEFAULT 0,
  `shipping_total` double NOT NULL DEFAULT 0,
  `net_total` double NOT NULL DEFAULT 0,
  `returning_customer` tinyint(1) DEFAULT NULL,
  `status` varchar(200) NOT NULL,
  `customer_id` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`order_id`),
  KEY `date_created` (`date_created`),
  KEY `customer_id` (`customer_id`),
  KEY `status` (`status`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_order_stats`
--

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

--
-- Table structure for table `wp_wc_order_tax_lookup`
--

DROP TABLE IF EXISTS `wp_wc_order_tax_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_order_tax_lookup` (
  `order_id` bigint(20) unsigned NOT NULL,
  `tax_rate_id` bigint(20) unsigned NOT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `shipping_tax` double NOT NULL DEFAULT 0,
  `order_tax` double NOT NULL DEFAULT 0,
  `total_tax` double NOT NULL DEFAULT 0,
  PRIMARY KEY (`order_id`,`tax_rate_id`),
  KEY `tax_rate_id` (`tax_rate_id`),
  KEY `date_created` (`date_created`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_order_tax_lookup`
--

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

--
-- Table structure for table `wp_wc_orders`
--

DROP TABLE IF EXISTS `wp_wc_orders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_orders` (
  `id` bigint(20) unsigned NOT NULL,
  `status` varchar(20) DEFAULT NULL,
  `currency` varchar(10) DEFAULT NULL,
  `type` varchar(20) DEFAULT NULL,
  `tax_amount` decimal(26,8) DEFAULT NULL,
  `total_amount` decimal(26,8) DEFAULT NULL,
  `customer_id` bigint(20) unsigned DEFAULT NULL,
  `billing_email` varchar(320) DEFAULT NULL,
  `date_created_gmt` datetime DEFAULT NULL,
  `date_updated_gmt` datetime DEFAULT NULL,
  `parent_order_id` bigint(20) unsigned DEFAULT NULL,
  `payment_method` varchar(100) DEFAULT NULL,
  `payment_method_title` text DEFAULT NULL,
  `transaction_id` varchar(100) DEFAULT NULL,
  `ip_address` varchar(100) DEFAULT NULL,
  `user_agent` text DEFAULT NULL,
  `customer_note` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `status` (`status`),
  KEY `date_created` (`date_created_gmt`),
  KEY `customer_id_billing_email` (`customer_id`,`billing_email`(171)),
  KEY `billing_email` (`billing_email`(191)),
  KEY `type_status_date` (`type`,`status`,`date_created_gmt`),
  KEY `parent_order_id` (`parent_order_id`),
  KEY `date_updated` (`date_updated_gmt`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_orders`
--

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

--
-- Table structure for table `wp_wc_orders_meta`
--

DROP TABLE IF EXISTS `wp_wc_orders_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_orders_meta` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_id` bigint(20) unsigned DEFAULT NULL,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `meta_key_value` (`meta_key`(100),`meta_value`(82)),
  KEY `order_id_meta_key_meta_value` (`order_id`,`meta_key`(100),`meta_value`(82))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_orders_meta`
--

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

--
-- Table structure for table `wp_wc_product_attributes_lookup`
--

DROP TABLE IF EXISTS `wp_wc_product_attributes_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_product_attributes_lookup` (
  `product_id` bigint(20) NOT NULL,
  `product_or_parent_id` bigint(20) NOT NULL,
  `taxonomy` varchar(32) NOT NULL,
  `term_id` bigint(20) NOT NULL,
  `is_variation_attribute` tinyint(1) NOT NULL,
  `in_stock` tinyint(1) NOT NULL,
  PRIMARY KEY (`product_or_parent_id`,`term_id`,`product_id`,`taxonomy`),
  KEY `is_variation_attribute_term_id` (`is_variation_attribute`,`term_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_product_attributes_lookup`
--

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

--
-- Table structure for table `wp_wc_product_download_directories`
--

DROP TABLE IF EXISTS `wp_wc_product_download_directories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_product_download_directories` (
  `url_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `url` varchar(256) NOT NULL,
  `enabled` tinyint(1) NOT NULL DEFAULT 0,
  PRIMARY KEY (`url_id`),
  KEY `url` (`url`(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 `wp_wc_product_download_directories`
--

LOCK TABLES `wp_wc_product_download_directories` WRITE;
/*!40000 ALTER TABLE `wp_wc_product_download_directories` DISABLE KEYS */;
INSERT INTO `wp_wc_product_download_directories` VALUES (1,'file://C:/fe2tech/wp-content/uploads/woocommerce_uploads/',1),(2,'https://fe2tech.com/wp-content/uploads/woocommerce_uploads/',1);
/*!40000 ALTER TABLE `wp_wc_product_download_directories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wc_product_meta_lookup`
--

DROP TABLE IF EXISTS `wp_wc_product_meta_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_product_meta_lookup` (
  `product_id` bigint(20) NOT NULL,
  `sku` varchar(100) DEFAULT '',
  `global_unique_id` varchar(100) DEFAULT '',
  `virtual` tinyint(1) DEFAULT 0,
  `downloadable` tinyint(1) DEFAULT 0,
  `min_price` decimal(19,4) DEFAULT NULL,
  `max_price` decimal(19,4) DEFAULT NULL,
  `onsale` tinyint(1) DEFAULT 0,
  `stock_quantity` double DEFAULT NULL,
  `stock_status` varchar(100) DEFAULT 'instock',
  `rating_count` bigint(20) DEFAULT 0,
  `average_rating` decimal(3,2) DEFAULT 0.00,
  `total_sales` bigint(20) DEFAULT 0,
  `tax_status` varchar(100) DEFAULT 'taxable',
  `tax_class` varchar(100) DEFAULT '',
  PRIMARY KEY (`product_id`),
  KEY `virtual` (`virtual`),
  KEY `downloadable` (`downloadable`),
  KEY `stock_status` (`stock_status`),
  KEY `stock_quantity` (`stock_quantity`),
  KEY `onsale` (`onsale`),
  KEY `min_max_price` (`min_price`,`max_price`),
  KEY `sku` (`sku`(50))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_product_meta_lookup`
--

LOCK TABLES `wp_wc_product_meta_lookup` WRITE;
/*!40000 ALTER TABLE `wp_wc_product_meta_lookup` DISABLE KEYS */;
INSERT INTO `wp_wc_product_meta_lookup` VALUES (781,'','',0,0,43.0000,43.0000,0,NULL,'instock',1,5.00,0,'taxable',''),(782,'','',0,0,23.9900,23.9900,0,NULL,'instock',1,5.00,0,'taxable',''),(2019,'','',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(2020,'','',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(2023,'','',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(2025,'','',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(2027,'','',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable','');
/*!40000 ALTER TABLE `wp_wc_product_meta_lookup` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wc_rate_limits`
--

DROP TABLE IF EXISTS `wp_wc_rate_limits`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_rate_limits` (
  `rate_limit_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `rate_limit_key` varchar(200) NOT NULL,
  `rate_limit_expiry` bigint(20) unsigned NOT NULL,
  `rate_limit_remaining` smallint(10) NOT NULL DEFAULT 0,
  PRIMARY KEY (`rate_limit_id`),
  UNIQUE KEY `rate_limit_key` (`rate_limit_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_rate_limits`
--

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

--
-- Table structure for table `wp_wc_reserved_stock`
--

DROP TABLE IF EXISTS `wp_wc_reserved_stock`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_reserved_stock` (
  `order_id` bigint(20) NOT NULL,
  `product_id` bigint(20) NOT NULL,
  `stock_quantity` double NOT NULL DEFAULT 0,
  `timestamp` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `expires` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`order_id`,`product_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_reserved_stock`
--

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

--
-- Table structure for table `wp_wc_tax_rate_classes`
--

DROP TABLE IF EXISTS `wp_wc_tax_rate_classes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_tax_rate_classes` (
  `tax_rate_class_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) NOT NULL DEFAULT '',
  `slug` varchar(200) NOT NULL DEFAULT '',
  PRIMARY KEY (`tax_rate_class_id`),
  UNIQUE 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 `wp_wc_tax_rate_classes`
--

LOCK TABLES `wp_wc_tax_rate_classes` WRITE;
/*!40000 ALTER TABLE `wp_wc_tax_rate_classes` DISABLE KEYS */;
INSERT INTO `wp_wc_tax_rate_classes` VALUES (1,'Reduced rate','reduced-rate'),(2,'Zero rate','zero-rate');
/*!40000 ALTER TABLE `wp_wc_tax_rate_classes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wc_webhooks`
--

DROP TABLE IF EXISTS `wp_wc_webhooks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_webhooks` (
  `webhook_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `status` varchar(200) NOT NULL,
  `name` text NOT NULL,
  `user_id` bigint(20) unsigned NOT NULL,
  `delivery_url` text NOT NULL,
  `secret` text NOT NULL,
  `topic` varchar(200) NOT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `api_version` smallint(4) NOT NULL,
  `failure_count` smallint(10) NOT NULL DEFAULT 0,
  `pending_delivery` tinyint(1) NOT NULL DEFAULT 0,
  PRIMARY KEY (`webhook_id`),
  KEY `user_id` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_webhooks`
--

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

--
-- Table structure for table `wp_woocommerce_api_keys`
--

DROP TABLE IF EXISTS `wp_woocommerce_api_keys`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_api_keys` (
  `key_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL,
  `description` varchar(200) DEFAULT NULL,
  `permissions` varchar(10) NOT NULL,
  `consumer_key` char(64) NOT NULL,
  `consumer_secret` char(43) NOT NULL,
  `nonces` longtext DEFAULT NULL,
  `truncated_key` char(7) NOT NULL,
  `last_access` datetime DEFAULT NULL,
  PRIMARY KEY (`key_id`),
  KEY `consumer_key` (`consumer_key`),
  KEY `consumer_secret` (`consumer_secret`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_api_keys`
--

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

--
-- Table structure for table `wp_woocommerce_attribute_taxonomies`
--

DROP TABLE IF EXISTS `wp_woocommerce_attribute_taxonomies`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_attribute_taxonomies` (
  `attribute_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `attribute_name` varchar(200) NOT NULL,
  `attribute_label` varchar(200) DEFAULT NULL,
  `attribute_type` varchar(20) NOT NULL,
  `attribute_orderby` varchar(20) NOT NULL,
  `attribute_public` int(1) NOT NULL DEFAULT 1,
  PRIMARY KEY (`attribute_id`),
  KEY `attribute_name` (`attribute_name`(20))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_attribute_taxonomies`
--

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

--
-- Table structure for table `wp_woocommerce_downloadable_product_permissions`
--

DROP TABLE IF EXISTS `wp_woocommerce_downloadable_product_permissions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_downloadable_product_permissions` (
  `permission_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `download_id` varchar(36) NOT NULL,
  `product_id` bigint(20) unsigned NOT NULL,
  `order_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `order_key` varchar(200) NOT NULL,
  `user_email` varchar(200) NOT NULL,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `downloads_remaining` varchar(9) DEFAULT NULL,
  `access_granted` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `access_expires` datetime DEFAULT NULL,
  `download_count` bigint(20) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`permission_id`),
  KEY `download_order_key_product` (`product_id`,`order_id`,`order_key`(16),`download_id`),
  KEY `download_order_product` (`download_id`,`order_id`,`product_id`),
  KEY `order_id` (`order_id`),
  KEY `user_order_remaining_expires` (`user_id`,`order_id`,`downloads_remaining`,`access_expires`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_downloadable_product_permissions`
--

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

--
-- Table structure for table `wp_woocommerce_log`
--

DROP TABLE IF EXISTS `wp_woocommerce_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_log` (
  `log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `timestamp` datetime NOT NULL,
  `level` smallint(4) NOT NULL,
  `source` varchar(200) NOT NULL,
  `message` longtext NOT NULL,
  `context` longtext DEFAULT NULL,
  PRIMARY KEY (`log_id`),
  KEY `level` (`level`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_log`
--

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

--
-- Table structure for table `wp_woocommerce_order_itemmeta`
--

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

--
-- Dumping data for table `wp_woocommerce_order_itemmeta`
--

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

--
-- Table structure for table `wp_woocommerce_order_items`
--

DROP TABLE IF EXISTS `wp_woocommerce_order_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_order_items` (
  `order_item_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_item_name` text NOT NULL,
  `order_item_type` varchar(200) NOT NULL DEFAULT '',
  `order_id` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`order_item_id`),
  KEY `order_id` (`order_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_order_items`
--

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

--
-- Table structure for table `wp_woocommerce_payment_tokenmeta`
--

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

--
-- Dumping data for table `wp_woocommerce_payment_tokenmeta`
--

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

--
-- Table structure for table `wp_woocommerce_payment_tokens`
--

DROP TABLE IF EXISTS `wp_woocommerce_payment_tokens`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_payment_tokens` (
  `token_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `gateway_id` varchar(200) NOT NULL,
  `token` text NOT NULL,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `type` varchar(200) NOT NULL,
  `is_default` tinyint(1) NOT NULL DEFAULT 0,
  PRIMARY KEY (`token_id`),
  KEY `user_id` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_payment_tokens`
--

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

--
-- Table structure for table `wp_woocommerce_sessions`
--

DROP TABLE IF EXISTS `wp_woocommerce_sessions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_sessions` (
  `session_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `session_key` char(32) NOT NULL,
  `session_value` longtext NOT NULL,
  `session_expiry` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`session_id`),
  UNIQUE KEY `session_key` (`session_key`)
) 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 `wp_woocommerce_sessions`
--

LOCK TABLES `wp_woocommerce_sessions` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_sessions` DISABLE KEYS */;
INSERT INTO `wp_woocommerce_sessions` VALUES (1,'1','a:7:{s:4:\"cart\";s:6:\"a:0:{}\";s:11:\"cart_totals\";s:367:\"a:15:{s:8:\"subtotal\";i:0;s:12:\"subtotal_tax\";i:0;s:14:\"shipping_total\";i:0;s:12:\"shipping_tax\";i:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";i:0;s:12:\"discount_tax\";i:0;s:19:\"cart_contents_total\";i:0;s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";i:0;s:7:\"fee_tax\";i:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";i:0;s:9:\"total_tax\";i:0;}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:22:\"coupon_discount_totals\";s:6:\"a:0:{}\";s:26:\"coupon_discount_tax_totals\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:8:\"customer\";s:797:\"a:28:{s:2:\"id\";s:1:\"1\";s:13:\"date_modified\";s:25:\"2024-10-19T15:02:46+00:00\";s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:5:\"email\";s:28:\"vannguyen.tran.164@gmail.com\";s:7:\"address\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:4:\"city\";s:0:\"\";s:5:\"state\";s:2:\"CA\";s:8:\"postcode\";s:0:\"\";s:7:\"country\";s:2:\"US\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";s:14:\"shipping_phone\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:14:\"shipping_state\";s:2:\"CA\";s:17:\"shipping_postcode\";s:0:\"\";s:16:\"shipping_country\";s:2:\"US\";s:13:\"is_vat_exempt\";s:0:\"\";s:19:\"calculated_shipping\";s:0:\"\";s:9:\"meta_data\";a:0:{}}\";}',1729522986);
/*!40000 ALTER TABLE `wp_woocommerce_sessions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_woocommerce_shipping_zone_locations`
--

DROP TABLE IF EXISTS `wp_woocommerce_shipping_zone_locations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_shipping_zone_locations` (
  `location_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `zone_id` bigint(20) unsigned NOT NULL,
  `location_code` varchar(200) NOT NULL,
  `location_type` varchar(40) NOT NULL,
  PRIMARY KEY (`location_id`),
  KEY `zone_id` (`zone_id`),
  KEY `location_type_code` (`location_type`(10),`location_code`(20))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_shipping_zone_locations`
--

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

--
-- Table structure for table `wp_woocommerce_shipping_zone_methods`
--

DROP TABLE IF EXISTS `wp_woocommerce_shipping_zone_methods`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_shipping_zone_methods` (
  `zone_id` bigint(20) unsigned NOT NULL,
  `instance_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `method_id` varchar(200) NOT NULL,
  `method_order` bigint(20) unsigned NOT NULL,
  `is_enabled` tinyint(1) NOT NULL DEFAULT 1,
  PRIMARY KEY (`instance_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_shipping_zone_methods`
--

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

--
-- Table structure for table `wp_woocommerce_shipping_zones`
--

DROP TABLE IF EXISTS `wp_woocommerce_shipping_zones`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_shipping_zones` (
  `zone_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `zone_name` varchar(200) NOT NULL,
  `zone_order` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`zone_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_shipping_zones`
--

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

--
-- Table structure for table `wp_woocommerce_tax_rate_locations`
--

DROP TABLE IF EXISTS `wp_woocommerce_tax_rate_locations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_tax_rate_locations` (
  `location_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `location_code` varchar(200) NOT NULL,
  `tax_rate_id` bigint(20) unsigned NOT NULL,
  `location_type` varchar(40) NOT NULL,
  PRIMARY KEY (`location_id`),
  KEY `tax_rate_id` (`tax_rate_id`),
  KEY `location_type_code` (`location_type`(10),`location_code`(20))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_tax_rate_locations`
--

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

--
-- Table structure for table `wp_woocommerce_tax_rates`
--

DROP TABLE IF EXISTS `wp_woocommerce_tax_rates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_tax_rates` (
  `tax_rate_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `tax_rate_country` varchar(2) NOT NULL DEFAULT '',
  `tax_rate_state` varchar(200) NOT NULL DEFAULT '',
  `tax_rate` varchar(8) NOT NULL DEFAULT '',
  `tax_rate_name` varchar(200) NOT NULL DEFAULT '',
  `tax_rate_priority` bigint(20) unsigned NOT NULL,
  `tax_rate_compound` int(1) NOT NULL DEFAULT 0,
  `tax_rate_shipping` int(1) NOT NULL DEFAULT 1,
  `tax_rate_order` bigint(20) unsigned NOT NULL,
  `tax_rate_class` varchar(200) NOT NULL DEFAULT '',
  PRIMARY KEY (`tax_rate_id`),
  KEY `tax_rate_country` (`tax_rate_country`),
  KEY `tax_rate_state` (`tax_rate_state`(2)),
  KEY `tax_rate_class` (`tax_rate_class`(10)),
  KEY `tax_rate_priority` (`tax_rate_priority`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_tax_rates`
--

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

--
-- Table structure for table `wp_wpforms_logs`
--

DROP TABLE IF EXISTS `wp_wpforms_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wpforms_logs` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `title` varchar(255) NOT NULL,
  `message` longtext NOT NULL,
  `types` varchar(255) NOT NULL,
  `create_at` datetime NOT NULL,
  `form_id` bigint(20) DEFAULT NULL,
  `entry_id` bigint(20) DEFAULT NULL,
  `user_id` bigint(20) DEFAULT NULL,
  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 `wp_wpforms_logs`
--

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

--
-- Table structure for table `wp_wpforms_payment_meta`
--

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

--
-- Dumping data for table `wp_wpforms_payment_meta`
--

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

--
-- Table structure for table `wp_wpforms_payments`
--

DROP TABLE IF EXISTS `wp_wpforms_payments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wpforms_payments` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `form_id` bigint(20) NOT NULL,
  `status` varchar(10) NOT NULL DEFAULT '',
  `subtotal_amount` decimal(26,8) NOT NULL DEFAULT 0.00000000,
  `discount_amount` decimal(26,8) NOT NULL DEFAULT 0.00000000,
  `total_amount` decimal(26,8) NOT NULL DEFAULT 0.00000000,
  `currency` varchar(3) NOT NULL DEFAULT '',
  `entry_id` bigint(20) NOT NULL DEFAULT 0,
  `gateway` varchar(20) NOT NULL DEFAULT '',
  `type` varchar(12) NOT NULL DEFAULT '',
  `mode` varchar(4) NOT NULL DEFAULT '',
  `transaction_id` varchar(40) NOT NULL DEFAULT '',
  `customer_id` varchar(40) NOT NULL DEFAULT '',
  `subscription_id` varchar(40) NOT NULL DEFAULT '',
  `subscription_status` varchar(10) NOT NULL DEFAULT '',
  `title` varchar(255) NOT NULL DEFAULT '',
  `date_created_gmt` datetime NOT NULL,
  `date_updated_gmt` datetime NOT NULL,
  `is_published` tinyint(1) NOT NULL DEFAULT 1,
  PRIMARY KEY (`id`),
  KEY `form_id` (`form_id`),
  KEY `status` (`status`(8)),
  KEY `total_amount` (`total_amount`),
  KEY `type` (`type`(8)),
  KEY `transaction_id` (`transaction_id`(32)),
  KEY `customer_id` (`customer_id`(32)),
  KEY `subscription_id` (`subscription_id`(32)),
  KEY `subscription_status` (`subscription_status`(8)),
  KEY `title` (`title`(64))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wpforms_payments`
--

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

--
-- Table structure for table `wp_wpforms_tasks_meta`
--

DROP TABLE IF EXISTS `wp_wpforms_tasks_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wpforms_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=17 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wpforms_tasks_meta`
--

LOCK TABLES `wp_wpforms_tasks_meta` WRITE;
/*!40000 ALTER TABLE `wp_wpforms_tasks_meta` DISABLE KEYS */;
INSERT INTO `wp_wpforms_tasks_meta` VALUES (1,'wpforms_process_forms_locator_scan','W10=','2024-10-28 09:51:55'),(2,'wpforms_process_purge_spam','W10=','2024-10-28 09:51:55'),(11,'wpforms_admin_addons_cache_update','W10=','2024-12-10 02:11:41');
/*!40000 ALTER TABLE `wp_wpforms_tasks_meta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wpmailsmtp_debug_events`
--

DROP TABLE IF EXISTS `wp_wpmailsmtp_debug_events`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_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 AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wpmailsmtp_debug_events`
--

LOCK TABLES `wp_wpmailsmtp_debug_events` WRITE;
/*!40000 ALTER TABLE `wp_wpmailsmtp_debug_events` DISABLE KEYS */;
INSERT INTO `wp_wpmailsmtp_debug_events` VALUES (1,'Mailer: Mailgun\r\n401: Unauthorized\r\nForbidden','{\"file\":\"C:\\\\fe2tech\\\\wp-content\\\\plugins\\\\wp-mail-smtp\\\\src\\\\Admin\\\\SetupWizard.php\",\"line\":1213}',0,'2024-10-28 02:52:47'),(2,'Mailer: Mailgun\r\n401: Unauthorized\r\nForbidden','{\"file\":\"C:\\\\fe2tech\\\\wp-content\\\\plugins\\\\wp-mail-smtp\\\\src\\\\Admin\\\\Pages\\\\TestTab.php\",\"line\":350}',0,'2024-10-28 02:54:14'),(3,'Mailer: Mailgun\r\n401: Unauthorized\r\nForbidden','{\"file\":\"C:\\\\fe2tech\\\\wp-content\\\\plugins\\\\wp-mail-smtp\\\\src\\\\Admin\\\\Pages\\\\TestTab.php\",\"line\":350}',0,'2024-10-28 02:55:45'),(4,'Mailer: Mailgun\r\n401: Unauthorized\r\nForbidden','{\"file\":\"C:\\\\fe2tech\\\\wp-content\\\\plugins\\\\wp-mail-smtp\\\\src\\\\Reports\\\\Emails\\\\Summary.php\",\"line\":112}',0,'2024-12-16 19:35:38'),(5,'Mailer: Mailgun\r\n401: Unauthorized\r\nForbidden','{\"file\":\"C:\\\\fe2tech\\\\wp-content\\\\plugins\\\\wp-mail-smtp\\\\src\\\\Reports\\\\Emails\\\\Summary.php\",\"line\":112}',0,'2024-12-24 18:56:30'),(6,'Mailer: Mailgun\r\n401: Unauthorized\r\nForbidden','{\"file\":\"C:\\\\fe2tech\\\\wp-content\\\\plugins\\\\wp-mail-smtp\\\\src\\\\Reports\\\\Emails\\\\Summary.php\",\"line\":112}',0,'2025-03-16 19:03:42');
/*!40000 ALTER TABLE `wp_wpmailsmtp_debug_events` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wpmailsmtp_tasks_meta`
--

DROP TABLE IF EXISTS `wp_wpmailsmtp_tasks_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_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=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wpmailsmtp_tasks_meta`
--

LOCK TABLES `wp_wpmailsmtp_tasks_meta` WRITE;
/*!40000 ALTER TABLE `wp_wpmailsmtp_tasks_meta` DISABLE KEYS */;
INSERT INTO `wp_wpmailsmtp_tasks_meta` VALUES (1,'wp_mail_smtp_admin_notifications_update','W10=','2024-10-28 09:52:03'),(2,'wp_mail_smtp_admin_notifications_update','W10=','2024-12-10 06:23:09');
/*!40000 ALTER TABLE `wp_wpmailsmtp_tasks_meta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_yith_wcwl`
--

DROP TABLE IF EXISTS `wp_yith_wcwl`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_yith_wcwl` (
  `ID` bigint(20) NOT NULL AUTO_INCREMENT,
  `prod_id` bigint(20) NOT NULL,
  `quantity` int(11) NOT NULL,
  `user_id` bigint(20) DEFAULT NULL,
  `wishlist_id` bigint(20) DEFAULT NULL,
  `position` int(11) DEFAULT 0,
  `original_price` decimal(9,3) DEFAULT NULL,
  `original_currency` char(3) DEFAULT NULL,
  `dateadded` timestamp NOT NULL DEFAULT current_timestamp(),
  `on_sale` tinyint(4) NOT NULL DEFAULT 0,
  PRIMARY KEY (`ID`),
  KEY `prod_id` (`prod_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yith_wcwl`
--

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

--
-- Table structure for table `wp_yith_wcwl_lists`
--

DROP TABLE IF EXISTS `wp_yith_wcwl_lists`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_yith_wcwl_lists` (
  `ID` bigint(20) NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) DEFAULT NULL,
  `session_id` varchar(255) DEFAULT NULL,
  `wishlist_slug` varchar(200) NOT NULL,
  `wishlist_name` text DEFAULT NULL,
  `wishlist_token` varchar(64) NOT NULL,
  `wishlist_privacy` tinyint(1) NOT NULL DEFAULT 0,
  `is_default` tinyint(1) NOT NULL DEFAULT 0,
  `dateadded` timestamp NOT NULL DEFAULT current_timestamp(),
  `expiration` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`ID`),
  UNIQUE KEY `wishlist_token` (`wishlist_token`),
  KEY `wishlist_slug` (`wishlist_slug`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yith_wcwl_lists`
--

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

--
-- Table structure for table `wp_yoast_indexable`
--

DROP TABLE IF EXISTS `wp_yoast_indexable`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_yoast_indexable` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `permalink` longtext DEFAULT NULL,
  `permalink_hash` varchar(40) DEFAULT NULL,
  `object_id` bigint(20) DEFAULT NULL,
  `object_type` varchar(32) NOT NULL,
  `object_sub_type` varchar(32) DEFAULT NULL,
  `author_id` bigint(20) DEFAULT NULL,
  `post_parent` bigint(20) DEFAULT NULL,
  `title` text DEFAULT NULL,
  `description` mediumtext DEFAULT NULL,
  `breadcrumb_title` text DEFAULT NULL,
  `post_status` varchar(20) DEFAULT NULL,
  `is_public` tinyint(1) DEFAULT NULL,
  `is_protected` tinyint(1) DEFAULT 0,
  `has_public_posts` tinyint(1) DEFAULT NULL,
  `number_of_pages` int(11) unsigned DEFAULT NULL,
  `canonical` longtext DEFAULT NULL,
  `primary_focus_keyword` varchar(191) DEFAULT NULL,
  `primary_focus_keyword_score` int(3) DEFAULT NULL,
  `readability_score` int(3) DEFAULT NULL,
  `is_cornerstone` tinyint(1) DEFAULT 0,
  `is_robots_noindex` tinyint(1) DEFAULT 0,
  `is_robots_nofollow` tinyint(1) DEFAULT 0,
  `is_robots_noarchive` tinyint(1) DEFAULT 0,
  `is_robots_noimageindex` tinyint(1) DEFAULT 0,
  `is_robots_nosnippet` tinyint(1) DEFAULT 0,
  `twitter_title` text DEFAULT NULL,
  `twitter_image` longtext DEFAULT NULL,
  `twitter_description` longtext DEFAULT NULL,
  `twitter_image_id` varchar(191) DEFAULT NULL,
  `twitter_image_source` text DEFAULT NULL,
  `open_graph_title` text DEFAULT NULL,
  `open_graph_description` longtext DEFAULT NULL,
  `open_graph_image` longtext DEFAULT NULL,
  `open_graph_image_id` varchar(191) DEFAULT NULL,
  `open_graph_image_source` text DEFAULT NULL,
  `open_graph_image_meta` mediumtext DEFAULT NULL,
  `link_count` int(11) DEFAULT NULL,
  `incoming_link_count` int(11) DEFAULT NULL,
  `prominent_words_version` int(11) unsigned DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `blog_id` bigint(20) NOT NULL DEFAULT 1,
  `language` varchar(32) DEFAULT NULL,
  `region` varchar(32) DEFAULT NULL,
  `schema_page_type` varchar(64) DEFAULT NULL,
  `schema_article_type` varchar(64) DEFAULT NULL,
  `has_ancestors` tinyint(1) DEFAULT 0,
  `estimated_reading_time_minutes` int(11) DEFAULT NULL,
  `version` int(11) DEFAULT 1,
  `object_last_modified` datetime DEFAULT NULL,
  `object_published_at` datetime DEFAULT NULL,
  `inclusive_language_score` int(3) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `object_type_and_sub_type` (`object_type`,`object_sub_type`),
  KEY `object_id_and_type` (`object_id`,`object_type`),
  KEY `permalink_hash_and_object_type` (`permalink_hash`,`object_type`),
  KEY `subpages` (`post_parent`,`object_type`,`post_status`,`object_id`),
  KEY `prominent_words` (`prominent_words_version`,`object_type`,`object_sub_type`,`post_status`),
  KEY `published_sitemap_index` (`object_published_at`,`is_robots_noindex`,`object_type`,`object_sub_type`)
) ENGINE=InnoDB AUTO_INCREMENT=153 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yoast_indexable`
--

LOCK TABLES `wp_yoast_indexable` WRITE;
/*!40000 ALTER TABLE `wp_yoast_indexable` DISABLE KEYS */;
INSERT INTO `wp_yoast_indexable` VALUES (1,NULL,NULL,NULL,'system-page','404',NULL,NULL,'Page not found %%sep%% %%sitename%%',NULL,'Error 404: Page not found',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-10-28 07:46:14','2024-11-04 19:42:03',1,NULL,NULL,NULL,NULL,0,NULL,1,NULL,NULL,NULL),(2,NULL,NULL,NULL,'system-page','search-result',NULL,NULL,'You searched for %%searchphrase%% %%page%% %%sep%% %%sitename%%',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-10-28 07:46:14','2024-11-21 19:54:54',1,NULL,NULL,NULL,NULL,0,NULL,1,NULL,NULL,NULL),(3,NULL,NULL,NULL,'date-archive',NULL,NULL,NULL,'%%date%% %%page%% %%sep%% %%sitename%%','',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-10-28 07:46:14','2024-11-21 19:54:54',1,NULL,NULL,NULL,NULL,0,NULL,1,NULL,NULL,NULL),(4,'https://fe2tech.com/ct-mega-menu/demos/','39:ec175ce5e781d6e4c0a3dc38056b0171',1772,'post','ct-mega-menu',1,0,NULL,NULL,'Demos','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://fe2tech.com/wp-content/uploads/2019/11/demo1.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://fe2tech.com/wp-content/uploads/2019/11/demo1.jpg',NULL,'first-content-image',NULL,6,NULL,NULL,'2024-10-28 07:46:14','2024-11-21 19:54:54',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-10-29 02:44:44','2022-10-29 02:44:44',0),(5,'https://fe2tech.com/footer/footer/','34:cc51f2d6921f6ef62c99861ee6d069a9',799,'post','footer',1,0,NULL,NULL,'Footer','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://fe2tech.com/wp-content/uploads/2024/12/logo.jpg',NULL,'2748','first-content-image',NULL,NULL,'https://fe2tech.com/wp-content/uploads/2024/12/logo.jpg','2748','first-content-image',NULL,6,NULL,NULL,'2024-10-28 07:46:14','2025-03-16 20:37:21',1,NULL,NULL,NULL,NULL,0,2,2,'2025-03-17 03:37:21','2019-11-19 16:13:22',0),(9,'https://fe2tech.com/?page_id=30','31:bd4a997afc972c48ed055b84b5956661',30,'post','page',1,0,NULL,NULL,'FAQ','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-10-28 07:46:14','2024-11-21 19:54:54',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-10-28 02:46:37','2019-10-30 08:05:16',0),(10,'https://fe2tech.com/?page_id=367','32:a52c1122b08a9c2641a7b379b66bec26',367,'post','page',1,0,NULL,NULL,'Testimonials','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://fe2tech.com/wp-content/uploads/2019/11/testimonial-01.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://fe2tech.com/wp-content/uploads/2019/11/testimonial-01.jpg',NULL,'first-content-image',NULL,NULL,NULL,NULL,'2024-10-28 07:46:14','2024-11-21 19:54:54',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-10-28 02:47:04','2019-11-11 02:18:04',0),(11,'https://fe2tech.com/','20:ec7ad29b1f0a1edd32202b9167b1cec3',9,'post','page',1,0,NULL,NULL,'Home','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://fe2tech.com/wp-content/uploads/2024/11/signature.png',NULL,'2542','first-content-image',NULL,NULL,'https://fe2tech.com/wp-content/uploads/2024/11/signature.png','2542','first-content-image',NULL,9,1,NULL,'2024-10-28 07:46:14','2025-03-16 19:54:14',1,NULL,NULL,NULL,NULL,0,4,2,'2025-03-17 02:54:14','2019-10-29 10:04:28',0),(12,'https://fe2tech.com/contact/','28:3e2d4d0b9688aa713426ab432dec5376',24,'post','page',1,0,NULL,NULL,'Contact','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://fe2tech.com/wp-content/uploads/2019/11/info-icon-01.png',NULL,NULL,'first-content-image',NULL,NULL,'https://fe2tech.com/wp-content/uploads/2019/11/info-icon-01.png',NULL,'first-content-image',NULL,0,0,NULL,'2024-10-28 07:46:14','2025-03-17 02:41:52',1,NULL,NULL,NULL,NULL,0,1,2,'2024-10-28 08:37:55','2019-10-30 08:04:10',0),(13,'https://fe2tech.com/about-us/','29:bfea75eb01af6c5e39527229fd79cf15',26,'post','page',1,0,NULL,NULL,'About Us','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png',NULL,'612','first-content-image',NULL,NULL,'https://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png','612','first-content-image',NULL,1,1,NULL,'2024-10-28 07:46:14','2025-03-16 20:26:02',1,NULL,NULL,NULL,NULL,0,2,2,'2025-03-17 03:26:01','2019-10-30 08:04:23',0),(14,'https://fe2tech.com/team-partner/','33:268feb1c39c4dffdbcd47d2bc72ed729',28,'post','page',1,0,NULL,NULL,'Team &#038; Partner','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://fe2tech.com/wp-content/uploads/2024/12/FET.png',NULL,NULL,'first-content-image',NULL,NULL,'https://fe2tech.com/wp-content/uploads/2024/12/FET.png',NULL,'first-content-image',NULL,0,1,NULL,'2024-10-28 07:46:14','2024-12-24 20:54:01',1,NULL,NULL,NULL,NULL,0,4,2,'2024-12-25 03:54:01','2019-10-30 08:05:01',0),(15,'https://fe2tech.com/product/','28:c4c373a4dbf7345d1209f971648225f4',2126,'post','page',1,0,NULL,NULL,'Product','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://fe2tech.com/wp-content/uploads/2025/03/A16eb71f546c44c4ba00c6afe46464d593-1.jpg_350x350-1.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://fe2tech.com/wp-content/uploads/2025/03/A16eb71f546c44c4ba00c6afe46464d593-1.jpg_350x350-1.jpg',NULL,'first-content-image',NULL,74,1,NULL,'2024-10-28 07:46:14','2025-03-17 23:37:48',1,NULL,NULL,NULL,NULL,0,15,2,'2025-03-18 06:37:44','2024-10-21 03:37:36',0),(16,'https://fe2tech.com/services/','29:cdf2f359adb265c2fc60a42534fcb996',2128,'post','page',1,0,NULL,NULL,'Services','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,4,NULL,'2024-10-28 07:46:14','2024-12-17 08:02:18',1,NULL,NULL,NULL,NULL,0,1,2,'2024-12-17 04:00:26','2024-10-21 03:38:29',0),(19,'https://fe2tech.com/portfolio/','30:f08b2504795631bd443d0ce7cbca5a1a',NULL,'post-type-archive','portfolio',NULL,NULL,'%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%','','Portfolio',NULL,1,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-10-28 07:46:14','2025-03-27 16:18:18',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(20,'https://fe2tech.com/service/','28:12ef14996fbd3405c9fb0e7435f1bfc6',NULL,'post-type-archive','service',NULL,NULL,'%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%','','Services',NULL,1,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-10-28 07:46:14','2025-03-16 19:04:02',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-12-17 07:37:41','2024-10-19 15:51:30',NULL),(21,'https://fe2tech.com/footer/','27:14fe5508f5751ba927995cc5a6c0ef09',NULL,'post-type-archive','footer',NULL,NULL,'%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%','','Footers',NULL,1,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-10-28 07:46:14','2025-03-16 20:38:56',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-03-17 03:38:53','2019-11-19 16:13:22',NULL),(22,'https://fe2tech.com/ct-mega-menu/','33:a6beafb396e68a4471abe2d4c41a5c13',NULL,'post-type-archive','ct-mega-menu',NULL,NULL,'%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%','','Mega Menus',NULL,1,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-10-28 07:46:14','2025-03-19 12:25:57',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-10-29 02:44:44','2022-10-29 02:44:44',NULL),(23,'https://fe2tech.com/category/builder/','37:165fac77a1b1f11064ef1d04f1b86df0',1,'term','category',NULL,NULL,NULL,NULL,'Builder',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-10-28 07:46:14','2024-11-21 19:54:54',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(24,'https://fe2tech.com/category/construction/','42:33826790e345a34462c9bb1f4075964d',2,'term','category',NULL,NULL,NULL,NULL,'Construction',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-10-28 07:46:14','2024-11-21 19:54:54',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(25,'https://fe2tech.com/category/tracking/','38:21bb993b1254bedde170c4842005405c',3,'term','category',NULL,NULL,NULL,NULL,'Tracking',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-10-28 07:46:14','2024-11-21 19:54:54',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(26,'https://fe2tech.com/category/uncategorized-eu/','46:5269c7b0cafa10604d0520a7da9800d7',4,'term','category',NULL,NULL,NULL,NULL,'Uncategorized @eu',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-10-28 07:46:14','2024-11-21 19:54:54',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(27,'https://fe2tech.com/tag/builder/','32:289fa137cb5fbbfd5c3e5d6601681531',5,'term','post_tag',NULL,NULL,NULL,NULL,'Builder',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-10-28 07:46:14','2024-11-21 19:54:54',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(28,'https://fe2tech.com/tag/cloud/','30:7cbc130accf664f6c2ab9da4faff07fa',6,'term','post_tag',NULL,NULL,NULL,NULL,'Cloud',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-10-28 07:46:14','2024-11-21 19:54:54',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(29,'https://fe2tech.com/tag/map/','28:d437b15d55de0f13a08dee77814fba8a',7,'term','post_tag',NULL,NULL,NULL,NULL,'Map',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-10-28 07:46:14','2024-11-21 19:54:54',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(30,'https://fe2tech.com/tag/tower/','30:b7282c87d80b66405111d091910bcca8',8,'term','post_tag',NULL,NULL,NULL,NULL,'Tower',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-10-28 07:46:14','2024-11-21 19:54:54',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(31,'https://fe2tech.com/tag/truck/','30:cffa150ea03752b63bd73035c7d1e53c',9,'term','post_tag',NULL,NULL,NULL,NULL,'Truck',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-10-28 07:46:14','2024-11-21 19:54:54',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(32,'https://fe2tech.com/portfolio-category/exterior/','48:e588695fadd70b64ad85d6f42d7c9c3d',15,'term','portfolio-category',NULL,NULL,NULL,NULL,'Exterior',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-10-28 07:46:14','2024-11-21 19:54:54',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(33,'https://fe2tech.com/portfolio-category/interior/','48:b5a4fe7511bc826319c74e181ffe445e',19,'term','portfolio-category',NULL,NULL,NULL,NULL,'Interior',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-10-28 07:46:14','2024-11-21 19:54:55',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(34,'https://fe2tech.com/portfolio-category/plan/','44:a848ee1226eabb6747fe80b6bb8a4ef0',23,'term','portfolio-category',NULL,NULL,NULL,NULL,'Plan',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-10-28 07:46:14','2024-11-21 19:54:55',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(35,'https://fe2tech.com/portfolio-category/sketching/','49:e15bb83ef62c9acfb33c0db30aaeac9e',34,'term','portfolio-category',NULL,NULL,NULL,NULL,'Sketching',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-10-28 07:46:14','2024-11-21 19:54:55',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(38,'https://fe2tech.com/','20:ec7ad29b1f0a1edd32202b9167b1cec3',NULL,'home-page',NULL,NULL,NULL,'%%sitename%% %%page%% %%sep%% %%sitedesc%%','','Home',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,'%%sitename%%','','','0',NULL,NULL,NULL,5,NULL,'2024-10-28 07:46:15','2025-03-17 23:37:48',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-03-18 06:37:44',NULL,NULL),(58,'https://fe2tech.com/service-category/material-forming-services/','63:483d99d3ab417e16e46ff9a1456aa8df',47,'term','service-category',NULL,NULL,NULL,NULL,'Material Forming Services',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-10-28 07:46:36','2024-12-17 00:22:53',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-12-17 07:22:52','2024-10-19 15:53:17',NULL),(103,'https://fe2tech.com/portfolio/','30:f08b2504795631bd443d0ce7cbca5a1a',NULL,'post-type-archive','portfolio',NULL,NULL,'%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%','','Portfolio',NULL,1,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-11-22 02:54:54','2024-11-21 19:54:54',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(104,'https://fe2tech.com/service/','28:12ef14996fbd3405c9fb0e7435f1bfc6',NULL,'post-type-archive','service',NULL,NULL,'%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%','','Services',NULL,1,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-11-22 02:54:54','2024-11-21 19:54:54',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-10-28 03:11:37','2024-10-19 15:51:30',NULL),(105,'https://fe2tech.com/footer/','27:14fe5508f5751ba927995cc5a6c0ef09',NULL,'post-type-archive','footer',NULL,NULL,'%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%','','Footers',NULL,1,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-11-22 02:54:54','2024-11-21 19:54:54',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-10-28 08:53:00','2019-11-19 16:13:22',NULL),(106,'https://fe2tech.com/ct-mega-menu/','33:a6beafb396e68a4471abe2d4c41a5c13',NULL,'post-type-archive','ct-mega-menu',NULL,NULL,'%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%','','Mega Menus',NULL,1,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-11-22 02:54:54','2024-11-21 19:54:54',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-10-29 02:44:44','2022-10-29 02:44:44',NULL),(107,'https://fe2tech.com/service-category/cnc-machining-services/','60:6000f6a7488971e121f94ce6e0b14b99',50,'term','service-category',NULL,NULL,NULL,NULL,'CNC Machining Services',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-11-26 03:12:15','2024-12-17 00:20:54',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-12-17 07:20:53',NULL,NULL),(108,'https://fe2tech.com/service-category/metal-fabrication-services/','64:9173394bafdf3d610d0d08ff63746246',51,'term','service-category',NULL,NULL,NULL,NULL,'Metal Fabrication Services',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-11-26 03:12:20','2024-12-17 00:31:28',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-12-17 07:31:28',NULL,NULL),(109,'https://fe2tech.com/service-category/precision-engineering-services/','68:db9cc03027637bf6b95bdeffb4008e5e',52,'term','service-category',NULL,NULL,NULL,NULL,'Precision Engineering Services',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-11-26 03:12:26','2024-12-17 00:35:36',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-12-17 07:35:36',NULL,NULL),(110,'https://fe2tech.com/service-category/other-services/','52:99fba4d1b9e3751a1eabad29c3b390ab',53,'term','service-category',NULL,NULL,NULL,NULL,'Other Services',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-11-26 03:12:33','2024-12-17 00:37:42',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-12-17 07:37:41',NULL,NULL),(111,'https://fe2tech.com/service/cnc-milling-service/','48:1c69cd2c3cad03800291fa8d34ff7383',2619,'post','service',1,0,NULL,NULL,'CNC Milling Service','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://fe2tech.com/wp-content/uploads/2024/11/CNC-Milling.jpg',NULL,'2657','featured-image',NULL,NULL,'https://fe2tech.com/wp-content/uploads/2024/11/CNC-Milling.jpg','2657','featured-image','{\"width\":735,\"height\":400,\"filesize\":53342,\"url\":\"https://fe2tech.com/wp-content/uploads/2024/11/CNC-Milling.jpg\",\"path\":\"C:\\\\fe2tech/wp-content/uploads/2024/11/CNC-Milling.jpg\",\"size\":\"full\",\"id\":2657,\"alt\":\"\",\"pixels\":294000,\"type\":\"image/jpeg\"}',0,4,NULL,'2024-11-26 03:14:08','2025-03-17 02:40:58',1,NULL,NULL,NULL,NULL,0,3,2,'2024-12-17 03:58:57','2024-11-26 03:15:10',0),(112,'https://fe2tech.com/service/cnc-turning-service/','48:1c7c26555fe4434094881d760226a60d',2622,'post','service',1,0,NULL,NULL,'CNC Turning Service','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://fe2tech.com/wp-content/uploads/2024/11/CNC-turning.webp',NULL,'2661','featured-image',NULL,NULL,'https://fe2tech.com/wp-content/uploads/2024/11/CNC-turning.webp','2661','featured-image','{\"width\":574,\"height\":386,\"filesize\":24784,\"url\":\"https://fe2tech.com/wp-content/uploads/2024/11/CNC-turning.webp\",\"path\":\"C:\\\\fe2tech/wp-content/uploads/2024/11/CNC-turning.webp\",\"size\":\"full\",\"id\":2661,\"alt\":\"\",\"pixels\":221564,\"type\":\"image/webp\"}',0,4,NULL,'2024-11-26 03:15:26','2025-03-17 02:40:58',1,NULL,NULL,NULL,NULL,0,3,2,'2024-12-17 03:58:52','2024-11-26 03:16:58',0),(113,'https://fe2tech.com/service/cnc-tool-grinder-service/','53:cfd835978307943a500bcea03b7ced83',2625,'post','service',1,0,NULL,NULL,'CNC Tool Grinder Service','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://fe2tech.com/wp-content/uploads/2024/11/tool-grinding.jpg',NULL,'2655','featured-image',NULL,NULL,'https://fe2tech.com/wp-content/uploads/2024/11/tool-grinding.jpg','2655','featured-image','{\"width\":1600,\"height\":640,\"filesize\":487811,\"url\":\"https://fe2tech.com/wp-content/uploads/2024/11/tool-grinding.jpg\",\"path\":\"C:\\\\fe2tech/wp-content/uploads/2024/11/tool-grinding.jpg\",\"size\":\"full\",\"id\":2655,\"alt\":\"\",\"pixels\":1024000,\"type\":\"image/jpeg\"}',0,4,NULL,'2024-11-26 03:17:26','2024-12-17 08:30:11',1,NULL,NULL,NULL,NULL,0,3,2,'2024-12-17 03:58:48','2024-11-26 03:18:49',0),(114,'https://fe2tech.com/service/sheet-metal-service/','48:c6576ba57aea445f9613ba6611e1b1cf',2628,'post','service',1,0,NULL,NULL,'Sheet Metal Service','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://fe2tech.com/wp-content/uploads/2024/11/sheet-metal.jpg',NULL,'2656','featured-image',NULL,NULL,'https://fe2tech.com/wp-content/uploads/2024/11/sheet-metal.jpg','2656','featured-image','{\"width\":700,\"height\":467,\"filesize\":71775,\"url\":\"https://fe2tech.com/wp-content/uploads/2024/11/sheet-metal.jpg\",\"path\":\"C:\\\\fe2tech/wp-content/uploads/2024/11/sheet-metal.jpg\",\"size\":\"full\",\"id\":2656,\"alt\":\"\",\"pixels\":326900,\"type\":\"image/jpeg\"}',0,4,NULL,'2024-11-26 03:19:15','2024-12-17 08:30:11',1,NULL,NULL,NULL,NULL,0,2,2,'2024-12-17 03:58:44','2024-11-26 03:20:00',0),(115,'https://fe2tech.com/service/welding-service/','44:e4bf900182bc7bf4bc54bc9bc549f60e',2631,'post','service',1,0,NULL,NULL,'Welding Service','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://fe2tech.com/wp-content/uploads/2024/11/Welding.webp',NULL,'2659','featured-image',NULL,NULL,'https://fe2tech.com/wp-content/uploads/2024/11/Welding.webp','2659','featured-image','{\"width\":735,\"height\":469,\"filesize\":400770,\"url\":\"https://fe2tech.com/wp-content/uploads/2024/11/Welding.webp\",\"path\":\"C:\\\\fe2tech/wp-content/uploads/2024/11/Welding.webp\",\"size\":\"full\",\"id\":2659,\"alt\":\"\",\"pixels\":344715,\"type\":\"image/webp\"}',0,2,NULL,'2024-11-26 03:21:31','2024-12-17 06:35:10',1,NULL,NULL,NULL,NULL,0,3,2,'2024-12-17 03:58:40','2024-11-26 03:22:12',0),(116,'https://fe2tech.com/service/edm-grinding-and-wire-cutting-service/','66:9d52fda5247bdd7bdf9ab939de632b28',2634,'post','service',1,0,NULL,NULL,'EDM, Grinding and Wire Cutting Service','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://fe2tech.com/wp-content/uploads/2024/11/Wire-Cut-EDM.webp',NULL,'2660','featured-image',NULL,NULL,'https://fe2tech.com/wp-content/uploads/2024/11/Wire-Cut-EDM.webp','2660','featured-image','{\"width\":600,\"height\":358,\"filesize\":28558,\"url\":\"https://fe2tech.com/wp-content/uploads/2024/11/Wire-Cut-EDM.webp\",\"path\":\"C:\\\\fe2tech/wp-content/uploads/2024/11/Wire-Cut-EDM.webp\",\"size\":\"full\",\"id\":2660,\"alt\":\"\",\"pixels\":214800,\"type\":\"image/webp\"}',0,2,NULL,'2024-11-26 03:23:22','2024-12-17 06:35:10',1,NULL,NULL,NULL,NULL,0,4,2,'2024-12-17 03:58:36','2024-11-26 03:24:12',0),(117,'https://fe2tech.com/service/bolt-production/','44:c6dca5bb61d37eca7641ce5894df81c6',2638,'post','service',1,0,NULL,NULL,'Bolt Production','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://fe2tech.com/wp-content/uploads/2024/11/Bolt.webp',NULL,'2658','featured-image',NULL,NULL,'https://fe2tech.com/wp-content/uploads/2024/11/Bolt.webp','2658','featured-image','{\"width\":500,\"height\":375,\"filesize\":82552,\"url\":\"https://fe2tech.com/wp-content/uploads/2024/11/Bolt.webp\",\"path\":\"C:\\\\fe2tech/wp-content/uploads/2024/11/Bolt.webp\",\"size\":\"full\",\"id\":2658,\"alt\":\"\",\"pixels\":187500,\"type\":\"image/webp\"}',0,2,NULL,'2024-11-26 03:24:39','2024-12-17 06:35:10',1,NULL,NULL,NULL,NULL,0,1,2,'2024-12-17 03:58:32','2024-11-26 03:25:26',0),(118,'https://fe2tech.com/service/other-services/','43:b6caebbd565d0da289d8e70c7d5fc873',2642,'post','service',1,0,NULL,NULL,'Other Services','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://fe2tech.com/wp-content/uploads/2024/11/Other.jpg',NULL,'2654','featured-image',NULL,NULL,'https://fe2tech.com/wp-content/uploads/2024/11/Other.jpg','2654','featured-image','{\"width\":800,\"height\":500,\"filesize\":147904,\"url\":\"https://fe2tech.com/wp-content/uploads/2024/11/Other.jpg\",\"path\":\"C:\\\\fe2tech/wp-content/uploads/2024/11/Other.jpg\",\"size\":\"full\",\"id\":2654,\"alt\":\"\",\"pixels\":400000,\"type\":\"image/jpeg\"}',0,2,NULL,'2024-11-26 03:25:37','2024-12-17 06:35:10',1,NULL,NULL,NULL,NULL,0,1,2,'2024-12-17 03:58:27','2024-11-26 03:26:35',0),(119,'https://fe2tech.com/category/uncategorized-vi/','46:5afefd0d8b1ee376163c9b3a81c05b14',59,'term','category',NULL,NULL,NULL,NULL,'Uncategorized',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-12-17 03:46:28','2024-12-16 20:46:28',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-12-17 03:46:28',NULL,NULL),(120,'https://fe2tech.com/category/uncategorized-ja/','46:c487f166af9963f57157994d0f0dd56d',63,'term','category',NULL,NULL,NULL,NULL,'Uncategorized',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-12-17 03:46:31','2024-12-16 20:46:31',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-12-17 03:46:31',NULL,NULL),(123,'https://fe2tech.com/vi/footer/footer-vi/','40:e66d907adaf3a4f22fff5dc75dd8beb2',2959,'post','footer',1,0,NULL,NULL,'Footer &#8211; vi','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://fe2tech.com/wp-content/uploads/2024/12/logo.jpg',NULL,'2748','first-content-image',NULL,NULL,'https://fe2tech.com/wp-content/uploads/2024/12/logo.jpg','2748','first-content-image',NULL,6,NULL,NULL,'2024-12-17 03:54:46','2025-03-16 20:38:26',1,NULL,NULL,NULL,NULL,0,2,2,'2025-03-17 03:38:23','2024-12-17 03:54:46',0),(124,'https://fe2tech.com/ja/footer/footer-ja/','40:f537730aad255e77fdfc9b3f022a49ec',2961,'post','footer',1,0,NULL,NULL,'Footer &#8211; ja','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://fe2tech.com/wp-content/uploads/2024/12/logo.jpg',NULL,'2748','first-content-image',NULL,NULL,'https://fe2tech.com/wp-content/uploads/2024/12/logo.jpg','2748','first-content-image',NULL,6,NULL,NULL,'2024-12-17 03:55:17','2025-03-16 20:38:56',1,NULL,NULL,NULL,NULL,0,2,2,'2025-03-17 03:38:53','2024-12-17 03:55:22',0),(125,'https://fe2tech.com/vi/trang-chu/','33:2aeaba8b1b0798867778efc27685b8a3',2973,'post','page',1,0,NULL,NULL,'Trang chủ','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://fe2tech.com/wp-content/uploads/2024/11/signature.png',NULL,'2542','first-content-image',NULL,NULL,'https://fe2tech.com/wp-content/uploads/2024/11/signature.png','2542','first-content-image',NULL,9,1,NULL,'2024-12-17 04:27:51','2025-03-16 19:55:44',1,NULL,NULL,NULL,NULL,0,5,2,'2025-03-17 02:55:43','2024-12-17 04:27:51',0),(126,'https://fe2tech.com/ja/%e3%83%9b%e3%83%bc%e3%83%a0/','51:d3461f22958a4098555e52bea244fdb7',2982,'post','page',1,0,NULL,NULL,'ホーム','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://fe2tech.com/wp-content/uploads/2024/11/signature.png',NULL,'2542','first-content-image',NULL,NULL,'https://fe2tech.com/wp-content/uploads/2024/11/signature.png','2542','first-content-image',NULL,9,1,NULL,'2024-12-17 04:46:33','2025-03-16 19:55:54',1,NULL,NULL,NULL,NULL,0,2,2,'2025-03-17 02:55:54','2024-12-17 04:46:33',0),(127,'https://fe2tech.com/vi/dich-vu/','31:e6c76ce86bbb0d53550332209c0732bb',2987,'post','page',1,0,NULL,NULL,'Dịch vụ','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,NULL,'2024-12-17 06:24:08','2024-12-17 08:01:11',1,NULL,NULL,NULL,NULL,0,1,2,'2024-12-17 06:25:18','2024-12-17 06:24:54',0),(128,'https://fe2tech.com/ja/%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/','60:4c063dca94beee71d4e0b183ec097256',2993,'post','page',1,0,NULL,NULL,'サービス','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,NULL,'2024-12-17 06:34:40','2024-12-17 08:02:18',1,NULL,NULL,NULL,NULL,0,1,2,'2024-12-17 06:35:08','2024-12-17 06:34:40',0),(129,'https://fe2tech.com/vi/san-pham/','32:cecce08819ea080cff6b7de0992cd5e0',2998,'post','page',1,0,NULL,NULL,'Sản phẩm','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://fe2tech.com/wp-content/uploads/2025/03/Ab6277516622141b68178f66bebaadd93o.jpg_350x350.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://fe2tech.com/wp-content/uploads/2025/03/Ab6277516622141b68178f66bebaadd93o.jpg_350x350.jpg',NULL,'first-content-image',NULL,98,1,NULL,'2024-12-17 06:35:47','2025-03-16 20:20:12',1,NULL,NULL,NULL,NULL,0,20,2,'2025-03-17 03:20:09','2024-12-17 06:35:47',0),(130,'https://fe2tech.com/ja/%e8%a3%bd%e5%93%81/','42:d7783a2c181f51017652119f9bbe158b',3003,'post','page',1,0,NULL,NULL,'製品','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://fe2tech.com/wp-content/uploads/2025/03/Ab6277516622141b68178f66bebaadd93o.jpg_350x350.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://fe2tech.com/wp-content/uploads/2025/03/Ab6277516622141b68178f66bebaadd93o.jpg_350x350.jpg',NULL,'first-content-image',NULL,98,1,NULL,'2024-12-17 06:38:40','2025-03-16 20:22:01',1,NULL,NULL,NULL,NULL,0,20,2,'2025-03-17 03:21:57','2024-12-17 06:38:40',0),(131,'https://fe2tech.com/vi/doi-ngu-doi-tac/','39:7562ecc719223c5e3f21492ee8a26a42',3008,'post','page',1,0,NULL,NULL,'Đội ngũ &amp; Đối tác','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://fe2tech.com/wp-content/uploads/2024/12/FEHT-logo.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://fe2tech.com/wp-content/uploads/2024/12/FEHT-logo.jpg',NULL,'first-content-image',NULL,0,1,NULL,'2024-12-17 06:41:01','2024-12-17 02:35:48',1,NULL,NULL,NULL,NULL,0,4,2,'2024-12-17 09:35:48','2024-12-17 06:41:01',0),(132,'https://fe2tech.com/ja/%e3%83%81%e3%83%bc%e3%83%a0%e3%81%a8%e3%83%91%e3%83%bc%e3%83%88%e3%83%8a%e3%83%bc/','105:164df9cc89779e1b806f599f6f86fd06',3014,'post','page',1,0,NULL,NULL,'チームとパートナー','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://fe2tech.com/wp-content/uploads/2024/12/FEHT-logo.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://fe2tech.com/wp-content/uploads/2024/12/FEHT-logo.jpg',NULL,'first-content-image',NULL,0,1,NULL,'2024-12-17 06:44:37','2024-12-17 02:37:10',1,NULL,NULL,NULL,NULL,0,4,2,'2024-12-17 09:37:09','2024-12-17 06:44:37',0),(133,'https://fe2tech.com/vi/ve-chung-toi/','36:9385bad50606391a83dcff3868142dbe',3022,'post','page',1,0,NULL,NULL,'Về chúng tôi','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png',NULL,'612','first-content-image',NULL,NULL,'https://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png','612','first-content-image',NULL,1,1,NULL,'2024-12-17 06:47:35','2025-03-16 20:26:07',1,NULL,NULL,NULL,NULL,0,3,2,'2025-03-17 03:26:07','2024-12-17 06:47:35',0),(134,'https://fe2tech.com/ja/%e7%a7%81%e3%81%9f%e3%81%a1%e3%81%ab%e3%81%a4%e3%81%84%e3%81%a6/','87:72e691231ae1d7d9d50f29a14793dab4',3028,'post','page',1,0,NULL,NULL,'私たちについて','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png',NULL,'612','first-content-image',NULL,NULL,'https://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png','612','first-content-image',NULL,1,1,NULL,'2024-12-17 06:54:08','2025-03-16 20:26:14',1,NULL,NULL,NULL,NULL,0,1,2,'2025-03-17 03:26:14','2024-12-17 06:54:07',0),(135,'https://fe2tech.com/vi/lien-he/','31:9bbe03a5aeaf72d4858871f54271b84b',3033,'post','page',1,0,NULL,NULL,'Liên hệ','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://fe2tech.com/wp-content/uploads/2019/11/info-icon-01.png',NULL,NULL,'first-content-image',NULL,NULL,'https://fe2tech.com/wp-content/uploads/2019/11/info-icon-01.png',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-12-17 06:59:19','2024-12-17 00:01:25',1,NULL,NULL,NULL,NULL,0,2,2,'2024-12-17 07:01:22','2024-12-17 06:59:19',0),(136,'https://fe2tech.com/ja/%e9%80%a3%e7%b5%a1%e5%85%88/','51:47c1712b8fe21dc0d7a9eee0f098296b',3038,'post','page',1,0,NULL,NULL,'連絡先','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://fe2tech.com/wp-content/uploads/2019/11/info-icon-01.png',NULL,NULL,'first-content-image',NULL,NULL,'https://fe2tech.com/wp-content/uploads/2019/11/info-icon-01.png',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-12-17 07:01:53','2024-12-17 00:03:21',1,NULL,NULL,NULL,NULL,0,1,2,'2024-12-17 07:03:19','2024-12-17 07:01:53',0),(137,'https://fe2tech.com/vi/service/dich-vu-phay-cnc/','48:7402706c4215c93361b409c5fb898da7',3043,'post','service',1,0,NULL,NULL,'Dịch vụ phay CNC','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://fe2tech.com/wp-content/uploads/2024/11/CNC-Milling.jpg',NULL,'2657','featured-image',NULL,NULL,'https://fe2tech.com/wp-content/uploads/2024/11/CNC-Milling.jpg','2657','featured-image','{\"width\":735,\"height\":400,\"filesize\":53342,\"url\":\"https://fe2tech.com/wp-content/uploads/2024/11/CNC-Milling.jpg\",\"path\":\"C:\\\\fe2tech/wp-content/uploads/2024/11/CNC-Milling.jpg\",\"size\":\"full\",\"id\":2657,\"alt\":\"\",\"pixels\":294000,\"type\":\"image/jpeg\"}',0,2,NULL,'2024-12-17 07:05:51','2024-12-17 08:29:39',1,NULL,NULL,NULL,NULL,0,1,2,'2024-12-17 07:15:38','2024-12-17 07:06:25',0),(138,'https://fe2tech.com/ja/service/nc%e3%83%95%e3%83%a9%e3%82%a4%e3%82%b9%e5%8a%a0%e5%b7%a5%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/','124:292bf21d9196eff58822c6bd6619d375',3045,'post','service',1,0,NULL,NULL,'NCフライス加工サービス','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://fe2tech.com/wp-content/uploads/2024/11/CNC-Milling.jpg',NULL,'2657','featured-image',NULL,NULL,'https://fe2tech.com/wp-content/uploads/2024/11/CNC-Milling.jpg','2657','featured-image','{\"width\":735,\"height\":400,\"filesize\":53342,\"url\":\"https://fe2tech.com/wp-content/uploads/2024/11/CNC-Milling.jpg\",\"path\":\"C:\\\\fe2tech/wp-content/uploads/2024/11/CNC-Milling.jpg\",\"size\":\"full\",\"id\":2657,\"alt\":\"\",\"pixels\":294000,\"type\":\"image/jpeg\"}',0,2,NULL,'2024-12-17 07:07:12','2024-12-17 08:30:11',1,NULL,NULL,NULL,NULL,0,1,2,'2024-12-17 07:15:43','2024-12-17 07:07:25',0),(139,'https://fe2tech.com/vi/service/dich-vu-tien-cnc/','48:fc0854f8cda68afc9a3e5dff9127c525',3047,'post','service',1,0,NULL,NULL,'Dịch vụ tiện CNC','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://fe2tech.com/wp-content/uploads/2024/11/CNC-turning.webp',NULL,'2661','featured-image',NULL,NULL,'https://fe2tech.com/wp-content/uploads/2024/11/CNC-turning.webp','2661','featured-image','{\"width\":574,\"height\":386,\"filesize\":24784,\"url\":\"https://fe2tech.com/wp-content/uploads/2024/11/CNC-turning.webp\",\"path\":\"C:\\\\fe2tech/wp-content/uploads/2024/11/CNC-turning.webp\",\"size\":\"full\",\"id\":2661,\"alt\":\"\",\"pixels\":221564,\"type\":\"image/webp\"}',0,2,NULL,'2024-12-17 07:09:41','2024-12-17 08:29:39',1,NULL,NULL,NULL,NULL,0,1,2,'2024-12-17 07:15:22','2024-12-17 07:10:11',0),(140,'https://fe2tech.com/ja/service/cnc%e6%97%8b%e7%9b%a4%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/','89:ed7ca8d82e6f7d98a61b8b5f2ac61d38',3051,'post','service',1,0,NULL,NULL,'CNC旋盤サービス','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://fe2tech.com/wp-content/uploads/2024/11/CNC-turning.webp',NULL,'2661','featured-image',NULL,NULL,'https://fe2tech.com/wp-content/uploads/2024/11/CNC-turning.webp','2661','featured-image','{\"width\":574,\"height\":386,\"filesize\":24784,\"url\":\"https://fe2tech.com/wp-content/uploads/2024/11/CNC-turning.webp\",\"path\":\"C:\\\\fe2tech/wp-content/uploads/2024/11/CNC-turning.webp\",\"size\":\"full\",\"id\":2661,\"alt\":\"\",\"pixels\":221564,\"type\":\"image/webp\"}',0,2,NULL,'2024-12-17 07:14:39','2024-12-17 08:30:11',1,NULL,NULL,NULL,NULL,0,1,2,'2024-12-17 07:15:04','2024-12-17 07:15:04',0),(141,'https://fe2tech.com/vi/service/dich-vu-mai-dung-cu-cnc/','55:892034f36ed7f6f18b142e720e2a13b5',3053,'post','service',1,0,NULL,NULL,'Dịch vụ mài dụng cụ CNC','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://fe2tech.com/wp-content/uploads/2024/11/tool-grinding.jpg',NULL,'2655','featured-image',NULL,NULL,'https://fe2tech.com/wp-content/uploads/2024/11/tool-grinding.jpg','2655','featured-image','{\"width\":1600,\"height\":640,\"filesize\":487811,\"url\":\"https://fe2tech.com/wp-content/uploads/2024/11/tool-grinding.jpg\",\"path\":\"C:\\\\fe2tech/wp-content/uploads/2024/11/tool-grinding.jpg\",\"size\":\"full\",\"id\":2655,\"alt\":\"\",\"pixels\":1024000,\"type\":\"image/jpeg\"}',0,2,NULL,'2024-12-17 07:16:11','2024-12-17 08:29:39',1,NULL,NULL,NULL,NULL,0,3,2,'2024-12-17 07:20:24','2024-12-17 07:17:42',0),(142,'https://fe2tech.com/ja/service/cnc%e3%83%84%e3%83%bc%e3%83%ab%e3%82%b0%e3%83%a9%e3%82%a4%e3%83%b3%e3%83%80%e3%83%bc%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/','152:325725705c0b1d4d62fcbd31ea237ab5',3055,'post','service',1,0,NULL,NULL,'CNCツールグラインダーサービス','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://fe2tech.com/wp-content/uploads/2024/11/tool-grinding.jpg',NULL,'2655','featured-image',NULL,NULL,'https://fe2tech.com/wp-content/uploads/2024/11/tool-grinding.jpg','2655','featured-image','{\"width\":1600,\"height\":640,\"filesize\":487811,\"url\":\"https://fe2tech.com/wp-content/uploads/2024/11/tool-grinding.jpg\",\"path\":\"C:\\\\fe2tech/wp-content/uploads/2024/11/tool-grinding.jpg\",\"size\":\"full\",\"id\":2655,\"alt\":\"\",\"pixels\":1024000,\"type\":\"image/jpeg\"}',0,2,NULL,'2024-12-17 07:20:40','2024-12-17 08:30:11',1,NULL,NULL,NULL,NULL,0,1,2,'2024-12-17 07:20:53','2024-12-17 07:20:53',0),(143,'https://fe2tech.com/vi/service/dich-vu-gia-cong-kim-loai-tam/','61:e86f48c595bdac1547b97d594bfe6603',3057,'post','service',1,0,NULL,NULL,'Dịch vụ gia công kim loại tấm','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://fe2tech.com/wp-content/uploads/2024/11/sheet-metal.jpg',NULL,'2656','featured-image',NULL,NULL,'https://fe2tech.com/wp-content/uploads/2024/11/sheet-metal.jpg','2656','featured-image','{\"width\":700,\"height\":467,\"filesize\":71775,\"url\":\"https://fe2tech.com/wp-content/uploads/2024/11/sheet-metal.jpg\",\"path\":\"C:\\\\fe2tech/wp-content/uploads/2024/11/sheet-metal.jpg\",\"size\":\"full\",\"id\":2656,\"alt\":\"\",\"pixels\":326900,\"type\":\"image/jpeg\"}',0,2,NULL,'2024-12-17 07:21:59','2025-03-17 02:40:58',1,NULL,NULL,NULL,NULL,0,1,2,'2024-12-17 07:22:23','2024-12-17 07:22:23',0),(144,'https://fe2tech.com/ja/service/%e6%9d%bf%e9%87%91%e5%8a%a0%e5%b7%a5%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/','104:033b1f23e6d09398b9193b9a17e7bd98',3059,'post','service',1,0,NULL,NULL,'板金加工サービス','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://fe2tech.com/wp-content/uploads/2024/11/sheet-metal.jpg',NULL,'2656','featured-image',NULL,NULL,'https://fe2tech.com/wp-content/uploads/2024/11/sheet-metal.jpg','2656','featured-image','{\"width\":700,\"height\":467,\"filesize\":71775,\"url\":\"https://fe2tech.com/wp-content/uploads/2024/11/sheet-metal.jpg\",\"path\":\"C:\\\\fe2tech/wp-content/uploads/2024/11/sheet-metal.jpg\",\"size\":\"full\",\"id\":2656,\"alt\":\"\",\"pixels\":326900,\"type\":\"image/jpeg\"}',0,2,NULL,'2024-12-17 07:22:36','2025-03-17 02:40:58',1,NULL,NULL,NULL,NULL,0,2,2,'2024-12-17 07:22:52','2024-12-17 07:22:45',0),(145,'https://fe2tech.com/vi/service/dich-vu-han/','43:8aa4fc8c703bd5f4e61ca7ff2fa18673',3061,'post','service',1,0,NULL,NULL,'Dịch vụ hàn','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://fe2tech.com/wp-content/uploads/2024/11/Welding.webp',NULL,'2659','featured-image',NULL,NULL,'https://fe2tech.com/wp-content/uploads/2024/11/Welding.webp','2659','featured-image','{\"width\":735,\"height\":469,\"filesize\":400770,\"url\":\"https://fe2tech.com/wp-content/uploads/2024/11/Welding.webp\",\"path\":\"C:\\\\fe2tech/wp-content/uploads/2024/11/Welding.webp\",\"size\":\"full\",\"id\":2659,\"alt\":\"\",\"pixels\":344715,\"type\":\"image/webp\"}',0,NULL,NULL,'2024-12-17 07:30:10','2024-12-17 00:30:41',1,NULL,NULL,NULL,NULL,0,1,2,'2024-12-17 07:30:41','2024-12-17 07:30:41',0),(146,'https://fe2tech.com/ja/service/%e6%ba%b6%e6%8e%a5%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/','86:eb44a381574d4bea4e893a2ecd4b4d63',3063,'post','service',1,0,NULL,NULL,'溶接サービス','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://fe2tech.com/wp-content/uploads/2024/11/Welding.webp',NULL,'2659','featured-image',NULL,NULL,'https://fe2tech.com/wp-content/uploads/2024/11/Welding.webp','2659','featured-image','{\"width\":735,\"height\":469,\"filesize\":400770,\"url\":\"https://fe2tech.com/wp-content/uploads/2024/11/Welding.webp\",\"path\":\"C:\\\\fe2tech/wp-content/uploads/2024/11/Welding.webp\",\"size\":\"full\",\"id\":2659,\"alt\":\"\",\"pixels\":344715,\"type\":\"image/webp\"}',0,NULL,NULL,'2024-12-17 07:30:56','2024-12-17 00:31:28',1,NULL,NULL,NULL,NULL,0,3,2,'2024-12-17 07:31:28','2024-12-17 07:31:20',0),(147,'https://fe2tech.com/vi/service/dich-vu-edm-mai-va-cat-day/','58:0ecf12230755555051cfbaebbad01f97',3066,'post','service',1,0,NULL,NULL,'Dịch vụ EDM, Mài và Cắt dây','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://fe2tech.com/wp-content/uploads/2024/11/Wire-Cut-EDM.webp',NULL,'2660','featured-image',NULL,NULL,'https://fe2tech.com/wp-content/uploads/2024/11/Wire-Cut-EDM.webp','2660','featured-image','{\"width\":600,\"height\":358,\"filesize\":28558,\"url\":\"https://fe2tech.com/wp-content/uploads/2024/11/Wire-Cut-EDM.webp\",\"path\":\"C:\\\\fe2tech/wp-content/uploads/2024/11/Wire-Cut-EDM.webp\",\"size\":\"full\",\"id\":2660,\"alt\":\"\",\"pixels\":214800,\"type\":\"image/webp\"}',0,NULL,NULL,'2024-12-17 07:33:05','2024-12-17 00:33:24',1,NULL,NULL,NULL,NULL,0,1,2,'2024-12-17 07:33:24','2024-12-17 07:33:24',0),(148,'https://fe2tech.com/ja/service/edm%e3%80%81%e7%a0%94%e5%89%8a%e3%80%81%e3%83%af%e3%82%a4%e3%83%a4%e3%83%bc%e3%82%ab%e3%83%83%e3%83%88%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/','170:1d5d92c063c07aa0a76ddcde4b795353',3068,'post','service',1,0,NULL,NULL,'EDM、研削、ワイヤーカットサービス','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://fe2tech.com/wp-content/uploads/2024/11/Wire-Cut-EDM.webp',NULL,'2660','featured-image',NULL,NULL,'https://fe2tech.com/wp-content/uploads/2024/11/Wire-Cut-EDM.webp','2660','featured-image','{\"width\":600,\"height\":358,\"filesize\":28558,\"url\":\"https://fe2tech.com/wp-content/uploads/2024/11/Wire-Cut-EDM.webp\",\"path\":\"C:\\\\fe2tech/wp-content/uploads/2024/11/Wire-Cut-EDM.webp\",\"size\":\"full\",\"id\":2660,\"alt\":\"\",\"pixels\":214800,\"type\":\"image/webp\"}',0,NULL,NULL,'2024-12-17 07:33:38','2024-12-17 00:33:58',1,NULL,NULL,NULL,NULL,0,4,2,'2024-12-17 07:33:58','2024-12-17 07:33:49',0),(149,'https://fe2tech.com/vi/service/san-xuat-bu-long/','48:49d02aea768b8ca91b731d742ea0f742',3070,'post','service',1,0,NULL,NULL,'Sản xuất bu lông','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://fe2tech.com/wp-content/uploads/2024/11/Bolt.webp',NULL,'2658','featured-image',NULL,NULL,'https://fe2tech.com/wp-content/uploads/2024/11/Bolt.webp','2658','featured-image','{\"width\":500,\"height\":375,\"filesize\":82552,\"url\":\"https://fe2tech.com/wp-content/uploads/2024/11/Bolt.webp\",\"path\":\"C:\\\\fe2tech/wp-content/uploads/2024/11/Bolt.webp\",\"size\":\"full\",\"id\":2658,\"alt\":\"\",\"pixels\":187500,\"type\":\"image/webp\"}',0,NULL,NULL,'2024-12-17 07:34:49','2024-12-17 00:35:13',1,NULL,NULL,NULL,NULL,0,1,2,'2024-12-17 07:35:13','2024-12-17 07:35:13',0),(150,'https://fe2tech.com/ja/service/%e3%83%9c%e3%83%ab%e3%83%88%e8%a3%bd%e9%80%a0/','77:5cc82b958e5d58c64befc12a036d7b45',3072,'post','service',1,0,NULL,NULL,'ボルト製造','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://fe2tech.com/wp-content/uploads/2024/11/Bolt.webp',NULL,'2658','featured-image',NULL,NULL,'https://fe2tech.com/wp-content/uploads/2024/11/Bolt.webp','2658','featured-image','{\"width\":500,\"height\":375,\"filesize\":82552,\"url\":\"https://fe2tech.com/wp-content/uploads/2024/11/Bolt.webp\",\"path\":\"C:\\\\fe2tech/wp-content/uploads/2024/11/Bolt.webp\",\"size\":\"full\",\"id\":2658,\"alt\":\"\",\"pixels\":187500,\"type\":\"image/webp\"}',0,NULL,NULL,'2024-12-17 07:35:25','2024-12-17 00:35:36',1,NULL,NULL,NULL,NULL,0,1,2,'2024-12-17 07:35:36','2024-12-17 07:35:36',0),(151,'https://fe2tech.com/vi/service/cac-dich-vu-khac/','48:1f20f18e8a0852675e9aab9559684883',3074,'post','service',1,0,NULL,NULL,'Các dịch vụ khác','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://fe2tech.com/wp-content/uploads/2024/11/Other.jpg',NULL,'2654','featured-image',NULL,NULL,'https://fe2tech.com/wp-content/uploads/2024/11/Other.jpg','2654','featured-image','{\"width\":800,\"height\":500,\"filesize\":147904,\"url\":\"https://fe2tech.com/wp-content/uploads/2024/11/Other.jpg\",\"path\":\"C:\\\\fe2tech/wp-content/uploads/2024/11/Other.jpg\",\"size\":\"full\",\"id\":2654,\"alt\":\"\",\"pixels\":400000,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-12-17 07:36:33','2024-12-17 00:37:03',1,NULL,NULL,NULL,NULL,0,1,2,'2024-12-17 07:37:03','2024-12-17 07:37:03',0),(152,'https://fe2tech.com/ja/service/%e3%81%9d%e3%81%ae%e4%bb%96%e3%81%ae%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/','104:8e0e161caabc6d3c73c726990190de4f',3076,'post','service',1,0,NULL,NULL,'その他のサービス','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://fe2tech.com/wp-content/uploads/2024/11/Other.jpg',NULL,'2654','featured-image',NULL,NULL,'https://fe2tech.com/wp-content/uploads/2024/11/Other.jpg','2654','featured-image','{\"width\":800,\"height\":500,\"filesize\":147904,\"url\":\"https://fe2tech.com/wp-content/uploads/2024/11/Other.jpg\",\"path\":\"C:\\\\fe2tech/wp-content/uploads/2024/11/Other.jpg\",\"size\":\"full\",\"id\":2654,\"alt\":\"\",\"pixels\":400000,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-12-17 07:37:15','2024-12-17 00:37:42',1,NULL,NULL,NULL,NULL,0,1,2,'2024-12-17 07:37:41','2024-12-17 07:37:41',0);
/*!40000 ALTER TABLE `wp_yoast_indexable` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_yoast_indexable_hierarchy`
--

DROP TABLE IF EXISTS `wp_yoast_indexable_hierarchy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_yoast_indexable_hierarchy` (
  `indexable_id` int(11) unsigned NOT NULL,
  `ancestor_id` int(11) unsigned NOT NULL,
  `depth` int(11) unsigned DEFAULT NULL,
  `blog_id` bigint(20) NOT NULL DEFAULT 1,
  PRIMARY KEY (`indexable_id`,`ancestor_id`),
  KEY `indexable_id` (`indexable_id`),
  KEY `ancestor_id` (`ancestor_id`),
  KEY `depth` (`depth`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yoast_indexable_hierarchy`
--

LOCK TABLES `wp_yoast_indexable_hierarchy` WRITE;
/*!40000 ALTER TABLE `wp_yoast_indexable_hierarchy` DISABLE KEYS */;
INSERT INTO `wp_yoast_indexable_hierarchy` VALUES (2,0,0,1),(3,0,0,1),(4,0,0,1),(5,0,0,1),(9,0,0,1),(10,0,0,1),(11,0,0,1),(12,0,0,1),(13,0,0,1),(14,0,0,1),(15,0,0,1),(16,0,0,1),(20,0,0,1),(21,0,0,1),(22,0,0,1),(23,0,0,1),(24,0,0,1),(25,0,0,1),(26,0,0,1),(27,0,0,1),(28,0,0,1),(29,0,0,1),(30,0,0,1),(31,0,0,1),(32,0,0,1),(33,0,0,1),(34,0,0,1),(35,0,0,1),(36,0,0,1),(37,0,0,1),(38,0,0,1),(58,0,0,1),(59,0,0,1),(60,0,0,1),(107,0,0,1),(108,0,0,1),(109,0,0,1),(110,0,0,1),(111,0,0,1),(112,0,0,1),(113,0,0,1),(114,0,0,1),(115,0,0,1),(116,0,0,1),(117,0,0,1),(118,0,0,1),(119,0,0,1),(120,0,0,1),(123,0,0,1),(124,0,0,1),(125,0,0,1),(126,0,0,1),(127,0,0,1),(128,0,0,1),(129,0,0,1),(130,0,0,1),(131,0,0,1),(132,0,0,1),(133,0,0,1),(134,0,0,1),(135,0,0,1),(136,0,0,1),(137,0,0,1),(138,0,0,1),(139,0,0,1),(140,0,0,1),(141,0,0,1),(142,0,0,1),(143,0,0,1),(144,0,0,1),(145,0,0,1),(146,0,0,1),(147,0,0,1),(148,0,0,1),(149,0,0,1),(150,0,0,1),(151,0,0,1),(152,0,0,1);
/*!40000 ALTER TABLE `wp_yoast_indexable_hierarchy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_yoast_migrations`
--

DROP TABLE IF EXISTS `wp_yoast_migrations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_yoast_migrations` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `version` varchar(191) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `wp_yoast_migrations_version` (`version`)
) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yoast_migrations`
--

LOCK TABLES `wp_yoast_migrations` WRITE;
/*!40000 ALTER TABLE `wp_yoast_migrations` DISABLE KEYS */;
INSERT INTO `wp_yoast_migrations` VALUES (1,'20171228151840'),(2,'20171228151841'),(3,'20190529075038'),(4,'20191011111109'),(5,'20200408101900'),(6,'20200420073606'),(7,'20200428123747'),(8,'20200428194858'),(9,'20200429105310'),(10,'20200430075614'),(11,'20200430150130'),(12,'20200507054848'),(13,'20200513133401'),(14,'20200609154515'),(15,'20200616130143'),(16,'20200617122511'),(17,'20200702141921'),(18,'20200728095334'),(19,'20201202144329'),(20,'20201216124002'),(21,'20201216141134'),(22,'20210817092415'),(23,'20211020091404'),(24,'20230417083836');
/*!40000 ALTER TABLE `wp_yoast_migrations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_yoast_primary_term`
--

DROP TABLE IF EXISTS `wp_yoast_primary_term`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_yoast_primary_term` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint(20) DEFAULT NULL,
  `term_id` bigint(20) DEFAULT NULL,
  `taxonomy` varchar(32) NOT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `blog_id` bigint(20) NOT NULL DEFAULT 1,
  PRIMARY KEY (`id`),
  KEY `post_taxonomy` (`post_id`,`taxonomy`),
  KEY `post_term` (`post_id`,`term_id`)
) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yoast_primary_term`
--

LOCK TABLES `wp_yoast_primary_term` WRITE;
/*!40000 ALTER TABLE `wp_yoast_primary_term` DISABLE KEYS */;
INSERT INTO `wp_yoast_primary_term` VALUES (1,2619,50,'service-category','2024-11-26 03:15:10','2024-12-16 20:58:57',1),(2,2622,50,'service-category','2024-11-26 03:16:58','2024-12-16 20:58:52',1),(3,2625,50,'service-category','2024-11-26 03:18:49','2024-12-16 20:58:48',1),(4,2628,47,'service-category','2024-11-26 03:20:00','2024-12-16 20:58:44',1),(5,2631,51,'service-category','2024-11-26 03:22:12','2024-12-16 20:58:40',1),(6,2634,52,'service-category','2024-11-26 03:24:12','2024-12-16 20:58:36',1),(7,2638,52,'service-category','2024-11-26 03:25:26','2024-12-16 20:58:32',1),(8,2642,53,'service-category','2024-11-26 03:26:35','2024-12-16 20:58:27',1),(9,3051,50,'service-category','2024-12-17 07:15:04','2024-12-17 00:15:04',1),(10,3053,50,'service-category','2024-12-17 07:17:42','2024-12-17 00:20:24',1),(11,3055,50,'service-category','2024-12-17 07:20:54','2024-12-17 00:20:54',1),(12,3057,47,'service-category','2024-12-17 07:22:23','2024-12-17 00:22:23',1),(13,3059,47,'service-category','2024-12-17 07:22:53','2024-12-17 00:22:53',1),(14,3061,51,'service-category','2024-12-17 07:30:41','2024-12-17 00:30:41',1),(15,3063,51,'service-category','2024-12-17 07:31:28','2024-12-17 00:31:28',1),(16,3066,52,'service-category','2024-12-17 07:33:24','2024-12-17 00:33:24',1),(17,3068,52,'service-category','2024-12-17 07:33:58','2024-12-17 00:33:58',1),(18,3070,52,'service-category','2024-12-17 07:35:13','2024-12-17 00:35:13',1),(19,3072,52,'service-category','2024-12-17 07:35:36','2024-12-17 00:35:36',1),(20,3074,53,'service-category','2024-12-17 07:37:03','2024-12-17 00:37:03',1),(21,3076,53,'service-category','2024-12-17 07:37:41','2024-12-17 00:37:41',1);
/*!40000 ALTER TABLE `wp_yoast_primary_term` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_yoast_seo_links`
--

DROP TABLE IF EXISTS `wp_yoast_seo_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_yoast_seo_links` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `url` varchar(255) DEFAULT NULL,
  `post_id` bigint(20) unsigned DEFAULT NULL,
  `target_post_id` bigint(20) unsigned DEFAULT NULL,
  `type` varchar(8) DEFAULT NULL,
  `indexable_id` int(11) unsigned DEFAULT NULL,
  `target_indexable_id` int(11) unsigned DEFAULT NULL,
  `height` int(11) unsigned DEFAULT NULL,
  `width` int(11) unsigned DEFAULT NULL,
  `size` int(11) unsigned DEFAULT NULL,
  `language` varchar(32) DEFAULT NULL,
  `region` varchar(32) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `link_direction` (`post_id`,`type`),
  KEY `indexable_link_direction` (`indexable_id`,`type`)
) ENGINE=InnoDB AUTO_INCREMENT=2165 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yoast_seo_links`
--

LOCK TABLES `wp_yoast_seo_links` WRITE;
/*!40000 ALTER TABLE `wp_yoast_seo_links` DISABLE KEYS */;
INSERT INTO `wp_yoast_seo_links` VALUES (1,'https://fe2tech.com/',1772,9,'internal',4,11,NULL,NULL,NULL,NULL,NULL),(2,'https://fe2tech.com/home-1-one-page/',1772,NULL,'internal',4,NULL,NULL,NULL,NULL,NULL,NULL),(3,'https://fe2tech.com/home-2/',1772,NULL,'internal',4,NULL,NULL,NULL,NULL,NULL,NULL),(4,'https://fe2tech.com/home-2-one-page/',1772,NULL,'internal',4,NULL,NULL,NULL,NULL,NULL,NULL),(5,'https://fe2tech.com/home-3/',1772,NULL,'internal',4,NULL,NULL,NULL,NULL,NULL,NULL),(6,'https://fe2tech.com/home-3-one-page/',1772,NULL,'internal',4,NULL,NULL,NULL,NULL,NULL,NULL),(7,'https://fe2tech.com/wp-content/uploads/2019/11/demo1.jpg',1772,1424,'image-in',4,NULL,1024,800,160806,NULL,NULL),(8,'https://fe2tech.com/wp-content/uploads/2019/11/demo2.jpg',1772,1425,'image-in',4,NULL,1024,800,144457,NULL,NULL),(9,'https://fe2tech.com/wp-content/uploads/2019/11/demo3.jpg',1772,1412,'image-in',4,NULL,1024,800,207833,NULL,NULL),(10,'https://fe2tech.com/wp-content/uploads/2022/10/demo4.jpg',1772,1785,'image-in',4,NULL,1024,800,31608,NULL,NULL),(11,'https://fe2tech.com/',799,NULL,'internal',5,38,NULL,NULL,NULL,NULL,NULL),(12,'https://fe2tech.com/',799,NULL,'internal',5,38,NULL,NULL,NULL,NULL,NULL),(14,'https://fe2tech.com/services/',799,2128,'internal',5,16,NULL,NULL,NULL,NULL,NULL),(30,'/services',9,2128,'internal',11,16,NULL,NULL,NULL,NULL,NULL),(36,'https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png',9,1515,'image-in',11,NULL,48,48,4899,NULL,NULL),(37,'https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png',9,1516,'image-in',11,NULL,48,48,3237,NULL,NULL),(38,'https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png',9,1517,'image-in',11,NULL,48,48,3631,NULL,NULL),(40,'https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png',9,2268,'image-in',11,NULL,2000,2000,3108887,NULL,NULL),(42,'https://fe2tech.com/wp-content/uploads/2019/11/info-icon-01.png',24,279,'image-in',12,NULL,65,55,3143,NULL,NULL),(43,'https://fe2tech.com/wp-content/uploads/2019/11/info-icon-02.png',24,280,'image-in',12,NULL,66,66,3260,NULL,NULL),(44,'https://fe2tech.com/wp-content/uploads/2019/11/info-icon-03.png',24,281,'image-in',12,NULL,68,70,3640,NULL,NULL),(45,'https://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png',26,612,'image-in',13,NULL,58,59,3235,NULL,NULL),(46,'https://fe2tech.com/wp-content/uploads/2019/11/icon-box-02.png',26,613,'image-in',13,NULL,58,55,3628,NULL,NULL),(208,'https://fe2tech.com/wp-content/uploads/2024/10/yoshimoto-vietnam.png',28,2486,'image-in',14,NULL,205,246,3253,NULL,NULL),(209,'https://fe2tech.com/wp-content/uploads/2024/10/kim-long-motors.png',28,2485,'image-in',14,NULL,1586,1586,582225,NULL,NULL),(210,'https://fe2tech.com/wp-content/uploads/2024/10/samsung.jpg',28,2484,'image-in',14,NULL,232,697,19493,NULL,NULL),(211,'https://fe2tech.com/wp-content/uploads/2024/10/komatsu-kogyo.jpg',28,2483,'image-in',14,NULL,900,900,44210,NULL,NULL),(212,'https://fe2tech.com/wp-content/uploads/2024/10/yuwa-engineering.jpg',28,2482,'image-in',14,NULL,256,256,13462,NULL,NULL),(214,'https://kimlongmotor.com.vn/',28,NULL,'external',14,NULL,NULL,NULL,NULL,NULL,NULL),(215,'https://www.samsung.com/vn/',28,NULL,'external',14,NULL,NULL,NULL,NULL,NULL,NULL),(216,'https://komaz.co.jp/english/',28,NULL,'external',14,NULL,NULL,NULL,NULL,NULL,NULL),(217,'https://www.yoshimoto-sangyo.co.jp/vn/',28,NULL,'external',14,NULL,NULL,NULL,NULL,NULL,NULL),(218,'https://fe2tech.com/wp-content/uploads/2024/10/BROCHURE.pdf',26,NULL,'internal',13,NULL,NULL,NULL,NULL,NULL,NULL),(219,'https://fe2tech.com/wp-content/uploads/2024/10/2218231.webp',26,2503,'image-in',13,NULL,450,338,10226,NULL,NULL),(220,'https://fe2tech.com/wp-content/uploads/2024/11/signature1.png',26,2538,'image-in',13,NULL,55,111,885,NULL,NULL),(221,'http://fe2tech.com/',799,NULL,'internal',5,38,NULL,NULL,NULL,NULL,NULL),(222,'https://fe2tech.com/wp-content/uploads/2024/11/signature.png',9,2542,'image-in',11,NULL,75,150,1031,NULL,NULL),(231,'https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg',9,2559,'image-in',11,NULL,1026,1280,209214,NULL,NULL),(232,'https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg',9,2571,'image-in',11,NULL,400,600,42921,NULL,NULL),(246,'https://fe2tech.com/service/sheet-metal-service/',9,2628,'internal',11,114,NULL,NULL,NULL,NULL,NULL),(247,'https://fe2tech.com/service/sheet-metal-service/',9,2628,'internal',11,114,NULL,NULL,NULL,NULL,NULL),(248,'https://fe2tech.com/service/other-services/',2128,2642,'internal',16,118,NULL,NULL,NULL,NULL,NULL),(249,'https://fe2tech.com/service/other-services/',2128,2642,'internal',16,118,NULL,NULL,NULL,NULL,NULL),(250,'https://fe2tech.com/service/bolt-production/',2128,2638,'internal',16,117,NULL,NULL,NULL,NULL,NULL),(251,'https://fe2tech.com/service/bolt-production/',2128,2638,'internal',16,117,NULL,NULL,NULL,NULL,NULL),(252,'https://fe2tech.com/service/edm-grinding-and-wire-cutting-service/',2128,2634,'internal',16,116,NULL,NULL,NULL,NULL,NULL),(253,'https://fe2tech.com/service/edm-grinding-and-wire-cutting-service/',2128,2634,'internal',16,116,NULL,NULL,NULL,NULL,NULL),(254,'https://fe2tech.com/service/welding-service/',2128,2631,'internal',16,115,NULL,NULL,NULL,NULL,NULL),(255,'https://fe2tech.com/service/welding-service/',2128,2631,'internal',16,115,NULL,NULL,NULL,NULL,NULL),(256,'https://fe2tech.com/service/sheet-metal-service/',2128,2628,'internal',16,114,NULL,NULL,NULL,NULL,NULL),(257,'https://fe2tech.com/service/sheet-metal-service/',2128,2628,'internal',16,114,NULL,NULL,NULL,NULL,NULL),(258,'https://fe2tech.com/service/cnc-tool-grinder-service/',2128,2625,'internal',16,113,NULL,NULL,NULL,NULL,NULL),(259,'https://fe2tech.com/service/cnc-tool-grinder-service/',2128,2625,'internal',16,113,NULL,NULL,NULL,NULL,NULL),(260,'https://fe2tech.com/service/cnc-turning-service/',2128,2622,'internal',16,112,NULL,NULL,NULL,NULL,NULL),(261,'https://fe2tech.com/service/cnc-turning-service/',2128,2622,'internal',16,112,NULL,NULL,NULL,NULL,NULL),(262,'https://fe2tech.com/service/cnc-milling-service/',2128,2619,'internal',16,111,NULL,NULL,NULL,NULL,NULL),(263,'https://fe2tech.com/service/cnc-milling-service/',2128,2619,'internal',16,111,NULL,NULL,NULL,NULL,NULL),(307,'https://fe2tech.com/wp-content/uploads/2024/11/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg',2126,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(308,'https://fe2tech.com/wp-content/uploads/2024/11/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg',2126,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(309,'https://fe2tech.com/wp-content/uploads/2024/11/z6069735059162_053b364ab761dc5a44279faf64395324.jpg',2126,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(310,'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg',2126,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(311,'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg',2126,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(312,'https://fe2tech.com/wp-content/uploads/2024/11/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg',2126,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(313,'https://fe2tech.com/wp-content/uploads/2024/11/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg',2126,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(327,'https://fe2tech.com/wp-content/uploads/2024/11/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg',2126,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(328,'https://fe2tech.com/wp-content/uploads/2024/11/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg',2126,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(329,'https://fe2tech.com/wp-content/uploads/2024/11/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg',2126,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(330,'https://fe2tech.com/wp-content/uploads/2024/11/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg',2126,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(331,'https://fe2tech.com/wp-content/uploads/2024/11/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg',2126,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(375,'https://fe2tech.com/wp-content/uploads/2024/11/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg',2126,2710,'image-in',15,NULL,326,361,8614,NULL,NULL),(376,'https://fe2tech.com/wp-content/uploads/2024/11/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg',2126,2711,'image-in',15,NULL,500,500,16590,NULL,NULL),(377,'https://fe2tech.com/wp-content/uploads/2024/11/z6069735059162_053b364ab761dc5a44279faf64395324.jpg',2126,2712,'image-in',15,NULL,1280,598,56125,NULL,NULL),(378,'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg',2126,2713,'image-in',15,NULL,225,225,3629,NULL,NULL),(379,'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg',2126,2714,'image-in',15,NULL,440,512,19163,NULL,NULL),(380,'https://fe2tech.com/wp-content/uploads/2024/11/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg',2126,2715,'image-in',15,NULL,584,684,48878,NULL,NULL),(381,'https://fe2tech.com/wp-content/uploads/2024/11/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg',2126,2716,'image-in',15,NULL,1280,960,141451,NULL,NULL),(395,'https://fe2tech.com/wp-content/uploads/2024/11/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg',2126,2730,'image-in',15,NULL,2560,1920,696354,NULL,NULL),(396,'https://fe2tech.com/wp-content/uploads/2024/11/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg',2126,2731,'image-in',15,NULL,2560,1920,963349,NULL,NULL),(397,'https://fe2tech.com/wp-content/uploads/2024/11/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg',2126,2732,'image-in',15,NULL,1280,960,119516,NULL,NULL),(398,'https://fe2tech.com/wp-content/uploads/2024/11/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg',2126,2733,'image-in',15,NULL,1280,960,421726,NULL,NULL),(399,'https://fe2tech.com/wp-content/uploads/2024/11/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg',2126,2734,'image-in',15,NULL,2560,1920,801873,NULL,NULL),(414,'https://fe2tech.com/service/cnc-tool-grinder-service/',9,2625,'internal',11,113,NULL,NULL,NULL,NULL,NULL),(415,'https://fe2tech.com/service/cnc-tool-grinder-service/',9,2625,'internal',11,113,NULL,NULL,NULL,NULL,NULL),(416,'https://fe2tech.com/product/',799,2126,'internal',5,15,NULL,NULL,NULL,NULL,NULL),(418,'https://fe2tech.com/wp-content/uploads/2024/12/logo.jpg',799,2748,'image-in',5,NULL,597,597,64452,NULL,NULL),(424,'https://fe2tech.com/wp-content/uploads/2024/11/z4379673923151_1f10bec1ef168974349f66b16772c543.jpg',2619,2820,'image-in',111,NULL,960,1280,195265,NULL,NULL),(425,'https://fe2tech.com/wp-content/uploads/2024/11/z5997919286088_1aafc52570d9ee521cb7325aaa3efbbb.jpg',2619,2821,'image-in',111,NULL,1884,870,189214,NULL,NULL),(426,'https://fe2tech.com/wp-content/uploads/2024/11/z6112022581961_f2a47cd330f690d0a726b0888ff80ab1.jpg',2619,2822,'image-in',111,NULL,1280,591,228872,NULL,NULL),(427,'https://fe2tech.com/wp-content/uploads/2024/11/z6112022572357_0cdb065792788d3493b2e389df79a5e2.jpg',2619,2823,'image-in',111,NULL,1280,960,421726,NULL,NULL),(428,'https://fe2tech.com/wp-content/uploads/2024/11/z6112022611669_d154017fd0d3c02db6be468c7db9fa32.jpg',2619,2824,'image-in',111,NULL,1280,960,361511,NULL,NULL),(429,'https://fe2tech.com/wp-content/uploads/2024/11/z6112035366910_4defd4ad74170bea5d4fa69518dafb6d.jpg',2619,2825,'image-in',111,NULL,1280,960,406522,NULL,NULL),(430,'https://fe2tech.com/wp-content/uploads/2024/11/z6112035331028_b1fcc3e9f1979a96aaebf343697989b4.jpg',2619,2826,'image-in',111,NULL,960,1280,239667,NULL,NULL),(431,'https://fe2tech.com/wp-content/uploads/2024/11/z6112035303451_55cd6bcbf16c201a507ca6ac10623d02.jpg',2619,2827,'image-in',111,NULL,960,1280,119115,NULL,NULL),(432,'https://fe2tech.com/wp-content/uploads/2024/11/z6112035333555_19b4ef8a09ed63f106da162eac3d9775.jpg',2619,2828,'image-in',111,NULL,960,1280,270868,NULL,NULL),(433,'https://fe2tech.com/wp-content/uploads/2024/11/z6112022609645_43af0256c23b3f39325ac10fe40d3200.jpg',2619,2829,'image-in',111,NULL,1280,960,395859,NULL,NULL),(434,'https://fe2tech.com/wp-content/uploads/2024/11/z6112035380871_0810f1b5bcdd3396a375bf5a785686ae.jpg',2619,2830,'image-in',111,NULL,961,1281,479509,NULL,NULL),(435,'https://fe2tech.com/wp-content/uploads/2024/11/z6112143350420_5fdf5495fc11f668a8b6e8b865a0670a.jpg',2619,2831,'image-in',111,NULL,960,1280,213746,NULL,NULL),(436,'https://fe2tech.com/wp-content/uploads/2024/11/z6112159599274_ed84aaa8ae44eb900b332183d18d35ff.jpg',2619,2832,'image-in',111,NULL,960,1280,300039,NULL,NULL),(437,'https://fe2tech.com/wp-content/uploads/2024/11/z6112523290035_3b7a728aff36d17b39821c04b01ee4d5.jpg',2622,2844,'image-in',112,NULL,1280,960,408201,NULL,NULL),(438,'https://fe2tech.com/wp-content/uploads/2024/11/z6112523303443_aeb69e713b0de04bc8b594cb00fb49ca.jpg',2622,2845,'image-in',112,NULL,1280,960,413144,NULL,NULL),(439,'https://fe2tech.com/wp-content/uploads/2024/11/z6112035284762_1f2181b896dc72283dffd21ff2accf18.jpg',2622,2846,'image-in',112,NULL,960,1280,222141,NULL,NULL),(440,'https://fe2tech.com/wp-content/uploads/2024/11/z6112035279331_ec2e9746f1d2b6055f9d822183a20b7b.jpg',2622,2847,'image-in',112,NULL,960,1280,227815,NULL,NULL),(441,'https://fe2tech.com/wp-content/uploads/2024/11/z6112035401524_aa7e2e59cf891c7dd20122738c01da99.jpg',2622,2848,'image-in',112,NULL,1280,960,205580,NULL,NULL),(442,'https://fe2tech.com/wp-content/uploads/2024/11/z6112035395698_a7f89619dfa324b6009e13e700d16a52.jpg',2622,2849,'image-in',112,NULL,1280,960,283212,NULL,NULL),(443,'https://fe2tech.com/wp-content/uploads/2024/11/z6112035405011_b0e4efc850356273be1ea0ebf41973d5.jpg',2622,2850,'image-in',112,NULL,591,1280,248655,NULL,NULL),(444,'https://fe2tech.com/wp-content/uploads/2024/11/z6112143335944_8a90c104b6e5a3531a1b8d7a439e6db3.jpg',2622,2851,'image-in',112,NULL,960,1280,228635,NULL,NULL),(445,'https://fe2tech.com/wp-content/uploads/2024/11/z6112143337763_e6237e74ed00be98c9396eb0b6012587.jpg',2622,2852,'image-in',112,NULL,960,1280,258126,NULL,NULL),(446,'https://fe2tech.com/wp-content/uploads/2024/11/z6112523246386_fb69855463997d37d3a5b9189e8633a5.jpg',2622,2853,'image-in',112,NULL,1276,956,450859,NULL,NULL),(447,'https://fe2tech.com/wp-content/uploads/2024/11/z6112523253089_bd1c2eefa8e745863c395bcdd175f37c.jpg',2622,2854,'image-in',112,NULL,591,1280,211879,NULL,NULL),(448,'https://fe2tech.com/wp-content/uploads/2024/11/z6112523265271_a713cd9cae68eb5e8623d240ee9c0f46.jpg',2622,2855,'image-in',112,NULL,1280,960,439831,NULL,NULL),(449,'https://fe2tech.com/wp-content/uploads/2024/11/z6112523276603_ec2b0734a46271e77485348ecdebe9a5.jpg',2622,2856,'image-in',112,NULL,960,1280,308021,NULL,NULL),(468,'https://fe2tech.com/wp-content/uploads/2024/11/z4749871034728_13d43ad63eed2b6e7e1496638d7853af.jpg',2628,2878,'image-in',114,NULL,1926,2568,1000505,NULL,NULL),(469,'https://fe2tech.com/wp-content/uploads/2024/11/z4749871031095_9182ad19e7ac8defae8c32b8cc44b440.jpg',2628,2879,'image-in',114,NULL,1926,2568,755277,NULL,NULL),(470,'https://fe2tech.com/wp-content/uploads/2024/11/z4749871031211_ed4fe9d663e0c07fddaaef221a1144c7.jpg',2628,2880,'image-in',114,NULL,1926,2568,677477,NULL,NULL),(471,'https://fe2tech.com/wp-content/uploads/2024/11/z4614273923773_699996016c1c52f0895299d5358fe8a6.jpg',2628,2881,'image-in',114,NULL,1276,956,211280,NULL,NULL),(472,'https://fe2tech.com/wp-content/uploads/2024/11/z4614243915927_45cd79faef986c5ca9f1ed80434ca840.jpg',2628,2882,'image-in',114,NULL,1276,956,152156,NULL,NULL),(473,'https://fe2tech.com/wp-content/uploads/2024/11/z4859515672356_2e4104881b39c559fe9d687370a67394.jpg',2628,2883,'image-in',114,NULL,946,2048,487126,NULL,NULL),(474,'https://fe2tech.com/wp-content/uploads/2024/11/z5095181853127_bdd8a417c860e722ad4f5e79f91dea8f.jpg',2628,2884,'image-in',114,NULL,960,1280,255290,NULL,NULL),(475,'https://fe2tech.com/wp-content/uploads/2024/11/z5095181851706_d23ac9a42e1be2ea98d323da1f663eaf.jpg',2628,2885,'image-in',114,NULL,960,1280,278015,NULL,NULL),(476,'https://fe2tech.com/wp-content/uploads/2024/11/z6112475603193_4db6faf7d997e4dfc5f44d0ee583aadf.jpg',2634,2858,'image-in',116,NULL,1280,960,343846,NULL,NULL),(477,'https://fe2tech.com/wp-content/uploads/2024/11/z6112475604993_b73f539ad31fe52fc630284c8d45186a.jpg',2634,2859,'image-in',116,NULL,1280,960,372398,NULL,NULL),(478,'https://fe2tech.com/wp-content/uploads/2024/11/z6112475612691_cce8a7d594d6f4dcbe56f5186a04fefb.jpg',2634,2860,'image-in',116,NULL,1280,960,336288,NULL,NULL),(479,'https://fe2tech.com/wp-content/uploads/2024/11/z6112475615814_eaf58890986bbd9b960debe8d62378b9.jpg',2634,2861,'image-in',116,NULL,1280,960,388507,NULL,NULL),(480,'https://fe2tech.com/wp-content/uploads/2024/11/z6112398373909_156bfb41f9711a15035cfede452ce1a9.jpg',2634,2862,'image-in',116,NULL,720,960,119874,NULL,NULL),(481,'https://fe2tech.com/wp-content/uploads/2024/11/z6112398387244_688f2cffa04694e309441b36b11b142f.jpg',2634,2863,'image-in',116,NULL,450,600,76048,NULL,NULL),(482,'https://fe2tech.com/wp-content/uploads/2024/11/z6112398406318_cba797f1e93e87ade947c770d0d40a8f.jpg',2634,2864,'image-in',116,NULL,720,960,163016,NULL,NULL),(483,'https://fe2tech.com/wp-content/uploads/2024/11/z6112398417726_5127342a763e9e24abc186f97a44aff8.jpg',2634,2865,'image-in',116,NULL,720,960,106367,NULL,NULL),(484,'https://fe2tech.com/wp-content/uploads/2024/11/z6112399243827_06cc313a2878998df579b1c3dcedc86d.jpg',2634,2866,'image-in',116,NULL,960,451,117252,NULL,NULL),(485,'https://fe2tech.com/wp-content/uploads/2024/11/z6112402158092_30b348ffeb1bd490d6abf2ba9eb85786.jpg',2634,2867,'image-in',116,NULL,1280,960,225688,NULL,NULL),(486,'https://fe2tech.com/wp-content/uploads/2024/11/z6112402161733_fb456855a646106f5d0896b14dc1774a.jpg',2634,2868,'image-in',116,NULL,609,1280,118804,NULL,NULL),(487,'https://fe2tech.com/wp-content/uploads/2024/11/z6112405304306_a9b1bb837aea79fbe537c183eb90c6c1.jpg',2634,2869,'image-in',116,NULL,591,1280,196809,NULL,NULL),(488,'https://fe2tech.com/wp-content/uploads/2024/11/z6112407952259_47d9353a1faa9e7f704c496b431fc2e8.jpg',2634,2870,'image-in',116,NULL,2560,1920,1842842,NULL,NULL),(489,'https://fe2tech.com/wp-content/uploads/2024/11/z6112407943622_643893c3e779b10c7addfe792dde6674.jpg',2634,2871,'image-in',116,NULL,2560,1920,1148105,NULL,NULL),(490,'https://fe2tech.com/wp-content/uploads/2024/11/z6112407932531_75c831c196d633f15a7d2ac8ca23dd73.jpg',2634,2872,'image-in',116,NULL,2560,1920,1231555,NULL,NULL),(491,'https://fe2tech.com/wp-content/uploads/2024/11/z6112475733731_0f87c5cb35371e36f87164b091dee9e7.jpg',2634,2873,'image-in',116,NULL,1280,960,268312,NULL,NULL),(492,'https://fe2tech.com/wp-content/uploads/2024/11/z6112475735545_8ad6ec49c1c9ca3aa9ad469ee5e61195.jpg',2634,2874,'image-in',116,NULL,1280,960,242936,NULL,NULL),(493,'https://fe2tech.com/wp-content/uploads/2024/11/z6112475588456_c7783008f04cb1da5c4706aaf8251962.jpg',2634,2875,'image-in',116,NULL,1280,960,247534,NULL,NULL),(494,'https://fe2tech.com/wp-content/uploads/2024/11/z6112342749062_a373f44d190f5f95bac710bb2609c8dc.jpg',2625,2889,'image-in',113,NULL,1280,960,157993,NULL,NULL),(495,'https://fe2tech.com/wp-content/uploads/2024/11/z6112342752051_e8e5731247c67e8d13ba9032e0df2071.jpg',2625,2890,'image-in',113,NULL,1280,960,181469,NULL,NULL),(496,'https://fe2tech.com/wp-content/uploads/2024/11/z6112342758960_0cf70e0e2fc3c20f1fcdfa00de30734e.jpg',2625,2891,'image-in',113,NULL,1280,960,223443,NULL,NULL),(497,'https://fe2tech.com/wp-content/uploads/2024/11/z6112342779226_b9935186416483d88d8d4a3741c445ac.jpg',2625,2892,'image-in',113,NULL,960,1280,204534,NULL,NULL),(498,'https://fe2tech.com/wp-content/uploads/2024/11/z6112343562589_0c62c0c2a11f68e02e7302f2022d802f.jpg',2625,2893,'image-in',113,NULL,1280,960,193011,NULL,NULL),(499,'https://fe2tech.com/wp-content/uploads/2024/11/z6112343020134_4e3fd602c682b52d16603b05d64b5b3b.jpg',2625,2894,'image-in',113,NULL,1280,960,187389,NULL,NULL),(500,'https://fe2tech.com/wp-content/uploads/2024/11/z6112343022575_b75ed6f8141de2096bd693992964bc07.jpg',2625,2895,'image-in',113,NULL,1280,960,190035,NULL,NULL),(501,'https://fe2tech.com/wp-content/uploads/2024/11/z6112343024138_c84a3e4bb6f5d346d7a6e09e56086f61.jpg',2625,2896,'image-in',113,NULL,1280,583,114773,NULL,NULL),(502,'https://fe2tech.com/wp-content/uploads/2024/11/z6112343028537_b1ff9fb76f888c3ed07f01643f0020f0.jpg',2625,2897,'image-in',113,NULL,1280,960,230642,NULL,NULL),(503,'https://fe2tech.com/wp-content/uploads/2024/11/z6112160416378_bce4411fe74027d63005630fc7884a80.jpg',2625,2898,'image-in',113,NULL,1280,598,56125,NULL,NULL),(504,'https://fe2tech.com/wp-content/uploads/2024/11/z6112161045939_2fab496392927de92680189440d9df11.jpg',2625,2899,'image-in',113,NULL,2560,1920,380100,NULL,NULL),(505,'https://fe2tech.com/wp-content/uploads/2024/11/z6112162162899_9fa7af3084979b141c9a5af02bd64b8f.jpg',2625,2900,'image-in',113,NULL,2048,1536,293530,NULL,NULL),(506,'https://fe2tech.com/wp-content/uploads/2024/11/z6112162913774_3cf6b72cb16904b5c0aa22911ad9062c.jpg',2625,2901,'image-in',113,NULL,1536,2048,893662,NULL,NULL),(507,'https://fe2tech.com/wp-content/uploads/2024/11/z6112380533580_58467dd3a6c609d250f917b7cb523083.jpg',2631,2903,'image-in',115,NULL,2560,1152,357596,NULL,NULL),(508,'https://fe2tech.com/wp-content/uploads/2024/11/z6112380547520_189c3d8c494143167c5bea938b7789c8.jpg',2631,2904,'image-in',115,NULL,2560,1152,268426,NULL,NULL),(509,'https://fe2tech.com/wp-content/uploads/2024/11/z6112380509099_8e38c91b9a664647d606ed55ecccc8ae.jpg',2631,2905,'image-in',115,NULL,2560,1152,390023,NULL,NULL),(510,'https://fe2tech.com/wp-content/uploads/2024/11/z4749871065923_4d7a315a6e76ccde22ddab12dbdcd6c3.jpg',2631,2906,'image-in',115,NULL,1926,2568,725062,NULL,NULL),(511,'https://fe2tech.com/wp-content/uploads/2024/11/z4749871059944_22ebc1e4e9fef7e1a4c18a87b17ad83f.jpg',2631,2907,'image-in',115,NULL,1926,2568,955700,NULL,NULL),(512,'https://fe2tech.com/wp-content/uploads/2024/11/z4749871062649_2ef68ba42152c462b7730e250fa0695b.jpg',2631,2908,'image-in',115,NULL,1926,2568,812771,NULL,NULL),(513,'https://fe2tech.com/wp-content/uploads/2024/11/z6112380520686_e42a34abefc41f7baa77f40a51e11e10.jpg',2631,2909,'image-in',115,NULL,2560,1152,525750,NULL,NULL),(514,'https://fe2tech.com/wp-content/uploads/2024/11/z6112380501656_5b9317f1571553500813fa23f5ffd678.jpg',2631,2910,'image-in',115,NULL,2560,1152,333028,NULL,NULL),(515,'https://fe2tech.com/wp-content/uploads/2024/11/z6112380524857_d617d3c8ff36c93a8360aeb9239dc924.jpg',2631,2911,'image-in',115,NULL,1152,2560,511319,NULL,NULL),(516,'https://fe2tech.com/wp-content/uploads/2024/11/z6112427132452_1dc48d6b077820afa8c47b96d3918f22.jpg',2638,2915,'image-in',117,NULL,1280,960,647025,NULL,NULL),(517,'https://fe2tech.com/wp-content/uploads/2024/11/z6112427136415_a92631bc5fc9cba8b18696aacf6afcb5.jpg',2638,2916,'image-in',117,NULL,1280,590,75631,NULL,NULL),(518,'https://fe2tech.com/wp-content/uploads/2024/11/z6112427143608_0e611231c1efc187f3162f79bf802d9e.jpg',2638,2917,'image-in',117,NULL,1280,590,122633,NULL,NULL),(519,'https://fe2tech.com/wp-content/uploads/2024/11/z6112427145342_1981e17957820257bc6cc69dca8d1a6a.jpg',2638,2918,'image-in',117,NULL,1280,590,72056,NULL,NULL),(520,'https://fe2tech.com/wp-content/uploads/2024/11/z6112431685389_a7fb16bd81f123c2bfc6a16da53debf2.jpg',2638,2919,'image-in',117,NULL,1280,960,121416,NULL,NULL),(521,'https://fe2tech.com/wp-content/uploads/2024/11/z6112431686395_bfab2b01f79ca6c359bec18f3bbadd26.jpg',2638,2920,'image-in',117,NULL,592,1280,342196,NULL,NULL),(522,'https://fe2tech.com/wp-content/uploads/2024/11/z6112035271011_4c2ce6e425aafedb041eb23967031655.jpg',2638,2921,'image-in',117,NULL,1280,960,320407,NULL,NULL),(523,'https://fe2tech.com/wp-content/uploads/2024/11/z6112427126027_f0c082273a59f666b09963ae9bbe5130.jpg',2638,2922,'image-in',117,NULL,1280,960,171408,NULL,NULL),(524,'https://fe2tech.com/wp-content/uploads/2024/11/z6112427126859_88eeb6c98a738fc61976f7654b6d11a9.jpg',2638,2923,'image-in',117,NULL,1280,960,183446,NULL,NULL),(525,'https://fe2tech.com/wp-content/uploads/2024/11/z6112427127062_0723f7644f5d182c87b7d93725c07ce0.jpg',2638,2924,'image-in',117,NULL,1280,960,242066,NULL,NULL),(526,'https://fe2tech.com/wp-content/uploads/2024/11/z5960268346049_d526596f8ddfc4db5149cdf4c2a86994.jpg',2642,2927,'image-in',118,NULL,2560,1152,352927,NULL,NULL),(527,'https://fe2tech.com/wp-content/uploads/2024/11/z6112404623542_5b0849b2bcc4cd3b845977435309590a.jpg',2642,2928,'image-in',118,NULL,1280,960,288864,NULL,NULL),(528,'https://fe2tech.com/wp-content/uploads/2024/11/z4585711522486_378e8c68f46ae66fae3a9ecca6d6e086.jpg',2642,2929,'image-in',118,NULL,2048,946,425586,NULL,NULL),(529,'https://fe2tech.com/wp-content/uploads/2024/11/z4449983141239_d83dcc0273bcc1b41d2586ff272b1265.jpg',2642,2930,'image-in',118,NULL,1280,960,284571,NULL,NULL),(530,'https://fe2tech.com/wp-content/uploads/2024/11/z4584726243432_c37cf14cc34559d45891cddf89e5daba.jpg',2642,2931,'image-in',118,NULL,946,2048,494597,NULL,NULL),(531,'https://fe2tech.com/wp-content/uploads/2024/11/z5953231842216_872f5a7181f5ce3d18a4b1eebe17896c.jpg',2642,2932,'image-in',118,NULL,2560,1311,234619,NULL,NULL),(533,'http://fe2tech.com/',2961,NULL,'internal',124,38,NULL,NULL,NULL,NULL,NULL),(539,'https://fe2tech.com/wp-content/uploads/2024/12/logo.jpg',2961,2748,'image-in',124,NULL,597,597,64452,NULL,NULL),(566,'/services',2973,2128,'internal',125,16,NULL,NULL,NULL,NULL,NULL),(567,'https://fe2tech.com/wp-content/uploads/2024/11/signature.png',2973,2542,'image-in',125,NULL,75,150,1031,NULL,NULL),(568,'https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png',2973,1515,'image-in',125,NULL,48,48,4899,NULL,NULL),(569,'https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png',2973,1516,'image-in',125,NULL,48,48,3237,NULL,NULL),(570,'https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png',2973,1517,'image-in',125,NULL,48,48,3631,NULL,NULL),(571,'https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg',2973,2571,'image-in',125,NULL,400,600,42921,NULL,NULL),(572,'https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png',2973,2268,'image-in',125,NULL,2000,2000,3108887,NULL,NULL),(573,'https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg',2973,2559,'image-in',125,NULL,1026,1280,209214,NULL,NULL),(615,'/services',2982,2128,'internal',126,16,NULL,NULL,NULL,NULL,NULL),(616,'https://fe2tech.com/wp-content/uploads/2024/11/signature.png',2982,2542,'image-in',126,NULL,75,150,1031,NULL,NULL),(617,'https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-01.png',2982,1515,'image-in',126,NULL,48,48,4899,NULL,NULL),(618,'https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-02.png',2982,1516,'image-in',126,NULL,48,48,3237,NULL,NULL),(619,'https://fe2tech.com/wp-content/uploads/2019/12/counter-icon-03.png',2982,1517,'image-in',126,NULL,48,48,3631,NULL,NULL),(620,'https://fe2tech.com/wp-content/uploads/2024/11/huong-dan-tu-order-alibaba-chi-t.jpg',2982,2571,'image-in',126,NULL,400,600,42921,NULL,NULL),(621,'https://fe2tech.com/wp-content/uploads/2024/10/rb_51232.png',2982,2268,'image-in',126,NULL,2000,2000,3108887,NULL,NULL),(622,'https://fe2tech.com/wp-content/uploads/2024/11/f7bd4031-52df-4a12-b04c-ff5602d3b72a.jpg',2982,2559,'image-in',126,NULL,1026,1280,209214,NULL,NULL),(881,'https://fe2tech.com/wp-content/uploads/2024/11/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(882,'https://fe2tech.com/wp-content/uploads/2024/11/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(883,'https://fe2tech.com/wp-content/uploads/2024/11/z6069735059162_053b364ab761dc5a44279faf64395324.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(884,'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(885,'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(886,'https://fe2tech.com/wp-content/uploads/2024/11/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(887,'https://fe2tech.com/wp-content/uploads/2024/11/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(901,'https://fe2tech.com/wp-content/uploads/2024/11/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(902,'https://fe2tech.com/wp-content/uploads/2024/11/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(903,'https://fe2tech.com/wp-content/uploads/2024/11/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(904,'https://fe2tech.com/wp-content/uploads/2024/11/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(905,'https://fe2tech.com/wp-content/uploads/2024/11/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(949,'https://fe2tech.com/wp-content/uploads/2024/11/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg',2998,2710,'image-in',129,NULL,326,361,8614,NULL,NULL),(950,'https://fe2tech.com/wp-content/uploads/2024/11/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg',2998,2711,'image-in',129,NULL,500,500,16590,NULL,NULL),(951,'https://fe2tech.com/wp-content/uploads/2024/11/z6069735059162_053b364ab761dc5a44279faf64395324.jpg',2998,2712,'image-in',129,NULL,1280,598,56125,NULL,NULL),(952,'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg',2998,2713,'image-in',129,NULL,225,225,3629,NULL,NULL),(953,'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg',2998,2714,'image-in',129,NULL,440,512,19163,NULL,NULL),(954,'https://fe2tech.com/wp-content/uploads/2024/11/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg',2998,2715,'image-in',129,NULL,584,684,48878,NULL,NULL),(955,'https://fe2tech.com/wp-content/uploads/2024/11/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg',2998,2716,'image-in',129,NULL,1280,960,141451,NULL,NULL),(969,'https://fe2tech.com/wp-content/uploads/2024/11/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg',2998,2730,'image-in',129,NULL,2560,1920,696354,NULL,NULL),(970,'https://fe2tech.com/wp-content/uploads/2024/11/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg',2998,2731,'image-in',129,NULL,2560,1920,963349,NULL,NULL),(971,'https://fe2tech.com/wp-content/uploads/2024/11/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg',2998,2732,'image-in',129,NULL,1280,960,119516,NULL,NULL),(972,'https://fe2tech.com/wp-content/uploads/2024/11/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg',2998,2733,'image-in',129,NULL,1280,960,421726,NULL,NULL),(973,'https://fe2tech.com/wp-content/uploads/2024/11/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg',2998,2734,'image-in',129,NULL,2560,1920,801873,NULL,NULL),(1153,'https://fe2tech.com/wp-content/uploads/2024/11/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1154,'https://fe2tech.com/wp-content/uploads/2024/11/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1155,'https://fe2tech.com/wp-content/uploads/2024/11/z6069735059162_053b364ab761dc5a44279faf64395324.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1156,'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1157,'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1158,'https://fe2tech.com/wp-content/uploads/2024/11/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1159,'https://fe2tech.com/wp-content/uploads/2024/11/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1173,'https://fe2tech.com/wp-content/uploads/2024/11/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1174,'https://fe2tech.com/wp-content/uploads/2024/11/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1175,'https://fe2tech.com/wp-content/uploads/2024/11/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1176,'https://fe2tech.com/wp-content/uploads/2024/11/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1177,'https://fe2tech.com/wp-content/uploads/2024/11/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1221,'https://fe2tech.com/wp-content/uploads/2024/11/z6069735018334_17c5fac96fb2843d74a76cc79f9b4f5c.jpg',3003,2710,'image-in',130,NULL,326,361,8614,NULL,NULL),(1222,'https://fe2tech.com/wp-content/uploads/2024/11/z6069735037353_db87732b3ea9d93536bcd3aec64835a7.jpg',3003,2711,'image-in',130,NULL,500,500,16590,NULL,NULL),(1223,'https://fe2tech.com/wp-content/uploads/2024/11/z6069735059162_053b364ab761dc5a44279faf64395324.jpg',3003,2712,'image-in',130,NULL,1280,598,56125,NULL,NULL),(1224,'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078372_50abce5249c8acdcfbdf8a063489e186.jpg',3003,2713,'image-in',130,NULL,225,225,3629,NULL,NULL),(1225,'https://fe2tech.com/wp-content/uploads/2024/11/z6069735078570_0ab58b46bf683df6ecdb2c2d87945ba6.jpg',3003,2714,'image-in',130,NULL,440,512,19163,NULL,NULL),(1226,'https://fe2tech.com/wp-content/uploads/2024/11/z6069684949086_b29fdb50114a196cc3fdcc9e12caf105.jpg',3003,2715,'image-in',130,NULL,584,684,48878,NULL,NULL),(1227,'https://fe2tech.com/wp-content/uploads/2024/11/z6069684946641_1500fbe16fec3a14eadb8e4aed1cf63f.jpg',3003,2716,'image-in',130,NULL,1280,960,141451,NULL,NULL),(1241,'https://fe2tech.com/wp-content/uploads/2024/11/z5946591338687_fa514e164f2ee9961cfeece9b2a2962e.jpg',3003,2730,'image-in',130,NULL,2560,1920,696354,NULL,NULL),(1242,'https://fe2tech.com/wp-content/uploads/2024/11/z5951482497981_4fe8d52c77fb970accaca99311b3e5b8.jpg',3003,2731,'image-in',130,NULL,2560,1920,963349,NULL,NULL),(1243,'https://fe2tech.com/wp-content/uploads/2024/11/z6054377713994_731f3ac1f7f32326111a41f67d4a2e33.jpg',3003,2732,'image-in',130,NULL,1280,960,119516,NULL,NULL),(1244,'https://fe2tech.com/wp-content/uploads/2024/11/z5799321653767_797cada97b98642e62c91857c60b5b44.jpg',3003,2733,'image-in',130,NULL,1280,960,421726,NULL,NULL),(1245,'https://fe2tech.com/wp-content/uploads/2024/11/z5946591349194_d5010d1700c7ceb491b978b01be3dd28.jpg',3003,2734,'image-in',130,NULL,2560,1920,801873,NULL,NULL),(1258,'https://www.yoshimoto-sangyo.co.jp/vn/',3008,NULL,'external',131,NULL,NULL,NULL,NULL,NULL,NULL),(1259,'https://kimlongmotor.com.vn/',3008,NULL,'external',131,NULL,NULL,NULL,NULL,NULL,NULL),(1260,'https://www.samsung.com/vn/',3008,NULL,'external',131,NULL,NULL,NULL,NULL,NULL,NULL),(1261,'https://komaz.co.jp/english/',3008,NULL,'external',131,NULL,NULL,NULL,NULL,NULL,NULL),(1262,'https://fe2tech.com/wp-content/uploads/2024/12/FEHT-logo.jpg',3008,2812,'image-in',131,NULL,300,300,13072,NULL,NULL),(1263,'https://fe2tech.com/wp-content/uploads/2024/12/FE-TECH-LOGO-FINAL.png',3008,2816,'image-in',131,NULL,300,327,5473,NULL,NULL),(1264,'https://fe2tech.com/wp-content/uploads/2024/12/Far-East-Tool-Vina.jpg',3008,2814,'image-in',131,NULL,300,335,13568,NULL,NULL),(1265,'https://fe2tech.com/wp-content/uploads/2024/10/yoshimoto-vietnam.png',3008,2486,'image-in',131,NULL,205,246,3253,NULL,NULL),(1266,'https://fe2tech.com/wp-content/uploads/2024/10/kim-long-motors.png',3008,2485,'image-in',131,NULL,1586,1586,582225,NULL,NULL),(1267,'https://fe2tech.com/wp-content/uploads/2024/10/samsung.jpg',3008,2484,'image-in',131,NULL,232,697,19493,NULL,NULL),(1268,'https://fe2tech.com/wp-content/uploads/2024/10/komatsu-kogyo.jpg',3008,2483,'image-in',131,NULL,900,900,44210,NULL,NULL),(1269,'https://fe2tech.com/wp-content/uploads/2024/10/yuwa-engineering.jpg',3008,2482,'image-in',131,NULL,256,256,13462,NULL,NULL),(1282,'https://www.yoshimoto-sangyo.co.jp/vn/',3014,NULL,'external',132,NULL,NULL,NULL,NULL,NULL,NULL),(1283,'https://kimlongmotor.com.vn/',3014,NULL,'external',132,NULL,NULL,NULL,NULL,NULL,NULL),(1284,'https://www.samsung.com/vn/',3014,NULL,'external',132,NULL,NULL,NULL,NULL,NULL,NULL),(1285,'https://komaz.co.jp/english/',3014,NULL,'external',132,NULL,NULL,NULL,NULL,NULL,NULL),(1286,'https://fe2tech.com/wp-content/uploads/2024/12/FEHT-logo.jpg',3014,2812,'image-in',132,NULL,300,300,13072,NULL,NULL),(1287,'https://fe2tech.com/wp-content/uploads/2024/12/FE-TECH-LOGO-FINAL.png',3014,2816,'image-in',132,NULL,300,327,5473,NULL,NULL),(1288,'https://fe2tech.com/wp-content/uploads/2024/12/Far-East-Tool-Vina.jpg',3014,2814,'image-in',132,NULL,300,335,13568,NULL,NULL),(1289,'https://fe2tech.com/wp-content/uploads/2024/10/yoshimoto-vietnam.png',3014,2486,'image-in',132,NULL,205,246,3253,NULL,NULL),(1290,'https://fe2tech.com/wp-content/uploads/2024/10/kim-long-motors.png',3014,2485,'image-in',132,NULL,1586,1586,582225,NULL,NULL),(1291,'https://fe2tech.com/wp-content/uploads/2024/10/samsung.jpg',3014,2484,'image-in',132,NULL,232,697,19493,NULL,NULL),(1292,'https://fe2tech.com/wp-content/uploads/2024/10/komatsu-kogyo.jpg',3014,2483,'image-in',132,NULL,900,900,44210,NULL,NULL),(1293,'https://fe2tech.com/wp-content/uploads/2024/10/yuwa-engineering.jpg',3014,2482,'image-in',132,NULL,256,256,13462,NULL,NULL),(1299,'https://fe2tech.com/wp-content/uploads/2024/10/BROCHURE.pdf',3022,NULL,'internal',133,NULL,NULL,NULL,NULL,NULL,NULL),(1300,'https://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png',3022,612,'image-in',133,NULL,58,59,3235,NULL,NULL),(1301,'https://fe2tech.com/wp-content/uploads/2019/11/icon-box-02.png',3022,613,'image-in',133,NULL,58,55,3628,NULL,NULL),(1302,'https://fe2tech.com/wp-content/uploads/2024/10/2218231.webp',3022,2503,'image-in',133,NULL,450,338,10226,NULL,NULL),(1303,'https://fe2tech.com/wp-content/uploads/2024/11/signature1.png',3022,2538,'image-in',133,NULL,55,111,885,NULL,NULL),(1309,'https://fe2tech.com/wp-content/uploads/2024/10/BROCHURE.pdf',3028,NULL,'internal',134,NULL,NULL,NULL,NULL,NULL,NULL),(1310,'https://fe2tech.com/wp-content/uploads/2019/11/icon-box-01.png',3028,612,'image-in',134,NULL,58,59,3235,NULL,NULL),(1311,'https://fe2tech.com/wp-content/uploads/2019/11/icon-box-02.png',3028,613,'image-in',134,NULL,58,55,3628,NULL,NULL),(1312,'https://fe2tech.com/wp-content/uploads/2024/10/2218231.webp',3028,2503,'image-in',134,NULL,450,338,10226,NULL,NULL),(1313,'https://fe2tech.com/wp-content/uploads/2024/11/signature1.png',3028,2538,'image-in',134,NULL,55,111,885,NULL,NULL),(1317,'https://fe2tech.com/wp-content/uploads/2019/11/info-icon-01.png',3033,279,'image-in',135,NULL,65,55,3143,NULL,NULL),(1318,'https://fe2tech.com/wp-content/uploads/2019/11/info-icon-02.png',3033,280,'image-in',135,NULL,66,66,3260,NULL,NULL),(1319,'https://fe2tech.com/wp-content/uploads/2019/11/info-icon-03.png',3033,281,'image-in',135,NULL,68,70,3640,NULL,NULL),(1323,'https://fe2tech.com/wp-content/uploads/2019/11/info-icon-01.png',3038,279,'image-in',136,NULL,65,55,3143,NULL,NULL),(1324,'https://fe2tech.com/wp-content/uploads/2019/11/info-icon-02.png',3038,280,'image-in',136,NULL,66,66,3260,NULL,NULL),(1325,'https://fe2tech.com/wp-content/uploads/2019/11/info-icon-03.png',3038,281,'image-in',136,NULL,68,70,3640,NULL,NULL),(1326,'https://fe2tech.com/wp-content/uploads/2024/11/z6112022581961_f2a47cd330f690d0a726b0888ff80ab1.jpg',3043,2822,'image-in',137,NULL,1280,591,228872,NULL,NULL),(1327,'https://fe2tech.com/wp-content/uploads/2024/11/z6112022572357_0cdb065792788d3493b2e389df79a5e2.jpg',3043,2823,'image-in',137,NULL,1280,960,421726,NULL,NULL),(1328,'https://fe2tech.com/wp-content/uploads/2024/11/z6112022611669_d154017fd0d3c02db6be468c7db9fa32.jpg',3043,2824,'image-in',137,NULL,1280,960,361511,NULL,NULL),(1329,'https://fe2tech.com/wp-content/uploads/2024/11/z6112035366910_4defd4ad74170bea5d4fa69518dafb6d.jpg',3043,2825,'image-in',137,NULL,1280,960,406522,NULL,NULL),(1330,'https://fe2tech.com/wp-content/uploads/2024/11/z6112035331028_b1fcc3e9f1979a96aaebf343697989b4.jpg',3043,2826,'image-in',137,NULL,960,1280,239667,NULL,NULL),(1331,'https://fe2tech.com/wp-content/uploads/2024/11/z6112035303451_55cd6bcbf16c201a507ca6ac10623d02.jpg',3043,2827,'image-in',137,NULL,960,1280,119115,NULL,NULL),(1332,'https://fe2tech.com/wp-content/uploads/2024/11/z6112035333555_19b4ef8a09ed63f106da162eac3d9775.jpg',3043,2828,'image-in',137,NULL,960,1280,270868,NULL,NULL),(1333,'https://fe2tech.com/wp-content/uploads/2024/11/z6112022609645_43af0256c23b3f39325ac10fe40d3200.jpg',3043,2829,'image-in',137,NULL,1280,960,395859,NULL,NULL),(1334,'https://fe2tech.com/wp-content/uploads/2024/11/z6112035380871_0810f1b5bcdd3396a375bf5a785686ae.jpg',3043,2830,'image-in',137,NULL,961,1281,479509,NULL,NULL),(1335,'https://fe2tech.com/wp-content/uploads/2024/11/z6112143350420_5fdf5495fc11f668a8b6e8b865a0670a.jpg',3043,2831,'image-in',137,NULL,960,1280,213746,NULL,NULL),(1336,'https://fe2tech.com/wp-content/uploads/2024/11/z6112159599274_ed84aaa8ae44eb900b332183d18d35ff.jpg',3043,2832,'image-in',137,NULL,960,1280,300039,NULL,NULL),(1337,'https://fe2tech.com/wp-content/uploads/2024/11/z4379673923151_1f10bec1ef168974349f66b16772c543.jpg',3043,2820,'image-in',137,NULL,960,1280,195265,NULL,NULL),(1338,'https://fe2tech.com/wp-content/uploads/2024/11/z5997919286088_1aafc52570d9ee521cb7325aaa3efbbb.jpg',3043,2821,'image-in',137,NULL,1884,870,189214,NULL,NULL),(1339,'https://fe2tech.com/wp-content/uploads/2024/11/z6112022581961_f2a47cd330f690d0a726b0888ff80ab1.jpg',3045,2822,'image-in',138,NULL,1280,591,228872,NULL,NULL),(1340,'https://fe2tech.com/wp-content/uploads/2024/11/z6112022572357_0cdb065792788d3493b2e389df79a5e2.jpg',3045,2823,'image-in',138,NULL,1280,960,421726,NULL,NULL),(1341,'https://fe2tech.com/wp-content/uploads/2024/11/z6112022611669_d154017fd0d3c02db6be468c7db9fa32.jpg',3045,2824,'image-in',138,NULL,1280,960,361511,NULL,NULL),(1342,'https://fe2tech.com/wp-content/uploads/2024/11/z6112035366910_4defd4ad74170bea5d4fa69518dafb6d.jpg',3045,2825,'image-in',138,NULL,1280,960,406522,NULL,NULL),(1343,'https://fe2tech.com/wp-content/uploads/2024/11/z6112035331028_b1fcc3e9f1979a96aaebf343697989b4.jpg',3045,2826,'image-in',138,NULL,960,1280,239667,NULL,NULL),(1344,'https://fe2tech.com/wp-content/uploads/2024/11/z6112035303451_55cd6bcbf16c201a507ca6ac10623d02.jpg',3045,2827,'image-in',138,NULL,960,1280,119115,NULL,NULL),(1345,'https://fe2tech.com/wp-content/uploads/2024/11/z6112035333555_19b4ef8a09ed63f106da162eac3d9775.jpg',3045,2828,'image-in',138,NULL,960,1280,270868,NULL,NULL),(1346,'https://fe2tech.com/wp-content/uploads/2024/11/z6112022609645_43af0256c23b3f39325ac10fe40d3200.jpg',3045,2829,'image-in',138,NULL,1280,960,395859,NULL,NULL),(1347,'https://fe2tech.com/wp-content/uploads/2024/11/z6112035380871_0810f1b5bcdd3396a375bf5a785686ae.jpg',3045,2830,'image-in',138,NULL,961,1281,479509,NULL,NULL),(1348,'https://fe2tech.com/wp-content/uploads/2024/11/z6112143350420_5fdf5495fc11f668a8b6e8b865a0670a.jpg',3045,2831,'image-in',138,NULL,960,1280,213746,NULL,NULL),(1349,'https://fe2tech.com/wp-content/uploads/2024/11/z6112159599274_ed84aaa8ae44eb900b332183d18d35ff.jpg',3045,2832,'image-in',138,NULL,960,1280,300039,NULL,NULL),(1350,'https://fe2tech.com/wp-content/uploads/2024/11/z4379673923151_1f10bec1ef168974349f66b16772c543.jpg',3045,2820,'image-in',138,NULL,960,1280,195265,NULL,NULL),(1351,'https://fe2tech.com/wp-content/uploads/2024/11/z5997919286088_1aafc52570d9ee521cb7325aaa3efbbb.jpg',3045,2821,'image-in',138,NULL,1884,870,189214,NULL,NULL),(1352,'https://fe2tech.com/wp-content/uploads/2024/11/z6112523290035_3b7a728aff36d17b39821c04b01ee4d5.jpg',3047,2844,'image-in',139,NULL,1280,960,408201,NULL,NULL),(1353,'https://fe2tech.com/wp-content/uploads/2024/11/z6112523303443_aeb69e713b0de04bc8b594cb00fb49ca.jpg',3047,2845,'image-in',139,NULL,1280,960,413144,NULL,NULL),(1354,'https://fe2tech.com/wp-content/uploads/2024/11/z6112035284762_1f2181b896dc72283dffd21ff2accf18.jpg',3047,2846,'image-in',139,NULL,960,1280,222141,NULL,NULL),(1355,'https://fe2tech.com/wp-content/uploads/2024/11/z6112035279331_ec2e9746f1d2b6055f9d822183a20b7b.jpg',3047,2847,'image-in',139,NULL,960,1280,227815,NULL,NULL),(1356,'https://fe2tech.com/wp-content/uploads/2024/11/z6112035401524_aa7e2e59cf891c7dd20122738c01da99.jpg',3047,2848,'image-in',139,NULL,1280,960,205580,NULL,NULL),(1357,'https://fe2tech.com/wp-content/uploads/2024/11/z6112035395698_a7f89619dfa324b6009e13e700d16a52.jpg',3047,2849,'image-in',139,NULL,1280,960,283212,NULL,NULL),(1358,'https://fe2tech.com/wp-content/uploads/2024/11/z6112035405011_b0e4efc850356273be1ea0ebf41973d5.jpg',3047,2850,'image-in',139,NULL,591,1280,248655,NULL,NULL),(1359,'https://fe2tech.com/wp-content/uploads/2024/11/z6112523246386_fb69855463997d37d3a5b9189e8633a5.jpg',3047,2853,'image-in',139,NULL,1276,956,450859,NULL,NULL),(1360,'https://fe2tech.com/wp-content/uploads/2024/11/z6112523253089_bd1c2eefa8e745863c395bcdd175f37c.jpg',3047,2854,'image-in',139,NULL,591,1280,211879,NULL,NULL),(1361,'https://fe2tech.com/wp-content/uploads/2024/11/z6112523265271_a713cd9cae68eb5e8623d240ee9c0f46.jpg',3047,2855,'image-in',139,NULL,1280,960,439831,NULL,NULL),(1362,'https://fe2tech.com/wp-content/uploads/2024/11/z6112523276603_ec2b0734a46271e77485348ecdebe9a5.jpg',3047,2856,'image-in',139,NULL,960,1280,308021,NULL,NULL),(1363,'https://fe2tech.com/wp-content/uploads/2024/11/z6112143335944_8a90c104b6e5a3531a1b8d7a439e6db3.jpg',3047,2851,'image-in',139,NULL,960,1280,228635,NULL,NULL),(1364,'https://fe2tech.com/wp-content/uploads/2024/11/z6112143337763_e6237e74ed00be98c9396eb0b6012587.jpg',3047,2852,'image-in',139,NULL,960,1280,258126,NULL,NULL),(1365,'https://fe2tech.com/wp-content/uploads/2024/11/z6112523290035_3b7a728aff36d17b39821c04b01ee4d5.jpg',3051,2844,'image-in',140,NULL,1280,960,408201,NULL,NULL),(1366,'https://fe2tech.com/wp-content/uploads/2024/11/z6112523303443_aeb69e713b0de04bc8b594cb00fb49ca.jpg',3051,2845,'image-in',140,NULL,1280,960,413144,NULL,NULL),(1367,'https://fe2tech.com/wp-content/uploads/2024/11/z6112035284762_1f2181b896dc72283dffd21ff2accf18.jpg',3051,2846,'image-in',140,NULL,960,1280,222141,NULL,NULL),(1368,'https://fe2tech.com/wp-content/uploads/2024/11/z6112035279331_ec2e9746f1d2b6055f9d822183a20b7b.jpg',3051,2847,'image-in',140,NULL,960,1280,227815,NULL,NULL),(1369,'https://fe2tech.com/wp-content/uploads/2024/11/z6112035401524_aa7e2e59cf891c7dd20122738c01da99.jpg',3051,2848,'image-in',140,NULL,1280,960,205580,NULL,NULL),(1370,'https://fe2tech.com/wp-content/uploads/2024/11/z6112035395698_a7f89619dfa324b6009e13e700d16a52.jpg',3051,2849,'image-in',140,NULL,1280,960,283212,NULL,NULL),(1371,'https://fe2tech.com/wp-content/uploads/2024/11/z6112035405011_b0e4efc850356273be1ea0ebf41973d5.jpg',3051,2850,'image-in',140,NULL,591,1280,248655,NULL,NULL),(1372,'https://fe2tech.com/wp-content/uploads/2024/11/z6112523246386_fb69855463997d37d3a5b9189e8633a5.jpg',3051,2853,'image-in',140,NULL,1276,956,450859,NULL,NULL),(1373,'https://fe2tech.com/wp-content/uploads/2024/11/z6112523253089_bd1c2eefa8e745863c395bcdd175f37c.jpg',3051,2854,'image-in',140,NULL,591,1280,211879,NULL,NULL),(1374,'https://fe2tech.com/wp-content/uploads/2024/11/z6112523265271_a713cd9cae68eb5e8623d240ee9c0f46.jpg',3051,2855,'image-in',140,NULL,1280,960,439831,NULL,NULL),(1375,'https://fe2tech.com/wp-content/uploads/2024/11/z6112523276603_ec2b0734a46271e77485348ecdebe9a5.jpg',3051,2856,'image-in',140,NULL,960,1280,308021,NULL,NULL),(1376,'https://fe2tech.com/wp-content/uploads/2024/11/z6112143335944_8a90c104b6e5a3531a1b8d7a439e6db3.jpg',3051,2851,'image-in',140,NULL,960,1280,228635,NULL,NULL),(1377,'https://fe2tech.com/wp-content/uploads/2024/11/z6112143337763_e6237e74ed00be98c9396eb0b6012587.jpg',3051,2852,'image-in',140,NULL,960,1280,258126,NULL,NULL),(1378,'https://fe2tech.com/wp-content/uploads/2024/11/z6112160416378_bce4411fe74027d63005630fc7884a80.jpg',3053,2898,'image-in',141,NULL,1280,598,56125,NULL,NULL),(1379,'https://fe2tech.com/wp-content/uploads/2024/11/z6112161045939_2fab496392927de92680189440d9df11.jpg',3053,2899,'image-in',141,NULL,2560,1920,380100,NULL,NULL),(1380,'https://fe2tech.com/wp-content/uploads/2024/11/z6112162162899_9fa7af3084979b141c9a5af02bd64b8f.jpg',3053,2900,'image-in',141,NULL,2048,1536,293530,NULL,NULL),(1381,'https://fe2tech.com/wp-content/uploads/2024/11/z6112162913774_3cf6b72cb16904b5c0aa22911ad9062c.jpg',3053,2901,'image-in',141,NULL,1536,2048,893662,NULL,NULL),(1382,'https://fe2tech.com/wp-content/uploads/2024/11/z6112342749062_a373f44d190f5f95bac710bb2609c8dc.jpg',3053,2889,'image-in',141,NULL,1280,960,157993,NULL,NULL),(1383,'https://fe2tech.com/wp-content/uploads/2024/11/z6112342752051_e8e5731247c67e8d13ba9032e0df2071.jpg',3053,2890,'image-in',141,NULL,1280,960,181469,NULL,NULL),(1384,'https://fe2tech.com/wp-content/uploads/2024/11/z6112342758960_0cf70e0e2fc3c20f1fcdfa00de30734e.jpg',3053,2891,'image-in',141,NULL,1280,960,223443,NULL,NULL),(1385,'https://fe2tech.com/wp-content/uploads/2024/11/z6112342779226_b9935186416483d88d8d4a3741c445ac.jpg',3053,2892,'image-in',141,NULL,960,1280,204534,NULL,NULL),(1386,'https://fe2tech.com/wp-content/uploads/2024/11/z6112343562589_0c62c0c2a11f68e02e7302f2022d802f.jpg',3053,2893,'image-in',141,NULL,1280,960,193011,NULL,NULL),(1387,'https://fe2tech.com/wp-content/uploads/2024/11/z6112343020134_4e3fd602c682b52d16603b05d64b5b3b.jpg',3053,2894,'image-in',141,NULL,1280,960,187389,NULL,NULL),(1388,'https://fe2tech.com/wp-content/uploads/2024/11/z6112343022575_b75ed6f8141de2096bd693992964bc07.jpg',3053,2895,'image-in',141,NULL,1280,960,190035,NULL,NULL),(1389,'https://fe2tech.com/wp-content/uploads/2024/11/z6112343024138_c84a3e4bb6f5d346d7a6e09e56086f61.jpg',3053,2896,'image-in',141,NULL,1280,583,114773,NULL,NULL),(1390,'https://fe2tech.com/wp-content/uploads/2024/11/z6112343028537_b1ff9fb76f888c3ed07f01643f0020f0.jpg',3053,2897,'image-in',141,NULL,1280,960,230642,NULL,NULL),(1391,'https://fe2tech.com/wp-content/uploads/2024/11/z6112160416378_bce4411fe74027d63005630fc7884a80.jpg',3055,2898,'image-in',142,NULL,1280,598,56125,NULL,NULL),(1392,'https://fe2tech.com/wp-content/uploads/2024/11/z6112161045939_2fab496392927de92680189440d9df11.jpg',3055,2899,'image-in',142,NULL,2560,1920,380100,NULL,NULL),(1393,'https://fe2tech.com/wp-content/uploads/2024/11/z6112162162899_9fa7af3084979b141c9a5af02bd64b8f.jpg',3055,2900,'image-in',142,NULL,2048,1536,293530,NULL,NULL),(1394,'https://fe2tech.com/wp-content/uploads/2024/11/z6112162913774_3cf6b72cb16904b5c0aa22911ad9062c.jpg',3055,2901,'image-in',142,NULL,1536,2048,893662,NULL,NULL),(1395,'https://fe2tech.com/wp-content/uploads/2024/11/z6112342749062_a373f44d190f5f95bac710bb2609c8dc.jpg',3055,2889,'image-in',142,NULL,1280,960,157993,NULL,NULL),(1396,'https://fe2tech.com/wp-content/uploads/2024/11/z6112342752051_e8e5731247c67e8d13ba9032e0df2071.jpg',3055,2890,'image-in',142,NULL,1280,960,181469,NULL,NULL),(1397,'https://fe2tech.com/wp-content/uploads/2024/11/z6112342758960_0cf70e0e2fc3c20f1fcdfa00de30734e.jpg',3055,2891,'image-in',142,NULL,1280,960,223443,NULL,NULL),(1398,'https://fe2tech.com/wp-content/uploads/2024/11/z6112342779226_b9935186416483d88d8d4a3741c445ac.jpg',3055,2892,'image-in',142,NULL,960,1280,204534,NULL,NULL),(1399,'https://fe2tech.com/wp-content/uploads/2024/11/z6112343562589_0c62c0c2a11f68e02e7302f2022d802f.jpg',3055,2893,'image-in',142,NULL,1280,960,193011,NULL,NULL),(1400,'https://fe2tech.com/wp-content/uploads/2024/11/z6112343020134_4e3fd602c682b52d16603b05d64b5b3b.jpg',3055,2894,'image-in',142,NULL,1280,960,187389,NULL,NULL),(1401,'https://fe2tech.com/wp-content/uploads/2024/11/z6112343022575_b75ed6f8141de2096bd693992964bc07.jpg',3055,2895,'image-in',142,NULL,1280,960,190035,NULL,NULL),(1402,'https://fe2tech.com/wp-content/uploads/2024/11/z6112343024138_c84a3e4bb6f5d346d7a6e09e56086f61.jpg',3055,2896,'image-in',142,NULL,1280,583,114773,NULL,NULL),(1403,'https://fe2tech.com/wp-content/uploads/2024/11/z6112343028537_b1ff9fb76f888c3ed07f01643f0020f0.jpg',3055,2897,'image-in',142,NULL,1280,960,230642,NULL,NULL),(1404,'https://fe2tech.com/wp-content/uploads/2024/11/z4614273923773_699996016c1c52f0895299d5358fe8a6.jpg',3057,2881,'image-in',143,NULL,1276,956,211280,NULL,NULL),(1405,'https://fe2tech.com/wp-content/uploads/2024/11/z4614243915927_45cd79faef986c5ca9f1ed80434ca840.jpg',3057,2882,'image-in',143,NULL,1276,956,152156,NULL,NULL),(1406,'https://fe2tech.com/wp-content/uploads/2024/11/z4859515672356_2e4104881b39c559fe9d687370a67394.jpg',3057,2883,'image-in',143,NULL,946,2048,487126,NULL,NULL),(1407,'https://fe2tech.com/wp-content/uploads/2024/11/z5095181853127_bdd8a417c860e722ad4f5e79f91dea8f.jpg',3057,2884,'image-in',143,NULL,960,1280,255290,NULL,NULL),(1408,'https://fe2tech.com/wp-content/uploads/2024/11/z5095181851706_d23ac9a42e1be2ea98d323da1f663eaf.jpg',3057,2885,'image-in',143,NULL,960,1280,278015,NULL,NULL),(1409,'https://fe2tech.com/wp-content/uploads/2024/11/z4749871034728_13d43ad63eed2b6e7e1496638d7853af.jpg',3057,2878,'image-in',143,NULL,1926,2568,1000505,NULL,NULL),(1410,'https://fe2tech.com/wp-content/uploads/2024/11/z4749871031095_9182ad19e7ac8defae8c32b8cc44b440.jpg',3057,2879,'image-in',143,NULL,1926,2568,755277,NULL,NULL),(1411,'https://fe2tech.com/wp-content/uploads/2024/11/z4749871031211_ed4fe9d663e0c07fddaaef221a1144c7.jpg',3057,2880,'image-in',143,NULL,1926,2568,677477,NULL,NULL),(1412,'https://fe2tech.com/wp-content/uploads/2024/11/z4614273923773_699996016c1c52f0895299d5358fe8a6.jpg',3059,2881,'image-in',144,NULL,1276,956,211280,NULL,NULL),(1413,'https://fe2tech.com/wp-content/uploads/2024/11/z4614243915927_45cd79faef986c5ca9f1ed80434ca840.jpg',3059,2882,'image-in',144,NULL,1276,956,152156,NULL,NULL),(1414,'https://fe2tech.com/wp-content/uploads/2024/11/z4859515672356_2e4104881b39c559fe9d687370a67394.jpg',3059,2883,'image-in',144,NULL,946,2048,487126,NULL,NULL),(1415,'https://fe2tech.com/wp-content/uploads/2024/11/z5095181853127_bdd8a417c860e722ad4f5e79f91dea8f.jpg',3059,2884,'image-in',144,NULL,960,1280,255290,NULL,NULL),(1416,'https://fe2tech.com/wp-content/uploads/2024/11/z5095181851706_d23ac9a42e1be2ea98d323da1f663eaf.jpg',3059,2885,'image-in',144,NULL,960,1280,278015,NULL,NULL),(1417,'https://fe2tech.com/wp-content/uploads/2024/11/z4749871034728_13d43ad63eed2b6e7e1496638d7853af.jpg',3059,2878,'image-in',144,NULL,1926,2568,1000505,NULL,NULL),(1418,'https://fe2tech.com/wp-content/uploads/2024/11/z4749871031095_9182ad19e7ac8defae8c32b8cc44b440.jpg',3059,2879,'image-in',144,NULL,1926,2568,755277,NULL,NULL),(1419,'https://fe2tech.com/wp-content/uploads/2024/11/z4749871031211_ed4fe9d663e0c07fddaaef221a1144c7.jpg',3059,2880,'image-in',144,NULL,1926,2568,677477,NULL,NULL),(1420,'https://fe2tech.com/wp-content/uploads/2024/11/z6112380520686_e42a34abefc41f7baa77f40a51e11e10.jpg',3061,2909,'image-in',145,NULL,2560,1152,525750,NULL,NULL),(1421,'https://fe2tech.com/wp-content/uploads/2024/11/z6112380501656_5b9317f1571553500813fa23f5ffd678.jpg',3061,2910,'image-in',145,NULL,2560,1152,333028,NULL,NULL),(1422,'https://fe2tech.com/wp-content/uploads/2024/11/z6112380524857_d617d3c8ff36c93a8360aeb9239dc924.jpg',3061,2911,'image-in',145,NULL,1152,2560,511319,NULL,NULL),(1423,'https://fe2tech.com/wp-content/uploads/2024/11/z4749871059944_22ebc1e4e9fef7e1a4c18a87b17ad83f.jpg',3061,2907,'image-in',145,NULL,1926,2568,955700,NULL,NULL),(1424,'https://fe2tech.com/wp-content/uploads/2024/11/z6112380533580_58467dd3a6c609d250f917b7cb523083.jpg',3061,2903,'image-in',145,NULL,2560,1152,357596,NULL,NULL),(1425,'https://fe2tech.com/wp-content/uploads/2024/11/z6112380547520_189c3d8c494143167c5bea938b7789c8.jpg',3061,2904,'image-in',145,NULL,2560,1152,268426,NULL,NULL),(1426,'https://fe2tech.com/wp-content/uploads/2024/11/z6112380509099_8e38c91b9a664647d606ed55ecccc8ae.jpg',3061,2905,'image-in',145,NULL,2560,1152,390023,NULL,NULL),(1427,'https://fe2tech.com/wp-content/uploads/2024/11/z4749871065923_4d7a315a6e76ccde22ddab12dbdcd6c3.jpg',3061,2906,'image-in',145,NULL,1926,2568,725062,NULL,NULL),(1428,'https://fe2tech.com/wp-content/uploads/2024/11/z4749871062649_2ef68ba42152c462b7730e250fa0695b.jpg',3061,2908,'image-in',145,NULL,1926,2568,812771,NULL,NULL),(1429,'https://fe2tech.com/wp-content/uploads/2024/11/z6112380520686_e42a34abefc41f7baa77f40a51e11e10.jpg',3063,2909,'image-in',146,NULL,2560,1152,525750,NULL,NULL),(1430,'https://fe2tech.com/wp-content/uploads/2024/11/z6112380501656_5b9317f1571553500813fa23f5ffd678.jpg',3063,2910,'image-in',146,NULL,2560,1152,333028,NULL,NULL),(1431,'https://fe2tech.com/wp-content/uploads/2024/11/z6112380524857_d617d3c8ff36c93a8360aeb9239dc924.jpg',3063,2911,'image-in',146,NULL,1152,2560,511319,NULL,NULL),(1432,'https://fe2tech.com/wp-content/uploads/2024/11/z4749871059944_22ebc1e4e9fef7e1a4c18a87b17ad83f.jpg',3063,2907,'image-in',146,NULL,1926,2568,955700,NULL,NULL),(1433,'https://fe2tech.com/wp-content/uploads/2024/11/z6112380533580_58467dd3a6c609d250f917b7cb523083.jpg',3063,2903,'image-in',146,NULL,2560,1152,357596,NULL,NULL),(1434,'https://fe2tech.com/wp-content/uploads/2024/11/z6112380547520_189c3d8c494143167c5bea938b7789c8.jpg',3063,2904,'image-in',146,NULL,2560,1152,268426,NULL,NULL),(1435,'https://fe2tech.com/wp-content/uploads/2024/11/z6112380509099_8e38c91b9a664647d606ed55ecccc8ae.jpg',3063,2905,'image-in',146,NULL,2560,1152,390023,NULL,NULL),(1436,'https://fe2tech.com/wp-content/uploads/2024/11/z4749871065923_4d7a315a6e76ccde22ddab12dbdcd6c3.jpg',3063,2906,'image-in',146,NULL,1926,2568,725062,NULL,NULL),(1437,'https://fe2tech.com/wp-content/uploads/2024/11/z4749871062649_2ef68ba42152c462b7730e250fa0695b.jpg',3063,2908,'image-in',146,NULL,1926,2568,812771,NULL,NULL),(1438,'https://fe2tech.com/wp-content/uploads/2024/11/z6112398373909_156bfb41f9711a15035cfede452ce1a9.jpg',3066,2862,'image-in',147,NULL,720,960,119874,NULL,NULL),(1439,'https://fe2tech.com/wp-content/uploads/2024/11/z6112398387244_688f2cffa04694e309441b36b11b142f.jpg',3066,2863,'image-in',147,NULL,450,600,76048,NULL,NULL),(1440,'https://fe2tech.com/wp-content/uploads/2024/11/z6112398406318_cba797f1e93e87ade947c770d0d40a8f.jpg',3066,2864,'image-in',147,NULL,720,960,163016,NULL,NULL),(1441,'https://fe2tech.com/wp-content/uploads/2024/11/z6112398417726_5127342a763e9e24abc186f97a44aff8.jpg',3066,2865,'image-in',147,NULL,720,960,106367,NULL,NULL),(1442,'https://fe2tech.com/wp-content/uploads/2024/11/z6112399243827_06cc313a2878998df579b1c3dcedc86d.jpg',3066,2866,'image-in',147,NULL,960,451,117252,NULL,NULL),(1443,'https://fe2tech.com/wp-content/uploads/2024/11/z6112402158092_30b348ffeb1bd490d6abf2ba9eb85786.jpg',3066,2867,'image-in',147,NULL,1280,960,225688,NULL,NULL),(1444,'https://fe2tech.com/wp-content/uploads/2024/11/z6112402161733_fb456855a646106f5d0896b14dc1774a.jpg',3066,2868,'image-in',147,NULL,609,1280,118804,NULL,NULL),(1445,'https://fe2tech.com/wp-content/uploads/2024/11/z6112407952259_47d9353a1faa9e7f704c496b431fc2e8.jpg',3066,2870,'image-in',147,NULL,2560,1920,1842842,NULL,NULL),(1446,'https://fe2tech.com/wp-content/uploads/2024/11/z6112407943622_643893c3e779b10c7addfe792dde6674.jpg',3066,2871,'image-in',147,NULL,2560,1920,1148105,NULL,NULL),(1447,'https://fe2tech.com/wp-content/uploads/2024/11/z6112407932531_75c831c196d633f15a7d2ac8ca23dd73.jpg',3066,2872,'image-in',147,NULL,2560,1920,1231555,NULL,NULL),(1448,'https://fe2tech.com/wp-content/uploads/2024/11/z6112475733731_0f87c5cb35371e36f87164b091dee9e7.jpg',3066,2873,'image-in',147,NULL,1280,960,268312,NULL,NULL),(1449,'https://fe2tech.com/wp-content/uploads/2024/11/z6112475735545_8ad6ec49c1c9ca3aa9ad469ee5e61195.jpg',3066,2874,'image-in',147,NULL,1280,960,242936,NULL,NULL),(1450,'https://fe2tech.com/wp-content/uploads/2024/11/z6112475588456_c7783008f04cb1da5c4706aaf8251962.jpg',3066,2875,'image-in',147,NULL,1280,960,247534,NULL,NULL),(1451,'https://fe2tech.com/wp-content/uploads/2024/11/z6112475603193_4db6faf7d997e4dfc5f44d0ee583aadf.jpg',3066,2858,'image-in',147,NULL,1280,960,343846,NULL,NULL),(1452,'https://fe2tech.com/wp-content/uploads/2024/11/z6112475604993_b73f539ad31fe52fc630284c8d45186a.jpg',3066,2859,'image-in',147,NULL,1280,960,372398,NULL,NULL),(1453,'https://fe2tech.com/wp-content/uploads/2024/11/z6112475612691_cce8a7d594d6f4dcbe56f5186a04fefb.jpg',3066,2860,'image-in',147,NULL,1280,960,336288,NULL,NULL),(1454,'https://fe2tech.com/wp-content/uploads/2024/11/z6112475615814_eaf58890986bbd9b960debe8d62378b9.jpg',3066,2861,'image-in',147,NULL,1280,960,388507,NULL,NULL),(1455,'https://fe2tech.com/wp-content/uploads/2024/11/z6112405304306_a9b1bb837aea79fbe537c183eb90c6c1.jpg',3066,2869,'image-in',147,NULL,591,1280,196809,NULL,NULL),(1456,'https://fe2tech.com/wp-content/uploads/2024/11/z6112398373909_156bfb41f9711a15035cfede452ce1a9.jpg',3068,2862,'image-in',148,NULL,720,960,119874,NULL,NULL),(1457,'https://fe2tech.com/wp-content/uploads/2024/11/z6112398387244_688f2cffa04694e309441b36b11b142f.jpg',3068,2863,'image-in',148,NULL,450,600,76048,NULL,NULL),(1458,'https://fe2tech.com/wp-content/uploads/2024/11/z6112398406318_cba797f1e93e87ade947c770d0d40a8f.jpg',3068,2864,'image-in',148,NULL,720,960,163016,NULL,NULL),(1459,'https://fe2tech.com/wp-content/uploads/2024/11/z6112398417726_5127342a763e9e24abc186f97a44aff8.jpg',3068,2865,'image-in',148,NULL,720,960,106367,NULL,NULL),(1460,'https://fe2tech.com/wp-content/uploads/2024/11/z6112399243827_06cc313a2878998df579b1c3dcedc86d.jpg',3068,2866,'image-in',148,NULL,960,451,117252,NULL,NULL),(1461,'https://fe2tech.com/wp-content/uploads/2024/11/z6112402158092_30b348ffeb1bd490d6abf2ba9eb85786.jpg',3068,2867,'image-in',148,NULL,1280,960,225688,NULL,NULL),(1462,'https://fe2tech.com/wp-content/uploads/2024/11/z6112402161733_fb456855a646106f5d0896b14dc1774a.jpg',3068,2868,'image-in',148,NULL,609,1280,118804,NULL,NULL),(1463,'https://fe2tech.com/wp-content/uploads/2024/11/z6112407952259_47d9353a1faa9e7f704c496b431fc2e8.jpg',3068,2870,'image-in',148,NULL,2560,1920,1842842,NULL,NULL),(1464,'https://fe2tech.com/wp-content/uploads/2024/11/z6112407943622_643893c3e779b10c7addfe792dde6674.jpg',3068,2871,'image-in',148,NULL,2560,1920,1148105,NULL,NULL),(1465,'https://fe2tech.com/wp-content/uploads/2024/11/z6112407932531_75c831c196d633f15a7d2ac8ca23dd73.jpg',3068,2872,'image-in',148,NULL,2560,1920,1231555,NULL,NULL),(1466,'https://fe2tech.com/wp-content/uploads/2024/11/z6112475733731_0f87c5cb35371e36f87164b091dee9e7.jpg',3068,2873,'image-in',148,NULL,1280,960,268312,NULL,NULL),(1467,'https://fe2tech.com/wp-content/uploads/2024/11/z6112475735545_8ad6ec49c1c9ca3aa9ad469ee5e61195.jpg',3068,2874,'image-in',148,NULL,1280,960,242936,NULL,NULL),(1468,'https://fe2tech.com/wp-content/uploads/2024/11/z6112475588456_c7783008f04cb1da5c4706aaf8251962.jpg',3068,2875,'image-in',148,NULL,1280,960,247534,NULL,NULL),(1469,'https://fe2tech.com/wp-content/uploads/2024/11/z6112475603193_4db6faf7d997e4dfc5f44d0ee583aadf.jpg',3068,2858,'image-in',148,NULL,1280,960,343846,NULL,NULL),(1470,'https://fe2tech.com/wp-content/uploads/2024/11/z6112475604993_b73f539ad31fe52fc630284c8d45186a.jpg',3068,2859,'image-in',148,NULL,1280,960,372398,NULL,NULL),(1471,'https://fe2tech.com/wp-content/uploads/2024/11/z6112475612691_cce8a7d594d6f4dcbe56f5186a04fefb.jpg',3068,2860,'image-in',148,NULL,1280,960,336288,NULL,NULL),(1472,'https://fe2tech.com/wp-content/uploads/2024/11/z6112475615814_eaf58890986bbd9b960debe8d62378b9.jpg',3068,2861,'image-in',148,NULL,1280,960,388507,NULL,NULL),(1473,'https://fe2tech.com/wp-content/uploads/2024/11/z6112405304306_a9b1bb837aea79fbe537c183eb90c6c1.jpg',3068,2869,'image-in',148,NULL,591,1280,196809,NULL,NULL),(1474,'https://fe2tech.com/wp-content/uploads/2024/11/z6112427132452_1dc48d6b077820afa8c47b96d3918f22.jpg',3070,2915,'image-in',149,NULL,1280,960,647025,NULL,NULL),(1475,'https://fe2tech.com/wp-content/uploads/2024/11/z6112427136415_a92631bc5fc9cba8b18696aacf6afcb5.jpg',3070,2916,'image-in',149,NULL,1280,590,75631,NULL,NULL),(1476,'https://fe2tech.com/wp-content/uploads/2024/11/z6112427143608_0e611231c1efc187f3162f79bf802d9e.jpg',3070,2917,'image-in',149,NULL,1280,590,122633,NULL,NULL),(1477,'https://fe2tech.com/wp-content/uploads/2024/11/z6112427145342_1981e17957820257bc6cc69dca8d1a6a.jpg',3070,2918,'image-in',149,NULL,1280,590,72056,NULL,NULL),(1478,'https://fe2tech.com/wp-content/uploads/2024/11/z6112431685389_a7fb16bd81f123c2bfc6a16da53debf2.jpg',3070,2919,'image-in',149,NULL,1280,960,121416,NULL,NULL),(1479,'https://fe2tech.com/wp-content/uploads/2024/11/z6112431686395_bfab2b01f79ca6c359bec18f3bbadd26.jpg',3070,2920,'image-in',149,NULL,592,1280,342196,NULL,NULL),(1480,'https://fe2tech.com/wp-content/uploads/2024/11/z6112035271011_4c2ce6e425aafedb041eb23967031655.jpg',3070,2921,'image-in',149,NULL,1280,960,320407,NULL,NULL),(1481,'https://fe2tech.com/wp-content/uploads/2024/11/z6112427126027_f0c082273a59f666b09963ae9bbe5130.jpg',3070,2922,'image-in',149,NULL,1280,960,171408,NULL,NULL),(1482,'https://fe2tech.com/wp-content/uploads/2024/11/z6112427126859_88eeb6c98a738fc61976f7654b6d11a9.jpg',3070,2923,'image-in',149,NULL,1280,960,183446,NULL,NULL),(1483,'https://fe2tech.com/wp-content/uploads/2024/11/z6112427127062_0723f7644f5d182c87b7d93725c07ce0.jpg',3070,2924,'image-in',149,NULL,1280,960,242066,NULL,NULL),(1484,'https://fe2tech.com/wp-content/uploads/2024/11/z6112427132452_1dc48d6b077820afa8c47b96d3918f22.jpg',3072,2915,'image-in',150,NULL,1280,960,647025,NULL,NULL),(1485,'https://fe2tech.com/wp-content/uploads/2024/11/z6112427136415_a92631bc5fc9cba8b18696aacf6afcb5.jpg',3072,2916,'image-in',150,NULL,1280,590,75631,NULL,NULL),(1486,'https://fe2tech.com/wp-content/uploads/2024/11/z6112427143608_0e611231c1efc187f3162f79bf802d9e.jpg',3072,2917,'image-in',150,NULL,1280,590,122633,NULL,NULL),(1487,'https://fe2tech.com/wp-content/uploads/2024/11/z6112427145342_1981e17957820257bc6cc69dca8d1a6a.jpg',3072,2918,'image-in',150,NULL,1280,590,72056,NULL,NULL),(1488,'https://fe2tech.com/wp-content/uploads/2024/11/z6112431685389_a7fb16bd81f123c2bfc6a16da53debf2.jpg',3072,2919,'image-in',150,NULL,1280,960,121416,NULL,NULL),(1489,'https://fe2tech.com/wp-content/uploads/2024/11/z6112431686395_bfab2b01f79ca6c359bec18f3bbadd26.jpg',3072,2920,'image-in',150,NULL,592,1280,342196,NULL,NULL),(1490,'https://fe2tech.com/wp-content/uploads/2024/11/z6112035271011_4c2ce6e425aafedb041eb23967031655.jpg',3072,2921,'image-in',150,NULL,1280,960,320407,NULL,NULL),(1491,'https://fe2tech.com/wp-content/uploads/2024/11/z6112427126027_f0c082273a59f666b09963ae9bbe5130.jpg',3072,2922,'image-in',150,NULL,1280,960,171408,NULL,NULL),(1492,'https://fe2tech.com/wp-content/uploads/2024/11/z6112427126859_88eeb6c98a738fc61976f7654b6d11a9.jpg',3072,2923,'image-in',150,NULL,1280,960,183446,NULL,NULL),(1493,'https://fe2tech.com/wp-content/uploads/2024/11/z6112427127062_0723f7644f5d182c87b7d93725c07ce0.jpg',3072,2924,'image-in',150,NULL,1280,960,242066,NULL,NULL),(1494,'https://fe2tech.com/wp-content/uploads/2024/11/z5960268346049_d526596f8ddfc4db5149cdf4c2a86994.jpg',3074,2927,'image-in',151,NULL,2560,1152,352927,NULL,NULL),(1495,'https://fe2tech.com/wp-content/uploads/2024/11/z6112404623542_5b0849b2bcc4cd3b845977435309590a.jpg',3074,2928,'image-in',151,NULL,1280,960,288864,NULL,NULL),(1496,'https://fe2tech.com/wp-content/uploads/2024/11/z4585711522486_378e8c68f46ae66fae3a9ecca6d6e086.jpg',3074,2929,'image-in',151,NULL,2048,946,425586,NULL,NULL),(1497,'https://fe2tech.com/wp-content/uploads/2024/11/z4449983141239_d83dcc0273bcc1b41d2586ff272b1265.jpg',3074,2930,'image-in',151,NULL,1280,960,284571,NULL,NULL),(1498,'https://fe2tech.com/wp-content/uploads/2024/11/z4584726243432_c37cf14cc34559d45891cddf89e5daba.jpg',3074,2931,'image-in',151,NULL,946,2048,494597,NULL,NULL),(1499,'https://fe2tech.com/wp-content/uploads/2024/11/z5953231842216_872f5a7181f5ce3d18a4b1eebe17896c.jpg',3074,2932,'image-in',151,NULL,2560,1311,234619,NULL,NULL),(1500,'https://fe2tech.com/wp-content/uploads/2024/11/z5960268346049_d526596f8ddfc4db5149cdf4c2a86994.jpg',3076,2927,'image-in',152,NULL,2560,1152,352927,NULL,NULL),(1501,'https://fe2tech.com/wp-content/uploads/2024/11/z6112404623542_5b0849b2bcc4cd3b845977435309590a.jpg',3076,2928,'image-in',152,NULL,1280,960,288864,NULL,NULL),(1502,'https://fe2tech.com/wp-content/uploads/2024/11/z4585711522486_378e8c68f46ae66fae3a9ecca6d6e086.jpg',3076,2929,'image-in',152,NULL,2048,946,425586,NULL,NULL),(1503,'https://fe2tech.com/wp-content/uploads/2024/11/z4449983141239_d83dcc0273bcc1b41d2586ff272b1265.jpg',3076,2930,'image-in',152,NULL,1280,960,284571,NULL,NULL),(1504,'https://fe2tech.com/wp-content/uploads/2024/11/z4584726243432_c37cf14cc34559d45891cddf89e5daba.jpg',3076,2931,'image-in',152,NULL,946,2048,494597,NULL,NULL),(1505,'https://fe2tech.com/wp-content/uploads/2024/11/z5953231842216_872f5a7181f5ce3d18a4b1eebe17896c.jpg',3076,2932,'image-in',152,NULL,2560,1311,234619,NULL,NULL),(1508,'https://fe2tech.com/ja/service/%e6%9d%bf%e9%87%91%e5%8a%a0%e5%b7%a5%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/',2982,3059,'internal',126,144,NULL,NULL,NULL,NULL,NULL),(1509,'https://fe2tech.com/ja/service/%e6%9d%bf%e9%87%91%e5%8a%a0%e5%b7%a5%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/',2982,3059,'internal',126,144,NULL,NULL,NULL,NULL,NULL),(1514,'http://fe2tech.com/',2959,NULL,'internal',123,38,NULL,NULL,NULL,NULL,NULL),(1520,'https://fe2tech.com/wp-content/uploads/2024/12/logo.jpg',2959,2748,'image-in',123,NULL,597,597,64452,NULL,NULL),(1521,'https://fe2tech.com/vi/trang-chu/',2959,2973,'internal',123,125,NULL,NULL,NULL,NULL,NULL),(1522,'https://fe2tech.com/vi/san-pham/',2959,2998,'internal',123,129,NULL,NULL,NULL,NULL,NULL),(1523,'https://fe2tech.com/vi/dich-vu/',2959,2987,'internal',123,127,NULL,NULL,NULL,NULL,NULL),(1525,'https://fe2tech.com/vi/ve-chung-toi/',2959,3022,'internal',123,133,NULL,NULL,NULL,NULL,NULL),(1527,'https://fe2tech.com/ja/%e3%83%9b%e3%83%bc%e3%83%a0/',2961,2982,'internal',124,126,NULL,NULL,NULL,NULL,NULL),(1528,'https://fe2tech.com/ja/%e8%a3%bd%e5%93%81/',2961,3003,'internal',124,130,NULL,NULL,NULL,NULL,NULL),(1529,'https://fe2tech.com/ja/%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/',2961,2993,'internal',124,128,NULL,NULL,NULL,NULL,NULL),(1531,'https://fe2tech.com/ja/%e7%a7%81%e3%81%9f%e3%81%a1%e3%81%ab%e3%81%a4%e3%81%84%e3%81%a6/',2961,3028,'internal',124,134,NULL,NULL,NULL,NULL,NULL),(1532,'https://fe2tech.com/vi/service/dich-vu-phay-cnc/',2973,3043,'internal',125,137,NULL,NULL,NULL,NULL,NULL),(1533,'https://fe2tech.com/vi/service/dich-vu-phay-cnc/',2973,3043,'internal',125,137,NULL,NULL,NULL,NULL,NULL),(1534,'https://fe2tech.com/vi/service/dich-vu-tien-cnc/',2973,3047,'internal',125,139,NULL,NULL,NULL,NULL,NULL),(1535,'https://fe2tech.com/vi/service/dich-vu-tien-cnc/',2973,3047,'internal',125,139,NULL,NULL,NULL,NULL,NULL),(1536,'https://fe2tech.com/vi/service/dich-vu-mai-dung-cu-cnc/',2973,3053,'internal',125,141,NULL,NULL,NULL,NULL,NULL),(1537,'https://fe2tech.com/vi/service/dich-vu-mai-dung-cu-cnc/',2973,3053,'internal',125,141,NULL,NULL,NULL,NULL,NULL),(1538,'https://fe2tech.com/vi/service/dich-vu-gia-cong-kim-loai-tam/',2973,3057,'internal',125,143,NULL,NULL,NULL,NULL,NULL),(1539,'https://fe2tech.com/vi/service/dich-vu-gia-cong-kim-loai-tam/',2973,3057,'internal',125,143,NULL,NULL,NULL,NULL,NULL),(1555,'https://fe2tech.com/ja/service/nc%e3%83%95%e3%83%a9%e3%82%a4%e3%82%b9%e5%8a%a0%e5%b7%a5%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/',2982,3045,'internal',126,138,NULL,NULL,NULL,NULL,NULL),(1556,'https://fe2tech.com/ja/service/nc%e3%83%95%e3%83%a9%e3%82%a4%e3%82%b9%e5%8a%a0%e5%b7%a5%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/',2982,3045,'internal',126,138,NULL,NULL,NULL,NULL,NULL),(1557,'https://fe2tech.com/ja/service/cnc%e6%97%8b%e7%9b%a4%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/',2982,3051,'internal',126,140,NULL,NULL,NULL,NULL,NULL),(1558,'https://fe2tech.com/ja/service/cnc%e6%97%8b%e7%9b%a4%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/',2982,3051,'internal',126,140,NULL,NULL,NULL,NULL,NULL),(1559,'https://fe2tech.com/ja/service/cnc%e3%83%84%e3%83%bc%e3%83%ab%e3%82%b0%e3%83%a9%e3%82%a4%e3%83%b3%e3%83%80%e3%83%bc%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/',2982,3055,'internal',126,142,NULL,NULL,NULL,NULL,NULL),(1560,'https://fe2tech.com/ja/service/cnc%e3%83%84%e3%83%bc%e3%83%ab%e3%82%b0%e3%83%a9%e3%82%a4%e3%83%b3%e3%83%80%e3%83%bc%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9/',2982,3055,'internal',126,142,NULL,NULL,NULL,NULL,NULL),(1567,'https://fe2tech.com/wp-content/uploads/2024/12/FEE.jpg',28,3131,'image-in',14,NULL,301,301,15719,NULL,NULL),(1568,'https://fe2tech.com/wp-content/uploads/2024/12/FETS.png',28,3133,'image-in',14,NULL,301,301,7273,NULL,NULL),(1569,'https://fe2tech.com/service/cnc-milling-service/',9,2619,'internal',11,111,NULL,NULL,NULL,NULL,NULL),(1570,'https://fe2tech.com/service/cnc-milling-service/',9,2619,'internal',11,111,NULL,NULL,NULL,NULL,NULL),(1571,'https://fe2tech.com/service/cnc-turning-service/',9,2622,'internal',11,112,NULL,NULL,NULL,NULL,NULL),(1572,'https://fe2tech.com/service/cnc-turning-service/',9,2622,'internal',11,112,NULL,NULL,NULL,NULL,NULL),(1576,'https://www.youtube.com/watch?v=vUCVqLmXSPM',9,NULL,'external',11,NULL,NULL,NULL,NULL,NULL,NULL),(1577,'https://www.youtube.com/watch?v=vUCVqLmXSPM',2973,NULL,'external',125,NULL,NULL,NULL,NULL,NULL,NULL),(1578,'https://www.youtube.com/watch?v=vUCVqLmXSPM',2982,NULL,'external',126,NULL,NULL,NULL,NULL,NULL,NULL),(1636,'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok5.jpg',2126,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(1637,'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok4.png',2126,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(1638,'https://fe2tech.com/wp-content/uploads/2025/03/cnc-machine22.avif',2126,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(1639,'https://fe2tech.com/wp-content/uploads/2025/03/cnc-machine3.jpg',2126,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(1640,'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok3.png',2126,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(1641,'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok1.png',2126,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(1642,'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok2.png',2126,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(1643,'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok7.png',2126,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(1644,'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok9.jpg',2126,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(1645,'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok8.jpg',2126,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(1646,'https://fe2tech.com/wp-content/uploads/2025/03/z5709443476797_cb3e9e0d596ad6331366b8a711f46926.jpg',2126,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(1647,'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal1.jpg',2126,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(1648,'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal3.jpg',2126,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(1649,'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal4.jpg',2126,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(1650,'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal5.jpg',2126,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(1651,'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal7.jpg',2126,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(1652,'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal8.jpg',2126,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(1653,'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal9.jpg',2126,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(1654,'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal10.jpg',2126,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(1655,'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal2.png',2126,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(1656,'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal6.jpg',2126,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(1657,'https://fe2tech.com/wp-content/uploads/2025/03/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg',2126,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(1658,'https://fe2tech.com/wp-content/uploads/2025/03/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg',2126,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(1659,'https://fe2tech.com/wp-content/uploads/2025/03/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg',2126,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(1660,'https://fe2tech.com/wp-content/uploads/2025/03/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg',2126,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(1661,'https://fe2tech.com/wp-content/uploads/2025/03/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg',2126,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(1662,'https://fe2tech.com/wp-content/uploads/2025/03/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg',2126,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(1663,'https://fe2tech.com/wp-content/uploads/2025/03/IMG_1237.jpeg',2126,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(1664,'https://fe2tech.com/wp-content/uploads/2025/03/DSC00822.jpg',2126,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(1722,'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok5.jpg',2126,3247,'image-in',15,NULL,350,349,29069,NULL,NULL),(1723,'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok4.png',2126,3248,'image-in',15,NULL,350,350,22577,NULL,NULL),(1724,'https://fe2tech.com/wp-content/uploads/2025/03/cnc-machine22.avif',2126,3249,'image-in',15,NULL,1000,1000,25246,NULL,NULL),(1725,'https://fe2tech.com/wp-content/uploads/2025/03/cnc-machine3.jpg',2126,3250,'image-in',15,NULL,4000,6000,13369344,NULL,NULL),(1726,'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok3.png',2126,3251,'image-in',15,NULL,350,350,39664,NULL,NULL),(1727,'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok1.png',2126,3252,'image-in',15,NULL,350,350,37372,NULL,NULL),(1728,'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok2.png',2126,3253,'image-in',15,NULL,350,350,55479,NULL,NULL),(1729,'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok7.png',2126,3254,'image-in',15,NULL,350,350,37372,NULL,NULL),(1730,'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok9.jpg',2126,3255,'image-in',15,NULL,350,350,44871,NULL,NULL),(1731,'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok8.jpg',2126,3256,'image-in',15,NULL,350,350,20778,NULL,NULL),(1732,'https://fe2tech.com/wp-content/uploads/2025/03/z5709443476797_cb3e9e0d596ad6331366b8a711f46926.jpg',2126,3257,'image-in',15,NULL,1280,960,374734,NULL,NULL),(1733,'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal1.jpg',2126,3258,'image-in',15,NULL,1441,2560,500422,NULL,NULL),(1734,'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal3.jpg',2126,3259,'image-in',15,NULL,1441,2560,833799,NULL,NULL),(1735,'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal4.jpg',2126,3260,'image-in',15,NULL,1441,2560,751602,NULL,NULL),(1736,'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal5.jpg',2126,3261,'image-in',15,NULL,1920,2560,662023,NULL,NULL),(1737,'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal7.jpg',2126,3262,'image-in',15,NULL,1920,2560,965285,NULL,NULL),(1738,'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal8.jpg',2126,3263,'image-in',15,NULL,1920,2560,500961,NULL,NULL),(1739,'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal9.jpg',2126,3264,'image-in',15,NULL,2560,1920,517014,NULL,NULL),(1740,'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal10.jpg',2126,3265,'image-in',15,NULL,2560,1920,609283,NULL,NULL),(1741,'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal2.png',2126,3266,'image-in',15,NULL,2560,1441,2492639,NULL,NULL),(1742,'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal6.jpg',2126,3267,'image-in',15,NULL,2560,1920,871774,NULL,NULL),(1743,'https://fe2tech.com/wp-content/uploads/2025/03/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg',2126,3268,'image-in',15,NULL,2560,1920,649145,NULL,NULL),(1744,'https://fe2tech.com/wp-content/uploads/2025/03/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg',2126,3269,'image-in',15,NULL,2560,1153,477721,NULL,NULL),(1745,'https://fe2tech.com/wp-content/uploads/2025/03/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg',2126,3270,'image-in',15,NULL,2560,1920,502776,NULL,NULL),(1746,'https://fe2tech.com/wp-content/uploads/2025/03/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg',2126,3271,'image-in',15,NULL,2560,1920,549264,NULL,NULL),(1747,'https://fe2tech.com/wp-content/uploads/2025/03/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg',2126,3272,'image-in',15,NULL,2560,1920,915003,NULL,NULL),(1748,'https://fe2tech.com/wp-content/uploads/2025/03/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg',2126,3273,'image-in',15,NULL,2560,1920,749395,NULL,NULL),(1749,'https://fe2tech.com/wp-content/uploads/2025/03/IMG_1237.jpeg',2126,3274,'image-in',15,NULL,3024,3024,1158730,NULL,NULL),(1750,'https://fe2tech.com/wp-content/uploads/2025/03/DSC00822.jpg',2126,3275,'image-in',15,NULL,4000,6000,13598720,NULL,NULL),(1751,'https://fe2tech.com/wp-content/uploads/2025/03/Ab6277516622141b68178f66bebaadd93o.jpg_350x350.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1752,'https://fe2tech.com/wp-content/uploads/2025/03/A4969ef2343a244608cc511d1e7be28e2X.png_350x350.png',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1753,'https://fe2tech.com/wp-content/uploads/2025/03/H9be6461494cf4fe7998192dc483066c9v.png_350x350.png',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1754,'https://fe2tech.com/wp-content/uploads/2025/03/H4cbac47ae6cf4705b966668ca1abad509.png_350x350.png',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1755,'https://fe2tech.com/wp-content/uploads/2025/03/H6c00bd237d8b46d4b06a1cc6ef76accfE.png_350x350.png',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1756,'https://fe2tech.com/wp-content/uploads/2025/03/H71abe7a763a345ae87dcf70c25a70a32M.png_350x350.png',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1757,'https://fe2tech.com/wp-content/uploads/2025/03/2.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1758,'https://fe2tech.com/wp-content/uploads/2025/03/A045fe45345664394a2a80499b4bd2117i.jpg_350x350.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1759,'https://fe2tech.com/wp-content/uploads/2025/03/A86e039df1c9d4e809ea53dfd676ba67aO.jpg_350x350.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1760,'https://fe2tech.com/wp-content/uploads/2025/03/A786dc427af46457ea923c41ea7688f67Q.jpg_350x350.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1761,'https://fe2tech.com/wp-content/uploads/2025/03/6.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1762,'https://fe2tech.com/wp-content/uploads/2025/03/A2ed5a5c3f8f544c8910a3fe29da5e2984.jpg_350x350.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1763,'https://fe2tech.com/wp-content/uploads/2025/03/A3c80646854cd4401b6b737a80e8e29f2Z.jpg_350x350.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1764,'https://fe2tech.com/wp-content/uploads/2025/03/A53f94fffa0e64ba8a47330e85a179214l.jpg_350x350.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1765,'https://fe2tech.com/wp-content/uploads/2025/03/Aa559aaa8e8d44868b700967e182631e0O.jpg_350x350.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1766,'https://fe2tech.com/wp-content/uploads/2025/03/4.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1767,'https://fe2tech.com/wp-content/uploads/2025/03/A29209fca14e3491286a7ae2a7d535066t.jpg_350x350.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1768,'https://fe2tech.com/wp-content/uploads/2025/03/Afd6e5018d54a4c319b4941af57e38fc1e.jpg_350x350.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1769,'https://fe2tech.com/wp-content/uploads/2025/03/A8626df5ae89c458484cbdeab6b0a2768E.jpg_350x350.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1770,'https://fe2tech.com/wp-content/uploads/2025/03/Aec2a4cd895e648b6bc7174d864e103329.jpg_350x350.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1771,'https://fe2tech.com/wp-content/uploads/2025/03/1.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1772,'https://fe2tech.com/wp-content/uploads/2025/03/A5fa71b0eddf648049c5f33d331738460m.jpg_350x350.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1773,'https://fe2tech.com/wp-content/uploads/2025/03/A9bc1872697d649e7a28d14c48cd6b71bq.jpg_350x350.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1774,'https://fe2tech.com/wp-content/uploads/2025/03/Ad0c782b84615484d8303ad964cd302a4C.jpg_350x350.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1775,'https://fe2tech.com/wp-content/uploads/2025/03/Aec3f44d2c0cf4536870b19097b5035f4A.jpg_350x350.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1776,'https://fe2tech.com/wp-content/uploads/2025/03/8.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1777,'https://fe2tech.com/wp-content/uploads/2025/03/A5df619ce89ec42189a5c4d05bbba4f2dw.jpg_350x350.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1778,'https://fe2tech.com/wp-content/uploads/2025/03/A9207015598ae47e4ba57d5d6755a7945J.jpg_350x350.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1779,'https://fe2tech.com/wp-content/uploads/2025/03/Aa67514ca153a43208612611af15ae689t.jpg_350x350.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1780,'https://fe2tech.com/wp-content/uploads/2025/03/Ac8c57af57fc04a9b8afbcf5214d8b125a.jpg_350x350.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1781,'https://fe2tech.com/wp-content/uploads/2025/03/Aea1a2ea6c9d04b78977d1e8c907e721cR.jpg_350x350.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1782,'https://fe2tech.com/wp-content/uploads/2025/03/5.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1783,'https://fe2tech.com/wp-content/uploads/2025/03/7.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1784,'https://fe2tech.com/wp-content/uploads/2025/03/A4fa22b3db4704145a9c8f2b6d413b4b7Y.jpg_350x350.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1785,'https://fe2tech.com/wp-content/uploads/2025/03/A8cfa154ca70a46c5965e993255b53ecbg.jpg_350x350.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1786,'https://fe2tech.com/wp-content/uploads/2025/03/A967c634a517c48f38c23d4766db5bba1a.jpg_350x350.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1787,'https://fe2tech.com/wp-content/uploads/2025/03/A462413b6de2b401ba60e99bbe1d15e33K.jpg_350x350.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1788,'https://fe2tech.com/wp-content/uploads/2025/03/A661399142a7247278bbf69a9d6007556W.jpg_350x350.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1789,'https://fe2tech.com/wp-content/uploads/2025/03/10.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1790,'https://fe2tech.com/wp-content/uploads/2025/03/A16eb71f546c44c4ba00c6afe46464d593.jpg_350x350.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1791,'https://fe2tech.com/wp-content/uploads/2025/03/A72a21ba969c84b98b63b985380b97ef5O.jpg_350x350.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1792,'https://fe2tech.com/wp-content/uploads/2025/03/A99574ebe1a6c432abebb91680e3e227e0.jpg_350x350.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1793,'https://fe2tech.com/wp-content/uploads/2025/03/Ac6d9a3b79a904eeb9c925afa374ec53aA.jpg_350x350.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1794,'https://fe2tech.com/wp-content/uploads/2025/03/Adef05c3212194f259f1556cd5081ab3eg.jpg_350x350.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1795,'https://fe2tech.com/wp-content/uploads/2025/03/3.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1796,'https://fe2tech.com/wp-content/uploads/2025/03/9.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1797,'https://fe2tech.com/wp-content/uploads/2025/03/A268aa8f9b65c4cdf9f45e594f2cd8ad4M.jpg_350x350.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1798,'https://fe2tech.com/wp-content/uploads/2025/03/A864432f2571743689342ae173ee9dc9fd.jpg_350x350.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1799,'https://fe2tech.com/wp-content/uploads/2025/03/Abd43851c92654bd99cfdca45d896fbcbB.jpg_350x350.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1800,'https://fe2tech.com/wp-content/uploads/2025/03/Acdd1226298dd4613abf021bdcaad320b0.jpg_350x350.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1801,'https://fe2tech.com/wp-content/uploads/2025/03/Ae91bf7f51db3402ebaff610c299e9aacF.jpg_350x350.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1802,'https://fe2tech.com/wp-content/uploads/2025/03/A05f18d47e70948ae8795111d055f42fa2.jpg_350x350.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1803,'https://fe2tech.com/wp-content/uploads/2025/03/A5c37792f38434388a02a0479fcbc4123T.jpg_350x350.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1804,'https://fe2tech.com/wp-content/uploads/2025/03/A8c420992f47745509f4f292ac7bd2258H.jpg_350x350.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1805,'https://fe2tech.com/wp-content/uploads/2025/03/A1001e63ea59149f8a81abb92d5d5fe713.jpg_350x350.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1806,'https://fe2tech.com/wp-content/uploads/2025/03/A36346f881b104996b6c070b5d2cebff8u.jpg_350x350.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1807,'https://fe2tech.com/wp-content/uploads/2025/03/A157183c07a764eb8957bc4cd13982808i.jpg_350x350.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1808,'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok5.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1809,'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok4.png',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1810,'https://fe2tech.com/wp-content/uploads/2025/03/cnc-machine22.avif',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1811,'https://fe2tech.com/wp-content/uploads/2025/03/cnc-machine3.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1812,'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok3.png',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1813,'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok1.png',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1814,'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok2.png',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1815,'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok7.png',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1816,'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok9.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1817,'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok8.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1818,'https://fe2tech.com/wp-content/uploads/2025/03/z5709443476797_cb3e9e0d596ad6331366b8a711f46926.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1819,'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal1.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1820,'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal3.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1821,'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal4.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1822,'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal5.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1823,'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal7.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1824,'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal8.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1825,'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal9.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1826,'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal10.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1827,'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal2.png',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1828,'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal6.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1829,'https://fe2tech.com/wp-content/uploads/2025/03/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1830,'https://fe2tech.com/wp-content/uploads/2025/03/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1831,'https://fe2tech.com/wp-content/uploads/2025/03/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1832,'https://fe2tech.com/wp-content/uploads/2025/03/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1833,'https://fe2tech.com/wp-content/uploads/2025/03/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1834,'https://fe2tech.com/wp-content/uploads/2025/03/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1835,'https://fe2tech.com/wp-content/uploads/2025/03/IMG_1237.jpeg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1836,'https://fe2tech.com/wp-content/uploads/2025/03/DSC00822.jpg',2998,NULL,'internal',129,NULL,NULL,NULL,NULL,NULL,NULL),(1837,'https://fe2tech.com/wp-content/uploads/2025/03/Ab6277516622141b68178f66bebaadd93o.jpg_350x350.jpg',2998,3190,'image-in',129,NULL,263,350,25769,NULL,NULL),(1838,'https://fe2tech.com/wp-content/uploads/2025/03/A4969ef2343a244608cc511d1e7be28e2X.png_350x350.png',2998,3191,'image-in',129,NULL,350,350,39664,NULL,NULL),(1839,'https://fe2tech.com/wp-content/uploads/2025/03/H9be6461494cf4fe7998192dc483066c9v.png_350x350.png',2998,3192,'image-in',129,NULL,350,350,12957,NULL,NULL),(1840,'https://fe2tech.com/wp-content/uploads/2025/03/H4cbac47ae6cf4705b966668ca1abad509.png_350x350.png',2998,3193,'image-in',129,NULL,350,350,26933,NULL,NULL),(1841,'https://fe2tech.com/wp-content/uploads/2025/03/H6c00bd237d8b46d4b06a1cc6ef76accfE.png_350x350.png',2998,3194,'image-in',129,NULL,350,350,112415,NULL,NULL),(1842,'https://fe2tech.com/wp-content/uploads/2025/03/H71abe7a763a345ae87dcf70c25a70a32M.png_350x350.png',2998,3195,'image-in',129,NULL,350,350,55479,NULL,NULL),(1843,'https://fe2tech.com/wp-content/uploads/2025/03/2.jpg',2998,3196,'image-in',129,NULL,350,350,19302,NULL,NULL),(1844,'https://fe2tech.com/wp-content/uploads/2025/03/A045fe45345664394a2a80499b4bd2117i.jpg_350x350.jpg',2998,3197,'image-in',129,NULL,350,350,21831,NULL,NULL),(1845,'https://fe2tech.com/wp-content/uploads/2025/03/A86e039df1c9d4e809ea53dfd676ba67aO.jpg_350x350.jpg',2998,3198,'image-in',129,NULL,350,350,28990,NULL,NULL),(1846,'https://fe2tech.com/wp-content/uploads/2025/03/A786dc427af46457ea923c41ea7688f67Q.jpg_350x350.jpg',2998,3199,'image-in',129,NULL,350,350,18081,NULL,NULL),(1847,'https://fe2tech.com/wp-content/uploads/2025/03/6.jpg',2998,3200,'image-in',129,NULL,350,350,16798,NULL,NULL),(1848,'https://fe2tech.com/wp-content/uploads/2025/03/A2ed5a5c3f8f544c8910a3fe29da5e2984.jpg_350x350.jpg',2998,3201,'image-in',129,NULL,350,350,44871,NULL,NULL),(1849,'https://fe2tech.com/wp-content/uploads/2025/03/A3c80646854cd4401b6b737a80e8e29f2Z.jpg_350x350.jpg',2998,3202,'image-in',129,NULL,350,350,14619,NULL,NULL),(1850,'https://fe2tech.com/wp-content/uploads/2025/03/A53f94fffa0e64ba8a47330e85a179214l.jpg_350x350.jpg',2998,3203,'image-in',129,NULL,350,350,24523,NULL,NULL),(1851,'https://fe2tech.com/wp-content/uploads/2025/03/Aa559aaa8e8d44868b700967e182631e0O.jpg_350x350.jpg',2998,3204,'image-in',129,NULL,350,350,17716,NULL,NULL),(1852,'https://fe2tech.com/wp-content/uploads/2025/03/4.jpg',2998,3205,'image-in',129,NULL,350,350,23338,NULL,NULL),(1853,'https://fe2tech.com/wp-content/uploads/2025/03/A29209fca14e3491286a7ae2a7d535066t.jpg_350x350.jpg',2998,3206,'image-in',129,NULL,350,350,10665,NULL,NULL),(1854,'https://fe2tech.com/wp-content/uploads/2025/03/Afd6e5018d54a4c319b4941af57e38fc1e.jpg_350x350.jpg',2998,3207,'image-in',129,NULL,350,350,15243,NULL,NULL),(1855,'https://fe2tech.com/wp-content/uploads/2025/03/A8626df5ae89c458484cbdeab6b0a2768E.jpg_350x350.jpg',2998,3208,'image-in',129,NULL,350,350,19229,NULL,NULL),(1856,'https://fe2tech.com/wp-content/uploads/2025/03/Aec2a4cd895e648b6bc7174d864e103329.jpg_350x350.jpg',2998,3209,'image-in',129,NULL,350,350,40363,NULL,NULL),(1857,'https://fe2tech.com/wp-content/uploads/2025/03/1.jpg',2998,3210,'image-in',129,NULL,350,350,21135,NULL,NULL),(1858,'https://fe2tech.com/wp-content/uploads/2025/03/A5fa71b0eddf648049c5f33d331738460m.jpg_350x350.jpg',2998,3211,'image-in',129,NULL,350,350,22139,NULL,NULL),(1859,'https://fe2tech.com/wp-content/uploads/2025/03/A9bc1872697d649e7a28d14c48cd6b71bq.jpg_350x350.jpg',2998,3212,'image-in',129,NULL,350,350,19615,NULL,NULL),(1860,'https://fe2tech.com/wp-content/uploads/2025/03/Ad0c782b84615484d8303ad964cd302a4C.jpg_350x350.jpg',2998,3213,'image-in',129,NULL,350,350,25875,NULL,NULL),(1861,'https://fe2tech.com/wp-content/uploads/2025/03/Aec3f44d2c0cf4536870b19097b5035f4A.jpg_350x350.jpg',2998,3214,'image-in',129,NULL,350,350,26474,NULL,NULL),(1862,'https://fe2tech.com/wp-content/uploads/2025/03/8.jpg',2998,3215,'image-in',129,NULL,350,350,25144,NULL,NULL),(1863,'https://fe2tech.com/wp-content/uploads/2025/03/A5df619ce89ec42189a5c4d05bbba4f2dw.jpg_350x350.jpg',2998,3216,'image-in',129,NULL,350,350,29190,NULL,NULL),(1864,'https://fe2tech.com/wp-content/uploads/2025/03/A9207015598ae47e4ba57d5d6755a7945J.jpg_350x350.jpg',2998,3217,'image-in',129,NULL,350,350,20385,NULL,NULL),(1865,'https://fe2tech.com/wp-content/uploads/2025/03/Aa67514ca153a43208612611af15ae689t.jpg_350x350.jpg',2998,3218,'image-in',129,NULL,350,350,30060,NULL,NULL),(1866,'https://fe2tech.com/wp-content/uploads/2025/03/Ac8c57af57fc04a9b8afbcf5214d8b125a.jpg_350x350.jpg',2998,3219,'image-in',129,NULL,350,350,29312,NULL,NULL),(1867,'https://fe2tech.com/wp-content/uploads/2025/03/Aea1a2ea6c9d04b78977d1e8c907e721cR.jpg_350x350.jpg',2998,3220,'image-in',129,NULL,350,350,36706,NULL,NULL),(1868,'https://fe2tech.com/wp-content/uploads/2025/03/5.jpg',2998,3221,'image-in',129,NULL,350,350,34546,NULL,NULL),(1869,'https://fe2tech.com/wp-content/uploads/2025/03/7.jpg',2998,3222,'image-in',129,NULL,350,350,36811,NULL,NULL),(1870,'https://fe2tech.com/wp-content/uploads/2025/03/A4fa22b3db4704145a9c8f2b6d413b4b7Y.jpg_350x350.jpg',2998,3223,'image-in',129,NULL,350,350,32246,NULL,NULL),(1871,'https://fe2tech.com/wp-content/uploads/2025/03/A8cfa154ca70a46c5965e993255b53ecbg.jpg_350x350.jpg',2998,3224,'image-in',129,NULL,350,350,26367,NULL,NULL),(1872,'https://fe2tech.com/wp-content/uploads/2025/03/A967c634a517c48f38c23d4766db5bba1a.jpg_350x350.jpg',2998,3225,'image-in',129,NULL,350,350,34940,NULL,NULL),(1873,'https://fe2tech.com/wp-content/uploads/2025/03/A462413b6de2b401ba60e99bbe1d15e33K.jpg_350x350.jpg',2998,3226,'image-in',129,NULL,350,350,36513,NULL,NULL),(1874,'https://fe2tech.com/wp-content/uploads/2025/03/A661399142a7247278bbf69a9d6007556W.jpg_350x350.jpg',2998,3227,'image-in',129,NULL,350,350,37535,NULL,NULL),(1875,'https://fe2tech.com/wp-content/uploads/2025/03/10.jpg',2998,3228,'image-in',129,NULL,263,350,15104,NULL,NULL),(1876,'https://fe2tech.com/wp-content/uploads/2025/03/A16eb71f546c44c4ba00c6afe46464d593.jpg_350x350.jpg',2998,3229,'image-in',129,NULL,350,350,18529,NULL,NULL),(1877,'https://fe2tech.com/wp-content/uploads/2025/03/A72a21ba969c84b98b63b985380b97ef5O.jpg_350x350.jpg',2998,3230,'image-in',129,NULL,350,350,37208,NULL,NULL),(1878,'https://fe2tech.com/wp-content/uploads/2025/03/A99574ebe1a6c432abebb91680e3e227e0.jpg_350x350.jpg',2998,3231,'image-in',129,NULL,350,350,21006,NULL,NULL),(1879,'https://fe2tech.com/wp-content/uploads/2025/03/Ac6d9a3b79a904eeb9c925afa374ec53aA.jpg_350x350.jpg',2998,3232,'image-in',129,NULL,350,350,21362,NULL,NULL),(1880,'https://fe2tech.com/wp-content/uploads/2025/03/Adef05c3212194f259f1556cd5081ab3eg.jpg_350x350.jpg',2998,3233,'image-in',129,NULL,350,350,20778,NULL,NULL),(1881,'https://fe2tech.com/wp-content/uploads/2025/03/3.jpg',2998,3234,'image-in',129,NULL,350,350,29287,NULL,NULL),(1882,'https://fe2tech.com/wp-content/uploads/2025/03/9.jpg',2998,3235,'image-in',129,NULL,350,350,17026,NULL,NULL),(1883,'https://fe2tech.com/wp-content/uploads/2025/03/A268aa8f9b65c4cdf9f45e594f2cd8ad4M.jpg_350x350.jpg',2998,3236,'image-in',129,NULL,350,350,24267,NULL,NULL),(1884,'https://fe2tech.com/wp-content/uploads/2025/03/A864432f2571743689342ae173ee9dc9fd.jpg_350x350.jpg',2998,3237,'image-in',129,NULL,350,350,38370,NULL,NULL),(1885,'https://fe2tech.com/wp-content/uploads/2025/03/Abd43851c92654bd99cfdca45d896fbcbB.jpg_350x350.jpg',2998,3238,'image-in',129,NULL,350,350,20601,NULL,NULL),(1886,'https://fe2tech.com/wp-content/uploads/2025/03/Acdd1226298dd4613abf021bdcaad320b0.jpg_350x350.jpg',2998,3239,'image-in',129,NULL,350,350,22466,NULL,NULL),(1887,'https://fe2tech.com/wp-content/uploads/2025/03/Ae91bf7f51db3402ebaff610c299e9aacF.jpg_350x350.jpg',2998,3240,'image-in',129,NULL,350,350,19076,NULL,NULL),(1888,'https://fe2tech.com/wp-content/uploads/2025/03/A05f18d47e70948ae8795111d055f42fa2.jpg_350x350.jpg',2998,3241,'image-in',129,NULL,350,350,14275,NULL,NULL),(1889,'https://fe2tech.com/wp-content/uploads/2025/03/A5c37792f38434388a02a0479fcbc4123T.jpg_350x350.jpg',2998,3242,'image-in',129,NULL,350,350,18025,NULL,NULL),(1890,'https://fe2tech.com/wp-content/uploads/2025/03/A8c420992f47745509f4f292ac7bd2258H.jpg_350x350.jpg',2998,3243,'image-in',129,NULL,350,350,20072,NULL,NULL),(1891,'https://fe2tech.com/wp-content/uploads/2025/03/A1001e63ea59149f8a81abb92d5d5fe713.jpg_350x350.jpg',2998,3244,'image-in',129,NULL,350,350,16777,NULL,NULL),(1892,'https://fe2tech.com/wp-content/uploads/2025/03/A36346f881b104996b6c070b5d2cebff8u.jpg_350x350.jpg',2998,3245,'image-in',129,NULL,350,350,18590,NULL,NULL),(1893,'https://fe2tech.com/wp-content/uploads/2025/03/A157183c07a764eb8957bc4cd13982808i.jpg_350x350.jpg',2998,3246,'image-in',129,NULL,350,350,12281,NULL,NULL),(1894,'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok5.jpg',2998,3247,'image-in',129,NULL,350,349,29069,NULL,NULL),(1895,'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok4.png',2998,3248,'image-in',129,NULL,350,350,22577,NULL,NULL),(1896,'https://fe2tech.com/wp-content/uploads/2025/03/cnc-machine22.avif',2998,3249,'image-in',129,NULL,1000,1000,25246,NULL,NULL),(1897,'https://fe2tech.com/wp-content/uploads/2025/03/cnc-machine3.jpg',2998,3250,'image-in',129,NULL,4000,6000,13369344,NULL,NULL),(1898,'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok3.png',2998,3251,'image-in',129,NULL,350,350,39664,NULL,NULL),(1899,'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok1.png',2998,3252,'image-in',129,NULL,350,350,37372,NULL,NULL),(1900,'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok2.png',2998,3253,'image-in',129,NULL,350,350,55479,NULL,NULL),(1901,'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok7.png',2998,3254,'image-in',129,NULL,350,350,37372,NULL,NULL),(1902,'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok9.jpg',2998,3255,'image-in',129,NULL,350,350,44871,NULL,NULL),(1903,'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok8.jpg',2998,3256,'image-in',129,NULL,350,350,20778,NULL,NULL),(1904,'https://fe2tech.com/wp-content/uploads/2025/03/z5709443476797_cb3e9e0d596ad6331366b8a711f46926.jpg',2998,3257,'image-in',129,NULL,1280,960,374734,NULL,NULL),(1905,'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal1.jpg',2998,3258,'image-in',129,NULL,1441,2560,500422,NULL,NULL),(1906,'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal3.jpg',2998,3259,'image-in',129,NULL,1441,2560,833799,NULL,NULL),(1907,'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal4.jpg',2998,3260,'image-in',129,NULL,1441,2560,751602,NULL,NULL),(1908,'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal5.jpg',2998,3261,'image-in',129,NULL,1920,2560,662023,NULL,NULL),(1909,'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal7.jpg',2998,3262,'image-in',129,NULL,1920,2560,965285,NULL,NULL),(1910,'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal8.jpg',2998,3263,'image-in',129,NULL,1920,2560,500961,NULL,NULL),(1911,'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal9.jpg',2998,3264,'image-in',129,NULL,2560,1920,517014,NULL,NULL),(1912,'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal10.jpg',2998,3265,'image-in',129,NULL,2560,1920,609283,NULL,NULL),(1913,'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal2.png',2998,3266,'image-in',129,NULL,2560,1441,2492639,NULL,NULL),(1914,'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal6.jpg',2998,3267,'image-in',129,NULL,2560,1920,871774,NULL,NULL),(1915,'https://fe2tech.com/wp-content/uploads/2025/03/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg',2998,3268,'image-in',129,NULL,2560,1920,649145,NULL,NULL),(1916,'https://fe2tech.com/wp-content/uploads/2025/03/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg',2998,3269,'image-in',129,NULL,2560,1153,477721,NULL,NULL),(1917,'https://fe2tech.com/wp-content/uploads/2025/03/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg',2998,3270,'image-in',129,NULL,2560,1920,502776,NULL,NULL),(1918,'https://fe2tech.com/wp-content/uploads/2025/03/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg',2998,3271,'image-in',129,NULL,2560,1920,549264,NULL,NULL),(1919,'https://fe2tech.com/wp-content/uploads/2025/03/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg',2998,3272,'image-in',129,NULL,2560,1920,915003,NULL,NULL),(1920,'https://fe2tech.com/wp-content/uploads/2025/03/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg',2998,3273,'image-in',129,NULL,2560,1920,749395,NULL,NULL),(1921,'https://fe2tech.com/wp-content/uploads/2025/03/IMG_1237.jpeg',2998,3274,'image-in',129,NULL,3024,3024,1158730,NULL,NULL),(1922,'https://fe2tech.com/wp-content/uploads/2025/03/DSC00822.jpg',2998,3275,'image-in',129,NULL,4000,6000,13598720,NULL,NULL),(1923,'https://fe2tech.com/wp-content/uploads/2025/03/Ab6277516622141b68178f66bebaadd93o.jpg_350x350.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1924,'https://fe2tech.com/wp-content/uploads/2025/03/A4969ef2343a244608cc511d1e7be28e2X.png_350x350.png',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1925,'https://fe2tech.com/wp-content/uploads/2025/03/H9be6461494cf4fe7998192dc483066c9v.png_350x350.png',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1926,'https://fe2tech.com/wp-content/uploads/2025/03/H4cbac47ae6cf4705b966668ca1abad509.png_350x350.png',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1927,'https://fe2tech.com/wp-content/uploads/2025/03/H6c00bd237d8b46d4b06a1cc6ef76accfE.png_350x350.png',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1928,'https://fe2tech.com/wp-content/uploads/2025/03/H71abe7a763a345ae87dcf70c25a70a32M.png_350x350.png',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1929,'https://fe2tech.com/wp-content/uploads/2025/03/2.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1930,'https://fe2tech.com/wp-content/uploads/2025/03/A045fe45345664394a2a80499b4bd2117i.jpg_350x350.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1931,'https://fe2tech.com/wp-content/uploads/2025/03/A86e039df1c9d4e809ea53dfd676ba67aO.jpg_350x350.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1932,'https://fe2tech.com/wp-content/uploads/2025/03/A786dc427af46457ea923c41ea7688f67Q.jpg_350x350.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1933,'https://fe2tech.com/wp-content/uploads/2025/03/6.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1934,'https://fe2tech.com/wp-content/uploads/2025/03/A2ed5a5c3f8f544c8910a3fe29da5e2984.jpg_350x350.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1935,'https://fe2tech.com/wp-content/uploads/2025/03/A3c80646854cd4401b6b737a80e8e29f2Z.jpg_350x350.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1936,'https://fe2tech.com/wp-content/uploads/2025/03/A53f94fffa0e64ba8a47330e85a179214l.jpg_350x350.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1937,'https://fe2tech.com/wp-content/uploads/2025/03/Aa559aaa8e8d44868b700967e182631e0O.jpg_350x350.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1938,'https://fe2tech.com/wp-content/uploads/2025/03/4.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1939,'https://fe2tech.com/wp-content/uploads/2025/03/A29209fca14e3491286a7ae2a7d535066t.jpg_350x350.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1940,'https://fe2tech.com/wp-content/uploads/2025/03/Afd6e5018d54a4c319b4941af57e38fc1e.jpg_350x350.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1941,'https://fe2tech.com/wp-content/uploads/2025/03/A8626df5ae89c458484cbdeab6b0a2768E.jpg_350x350.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1942,'https://fe2tech.com/wp-content/uploads/2025/03/Aec2a4cd895e648b6bc7174d864e103329.jpg_350x350.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1943,'https://fe2tech.com/wp-content/uploads/2025/03/1.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1944,'https://fe2tech.com/wp-content/uploads/2025/03/A5fa71b0eddf648049c5f33d331738460m.jpg_350x350.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1945,'https://fe2tech.com/wp-content/uploads/2025/03/A9bc1872697d649e7a28d14c48cd6b71bq.jpg_350x350.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1946,'https://fe2tech.com/wp-content/uploads/2025/03/Ad0c782b84615484d8303ad964cd302a4C.jpg_350x350.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1947,'https://fe2tech.com/wp-content/uploads/2025/03/Aec3f44d2c0cf4536870b19097b5035f4A.jpg_350x350.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1948,'https://fe2tech.com/wp-content/uploads/2025/03/8.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1949,'https://fe2tech.com/wp-content/uploads/2025/03/A5df619ce89ec42189a5c4d05bbba4f2dw.jpg_350x350.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1950,'https://fe2tech.com/wp-content/uploads/2025/03/A9207015598ae47e4ba57d5d6755a7945J.jpg_350x350.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1951,'https://fe2tech.com/wp-content/uploads/2025/03/Aa67514ca153a43208612611af15ae689t.jpg_350x350.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1952,'https://fe2tech.com/wp-content/uploads/2025/03/Ac8c57af57fc04a9b8afbcf5214d8b125a.jpg_350x350.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1953,'https://fe2tech.com/wp-content/uploads/2025/03/Aea1a2ea6c9d04b78977d1e8c907e721cR.jpg_350x350.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1954,'https://fe2tech.com/wp-content/uploads/2025/03/5.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1955,'https://fe2tech.com/wp-content/uploads/2025/03/7.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1956,'https://fe2tech.com/wp-content/uploads/2025/03/A4fa22b3db4704145a9c8f2b6d413b4b7Y.jpg_350x350.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1957,'https://fe2tech.com/wp-content/uploads/2025/03/A8cfa154ca70a46c5965e993255b53ecbg.jpg_350x350.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1958,'https://fe2tech.com/wp-content/uploads/2025/03/A967c634a517c48f38c23d4766db5bba1a.jpg_350x350.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1959,'https://fe2tech.com/wp-content/uploads/2025/03/A462413b6de2b401ba60e99bbe1d15e33K.jpg_350x350.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1960,'https://fe2tech.com/wp-content/uploads/2025/03/A661399142a7247278bbf69a9d6007556W.jpg_350x350.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1961,'https://fe2tech.com/wp-content/uploads/2025/03/10.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1962,'https://fe2tech.com/wp-content/uploads/2025/03/A16eb71f546c44c4ba00c6afe46464d593.jpg_350x350.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1963,'https://fe2tech.com/wp-content/uploads/2025/03/A72a21ba969c84b98b63b985380b97ef5O.jpg_350x350.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1964,'https://fe2tech.com/wp-content/uploads/2025/03/A99574ebe1a6c432abebb91680e3e227e0.jpg_350x350.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1965,'https://fe2tech.com/wp-content/uploads/2025/03/Ac6d9a3b79a904eeb9c925afa374ec53aA.jpg_350x350.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1966,'https://fe2tech.com/wp-content/uploads/2025/03/Adef05c3212194f259f1556cd5081ab3eg.jpg_350x350.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1967,'https://fe2tech.com/wp-content/uploads/2025/03/3.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1968,'https://fe2tech.com/wp-content/uploads/2025/03/9.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1969,'https://fe2tech.com/wp-content/uploads/2025/03/A268aa8f9b65c4cdf9f45e594f2cd8ad4M.jpg_350x350.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1970,'https://fe2tech.com/wp-content/uploads/2025/03/A864432f2571743689342ae173ee9dc9fd.jpg_350x350.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1971,'https://fe2tech.com/wp-content/uploads/2025/03/Abd43851c92654bd99cfdca45d896fbcbB.jpg_350x350.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1972,'https://fe2tech.com/wp-content/uploads/2025/03/Acdd1226298dd4613abf021bdcaad320b0.jpg_350x350.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1973,'https://fe2tech.com/wp-content/uploads/2025/03/Ae91bf7f51db3402ebaff610c299e9aacF.jpg_350x350.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1974,'https://fe2tech.com/wp-content/uploads/2025/03/A05f18d47e70948ae8795111d055f42fa2.jpg_350x350.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1975,'https://fe2tech.com/wp-content/uploads/2025/03/A5c37792f38434388a02a0479fcbc4123T.jpg_350x350.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1976,'https://fe2tech.com/wp-content/uploads/2025/03/A8c420992f47745509f4f292ac7bd2258H.jpg_350x350.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1977,'https://fe2tech.com/wp-content/uploads/2025/03/A1001e63ea59149f8a81abb92d5d5fe713.jpg_350x350.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1978,'https://fe2tech.com/wp-content/uploads/2025/03/A36346f881b104996b6c070b5d2cebff8u.jpg_350x350.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1979,'https://fe2tech.com/wp-content/uploads/2025/03/A157183c07a764eb8957bc4cd13982808i.jpg_350x350.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1980,'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok5.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1981,'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok4.png',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1982,'https://fe2tech.com/wp-content/uploads/2025/03/cnc-machine22.avif',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1983,'https://fe2tech.com/wp-content/uploads/2025/03/cnc-machine3.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1984,'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok3.png',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1985,'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok1.png',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1986,'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok2.png',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1987,'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok7.png',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1988,'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok9.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1989,'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok8.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1990,'https://fe2tech.com/wp-content/uploads/2025/03/z5709443476797_cb3e9e0d596ad6331366b8a711f46926.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1991,'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal1.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1992,'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal3.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1993,'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal4.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1994,'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal5.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1995,'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal7.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1996,'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal8.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1997,'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal9.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1998,'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal10.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(1999,'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal2.png',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(2000,'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal6.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(2001,'https://fe2tech.com/wp-content/uploads/2025/03/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(2002,'https://fe2tech.com/wp-content/uploads/2025/03/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(2003,'https://fe2tech.com/wp-content/uploads/2025/03/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(2004,'https://fe2tech.com/wp-content/uploads/2025/03/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(2005,'https://fe2tech.com/wp-content/uploads/2025/03/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(2006,'https://fe2tech.com/wp-content/uploads/2025/03/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(2007,'https://fe2tech.com/wp-content/uploads/2025/03/IMG_1237.jpeg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(2008,'https://fe2tech.com/wp-content/uploads/2025/03/DSC00822.jpg',3003,NULL,'internal',130,NULL,NULL,NULL,NULL,NULL,NULL),(2009,'https://fe2tech.com/wp-content/uploads/2025/03/Ab6277516622141b68178f66bebaadd93o.jpg_350x350.jpg',3003,3190,'image-in',130,NULL,263,350,25769,NULL,NULL),(2010,'https://fe2tech.com/wp-content/uploads/2025/03/A4969ef2343a244608cc511d1e7be28e2X.png_350x350.png',3003,3191,'image-in',130,NULL,350,350,39664,NULL,NULL),(2011,'https://fe2tech.com/wp-content/uploads/2025/03/H9be6461494cf4fe7998192dc483066c9v.png_350x350.png',3003,3192,'image-in',130,NULL,350,350,12957,NULL,NULL),(2012,'https://fe2tech.com/wp-content/uploads/2025/03/H4cbac47ae6cf4705b966668ca1abad509.png_350x350.png',3003,3193,'image-in',130,NULL,350,350,26933,NULL,NULL),(2013,'https://fe2tech.com/wp-content/uploads/2025/03/H6c00bd237d8b46d4b06a1cc6ef76accfE.png_350x350.png',3003,3194,'image-in',130,NULL,350,350,112415,NULL,NULL),(2014,'https://fe2tech.com/wp-content/uploads/2025/03/H71abe7a763a345ae87dcf70c25a70a32M.png_350x350.png',3003,3195,'image-in',130,NULL,350,350,55479,NULL,NULL),(2015,'https://fe2tech.com/wp-content/uploads/2025/03/2.jpg',3003,3196,'image-in',130,NULL,350,350,19302,NULL,NULL),(2016,'https://fe2tech.com/wp-content/uploads/2025/03/A045fe45345664394a2a80499b4bd2117i.jpg_350x350.jpg',3003,3197,'image-in',130,NULL,350,350,21831,NULL,NULL),(2017,'https://fe2tech.com/wp-content/uploads/2025/03/A86e039df1c9d4e809ea53dfd676ba67aO.jpg_350x350.jpg',3003,3198,'image-in',130,NULL,350,350,28990,NULL,NULL),(2018,'https://fe2tech.com/wp-content/uploads/2025/03/A786dc427af46457ea923c41ea7688f67Q.jpg_350x350.jpg',3003,3199,'image-in',130,NULL,350,350,18081,NULL,NULL),(2019,'https://fe2tech.com/wp-content/uploads/2025/03/6.jpg',3003,3200,'image-in',130,NULL,350,350,16798,NULL,NULL),(2020,'https://fe2tech.com/wp-content/uploads/2025/03/A2ed5a5c3f8f544c8910a3fe29da5e2984.jpg_350x350.jpg',3003,3201,'image-in',130,NULL,350,350,44871,NULL,NULL),(2021,'https://fe2tech.com/wp-content/uploads/2025/03/A3c80646854cd4401b6b737a80e8e29f2Z.jpg_350x350.jpg',3003,3202,'image-in',130,NULL,350,350,14619,NULL,NULL),(2022,'https://fe2tech.com/wp-content/uploads/2025/03/A53f94fffa0e64ba8a47330e85a179214l.jpg_350x350.jpg',3003,3203,'image-in',130,NULL,350,350,24523,NULL,NULL),(2023,'https://fe2tech.com/wp-content/uploads/2025/03/Aa559aaa8e8d44868b700967e182631e0O.jpg_350x350.jpg',3003,3204,'image-in',130,NULL,350,350,17716,NULL,NULL),(2024,'https://fe2tech.com/wp-content/uploads/2025/03/4.jpg',3003,3205,'image-in',130,NULL,350,350,23338,NULL,NULL),(2025,'https://fe2tech.com/wp-content/uploads/2025/03/A29209fca14e3491286a7ae2a7d535066t.jpg_350x350.jpg',3003,3206,'image-in',130,NULL,350,350,10665,NULL,NULL),(2026,'https://fe2tech.com/wp-content/uploads/2025/03/Afd6e5018d54a4c319b4941af57e38fc1e.jpg_350x350.jpg',3003,3207,'image-in',130,NULL,350,350,15243,NULL,NULL),(2027,'https://fe2tech.com/wp-content/uploads/2025/03/A8626df5ae89c458484cbdeab6b0a2768E.jpg_350x350.jpg',3003,3208,'image-in',130,NULL,350,350,19229,NULL,NULL),(2028,'https://fe2tech.com/wp-content/uploads/2025/03/Aec2a4cd895e648b6bc7174d864e103329.jpg_350x350.jpg',3003,3209,'image-in',130,NULL,350,350,40363,NULL,NULL),(2029,'https://fe2tech.com/wp-content/uploads/2025/03/1.jpg',3003,3210,'image-in',130,NULL,350,350,21135,NULL,NULL),(2030,'https://fe2tech.com/wp-content/uploads/2025/03/A5fa71b0eddf648049c5f33d331738460m.jpg_350x350.jpg',3003,3211,'image-in',130,NULL,350,350,22139,NULL,NULL),(2031,'https://fe2tech.com/wp-content/uploads/2025/03/A9bc1872697d649e7a28d14c48cd6b71bq.jpg_350x350.jpg',3003,3212,'image-in',130,NULL,350,350,19615,NULL,NULL),(2032,'https://fe2tech.com/wp-content/uploads/2025/03/Ad0c782b84615484d8303ad964cd302a4C.jpg_350x350.jpg',3003,3213,'image-in',130,NULL,350,350,25875,NULL,NULL),(2033,'https://fe2tech.com/wp-content/uploads/2025/03/Aec3f44d2c0cf4536870b19097b5035f4A.jpg_350x350.jpg',3003,3214,'image-in',130,NULL,350,350,26474,NULL,NULL),(2034,'https://fe2tech.com/wp-content/uploads/2025/03/8.jpg',3003,3215,'image-in',130,NULL,350,350,25144,NULL,NULL),(2035,'https://fe2tech.com/wp-content/uploads/2025/03/A5df619ce89ec42189a5c4d05bbba4f2dw.jpg_350x350.jpg',3003,3216,'image-in',130,NULL,350,350,29190,NULL,NULL),(2036,'https://fe2tech.com/wp-content/uploads/2025/03/A9207015598ae47e4ba57d5d6755a7945J.jpg_350x350.jpg',3003,3217,'image-in',130,NULL,350,350,20385,NULL,NULL),(2037,'https://fe2tech.com/wp-content/uploads/2025/03/Aa67514ca153a43208612611af15ae689t.jpg_350x350.jpg',3003,3218,'image-in',130,NULL,350,350,30060,NULL,NULL),(2038,'https://fe2tech.com/wp-content/uploads/2025/03/Ac8c57af57fc04a9b8afbcf5214d8b125a.jpg_350x350.jpg',3003,3219,'image-in',130,NULL,350,350,29312,NULL,NULL),(2039,'https://fe2tech.com/wp-content/uploads/2025/03/Aea1a2ea6c9d04b78977d1e8c907e721cR.jpg_350x350.jpg',3003,3220,'image-in',130,NULL,350,350,36706,NULL,NULL),(2040,'https://fe2tech.com/wp-content/uploads/2025/03/5.jpg',3003,3221,'image-in',130,NULL,350,350,34546,NULL,NULL),(2041,'https://fe2tech.com/wp-content/uploads/2025/03/7.jpg',3003,3222,'image-in',130,NULL,350,350,36811,NULL,NULL),(2042,'https://fe2tech.com/wp-content/uploads/2025/03/A4fa22b3db4704145a9c8f2b6d413b4b7Y.jpg_350x350.jpg',3003,3223,'image-in',130,NULL,350,350,32246,NULL,NULL),(2043,'https://fe2tech.com/wp-content/uploads/2025/03/A8cfa154ca70a46c5965e993255b53ecbg.jpg_350x350.jpg',3003,3224,'image-in',130,NULL,350,350,26367,NULL,NULL),(2044,'https://fe2tech.com/wp-content/uploads/2025/03/A967c634a517c48f38c23d4766db5bba1a.jpg_350x350.jpg',3003,3225,'image-in',130,NULL,350,350,34940,NULL,NULL),(2045,'https://fe2tech.com/wp-content/uploads/2025/03/A462413b6de2b401ba60e99bbe1d15e33K.jpg_350x350.jpg',3003,3226,'image-in',130,NULL,350,350,36513,NULL,NULL),(2046,'https://fe2tech.com/wp-content/uploads/2025/03/A661399142a7247278bbf69a9d6007556W.jpg_350x350.jpg',3003,3227,'image-in',130,NULL,350,350,37535,NULL,NULL),(2047,'https://fe2tech.com/wp-content/uploads/2025/03/10.jpg',3003,3228,'image-in',130,NULL,263,350,15104,NULL,NULL),(2048,'https://fe2tech.com/wp-content/uploads/2025/03/A16eb71f546c44c4ba00c6afe46464d593.jpg_350x350.jpg',3003,3229,'image-in',130,NULL,350,350,18529,NULL,NULL),(2049,'https://fe2tech.com/wp-content/uploads/2025/03/A72a21ba969c84b98b63b985380b97ef5O.jpg_350x350.jpg',3003,3230,'image-in',130,NULL,350,350,37208,NULL,NULL),(2050,'https://fe2tech.com/wp-content/uploads/2025/03/A99574ebe1a6c432abebb91680e3e227e0.jpg_350x350.jpg',3003,3231,'image-in',130,NULL,350,350,21006,NULL,NULL),(2051,'https://fe2tech.com/wp-content/uploads/2025/03/Ac6d9a3b79a904eeb9c925afa374ec53aA.jpg_350x350.jpg',3003,3232,'image-in',130,NULL,350,350,21362,NULL,NULL),(2052,'https://fe2tech.com/wp-content/uploads/2025/03/Adef05c3212194f259f1556cd5081ab3eg.jpg_350x350.jpg',3003,3233,'image-in',130,NULL,350,350,20778,NULL,NULL),(2053,'https://fe2tech.com/wp-content/uploads/2025/03/3.jpg',3003,3234,'image-in',130,NULL,350,350,29287,NULL,NULL),(2054,'https://fe2tech.com/wp-content/uploads/2025/03/9.jpg',3003,3235,'image-in',130,NULL,350,350,17026,NULL,NULL),(2055,'https://fe2tech.com/wp-content/uploads/2025/03/A268aa8f9b65c4cdf9f45e594f2cd8ad4M.jpg_350x350.jpg',3003,3236,'image-in',130,NULL,350,350,24267,NULL,NULL),(2056,'https://fe2tech.com/wp-content/uploads/2025/03/A864432f2571743689342ae173ee9dc9fd.jpg_350x350.jpg',3003,3237,'image-in',130,NULL,350,350,38370,NULL,NULL),(2057,'https://fe2tech.com/wp-content/uploads/2025/03/Abd43851c92654bd99cfdca45d896fbcbB.jpg_350x350.jpg',3003,3238,'image-in',130,NULL,350,350,20601,NULL,NULL),(2058,'https://fe2tech.com/wp-content/uploads/2025/03/Acdd1226298dd4613abf021bdcaad320b0.jpg_350x350.jpg',3003,3239,'image-in',130,NULL,350,350,22466,NULL,NULL),(2059,'https://fe2tech.com/wp-content/uploads/2025/03/Ae91bf7f51db3402ebaff610c299e9aacF.jpg_350x350.jpg',3003,3240,'image-in',130,NULL,350,350,19076,NULL,NULL),(2060,'https://fe2tech.com/wp-content/uploads/2025/03/A05f18d47e70948ae8795111d055f42fa2.jpg_350x350.jpg',3003,3241,'image-in',130,NULL,350,350,14275,NULL,NULL),(2061,'https://fe2tech.com/wp-content/uploads/2025/03/A5c37792f38434388a02a0479fcbc4123T.jpg_350x350.jpg',3003,3242,'image-in',130,NULL,350,350,18025,NULL,NULL),(2062,'https://fe2tech.com/wp-content/uploads/2025/03/A8c420992f47745509f4f292ac7bd2258H.jpg_350x350.jpg',3003,3243,'image-in',130,NULL,350,350,20072,NULL,NULL),(2063,'https://fe2tech.com/wp-content/uploads/2025/03/A1001e63ea59149f8a81abb92d5d5fe713.jpg_350x350.jpg',3003,3244,'image-in',130,NULL,350,350,16777,NULL,NULL),(2064,'https://fe2tech.com/wp-content/uploads/2025/03/A36346f881b104996b6c070b5d2cebff8u.jpg_350x350.jpg',3003,3245,'image-in',130,NULL,350,350,18590,NULL,NULL),(2065,'https://fe2tech.com/wp-content/uploads/2025/03/A157183c07a764eb8957bc4cd13982808i.jpg_350x350.jpg',3003,3246,'image-in',130,NULL,350,350,12281,NULL,NULL),(2066,'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok5.jpg',3003,3247,'image-in',130,NULL,350,349,29069,NULL,NULL),(2067,'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok4.png',3003,3248,'image-in',130,NULL,350,350,22577,NULL,NULL),(2068,'https://fe2tech.com/wp-content/uploads/2025/03/cnc-machine22.avif',3003,3249,'image-in',130,NULL,1000,1000,25246,NULL,NULL),(2069,'https://fe2tech.com/wp-content/uploads/2025/03/cnc-machine3.jpg',3003,3250,'image-in',130,NULL,4000,6000,13369344,NULL,NULL),(2070,'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok3.png',3003,3251,'image-in',130,NULL,350,350,39664,NULL,NULL),(2071,'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok1.png',3003,3252,'image-in',130,NULL,350,350,37372,NULL,NULL),(2072,'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok2.png',3003,3253,'image-in',130,NULL,350,350,55479,NULL,NULL),(2073,'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok7.png',3003,3254,'image-in',130,NULL,350,350,37372,NULL,NULL),(2074,'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok9.jpg',3003,3255,'image-in',130,NULL,350,350,44871,NULL,NULL),(2075,'https://fe2tech.com/wp-content/uploads/2025/03/cnc-ok8.jpg',3003,3256,'image-in',130,NULL,350,350,20778,NULL,NULL),(2076,'https://fe2tech.com/wp-content/uploads/2025/03/z5709443476797_cb3e9e0d596ad6331366b8a711f46926.jpg',3003,3257,'image-in',130,NULL,1280,960,374734,NULL,NULL),(2077,'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal1.jpg',3003,3258,'image-in',130,NULL,1441,2560,500422,NULL,NULL),(2078,'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal3.jpg',3003,3259,'image-in',130,NULL,1441,2560,833799,NULL,NULL),(2079,'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal4.jpg',3003,3260,'image-in',130,NULL,1441,2560,751602,NULL,NULL),(2080,'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal5.jpg',3003,3261,'image-in',130,NULL,1920,2560,662023,NULL,NULL),(2081,'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal7.jpg',3003,3262,'image-in',130,NULL,1920,2560,965285,NULL,NULL),(2082,'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal8.jpg',3003,3263,'image-in',130,NULL,1920,2560,500961,NULL,NULL),(2083,'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal9.jpg',3003,3264,'image-in',130,NULL,2560,1920,517014,NULL,NULL),(2084,'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal10.jpg',3003,3265,'image-in',130,NULL,2560,1920,609283,NULL,NULL),(2085,'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal2.png',3003,3266,'image-in',130,NULL,2560,1441,2492639,NULL,NULL),(2086,'https://fe2tech.com/wp-content/uploads/2025/03/sheet-metal6.jpg',3003,3267,'image-in',130,NULL,2560,1920,871774,NULL,NULL),(2087,'https://fe2tech.com/wp-content/uploads/2025/03/z6069736165372_82569324de1c8fcc376cc0e737c0520e.jpg',3003,3268,'image-in',130,NULL,2560,1920,649145,NULL,NULL),(2088,'https://fe2tech.com/wp-content/uploads/2025/03/z6069736455775_97a937807c807bf71369419a0a5d3d2c.jpg',3003,3269,'image-in',130,NULL,2560,1153,477721,NULL,NULL),(2089,'https://fe2tech.com/wp-content/uploads/2025/03/z6069735893692_48f4a9f7c7a9d05dc037a80ac1e5782b.jpg',3003,3270,'image-in',130,NULL,2560,1920,502776,NULL,NULL),(2090,'https://fe2tech.com/wp-content/uploads/2025/03/z6069736009514_ad90887f25d734ec2d21d8a6a634ff2d.jpg',3003,3271,'image-in',130,NULL,2560,1920,549264,NULL,NULL),(2091,'https://fe2tech.com/wp-content/uploads/2025/03/z6069736721586_16b9198420b399f9d82c058d9082a3e0.jpg',3003,3272,'image-in',130,NULL,2560,1920,915003,NULL,NULL),(2092,'https://fe2tech.com/wp-content/uploads/2025/03/z6069736110426_c3ece3ec56f9e8cc0e5c9a98f9792bfc.jpg',3003,3273,'image-in',130,NULL,2560,1920,749395,NULL,NULL),(2093,'https://fe2tech.com/wp-content/uploads/2025/03/IMG_1237.jpeg',3003,3274,'image-in',130,NULL,3024,3024,1158730,NULL,NULL),(2094,'https://fe2tech.com/wp-content/uploads/2025/03/DSC00822.jpg',3003,3275,'image-in',130,NULL,4000,6000,13598720,NULL,NULL),(2095,'https://fe2tech.com/team-partner/',799,28,'internal',5,14,NULL,NULL,NULL,NULL,NULL),(2096,'https://fe2tech.com/about-us/',799,26,'internal',5,13,NULL,NULL,NULL,NULL,NULL),(2097,'https://fe2tech.com/vi/doi-ngu-doi-tac/',2959,3008,'internal',123,131,NULL,NULL,NULL,NULL,NULL),(2098,'https://fe2tech.com/ja/%e3%83%81%e3%83%bc%e3%83%a0%e3%81%a8%e3%83%91%e3%83%bc%e3%83%88%e3%83%8a%e3%83%bc/',2961,3014,'internal',124,132,NULL,NULL,NULL,NULL,NULL),(2099,'https://fe2tech.com/wp-content/uploads/2025/03/A16eb71f546c44c4ba00c6afe46464d593-1.jpg_350x350-1.jpg',2126,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(2100,'https://fe2tech.com/wp-content/uploads/2025/03/A72a21ba969c84b98b63b985380b97ef5O-1.jpg_350x350-1.jpg',2126,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(2101,'https://fe2tech.com/wp-content/uploads/2025/03/Ac6d9a3b79a904eeb9c925afa374ec53aA-1.jpg_350x350-1.jpg',2126,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(2102,'https://fe2tech.com/wp-content/uploads/2025/03/3-1.jpg',2126,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(2103,'https://fe2tech.com/wp-content/uploads/2025/03/9-1.jpg',2126,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(2104,'https://fe2tech.com/wp-content/uploads/2025/03/A268aa8f9b65c4cdf9f45e594f2cd8ad4M-1.jpg_350x350-1.jpg',2126,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(2105,'https://fe2tech.com/wp-content/uploads/2025/03/A864432f2571743689342ae173ee9dc9fd-1.jpg_350x350-1.jpg',2126,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(2106,'https://fe2tech.com/wp-content/uploads/2025/03/Abd43851c92654bd99cfdca45d896fbcbB-1.jpg_350x350-1.jpg',2126,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(2107,'https://fe2tech.com/wp-content/uploads/2025/03/A1001e63ea59149f8a81abb92d5d5fe713-1.jpg_350x350-1.jpg',2126,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(2108,'https://fe2tech.com/wp-content/uploads/2025/03/A36346f881b104996b6c070b5d2cebff8u-1.jpg_350x350-1.jpg',2126,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(2109,'https://fe2tech.com/wp-content/uploads/2025/03/A157183c07a764eb8957bc4cd13982808i-1.jpg_350x350-1.jpg',2126,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(2110,'https://fe2tech.com/wp-content/uploads/2025/03/A4969ef2343a244608cc511d1e7be28e2X-1.png_350x350-1.png',2126,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(2111,'https://fe2tech.com/wp-content/uploads/2025/03/H9be6461494cf4fe7998192dc483066c9v-1.png_350x350-1.png',2126,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(2112,'https://fe2tech.com/wp-content/uploads/2025/03/H4cbac47ae6cf4705b966668ca1abad509-1.png_350x350-1.png',2126,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(2113,'https://fe2tech.com/wp-content/uploads/2025/03/H6c00bd237d8b46d4b06a1cc6ef76accfE-1.png_350x350-1.png',2126,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(2114,'https://fe2tech.com/wp-content/uploads/2025/03/H71abe7a763a345ae87dcf70c25a70a32M-1.png_350x350-1.png',2126,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(2115,'https://fe2tech.com/wp-content/uploads/2025/03/2-1.jpg',2126,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(2116,'https://fe2tech.com/wp-content/uploads/2025/03/A786dc427af46457ea923c41ea7688f67Q-1.jpg_350x350-1.jpg',2126,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(2117,'https://fe2tech.com/wp-content/uploads/2025/03/A2ed5a5c3f8f544c8910a3fe29da5e2984-1.jpg_350x350-1.jpg',2126,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(2118,'https://fe2tech.com/wp-content/uploads/2025/03/A53f94fffa0e64ba8a47330e85a179214l-1.jpg_350x350-1.jpg',2126,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(2119,'https://fe2tech.com/wp-content/uploads/2025/03/Aa559aaa8e8d44868b700967e182631e0O-1.jpg_350x350-1.jpg',2126,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(2120,'https://fe2tech.com/wp-content/uploads/2025/03/4-1.jpg',2126,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(2121,'https://fe2tech.com/wp-content/uploads/2025/03/A8626df5ae89c458484cbdeab6b0a2768E-1.jpg_350x350-1.jpg',2126,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(2122,'https://fe2tech.com/wp-content/uploads/2025/03/1-1.jpg',2126,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(2123,'https://fe2tech.com/wp-content/uploads/2025/03/A5fa71b0eddf648049c5f33d331738460m-1.jpg_350x350-1.jpg',2126,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(2124,'https://fe2tech.com/wp-content/uploads/2025/03/A5df619ce89ec42189a5c4d05bbba4f2dw-1.jpg_350x350-1.jpg',2126,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(2125,'https://fe2tech.com/wp-content/uploads/2025/03/Aea1a2ea6c9d04b78977d1e8c907e721cR-1.jpg_350x350-1.jpg',2126,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(2126,'https://fe2tech.com/wp-content/uploads/2025/03/5-1.jpg',2126,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(2127,'https://fe2tech.com/wp-content/uploads/2025/03/7-1.jpg',2126,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(2128,'https://fe2tech.com/wp-content/uploads/2025/03/A967c634a517c48f38c23d4766db5bba1a-1.jpg_350x350-1.jpg',2126,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(2129,'https://fe2tech.com/wp-content/uploads/2025/03/A462413b6de2b401ba60e99bbe1d15e33K-1.jpg_350x350-1.jpg',2126,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(2130,'https://fe2tech.com/wp-content/uploads/2025/03/A661399142a7247278bbf69a9d6007556W-1.jpg_350x350-1.jpg',2126,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(2131,'https://fe2tech.com/wp-content/uploads/2025/03/10-1.jpg',2126,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(2132,'https://fe2tech.com/wp-content/uploads/2025/03/A16eb71f546c44c4ba00c6afe46464d593-1.jpg_350x350-1.jpg',2126,3309,'image-in',15,NULL,350,350,18529,NULL,NULL),(2133,'https://fe2tech.com/wp-content/uploads/2025/03/A72a21ba969c84b98b63b985380b97ef5O-1.jpg_350x350-1.jpg',2126,3310,'image-in',15,NULL,350,350,37208,NULL,NULL),(2134,'https://fe2tech.com/wp-content/uploads/2025/03/Ac6d9a3b79a904eeb9c925afa374ec53aA-1.jpg_350x350-1.jpg',2126,3311,'image-in',15,NULL,350,350,21362,NULL,NULL),(2135,'https://fe2tech.com/wp-content/uploads/2025/03/3-1.jpg',2126,3312,'image-in',15,NULL,350,350,29287,NULL,NULL),(2136,'https://fe2tech.com/wp-content/uploads/2025/03/9-1.jpg',2126,3313,'image-in',15,NULL,350,350,17026,NULL,NULL),(2137,'https://fe2tech.com/wp-content/uploads/2025/03/A268aa8f9b65c4cdf9f45e594f2cd8ad4M-1.jpg_350x350-1.jpg',2126,3314,'image-in',15,NULL,350,350,24267,NULL,NULL),(2138,'https://fe2tech.com/wp-content/uploads/2025/03/A864432f2571743689342ae173ee9dc9fd-1.jpg_350x350-1.jpg',2126,3315,'image-in',15,NULL,350,350,38370,NULL,NULL),(2139,'https://fe2tech.com/wp-content/uploads/2025/03/Abd43851c92654bd99cfdca45d896fbcbB-1.jpg_350x350-1.jpg',2126,3316,'image-in',15,NULL,350,350,20601,NULL,NULL),(2140,'https://fe2tech.com/wp-content/uploads/2025/03/A1001e63ea59149f8a81abb92d5d5fe713-1.jpg_350x350-1.jpg',2126,3317,'image-in',15,NULL,350,350,16777,NULL,NULL),(2141,'https://fe2tech.com/wp-content/uploads/2025/03/A36346f881b104996b6c070b5d2cebff8u-1.jpg_350x350-1.jpg',2126,3318,'image-in',15,NULL,350,350,18590,NULL,NULL),(2142,'https://fe2tech.com/wp-content/uploads/2025/03/A157183c07a764eb8957bc4cd13982808i-1.jpg_350x350-1.jpg',2126,3319,'image-in',15,NULL,350,350,12281,NULL,NULL),(2143,'https://fe2tech.com/wp-content/uploads/2025/03/A4969ef2343a244608cc511d1e7be28e2X-1.png_350x350-1.png',2126,3320,'image-in',15,NULL,350,350,39664,NULL,NULL),(2144,'https://fe2tech.com/wp-content/uploads/2025/03/H9be6461494cf4fe7998192dc483066c9v-1.png_350x350-1.png',2126,3321,'image-in',15,NULL,350,350,12957,NULL,NULL),(2145,'https://fe2tech.com/wp-content/uploads/2025/03/H4cbac47ae6cf4705b966668ca1abad509-1.png_350x350-1.png',2126,3322,'image-in',15,NULL,350,350,26933,NULL,NULL),(2146,'https://fe2tech.com/wp-content/uploads/2025/03/H6c00bd237d8b46d4b06a1cc6ef76accfE-1.png_350x350-1.png',2126,3323,'image-in',15,NULL,350,350,112415,NULL,NULL),(2147,'https://fe2tech.com/wp-content/uploads/2025/03/H71abe7a763a345ae87dcf70c25a70a32M-1.png_350x350-1.png',2126,3324,'image-in',15,NULL,350,350,55479,NULL,NULL),(2148,'https://fe2tech.com/wp-content/uploads/2025/03/2-1.jpg',2126,3325,'image-in',15,NULL,350,350,19302,NULL,NULL),(2149,'https://fe2tech.com/wp-content/uploads/2025/03/A786dc427af46457ea923c41ea7688f67Q-1.jpg_350x350-1.jpg',2126,3326,'image-in',15,NULL,350,350,18081,NULL,NULL),(2150,'https://fe2tech.com/wp-content/uploads/2025/03/A2ed5a5c3f8f544c8910a3fe29da5e2984-1.jpg_350x350-1.jpg',2126,3327,'image-in',15,NULL,350,350,44871,NULL,NULL),(2151,'https://fe2tech.com/wp-content/uploads/2025/03/A53f94fffa0e64ba8a47330e85a179214l-1.jpg_350x350-1.jpg',2126,3328,'image-in',15,NULL,350,350,24523,NULL,NULL),(2152,'https://fe2tech.com/wp-content/uploads/2025/03/Aa559aaa8e8d44868b700967e182631e0O-1.jpg_350x350-1.jpg',2126,3329,'image-in',15,NULL,350,350,17716,NULL,NULL),(2153,'https://fe2tech.com/wp-content/uploads/2025/03/4-1.jpg',2126,3330,'image-in',15,NULL,350,350,23338,NULL,NULL),(2154,'https://fe2tech.com/wp-content/uploads/2025/03/A8626df5ae89c458484cbdeab6b0a2768E-1.jpg_350x350-1.jpg',2126,3331,'image-in',15,NULL,350,350,19229,NULL,NULL),(2155,'https://fe2tech.com/wp-content/uploads/2025/03/1-1.jpg',2126,3332,'image-in',15,NULL,350,350,21135,NULL,NULL),(2156,'https://fe2tech.com/wp-content/uploads/2025/03/A5fa71b0eddf648049c5f33d331738460m-1.jpg_350x350-1.jpg',2126,3333,'image-in',15,NULL,350,350,22139,NULL,NULL),(2157,'https://fe2tech.com/wp-content/uploads/2025/03/A5df619ce89ec42189a5c4d05bbba4f2dw-1.jpg_350x350-1.jpg',2126,3334,'image-in',15,NULL,350,350,29190,NULL,NULL),(2158,'https://fe2tech.com/wp-content/uploads/2025/03/Aea1a2ea6c9d04b78977d1e8c907e721cR-1.jpg_350x350-1.jpg',2126,3335,'image-in',15,NULL,350,350,36706,NULL,NULL),(2159,'https://fe2tech.com/wp-content/uploads/2025/03/5-1.jpg',2126,3336,'image-in',15,NULL,350,350,34546,NULL,NULL),(2160,'https://fe2tech.com/wp-content/uploads/2025/03/7-1.jpg',2126,3338,'image-in',15,NULL,350,350,36811,NULL,NULL),(2161,'https://fe2tech.com/wp-content/uploads/2025/03/A967c634a517c48f38c23d4766db5bba1a-1.jpg_350x350-1.jpg',2126,3339,'image-in',15,NULL,350,350,34940,NULL,NULL),(2162,'https://fe2tech.com/wp-content/uploads/2025/03/A462413b6de2b401ba60e99bbe1d15e33K-1.jpg_350x350-1.jpg',2126,3340,'image-in',15,NULL,350,350,36513,NULL,NULL),(2163,'https://fe2tech.com/wp-content/uploads/2025/03/A661399142a7247278bbf69a9d6007556W-1.jpg_350x350-1.jpg',2126,3341,'image-in',15,NULL,350,350,37535,NULL,NULL),(2164,'https://fe2tech.com/wp-content/uploads/2025/03/10-1.jpg',2126,3342,'image-in',15,NULL,263,350,15104,NULL,NULL);
/*!40000 ALTER TABLE `wp_yoast_seo_links` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Current Database: `home_services`
--

CREATE DATABASE /*!32312 IF NOT EXISTS*/ `home_services` /*!40100 DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci */;

USE `home_services`;

--
-- Current Database: `tutor_db`
--

CREATE DATABASE /*!32312 IF NOT EXISTS*/ `tutor_db` /*!40100 DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci */;

USE `tutor_db`;

--
-- Table structure for table `wp_actionscheduler_actions`
--

DROP TABLE IF EXISTS `wp_actionscheduler_actions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_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_status_scheduled_date_gmt` (`hook`(163),`status`,`scheduled_date_gmt`),
  KEY `status_scheduled_date_gmt` (`status`,`scheduled_date_gmt`),
  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=218 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_actionscheduler_actions`
--

LOCK TABLES `wp_actionscheduler_actions` WRITE;
/*!40000 ALTER TABLE `wp_actionscheduler_actions` DISABLE KEYS */;
INSERT INTO `wp_actionscheduler_actions` VALUES (17,'action_scheduler/migration_hook','failed','2024-10-20 12:44:49','2024-10-20 12:44:49',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1729428289;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1729428289;}',1,1,'2024-10-20 12:45:39','2024-10-20 12:45:39',0,NULL),(18,'woocommerce_admin/stored_state_setup_for_products/async/run_remote_notifications','failed','2024-10-20 14:42:11','2024-10-20 14:42:11',10,'[]','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,1,'2024-10-20 14:42:27','2024-10-20 14:42:27',0,NULL),(26,'woocommerce_install_assembler_fonts','failed','2024-10-29 09:47:24','2024-10-29 09:47:24',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1730195244;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1730195244;}',2,1,'2024-10-29 09:47:58','2024-10-29 16:47:58',0,NULL),(41,'action_scheduler/migration_hook','failed','2024-11-10 14:00:27','2024-11-10 14:00:27',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1731247227;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1731247227;}',1,1,'2024-11-10 14:01:32','2024-11-10 21:01:32',0,NULL),(186,'woocommerce_cleanup_draft_orders','complete','2025-04-05 13:14:05','2025-04-05 13:14:05',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1743858845;s:18:\"\0*\0first_timestamp\";i:1729428099;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1743858845;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-04-05 13:21:11','2025-04-05 20:21:11',0,NULL),(187,'woocommerce_cleanup_draft_orders','complete','2025-04-06 13:21:11','2025-04-06 13:21:11',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1743945671;s:18:\"\0*\0first_timestamp\";i:1729428099;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1743945671;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-04-06 13:22:36','2025-04-06 20:22:36',0,NULL),(188,'woocommerce_cleanup_draft_orders','complete','2025-04-07 13:22:36','2025-04-07 13:22:36',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1744032156;s:18:\"\0*\0first_timestamp\";i:1729428099;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1744032156;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-04-07 13:25:29','2025-04-07 20:25:29',0,NULL),(189,'woocommerce_cleanup_draft_orders','complete','2025-04-08 13:25:29','2025-04-08 13:25:29',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1744118729;s:18:\"\0*\0first_timestamp\";i:1729428099;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1744118729;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-04-08 13:32:22','2025-04-08 20:32:22',0,NULL),(190,'woocommerce_cleanup_draft_orders','complete','2025-04-09 13:32:22','2025-04-09 13:32:22',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1744205542;s:18:\"\0*\0first_timestamp\";i:1729428099;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1744205542;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-04-09 13:36:33','2025-04-09 20:36:33',0,NULL),(191,'woocommerce_cleanup_draft_orders','complete','2025-04-10 13:36:33','2025-04-10 13:36:33',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1744292193;s:18:\"\0*\0first_timestamp\";i:1729428099;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1744292193;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-04-10 14:01:28','2025-04-10 21:01:28',0,NULL),(192,'woocommerce_cleanup_draft_orders','complete','2025-04-11 14:01:28','2025-04-11 14:01:28',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1744380088;s:18:\"\0*\0first_timestamp\";i:1729428099;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1744380088;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-04-11 14:04:10','2025-04-11 21:04:10',0,NULL),(193,'woocommerce_cleanup_draft_orders','complete','2025-04-12 14:04:10','2025-04-12 14:04:10',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1744466650;s:18:\"\0*\0first_timestamp\";i:1729428099;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1744466650;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-04-12 14:17:38','2025-04-12 21:17:38',0,NULL),(194,'woocommerce_cleanup_draft_orders','complete','2025-04-13 14:17:38','2025-04-13 14:17:38',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1744553858;s:18:\"\0*\0first_timestamp\";i:1729428099;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1744553858;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-04-13 14:26:02','2025-04-13 21:26:02',0,NULL),(195,'woocommerce_cleanup_draft_orders','complete','2025-04-14 14:26:02','2025-04-14 14:26:02',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1744640762;s:18:\"\0*\0first_timestamp\";i:1729428099;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1744640762;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-04-14 14:47:18','2025-04-14 21:47:18',0,NULL),(196,'woocommerce_cleanup_draft_orders','complete','2025-04-15 14:47:18','2025-04-15 14:47:18',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1744728438;s:18:\"\0*\0first_timestamp\";i:1729428099;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1744728438;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-04-15 14:49:19','2025-04-15 21:49:19',0,NULL),(197,'woocommerce_cleanup_draft_orders','complete','2025-04-16 14:49:19','2025-04-16 14:49:19',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1744814959;s:18:\"\0*\0first_timestamp\";i:1729428099;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1744814959;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-04-16 14:50:53','2025-04-16 21:50:53',0,NULL),(198,'woocommerce_cleanup_draft_orders','complete','2025-04-17 14:50:54','2025-04-17 14:50:54',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1744901454;s:18:\"\0*\0first_timestamp\";i:1729428099;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1744901454;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-04-17 14:59:30','2025-04-17 21:59:30',0,NULL),(199,'woocommerce_cleanup_draft_orders','complete','2025-04-18 14:59:30','2025-04-18 14:59:30',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1744988370;s:18:\"\0*\0first_timestamp\";i:1729428099;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1744988370;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-04-18 15:07:51','2025-04-18 22:07:51',0,NULL),(200,'woocommerce_cleanup_draft_orders','complete','2025-04-19 15:07:51','2025-04-19 15:07:51',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1745075271;s:18:\"\0*\0first_timestamp\";i:1729428099;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1745075271;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-04-19 15:12:21','2025-04-19 22:12:21',0,NULL),(201,'woocommerce_cleanup_draft_orders','complete','2025-04-20 15:12:21','2025-04-20 15:12:21',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1745161941;s:18:\"\0*\0first_timestamp\";i:1729428099;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1745161941;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-04-20 15:17:39','2025-04-20 22:17:39',0,NULL),(202,'woocommerce_cleanup_draft_orders','complete','2025-04-21 15:17:39','2025-04-21 15:17:39',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1745248659;s:18:\"\0*\0first_timestamp\";i:1729428099;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1745248659;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-04-21 15:22:09','2025-04-21 22:22:09',0,NULL),(203,'woocommerce_cleanup_draft_orders','complete','2025-04-22 15:22:09','2025-04-22 15:22:09',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1745335329;s:18:\"\0*\0first_timestamp\";i:1729428099;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1745335329;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-04-22 15:32:59','2025-04-22 22:32:59',0,NULL),(204,'woocommerce_cleanup_draft_orders','complete','2025-04-23 15:32:59','2025-04-23 15:32:59',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1745422379;s:18:\"\0*\0first_timestamp\";i:1729428099;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1745422379;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-04-23 15:37:19','2025-04-23 22:37:19',0,NULL),(205,'woocommerce_cleanup_draft_orders','complete','2025-04-24 15:37:19','2025-04-24 15:37:19',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1745509039;s:18:\"\0*\0first_timestamp\";i:1729428099;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1745509039;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-04-24 15:41:55','2025-04-24 22:41:55',0,NULL),(206,'woocommerce_cleanup_draft_orders','complete','2025-04-25 15:41:55','2025-04-25 15:41:55',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1745595715;s:18:\"\0*\0first_timestamp\";i:1729428099;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1745595715;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-04-25 15:52:24','2025-04-25 22:52:24',0,NULL),(207,'woocommerce_cleanup_draft_orders','complete','2025-04-26 15:52:24','2025-04-26 15:52:24',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1745682744;s:18:\"\0*\0first_timestamp\";i:1729428099;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1745682744;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-04-26 15:58:33','2025-04-26 22:58:33',0,NULL),(208,'woocommerce_cleanup_draft_orders','complete','2025-04-27 15:58:33','2025-04-27 15:58:33',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1745769513;s:18:\"\0*\0first_timestamp\";i:1729428099;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1745769513;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-04-27 16:07:32','2025-04-27 23:07:32',0,NULL),(209,'woocommerce_cleanup_draft_orders','complete','2025-04-28 16:07:32','2025-04-28 16:07:32',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1745856452;s:18:\"\0*\0first_timestamp\";i:1729428099;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1745856452;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-04-28 16:08:02','2025-04-28 23:08:02',0,NULL),(210,'woocommerce_cleanup_draft_orders','complete','2025-04-29 16:08:02','2025-04-29 16:08:02',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1745942882;s:18:\"\0*\0first_timestamp\";i:1729428099;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1745942882;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-04-29 16:08:25','2025-04-29 23:08:25',0,NULL),(211,'woocommerce_cleanup_draft_orders','complete','2025-04-30 16:08:25','2025-04-30 16:08:25',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1746029305;s:18:\"\0*\0first_timestamp\";i:1729428099;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1746029305;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-04-30 16:23:37','2025-04-30 23:23:37',0,NULL),(212,'woocommerce_cleanup_draft_orders','complete','2025-05-01 16:23:37','2025-05-01 16:23:37',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1746116617;s:18:\"\0*\0first_timestamp\";i:1729428099;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1746116617;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-05-01 17:01:55','2025-05-02 00:01:55',0,NULL),(213,'woocommerce_cleanup_draft_orders','complete','2025-05-02 17:01:55','2025-05-02 17:01:55',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1746205315;s:18:\"\0*\0first_timestamp\";i:1729428099;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1746205315;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-05-02 17:07:47','2025-05-03 00:07:47',0,NULL),(214,'woocommerce_cleanup_draft_orders','complete','2025-05-03 17:07:47','2025-05-03 17:07:47',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1746292067;s:18:\"\0*\0first_timestamp\";i:1729428099;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1746292067;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-05-03 17:17:59','2025-05-04 00:17:59',0,NULL),(215,'woocommerce_cleanup_draft_orders','complete','2025-05-04 17:17:59','2025-05-04 17:17:59',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1746379079;s:18:\"\0*\0first_timestamp\";i:1729428099;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1746379079;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-05-04 17:48:36','2025-05-05 00:48:36',0,NULL),(216,'woocommerce_cleanup_draft_orders','complete','2025-05-05 17:48:36','2025-05-05 17:48:36',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1746467316;s:18:\"\0*\0first_timestamp\";i:1729428099;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1746467316;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-05-05 17:55:46','2025-05-06 00:55:46',0,NULL),(217,'woocommerce_cleanup_draft_orders','pending','2025-05-06 17:55:46','2025-05-06 17:55:46',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1746554146;s:18:\"\0*\0first_timestamp\";i:1729428099;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1746554146;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 `wp_actionscheduler_actions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_actionscheduler_claims`
--

DROP TABLE IF EXISTS `wp_actionscheduler_claims`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_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=38614 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_actionscheduler_claims`
--

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

--
-- Table structure for table `wp_actionscheduler_groups`
--

DROP TABLE IF EXISTS `wp_actionscheduler_groups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_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=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_actionscheduler_groups`
--

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

--
-- Table structure for table `wp_actionscheduler_logs`
--

DROP TABLE IF EXISTS `wp_actionscheduler_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_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=611 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_actionscheduler_logs`
--

LOCK TABLES `wp_actionscheduler_logs` WRITE;
/*!40000 ALTER TABLE `wp_actionscheduler_logs` DISABLE KEYS */;
INSERT INTO `wp_actionscheduler_logs` VALUES (8,17,'action created','2024-10-20 12:43:49','2024-10-20 12:43:49'),(9,17,'action started via WP Cron','2024-10-20 12:45:39','2024-10-20 12:45:39'),(10,17,'action failed via WP Cron: Scheduled action for action_scheduler/migration_hook will not be executed as no callbacks are registered.','2024-10-20 12:45:39','2024-10-20 12:45:39'),(11,18,'action created','2024-10-20 14:42:11','2024-10-20 14:42:11'),(13,18,'action started via Async Request','2024-10-20 14:42:27','2024-10-20 14:42:27'),(14,18,'action failed via Async Request: Scheduled action for woocommerce_admin/stored_state_setup_for_products/async/run_remote_notifications will not be executed as no callbacks are registered.','2024-10-20 14:42:27','2024-10-20 14:42:27'),(35,26,'action created','2024-10-29 09:47:24','2024-10-29 09:47:24'),(37,26,'action started via WP Cron','2024-10-29 09:47:58','2024-10-29 09:47:58'),(38,26,'action failed via WP Cron: call_user_func_array(): Argument #1 ($callback) must be a valid callback, cannot access private method Automattic\\WooCommerce\\Internal\\Font\\FontFace::handle_font_file_upload_error()','2024-10-29 09:47:59','2024-10-29 09:47:59'),(80,41,'action created','2024-11-10 13:59:27','2024-11-10 13:59:27'),(81,41,'action started via Async Request','2024-11-10 14:01:32','2024-11-10 14:01:32'),(82,41,'action failed via Async Request: Scheduled action for action_scheduler/migration_hook will not be executed as no callbacks are registered.','2024-11-10 14:01:32','2024-11-10 14:01:32'),(517,186,'action created','2025-04-04 13:14:05','2025-04-04 13:14:05'),(518,186,'action started via WP Cron','2025-04-05 13:21:11','2025-04-05 13:21:11'),(519,186,'action complete via WP Cron','2025-04-05 13:21:11','2025-04-05 13:21:11'),(520,187,'action created','2025-04-05 13:21:11','2025-04-05 13:21:11'),(521,187,'action started via WP Cron','2025-04-06 13:22:35','2025-04-06 13:22:35'),(522,187,'action complete via WP Cron','2025-04-06 13:22:36','2025-04-06 13:22:36'),(523,188,'action created','2025-04-06 13:22:36','2025-04-06 13:22:36'),(524,188,'action started via WP Cron','2025-04-07 13:25:29','2025-04-07 13:25:29'),(525,188,'action complete via WP Cron','2025-04-07 13:25:29','2025-04-07 13:25:29'),(526,189,'action created','2025-04-07 13:25:29','2025-04-07 13:25:29'),(527,189,'action started via WP Cron','2025-04-08 13:32:22','2025-04-08 13:32:22'),(528,189,'action complete via WP Cron','2025-04-08 13:32:22','2025-04-08 13:32:22'),(529,190,'action created','2025-04-08 13:32:22','2025-04-08 13:32:22'),(530,190,'action started via WP Cron','2025-04-09 13:36:33','2025-04-09 13:36:33'),(531,190,'action complete via WP Cron','2025-04-09 13:36:33','2025-04-09 13:36:33'),(532,191,'action created','2025-04-09 13:36:33','2025-04-09 13:36:33'),(533,191,'action started via WP Cron','2025-04-10 14:01:28','2025-04-10 14:01:28'),(534,191,'action complete via WP Cron','2025-04-10 14:01:28','2025-04-10 14:01:28'),(535,192,'action created','2025-04-10 14:01:28','2025-04-10 14:01:28'),(536,192,'action started via WP Cron','2025-04-11 14:04:10','2025-04-11 14:04:10'),(537,192,'action complete via WP Cron','2025-04-11 14:04:10','2025-04-11 14:04:10'),(538,193,'action created','2025-04-11 14:04:10','2025-04-11 14:04:10'),(539,193,'action started via WP Cron','2025-04-12 14:17:38','2025-04-12 14:17:38'),(540,193,'action complete via WP Cron','2025-04-12 14:17:38','2025-04-12 14:17:38'),(541,194,'action created','2025-04-12 14:17:38','2025-04-12 14:17:38'),(542,194,'action started via WP Cron','2025-04-13 14:26:02','2025-04-13 14:26:02'),(543,194,'action complete via WP Cron','2025-04-13 14:26:02','2025-04-13 14:26:02'),(544,195,'action created','2025-04-13 14:26:02','2025-04-13 14:26:02'),(545,195,'action started via WP Cron','2025-04-14 14:47:18','2025-04-14 14:47:18'),(546,195,'action complete via WP Cron','2025-04-14 14:47:18','2025-04-14 14:47:18'),(547,196,'action created','2025-04-14 14:47:18','2025-04-14 14:47:18'),(548,196,'action started via WP Cron','2025-04-15 14:49:19','2025-04-15 14:49:19'),(549,196,'action complete via WP Cron','2025-04-15 14:49:19','2025-04-15 14:49:19'),(550,197,'action created','2025-04-15 14:49:19','2025-04-15 14:49:19'),(551,197,'action started via WP Cron','2025-04-16 14:50:53','2025-04-16 14:50:53'),(552,197,'action complete via WP Cron','2025-04-16 14:50:53','2025-04-16 14:50:53'),(553,198,'action created','2025-04-16 14:50:54','2025-04-16 14:50:54'),(554,198,'action started via WP Cron','2025-04-17 14:59:30','2025-04-17 14:59:30'),(555,198,'action complete via WP Cron','2025-04-17 14:59:30','2025-04-17 14:59:30'),(556,199,'action created','2025-04-17 14:59:30','2025-04-17 14:59:30'),(557,199,'action started via WP Cron','2025-04-18 15:07:51','2025-04-18 15:07:51'),(558,199,'action complete via WP Cron','2025-04-18 15:07:51','2025-04-18 15:07:51'),(559,200,'action created','2025-04-18 15:07:51','2025-04-18 15:07:51'),(560,200,'action started via WP Cron','2025-04-19 15:12:21','2025-04-19 15:12:21'),(561,200,'action complete via WP Cron','2025-04-19 15:12:21','2025-04-19 15:12:21'),(562,201,'action created','2025-04-19 15:12:21','2025-04-19 15:12:21'),(563,201,'action started via WP Cron','2025-04-20 15:17:39','2025-04-20 15:17:39'),(564,201,'action complete via WP Cron','2025-04-20 15:17:39','2025-04-20 15:17:39'),(565,202,'action created','2025-04-20 15:17:39','2025-04-20 15:17:39'),(566,202,'action started via WP Cron','2025-04-21 15:22:09','2025-04-21 15:22:09'),(567,202,'action complete via WP Cron','2025-04-21 15:22:09','2025-04-21 15:22:09'),(568,203,'action created','2025-04-21 15:22:09','2025-04-21 15:22:09'),(569,203,'action started via WP Cron','2025-04-22 15:32:59','2025-04-22 15:32:59'),(570,203,'action complete via WP Cron','2025-04-22 15:32:59','2025-04-22 15:32:59'),(571,204,'action created','2025-04-22 15:32:59','2025-04-22 15:32:59'),(572,204,'action started via WP Cron','2025-04-23 15:37:19','2025-04-23 15:37:19'),(573,204,'action complete via WP Cron','2025-04-23 15:37:19','2025-04-23 15:37:19'),(574,205,'action created','2025-04-23 15:37:19','2025-04-23 15:37:19'),(575,205,'action started via WP Cron','2025-04-24 15:41:55','2025-04-24 15:41:55'),(576,205,'action complete via WP Cron','2025-04-24 15:41:55','2025-04-24 15:41:55'),(577,206,'action created','2025-04-24 15:41:55','2025-04-24 15:41:55'),(578,206,'action started via WP Cron','2025-04-25 15:52:24','2025-04-25 15:52:24'),(579,206,'action complete via WP Cron','2025-04-25 15:52:24','2025-04-25 15:52:24'),(580,207,'action created','2025-04-25 15:52:24','2025-04-25 15:52:24'),(581,207,'action started via WP Cron','2025-04-26 15:58:33','2025-04-26 15:58:33'),(582,207,'action complete via WP Cron','2025-04-26 15:58:33','2025-04-26 15:58:33'),(583,208,'action created','2025-04-26 15:58:33','2025-04-26 15:58:33'),(584,208,'action started via WP Cron','2025-04-27 16:07:32','2025-04-27 16:07:32'),(585,208,'action complete via WP Cron','2025-04-27 16:07:32','2025-04-27 16:07:32'),(586,209,'action created','2025-04-27 16:07:32','2025-04-27 16:07:32'),(587,209,'action started via WP Cron','2025-04-28 16:08:02','2025-04-28 16:08:02'),(588,209,'action complete via WP Cron','2025-04-28 16:08:02','2025-04-28 16:08:02'),(589,210,'action created','2025-04-28 16:08:02','2025-04-28 16:08:02'),(590,210,'action started via WP Cron','2025-04-29 16:08:25','2025-04-29 16:08:25'),(591,210,'action complete via WP Cron','2025-04-29 16:08:25','2025-04-29 16:08:25'),(592,211,'action created','2025-04-29 16:08:25','2025-04-29 16:08:25'),(593,211,'action started via WP Cron','2025-04-30 16:23:37','2025-04-30 16:23:37'),(594,211,'action complete via WP Cron','2025-04-30 16:23:37','2025-04-30 16:23:37'),(595,212,'action created','2025-04-30 16:23:37','2025-04-30 16:23:37'),(596,212,'action started via WP Cron','2025-05-01 17:01:55','2025-05-01 17:01:55'),(597,212,'action complete via WP Cron','2025-05-01 17:01:55','2025-05-01 17:01:55'),(598,213,'action created','2025-05-01 17:01:55','2025-05-01 17:01:55'),(599,213,'action started via WP Cron','2025-05-02 17:07:47','2025-05-02 17:07:47'),(600,213,'action complete via WP Cron','2025-05-02 17:07:47','2025-05-02 17:07:47'),(601,214,'action created','2025-05-02 17:07:47','2025-05-02 17:07:47'),(602,214,'action started via WP Cron','2025-05-03 17:17:59','2025-05-03 17:17:59'),(603,214,'action complete via WP Cron','2025-05-03 17:17:59','2025-05-03 17:17:59'),(604,215,'action created','2025-05-03 17:17:59','2025-05-03 17:17:59'),(605,215,'action started via WP Cron','2025-05-04 17:48:36','2025-05-04 17:48:36'),(606,215,'action complete via WP Cron','2025-05-04 17:48:36','2025-05-04 17:48:36'),(607,216,'action created','2025-05-04 17:48:36','2025-05-04 17:48:36'),(608,216,'action started via WP Cron','2025-05-05 17:55:46','2025-05-05 17:55:46'),(609,216,'action complete via WP Cron','2025-05-05 17:55:46','2025-05-05 17:55:46'),(610,217,'action created','2025-05-05 17:55:46','2025-05-05 17:55:46');
/*!40000 ALTER TABLE `wp_actionscheduler_logs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_commentmeta`
--

DROP TABLE IF EXISTS `wp_commentmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_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 AUTO_INCREMENT=153 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_commentmeta`
--

LOCK TABLES `wp_commentmeta` WRITE;
/*!40000 ALTER TABLE `wp_commentmeta` DISABLE KEYS */;
INSERT INTO `wp_commentmeta` VALUES (1,2,'mkdf_comment_title','Amazing course!'),(2,2,'mkdf_rating','5'),(3,3,'mkdf_comment_title','It\'s great!'),(4,3,'mkdf_rating','4'),(5,4,'mkdf_comment_title','It\'s great!'),(6,4,'mkdf_rating','4'),(7,5,'mkdf_comment_title','Key concepts presented rigorously and actionably.'),(8,5,'mkdf_rating','5'),(9,6,'mkdf_comment_title','Amazing course. '),(10,6,'mkdf_rating','5'),(57,30,'mkdf_comment_title','It\'s great!'),(58,30,'mkdf_rating','5'),(59,31,'mkdf_comment_title','Key concepts presented rigorously and actionably.'),(60,31,'mkdf_rating','3'),(63,33,'mkdf_comment_title','Amazing course.'),(64,33,'mkdf_rating','5'),(65,34,'mkdf_comment_title','It\'s great!'),(66,34,'mkdf_rating','5'),(67,48,'rating','4'),(68,48,'verified','0'),(69,49,'rating','4'),(70,49,'verified','0'),(71,50,'rating','5'),(72,50,'verified','0'),(73,51,'rating','4'),(74,51,'verified','0'),(75,52,'rating','3'),(76,52,'verified','0'),(77,53,'rating','5'),(78,53,'verified','0'),(79,54,'rating','5'),(80,54,'verified','0'),(81,55,'rating','5'),(82,55,'verified','0'),(83,56,'rating','4'),(84,56,'verified','0'),(85,57,'rating','3'),(86,57,'verified','0'),(87,58,'rating','4'),(88,58,'verified','0'),(89,59,'rating','3'),(90,59,'verified','0'),(91,60,'rating','4'),(92,60,'verified','0'),(141,136,'rating','1'),(142,136,'verified','0'),(143,137,'rating','1'),(144,137,'verified','0'),(145,138,'rating','1'),(146,138,'verified','0'),(147,139,'rating','1'),(148,139,'verified','0'),(149,145,'rating','1'),(150,145,'verified','0'),(151,146,'rating','1'),(152,146,'verified','0');
/*!40000 ALTER TABLE `wp_commentmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_comments`
--

DROP TABLE IF EXISTS `wp_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_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)),
  KEY `woo_idx_comment_type` (`comment_type`)
) ENGINE=InnoDB AUTO_INCREMENT=147 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_comments`
--

LOCK TABLES `wp_comments` WRITE;
/*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */;
INSERT INTO `wp_comments` VALUES (1,1,'Một người bình luận WordPress','wapuu@wordpress.example','https://vi.wordpress.org/','','2024-10-20 12:18:04','2024-10-20 12:18:04','Hi, this is a comment.\nTo get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\nCommenter avatars come from <a href=\"https://en.gravatar.com/\">Gravatar</a>.',0,'1','','comment',0,0),(2,4062,'Nicole Burke','nicoleburke222@gmail.com','','217.24.25.23','2017-05-25 11:55:53','2017-05-25 11:55:53','Well structured and fun course, great explanations and useful assignments.',0,'1','','comment',0,0),(3,4062,'Ralph Jackson','ralphjackson001@gmail.com','','217.24.25.23','2017-05-25 15:04:26','2017-05-25 15:04:26','Regardless of how experienced you are, this course will really strengthen your base and if you\'re already working, it will definitely give you an answer or two to very practical problems you might be facing!',0,'1','','comment',0,0),(4,174,'Nicole Burke','nicoleburke222@gmail.com','','217.24.25.23','2017-06-14 14:17:26','2017-06-14 14:17:26','Well structured and fun course, great explanations and useful assignments.',0,'1','','comment',0,0),(5,174,'Ralph Jackson','ralphjackson001@gmail.com','','217.24.25.23','2017-06-14 14:33:02','2017-06-14 14:33:02','This course gave me the basic knowledge to manage technological projects at work. I am really happy with the amount of theory and practice I got, the homework was very relevant, and helped me to incorporate practices.',0,'1','','comment',0,0),(6,174,'Cynthia Fowler','cynthiafowler002@gmail.com','','217.24.25.23','2017-06-14 14:43:04','2017-06-14 14:43:04','Regardless of how experienced you are, this course will really strengthen your base and if you\'re already working, it will definitely give you an answer or two to very practical problems you might be facing!',0,'1','','comment',0,0),(30,692,'Nicole Burke','nicoleburke222@gmail.com','','217.24.25.23','2017-06-15 08:26:10','2017-06-15 08:26:10','Well structured and fun course, great explanations and useful assignments.',0,'1','','comment',0,0),(31,694,'Ralph Jackson','ralphjackson001@gmail.com','','217.24.25.23','2017-06-15 08:43:05','2017-06-15 08:43:05','This course gave me the basic knowledge to manage technological projects at work. I am really happy with the amount of theory and practice I got!',0,'1','','comment',0,0),(33,3010,'Ralph Jackson','ralphjackson001@gmail.com','','217.24.25.23','2017-06-15 08:41:28','2017-06-15 08:41:28','Regardless of how experienced you are, this course will really strengthen your base and if you\'re already working, it will definitely give you an answer or two to very practical problems you might be facing!',0,'1','','comment',0,0),(34,3011,'Nicole Burke','nicoleburke222@gmail.com','','217.24.25.23','2017-06-15 08:36:31','2017-06-15 08:36:31','his course gave me the basic knowledge to manage technological projects at work. I am really happy with the amount of theory and practice I got.',0,'1','','comment',0,0),(35,741,'Ralph Jackson','ralphjackson001@gmail.com','','217.24.25.23','2017-06-12 09:04:37','2017-06-12 09:04:37','Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin quis bibendum.',0,'1','','comment',0,0),(36,741,'Cynthia Fowler','cynthiafowler002@gmail.com','','217.24.25.23','2017-06-12 09:08:40','2017-06-12 09:08:40','Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit.',0,'1','','comment',0,0),(37,741,'Olivia Schmidt','oliviaschmidt003@gmail.com','','217.24.25.23','2017-06-12 09:09:41','2017-06-12 09:09:41','Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.',0,'1','','comment',35,0),(38,1189,'Cynthia Fowler','cynthiafowler002@gmail.com','','217.24.25.23','2017-06-12 09:15:44','2017-06-12 09:15:44','Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat.',0,'1','','comment',0,0),(39,1189,'Nicole Burke','nicoleburke222@gmail.com','','217.24.25.23','2017-06-12 09:16:19','2017-06-12 09:16:19','Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra.',0,'1','','comment',38,0),(40,1544,'Ralph Jackson','ralphjackson001@gmail.com','','217.24.25.23','2017-06-12 09:20:20','2017-06-12 09:20:20','Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit.',0,'1','','comment',0,0),(41,1544,'Cynthia Fowler','cynthiafowler002@gmail.com','','217.24.25.23','2017-06-12 09:22:12','2017-06-12 09:22:12','Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat.',0,'1','','comment',0,0),(42,1524,'Olivia Schmidt','oliviaschmidt003@gmail.com','','217.24.25.23','2017-06-12 09:23:26','2017-06-12 09:23:26','Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue.',0,'1','','comment',0,0),(43,1524,'Nicole Burke','nicoleburke222@gmail.com','','217.24.25.23','2017-06-12 09:23:57','2017-06-12 09:23:57','Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat fermentum.',0,'1','','comment',42,0),(44,1524,'Ralph Jackson','ralphjackson001@gmail.com','','217.24.25.23','2017-06-12 09:25:14','2017-06-12 09:25:14','Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus.',0,'1','','comment',0,0),(46,1365,'Olivia Schmidt','oliviaschmidt003@gmail.com','','217.24.25.23','2017-06-12 09:12:38','2017-06-12 09:12:38','Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra.',0,'1','','comment',0,0),(47,1365,'Ralph Jackson','ralphjackson001@gmail.com','','217.24.25.23','2017-06-12 09:14:00','2017-06-12 09:14:00','Lorem ipsum gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat.',0,'1','','comment',0,0),(48,1740,'admin','support@mikado-themes.com','','217.24.25.23','2017-06-02 12:05:16','2017-06-02 12:05:16','Awesome!',0,'1','','comment',0,0),(49,1829,'Cynthia Fowler','cynthiafowler002@gmail.com','','217.24.25.23','2017-06-08 13:06:56','2017-06-08 13:06:56','Nice collections!',0,'1','','comment',0,0),(50,1849,'Nicole Burke','nicoleburke222@gmail.com','','217.24.25.23','2017-06-08 13:06:07','2017-06-08 13:06:07','Very professional approach!',0,'1','','comment',0,0),(51,1880,'Ralph Jackson','ralphjackson001@gmail.com','','217.24.25.23','2017-06-08 12:57:18','2017-06-08 12:57:18','Excellent, very useful.',0,'1','','comment',0,0),(52,1897,'Cynthia Fowler','cynthiafowler002@gmail.com','','217.24.25.23','2017-06-08 12:57:39','2017-06-08 12:57:39','Interesting book!',0,'1','','comment',0,0),(53,1908,'Nicole Burke','nicoleburke222@gmail.com','','217.24.25.23','2017-06-08 12:58:14','2017-06-08 12:58:14','Great collection!',0,'1','','comment',0,0),(54,1917,'Olivia Schmidt','oliviaschmidt003@gmail.com','','217.24.25.23','2017-06-08 13:01:19','2017-06-08 13:01:19','Great, inspiring book!',0,'1','','comment',0,0),(55,1929,'Ralph Jackson','ralphjackson001@gmail.com','','217.24.25.23','2017-06-08 13:00:50','2017-06-08 13:00:50','Awesome!',0,'1','','comment',0,0),(56,1936,'Olivia Schmidt','oliviaschmidt003@gmail.com','','217.24.25.23','2017-06-08 13:03:45','2017-06-08 13:03:45','Very inspirational!',0,'1','','comment',0,0),(57,1957,'Ralph Jackson','ralphjackson001@gmail.com','','217.24.25.23','2017-06-08 13:06:25','2017-06-08 13:06:25','Like it!',0,'1','','comment',0,0),(58,3058,'Olivia Schmidt','oliviaschmidt003@gmail.com','','217.24.25.23','2017-06-14 12:48:58','2017-06-14 12:48:58','Very nice!',0,'1','','comment',0,0),(59,3060,'Nicole Burke','nicoleburke222@gmail.com','','217.24.25.23','2017-06-14 12:46:55','2017-06-14 12:46:55','Very inspirational!',0,'1','','comment',0,0),(60,3062,'Ralph Jackson','ralphjackson001@gmail.com','','217.24.25.23','2017-06-14 12:45:33','2017-06-14 12:45:33','Awesome!',0,'1','','comment',0,0),(61,112,'WooCommerce','woocommerce@iacademy.mikado-themes.com','','','2017-05-25 11:38:14','2017-05-25 11:38:14','Awaiting BACS payment Order status changed from Pending payment to On hold.',0,'1','','order_note',0,0),(62,112,'admin','support@mikado-themes.com','','','2017-05-25 11:39:10','2017-05-25 11:39:10','Order status changed from On hold to Completed.',0,'1','','order_note',0,0),(63,115,'WooCommerce','woocommerce@iacademy.mikado-themes.com','','','2017-05-25 11:42:49','2017-05-25 11:42:49','Awaiting BACS payment Order status changed from Pending payment to On hold.',0,'1','','order_note',0,0),(64,115,'admin','support@mikado-themes.com','','','2017-05-25 11:43:02','2017-05-25 11:43:02','Order status changed from On hold to Completed.',0,'1','','order_note',0,0),(65,3355,'WooCommerce','woocommerce@iacademy.mikado-themes.com','','','2017-06-14 14:13:25','2017-06-14 14:13:25','Order status changed from Pending payment to Completed.',0,'1','','order_note',0,0),(66,3356,'WooCommerce','woocommerce@iacademy.mikado-themes.com','','','2017-06-14 14:29:08','2017-06-14 14:29:08','Awaiting BACS payment Order status changed from Pending payment to On hold.',0,'1','','order_note',0,0),(67,3356,'admin','support@mikado-themes.com','','','2017-06-14 15:07:17','2017-06-14 15:07:17','Order status changed from On hold to Completed.',0,'1','','order_note',0,0),(68,3357,'WooCommerce','woocommerce@iacademy.mikado-themes.com','','','2017-06-14 14:32:00','2017-06-14 14:32:00','Order status changed from Pending payment to Completed.',0,'1','','order_note',0,0),(69,3360,'WooCommerce','woocommerce@iacademy.mikado-themes.com','','','2017-06-14 14:42:13','2017-06-14 14:42:13','Order status changed from Pending payment to Completed.',0,'1','','order_note',0,0),(70,3361,'WooCommerce','woocommerce@iacademy.mikado-themes.com','','','2017-06-14 14:47:15','2017-06-14 14:47:15','Awaiting BACS payment Order status changed from Pending payment to On hold.',0,'1','','order_note',0,0),(71,3361,'admin','support@mikado-themes.com','','','2017-06-14 15:07:11','2017-06-14 15:07:11','Order status changed from On hold to Completed.',0,'1','','order_note',0,0),(72,3362,'WooCommerce','woocommerce@iacademy.mikado-themes.com','','','2017-06-14 14:48:12','2017-06-14 14:48:12','Awaiting BACS payment Order status changed from Pending payment to On hold.',0,'1','','order_note',0,0),(73,3362,'admin','support@mikado-themes.com','','','2017-06-14 15:07:10','2017-06-14 15:07:10','Order status changed from On hold to Completed.',0,'1','','order_note',0,0),(74,3363,'WooCommerce','woocommerce@iacademy.mikado-themes.com','','','2017-06-14 14:49:04','2017-06-14 14:49:04','Payment to be made upon delivery. Order status changed from Pending payment to Processing.',0,'1','','order_note',0,0),(75,3363,'admin','support@mikado-themes.com','','','2017-06-14 15:07:13','2017-06-14 15:07:13','Order status changed from Processing to Completed.',0,'1','','order_note',0,0),(76,3364,'WooCommerce','woocommerce@iacademy.mikado-themes.com','','','2017-06-14 14:51:01','2017-06-14 14:51:01','Awaiting BACS payment Order status changed from Pending payment to On hold.',0,'1','','order_note',0,0),(77,3364,'admin','support@mikado-themes.com','','','2017-06-14 15:07:07','2017-06-14 15:07:07','Order status changed from On hold to Completed.',0,'1','','order_note',0,0),(78,3365,'WooCommerce','woocommerce@iacademy.mikado-themes.com','','','2017-06-14 14:53:04','2017-06-14 14:53:04','Awaiting BACS payment Order status changed from Pending payment to On hold.',0,'1','','order_note',0,0),(79,3365,'admin','support@mikado-themes.com','','','2017-06-14 15:07:04','2017-06-14 15:07:04','Order status changed from On hold to Completed.',0,'1','','order_note',0,0),(80,3366,'WooCommerce','woocommerce@iacademy.mikado-themes.com','','','2017-06-14 14:55:52','2017-06-14 14:55:52','Awaiting BACS payment Order status changed from Pending payment to On hold.',0,'1','','order_note',0,0),(81,3366,'admin','support@mikado-themes.com','','','2017-06-14 15:06:48','2017-06-14 15:06:48','Order status changed from On hold to Completed.',0,'1','','order_note',0,0),(82,3367,'WooCommerce','woocommerce@iacademy.mikado-themes.com','','','2017-06-14 15:00:03','2017-06-14 15:00:03','Order status changed from Pending payment to Completed.',0,'1','','order_note',0,0),(83,3368,'WooCommerce','woocommerce@iacademy.mikado-themes.com','','','2017-06-14 15:01:50','2017-06-14 15:01:50','Awaiting BACS payment Order status changed from Pending payment to On hold.',0,'1','','order_note',0,0),(84,3368,'admin','support@mikado-themes.com','','','2017-06-14 15:06:50','2017-06-14 15:06:50','Order status changed from On hold to Completed.',0,'1','','order_note',0,0),(85,3369,'WooCommerce','woocommerce@iacademy.mikado-themes.com','','','2017-06-14 15:03:16','2017-06-14 15:03:16','Awaiting check payment Order status changed from Pending payment to On hold.',0,'1','','order_note',0,0),(86,3369,'admin','support@mikado-themes.com','','','2017-06-14 15:06:51','2017-06-14 15:06:51','Order status changed from On hold to Completed.',0,'1','','order_note',0,0),(87,3372,'WooCommerce','woocommerce@iacademy.mikado-themes.com','','','2017-06-15 07:25:09','2017-06-15 07:25:09','Awaiting BACS payment Order status changed from Pending payment to On hold.',0,'1','','order_note',0,0),(88,3372,'admin','support@mikado-themes.com','','','2017-06-15 07:26:11','2017-06-15 07:26:11','Order status changed from On hold to Completed.',0,'1','','order_note',0,0),(89,3373,'WooCommerce','woocommerce@iacademy.mikado-themes.com','','','2017-06-15 07:29:18','2017-06-15 07:29:18','Awaiting BACS payment Order status changed from Pending payment to On hold.',0,'1','','order_note',0,0),(90,3373,'admin','support@mikado-themes.com','','','2017-06-15 07:29:38','2017-06-15 07:29:38','Order status changed from On hold to Completed.',0,'1','','order_note',0,0),(91,3374,'WooCommerce','woocommerce@iacademy.mikado-themes.com','','','2017-06-15 07:34:08','2017-06-15 07:34:08','Order status changed from Pending payment to Completed.',0,'1','','order_note',0,0),(92,3375,'WooCommerce','woocommerce@iacademy.mikado-themes.com','','','2017-06-15 07:42:01','2017-06-15 07:42:01','Order status changed from Pending payment to Completed.',0,'1','','order_note',0,0),(93,3376,'WooCommerce','woocommerce@iacademy.mikado-themes.com','','','2017-06-15 07:44:18','2017-06-15 07:44:18','Order status changed from Pending payment to Completed.',0,'1','','order_note',0,0),(94,3377,'WooCommerce','woocommerce@iacademy.mikado-themes.com','','','2017-06-15 07:45:42','2017-06-15 07:45:42','Awaiting BACS payment Order status changed from Pending payment to On hold.',0,'1','','order_note',0,0),(95,3377,'admin','support@mikado-themes.com','','','2017-06-15 07:45:50','2017-06-15 07:45:50','Order status changed from On hold to Completed.',0,'1','','order_note',0,0),(96,3378,'WooCommerce','woocommerce@iacademy.mikado-themes.com','','','2017-06-15 07:48:23','2017-06-15 07:48:23','Awaiting BACS payment Order status changed from Pending payment to On hold.',0,'1','','order_note',0,0),(97,3378,'admin','support@mikado-themes.com','','','2017-06-15 07:48:33','2017-06-15 07:48:33','Order status changed from On hold to Completed.',0,'1','','order_note',0,0),(98,3379,'WooCommerce','woocommerce@iacademy.mikado-themes.com','','','2017-06-15 07:53:38','2017-06-15 07:53:38','Order status changed from Pending payment to Completed.',0,'1','','order_note',0,0),(99,3380,'WooCommerce','woocommerce@iacademy.mikado-themes.com','','','2017-06-15 07:55:32','2017-06-15 07:55:32','Awaiting BACS payment Order status changed from Pending payment to On hold.',0,'1','','order_note',0,0),(100,3380,'admin','support@mikado-themes.com','','','2017-06-15 07:55:40','2017-06-15 07:55:40','Order status changed from On hold to Completed.',0,'1','','order_note',0,0),(101,3381,'WooCommerce','woocommerce@iacademy.mikado-themes.com','','','2017-06-15 07:57:50','2017-06-15 07:57:50','Order status changed from Pending payment to Completed.',0,'1','','order_note',0,0),(102,3382,'WooCommerce','woocommerce@iacademy.mikado-themes.com','','','2017-06-15 07:59:33','2017-06-15 07:59:33','Awaiting BACS payment Order status changed from Pending payment to On hold.',0,'1','','order_note',0,0),(103,3382,'admin','support@mikado-themes.com','','','2017-06-15 08:00:12','2017-06-15 08:00:12','Order status changed from On hold to Completed.',0,'1','','order_note',0,0),(104,3383,'WooCommerce','woocommerce@iacademy.mikado-themes.com','','','2017-06-15 08:04:50','2017-06-15 08:04:50','Order status changed from Pending payment to Completed.',0,'1','','order_note',0,0),(105,3384,'WooCommerce','woocommerce@iacademy.mikado-themes.com','','','2017-06-15 08:07:02','2017-06-15 08:07:02','Order status changed from Pending payment to Completed.',0,'1','','order_note',0,0),(106,3385,'WooCommerce','woocommerce@iacademy.mikado-themes.com','','','2017-06-15 08:09:09','2017-06-15 08:09:09','Awaiting BACS payment Order status changed from Pending payment to On hold.',0,'1','','order_note',0,0),(107,3385,'admin','support@mikado-themes.com','','','2017-06-15 08:09:52','2017-06-15 08:09:52','Order status changed from On hold to Completed.',0,'1','','order_note',0,0),(108,3386,'WooCommerce','woocommerce@iacademy.mikado-themes.com','','','2017-06-15 08:11:29','2017-06-15 08:11:29','Order status changed from Pending payment to Completed.',0,'1','','order_note',0,0),(109,3387,'WooCommerce','woocommerce@iacademy.mikado-themes.com','','','2017-06-15 08:14:12','2017-06-15 08:14:12','Awaiting BACS payment Order status changed from Pending payment to On hold.',0,'1','','order_note',0,0),(110,3387,'admin','support@mikado-themes.com','','','2017-06-15 08:14:28','2017-06-15 08:14:28','Order status changed from On hold to Completed.',0,'1','','order_note',0,0),(111,3388,'WooCommerce','woocommerce@iacademy.mikado-themes.com','','','2017-06-15 08:22:36','2017-06-15 08:22:36','Order status changed from Pending payment to Completed.',0,'1','','order_note',0,0),(112,3389,'WooCommerce','woocommerce@iacademy.mikado-themes.com','','','2017-06-15 08:25:16','2017-06-15 08:25:16','Order status changed from Pending payment to Completed.',0,'1','','order_note',0,0),(113,3390,'WooCommerce','woocommerce@iacademy.mikado-themes.com','','','2017-06-15 08:32:58','2017-06-15 08:32:58','Awaiting BACS payment Order status changed from Pending payment to On hold.',0,'1','','order_note',0,0),(114,3390,'admin','support@mikado-themes.com','','','2017-06-15 08:33:08','2017-06-15 08:33:08','Order status changed from On hold to Completed.',0,'1','','order_note',0,0),(115,3391,'WooCommerce','woocommerce@iacademy.mikado-themes.com','','','2017-06-15 08:35:45','2017-06-15 08:35:45','Order status changed from Pending payment to Completed.',0,'1','','order_note',0,0),(116,3392,'WooCommerce','woocommerce@iacademy.mikado-themes.com','','','2017-06-15 08:38:46','2017-06-15 08:38:46','Order status changed from Pending payment to Completed.',0,'1','','order_note',0,0),(117,3393,'WooCommerce','woocommerce@iacademy.mikado-themes.com','','','2017-06-15 08:40:40','2017-06-15 08:40:40','Order status changed from Pending payment to Completed.',0,'1','','order_note',0,0),(118,3394,'WooCommerce','woocommerce@iacademy.mikado-themes.com','','','2017-06-15 08:42:04','2017-06-15 08:42:04','Awaiting BACS payment Order status changed from Pending payment to On hold.',0,'1','','order_note',0,0),(119,3394,'admin','support@mikado-themes.com','','','2017-06-15 08:42:14','2017-06-15 08:42:14','Order status changed from On hold to Completed.',0,'1','','order_note',0,0),(120,3395,'WooCommerce','woocommerce@iacademy.mikado-themes.com','','','2017-06-15 08:49:05','2017-06-15 08:49:05','Order status changed from Pending payment to Completed.',0,'1','','order_note',0,0),(121,3358,'WooCommerce','woocommerce@iacademy.mikado-themes.com','','','2017-06-14 14:39:27','2017-06-14 14:39:27','Awaiting BACS payment Order status changed from Pending payment to On hold.',0,'1','','order_note',0,0),(122,3359,'WooCommerce','woocommerce@iacademy.mikado-themes.com','','','2017-06-14 14:41:08','2017-06-14 14:41:08','Awaiting BACS payment Order status changed from Pending payment to On hold.',0,'1','','order_note',0,0),(123,3370,'WooCommerce','woocommerce@iacademy.mikado-themes.com','','','2017-06-14 15:05:51','2017-06-14 15:05:51','Awaiting BACS payment Order status changed from Pending payment to On hold.',0,'1','','order_note',0,0),(124,3370,'admin','support@mikado-themes.com','','','2017-06-14 15:06:51','2017-06-14 15:06:51','Order status changed from On hold to Completed.',0,'1','','order_note',0,0),(125,3370,'admin','support@mikado-themes.com','','','2017-06-14 15:09:55','2017-06-14 15:09:55','Order status changed from Completed to Processing.',0,'1','','order_note',0,0),(126,3396,'WooCommerce','woocommerce@iacademy.mikado-themes.com','','','2017-06-15 08:50:57','2017-06-15 08:50:57','Order status changed from Pending payment to Completed.',0,'1','','order_note',0,0),(127,3398,'WooCommerce','woocommerce@iacademy.mikado-themes.com','','','2017-06-15 08:54:51','2017-06-15 08:54:51','Awaiting BACS payment Order status changed from Pending payment to On hold.',0,'1','','order_note',0,0),(128,3398,'admin','support@mikado-themes.com','','','2017-06-15 08:55:03','2017-06-15 08:55:03','Order status changed from On hold to Completed.',0,'1','','order_note',0,0),(129,1189,'* * * Unlock Free Spins Today: http://hawaiiexplorerapp.com/?szw86w * * * hs=300661b16e57458ff71ec0ebd3c095eb*','pazapz@mailbox.in.ua','http://hawaiiexplorerapp.com/?szw86w','192.42.116.217','2025-03-22 02:15:18','2025-03-21 19:15:18','wq9ig5',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','comment',0,0),(130,1189,'* * * Snag Your Free Gift * * * hs=300661b16e57458ff71ec0ebd3c095eb*','pazapz@mailbox.in.ua','http://hawaiiexplorerapp.com/?szw86w','107.189.30.86','2025-03-22 02:15:36','2025-03-21 19:15:36','ag6jmv',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','comment',0,0),(131,741,'* * * Win Free Cash Instantly: http://kethvisri.com/?1yvvbi * * * hs=996b3ce617e1751d4e32a070e59ae156*','pazapz@mailbox.in.ua','http://kethvisri.com/?1yvvbi','185.220.101.7','2025-03-22 02:16:00','2025-03-21 19:16:00','a4bu8v',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','comment',0,0),(132,1544,'* * * Claim Free iPhone 16: https://tekshareinternational.com/?vt2edj * * * hs=46428cf3409d9eed78dd0f470d9cde18*','pazapz@mailbox.in.ua','https://tekshareinternational.com/?vt2edj','146.59.231.4','2025-03-22 02:16:21','2025-03-21 19:16:21','naw7wv',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','comment',0,0),(133,1544,'* * * Get Free Bitcoin Now * * * hs=46428cf3409d9eed78dd0f470d9cde18*','pazapz@mailbox.in.ua','https://tekshareinternational.com/?vt2edj','192.42.116.197','2025-03-22 02:16:43','2025-03-21 19:16:43','l6p9no',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','comment',0,0),(134,1365,'* * * Unlock Free Spins Today * * * hs=f36abff67d3f3f0f95a786edadd6c68d*','pazapz@mailbox.in.ua','https://orionadvent.com/?jhp2fz','2.58.56.35','2025-03-22 02:17:04','2025-03-21 19:17:04','5ahomc',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','comment',0,0),(135,1524,'* * * Win Free Cash Instantly * * * hs=87c492141ed55fa817a22b27d033422d*','pazapz@mailbox.in.ua','http://shubhknk.com/?vjqbx0','45.84.107.101','2025-03-22 02:17:28','2025-03-21 19:17:28','48f1co',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','comment',0,0),(136,1880,'* * * Claim Free iPhone 16: http://cadplusindia.com/?ohc1el * * * hs=e0deff30ae727bce45d4c2ce70274b4a*','pazapz@mailbox.in.ua','','185.40.4.121','2025-03-22 02:32:39','2025-03-21 19:32:39','fx272a',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','review',0,0),(137,1908,'* * * Get Free Bitcoin Now * * * hs=1872f4db9aec4b94ab251b3a262650ac*','pazapz@mailbox.in.ua','','192.42.116.209','2025-03-22 02:32:58','2025-03-21 19:32:58','0zepbc',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','review',0,0),(138,1740,'* * * Snag Your Free Gift * * * hs=3f4780f40f92307ebcda8f0c04fc0f4c*','pazapz@mailbox.in.ua','','156.229.232.115','2025-03-22 02:33:16','2025-03-21 19:33:16','0hyyk8',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','review',0,0),(139,1829,'* * * Win Free Cash Instantly * * * hs=251b29d1b44ed83585fda6eb75fa26a2*','pazapz@mailbox.in.ua','','88.80.26.3','2025-03-22 02:33:34','2025-03-21 19:33:34','ai9oos',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','review',0,0),(140,1189,'* * * Win Free Cash Instantly: http://conseil-en-face.fr/index.php?vfq85m * * * hs=300661b16e57458ff71ec0ebd3c095eb* ххх*','pazapz@mailbox.in.ua','http://conseil-en-face.fr/index.php?vfq85m','45.84.107.198','2025-05-02 18:59:20','2025-05-02 11:59:20','g70eig',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','comment',0,0),(141,741,'* * * Claim Free iPhone 16: https://hygreen.qa/index.php?irtkz0 * * * hs=996b3ce617e1751d4e32a070e59ae156* ххх*','pazapz@mailbox.in.ua','https://hygreen.qa/index.php?irtkz0','185.220.101.38','2025-05-02 18:59:36','2025-05-02 11:59:36','cma9lu',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','comment',0,0),(142,1544,'* * * Claim Free iPhone 16 * * * hs=46428cf3409d9eed78dd0f470d9cde18* ххх*','pazapz@mailbox.in.ua','http://torontosoftwaresolutions.com/index.php?hq0vq4','185.150.28.13','2025-05-02 18:59:51','2025-05-02 11:59:51','p0zrrc',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','comment',0,0),(143,1365,'* * * Unlock Free Spins Today: https://www.primecomm.com.au/index.php?2y5kx9 * * * hs=f36abff67d3f3f0f95a786edadd6c68d* ххх*','pazapz@mailbox.in.ua','https://www.primecomm.com.au/index.php?2y5kx9','45.84.107.55','2025-05-02 19:00:07','2025-05-02 12:00:07','nxn3ke',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','comment',0,0),(144,1524,'* * * Snag Your Free Gift: http://phoneveri.com/index.php?w0qqv6 * * * hs=87c492141ed55fa817a22b27d033422d* ххх*','pazapz@mailbox.in.ua','http://phoneveri.com/index.php?w0qqv6','195.47.238.82','2025-05-02 19:00:24','2025-05-02 12:00:24','iaebye',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','comment',0,0),(145,1880,'* * * Get Free Bitcoin Now: https://www.primecomm.com.au/index.php?fz2gxu * * * hs=e0deff30ae727bce45d4c2ce70274b4a* ххх*','pazapz@mailbox.in.ua','','192.42.116.218','2025-05-02 19:07:50','2025-05-02 12:07:50','ck0297',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','review',0,0),(146,1740,'* * * Get Free Bitcoin Now: https://stanfordujjain.com/index.php?35qhll * * * hs=3f4780f40f92307ebcda8f0c04fc0f4c* ххх*','pazapz@mailbox.in.ua','','45.80.158.27','2025-05-02 19:08:06','2025-05-02 12:08:06','1s4m6r',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','review',0,0);
/*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_gf_draft_submissions`
--

DROP TABLE IF EXISTS `wp_gf_draft_submissions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_gf_draft_submissions` (
  `uuid` char(32) NOT NULL,
  `email` varchar(255) DEFAULT NULL,
  `form_id` mediumint(10) unsigned NOT NULL,
  `date_created` datetime NOT NULL,
  `ip` varchar(45) NOT NULL,
  `source_url` longtext NOT NULL,
  `submission` longtext NOT NULL,
  PRIMARY KEY (`uuid`),
  KEY `form_id` (`form_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_gf_draft_submissions`
--

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

--
-- Table structure for table `wp_gf_entry`
--

DROP TABLE IF EXISTS `wp_gf_entry`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_gf_entry` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `form_id` mediumint(10) unsigned NOT NULL,
  `post_id` bigint(10) unsigned DEFAULT NULL,
  `date_created` datetime NOT NULL,
  `date_updated` datetime DEFAULT NULL,
  `is_starred` tinyint(10) NOT NULL DEFAULT 0,
  `is_read` tinyint(10) NOT NULL DEFAULT 0,
  `ip` varchar(45) NOT NULL,
  `source_url` varchar(200) NOT NULL DEFAULT '',
  `user_agent` varchar(250) NOT NULL DEFAULT '',
  `currency` varchar(5) DEFAULT NULL,
  `payment_status` varchar(15) DEFAULT NULL,
  `payment_date` datetime DEFAULT NULL,
  `payment_amount` decimal(19,2) DEFAULT NULL,
  `payment_method` varchar(30) DEFAULT NULL,
  `transaction_id` varchar(50) DEFAULT NULL,
  `is_fulfilled` tinyint(10) DEFAULT NULL,
  `created_by` bigint(10) unsigned DEFAULT NULL,
  `transaction_type` tinyint(10) DEFAULT NULL,
  `status` varchar(20) NOT NULL DEFAULT 'active',
  PRIMARY KEY (`id`),
  KEY `form_id` (`form_id`),
  KEY `form_id_status` (`form_id`,`status`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_gf_entry`
--

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

--
-- Table structure for table `wp_gf_entry_meta`
--

DROP TABLE IF EXISTS `wp_gf_entry_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_gf_entry_meta` (
  `id` bigint(10) unsigned NOT NULL AUTO_INCREMENT,
  `form_id` mediumint(10) unsigned NOT NULL DEFAULT 0,
  `entry_id` bigint(10) unsigned NOT NULL,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  `item_index` varchar(60) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `meta_key` (`meta_key`(191)),
  KEY `entry_id` (`entry_id`),
  KEY `meta_value` (`meta_value`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_gf_entry_meta`
--

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

--
-- Table structure for table `wp_gf_entry_notes`
--

DROP TABLE IF EXISTS `wp_gf_entry_notes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_gf_entry_notes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `entry_id` int(10) unsigned NOT NULL,
  `user_name` varchar(250) DEFAULT NULL,
  `user_id` bigint(10) DEFAULT NULL,
  `date_created` datetime NOT NULL,
  `value` longtext DEFAULT NULL,
  `note_type` varchar(50) DEFAULT NULL,
  `sub_type` varchar(50) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `entry_id` (`entry_id`),
  KEY `entry_user_key` (`entry_id`,`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_gf_entry_notes`
--

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

--
-- Table structure for table `wp_gf_form`
--

DROP TABLE IF EXISTS `wp_gf_form`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_gf_form` (
  `id` mediumint(10) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(150) NOT NULL,
  `date_created` datetime NOT NULL,
  `date_updated` datetime DEFAULT NULL,
  `is_active` tinyint(10) NOT NULL DEFAULT 1,
  `is_trash` tinyint(10) NOT NULL DEFAULT 0,
  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 `wp_gf_form`
--

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

--
-- Table structure for table `wp_gf_form_meta`
--

DROP TABLE IF EXISTS `wp_gf_form_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_gf_form_meta` (
  `form_id` mediumint(10) unsigned NOT NULL,
  `display_meta` longtext DEFAULT NULL,
  `entries_grid_meta` longtext DEFAULT NULL,
  `confirmations` longtext DEFAULT NULL,
  `notifications` longtext DEFAULT NULL,
  PRIMARY KEY (`form_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_gf_form_meta`
--

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

--
-- Table structure for table `wp_gf_form_revisions`
--

DROP TABLE IF EXISTS `wp_gf_form_revisions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_gf_form_revisions` (
  `id` bigint(10) unsigned NOT NULL AUTO_INCREMENT,
  `form_id` mediumint(10) unsigned NOT NULL,
  `display_meta` longtext DEFAULT NULL,
  `date_created` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `date_created` (`date_created`),
  KEY `form_id` (`form_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_gf_form_revisions`
--

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

--
-- Table structure for table `wp_gf_form_view`
--

DROP TABLE IF EXISTS `wp_gf_form_view`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_gf_form_view` (
  `id` bigint(10) unsigned NOT NULL AUTO_INCREMENT,
  `form_id` mediumint(10) unsigned NOT NULL,
  `date_created` datetime NOT NULL,
  `ip` char(15) DEFAULT NULL,
  `count` mediumint(10) unsigned NOT NULL DEFAULT 1,
  PRIMARY KEY (`id`),
  KEY `date_created` (`date_created`),
  KEY `form_id` (`form_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_gf_form_view`
--

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

--
-- Table structure for table `wp_links`
--

DROP TABLE IF EXISTS `wp_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_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_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_links`
--

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

--
-- Table structure for table `wp_options`
--

DROP TABLE IF EXISTS `wp_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_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=65951 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_options`
--

LOCK TABLES `wp_options` WRITE;
/*!40000 ALTER TABLE `wp_options` DISABLE KEYS */;
INSERT INTO `wp_options` VALUES (1,'siteurl','http://giasuolympia.com','yes'),(2,'home','http://giasuolympia.com','yes'),(3,'blogname','Tutor','yes'),(4,'blogdescription','','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','ductai2982@gmail.com','yes'),(7,'start_of_week','1','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','j F, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:15:{i:0;s:29:\"gravityforms/gravityforms.php\";i:1;s:34:\"advanced-custom-fields-pro/acf.php\";i:2;s:19:\"bbpress/bbpress.php\";i:3;s:36:\"contact-form-7/wp-contact-form-7.php\";i:4;s:31:\"envato-market/envato-market.php\";i:5;s:27:\"js_composer/js_composer.php\";i:6;s:23:\"loco-translate/loco.php\";i:7;s:18:\"mkdf-core/main.php\";i:8;s:43:\"mkdf-instagram-feed/mkdf-instagram-feed.php\";i:9;s:17:\"mkdf-lms/main.php\";i:10;s:35:\"mkdf-membership/mkdf-membership.php\";i:11;s:39:\"mkdf-twitter-feed/mkdf-twitter-feed.php\";i:12;s:23:\"revslider/revslider.php\";i:13;s:43:\"the-events-calendar/the-events-calendar.php\";i:14;s:27:\"woocommerce/woocommerce.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','7','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','a:3:{i:0;s:71:\"/var/www/html/php/trung-tam-gia-su/wp-content/themes/iacademy/style.css\";i:1;s:68:\"D:\\zinisoft\\BE\\trung-tam-gia-su/wp-content/themes/iacademy/style.css\";i:2;s:0:\"\";}','no'),(40,'template','iacademy','yes'),(41,'stylesheet','iacademy','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','','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:1:{s:12:\"_multiwidget\";i:1;}','yes'),(77,'widget_text','a:13:{i:1;a:0:{}i:2;a:4:{s:5:\"title\";s:13:\"Chứng chỉ\";s:4:\"text\";s:101:\"Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit pri ferri.\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}i:3;a:3:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:100:\"Providing Life Changing Experiences Through Education. Class That Fit Your Busy Life. Closer to Home\";s:6:\"filter\";b:0;}i:4;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:186:\"<div style=\"display: inline-block; font-size: 12px;\">Gọi +84 932010363\n</div>    \n<div style=\"display: inline-block;font-size: 12px; margin-left:15px;\">Theo dõi chúng tôi \n</div>\n\n\n\";s:6:\"filter\";b:0;s:6:\"visual\";b:0;}i:5;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:26:\"Copyrights 2024 ©Zinisoft\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}i:6;a:3:{s:5:\"title\";s:19:\"Elements Collection\";s:4:\"text\";s:97:\"Lorem Ipsn gravida nibh vel velit auctor aliqueton sequat ipsutis sem nibh id elit. Duis sed odio\";s:6:\"filter\";b:0;}i:7;a:3:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:71:\"<span style= \"font-size:18px;\">Don’t miss anything. Follow Us.</span>\";s:6:\"filter\";b:0;}i:8;a:3:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:102:\"<span style= \"font-size:18px; color: #92919c;\">There Is No Such Thing As A Second \r\nImpression.</span>\";s:6:\"filter\";b:0;}i:9;a:3:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:147:\"<h3>Frequently Asked Questions</h3>\r\nLorem ipsum dolor sit amet, consectetur a elit. In ut ullam corper leo, eget euismod orci. Cum sociis natoque.\";s:6:\"filter\";b:0;}i:10;a:3:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:718:\"<div class=\"mkdf-anchor-menu\">\r\n<ul>\r\n<li><a class=\"mkdf-anchor\" href=\"http://iacademy.mikado-themes.com/faq/#branding\">Company Policies</a></li>\r\n<li><a class=\"mkdf-anchor\" href=\"http://iacademy.mikado-themes.com/faq/#marketing\">Payment Options</a></li>\r\n<li><a class=\"mkdf-anchor\" href=\"http://iacademy.mikado-themes.com/faq/#positioning\">Positioning</a></li>\r\n<li><a class=\"mkdf-anchor\" href=\"http://iacademy.mikado-themes.com/faq/#company\">Conditions</a></li>\r\n<li><a class=\"mkdf-anchor\" href=\"http://iacademy.mikado-themes.com/faq/#better\">Delivery Job </a></li>\r\n<li><a class=\"mkdf-anchor\" href=\"http://iacademy.mikado-themes.com/faq/#efficient\">Efficiency</a></li>\r\n</ul>\r\n</div>\r\n[vc_empty_space height=\"10px\"]\";s:6:\"filter\";b:0;}i:11;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:319:\"<div style=\"display: inline-block;font-size: 12px; color: #606264px;\">Chào mừng\n</div>\n<div style=\"display: inline-block; font-size: 12px; margin-left:15px; color: #606264px;\">Gọi +84 932010363\n</div>    \n<div style=\"display: inline-block;font-size: 12px; margin-left:15px; color: #606264px;\">Theo dõi  \n</div>\n\n\n\";s:6:\"filter\";b:0;s:6:\"visual\";b:0;}i:12;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:0:\"\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}s:12:\"_multiwidget\";i:1;}','on'),(78,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(79,'uninstall_plugins','a:0:{}','no'),(80,'timezone_string','','yes'),(81,'page_for_posts','0','yes'),(82,'page_on_front','4124','on'),(83,'default_post_format','0','yes'),(84,'link_manager_enabled','0','yes'),(85,'finished_splitting_shared_terms','1','yes'),(86,'site_icon','0','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','1744978684','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,'wp_attachment_pages_enabled','0','yes'),(100,'initial_db_version','57155','yes'),(101,'wp_user_roles','a:13:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:155:{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:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;s:25:\"read_private_tribe_events\";b:1;s:17:\"edit_tribe_events\";b:1;s:24:\"edit_others_tribe_events\";b:1;s:25:\"edit_private_tribe_events\";b:1;s:27:\"edit_published_tribe_events\";b:1;s:19:\"delete_tribe_events\";b:1;s:26:\"delete_others_tribe_events\";b:1;s:27:\"delete_private_tribe_events\";b:1;s:29:\"delete_published_tribe_events\";b:1;s:20:\"publish_tribe_events\";b:1;s:25:\"read_private_tribe_venues\";b:1;s:17:\"edit_tribe_venues\";b:1;s:24:\"edit_others_tribe_venues\";b:1;s:25:\"edit_private_tribe_venues\";b:1;s:27:\"edit_published_tribe_venues\";b:1;s:19:\"delete_tribe_venues\";b:1;s:26:\"delete_others_tribe_venues\";b:1;s:27:\"delete_private_tribe_venues\";b:1;s:29:\"delete_published_tribe_venues\";b:1;s:20:\"publish_tribe_venues\";b:1;s:29:\"read_private_tribe_organizers\";b:1;s:21:\"edit_tribe_organizers\";b:1;s:28:\"edit_others_tribe_organizers\";b:1;s:29:\"edit_private_tribe_organizers\";b:1;s:31:\"edit_published_tribe_organizers\";b:1;s:23:\"delete_tribe_organizers\";b:1;s:30:\"delete_others_tribe_organizers\";b:1;s:31:\"delete_private_tribe_organizers\";b:1;s:33:\"delete_published_tribe_organizers\";b:1;s:24:\"publish_tribe_organizers\";b:1;s:31:\"read_private_aggregator-records\";b:1;s:23:\"edit_aggregator-records\";b:1;s:30:\"edit_others_aggregator-records\";b:1;s:31:\"edit_private_aggregator-records\";b:1;s:33:\"edit_published_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";b:1;s:32:\"delete_others_aggregator-records\";b:1;s:33:\"delete_private_aggregator-records\";b:1;s:35:\"delete_published_aggregator-records\";b:1;s:26:\"publish_aggregator-records\";b:1;s:10:\"loco_admin\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:74:{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:25:\"read_private_tribe_events\";b:1;s:17:\"edit_tribe_events\";b:1;s:24:\"edit_others_tribe_events\";b:1;s:25:\"edit_private_tribe_events\";b:1;s:27:\"edit_published_tribe_events\";b:1;s:19:\"delete_tribe_events\";b:1;s:26:\"delete_others_tribe_events\";b:1;s:27:\"delete_private_tribe_events\";b:1;s:29:\"delete_published_tribe_events\";b:1;s:20:\"publish_tribe_events\";b:1;s:25:\"read_private_tribe_venues\";b:1;s:17:\"edit_tribe_venues\";b:1;s:24:\"edit_others_tribe_venues\";b:1;s:25:\"edit_private_tribe_venues\";b:1;s:27:\"edit_published_tribe_venues\";b:1;s:19:\"delete_tribe_venues\";b:1;s:26:\"delete_others_tribe_venues\";b:1;s:27:\"delete_private_tribe_venues\";b:1;s:29:\"delete_published_tribe_venues\";b:1;s:20:\"publish_tribe_venues\";b:1;s:29:\"read_private_tribe_organizers\";b:1;s:21:\"edit_tribe_organizers\";b:1;s:28:\"edit_others_tribe_organizers\";b:1;s:29:\"edit_private_tribe_organizers\";b:1;s:31:\"edit_published_tribe_organizers\";b:1;s:23:\"delete_tribe_organizers\";b:1;s:30:\"delete_others_tribe_organizers\";b:1;s:31:\"delete_private_tribe_organizers\";b:1;s:33:\"delete_published_tribe_organizers\";b:1;s:24:\"publish_tribe_organizers\";b:1;s:31:\"read_private_aggregator-records\";b:1;s:23:\"edit_aggregator-records\";b:1;s:30:\"edit_others_aggregator-records\";b:1;s:31:\"edit_private_aggregator-records\";b:1;s:33:\"edit_published_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";b:1;s:32:\"delete_others_aggregator-records\";b:1;s:33:\"delete_private_aggregator-records\";b:1;s:35:\"delete_published_aggregator-records\";b:1;s:26:\"publish_aggregator-records\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:30:{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:17:\"edit_tribe_events\";b:1;s:27:\"edit_published_tribe_events\";b:1;s:19:\"delete_tribe_events\";b:1;s:29:\"delete_published_tribe_events\";b:1;s:20:\"publish_tribe_events\";b:1;s:17:\"edit_tribe_venues\";b:1;s:27:\"edit_published_tribe_venues\";b:1;s:19:\"delete_tribe_venues\";b:1;s:29:\"delete_published_tribe_venues\";b:1;s:20:\"publish_tribe_venues\";b:1;s:21:\"edit_tribe_organizers\";b:1;s:31:\"edit_published_tribe_organizers\";b:1;s:23:\"delete_tribe_organizers\";b:1;s:33:\"delete_published_tribe_organizers\";b:1;s:24:\"publish_tribe_organizers\";b:1;s:23:\"edit_aggregator-records\";b:1;s:33:\"edit_published_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";b:1;s:35:\"delete_published_aggregator-records\";b:1;s:26:\"publish_aggregator-records\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:13:{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:17:\"edit_tribe_events\";b:1;s:19:\"delete_tribe_events\";b:1;s:17:\"edit_tribe_venues\";b:1;s:19:\"delete_tribe_venues\";b:1;s:21:\"edit_tribe_organizers\";b:1;s:23:\"delete_tribe_organizers\";b:1;s:23:\"edit_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";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:8:\"customer\";a:2:{s:4:\"name\";s:8:\"Customer\";s:12:\"capabilities\";a:1:{s:4:\"read\";b:1;}}s:12:\"shop_manager\";a:2:{s:4:\"name\";s:12:\"Shop manager\";s:12:\"capabilities\";a:92:{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:4:\"read\";b:1;s:18:\"read_private_pages\";b:1;s:18:\"read_private_posts\";b:1;s:10:\"edit_posts\";b:1;s:10:\"edit_pages\";b:1;s:20:\"edit_published_posts\";b:1;s:20:\"edit_published_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"edit_private_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:17:\"edit_others_pages\";b:1;s:13:\"publish_posts\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_posts\";b:1;s:12:\"delete_pages\";b:1;s:20:\"delete_private_pages\";b:1;s:20:\"delete_private_posts\";b:1;s:22:\"delete_published_pages\";b:1;s:22:\"delete_published_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:19:\"delete_others_pages\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:17:\"moderate_comments\";b:1;s:12:\"upload_files\";b:1;s:6:\"export\";b:1;s:6:\"import\";b:1;s:10:\"list_users\";b:1;s:18:\"edit_theme_options\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;}}s:13:\"bbp_keymaster\";a:2:{s:4:\"name\";s:9:\"Keymaster\";s:12:\"capabilities\";a:30:{s:9:\"keep_gate\";b:1;s:8:\"spectate\";b:1;s:11:\"participate\";b:1;s:8:\"moderate\";b:1;s:8:\"throttle\";b:1;s:10:\"view_trash\";b:1;s:17:\"assign_moderators\";b:1;s:14:\"publish_forums\";b:1;s:11:\"edit_forums\";b:1;s:18:\"edit_others_forums\";b:1;s:13:\"delete_forums\";b:1;s:20:\"delete_others_forums\";b:1;s:19:\"read_private_forums\";b:1;s:18:\"read_hidden_forums\";b:1;s:14:\"publish_topics\";b:1;s:11:\"edit_topics\";b:1;s:18:\"edit_others_topics\";b:1;s:13:\"delete_topics\";b:1;s:20:\"delete_others_topics\";b:1;s:19:\"read_private_topics\";b:1;s:15:\"publish_replies\";b:1;s:12:\"edit_replies\";b:1;s:19:\"edit_others_replies\";b:1;s:14:\"delete_replies\";b:1;s:21:\"delete_others_replies\";b:1;s:20:\"read_private_replies\";b:1;s:17:\"manage_topic_tags\";b:1;s:15:\"edit_topic_tags\";b:1;s:17:\"delete_topic_tags\";b:1;s:17:\"assign_topic_tags\";b:1;}}s:13:\"bbp_moderator\";a:2:{s:4:\"name\";s:9:\"Moderator\";s:12:\"capabilities\";a:26:{s:8:\"spectate\";b:1;s:11:\"participate\";b:1;s:8:\"moderate\";b:1;s:8:\"throttle\";b:1;s:10:\"view_trash\";b:1;s:17:\"assign_moderators\";b:1;s:14:\"publish_forums\";b:1;s:11:\"edit_forums\";b:1;s:19:\"read_private_forums\";b:1;s:18:\"read_hidden_forums\";b:1;s:14:\"publish_topics\";b:1;s:11:\"edit_topics\";b:1;s:18:\"edit_others_topics\";b:1;s:13:\"delete_topics\";b:1;s:20:\"delete_others_topics\";b:1;s:19:\"read_private_topics\";b:1;s:15:\"publish_replies\";b:1;s:12:\"edit_replies\";b:1;s:19:\"edit_others_replies\";b:1;s:14:\"delete_replies\";b:1;s:21:\"delete_others_replies\";b:1;s:20:\"read_private_replies\";b:1;s:17:\"manage_topic_tags\";b:1;s:15:\"edit_topic_tags\";b:1;s:17:\"delete_topic_tags\";b:1;s:17:\"assign_topic_tags\";b:1;}}s:15:\"bbp_participant\";a:2:{s:4:\"name\";s:11:\"Participant\";s:12:\"capabilities\";a:8:{s:8:\"spectate\";b:1;s:11:\"participate\";b:1;s:19:\"read_private_forums\";b:1;s:14:\"publish_topics\";b:1;s:11:\"edit_topics\";b:1;s:15:\"publish_replies\";b:1;s:12:\"edit_replies\";b:1;s:17:\"assign_topic_tags\";b:1;}}s:13:\"bbp_spectator\";a:2:{s:4:\"name\";s:9:\"Spectator\";s:12:\"capabilities\";a:1:{s:8:\"spectate\";b:1;}}s:11:\"bbp_blocked\";a:2:{s:4:\"name\";s:7:\"Blocked\";s:12:\"capabilities\";a:28:{s:8:\"spectate\";b:0;s:11:\"participate\";b:0;s:8:\"moderate\";b:0;s:8:\"throttle\";b:0;s:10:\"view_trash\";b:0;s:14:\"publish_forums\";b:0;s:11:\"edit_forums\";b:0;s:18:\"edit_others_forums\";b:0;s:13:\"delete_forums\";b:0;s:20:\"delete_others_forums\";b:0;s:19:\"read_private_forums\";b:0;s:18:\"read_hidden_forums\";b:0;s:14:\"publish_topics\";b:0;s:11:\"edit_topics\";b:0;s:18:\"edit_others_topics\";b:0;s:13:\"delete_topics\";b:0;s:20:\"delete_others_topics\";b:0;s:19:\"read_private_topics\";b:0;s:15:\"publish_replies\";b:0;s:12:\"edit_replies\";b:0;s:19:\"edit_others_replies\";b:0;s:14:\"delete_replies\";b:0;s:21:\"delete_others_replies\";b:0;s:20:\"read_private_replies\";b:0;s:17:\"manage_topic_tags\";b:0;s:15:\"edit_topic_tags\";b:0;s:17:\"delete_topic_tags\";b:0;s:17:\"assign_topic_tags\";b:0;}}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'),(102,'fresh_site','0','yes'),(103,'WPLANG','vi','yes'),(104,'user_count','1','no'),(105,'widget_block','a:7:{i:2;a:1:{s:7:\"content\";s:19:\"<!-- wp:search /-->\";}i:3;a:1:{s:7:\"content\";s:159:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Bài viết mới</h2><!-- /wp:heading --><!-- wp:latest-posts /--></div><!-- /wp:group -->\";}i:4;a:1:{s:7:\"content\";s:236:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Bình luận gần đây</h2><!-- /wp:heading --><!-- wp:latest-comments {\"displayAvatar\":false,\"displayDate\":false,\"displayExcerpt\":false} /--></div><!-- /wp:group -->\";}i:5;a:1:{s:7:\"content\";s:148:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Lưu trữ</h2><!-- /wp:heading --><!-- wp:archives /--></div><!-- /wp:group -->\";}i:6;a:1:{s:7:\"content\";s:153:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Chuyên mục</h2><!-- /wp:heading --><!-- wp:categories /--></div><!-- /wp:group -->\";}s:12:\"_multiwidget\";i:1;i:8;a:1:{s:7:\"content\";s:538:\"\n<ul class=\"ct-contact-info1  style1\">\n	<li>\n		<span class=\"mkdf-icon-widget fa fa-map-marker\"></span>\n		<span class=\"ct-contact-content\">\n		277/47 Xô Viết Nghệ Tĩnh, Phường 15, Quận Bình Thạnh, TP.HCM</span>\n	</li>\n	<li>\n		<span class=\"mkdf-icon-widget fa fa-phone\"></span>\n		<span class=\"ct-contact-content\">\n			0932010363                \n		</span>\n	</li>\n	<li>\n		<span class=\"mkdf-icon-widget fa fa-clock-o\"></span>\n			<span class=\"ct-contact-content\">\n			Thứ 2 - Thứ 7: 8:00 - 17:00           \n		</span>\n	</li>\n</ul>\";}}','on'),(106,'sidebars_widgets','a:30:{s:19:\"wp_inactive_widgets\";a:18:{i:0;s:26:\"woocommerce_price_filter-2\";i:1;s:32:\"woocommerce_product_categories-2\";i:2;s:32:\"mkdf_woocommerce_dropdown_cart-2\";i:3;s:28:\"mkdf_login_register_widget-2\";i:4;s:7:\"text-11\";i:5;s:18:\"mkdf_icon_widget-4\";i:6;s:18:\"mkdf_icon_widget-5\";i:7;s:18:\"mkdf_icon_widget-7\";i:8;s:25:\"mkdf_social_icon_widget-2\";i:9;s:25:\"mkdf_social_icon_widget-4\";i:10;s:25:\"mkdf_social_icon_widget-9\";i:11;s:19:\"mkdf_image_widget-3\";i:12;s:7:\"text-12\";i:13;s:7:\"block-2\";i:14;s:7:\"block-3\";i:15;s:7:\"block-4\";i:16;s:7:\"block-5\";i:17;s:7:\"block-6\";}s:7:\"sidebar\";a:6:{i:0;s:23:\"mkdf_separator_widget-8\";i:1;s:29:\"mkdf_blog_categories_widget-2\";i:2;s:23:\"mkdf_blog_list_widget-2\";i:3;s:24:\"mkdf_separator_widget-17\";i:4;s:28:\"mkdf_contact_form_7_widget-2\";i:5;s:23:\"mkdf_instagram_widget-3\";}s:19:\"footer_top_column_1\";a:2:{i:0;s:19:\"mkdf_image_widget-7\";i:1;s:24:\"mkdf_separator_widget-19\";}s:19:\"footer_top_column_2\";a:1:{i:0;s:7:\"block-8\";}s:19:\"footer_top_column_3\";a:1:{i:0;s:10:\"nav_menu-2\";}s:19:\"footer_top_column_4\";a:0:{}s:22:\"footer_bottom_column_1\";a:1:{i:0;s:6:\"text-5\";}s:22:\"footer_bottom_column_2\";a:4:{i:0;s:6:\"text-4\";i:1;s:25:\"mkdf_social_icon_widget-8\";i:2;s:25:\"mkdf_social_icon_widget-3\";i:3;s:26:\"mkdf_social_icon_widget-10\";}s:22:\"footer_bottom_column_3\";a:0:{}s:28:\"mkdf-header-widget-logo-area\";a:0:{}s:28:\"mkdf-header-widget-menu-area\";a:2:{i:0;s:20:\"mkdf_search_opener-2\";i:2;s:23:\"mkdf_side_area_opener-2\";}s:8:\"sidearea\";a:5:{i:0;s:19:\"mkdf_image_widget-5\";i:1;s:23:\"mkdf_separator_widget-4\";i:2;s:6:\"text-8\";i:3;s:23:\"mkdf_separator_widget-5\";i:4;s:23:\"mkdf_instagram_widget-2\";}s:15:\"sidearea-bottom\";a:5:{i:0;s:6:\"text-7\";i:1;s:23:\"mkdf_separator_widget-7\";i:2;s:25:\"mkdf_social_icon_widget-5\";i:3;s:25:\"mkdf_social_icon_widget-6\";i:4;s:25:\"mkdf_social_icon_widget-7\";}s:23:\"mkdf-mobile-menu-bottom\";a:0:{}s:17:\"mkdf-sticky-right\";a:0:{}s:17:\"mkdf-top-bar-left\";a:0:{}s:18:\"mkdf-top-bar-right\";a:0:{}s:14:\"sidebar-course\";a:7:{i:0;s:23:\"mkdf_separator_widget-9\";i:1;s:29:\"mkdf_course_features_widget-2\";i:2;s:24:\"mkdf_separator_widget-11\";i:3;s:6:\"text-2\";i:4;s:23:\"mkdf_separator_widget-2\";i:5;s:19:\"mkdf_image_widget-6\";i:6;s:24:\"mkdf_separator_widget-12\";}s:16:\"elements-sidebar\";a:2:{i:0;s:6:\"text-6\";i:1;s:10:\"nav_menu-3\";}s:17:\"course-menu-col-2\";a:0:{}s:17:\"course-menu-col-3\";a:0:{}s:17:\"course-menu-col-4\";a:0:{}s:20:\"custom-widget-home-2\";a:1:{i:0;s:23:\"mkdf_search_post_type-2\";}s:11:\"faq-sidebar\";a:3:{i:0;s:6:\"text-9\";i:1;s:7:\"text-10\";i:2;s:8:\"search-2\";}s:19:\"course-list-sidebar\";a:2:{i:0;s:31:\"mkdf_course_categories_widget-2\";i:2;s:28:\"mkdf_contact_form_7_widget-3\";}s:12:\"shop-sidebar\";a:4:{i:1;s:24:\"mkdf_separator_widget-13\";i:3;s:24:\"mkdf_separator_widget-14\";i:4;s:19:\"mkdf_image_widget-2\";i:5;s:24:\"mkdf_separator_widget-15\";}s:19:\"footer-col-1-custom\";a:5:{i:0;s:19:\"mkdf_image_widget-4\";i:1;s:24:\"mkdf_separator_widget-10\";i:2;s:6:\"text-3\";i:3;s:18:\"mkdf_icon_widget-2\";i:4;s:18:\"mkdf_icon_widget-3\";}s:14:\"landing-header\";a:1:{i:0;s:20:\"mkdf_button_widget-2\";}s:7:\"home-10\";a:1:{i:0;s:28:\"mkdf_login_register_widget-3\";}s:13:\"array_version\";i:3;}','on'),(107,'cron','a:22:{i:1746518515;a:1:{s:26:\"action_scheduler_run_queue\";a:1:{s:32:\"0d04ed39571b55704c122d726248bbac\";a:3:{s:8:\"schedule\";s:12:\"every_minute\";s:4:\"args\";a:1:{i:0;s:7:\"WP Cron\";}s:8:\"interval\";i:60;}}}i:1746519484;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:1746519921;a:1:{s:28:\"woocommerce_cleanup_sessions\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1746519922;a:1:{s:33:\"wc_admin_process_orders_milestone\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1746520040;a:1:{s:32:\"woocommerce_cancel_unpaid_orders\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1746520895;a:1:{s:20:\"jetpack_clean_nonces\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1746520908;a:1:{s:29:\"wc_admin_unsnooze_admin_notes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1746533884;a:4:{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: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;}}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:1746533899;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:1746533901;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:1746534098;a:1:{s:17:\"gravityforms_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1746535230;a:3:{s:24:\"tribe_common_log_cleanup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:16:\"tribe_daily_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:30:\"tribe_schedule_transient_purge\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1746535232;a:1:{s:14:\"wc_admin_daily\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1746535295;a:1:{s:20:\"jetpack_v2_heartbeat\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1746541531;a:2:{s:33:\"woocommerce_cleanup_personal_data\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:30:\"woocommerce_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:1746550800;a:1:{s:27:\"woocommerce_scheduled_sales\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1746552321;a:2:{s:24:\"woocommerce_cleanup_logs\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:31:\"woocommerce_cleanup_rate_limits\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1746800781;a:1:{s:25:\"woocommerce_geoip_updater\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:11:\"fifteendays\";s:4:\"args\";a:0:{}s:8:\"interval\";i:1296000;}}}i:1746965942;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:1746966013;a:1:{s:27:\"acf_update_site_health_data\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1747052284;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}','yes'),(108,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(112,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(113,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(114,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(115,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(116,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(117,'widget_recent-posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(118,'widget_recent-comments','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(119,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(120,'widget_nav_menu','a:3:{i:2;a:2:{s:5:\"title\";s:7:\"Support\";s:8:\"nav_menu\";i:17;}i:3;a:1:{s:8:\"nav_menu\";i:28;}s:12:\"_multiwidget\";i:1;}','yes'),(121,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(122,'_transient_wp_core_block_css_files','a:2:{s:7:\"version\";s:5:\"6.5.3\";s:5:\"files\";a:500:{i:0;s:23:\"archives/editor-rtl.css\";i:1;s:27:\"archives/editor-rtl.min.css\";i:2;s:19:\"archives/editor.css\";i:3;s:23:\"archives/editor.min.css\";i:4;s:22:\"archives/style-rtl.css\";i:5;s:26:\"archives/style-rtl.min.css\";i:6;s:18:\"archives/style.css\";i:7;s:22:\"archives/style.min.css\";i:8;s:20:\"audio/editor-rtl.css\";i:9;s:24:\"audio/editor-rtl.min.css\";i:10;s:16:\"audio/editor.css\";i:11;s:20:\"audio/editor.min.css\";i:12;s:19:\"audio/style-rtl.css\";i:13;s:23:\"audio/style-rtl.min.css\";i:14;s:15:\"audio/style.css\";i:15;s:19:\"audio/style.min.css\";i:16;s:19:\"audio/theme-rtl.css\";i:17;s:23:\"audio/theme-rtl.min.css\";i:18;s:15:\"audio/theme.css\";i:19;s:19:\"audio/theme.min.css\";i:20;s:21:\"avatar/editor-rtl.css\";i:21;s:25:\"avatar/editor-rtl.min.css\";i:22;s:17:\"avatar/editor.css\";i:23;s:21:\"avatar/editor.min.css\";i:24;s:20:\"avatar/style-rtl.css\";i:25;s:24:\"avatar/style-rtl.min.css\";i:26;s:16:\"avatar/style.css\";i:27;s:20:\"avatar/style.min.css\";i:28;s:20:\"block/editor-rtl.css\";i:29;s:24:\"block/editor-rtl.min.css\";i:30;s:16:\"block/editor.css\";i:31;s:20:\"block/editor.min.css\";i:32;s:21:\"button/editor-rtl.css\";i:33;s:25:\"button/editor-rtl.min.css\";i:34;s:17:\"button/editor.css\";i:35;s:21:\"button/editor.min.css\";i:36;s:20:\"button/style-rtl.css\";i:37;s:24:\"button/style-rtl.min.css\";i:38;s:16:\"button/style.css\";i:39;s:20:\"button/style.min.css\";i:40;s:22:\"buttons/editor-rtl.css\";i:41;s:26:\"buttons/editor-rtl.min.css\";i:42;s:18:\"buttons/editor.css\";i:43;s:22:\"buttons/editor.min.css\";i:44;s:21:\"buttons/style-rtl.css\";i:45;s:25:\"buttons/style-rtl.min.css\";i:46;s:17:\"buttons/style.css\";i:47;s:21:\"buttons/style.min.css\";i:48;s:22:\"calendar/style-rtl.css\";i:49;s:26:\"calendar/style-rtl.min.css\";i:50;s:18:\"calendar/style.css\";i:51;s:22:\"calendar/style.min.css\";i:52;s:25:\"categories/editor-rtl.css\";i:53;s:29:\"categories/editor-rtl.min.css\";i:54;s:21:\"categories/editor.css\";i:55;s:25:\"categories/editor.min.css\";i:56;s:24:\"categories/style-rtl.css\";i:57;s:28:\"categories/style-rtl.min.css\";i:58;s:20:\"categories/style.css\";i:59;s:24:\"categories/style.min.css\";i:60;s:19:\"code/editor-rtl.css\";i:61;s:23:\"code/editor-rtl.min.css\";i:62;s:15:\"code/editor.css\";i:63;s:19:\"code/editor.min.css\";i:64;s:18:\"code/style-rtl.css\";i:65;s:22:\"code/style-rtl.min.css\";i:66;s:14:\"code/style.css\";i:67;s:18:\"code/style.min.css\";i:68;s:18:\"code/theme-rtl.css\";i:69;s:22:\"code/theme-rtl.min.css\";i:70;s:14:\"code/theme.css\";i:71;s:18:\"code/theme.min.css\";i:72;s:22:\"columns/editor-rtl.css\";i:73;s:26:\"columns/editor-rtl.min.css\";i:74;s:18:\"columns/editor.css\";i:75;s:22:\"columns/editor.min.css\";i:76;s:21:\"columns/style-rtl.css\";i:77;s:25:\"columns/style-rtl.min.css\";i:78;s:17:\"columns/style.css\";i:79;s:21:\"columns/style.min.css\";i:80;s:29:\"comment-content/style-rtl.css\";i:81;s:33:\"comment-content/style-rtl.min.css\";i:82;s:25:\"comment-content/style.css\";i:83;s:29:\"comment-content/style.min.css\";i:84;s:30:\"comment-template/style-rtl.css\";i:85;s:34:\"comment-template/style-rtl.min.css\";i:86;s:26:\"comment-template/style.css\";i:87;s:30:\"comment-template/style.min.css\";i:88;s:42:\"comments-pagination-numbers/editor-rtl.css\";i:89;s:46:\"comments-pagination-numbers/editor-rtl.min.css\";i:90;s:38:\"comments-pagination-numbers/editor.css\";i:91;s:42:\"comments-pagination-numbers/editor.min.css\";i:92;s:34:\"comments-pagination/editor-rtl.css\";i:93;s:38:\"comments-pagination/editor-rtl.min.css\";i:94;s:30:\"comments-pagination/editor.css\";i:95;s:34:\"comments-pagination/editor.min.css\";i:96;s:33:\"comments-pagination/style-rtl.css\";i:97;s:37:\"comments-pagination/style-rtl.min.css\";i:98;s:29:\"comments-pagination/style.css\";i:99;s:33:\"comments-pagination/style.min.css\";i:100;s:29:\"comments-title/editor-rtl.css\";i:101;s:33:\"comments-title/editor-rtl.min.css\";i:102;s:25:\"comments-title/editor.css\";i:103;s:29:\"comments-title/editor.min.css\";i:104;s:23:\"comments/editor-rtl.css\";i:105;s:27:\"comments/editor-rtl.min.css\";i:106;s:19:\"comments/editor.css\";i:107;s:23:\"comments/editor.min.css\";i:108;s:22:\"comments/style-rtl.css\";i:109;s:26:\"comments/style-rtl.min.css\";i:110;s:18:\"comments/style.css\";i:111;s:22:\"comments/style.min.css\";i:112;s:20:\"cover/editor-rtl.css\";i:113;s:24:\"cover/editor-rtl.min.css\";i:114;s:16:\"cover/editor.css\";i:115;s:20:\"cover/editor.min.css\";i:116;s:19:\"cover/style-rtl.css\";i:117;s:23:\"cover/style-rtl.min.css\";i:118;s:15:\"cover/style.css\";i:119;s:19:\"cover/style.min.css\";i:120;s:22:\"details/editor-rtl.css\";i:121;s:26:\"details/editor-rtl.min.css\";i:122;s:18:\"details/editor.css\";i:123;s:22:\"details/editor.min.css\";i:124;s:21:\"details/style-rtl.css\";i:125;s:25:\"details/style-rtl.min.css\";i:126;s:17:\"details/style.css\";i:127;s:21:\"details/style.min.css\";i:128;s:20:\"embed/editor-rtl.css\";i:129;s:24:\"embed/editor-rtl.min.css\";i:130;s:16:\"embed/editor.css\";i:131;s:20:\"embed/editor.min.css\";i:132;s:19:\"embed/style-rtl.css\";i:133;s:23:\"embed/style-rtl.min.css\";i:134;s:15:\"embed/style.css\";i:135;s:19:\"embed/style.min.css\";i:136;s:19:\"embed/theme-rtl.css\";i:137;s:23:\"embed/theme-rtl.min.css\";i:138;s:15:\"embed/theme.css\";i:139;s:19:\"embed/theme.min.css\";i:140;s:19:\"file/editor-rtl.css\";i:141;s:23:\"file/editor-rtl.min.css\";i:142;s:15:\"file/editor.css\";i:143;s:19:\"file/editor.min.css\";i:144;s:18:\"file/style-rtl.css\";i:145;s:22:\"file/style-rtl.min.css\";i:146;s:14:\"file/style.css\";i:147;s:18:\"file/style.min.css\";i:148;s:23:\"footnotes/style-rtl.css\";i:149;s:27:\"footnotes/style-rtl.min.css\";i:150;s:19:\"footnotes/style.css\";i:151;s:23:\"footnotes/style.min.css\";i:152;s:23:\"freeform/editor-rtl.css\";i:153;s:27:\"freeform/editor-rtl.min.css\";i:154;s:19:\"freeform/editor.css\";i:155;s:23:\"freeform/editor.min.css\";i:156;s:22:\"gallery/editor-rtl.css\";i:157;s:26:\"gallery/editor-rtl.min.css\";i:158;s:18:\"gallery/editor.css\";i:159;s:22:\"gallery/editor.min.css\";i:160;s:21:\"gallery/style-rtl.css\";i:161;s:25:\"gallery/style-rtl.min.css\";i:162;s:17:\"gallery/style.css\";i:163;s:21:\"gallery/style.min.css\";i:164;s:21:\"gallery/theme-rtl.css\";i:165;s:25:\"gallery/theme-rtl.min.css\";i:166;s:17:\"gallery/theme.css\";i:167;s:21:\"gallery/theme.min.css\";i:168;s:20:\"group/editor-rtl.css\";i:169;s:24:\"group/editor-rtl.min.css\";i:170;s:16:\"group/editor.css\";i:171;s:20:\"group/editor.min.css\";i:172;s:19:\"group/style-rtl.css\";i:173;s:23:\"group/style-rtl.min.css\";i:174;s:15:\"group/style.css\";i:175;s:19:\"group/style.min.css\";i:176;s:19:\"group/theme-rtl.css\";i:177;s:23:\"group/theme-rtl.min.css\";i:178;s:15:\"group/theme.css\";i:179;s:19:\"group/theme.min.css\";i:180;s:21:\"heading/style-rtl.css\";i:181;s:25:\"heading/style-rtl.min.css\";i:182;s:17:\"heading/style.css\";i:183;s:21:\"heading/style.min.css\";i:184;s:19:\"html/editor-rtl.css\";i:185;s:23:\"html/editor-rtl.min.css\";i:186;s:15:\"html/editor.css\";i:187;s:19:\"html/editor.min.css\";i:188;s:20:\"image/editor-rtl.css\";i:189;s:24:\"image/editor-rtl.min.css\";i:190;s:16:\"image/editor.css\";i:191;s:20:\"image/editor.min.css\";i:192;s:19:\"image/style-rtl.css\";i:193;s:23:\"image/style-rtl.min.css\";i:194;s:15:\"image/style.css\";i:195;s:19:\"image/style.min.css\";i:196;s:19:\"image/theme-rtl.css\";i:197;s:23:\"image/theme-rtl.min.css\";i:198;s:15:\"image/theme.css\";i:199;s:19:\"image/theme.min.css\";i:200;s:29:\"latest-comments/style-rtl.css\";i:201;s:33:\"latest-comments/style-rtl.min.css\";i:202;s:25:\"latest-comments/style.css\";i:203;s:29:\"latest-comments/style.min.css\";i:204;s:27:\"latest-posts/editor-rtl.css\";i:205;s:31:\"latest-posts/editor-rtl.min.css\";i:206;s:23:\"latest-posts/editor.css\";i:207;s:27:\"latest-posts/editor.min.css\";i:208;s:26:\"latest-posts/style-rtl.css\";i:209;s:30:\"latest-posts/style-rtl.min.css\";i:210;s:22:\"latest-posts/style.css\";i:211;s:26:\"latest-posts/style.min.css\";i:212;s:18:\"list/style-rtl.css\";i:213;s:22:\"list/style-rtl.min.css\";i:214;s:14:\"list/style.css\";i:215;s:18:\"list/style.min.css\";i:216;s:25:\"media-text/editor-rtl.css\";i:217;s:29:\"media-text/editor-rtl.min.css\";i:218;s:21:\"media-text/editor.css\";i:219;s:25:\"media-text/editor.min.css\";i:220;s:24:\"media-text/style-rtl.css\";i:221;s:28:\"media-text/style-rtl.min.css\";i:222;s:20:\"media-text/style.css\";i:223;s:24:\"media-text/style.min.css\";i:224;s:19:\"more/editor-rtl.css\";i:225;s:23:\"more/editor-rtl.min.css\";i:226;s:15:\"more/editor.css\";i:227;s:19:\"more/editor.min.css\";i:228;s:30:\"navigation-link/editor-rtl.css\";i:229;s:34:\"navigation-link/editor-rtl.min.css\";i:230;s:26:\"navigation-link/editor.css\";i:231;s:30:\"navigation-link/editor.min.css\";i:232;s:29:\"navigation-link/style-rtl.css\";i:233;s:33:\"navigation-link/style-rtl.min.css\";i:234;s:25:\"navigation-link/style.css\";i:235;s:29:\"navigation-link/style.min.css\";i:236;s:33:\"navigation-submenu/editor-rtl.css\";i:237;s:37:\"navigation-submenu/editor-rtl.min.css\";i:238;s:29:\"navigation-submenu/editor.css\";i:239;s:33:\"navigation-submenu/editor.min.css\";i:240;s:25:\"navigation/editor-rtl.css\";i:241;s:29:\"navigation/editor-rtl.min.css\";i:242;s:21:\"navigation/editor.css\";i:243;s:25:\"navigation/editor.min.css\";i:244;s:24:\"navigation/style-rtl.css\";i:245;s:28:\"navigation/style-rtl.min.css\";i:246;s:20:\"navigation/style.css\";i:247;s:24:\"navigation/style.min.css\";i:248;s:23:\"nextpage/editor-rtl.css\";i:249;s:27:\"nextpage/editor-rtl.min.css\";i:250;s:19:\"nextpage/editor.css\";i:251;s:23:\"nextpage/editor.min.css\";i:252;s:24:\"page-list/editor-rtl.css\";i:253;s:28:\"page-list/editor-rtl.min.css\";i:254;s:20:\"page-list/editor.css\";i:255;s:24:\"page-list/editor.min.css\";i:256;s:23:\"page-list/style-rtl.css\";i:257;s:27:\"page-list/style-rtl.min.css\";i:258;s:19:\"page-list/style.css\";i:259;s:23:\"page-list/style.min.css\";i:260;s:24:\"paragraph/editor-rtl.css\";i:261;s:28:\"paragraph/editor-rtl.min.css\";i:262;s:20:\"paragraph/editor.css\";i:263;s:24:\"paragraph/editor.min.css\";i:264;s:23:\"paragraph/style-rtl.css\";i:265;s:27:\"paragraph/style-rtl.min.css\";i:266;s:19:\"paragraph/style.css\";i:267;s:23:\"paragraph/style.min.css\";i:268;s:25:\"post-author/style-rtl.css\";i:269;s:29:\"post-author/style-rtl.min.css\";i:270;s:21:\"post-author/style.css\";i:271;s:25:\"post-author/style.min.css\";i:272;s:33:\"post-comments-form/editor-rtl.css\";i:273;s:37:\"post-comments-form/editor-rtl.min.css\";i:274;s:29:\"post-comments-form/editor.css\";i:275;s:33:\"post-comments-form/editor.min.css\";i:276;s:32:\"post-comments-form/style-rtl.css\";i:277;s:36:\"post-comments-form/style-rtl.min.css\";i:278;s:28:\"post-comments-form/style.css\";i:279;s:32:\"post-comments-form/style.min.css\";i:280;s:27:\"post-content/editor-rtl.css\";i:281;s:31:\"post-content/editor-rtl.min.css\";i:282;s:23:\"post-content/editor.css\";i:283;s:27:\"post-content/editor.min.css\";i:284;s:23:\"post-date/style-rtl.css\";i:285;s:27:\"post-date/style-rtl.min.css\";i:286;s:19:\"post-date/style.css\";i:287;s:23:\"post-date/style.min.css\";i:288;s:27:\"post-excerpt/editor-rtl.css\";i:289;s:31:\"post-excerpt/editor-rtl.min.css\";i:290;s:23:\"post-excerpt/editor.css\";i:291;s:27:\"post-excerpt/editor.min.css\";i:292;s:26:\"post-excerpt/style-rtl.css\";i:293;s:30:\"post-excerpt/style-rtl.min.css\";i:294;s:22:\"post-excerpt/style.css\";i:295;s:26:\"post-excerpt/style.min.css\";i:296;s:34:\"post-featured-image/editor-rtl.css\";i:297;s:38:\"post-featured-image/editor-rtl.min.css\";i:298;s:30:\"post-featured-image/editor.css\";i:299;s:34:\"post-featured-image/editor.min.css\";i:300;s:33:\"post-featured-image/style-rtl.css\";i:301;s:37:\"post-featured-image/style-rtl.min.css\";i:302;s:29:\"post-featured-image/style.css\";i:303;s:33:\"post-featured-image/style.min.css\";i:304;s:34:\"post-navigation-link/style-rtl.css\";i:305;s:38:\"post-navigation-link/style-rtl.min.css\";i:306;s:30:\"post-navigation-link/style.css\";i:307;s:34:\"post-navigation-link/style.min.css\";i:308;s:28:\"post-template/editor-rtl.css\";i:309;s:32:\"post-template/editor-rtl.min.css\";i:310;s:24:\"post-template/editor.css\";i:311;s:28:\"post-template/editor.min.css\";i:312;s:27:\"post-template/style-rtl.css\";i:313;s:31:\"post-template/style-rtl.min.css\";i:314;s:23:\"post-template/style.css\";i:315;s:27:\"post-template/style.min.css\";i:316;s:24:\"post-terms/style-rtl.css\";i:317;s:28:\"post-terms/style-rtl.min.css\";i:318;s:20:\"post-terms/style.css\";i:319;s:24:\"post-terms/style.min.css\";i:320;s:24:\"post-title/style-rtl.css\";i:321;s:28:\"post-title/style-rtl.min.css\";i:322;s:20:\"post-title/style.css\";i:323;s:24:\"post-title/style.min.css\";i:324;s:26:\"preformatted/style-rtl.css\";i:325;s:30:\"preformatted/style-rtl.min.css\";i:326;s:22:\"preformatted/style.css\";i:327;s:26:\"preformatted/style.min.css\";i:328;s:24:\"pullquote/editor-rtl.css\";i:329;s:28:\"pullquote/editor-rtl.min.css\";i:330;s:20:\"pullquote/editor.css\";i:331;s:24:\"pullquote/editor.min.css\";i:332;s:23:\"pullquote/style-rtl.css\";i:333;s:27:\"pullquote/style-rtl.min.css\";i:334;s:19:\"pullquote/style.css\";i:335;s:23:\"pullquote/style.min.css\";i:336;s:23:\"pullquote/theme-rtl.css\";i:337;s:27:\"pullquote/theme-rtl.min.css\";i:338;s:19:\"pullquote/theme.css\";i:339;s:23:\"pullquote/theme.min.css\";i:340;s:39:\"query-pagination-numbers/editor-rtl.css\";i:341;s:43:\"query-pagination-numbers/editor-rtl.min.css\";i:342;s:35:\"query-pagination-numbers/editor.css\";i:343;s:39:\"query-pagination-numbers/editor.min.css\";i:344;s:31:\"query-pagination/editor-rtl.css\";i:345;s:35:\"query-pagination/editor-rtl.min.css\";i:346;s:27:\"query-pagination/editor.css\";i:347;s:31:\"query-pagination/editor.min.css\";i:348;s:30:\"query-pagination/style-rtl.css\";i:349;s:34:\"query-pagination/style-rtl.min.css\";i:350;s:26:\"query-pagination/style.css\";i:351;s:30:\"query-pagination/style.min.css\";i:352;s:25:\"query-title/style-rtl.css\";i:353;s:29:\"query-title/style-rtl.min.css\";i:354;s:21:\"query-title/style.css\";i:355;s:25:\"query-title/style.min.css\";i:356;s:20:\"query/editor-rtl.css\";i:357;s:24:\"query/editor-rtl.min.css\";i:358;s:16:\"query/editor.css\";i:359;s:20:\"query/editor.min.css\";i:360;s:19:\"quote/style-rtl.css\";i:361;s:23:\"quote/style-rtl.min.css\";i:362;s:15:\"quote/style.css\";i:363;s:19:\"quote/style.min.css\";i:364;s:19:\"quote/theme-rtl.css\";i:365;s:23:\"quote/theme-rtl.min.css\";i:366;s:15:\"quote/theme.css\";i:367;s:19:\"quote/theme.min.css\";i:368;s:23:\"read-more/style-rtl.css\";i:369;s:27:\"read-more/style-rtl.min.css\";i:370;s:19:\"read-more/style.css\";i:371;s:23:\"read-more/style.min.css\";i:372;s:18:\"rss/editor-rtl.css\";i:373;s:22:\"rss/editor-rtl.min.css\";i:374;s:14:\"rss/editor.css\";i:375;s:18:\"rss/editor.min.css\";i:376;s:17:\"rss/style-rtl.css\";i:377;s:21:\"rss/style-rtl.min.css\";i:378;s:13:\"rss/style.css\";i:379;s:17:\"rss/style.min.css\";i:380;s:21:\"search/editor-rtl.css\";i:381;s:25:\"search/editor-rtl.min.css\";i:382;s:17:\"search/editor.css\";i:383;s:21:\"search/editor.min.css\";i:384;s:20:\"search/style-rtl.css\";i:385;s:24:\"search/style-rtl.min.css\";i:386;s:16:\"search/style.css\";i:387;s:20:\"search/style.min.css\";i:388;s:20:\"search/theme-rtl.css\";i:389;s:24:\"search/theme-rtl.min.css\";i:390;s:16:\"search/theme.css\";i:391;s:20:\"search/theme.min.css\";i:392;s:24:\"separator/editor-rtl.css\";i:393;s:28:\"separator/editor-rtl.min.css\";i:394;s:20:\"separator/editor.css\";i:395;s:24:\"separator/editor.min.css\";i:396;s:23:\"separator/style-rtl.css\";i:397;s:27:\"separator/style-rtl.min.css\";i:398;s:19:\"separator/style.css\";i:399;s:23:\"separator/style.min.css\";i:400;s:23:\"separator/theme-rtl.css\";i:401;s:27:\"separator/theme-rtl.min.css\";i:402;s:19:\"separator/theme.css\";i:403;s:23:\"separator/theme.min.css\";i:404;s:24:\"shortcode/editor-rtl.css\";i:405;s:28:\"shortcode/editor-rtl.min.css\";i:406;s:20:\"shortcode/editor.css\";i:407;s:24:\"shortcode/editor.min.css\";i:408;s:24:\"site-logo/editor-rtl.css\";i:409;s:28:\"site-logo/editor-rtl.min.css\";i:410;s:20:\"site-logo/editor.css\";i:411;s:24:\"site-logo/editor.min.css\";i:412;s:23:\"site-logo/style-rtl.css\";i:413;s:27:\"site-logo/style-rtl.min.css\";i:414;s:19:\"site-logo/style.css\";i:415;s:23:\"site-logo/style.min.css\";i:416;s:27:\"site-tagline/editor-rtl.css\";i:417;s:31:\"site-tagline/editor-rtl.min.css\";i:418;s:23:\"site-tagline/editor.css\";i:419;s:27:\"site-tagline/editor.min.css\";i:420;s:25:\"site-title/editor-rtl.css\";i:421;s:29:\"site-title/editor-rtl.min.css\";i:422;s:21:\"site-title/editor.css\";i:423;s:25:\"site-title/editor.min.css\";i:424;s:24:\"site-title/style-rtl.css\";i:425;s:28:\"site-title/style-rtl.min.css\";i:426;s:20:\"site-title/style.css\";i:427;s:24:\"site-title/style.min.css\";i:428;s:26:\"social-link/editor-rtl.css\";i:429;s:30:\"social-link/editor-rtl.min.css\";i:430;s:22:\"social-link/editor.css\";i:431;s:26:\"social-link/editor.min.css\";i:432;s:27:\"social-links/editor-rtl.css\";i:433;s:31:\"social-links/editor-rtl.min.css\";i:434;s:23:\"social-links/editor.css\";i:435;s:27:\"social-links/editor.min.css\";i:436;s:26:\"social-links/style-rtl.css\";i:437;s:30:\"social-links/style-rtl.min.css\";i:438;s:22:\"social-links/style.css\";i:439;s:26:\"social-links/style.min.css\";i:440;s:21:\"spacer/editor-rtl.css\";i:441;s:25:\"spacer/editor-rtl.min.css\";i:442;s:17:\"spacer/editor.css\";i:443;s:21:\"spacer/editor.min.css\";i:444;s:20:\"spacer/style-rtl.css\";i:445;s:24:\"spacer/style-rtl.min.css\";i:446;s:16:\"spacer/style.css\";i:447;s:20:\"spacer/style.min.css\";i:448;s:20:\"table/editor-rtl.css\";i:449;s:24:\"table/editor-rtl.min.css\";i:450;s:16:\"table/editor.css\";i:451;s:20:\"table/editor.min.css\";i:452;s:19:\"table/style-rtl.css\";i:453;s:23:\"table/style-rtl.min.css\";i:454;s:15:\"table/style.css\";i:455;s:19:\"table/style.min.css\";i:456;s:19:\"table/theme-rtl.css\";i:457;s:23:\"table/theme-rtl.min.css\";i:458;s:15:\"table/theme.css\";i:459;s:19:\"table/theme.min.css\";i:460;s:23:\"tag-cloud/style-rtl.css\";i:461;s:27:\"tag-cloud/style-rtl.min.css\";i:462;s:19:\"tag-cloud/style.css\";i:463;s:23:\"tag-cloud/style.min.css\";i:464;s:28:\"template-part/editor-rtl.css\";i:465;s:32:\"template-part/editor-rtl.min.css\";i:466;s:24:\"template-part/editor.css\";i:467;s:28:\"template-part/editor.min.css\";i:468;s:27:\"template-part/theme-rtl.css\";i:469;s:31:\"template-part/theme-rtl.min.css\";i:470;s:23:\"template-part/theme.css\";i:471;s:27:\"template-part/theme.min.css\";i:472;s:30:\"term-description/style-rtl.css\";i:473;s:34:\"term-description/style-rtl.min.css\";i:474;s:26:\"term-description/style.css\";i:475;s:30:\"term-description/style.min.css\";i:476;s:27:\"text-columns/editor-rtl.css\";i:477;s:31:\"text-columns/editor-rtl.min.css\";i:478;s:23:\"text-columns/editor.css\";i:479;s:27:\"text-columns/editor.min.css\";i:480;s:26:\"text-columns/style-rtl.css\";i:481;s:30:\"text-columns/style-rtl.min.css\";i:482;s:22:\"text-columns/style.css\";i:483;s:26:\"text-columns/style.min.css\";i:484;s:19:\"verse/style-rtl.css\";i:485;s:23:\"verse/style-rtl.min.css\";i:486;s:15:\"verse/style.css\";i:487;s:19:\"verse/style.min.css\";i:488;s:20:\"video/editor-rtl.css\";i:489;s:24:\"video/editor-rtl.min.css\";i:490;s:16:\"video/editor.css\";i:491;s:20:\"video/editor.min.css\";i:492;s:19:\"video/style-rtl.css\";i:493;s:23:\"video/style-rtl.min.css\";i:494;s:15:\"video/style.css\";i:495;s:19:\"video/style.min.css\";i:496;s:19:\"video/theme-rtl.css\";i:497;s:23:\"video/theme-rtl.min.css\";i:498;s:15:\"video/theme.css\";i:499;s:19:\"video/theme.min.css\";}}','yes'),(124,'recovery_keys','a:0:{}','yes'),(127,'theme_mods_twentytwentyfour','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1729426772;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'),(144,'can_compress_scripts','1','yes'),(161,'finished_updating_comment_type','1','yes'),(166,'current_theme','iAcademy','yes'),(167,'theme_mods_iacademy','a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:2:{s:15:\"main-navigation\";i:223;s:17:\"mobile-navigation\";i:227;}s:18:\"custom_css_post_id\";i:-1;}','yes'),(168,'theme_switched','','yes'),(169,'_site_transient_wp_plugin_dependencies_plugin_data','a:0:{}','no'),(170,'recently_activated','a:1:{s:54:\"mkdf-checkout/mkdf-woocomerce-checkout-integration.php\";i:1731247080;}','yes'),(175,'acf_first_activated_version','6.3.9','yes'),(176,'acf_site_health','{\"version\":\"6.3.9\",\"plugin_type\":\"PRO\",\"update_source\":\"ACF Direct\",\"activated\":false,\"activated_url\":\"\",\"license_type\":\"\",\"license_status\":\"\",\"subscription_expires\":\"\",\"wp_version\":\"6.6.2\",\"mysql_version\":\"10.3.39-MariaDB-0ubuntu0.20.04.2\",\"is_multisite\":false,\"active_theme\":{\"name\":\"iAcademy\",\"version\":\"1.7\",\"theme_uri\":\"https:\\/\\/iacademy.qodeinteractive.com\",\"stylesheet\":false},\"active_plugins\":{\"advanced-custom-fields-pro\\/acf.php\":{\"name\":\"Advanced Custom Fields PRO\",\"version\":\"6.3.9\",\"plugin_uri\":\"https:\\/\\/www.advancedcustomfields.com\"},\"bbpress\\/bbpress.php\":{\"name\":\"bbPress\",\"version\":\"2.6.11\",\"plugin_uri\":\"https:\\/\\/bbpress.org\"},\"contact-form-7\\/wp-contact-form-7.php\":{\"name\":\"Contact Form 7\",\"version\":\"5.9.8\",\"plugin_uri\":\"https:\\/\\/contactform7.com\\/\"},\"envato-market\\/envato-market.php\":{\"name\":\"Envato Market\",\"version\":\"2.0.12\",\"plugin_uri\":\"https:\\/\\/envato.com\\/market-plugin\\/\"},\"gravityforms\\/gravityforms.php\":{\"name\":\"Gravity Forms\",\"version\":\"2.7.17\",\"plugin_uri\":\"https:\\/\\/gravityforms.com\"},\"loco-translate\\/loco.php\":{\"name\":\"Loco Translate\",\"version\":\"2.6.11\",\"plugin_uri\":\"https:\\/\\/wordpress.org\\/plugins\\/loco-translate\\/\"},\"mkdf-core\\/main.php\":{\"name\":\"Mikado Core\",\"version\":\"1.4\",\"plugin_uri\":\"\"},\"mkdf-instagram-feed\\/mkdf-instagram-feed.php\":{\"name\":\"Mikado Instagram Feed\",\"version\":\"2.0.1\",\"plugin_uri\":\"\"},\"mkdf-lms\\/main.php\":{\"name\":\"Mikado LMS\",\"version\":\"1.2.2\",\"plugin_uri\":\"\"},\"mkdf-membership\\/mkdf-membership.php\":{\"name\":\"Mikado Membership\",\"version\":\"1.1.2\",\"plugin_uri\":\"\"},\"mkdf-twitter-feed\\/mkdf-twitter-feed.php\":{\"name\":\"Mikado Twitter Feed\",\"version\":\"1.0.3\",\"plugin_uri\":\"\"},\"revslider\\/revslider.php\":{\"name\":\"Slider Revolution\",\"version\":\"6.4.11\",\"plugin_uri\":\"https:\\/\\/www.sliderrevolution.com\\/\"},\"the-events-calendar\\/the-events-calendar.php\":{\"name\":\"The Events Calendar\",\"version\":\"6.7.0\",\"plugin_uri\":\"\"},\"woocommerce\\/woocommerce.php\":{\"name\":\"WooCommerce\",\"version\":\"9.3.3\",\"plugin_uri\":\"https:\\/\\/woocommerce.com\\/\"},\"js_composer\\/js_composer.php\":{\"name\":\"WPBakery Page Builder\",\"version\":\"6.6.0\",\"plugin_uri\":\"http:\\/\\/wpbakery.com\"}},\"ui_field_groups\":\"2\",\"php_field_groups\":\"0\",\"json_field_groups\":\"0\",\"rest_field_groups\":\"0\",\"number_of_fields_by_type\":{\"text\":14,\"select\":7,\"date_picker\":1,\"number\":3},\"number_of_third_party_fields_by_type\":[],\"post_types_enabled\":true,\"ui_post_types\":\"26\",\"json_post_types\":\"0\",\"ui_taxonomies\":\"15\",\"json_taxonomies\":\"0\",\"ui_options_pages_enabled\":true,\"ui_options_pages\":\"0\",\"json_options_pages\":\"0\",\"php_options_pages\":\"0\",\"rest_api_format\":\"light\",\"registered_acf_blocks\":\"0\",\"blocks_per_api_version\":[],\"blocks_per_acf_block_version\":[],\"blocks_using_post_meta\":\"0\",\"preload_blocks\":true,\"admin_ui_enabled\":true,\"field_type-modal_enabled\":true,\"field_settings_tabs_enabled\":false,\"shortcode_enabled\":false,\"registered_acf_forms\":\"0\",\"json_save_paths\":1,\"json_load_paths\":1,\"event_first_activated_pro\":1729426813,\"event_first_created_field_group\":1729955446,\"last_updated\":1746361217}','off'),(178,'acf_version','6.3.9','yes'),(184,'rg_gforms_key','activated','yes'),(185,'gf_db_version','2.7.17','no'),(186,'rg_form_version','2.7.17','no'),(187,'gform_enable_background_updates','1','yes'),(188,'auto_update_plugins','a:1:{i:0;s:29:\"gravityforms/gravityforms.php\";}','no'),(189,'rg_gforms_default_theme','orbital','no'),(190,'rg_form_original_version','2.7.17','no'),(191,'_site_transient_t15s-registry-gforms','O:8:\"stdClass\":2:{s:8:\"projects\";a:59:{s:26:\"gravityformsactivecampaign\";a:1:{s:12:\"translations\";a:26:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2025-03-19T14:15:16+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2023-02-20T14:31:17+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2023-11-03T10:14:27+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2025-03-19T07:57:07+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2025-03-19T11:15:47+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"nl-be\";a:7:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2024-11-09T11:31:32+00:00\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-nl_BE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2022-06-27T08:31:49+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2025-03-05T14:57:41+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2025-03-05T14:57:43+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2023-11-03T10:12:05+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2025-03-18T15:06:58+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2025-03-19T09:20:30+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2025-03-05T14:57:45+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2025-03-24T15:09:35+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"hu\";a:7:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2023-11-03T10:12:16+00:00\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-hu_HU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hu\";i:1;s:3:\"hun\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2025-03-18T14:59:21+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2025-04-02T06:44:05+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"nb\";a:7:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2023-11-03T10:13:11+00:00\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-nb_NO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nb\";i:1;s:3:\"nob\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2025-03-18T15:58:58+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2025-03-18T18:39:07+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2025-04-02T13:27:41+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2025-03-29T17:58:14+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2025-03-20T19:24:04+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2025-03-19T12:47:21+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2025-03-30T21:18:28+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2025-03-30T22:29:04+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:18:\"gravityformsaweber\";a:1:{s:12:\"translations\";a:20:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"4.1.0\";s:7:\"updated\";s:25:\"2025-03-19T14:35:08+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"4.1.0\";s:7:\"updated\";s:25:\"2025-03-19T08:03:28+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"4.1.0\";s:7:\"updated\";s:25:\"2025-03-19T11:19:40+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"4.1.0\";s:7:\"updated\";s:25:\"2023-08-16T11:26:53+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"4.1.0\";s:7:\"updated\";s:25:\"2023-08-16T11:26:50+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"4.1.0\";s:7:\"updated\";s:25:\"2023-08-16T11:26:50+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"4.1.0\";s:7:\"updated\";s:25:\"2025-03-19T07:37:20+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"4.1.0\";s:7:\"updated\";s:25:\"2025-03-19T15:24:00+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"4.1.0\";s:7:\"updated\";s:25:\"2023-08-16T11:26:54+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"4.1.0\";s:7:\"updated\";s:25:\"2025-03-24T15:14:51+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"4.1.0\";s:7:\"updated\";s:25:\"2025-03-18T15:09:53+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"4.1.0\";s:7:\"updated\";s:25:\"2025-04-01T06:34:55+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"4.1.0\";s:7:\"updated\";s:25:\"2025-03-18T15:56:49+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"4.1.0\";s:7:\"updated\";s:25:\"2025-03-18T18:11:02+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"4.1.0\";s:7:\"updated\";s:25:\"2025-04-02T13:44:48+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"4.1.0\";s:7:\"updated\";s:25:\"2025-03-29T17:52:10+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"4.1.0\";s:7:\"updated\";s:25:\"2025-03-20T19:27:52+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"4.1.0\";s:7:\"updated\";s:25:\"2025-03-19T12:51:04+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"4.1.0\";s:7:\"updated\";s:25:\"2025-03-27T15:08:14+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"4.1.0\";s:7:\"updated\";s:25:\"2025-03-30T22:22:32+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:20:\"gravityformsagilecrm\";a:1:{s:12:\"translations\";a:23:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.5.2\";s:7:\"updated\";s:25:\"2025-03-19T14:37:01+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"1.5.2\";s:7:\"updated\";s:25:\"2023-02-20T14:31:14+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"1.5.2\";s:7:\"updated\";s:25:\"2023-11-03T10:14:27+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.5.2\";s:7:\"updated\";s:25:\"2025-03-19T08:01:05+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.5.2\";s:7:\"updated\";s:25:\"2025-03-19T11:18:14+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"nl-be\";a:7:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"1.5.2\";s:7:\"updated\";s:25:\"2024-11-09T11:31:32+00:00\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-nl_BE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.5.2\";s:7:\"updated\";s:25:\"2022-06-27T08:36:09+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.5.2\";s:7:\"updated\";s:25:\"2022-06-27T08:36:11+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.5.2\";s:7:\"updated\";s:25:\"2022-06-27T08:36:16+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.5.2\";s:7:\"updated\";s:25:\"2025-03-19T10:24:04+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.5.2\";s:7:\"updated\";s:25:\"2025-03-19T09:20:53+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.5.2\";s:7:\"updated\";s:25:\"2023-01-06T16:56:35+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.5.2\";s:7:\"updated\";s:25:\"2025-03-24T15:13:08+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.5.2\";s:7:\"updated\";s:25:\"2025-03-18T15:05:10+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.5.2\";s:7:\"updated\";s:25:\"2025-04-01T06:35:45+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.5.2\";s:7:\"updated\";s:25:\"2025-03-18T15:45:37+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.5.2\";s:7:\"updated\";s:25:\"2025-03-18T18:39:20+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.5.2\";s:7:\"updated\";s:25:\"2025-04-02T13:43:17+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.5.2\";s:7:\"updated\";s:25:\"2025-03-29T17:54:16+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.5.2\";s:7:\"updated\";s:25:\"2025-03-20T19:26:30+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.5.2\";s:7:\"updated\";s:25:\"2025-03-19T12:49:31+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.5.2\";s:7:\"updated\";s:25:\"2025-03-30T21:23:25+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.5.2\";s:7:\"updated\";s:25:\"2025-03-30T22:24:10+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:24:\"gravityformsauthorizenet\";a:1:{s:12:\"translations\";a:23:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2024-03-20T12:51:36+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:108:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2023-12-28T11:16:35+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2022-06-23T19:13:22+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2024-09-12T11:38:58+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"nl-be\";a:7:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2022-06-29T15:48:18+00:00\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-nl_BE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2020-10-19T11:05:17+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2020-10-19T11:04:01+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2022-06-23T19:13:41+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:108:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2023-03-02T20:29:58+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2020-10-21T11:50:09+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2023-01-06T16:57:21+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2023-01-06T16:57:37+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2023-01-06T16:57:39+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2023-01-06T16:57:45+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2023-03-14T17:38:30+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:108:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2021-09-13T20:54:56+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2020-12-17T15:01:32+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2020-12-17T15:53:58+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2023-01-06T08:01:49+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2023-01-06T16:57:28+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2023-01-06T08:01:53+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2020-11-05T09:28:49+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2023-11-09T01:30:51+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:108:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:21:\"gravityformsbatchbook\";a:1:{s:12:\"translations\";a:23:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2024-03-20T12:53:19+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2022-06-27T09:51:40+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-11-03T10:14:25+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T16:58:20+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T11:29:58+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T11:29:36+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T11:29:39+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T11:29:46+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T11:29:48+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T16:58:24+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T16:58:41+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2020-01-22T16:00:21+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T16:58:48+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-03-14T17:40:37+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"nb\";a:7:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T08:02:41+00:00\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-nb_NO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nb\";i:1;s:3:\"nob\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T08:02:47+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T08:02:49+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T11:30:05+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T11:30:11+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T16:58:32+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2020-10-21T18:08:50+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T08:02:59+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-11-09T01:26:27+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:18:\"gravityformsbreeze\";a:1:{s:12:\"translations\";a:21:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-03-19T14:38:33+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2023-02-20T14:31:14+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-03-19T08:03:58+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-03-19T11:20:05+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2022-06-27T08:34:12+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2022-03-15T13:30:44+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2022-06-23T19:13:42+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-03-19T07:33:49+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-03-19T09:21:40+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2023-01-06T16:59:43+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-03-24T15:15:41+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-03-18T15:11:29+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-04-01T06:33:30+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-03-18T16:04:19+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-03-18T18:39:39+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-04-02T13:45:16+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-03-29T17:49:19+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-03-20T19:28:07+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-03-19T12:53:20+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-03-27T15:05:01+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-03-30T22:19:44+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:27:\"gravityformscampaignmonitor\";a:1:{s:12:\"translations\";a:22:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"4.1.0\";s:7:\"updated\";s:25:\"2025-03-19T14:38:54+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:114:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"4.1.0\";s:7:\"updated\";s:25:\"2023-02-20T14:31:14+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:114:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"4.1.0\";s:7:\"updated\";s:25:\"2024-11-09T11:58:24+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"4.1.0\";s:7:\"updated\";s:25:\"2025-03-19T08:04:30+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"4.1.0\";s:7:\"updated\";s:25:\"2025-03-19T11:20:27+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"4.1.0\";s:7:\"updated\";s:25:\"2022-06-27T08:34:12+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"4.1.0\";s:7:\"updated\";s:25:\"2022-03-15T13:30:44+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"4.1.0\";s:7:\"updated\";s:25:\"2023-01-06T17:00:49+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:114:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"4.1.0\";s:7:\"updated\";s:25:\"2025-03-19T07:37:42+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"4.1.0\";s:7:\"updated\";s:25:\"2025-03-19T09:21:49+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"4.1.0\";s:7:\"updated\";s:25:\"2020-10-27T15:32:58+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"4.1.0\";s:7:\"updated\";s:25:\"2025-03-24T15:16:23+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"4.1.0\";s:7:\"updated\";s:25:\"2025-03-18T15:12:16+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"4.1.0\";s:7:\"updated\";s:25:\"2025-04-01T06:33:17+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:114:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"4.1.0\";s:7:\"updated\";s:25:\"2025-03-18T16:04:53+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"4.1.0\";s:7:\"updated\";s:25:\"2025-03-18T18:40:04+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"4.1.0\";s:7:\"updated\";s:25:\"2025-04-02T13:45:29+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"4.1.0\";s:7:\"updated\";s:25:\"2025-03-29T18:51:09+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"4.1.0\";s:7:\"updated\";s:25:\"2025-03-20T16:43:56+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"4.1.0\";s:7:\"updated\";s:25:\"2025-03-19T13:16:17+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"4.1.0\";s:7:\"updated\";s:25:\"2025-03-27T15:04:34+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"4.1.0\";s:7:\"updated\";s:25:\"2025-03-30T22:52:50+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:114:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:20:\"gravityformscampfire\";a:1:{s:12:\"translations\";a:24:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2024-03-20T12:55:41+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2019-12-10T11:43:21+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2023-01-06T17:02:39+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2023-01-06T17:01:41+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2019-12-10T11:43:51+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2019-12-10T11:43:30+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2019-12-10T11:43:34+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2022-06-27T09:53:41+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2023-03-02T20:33:52+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2019-12-10T11:43:43+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2023-01-06T17:01:45+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2020-02-18T11:26:09+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2020-01-22T16:22:19+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2019-12-10T11:43:47+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2023-03-14T17:44:01+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"nb\";a:7:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2023-03-02T20:33:59+00:00\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-nb_NO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nb\";i:1;s:3:\"nob\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2023-01-06T17:02:22+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2019-12-10T11:43:55+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2019-12-10T11:43:58+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2019-12-10T11:44:01+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2019-12-10T11:43:36+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2023-01-06T17:02:33+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2020-02-13T09:15:04+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2023-11-09T01:41:12+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:22:\"gravityformscapsulecrm\";a:1:{s:12:\"translations\";a:23:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2025-03-19T14:41:03+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:104:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2023-02-20T14:31:14+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:104:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2023-11-03T10:14:26+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2025-03-19T08:05:52+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2025-03-19T11:21:13+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"nl-be\";a:7:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2024-11-09T11:31:33+00:00\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-nl_BE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2022-06-27T08:52:42+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2022-06-27T08:52:44+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2023-01-06T17:03:07+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:104:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2025-03-19T10:25:08+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2025-03-19T09:22:00+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2023-01-06T17:03:14+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2025-03-24T15:18:53+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2025-03-18T15:20:01+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2025-04-01T06:33:04+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:104:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2025-03-18T16:07:43+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2025-03-18T18:40:30+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2025-04-02T13:46:44+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2025-03-29T18:53:38+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2025-03-20T19:29:19+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2025-03-19T13:18:09+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2025-03-30T21:28:54+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2025-03-30T22:52:20+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:104:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:26:\"gravityformschainedselects\";a:1:{s:12:\"translations\";a:22:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2024-03-26T11:38:44+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"bg\";a:7:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2023-04-14T18:06:58+00:00\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-bg_BG.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"bg\";i:1;s:3:\"bul\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2023-02-20T14:31:14+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2023-11-20T07:22:44+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2023-01-06T17:04:41+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2022-06-27T08:34:12+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2022-03-15T13:30:44+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2022-06-23T19:13:43+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2020-10-27T15:57:33+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2020-11-04T16:39:59+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2020-11-04T16:39:05+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2020-10-27T15:56:33+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2020-11-04T16:40:25+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2020-12-17T14:50:04+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2021-09-13T21:00:54+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2020-12-17T15:03:03+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2020-12-17T15:55:04+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2020-11-04T16:40:51+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2023-01-06T17:04:14+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2020-10-21T17:43:40+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2020-10-27T15:55:51+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2023-11-10T01:29:52+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:23:\"gravityformscleverreach\";a:1:{s:12:\"translations\";a:20:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2025-03-19T14:41:52+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:106:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2025-03-19T08:06:48+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2025-03-19T11:21:40+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2022-06-27T08:54:38+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2022-06-27T08:54:39+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2023-01-06T17:05:28+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:106:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2025-03-19T07:38:06+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2025-03-19T09:22:17+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2023-01-06T17:05:34+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2025-03-24T15:20:44+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2025-03-18T15:25:49+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2025-04-02T06:43:20+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:106:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2025-03-18T16:06:22+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2025-03-18T18:40:33+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2025-04-02T13:47:12+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2025-03-29T18:54:26+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2025-03-20T19:29:40+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2025-03-19T13:19:11+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2025-03-30T21:26:25+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2025-03-30T22:50:24+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:106:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:19:\"gravityformscoupons\";a:1:{s:12:\"translations\";a:23:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"3.4.1\";s:7:\"updated\";s:25:\"2025-03-19T14:42:29+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"3.4.1\";s:7:\"updated\";s:25:\"2022-06-23T19:14:14+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"3.4.1\";s:7:\"updated\";s:25:\"2025-03-19T08:07:30+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"3.4.1\";s:7:\"updated\";s:25:\"2024-09-12T11:19:25+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"3.4.1\";s:7:\"updated\";s:25:\"2022-06-27T08:34:12+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"3.4.1\";s:7:\"updated\";s:25:\"2022-03-15T13:30:44+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"3.4.1\";s:7:\"updated\";s:25:\"2022-06-23T19:13:43+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"3.4.1\";s:7:\"updated\";s:25:\"2023-03-02T20:27:34+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"3.4.1\";s:7:\"updated\";s:25:\"2025-03-19T07:38:40+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"3.4.1\";s:7:\"updated\";s:25:\"2025-03-19T09:23:19+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"3.4.1\";s:7:\"updated\";s:25:\"2023-01-06T17:06:49+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"3.4.1\";s:7:\"updated\";s:25:\"2025-03-26T15:44:36+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"3.4.1\";s:7:\"updated\";s:25:\"2025-03-18T15:26:41+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"3.4.1\";s:7:\"updated\";s:25:\"2025-04-02T06:34:19+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"nb\";a:7:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"3.4.1\";s:7:\"updated\";s:25:\"2023-11-03T10:13:14+00:00\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-nb_NO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nb\";i:1;s:3:\"nob\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"3.4.1\";s:7:\"updated\";s:25:\"2025-03-18T16:05:15+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"3.4.1\";s:7:\"updated\";s:25:\"2025-03-18T18:40:36+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"3.4.1\";s:7:\"updated\";s:25:\"2024-09-08T00:13:14+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"3.4.1\";s:7:\"updated\";s:25:\"2025-03-29T19:00:30+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"3.4.1\";s:7:\"updated\";s:25:\"2025-03-20T16:43:37+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"3.4.1\";s:7:\"updated\";s:25:\"2025-03-22T07:24:43+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"3.4.1\";s:7:\"updated\";s:25:\"2025-03-27T15:06:38+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"3.4.1\";s:7:\"updated\";s:25:\"2025-03-30T22:45:00+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:19:\"gravityformsdropbox\";a:1:{s:12:\"translations\";a:22:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"3.2.1\";s:7:\"updated\";s:25:\"2025-03-19T16:09:14+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"3.2.1\";s:7:\"updated\";s:25:\"2024-09-02T08:18:20+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"3.2.1\";s:7:\"updated\";s:25:\"2025-03-19T14:46:04+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"3.2.1\";s:7:\"updated\";s:25:\"2025-03-19T11:28:31+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"3.2.1\";s:7:\"updated\";s:25:\"2022-06-27T08:34:12+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"3.2.1\";s:7:\"updated\";s:25:\"2022-06-27T08:56:15+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"3.2.1\";s:7:\"updated\";s:25:\"2023-01-06T17:07:52+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"3.2.1\";s:7:\"updated\";s:25:\"2025-03-19T10:35:31+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"3.2.1\";s:7:\"updated\";s:25:\"2025-03-19T09:23:32+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"3.2.1\";s:7:\"updated\";s:25:\"2022-06-27T08:56:26+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"3.2.1\";s:7:\"updated\";s:25:\"2025-03-26T15:45:53+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"3.2.1\";s:7:\"updated\";s:25:\"2025-03-18T15:34:40+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"3.2.1\";s:7:\"updated\";s:25:\"2025-04-02T06:33:50+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"nb\";a:7:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"3.2.1\";s:7:\"updated\";s:25:\"2023-11-03T10:13:15+00:00\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-nb_NO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nb\";i:1;s:3:\"nob\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"3.2.1\";s:7:\"updated\";s:25:\"2025-03-18T16:02:05+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"3.2.1\";s:7:\"updated\";s:25:\"2025-03-18T18:40:58+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"3.2.1\";s:7:\"updated\";s:25:\"2025-04-02T15:53:32+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"3.2.1\";s:7:\"updated\";s:25:\"2025-03-29T19:16:51+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"3.2.1\";s:7:\"updated\";s:25:\"2025-03-20T20:05:17+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"3.2.1\";s:7:\"updated\";s:25:\"2025-03-22T07:26:02+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"3.2.1\";s:7:\"updated\";s:25:\"2025-03-05T15:11:05+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"3.2.1\";s:7:\"updated\";s:25:\"2025-03-30T22:44:36+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:16:\"gravityformsemma\";a:1:{s:12:\"translations\";a:22:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-03-19T16:12:50+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:92:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2023-02-20T14:31:14+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:92:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-03-19T15:01:48+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-03-19T11:29:55+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-03-05T14:10:50+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-03-05T14:10:51+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-03-05T14:10:54+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:92:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-03-05T14:10:56+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-03-19T09:23:59+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-03-05T14:10:58+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-03-26T15:49:47+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-03-18T15:49:44+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-04-02T06:32:04+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:92:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"nb\";a:7:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2023-11-03T10:13:14+00:00\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-nb_NO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nb\";i:1;s:3:\"nob\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-03-18T15:51:35+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-03-18T18:41:05+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-04-02T15:29:12+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-03-29T19:14:52+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-03-20T20:16:33+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-03-22T07:29:16+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-03-30T06:27:41+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-03-30T22:41:32+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:92:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:22:\"gravityformsfreshbooks\";a:1:{s:12:\"translations\";a:20:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2024-03-20T13:24:54+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:104:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2023-01-06T17:09:49+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2023-01-06T17:10:29+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2022-06-27T08:34:12+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2022-03-15T13:30:45+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2023-02-20T14:36:42+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:104:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2020-10-21T11:51:43+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2023-01-06T17:09:52+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2023-01-06T17:10:11+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2023-01-06T17:10:13+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2023-01-06T17:10:19+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2023-03-14T17:49:01+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:104:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2021-09-14T09:32:44+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2023-01-06T17:10:33+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2020-12-17T15:53:03+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2023-01-06T17:10:39+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2023-01-06T17:09:59+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2021-02-08T11:26:17+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2023-01-06T17:10:44+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2023-11-29T02:21:29+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:104:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:23:\"gravityformsgetresponse\";a:1:{s:12:\"translations\";a:20:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2025-03-19T16:13:42+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:106:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2025-03-19T15:03:09+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2025-03-19T11:30:45+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2022-06-27T08:58:09+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2022-06-27T08:58:11+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2023-01-06T17:11:13+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:106:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2025-03-19T07:40:50+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2025-03-19T09:24:14+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2023-01-06T17:11:18+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2025-03-26T15:50:57+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2025-03-18T16:08:44+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2025-04-02T07:37:54+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:106:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2025-03-18T16:02:48+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2025-03-18T18:45:04+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2025-04-02T15:55:20+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2025-03-29T19:12:36+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2025-03-20T20:06:28+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2025-03-22T07:29:56+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2025-03-30T21:24:10+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2025-03-30T22:39:14+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:106:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:21:\"gravityformshelpscout\";a:1:{s:12:\"translations\";a:21:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2024-03-20T13:26:34+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-02-20T14:31:15+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-11-24T07:42:04+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2021-10-11T17:38:30+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2022-06-27T09:58:40+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2022-06-27T09:58:42+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:12:19+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2021-10-25T16:20:17+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:12:08+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2020-11-05T09:45:35+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:12:27+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:12:32+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-03-14T17:50:31+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-11-28T21:10:33+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:12:48+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2021-10-25T23:03:06+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2021-10-20T06:44:18+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:12:15+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2021-11-04T18:39:39+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:13:00+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-11-29T02:37:34+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:20:\"gravityformshighrise\";a:1:{s:12:\"translations\";a:23:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2024-03-20T13:28:49+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2022-06-27T09:59:10+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-11-03T10:14:26+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T17:13:12+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T12:56:45+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"nl-be\";a:7:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-11-03T10:13:20+00:00\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-nl_BE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T12:56:21+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T12:56:25+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T17:13:27+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2020-07-17T13:47:39+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T12:56:18+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T17:13:33+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T17:13:35+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T17:13:40+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-03-14T17:51:12+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T17:13:52+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T17:13:54+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T12:56:52+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T12:56:56+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T17:13:23+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2021-08-02T17:30:03+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T17:14:05+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-11-19T23:28:15+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:19:\"gravityformshipchat\";a:1:{s:12:\"translations\";a:25:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2024-03-20T13:29:15+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:58:44+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2022-06-27T10:00:12+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:58:50+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:59:25+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:59:00+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:59:04+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:59:11+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2023-03-02T20:33:52+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2020-10-21T13:28:02+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:58:57+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:9:\"de/formal\";a:7:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:58:55+00:00\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:108:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-de_DE_formal.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2020-02-21T12:24:57+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2020-01-25T07:46:44+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:59:18+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2023-03-14T17:51:30+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"nb\";a:7:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:59:23+00:00\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-nb_NO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nb\";i:1;s:3:\"nob\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2023-01-06T17:14:57+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2023-01-06T17:14:59+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:59:32+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:59:35+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:59:06+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2021-08-02T17:31:33+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2020-02-13T09:22:17+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2023-11-19T23:25:08+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:19:\"gravityformsmadmimi\";a:1:{s:12:\"translations\";a:34:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2024-03-20T13:31:30+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"bg\";a:7:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-11-03T10:11:17+00:00\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-bg_BG.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"bg\";i:1;s:3:\"bul\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-02-20T14:31:15+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-11-03T10:14:27+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:5:\"zh-hk\";a:7:{s:8:\"language\";s:5:\"zh_HK\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-11-03T10:14:32+00:00\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:16:\"香港中文版	\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-zh_HK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-01-06T17:15:22+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-01-06T17:16:07+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"nl-be\";a:7:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-11-03T10:13:20+00:00\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-nl_BE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2022-06-27T08:34:12+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2022-03-15T13:30:45+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-01-06T17:15:43+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-11-03T10:12:06+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2020-10-21T11:52:31+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-01-06T17:15:26+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:14:\"de-ch/informal\";a:7:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-09-25T12:09:30+00:00\";s:12:\"english_name\";s:30:\"German (Switzerland, Informal)\";s:11:\"native_name\";s:21:\"Deutsch (Schweiz, Du)\";s:7:\"package\";s:110:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-de_CH_informal.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:5:\"de-ch\";a:7:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-11-03T10:11:27+00:00\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-de_CH.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-01-06T17:15:49+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-01-06T17:15:52+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"hu\";a:7:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-11-03T10:12:13+00:00\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-hu_HU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hu\";i:1;s:3:\"hun\";}}s:2:\"id\";a:7:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-11-03T10:12:30+00:00\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-id_ID.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"id\";i:1;s:3:\"ind\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-01-06T17:15:57+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-03-14T17:52:56+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"nb\";a:7:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-11-03T10:13:15+00:00\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-nb_NO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nb\";i:1;s:3:\"nob\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2021-10-02T10:46:06+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-01-06T17:16:11+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2020-12-17T15:55:55+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ro\";a:7:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-11-03T10:13:47+00:00\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-ro_RO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ro\";i:1;s:3:\"ron\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-01-06T17:16:17+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"sr\";a:7:{s:8:\"language\";s:5:\"sr_RS\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-11-03T10:14:16+00:00\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-sr_RS.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sr\";i:1;s:3:\"srp\";}}s:5:\"es-mx\";a:7:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-11-03T10:11:53+00:00\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-es_MX.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-01-06T17:15:36+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2021-08-02T17:35:32+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-01-06T17:16:24+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-11-09T01:39:35+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:21:\"gravityformsmailchimp\";a:1:{s:12:\"translations\";a:22:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"5.2.2\";s:7:\"updated\";s:25:\"2024-03-20T13:32:12+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"5.2.2\";s:7:\"updated\";s:25:\"2023-11-24T12:41:33+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"5.2.2\";s:7:\"updated\";s:25:\"2023-01-06T17:17:15+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"5.2.2\";s:7:\"updated\";s:25:\"2022-06-27T08:43:13+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"5.2.2\";s:7:\"updated\";s:25:\"2022-03-15T13:30:44+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"5.2.2\";s:7:\"updated\";s:25:\"2023-01-06T17:16:52+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"5.2.2\";s:7:\"updated\";s:25:\"2023-03-02T20:28:02+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"5.2.2\";s:7:\"updated\";s:25:\"2021-10-25T16:35:54+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"5.2.2\";s:7:\"updated\";s:25:\"2023-01-06T17:16:39+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"5.2.2\";s:7:\"updated\";s:25:\"2023-01-06T17:16:57+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"5.2.2\";s:7:\"updated\";s:25:\"2021-10-17T13:48:34+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"5.2.2\";s:7:\"updated\";s:25:\"2023-01-06T17:17:05+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"5.2.2\";s:7:\"updated\";s:25:\"2023-02-04T16:58:16+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"nb\";a:7:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"5.2.2\";s:7:\"updated\";s:25:\"2023-11-03T10:13:13+00:00\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-nb_NO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nb\";i:1;s:3:\"nob\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"5.2.2\";s:7:\"updated\";s:25:\"2023-11-28T21:13:27+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"5.2.2\";s:7:\"updated\";s:25:\"2023-01-06T17:17:19+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"5.2.2\";s:7:\"updated\";s:25:\"2021-10-25T23:02:38+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"5.2.2\";s:7:\"updated\";s:25:\"2023-01-06T17:17:25+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"5.2.2\";s:7:\"updated\";s:25:\"2023-01-06T17:16:47+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"5.2.2\";s:7:\"updated\";s:25:\"2023-01-06T17:17:29+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"5.2.2\";s:7:\"updated\";s:25:\"2023-01-06T17:17:31+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"5.2.2\";s:7:\"updated\";s:25:\"2023-11-25T20:33:22+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:26:\"gravityformspartialentries\";a:1:{s:12:\"translations\";a:27:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2023-11-23T11:07:56+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"bg\";a:7:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2023-04-14T17:10:56+00:00\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-bg_BG.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"bg\";i:1;s:3:\"bul\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2023-02-20T14:31:15+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2024-11-09T11:58:41+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2023-11-26T19:03:02+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2023-01-06T17:18:21+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"nl-be\";a:7:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2024-11-09T11:31:43+00:00\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-nl_BE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2022-06-27T08:34:12+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2022-03-15T13:30:45+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2022-06-23T19:13:42+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2020-10-21T13:19:25+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2023-01-06T17:17:46+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:14:\"de-ch/informal\";a:7:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2023-09-25T12:09:31+00:00\";s:12:\"english_name\";s:30:\"German (Switzerland, Informal)\";s:11:\"native_name\";s:21:\"Deutsch (Schweiz, Du)\";s:7:\"package\";s:124:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-de_CH_informal.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:5:\"de-ch\";a:7:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2023-10-17T13:38:00+00:00\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-de_CH.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2023-01-06T17:18:03+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2023-01-06T17:18:05+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"hu\";a:7:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2024-11-08T17:21:07+00:00\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-hu_HU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hu\";i:1;s:3:\"hun\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2023-01-06T17:18:12+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2020-12-17T14:50:15+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2021-09-14T09:48:18+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2023-01-06T17:18:24+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2020-12-17T15:55:24+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2023-01-06T17:18:31+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2023-01-06T17:17:54+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2021-08-02T17:40:09+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2020-11-05T09:27:36+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2023-11-25T20:27:12+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:29:\"gravityformspaypalpaymentspro\";a:1:{s:12:\"translations\";a:22:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2024-03-20T13:33:43+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:118:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2023-12-28T11:16:35+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2023-11-26T19:04:21+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2020-11-05T13:08:48+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2022-06-27T08:34:12+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2022-03-15T13:30:45+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2022-06-23T19:13:42+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:118:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2023-03-02T20:27:35+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2021-03-24T14:22:06+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2020-11-05T13:07:45+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2020-11-05T13:09:54+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2023-01-06T17:19:10+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2020-11-05T13:08:26+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2023-03-14T17:54:30+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:118:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2021-09-14T09:52:47+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2023-01-06T17:19:29+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2020-12-17T14:13:06+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2020-11-05T13:10:17+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2020-11-05T13:09:09+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2021-09-29T18:02:03+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2023-01-06T17:19:40+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2023-11-25T20:24:57+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:118:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:18:\"gravityformspaypal\";a:1:{s:12:\"translations\";a:22:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2024-03-20T15:01:34+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2023-01-06T17:20:51+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2022-06-23T19:13:23+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2023-01-06T17:20:31+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2022-06-27T08:34:12+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2022-06-27T10:05:05+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2022-06-23T19:13:41+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2023-03-02T20:27:35+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2020-10-21T11:52:44+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2023-01-06T17:19:55+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2023-01-06T17:20:13+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2023-01-06T17:20:15+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2023-01-06T17:20:21+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2023-03-14T17:54:51+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2021-09-14T09:52:14+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2023-01-06T17:20:35+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2020-12-17T15:54:54+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2023-01-06T17:20:40+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2023-01-06T17:20:03+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2021-09-29T18:06:04+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2023-01-06T17:20:46+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2023-12-01T23:37:46+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:21:\"gravityformspaypalpro\";a:1:{s:12:\"translations\";a:30:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2024-03-23T14:15:30+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"bg\";a:7:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2023-04-15T14:48:04+00:00\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-bg_BG.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"bg\";i:1;s:3:\"bul\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2023-12-28T11:11:03+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2023-12-28T11:16:36+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:5:\"zh-hk\";a:7:{s:8:\"language\";s:5:\"zh_HK\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2023-03-02T20:50:54+00:00\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:16:\"香港中文版	\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-zh_HK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-05-13T16:59:29+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-05-13T16:55:46+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-05-13T16:55:30+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-05-13T16:55:02+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-05-13T16:55:18+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-05-13T16:54:52+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2021-03-24T11:58:48+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-05-13T16:56:58+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:9:\"de/formal\";a:7:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2023-03-30T13:48:05+00:00\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-de_DE_formal.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:14:\"de-ch/informal\";a:7:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2023-09-25T12:58:34+00:00\";s:12:\"english_name\";s:30:\"German (Switzerland, Informal)\";s:11:\"native_name\";s:21:\"Deutsch (Schweiz, Du)\";s:7:\"package\";s:114:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-de_CH_informal.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:5:\"de-ch\";a:7:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2023-10-17T13:40:59+00:00\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-de_CH.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-04-29T16:41:43+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-01-27T16:56:20+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"hu\";a:7:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2023-03-02T20:50:29+00:00\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-hu_HU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hu\";i:1;s:3:\"hun\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-05-13T16:54:26+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2023-03-14T17:55:20+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"nb\";a:7:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2019-12-10T13:19:22+00:00\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-nb_NO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nb\";i:1;s:3:\"nob\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2021-09-14T09:53:44+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-05-13T16:53:59+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-05-13T16:54:40+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-05-13T16:57:32+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-05-13T16:56:26+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2021-11-04T18:47:08+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-04-29T16:42:28+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2023-12-01T23:55:20+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:17:\"gravityformspolls\";a:1:{s:12:\"translations\";a:21:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2024-03-20T15:15:58+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:94:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2023-11-27T04:51:47+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2020-11-05T15:15:31+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2022-06-27T09:09:10+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2022-06-27T09:09:12+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2022-06-27T09:09:20+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:94:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2023-03-02T20:51:24+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2020-10-21T13:43:25+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2020-11-05T15:13:17+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2023-01-06T17:22:24+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2020-11-05T15:17:13+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2023-01-06T17:22:32+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2023-03-14T17:55:58+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:94:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2021-09-14T09:55:19+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2020-12-17T14:20:05+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2020-12-17T14:19:33+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2020-11-05T15:18:45+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2023-01-06T17:22:14+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2021-11-04T18:52:05+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2020-06-29T08:29:29+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2023-12-02T00:08:37+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:94:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:20:\"gravityformspostmark\";a:1:{s:12:\"translations\";a:18:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2023-11-24T12:00:03+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2023-11-27T04:54:05+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2021-05-24T11:44:53+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2022-06-27T09:11:37+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2021-05-25T21:03:26+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2021-05-31T19:40:40+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2021-03-29T18:54:45+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2021-05-22T09:30:48+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2021-05-26T12:48:57+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2021-06-04T08:26:03+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2021-09-14T09:55:49+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2021-05-31T04:01:04+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2021-04-11T21:20:33+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2021-05-20T16:53:54+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2021-06-01T17:59:01+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2021-06-05T06:35:48+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2021-05-26T23:45:38+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2023-11-25T20:16:29+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:16:\"gravityformsquiz\";a:1:{s:12:\"translations\";a:21:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:25:\"2024-09-07T08:40:34+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:92:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:25:\"2024-09-17T12:15:00+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:25:\"2024-09-06T18:20:38+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:25:\"2024-07-10T08:01:14+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:25:\"2024-07-10T08:01:15+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:25:\"2024-07-10T08:01:15+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:92:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:25:\"2024-07-10T08:01:12+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:25:\"2024-09-17T15:15:27+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:25:\"2024-09-19T07:49:40+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:25:\"2024-07-10T08:01:13+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:25:\"2024-09-26T10:46:55+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:25:\"2024-09-17T20:51:56+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:25:\"2024-10-02T06:51:05+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:92:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:25:\"2024-09-10T10:06:05+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:25:\"2024-09-06T19:10:38+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:25:\"2024-09-11T23:20:43+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:25:\"2024-09-15T19:21:44+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:25:\"2024-09-24T12:53:46+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:25:\"2024-09-22T19:36:46+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:25:\"2024-09-17T09:14:40+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:25:\"2024-09-15T19:21:20+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:92:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:21:\"gravityformssignature\";a:1:{s:12:\"translations\";a:25:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"4.8.0\";s:7:\"updated\";s:25:\"2025-03-19T16:17:23+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"4.8.0\";s:7:\"updated\";s:25:\"2023-02-20T14:32:41+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"4.8.0\";s:7:\"updated\";s:25:\"2022-06-27T10:11:12+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"4.8.0\";s:7:\"updated\";s:25:\"2025-03-24T08:43:38+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"4.8.0\";s:7:\"updated\";s:25:\"2025-03-19T11:44:44+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"nl-be\";a:7:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"4.8.0\";s:7:\"updated\";s:25:\"2024-11-09T11:33:00+00:00\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-nl_BE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"4.8.0\";s:7:\"updated\";s:25:\"2022-06-27T08:34:12+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"4.8.0\";s:7:\"updated\";s:25:\"2022-03-15T13:30:45+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"4.8.0\";s:7:\"updated\";s:25:\"2021-08-12T08:00:46+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"4.8.0\";s:7:\"updated\";s:25:\"2023-03-02T20:55:38+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"4.8.0\";s:7:\"updated\";s:25:\"2025-03-19T07:42:56+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"4.8.0\";s:7:\"updated\";s:25:\"2025-03-19T09:28:09+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"4.8.0\";s:7:\"updated\";s:25:\"2023-03-02T20:55:40+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"4.8.0\";s:7:\"updated\";s:25:\"2025-03-26T16:52:40+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"id\";a:7:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:5:\"4.8.0\";s:7:\"updated\";s:25:\"2024-09-02T08:48:32+00:00\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-id_ID.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"id\";i:1;s:3:\"ind\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"4.8.0\";s:7:\"updated\";s:25:\"2025-03-18T16:56:26+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"4.8.0\";s:7:\"updated\";s:25:\"2025-04-02T07:03:50+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"4.8.0\";s:7:\"updated\";s:25:\"2025-03-18T16:06:03+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"4.8.0\";s:7:\"updated\";s:25:\"2025-03-18T19:08:56+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"4.8.0\";s:7:\"updated\";s:25:\"2025-04-02T16:07:30+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"4.8.0\";s:7:\"updated\";s:25:\"2025-03-29T18:33:52+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"4.8.0\";s:7:\"updated\";s:25:\"2025-03-20T16:45:25+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"4.8.0\";s:7:\"updated\";s:25:\"2025-03-22T07:55:39+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"4.8.0\";s:7:\"updated\";s:25:\"2025-03-30T12:11:45+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"4.8.0\";s:7:\"updated\";s:25:\"2025-03-30T23:01:49+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:17:\"gravityformsslack\";a:1:{s:12:\"translations\";a:21:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2025-03-19T16:18:46+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:94:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"bg\";a:7:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2023-04-14T18:11:09+00:00\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-bg_BG.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"bg\";i:1;s:3:\"bul\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2025-03-24T08:44:34+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2025-03-19T11:45:41+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2022-06-27T08:34:12+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2022-03-15T13:30:45+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2023-01-06T17:26:43+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:94:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2025-03-19T07:48:34+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2025-03-19T09:27:59+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2023-01-06T17:26:48+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2025-03-26T16:52:08+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2025-03-18T16:57:49+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2025-04-02T07:03:12+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:94:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2025-03-18T16:08:17+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2025-03-18T22:09:43+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2025-04-02T15:58:47+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2025-03-29T18:35:17+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2025-03-20T16:49:20+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2025-03-22T07:56:35+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2025-03-30T21:31:04+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2025-03-31T00:49:49+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:94:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:18:\"gravityformsstripe\";a:1:{s:12:\"translations\";a:20:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:25:\"2025-03-20T11:55:05+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:25:\"2025-03-28T05:29:05+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:25:\"2025-03-19T11:52:50+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:25:\"2025-03-05T13:21:12+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:25:\"2025-03-05T13:21:13+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:25:\"2025-03-05T13:22:45+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:25:\"2025-03-19T11:22:35+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:25:\"2025-03-19T09:27:30+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:25:\"2025-03-05T13:22:46+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:25:\"2025-03-27T09:43:16+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:25:\"2025-03-24T12:56:10+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:25:\"2025-04-02T07:49:04+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:25:\"2025-03-18T15:42:59+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:25:\"2025-03-18T22:32:35+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:25:\"2025-04-02T15:16:06+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:25:\"2025-03-29T18:50:40+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:25:\"2025-03-20T20:57:41+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:25:\"2025-03-22T08:10:34+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:25:\"2025-03-30T21:11:41+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:25:\"2025-03-31T00:46:56+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:18:\"gravityformssurvey\";a:1:{s:12:\"translations\";a:27:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:25:\"2024-03-20T15:11:13+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"bg\";a:7:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:25:\"2023-04-14T18:14:00+00:00\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-bg_BG.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"bg\";i:1;s:3:\"bul\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:25:\"2024-09-02T08:43:26+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:25:\"2022-06-23T19:14:15+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:25:\"2024-03-20T05:58:48+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:25:\"2024-03-15T15:32:19+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:25:\"2022-06-27T08:34:13+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:25:\"2022-03-15T13:30:45+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:25:\"2022-06-23T19:13:41+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:25:\"2023-03-02T20:57:55+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:25:\"2024-03-19T08:50:27+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:25:\"2024-03-28T10:17:54+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:14:\"de-ch/informal\";a:7:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:25:\"2023-09-25T12:51:08+00:00\";s:12:\"english_name\";s:30:\"German (Switzerland, Informal)\";s:11:\"native_name\";s:21:\"Deutsch (Schweiz, Du)\";s:7:\"package\";s:108:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-de_CH_informal.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:5:\"de-ch\";a:7:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:25:\"2023-10-17T13:14:03+00:00\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-de_CH.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:25:\"2020-11-06T13:17:26+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:25:\"2024-04-01T11:10:01+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"hu\";a:7:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:25:\"2024-11-08T17:20:20+00:00\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-hu_HU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hu\";i:1;s:3:\"hun\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:25:\"2024-03-19T16:32:17+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:25:\"2024-04-01T05:03:07+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:25:\"2024-03-18T10:41:56+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:25:\"2024-03-21T23:00:49+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:25:\"2024-03-31T22:09:46+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:25:\"2024-03-20T22:24:23+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:25:\"2024-03-25T10:52:40+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:25:\"2024-04-02T20:12:15+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:25:\"2024-03-20T18:41:25+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:25:\"2024-03-20T22:24:57+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:18:\"gravityformstrello\";a:1:{s:12:\"translations\";a:21:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2025-03-19T16:47:20+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2024-09-02T08:18:24+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2025-03-18T13:28:46+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2025-03-19T11:53:16+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2022-06-27T08:34:13+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2022-03-15T13:30:45+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2023-01-06T17:29:56+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2025-03-18T15:26:43+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2023-01-06T17:29:45+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2023-01-06T17:30:03+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2025-03-26T16:54:51+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2025-03-18T17:00:57+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2025-04-02T06:56:40+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2025-03-18T16:04:33+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2025-03-18T22:10:14+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2025-04-02T16:08:09+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2025-03-29T18:29:32+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2025-03-20T20:39:11+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2025-03-22T08:10:53+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2025-03-27T15:04:50+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2025-03-30T23:00:57+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:18:\"gravityformstwilio\";a:1:{s:12:\"translations\";a:20:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"3.0.1\";s:7:\"updated\";s:25:\"2025-03-19T16:46:45+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"3.0.1\";s:7:\"updated\";s:25:\"2023-11-30T07:19:29+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"3.0.1\";s:7:\"updated\";s:25:\"2025-03-19T11:53:28+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"3.0.1\";s:7:\"updated\";s:25:\"2023-01-05T16:46:39+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"3.0.1\";s:7:\"updated\";s:25:\"2022-06-27T09:02:55+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"3.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:31:07+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"3.0.1\";s:7:\"updated\";s:25:\"2025-03-18T15:26:24+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"3.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:30:55+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"3.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:31:12+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"3.0.1\";s:7:\"updated\";s:25:\"2025-03-27T09:14:41+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"3.0.1\";s:7:\"updated\";s:25:\"2025-03-18T17:01:55+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"3.0.1\";s:7:\"updated\";s:25:\"2025-04-02T06:56:24+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"3.0.1\";s:7:\"updated\";s:25:\"2025-03-18T16:03:43+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"3.0.1\";s:7:\"updated\";s:25:\"2025-03-18T22:10:21+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"3.0.1\";s:7:\"updated\";s:25:\"2025-04-02T16:07:47+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"3.0.1\";s:7:\"updated\";s:25:\"2025-03-29T18:29:10+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"3.0.1\";s:7:\"updated\";s:25:\"2025-03-20T20:39:39+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"3.0.1\";s:7:\"updated\";s:25:\"2025-03-22T08:11:15+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"3.0.1\";s:7:\"updated\";s:25:\"2025-03-27T15:05:31+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"3.0.1\";s:7:\"updated\";s:25:\"2025-03-30T23:00:32+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:28:\"gravityformsuserregistration\";a:1:{s:12:\"translations\";a:23:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"5.3.3\";s:7:\"updated\";s:25:\"2025-03-19T16:46:08+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:116:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"5.3.3\";s:7:\"updated\";s:25:\"2024-09-02T08:18:21+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:116:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"5.3.3\";s:7:\"updated\";s:25:\"2023-01-06T17:32:56+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"5.3.3\";s:7:\"updated\";s:25:\"2025-03-24T08:49:32+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"5.3.3\";s:7:\"updated\";s:25:\"2025-03-19T11:54:15+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"5.3.3\";s:7:\"updated\";s:25:\"2022-06-27T10:16:33+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"5.3.3\";s:7:\"updated\";s:25:\"2022-06-27T10:16:36+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"5.3.3\";s:7:\"updated\";s:25:\"2023-01-06T17:32:11+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:116:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"5.3.3\";s:7:\"updated\";s:25:\"2023-03-02T20:28:46+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"5.3.3\";s:7:\"updated\";s:25:\"2025-03-18T15:25:42+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"5.3.3\";s:7:\"updated\";s:25:\"2024-03-29T13:44:16+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"5.3.3\";s:7:\"updated\";s:25:\"2021-03-29T19:18:41+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"5.3.3\";s:7:\"updated\";s:25:\"2025-03-27T09:23:57+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"5.3.3\";s:7:\"updated\";s:25:\"2025-03-19T19:34:41+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"5.3.3\";s:7:\"updated\";s:25:\"2025-04-02T06:56:06+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:116:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"5.3.3\";s:7:\"updated\";s:25:\"2025-03-18T15:47:00+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"5.3.3\";s:7:\"updated\";s:25:\"2025-03-18T22:32:36+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"5.3.3\";s:7:\"updated\";s:25:\"2025-04-02T16:03:40+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"5.3.3\";s:7:\"updated\";s:25:\"2025-03-29T18:28:28+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"5.3.3\";s:7:\"updated\";s:25:\"2025-03-20T21:04:43+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"5.3.3\";s:7:\"updated\";s:25:\"2025-03-22T08:12:58+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"5.3.3\";s:7:\"updated\";s:25:\"2025-03-30T21:30:15+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"5.3.3\";s:7:\"updated\";s:25:\"2025-03-30T23:00:05+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:116:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:18:\"gravityformszapier\";a:1:{s:12:\"translations\";a:20:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2025-03-19T16:50:44+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2025-03-18T13:22:40+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2025-03-19T11:55:18+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2022-06-27T09:18:29+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2022-06-27T09:18:32+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2022-06-27T09:18:39+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2025-03-18T15:19:39+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2025-03-19T09:26:32+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2023-01-06T17:33:24+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2025-03-27T09:12:38+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2025-03-19T19:38:52+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2025-04-02T06:53:00+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2025-03-18T15:27:45+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2025-03-18T22:10:46+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2025-04-02T15:19:59+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2025-03-29T18:24:13+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2025-03-20T20:59:29+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2025-03-22T08:15:36+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2025-03-30T21:16:01+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2025-03-30T22:56:56+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:19:\"gravityformszohocrm\";a:1:{s:12:\"translations\";a:20:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"2.3.1\";s:7:\"updated\";s:25:\"2025-03-19T16:54:27+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"2.3.1\";s:7:\"updated\";s:25:\"2025-03-18T13:18:24+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"2.3.1\";s:7:\"updated\";s:25:\"2025-03-19T11:56:01+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"2.3.1\";s:7:\"updated\";s:25:\"2022-06-27T09:02:53+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"2.3.1\";s:7:\"updated\";s:25:\"2022-06-27T08:55:23+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"2.3.1\";s:7:\"updated\";s:25:\"2023-01-06T17:34:25+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"2.3.1\";s:7:\"updated\";s:25:\"2025-03-18T15:16:09+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"2.3.1\";s:7:\"updated\";s:25:\"2025-03-19T09:26:21+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"2.3.1\";s:7:\"updated\";s:25:\"2023-01-06T17:34:31+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"2.3.1\";s:7:\"updated\";s:25:\"2025-03-27T09:09:58+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"2.3.1\";s:7:\"updated\";s:25:\"2025-03-19T19:41:21+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"2.3.1\";s:7:\"updated\";s:25:\"2025-04-02T06:52:06+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"2.3.1\";s:7:\"updated\";s:25:\"2025-03-18T15:23:21+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"2.3.1\";s:7:\"updated\";s:25:\"2025-03-18T22:10:50+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"2.3.1\";s:7:\"updated\";s:25:\"2025-04-02T16:06:20+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"2.3.1\";s:7:\"updated\";s:25:\"2025-03-29T18:20:53+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"2.3.1\";s:7:\"updated\";s:25:\"2025-03-20T19:57:28+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"2.3.1\";s:7:\"updated\";s:25:\"2025-03-22T20:46:20+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"2.3.1\";s:7:\"updated\";s:25:\"2025-03-30T21:27:36+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"2.3.1\";s:7:\"updated\";s:25:\"2025-03-30T22:55:02+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:20:\"gravityformsicontact\";a:1:{s:12:\"translations\";a:21:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2025-03-19T18:08:34+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2025-03-05T13:49:03+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2025-03-19T15:10:50+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2025-03-19T11:33:12+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2025-03-05T13:49:08+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2025-03-05T13:49:09+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2025-03-05T13:49:14+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2025-03-19T08:17:20+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2025-03-19T15:27:13+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2025-03-05T13:49:17+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2025-03-26T15:57:01+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2025-03-18T16:22:16+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2025-04-02T07:37:34+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2025-03-18T15:35:16+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2025-03-18T18:37:35+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2025-04-02T13:55:43+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2025-03-29T19:22:07+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2025-03-20T20:31:53+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2025-03-22T07:43:57+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2025-03-30T06:22:23+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2025-03-31T01:08:42+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:24:\"gravityformsemailoctopus\";a:1:{s:12:\"translations\";a:21:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2025-03-19T18:11:07+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:108:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2025-03-19T14:47:14+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2025-03-19T11:29:03+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2022-06-27T08:34:13+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2022-06-27T08:55:23+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2023-01-06T17:36:53+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:108:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2025-03-19T07:40:08+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2025-03-19T09:23:47+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2020-06-23T13:15:54+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2025-03-26T15:46:55+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2025-03-18T15:37:40+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2025-04-02T06:32:30+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:108:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"nb\";a:7:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2023-11-03T10:13:17+00:00\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-nb_NO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nb\";i:1;s:3:\"nob\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2025-03-18T15:49:45+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2025-03-18T18:41:01+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2025-04-02T15:22:11+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2025-03-29T19:01:57+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2025-03-20T20:06:00+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2025-03-22T07:27:27+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2025-03-30T21:16:40+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2025-03-30T22:42:48+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:108:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:19:\"gravityformsmailgun\";a:1:{s:12:\"translations\";a:24:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2024-05-07T08:52:25+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2023-12-28T11:11:02+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2022-06-27T10:02:12+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2024-05-13T09:22:58+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2024-05-04T08:15:20+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"nl-be\";a:7:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2023-12-28T11:14:06+00:00\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-nl_BE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2022-06-27T08:34:13+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2022-06-27T10:01:47+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2023-12-28T11:13:16+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2023-03-02T20:46:07+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2024-05-06T12:42:42+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2024-05-04T11:37:35+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2023-01-06T17:38:07+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2024-05-04T17:13:38+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2024-05-15T07:35:12+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2024-05-24T06:29:14+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2024-05-06T09:42:12+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2024-05-23T16:10:35+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2024-05-19T21:36:35+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2024-05-09T14:20:35+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2024-05-15T21:52:07+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2024-05-22T17:42:52+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2024-05-17T22:15:18+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2024-05-09T14:20:57+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:20:\"gravityformssendgrid\";a:1:{s:12:\"translations\";a:27:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-11-24T14:25:24+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-02-20T14:31:16+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2022-06-23T19:14:16+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-11-26T19:07:24+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2020-11-06T09:05:56+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"nl-be\";a:7:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2022-06-29T15:47:02+00:00\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-nl_BE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2022-06-27T09:11:37+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2022-03-15T13:30:44+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2022-06-23T19:13:43+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-03-02T20:27:36+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2020-10-21T13:18:39+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2020-11-06T09:06:48+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:9:\"de/formal\";a:7:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-01-26T16:08:21+00:00\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:110:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-de_DE_formal.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2020-07-04T20:05:08+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2020-06-28T10:45:00+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"hu\";a:7:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-11-03T10:12:16+00:00\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-hu_HU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hu\";i:1;s:3:\"hun\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2020-05-23T18:18:20+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2020-11-06T09:07:21+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"nb\";a:7:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-11-03T10:13:12+00:00\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-nb_NO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nb\";i:1;s:3:\"nob\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2021-09-14T09:57:06+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2020-12-17T14:33:12+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2020-12-17T14:32:57+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2020-11-06T09:06:16+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2020-11-04T22:55:46+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2020-11-06T09:05:23+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2020-05-15T07:53:36+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-11-09T01:37:59+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:18:\"gravityformssquare\";a:1:{s:12:\"translations\";a:19:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"2.3.1\";s:7:\"updated\";s:25:\"2025-03-19T18:16:30+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"2.3.1\";s:7:\"updated\";s:25:\"2025-03-18T13:35:08+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"2.3.1\";s:7:\"updated\";s:25:\"2025-03-19T11:46:46+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"2.3.1\";s:7:\"updated\";s:25:\"2022-06-27T09:13:12+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"2.3.1\";s:7:\"updated\";s:25:\"2022-06-27T09:13:16+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"2.3.1\";s:7:\"updated\";s:25:\"2025-03-19T11:21:24+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"2.3.1\";s:7:\"updated\";s:25:\"2025-03-05T15:16:11+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"2.3.1\";s:7:\"updated\";s:25:\"2022-06-27T09:13:37+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"2.3.1\";s:7:\"updated\";s:25:\"2025-03-27T09:21:10+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"2.3.1\";s:7:\"updated\";s:25:\"2025-03-18T16:59:25+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"2.3.1\";s:7:\"updated\";s:25:\"2025-04-02T07:01:53+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"2.3.1\";s:7:\"updated\";s:25:\"2025-03-18T15:48:44+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"2.3.1\";s:7:\"updated\";s:25:\"2025-03-18T22:33:22+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"2.3.1\";s:7:\"updated\";s:25:\"2025-04-02T15:50:24+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"2.3.1\";s:7:\"updated\";s:25:\"2025-03-29T19:04:48+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"2.3.1\";s:7:\"updated\";s:25:\"2025-03-20T20:38:28+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"2.3.1\";s:7:\"updated\";s:25:\"2025-03-22T07:58:10+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"2.3.1\";s:7:\"updated\";s:25:\"2025-03-30T21:22:34+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"2.3.1\";s:7:\"updated\";s:25:\"2025-03-31T00:48:40+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:19:\"gravityformshubspot\";a:1:{s:12:\"translations\";a:18:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:3:\"1.9\";s:7:\"updated\";s:25:\"2024-03-20T15:34:55+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"1.9\";s:7:\"updated\";s:25:\"2023-11-24T12:35:05+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"1.9\";s:7:\"updated\";s:25:\"2024-09-12T12:00:41+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"1.9\";s:7:\"updated\";s:25:\"2022-06-27T09:00:32+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"1.9\";s:7:\"updated\";s:25:\"2023-11-09T10:59:10+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"1.9\";s:7:\"updated\";s:25:\"2023-05-20T14:30:42+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"1.9\";s:7:\"updated\";s:25:\"2023-01-06T17:41:22+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"1.9\";s:7:\"updated\";s:25:\"2023-05-05T15:02:53+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"1.9\";s:7:\"updated\";s:25:\"2023-05-15T15:57:06+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"1.9\";s:7:\"updated\";s:25:\"2023-05-18T06:09:23+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"1.9\";s:7:\"updated\";s:25:\"2023-11-28T21:19:11+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"1.9\";s:7:\"updated\";s:25:\"2023-05-22T18:52:51+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"1.9\";s:7:\"updated\";s:25:\"2023-05-05T17:03:26+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"1.9\";s:7:\"updated\";s:25:\"2023-05-10T17:12:37+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"1.9\";s:7:\"updated\";s:25:\"2023-05-16T22:26:43+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"1.9\";s:7:\"updated\";s:25:\"2023-06-30T06:42:49+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"1.9\";s:7:\"updated\";s:25:\"2023-05-11T14:43:07+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:3:\"1.9\";s:7:\"updated\";s:25:\"2023-11-29T02:47:06+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:16:\"gravityformsppcp\";a:1:{s:12:\"translations\";a:17:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"3.9.0\";s:7:\"updated\";s:25:\"2025-03-20T09:43:02+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:92:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"3.9.0\";s:7:\"updated\";s:25:\"2025-03-24T08:39:31+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"3.9.0\";s:7:\"updated\";s:25:\"2025-03-19T11:42:24+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"3.9.0\";s:7:\"updated\";s:25:\"2025-03-19T08:05:07+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"3.9.0\";s:7:\"updated\";s:25:\"2025-03-19T15:27:49+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"3.9.0\";s:7:\"updated\";s:25:\"2024-09-02T08:18:52+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"3.9.0\";s:7:\"updated\";s:25:\"2025-03-27T09:33:41+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"3.9.0\";s:7:\"updated\";s:25:\"2025-03-18T16:49:14+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"3.9.0\";s:7:\"updated\";s:25:\"2025-04-02T07:11:31+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:92:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"3.9.0\";s:7:\"updated\";s:25:\"2025-03-18T15:55:09+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"3.9.0\";s:7:\"updated\";s:25:\"2025-03-18T22:09:33+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"3.9.0\";s:7:\"updated\";s:25:\"2025-04-02T15:41:01+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"3.9.0\";s:7:\"updated\";s:25:\"2025-03-29T19:12:01+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"3.9.0\";s:7:\"updated\";s:25:\"2025-03-20T20:49:21+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"3.9.0\";s:7:\"updated\";s:25:\"2025-03-22T07:53:48+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"3.9.0\";s:7:\"updated\";s:25:\"2025-03-30T21:14:16+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"3.9.0\";s:7:\"updated\";s:25:\"2025-03-31T00:55:53+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:92:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:18:\"gravityformsmollie\";a:1:{s:12:\"translations\";a:18:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:7:\"1.7.0.1\";s:7:\"updated\";s:25:\"2025-03-20T09:54:21+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:7:\"1.7.0.1\";s:7:\"updated\";s:25:\"2025-03-24T08:31:12+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:7:\"1.7.0.1\";s:7:\"updated\";s:25:\"2025-03-19T11:37:44+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:7:\"1.7.0.1\";s:7:\"updated\";s:25:\"2022-06-27T10:02:53+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:7:\"1.7.0.1\";s:7:\"updated\";s:25:\"2025-03-19T11:25:58+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:7:\"1.7.0.1\";s:7:\"updated\";s:25:\"2025-03-19T15:27:31+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:7:\"1.7.0.1\";s:7:\"updated\";s:25:\"2020-11-01T09:59:43+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:7:\"1.7.0.1\";s:7:\"updated\";s:25:\"2025-03-26T16:05:40+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:7:\"1.7.0.1\";s:7:\"updated\";s:25:\"2025-03-18T16:40:16+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:7:\"1.7.0.1\";s:7:\"updated\";s:25:\"2025-04-02T07:26:23+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:7:\"1.7.0.1\";s:7:\"updated\";s:25:\"2025-03-18T15:38:26+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:7:\"1.7.0.1\";s:7:\"updated\";s:25:\"2025-03-18T22:09:21+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:7:\"1.7.0.1\";s:7:\"updated\";s:25:\"2025-04-02T14:07:13+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:7:\"1.7.0.1\";s:7:\"updated\";s:25:\"2025-03-29T19:29:35+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:7:\"1.7.0.1\";s:7:\"updated\";s:25:\"2025-03-20T20:45:27+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:7:\"1.7.0.1\";s:7:\"updated\";s:25:\"2025-03-22T07:49:31+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:7:\"1.7.0.1\";s:7:\"updated\";s:25:\"2025-03-30T06:25:21+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:7:\"1.7.0.1\";s:7:\"updated\";s:25:\"2025-03-31T01:02:22+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:21:\"gravityforms2checkout\";a:1:{s:12:\"translations\";a:22:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"2.3.1\";s:7:\"updated\";s:25:\"2025-03-20T10:16:35+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"2.3.1\";s:7:\"updated\";s:25:\"2025-03-05T13:57:22+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"2.3.1\";s:7:\"updated\";s:25:\"2025-03-19T07:54:21+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"2.3.1\";s:7:\"updated\";s:25:\"2025-03-19T11:14:58+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"2.3.1\";s:7:\"updated\";s:25:\"2022-06-23T19:13:29+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"2.3.1\";s:7:\"updated\";s:25:\"2022-06-23T19:15:48+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"2.3.1\";s:7:\"updated\";s:25:\"2023-02-19T14:45:46+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"2.3.1\";s:7:\"updated\";s:25:\"2023-03-02T20:27:36+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"2.3.1\";s:7:\"updated\";s:25:\"2025-03-18T15:03:54+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"2.3.1\";s:7:\"updated\";s:25:\"2025-03-19T09:20:17+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"2.3.1\";s:7:\"updated\";s:25:\"2021-02-02T19:49:22+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"2.3.1\";s:7:\"updated\";s:25:\"2025-03-24T15:08:16+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"2.3.1\";s:7:\"updated\";s:25:\"2025-03-18T14:56:03+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"2.3.1\";s:7:\"updated\";s:25:\"2025-04-02T06:46:34+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"2.3.1\";s:7:\"updated\";s:25:\"2025-03-18T15:44:09+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"2.3.1\";s:7:\"updated\";s:25:\"2025-03-18T18:39:01+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"2.3.1\";s:7:\"updated\";s:25:\"2025-04-02T13:25:30+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"2.3.1\";s:7:\"updated\";s:25:\"2025-03-29T18:06:04+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"2.3.1\";s:7:\"updated\";s:25:\"2025-03-20T19:20:42+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"2.3.1\";s:7:\"updated\";s:25:\"2025-03-19T12:45:48+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"2.3.1\";s:7:\"updated\";s:25:\"2025-03-30T21:13:17+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"2.3.1\";s:7:\"updated\";s:25:\"2025-03-31T00:53:30+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:32:\"gravityformsadvancedpostcreation\";a:1:{s:12:\"translations\";a:27:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.4.2\";s:7:\"updated\";s:25:\"2025-03-20T10:20:12+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:124:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"1.4.2\";s:7:\"updated\";s:25:\"2023-02-20T14:31:17+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:124:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"1.4.2\";s:7:\"updated\";s:25:\"2023-01-06T17:46:19+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.4.2\";s:7:\"updated\";s:25:\"2025-03-19T07:59:59+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.4.2\";s:7:\"updated\";s:25:\"2025-03-19T11:17:39+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"nl-be\";a:7:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"1.4.2\";s:7:\"updated\";s:25:\"2022-06-29T15:47:02+00:00\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-nl_BE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.4.2\";s:7:\"updated\";s:25:\"2022-06-27T09:36:41+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.4.2\";s:7:\"updated\";s:25:\"2022-06-27T09:36:45+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.4.2\";s:7:\"updated\";s:25:\"2025-03-05T15:04:17+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:124:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.4.2\";s:7:\"updated\";s:25:\"2025-03-18T15:12:01+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.4.2\";s:7:\"updated\";s:25:\"2025-03-19T09:20:42+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.4.2\";s:7:\"updated\";s:25:\"2025-03-05T15:04:19+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.4.2\";s:7:\"updated\";s:25:\"2025-03-24T15:11:42+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"id\";a:7:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:5:\"1.4.2\";s:7:\"updated\";s:25:\"2023-11-03T10:12:24+00:00\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-id_ID.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"id\";i:1;s:3:\"ind\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.4.2\";s:7:\"updated\";s:25:\"2025-03-18T15:02:17+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.4.2\";s:7:\"updated\";s:25:\"2025-04-01T06:36:29+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:124:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.4.2\";s:7:\"updated\";s:25:\"2025-03-18T16:00:21+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.4.2\";s:7:\"updated\";s:25:\"2025-03-18T18:39:12+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.4.2\";s:7:\"updated\";s:25:\"2025-04-02T13:40:55+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ro\";a:7:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:5:\"1.4.2\";s:7:\"updated\";s:25:\"2023-11-03T10:13:50+00:00\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-ro_RO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ro\";i:1;s:3:\"ron\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.4.2\";s:7:\"updated\";s:25:\"2025-03-29T17:55:50+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"sr\";a:7:{s:8:\"language\";s:5:\"sr_RS\";s:7:\"version\";s:5:\"1.4.2\";s:7:\"updated\";s:25:\"2023-11-03T10:14:19+00:00\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-sr_RS.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sr\";i:1;s:3:\"srp\";}}s:5:\"es-mx\";a:7:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:5:\"1.4.2\";s:7:\"updated\";s:25:\"2023-11-03T10:11:57+00:00\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-es_MX.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.4.2\";s:7:\"updated\";s:25:\"2025-03-20T19:25:36+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.4.2\";s:7:\"updated\";s:25:\"2025-03-19T12:52:48+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.4.2\";s:7:\"updated\";s:25:\"2025-03-30T21:32:16+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.4.2\";s:7:\"updated\";s:25:\"2025-03-30T22:26:15+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:124:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:20:\"gravityformswebhooks\";a:1:{s:12:\"translations\";a:18:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2025-03-20T10:21:50+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2023-02-20T14:35:46+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2025-03-18T13:23:06+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2025-03-19T11:54:33+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2025-03-18T15:20:05+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2025-03-19T09:26:39+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2023-01-06T17:46:51+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2025-03-27T09:13:30+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2025-03-19T19:35:52+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2025-04-02T06:53:13+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2025-03-18T16:04:03+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2025-03-18T22:10:34+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2025-04-02T16:07:59+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2025-03-29T18:25:08+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2025-03-20T20:40:00+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2025-03-22T08:13:16+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2025-03-27T15:05:11+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2025-03-30T22:57:21+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:16:\"gravityformspipe\";a:1:{s:12:\"translations\";a:17:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2025-03-20T10:25:04+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:92:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2025-03-24T08:41:11+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2025-03-19T11:43:50+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2025-03-19T07:54:06+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2025-03-19T09:25:47+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2020-11-01T10:02:06+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2025-03-26T16:53:58+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2025-03-18T16:53:29+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2025-04-02T07:06:11+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:92:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2025-03-18T15:57:52+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2025-03-18T19:08:44+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2025-04-02T15:45:06+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2025-03-29T18:32:41+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2025-03-20T20:36:52+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2025-03-22T07:54:52+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2025-03-30T21:26:13+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2025-03-30T23:03:42+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:92:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:27:\"gravityformsconstantcontact\";a:1:{s:12:\"translations\";a:27:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2024-05-07T08:20:57+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:114:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"bg\";a:7:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-11-03T10:11:18+00:00\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-bg_BG.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"bg\";i:1;s:3:\"bul\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-02-20T14:31:17+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:114:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-11-03T10:14:28+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-11-16T07:57:41+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2024-09-12T11:46:56+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2022-06-27T08:55:20+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2022-06-27T08:55:23+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-01-06T17:00:49+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:114:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-11-03T10:12:06+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2020-10-21T11:36:30+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-01-06T17:48:43+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:5:\"de-ch\";a:7:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-11-03T10:11:27+00:00\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-de_CH.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-01-06T17:49:00+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2020-10-25T15:55:38+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"hu\";a:7:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-11-03T10:12:17+00:00\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-hu_HU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hu\";i:1;s:3:\"hun\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-01-06T17:49:07+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-03-14T17:46:28+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:114:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"nb\";a:7:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-11-03T10:13:13+00:00\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-nb_NO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nb\";i:1;s:3:\"nob\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-01-06T17:49:20+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-01-06T17:49:22+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-01-06T17:49:24+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2020-10-29T05:29:40+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-01-06T17:48:51+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2020-10-23T18:56:46+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-01-06T17:49:39+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-11-09T01:53:49+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:114:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:12:\"gravityforms\";a:1:{s:12:\"translations\";a:32:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:7:\"2.9.4.1\";s:7:\"updated\";s:25:\"2025-03-20T13:49:49+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:84:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"bg\";a:7:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:7:\"2.9.4.1\";s:7:\"updated\";s:25:\"2025-03-05T10:47:56+00:00\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-bg_BG.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"bg\";i:1;s:3:\"bul\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:7:\"2.9.4.1\";s:7:\"updated\";s:25:\"2025-03-05T10:50:20+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:84:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:7:\"2.9.4.1\";s:7:\"updated\";s:25:\"2025-03-05T10:55:27+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:5:\"zh-hk\";a:7:{s:8:\"language\";s:5:\"zh_HK\";s:7:\"version\";s:7:\"2.9.4.1\";s:7:\"updated\";s:25:\"2025-03-05T10:49:15+00:00\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:16:\"香港中文版	\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-zh_HK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:7:\"2.9.4.1\";s:7:\"updated\";s:25:\"2025-03-19T07:49:36+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:7:\"2.9.4.1\";s:7:\"updated\";s:25:\"2025-03-19T11:13:13+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"nl-be\";a:7:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:7:\"2.9.4.1\";s:7:\"updated\";s:25:\"2025-03-05T10:53:58+00:00\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-nl_BE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:7:\"2.9.4.1\";s:7:\"updated\";s:25:\"2024-11-08T14:43:19+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:7:\"2.9.4.1\";s:7:\"updated\";s:25:\"2024-11-08T14:43:20+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:7:\"2.9.4.1\";s:7:\"updated\";s:25:\"2025-03-05T10:51:34+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:84:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:7:\"2.9.4.1\";s:7:\"updated\";s:25:\"2025-03-05T10:48:22+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:7:\"2.9.4.1\";s:7:\"updated\";s:25:\"2025-03-19T07:52:30+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:7:\"2.9.4.1\";s:7:\"updated\";s:25:\"2025-03-24T08:40:41+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:9:\"de/formal\";a:7:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:7:\"2.9.4.1\";s:7:\"updated\";s:25:\"2025-03-04T09:53:21+00:00\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:94:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-de_DE_formal.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:14:\"de-ch/informal\";a:7:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:7:\"2.9.4.1\";s:7:\"updated\";s:25:\"2023-09-25T13:01:31+00:00\";s:12:\"english_name\";s:30:\"German (Switzerland, Informal)\";s:11:\"native_name\";s:21:\"Deutsch (Schweiz, Du)\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-de_CH_informal.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:5:\"de-ch\";a:7:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:7:\"2.9.4.1\";s:7:\"updated\";s:25:\"2025-03-05T10:48:01+00:00\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-de_CH.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:7:\"2.9.4.1\";s:7:\"updated\";s:25:\"2025-03-05T10:51:45+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:7:\"2.9.4.1\";s:7:\"updated\";s:25:\"2025-03-24T15:04:14+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"hu\";a:7:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:7:\"2.9.4.1\";s:7:\"updated\";s:25:\"2025-03-05T10:51:56+00:00\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-hu_HU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hu\";i:1;s:3:\"hun\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:7:\"2.9.4.1\";s:7:\"updated\";s:25:\"2025-03-24T12:47:45+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:7:\"2.9.4.1\";s:7:\"updated\";s:25:\"2025-04-02T06:50:22+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:84:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"nb\";a:7:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:7:\"2.9.4.1\";s:7:\"updated\";s:25:\"2025-03-05T10:48:59+00:00\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-nb_NO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nb\";i:1;s:3:\"nob\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:7:\"2.9.4.1\";s:7:\"updated\";s:25:\"2025-03-18T15:26:45+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:7:\"2.9.4.1\";s:7:\"updated\";s:25:\"2025-03-18T18:38:35+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:7:\"2.9.4.1\";s:7:\"updated\";s:25:\"2025-04-02T10:56:05+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:7:\"2.9.4.1\";s:7:\"updated\";s:25:\"2025-03-29T18:11:06+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"sk\";a:7:{s:8:\"language\";s:5:\"sk_SK\";s:7:\"version\";s:7:\"2.9.4.1\";s:7:\"updated\";s:25:\"2025-03-18T08:14:12+00:00\";s:12:\"english_name\";s:6:\"Slovak\";s:11:\"native_name\";s:11:\"Slovenčina\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-sk_SK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sk\";i:1;s:3:\"slk\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:7:\"2.9.4.1\";s:7:\"updated\";s:25:\"2025-03-20T16:55:00+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:7:\"2.9.4.1\";s:7:\"updated\";s:25:\"2025-03-19T10:30:34+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:7:\"2.9.4.1\";s:7:\"updated\";s:25:\"2025-03-30T12:11:35+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:7:\"2.9.4.1\";s:7:\"updated\";s:25:\"2025-03-30T22:37:04+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:84:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:21:\"gravityformsrecaptcha\";a:1:{s:12:\"translations\";a:20:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2025-03-20T13:53:42+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:5:\"zh-hk\";a:7:{s:8:\"language\";s:5:\"zh_HK\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2023-03-02T20:54:35+00:00\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:16:\"香港中文版	\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-zh_HK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2025-03-24T08:42:51+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2025-03-19T11:44:18+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2021-08-12T07:58:23+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2023-03-02T20:54:21+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2025-03-19T07:42:11+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2023-10-30T16:22:05+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2021-06-02T13:26:50+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2025-03-24T15:22:17+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2025-03-18T16:55:31+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2025-04-02T07:04:32+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2025-03-18T16:03:07+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2025-03-18T19:08:49+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2025-04-02T15:57:11+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2025-03-29T18:36:18+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2025-03-20T16:45:05+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2025-03-22T07:55:19+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2025-03-30T21:25:15+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2025-03-30T23:02:23+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:22:\"gravityformsmoderation\";a:1:{s:12:\"translations\";a:16:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.2.1\";s:7:\"updated\";s:25:\"2025-03-20T13:59:13+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:104:\"https://packages.translationspress.com/rocketgenius/gravityformsmoderation/gravityformsmoderation-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.2.1\";s:7:\"updated\";s:25:\"2025-03-24T08:22:59+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsmoderation/gravityformsmoderation-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.2.1\";s:7:\"updated\";s:25:\"2025-03-19T11:35:03+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsmoderation/gravityformsmoderation-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.2.1\";s:7:\"updated\";s:25:\"2025-03-19T11:04:22+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsmoderation/gravityformsmoderation-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.2.1\";s:7:\"updated\";s:25:\"2025-03-19T09:24:58+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsmoderation/gravityformsmoderation-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.2.1\";s:7:\"updated\";s:25:\"2025-03-27T09:27:24+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsmoderation/gravityformsmoderation-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.2.1\";s:7:\"updated\";s:25:\"2025-03-18T16:27:34+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsmoderation/gravityformsmoderation-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.2.1\";s:7:\"updated\";s:25:\"2025-04-02T07:33:23+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:104:\"https://packages.translationspress.com/rocketgenius/gravityformsmoderation/gravityformsmoderation-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.2.1\";s:7:\"updated\";s:25:\"2025-03-18T15:53:22+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsmoderation/gravityformsmoderation-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.2.1\";s:7:\"updated\";s:25:\"2025-03-18T19:18:57+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsmoderation/gravityformsmoderation-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.2.1\";s:7:\"updated\";s:25:\"2025-04-02T15:32:17+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsmoderation/gravityformsmoderation-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.2.1\";s:7:\"updated\";s:25:\"2025-03-29T19:24:32+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsmoderation/gravityformsmoderation-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.2.1\";s:7:\"updated\";s:25:\"2025-03-20T20:34:28+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsmoderation/gravityformsmoderation-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.2.1\";s:7:\"updated\";s:25:\"2025-03-22T20:50:18+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsmoderation/gravityformsmoderation-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.2.1\";s:7:\"updated\";s:25:\"2024-09-10T21:43:07+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsmoderation/gravityformsmoderation-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.2.1\";s:7:\"updated\";s:25:\"2025-03-31T01:04:54+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:104:\"https://packages.translationspress.com/rocketgenius/gravityformsmoderation/gravityformsmoderation-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:23:\"gravityformsgeolocation\";a:1:{s:12:\"translations\";a:16:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2024-02-23T15:42:07+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:106:\"https://packages.translationspress.com/rocketgenius/gravityformsgeolocation/gravityformsgeolocation-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2024-03-20T05:48:38+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgeolocation/gravityformsgeolocation-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2024-03-15T15:46:27+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgeolocation/gravityformsgeolocation-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2024-03-18T14:03:02+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgeolocation/gravityformsgeolocation-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2024-03-28T10:20:33+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgeolocation/gravityformsgeolocation-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2024-04-01T11:12:52+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgeolocation/gravityformsgeolocation-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2024-03-19T16:31:40+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgeolocation/gravityformsgeolocation-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2024-04-01T06:09:41+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:106:\"https://packages.translationspress.com/rocketgenius/gravityformsgeolocation/gravityformsgeolocation-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2024-03-18T10:45:34+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgeolocation/gravityformsgeolocation-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2024-03-21T23:02:09+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgeolocation/gravityformsgeolocation-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2024-03-31T00:08:17+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgeolocation/gravityformsgeolocation-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2024-03-22T15:55:11+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgeolocation/gravityformsgeolocation-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2024-03-25T10:54:05+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgeolocation/gravityformsgeolocation-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2024-04-02T20:07:13+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgeolocation/gravityformsgeolocation-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2024-03-18T20:50:19+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgeolocation/gravityformsgeolocation-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2024-03-22T15:55:38+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:106:\"https://packages.translationspress.com/rocketgenius/gravityformsgeolocation/gravityformsgeolocation-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:31:\"gravityformsconversationalforms\";a:1:{s:12:\"translations\";a:18:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2024-09-09T10:30:04+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:122:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2024-09-09T08:14:49+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2024-09-06T18:14:22+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2024-05-03T08:43:40+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:122:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2024-09-23T12:50:51+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2024-09-19T07:05:45+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2024-05-03T08:43:45+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2024-09-26T10:39:25+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2024-09-17T20:46:11+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2024-10-03T06:51:46+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:122:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2024-09-10T11:39:42+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2024-09-17T16:16:24+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2024-09-08T00:11:41+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2024-09-15T21:52:57+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2024-09-24T12:54:32+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2024-09-22T19:39:55+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2024-09-17T09:13:03+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2024-09-15T21:52:23+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:122:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:22:\"gravityformsconvertkit\";a:1:{s:12:\"translations\";a:17:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.1.1\";s:7:\"updated\";s:25:\"2025-03-20T15:22:27+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:104:\"https://packages.translationspress.com/rocketgenius/gravityformsconvertkit/gravityformsconvertkit-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.1.1\";s:7:\"updated\";s:25:\"2025-03-19T08:12:59+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsconvertkit/gravityformsconvertkit-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.1.1\";s:7:\"updated\";s:25:\"2025-03-19T11:26:33+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsconvertkit/gravityformsconvertkit-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.1.1\";s:7:\"updated\";s:25:\"2025-03-19T07:33:00+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsconvertkit/gravityformsconvertkit-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.1.1\";s:7:\"updated\";s:25:\"2025-03-19T15:26:57+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsconvertkit/gravityformsconvertkit-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.1.1\";s:7:\"updated\";s:25:\"2025-03-05T14:03:37+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsconvertkit/gravityformsconvertkit-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.1.1\";s:7:\"updated\";s:25:\"2025-03-26T15:43:54+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsconvertkit/gravityformsconvertkit-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.1.1\";s:7:\"updated\";s:25:\"2025-03-18T15:58:29+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsconvertkit/gravityformsconvertkit-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.1.1\";s:7:\"updated\";s:25:\"2025-04-02T06:42:58+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:104:\"https://packages.translationspress.com/rocketgenius/gravityformsconvertkit/gravityformsconvertkit-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.1.1\";s:7:\"updated\";s:25:\"2025-03-18T15:32:27+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsconvertkit/gravityformsconvertkit-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.1.1\";s:7:\"updated\";s:25:\"2025-03-18T18:18:49+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsconvertkit/gravityformsconvertkit-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.1.1\";s:7:\"updated\";s:25:\"2025-04-02T14:41:29+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsconvertkit/gravityformsconvertkit-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.1.1\";s:7:\"updated\";s:25:\"2025-03-29T19:00:05+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsconvertkit/gravityformsconvertkit-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.1.1\";s:7:\"updated\";s:25:\"2025-03-20T20:26:46+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsconvertkit/gravityformsconvertkit-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.1.1\";s:7:\"updated\";s:25:\"2025-03-22T07:21:27+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsconvertkit/gravityformsconvertkit-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.1.1\";s:7:\"updated\";s:25:\"2025-03-30T06:26:31+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsconvertkit/gravityformsconvertkit-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.1.1\";s:7:\"updated\";s:25:\"2025-03-30T22:50:03+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:104:\"https://packages.translationspress.com/rocketgenius/gravityformsconvertkit/gravityformsconvertkit-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:11:\"gravitysmtp\";a:1:{s:12:\"translations\";a:16:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-03-19T14:12:03+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:82:\"https://packages.translationspress.com/rocketgenius/gravitysmtp/gravitysmtp-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-04-02T07:58:27+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:85:\"https://packages.translationspress.com/rocketgenius/gravitysmtp/gravitysmtp-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-03-19T11:05:09+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:85:\"https://packages.translationspress.com/rocketgenius/gravitysmtp/gravitysmtp-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-03-21T11:18:59+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:85:\"https://packages.translationspress.com/rocketgenius/gravitysmtp/gravitysmtp-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-03-21T10:35:32+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:85:\"https://packages.translationspress.com/rocketgenius/gravitysmtp/gravitysmtp-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-03-24T13:53:33+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:85:\"https://packages.translationspress.com/rocketgenius/gravitysmtp/gravitysmtp-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-03-27T08:42:49+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:85:\"https://packages.translationspress.com/rocketgenius/gravitysmtp/gravitysmtp-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-04-01T06:25:08+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:82:\"https://packages.translationspress.com/rocketgenius/gravitysmtp/gravitysmtp-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-03-18T14:44:47+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:85:\"https://packages.translationspress.com/rocketgenius/gravitysmtp/gravitysmtp-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-03-19T08:24:14+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:85:\"https://packages.translationspress.com/rocketgenius/gravitysmtp/gravitysmtp-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-04-02T14:42:43+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:85:\"https://packages.translationspress.com/rocketgenius/gravitysmtp/gravitysmtp-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-03-28T13:51:06+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:85:\"https://packages.translationspress.com/rocketgenius/gravitysmtp/gravitysmtp-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-04-02T09:18:53+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:85:\"https://packages.translationspress.com/rocketgenius/gravitysmtp/gravitysmtp-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-03-27T08:41:04+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:85:\"https://packages.translationspress.com/rocketgenius/gravitysmtp/gravitysmtp-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-03-30T05:55:15+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:85:\"https://packages.translationspress.com/rocketgenius/gravitysmtp/gravitysmtp-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-03-27T08:41:38+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:82:\"https://packages.translationspress.com/rocketgenius/gravitysmtp/gravitysmtp-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:19:\"gravityformsakismet\";a:1:{s:12:\"translations\";a:30:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2024-05-09T08:57:30+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2024-05-07T16:10:43+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2024-05-07T15:43:04+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"cs\";a:7:{s:8:\"language\";s:5:\"cs_CZ\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2024-05-07T16:14:50+00:00\";s:12:\"english_name\";s:5:\"Czech\";s:11:\"native_name\";s:9:\"Čeština\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-cs_CZ.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"cs\";i:1;s:3:\"ces\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2024-05-13T09:10:58+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2024-05-07T18:50:14+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"nl-be\";a:7:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2024-05-07T10:41:44+00:00\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-nl_BE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2024-05-07T10:44:15+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2024-05-07T10:45:19+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2024-05-07T10:41:21+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2024-05-13T09:32:38+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2024-05-21T08:45:26+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"el\";a:7:{s:8:\"language\";s:2:\"el\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2024-05-07T16:14:11+00:00\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"Ελληνικά\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-el.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"el\";i:1;s:3:\"ell\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2024-05-07T10:41:28+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2024-05-08T12:27:32+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"id\";a:7:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2024-05-07T10:41:34+00:00\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-id_ID.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"id\";i:1;s:3:\"ind\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2024-05-15T07:17:28+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2024-05-24T04:38:07+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"fa\";a:7:{s:8:\"language\";s:5:\"fa_IR\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2024-05-07T16:08:07+00:00\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:\"فارسی\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-fa_IR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fa\";i:1;s:3:\"fas\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2024-05-08T10:26:05+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2024-05-23T15:53:18+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2024-05-21T10:01:11+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ro\";a:7:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2024-05-07T15:42:58+00:00\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-ro_RO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ro\";i:1;s:3:\"ron\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2024-05-09T14:18:02+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"sr\";a:7:{s:8:\"language\";s:5:\"sr_RS\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2024-05-07T15:42:59+00:00\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-sr_RS.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sr\";i:1;s:3:\"srp\";}}s:5:\"es-mx\";a:7:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2024-05-07T15:42:48+00:00\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-es_MX.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2024-05-15T21:54:18+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2024-05-22T17:38:12+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2024-05-17T22:12:34+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2024-05-09T14:30:18+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:17:\"gravityformsbrevo\";a:1:{s:12:\"translations\";a:20:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:12:\"1.0.0-beta-1\";s:7:\"updated\";s:25:\"2025-03-20T08:53:39+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:94:\"https://packages.translationspress.com/rocketgenius/gravityformsbrevo/gravityformsbrevo-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:12:\"1.0.0-beta-1\";s:7:\"updated\";s:25:\"2025-03-27T08:43:30+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsbrevo/gravityformsbrevo-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:12:\"1.0.0-beta-1\";s:7:\"updated\";s:25:\"2025-03-19T11:09:26+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsbrevo/gravityformsbrevo-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:12:\"1.0.0-beta-1\";s:7:\"updated\";s:25:\"2025-03-05T10:22:54+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsbrevo/gravityformsbrevo-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:12:\"1.0.0-beta-1\";s:7:\"updated\";s:25:\"2025-03-27T08:45:18+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsbrevo/gravityformsbrevo-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:12:\"1.0.0-beta-1\";s:7:\"updated\";s:25:\"2025-03-05T10:23:09+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:94:\"https://packages.translationspress.com/rocketgenius/gravityformsbrevo/gravityformsbrevo-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:12:\"1.0.0-beta-1\";s:7:\"updated\";s:25:\"2025-03-18T13:06:27+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsbrevo/gravityformsbrevo-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:12:\"1.0.0-beta-1\";s:7:\"updated\";s:25:\"2025-03-19T09:18:34+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsbrevo/gravityformsbrevo-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:12:\"1.0.0-beta-1\";s:7:\"updated\";s:25:\"2025-03-05T10:23:16+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsbrevo/gravityformsbrevo-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:12:\"1.0.0-beta-1\";s:7:\"updated\";s:25:\"2025-03-24T09:49:27+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsbrevo/gravityformsbrevo-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:12:\"1.0.0-beta-1\";s:7:\"updated\";s:25:\"2025-03-27T08:43:44+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsbrevo/gravityformsbrevo-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:12:\"1.0.0-beta-1\";s:7:\"updated\";s:25:\"2025-04-01T06:30:47+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:94:\"https://packages.translationspress.com/rocketgenius/gravityformsbrevo/gravityformsbrevo-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:12:\"1.0.0-beta-1\";s:7:\"updated\";s:25:\"2025-03-18T14:50:35+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsbrevo/gravityformsbrevo-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:12:\"1.0.0-beta-1\";s:7:\"updated\";s:25:\"2025-03-18T19:08:05+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsbrevo/gravityformsbrevo-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:12:\"1.0.0-beta-1\";s:7:\"updated\";s:25:\"2025-03-23T08:49:53+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsbrevo/gravityformsbrevo-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:12:\"1.0.0-beta-1\";s:7:\"updated\";s:25:\"2025-03-23T08:50:10+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsbrevo/gravityformsbrevo-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:12:\"1.0.0-beta-1\";s:7:\"updated\";s:25:\"2025-04-02T09:03:11+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsbrevo/gravityformsbrevo-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:12:\"1.0.0-beta-1\";s:7:\"updated\";s:25:\"2025-03-19T13:13:56+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsbrevo/gravityformsbrevo-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:12:\"1.0.0-beta-1\";s:7:\"updated\";s:25:\"2025-03-27T15:03:10+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsbrevo/gravityformsbrevo-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:12:\"1.0.0-beta-1\";s:7:\"updated\";s:25:\"2025-03-23T08:50:23+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:94:\"https://packages.translationspress.com/rocketgenius/gravityformsbrevo/gravityformsbrevo-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}}s:13:\"_last_checked\";i:1746494843;}','off'),(192,'gravityformsaddon_gravityformswebapi_version','1.0','yes'),(193,'widget_gform_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(195,'_transient_GFCache_f6290e4e5e2d7b53acefe4151afe5292','a:2:{s:17:\"gravityforms_cron\";a:3:{i:0;i:1746450177;i:1;i:1746361309;i:2;i:1746275031;}s:30:\"wp_gf_telemetry_processor_cron\";a:3:{i:0;i:1744979602;i:1;i:1739276907;i:2;i:1738593810;}}','yes'),(196,'gf_last_telemetry_run','1746361309','yes'),(197,'gf_telemetry_data','a:2:{s:8:\"snapshot\";O:64:\"Gravity_Forms\\Gravity_Forms\\Telemetry\\GF_Telemetry_Snapshot_Data\":2:{s:4:\"data\";a:33:{s:2:\"of\";s:12:\"gravityforms\";s:3:\"key\";s:9:\"activated\";s:1:\"v\";s:6:\"2.7.17\";s:2:\"wp\";s:5:\"6.6.2\";s:3:\"php\";s:6:\"8.1.29\";s:5:\"mysql\";s:7:\"10.3.39\";s:7:\"version\";s:1:\"2\";s:7:\"plugins\";s:1579:\"[{\"name\":\"Advanced Custom Fields PRO\",\"slug\":\"advanced-custom-fields-pro\",\"version\":\"6.3.9\",\"is_active\":true},{\"name\":\"Akismet Anti-spam: Spam Protection\",\"slug\":\"akismet\",\"version\":\"5.3.2\",\"is_active\":false},{\"name\":\"bbPress\",\"slug\":\"bbpress\",\"version\":\"2.6.11\",\"is_active\":true},{\"name\":\"Contact Form 7\",\"slug\":\"contact-form-7\",\"version\":\"5.9.8\",\"is_active\":true},{\"name\":\"Envato Market\",\"slug\":\"envato-market\",\"version\":\"2.0.12\",\"is_active\":true},{\"name\":\"Gravity Forms\",\"slug\":\"gravityforms\",\"version\":\"2.7.17\",\"is_active\":true},{\"name\":\"Hello Dolly\",\"slug\":\"hello\",\"version\":\"1.7.2\",\"is_active\":false},{\"name\":\"Loco Translate\",\"slug\":\"loco-translate\",\"version\":\"2.6.11\",\"is_active\":true},{\"name\":\"Mikado Core\",\"slug\":\"mkdf-core\",\"version\":\"1.4\",\"is_active\":true},{\"name\":\"Mikado Instagram Feed\",\"slug\":\"mkdf-instagram-feed\",\"version\":\"2.0.1\",\"is_active\":true},{\"name\":\"Mikado LMS\",\"slug\":\"mkdf-lms\",\"version\":\"1.2.2\",\"is_active\":true},{\"name\":\"Mikado Membership\",\"slug\":\"mkdf-membership\",\"version\":\"1.1.2\",\"is_active\":true},{\"name\":\"Mikado Twitter Feed\",\"slug\":\"mkdf-twitter-feed\",\"version\":\"1.0.3\",\"is_active\":true},{\"name\":\"Mikado Woocommerce Checkout Integration\",\"slug\":\"mkdf-checkout\",\"version\":\"1.0.1\",\"is_active\":false},{\"name\":\"Slider Revolution\",\"slug\":\"revslider\",\"version\":\"6.4.11\",\"is_active\":true},{\"name\":\"The Events Calendar\",\"slug\":\"the-events-calendar\",\"version\":\"6.7.0\",\"is_active\":true},{\"name\":\"WooCommerce\",\"slug\":\"woocommerce\",\"version\":\"9.3.3\",\"is_active\":true},{\"name\":\"WPBakery Page Builder\",\"slug\":\"js_composer\",\"version\":\"6.6.0\",\"is_active\":true}]\";s:2:\"tn\";s:8:\"iAcademy\";s:2:\"tu\";s:36:\"https://iacademy.qodeinteractive.com\";s:2:\"tv\";s:3:\"1.7\";s:2:\"ta\";s:13:\"Mikado Themes\";s:3:\"tau\";s:42:\"https://themeforest.net/user/mikado-themes\";s:2:\"im\";b:0;s:2:\"fc\";i:0;s:2:\"ec\";s:1:\"0\";s:3:\"emc\";i:0;s:3:\"api\";i:0;s:5:\"emeta\";i:0;s:2:\"ed\";i:0;s:2:\"en\";i:0;s:4:\"lang\";s:2:\"vi\";s:10:\"autoUpdate\";i:1;s:8:\"currency\";b:0;s:14:\"dataCollection\";i:0;s:5:\"email\";b:0;s:9:\"formTypes\";s:0:\"\";s:14:\"formTypesOther\";b:0;s:11:\"hideLicense\";i:0;s:12:\"organization\";b:0;s:17:\"organizationOther\";b:0;s:8:\"services\";s:0:\"\";s:13:\"servicesOther\";b:0;}s:3:\"key\";s:8:\"snapshot\";}s:6:\"events\";a:0:{}}','off'),(200,'gform_version_info','a:8:{s:12:\"is_valid_key\";b:0;s:6:\"reason\";s:7:\"invalid\";s:15:\"expiration_time\";i:0;s:7:\"version\";s:7:\"2.9.7.2\";s:3:\"url\";s:0:\"\";s:9:\"offerings\";a:79:{s:12:\"gravityforms\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:7:\"2.9.7.2\";s:14:\"version_latest\";s:7:\"2.9.7.2\";}s:17:\"gravityforms-beta\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:10:\"2.9.0-rc-1\";s:14:\"version_latest\";s:10:\"2.9.0-rc-1\";}s:21:\"gravityforms2checkout\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"2.4.0\";s:14:\"version_latest\";s:5:\"2.4.0\";}s:26:\"gravityformsactivecampaign\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"2.1.0\";s:14:\"version_latest\";s:5:\"2.1.0\";}s:32:\"gravityformsadvancedpostcreation\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"1.5.0\";s:14:\"version_latest\";s:5:\"1.5.0\";}s:20:\"gravityformsagilecrm\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"1.5.0\";s:14:\"version_latest\";s:5:\"1.5.0\";}s:19:\"gravityformsakismet\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"1.0\";s:14:\"version_latest\";s:5:\"1.0.1\";}s:24:\"gravityformsauthorizenet\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:4:\"2.11\";s:14:\"version_latest\";s:4:\"2.11\";}s:18:\"gravityformsaweber\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"4.1.0\";s:14:\"version_latest\";s:5:\"4.1.0\";}s:21:\"gravityformsbatchbook\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"1.3\";s:14:\"version_latest\";s:3:\"1.3\";}s:18:\"gravityformsbreeze\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"1.7.0\";s:14:\"version_latest\";s:5:\"1.7.0\";}s:22:\"gravityformsbrevo-beta\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:12:\"1.0.0-beta-1\";s:14:\"version_latest\";s:12:\"1.0.0-beta-1\";}s:27:\"gravityformscampaignmonitor\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"4.1.0\";s:14:\"version_latest\";s:5:\"4.1.0\";}s:20:\"gravityformscampfire\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"1.1\";s:14:\"version_latest\";s:5:\"1.2.2\";}s:22:\"gravityformscapsulecrm\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"1.8.0\";s:14:\"version_latest\";s:5:\"1.8.0\";}s:26:\"gravityformschainedselects\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"1.8.0\";s:14:\"version_latest\";s:5:\"1.8.0\";}s:31:\"gravityformschainedselects-beta\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"1.0\";s:14:\"version_latest\";s:12:\"1.0-beta-1.3\";}s:23:\"gravityformscleverreach\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"1.8\";s:14:\"version_latest\";s:3:\"1.8\";}s:15:\"gravityformscli\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:0:\"\";s:14:\"version_latest\";s:3:\"1.5\";}s:27:\"gravityformsconstantcontact\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"1.8.0\";s:14:\"version_latest\";s:5:\"1.8.0\";}s:31:\"gravityformsconversationalforms\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"1.6.0\";s:14:\"version_latest\";s:5:\"1.6.1\";}s:22:\"gravityformsconvertkit\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"1.1.0\";s:14:\"version_latest\";s:5:\"1.1.0\";}s:19:\"gravityformscoupons\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"3.4.0\";s:14:\"version_latest\";s:5:\"3.4.0\";}s:17:\"gravityformsdebug\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:0:\"\";s:14:\"version_latest\";s:10:\"1.0.beta12\";}s:19:\"gravityformsdropbox\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"3.2.0\";s:14:\"version_latest\";s:5:\"3.2.0\";}s:24:\"gravityformsdropbox-beta\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"2.0\";s:14:\"version_latest\";s:12:\"2.0-beta-1.1\";}s:24:\"gravityformsemailoctopus\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"1.4.0\";s:14:\"version_latest\";s:5:\"1.4.0\";}s:16:\"gravityformsemma\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"1.8.0\";s:14:\"version_latest\";s:5:\"1.8.0\";}s:22:\"gravityformsfreshbooks\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"2.8\";s:14:\"version_latest\";s:3:\"2.8\";}s:23:\"gravityformsgeolocation\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"1.4.0\";s:14:\"version_latest\";s:5:\"1.4.0\";}s:23:\"gravityformsgetresponse\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"1.9.0\";s:14:\"version_latest\";s:5:\"1.9.0\";}s:27:\"gravityformsgoogleanalytics\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"2.3.0\";s:14:\"version_latest\";s:5:\"2.3.0\";}s:21:\"gravityformsgutenberg\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:10:\"1.0-rc-1.4\";s:14:\"version_latest\";s:10:\"1.0-rc-1.5\";}s:21:\"gravityformshelpscout\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"2.4.0\";s:14:\"version_latest\";s:5:\"2.4.0\";}s:20:\"gravityformshighrise\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"1.3\";s:14:\"version_latest\";s:3:\"1.3\";}s:19:\"gravityformshipchat\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"1.2\";s:14:\"version_latest\";s:3:\"1.2\";}s:19:\"gravityformshubspot\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"2.2.0\";s:14:\"version_latest\";s:5:\"2.2.0\";}s:20:\"gravityformsicontact\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"1.8.0\";s:14:\"version_latest\";s:5:\"1.8.0\";}s:19:\"gravityformslogging\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"1.3\";s:14:\"version_latest\";s:5:\"1.3.1\";}s:19:\"gravityformsmadmimi\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"1.5.0\";s:14:\"version_latest\";s:5:\"1.5.0\";}s:21:\"gravityformsmailchimp\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"5.6.0\";s:14:\"version_latest\";s:5:\"5.6.0\";}s:22:\"gravityformsmailerlite\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"1.1.0\";s:14:\"version_latest\";s:5:\"1.1.0\";}s:27:\"gravityformsmailerlite-beta\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:12:\"1.0.0-beta-1\";s:14:\"version_latest\";s:12:\"1.0.0-beta-1\";}s:19:\"gravityformsmailgun\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"1.4.0\";s:14:\"version_latest\";s:5:\"1.4.0\";}s:22:\"gravityformsmoderation\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"1.2.0\";s:14:\"version_latest\";s:5:\"1.2.1\";}s:18:\"gravityformsmollie\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"1.7.0\";s:14:\"version_latest\";s:5:\"1.7.0\";}s:26:\"gravityformspartialentries\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"1.7\";s:14:\"version_latest\";s:3:\"1.7\";}s:18:\"gravityformspaypal\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"3.5\";s:14:\"version_latest\";s:3:\"3.5\";}s:33:\"gravityformspaypalexpresscheckout\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:0:\"\";s:14:\"version_latest\";s:0:\"\";}s:29:\"gravityformspaypalpaymentspro\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"2.7\";s:14:\"version_latest\";s:3:\"2.7\";}s:21:\"gravityformspaypalpro\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"1.8.1\";s:14:\"version_latest\";s:5:\"1.8.4\";}s:20:\"gravityformspicatcha\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"2.0\";s:14:\"version_latest\";s:3:\"2.0\";}s:16:\"gravityformspipe\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"1.4.0\";s:14:\"version_latest\";s:5:\"1.4.0\";}s:17:\"gravityformspolls\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"4.3.0\";s:14:\"version_latest\";s:5:\"4.3.0\";}s:20:\"gravityformspostmark\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"1.4.0\";s:14:\"version_latest\";s:5:\"1.4.0\";}s:16:\"gravityformsppcp\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"3.9.0\";s:14:\"version_latest\";s:5:\"3.9.0\";}s:21:\"gravityformsppcp-beta\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:10:\"2.0-beta-3\";s:14:\"version_latest\";s:10:\"2.0-beta-3\";}s:24:\"gravityformsppcp-release\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"2.0\";s:14:\"version_latest\";s:5:\"2.0.2\";}s:16:\"gravityformsquiz\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"4.2.0\";s:14:\"version_latest\";s:5:\"4.2.1\";}s:21:\"gravityformsrecaptcha\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"1.6.0\";s:14:\"version_latest\";s:5:\"1.6.0\";}s:19:\"gravityformsrestapi\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:10:\"2.0-beta-2\";s:14:\"version_latest\";s:10:\"2.0-beta-2\";}s:22:\"gravityformssalesforce\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"1.0.0\";s:14:\"version_latest\";s:5:\"1.0.0\";}s:27:\"gravityformssalesforce-beta\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:12:\"1.0.0-beta-1\";s:14:\"version_latest\";s:12:\"1.0.0-beta-1\";}s:20:\"gravityformssendgrid\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"1.6.0\";s:14:\"version_latest\";s:5:\"1.6.0\";}s:21:\"gravityformssignature\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"4.8.0\";s:14:\"version_latest\";s:5:\"4.8.1\";}s:17:\"gravityformsslack\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"2.1.0\";s:14:\"version_latest\";s:5:\"2.1.0\";}s:18:\"gravityformssquare\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"2.4.0\";s:14:\"version_latest\";s:5:\"2.4.0\";}s:18:\"gravityformsstripe\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"5.9.0\";s:14:\"version_latest\";s:5:\"5.9.0\";}s:23:\"gravityformsstripe-beta\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:10:\"5.0-beta-1\";s:14:\"version_latest\";s:10:\"5.0-beta-1\";}s:18:\"gravityformssurvey\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"4.1.0\";s:14:\"version_latest\";s:5:\"4.1.1\";}s:18:\"gravityformstrello\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"2.1.0\";s:14:\"version_latest\";s:5:\"2.1.0\";}s:21:\"gravityformsturnstile\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"1.4.0\";s:14:\"version_latest\";s:5:\"1.4.0\";}s:18:\"gravityformstwilio\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"3.0.0\";s:14:\"version_latest\";s:5:\"3.0.0\";}s:28:\"gravityformsuserregistration\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"5.4.0\";s:14:\"version_latest\";s:5:\"5.4.0\";}s:20:\"gravityformswebhooks\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"1.7.0\";s:14:\"version_latest\";s:5:\"1.7.0\";}s:18:\"gravityformszapier\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"4.4.0\";s:14:\"version_latest\";s:5:\"4.4.0\";}s:23:\"gravityformszapier-beta\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:10:\"4.0-beta-2\";s:14:\"version_latest\";s:10:\"4.0-beta-2\";}s:19:\"gravityformszohocrm\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"2.3.0\";s:14:\"version_latest\";s:5:\"2.3.0\";}s:11:\"gravitysmtp\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"1.9.1\";s:14:\"version_latest\";s:5:\"1.9.1\";}}s:14:\"version_latest\";s:7:\"2.9.7.2\";s:9:\"timestamp\";i:1746494842;}','off'),(206,'revslider_servers','a:3:{i:0;s:22:\"themepunch-ext-a.tools\";i:1;s:22:\"themepunch-ext-b.tools\";i:2;s:22:\"themepunch-ext-c.tools\";}','yes'),(207,'revslider_server_refresh','1746380915','yes'),(208,'revslider-update-check-short','1746361310','yes'),(209,'revslider-connection','1','yes'),(210,'revslider-update-hash','0e60ec4d2bb6d2f9e72c677922475429','yes'),(211,'revslider-latest-version','6.7.33','yes'),(212,'revslider-stable-version','4.2.0','yes'),(213,'revslider-notices','a:2:{i:0;O:8:\"stdClass\":9:{s:7:\"version\";s:5:\"0.9.9\";s:4:\"text\";s:964:\"<div style=\"display: block; background: #1b0e41;text-align: center; height:300px;\"><noscript><img src=\"//updates.themepunch-ext-a.tools//banners/rs60/cyberweek.jpg\" usemap=\"#srbannermap\" style=\"min-width:920px;height:300px;display: inline-block;\"></noscript><img usemap=\"#srbannermap\" style=\"min-width:920px;height:300px;display: inline-block;\" src=\"//updates.themepunch-ext-a.tools//banners/rs60/cyberweek.jpg\"></div>\n<map name=\"srbannermap\">\n    <area target=\"_blank\" alt=\"Slider Revolution\" title=\"Slider Revolution\" href=\"https://www.sliderrevolution.com/black-friday-and-cyber-monday-sale/?utm_source=admin&amp;utm_medium=banner&amp;utm_campaign=srusers&amp;utm_content=cyberweeks22\" coords=\"569,135,890,196\" shape=\"rect\">\n    <area target=\"_blank\" alt=\"Essential Grid\" title=\"Essential Grid\" href=\"https://www.essential-grid.com/?utm_source=admin&utm_medium=banner&utm_campaign=esgusers&utm_content=cyberweeks22\" coords=\"570,200,889,260\" shape=\"rect\">\n</map>\";s:4:\"code\";s:9:\"TPSRCW111\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:9:\"is_global\";b:0;s:4:\"type\";s:1:\"3\";s:10:\"show_until\";s:19:\"0000-00-00 00:00:00\";s:10:\"additional\";a:0:{}}i:1;O:8:\"stdClass\":9:{s:7:\"version\";s:5:\"0.9.9\";s:4:\"text\";s:956:\"<div style=\"display: block; background: #1c0950;text-align: center; height:300px;\"><noscript><img src=\"//updates.themepunch-ext-a.tools//banners/blackfriday2024-admin2.jpg\" usemap=\"#srbannermap\" style=\"min-width:920px;height:300px;display: inline-block;\"></noscript><img usemap=\"#srbannermap\" style=\"min-width:920px;height:300px;display: inline-block;\" src=\"//updates.themepunch-ext-a.tools//banners/blackfriday2024-admin2.jpg\"></div><map name=\"srbannermap\"><area target=\"_blank\" alt=\"Slider Revolution\" title=\"Slider Revolution\" href=\"https://www.sliderrevolution.com/black-friday-and-cyber-monday-sale/?utm_source=admin&utm_medium=banner&utm_campaign=srusers&utm_content=cyberweeks24\" coords=\"569,135,890,196\" shape=\"rect\"><area target=\"_blank\" alt=\"Essential Grid\" title=\"Essential Grid\" href=\"https://www.essential-grid.com/?utm_source=admin&utm_medium=banner&utm_campaign=esgusers&utm_content=cyberweeks24\" coords=\"570,200,889,260\" shape=\"rect\"></map>\";s:4:\"code\";s:8:\"TPSRBF24\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:9:\"is_global\";b:0;s:4:\"type\";s:1:\"3\";s:10:\"show_until\";s:19:\"0000-00-00 00:00:00\";s:10:\"additional\";a:0:{}}}','yes'),(214,'revslider-additions','O:8:\"stdClass\":1:{s:7:\"selling\";b:1;}','yes'),(215,'rs-addons-counter','31','yes'),(216,'revslider-addons','O:8:\"stdClass\":31:{s:25:\"revslider-particles-addon\";O:8:\"stdClass\":22:{s:2:\"id\";s:3:\"372\";s:9:\"releaseid\";s:1:\"7\";s:4:\"slug\";s:25:\"revslider-particles-addon\";s:12:\"version_from\";s:5:\"6.4.8\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:16:\"Particle Effects\";s:6:\"line_1\";s:17:\"Let\'s Parti(cle)!\";s:6:\"line_2\";s:51:\"Add interactive particle animations to your sliders\";s:9:\"available\";s:5:\"2.3.6\";s:10:\"background\";s:0:\"\";s:15:\"background_file\";s:0:\"\";s:14:\"background_md5\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:4:\"sort\";s:2:\"10\";s:11:\"last_update\";s:10:\"2021-04-16\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":5:{s:3:\"img\";s:76:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_particles.jpg\";s:8:\"img_file\";s:43:\"revslider/addons/images/addon_particles.jpg\";s:7:\"img_md5\";s:32:\"b668a4015ddc6a532b43bb558967a062\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PT\";}s:6:\"banner\";s:0:\"\";s:11:\"banner_file\";s:0:\"\";s:10:\"banner_md5\";s:0:\"\";s:4:\"tags\";a:0:{}}s:27:\"revslider-bubblemorph-addon\";O:8:\"stdClass\":22:{s:2:\"id\";s:3:\"351\";s:9:\"releaseid\";s:2:\"20\";s:4:\"slug\";s:27:\"revslider-bubblemorph-addon\";s:12:\"version_from\";s:6:\"6.2.50\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:11:\"BubbleMorph\";s:6:\"line_1\";s:26:\"Include BubbleMorph Layers\";s:6:\"line_2\";s:33:\"for a decorative lava lamp effect\";s:9:\"available\";s:5:\"2.2.2\";s:10:\"background\";s:0:\"\";s:15:\"background_file\";s:0:\"\";s:14:\"background_md5\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:2:\"20\";s:11:\"last_update\";s:10:\"2021-01-20\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":5:{s:3:\"img\";s:78:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_bubblemorph.jpg\";s:8:\"img_file\";s:45:\"revslider/addons/images/addon_bubblemorph.jpg\";s:7:\"img_md5\";s:32:\"22d03d5de3034069c6db1fdeafd467cd\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"BM\";}s:6:\"banner\";s:0:\"\";s:11:\"banner_file\";s:0:\"\";s:10:\"banner_md5\";s:0:\"\";s:4:\"tags\";a:0:{}}s:27:\"revslider-beforeafter-addon\";O:8:\"stdClass\":22:{s:2:\"id\";s:3:\"370\";s:9:\"releaseid\";s:2:\"15\";s:4:\"slug\";s:27:\"revslider-beforeafter-addon\";s:12:\"version_from\";s:5:\"6.4.8\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:14:\"Before & After\";s:6:\"line_1\";s:35:\"Compare two slides before and after\";s:6:\"line_2\";s:33:\"use it vertically or horizontally\";s:9:\"available\";s:5:\"2.1.2\";s:10:\"background\";s:0:\"\";s:15:\"background_file\";s:0:\"\";s:14:\"background_md5\";s:0:\"\";s:6:\"button\";s:0:\"\";s:4:\"sort\";s:2:\"40\";s:11:\"last_update\";s:10:\"2021-04-16\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":5:{s:3:\"img\";s:78:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_beforeafter.jpg\";s:8:\"img_file\";s:45:\"revslider/addons/images/addon_beforeafter.jpg\";s:7:\"img_md5\";s:32:\"5a34f20417a7874e1b95693ef37a0758\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"BA\";}s:6:\"banner\";s:0:\"\";s:11:\"banner_file\";s:0:\"\";s:10:\"banner_md5\";s:0:\"\";s:4:\"tags\";a:0:{}}s:26:\"revslider-typewriter-addon\";O:8:\"stdClass\":22:{s:2:\"id\";s:3:\"363\";s:9:\"releaseid\";s:1:\"3\";s:4:\"slug\";s:26:\"revslider-typewriter-addon\";s:12:\"version_from\";s:5:\"6.4.4\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:17:\"Typewriter Effect\";s:6:\"line_1\";s:27:\"Enhance your slider\'s text \";s:6:\"line_2\";s:24:\"with typewriter effects \";s:9:\"available\";s:5:\"2.1.1\";s:10:\"background\";s:0:\"\";s:15:\"background_file\";s:0:\"\";s:14:\"background_md5\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:2:\"50\";s:11:\"last_update\";s:10:\"2021-03-17\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":5:{s:3:\"img\";s:77:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_typewriter.jpg\";s:8:\"img_file\";s:44:\"revslider/addons/images/addon_typewriter.jpg\";s:7:\"img_md5\";s:32:\"727b604f6fd3fc55894ba50eb566efed\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"TW\";}s:6:\"banner\";s:0:\"\";s:11:\"banner_file\";s:0:\"\";s:10:\"banner_md5\";s:0:\"\";s:4:\"tags\";a:0:{}}s:25:\"revslider-mousetrap-addon\";O:8:\"stdClass\":22:{s:2:\"id\";s:3:\"371\";s:9:\"releaseid\";s:2:\"24\";s:4:\"slug\";s:25:\"revslider-mousetrap-addon\";s:12:\"version_from\";s:5:\"6.4.8\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:9:\"Mousetrap\";s:6:\"line_1\";s:31:\"Create all kinds of interesting\";s:6:\"line_2\";s:19:\" mouse interactions\";s:9:\"available\";s:6:\"2.0.10\";s:10:\"background\";s:0:\"\";s:15:\"background_file\";s:0:\"\";s:14:\"background_md5\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:2:\"60\";s:11:\"last_update\";s:10:\"2021-04-16\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":5:{s:3:\"img\";s:76:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_mousetrap.jpg\";s:8:\"img_file\";s:43:\"revslider/addons/images/addon_mousetrap.jpg\";s:7:\"img_md5\";s:32:\"2329053c3b1d19bdaee131c3dc258d3a\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"MT\";}s:6:\"banner\";s:0:\"\";s:11:\"banner_file\";s:0:\"\";s:10:\"banner_md5\";s:0:\"\";s:4:\"tags\";a:0:{}}s:28:\"revslider-liquideffect-addon\";O:8:\"stdClass\":22:{s:2:\"id\";s:3:\"358\";s:9:\"releaseid\";s:2:\"21\";s:4:\"slug\";s:28:\"revslider-liquideffect-addon\";s:12:\"version_from\";s:5:\"6.4.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:10:\"Distortion\";s:6:\"line_1\";s:22:\"Add Distortion Effects\";s:6:\"line_2\";s:30:\"to your slides and transitions\";s:9:\"available\";s:5:\"2.1.3\";s:10:\"background\";s:0:\"\";s:15:\"background_file\";s:0:\"\";s:14:\"background_md5\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:2:\"70\";s:11:\"last_update\";s:10:\"2021-03-30\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":5:{s:3:\"img\";s:77:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_distortion.jpg\";s:8:\"img_file\";s:44:\"revslider/addons/images/addon_distortion.jpg\";s:7:\"img_md5\";s:32:\"c26c52a563008b7dc907a288c1e4bb8e\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"LE\";}s:6:\"banner\";s:0:\"\";s:11:\"banner_file\";s:0:\"\";s:10:\"banner_md5\";s:0:\"\";s:4:\"tags\";a:0:{}}s:22:\"revslider-lottie-addon\";O:8:\"stdClass\":22:{s:2:\"id\";s:3:\"359\";s:9:\"releaseid\";s:2:\"25\";s:4:\"slug\";s:22:\"revslider-lottie-addon\";s:12:\"version_from\";s:5:\"6.4.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Lottie\";s:6:\"line_1\";s:53:\"Adds support for the popular Lottie Animation format,\";s:6:\"line_2\";s:70:\" including animation control, style customization and a local library.\";s:9:\"available\";s:5:\"2.0.6\";s:10:\"background\";s:0:\"\";s:15:\"background_file\";s:0:\"\";s:14:\"background_md5\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:2:\"80\";s:11:\"last_update\";s:10:\"2021-03-30\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":5:{s:3:\"img\";s:73:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_lottie.jpg\";s:8:\"img_file\";s:40:\"revslider/addons/images/addon_lottie.jpg\";s:7:\"img_md5\";s:32:\"4aa677a45bb13732e4f10bcb632afcce\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"LT\";}s:6:\"banner\";s:0:\"\";s:11:\"banner_file\";s:0:\"\";s:10:\"banner_md5\";s:0:\"\";s:4:\"tags\";a:0:{}}s:26:\"revslider-paintbrush-addon\";O:8:\"stdClass\":22:{s:2:\"id\";s:2:\"77\";s:9:\"releaseid\";s:2:\"23\";s:4:\"slug\";s:26:\"revslider-paintbrush-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:10:\"Paintbrush\";s:6:\"line_1\";s:14:\"Paint or Erase\";s:6:\"line_2\";s:22:\"your background images\";s:9:\"available\";s:5:\"2.1.9\";s:10:\"background\";s:0:\"\";s:15:\"background_file\";s:0:\"\";s:14:\"background_md5\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:2:\"90\";s:11:\"last_update\";s:10:\"2020-06-14\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":5:{s:3:\"img\";s:77:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_paintbrush.jpg\";s:8:\"img_file\";s:44:\"revslider/addons/images/addon_paintbrush.jpg\";s:7:\"img_md5\";s:32:\"308a56289b9a29d1916c2acfc141b699\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PB\";}s:6:\"banner\";s:0:\"\";s:11:\"banner_file\";s:0:\"\";s:10:\"banner_md5\";s:0:\"\";s:4:\"tags\";a:0:{}}s:22:\"revslider-charts-addon\";O:8:\"stdClass\":22:{s:2:\"id\";s:3:\"355\";s:9:\"releaseid\";s:2:\"27\";s:4:\"slug\";s:22:\"revslider-charts-addon\";s:12:\"version_from\";s:6:\"6.4.10\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Charts\";s:6:\"line_1\";s:93:\"The Charts addon allows you to create visually impressive line or bar graphs from .csv data, \";s:6:\"line_2\";s:56:\"with tons of options to take full control of the design.\";s:9:\"available\";s:5:\"1.0.0\";s:10:\"background\";s:0:\"\";s:15:\"background_file\";s:0:\"\";s:14:\"background_md5\";s:0:\"\";s:6:\"button\";s:0:\"\";s:4:\"sort\";s:3:\"100\";s:11:\"last_update\";s:10:\"2021-04-29\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":5:{s:3:\"img\";s:73:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_charts.jpg\";s:8:\"img_file\";s:40:\"revslider/addons/images/addon_charts.jpg\";s:7:\"img_md5\";s:32:\"d2c184371a575faade425c0377c1fdbd\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"CH\";}s:6:\"banner\";s:0:\"\";s:11:\"banner_file\";s:0:\"\";s:10:\"banner_md5\";s:0:\"\";s:4:\"tags\";a:0:{}}s:22:\"revslider-slicey-addon\";O:8:\"stdClass\":22:{s:2:\"id\";s:3:\"364\";s:9:\"releaseid\";s:2:\"13\";s:4:\"slug\";s:22:\"revslider-slicey-addon\";s:12:\"version_from\";s:5:\"6.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Slicey\";s:6:\"line_1\";s:20:\"Slice \'em up nicely!\";s:6:\"line_2\";s:38:\"Create image slices of your background\";s:9:\"available\";s:5:\"2.1.1\";s:10:\"background\";s:0:\"\";s:15:\"background_file\";s:0:\"\";s:14:\"background_md5\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"110\";s:11:\"last_update\";s:10:\"2021-03-24\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":5:{s:3:\"img\";s:73:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_slicey.jpg\";s:8:\"img_file\";s:40:\"revslider/addons/images/addon_slicey.jpg\";s:7:\"img_md5\";s:32:\"28afd29b7738a452194f0a0bc1d21cbe\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"SL\";}s:6:\"banner\";s:0:\"\";s:11:\"banner_file\";s:0:\"\";s:10:\"banner_md5\";s:0:\"\";s:4:\"tags\";a:0:{}}s:25:\"revslider-filmstrip-addon\";O:8:\"stdClass\":22:{s:2:\"id\";s:2:\"64\";s:9:\"releaseid\";s:2:\"10\";s:4:\"slug\";s:25:\"revslider-filmstrip-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:9:\"Filmstrip\";s:6:\"line_1\";s:44:\"Display a continously rotating set of images\";s:6:\"line_2\";s:26:\"for your slide backgrounds\";s:9:\"available\";s:5:\"2.0.4\";s:10:\"background\";s:0:\"\";s:15:\"background_file\";s:0:\"\";s:14:\"background_md5\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"125\";s:11:\"last_update\";s:10:\"2021-01-05\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":5:{s:3:\"img\";s:76:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_filmstrip.jpg\";s:8:\"img_file\";s:43:\"revslider/addons/images/addon_filmstrip.jpg\";s:7:\"img_md5\";s:32:\"dac40ee57d2be9aaf01faacf51ccb412\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"FS\";}s:6:\"banner\";s:0:\"\";s:11:\"banner_file\";s:0:\"\";s:10:\"banner_md5\";s:0:\"\";s:4:\"tags\";a:0:{}}s:27:\"revslider-maintenance-addon\";O:8:\"stdClass\":22:{s:2:\"id\";s:3:\"377\";s:9:\"releaseid\";s:1:\"4\";s:4:\"slug\";s:27:\"revslider-maintenance-addon\";s:12:\"version_from\";s:6:\"6.4.11\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:15:\"Coming & Maint.\";s:6:\"line_1\";s:37:\"Simple Coming Soon & Maintenance Page\";s:6:\"line_2\";s:42:\"Let your visitors know what\'s up and when!\";s:9:\"available\";s:5:\"2.1.5\";s:10:\"background\";s:0:\"\";s:15:\"background_file\";s:0:\"\";s:14:\"background_md5\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"127\";s:11:\"last_update\";s:10:\"2021-06-12\";s:6:\"global\";b:1;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":5:{s:3:\"img\";s:84:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_underconstruction.jpg\";s:8:\"img_file\";s:51:\"revslider/addons/images/addon_underconstruction.jpg\";s:7:\"img_md5\";s:32:\"17f8cba84931541c065cfb1943edafb2\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"MT\";}s:6:\"banner\";s:0:\"\";s:11:\"banner_file\";s:0:\"\";s:10:\"banner_md5\";s:0:\"\";s:4:\"tags\";a:0:{}}s:24:\"revslider-revealer-addon\";O:8:\"stdClass\":22:{s:2:\"id\";s:3:\"361\";s:9:\"releaseid\";s:2:\"19\";s:4:\"slug\";s:24:\"revslider-revealer-addon\";s:12:\"version_from\";s:5:\"6.4.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Reveal\";s:6:\"line_1\";s:9:\"Reveal...\";s:6:\"line_2\";s:37:\"...your inner beast... and RevSliders\";s:9:\"available\";s:5:\"2.2.1\";s:10:\"background\";s:0:\"\";s:15:\"background_file\";s:0:\"\";s:14:\"background_md5\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"130\";s:11:\"last_update\";s:10:\"2021-02-24\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":5:{s:3:\"img\";s:73:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_reveal.jpg\";s:8:\"img_file\";s:40:\"revslider/addons/images/addon_reveal.jpg\";s:7:\"img_md5\";s:32:\"a7ce4bf5eb6fdc1497ed6276ca623046\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"RV\";}s:6:\"banner\";s:0:\"\";s:11:\"banner_file\";s:0:\"\";s:10:\"banner_md5\";s:0:\"\";s:4:\"tags\";a:0:{}}s:24:\"revslider-panorama-addon\";O:8:\"stdClass\":22:{s:2:\"id\";s:3:\"374\";s:9:\"releaseid\";s:2:\"17\";s:4:\"slug\";s:24:\"revslider-panorama-addon\";s:12:\"version_from\";s:6:\"6.4.10\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:8:\"Panorama\";s:6:\"line_1\";s:14:\"Panorama AddOn\";s:6:\"line_2\";s:28:\"Display images in 360 degree\";s:9:\"available\";s:5:\"2.1.4\";s:10:\"background\";s:0:\"\";s:15:\"background_file\";s:0:\"\";s:14:\"background_md5\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"135\";s:11:\"last_update\";s:10:\"2021-04-29\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":5:{s:3:\"img\";s:75:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_panorama.jpg\";s:8:\"img_file\";s:42:\"revslider/addons/images/addon_panorama.jpg\";s:7:\"img_md5\";s:32:\"210953d59903bed91688138cb60777d2\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PN\";}s:6:\"banner\";s:0:\"\";s:11:\"banner_file\";s:0:\"\";s:10:\"banner_md5\";s:0:\"\";s:4:\"tags\";a:0:{}}s:27:\"revslider-scrollvideo-addon\";O:8:\"stdClass\":22:{s:2:\"id\";s:3:\"310\";s:9:\"releaseid\";s:2:\"26\";s:4:\"slug\";s:27:\"revslider-scrollvideo-addon\";s:12:\"version_from\";s:5:\"6.3.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:12:\"Scroll Video\";s:6:\"line_1\";s:114:\"This addon allows you to generate a sequence of images from any html5 video and play them with scroll interaction.\";s:6:\"line_2\";s:49:\"Quality options are included for optimal results!\";s:9:\"available\";s:5:\"2.0.4\";s:10:\"background\";s:78:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_scrollvideo.jpg\";s:15:\"background_file\";s:45:\"revslider/addons/images/addon_scrollvideo.jpg\";s:14:\"background_md5\";s:32:\"82b2706dfa20a7b0cfabfe7ff28562f9\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"140\";s:11:\"last_update\";s:10:\"2021-02-24\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":5:{s:3:\"img\";s:78:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_scrollvideo.jpg\";s:8:\"img_file\";s:45:\"revslider/addons/images/addon_scrollvideo.jpg\";s:7:\"img_md5\";s:32:\"82b2706dfa20a7b0cfabfe7ff28562f9\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"SV\";}s:6:\"banner\";s:0:\"\";s:11:\"banner_file\";s:0:\"\";s:10:\"banner_md5\";s:0:\"\";s:4:\"tags\";a:0:{}}s:31:\"revslider-explodinglayers-addon\";O:8:\"stdClass\":22:{s:2:\"id\";s:3:\"353\";s:9:\"releaseid\";s:2:\"22\";s:4:\"slug\";s:31:\"revslider-explodinglayers-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:16:\"Exploding Layers\";s:6:\"line_1\";s:23:\"Add explosive particles\";s:6:\"line_2\";s:24:\"to your layers animation\";s:9:\"available\";s:5:\"2.1.4\";s:10:\"background\";s:0:\"\";s:15:\"background_file\";s:0:\"\";s:14:\"background_md5\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"150\";s:11:\"last_update\";s:10:\"2020-12-04\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":5:{s:3:\"img\";s:76:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_exploding.jpg\";s:8:\"img_file\";s:43:\"revslider/addons/images/addon_exploding.jpg\";s:7:\"img_md5\";s:32:\"44d60b83cdf5b29033d41feb516b47e1\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"EL\";}s:6:\"banner\";s:0:\"\";s:11:\"banner_file\";s:0:\"\";s:10:\"banner_md5\";s:0:\"\";s:4:\"tags\";a:0:{}}s:23:\"revslider-sharing-addon\";O:8:\"stdClass\":22:{s:2:\"id\";s:2:\"57\";s:9:\"releaseid\";s:1:\"5\";s:4:\"slug\";s:23:\"revslider-sharing-addon\";s:12:\"version_from\";s:5:\"5.3.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:14:\"Social Sharing\";s:6:\"line_1\";s:17:\"Share your slides\";s:6:\"line_2\";s:50:\"with RevSlider \"actions\" because sharing is caring\";s:9:\"available\";s:5:\"2.0.5\";s:10:\"background\";s:0:\"\";s:15:\"background_file\";s:0:\"\";s:14:\"background_md5\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:4:\"sort\";s:3:\"165\";s:11:\"last_update\";s:10:\"2020-02-20\";s:6:\"global\";b:1;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":5:{s:3:\"img\";s:80:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_socialsharing.jpg\";s:8:\"img_file\";s:47:\"revslider/addons/images/addon_socialsharing.jpg\";s:7:\"img_md5\";s:32:\"6b074630853c4f95d5337bc85e496cbe\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"SH\";}s:6:\"banner\";s:0:\"\";s:11:\"banner_file\";s:0:\"\";s:10:\"banner_md5\";s:0:\"\";s:4:\"tags\";a:0:{}}s:26:\"revslider-whiteboard-addon\";O:8:\"stdClass\":22:{s:2:\"id\";s:3:\"308\";s:9:\"releaseid\";s:1:\"1\";s:4:\"slug\";s:26:\"revslider-whiteboard-addon\";s:12:\"version_from\";s:5:\"5.2.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:10:\"Whiteboard\";s:6:\"line_1\";s:31:\"Create Hand-Drawn Presentations\";s:6:\"line_2\";s:45:\"that are understandable, memorable & engaging\";s:9:\"available\";s:5:\"2.2.3\";s:10:\"background\";s:81:\"//updates.themepunch-ext-a.tools/revslider/addons/images/whiteboard_widget_bg.jpg\";s:15:\"background_file\";s:48:\"revslider/addons/images/whiteboard_widget_bg.jpg\";s:14:\"background_md5\";s:32:\"cc69160eb95469dc033e0cc094a24847\";s:6:\"button\";s:11:\"How to use?\";s:4:\"sort\";s:3:\"170\";s:11:\"last_update\";s:10:\"2021-01-15\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":5:{s:3:\"img\";s:77:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_whiteboard.jpg\";s:8:\"img_file\";s:44:\"revslider/addons/images/addon_whiteboard.jpg\";s:7:\"img_md5\";s:32:\"b0bb636fb30ffc3d112ba4c563395ee6\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"WB\";}s:6:\"banner\";s:0:\"\";s:11:\"banner_file\";s:0:\"\";s:10:\"banner_md5\";s:0:\"\";s:4:\"tags\";a:0:{}}s:24:\"revslider-polyfold-addon\";O:8:\"stdClass\":22:{s:2:\"id\";s:3:\"376\";s:9:\"releaseid\";s:2:\"14\";s:4:\"slug\";s:24:\"revslider-polyfold-addon\";s:12:\"version_from\";s:6:\"6.4.11\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:22:\"Polyfold Scroll Effect\";s:6:\"line_1\";s:32:\"Add sharp edges to your sliders \";s:6:\"line_2\";s:35:\"as they scroll into and out of view\";s:9:\"available\";s:5:\"2.0.1\";s:10:\"background\";s:0:\"\";s:15:\"background_file\";s:0:\"\";s:14:\"background_md5\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:4:\"sort\";s:3:\"180\";s:11:\"last_update\";s:10:\"2021-05-04\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":5:{s:3:\"img\";s:75:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_polyfold.jpg\";s:8:\"img_file\";s:42:\"revslider/addons/images/addon_polyfold.jpg\";s:7:\"img_md5\";s:32:\"02c6af89e4208f0da5920c6c3e6bb744\";s:5:\"color\";s:7:\"#3e186f\";s:4:\"text\";s:2:\"PF\";}s:6:\"banner\";s:0:\"\";s:11:\"banner_file\";s:0:\"\";s:10:\"banner_md5\";s:0:\"\";s:4:\"tags\";a:0:{}}s:29:\"revslider-domain-switch-addon\";O:8:\"stdClass\":22:{s:2:\"id\";s:2:\"78\";s:9:\"releaseid\";s:2:\"11\";s:4:\"slug\";s:29:\"revslider-domain-switch-addon\";s:12:\"version_from\";s:5:\"6.0.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:13:\"Domain Switch\";s:6:\"line_1\";s:17:\"Switch Image URLs\";s:6:\"line_2\";s:37:\"in sliders from one domain to another\";s:9:\"available\";s:5:\"1.0.2\";s:10:\"background\";s:0:\"\";s:15:\"background_file\";s:0:\"\";s:14:\"background_md5\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:4:\"sort\";s:3:\"300\";s:11:\"last_update\";s:10:\"2024-11-04\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":5:{s:3:\"img\";s:79:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_domainswitch.jpg\";s:8:\"img_file\";s:46:\"revslider/addons/images/addon_domainswitch.jpg\";s:7:\"img_md5\";s:32:\"f2036924e7993f94bd5c9876fa0bf09b\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"DS\";}s:6:\"banner\";s:0:\"\";s:11:\"banner_file\";s:0:\"\";s:10:\"banner_md5\";s:0:\"\";s:4:\"tags\";a:0:{}}s:23:\"revslider-refresh-addon\";O:8:\"stdClass\":22:{s:2:\"id\";s:2:\"73\";s:9:\"releaseid\";s:2:\"10\";s:4:\"slug\";s:23:\"revslider-refresh-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:8:\"(Re)Load\";s:6:\"line_1\";s:39:\"Reload the current page or a custom URL\";s:6:\"line_2\";s:34:\"after a certain time, loops, slide\";s:9:\"available\";s:5:\"2.0.0\";s:10:\"background\";s:0:\"\";s:15:\"background_file\";s:0:\"\";s:14:\"background_md5\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"330\";s:11:\"last_update\";s:10:\"2020-01-01\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":5:{s:3:\"img\";s:73:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_reload.jpg\";s:8:\"img_file\";s:40:\"revslider/addons/images/addon_reload.jpg\";s:7:\"img_md5\";s:32:\"d1d34d204e627168f4cc4e7422a6d40c\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"RF\";}s:6:\"banner\";s:0:\"\";s:11:\"banner_file\";s:0:\"\";s:10:\"banner_md5\";s:0:\"\";s:4:\"tags\";a:0:{}}s:25:\"revslider-rel-posts-addon\";O:8:\"stdClass\":22:{s:2:\"id\";s:2:\"55\";s:9:\"releaseid\";s:1:\"9\";s:4:\"slug\";s:25:\"revslider-rel-posts-addon\";s:12:\"version_from\";s:7:\"5.2.4.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:13:\"Related Posts\";s:6:\"line_1\";s:25:\"Add related Posts Sliders\";s:6:\"line_2\";s:31:\"at the end of your post content\";s:9:\"available\";s:5:\"2.0.3\";s:10:\"background\";s:0:\"\";s:15:\"background_file\";s:0:\"\";s:14:\"background_md5\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"340\";s:11:\"last_update\";s:10:\"2024-11-04\";s:6:\"global\";b:1;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":5:{s:3:\"img\";s:76:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_wprelated.jpg\";s:8:\"img_file\";s:43:\"revslider/addons/images/addon_wprelated.jpg\";s:7:\"img_md5\";s:32:\"e2e7d6c3a428a55442ba90131556c930\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"RP\";}s:6:\"banner\";s:0:\"\";s:11:\"banner_file\";s:0:\"\";s:10:\"banner_md5\";s:0:\"\";s:4:\"tags\";a:0:{}}s:20:\"revslider-snow-addon\";O:8:\"stdClass\":22:{s:2:\"id\";s:2:\"59\";s:9:\"releaseid\";s:1:\"6\";s:4:\"slug\";s:20:\"revslider-snow-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:12:\"Holiday Snow\";s:6:\"line_1\";s:12:\"Let it snow!\";s:6:\"line_2\";s:32:\"Add animated snow to any Slider \";s:9:\"available\";s:5:\"2.0.1\";s:10:\"background\";s:0:\"\";s:15:\"background_file\";s:0:\"\";s:14:\"background_md5\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:4:\"sort\";s:3:\"380\";s:11:\"last_update\";s:10:\"2020-12-04\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":5:{s:3:\"img\";s:71:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_snow.jpg\";s:8:\"img_file\";s:38:\"revslider/addons/images/addon_snow.jpg\";s:7:\"img_md5\";s:32:\"d6bac718866b0070198a4340041bc60b\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"SN\";}s:6:\"banner\";s:0:\"\";s:11:\"banner_file\";s:0:\"\";s:10:\"banner_md5\";s:0:\"\";s:4:\"tags\";a:0:{}}s:23:\"revslider-gallery-addon\";O:8:\"stdClass\":22:{s:2:\"id\";s:3:\"378\";s:9:\"releaseid\";s:1:\"2\";s:4:\"slug\";s:23:\"revslider-gallery-addon\";s:12:\"version_from\";s:6:\"6.4.11\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:17:\"WordPress Gallery\";s:6:\"line_1\";s:31:\"Replace the standard WP Gallery\";s:6:\"line_2\";s:31:\"with the Sliders of your choice\";s:9:\"available\";s:5:\"2.0.7\";s:10:\"background\";s:0:\"\";s:15:\"background_file\";s:0:\"\";s:14:\"background_md5\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"430\";s:11:\"last_update\";s:10:\"2024-11-04\";s:6:\"global\";b:1;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":5:{s:3:\"img\";s:76:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_wpgallery.jpg\";s:8:\"img_file\";s:43:\"revslider/addons/images/addon_wpgallery.jpg\";s:7:\"img_md5\";s:32:\"74392a04b741d83c51e55059dbb388ef\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"GA\";}s:6:\"banner\";s:0:\"\";s:11:\"banner_file\";s:0:\"\";s:10:\"banner_md5\";s:0:\"\";s:4:\"tags\";a:0:{}}s:22:\"revslider-backup-addon\";O:8:\"stdClass\":22:{s:2:\"id\";s:2:\"53\";s:9:\"releaseid\";s:1:\"3\";s:4:\"slug\";s:22:\"revslider-backup-addon\";s:12:\"version_from\";s:5:\"5.2.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Backup\";s:6:\"line_1\";s:12:\"Make Backups\";s:6:\"line_2\";s:25:\"Revisions for your safety\";s:9:\"available\";s:5:\"2.0.5\";s:10:\"background\";s:0:\"\";s:15:\"background_file\";s:0:\"\";s:14:\"background_md5\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:4:\"sort\";s:3:\"500\";s:11:\"last_update\";s:10:\"2024-11-20\";s:6:\"global\";b:1;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":5:{s:3:\"img\";s:73:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_backup.jpg\";s:8:\"img_file\";s:40:\"revslider/addons/images/addon_backup.jpg\";s:7:\"img_md5\";s:32:\"104797323a0293cd3f200b0172db1186\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"BU\";}s:6:\"banner\";s:0:\"\";s:11:\"banner_file\";s:0:\"\";s:10:\"banner_md5\";s:0:\"\";s:4:\"tags\";a:0:{}}s:19:\"revslider-404-addon\";O:8:\"stdClass\":22:{s:2:\"id\";s:2:\"62\";s:9:\"releaseid\";s:1:\"8\";s:4:\"slug\";s:19:\"revslider-404-addon\";s:12:\"version_from\";s:3:\"5.3\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:3:\"404\";s:6:\"line_1\";s:39:\"Build custom 404 \"Page not Found\" Pages\";s:6:\"line_2\";s:28:\"with Slider Revolution swag!\";s:9:\"available\";s:5:\"2.0.2\";s:10:\"background\";s:0:\"\";s:15:\"background_file\";s:0:\"\";s:14:\"background_md5\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"620\";s:11:\"last_update\";s:10:\"2024-11-04\";s:6:\"global\";b:1;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":5:{s:3:\"img\";s:70:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_404.jpg\";s:8:\"img_file\";s:37:\"revslider/addons/images/addon_404.jpg\";s:7:\"img_md5\";s:32:\"217b0d118a107dc50979740dd61228df\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:3:\"404\";}s:6:\"banner\";s:0:\"\";s:11:\"banner_file\";s:0:\"\";s:10:\"banner_md5\";s:0:\"\";s:4:\"tags\";a:0:{}}s:30:\"revslider-prevnext-posts-addon\";O:8:\"stdClass\":22:{s:2:\"id\";s:2:\"63\";s:9:\"releaseid\";s:1:\"9\";s:4:\"slug\";s:30:\"revslider-prevnext-posts-addon\";s:12:\"version_from\";s:3:\"5.4\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:14:\"Adjacent Posts\";s:6:\"line_1\";s:30:\"Display previous and next post\";s:6:\"line_2\";s:28:\"to the currently showing one\";s:9:\"available\";s:5:\"2.0.3\";s:10:\"background\";s:0:\"\";s:15:\"background_file\";s:0:\"\";s:14:\"background_md5\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"630\";s:11:\"last_update\";s:10:\"2024-11-04\";s:6:\"global\";b:1;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":5:{s:3:\"img\";s:77:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_wpadjacent.jpg\";s:8:\"img_file\";s:44:\"revslider/addons/images/addon_wpadjacent.jpg\";s:7:\"img_md5\";s:32:\"cb1feb1257e55d0f42c29dfde2d809ed\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PN\";}s:6:\"banner\";s:0:\"\";s:11:\"banner_file\";s:0:\"\";s:10:\"banner_md5\";s:0:\"\";s:4:\"tags\";a:0:{}}s:21:\"revslider-login-addon\";O:8:\"stdClass\":22:{s:2:\"id\";s:3:\"375\";s:9:\"releaseid\";s:2:\"11\";s:4:\"slug\";s:21:\"revslider-login-addon\";s:12:\"version_from\";s:6:\"6.4.10\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:10:\"Login Page\";s:6:\"line_1\";s:25:\"Very simple WP Login Page\";s:6:\"line_2\";s:34:\"enhanced with your favorite slider\";s:9:\"available\";s:5:\"2.0.3\";s:10:\"background\";s:0:\"\";s:15:\"background_file\";s:0:\"\";s:14:\"background_md5\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"650\";s:11:\"last_update\";s:10:\"2021-04-30\";s:6:\"global\";b:1;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":5:{s:3:\"img\";s:72:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_login.jpg\";s:8:\"img_file\";s:39:\"revslider/addons/images/addon_login.jpg\";s:7:\"img_md5\";s:32:\"f0f2edffb4e155acf67799692428644d\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"LI\";}s:6:\"banner\";s:0:\"\";s:11:\"banner_file\";s:0:\"\";s:10:\"banner_md5\";s:0:\"\";s:4:\"tags\";a:0:{}}s:24:\"revslider-featured-addon\";O:8:\"stdClass\":22:{s:2:\"id\";s:3:\"379\";s:9:\"releaseid\";s:2:\"12\";s:4:\"slug\";s:24:\"revslider-featured-addon\";s:12:\"version_from\";s:6:\"6.4.11\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:20:\"Post Featured Slider\";s:6:\"line_1\";s:25:\"Display a featured Slider\";s:6:\"line_2\";s:41:\"instead of a featured Image in your Posts\";s:9:\"available\";s:5:\"2.0.5\";s:10:\"background\";s:0:\"\";s:15:\"background_file\";s:0:\"\";s:14:\"background_md5\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"660\";s:11:\"last_update\";s:10:\"2024-11-04\";s:6:\"global\";b:1;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":5:{s:3:\"img\";s:77:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_wpfeatured.jpg\";s:8:\"img_file\";s:44:\"revslider/addons/images/addon_wpfeatured.jpg\";s:7:\"img_md5\";s:32:\"bcc840e68194f3eb05795e1353954bda\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"FT\";}s:6:\"banner\";s:0:\"\";s:11:\"banner_file\";s:0:\"\";s:10:\"banner_md5\";s:0:\"\";s:4:\"tags\";a:0:{}}s:23:\"revslider-weather-addon\";O:8:\"stdClass\":22:{s:2:\"id\";s:3:\"373\";s:9:\"releaseid\";s:2:\"16\";s:4:\"slug\";s:23:\"revslider-weather-addon\";s:12:\"version_from\";s:5:\"6.4.8\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:7:\"Weather\";s:6:\"line_1\";s:21:\"Every where you go...\";s:6:\"line_2\";s:36:\"...always take the weather with you!\";s:9:\"available\";s:5:\"2.0.4\";s:10:\"background\";s:0:\"\";s:15:\"background_file\";s:0:\"\";s:14:\"background_md5\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"690\";s:11:\"last_update\";s:10:\"2021-04-16\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":5:{s:3:\"img\";s:74:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_weather.jpg\";s:8:\"img_file\";s:41:\"revslider/addons/images/addon_weather.jpg\";s:7:\"img_md5\";s:32:\"c69d1c9a69c2dec43ca0578ac35792bd\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"WT\";}s:6:\"banner\";s:0:\"\";s:11:\"banner_file\";s:0:\"\";s:10:\"banner_md5\";s:0:\"\";s:4:\"tags\";a:0:{}}s:30:\"revslider-duotonefilters-addon\";O:8:\"stdClass\":22:{s:2:\"id\";s:2:\"71\";s:9:\"releaseid\";s:2:\"18\";s:4:\"slug\";s:30:\"revslider-duotonefilters-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:7:\"Duotone\";s:6:\"line_1\";s:7:\"Duotone\";s:6:\"line_2\";s:25:\"Because one is not enough\";s:9:\"available\";s:5:\"2.0.0\";s:10:\"background\";s:0:\"\";s:15:\"background_file\";s:0:\"\";s:14:\"background_md5\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"710\";s:11:\"last_update\";s:10:\"2020-01-01\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":5:{s:3:\"img\";s:74:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_duotone.jpg\";s:8:\"img_file\";s:41:\"revslider/addons/images/addon_duotone.jpg\";s:7:\"img_md5\";s:32:\"fb666e487e7ac28e6a2a157eed1fb682\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:3:\"DTF\";}s:6:\"banner\";s:0:\"\";s:11:\"banner_file\";s:0:\"\";s:10:\"banner_md5\";s:0:\"\";s:4:\"tags\";a:0:{}}}','yes'),(217,'revslider-library-check','1745319215','yes'),(218,'revslider-library-hash','324e6ba47fb68dfb7f1bd5b0b203bdc5','yes'),(219,'rs-library','a:3:{s:4:\"hash\";s:32:\"324e6ba47fb68dfb7f1bd5b0b203bdc5\";s:7:\"objects\";a:417:{i:0;a:13:{s:2:\"id\";s:3:\"198\";s:6:\"handle\";s:16:\"object_dvd_1.png\";s:4:\"name\";s:3:\"DVD\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:43:17\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:14130;s:4:\"orig\";i:220294;}}i:1;a:13:{s:2:\"id\";s:3:\"188\";s:6:\"handle\";s:18:\"object_plant_1.png\";s:4:\"name\";s:7:\"Plant 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-12 16:25:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:27127;s:4:\"orig\";i:1192484;}}i:2;a:13:{s:2:\"id\";s:3:\"187\";s:6:\"handle\";s:16:\"object_pen_1.png\";s:4:\"name\";s:5:\"Pen 1\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-12 16:25:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:1745;s:4:\"orig\";i:36243;}}i:3;a:13:{s:2:\"id\";s:3:\"172\";s:6:\"handle\";s:16:\"object_egg_1.png\";s:4:\"name\";s:3:\"Egg\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:10511;s:4:\"orig\";i:102067;}}i:4;a:13:{s:2:\"id\";s:3:\"171\";s:6:\"handle\";s:19:\"object_guitar_1.png\";s:4:\"name\";s:6:\"Guitar\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:18581;s:4:\"orig\";i:776243;}}i:5;a:13:{s:2:\"id\";s:3:\"170\";s:6:\"handle\";s:21:\"object_envelope_1.png\";s:4:\"name\";s:15:\"Closed Envelope\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:4745;s:4:\"orig\";i:330658;}}i:6;a:13:{s:2:\"id\";s:3:\"169\";s:6:\"handle\";s:19:\"object_postit_2.png\";s:4:\"name\";s:18:\"Postit Label White\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:4461;s:4:\"orig\";i:109963;}}i:7;a:13:{s:2:\"id\";s:3:\"168\";s:6:\"handle\";s:21:\"object_envelope_2.png\";s:4:\"name\";s:13:\"Open Envelope\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:6790;s:4:\"orig\";i:407746;}}i:8;a:13:{s:2:\"id\";s:3:\"167\";s:6:\"handle\";s:17:\"object_eggs_1.png\";s:4:\"name\";s:10:\"Egg Carton\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:18710;s:4:\"orig\";i:985569;}}i:9;a:13:{s:2:\"id\";s:3:\"166\";s:6:\"handle\";s:25:\"object_bottleopener_1.png\";s:4:\"name\";s:13:\"Bottle Opener\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:6113;s:4:\"orig\";i:75865;}}i:10;a:13:{s:2:\"id\";s:3:\"165\";s:6:\"handle\";s:23:\"object_blueprints_1.png\";s:4:\"name\";s:10:\"Blueprints\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:8145;s:4:\"orig\";i:400329;}}i:11;a:13:{s:2:\"id\";s:3:\"164\";s:6:\"handle\";s:22:\"object_holepunch_1.png\";s:4:\"name\";s:10:\"Hole punch\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:5251;s:4:\"orig\";i:358141;}}i:12;a:13:{s:2:\"id\";s:3:\"163\";s:6:\"handle\";s:20:\"object_speaker_1.png\";s:4:\"name\";s:13:\"Black Speaker\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:127536;s:4:\"orig\";i:838279;}}i:13;a:13:{s:2:\"id\";s:3:\"162\";s:6:\"handle\";s:19:\"object_eraser_1.png\";s:4:\"name\";s:6:\"Eraser\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:4081;s:4:\"orig\";i:22391;}}i:14;a:13:{s:2:\"id\";s:3:\"161\";s:6:\"handle\";s:23:\"object_vinylcover_1.png\";s:4:\"name\";s:11:\"Vinyl Cover\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:9331;s:4:\"orig\";i:516465;}}i:15;a:13:{s:2:\"id\";s:3:\"160\";s:6:\"handle\";s:20:\"object_booklet_1.png\";s:4:\"name\";s:9:\"Booklet 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:7834;s:4:\"orig\";i:463818;}}i:16;a:13:{s:2:\"id\";s:3:\"159\";s:6:\"handle\";s:22:\"object_earphones_2.png\";s:4:\"name\";s:11:\"Earphones 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:6359;s:4:\"orig\";i:102578;}}i:17;a:13:{s:2:\"id\";s:3:\"158\";s:6:\"handle\";s:18:\"object_vinyl_1.png\";s:4:\"name\";s:5:\"Vinyl\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:22078;s:4:\"orig\";i:1107904;}}i:18;a:13:{s:2:\"id\";s:3:\"157\";s:6:\"handle\";s:19:\"object_postit_1.png\";s:4:\"name\";s:17:\"Postit Label Pink\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:15660;s:4:\"orig\";i:355784;}}i:19;a:13:{s:2:\"id\";s:3:\"156\";s:6:\"handle\";s:23:\"object_mechpencil_1.png\";s:4:\"name\";s:17:\"Mechanical Pencil\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:5586;s:4:\"orig\";i:106514;}}i:20;a:13:{s:2:\"id\";s:3:\"155\";s:6:\"handle\";s:22:\"object_turntable_1.png\";s:4:\"name\";s:9:\"Turntable\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:20909;s:4:\"orig\";i:988589;}}i:21;a:13:{s:2:\"id\";s:3:\"154\";s:6:\"handle\";s:19:\"object_folder_2.png\";s:4:\"name\";s:19:\"Closed Folder Black\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:6807;s:4:\"orig\";i:604409;}}i:22;a:13:{s:2:\"id\";s:3:\"153\";s:6:\"handle\";s:19:\"object_postit_4.png\";s:4:\"name\";s:18:\"Postit Label Green\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:10484;s:4:\"orig\";i:229243;}}i:23;a:13:{s:2:\"id\";s:3:\"152\";s:6:\"handle\";s:19:\"object_folder_1.png\";s:4:\"name\";s:12:\"Blank Folder\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:6034;s:4:\"orig\";i:516575;}}i:24;a:13:{s:2:\"id\";s:3:\"151\";s:6:\"handle\";s:19:\"object_pencup_1.png\";s:4:\"name\";s:7:\"Pen Cup\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:30999;s:4:\"orig\";i:627862;}}i:25;a:13:{s:2:\"id\";s:3:\"150\";s:6:\"handle\";s:23:\"object_winebottle_1.png\";s:4:\"name\";s:15:\"Red Wine Bottle\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:11735;s:4:\"orig\";i:658948;}}i:26;a:13:{s:2:\"id\";s:3:\"149\";s:6:\"handle\";s:23:\"object_headphones_1.png\";s:4:\"name\";s:10:\"Headphones\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:16432;s:4:\"orig\";i:531684;}}i:27;a:13:{s:2:\"id\";s:3:\"148\";s:6:\"handle\";s:22:\"object_earphones_1.png\";s:4:\"name\";s:9:\"Earphones\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:15860;s:4:\"orig\";i:212685;}}i:28;a:13:{s:2:\"id\";s:3:\"147\";s:6:\"handle\";s:19:\"object_postit_3.png\";s:4:\"name\";s:19:\"Postit Label Yellow\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:12774;s:4:\"orig\";i:290128;}}i:29;a:13:{s:2:\"id\";s:3:\"146\";s:6:\"handle\";s:22:\"object_corkscrew_1.png\";s:4:\"name\";s:23:\"Corkscrew Bottle Opener\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1300\";s:6:\"height\";s:4:\"1300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:8558;s:4:\"orig\";i:264887;}}i:30;a:13:{s:2:\"id\";s:3:\"145\";s:6:\"handle\";s:19:\"object_muffin_1.png\";s:4:\"name\";s:16:\"Chocolate Muffin\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:23349;s:4:\"orig\";i:324946;}}i:31;a:13:{s:2:\"id\";s:3:\"144\";s:6:\"handle\";s:18:\"object_chair_2.png\";s:4:\"name\";s:12:\"Yellow Chair\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:18439;s:4:\"orig\";i:583276;}}i:32;a:13:{s:2:\"id\";s:3:\"143\";s:6:\"handle\";s:18:\"object_knife_2.png\";s:4:\"name\";s:7:\"Knife 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:8475;s:4:\"orig\";i:241613;}}i:33;a:13:{s:2:\"id\";s:3:\"142\";s:6:\"handle\";s:26:\"object_choppingboard_2.png\";s:4:\"name\";s:16:\"Chopping Board 3\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:12227;s:4:\"orig\";i:465092;}}i:34;a:13:{s:2:\"id\";s:3:\"141\";s:6:\"handle\";s:26:\"object_choppingboard_3.png\";s:4:\"name\";s:16:\"Chopping Board 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:23476;s:4:\"orig\";i:838985;}}i:35;a:13:{s:2:\"id\";s:3:\"140\";s:6:\"handle\";s:19:\"object_coffee_2.png\";s:4:\"name\";s:12:\"Coffee Cup 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:4:\"1200\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:128594;s:4:\"orig\";i:323284;}}i:36;a:13:{s:2:\"id\";s:3:\"139\";s:6:\"handle\";s:18:\"object_bread_1.png\";s:4:\"name\";s:15:\"Croissant Bread\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:15763;s:4:\"orig\";i:606028;}}i:37;a:13:{s:2:\"id\";s:3:\"138\";s:6:\"handle\";s:18:\"object_spoon_2.png\";s:4:\"name\";s:12:\"Wodden Spoon\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:8743;s:4:\"orig\";i:230696;}}i:38;a:13:{s:2:\"id\";s:3:\"137\";s:6:\"handle\";s:26:\"object_choppingboard_1.png\";s:4:\"name\";s:16:\"Chopping Board 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:18213;s:4:\"orig\";i:963650;}}i:39;a:13:{s:2:\"id\";s:3:\"136\";s:6:\"handle\";s:16:\"object_cup_2.png\";s:4:\"name\";s:11:\"Empty Cup 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:9109;s:4:\"orig\";i:190560;}}i:40;a:13:{s:2:\"id\";s:3:\"135\";s:6:\"handle\";s:18:\"object_knife_1.png\";s:4:\"name\";s:5:\"Knife\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:7469;s:4:\"orig\";i:161910;}}i:41;a:13:{s:2:\"id\";s:3:\"134\";s:6:\"handle\";s:18:\"object_spoon_1.png\";s:4:\"name\";s:5:\"Spoon\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:8883;s:4:\"orig\";i:223813;}}i:42;a:13:{s:2:\"id\";s:3:\"133\";s:6:\"handle\";s:16:\"object_cup_1.png\";s:4:\"name\";s:9:\"Empty Cup\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:13021;s:4:\"orig\";i:334845;}}i:43;a:13:{s:2:\"id\";s:3:\"132\";s:6:\"handle\";s:18:\"object_chair_3.png\";s:4:\"name\";s:11:\"White Chair\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:20718;s:4:\"orig\";i:626836;}}i:44;a:13:{s:2:\"id\";s:3:\"131\";s:6:\"handle\";s:19:\"object_coffee_1.png\";s:4:\"name\";s:10:\"Coffee Cup\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:135139;s:4:\"orig\";i:761240;}}i:45;a:13:{s:2:\"id\";s:3:\"130\";s:6:\"handle\";s:19:\"object_frypan_2.png\";s:4:\"name\";s:9:\"Fry Pan 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:13099;s:4:\"orig\";i:337348;}}i:46;a:13:{s:2:\"id\";s:3:\"129\";s:6:\"handle\";s:19:\"object_frypan_1.png\";s:4:\"name\";s:9:\"Fry Pan 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:13096;s:4:\"orig\";i:413010;}}i:47;a:13:{s:2:\"id\";s:3:\"128\";s:6:\"handle\";s:17:\"object_fork_1.png\";s:4:\"name\";s:4:\"Fork\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:8043;s:4:\"orig\";i:146037;}}i:48;a:13:{s:2:\"id\";s:3:\"127\";s:6:\"handle\";s:20:\"object_dishrag_1.png\";s:4:\"name\";s:13:\"Dishrag Cloth\";s:4:\"tags\";a:0:{}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:37011;s:4:\"orig\";i:2569343;}}i:49;a:13:{s:2:\"id\";s:3:\"126\";s:6:\"handle\";s:20:\"object_wacom_pen.png\";s:4:\"name\";s:17:\"Wacom Drawing Pen\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:2;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1060\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:118650;s:4:\"orig\";i:83713;}}i:50;a:13:{s:2:\"id\";s:3:\"125\";s:6:\"handle\";s:21:\"object_occulus_vr.png\";s:4:\"name\";s:23:\"Occulus Virtual Reality\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:16941;s:4:\"orig\";i:419726;}}i:51;a:13:{s:2:\"id\";s:3:\"124\";s:6:\"handle\";s:18:\"object_antenna.png\";s:4:\"name\";s:13:\"Antenna Radar\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:23620;s:4:\"orig\";i:734047;}}i:52;a:13:{s:2:\"id\";s:3:\"123\";s:6:\"handle\";s:21:\"object_solarpanel.png\";s:4:\"name\";s:11:\"Solar Panel\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:21088;s:4:\"orig\";i:683735;}}i:53;a:13:{s:2:\"id\";s:3:\"122\";s:6:\"handle\";s:16:\"object_wacom.png\";s:4:\"name\";s:20:\"Wacom Drawing Tablet\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:2;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:121307;s:4:\"orig\";i:454357;}}i:54;a:13:{s:2:\"id\";s:3:\"121\";s:6:\"handle\";s:18:\"object_earth_2.png\";s:4:\"name\";s:20:\"Earth Globe Planet 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:39586;s:4:\"orig\";i:1296460;}}i:55;a:13:{s:2:\"id\";s:3:\"120\";s:6:\"handle\";s:18:\"object_chair_1.png\";s:4:\"name\";s:12:\"Office Chair\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:21396;s:4:\"orig\";i:835061;}}i:56;a:13:{s:2:\"id\";s:3:\"119\";s:6:\"handle\";s:24:\"object_windturbine_2.png\";s:4:\"name\";s:14:\"Wind Turbine 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:9545;s:4:\"orig\";i:197811;}}i:57;a:13:{s:2:\"id\";s:3:\"118\";s:6:\"handle\";s:22:\"object_windturbine.png\";s:4:\"name\";s:12:\"Wind Turbine\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:12033;s:4:\"orig\";i:168991;}}i:58;a:13:{s:2:\"id\";s:3:\"117\";s:6:\"handle\";s:16:\"object_earth.png\";s:4:\"name\";s:18:\"Earth Globe Planet\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:39587;s:4:\"orig\";i:1318549;}}i:59;a:13:{s:2:\"id\";s:2:\"88\";s:6:\"handle\";s:24:\"object_eiffeltower_2.png\";s:4:\"name\";s:13:\"Eiffeltower 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"700\";s:6:\"height\";s:3:\"700\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:137321;s:4:\"orig\";i:211275;}}i:60;a:13:{s:2:\"id\";s:2:\"87\";s:6:\"handle\";s:21:\"object_notebook_1.png\";s:4:\"name\";s:11:\"Notebook PC\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:14164;s:4:\"orig\";i:731428;}}i:61;a:13:{s:2:\"id\";s:2:\"86\";s:6:\"handle\";s:20:\"object_macbook_1.png\";s:4:\"name\";s:20:\"Apple Macbook Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:130362;s:4:\"orig\";i:908876;}}i:62;a:13:{s:2:\"id\";s:2:\"85\";s:6:\"handle\";s:18:\"object_canon_2.png\";s:4:\"name\";s:21:\"Canon Camera DSLR Top\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:132862;s:4:\"orig\";i:925492;}}i:63;a:13:{s:2:\"id\";s:2:\"84\";s:6:\"handle\";s:19:\"object_iphone_3.png\";s:4:\"name\";s:25:\"Apple iPhone Silver White\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:119015;s:4:\"orig\";i:133010;}}i:64;a:13:{s:2:\"id\";s:2:\"83\";s:6:\"handle\";s:18:\"object_candy_2.png\";s:4:\"name\";s:15:\"Candy Colored 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:28476;s:4:\"orig\";i:203448;}}i:65;a:13:{s:2:\"id\";s:2:\"82\";s:6:\"handle\";s:21:\"object_macmouse_1.png\";s:4:\"name\";s:15:\"Apple Mac Mouse\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:120592;s:4:\"orig\";i:133753;}}i:66;a:13:{s:2:\"id\";s:2:\"81\";s:6:\"handle\";s:19:\"object_iphone_1.png\";s:4:\"name\";s:18:\"Apple iPhone Black\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:119554;s:4:\"orig\";i:160622;}}i:67;a:13:{s:2:\"id\";s:2:\"80\";s:6:\"handle\";s:17:\"object_deco_1.png\";s:4:\"name\";s:17:\"White Deco Object\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:14058;s:4:\"orig\";i:98209;}}i:68;a:13:{s:2:\"id\";s:2:\"79\";s:6:\"handle\";s:23:\"object_applewatch_1.png\";s:4:\"name\";s:24:\"Apple Watch White Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:126007;s:4:\"orig\";i:137953;}}i:69;a:13:{s:2:\"id\";s:2:\"78\";s:6:\"handle\";s:23:\"object_swissknife_1.png\";s:4:\"name\";s:11:\"Swiss Knife\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:124418;s:4:\"orig\";i:108064;}}i:70;a:13:{s:2:\"id\";s:2:\"77\";s:6:\"handle\";s:23:\"object_applewatch_2.png\";s:4:\"name\";s:17:\"Apple Watch Black\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:125639;s:4:\"orig\";i:131820;}}i:71;a:13:{s:2:\"id\";s:2:\"76\";s:6:\"handle\";s:18:\"object_candy_1.png\";s:4:\"name\";s:13:\"Candy Colored\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:11948;s:4:\"orig\";i:74707;}}i:72;a:13:{s:2:\"id\";s:2:\"75\";s:6:\"handle\";s:17:\"object_ipad_1.png\";s:4:\"name\";s:16:\"Apple iPad Black\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:115633;s:4:\"orig\";i:176188;}}i:73;a:13:{s:2:\"id\";s:2:\"74\";s:6:\"handle\";s:17:\"object_lamp_2.png\";s:4:\"name\";s:15:\"Black Desk Lamp\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:121535;s:4:\"orig\";i:315586;}}i:74;a:13:{s:2:\"id\";s:2:\"73\";s:6:\"handle\";s:18:\"object_canon_1.png\";s:4:\"name\";s:17:\"Canon Camera DLSR\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:133693;s:4:\"orig\";i:907152;}}i:75;a:13:{s:2:\"id\";s:2:\"72\";s:6:\"handle\";s:23:\"object_blackberry_2.png\";s:4:\"name\";s:12:\"Blackberry 3\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:11689;s:4:\"orig\";i:183976;}}i:76;a:13:{s:2:\"id\";s:2:\"71\";s:6:\"handle\";s:19:\"object_iphone_2.png\";s:4:\"name\";s:19:\"Apple iPhone Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:119147;s:4:\"orig\";i:164255;}}i:77;a:13:{s:2:\"id\";s:2:\"70\";s:6:\"handle\";s:17:\"object_ipad_2.png\";s:4:\"name\";s:15:\"Apple iPad Gold\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:9499;s:4:\"orig\";i:358634;}}i:78;a:13:{s:2:\"id\";s:2:\"69\";s:6:\"handle\";s:20:\"object_printer_1.png\";s:4:\"name\";s:7:\"Printer\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:14203;s:4:\"orig\";i:523017;}}i:79;a:13:{s:2:\"id\";s:2:\"68\";s:6:\"handle\";s:20:\"object_pcmouse_1.png\";s:4:\"name\";s:14:\"Black PC Mouse\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:10702;s:4:\"orig\";i:121030;}}i:80;a:13:{s:2:\"id\";s:2:\"67\";s:6:\"handle\";s:17:\"object_ipad_3.png\";s:4:\"name\";s:17:\"Apple iPad Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:9002;s:4:\"orig\";i:338072;}}i:81;a:13:{s:2:\"id\";s:2:\"66\";s:6:\"handle\";s:17:\"object_lamp_1.png\";s:4:\"name\";s:13:\"Desk Lamp Top\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:121622;s:4:\"orig\";i:211345;}}i:82;a:13:{s:2:\"id\";s:2:\"65\";s:6:\"handle\";s:22:\"object_macscreen_1.png\";s:4:\"name\";s:16:\"Apple Mac Screen\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:122962;s:4:\"orig\";i:353407;}}i:83;a:13:{s:2:\"id\";s:2:\"64\";s:6:\"handle\";s:23:\"object_blackberry_3.png\";s:4:\"name\";s:12:\"Blackberry 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:7170;s:4:\"orig\";i:118827;}}i:84;a:13:{s:2:\"id\";s:2:\"63\";s:6:\"handle\";s:23:\"object_applewatch_3.png\";s:4:\"name\";s:16:\"Apple Watch Gold\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:125910;s:4:\"orig\";i:126452;}}i:85;a:13:{s:2:\"id\";s:2:\"62\";s:6:\"handle\";s:23:\"object_blackberry_1.png\";s:4:\"name\";s:10:\"Blackberry\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:12207;s:4:\"orig\";i:177730;}}i:86;a:13:{s:2:\"id\";s:2:\"49\";s:6:\"handle\";s:19:\"object_bottle_1.png\";s:4:\"name\";s:18:\"Brown Glass Bottle\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:13663;s:4:\"orig\";i:833006;}}i:87;a:13:{s:2:\"id\";s:2:\"48\";s:6:\"handle\";s:20:\"object_glasses_1.png\";s:4:\"name\";s:19:\"Hipster Glasses Top\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:9899;s:4:\"orig\";i:247486;}}i:88;a:13:{s:2:\"id\";s:2:\"47\";s:6:\"handle\";s:21:\"object_magazine_1.png\";s:4:\"name\";s:14:\"Blank Magazine\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:7169;s:4:\"orig\";i:522980;}}i:89;a:13:{s:2:\"id\";s:2:\"46\";s:6:\"handle\";s:28:\"object_leatherdocument_2.png\";s:4:\"name\";s:24:\"Black Leather Document 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:12411;s:4:\"orig\";i:1051815;}}i:90;a:13:{s:2:\"id\";s:2:\"45\";s:6:\"handle\";s:18:\"object_purse_2.png\";s:4:\"name\";s:13:\"Black Purse 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:14974;s:4:\"orig\";i:1082610;}}i:91;a:13:{s:2:\"id\";s:2:\"44\";s:6:\"handle\";s:23:\"object_typewriter_1.png\";s:4:\"name\";s:18:\"Retro Typewriter 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:26819;s:4:\"orig\";i:1283468;}}i:92;a:13:{s:2:\"id\";s:2:\"43\";s:6:\"handle\";s:17:\"object_book_5.png\";s:4:\"name\";s:9:\"Old Books\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:22713;s:4:\"orig\";i:1335327;}}i:93;a:13:{s:2:\"id\";s:2:\"42\";s:6:\"handle\";s:28:\"object_leatherdocument_1.png\";s:4:\"name\";s:29:\"Black Leather Document Closed\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:5513;s:4:\"orig\";i:477513;}}i:94;a:13:{s:2:\"id\";s:2:\"41\";s:6:\"handle\";s:17:\"object_book_4.png\";s:4:\"name\";s:8:\"Old Book\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:24077;s:4:\"orig\";i:1392352;}}i:95;a:13:{s:2:\"id\";s:2:\"40\";s:6:\"handle\";s:19:\"object_wallet_2.png\";s:4:\"name\";s:22:\"Black Leather Document\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:11502;s:4:\"orig\";i:779077;}}i:96;a:13:{s:2:\"id\";s:2:\"39\";s:6:\"handle\";s:18:\"object_quill_2.png\";s:4:\"name\";s:15:\"Quill Feather 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:7975;s:4:\"orig\";i:323107;}}i:97;a:13:{s:2:\"id\";s:2:\"38\";s:6:\"handle\";s:24:\"object_eiffeltower_1.png\";s:4:\"name\";s:11:\"Eiffeltower\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:129564;s:4:\"orig\";i:432451;}}i:98;a:13:{s:2:\"id\";s:2:\"37\";s:6:\"handle\";s:21:\"object_magazine_2.png\";s:4:\"name\";s:11:\"Open Book 3\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1333\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:6743;s:4:\"orig\";i:479348;}}i:99;a:13:{s:2:\"id\";s:2:\"36\";s:6:\"handle\";s:17:\"object_book_1.png\";s:4:\"name\";s:10:\"Blank Book\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:3910;s:4:\"orig\";i:246373;}}i:100;a:13:{s:2:\"id\";s:2:\"35\";s:6:\"handle\";s:20:\"object_glasses_2.png\";s:4:\"name\";s:15:\"Hipster Glasses\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:9677;s:4:\"orig\";i:154608;}}i:101;a:13:{s:2:\"id\";s:2:\"34\";s:6:\"handle\";s:17:\"object_book_2.png\";s:4:\"name\";s:11:\"Open Book 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:5998;s:4:\"orig\";i:447839;}}i:102;a:13:{s:2:\"id\";s:2:\"33\";s:6:\"handle\";s:19:\"object_gloves_1.png\";s:4:\"name\";s:12:\"Black Gloves\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:10117;s:4:\"orig\";i:559800;}}i:103;a:13:{s:2:\"id\";s:2:\"32\";s:6:\"handle\";s:23:\"object_typewriter_2.png\";s:4:\"name\";s:16:\"Retro Typewriter\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:24853;s:4:\"orig\";i:1214851;}}i:104;a:13:{s:2:\"id\";s:2:\"31\";s:6:\"handle\";s:17:\"object_book_3.png\";s:4:\"name\";s:9:\"Open Book\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:18163;s:4:\"orig\";i:1098732;}}i:105;a:13:{s:2:\"id\";s:2:\"30\";s:6:\"handle\";s:19:\"object_wallet_1.png\";s:4:\"name\";s:12:\"Black Wallet\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:5457;s:4:\"orig\";i:320148;}}i:106;a:13:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:18:\"object_purse_1.png\";s:4:\"name\";s:11:\"Black Purse\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:13313;s:4:\"orig\";i:828871;}}i:107;a:13:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:18:\"object_quill_1.png\";s:4:\"name\";s:13:\"Quill Feather\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:5901;s:4:\"orig\";i:268842;}}i:108;a:13:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:19:\"object_artbox_2.png\";s:4:\"name\";s:16:\"Art Box Colors 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:37178;s:4:\"orig\";i:1972817;}}i:109;a:13:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:18:\"object_cloth_1.png\";s:4:\"name\";s:17:\"Cloth Paint Color\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:26589;s:4:\"orig\";i:851135;}}i:110;a:13:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:21:\"object_brushpot_1.png\";s:4:\"name\";s:9:\"Brush Pot\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"984\";s:6:\"height\";s:3:\"984\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:13334;s:4:\"orig\";i:225651;}}i:111;a:13:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:24:\"object_paintbucket_1.png\";s:4:\"name\";s:12:\"Paint Bucket\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:17640;s:4:\"orig\";i:719125;}}i:112;a:13:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:23:\"object_paintbrush_2.png\";s:4:\"name\";s:12:\"Paintbrush 3\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"700\";s:6:\"height\";s:3:\"700\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:8897;s:4:\"orig\";i:83416;}}i:113;a:13:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:19:\"object_artbox_1.png\";s:4:\"name\";s:14:\"Art Box Colors\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:29174;s:4:\"orig\";i:1663503;}}i:114;a:13:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:23:\"object_paintbrush_3.png\";s:4:\"name\";s:12:\"Paintbrush 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1100\";s:6:\"height\";s:4:\"1100\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:3668;s:4:\"orig\";i:69153;}}i:115;a:13:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:23:\"object_paintbrush_1.png\";s:4:\"name\";s:12:\"Paintbrush 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:3179;s:4:\"orig\";i:45340;}}i:116;a:13:{s:2:\"id\";s:2:\"11\";s:6:\"handle\";s:21:\"table_radio_right.png\";s:4:\"name\";s:18:\"Radio Speaker Wood\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:21907;s:4:\"orig\";i:937495;}}i:117;a:13:{s:2:\"id\";s:2:\"10\";s:6:\"handle\";s:18:\"keyboard_apple.png\";s:4:\"name\";s:14:\"Apple Keyboard\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:124560;s:4:\"orig\";i:575796;}}i:118;a:13:{s:2:\"id\";s:1:\"9\";s:6:\"handle\";s:20:\"macbook_top_gold.png\";s:4:\"name\";s:18:\"Apple Macbook Gold\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:20553;s:4:\"orig\";i:734042;}}i:119;a:13:{s:2:\"id\";s:1:\"8\";s:6:\"handle\";s:21:\"nexus6_front_blue.png\";s:4:\"name\";s:19:\"Google Nexus 6 Blue\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1100\";s:6:\"height\";s:4:\"1100\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:9048;s:4:\"orig\";i:129827;}}i:120;a:13:{s:2:\"id\";s:3:\"479\";s:6:\"handle\";s:31:\"Tram-beside-waiting-station.jpg\";s:4:\"name\";s:27:\"Tram beside waiting station\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1450\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:52:06\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:19226;s:4:\"orig\";i:758093;}}i:121;a:13:{s:2:\"id\";s:3:\"478\";s:6:\"handle\";s:14:\"Pulling-up.jpg\";s:4:\"name\";s:10:\"Pulling up\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1297\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:41:20\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:12387;s:4:\"orig\";i:472820;}}i:122;a:13:{s:2:\"id\";s:3:\"477\";s:6:\"handle\";s:16:\"Snowboarding.jpg\";s:4:\"name\";s:12:\"Snowboarding\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1290\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:41:20\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:10972;s:4:\"orig\";i:380716;}}i:123;a:13:{s:2:\"id\";s:3:\"476\";s:6:\"handle\";s:16:\"Morning-yoga.jpg\";s:4:\"name\";s:12:\"Morning yoga\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1346\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:12394;s:4:\"orig\";i:959761;}}i:124;a:13:{s:2:\"id\";s:3:\"475\";s:6:\"handle\";s:8:\"Yoga.jpg\";s:4:\"name\";s:4:\"Yoga\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1079\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:11474;s:4:\"orig\";i:284282;}}i:125;a:13:{s:2:\"id\";s:3:\"474\";s:6:\"handle\";s:14:\"Golf-balls.jpg\";s:4:\"name\";s:10:\"Golf balls\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:13395;s:4:\"orig\";i:519568;}}i:126;a:13:{s:2:\"id\";s:3:\"473\";s:6:\"handle\";s:19:\"Confident-Boxer.jpg\";s:4:\"name\";s:15:\"Confident Boxer\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:15367;s:4:\"orig\";i:364626;}}i:127;a:13:{s:2:\"id\";s:3:\"472\";s:6:\"handle\";s:11:\"Aerobic.jpg\";s:4:\"name\";s:7:\"Aerobic\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:16174;s:4:\"orig\";i:265728;}}i:128;a:13:{s:2:\"id\";s:3:\"471\";s:6:\"handle\";s:18:\"Riding-bicycle.jpg\";s:4:\"name\";s:14:\"Riding bicycle\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1358\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:7677;s:4:\"orig\";i:256526;}}i:129;a:13:{s:2:\"id\";s:3:\"470\";s:6:\"handle\";s:27:\"woman-with-barbell-back.jpg\";s:4:\"name\";s:23:\"woman with barbell back\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:12408;s:4:\"orig\";i:354771;}}i:130;a:13:{s:2:\"id\";s:3:\"469\";s:6:\"handle\";s:24:\"Woman-lying-on-floor.jpg\";s:4:\"name\";s:20:\"Woman lying on floor\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1318\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:17621;s:4:\"orig\";i:673109;}}i:131;a:13:{s:2:\"id\";s:3:\"468\";s:6:\"handle\";s:27:\"Holding-black-dumbbells.jpg\";s:4:\"name\";s:23:\"Holding black dumbbells\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1275\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:9464;s:4:\"orig\";i:180683;}}i:132;a:13:{s:2:\"id\";s:3:\"467\";s:6:\"handle\";s:25:\"Woman-using-dumbbells.jpg\";s:4:\"name\";s:21:\"Woman using dumbbells\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1425\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:16190;s:4:\"orig\";i:381967;}}i:133;a:13:{s:2:\"id\";s:3:\"466\";s:6:\"handle\";s:16:\"Soccer-cleat.jpg\";s:4:\"name\";s:12:\"Soccer cleat\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:26583;s:4:\"orig\";i:792941;}}i:134;a:13:{s:2:\"id\";s:3:\"465\";s:6:\"handle\";s:16:\"Soccer-field.jpg\";s:4:\"name\";s:12:\"Soccer field\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:17464;s:4:\"orig\";i:394604;}}i:135;a:13:{s:2:\"id\";s:3:\"464\";s:6:\"handle\";s:23:\"Man-tying-his-shoes.jpg\";s:4:\"name\";s:19:\"Man tying his shoes\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1200\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:19126;s:4:\"orig\";i:403268;}}i:136;a:13:{s:2:\"id\";s:3:\"463\";s:6:\"handle\";s:10:\"Boxing.jpg\";s:4:\"name\";s:6:\"Boxing\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:16597;s:4:\"orig\";i:552042;}}i:137;a:13:{s:2:\"id\";s:3:\"462\";s:6:\"handle\";s:22:\"woman-with-barbell.jpg\";s:4:\"name\";s:18:\"woman with barbell\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:16027;s:4:\"orig\";i:430912;}}i:138;a:13:{s:2:\"id\";s:3:\"461\";s:6:\"handle\";s:12:\"Crossfit.jpg\";s:4:\"name\";s:8:\"Crossfit\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:15961;s:4:\"orig\";i:706482;}}i:139;a:13:{s:2:\"id\";s:3:\"460\";s:6:\"handle\";s:25:\"Man-and-woman-jogging.jpg\";s:4:\"name\";s:21:\"Man and woman jogging\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:20286;s:4:\"orig\";i:704324;}}i:140;a:13:{s:2:\"id\";s:3:\"459\";s:6:\"handle\";s:16:\"Playing-golf.jpg\";s:4:\"name\";s:12:\"Playing golf\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:10077;s:4:\"orig\";i:197347;}}i:141;a:13:{s:2:\"id\";s:3:\"458\";s:6:\"handle\";s:18:\"Surfer-in-wave.jpg\";s:4:\"name\";s:14:\"Surfer in wave\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:14092;s:4:\"orig\";i:517927;}}i:142;a:13:{s:2:\"id\";s:3:\"457\";s:6:\"handle\";s:25:\"Woman-lifting-barbell.jpg\";s:4:\"name\";s:21:\"Woman lifting barbell\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:18629;s:4:\"orig\";i:620706;}}i:143;a:13:{s:2:\"id\";s:3:\"456\";s:6:\"handle\";s:14:\"Stretching.jpg\";s:4:\"name\";s:10:\"Stretching\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:10220;s:4:\"orig\";i:348322;}}i:144;a:13:{s:2:\"id\";s:3:\"455\";s:6:\"handle\";s:18:\"Snowboarding-2.jpg\";s:4:\"name\";s:14:\"Snowboarding 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:6348;s:4:\"orig\";i:211494;}}i:145;a:13:{s:2:\"id\";s:3:\"454\";s:6:\"handle\";s:11:\"Balance.jpg\";s:4:\"name\";s:7:\"Balance\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1920\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:9826;s:4:\"orig\";i:377551;}}i:146;a:13:{s:2:\"id\";s:3:\"453\";s:6:\"handle\";s:19:\"Pool-meditation.jpg\";s:4:\"name\";s:15:\"Pool meditation\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:13862;s:4:\"orig\";i:454028;}}i:147;a:13:{s:2:\"id\";s:3:\"452\";s:6:\"handle\";s:18:\"Soccer-stadium.jpg\";s:4:\"name\";s:14:\"Soccer stadium\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:18636;s:4:\"orig\";i:785357;}}i:148;a:13:{s:2:\"id\";s:3:\"451\";s:6:\"handle\";s:25:\"Soccer-field-top-view.jpg\";s:4:\"name\";s:21:\"Soccer field top view\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:17409;s:4:\"orig\";i:996686;}}i:149;a:13:{s:2:\"id\";s:3:\"450\";s:6:\"handle\";s:14:\"Basketball.jpg\";s:4:\"name\";s:10:\"Basketball\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:12053;s:4:\"orig\";i:916937;}}i:150;a:13:{s:2:\"id\";s:3:\"449\";s:6:\"handle\";s:14:\"in-the-fog.jpg\";s:4:\"name\";s:10:\"in the fog\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:3887;s:4:\"orig\";i:154603;}}i:151;a:13:{s:2:\"id\";s:3:\"448\";s:6:\"handle\";s:13:\"Handstand.jpg\";s:4:\"name\";s:9:\"Handstand\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1079\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:16305;s:4:\"orig\";i:483681;}}i:152;a:13:{s:2:\"id\";s:3:\"447\";s:6:\"handle\";s:11:\"Friends.jpg\";s:4:\"name\";s:7:\"Friends\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:12105;s:4:\"orig\";i:314746;}}i:153;a:13:{s:2:\"id\";s:3:\"446\";s:6:\"handle\";s:28:\"Sneakers-on-the-railroad.jpg\";s:4:\"name\";s:24:\"Sneakers on the railroad\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:18137;s:4:\"orig\";i:371805;}}i:154;a:13:{s:2:\"id\";s:3:\"445\";s:6:\"handle\";s:23:\"Family-on-the-ocean.jpg\";s:4:\"name\";s:19:\"Family on the ocean\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:11586;s:4:\"orig\";i:354781;}}i:155;a:13:{s:2:\"id\";s:3:\"444\";s:6:\"handle\";s:10:\"Sunset.jpg\";s:4:\"name\";s:6:\"Sunset\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:9848;s:4:\"orig\";i:195359;}}i:156;a:13:{s:2:\"id\";s:3:\"443\";s:6:\"handle\";s:9:\"Books.jpg\";s:4:\"name\";s:5:\"Books\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1275\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:10089;s:4:\"orig\";i:218538;}}i:157;a:13:{s:2:\"id\";s:3:\"442\";s:6:\"handle\";s:25:\"Looking-at-the-window.jpg\";s:4:\"name\";s:21:\"Looking at the window\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:16403;s:4:\"orig\";i:547096;}}i:158;a:13:{s:2:\"id\";s:3:\"441\";s:6:\"handle\";s:48:\"woman-standing-near-buildings-during-daytime.jpg\";s:4:\"name\";s:44:\"woman standing near buildings during daytime\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:19188;s:4:\"orig\";i:371592;}}i:159;a:13:{s:2:\"id\";s:3:\"440\";s:6:\"handle\";s:12:\"Lollipop.jpg\";s:4:\"name\";s:8:\"Lollipop\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1395\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:15157;s:4:\"orig\";i:658386;}}i:160;a:13:{s:2:\"id\";s:3:\"439\";s:6:\"handle\";s:26:\"People-crossing-street.jpg\";s:4:\"name\";s:22:\"People crossing street\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:24833;s:4:\"orig\";i:942816;}}i:161;a:13:{s:2:\"id\";s:3:\"438\";s:6:\"handle\";s:24:\"Friends-on-the-shore.jpg\";s:4:\"name\";s:20:\"Friends on the shore\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:15887;s:4:\"orig\";i:345362;}}i:162;a:13:{s:2:\"id\";s:3:\"437\";s:6:\"handle\";s:13:\"Coworkers.jpg\";s:4:\"name\";s:9:\"Coworkers\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:15665;s:4:\"orig\";i:407640;}}i:163;a:13:{s:2:\"id\";s:3:\"436\";s:6:\"handle\";s:27:\"Hiking-in-the-Dolomites.jpg\";s:4:\"name\";s:23:\"Hiking in the Dolomites\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:19443;s:4:\"orig\";i:844506;}}i:164;a:13:{s:2:\"id\";s:3:\"435\";s:6:\"handle\";s:18:\"Successful-man.jpg\";s:4:\"name\";s:14:\"Successful man\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:15564;s:4:\"orig\";i:573777;}}i:165;a:13:{s:2:\"id\";s:3:\"434\";s:6:\"handle\";s:23:\"Beautiful-sunny-day.jpg\";s:4:\"name\";s:19:\"Beautiful sunny day\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:13337;s:4:\"orig\";i:762091;}}i:166;a:13:{s:2:\"id\";s:3:\"433\";s:6:\"handle\";s:8:\"Guys.jpg\";s:4:\"name\";s:4:\"Guys\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:16746;s:4:\"orig\";i:365391;}}i:167;a:13:{s:2:\"id\";s:3:\"432\";s:6:\"handle\";s:19:\"Confetti-Shower.jpg\";s:4:\"name\";s:15:\"Confetti Shower\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:12699;s:4:\"orig\";i:427166;}}i:168;a:13:{s:2:\"id\";s:3:\"431\";s:6:\"handle\";s:24:\"Sun-was-setting-down.jpg\";s:4:\"name\";s:20:\"Sun was setting down\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:4748;s:4:\"orig\";i:238506;}}i:169;a:13:{s:2:\"id\";s:3:\"430\";s:6:\"handle\";s:9:\"Jumps.jpg\";s:4:\"name\";s:5:\"Jumps\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:19043;s:4:\"orig\";i:595277;}}i:170;a:13:{s:2:\"id\";s:3:\"429\";s:6:\"handle\";s:23:\"Friends-by-the-fire.jpg\";s:4:\"name\";s:19:\"Friends by the fire\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:11863;s:4:\"orig\";i:228649;}}i:171;a:13:{s:2:\"id\";s:3:\"428\";s:6:\"handle\";s:21:\"Under-the-blanket.jpg\";s:4:\"name\";s:17:\"Under the blanket\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1413\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:10878;s:4:\"orig\";i:313238;}}i:172;a:13:{s:2:\"id\";s:3:\"427\";s:6:\"handle\";s:18:\"Pretty-in-Pink.jpg\";s:4:\"name\";s:14:\"Pretty in Pink\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1394\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:7596;s:4:\"orig\";i:193734;}}i:173;a:13:{s:2:\"id\";s:3:\"426\";s:6:\"handle\";s:31:\"Discussions-at-a-long-table.jpg\";s:4:\"name\";s:27:\"Discussions at a long table\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1268\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:9305;s:4:\"orig\";i:223763;}}i:174;a:13:{s:2:\"id\";s:3:\"425\";s:6:\"handle\";s:18:\"Lost-in-Lemons.jpg\";s:4:\"name\";s:14:\"Lost in Lemons\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:23289;s:4:\"orig\";i:699269;}}i:175;a:13:{s:2:\"id\";s:3:\"424\";s:6:\"handle\";s:13:\"Team-work.jpg\";s:4:\"name\";s:9:\"Team work\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:16638;s:4:\"orig\";i:415507;}}i:176;a:13:{s:2:\"id\";s:3:\"423\";s:6:\"handle\";s:20:\"Romantic-evening.jpg\";s:4:\"name\";s:16:\"Romantic evening\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1263\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:11706;s:4:\"orig\";i:310875;}}i:177;a:13:{s:2:\"id\";s:3:\"422\";s:6:\"handle\";s:19:\"Crew-collective.jpg\";s:4:\"name\";s:15:\"Crew collective\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:18880;s:4:\"orig\";i:531273;}}i:178;a:13:{s:2:\"id\";s:3:\"421\";s:6:\"handle\";s:8:\"Code.jpg\";s:4:\"name\";s:4:\"Code\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:20175;s:4:\"orig\";i:554813;}}i:179;a:13:{s:2:\"id\";s:3:\"420\";s:6:\"handle\";s:48:\"Yellow-ceramic-mug-beside-gray-aluminum-iMac.jpg\";s:4:\"name\";s:44:\"Yellow ceramic mug beside gray aluminum iMac\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:6818;s:4:\"orig\";i:122809;}}i:180;a:13:{s:2:\"id\";s:3:\"419\";s:6:\"handle\";s:11:\"My-desk.jpg\";s:4:\"name\";s:7:\"My desk\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1315\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:8776;s:4:\"orig\";i:190452;}}i:181;a:13:{s:2:\"id\";s:3:\"418\";s:6:\"handle\";s:17:\"Cooperation-2.jpg\";s:4:\"name\";s:13:\"Cooperation 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:52127;s:4:\"orig\";i:352596;}}i:182;a:13:{s:2:\"id\";s:3:\"417\";s:6:\"handle\";s:33:\"MacBook-on-top-of-brown-table.jpg\";s:4:\"name\";s:29:\"MacBook on top of brown table\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:8878;s:4:\"orig\";i:183427;}}i:183;a:13:{s:2:\"id\";s:3:\"416\";s:6:\"handle\";s:27:\"Beautiful-working-place.jpg\";s:4:\"name\";s:23:\"Beautiful working place\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:15887;s:4:\"orig\";i:368977;}}i:184;a:13:{s:2:\"id\";s:3:\"415\";s:6:\"handle\";s:14:\"Typewriter.jpg\";s:4:\"name\";s:10:\"Typewriter\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:15080;s:4:\"orig\";i:707157;}}i:185;a:13:{s:2:\"id\";s:3:\"414\";s:6:\"handle\";s:19:\"White-desk-lamp.jpg\";s:4:\"name\";s:15:\"White desk lamp\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:5473;s:4:\"orig\";i:288675;}}i:186;a:13:{s:2:\"id\";s:3:\"413\";s:6:\"handle\";s:18:\"Office-working.jpg\";s:4:\"name\";s:14:\"Office working\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:19262;s:4:\"orig\";i:513524;}}i:187;a:13:{s:2:\"id\";s:3:\"412\";s:6:\"handle\";s:36:\"Silver-iMac-on-brown-wooden-desk.jpg\";s:4:\"name\";s:32:\"Silver iMac on brown wooden desk\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1240\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:9810;s:4:\"orig\";i:317981;}}i:188;a:13:{s:2:\"id\";s:3:\"411\";s:6:\"handle\";s:23:\"Working-in-progress.jpg\";s:4:\"name\";s:19:\"Working in progress\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:15773;s:4:\"orig\";i:519696;}}i:189;a:13:{s:2:\"id\";s:3:\"410\";s:6:\"handle\";s:15:\"Cooperation.jpg\";s:4:\"name\";s:11:\"Cooperation\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:32647;s:4:\"orig\";i:350074;}}i:190;a:13:{s:2:\"id\";s:3:\"409\";s:6:\"handle\";s:17:\"Working-place.jpg\";s:4:\"name\";s:13:\"Working place\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:14643;s:4:\"orig\";i:314424;}}i:191;a:13:{s:2:\"id\";s:3:\"408\";s:6:\"handle\";s:16:\"Working-desk.jpg\";s:4:\"name\";s:12:\"Working desk\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:19823;s:4:\"orig\";i:511473;}}i:192;a:13:{s:2:\"id\";s:3:\"407\";s:6:\"handle\";s:23:\"low-angle-of-forest.jpg\";s:4:\"name\";s:19:\"low angle of forest\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:37262;s:4:\"orig\";i:1590451;}}i:193;a:13:{s:2:\"id\";s:3:\"406\";s:6:\"handle\";s:23:\"Lake-under-blue-sky.jpg\";s:4:\"name\";s:19:\"Lake under blue sky\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1351\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:13647;s:4:\"orig\";i:408622;}}i:194;a:13:{s:2:\"id\";s:3:\"405\";s:6:\"handle\";s:21:\"Blue-starry-night.jpg\";s:4:\"name\";s:17:\"Blue starry night\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:10075;s:4:\"orig\";i:216586;}}i:195;a:13:{s:2:\"id\";s:3:\"404\";s:6:\"handle\";s:22:\"Aerial-photography.jpg\";s:4:\"name\";s:18:\"Aerial photography\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:10969;s:4:\"orig\";i:405945;}}i:196;a:13:{s:2:\"id\";s:3:\"403\";s:6:\"handle\";s:14:\"Red-clouds.jpg\";s:4:\"name\";s:10:\"Red clouds\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:9975;s:4:\"orig\";i:257177;}}i:197;a:13:{s:2:\"id\";s:3:\"402\";s:6:\"handle\";s:14:\"Snow-field.jpg\";s:4:\"name\";s:10:\"Snow field\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1227\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:9598;s:4:\"orig\";i:300066;}}i:198;a:13:{s:2:\"id\";s:3:\"401\";s:6:\"handle\";s:13:\"White-sky.jpg\";s:4:\"name\";s:9:\"White sky\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:7588;s:4:\"orig\";i:184359;}}i:199;a:13:{s:2:\"id\";s:3:\"400\";s:6:\"handle\";s:24:\"Trees-covered-by-fog.jpg\";s:4:\"name\";s:20:\"Trees covered by fog\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:9507;s:4:\"orig\";i:290246;}}i:200;a:13:{s:2:\"id\";s:3:\"399\";s:6:\"handle\";s:26:\"Red-and-white-mushroom.jpg\";s:4:\"name\";s:22:\"Red and white mushroom\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:14875;s:4:\"orig\";i:324145;}}i:201;a:13:{s:2:\"id\";s:3:\"398\";s:6:\"handle\";s:24:\"Lake-near-pine-trees.jpg\";s:4:\"name\";s:20:\"Lake near pine trees\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:18138;s:4:\"orig\";i:736181;}}i:202;a:13:{s:2:\"id\";s:3:\"397\";s:6:\"handle\";s:35:\"After-a-long-day-of-backpacking.jpg\";s:4:\"name\";s:31:\"After a long day of backpacking\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:10664;s:4:\"orig\";i:411404;}}i:203;a:13:{s:2:\"id\";s:3:\"396\";s:6:\"handle\";s:32:\"Mountains-during-golden-hour.jpg\";s:4:\"name\";s:28:\"Mountains during golden hour\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:11609;s:4:\"orig\";i:273103;}}i:204;a:13:{s:2:\"id\";s:3:\"395\";s:6:\"handle\";s:27:\"Man-looking-on-mountain.jpg\";s:4:\"name\";s:23:\"Man looking on mountain\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:16837;s:4:\"orig\";i:456937;}}i:205;a:13:{s:2:\"id\";s:3:\"394\";s:6:\"handle\";s:19:\"Body-of-water-2.jpg\";s:4:\"name\";s:15:\"Body of water 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:13774;s:4:\"orig\";i:385875;}}i:206;a:13:{s:2:\"id\";s:3:\"393\";s:6:\"handle\";s:15:\"Brown-cliff.jpg\";s:4:\"name\";s:11:\"Brown cliff\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:12285;s:4:\"orig\";i:546492;}}i:207;a:13:{s:2:\"id\";s:3:\"392\";s:6:\"handle\";s:20:\"Green-foggy-tree.jpg\";s:4:\"name\";s:16:\"Green foggy tree\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1417\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:12631;s:4:\"orig\";i:540206;}}i:208;a:13:{s:2:\"id\";s:3:\"391\";s:6:\"handle\";s:32:\"Grayscale-photo-of-mountains.jpg\";s:4:\"name\";s:28:\"Grayscale photo of mountains\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:9964;s:4:\"orig\";i:309994;}}i:209;a:13:{s:2:\"id\";s:3:\"390\";s:6:\"handle\";s:19:\"Under-sunny-sky.jpg\";s:4:\"name\";s:15:\"Under sunny sky\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:13683;s:4:\"orig\";i:369417;}}i:210;a:13:{s:2:\"id\";s:3:\"389\";s:6:\"handle\";s:16:\"Rock-concert.jpg\";s:4:\"name\";s:12:\"Rock concert\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1443\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:15941;s:4:\"orig\";i:475914;}}i:211;a:13:{s:2:\"id\";s:3:\"388\";s:6:\"handle\";s:30:\"Group-of-people-in-concert.jpg\";s:4:\"name\";s:26:\"Group of people in concert\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:17854;s:4:\"orig\";i:371480;}}i:212;a:13:{s:2:\"id\";s:3:\"387\";s:6:\"handle\";s:6:\"DJ.jpg\";s:4:\"name\";s:2:\"DJ\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:17441;s:4:\"orig\";i:507045;}}i:213;a:13:{s:2:\"id\";s:3:\"386\";s:6:\"handle\";s:56:\"Woman-standing-watching-LED-light-musical-instrument.jpg\";s:4:\"name\";s:52:\"Woman standing watching LED light musical instrument\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:32396;s:4:\"orig\";i:750503;}}i:214;a:13:{s:2:\"id\";s:3:\"385\";s:6:\"handle\";s:16:\"Concert-hall.jpg\";s:4:\"name\";s:12:\"Concert hall\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:25355;s:4:\"orig\";i:517171;}}i:215;a:13:{s:2:\"id\";s:3:\"384\";s:6:\"handle\";s:18:\"Concert-hall-2.jpg\";s:4:\"name\";s:14:\"Concert hall 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:30467;s:4:\"orig\";i:1076108;}}i:216;a:13:{s:2:\"id\";s:3:\"383\";s:6:\"handle\";s:29:\"man-playing-upright-piano.jpg\";s:4:\"name\";s:25:\"man playing upright piano\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1340\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:17629;s:4:\"orig\";i:804567;}}i:217;a:13:{s:2:\"id\";s:3:\"382\";s:6:\"handle\";s:30:\"person-performing-on-stage.jpg\";s:4:\"name\";s:26:\"person performing on stage\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:12952;s:4:\"orig\";i:489898;}}i:218;a:13:{s:2:\"id\";s:3:\"381\";s:6:\"handle\";s:27:\"Brown-string-instrument.jpg\";s:4:\"name\";s:23:\"Brown string instrument\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1272\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:11065;s:4:\"orig\";i:384178;}}i:219;a:13:{s:2:\"id\";s:3:\"380\";s:6:\"handle\";s:36:\"silhouette-of-person-with-guitar.jpg\";s:4:\"name\";s:32:\"silhouette of person with guitar\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:6262;s:4:\"orig\";i:198960;}}i:220;a:13:{s:2:\"id\";s:3:\"379\";s:6:\"handle\";s:14:\"Party-fans.jpg\";s:4:\"name\";s:10:\"Party fans\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:16353;s:4:\"orig\";i:245636;}}i:221;a:13:{s:2:\"id\";s:3:\"378\";s:6:\"handle\";s:24:\"Condenser-microphone.jpg\";s:4:\"name\";s:20:\"Condenser microphone\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:6048;s:4:\"orig\";i:133907;}}i:222;a:13:{s:2:\"id\";s:3:\"377\";s:6:\"handle\";s:42:\"Low-angle-photo-of-high-rise-buildings.jpg\";s:4:\"name\";s:38:\"Low angle photo of high rise buildings\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:15187;s:4:\"orig\";i:450326;}}i:223;a:13:{s:2:\"id\";s:3:\"376\";s:6:\"handle\";s:23:\"High-rise-buildings.jpg\";s:4:\"name\";s:19:\"High rise buildings\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:17977;s:4:\"orig\";i:582673;}}i:224;a:13:{s:2:\"id\";s:3:\"375\";s:6:\"handle\";s:16:\"Cable-bridge.jpg\";s:4:\"name\";s:12:\"Cable bridge\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1272\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:20171;s:4:\"orig\";i:617346;}}i:225;a:13:{s:2:\"id\";s:3:\"374\";s:6:\"handle\";s:35:\"Bokeh-effect-from-street-lights.jpg\";s:4:\"name\";s:31:\"Bokeh effect from street lights\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:14937;s:4:\"orig\";i:227355;}}i:226;a:13:{s:2:\"id\";s:3:\"373\";s:6:\"handle\";s:18:\"Low-angle-view.jpg\";s:4:\"name\";s:14:\"Low angle view\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:9789;s:4:\"orig\";i:321713;}}i:227;a:13:{s:2:\"id\";s:3:\"372\";s:6:\"handle\";s:21:\"Double-decker-bus.jpg\";s:4:\"name\";s:17:\"Double decker bus\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1373\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:18374;s:4:\"orig\";i:642218;}}i:228;a:13:{s:2:\"id\";s:3:\"371\";s:6:\"handle\";s:32:\"Buildings-near-body-of-water.jpg\";s:4:\"name\";s:28:\"Buildings near body of water\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1370\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:17332;s:4:\"orig\";i:791283;}}i:229;a:13:{s:2:\"id\";s:3:\"370\";s:6:\"handle\";s:18:\"Satellite-view.jpg\";s:4:\"name\";s:14:\"Satellite view\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:28854;s:4:\"orig\";i:1228379;}}i:230;a:13:{s:2:\"id\";s:3:\"369\";s:6:\"handle\";s:14:\"Twin-Tower.jpg\";s:4:\"name\";s:10:\"Twin Tower\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:7529;s:4:\"orig\";i:263779;}}i:231;a:13:{s:2:\"id\";s:3:\"368\";s:6:\"handle\";s:22:\"Two-person-walking.jpg\";s:4:\"name\";s:18:\"Two person walking\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1345\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:18101;s:4:\"orig\";i:617407;}}i:232;a:13:{s:2:\"id\";s:3:\"367\";s:6:\"handle\";s:15:\"Sears-Tower.jpg\";s:4:\"name\";s:11:\"Sears Tower\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:18049;s:4:\"orig\";i:757700;}}i:233;a:13:{s:2:\"id\";s:3:\"366\";s:6:\"handle\";s:19:\"Night-cityscape.jpg\";s:4:\"name\";s:15:\"Night cityscape\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:18133;s:4:\"orig\";i:633849;}}i:234;a:13:{s:2:\"id\";s:3:\"365\";s:6:\"handle\";s:25:\"Empire-State-Building.jpg\";s:4:\"name\";s:21:\"Empire State Building\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:24430;s:4:\"orig\";i:954378;}}i:235;a:13:{s:2:\"id\";s:3:\"364\";s:6:\"handle\";s:9:\"Paris.jpg\";s:4:\"name\";s:5:\"Paris\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:16738;s:4:\"orig\";i:664032;}}i:236;a:13:{s:2:\"id\";s:3:\"363\";s:6:\"handle\";s:31:\"Building-during-golden-hour.jpg\";s:4:\"name\";s:27:\"Building during golden hour\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1288\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:17594;s:4:\"orig\";i:503413;}}i:237;a:13:{s:2:\"id\";s:3:\"362\";s:6:\"handle\";s:21:\"Afternoon-skyline.jpg\";s:4:\"name\";s:17:\"Afternoon skyline\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:15558;s:4:\"orig\";i:508616;}}i:238;a:13:{s:2:\"id\";s:3:\"361\";s:6:\"handle\";s:22:\"Concrete-buildings.jpg\";s:4:\"name\";s:18:\"Concrete buildings\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:14665;s:4:\"orig\";i:429256;}}i:239;a:13:{s:2:\"id\";s:3:\"360\";s:6:\"handle\";s:26:\"Architectural-building.jpg\";s:4:\"name\";s:22:\"Architectural building\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1382\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:20433;s:4:\"orig\";i:1162968;}}i:240;a:13:{s:2:\"id\";s:3:\"359\";s:6:\"handle\";s:23:\"Skyline-photography.jpg\";s:4:\"name\";s:19:\"Skyline photography\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:10872;s:4:\"orig\";i:289488;}}i:241;a:13:{s:2:\"id\";s:3:\"358\";s:6:\"handle\";s:38:\"People-standing-on-pedestrian-lane.jpg\";s:4:\"name\";s:34:\"People standing on pedestrian lane\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1154\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:17988;s:4:\"orig\";i:602577;}}i:242;a:13:{s:2:\"id\";s:3:\"357\";s:6:\"handle\";s:16:\"Burj-Khalifa.jpg\";s:4:\"name\";s:12:\"Burj Khalifa\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:9794;s:4:\"orig\";i:352053;}}i:243;a:13:{s:2:\"id\";s:3:\"356\";s:6:\"handle\";s:13:\"Skycraper.jpg\";s:4:\"name\";s:9:\"Skycraper\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:11735;s:4:\"orig\";i:370551;}}i:244;a:13:{s:2:\"id\";s:3:\"355\";s:6:\"handle\";s:14:\"Gray-tower.jpg\";s:4:\"name\";s:10:\"Gray tower\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1433\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:10397;s:4:\"orig\";i:280660;}}i:245;a:13:{s:2:\"id\";s:3:\"354\";s:6:\"handle\";s:28:\"One-fine-day-in-Maldives.jpg\";s:4:\"name\";s:24:\"One fine day in Maldives\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1116\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:26832;s:4:\"orig\";i:677097;}}i:246;a:13:{s:2:\"id\";s:3:\"353\";s:6:\"handle\";s:25:\"Boat-on-body-of-water.jpg\";s:4:\"name\";s:21:\"Boat on body of water\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:13591;s:4:\"orig\";i:846550;}}i:247;a:13:{s:2:\"id\";s:3:\"352\";s:6:\"handle\";s:33:\"Aerial-photo-of-body-of-water.jpg\";s:4:\"name\";s:29:\"Aerial photo of body of water\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1078\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:12138;s:4:\"orig\";i:511326;}}i:248;a:13:{s:2:\"id\";s:3:\"351\";s:6:\"handle\";s:31:\"Assorted-color-beach-houses.jpg\";s:4:\"name\";s:27:\"Assorted color beach houses\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1135\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:14005;s:4:\"orig\";i:392648;}}i:249;a:13:{s:2:\"id\";s:3:\"350\";s:6:\"handle\";s:36:\"Woman-leaning-on-tree-near-beach.jpg\";s:4:\"name\";s:32:\"Woman leaning on tree near beach\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1559\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:11612;s:4:\"orig\";i:688650;}}i:250;a:13:{s:2:\"id\";s:3:\"349\";s:6:\"handle\";s:17:\"Body-of-water.jpg\";s:4:\"name\";s:13:\"Body of water\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1269\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:28096;s:4:\"orig\";i:766943;}}i:251;a:13:{s:2:\"id\";s:3:\"348\";s:6:\"handle\";s:17:\"People-on-sea.jpg\";s:4:\"name\";s:13:\"People on sea\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:17419;s:4:\"orig\";i:759716;}}i:252;a:13:{s:2:\"id\";s:3:\"347\";s:6:\"handle\";s:31:\"Man-sitting-beside-of-woman.jpg\";s:4:\"name\";s:27:\"Man sitting beside of woman\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:10910;s:4:\"orig\";i:191059;}}i:253;a:13:{s:2:\"id\";s:3:\"346\";s:6:\"handle\";s:22:\"woman-in-the-water.jpg\";s:4:\"name\";s:18:\"woman in the water\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:24825;s:4:\"orig\";i:706226;}}i:254;a:13:{s:2:\"id\";s:3:\"345\";s:6:\"handle\";s:39:\"Brown-stone-near-sea-at-golden-hour.jpg\";s:4:\"name\";s:35:\"Brown stone near sea at golden hour\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:11091;s:4:\"orig\";i:300143;}}i:255;a:13:{s:2:\"id\";s:3:\"344\";s:6:\"handle\";s:18:\"Birds-eye-view.jpg\";s:4:\"name\";s:14:\"Birds eye view\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1079\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:15004;s:4:\"orig\";i:475888;}}i:256;a:13:{s:2:\"id\";s:3:\"343\";s:6:\"handle\";s:18:\"Empty-seashore.jpg\";s:4:\"name\";s:14:\"Empty seashore\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1365\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:13155;s:4:\"orig\";i:683645;}}i:257;a:13:{s:2:\"id\";s:3:\"342\";s:6:\"handle\";s:31:\"Seashore-during-golden-hour.jpg\";s:4:\"name\";s:27:\"Seashore during golden hour\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1439\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:15305;s:4:\"orig\";i:655207;}}i:258;a:13:{s:2:\"id\";s:3:\"341\";s:6:\"handle\";s:16:\"Coconut-tree.jpg\";s:4:\"name\";s:12:\"Coconut tree\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:17740;s:4:\"orig\";i:745183;}}i:259;a:13:{s:2:\"id\";s:3:\"340\";s:6:\"handle\";s:37:\"Aerial-photography-of-beach-shore.jpg\";s:4:\"name\";s:33:\"Aerial photography of beach shore\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1439\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:17442;s:4:\"orig\";i:641873;}}i:260;a:13:{s:2:\"id\";s:3:\"197\";s:6:\"handle\";s:17:\"relax_hammock.jpg\";s:4:\"name\";s:13:\"Relax Hammock\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:16088;s:4:\"orig\";i:241567;}}i:261;a:13:{s:2:\"id\";s:3:\"196\";s:6:\"handle\";s:16:\"beach_houses.jpg\";s:4:\"name\";s:12:\"Beach Houses\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:8512;s:4:\"orig\";i:267430;}}i:262;a:13:{s:2:\"id\";s:3:\"195\";s:6:\"handle\";s:17:\"forest_road_2.jpg\";s:4:\"name\";s:13:\"Forest Road 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:25804;s:4:\"orig\";i:908234;}}i:263;a:13:{s:2:\"id\";s:3:\"194\";s:6:\"handle\";s:14:\"clean_desk.jpg\";s:4:\"name\";s:10:\"Clean Desk\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:4691;s:4:\"orig\";i:108160;}}i:264;a:13:{s:2:\"id\";s:3:\"193\";s:6:\"handle\";s:19:\"mountain_view_6.jpg\";s:4:\"name\";s:15:\"Mountain View 6\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1249\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:12753;s:4:\"orig\";i:218714;}}i:265;a:13:{s:2:\"id\";s:3:\"192\";s:6:\"handle\";s:14:\"corn_field.jpg\";s:4:\"name\";s:10:\"Corn Field\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1320\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:19312;s:4:\"orig\";i:438345;}}i:266;a:13:{s:2:\"id\";s:3:\"191\";s:6:\"handle\";s:21:\"stylish_apartment.jpg\";s:4:\"name\";s:17:\"Stylish Apartment\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:16224;s:4:\"orig\";i:409547;}}i:267;a:13:{s:2:\"id\";s:3:\"190\";s:6:\"handle\";s:24:\"hipster_coffee_house.jpg\";s:4:\"name\";s:20:\"Hipster Coffee House\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:22344;s:4:\"orig\";i:432904;}}i:268;a:13:{s:2:\"id\";s:3:\"189\";s:6:\"handle\";s:16:\"blurry_beach.jpg\";s:4:\"name\";s:12:\"Blurry Beach\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:9431;s:4:\"orig\";i:220442;}}i:269;a:13:{s:2:\"id\";s:3:\"186\";s:6:\"handle\";s:17:\"greens_street.jpg\";s:4:\"name\";s:13:\"Greens Street\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:29538;s:4:\"orig\";i:733632;}}i:270;a:13:{s:2:\"id\";s:3:\"185\";s:6:\"handle\";s:10:\"desert.jpg\";s:4:\"name\";s:6:\"Desert\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:12859;s:4:\"orig\";i:430959;}}i:271;a:13:{s:2:\"id\";s:3:\"184\";s:6:\"handle\";s:19:\"mountain_view_5.jpg\";s:4:\"name\";s:15:\"Mountain View 5\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:13413;s:4:\"orig\";i:324558;}}i:272;a:13:{s:2:\"id\";s:3:\"183\";s:6:\"handle\";s:10:\"laptop.jpg\";s:4:\"name\";s:6:\"Laptop\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1391\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:11553;s:4:\"orig\";i:146076;}}i:273;a:13:{s:2:\"id\";s:3:\"182\";s:6:\"handle\";s:16:\"grand_canyon.jpg\";s:4:\"name\";s:12:\"Grand Canyon\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1287\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:21184;s:4:\"orig\";i:537577;}}i:274;a:13:{s:2:\"id\";s:3:\"181\";s:6:\"handle\";s:20:\"landscape_clouds.jpg\";s:4:\"name\";s:16:\"Landscape Clouds\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1272\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:14134;s:4:\"orig\";i:245565;}}i:275;a:13:{s:2:\"id\";s:3:\"180\";s:6:\"handle\";s:17:\"highway_night.jpg\";s:4:\"name\";s:13:\"Highway Night\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:16035;s:4:\"orig\";i:401592;}}i:276;a:13:{s:2:\"id\";s:3:\"179\";s:6:\"handle\";s:15:\"beach_water.jpg\";s:4:\"name\";s:11:\"Beach Water\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:12906;s:4:\"orig\";i:483885;}}i:277;a:13:{s:2:\"id\";s:3:\"177\";s:6:\"handle\";s:15:\"woman_beach.jpg\";s:4:\"name\";s:11:\"Woman Beach\";s:4:\"tags\";a:4:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:3;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:7834;s:4:\"orig\";i:80956;}}i:278;a:13:{s:2:\"id\";s:3:\"175\";s:6:\"handle\";s:12:\"cool_guy.jpg\";s:4:\"name\";s:8:\"Cool Guy\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:11452;s:4:\"orig\";i:175118;}}i:279;a:13:{s:2:\"id\";s:3:\"174\";s:6:\"handle\";s:13:\"beach_sea.jpg\";s:4:\"name\";s:9:\"Beach Sea\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:12170;s:4:\"orig\";i:236860;}}i:280;a:13:{s:2:\"id\";s:3:\"173\";s:6:\"handle\";s:17:\"bridge_clouds.jpg\";s:4:\"name\";s:13:\"Bridge Clouds\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:10268;s:4:\"orig\";i:117315;}}i:281;a:13:{s:2:\"id\";s:3:\"116\";s:6:\"handle\";s:19:\"mountain_view_2.jpg\";s:4:\"name\";s:15:\"Mountain View 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1275\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:12485;s:4:\"orig\";i:374567;}}i:282;a:13:{s:2:\"id\";s:3:\"115\";s:6:\"handle\";s:16:\"desert_trees.jpg\";s:4:\"name\";s:12:\"Desert Trees\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1275\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:8401;s:4:\"orig\";i:203253;}}i:283;a:13:{s:2:\"id\";s:3:\"114\";s:6:\"handle\";s:20:\"explore_moutains.jpg\";s:4:\"name\";s:17:\"Explore Mountains\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:12578;s:4:\"orig\";i:287796;}}i:284;a:13:{s:2:\"id\";s:3:\"113\";s:6:\"handle\";s:19:\"night_skyline_2.jpg\";s:4:\"name\";s:15:\"Night Skyline 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:8484;s:4:\"orig\";i:199508;}}i:285;a:13:{s:2:\"id\";s:3:\"112\";s:6:\"handle\";s:15:\"cliff_ocean.jpg\";s:4:\"name\";s:11:\"Cliff Ocean\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:16659;s:4:\"orig\";i:524922;}}i:286;a:13:{s:2:\"id\";s:3:\"111\";s:6:\"handle\";s:14:\"city_smoke.jpg\";s:4:\"name\";s:10:\"City Smoke\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:9240;s:4:\"orig\";i:109310;}}i:287;a:13:{s:2:\"id\";s:3:\"110\";s:6:\"handle\";s:16:\"surfer_beach.jpg\";s:4:\"name\";s:12:\"Surfer Beach\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:8288;s:4:\"orig\";i:216553;}}i:288;a:13:{s:2:\"id\";s:3:\"109\";s:6:\"handle\";s:13:\"sky_night.jpg\";s:4:\"name\";s:9:\"Sky Night\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:6855;s:4:\"orig\";i:234043;}}i:289;a:13:{s:2:\"id\";s:3:\"108\";s:6:\"handle\";s:15:\"palm_sunset.jpg\";s:4:\"name\";s:11:\"Palm Sunset\";s:4:\"tags\";a:4:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}i:3;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1372\";s:6:\"height\";s:4:\"1920\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:12347;s:4:\"orig\";i:238706;}}i:290;a:13:{s:2:\"id\";s:3:\"107\";s:6:\"handle\";s:18:\"concert_people.jpg\";s:4:\"name\";s:14:\"Concert People\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:7748;s:4:\"orig\";i:169462;}}i:291;a:13:{s:2:\"id\";s:3:\"106\";s:6:\"handle\";s:15:\"forest_road.jpg\";s:4:\"name\";s:11:\"Forest Road\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:10402;s:4:\"orig\";i:358403;}}i:292;a:13:{s:2:\"id\";s:3:\"105\";s:6:\"handle\";s:15:\"beach_ocean.jpg\";s:4:\"name\";s:11:\"Beach Ocean\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:12887;s:4:\"orig\";i:261525;}}i:293;a:13:{s:2:\"id\";s:3:\"104\";s:6:\"handle\";s:18:\"mountain_night.jpg\";s:4:\"name\";s:14:\"Mountain Night\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:2963;s:4:\"orig\";i:30890;}}i:294;a:13:{s:2:\"id\";s:3:\"103\";s:6:\"handle\";s:19:\"ocean_mountains.jpg\";s:4:\"name\";s:15:\"Ocean Mountains\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:10266;s:4:\"orig\";i:183341;}}i:295;a:13:{s:2:\"id\";s:3:\"102\";s:6:\"handle\";s:10:\"forest.jpg\";s:4:\"name\";s:6:\"Forest\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:8156;s:4:\"orig\";i:102119;}}i:296;a:13:{s:2:\"id\";s:3:\"101\";s:6:\"handle\";s:16:\"ocean_stones.jpg\";s:4:\"name\";s:12:\"Ocean Stones\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:10271;s:4:\"orig\";i:138495;}}i:297;a:13:{s:2:\"id\";s:3:\"100\";s:6:\"handle\";s:16:\"country_road.jpg\";s:4:\"name\";s:12:\"Country Road\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:11654;s:4:\"orig\";i:171098;}}i:298;a:13:{s:2:\"id\";s:2:\"99\";s:6:\"handle\";s:9:\"beach.jpg\";s:4:\"name\";s:5:\"Beach\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:10569;s:4:\"orig\";i:437331;}}i:299;a:13:{s:2:\"id\";s:2:\"98\";s:6:\"handle\";s:16:\"city_skyline.jpg\";s:4:\"name\";s:12:\"City Skyline\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:15739;s:4:\"orig\";i:446809;}}i:300;a:13:{s:2:\"id\";s:2:\"97\";s:6:\"handle\";s:17:\"night_skyline.jpg\";s:4:\"name\";s:13:\"Night Skyline\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}i:2;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:9456;s:4:\"orig\";i:206722;}}i:301;a:13:{s:2:\"id\";s:2:\"96\";s:6:\"handle\";s:14:\"city_river.jpg\";s:4:\"name\";s:10:\"City River\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:13833;s:4:\"orig\";i:341185;}}i:302;a:13:{s:2:\"id\";s:2:\"95\";s:6:\"handle\";s:19:\"mountain_view_3.jpg\";s:4:\"name\";s:15:\"Mountain View 3\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:10647;s:4:\"orig\";i:193025;}}i:303;a:13:{s:2:\"id\";s:2:\"94\";s:6:\"handle\";s:14:\"misty_farm.jpg\";s:4:\"name\";s:10:\"Misty Farm\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:6239;s:4:\"orig\";i:48178;}}i:304;a:13:{s:2:\"id\";s:2:\"93\";s:6:\"handle\";s:17:\"mountain_path.jpg\";s:4:\"name\";s:13:\"Mountain Path\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:14454;s:4:\"orig\";i:454843;}}i:305;a:13:{s:2:\"id\";s:2:\"92\";s:6:\"handle\";s:19:\"night_skyline_3.jpg\";s:4:\"name\";s:15:\"Night Skyline 3\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:7734;s:4:\"orig\";i:119909;}}i:306;a:13:{s:2:\"id\";s:2:\"91\";s:6:\"handle\";s:17:\"mountain_view.jpg\";s:4:\"name\";s:13:\"Mountain View\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1160\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:11927;s:4:\"orig\";i:209224;}}i:307;a:13:{s:2:\"id\";s:2:\"90\";s:6:\"handle\";s:19:\"rocky_landscape.jpg\";s:4:\"name\";s:15:\"Rocky Landscape\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:9609;s:4:\"orig\";i:230249;}}i:308;a:13:{s:2:\"id\";s:2:\"89\";s:6:\"handle\";s:19:\"mountain_view_4.jpg\";s:4:\"name\";s:15:\"Mountain View 4\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1203\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:12396;s:4:\"orig\";i:290596;}}i:309;a:14:{s:2:\"id\";s:3:\"529\";s:6:\"handle\";s:13:\"Fitness-4.jpg\";s:5:\"video\";s:13:\"Fitness-4.mp4\";s:4:\"name\";s:10:\"Fitness 4 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:25803;s:11:\"video_thumb\";i:2753823;s:5:\"cover\";i:127867;s:4:\"orig\";i:5991847;}}i:310;a:14:{s:2:\"id\";s:3:\"528\";s:6:\"handle\";s:13:\"Fitness-3.jpg\";s:5:\"video\";s:13:\"Fitness-3.mp4\";s:4:\"name\";s:10:\"Fitness 3 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:19154;s:11:\"video_thumb\";i:4783500;s:5:\"cover\";i:97843;s:4:\"orig\";i:12408832;}}i:311;a:14:{s:2:\"id\";s:3:\"527\";s:6:\"handle\";s:9:\"Chess.jpg\";s:5:\"video\";s:9:\"Chess.mp4\";s:4:\"name\";s:6:\"Chess \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:28284;s:11:\"video_thumb\";i:2150510;s:5:\"cover\";i:124176;s:4:\"orig\";i:7726114;}}i:312;a:14:{s:2:\"id\";s:3:\"526\";s:6:\"handle\";s:13:\"Fitness-2.jpg\";s:5:\"video\";s:13:\"Fitness-2.mp4\";s:4:\"name\";s:10:\"Fitness 2 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:23354;s:11:\"video_thumb\";i:3635377;s:5:\"cover\";i:106283;s:4:\"orig\";i:12688465;}}i:313;a:14:{s:2:\"id\";s:3:\"525\";s:6:\"handle\";s:11:\"Fitness.jpg\";s:5:\"video\";s:11:\"Fitness.mp4\";s:4:\"name\";s:8:\"Fitness \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:29858;s:11:\"video_thumb\";i:9614915;s:5:\"cover\";i:153660;s:4:\"orig\";i:13424151;}}i:314;a:14:{s:2:\"id\";s:3:\"524\";s:6:\"handle\";s:9:\"Earth.jpg\";s:5:\"video\";s:9:\"Earth.mp4\";s:4:\"name\";s:6:\"Earth \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:44:06\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:19155;s:11:\"video_thumb\";i:2361089;s:5:\"cover\";i:103588;s:4:\"orig\";i:14717688;}}i:315;a:14:{s:2:\"id\";s:3:\"523\";s:6:\"handle\";s:11:\"Space-2.jpg\";s:5:\"video\";s:11:\"Space-2.mp4\";s:4:\"name\";s:8:\"Space 2 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1440\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:44:06\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:11719;s:11:\"video_thumb\";i:4841259;s:5:\"cover\";i:40309;s:4:\"orig\";i:11715637;}}i:316;a:14:{s:2:\"id\";s:3:\"522\";s:6:\"handle\";s:13:\"Asteroids.jpg\";s:5:\"video\";s:13:\"Asteroids.mp4\";s:4:\"name\";s:10:\"Asteroids \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:44:06\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:56469;s:11:\"video_thumb\";i:5107558;s:5:\"cover\";i:273635;s:4:\"orig\";i:13833056;}}i:317;a:14:{s:2:\"id\";s:3:\"521\";s:6:\"handle\";s:9:\"Space.jpg\";s:5:\"video\";s:9:\"Space.mp4\";s:4:\"name\";s:6:\"Space \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:44:06\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:30439;s:11:\"video_thumb\";i:3864288;s:5:\"cover\";i:133345;s:4:\"orig\";i:13159814;}}i:318;a:14:{s:2:\"id\";s:3:\"520\";s:6:\"handle\";s:10:\"People.jpg\";s:5:\"video\";s:10:\"People.mp4\";s:4:\"name\";s:7:\"People \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:31267;s:11:\"video_thumb\";i:2732735;s:5:\"cover\";i:173636;s:4:\"orig\";i:5536475;}}i:319;a:14:{s:2:\"id\";s:3:\"519\";s:6:\"handle\";s:11:\"Walking.jpg\";s:5:\"video\";s:11:\"Walking.mp4\";s:4:\"name\";s:8:\"Walking \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:29090;s:11:\"video_thumb\";i:4861363;s:5:\"cover\";i:188894;s:4:\"orig\";i:13731609;}}i:320;a:14:{s:2:\"id\";s:3:\"518\";s:6:\"handle\";s:19:\"Double-Exposure.jpg\";s:5:\"video\";s:19:\"Double-Exposure.mp4\";s:4:\"name\";s:16:\"Double Exposure \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:31123;s:11:\"video_thumb\";i:1386258;s:5:\"cover\";i:219740;s:4:\"orig\";i:6479275;}}i:321;a:14:{s:2:\"id\";s:3:\"517\";s:6:\"handle\";s:8:\"Girl.jpg\";s:5:\"video\";s:8:\"Girl.mp4\";s:4:\"name\";s:5:\"Girl \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1088\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:21091;s:11:\"video_thumb\";i:11134706;s:5:\"cover\";i:115059;s:4:\"orig\";i:12313637;}}i:322;a:14:{s:2:\"id\";s:3:\"516\";s:6:\"handle\";s:17:\"Bengal-Lights.jpg\";s:5:\"video\";s:17:\"Bengal-Lights.mp4\";s:4:\"name\";s:14:\"Bengal Lights \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:19624;s:11:\"video_thumb\";i:3913179;s:5:\"cover\";i:118864;s:4:\"orig\";i:14700830;}}i:323;a:14:{s:2:\"id\";s:3:\"515\";s:6:\"handle\";s:13:\"Swiping-2.jpg\";s:5:\"video\";s:13:\"Swiping-2.mp4\";s:4:\"name\";s:10:\"Swiping 2 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:45123;s:11:\"video_thumb\";i:2547876;s:5:\"cover\";i:268587;s:4:\"orig\";i:8823724;}}i:324;a:14:{s:2:\"id\";s:3:\"514\";s:6:\"handle\";s:11:\"Mock-Up.jpg\";s:5:\"video\";s:11:\"Mock-Up.mp4\";s:4:\"name\";s:8:\"Mock Up \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:33867;s:11:\"video_thumb\";i:5972511;s:5:\"cover\";i:172632;s:4:\"orig\";i:13869858;}}i:325;a:14:{s:2:\"id\";s:3:\"513\";s:6:\"handle\";s:13:\"Countdown.jpg\";s:5:\"video\";s:13:\"Countdown.mp4\";s:4:\"name\";s:10:\"Countdown \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:16185;s:11:\"video_thumb\";i:4097952;s:5:\"cover\";i:160912;s:4:\"orig\";i:12307362;}}i:326;a:14:{s:2:\"id\";s:3:\"512\";s:6:\"handle\";s:18:\"Wall-Sketching.jpg\";s:5:\"video\";s:18:\"Wall-Sketching.mp4\";s:4:\"name\";s:15:\"Wall Sketching \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:9324;s:11:\"video_thumb\";i:1843046;s:5:\"cover\";i:94919;s:4:\"orig\";i:4938526;}}i:327;a:14:{s:2:\"id\";s:3:\"511\";s:6:\"handle\";s:26:\"Typing-on-the-keyboard.jpg\";s:5:\"video\";s:26:\"Typing-on-the-keyboard.mp4\";s:4:\"name\";s:23:\"Typing on the keyboard \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:13455;s:11:\"video_thumb\";i:5101194;s:5:\"cover\";i:66493;s:4:\"orig\";i:11852447;}}i:328;a:14:{s:2:\"id\";s:3:\"510\";s:6:\"handle\";s:11:\"Meeting.jpg\";s:5:\"video\";s:11:\"Meeting.mp4\";s:4:\"name\";s:8:\"Meeting \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:20003;s:11:\"video_thumb\";i:1696754;s:5:\"cover\";i:103202;s:4:\"orig\";i:12515577;}}i:329;a:14:{s:2:\"id\";s:3:\"509\";s:6:\"handle\";s:11:\"Swiping.jpg\";s:5:\"video\";s:11:\"Swiping.mp4\";s:4:\"name\";s:8:\"Swiping \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:19377;s:11:\"video_thumb\";i:3861934;s:5:\"cover\";i:101592;s:4:\"orig\";i:13370749;}}i:330;a:14:{s:2:\"id\";s:3:\"508\";s:6:\"handle\";s:9:\"Alarm.jpg\";s:5:\"video\";s:9:\"Alarm.mp4\";s:4:\"name\";s:6:\"Alarm \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1013\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:31120;s:11:\"video_thumb\";i:2732488;s:5:\"cover\";i:190596;s:4:\"orig\";i:13625169;}}i:331;a:14:{s:2:\"id\";s:3:\"507\";s:6:\"handle\";s:13:\"Hey-World.jpg\";s:5:\"video\";s:13:\"Hey-World.mp4\";s:4:\"name\";s:10:\"Hey World \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:17475;s:11:\"video_thumb\";i:1248121;s:5:\"cover\";i:203284;s:4:\"orig\";i:4921567;}}i:332;a:14:{s:2:\"id\";s:3:\"506\";s:6:\"handle\";s:28:\"Typing-on-the-keyboard-2.jpg\";s:5:\"video\";s:28:\"Typing-on-the-keyboard-2.mp4\";s:4:\"name\";s:25:\"Typing on the keyboard 2 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:26132;s:11:\"video_thumb\";i:5777142;s:5:\"cover\";i:138198;s:4:\"orig\";i:12817212;}}i:333;a:14:{s:2:\"id\";s:3:\"505\";s:6:\"handle\";s:10:\"Valley.jpg\";s:5:\"video\";s:10:\"Valley.mp4\";s:4:\"name\";s:7:\"Valley \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:35:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:40668;s:11:\"video_thumb\";i:3711074;s:5:\"cover\";i:243587;s:4:\"orig\";i:12354374;}}i:334;a:14:{s:2:\"id\";s:3:\"504\";s:6:\"handle\";s:9:\"Stars.jpg\";s:5:\"video\";s:9:\"Stars.mp4\";s:4:\"name\";s:6:\"Stars \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:35:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:41275;s:11:\"video_thumb\";i:2631988;s:5:\"cover\";i:330226;s:4:\"orig\";i:8304831;}}i:335;a:14:{s:2:\"id\";s:3:\"503\";s:6:\"handle\";s:21:\"Car-in-the-forest.jpg\";s:5:\"video\";s:21:\"Car-in-the-forest.mp4\";s:4:\"name\";s:18:\"Car in the forest \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1012\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:35:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:54209;s:11:\"video_thumb\";i:4596191;s:5:\"cover\";i:335804;s:4:\"orig\";i:13306988;}}i:336;a:14:{s:2:\"id\";s:3:\"502\";s:6:\"handle\";s:15:\"Aerial-Shot.jpg\";s:5:\"video\";s:15:\"Aerial-Shot.mp4\";s:4:\"name\";s:12:\"Aerial Shot \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:35:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:75484;s:11:\"video_thumb\";i:3134686;s:5:\"cover\";i:461854;s:4:\"orig\";i:20337064;}}i:337;a:14:{s:2:\"id\";s:3:\"501\";s:6:\"handle\";s:14:\"Disco-Ball.jpg\";s:5:\"video\";s:14:\"Disco-Ball.mp4\";s:4:\"name\";s:11:\"Disco Ball \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:25915;s:11:\"video_thumb\";i:2352326;s:5:\"cover\";i:136931;s:4:\"orig\";i:12104254;}}i:338;a:14:{s:2:\"id\";s:3:\"500\";s:6:\"handle\";s:22:\"Man-Playing-Guitar.jpg\";s:5:\"video\";s:22:\"Man-Playing-Guitar.mp4\";s:4:\"name\";s:19:\"Man Playing Guitar \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:40965;s:11:\"video_thumb\";i:8637814;s:5:\"cover\";i:195812;s:4:\"orig\";i:13878956;}}i:339;a:14:{s:2:\"id\";s:3:\"499\";s:6:\"handle\";s:14:\"Live-Music.jpg\";s:5:\"video\";s:14:\"Live-Music.mp4\";s:4:\"name\";s:11:\"Live Music \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:19037;s:11:\"video_thumb\";i:3065043;s:5:\"cover\";i:65493;s:4:\"orig\";i:12935967;}}i:340;a:14:{s:2:\"id\";s:3:\"498\";s:6:\"handle\";s:12:\"Cheer-Up.jpg\";s:5:\"video\";s:12:\"Cheer-Up.mp4\";s:4:\"name\";s:9:\"Cheer Up \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:24344;s:11:\"video_thumb\";i:1911296;s:5:\"cover\";i:192540;s:4:\"orig\";i:4631422;}}i:341;a:14:{s:2:\"id\";s:3:\"497\";s:6:\"handle\";s:14:\"Night-club.jpg\";s:5:\"video\";s:14:\"Night-club.mp4\";s:4:\"name\";s:11:\"Night club \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:23517;s:11:\"video_thumb\";i:4899641;s:5:\"cover\";i:86737;s:4:\"orig\";i:12281833;}}i:342;a:14:{s:2:\"id\";s:3:\"496\";s:6:\"handle\";s:17:\"Cup-Of-Coffee.jpg\";s:5:\"video\";s:17:\"Cup-Of-Coffee.mp4\";s:4:\"name\";s:14:\"Cup Of Coffee \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:31844;s:11:\"video_thumb\";i:4412295;s:5:\"cover\";i:154844;s:4:\"orig\";i:10753079;}}i:343;a:14:{s:2:\"id\";s:3:\"495\";s:6:\"handle\";s:7:\"Pot.jpg\";s:5:\"video\";s:7:\"Pot.mp4\";s:4:\"name\";s:4:\"Pot \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:14905;s:11:\"video_thumb\";i:3394055;s:5:\"cover\";i:73276;s:4:\"orig\";i:11722124;}}i:344;a:14:{s:2:\"id\";s:3:\"494\";s:6:\"handle\";s:11:\"Grill-2.jpg\";s:5:\"video\";s:11:\"Grill-2.mp4\";s:4:\"name\";s:8:\"Grill 2 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:48591;s:11:\"video_thumb\";i:5268295;s:5:\"cover\";i:211021;s:4:\"orig\";i:11990742;}}i:345;a:14:{s:2:\"id\";s:3:\"493\";s:6:\"handle\";s:13:\"Rice-Bowl.jpg\";s:5:\"video\";s:13:\"Rice-Bowl.mp4\";s:4:\"name\";s:10:\"Rice Bowl \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1010\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:27863;s:11:\"video_thumb\";i:2674570;s:5:\"cover\";i:119321;s:4:\"orig\";i:11602755;}}i:346;a:14:{s:2:\"id\";s:3:\"492\";s:6:\"handle\";s:9:\"Grill.jpg\";s:5:\"video\";s:9:\"Grill.mp4\";s:4:\"name\";s:6:\"Grill \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:27505;s:11:\"video_thumb\";i:3025283;s:5:\"cover\";i:144357;s:4:\"orig\";i:13176990;}}i:347;a:14:{s:2:\"id\";s:3:\"491\";s:6:\"handle\";s:9:\"Water.jpg\";s:5:\"video\";s:9:\"Water.mp4\";s:4:\"name\";s:6:\"Water \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:24:15\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:22543;s:11:\"video_thumb\";i:1327376;s:5:\"cover\";i:111224;s:4:\"orig\";i:4727340;}}i:348;a:14:{s:2:\"id\";s:3:\"490\";s:6:\"handle\";s:17:\"Feet-and-Sand.jpg\";s:5:\"video\";s:17:\"Feet-and-Sand.mp4\";s:4:\"name\";s:14:\"Feet and Sand \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:24:15\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:34936;s:11:\"video_thumb\";i:3198076;s:5:\"cover\";i:160493;s:4:\"orig\";i:12804022;}}i:349;a:14:{s:2:\"id\";s:3:\"489\";s:6:\"handle\";s:9:\"Ocean.jpg\";s:5:\"video\";s:9:\"Ocean.mp4\";s:4:\"name\";s:6:\"Ocean \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:24:15\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:28883;s:11:\"video_thumb\";i:4750283;s:5:\"cover\";i:153687;s:4:\"orig\";i:13054569;}}i:350;a:14:{s:2:\"id\";s:3:\"488\";s:6:\"handle\";s:9:\"Waves.jpg\";s:5:\"video\";s:9:\"Waves.mp4\";s:4:\"name\";s:6:\"Waves \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:24:15\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:53693;s:11:\"video_thumb\";i:9780815;s:5:\"cover\";i:341419;s:4:\"orig\";i:13738077;}}i:351;a:14:{s:2:\"id\";s:3:\"487\";s:6:\"handle\";s:10:\"Hearts.jpg\";s:5:\"video\";s:10:\"Hearts.mp4\";s:4:\"name\";s:7:\"Hearts \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:9494;s:11:\"video_thumb\";i:942533;s:5:\"cover\";i:52833;s:4:\"orig\";i:6629299;}}i:352;a:14:{s:2:\"id\";s:3:\"486\";s:6:\"handle\";s:12:\"Octagons.jpg\";s:5:\"video\";s:12:\"Octagons.mp4\";s:4:\"name\";s:9:\"Octagons \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:22781;s:11:\"video_thumb\";i:2415073;s:5:\"cover\";i:126450;s:4:\"orig\";i:11684367;}}i:353;a:14:{s:2:\"id\";s:3:\"485\";s:6:\"handle\";s:11:\"Squares.jpg\";s:5:\"video\";s:11:\"Squares.mp4\";s:4:\"name\";s:8:\"Squares \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:22296;s:11:\"video_thumb\";i:1465206;s:5:\"cover\";i:73047;s:4:\"orig\";i:4008355;}}i:354;a:14:{s:2:\"id\";s:3:\"484\";s:6:\"handle\";s:12:\"Pink-ink.jpg\";s:5:\"video\";s:12:\"Pink-ink.mp4\";s:4:\"name\";s:9:\"Pink ink \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:19851;s:11:\"video_thumb\";i:3023599;s:5:\"cover\";i:25426;s:4:\"orig\";i:12847145;}}i:355;a:14:{s:2:\"id\";s:3:\"483\";s:6:\"handle\";s:22:\"Blurred-Background.jpg\";s:5:\"video\";s:22:\"Blurred-Background.mp4\";s:4:\"name\";s:19:\"Blurred Background \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:18002;s:11:\"video_thumb\";i:1791449;s:5:\"cover\";i:101725;s:4:\"orig\";i:13746552;}}i:356;a:14:{s:2:\"id\";s:3:\"482\";s:6:\"handle\";s:20:\"Blinking-bubbles.jpg\";s:5:\"video\";s:20:\"Blinking-bubbles.mp4\";s:4:\"name\";s:17:\"Blinking bubbles \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:8176;s:11:\"video_thumb\";i:4255586;s:5:\"cover\";i:75455;s:4:\"orig\";i:10948491;}}i:357;a:14:{s:2:\"id\";s:3:\"481\";s:6:\"handle\";s:13:\"Fireworks.jpg\";s:5:\"video\";s:13:\"Fireworks.mp4\";s:4:\"name\";s:10:\"Fireworks \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:46567;s:11:\"video_thumb\";i:3789289;s:5:\"cover\";i:25425;s:4:\"orig\";i:15943336;}}i:358;a:14:{s:2:\"id\";s:3:\"480\";s:6:\"handle\";s:12:\"Dark-ink.jpg\";s:5:\"video\";s:12:\"Dark-ink.mp4\";s:4:\"name\";s:9:\"Dark ink \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:26927;s:11:\"video_thumb\";i:2605391;s:5:\"cover\";i:149830;s:4:\"orig\";i:13232415;}}i:359;a:14:{s:2:\"id\";s:3:\"238\";s:6:\"handle\";s:12:\"Mt_Baker.jpg\";s:5:\"video\";s:12:\"Mt_Baker.mp4\";s:4:\"name\";s:9:\"Mt Baker \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:20000;s:11:\"video_thumb\";i:655504;s:5:\"cover\";i:620066;s:4:\"orig\";i:13229794;}}i:360;a:14:{s:2:\"id\";s:3:\"237\";s:6:\"handle\";s:16:\"Two-Swimmers.jpg\";s:5:\"video\";s:16:\"Two-Swimmers.mp4\";s:4:\"name\";s:13:\"Two Swimmers \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:23213;s:11:\"video_thumb\";i:498407;s:5:\"cover\";i:308442;s:4:\"orig\";i:11108924;}}i:361;a:14:{s:2:\"id\";s:3:\"236\";s:6:\"handle\";s:14:\"Boats_Maze.jpg\";s:5:\"video\";s:14:\"Boats_Maze.mp4\";s:4:\"name\";s:11:\"Boats Maze \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:21648;s:11:\"video_thumb\";i:109062;s:5:\"cover\";i:305957;s:4:\"orig\";i:6267674;}}i:362;a:14:{s:2:\"id\";s:3:\"235\";s:6:\"handle\";s:18:\"Candolim-Beach.jpg\";s:5:\"video\";s:18:\"Candolim-Beach.mp4\";s:4:\"name\";s:15:\"Candolim Beach \";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:19198;s:11:\"video_thumb\";i:326656;s:5:\"cover\";i:554701;s:4:\"orig\";i:10151652;}}i:363;a:14:{s:2:\"id\";s:3:\"234\";s:6:\"handle\";s:17:\"Working-Space.jpg\";s:5:\"video\";s:17:\"Working-Space.mp4\";s:4:\"name\";s:14:\"Working Space \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:14725;s:11:\"video_thumb\";i:72977;s:5:\"cover\";i:72535;s:4:\"orig\";i:4938006;}}i:364;a:14:{s:2:\"id\";s:3:\"233\";s:6:\"handle\";s:9:\"Wavez.jpg\";s:5:\"video\";s:9:\"Wavez.mp4\";s:4:\"name\";s:6:\"Wavez \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:12165;s:11:\"video_thumb\";i:256975;s:5:\"cover\";i:340550;s:4:\"orig\";i:9691449;}}i:365;a:14:{s:2:\"id\";s:3:\"232\";s:6:\"handle\";s:17:\"Coconut-Grove.jpg\";s:5:\"video\";s:17:\"Coconut-Grove.mp4\";s:4:\"name\";s:14:\"Coconut Grove \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:36900;s:11:\"video_thumb\";i:920631;s:5:\"cover\";i:949012;s:4:\"orig\";i:13422013;}}i:366;a:14:{s:2:\"id\";s:3:\"231\";s:6:\"handle\";s:19:\"Very-Open-Space.jpg\";s:5:\"video\";s:19:\"Very-Open-Space.mp4\";s:4:\"name\";s:16:\"Very Open Space \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:17289;s:11:\"video_thumb\";i:137402;s:5:\"cover\";i:300574;s:4:\"orig\";i:7528458;}}i:367;a:14:{s:2:\"id\";s:3:\"230\";s:6:\"handle\";s:14:\"Office-Day.jpg\";s:5:\"video\";s:14:\"Office-Day.mp4\";s:4:\"name\";s:11:\"Office Day \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:16562;s:11:\"video_thumb\";i:161004;s:5:\"cover\";i:291708;s:4:\"orig\";i:7596827;}}i:368;a:14:{s:2:\"id\";s:3:\"229\";s:6:\"handle\";s:12:\"The-Hill.jpg\";s:5:\"video\";s:12:\"The-Hill.mp4\";s:4:\"name\";s:9:\"The Hill \";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";s:9:\"file_size\";a:4:{s:5:\"thumb\";i:19186;s:11:\"video_thumb\";i:404406;s:5:\"cover\";i:496556;s:4:\"orig\";i:15358645;}}i:369;a:14:{s:2:\"id\";s:3:\"339\";s:6:\"handle\";s:19:\"best_price_dark.jpg\";s:5:\"video\";s:19:\"best_price_dark.mp4\";s:4:\"name\";s:15:\"best_price_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"best_price_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-26 09:24:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:11778;s:5:\"video\";i:126230;}}i:370;a:14:{s:2:\"id\";s:3:\"337\";s:6:\"handle\";s:27:\"limited_time_offer_dark.jpg\";s:5:\"video\";s:27:\"limited_time_offer_dark.mp4\";s:4:\"name\";s:23:\"limited_time_offer_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:23:\"limited_time_offer_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-26 09:24:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:9342;s:5:\"video\";i:258890;}}i:371;a:14:{s:2:\"id\";s:3:\"336\";s:6:\"handle\";s:26:\"slider_revolution_dark.jpg\";s:5:\"video\";s:26:\"slider_revolution_dark.mp4\";s:4:\"name\";s:22:\"slider_revolution_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:22:\"slider_revolution_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-26 09:24:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:22925;s:5:\"video\";i:337622;}}i:372;a:14:{s:2:\"id\";s:3:\"335\";s:6:\"handle\";s:19:\"mick_brown_dark.jpg\";s:5:\"video\";s:19:\"mick_brown_dark.mp4\";s:4:\"name\";s:15:\"mick_brown_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"mick_brown_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-26 09:24:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:13590;s:5:\"video\";i:143116;}}i:373;a:14:{s:2:\"id\";s:3:\"334\";s:6:\"handle\";s:14:\"sales_dark.jpg\";s:5:\"video\";s:14:\"sales_dark.mp4\";s:4:\"name\";s:10:\"sales_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:10:\"sales_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:12603;s:5:\"video\";i:267056;}}i:374;a:14:{s:2:\"id\";s:3:\"333\";s:6:\"handle\";s:21:\"robert_smith_dark.jpg\";s:5:\"video\";s:21:\"robert_smith_dark.mp4\";s:4:\"name\";s:17:\"robert_smith_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"robert_smith_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:11225;s:5:\"video\";i:104722;}}i:375;a:14:{s:2:\"id\";s:3:\"332\";s:6:\"handle\";s:21:\"product_name_dark.jpg\";s:5:\"video\";s:21:\"product_name_dark.mp4\";s:4:\"name\";s:17:\"product_name_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"product_name_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:16221;s:5:\"video\";i:183244;}}i:376;a:14:{s:2:\"id\";s:3:\"331\";s:6:\"handle\";s:21:\"high_quality_dark.jpg\";s:5:\"video\";s:21:\"high_quality_dark.mp4\";s:4:\"name\";s:17:\"high_quality_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"high_quality_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:15072;s:5:\"video\";i:90577;}}i:377;a:14:{s:2:\"id\";s:3:\"330\";s:6:\"handle\";s:24:\"robert_johnson_light.jpg\";s:5:\"video\";s:24:\"robert_johnson_light.mp4\";s:4:\"name\";s:20:\"robert_johnson_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:20:\"robert_johnson_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:11741;s:5:\"video\";i:96061;}}i:378;a:14:{s:2:\"id\";s:3:\"329\";s:6:\"handle\";s:21:\"jake_collins_dark.jpg\";s:5:\"video\";s:21:\"jake_collins_dark.mp4\";s:4:\"name\";s:17:\"jake_collins_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"jake_collins_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:15979;s:5:\"video\";i:136040;}}i:379;a:14:{s:2:\"id\";s:3:\"328\";s:6:\"handle\";s:22:\"daniele_wood_light.jpg\";s:5:\"video\";s:22:\"daniele_wood_light.mp4\";s:4:\"name\";s:18:\"daniele_wood_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"daniele_wood_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:31:30\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:13637;s:5:\"video\";i:98053;}}i:380;a:14:{s:2:\"id\";s:3:\"327\";s:6:\"handle\";s:23:\"michael_blake_light.jpg\";s:5:\"video\";s:23:\"michael_blake_light.mp4\";s:4:\"name\";s:19:\"michael_blake_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:19:\"michael_blake_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:14892;s:5:\"video\";i:125449;}}i:381;a:14:{s:2:\"id\";s:3:\"326\";s:6:\"handle\";s:22:\"product_name_light.jpg\";s:5:\"video\";s:22:\"product_name_light.mp4\";s:4:\"name\";s:18:\"product_name_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"product_name_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:16568;s:5:\"video\";i:127133;}}i:382;a:14:{s:2:\"id\";s:3:\"325\";s:6:\"handle\";s:24:\"rebecca_cooper_light.jpg\";s:5:\"video\";s:24:\"rebecca_cooper_light.mp4\";s:4:\"name\";s:20:\"rebecca_cooper_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:20:\"rebecca_cooper_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:19099;s:5:\"video\";i:202784;}}i:383;a:14:{s:2:\"id\";s:3:\"324\";s:6:\"handle\";s:28:\"limited_time_offer_light.jpg\";s:5:\"video\";s:28:\"limited_time_offer_light.mp4\";s:4:\"name\";s:24:\"limited_time_offer_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:24:\"limited_time_offer_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:21756;s:5:\"video\";i:295899;}}i:384;a:14:{s:2:\"id\";s:3:\"322\";s:6:\"handle\";s:22:\"jake_michael_light.jpg\";s:5:\"video\";s:22:\"jake_michael_light.mp4\";s:4:\"name\";s:18:\"jake_michael_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"jake_michael_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:20783;s:5:\"video\";i:279347;}}i:385;a:14:{s:2:\"id\";s:3:\"321\";s:6:\"handle\";s:23:\"colin_johnson_light.jpg\";s:5:\"video\";s:23:\"colin_johnson_light.mp4\";s:4:\"name\";s:19:\"colin_johnson_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:19:\"colin_johnson_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:17862;s:5:\"video\";i:111140;}}i:386;a:14:{s:2:\"id\";s:3:\"320\";s:6:\"handle\";s:21:\"colin_morris_dark.jpg\";s:5:\"video\";s:21:\"colin_morris_dark.mp4\";s:4:\"name\";s:17:\"colin_morris_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"colin_morris_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:10799;s:5:\"video\";i:49269;}}i:387;a:14:{s:2:\"id\";s:3:\"319\";s:6:\"handle\";s:22:\"justin_cooper_dark.jpg\";s:5:\"video\";s:22:\"justin_cooper_dark.mp4\";s:4:\"name\";s:18:\"justin_cooper_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:18:\"justin_cooper_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:14442;s:5:\"video\";i:143950;}}i:388;a:14:{s:2:\"id\";s:3:\"318\";s:6:\"handle\";s:21:\"james-dodson_dark.jpg\";s:5:\"video\";s:21:\"james-dodson_dark.mp4\";s:4:\"name\";s:17:\"james-dodson_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"james-dodson_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:16819;s:5:\"video\";i:142842;}}i:389;a:14:{s:2:\"id\";s:3:\"317\";s:6:\"handle\";s:23:\"robert_sanders_dark.jpg\";s:5:\"video\";s:23:\"robert_sanders_dark.mp4\";s:4:\"name\";s:19:\"robert_sanders_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:19:\"robert_sanders_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:12575;s:5:\"video\";i:106541;}}i:390;a:14:{s:2:\"id\";s:3:\"316\";s:6:\"handle\";s:21:\"emily_carney_dark.jpg\";s:5:\"video\";s:21:\"emily_carney_dark.mp4\";s:4:\"name\";s:17:\"emily_carney_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"emily_carney_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:12931;s:5:\"video\";i:84922;}}i:391;a:14:{s:2:\"id\";s:3:\"315\";s:6:\"handle\";s:22:\"michael-smith_dark.jpg\";s:5:\"video\";s:22:\"michael-smith_dark.mp4\";s:4:\"name\";s:18:\"michael-smith_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:18:\"michael-smith_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:18105;s:5:\"video\";i:184683;}}i:392;a:14:{s:2:\"id\";s:3:\"314\";s:6:\"handle\";s:23:\"sandra_johnson_dark.jpg\";s:5:\"video\";s:23:\"sandra_johnson_dark.mp4\";s:4:\"name\";s:19:\"sandra_johnson_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:19:\"sandra_johnson_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:13440;s:5:\"video\";i:104866;}}i:393;a:14:{s:2:\"id\";s:3:\"313\";s:6:\"handle\";s:22:\"robert_bolton_dark.jpg\";s:5:\"video\";s:22:\"robert_bolton_dark.mp4\";s:4:\"name\";s:18:\"robert_bolton_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:18:\"robert_bolton_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:17477;s:5:\"video\";i:147765;}}i:394;a:14:{s:2:\"id\";s:3:\"312\";s:6:\"handle\";s:25:\"elegant_captions_dark.png\";s:5:\"video\";s:25:\"elegant_captions_dark.mp4\";s:4:\"name\";s:21:\"elegant_captions_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:21:\"elegant_captions_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-18 14:41:45\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:36069;s:5:\"video\";i:104559;}}i:395;a:14:{s:2:\"id\";s:3:\"311\";s:6:\"handle\";s:19:\"Caption_Dark_06.png\";s:5:\"video\";s:19:\"Caption_Dark_06.mp4\";s:4:\"name\";s:15:\"Caption_Dark_06\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_06\";s:5:\"width\";s:3:\"414\";s:6:\"height\";s:3:\"225\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:20095;s:5:\"video\";i:60429;}}i:396;a:14:{s:2:\"id\";s:3:\"310\";s:6:\"handle\";s:19:\"Header_Light_02.png\";s:5:\"video\";s:19:\"Header_Light_02.mp4\";s:4:\"name\";s:15:\"Header_Light_02\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:15:\"Header_Light_02\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:38056;s:5:\"video\";i:45726;}}i:397;a:14:{s:2:\"id\";s:3:\"309\";s:6:\"handle\";s:21:\"Columns_4_Dark_01.png\";s:5:\"video\";s:21:\"Columns_4_Dark_01.mp4\";s:4:\"name\";s:17:\"Columns_4_Dark_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"Columns_4_Dark_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:54736;s:5:\"video\";i:26685;}}i:398;a:14:{s:2:\"id\";s:3:\"308\";s:6:\"handle\";s:18:\"Header_Dark_01.png\";s:5:\"video\";s:18:\"Header_Dark_01.mp4\";s:4:\"name\";s:14:\"Header_Dark_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:14:\"Header_Dark_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:34717;s:5:\"video\";i:16283;}}i:399;a:14:{s:2:\"id\";s:3:\"307\";s:6:\"handle\";s:19:\"Caption_Dark_03.png\";s:5:\"video\";s:19:\"Caption_Dark_03.mp4\";s:4:\"name\";s:15:\"Caption_Dark_03\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_03\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:25700;s:5:\"video\";i:38602;}}i:400;a:14:{s:2:\"id\";s:3:\"306\";s:6:\"handle\";s:21:\"Columns_3_Dark_01.png\";s:5:\"video\";s:21:\"Columns_3_Dark_01.mp4\";s:4:\"name\";s:17:\"Columns_3_Dark_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"Columns_3_Dark_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:55897;s:5:\"video\";i:21279;}}i:401;a:14:{s:2:\"id\";s:3:\"305\";s:6:\"handle\";s:19:\"Caption_Dark_05.png\";s:5:\"video\";s:19:\"Caption_Dark_05.mp4\";s:4:\"name\";s:15:\"Caption_Dark_05\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_05\";s:5:\"width\";s:4:\"1104\";s:6:\"height\";s:3:\"600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:39579;s:5:\"video\";i:22677;}}i:402;a:14:{s:2:\"id\";s:3:\"304\";s:6:\"handle\";s:20:\"Caption_Light_06.png\";s:5:\"video\";s:20:\"Caption_Light_06.mp4\";s:4:\"name\";s:16:\"Caption_Light_06\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_06\";s:5:\"width\";s:3:\"828\";s:6:\"height\";s:3:\"450\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:41903;s:5:\"video\";i:65515;}}i:403;a:14:{s:2:\"id\";s:3:\"303\";s:6:\"handle\";s:19:\"Header_Light_01.png\";s:5:\"video\";s:19:\"Header_Light_01.mp4\";s:4:\"name\";s:15:\"Header_Light_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:15:\"Header_Light_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:25902;s:5:\"video\";i:15295;}}i:404;a:14:{s:2:\"id\";s:3:\"302\";s:6:\"handle\";s:20:\"Caption_Light_03.png\";s:5:\"video\";s:20:\"Caption_Light_03.mp4\";s:4:\"name\";s:16:\"Caption_Light_03\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_03\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:40029;s:5:\"video\";i:28970;}}i:405;a:14:{s:2:\"id\";s:3:\"301\";s:6:\"handle\";s:19:\"Caption_Dark_01.png\";s:5:\"video\";s:19:\"Caption_Dark_01.mp4\";s:4:\"name\";s:15:\"Caption_Dark_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:21834;s:5:\"video\";i:21250;}}i:406;a:14:{s:2:\"id\";s:3:\"300\";s:6:\"handle\";s:21:\"PromoCode_Dark_01.png\";s:5:\"video\";s:21:\"PromoCode_Dark_01.mp4\";s:4:\"name\";s:17:\"PromoCode_Dark_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"PromoCode_Dark_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:36633;s:5:\"video\";i:51973;}}i:407;a:14:{s:2:\"id\";s:3:\"299\";s:6:\"handle\";s:19:\"Caption_Dark_02.png\";s:5:\"video\";s:19:\"Caption_Dark_02.mp4\";s:4:\"name\";s:15:\"Caption_Dark_02\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_02\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:22669;s:5:\"video\";i:46598;}}i:408;a:14:{s:2:\"id\";s:3:\"298\";s:6:\"handle\";s:18:\"Header_Dark_02.png\";s:5:\"video\";s:18:\"Header_Dark_02.mp4\";s:4:\"name\";s:14:\"Header_Dark_02\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:14:\"Header_Dark_02\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:52537;s:5:\"video\";i:29580;}}i:409;a:14:{s:2:\"id\";s:3:\"297\";s:6:\"handle\";s:22:\"Columns_3_Light_01.png\";s:5:\"video\";s:22:\"Columns_3_Light_01.mp4\";s:4:\"name\";s:18:\"Columns_3_Light_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"Columns_3_Light_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:34343;s:5:\"video\";i:18413;}}i:410;a:14:{s:2:\"id\";s:3:\"296\";s:6:\"handle\";s:20:\"Caption_Light_01.png\";s:5:\"video\";s:20:\"Caption_Light_01.mp4\";s:4:\"name\";s:16:\"Caption_Light_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:20519;s:5:\"video\";i:25391;}}i:411;a:14:{s:2:\"id\";s:3:\"295\";s:6:\"handle\";s:19:\"Caption_Dark_04.png\";s:5:\"video\";s:19:\"Caption_Dark_04.mp4\";s:4:\"name\";s:15:\"Caption_Dark_04\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_04\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:16265;s:5:\"video\";i:75634;}}i:412;a:14:{s:2:\"id\";s:3:\"294\";s:6:\"handle\";s:20:\"Caption_Light_02.png\";s:5:\"video\";s:20:\"Caption_Light_02.mp4\";s:4:\"name\";s:16:\"Caption_Light_02\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_02\";s:5:\"width\";s:3:\"828\";s:6:\"height\";s:3:\"450\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:41495;s:5:\"video\";i:49692;}}i:413;a:14:{s:2:\"id\";s:3:\"293\";s:6:\"handle\";s:20:\"Caption_Light_04.png\";s:5:\"video\";s:20:\"Caption_Light_04.mp4\";s:4:\"name\";s:16:\"Caption_Light_04\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_04\";s:5:\"width\";s:4:\"1104\";s:6:\"height\";s:3:\"600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:40417;s:5:\"video\";i:80078;}}i:414;a:14:{s:2:\"id\";s:3:\"292\";s:6:\"handle\";s:22:\"Columns_4_Light_01.png\";s:5:\"video\";s:22:\"Columns_4_Light_01.mp4\";s:4:\"name\";s:18:\"Columns_4_Light_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"Columns_4_Light_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:34150;s:5:\"video\";i:23500;}}i:415;a:14:{s:2:\"id\";s:3:\"291\";s:6:\"handle\";s:20:\"Caption_Light_05.png\";s:5:\"video\";s:20:\"Caption_Light_05.mp4\";s:4:\"name\";s:16:\"Caption_Light_05\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_05\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:15426;s:5:\"video\";i:21651;}}i:416;a:14:{s:2:\"id\";s:3:\"290\";s:6:\"handle\";s:22:\"PromoCode_Light_01.png\";s:5:\"video\";s:22:\"PromoCode_Light_01.mp4\";s:4:\"name\";s:18:\"PromoCode_Light_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"PromoCode_Light_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";s:9:\"file_size\";a:2:{s:5:\"thumb\";i:33524;s:5:\"video\";i:46449;}}}s:4:\"tags\";a:18:{i:28;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}i:5;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:20;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:21;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}i:25;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}i:2;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:16;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}i:26;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}i:18;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:4;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}i:19;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:23;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}i:3;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:24;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}i:22;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:29;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}i:27;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}}','off'),(220,'revslider-templates-check','1746172481','yes'),(221,'revslider-templates-hash','2fe7278c8b3c1b25dd4f5eff7e5566cc','yes'),(222,'rs-templates-counter','0','off'),(223,'revslider_table_version','1.0.9','yes'),(226,'revslider_update_version','6.4.10','yes'),(227,'widget_mkdf_instagram_widget','a:3:{i:2;a:7:{s:5:\"title\";s:0:\"\";s:4:\"type\";s:7:\"gallery\";s:14:\"number_of_cols\";s:1:\"4\";s:16:\"number_of_photos\";s:0:\"\";s:10:\"image_size\";s:9:\"thumbnail\";s:19:\"space_between_items\";s:4:\"tiny\";s:14:\"transient_time\";s:0:\"\";}i:3;a:7:{s:5:\"title\";s:9:\"Instagram\";s:4:\"type\";s:7:\"gallery\";s:14:\"number_of_cols\";s:1:\"3\";s:16:\"number_of_photos\";s:1:\"6\";s:10:\"image_size\";s:14:\"low_resolution\";s:19:\"space_between_items\";s:4:\"tiny\";s:14:\"transient_time\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(228,'widget_mkdf_login_register_widget','a:3:{i:2;a:0:{}i:3;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(229,'widget_mkdf_twitter_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(230,'widget_rev-slider-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(231,'widget_mkdf_blog_categories_widget','a:2:{i:2;a:6:{s:12:\"widget_title\";s:13:\"Chuyên mục\";s:15:\"number_of_items\";s:0:\"\";s:8:\"category\";s:0:\"\";s:8:\"order_by\";s:4:\"date\";s:5:\"order\";s:3:\"ASC\";s:9:\"title_tag\";s:2:\"h6\";}s:12:\"_multiwidget\";i:1;}','yes'),(232,'widget_mkdf_blog_list_widget','a:2:{i:2;a:9:{s:12:\"widget_title\";s:22:\"Bạn có thể thích\";s:4:\"type\";s:6:\"simple\";s:15:\"number_of_posts\";s:1:\"3\";s:21:\"space_between_columns\";s:6:\"normal\";s:8:\"order_by\";s:4:\"date\";s:5:\"order\";s:3:\"ASC\";s:8:\"category\";s:10:\"motivation\";s:9:\"title_tag\";s:2:\"h6\";s:15:\"title_transform\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(233,'widget_mkdf_button_widget','a:2:{i:2;a:12:{s:4:\"type\";s:5:\"solid\";s:4:\"size\";s:5:\"small\";s:4:\"text\";s:8:\"Purchase\";s:4:\"link\";s:127:\"https://themeforest.net/item/iacademy-a-comprehensive-learning-management-system-and-education-theme/20198007?ref=Mikado-Themes\";s:6:\"target\";s:6:\"_blank\";s:5:\"color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:16:\"background_color\";s:0:\"\";s:22:\"hover_background_color\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:18:\"hover_border_color\";s:0:\"\";s:6:\"margin\";s:12:\"11px 0px 0px\";}s:12:\"_multiwidget\";i:1;}','yes'),(234,'widget_mkdf_icon_widget','a:6:{i:2;a:14:{s:9:\"icon_pack\";s:17:\"simple_line_icons\";s:7:\"fa_icon\";s:0:\"\";s:7:\"fe_icon\";s:0:\"\";s:8:\"ion_icon\";s:0:\"\";s:10:\"linea_icon\";s:0:\"\";s:11:\"linear_icon\";s:0:\"\";s:16:\"simple_line_icon\";s:12:\"icon-call-in\";s:9:\"icon_text\";s:15:\"1-677-124-44227\";s:4:\"link\";s:1:\"#\";s:6:\"target\";s:5:\"_self\";s:9:\"icon_size\";s:2:\"17\";s:10:\"icon_color\";s:7:\"#282727\";s:16:\"icon_hover_color\";s:7:\"#d8a64e\";s:11:\"icon_margin\";s:8:\"0 0 15px\";}i:3;a:14:{s:9:\"icon_pack\";s:17:\"simple_line_icons\";s:7:\"fa_icon\";s:0:\"\";s:7:\"fe_icon\";s:0:\"\";s:8:\"ion_icon\";s:0:\"\";s:10:\"linea_icon\";s:0:\"\";s:11:\"linear_icon\";s:0:\"\";s:16:\"simple_line_icon\";s:10:\"icon-clock\";s:9:\"icon_text\";s:22:\"Mon - Sat 8.00 - 18.00\";s:4:\"link\";s:1:\"#\";s:6:\"target\";s:5:\"_self\";s:9:\"icon_size\";s:2:\"15\";s:10:\"icon_color\";s:7:\"#282727\";s:16:\"icon_hover_color\";s:7:\"#d8a64e\";s:11:\"icon_margin\";s:0:\"\";}i:4;a:14:{s:9:\"icon_pack\";s:12:\"font_awesome\";s:7:\"fa_icon\";s:8:\"fa-phone\";s:7:\"fe_icon\";s:0:\"\";s:8:\"ion_icon\";s:0:\"\";s:10:\"linea_icon\";s:0:\"\";s:11:\"linear_icon\";s:0:\"\";s:16:\"simple_line_icon\";s:0:\"\";s:9:\"icon_text\";s:10:\"0932010363\";s:4:\"link\";s:0:\"\";s:6:\"target\";s:5:\"_self\";s:9:\"icon_size\";s:2:\"16\";s:10:\"icon_color\";s:7:\"#ffffff\";s:16:\"icon_hover_color\";s:7:\"#d8a64E\";s:11:\"icon_margin\";s:8:\"0 0 15px\";}i:5;a:14:{s:9:\"icon_pack\";s:12:\"font_awesome\";s:7:\"fa_icon\";s:10:\"fa-clock-o\";s:7:\"fe_icon\";s:0:\"\";s:8:\"ion_icon\";s:0:\"\";s:10:\"linea_icon\";s:0:\"\";s:11:\"linear_icon\";s:0:\"\";s:16:\"simple_line_icon\";s:0:\"\";s:9:\"icon_text\";s:31:\"Thứ 2 - Thứ 7: 8:00 - 17:00\";s:4:\"link\";s:0:\"\";s:6:\"target\";s:5:\"_self\";s:9:\"icon_size\";s:2:\"16\";s:10:\"icon_color\";s:7:\"#ffffff\";s:16:\"icon_hover_color\";s:7:\"#d8a64e\";s:11:\"icon_margin\";s:0:\"\";}s:12:\"_multiwidget\";i:1;i:7;a:14:{s:9:\"icon_pack\";s:12:\"font_awesome\";s:7:\"fa_icon\";s:13:\"fa-map-marker\";s:7:\"fe_icon\";s:0:\"\";s:8:\"ion_icon\";s:0:\"\";s:10:\"linea_icon\";s:0:\"\";s:11:\"linear_icon\";s:0:\"\";s:16:\"simple_line_icon\";s:0:\"\";s:9:\"icon_text\";s:74:\"277/47 Xô Viết Nghệ Tĩnh, Phường 15, Quận Bình Thạnh, TP.HCM\";s:4:\"link\";s:0:\"\";s:6:\"target\";s:5:\"_self\";s:9:\"icon_size\";s:2:\"16\";s:10:\"icon_color\";s:7:\"#ffffff\";s:16:\"icon_hover_color\";s:7:\"#d8a64e\";s:11:\"icon_margin\";s:0:\"\";}}','on'),(235,'widget_mkdf_image_gallery_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(236,'widget_mkdf_image_widget','a:7:{i:2;a:8:{s:11:\"extra_class\";s:0:\"\";s:12:\"widget_title\";s:0:\"\";s:9:\"image_src\";s:84:\"http://iacademy.mikado-themes.com/wp-content/uploads/2017/06/shop-sidebar-banner.jpg\";s:9:\"image_alt\";s:1:\"a\";s:11:\"image_width\";s:0:\"\";s:12:\"image_height\";s:0:\"\";s:4:\"link\";s:34:\"http://iacademy.mikado-themes.com/\";s:6:\"target\";s:5:\"_self\";}i:3;a:8:{s:11:\"extra_class\";s:0:\"\";s:12:\"widget_title\";s:17:\"Flexible Learning\";s:9:\"image_src\";s:77:\"http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/footer-img-1.png\";s:9:\"image_alt\";s:1:\"a\";s:11:\"image_width\";s:0:\"\";s:12:\"image_height\";s:0:\"\";s:4:\"link\";s:1:\"#\";s:6:\"target\";s:5:\"_self\";}i:4;a:8:{s:11:\"extra_class\";s:0:\"\";s:12:\"widget_title\";s:0:\"\";s:9:\"image_src\";s:81:\"http://iacademy.mikado-themes.com/wp-content/uploads/2017/06/logo-footer-dark.png\";s:9:\"image_alt\";s:1:\"a\";s:11:\"image_width\";s:5:\"137px\";s:12:\"image_height\";s:4:\"27px\";s:4:\"link\";s:1:\"#\";s:6:\"target\";s:5:\"_self\";}i:5;a:8:{s:11:\"extra_class\";s:0:\"\";s:12:\"widget_title\";s:0:\"\";s:9:\"image_src\";s:78:\"http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/sidearea-logo.png\";s:9:\"image_alt\";s:1:\"a\";s:11:\"image_width\";s:4:\"79px\";s:12:\"image_height\";s:4:\"79px\";s:4:\"link\";s:33:\"http://iacademy.mikado-themes.com\";s:6:\"target\";s:5:\"_self\";}i:6;a:8:{s:11:\"extra_class\";s:0:\"\";s:12:\"widget_title\";s:0:\"\";s:9:\"image_src\";s:95:\"http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/course-sidebar-certificate-img.jpg\";s:9:\"image_alt\";s:1:\"a\";s:11:\"image_width\";s:0:\"\";s:12:\"image_height\";s:0:\"\";s:4:\"link\";s:34:\"http://iacademy.mikado-themes.com/\";s:6:\"target\";s:5:\"_self\";}i:7;a:8:{s:11:\"extra_class\";s:0:\"\";s:12:\"widget_title\";s:0:\"\";s:9:\"image_src\";s:70:\"http://giasuolympia.com/wp-content/uploads/2024/10/logo_olympia_ko.png\";s:9:\"image_alt\";s:1:\"a\";s:11:\"image_width\";s:5:\"137px\";s:12:\"image_height\";s:4:\"27px\";s:4:\"link\";s:1:\"#\";s:6:\"target\";s:5:\"_self\";}s:12:\"_multiwidget\";i:1;}','on'),(237,'widget_mkdf_raw_html_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(238,'widget_mkdf_search_opener','a:2:{i:2;a:5:{s:16:\"search_icon_size\";s:0:\"\";s:17:\"search_icon_color\";s:0:\"\";s:23:\"search_icon_hover_color\";s:0:\"\";s:18:\"search_icon_margin\";s:0:\"\";s:10:\"show_label\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(239,'widget_mkdf_search_post_type','a:2:{i:2;a:1:{s:9:\"post_type\";s:6:\"course\";}s:12:\"_multiwidget\";i:1;}','yes'),(240,'widget_mkdf_separator_widget','a:15:{i:2;a:8:{s:4:\"type\";s:6:\"normal\";s:8:\"position\";s:6:\"center\";s:12:\"border_style\";s:5:\"solid\";s:5:\"color\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thickness\";s:0:\"\";s:10:\"top_margin\";s:1:\"0\";s:13:\"bottom_margin\";s:1:\"6\";}i:4;a:8:{s:4:\"type\";s:6:\"normal\";s:8:\"position\";s:6:\"center\";s:12:\"border_style\";s:5:\"solid\";s:5:\"color\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thickness\";s:0:\"\";s:10:\"top_margin\";s:2:\"15\";s:13:\"bottom_margin\";s:1:\"0\";}i:5;a:8:{s:4:\"type\";s:6:\"normal\";s:8:\"position\";s:6:\"center\";s:12:\"border_style\";s:5:\"solid\";s:5:\"color\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thickness\";s:0:\"\";s:10:\"top_margin\";s:2:\"36\";s:13:\"bottom_margin\";s:1:\"0\";}i:7;a:8:{s:4:\"type\";s:6:\"normal\";s:8:\"position\";s:6:\"center\";s:12:\"border_style\";s:5:\"solid\";s:5:\"color\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thickness\";s:0:\"\";s:10:\"top_margin\";s:2:\"22\";s:13:\"bottom_margin\";s:1:\"0\";}i:8;a:8:{s:4:\"type\";s:6:\"normal\";s:8:\"position\";s:6:\"center\";s:12:\"border_style\";s:5:\"solid\";s:5:\"color\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thickness\";s:0:\"\";s:10:\"top_margin\";s:1:\"0\";s:13:\"bottom_margin\";s:1:\"4\";}i:9;a:8:{s:4:\"type\";s:6:\"normal\";s:8:\"position\";s:6:\"center\";s:12:\"border_style\";s:5:\"solid\";s:5:\"color\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thickness\";s:0:\"\";s:10:\"top_margin\";s:1:\"0\";s:13:\"bottom_margin\";s:2:\"22\";}i:10;a:8:{s:4:\"type\";s:6:\"normal\";s:8:\"position\";s:6:\"center\";s:12:\"border_style\";s:5:\"solid\";s:5:\"color\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thickness\";s:0:\"\";s:10:\"top_margin\";s:4:\"15px\";s:13:\"bottom_margin\";s:1:\"0\";}i:11;a:8:{s:4:\"type\";s:6:\"normal\";s:8:\"position\";s:6:\"center\";s:12:\"border_style\";s:5:\"solid\";s:5:\"color\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thickness\";s:0:\"\";s:10:\"top_margin\";s:1:\"0\";s:13:\"bottom_margin\";s:1:\"2\";}i:12;a:8:{s:4:\"type\";s:6:\"normal\";s:8:\"position\";s:6:\"center\";s:12:\"border_style\";s:5:\"solid\";s:5:\"color\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thickness\";s:0:\"\";s:10:\"top_margin\";s:1:\"0\";s:13:\"bottom_margin\";s:2:\"26\";}i:13;a:8:{s:4:\"type\";s:6:\"normal\";s:8:\"position\";s:6:\"center\";s:12:\"border_style\";s:5:\"solid\";s:5:\"color\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thickness\";s:0:\"\";s:10:\"top_margin\";s:1:\"0\";s:13:\"bottom_margin\";s:2:\"26\";}i:14;a:8:{s:4:\"type\";s:6:\"normal\";s:8:\"position\";s:6:\"center\";s:12:\"border_style\";s:5:\"solid\";s:5:\"color\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thickness\";s:0:\"\";s:10:\"top_margin\";s:1:\"0\";s:13:\"bottom_margin\";s:2:\"30\";}i:15;a:8:{s:4:\"type\";s:6:\"normal\";s:8:\"position\";s:6:\"center\";s:12:\"border_style\";s:5:\"solid\";s:5:\"color\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thickness\";s:0:\"\";s:10:\"top_margin\";s:1:\"0\";s:13:\"bottom_margin\";s:2:\"28\";}i:17;a:8:{s:4:\"type\";s:6:\"normal\";s:8:\"position\";s:6:\"center\";s:12:\"border_style\";s:5:\"solid\";s:5:\"color\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thickness\";s:0:\"\";s:10:\"top_margin\";s:1:\"0\";s:13:\"bottom_margin\";s:2:\"25\";}i:19;a:8:{s:4:\"type\";s:6:\"normal\";s:8:\"position\";s:6:\"center\";s:12:\"border_style\";s:5:\"solid\";s:5:\"color\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thickness\";s:0:\"\";s:10:\"top_margin\";s:4:\"15px\";s:13:\"bottom_margin\";s:1:\"0\";}s:12:\"_multiwidget\";i:1;}','yes'),(241,'widget_mkdf_side_area_opener','a:2:{i:2;a:4:{s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"widget_margin\";s:0:\"\";s:12:\"widget_title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(242,'widget_mkdf_social_icon_widget','a:10:{i:2;a:11:{s:9:\"icon_pack\";s:12:\"font_elegant\";s:7:\"fa_icon\";s:0:\"\";s:7:\"fe_icon\";s:14:\"social_twitter\";s:8:\"ion_icon\";s:0:\"\";s:16:\"simple_line_icon\";s:0:\"\";s:4:\"link\";s:22:\"http://www.twitter.com\";s:6:\"target\";s:6:\"_blank\";s:9:\"icon_size\";s:2:\"12\";s:5:\"color\";s:7:\"#606264\";s:11:\"hover_color\";s:7:\"#d8a64e\";s:6:\"margin\";s:0:\"\";}i:3;a:11:{s:9:\"icon_pack\";s:12:\"font_awesome\";s:7:\"fa_icon\";s:12:\"fa-instagram\";s:7:\"fe_icon\";s:16:\"social_instagram\";s:8:\"ion_icon\";s:0:\"\";s:16:\"simple_line_icon\";s:0:\"\";s:4:\"link\";s:24:\"http://www.instagram.com\";s:6:\"target\";s:6:\"_blank\";s:9:\"icon_size\";s:2:\"15\";s:5:\"color\";s:7:\"#959595\";s:11:\"hover_color\";s:7:\"#d8a64e\";s:6:\"margin\";s:6:\"0 23px\";}i:4;a:11:{s:9:\"icon_pack\";s:12:\"font_elegant\";s:7:\"fa_icon\";s:0:\"\";s:7:\"fe_icon\";s:15:\"social_facebook\";s:8:\"ion_icon\";s:0:\"\";s:16:\"simple_line_icon\";s:0:\"\";s:4:\"link\";s:23:\"http://www.facebook.com\";s:6:\"target\";s:5:\"_self\";s:9:\"icon_size\";s:2:\"12\";s:5:\"color\";s:7:\"#606264\";s:11:\"hover_color\";s:7:\"#d8a64e\";s:6:\"margin\";s:0:\"\";}i:5;a:11:{s:9:\"icon_pack\";s:12:\"font_elegant\";s:7:\"fa_icon\";s:0:\"\";s:7:\"fe_icon\";s:14:\"social_twitter\";s:8:\"ion_icon\";s:0:\"\";s:16:\"simple_line_icon\";s:0:\"\";s:4:\"link\";s:19:\"https://twitter.com\";s:6:\"target\";s:6:\"_blank\";s:9:\"icon_size\";s:2:\"18\";s:5:\"color\";s:7:\"#55acee\";s:11:\"hover_color\";s:7:\"#17b7fe\";s:6:\"margin\";s:16:\"0px 12px 0px 0px\";}i:7;a:11:{s:9:\"icon_pack\";s:12:\"font_awesome\";s:7:\"fa_icon\";s:14:\"fa-google-plus\";s:7:\"fe_icon\";s:17:\"social_googleplus\";s:8:\"ion_icon\";s:0:\"\";s:16:\"simple_line_icon\";s:0:\"\";s:4:\"link\";s:23:\"https://plus.google.com\";s:6:\"target\";s:6:\"_blank\";s:9:\"icon_size\";s:2:\"18\";s:5:\"color\";s:7:\"#dc4d40\";s:11:\"hover_color\";s:7:\"#e93c2d\";s:6:\"margin\";s:16:\"0px 10px 0px 0px\";}i:6;a:11:{s:9:\"icon_pack\";s:12:\"font_elegant\";s:7:\"fa_icon\";s:0:\"\";s:7:\"fe_icon\";s:15:\"social_facebook\";s:8:\"ion_icon\";s:0:\"\";s:16:\"simple_line_icon\";s:0:\"\";s:4:\"link\";s:24:\"https://www.facebook.com\";s:6:\"target\";s:6:\"_blank\";s:9:\"icon_size\";s:2:\"18\";s:5:\"color\";s:7:\"#3b5998\";s:11:\"hover_color\";s:7:\"#3c63b6\";s:6:\"margin\";s:16:\"0px 12px 0px 0px\";}i:8;a:11:{s:9:\"icon_pack\";s:12:\"font_elegant\";s:7:\"fa_icon\";s:0:\"\";s:7:\"fe_icon\";s:14:\"social_twitter\";s:8:\"ion_icon\";s:0:\"\";s:16:\"simple_line_icon\";s:0:\"\";s:4:\"link\";s:22:\"http://www.twitter.com\";s:6:\"target\";s:6:\"_blank\";s:9:\"icon_size\";s:2:\"14\";s:5:\"color\";s:7:\"#959595\";s:11:\"hover_color\";s:7:\"#d8a64e\";s:6:\"margin\";s:10:\"0 0 0 21px\";}i:9;a:11:{s:9:\"icon_pack\";s:12:\"font_awesome\";s:7:\"fa_icon\";s:12:\"fa-instagram\";s:7:\"fe_icon\";s:16:\"social_instagram\";s:8:\"ion_icon\";s:0:\"\";s:16:\"simple_line_icon\";s:0:\"\";s:4:\"link\";s:25:\"htttp://www.instagram.com\";s:6:\"target\";s:6:\"_blank\";s:9:\"icon_size\";s:2:\"15\";s:5:\"color\";s:7:\"#606264\";s:11:\"hover_color\";s:7:\"#d8a64e\";s:6:\"margin\";s:6:\"0 14px\";}i:10;a:11:{s:9:\"icon_pack\";s:12:\"font_elegant\";s:7:\"fa_icon\";s:0:\"\";s:7:\"fe_icon\";s:15:\"social_facebook\";s:8:\"ion_icon\";s:0:\"\";s:16:\"simple_line_icon\";s:0:\"\";s:4:\"link\";s:23:\"http://www.facebook.com\";s:6:\"target\";s:5:\"_self\";s:9:\"icon_size\";s:2:\"13\";s:5:\"color\";s:7:\"#959595\";s:11:\"hover_color\";s:7:\"#d8a64e\";s:6:\"margin\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(243,'widget_mkdf_course_categories_widget','a:2:{i:2;a:6:{s:12:\"widget_title\";s:13:\"Chuyên mục\";s:15:\"number_of_items\";s:0:\"\";s:8:\"category\";s:0:\"\";s:8:\"order_by\";s:4:\"name\";s:5:\"order\";s:3:\"ASC\";s:9:\"title_tag\";s:2:\"h6\";}s:12:\"_multiwidget\";i:1;}','yes'),(244,'widget_mkdf_course_features_widget','a:2:{i:2;a:7:{s:12:\"widget_title\";s:23:\"Tính năng khóa học\";s:9:\"course_id\";s:0:\"\";s:15:\"course_duration\";s:3:\"yes\";s:12:\"course_units\";s:3:\"yes\";s:15:\"course_students\";s:3:\"yes\";s:19:\"course_pass_percent\";s:3:\"yes\";s:14:\"course_retakes\";s:3:\"yes\";}s:12:\"_multiwidget\";i:1;}','yes'),(245,'widget_mkdf_course_list_widget','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(246,'vc_version','6.6.0','yes'),(247,'mkdf_options_iacademy','a:711:{s:9:\"hide_logo\";s:2:\"no\";s:10:\"logo_image\";s:70:\"http://giasuolympia.com/wp-content/uploads/2024/10/logo_olympia_ko.png\";s:15:\"logo_image_dark\";s:70:\"http://giasuolympia.com/wp-content/uploads/2024/10/logo_olympia_ko.png\";s:16:\"logo_image_light\";s:70:\"http://giasuolympia.com/wp-content/uploads/2024/10/logo_olympia_ko.png\";s:17:\"logo_image_sticky\";s:70:\"http://giasuolympia.com/wp-content/uploads/2024/10/logo_olympia_ko.png\";s:17:\"logo_image_mobile\";s:70:\"http://giasuolympia.com/wp-content/uploads/2024/10/logo_olympia_ko.png\";s:12:\"google_fonts\";s:2:\"-1\";s:23:\"additional_google_fonts\";s:2:\"no\";s:23:\"additional_google_font1\";s:12:\"Merriweather\";s:23:\"additional_google_font2\";s:2:\"-1\";s:23:\"additional_google_font3\";s:2:\"-1\";s:23:\"additional_google_font4\";s:2:\"-1\";s:23:\"additional_google_font5\";s:2:\"-1\";s:18:\"google_font_weight\";a:1:{i:0;s:0:\"\";}s:18:\"google_font_subset\";a:1:{i:0;s:0:\"\";}s:11:\"first_color\";s:7:\"#f2bd37\";s:22:\"first_color_additional\";s:0:\"\";s:12:\"second_color\";s:0:\"\";s:21:\"page_background_color\";s:0:\"\";s:21:\"page_background_image\";s:84:\"http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/page-background-img.png\";s:15:\"selection_color\";s:0:\"\";s:5:\"boxed\";s:2:\"no\";s:28:\"page_background_color_in_box\";s:0:\"\";s:22:\"boxed_background_image\";s:0:\"\";s:30:\"boxed_pattern_background_image\";s:0:\"\";s:33:\"boxed_background_image_attachment\";s:0:\"\";s:8:\"paspartu\";s:2:\"no\";s:14:\"paspartu_color\";s:0:\"\";s:14:\"paspartu_width\";s:0:\"\";s:20:\"disable_top_paspartu\";s:2:\"no\";s:21:\"initial_content_width\";s:14:\"mkdf-grid-1300\";s:21:\"preload_pattern_image\";s:0:\"\";s:18:\"page_smooth_scroll\";s:2:\"no\";s:23:\"smooth_page_transitions\";s:3:\"yes\";s:25:\"page_transition_preloader\";s:2:\"no\";s:20:\"smooth_pt_bgnd_color\";s:0:\"\";s:22:\"smooth_pt_spinner_type\";s:0:\"\";s:23:\"smooth_pt_spinner_color\";s:0:\"\";s:23:\"page_transition_fadeout\";s:3:\"yes\";s:16:\"show_back_button\";s:3:\"yes\";s:14:\"responsiveness\";s:3:\"yes\";s:9:\"custom_js\";s:0:\"\";s:19:\"google_maps_api_key\";s:0:\"\";s:8:\"h1_color\";s:0:\"\";s:12:\"h1_font_size\";s:0:\"\";s:14:\"h1_line_height\";s:0:\"\";s:17:\"h1_text_transform\";s:0:\"\";s:15:\"h1_google_fonts\";s:2:\"-1\";s:13:\"h1_font_style\";s:0:\"\";s:14:\"h1_font_weight\";s:0:\"\";s:17:\"h1_letter_spacing\";s:0:\"\";s:13:\"h1_margin_top\";s:0:\"\";s:16:\"h1_margin_bottom\";s:0:\"\";s:8:\"h2_color\";s:0:\"\";s:12:\"h2_font_size\";s:0:\"\";s:14:\"h2_line_height\";s:0:\"\";s:17:\"h2_text_transform\";s:0:\"\";s:15:\"h2_google_fonts\";s:2:\"-1\";s:13:\"h2_font_style\";s:0:\"\";s:14:\"h2_font_weight\";s:0:\"\";s:17:\"h2_letter_spacing\";s:0:\"\";s:13:\"h2_margin_top\";s:0:\"\";s:16:\"h2_margin_bottom\";s:0:\"\";s:8:\"h3_color\";s:0:\"\";s:12:\"h3_font_size\";s:0:\"\";s:14:\"h3_line_height\";s:0:\"\";s:17:\"h3_text_transform\";s:0:\"\";s:15:\"h3_google_fonts\";s:2:\"-1\";s:13:\"h3_font_style\";s:0:\"\";s:14:\"h3_font_weight\";s:0:\"\";s:17:\"h3_letter_spacing\";s:0:\"\";s:13:\"h3_margin_top\";s:0:\"\";s:16:\"h3_margin_bottom\";s:0:\"\";s:8:\"h4_color\";s:0:\"\";s:12:\"h4_font_size\";s:0:\"\";s:14:\"h4_line_height\";s:0:\"\";s:17:\"h4_text_transform\";s:0:\"\";s:15:\"h4_google_fonts\";s:2:\"-1\";s:13:\"h4_font_style\";s:0:\"\";s:14:\"h4_font_weight\";s:0:\"\";s:17:\"h4_letter_spacing\";s:0:\"\";s:13:\"h4_margin_top\";s:0:\"\";s:16:\"h4_margin_bottom\";s:0:\"\";s:8:\"h5_color\";s:0:\"\";s:12:\"h5_font_size\";s:0:\"\";s:14:\"h5_line_height\";s:0:\"\";s:17:\"h5_text_transform\";s:0:\"\";s:15:\"h5_google_fonts\";s:2:\"-1\";s:13:\"h5_font_style\";s:0:\"\";s:14:\"h5_font_weight\";s:0:\"\";s:17:\"h5_letter_spacing\";s:0:\"\";s:13:\"h5_margin_top\";s:0:\"\";s:16:\"h5_margin_bottom\";s:0:\"\";s:8:\"h6_color\";s:0:\"\";s:12:\"h6_font_size\";s:0:\"\";s:14:\"h6_line_height\";s:0:\"\";s:17:\"h6_text_transform\";s:0:\"\";s:15:\"h6_google_fonts\";s:2:\"-1\";s:13:\"h6_font_style\";s:0:\"\";s:14:\"h6_font_weight\";s:0:\"\";s:17:\"h6_letter_spacing\";s:0:\"\";s:13:\"h6_margin_top\";s:0:\"\";s:16:\"h6_margin_bottom\";s:0:\"\";s:25:\"h1_responsive_font_size_3\";s:0:\"\";s:27:\"h1_responsive_line_height_3\";s:0:\"\";s:30:\"h1_responsive_letter_spacing_3\";s:0:\"\";s:25:\"h2_responsive_font_size_3\";s:0:\"\";s:27:\"h2_responsive_line_height_3\";s:0:\"\";s:30:\"h2_responsive_letter_spacing_3\";s:0:\"\";s:25:\"h3_responsive_font_size_3\";s:0:\"\";s:27:\"h3_responsive_line_height_3\";s:0:\"\";s:30:\"h3_responsive_letter_spacing_3\";s:0:\"\";s:25:\"h4_responsive_font_size_3\";s:0:\"\";s:27:\"h4_responsive_line_height_3\";s:0:\"\";s:30:\"h4_responsive_letter_spacing_3\";s:0:\"\";s:25:\"h5_responsive_font_size_3\";s:0:\"\";s:27:\"h5_responsive_line_height_3\";s:0:\"\";s:30:\"h5_responsive_letter_spacing_3\";s:0:\"\";s:25:\"h6_responsive_font_size_3\";s:0:\"\";s:27:\"h6_responsive_line_height_3\";s:0:\"\";s:30:\"h6_responsive_letter_spacing_3\";s:0:\"\";s:23:\"h1_responsive_font_size\";s:0:\"\";s:25:\"h1_responsive_line_height\";s:0:\"\";s:28:\"h1_responsive_letter_spacing\";s:0:\"\";s:23:\"h2_responsive_font_size\";s:0:\"\";s:25:\"h2_responsive_line_height\";s:0:\"\";s:28:\"h2_responsive_letter_spacing\";s:0:\"\";s:23:\"h3_responsive_font_size\";s:0:\"\";s:25:\"h3_responsive_line_height\";s:0:\"\";s:28:\"h3_responsive_letter_spacing\";s:0:\"\";s:23:\"h4_responsive_font_size\";s:0:\"\";s:25:\"h4_responsive_line_height\";s:0:\"\";s:28:\"h4_responsive_letter_spacing\";s:0:\"\";s:23:\"h5_responsive_font_size\";s:0:\"\";s:25:\"h5_responsive_line_height\";s:0:\"\";s:28:\"h5_responsive_letter_spacing\";s:0:\"\";s:23:\"h6_responsive_font_size\";s:0:\"\";s:25:\"h6_responsive_line_height\";s:0:\"\";s:28:\"h6_responsive_letter_spacing\";s:0:\"\";s:25:\"h1_responsive_font_size_2\";s:0:\"\";s:27:\"h1_responsive_line_height_2\";s:0:\"\";s:30:\"h1_responsive_letter_spacing_2\";s:0:\"\";s:25:\"h2_responsive_font_size_2\";s:2:\"24\";s:27:\"h2_responsive_line_height_2\";s:2:\"34\";s:30:\"h2_responsive_letter_spacing_2\";s:0:\"\";s:25:\"h3_responsive_font_size_2\";s:0:\"\";s:27:\"h3_responsive_line_height_2\";s:0:\"\";s:30:\"h3_responsive_letter_spacing_2\";s:0:\"\";s:25:\"h4_responsive_font_size_2\";s:0:\"\";s:27:\"h4_responsive_line_height_2\";s:0:\"\";s:30:\"h4_responsive_letter_spacing_2\";s:0:\"\";s:25:\"h5_responsive_font_size_2\";s:0:\"\";s:27:\"h5_responsive_line_height_2\";s:0:\"\";s:30:\"h5_responsive_letter_spacing_2\";s:0:\"\";s:25:\"h6_responsive_font_size_2\";s:0:\"\";s:27:\"h6_responsive_line_height_2\";s:0:\"\";s:30:\"h6_responsive_letter_spacing_2\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:14:\"text_font_size\";s:0:\"\";s:16:\"text_line_height\";s:0:\"\";s:19:\"text_text_transform\";s:0:\"\";s:17:\"text_google_fonts\";s:2:\"-1\";s:15:\"text_font_style\";s:0:\"\";s:16:\"text_font_weight\";s:0:\"\";s:19:\"text_letter_spacing\";s:0:\"\";s:19:\"text_font_size_res1\";s:0:\"\";s:21:\"text_line_height_res1\";s:0:\"\";s:24:\"text_letter_spacing_res1\";s:0:\"\";s:19:\"text_font_size_res2\";s:0:\"\";s:21:\"text_line_height_res2\";s:0:\"\";s:24:\"text_letter_spacing_res2\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:15:\"link_hovercolor\";s:0:\"\";s:14:\"link_fontstyle\";s:0:\"\";s:15:\"link_fontweight\";s:0:\"\";s:19:\"link_fontdecoration\";s:0:\"\";s:25:\"link_hover_fontdecoration\";s:0:\"\";s:11:\"header_type\";s:15:\"header-standard\";s:16:\"header_behaviour\";s:15:\"fixed-on-scroll\";s:12:\"header_style\";s:0:\"\";s:7:\"top_bar\";s:2:\"no\";s:15:\"top_bar_in_grid\";s:3:\"yes\";s:29:\"top_bar_grid_background_color\";s:0:\"\";s:36:\"top_bar_grid_background_transparency\";s:0:\"\";s:24:\"top_bar_background_color\";s:0:\"\";s:31:\"top_bar_background_transparency\";s:0:\"\";s:14:\"top_bar_border\";s:3:\"yes\";s:20:\"top_bar_border_color\";s:0:\"\";s:14:\"top_bar_height\";s:0:\"\";s:17:\"logo_area_in_grid\";s:2:\"no\";s:31:\"logo_area_grid_background_color\";s:0:\"\";s:38:\"logo_area_grid_background_transparency\";s:0:\"\";s:24:\"logo_area_in_grid_border\";s:2:\"no\";s:30:\"logo_area_in_grid_border_color\";s:0:\"\";s:26:\"logo_area_background_color\";s:0:\"\";s:33:\"logo_area_background_transparency\";s:0:\"\";s:16:\"logo_area_border\";s:2:\"no\";s:22:\"logo_area_border_color\";s:0:\"\";s:16:\"logo_area_height\";s:0:\"\";s:17:\"menu_area_in_grid\";s:3:\"yes\";s:31:\"menu_area_grid_background_color\";s:0:\"\";s:38:\"menu_area_grid_background_transparency\";s:0:\"\";s:24:\"menu_area_in_grid_shadow\";s:2:\"no\";s:24:\"menu_area_in_grid_border\";s:2:\"no\";s:30:\"menu_area_in_grid_border_color\";s:0:\"\";s:26:\"menu_area_background_color\";s:0:\"\";s:33:\"menu_area_background_transparency\";s:0:\"\";s:16:\"menu_area_shadow\";s:2:\"no\";s:16:\"menu_area_border\";s:2:\"no\";s:22:\"menu_area_border_color\";s:0:\"\";s:16:\"menu_area_height\";s:0:\"\";s:31:\"fullscreen_menu_animation_style\";s:20:\"fade-push-text-right\";s:18:\"fullscreen_in_grid\";s:2:\"no\";s:20:\"fullscreen_alignment\";s:0:\"\";s:32:\"fullscreen_menu_background_color\";s:0:\"\";s:39:\"fullscreen_menu_background_transparency\";s:0:\"\";s:32:\"fullscreen_menu_background_image\";s:0:\"\";s:29:\"fullscreen_menu_pattern_image\";s:0:\"\";s:21:\"fullscreen_menu_color\";s:0:\"\";s:27:\"fullscreen_menu_hover_color\";s:0:\"\";s:28:\"fullscreen_menu_active_color\";s:0:\"\";s:28:\"fullscreen_menu_google_fonts\";s:2:\"-1\";s:25:\"fullscreen_menu_font_size\";s:0:\"\";s:27:\"fullscreen_menu_line_height\";s:0:\"\";s:26:\"fullscreen_menu_font_style\";s:0:\"\";s:27:\"fullscreen_menu_font_weight\";s:0:\"\";s:30:\"fullscreen_menu_letter_spacing\";s:0:\"\";s:30:\"fullscreen_menu_text_transform\";s:0:\"\";s:25:\"fullscreen_menu_color_2nd\";s:0:\"\";s:31:\"fullscreen_menu_hover_color_2nd\";s:0:\"\";s:32:\"fullscreen_menu_google_fonts_2nd\";s:2:\"-1\";s:29:\"fullscreen_menu_font_size_2nd\";s:0:\"\";s:31:\"fullscreen_menu_line_height_2nd\";s:0:\"\";s:30:\"fullscreen_menu_font_style_2nd\";s:0:\"\";s:31:\"fullscreen_menu_font_weight_2nd\";s:0:\"\";s:34:\"fullscreen_menu_letter_spacing_2nd\";s:0:\"\";s:34:\"fullscreen_menu_text_transform_2nd\";s:0:\"\";s:25:\"fullscreen_menu_color_3rd\";s:0:\"\";s:31:\"fullscreen_menu_hover_color_3rd\";s:0:\"\";s:32:\"fullscreen_menu_google_fonts_3rd\";s:2:\"-1\";s:29:\"fullscreen_menu_font_size_3rd\";s:0:\"\";s:31:\"fullscreen_menu_line_height_3rd\";s:0:\"\";s:30:\"fullscreen_menu_font_style_3rd\";s:0:\"\";s:31:\"fullscreen_menu_font_weight_3rd\";s:0:\"\";s:34:\"fullscreen_menu_letter_spacing_3rd\";s:0:\"\";s:34:\"fullscreen_menu_text_transform_3rd\";s:0:\"\";s:26:\"fullscreen_menu_icon_color\";s:0:\"\";s:32:\"fullscreen_menu_icon_hover_color\";s:0:\"\";s:22:\"set_menu_area_position\";s:5:\"right\";s:24:\"scroll_amount_for_sticky\";s:0:\"\";s:21:\"sticky_header_in_grid\";s:2:\"no\";s:30:\"sticky_header_background_color\";s:0:\"\";s:26:\"sticky_header_transparency\";s:0:\"\";s:26:\"sticky_header_border_color\";s:0:\"\";s:20:\"sticky_header_height\";s:0:\"\";s:12:\"sticky_color\";s:0:\"\";s:17:\"sticky_hovercolor\";s:0:\"\";s:19:\"sticky_google_fonts\";s:2:\"-1\";s:16:\"sticky_font_size\";s:0:\"\";s:18:\"sticky_line_height\";s:0:\"\";s:21:\"sticky_text_transform\";s:0:\"\";s:17:\"sticky_font_style\";s:0:\"\";s:18:\"sticky_font_weight\";s:0:\"\";s:21:\"sticky_letter_spacing\";s:0:\"\";s:29:\"fixed_header_background_color\";s:0:\"\";s:25:\"fixed_header_transparency\";s:0:\"\";s:32:\"fixed_header_border_bottom_color\";s:0:\"\";s:11:\"fixed_color\";s:0:\"\";s:16:\"fixed_hovercolor\";s:0:\"\";s:18:\"fixed_google_fonts\";s:2:\"-1\";s:15:\"fixed_font_size\";s:0:\"\";s:17:\"fixed_line_height\";s:0:\"\";s:20:\"fixed_text_transform\";s:0:\"\";s:16:\"fixed_font_style\";s:0:\"\";s:17:\"fixed_font_weight\";s:0:\"\";s:20:\"fixed_letter_spacing\";s:0:\"\";s:25:\"dropdown_background_color\";s:0:\"\";s:32:\"dropdown_background_transparency\";s:0:\"\";s:24:\"menu_dropdown_appearance\";s:16:\"dropdown-default\";s:21:\"dropdown_top_position\";s:0:\"\";s:10:\"menu_color\";s:0:\"\";s:15:\"menu_hovercolor\";s:0:\"\";s:16:\"menu_activecolor\";s:0:\"\";s:21:\"menu_light_hovercolor\";s:0:\"\";s:22:\"menu_light_activecolor\";s:0:\"\";s:20:\"menu_dark_hovercolor\";s:0:\"\";s:21:\"menu_dark_activecolor\";s:0:\"\";s:17:\"menu_google_fonts\";s:2:\"-1\";s:14:\"menu_font_size\";s:0:\"\";s:16:\"menu_line_height\";s:0:\"\";s:15:\"menu_font_style\";s:0:\"\";s:16:\"menu_font_weight\";s:0:\"\";s:19:\"menu_letter_spacing\";s:0:\"\";s:19:\"menu_text_transform\";s:0:\"\";s:23:\"menu_padding_left_right\";s:0:\"\";s:22:\"menu_margin_left_right\";s:0:\"\";s:14:\"dropdown_color\";s:0:\"\";s:19:\"dropdown_hovercolor\";s:0:\"\";s:21:\"dropdown_google_fonts\";s:2:\"-1\";s:18:\"dropdown_font_size\";s:0:\"\";s:20:\"dropdown_line_height\";s:0:\"\";s:19:\"dropdown_font_style\";s:0:\"\";s:20:\"dropdown_font_weight\";s:0:\"\";s:23:\"dropdown_letter_spacing\";s:0:\"\";s:23:\"dropdown_text_transform\";s:0:\"\";s:19:\"dropdown_wide_color\";s:0:\"\";s:24:\"dropdown_wide_hovercolor\";s:0:\"\";s:26:\"dropdown_wide_google_fonts\";s:2:\"-1\";s:23:\"dropdown_wide_font_size\";s:0:\"\";s:25:\"dropdown_wide_line_height\";s:0:\"\";s:24:\"dropdown_wide_font_style\";s:0:\"\";s:25:\"dropdown_wide_font_weight\";s:0:\"\";s:28:\"dropdown_wide_letter_spacing\";s:0:\"\";s:28:\"dropdown_wide_text_transform\";s:0:\"\";s:23:\"dropdown_color_thirdlvl\";s:0:\"\";s:28:\"dropdown_hovercolor_thirdlvl\";s:0:\"\";s:30:\"dropdown_google_fonts_thirdlvl\";s:2:\"-1\";s:27:\"dropdown_font_size_thirdlvl\";s:0:\"\";s:29:\"dropdown_line_height_thirdlvl\";s:0:\"\";s:28:\"dropdown_font_style_thirdlvl\";s:0:\"\";s:29:\"dropdown_font_weight_thirdlvl\";s:0:\"\";s:32:\"dropdown_letter_spacing_thirdlvl\";s:0:\"\";s:32:\"dropdown_text_transform_thirdlvl\";s:0:\"\";s:28:\"dropdown_wide_color_thirdlvl\";s:0:\"\";s:33:\"dropdown_wide_hovercolor_thirdlvl\";s:0:\"\";s:35:\"dropdown_wide_google_fonts_thirdlvl\";s:2:\"-1\";s:32:\"dropdown_wide_font_size_thirdlvl\";s:0:\"\";s:34:\"dropdown_wide_line_height_thirdlvl\";s:0:\"\";s:33:\"dropdown_wide_font_style_thirdlvl\";s:0:\"\";s:34:\"dropdown_wide_font_weight_thirdlvl\";s:0:\"\";s:37:\"dropdown_wide_letter_spacing_thirdlvl\";s:0:\"\";s:37:\"dropdown_wide_text_transform_thirdlvl\";s:0:\"\";s:20:\"mobile_header_height\";s:0:\"\";s:30:\"mobile_header_background_color\";s:0:\"\";s:33:\"mobile_header_border_bottom_color\";s:0:\"\";s:28:\"mobile_menu_background_color\";s:0:\"\";s:31:\"mobile_menu_border_bottom_color\";s:0:\"\";s:27:\"mobile_menu_separator_color\";s:0:\"\";s:18:\"mobile_logo_height\";s:0:\"\";s:25:\"mobile_logo_height_phones\";s:0:\"\";s:17:\"mobile_text_color\";s:0:\"\";s:23:\"mobile_text_hover_color\";s:0:\"\";s:24:\"mobile_text_google_fonts\";s:2:\"-1\";s:21:\"mobile_text_font_size\";s:0:\"\";s:23:\"mobile_text_line_height\";s:0:\"\";s:26:\"mobile_text_text_transform\";s:0:\"\";s:22:\"mobile_text_font_style\";s:0:\"\";s:23:\"mobile_text_font_weight\";s:0:\"\";s:26:\"mobile_text_letter_spacing\";s:0:\"\";s:26:\"mobile_dropdown_text_color\";s:0:\"\";s:32:\"mobile_dropdown_text_hover_color\";s:0:\"\";s:33:\"mobile_dropdown_text_google_fonts\";s:2:\"-1\";s:30:\"mobile_dropdown_text_font_size\";s:0:\"\";s:32:\"mobile_dropdown_text_line_height\";s:0:\"\";s:35:\"mobile_dropdown_text_text_transform\";s:0:\"\";s:31:\"mobile_dropdown_text_font_style\";s:0:\"\";s:32:\"mobile_dropdown_text_font_weight\";s:0:\"\";s:35:\"mobile_dropdown_text_letter_spacing\";s:0:\"\";s:17:\"mobile_menu_title\";s:0:\"\";s:17:\"mobile_icon_color\";s:0:\"\";s:23:\"mobile_icon_hover_color\";s:0:\"\";s:20:\"side_area_icon_color\";s:0:\"\";s:26:\"side_area_icon_hover_color\";s:0:\"\";s:26:\"side_area_close_icon_color\";s:0:\"\";s:32:\"side_area_close_icon_hover_color\";s:0:\"\";s:15:\"side_area_width\";s:3:\"600\";s:26:\"side_area_background_color\";s:0:\"\";s:17:\"side_area_padding\";s:0:\"\";s:18:\"side_area_aligment\";s:0:\"\";s:18:\"search_page_layout\";s:7:\"in-grid\";s:26:\"search_page_sidebar_layout\";s:10:\"no-sidebar\";s:26:\"search_custom_sidebar_area\";s:0:\"\";s:16:\"search_icon_pack\";s:12:\"font_elegant\";s:14:\"search_in_grid\";s:3:\"yes\";s:23:\"header_search_icon_size\";s:0:\"\";s:24:\"header_search_icon_color\";s:0:\"\";s:30:\"header_search_icon_hover_color\";s:0:\"\";s:23:\"enable_search_icon_text\";s:2:\"no\";s:22:\"search_icon_text_color\";s:0:\"\";s:28:\"search_icon_text_color_hover\";s:0:\"\";s:26:\"search_icon_text_font_size\";s:0:\"\";s:28:\"search_icon_text_line_height\";s:0:\"\";s:31:\"search_icon_text_text_transform\";s:0:\"\";s:29:\"search_icon_text_google_fonts\";s:2:\"-1\";s:27:\"search_icon_text_font_style\";s:0:\"\";s:28:\"search_icon_text_font_weight\";s:0:\"\";s:31:\"search_icon_text_letter_spacing\";s:0:\"\";s:15:\"show_title_area\";s:3:\"yes\";s:15:\"title_area_type\";s:25:\"standard-with-breadcrumbs\";s:17:\"title_area_height\";s:3:\"250\";s:27:\"title_area_background_color\";s:0:\"\";s:27:\"title_area_background_image\";s:85:\"http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg\";s:36:\"title_area_background_image_behavior\";s:8:\"parallax\";s:29:\"title_area_vertical_alignment\";s:13:\"header_bottom\";s:20:\"title_area_title_tag\";s:2:\"h2\";s:16:\"page_title_color\";s:7:\"#ffffff\";s:20:\"page_title_font_size\";s:0:\"\";s:22:\"page_title_line_height\";s:0:\"\";s:25:\"page_title_text_transform\";s:0:\"\";s:23:\"page_title_google_fonts\";s:2:\"-1\";s:21:\"page_title_font_style\";s:0:\"\";s:22:\"page_title_font_weight\";s:0:\"\";s:25:\"page_title_letter_spacing\";s:0:\"\";s:19:\"page_subtitle_color\";s:7:\"#ffffff\";s:23:\"page_subtitle_font_size\";s:0:\"\";s:25:\"page_subtitle_line_height\";s:0:\"\";s:28:\"page_subtitle_text_transform\";s:0:\"\";s:26:\"page_subtitle_google_fonts\";s:2:\"-1\";s:24:\"page_subtitle_font_style\";s:0:\"\";s:25:\"page_subtitle_font_weight\";s:0:\"\";s:28:\"page_subtitle_letter_spacing\";s:0:\"\";s:21:\"page_breadcrumb_color\";s:7:\"#ffffff\";s:25:\"page_breadcrumb_font_size\";s:0:\"\";s:27:\"page_breadcrumb_line_height\";s:0:\"\";s:30:\"page_breadcrumb_text_transform\";s:0:\"\";s:28:\"page_breadcrumb_google_fonts\";s:2:\"-1\";s:26:\"page_breadcrumb_font_style\";s:0:\"\";s:27:\"page_breadcrumb_font_weight\";s:0:\"\";s:30:\"page_breadcrumb_letter_spacing\";s:0:\"\";s:26:\"page_breadcrumb_hovercolor\";s:0:\"\";s:18:\"page_show_comments\";s:3:\"yes\";s:19:\"content_top_padding\";s:3:\"100\";s:27:\"content_top_padding_in_grid\";s:3:\"100\";s:26:\"content_top_padding_mobile\";s:2:\"80\";s:26:\"enable_content_bottom_area\";s:2:\"no\";s:37:\"content_bottom_sidebar_custom_display\";s:0:\"\";s:22:\"content_bottom_in_grid\";s:3:\"yes\";s:31:\"content_bottom_background_color\";s:0:\"\";s:14:\"sidebar_layout\";s:10:\"no-sidebar\";s:19:\"custom_sidebar_area\";s:0:\"\";s:14:\"footer_in_grid\";s:3:\"yes\";s:15:\"show_footer_top\";s:3:\"yes\";s:15:\"footer_top_skin\";s:8:\"standard\";s:18:\"footer_top_columns\";s:1:\"4\";s:28:\"footer_top_columns_alignment\";s:4:\"left\";s:27:\"footer_top_background_color\";s:0:\"\";s:18:\"show_footer_bottom\";s:2:\"no\";s:18:\"footer_bottom_skin\";s:8:\"standard\";s:21:\"footer_bottom_columns\";s:1:\"2\";s:30:\"footer_bottom_background_color\";s:0:\"\";s:19:\"footer_transparency\";s:2:\"no\";s:14:\"blog_list_type\";s:8:\"standard\";s:22:\"archive_sidebar_layout\";s:0:\"\";s:27:\"archive_custom_sidebar_area\";s:0:\"\";s:19:\"blog_masonry_layout\";s:7:\"in-grid\";s:30:\"blog_masonry_number_of_columns\";s:5:\"three\";s:32:\"blog_masonry_space_between_items\";s:6:\"normal\";s:35:\"blog_list_featured_image_proportion\";s:5:\"fixed\";s:20:\"blog_pagination_type\";s:8:\"standard\";s:15:\"number_of_chars\";s:2:\"40\";s:26:\"blog_single_sidebar_layout\";s:0:\"\";s:31:\"blog_single_custom_sidebar_area\";s:0:\"\";s:20:\"show_title_area_blog\";s:2:\"no\";s:31:\"blog_single_title_in_title_area\";s:2:\"no\";s:25:\"blog_single_related_posts\";s:2:\"no\";s:20:\"blog_single_comments\";s:3:\"yes\";s:22:\"blog_single_navigation\";s:3:\"yes\";s:37:\"blog_navigation_through_same_category\";s:3:\"yes\";s:16:\"blog_author_info\";s:3:\"yes\";s:22:\"blog_author_info_email\";s:2:\"no\";s:25:\"blog_single_author_social\";s:3:\"yes\";s:30:\"course_archive_number_of_items\";s:0:\"\";s:32:\"course_archive_number_of_columns\";s:1:\"4\";s:34:\"course_archive_space_between_items\";s:6:\"normal\";s:25:\"course_archive_image_size\";s:9:\"landscape\";s:29:\"show_title_area_course_single\";s:0:\"\";s:22:\"course_single_comments\";s:3:\"yes\";s:18:\"course_single_slug\";s:0:\"\";s:19:\"enable_social_share\";s:3:\"yes\";s:27:\"enable_social_share_on_post\";s:3:\"yes\";s:27:\"enable_social_share_on_page\";s:2:\"no\";s:30:\"enable_social_share_on_product\";s:3:\"yes\";s:21:\"enable_facebook_share\";s:3:\"yes\";s:13:\"facebook_icon\";s:0:\"\";s:20:\"enable_twitter_share\";s:3:\"yes\";s:12:\"twitter_icon\";s:0:\"\";s:11:\"twitter_via\";s:0:\"\";s:21:\"enable_linkedin_share\";s:2:\"no\";s:13:\"linkedin_icon\";s:0:\"\";s:19:\"enable_tumblr_share\";s:2:\"no\";s:11:\"tumblr_icon\";s:0:\"\";s:22:\"enable_pinterest_share\";s:2:\"no\";s:14:\"pinterest_icon\";s:0:\"\";s:15:\"enable_vk_share\";s:2:\"no\";s:7:\"vk_icon\";s:0:\"\";s:17:\"enable_open_graph\";s:2:\"no\";s:16:\"open_graph_image\";s:86:\"http://iacademy.mikado-themes.com/wp-content/themes/iacademy/assets/img/open_graph.jpg\";s:19:\"enable_social_login\";s:3:\"yes\";s:28:\"enable_facebook_social_login\";s:3:\"yes\";s:30:\"enable_facebook_login_fbapp_id\";s:15:\"790141884444323\";s:26:\"enable_google_social_login\";s:3:\"yes\";s:29:\"enable_google_login_client_id\";s:72:\"190545331268-pll3n5j81nnil52mm6d0r013ie459a51.apps.googleusercontent.com\";s:37:\"404_menu_area_background_color_header\";s:0:\"\";s:44:\"404_menu_area_background_transparency_header\";s:0:\"\";s:33:\"404_menu_area_border_color_header\";s:0:\"\";s:16:\"404_header_style\";s:0:\"\";s:25:\"404_page_background_color\";s:7:\"#ffffff\";s:25:\"404_page_background_image\";s:0:\"\";s:33:\"404_page_background_pattern_image\";s:0:\"\";s:20:\"404_page_title_image\";s:74:\"http://iacademy.mikado-themes.com/wp-content/uploads/2017/06/404-img-1.png\";s:9:\"404_title\";s:9:\"404 ERROR\";s:15:\"404_title_color\";s:7:\"#222222\";s:22:\"404_title_google_fonts\";s:9:\"Open+Sans\";s:19:\"404_title_font_size\";s:2:\"72\";s:21:\"404_title_line_height\";s:2:\"92\";s:20:\"404_title_font_style\";s:0:\"\";s:21:\"404_title_font_weight\";s:3:\"700\";s:24:\"404_title_letter_spacing\";s:0:\"\";s:24:\"404_title_text_transform\";s:9:\"uppercase\";s:12:\"404_subtitle\";s:172:\"Sorry, we can\'t find the page you are looking for. Please go to Home. lorem quis bibendum auci elit consequatipsutis sem nibh id eis sed odio sit amet nibh vulputate cursus\";s:18:\"404_subtitle_color\";s:7:\"#595959\";s:25:\"404_subtitle_google_fonts\";s:9:\"Open+Sans\";s:22:\"404_subtitle_font_size\";s:2:\"17\";s:24:\"404_subtitle_line_height\";s:2:\"27\";s:23:\"404_subtitle_font_style\";s:0:\"\";s:24:\"404_subtitle_font_weight\";s:3:\"400\";s:27:\"404_subtitle_letter_spacing\";s:0:\"\";s:27:\"404_subtitle_text_transform\";s:0:\"\";s:8:\"404_text\";s:0:\"\";s:14:\"404_text_color\";s:0:\"\";s:21:\"404_text_google_fonts\";s:2:\"-1\";s:18:\"404_text_font_size\";s:0:\"\";s:20:\"404_text_line_height\";s:0:\"\";s:19:\"404_text_font_style\";s:0:\"\";s:20:\"404_text_font_weight\";s:0:\"\";s:23:\"404_text_letter_spacing\";s:0:\"\";s:23:\"404_text_text_transform\";s:0:\"\";s:16:\"404_back_to_home\";s:0:\"\";s:16:\"404_button_style\";s:0:\"\";s:22:\"cf7_style_1_text_color\";s:0:\"\";s:28:\"cf7_style_1_focus_text_color\";s:0:\"\";s:26:\"cf7_style_1_text_font_size\";s:0:\"\";s:28:\"cf7_style_1_text_line_height\";s:0:\"\";s:29:\"cf7_style_1_text_google_fonts\";s:2:\"-1\";s:27:\"cf7_style_1_text_font_style\";s:0:\"\";s:28:\"cf7_style_1_text_font_weight\";s:0:\"\";s:31:\"cf7_style_1_text_text_transform\";s:0:\"\";s:31:\"cf7_style_1_text_letter_spacing\";s:0:\"\";s:23:\"cf7_style_1_label_color\";s:0:\"\";s:27:\"cf7_style_1_label_font_size\";s:0:\"\";s:29:\"cf7_style_1_label_line_height\";s:0:\"\";s:30:\"cf7_style_1_label_google_fonts\";s:2:\"-1\";s:28:\"cf7_style_1_label_font_style\";s:0:\"\";s:29:\"cf7_style_1_label_font_weight\";s:0:\"\";s:32:\"cf7_style_1_label_text_transform\";s:0:\"\";s:32:\"cf7_style_1_label_letter_spacing\";s:0:\"\";s:28:\"cf7_style_1_background_color\";s:7:\"#ffffff\";s:35:\"cf7_style_1_background_transparency\";s:0:\"\";s:34:\"cf7_style_1_focus_background_color\";s:0:\"\";s:41:\"cf7_style_1_focus_background_transparency\";s:0:\"\";s:24:\"cf7_style_1_border_color\";s:7:\"#ebebeb\";s:31:\"cf7_style_1_border_transparency\";s:0:\"\";s:30:\"cf7_style_1_focus_border_color\";s:0:\"\";s:37:\"cf7_style_1_focus_border_transparency\";s:0:\"\";s:24:\"cf7_style_1_border_width\";s:0:\"\";s:25:\"cf7_style_1_border_radius\";s:0:\"\";s:23:\"cf7_style_1_padding_top\";s:0:\"\";s:25:\"cf7_style_1_padding_right\";s:0:\"\";s:26:\"cf7_style_1_padding_bottom\";s:0:\"\";s:24:\"cf7_style_1_padding_left\";s:0:\"\";s:22:\"cf7_style_1_margin_top\";s:0:\"\";s:25:\"cf7_style_1_margin_bottom\";s:0:\"\";s:27:\"cf7_style_1_textarea_height\";s:0:\"\";s:24:\"cf7_style_1_button_color\";s:0:\"\";s:30:\"cf7_style_1_button_hover_color\";s:0:\"\";s:28:\"cf7_style_1_button_font_size\";s:0:\"\";s:31:\"cf7_style_1_button_google_fonts\";s:2:\"-1\";s:29:\"cf7_style_1_button_font_style\";s:0:\"\";s:30:\"cf7_style_1_button_font_weight\";s:0:\"\";s:33:\"cf7_style_1_button_text_transform\";s:0:\"\";s:33:\"cf7_style_1_button_letter_spacing\";s:0:\"\";s:35:\"cf7_style_1_button_background_color\";s:0:\"\";s:42:\"cf7_style_1_button_background_transparency\";s:0:\"\";s:35:\"cf7_style_1_button_hover_bckg_color\";s:0:\"\";s:42:\"cf7_style_1_button_hover_bckg_transparency\";s:0:\"\";s:31:\"cf7_style_1_button_border_color\";s:0:\"\";s:38:\"cf7_style_1_button_border_transparency\";s:0:\"\";s:37:\"cf7_style_1_button_hover_border_color\";s:0:\"\";s:44:\"cf7_style_1_button_hover_border_transparency\";s:0:\"\";s:31:\"cf7_style_1_button_border_width\";s:0:\"\";s:32:\"cf7_style_1_button_border_radius\";s:0:\"\";s:25:\"cf7_style_1_button_height\";s:0:\"\";s:26:\"cf7_style_1_button_padding\";s:0:\"\";s:22:\"cf7_style_2_text_color\";s:0:\"\";s:28:\"cf7_style_2_focus_text_color\";s:0:\"\";s:26:\"cf7_style_2_text_font_size\";s:0:\"\";s:28:\"cf7_style_2_text_line_height\";s:0:\"\";s:29:\"cf7_style_2_text_google_fonts\";s:2:\"-1\";s:27:\"cf7_style_2_text_font_style\";s:0:\"\";s:28:\"cf7_style_2_text_font_weight\";s:0:\"\";s:31:\"cf7_style_2_text_text_transform\";s:0:\"\";s:31:\"cf7_style_2_text_letter_spacing\";s:0:\"\";s:23:\"cf7_style_2_label_color\";s:7:\"#353535\";s:27:\"cf7_style_2_label_font_size\";s:2:\"12\";s:29:\"cf7_style_2_label_line_height\";s:0:\"\";s:30:\"cf7_style_2_label_google_fonts\";s:2:\"-1\";s:28:\"cf7_style_2_label_font_style\";s:0:\"\";s:29:\"cf7_style_2_label_font_weight\";s:3:\"600\";s:32:\"cf7_style_2_label_text_transform\";s:0:\"\";s:32:\"cf7_style_2_label_letter_spacing\";s:0:\"\";s:28:\"cf7_style_2_background_color\";s:7:\"#f8f7f7\";s:35:\"cf7_style_2_background_transparency\";s:0:\"\";s:34:\"cf7_style_2_focus_background_color\";s:0:\"\";s:41:\"cf7_style_2_focus_background_transparency\";s:0:\"\";s:24:\"cf7_style_2_border_color\";s:7:\"#f2f2f2\";s:31:\"cf7_style_2_border_transparency\";s:0:\"\";s:30:\"cf7_style_2_focus_border_color\";s:0:\"\";s:37:\"cf7_style_2_focus_border_transparency\";s:0:\"\";s:24:\"cf7_style_2_border_width\";s:0:\"\";s:25:\"cf7_style_2_border_radius\";s:0:\"\";s:23:\"cf7_style_2_padding_top\";s:0:\"\";s:25:\"cf7_style_2_padding_right\";s:0:\"\";s:26:\"cf7_style_2_padding_bottom\";s:0:\"\";s:24:\"cf7_style_2_padding_left\";s:0:\"\";s:22:\"cf7_style_2_margin_top\";s:0:\"\";s:25:\"cf7_style_2_margin_bottom\";s:0:\"\";s:27:\"cf7_style_2_textarea_height\";s:0:\"\";s:24:\"cf7_style_2_button_color\";s:0:\"\";s:30:\"cf7_style_2_button_hover_color\";s:0:\"\";s:28:\"cf7_style_2_button_font_size\";s:0:\"\";s:31:\"cf7_style_2_button_google_fonts\";s:2:\"-1\";s:29:\"cf7_style_2_button_font_style\";s:0:\"\";s:30:\"cf7_style_2_button_font_weight\";s:0:\"\";s:33:\"cf7_style_2_button_text_transform\";s:0:\"\";s:33:\"cf7_style_2_button_letter_spacing\";s:0:\"\";s:35:\"cf7_style_2_button_background_color\";s:0:\"\";s:42:\"cf7_style_2_button_background_transparency\";s:0:\"\";s:35:\"cf7_style_2_button_hover_bckg_color\";s:0:\"\";s:42:\"cf7_style_2_button_hover_bckg_transparency\";s:0:\"\";s:31:\"cf7_style_2_button_border_color\";s:0:\"\";s:38:\"cf7_style_2_button_border_transparency\";s:0:\"\";s:37:\"cf7_style_2_button_hover_border_color\";s:0:\"\";s:44:\"cf7_style_2_button_hover_border_transparency\";s:0:\"\";s:31:\"cf7_style_2_button_border_width\";s:0:\"\";s:32:\"cf7_style_2_button_border_radius\";s:0:\"\";s:25:\"cf7_style_2_button_height\";s:0:\"\";s:26:\"cf7_style_2_button_padding\";s:0:\"\";s:22:\"cf7_style_3_text_color\";s:7:\"#ffffff\";s:28:\"cf7_style_3_focus_text_color\";s:0:\"\";s:26:\"cf7_style_3_text_font_size\";s:0:\"\";s:28:\"cf7_style_3_text_line_height\";s:0:\"\";s:29:\"cf7_style_3_text_google_fonts\";s:2:\"-1\";s:27:\"cf7_style_3_text_font_style\";s:0:\"\";s:28:\"cf7_style_3_text_font_weight\";s:0:\"\";s:31:\"cf7_style_3_text_text_transform\";s:0:\"\";s:31:\"cf7_style_3_text_letter_spacing\";s:0:\"\";s:23:\"cf7_style_3_label_color\";s:7:\"#ffffff\";s:27:\"cf7_style_3_label_font_size\";s:2:\"10\";s:29:\"cf7_style_3_label_line_height\";s:2:\"30\";s:30:\"cf7_style_3_label_google_fonts\";s:2:\"-1\";s:28:\"cf7_style_3_label_font_style\";s:0:\"\";s:29:\"cf7_style_3_label_font_weight\";s:0:\"\";s:32:\"cf7_style_3_label_text_transform\";s:10:\"capitalize\";s:32:\"cf7_style_3_label_letter_spacing\";s:0:\"\";s:28:\"cf7_style_3_background_color\";s:7:\"#f8f7f7\";s:35:\"cf7_style_3_background_transparency\";s:4:\"0.15\";s:34:\"cf7_style_3_focus_background_color\";s:7:\"#f8f7f7\";s:41:\"cf7_style_3_focus_background_transparency\";s:4:\"0.15\";s:24:\"cf7_style_3_border_color\";s:7:\"#ffffff\";s:31:\"cf7_style_3_border_transparency\";s:1:\"0\";s:30:\"cf7_style_3_focus_border_color\";s:7:\"#ffffff\";s:37:\"cf7_style_3_focus_border_transparency\";s:1:\"0\";s:24:\"cf7_style_3_border_width\";s:0:\"\";s:25:\"cf7_style_3_border_radius\";s:0:\"\";s:23:\"cf7_style_3_padding_top\";s:0:\"\";s:25:\"cf7_style_3_padding_right\";s:0:\"\";s:26:\"cf7_style_3_padding_bottom\";s:0:\"\";s:24:\"cf7_style_3_padding_left\";s:0:\"\";s:22:\"cf7_style_3_margin_top\";s:0:\"\";s:25:\"cf7_style_3_margin_bottom\";s:0:\"\";s:27:\"cf7_style_3_textarea_height\";s:2:\"30\";s:24:\"cf7_style_3_button_color\";s:0:\"\";s:30:\"cf7_style_3_button_hover_color\";s:0:\"\";s:28:\"cf7_style_3_button_font_size\";s:0:\"\";s:31:\"cf7_style_3_button_google_fonts\";s:2:\"-1\";s:29:\"cf7_style_3_button_font_style\";s:0:\"\";s:30:\"cf7_style_3_button_font_weight\";s:0:\"\";s:33:\"cf7_style_3_button_text_transform\";s:0:\"\";s:33:\"cf7_style_3_button_letter_spacing\";s:0:\"\";s:35:\"cf7_style_3_button_background_color\";s:0:\"\";s:42:\"cf7_style_3_button_background_transparency\";s:0:\"\";s:35:\"cf7_style_3_button_hover_bckg_color\";s:0:\"\";s:42:\"cf7_style_3_button_hover_bckg_transparency\";s:0:\"\";s:31:\"cf7_style_3_button_border_color\";s:0:\"\";s:38:\"cf7_style_3_button_border_transparency\";s:0:\"\";s:37:\"cf7_style_3_button_hover_border_color\";s:0:\"\";s:44:\"cf7_style_3_button_hover_border_transparency\";s:0:\"\";s:31:\"cf7_style_3_button_border_width\";s:0:\"\";s:32:\"cf7_style_3_button_border_radius\";s:0:\"\";s:25:\"cf7_style_3_button_height\";s:2:\"52\";s:26:\"cf7_style_3_button_padding\";s:0:\"\";s:29:\"mkdf_woo_product_list_columns\";s:26:\"mkdf-woocommerce-columns-3\";s:35:\"mkdf_woo_product_list_columns_space\";s:21:\"mkdf-woo-normal-space\";s:35:\"mkdf_woo_product_list_info_position\";s:16:\"info_below_image\";s:26:\"mkdf_woo_products_per_page\";s:1:\"9\";s:28:\"mkdf_products_list_title_tag\";s:2:\"h5\";s:19:\"show_title_area_woo\";s:0:\"\";s:29:\"mkdf_single_product_title_tag\";s:2:\"h3\";s:29:\"woo_set_thumb_images_position\";s:11:\"below-image\";s:36:\"woo_enable_single_product_zoom_image\";s:2:\"no\";s:30:\"woo_set_single_images_behavior\";s:12:\"pretty-photo\";s:17:\"reset_to_defaults\";s:2:\"no\";s:11:\"search_type\";s:24:\"slide-from-header-bottom\";s:24:\"enable_google_plus_share\";s:3:\"yes\";s:16:\"google_plus_icon\";s:0:\"\";s:10:\"custom_css\";s:0:\"\";s:19:\"mkd_ajax_save_nonce\";s:10:\"1ec020e721\";s:16:\"_wp_http_referer\";s:67:\"/wp-admin/admin.php?page=iacademy_mikado_theme_menu_tab_footer_page\";s:23:\"woocommerce-login-nonce\";N;s:8:\"_wpnonce\";N;s:32:\"woocommerce-reset-password-nonce\";N;}','yes'),(259,'wpcf7','a:2:{s:7:\"version\";s:5:\"5.9.8\";s:13:\"bulk_validate\";a:4:{s:9:\"timestamp\";i:1729428030;s:7:\"version\";s:5:\"5.9.8\";s:11:\"count_valid\";i:1;s:13:\"count_invalid\";i:0;}}','auto'),(260,'envato_market','a:2:{s:16:\"is_plugin_active\";s:1:\"1\";s:17:\"installed_version\";s:6:\"2.0.12\";}','auto'),(261,'tribe_last_updated_option','1731249828.8761','auto'),(265,'action_scheduler_hybrid_store_demarkation','13','auto'),(266,'schema-ActionScheduler_StoreSchema','7.0.1729428031','auto'),(267,'schema-ActionScheduler_LoggerSchema','3.0.1729428031','auto'),(270,'woocommerce_newly_installed','no','auto'),(271,'woocommerce_schema_version','920','auto'),(272,'woocommerce_store_address','XVNT','on'),(273,'woocommerce_store_address_2','','on'),(274,'woocommerce_store_city','Hồ Chí Minh','on'),(275,'woocommerce_default_country','VN','on'),(276,'woocommerce_store_postcode','55000','on'),(277,'woocommerce_allowed_countries','all','on'),(278,'woocommerce_all_except_countries','a:0:{}','on'),(279,'woocommerce_specific_allowed_countries','a:0:{}','on'),(280,'woocommerce_ship_to_countries','','on'),(281,'woocommerce_specific_ship_to_countries','a:0:{}','on'),(282,'woocommerce_default_customer_address','base','on'),(283,'woocommerce_calc_taxes','yes','on'),(284,'woocommerce_enable_coupons','yes','on'),(285,'woocommerce_calc_discounts_sequentially','no','off'),(286,'woocommerce_currency','VND','on'),(287,'woocommerce_currency_pos','right_space','on'),(288,'woocommerce_price_thousand_sep','.','on'),(289,'woocommerce_price_decimal_sep',',','on'),(290,'woocommerce_price_num_decimals','0','on'),(291,'woocommerce_shop_page_id','14','on'),(292,'woocommerce_cart_redirect_after_add','no','on'),(293,'woocommerce_enable_ajax_add_to_cart','yes','on'),(294,'woocommerce_placeholder_image','13','on'),(295,'woocommerce_weight_unit','kg','on'),(296,'woocommerce_dimension_unit','cm','on'),(297,'woocommerce_enable_reviews','yes','on'),(298,'woocommerce_review_rating_verification_label','yes','off'),(299,'woocommerce_review_rating_verification_required','no','off'),(300,'woocommerce_enable_review_rating','yes','on'),(301,'woocommerce_review_rating_required','yes','off'),(302,'woocommerce_manage_stock','yes','on'),(303,'woocommerce_hold_stock_minutes','60','off'),(304,'woocommerce_notify_low_stock','yes','off'),(305,'woocommerce_notify_no_stock','yes','off'),(306,'woocommerce_stock_email_recipient','ductai2982@gmail.com','off'),(307,'woocommerce_notify_low_stock_amount','2','off'),(308,'woocommerce_notify_no_stock_amount','0','on'),(309,'woocommerce_hide_out_of_stock_items','no','on'),(310,'woocommerce_stock_format','','on'),(311,'woocommerce_file_download_method','force','off'),(312,'woocommerce_downloads_redirect_fallback_allowed','no','off'),(313,'woocommerce_downloads_require_login','no','off'),(314,'woocommerce_downloads_grant_access_after_payment','yes','off'),(315,'woocommerce_downloads_deliver_inline','','off'),(316,'woocommerce_downloads_add_hash_to_filename','yes','on'),(317,'woocommerce_downloads_count_partial','yes','on'),(319,'woocommerce_attribute_lookup_direct_updates','no','on'),(320,'woocommerce_attribute_lookup_optimized_updates','no','on'),(321,'woocommerce_product_match_featured_image_by_sku','no','on'),(322,'woocommerce_prices_include_tax','no','on'),(323,'woocommerce_tax_based_on','shipping','on'),(324,'woocommerce_shipping_tax_class','inherit','on'),(325,'woocommerce_tax_round_at_subtotal','no','on'),(326,'woocommerce_tax_classes','','on'),(327,'woocommerce_tax_display_shop','excl','on'),(328,'woocommerce_tax_display_cart','excl','on'),(329,'woocommerce_price_display_suffix','','on'),(330,'woocommerce_tax_total_display','itemized','off'),(331,'woocommerce_enable_shipping_calc','yes','off'),(332,'woocommerce_shipping_cost_requires_address','no','on'),(333,'woocommerce_ship_to_destination','billing','off'),(334,'woocommerce_shipping_debug_mode','no','on'),(335,'woocommerce_enable_guest_checkout','yes','off'),(336,'woocommerce_enable_checkout_login_reminder','no','off'),(337,'woocommerce_enable_signup_and_login_from_checkout','no','off'),(338,'woocommerce_enable_myaccount_registration','no','off'),(339,'woocommerce_registration_generate_username','yes','off'),(340,'woocommerce_registration_generate_password','yes','off'),(341,'woocommerce_erasure_request_removes_order_data','no','off'),(342,'woocommerce_erasure_request_removes_download_data','no','off'),(343,'woocommerce_allow_bulk_remove_personal_data','no','off'),(344,'woocommerce_registration_privacy_policy_text','Your personal data will be used to support your experience throughout this website, to manage access to your account, and for other purposes described in our [privacy_policy].','on'),(345,'woocommerce_checkout_privacy_policy_text','Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our [privacy_policy].','on'),(346,'woocommerce_delete_inactive_accounts','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','off'),(347,'woocommerce_trash_pending_orders','','off'),(348,'woocommerce_trash_failed_orders','','off'),(349,'woocommerce_trash_cancelled_orders','','off'),(350,'woocommerce_anonymize_completed_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','off'),(351,'woocommerce_email_from_name','Trung tâm gia sư','off'),(352,'woocommerce_email_from_address','ductai2982@gmail.com','off'),(353,'woocommerce_email_header_image','','off'),(354,'woocommerce_email_base_color','#7f54b3','off'),(355,'woocommerce_email_background_color','#f7f7f7','off'),(356,'woocommerce_email_body_background_color','#ffffff','off'),(357,'woocommerce_email_text_color','#3c3c3c','off'),(358,'woocommerce_email_footer_text','{site_title} &mdash; Built with {WooCommerce}','off'),(359,'woocommerce_email_footer_text_color','#3c3c3c','off'),(360,'woocommerce_merchant_email_notifications','no','off'),(361,'woocommerce_cart_page_id','15','off'),(362,'woocommerce_checkout_page_id','16','off'),(363,'woocommerce_myaccount_page_id','17','off'),(364,'woocommerce_terms_page_id','','off'),(365,'woocommerce_force_ssl_checkout','no','on'),(366,'woocommerce_unforce_ssl_checkout','no','on'),(367,'woocommerce_checkout_pay_endpoint','order-pay','on'),(368,'woocommerce_checkout_order_received_endpoint','order-received','on'),(369,'woocommerce_myaccount_add_payment_method_endpoint','add-payment-method','on'),(370,'woocommerce_myaccount_delete_payment_method_endpoint','delete-payment-method','on'),(371,'woocommerce_myaccount_set_default_payment_method_endpoint','set-default-payment-method','on'),(372,'woocommerce_myaccount_orders_endpoint','orders','on'),(373,'woocommerce_myaccount_view_order_endpoint','view-order','on'),(374,'woocommerce_myaccount_downloads_endpoint','downloads','on'),(375,'woocommerce_myaccount_edit_account_endpoint','edit-account','on'),(376,'woocommerce_myaccount_edit_address_endpoint','edit-address','on'),(377,'woocommerce_myaccount_payment_methods_endpoint','payment-methods','on'),(378,'woocommerce_myaccount_lost_password_endpoint','lost-password','on'),(379,'woocommerce_logout_endpoint','customer-logout','on'),(380,'woocommerce_api_enabled','no','on'),(381,'woocommerce_allow_tracking','yes','off'),(382,'woocommerce_show_marketplace_suggestions','yes','off'),(383,'woocommerce_custom_orders_table_enabled','yes','on'),(384,'woocommerce_analytics_enabled','yes','on'),(385,'woocommerce_feature_order_attribution_enabled','yes','on'),(386,'woocommerce_feature_product_block_editor_enabled','no','on'),(387,'woocommerce_hpos_fts_index_enabled','no','on'),(388,'woocommerce_single_image_width','600','on'),(389,'woocommerce_thumbnail_image_width','300','on'),(390,'woocommerce_checkout_highlight_required_fields','yes','on'),(391,'woocommerce_demo_store','no','off'),(392,'wc_downloads_approved_directories_mode','enabled','auto'),(393,'woocommerce_permalinks','a:5:{s:12:\"product_base\";s:7:\"product\";s:13:\"category_base\";s:16:\"product-category\";s:8:\"tag_base\";s:11:\"product-tag\";s:14:\"attribute_base\";s:0:\"\";s:22:\"use_verbose_page_rules\";b:0;}','auto'),(394,'current_theme_supports_woocommerce','yes','auto'),(395,'woocommerce_queue_flush_rewrite_rules','no','auto'),(398,'default_product_cat','15','auto'),(400,'woocommerce_refund_returns_page_id','18','auto'),(403,'woocommerce_paypal_settings','a:23:{s:7:\"enabled\";s:2:\"no\";s:5:\"title\";s:6:\"PayPal\";s:11:\"description\";s:85:\"Pay via PayPal; you can pay with your credit card if you don\'t have a PayPal account.\";s:5:\"email\";s:20:\"ductai2982@gmail.com\";s:8:\"advanced\";s:0:\"\";s:8:\"testmode\";s:2:\"no\";s:5:\"debug\";s:2:\"no\";s:16:\"ipn_notification\";s:3:\"yes\";s:14:\"receiver_email\";s:20:\"ductai2982@gmail.com\";s:14:\"identity_token\";s:0:\"\";s:14:\"invoice_prefix\";s:3:\"WC-\";s:13:\"send_shipping\";s:3:\"yes\";s:16:\"address_override\";s:2:\"no\";s:13:\"paymentaction\";s:4:\"sale\";s:9:\"image_url\";s:0:\"\";s:11:\"api_details\";s:0:\"\";s:12:\"api_username\";s:0:\"\";s:12:\"api_password\";s:0:\"\";s:13:\"api_signature\";s:0:\"\";s:20:\"sandbox_api_username\";s:0:\"\";s:20:\"sandbox_api_password\";s:0:\"\";s:21:\"sandbox_api_signature\";s:0:\"\";s:12:\"_should_load\";s:2:\"no\";}','on'),(404,'woocommerce_version','9.3.3','auto'),(405,'woocommerce_db_version','9.3.3','auto'),(406,'woocommerce_store_id','22176407-3b4f-4e94-af81-8f951fd93fa7','auto'),(407,'woocommerce_admin_install_timestamp','1729428034','auto'),(408,'woocommerce_inbox_variant_assignment','3','auto'),(409,'woocommerce_remote_variant_assignment','93','auto'),(414,'_transient_jetpack_autoloader_plugin_paths','a:1:{i:0;s:29:\"{{WP_PLUGIN_DIR}}/woocommerce\";}','on'),(415,'action_scheduler_lock_async-request-runner','6818ceba0f5ec0.43801119|1746456310','no'),(416,'woocommerce_admin_notices','a:2:{i:0;s:20:\"no_secure_connection\";i:1;s:14:\"template_files\";}','auto'),(417,'tribe_events_calendar_options','a:15:{s:8:\"did_init\";b:1;s:19:\"tribeEventsTemplate\";s:0:\"\";s:16:\"tribeEnableViews\";a:3:{i:0;s:4:\"list\";i:1;s:5:\"month\";i:2;s:3:\"day\";}s:10:\"viewOption\";s:4:\"list\";s:14:\"schema-version\";s:5:\"6.7.0\";s:21:\"previous_ecp_versions\";a:1:{i:0;s:1:\"0\";}s:18:\"latest_ecp_version\";s:5:\"6.7.0\";s:18:\"dateWithYearFormat\";s:6:\"F j, Y\";s:24:\"recurrenceMaxMonthsAfter\";i:24;s:22:\"google_maps_js_api_key\";s:39:\"AIzaSyDNsicAsP6-VuGtAb1O9riI3oc_NOb7IOU\";s:13:\"earliest_date\";s:19:\"2018-06-13 10:00:00\";s:21:\"earliest_date_markers\";a:1:{i:0;i:2980;}s:11:\"latest_date\";s:19:\"2018-08-30 21:00:00\";s:19:\"latest_date_markers\";a:1:{i:0;i:2781;}s:24:\"front_page_event_archive\";b:0;}','auto'),(418,'wc_blocks_version','11.8.0-dev','auto'),(419,'tec_timed_tribe_supports_async_process','a:3:{s:3:\"key\";s:28:\"tribe_supports_async_process\";s:5:\"value\";i:1;s:10:\"expiration\";i:1747045625;}','on'),(421,'woocommerce_maxmind_geolocation_settings','a:1:{s:15:\"database_prefix\";s:32:\"pE1Ss1nz6cvoLVShqXeNQtRYeBq4jks9\";}','on'),(422,'_transient_woocommerce_webhook_ids_status_active','a:0:{}','on'),(425,'tribe_last_save_post','1731248722.304','auto'),(426,'widget_bbp_login_widget','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(427,'widget_bbp_views_widget','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(428,'widget_bbp_search_widget','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(429,'widget_bbp_forums_widget','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(430,'widget_bbp_topics_widget','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(431,'widget_bbp_replies_widget','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(432,'widget_bbp_stats_widget','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(433,'widget_woocommerce_widget_cart','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(434,'widget_woocommerce_layered_nav_filters','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(435,'widget_woocommerce_layered_nav','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(436,'widget_woocommerce_price_filter','a:2:{i:2;a:1:{s:5:\"title\";s:6:\"Filter\";}s:12:\"_multiwidget\";i:1;}','auto'),(437,'widget_woocommerce_product_categories','a:2:{i:2;a:7:{s:5:\"title\";s:18:\"Product categories\";s:7:\"orderby\";s:4:\"name\";s:8:\"dropdown\";i:0;s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:18:\"show_children_only\";i:0;s:10:\"hide_empty\";i:0;}s:12:\"_multiwidget\";i:1;}','auto'),(438,'widget_woocommerce_product_search','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(439,'widget_woocommerce_product_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(440,'widget_woocommerce_products','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(441,'widget_woocommerce_recently_viewed_products','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(442,'widget_woocommerce_top_rated_products','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(443,'widget_woocommerce_recent_reviews','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(444,'widget_woocommerce_rating_filter','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(445,'widget_mkdf_contact_form_7_widget','a:3:{i:2;a:7:{s:11:\"extra_class\";s:0:\"\";s:12:\"widget_title\";s:23:\"Khóa học miễn phí\";s:15:\"widget_subtitle\";s:19:\"It\'s time to learn.\";s:9:\"image_src\";s:111:\"http://iacademy.mikado-themes.com/wp-content/uploads/2017/06/blog-sidebar-contact-form-backround-horizontal.jpg\";s:16:\"background_color\";s:0:\"\";s:12:\"contact_form\";s:2:\"12\";s:18:\"contact_form_style\";s:18:\"cf7_custom_style_3\";}i:3;a:7:{s:11:\"extra_class\";s:0:\"\";s:12:\"widget_title\";s:16:\"Courses for Free\";s:15:\"widget_subtitle\";s:19:\"It\'s time to learn.\";s:9:\"image_src\";s:111:\"http://iacademy.mikado-themes.com/wp-content/uploads/2017/06/blog-sidebar-contact-form-backround-horizontal.jpg\";s:16:\"background_color\";s:0:\"\";s:12:\"contact_form\";s:1:\"4\";s:18:\"contact_form_style\";s:18:\"cf7_custom_style_3\";}s:12:\"_multiwidget\";i:1;}','auto'),(446,'widget_mkdf_woocommerce_dropdown_cart','a:2:{i:2;a:2:{s:32:\"woocommerce_dropdown_cart_margin\";s:0:\"\";s:28:\"woocommerce_enable_cart_info\";s:2:\"no\";}s:12:\"_multiwidget\";i:1;}','auto'),(447,'widget_tribe-widget-events-list','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(450,'tec_timed_tec_custom_tables_v1_initialized','a:3:{s:3:\"key\";s:32:\"tec_custom_tables_v1_initialized\";s:5:\"value\";i:1;s:10:\"expiration\";i:1746569092;}','on'),(451,'tec_ct1_migration_state','a:3:{s:18:\"complete_timestamp\";N;s:5:\"phase\";s:22:\"migration-not-required\";s:19:\"preview_unsupported\";b:0;}','auto'),(452,'tec_ct1_events_table_schema_version','1.0.1','auto'),(453,'tec_ct1_occurrences_table_schema_version','1.0.2','auto'),(454,'stellarwp_telemetry_last_send','','auto'),(455,'stellarwp_telemetry','a:1:{s:7:\"plugins\";a:1:{s:19:\"the-events-calendar\";a:2:{s:7:\"wp_slug\";s:43:\"the-events-calendar/the-events-calendar.php\";s:5:\"optin\";b:0;}}}','auto'),(456,'stellarwp_telemetry_the-events-calendar_show_optin','1','auto'),(457,'tribe_last_generate_rewrite_rules','1731248722.2734','auto'),(460,'_bbp_db_version','263','auto'),(461,'wc_admin_show_legacy_coupon_menu','0','auto'),(462,'woocommerce_custom_orders_table_created','yes','auto'),(463,'woocommerce_coming_soon','no','auto'),(464,'woocommerce_initial_installed_version','9.3.3','off'),(465,'wc_blocks_db_schema_version','260','auto'),(466,'wc_remote_inbox_notifications_stored_state','O:8:\"stdClass\":2:{s:22:\"there_were_no_products\";b:1;s:22:\"there_are_now_products\";b:1;}','off'),(469,'wcpay_was_in_use','no','auto'),(470,'_transient_timeout_woocommerce_blocks_asset_api_script_data','1749110473','off'),(471,'_transient_woocommerce_blocks_asset_api_script_data','{\"script_data\":{\"assets\\/client\\/blocks\\/wc-settings.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-settings.js\",\"version\":\"eb5ac71a827c4c81fed8\",\"dependencies\":[\"wp-hooks\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-types.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-types.js\",\"version\":\"bda84b1be3361607d04a\",\"dependencies\":[\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-blocks-middleware.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks-middleware.js\",\"version\":\"ca04183222edaf8a26be\",\"dependencies\":[\"wp-api-fetch\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-blocks-data.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks-data.js\",\"version\":\"314d18d8fe63fcbe6cb6\",\"dependencies\":[\"wc-blocks-registry\",\"wc-settings\",\"wc-types\",\"wp-api-fetch\",\"wp-data\",\"wp-data-controls\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-notices\",\"wp-polyfill\",\"wp-url\"]},\"assets\\/client\\/blocks\\/wc-blocks-vendors.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks-vendors.js\",\"version\":\"9c64b2fb6cec317e1770\",\"dependencies\":[\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-blocks-registry.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks-registry.js\",\"version\":\"8c83b2b8521a19ab00b9\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-data\",\"wp-deprecated\",\"wp-element\",\"wp-hooks\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-blocks.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks.js\",\"version\":\"93db775143f168c26ac3\",\"dependencies\":[\"react\",\"wc-types\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-dom-ready\",\"wp-element\",\"wp-hooks\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"assets\\/client\\/blocks\\/wc-blocks-shared-context.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks-shared-context.js\",\"version\":\"6eb6865831aa5a75475d\",\"dependencies\":[\"react\",\"wp-element\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-blocks-shared-hocs.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks-shared-hocs.js\",\"version\":\"4f21a9f43ea5bfa7f02e\",\"dependencies\":[\"react\",\"wc-blocks-data-store\",\"wc-blocks-shared-context\",\"wc-types\",\"wp-data\",\"wp-element\",\"wp-is-shallow-equal\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/price-format.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/price-format.js\",\"version\":\"483d2180eda1f53dc60d\",\"dependencies\":[\"wc-settings\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-blocks-frontend-vendors-frontend.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks-frontend-vendors-frontend.js\",\"version\":\"651d3d70da2d2aef0e82\",\"dependencies\":[\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-cart-checkout-vendors-frontend.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-cart-checkout-vendors-frontend.js\",\"version\":\"4ef596e6634f89ac412f\",\"dependencies\":[\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-cart-checkout-base-frontend.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-cart-checkout-base-frontend.js\",\"version\":\"7657f2f92845b59d4dce\",\"dependencies\":[\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/blocks-checkout.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/blocks-checkout.js\",\"version\":\"b17cecfe19e23a3899e0\",\"dependencies\":[\"wc-cart-checkout-base\",\"wc-cart-checkout-vendors\",\"react\",\"react-dom\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-settings\",\"wc-types\",\"wp-a11y\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-warning\"]},\"assets\\/client\\/blocks\\/blocks-components.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/blocks-components.js\",\"version\":\"5f11d5c440e62fef7bb5\",\"dependencies\":[\"wc-cart-checkout-base\",\"wc-cart-checkout-vendors\",\"react\",\"react-dom\",\"wc-blocks-data-store\",\"wc-settings\",\"wc-types\",\"wp-a11y\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/wc-interactivity-dropdown.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-interactivity-dropdown.js\",\"version\":\"8997b5406dcf18064a4e\",\"dependencies\":[\"wc-interactivity\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-interactivity-checkbox-list.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-interactivity-checkbox-list.js\",\"version\":\"9f910c57a575d29e7f8e\",\"dependencies\":[\"wc-interactivity\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/active-filters.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/active-filters.js\",\"version\":\"e12366c8a56976baed98\",\"dependencies\":[\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-price-format\",\"wc-settings\",\"wc-types\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"assets\\/client\\/blocks\\/active-filters-frontend.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/active-filters-frontend.js\",\"version\":\"6c48702f58c24bb97f66\",\"dependencies\":[\"wc-blocks-frontend-vendors\",\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-price-format\",\"wc-settings\",\"wc-types\",\"wp-data\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"assets\\/client\\/blocks\\/all-products.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/all-products.js\",\"version\":\"c265f87ec00d2ff78c66\",\"dependencies\":[\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-context\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wc-types\",\"wp-a11y\",\"wp-api-fetch\",\"wp-autop\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-escape-html\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-wordcount\"]},\"assets\\/client\\/blocks\\/all-products-frontend.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/all-products-frontend.js\",\"version\":\"d3b2da0916f9d8584854\",\"dependencies\":[\"wc-blocks-frontend-vendors\",\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-context\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wc-types\",\"wp-a11y\",\"wp-autop\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-wordcount\"]},\"assets\\/client\\/blocks\\/all-reviews.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/all-reviews.js\",\"version\":\"a268036043addd4c5acc\",\"dependencies\":[\"react\",\"wc-blocks-components\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-element\",\"wp-escape-html\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/reviews-frontend.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/reviews-frontend.js\",\"version\":\"403abda05b51a9c06a58\",\"dependencies\":[\"wc-blocks-frontend-vendors\",\"react\",\"wc-blocks-components\",\"wc-settings\",\"wp-a11y\",\"wp-api-fetch\",\"wp-element\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/attribute-filter.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/attribute-filter.js\",\"version\":\"405769a6c85a0db90cb2\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-settings\",\"wc-types\",\"wp-a11y\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\"]},\"assets\\/client\\/blocks\\/attribute-filter-frontend.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/attribute-filter-frontend.js\",\"version\":\"61292cafbcfbb0d769e5\",\"dependencies\":[\"wc-blocks-frontend-vendors\",\"lodash\",\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-settings\",\"wc-types\",\"wp-a11y\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\"]},\"assets\\/client\\/blocks\\/breadcrumbs.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/breadcrumbs.js\",\"version\":\"a46bdf27ac23bce673ff\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/catalog-sorting.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/catalog-sorting.js\",\"version\":\"46e9a6788747bd1dda73\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/legacy-template.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/legacy-template.js\",\"version\":\"088e05230c1ace46bf83\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-core-data\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-notices\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/classic-shortcode.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/classic-shortcode.js\",\"version\":\"95c41fae930c5aee4110\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-notices\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/coming-soon.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/coming-soon.js\",\"version\":\"07a53f0414db8dad75ac\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-i18n\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/customer-account.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/customer-account.js\",\"version\":\"0c8a286658fcb3e8546f\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/featured-category.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/featured-category.js\",\"version\":\"35f416bff0fb93387cb5\",\"dependencies\":[\"react\",\"wc-settings\",\"wc-types\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\"]},\"assets\\/client\\/blocks\\/featured-product.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/featured-product.js\",\"version\":\"369c309dc8e90c3b0d77\",\"dependencies\":[\"react\",\"wc-settings\",\"wc-types\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\"]},\"assets\\/client\\/blocks\\/filter-wrapper.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/filter-wrapper.js\",\"version\":\"236ba7d7e783ccbcc380\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/filter-wrapper-frontend.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/filter-wrapper-frontend.js\",\"version\":\"78dc7015ab2dbf31804b\",\"dependencies\":[\"wc-blocks-frontend-vendors\",\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-price-format\",\"wc-settings\",\"wc-types\",\"wp-a11y\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-warning\"]},\"assets\\/client\\/blocks\\/handpicked-products.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/handpicked-products.js\",\"version\":\"396c61722655a19c4f3e\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"assets\\/client\\/blocks\\/mini-cart.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart.js\",\"version\":\"7f6c34f992ce0e29a1dc\",\"dependencies\":[\"react\",\"wc-price-format\",\"wc-settings\",\"wc-types\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-data\",\"wp-dom\",\"wp-element\",\"wp-hooks\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/mini-cart-frontend.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-frontend.js\",\"version\":\"de93ee7eb69dd39340fa\",\"dependencies\":[\"wc-cart-checkout-base\",\"wc-cart-checkout-vendors\",\"wc-price-format\",\"wc-settings\",\"wc-types\",\"wp-api-fetch\",\"wp-i18n\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/store-notices.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/store-notices.js\",\"version\":\"3a69b4a56afb4e333ca1\",\"dependencies\":[\"react\",\"wp-a11y\",\"wp-block-editor\",\"wp-blocks\",\"wp-deprecated\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/price-filter.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/price-filter.js\",\"version\":\"7541325c9e902d96c999\",\"dependencies\":[\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-price-format\",\"wc-settings\",\"wc-types\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"assets\\/client\\/blocks\\/price-filter-frontend.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/price-filter-frontend.js\",\"version\":\"cc8ce5fb09220bc02314\",\"dependencies\":[\"wc-blocks-frontend-vendors\",\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-price-format\",\"wc-settings\",\"wc-types\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-url\"]},\"assets\\/client\\/blocks\\/product-best-sellers.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-best-sellers.js\",\"version\":\"f02a435ca101ac93f7d8\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"assets\\/client\\/blocks\\/product-button.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-button.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/product-button-interactivity-frontend.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-button-interactivity-frontend.js\",\"version\":\"cb28f5957f4ece0c48e5\",\"dependencies\":[\"wc-blocks-frontend-vendors\",\"react\",\"wc-blocks-data-store\",\"wc-interactivity\",\"wp-a11y\",\"wp-data\",\"wp-deprecated\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/product-categories.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-categories.js\",\"version\":\"6551614b46b75a8fe22d\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\"]},\"assets\\/client\\/blocks\\/product-category.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-category.js\",\"version\":\"eec2cb1659cb15dcbcf7\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"assets\\/client\\/blocks\\/product-collection.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-collection.js\",\"version\":\"0242bb55e9a23df3afc1\",\"dependencies\":[\"react\",\"wc-blocks-registry\",\"wc-price-format\",\"wc-settings\",\"wc-types\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-core-data\",\"wp-data\",\"wp-editor\",\"wp-element\",\"wp-escape-html\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"assets\\/client\\/blocks\\/product-collection-frontend.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-collection-frontend.js\",\"version\":\"8ffa3332186207691feb\",\"dependencies\":[\"wc-blocks-frontend-vendors\",\"wc-interactivity\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/product-collection-no-results.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-collection-no-results.js\",\"version\":\"d1c4e65a98c9f79e8930\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/product-gallery.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-gallery.js\",\"version\":\"c6c5acf8484d242125cf\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/product-gallery-frontend.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-gallery-frontend.js\",\"version\":\"c340254c6c31444370fb\",\"dependencies\":[\"wc-blocks-frontend-vendors\",\"wc-interactivity\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/product-gallery-large-image.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-gallery-large-image.js\",\"version\":\"9123fa40c2900c7ffff5\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/product-gallery-large-image-frontend.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-gallery-large-image-frontend.js\",\"version\":\"dd8201c48d0f0223ee5a\",\"dependencies\":[\"wc-blocks-frontend-vendors\",\"wc-interactivity\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/product-new.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-new.js\",\"version\":\"e02c41db87762f2a864e\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"assets\\/client\\/blocks\\/product-on-sale.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-on-sale.js\",\"version\":\"d2a18f8f5a99b5ae9fcd\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"assets\\/client\\/blocks\\/product-template.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-template.js\",\"version\":\"fb1199bb22c9b94e41a4\",\"dependencies\":[\"react\",\"wc-blocks-shared-context\",\"wc-settings\",\"wc-types\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-core-data\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-url\"]},\"assets\\/client\\/blocks\\/product-query.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-query.js\",\"version\":\"8231456d3b3054d4f5d2\",\"dependencies\":[\"react\",\"wc-settings\",\"wc-types\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-escape-html\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"assets\\/client\\/blocks\\/product-query-frontend.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-query-frontend.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/product-results-count.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-results-count.js\",\"version\":\"f67c632c9c0ac6a63903\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/product-search.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-search.js\",\"version\":\"241a15bb8d9fb8afcd93\",\"dependencies\":[\"react\",\"wc-settings\",\"wc-types\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/product-summary.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-summary.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/product-tag.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-tag.js\",\"version\":\"e5ceb3330a4d33c1d80c\",\"dependencies\":[\"react\",\"wc-settings\",\"wc-types\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"assets\\/client\\/blocks\\/product-title.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-title.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/product-title-frontend.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-title-frontend.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/product-top-rated.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-top-rated.js\",\"version\":\"76b1dfaa394469f53991\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"assets\\/client\\/blocks\\/products-by-attribute.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/products-by-attribute.js\",\"version\":\"d8168d1e219afd197673\",\"dependencies\":[\"react\",\"wc-settings\",\"wc-types\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"assets\\/client\\/blocks\\/rating-filter.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/rating-filter.js\",\"version\":\"428e74db07d18b6a6c49\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-settings\",\"wc-types\",\"wp-a11y\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\"]},\"assets\\/client\\/blocks\\/reviews-by-category.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/reviews-by-category.js\",\"version\":\"36d94e215bcc22086f05\",\"dependencies\":[\"react\",\"wc-blocks-components\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"assets\\/client\\/blocks\\/reviews-by-product.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/reviews-by-product.js\",\"version\":\"709a17af900e478ee790\",\"dependencies\":[\"react\",\"wc-blocks-components\",\"wc-settings\",\"wc-types\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"assets\\/client\\/blocks\\/single-product.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/single-product.js\",\"version\":\"05193999e0f40595cd8e\",\"dependencies\":[\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-context\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wc-store-data\",\"wc-types\",\"wp-api-fetch\",\"wp-autop\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-escape-html\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-wordcount\"]},\"assets\\/client\\/blocks\\/stock-filter.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/stock-filter.js\",\"version\":\"cbb3c58e66888f68e4a7\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-settings\",\"wc-types\",\"wp-a11y\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\"]},\"assets\\/client\\/blocks\\/stock-filter-frontend.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/stock-filter-frontend.js\",\"version\":\"61da2cb317321e6acc8f\",\"dependencies\":[\"wc-blocks-frontend-vendors\",\"lodash\",\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-settings\",\"wc-types\",\"wp-a11y\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\"]},\"assets\\/client\\/blocks\\/page-content-wrapper.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/page-content-wrapper.js\",\"version\":\"1fd399fa754701bea190\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-status.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-status.js\",\"version\":\"8c9f3a518172327f48a0\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-summary.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-summary.js\",\"version\":\"259daa9a9e302be8a04e\",\"dependencies\":[\"react\",\"wc-price-format\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-date\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-totals.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-totals.js\",\"version\":\"fb4b9c0d40f2d07e0c28\",\"dependencies\":[\"react\",\"wc-price-format\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-totals-wrapper.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-totals-wrapper.js\",\"version\":\"e2cc2a4e02c46a322434\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-downloads.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-downloads.js\",\"version\":\"26fdedbc1f1b13554ad4\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-downloads-wrapper.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-downloads-wrapper.js\",\"version\":\"9077b93bf8ff5dc4371e\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-billing-address.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-billing-address.js\",\"version\":\"87d59d30fc3b79a280ec\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-shipping-address.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-shipping-address.js\",\"version\":\"3a24afe202ccabf9fd44\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-billing-wrapper.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-billing-wrapper.js\",\"version\":\"99dbc2cfeb1472282ed4\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-shipping-wrapper.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-shipping-wrapper.js\",\"version\":\"f68c7a9bfa980dd916fd\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-additional-information.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-additional-information.js\",\"version\":\"21bdd0df3ab78b31e12b\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-additional-fields-wrapper.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-additional-fields-wrapper.js\",\"version\":\"0d2e059d88ef29bca236\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-additional-fields.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-additional-fields.js\",\"version\":\"3d34c07f1650322267f0\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/cart.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart.js\",\"version\":\"6e9fbe4dce866df70b6f\",\"dependencies\":[\"react\",\"wc-blocks-checkout\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-context\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wc-types\",\"wp-a11y\",\"wp-api-fetch\",\"wp-autop\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-core-data\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-editor\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-notices\",\"wp-plugins\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-wordcount\"]},\"assets\\/client\\/blocks\\/cart-frontend.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-frontend.js\",\"version\":\"f10b598c943a06f25d98\",\"dependencies\":[\"wc-cart-checkout-base\",\"wc-cart-checkout-vendors\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-context\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wc-types\",\"wp-a11y\",\"wp-api-fetch\",\"wp-autop\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-plugins\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-wordcount\"]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-items-style.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-items-style.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-discount-style.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-discount-style.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-heading-frontend.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-heading-frontend.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-shipping-frontend.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-shipping-frontend.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-cross-sells-products-style.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-cross-sells-products-style.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-express-payment-frontend.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-express-payment-frontend.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/proceed-to-checkout-frontend.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/proceed-to-checkout-frontend.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-taxes-style.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-taxes-style.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-heading-style.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-heading-style.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/filled-cart-frontend.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/filled-cart-frontend.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-totals-style.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-totals-style.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-line-items-style.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-line-items-style.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-coupon-form-frontend.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-coupon-form-frontend.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-shipping-style.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-shipping-style.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-discount-frontend.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-discount-frontend.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-express-payment-style.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-express-payment-style.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/empty-cart-frontend.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/empty-cart-frontend.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-line-items-frontend.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-line-items-frontend.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-coupon-form-style.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-coupon-form-style.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-totals-style.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-totals-style.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-subtotal-frontend.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-subtotal-frontend.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/proceed-to-checkout-style.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/proceed-to-checkout-style.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-order-summary-style.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-order-summary-style.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-cross-sells-style.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-cross-sells-style.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-totals-frontend.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-totals-frontend.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-cross-sells-products-frontend.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-cross-sells-products-frontend.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-fee-style.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-fee-style.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-items-frontend.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-items-frontend.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-fee-frontend.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-fee-frontend.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-taxes-frontend.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-taxes-frontend.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-accepted-payment-methods-frontend.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-accepted-payment-methods-frontend.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-totals-frontend.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-totals-frontend.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/empty-cart-style.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/empty-cart-style.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-cross-sells-frontend.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-cross-sells-frontend.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-accepted-payment-methods-style.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-accepted-payment-methods-style.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-order-summary-frontend.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-order-summary-frontend.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/filled-cart-style.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/filled-cart-style.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-subtotal-style.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-subtotal-style.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-order-summary-taxes-block.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-order-summary-taxes-block.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-order-summary-subtotal-block.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-order-summary-subtotal-block.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-order-summary-totals-block.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-order-summary-totals-block.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/filled-cart-block.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/filled-cart-block.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/empty-cart-block.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/empty-cart-block.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-totals-block.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-totals-block.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-items-block.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-items-block.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-line-items-block.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-line-items-block.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-order-summary-block.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-order-summary-block.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-express-payment-block.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-express-payment-block.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/proceed-to-checkout-block.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/proceed-to-checkout-block.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-accepted-payment-methods-block.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-accepted-payment-methods-block.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-order-summary-coupon-form-block.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-order-summary-coupon-form-block.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-order-summary-discount-block.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-order-summary-discount-block.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-order-summary-fee-block.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-order-summary-fee-block.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-order-summary-heading-block.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-order-summary-heading-block.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-order-summary-shipping-block.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-order-summary-shipping-block.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-cross-sells-block.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-cross-sells-block.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-cross-sells-products-block.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-cross-sells-products-block.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout.js\",\"version\":\"96e1e6e0f4fe470f91fa\",\"dependencies\":[\"react\",\"wc-blocks-checkout\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-price-format\",\"wc-settings\",\"wc-types\",\"wp-a11y\",\"wp-api-fetch\",\"wp-autop\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-core-data\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-editor\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-notices\",\"wp-plugins\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-wordcount\"]},\"assets\\/client\\/blocks\\/checkout-frontend.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-frontend.js\",\"version\":\"e140f38159dfa7beb30e\",\"dependencies\":[\"wc-cart-checkout-base\",\"wc-cart-checkout-vendors\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wc-types\",\"wp-a11y\",\"wp-api-fetch\",\"wp-autop\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-plugins\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-wordcount\"]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-frontend.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-frontend.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/shipping-method-style.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/shipping-method-style.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-discount-style.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-discount-style.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/shipping-methods-frontend.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/shipping-methods-frontend.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-shipping-frontend.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-shipping-frontend.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/fields-style.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/fields-style.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/totals-style.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/totals-style.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-taxes-style.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-taxes-style.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/payment-style.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/payment-style.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/shipping-method-frontend.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/shipping-method-frontend.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/actions-style.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/actions-style.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/contact-information-frontend.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/contact-information-frontend.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/payment-frontend.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/payment-frontend.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-coupon-form-frontend.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-coupon-form-frontend.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-shipping-style.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-shipping-style.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-discount-frontend.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-discount-frontend.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-note-frontend.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-note-frontend.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/pickup-options-frontend.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/pickup-options-frontend.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/terms-style.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/terms-style.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/fields-frontend.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/fields-frontend.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-coupon-form-style.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-coupon-form-style.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-subtotal-frontend.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-subtotal-frontend.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/terms-frontend.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/terms-frontend.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/additional-information-frontend.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/additional-information-frontend.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/pickup-options-style.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/pickup-options-style.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-fee-style.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-fee-style.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/shipping-address-frontend.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/shipping-address-frontend.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/contact-information-style.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/contact-information-style.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-fee-frontend.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-fee-frontend.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-style.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-style.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-taxes-frontend.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-taxes-frontend.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/totals-frontend.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/totals-frontend.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/shipping-address-style.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/shipping-address-style.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/billing-address-style.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/billing-address-style.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/express-payment-frontend.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/express-payment-frontend.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/actions-frontend.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/actions-frontend.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/billing-address-frontend.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/billing-address-frontend.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-subtotal-style.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-subtotal-style.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/shipping-methods-style.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/shipping-methods-style.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-cart-items-style.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-cart-items-style.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/additional-information-style.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/additional-information-style.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-cart-items-frontend.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-cart-items-frontend.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-express-payment--checkout-blocks\\/express-payment-frontend.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-express-payment--checkout-blocks\\/express-payment-frontend.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-actions-block.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-actions-block.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-additional-information-block.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-additional-information-block.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-billing-address-block.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-billing-address-block.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-contact-information-block.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-contact-information-block.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-express-payment-block.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-express-payment-block.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-fields-block.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-fields-block.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-order-note-block.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-order-note-block.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-order-summary-block.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-order-summary-block.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-order-summary-cart-items-block.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-order-summary-cart-items-block.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-order-summary-coupon-form-block.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-order-summary-coupon-form-block.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-order-summary-discount-block.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-order-summary-discount-block.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-order-summary-fee-block.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-order-summary-fee-block.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-order-summary-shipping-block.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-order-summary-shipping-block.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-order-summary-subtotal-block.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-order-summary-subtotal-block.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-order-summary-taxes-block.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-order-summary-taxes-block.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-order-summary-totals-block.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-order-summary-totals-block.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-payment-block.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-payment-block.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-shipping-address-block.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-shipping-address-block.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-shipping-methods-block.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-shipping-methods-block.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-shipping-method-block.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-shipping-method-block.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-pickup-options-block.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-pickup-options-block.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-terms-block.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-terms-block.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-totals-block.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-totals-block.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents.js\",\"version\":\"0d14f879bb931ec28d02\",\"dependencies\":[\"react\",\"wc-blocks-checkout\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-price-format\",\"wc-settings\",\"wc-types\",\"wp-a11y\",\"wp-autop\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-wordcount\"]},\"assets\\/client\\/blocks\\/empty-mini-cart-contents-block.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/empty-mini-cart-contents-block.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/filled-mini-cart-contents-block.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/filled-mini-cart-contents-block.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-footer-block.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-footer-block.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-items-block.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-items-block.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-products-table-block.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-products-table-block.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-shopping-button-block.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-shopping-button-block.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-cart-button-block.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-cart-button-block.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-checkout-button-block.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-checkout-button-block.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-title-block.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-title-block.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-title-items-counter-block.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-title-items-counter-block.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-title-label-block.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-title-label-block.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-component-frontend.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-component-frontend.js\",\"version\":\"94a847b96873f9cc6d69\",\"dependencies\":[\"wc-cart-checkout-base\",\"wc-cart-checkout-vendors\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-price-format\",\"wc-settings\",\"wc-types\",\"wp-a11y\",\"wp-autop\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-wordcount\"]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/shopping-button-style.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/shopping-button-style.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/cart-button-style.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/cart-button-style.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-label-style.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-label-style.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/cart-button-frontend.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/cart-button-frontend.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/footer-style.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/footer-style.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/products-table-frontend.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/products-table-frontend.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-style.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-style.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/filled-cart-frontend.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/filled-cart-frontend.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-frontend.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-frontend.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/checkout-button-frontend.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/checkout-button-frontend.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/empty-cart-frontend.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/empty-cart-frontend.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-items-counter-frontend.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-items-counter-frontend.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/shopping-button-frontend.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/shopping-button-frontend.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/footer-frontend.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/footer-frontend.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/empty-cart-style.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/empty-cart-style.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/items-style.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/items-style.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-label-frontend.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-label-frontend.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-items-counter-style.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-items-counter-style.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/checkout-button-style.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/checkout-button-style.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/filled-cart-style.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/filled-cart-style.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/items-frontend.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/items-frontend.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-line-items--mini-cart-contents-block\\/products-table-frontend.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-line-items--mini-cart-contents-block\\/products-table-frontend.js\",\"version\":\"wc-9.3.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/wc-shipping-method-pickup-location.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-shipping-method-pickup-location.js\",\"version\":\"1af276302403f21245e7\",\"dependencies\":[\"react\",\"react-dom\",\"wc-settings\",\"wc-types\",\"wp-api-fetch\",\"wp-components\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"assets\\/client\\/blocks\\/wc-blocks-classic-template-revert-button.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks-classic-template-revert-button.js\",\"version\":\"c9d3f65e9ce3db18b33f\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-core-data\",\"wp-data\",\"wp-edit-site\",\"wp-element\",\"wp-i18n\",\"wp-plugins\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-payment-method-cod.js\":{\"src\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-payment-method-cod.js\",\"version\":\"5f402826b33bac8f9e43\",\"dependencies\":[\"react\",\"wc-blocks-registry\",\"wc-settings\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\"]}},\"version\":\"wc-9.3.3\",\"hash\":\"a99009ca355e59655167c890eb9e9bad\"}','off'),(476,'_transient_timeout_woocommerce_admin_remote_free_extensions_specs','1747054983','off');
INSERT INTO `wp_options` VALUES (477,'_transient_woocommerce_admin_remote_free_extensions_specs','a:2:{s:2:\"vi\";a:5:{s:10:\"obw/basics\";O:8:\"stdClass\":3:{s:3:\"key\";s:10:\"obw/basics\";s:5:\"title\";s:32:\"Nhận những điều cơ bản\";s:7:\"plugins\";a:4:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"WooPayments\";s:11:\"description\";s:189:\"Chấp nhận thẻ tín dụng và các phương thức thanh toán phổ biến khác với <a href=\"https://woocommerce.com/products/woocommerce-payments\" target=\"_blank\">WooPayments</a>\";s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";a:39:{i:0;s:2:\"US\";i:1;s:2:\"PR\";i:2;s:2:\"AU\";i:3;s:2:\"CA\";i:4;s:2:\"DE\";i:5;s:2:\"ES\";i:6;s:2:\"FR\";i:7;s:2:\"GB\";i:8;s:2:\"IE\";i:9;s:2:\"IT\";i:10;s:2:\"NZ\";i:11;s:2:\"AT\";i:12;s:2:\"BE\";i:13;s:2:\"NL\";i:14;s:2:\"PL\";i:15;s:2:\"PT\";i:16;s:2:\"CH\";i:17;s:2:\"HK\";i:18;s:2:\"SG\";i:19;s:2:\"CY\";i:20;s:2:\"DK\";i:21;s:2:\"EE\";i:22;s:2:\"FI\";i:23;s:2:\"GR\";i:24;s:2:\"LU\";i:25;s:2:\"LT\";i:26;s:2:\"LV\";i:27;s:2:\"NO\";i:28;s:2:\"MT\";i:29;s:2:\"SI\";i:30;s:2:\"SK\";i:31;s:2:\"BG\";i:32;s:2:\"CZ\";i:33;s:2:\"HR\";i:34;s:2:\"HU\";i:35;s:2:\"RO\";i:36;s:2:\"SE\";i:37;s:2:\"JP\";i:38;s:2:\"AE\";}s:9:\"operation\";s:2:\"in\";}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:14:\"is_built_by_wc\";b:1;s:14:\"min_wp_version\";s:3:\"5.9\";s:3:\"key\";s:20:\"woocommerce-payments\";}i:1;O:8:\"stdClass\":5:{s:4:\"name\";s:22:\"Giao hàng WooCommerce\";s:11:\"description\";s:122:\"In nhãn vận chuyển với <a href=\"https://woocommerce.com/products/shipping\" target=\"_blank\">WooCommerce Shipping</a>\";s:10:\"is_visible\";a:3:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";a:1:{i:0;s:2:\"US\";}s:9:\"operation\";s:2:\"in\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-shipping\";}}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:13:\"product_types\";}}i:1;O:8:\"stdClass\":1:{s:3:\"use\";s:5:\"count\";}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:5:\"value\";i:1;s:7:\"default\";a:0:{}s:9:\"operation\";s:2:\"!=\";}}i:1;a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:15:\"product_types.0\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:5:\"value\";s:9:\"downloads\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:2:\"!=\";}}}}}s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:20:\"woocommerce-shipping\";}i:2;O:8:\"stdClass\":5:{s:4:\"name\";s:18:\"Thuế WooCommerce\";s:11:\"description\";s:126:\"Nhận thuế bán hàng tự động với <a href=\"https://woocommerce.com/products/tax\" target=\"_blank\">WooCommerce Tax</a>\";s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";a:11:{i:0;s:2:\"US\";i:1;s:2:\"FR\";i:2;s:2:\"GB\";i:3;s:2:\"DE\";i:4;s:2:\"CA\";i:5;s:2:\"AU\";i:6;s:2:\"GR\";i:7;s:2:\"BE\";i:8;s:2:\"PT\";i:9;s:2:\"DK\";i:10;s:2:\"SE\";}s:9:\"operation\";s:2:\"in\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}}}}s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:24:\"woocommerce-services:tax\";}i:3;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"Jetpack\";s:11:\"description\";s:127:\"Tăng cường tốc độ và bảo mật với <a href=\"https://woocommerce.com/products/jetpack\" target=\"_blank\">Jetpack</a>\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:7:\"jetpack\";}}}}}s:14:\"is_built_by_wc\";b:0;s:14:\"min_wp_version\";s:3:\"6.0\";s:3:\"key\";s:7:\"jetpack\";}}}s:8:\"obw/grow\";O:8:\"stdClass\":3:{s:3:\"key\";s:8:\"obw/grow\";s:5:\"title\";s:37:\"Phát triển cửa hàng của bạn\";s:7:\"plugins\";a:4:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"Bưu phẩm\";s:11:\"description\";s:115:\"Level up your email marketing with <a href=\"https://woocommerce.com/products/mailpoet\" target=\"_blank\">MailPoet</a>\";s:10:\"manage_url\";s:35:\"admin.php?page=mailpoet-newsletters\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:37:\"woocommerce_remote_variant_assignment\";s:5:\"value\";a:2:{i:0;i:1;i:1;i:84;}s:7:\"default\";b:0;s:9:\"operation\";s:5:\"range\";}}s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:8:\"mailpoet\";}i:1;O:8:\"stdClass\":8:{s:4:\"name\";s:22:\"Google cho WooCommerce\";s:11:\"description\";s:131:\"Tăng doanh thu với <a href=\"https://woocommerce.com/products/google-listings-and-ads\" target=\"_blank\">Google cho WooCommerce</a>\";s:9:\"image_url\";s:94:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/google.svg\";s:10:\"manage_url\";s:46:\"admin.php?page=wc-admin&path=%2Fgoogle%2Fstart\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:23:\"google-listings-and-ads\";}}}}}s:14:\"is_built_by_wc\";b:1;s:15:\"min_php_version\";s:3:\"7.4\";s:3:\"key\";s:23:\"google-listings-and-ads\";}i:2;O:8:\"stdClass\":8:{s:4:\"name\";s:26:\"Pinterest cho  WooCommerce\";s:11:\"description\";s:144:\"Đưa sản phẩm của bạn đến trước mắt những người dùng Pinterest đang tìm kiếm ý tưởng và những thứ để mua.\";s:9:\"image_url\";s:97:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/pinterest.png\";s:10:\"manage_url\";s:51:\"admin.php?page=wc-admin&path=%2Fpinterest%2Flanding\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:37:\"woocommerce_remote_variant_assignment\";s:5:\"value\";a:2:{i:0;i:1;i:1;i:60;}s:7:\"default\";b:0;s:9:\"operation\";s:5:\"range\";}}s:14:\"is_built_by_wc\";b:1;s:15:\"min_php_version\";s:3:\"7.3\";s:3:\"key\";s:25:\"pinterest-for-woocommerce\";}i:3;O:8:\"stdClass\":7:{s:4:\"name\";s:24:\"Facebook cho WooCommerce\";s:11:\"description\";s:163:\"Liệt kê sản phẩm và tạo quảng cáo trên Facebook và Instagram với <a href=\"https://woocommerce.com/products/facebook/\">Facebook cho WooCommerce</a>\";s:9:\"image_url\";s:96:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/facebook.png\";s:10:\"manage_url\";s:26:\"admin.php?page=wc-facebook\";s:10:\"is_visible\";b:0;s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:24:\"facebook-for-woocommerce\";}}}s:15:\"task-list/reach\";O:8:\"stdClass\":3:{s:3:\"key\";s:15:\"task-list/reach\";s:5:\"title\";s:31:\"Tiếp cận với khách hàng\";s:7:\"plugins\";a:3:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"Bưu phẩm\";s:11:\"description\";s:139:\"Tạo và gửi email theo dõi mua hàng, bản tin và chiến dịch quảng cáo trực tiếp từ bảng điều khiển của bạn.\";s:9:\"image_url\";s:96:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/mailpoet.svg\";s:10:\"manage_url\";s:35:\"admin.php?page=mailpoet-newsletters\";s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:12:\"mailpoet:alt\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"Klaviyo\";s:11:\"description\";s:195:\"Phát triển và giữ chân khách hàng bằng tự động hóa tiếp thị qua email và SMS thông minh, hiệu quả và chế độ xem hợp nhất về tương tác của khách hàng.\";s:9:\"image_url\";s:95:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/klaviyo.png\";s:10:\"manage_url\";s:31:\"admin.php?page=klaviyo_settings\";s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:11:\"klaviyo:alt\";}i:2;O:8:\"stdClass\":6:{s:4:\"name\";s:9:\"Mailchimp\";s:11:\"description\";s:113:\"Gửi chiến dịch mục tiêu, khôi phục giỏ hàng bị bỏ rơi và nhiều hơn nữa với Mailchimp.\";s:9:\"image_url\";s:97:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/mailchimp.svg\";s:10:\"manage_url\";s:36:\"admin.php?page=mailchimp-woocommerce\";s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:29:\"mailchimp-for-woocommerce:alt\";}}}s:14:\"task-list/grow\";O:8:\"stdClass\":3:{s:3:\"key\";s:14:\"task-list/grow\";s:5:\"title\";s:37:\"Phát triển cửa hàng của bạn\";s:7:\"plugins\";a:6:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"Google cho WooCommerce\";s:11:\"description\";s:254:\"Tiếp cận nhiều người mua sắm hơn và thúc đẩy doanh số bán hàng cho cửa hàng của bạn. Tích hợp với Google để liệt kê sản phẩm của bạn miễn phí và khởi chạy các chiến dịch quảng cáo trả phí.\";s:9:\"image_url\";s:94:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/google.svg\";s:10:\"manage_url\";s:46:\"admin.php?page=wc-admin&path=%2Fgoogle%2Fstart\";s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:27:\"google-listings-and-ads:alt\";}i:1;O:8:\"stdClass\":7:{s:4:\"name\";s:22:\"TikTok cho WooCommerce\";s:9:\"image_url\";s:94:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/tiktok.svg\";s:11:\"description\";s:207:\"Tăng doanh số bán hàng trực tuyến của bạn bằng cách quảng cáo sản phẩm của bạn trên TikTok cho hơn một tỷ người dùng hoạt động hàng tháng trên toàn thế giới.\";s:10:\"manage_url\";s:21:\"admin.php?page=tiktok\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";a:40:{i:0;s:2:\"US\";i:1;s:2:\"CA\";i:2;s:2:\"MX\";i:3;s:2:\"AT\";i:4;s:2:\"BE\";i:5;s:2:\"CZ\";i:6;s:2:\"DK\";i:7;s:2:\"FI\";i:8;s:2:\"FR\";i:9;s:2:\"DE\";i:10;s:2:\"GR\";i:11;s:2:\"HU\";i:12;s:2:\"IE\";i:13;s:2:\"IT\";i:14;s:2:\"NL\";i:15;s:2:\"PL\";i:16;s:2:\"PT\";i:17;s:2:\"RO\";i:18;s:2:\"ES\";i:19;s:2:\"SE\";i:20;s:2:\"GB\";i:21;s:2:\"CH\";i:22;s:2:\"NO\";i:23;s:2:\"AU\";i:24;s:2:\"NZ\";i:25;s:2:\"SG\";i:26;s:2:\"MY\";i:27;s:2:\"PH\";i:28;s:2:\"ID\";i:29;s:2:\"VN\";i:30;s:2:\"TH\";i:31;s:2:\"KR\";i:32;s:2:\"IL\";i:33;s:2:\"AE\";i:34;s:2:\"RU\";i:35;s:2:\"UA\";i:36;s:2:\"TR\";i:37;s:2:\"SA\";i:38;s:2:\"BR\";i:39;s:2:\"JP\";}s:9:\"operation\";s:2:\"in\";}}s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:19:\"tiktok-for-business\";}i:2;O:8:\"stdClass\":6:{s:4:\"name\";s:26:\"Pinterest cho  WooCommerce\";s:11:\"description\";s:253:\"Đưa sản phẩm của bạn đến trước mắt người dùng Pinterest đang tìm kiếm ý tưởng và những thứ để mua. Bắt đầu với Pinterest và làm cho toàn bộ danh mục sản phẩm của bạn có thể duyệt được.\";s:9:\"image_url\";s:97:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/pinterest.png\";s:10:\"manage_url\";s:51:\"admin.php?page=wc-admin&path=%2Fpinterest%2Flanding\";s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:29:\"pinterest-for-woocommerce:alt\";}i:3;O:8:\"stdClass\":8:{s:4:\"name\";s:26:\"Meta Ads & Pixel by Kliken\";s:11:\"description\";s:150:\"Automate Facebook & Instagram marketing with Kliken. Launch ads and schedule a month of posts in 5 minutes—first 5 free! Plans start at just $20/mo.\";s:9:\"image_url\";s:107:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/kliken-kraken-icon.webp\";s:10:\"manage_url\";s:40:\"admin.php?page=kliken-ads-pixel-for-meta\";s:14:\"is_built_by_wc\";b:0;s:16:\"install_external\";b:0;s:10:\"is_visible\";b:1;s:3:\"key\";s:29:\"kliken-ads-pixel-for-meta:alt\";}i:4;O:8:\"stdClass\":7:{s:4:\"name\";s:24:\"Facebook cho WooCommerce\";s:11:\"description\";s:76:\"Liệt kê sản phẩm và tạo quảng cáo trên Facebook và Instagram.\";s:9:\"image_url\";s:96:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/facebook.png\";s:10:\"manage_url\";s:26:\"admin.php?page=wc-facebook\";s:10:\"is_visible\";b:1;s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:28:\"facebook-for-woocommerce:alt\";}i:5;O:8:\"stdClass\":10:{s:4:\"name\";s:25:\"Đa kênh cho WooCommerce\";s:11:\"description\";s:153:\"Đồng bộ hóa dữ liệu bán hàng của bạn trên các nền tảng và quản lý mọi thứ từ một bảng điều khiển thống nhất.\";s:9:\"image_url\";s:101:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/multichannel.webp\";s:10:\"manage_url\";s:28:\"admin.php?page=sales_channel\";s:14:\"is_built_by_wc\";b:0;s:16:\"install_external\";b:1;s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:9:\"9.8.0-dev\";s:8:\"operator\";s:2:\">=\";}}s:15:\"learn_more_link\";s:143:\"https://woocommerce.com/products/multichannel-by-cedcommerce-ebay-amazon-walmart-etsy-integration/?utm_source=marketing_task&utm_medium=product\";s:4:\"tags\";a:1:{i:0;s:11:\"marketplace\";}s:3:\"key\";s:27:\"multichannel-by-cedcommerce\";}}}s:17:\"obw/core-profiler\";O:8:\"stdClass\":3:{s:3:\"key\";s:17:\"obw/core-profiler\";s:5:\"title\";s:37:\"Phát triển cửa hàng của bạn\";s:7:\"plugins\";a:13:{i:0;O:8:\"stdClass\":11:{s:4:\"name\";s:11:\"WooPayments\";s:11:\"description\";s:54:\"Offer safe and convenient ways to pay with WooPayments\";s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";a:39:{i:0;s:2:\"US\";i:1;s:2:\"PR\";i:2;s:2:\"AU\";i:3;s:2:\"CA\";i:4;s:2:\"DE\";i:5;s:2:\"ES\";i:6;s:2:\"FR\";i:7;s:2:\"GB\";i:8;s:2:\"IE\";i:9;s:2:\"IT\";i:10;s:2:\"NZ\";i:11;s:2:\"AT\";i:12;s:2:\"BE\";i:13;s:2:\"NL\";i:14;s:2:\"PL\";i:15;s:2:\"PT\";i:16;s:2:\"CH\";i:17;s:2:\"HK\";i:18;s:2:\"SG\";i:19;s:2:\"CY\";i:20;s:2:\"DK\";i:21;s:2:\"EE\";i:22;s:2:\"FI\";i:23;s:2:\"GR\";i:24;s:2:\"LU\";i:25;s:2:\"LT\";i:26;s:2:\"LV\";i:27;s:2:\"NO\";i:28;s:2:\"MT\";i:29;s:2:\"SI\";i:30;s:2:\"SK\";i:31;s:2:\"BG\";i:32;s:2:\"CZ\";i:33;s:2:\"HR\";i:34;s:2:\"HU\";i:35;s:2:\"RO\";i:36;s:2:\"SE\";i:37;s:2:\"JP\";i:38;s:2:\"AE\";}s:9:\"operation\";s:2:\"in\";}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:14:\"is_built_by_wc\";b:1;s:14:\"min_wp_version\";s:3:\"5.9\";s:3:\"key\";s:20:\"woocommerce-payments\";s:5:\"label\";s:37:\"Nhận thanh toán bằng WooPayments\";s:9:\"image_url\";s:120:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-woo-rebrand-2.svg\";s:15:\"learn_more_link\";s:123:\"https://woocommerce.com/products/woocommerce-payments?utm_source=storeprofiler&utm_medium=product&utm_campaign=freefeatures\";s:16:\"install_priority\";i:5;s:12:\"requires_jpc\";b:1;}i:1;O:8:\"stdClass\":9:{s:4:\"name\";s:22:\"Giao hàng WooCommerce\";s:11:\"description\";s:123:\"In nhãn USPS, UPS và DHL trực tiếp từ bảng điều khiển của bạn và tiết kiệm chi phí vận chuyển.\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}}s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:20:\"woocommerce-shipping\";s:5:\"label\";s:50:\"In nhãn vận chuyển với WooCommerce Shipping\";s:9:\"image_url\";s:120:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-woo-rebrand-2.svg\";s:15:\"learn_more_link\";s:114:\"https://woocommerce.com/woocommerce-shipping?utm_source=storeprofiler&utm_medium=product&utm_campaign=freefeatures\";s:16:\"install_priority\";i:3;}i:2;O:8:\"stdClass\":10:{s:4:\"name\";s:31:\"PayPal Payments for WooCommerce\";s:11:\"description\";s:61:\"Offer more ways to pay with this all-in-one checkout solution\";s:14:\"is_built_by_wc\";b:0;s:15:\"install_options\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"name\";s:26:\"woocommerce_paypal_branded\";s:5:\"value\";s:8:\"profiler\";}}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";a:39:{i:0;s:2:\"US\";i:1;s:2:\"PR\";i:2;s:2:\"AU\";i:3;s:2:\"CA\";i:4;s:2:\"DE\";i:5;s:2:\"ES\";i:6;s:2:\"FR\";i:7;s:2:\"GB\";i:8;s:2:\"IE\";i:9;s:2:\"IT\";i:10;s:2:\"NZ\";i:11;s:2:\"AT\";i:12;s:2:\"BE\";i:13;s:2:\"NL\";i:14;s:2:\"PL\";i:15;s:2:\"PT\";i:16;s:2:\"CH\";i:17;s:2:\"HK\";i:18;s:2:\"SG\";i:19;s:2:\"CY\";i:20;s:2:\"DK\";i:21;s:2:\"EE\";i:22;s:2:\"FI\";i:23;s:2:\"GR\";i:24;s:2:\"LU\";i:25;s:2:\"LT\";i:26;s:2:\"LV\";i:27;s:2:\"NO\";i:28;s:2:\"MT\";i:29;s:2:\"SI\";i:30;s:2:\"SK\";i:31;s:2:\"BG\";i:32;s:2:\"CZ\";i:33;s:2:\"HR\";i:34;s:2:\"HU\";i:35;s:2:\"RO\";i:36;s:2:\"SE\";i:37;s:2:\"JP\";i:38;s:2:\"AE\";}s:9:\"operation\";s:3:\"!in\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:10:\"9.8.0-rc.1\";s:8:\"operator\";s:2:\">=\";}}s:3:\"key\";s:27:\"woocommerce-paypal-payments\";s:5:\"label\";s:41:\"Maximize conversions with PayPal Payments\";s:9:\"image_url\";s:113:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-paypal.svg\";s:15:\"learn_more_link\";s:130:\"https://woocommerce.com/products/woocommerce-paypal-payments?utm_source=storeprofiler&utm_medium=product&utm_campaign=freefeatures\";s:16:\"install_priority\";i:5;}i:3;O:8:\"stdClass\":9:{s:4:\"name\";s:31:\"PayPal Payments for WooCommerce\";s:11:\"description\";s:60:\"Offer additional flexible payment options with PayPal Wallet\";s:14:\"is_built_by_wc\";b:0;s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";a:39:{i:0;s:2:\"US\";i:1;s:2:\"PR\";i:2;s:2:\"AU\";i:3;s:2:\"CA\";i:4;s:2:\"DE\";i:5;s:2:\"ES\";i:6;s:2:\"FR\";i:7;s:2:\"GB\";i:8;s:2:\"IE\";i:9;s:2:\"IT\";i:10;s:2:\"NZ\";i:11;s:2:\"AT\";i:12;s:2:\"BE\";i:13;s:2:\"NL\";i:14;s:2:\"PL\";i:15;s:2:\"PT\";i:16;s:2:\"CH\";i:17;s:2:\"HK\";i:18;s:2:\"SG\";i:19;s:2:\"CY\";i:20;s:2:\"DK\";i:21;s:2:\"EE\";i:22;s:2:\"FI\";i:23;s:2:\"GR\";i:24;s:2:\"LU\";i:25;s:2:\"LT\";i:26;s:2:\"LV\";i:27;s:2:\"NO\";i:28;s:2:\"MT\";i:29;s:2:\"SI\";i:30;s:2:\"SK\";i:31;s:2:\"BG\";i:32;s:2:\"CZ\";i:33;s:2:\"HR\";i:34;s:2:\"HU\";i:35;s:2:\"RO\";i:36;s:2:\"SE\";i:37;s:2:\"JP\";i:38;s:2:\"AE\";}s:9:\"operation\";s:2:\"in\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:10:\"9.8.0-rc.1\";s:8:\"operator\";s:2:\">=\";}}s:3:\"key\";s:39:\"woocommerce-paypal-payments:wallet-only\";s:5:\"label\";s:38:\"Give shoppers a variety of ways to pay\";s:9:\"image_url\";s:113:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-paypal.svg\";s:15:\"learn_more_link\";s:130:\"https://woocommerce.com/products/woocommerce-paypal-payments?utm_source=storeprofiler&utm_medium=product&utm_campaign=freefeatures\";s:16:\"install_priority\";i:5;}i:4;O:8:\"stdClass\":11:{s:4:\"name\";s:7:\"Jetpack\";s:11:\"description\";s:53:\"Keep your store online with full security and backups\";s:10:\"is_visible\";b:1;s:14:\"is_built_by_wc\";b:0;s:14:\"min_wp_version\";s:3:\"6.0\";s:3:\"key\";s:7:\"jetpack\";s:5:\"label\";s:58:\"Tăng cường tạo nội dung với Trợ lý AI Jetpack\";s:9:\"image_url\";s:114:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-jetpack.svg\";s:15:\"learn_more_link\";s:110:\"https://woocommerce.com/products/jetpack?utm_source=storeprofiler&utm_medium=product&utm_campaign=freefeatures\";s:16:\"install_priority\";i:8;s:12:\"requires_jpc\";b:1;}i:5;O:8:\"stdClass\":11:{s:4:\"name\";s:26:\"Pinterest cho  WooCommerce\";s:11:\"description\";s:55:\"Get your products in front of a highly engaged audience\";s:9:\"image_url\";s:116:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-pinterest.svg\";s:10:\"manage_url\";s:51:\"admin.php?page=wc-admin&path=%2Fpinterest%2Flanding\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:37:\"woocommerce_remote_variant_assignment\";s:5:\"value\";a:2:{i:0;i:1;i:1;i:60;}s:7:\"default\";b:0;s:9:\"operation\";s:5:\"range\";}}s:14:\"is_built_by_wc\";b:1;s:15:\"min_php_version\";s:3:\"7.3\";s:3:\"key\";s:25:\"pinterest-for-woocommerce\";s:5:\"label\";s:52:\"Trưng bày sản phẩm của bạn với Pinterest\";s:15:\"learn_more_link\";s:128:\"https://woocommerce.com/products/pinterest-for-woocommerce?utm_source=storeprofiler&utm_medium=product&utm_campaign=freefeatures\";s:16:\"install_priority\";i:2;}i:6;O:8:\"stdClass\":9:{s:4:\"name\";s:41:\"Quảng cáo & Pixel Meta cho WooCommerce\";s:11:\"description\";s:56:\"Build personalized email and SMS campaigns using Klaviyo\";s:9:\"image_url\";s:107:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/kliken-kraken-icon.webp\";s:10:\"manage_url\";s:40:\"admin.php?page=kliken-ads-pixel-for-meta\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:37:\"woocommerce_remote_variant_assignment\";s:5:\"value\";a:2:{i:0;i:61;i:1;i:120;}s:7:\"default\";b:0;s:9:\"operation\";s:5:\"range\";}}s:3:\"key\";s:25:\"kliken-ads-pixel-for-meta\";s:5:\"label\";s:69:\"Phát triển doanh nghiệp của bạn với Facebook và Instagram\";s:15:\"learn_more_link\";s:121:\"https://woocommerce.com/products/meta-ads-and-pixel?utm_source=storeprofiler&utm_medium=product&utm_campaign=freefeatures\";s:16:\"install_priority\";i:2;}i:7;O:8:\"stdClass\":10:{s:4:\"name\";s:11:\"Bưu phẩm\";s:11:\"description\";s:58:\"Attract and retain shoppers with email marketing campaigns\";s:10:\"manage_url\";s:35:\"admin.php?page=mailpoet-newsletters\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:37:\"woocommerce_remote_variant_assignment\";s:5:\"value\";a:2:{i:0;i:1;i:1;i:84;}s:7:\"default\";b:0;s:9:\"operation\";s:5:\"range\";}}s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:8:\"mailpoet\";s:5:\"label\";s:52:\"Tiếp cận khách hàng của bạn với MailPoet\";s:9:\"image_url\";s:115:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-mailpoet.svg\";s:15:\"learn_more_link\";s:111:\"https://woocommerce.com/products/mailpoet?utm_source=storeprofiler&utm_medium=product&utm_campaign=freefeatures\";s:16:\"install_priority\";i:7;}i:8;O:8:\"stdClass\":10:{s:4:\"name\";s:7:\"Klaviyo\";s:11:\"description\";s:56:\"Build personalized email and SMS campaigns using Klaviyo\";s:9:\"image_url\";s:95:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/klaviyo.png\";s:10:\"manage_url\";s:31:\"admin.php?page=klaviyo_settings\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:37:\"woocommerce_remote_variant_assignment\";s:5:\"value\";a:2:{i:0;i:85;i:1;i:120;}s:7:\"default\";b:0;s:9:\"operation\";s:5:\"range\";}}s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:7:\"klaviyo\";s:5:\"label\";s:7:\"Klaviyo\";s:15:\"learn_more_link\";s:126:\"https://woocommerce.com/products/klaviyo-for-woocommerce?utm_source=storeprofiler&utm_medium=product&utm_campaign=freefeatures\";s:16:\"install_priority\";i:7;}i:9;O:8:\"stdClass\":11:{s:4:\"name\";s:22:\"Google cho WooCommerce\";s:11:\"description\";s:57:\"Create ads for your products straight from your dashboard\";s:9:\"image_url\";s:113:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-google.svg\";s:10:\"manage_url\";s:46:\"admin.php?page=wc-admin&path=%2Fgoogle%2Fstart\";s:10:\"is_visible\";b:1;s:14:\"is_built_by_wc\";b:1;s:15:\"min_php_version\";s:3:\"7.4\";s:3:\"key\";s:23:\"google-listings-and-ads\";s:5:\"label\";s:44:\"Tăng doanh thu với Google cho WooCommerce\";s:15:\"learn_more_link\";s:126:\"https://woocommerce.com/products/google-listings-and-ads?utm_source=storeprofiler&utm_medium=product&utm_campaign=freefeatures\";s:16:\"install_priority\";i:6;}i:10;O:8:\"stdClass\":9:{s:4:\"name\";s:18:\"Thuế WooCommerce\";s:11:\"description\";s:62:\"Automatically calculate how much sales tax should be collected\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";a:11:{i:0;s:2:\"US\";i:1;s:2:\"FR\";i:2;s:2:\"GB\";i:3;s:2:\"DE\";i:4;s:2:\"CA\";i:5;s:2:\"AU\";i:6;s:2:\"GR\";i:7;s:2:\"BE\";i:8;s:2:\"PT\";i:9;s:2:\"DK\";i:10;s:2:\"SE\";}s:9:\"operation\";s:2:\"in\";}}s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:24:\"woocommerce-services:tax\";s:5:\"label\";s:57:\"Nhận mức thuế tự động với Thuế WooCommerce\";s:9:\"image_url\";s:120:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-woo-rebrand-2.svg\";s:15:\"learn_more_link\";s:106:\"https://woocommerce.com/products/tax?utm_source=storeprofiler&utm_medium=product&utm_campaign=freefeatures\";s:16:\"install_priority\";i:4;}i:11;O:8:\"stdClass\":10:{s:4:\"name\";s:22:\"TikTok cho WooCommerce\";s:9:\"image_url\";s:113:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-tiktok.svg\";s:11:\"description\";s:59:\"Sync your store with TikTok to create engaging ad campaigns\";s:10:\"manage_url\";s:21:\"admin.php?page=tiktok\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";a:40:{i:0;s:2:\"US\";i:1;s:2:\"CA\";i:2;s:2:\"MX\";i:3;s:2:\"AT\";i:4;s:2:\"BE\";i:5;s:2:\"CZ\";i:6;s:2:\"DK\";i:7;s:2:\"FI\";i:8;s:2:\"FR\";i:9;s:2:\"DE\";i:10;s:2:\"GR\";i:11;s:2:\"HU\";i:12;s:2:\"IE\";i:13;s:2:\"IT\";i:14;s:2:\"NL\";i:15;s:2:\"PL\";i:16;s:2:\"PT\";i:17;s:2:\"RO\";i:18;s:2:\"ES\";i:19;s:2:\"SE\";i:20;s:2:\"GB\";i:21;s:2:\"CH\";i:22;s:2:\"NO\";i:23;s:2:\"AU\";i:24;s:2:\"NZ\";i:25;s:2:\"SG\";i:26;s:2:\"MY\";i:27;s:2:\"PH\";i:28;s:2:\"ID\";i:29;s:2:\"VN\";i:30;s:2:\"TH\";i:31;s:2:\"KR\";i:32;s:2:\"IL\";i:33;s:2:\"AE\";i:34;s:2:\"RU\";i:35;s:2:\"UA\";i:36;s:2:\"TR\";i:37;s:2:\"SA\";i:38;s:2:\"BR\";i:39;s:2:\"JP\";}s:9:\"operation\";s:2:\"in\";}}s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:19:\"tiktok-for-business\";s:5:\"label\";s:46:\"Tạo chiến dịch quảng cáo với TikTok\";s:15:\"learn_more_link\";s:125:\"https://woocommerce.com/products/tiktok-for-woocommerce?utm_source=storeprofiler&utm_medium=product&utm_campaign=freefeatures\";s:16:\"install_priority\";i:1;}i:12;O:8:\"stdClass\":10:{s:4:\"name\";s:29:\"Print on Demand with Printful\";s:9:\"image_url\";s:115:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-printful.png\";s:11:\"description\";s:65:\"Design and easily sell custom print products online with Printful\";s:10:\"manage_url\";s:0:\"\";s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";a:9:{i:0;s:2:\"AU\";i:1;s:2:\"GB\";i:2;s:2:\"CA\";i:3;s:2:\"ES\";i:4;s:2:\"DE\";i:5;s:2:\"FR\";i:6;s:2:\"NL\";i:7;s:2:\"BE\";i:8;s:2:\"LU\";}s:9:\"operation\";s:2:\"in\";}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:10:\"industry.0\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:5:\"value\";s:24:\"clothing_and_accessories\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:33:\"printful-shipping-for-woocommerce\";s:5:\"label\";s:29:\"Print on Demand with Printful\";s:15:\"learn_more_link\";s:111:\"https://woocommerce.com/products/printful?utm_source=storeprofiler&utm_medium=product&utm_campaign=freefeatures\";s:16:\"install_priority\";i:9;}}}}s:5:\"en_US\";a:5:{s:10:\"obw/basics\";O:8:\"stdClass\":3:{s:3:\"key\";s:10:\"obw/basics\";s:5:\"title\";s:14:\"Get the basics\";s:7:\"plugins\";a:4:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"WooPayments\";s:11:\"description\";s:154:\"Accept credit cards and other popular payment methods with <a href=\"https://woocommerce.com/products/woocommerce-payments\" target=\"_blank\">WooPayments</a>\";s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";a:39:{i:0;s:2:\"US\";i:1;s:2:\"PR\";i:2;s:2:\"AU\";i:3;s:2:\"CA\";i:4;s:2:\"DE\";i:5;s:2:\"ES\";i:6;s:2:\"FR\";i:7;s:2:\"GB\";i:8;s:2:\"IE\";i:9;s:2:\"IT\";i:10;s:2:\"NZ\";i:11;s:2:\"AT\";i:12;s:2:\"BE\";i:13;s:2:\"NL\";i:14;s:2:\"PL\";i:15;s:2:\"PT\";i:16;s:2:\"CH\";i:17;s:2:\"HK\";i:18;s:2:\"SG\";i:19;s:2:\"CY\";i:20;s:2:\"DK\";i:21;s:2:\"EE\";i:22;s:2:\"FI\";i:23;s:2:\"GR\";i:24;s:2:\"LU\";i:25;s:2:\"LT\";i:26;s:2:\"LV\";i:27;s:2:\"NO\";i:28;s:2:\"MT\";i:29;s:2:\"SI\";i:30;s:2:\"SK\";i:31;s:2:\"BG\";i:32;s:2:\"CZ\";i:33;s:2:\"HR\";i:34;s:2:\"HU\";i:35;s:2:\"RO\";i:36;s:2:\"SE\";i:37;s:2:\"JP\";i:38;s:2:\"AE\";}s:9:\"operation\";s:2:\"in\";}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:14:\"is_built_by_wc\";b:1;s:14:\"min_wp_version\";s:3:\"5.9\";s:3:\"key\";s:20:\"woocommerce-payments\";}i:1;O:8:\"stdClass\":5:{s:4:\"name\";s:20:\"WooCommerce Shipping\";s:11:\"description\";s:119:\"Print shipping labels with <a href=\"https://woocommerce.com/products/shipping\" target=\"_blank\">WooCommerce Shipping</a>\";s:10:\"is_visible\";a:3:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";a:1:{i:0;s:2:\"US\";}s:9:\"operation\";s:2:\"in\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:13:\"product_types\";}}i:1;O:8:\"stdClass\":1:{s:3:\"use\";s:5:\"count\";}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:5:\"value\";i:1;s:7:\"default\";a:0:{}s:9:\"operation\";s:2:\"!=\";}}i:1;a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:15:\"product_types.0\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:5:\"value\";s:9:\"downloads\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:2:\"!=\";}}}}}s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:29:\"woocommerce-services:shipping\";}i:2;O:8:\"stdClass\":5:{s:4:\"name\";s:15:\"WooCommerce Tax\";s:11:\"description\";s:111:\"Get automated sales tax with <a href=\"https://woocommerce.com/products/tax\" target=\"_blank\">WooCommerce Tax</a>\";s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";a:11:{i:0;s:2:\"US\";i:1;s:2:\"FR\";i:2;s:2:\"GB\";i:3;s:2:\"DE\";i:4;s:2:\"CA\";i:5;s:2:\"AU\";i:6;s:2:\"GR\";i:7;s:2:\"BE\";i:8;s:2:\"PT\";i:9;s:2:\"DK\";i:10;s:2:\"SE\";}s:9:\"operation\";s:2:\"in\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}}}}s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:24:\"woocommerce-services:tax\";}i:3;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"Jetpack\";s:11:\"description\";s:110:\"Enhance speed and security with <a href=\"https://woocommerce.com/products/jetpack\" target=\"_blank\">Jetpack</a>\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:7:\"jetpack\";}}}}}s:14:\"is_built_by_wc\";b:0;s:14:\"min_wp_version\";s:3:\"6.0\";s:3:\"key\";s:7:\"jetpack\";}}}s:8:\"obw/grow\";O:8:\"stdClass\":3:{s:3:\"key\";s:8:\"obw/grow\";s:5:\"title\";s:15:\"Grow your store\";s:7:\"plugins\";a:4:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"MailPoet\";s:11:\"description\";s:115:\"Level up your email marketing with <a href=\"https://woocommerce.com/products/mailpoet\" target=\"_blank\">MailPoet</a>\";s:10:\"manage_url\";s:35:\"admin.php?page=mailpoet-newsletters\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:37:\"woocommerce_remote_variant_assignment\";s:5:\"value\";a:2:{i:0;i:61;i:1;i:120;}s:7:\"default\";b:0;s:9:\"operation\";s:5:\"range\";}}s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:8:\"mailpoet\";}i:1;O:8:\"stdClass\":8:{s:4:\"name\";s:22:\"Google for WooCommerce\";s:11:\"description\";s:126:\"Drive sales with <a href=\"https://woocommerce.com/products/google-listings-and-ads\" target=\"_blank\">Google for WooCommerce</a>\";s:9:\"image_url\";s:94:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/google.svg\";s:10:\"manage_url\";s:46:\"admin.php?page=wc-admin&path=%2Fgoogle%2Fstart\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:23:\"google-listings-and-ads\";}}}}}s:14:\"is_built_by_wc\";b:1;s:15:\"min_php_version\";s:3:\"7.4\";s:3:\"key\";s:23:\"google-listings-and-ads\";}i:2;O:8:\"stdClass\":8:{s:4:\"name\";s:25:\"Pinterest for WooCommerce\";s:11:\"description\";s:76:\"Get your products in front of Pinners searching for ideas and things to buy.\";s:9:\"image_url\";s:97:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/pinterest.png\";s:10:\"manage_url\";s:51:\"admin.php?page=wc-admin&path=%2Fpinterest%2Flanding\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:37:\"woocommerce_remote_variant_assignment\";s:5:\"value\";a:2:{i:0;i:1;i:1;i:60;}s:7:\"default\";b:0;s:9:\"operation\";s:5:\"range\";}}s:14:\"is_built_by_wc\";b:1;s:15:\"min_php_version\";s:3:\"7.3\";s:3:\"key\";s:25:\"pinterest-for-woocommerce\";}i:3;O:8:\"stdClass\":7:{s:4:\"name\";s:24:\"Facebook for WooCommerce\";s:11:\"description\";s:141:\"List products and create ads on Facebook and Instagram with <a href=\"https://woocommerce.com/products/facebook/\">Facebook for WooCommerce</a>\";s:9:\"image_url\";s:96:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/facebook.png\";s:10:\"manage_url\";s:26:\"admin.php?page=wc-facebook\";s:10:\"is_visible\";b:0;s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:24:\"facebook-for-woocommerce\";}}}s:15:\"task-list/reach\";O:8:\"stdClass\":3:{s:3:\"key\";s:15:\"task-list/reach\";s:5:\"title\";s:22:\"Reach out to customers\";s:7:\"plugins\";a:3:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"MailPoet\";s:11:\"description\";s:111:\"Create and send purchase follow-up emails, newsletters, and promotional campaigns straight from your dashboard.\";s:9:\"image_url\";s:96:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/mailpoet.svg\";s:10:\"manage_url\";s:35:\"admin.php?page=mailpoet-newsletters\";s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:12:\"mailpoet:alt\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:9:\"Mailchimp\";s:11:\"description\";s:78:\"Send targeted campaigns, recover abandoned carts and much more with Mailchimp.\";s:9:\"image_url\";s:97:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/mailchimp.svg\";s:10:\"manage_url\";s:36:\"admin.php?page=mailchimp-woocommerce\";s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:29:\"mailchimp-for-woocommerce:alt\";}i:2;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"Klaviyo\";s:11:\"description\";s:138:\"Grow and retain customers with intelligent, impactful email and SMS marketing automation and a consolidated view of customer interactions.\";s:9:\"image_url\";s:95:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/klaviyo.png\";s:10:\"manage_url\";s:31:\"admin.php?page=klaviyo_settings\";s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:7:\"klaviyo\";}}}s:14:\"task-list/grow\";O:8:\"stdClass\":3:{s:3:\"key\";s:14:\"task-list/grow\";s:5:\"title\";s:15:\"Grow your store\";s:7:\"plugins\";a:4:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"Google for WooCommerce\";s:11:\"description\";s:134:\"Reach more shoppers and drive sales for your store. Integrate with Google to list your products for free and launch paid ad campaigns.\";s:9:\"image_url\";s:94:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/google.svg\";s:10:\"manage_url\";s:46:\"admin.php?page=wc-admin&path=%2Fgoogle%2Fstart\";s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:27:\"google-listings-and-ads:alt\";}i:1;O:8:\"stdClass\":7:{s:4:\"name\";s:22:\"TikTok for WooCommerce\";s:9:\"image_url\";s:94:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/tiktok.svg\";s:11:\"description\";s:118:\"Grow your online sales by promoting your products on TikTok to over one billion monthly active users around the world.\";s:10:\"manage_url\";s:21:\"admin.php?page=tiktok\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";a:40:{i:0;s:2:\"US\";i:1;s:2:\"CA\";i:2;s:2:\"MX\";i:3;s:2:\"AT\";i:4;s:2:\"BE\";i:5;s:2:\"CZ\";i:6;s:2:\"DK\";i:7;s:2:\"FI\";i:8;s:2:\"FR\";i:9;s:2:\"DE\";i:10;s:2:\"GR\";i:11;s:2:\"HU\";i:12;s:2:\"IE\";i:13;s:2:\"IT\";i:14;s:2:\"NL\";i:15;s:2:\"PL\";i:16;s:2:\"PT\";i:17;s:2:\"RO\";i:18;s:2:\"ES\";i:19;s:2:\"SE\";i:20;s:2:\"GB\";i:21;s:2:\"CH\";i:22;s:2:\"NO\";i:23;s:2:\"AU\";i:24;s:2:\"NZ\";i:25;s:2:\"SG\";i:26;s:2:\"MY\";i:27;s:2:\"PH\";i:28;s:2:\"ID\";i:29;s:2:\"VN\";i:30;s:2:\"TH\";i:31;s:2:\"KR\";i:32;s:2:\"IL\";i:33;s:2:\"AE\";i:34;s:2:\"RU\";i:35;s:2:\"UA\";i:36;s:2:\"TR\";i:37;s:2:\"SA\";i:38;s:2:\"BR\";i:39;s:2:\"JP\";}s:9:\"operation\";s:2:\"in\";}}s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:19:\"tiktok-for-business\";}i:2;O:8:\"stdClass\":6:{s:4:\"name\";s:25:\"Pinterest for WooCommerce\";s:11:\"description\";s:159:\"Get your products in front of Pinterest users searching for ideas and things to buy. Get started with Pinterest and make your entire product catalog browsable.\";s:9:\"image_url\";s:97:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/pinterest.png\";s:10:\"manage_url\";s:51:\"admin.php?page=wc-admin&path=%2Fpinterest%2Flanding\";s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:29:\"pinterest-for-woocommerce:alt\";}i:3;O:8:\"stdClass\":7:{s:4:\"name\";s:24:\"Facebook for WooCommerce\";s:11:\"description\";s:55:\"List products and create ads on Facebook and Instagram.\";s:9:\"image_url\";s:96:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/facebook.png\";s:10:\"manage_url\";s:26:\"admin.php?page=wc-facebook\";s:10:\"is_visible\";b:1;s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:28:\"facebook-for-woocommerce:alt\";}}}s:17:\"obw/core-profiler\";O:8:\"stdClass\":3:{s:3:\"key\";s:17:\"obw/core-profiler\";s:5:\"title\";s:15:\"Grow your store\";s:7:\"plugins\";a:10:{i:0;O:8:\"stdClass\":10:{s:4:\"name\";s:11:\"WooPayments\";s:11:\"description\";s:89:\"Securely accept payments and manage payment activity straight from your store\'s dashboard\";s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";a:39:{i:0;s:2:\"US\";i:1;s:2:\"PR\";i:2;s:2:\"AU\";i:3;s:2:\"CA\";i:4;s:2:\"DE\";i:5;s:2:\"ES\";i:6;s:2:\"FR\";i:7;s:2:\"GB\";i:8;s:2:\"IE\";i:9;s:2:\"IT\";i:10;s:2:\"NZ\";i:11;s:2:\"AT\";i:12;s:2:\"BE\";i:13;s:2:\"NL\";i:14;s:2:\"PL\";i:15;s:2:\"PT\";i:16;s:2:\"CH\";i:17;s:2:\"HK\";i:18;s:2:\"SG\";i:19;s:2:\"CY\";i:20;s:2:\"DK\";i:21;s:2:\"EE\";i:22;s:2:\"FI\";i:23;s:2:\"GR\";i:24;s:2:\"LU\";i:25;s:2:\"LT\";i:26;s:2:\"LV\";i:27;s:2:\"NO\";i:28;s:2:\"MT\";i:29;s:2:\"SI\";i:30;s:2:\"SK\";i:31;s:2:\"BG\";i:32;s:2:\"CZ\";i:33;s:2:\"HR\";i:34;s:2:\"HU\";i:35;s:2:\"RO\";i:36;s:2:\"SE\";i:37;s:2:\"JP\";i:38;s:2:\"AE\";}s:9:\"operation\";s:2:\"in\";}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:14:\"is_built_by_wc\";b:1;s:14:\"min_wp_version\";s:3:\"5.9\";s:3:\"key\";s:20:\"woocommerce-payments\";s:5:\"label\";s:25:\"Get paid with WooPayments\";s:9:\"image_url\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-woo.svg\";s:15:\"learn_more_link\";s:123:\"https://woocommerce.com/products/woocommerce-payments?utm_source=storeprofiler&utm_medium=product&utm_campaign=freefeatures\";s:16:\"install_priority\";i:5;}i:1;O:8:\"stdClass\":9:{s:4:\"name\";s:20:\"WooCommerce Shipping\";s:11:\"description\";s:76:\"Print USPS and DHL labels directly from your dashboard and save on shipping.\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}}s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:29:\"woocommerce-services:shipping\";s:5:\"label\";s:47:\"Print shipping labels with WooCommerce Shipping\";s:9:\"image_url\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-woo.svg\";s:15:\"learn_more_link\";s:114:\"https://woocommerce.com/woocommerce-shipping?utm_source=storeprofiler&utm_medium=product&utm_campaign=freefeatures\";s:16:\"install_priority\";i:3;}i:2;O:8:\"stdClass\":10:{s:4:\"name\";s:7:\"Jetpack\";s:11:\"description\";s:84:\"Save time on content creation — unlock high-quality blog posts and pages using AI.\";s:10:\"is_visible\";b:1;s:14:\"is_built_by_wc\";b:0;s:14:\"min_wp_version\";s:3:\"6.0\";s:3:\"key\";s:7:\"jetpack\";s:5:\"label\";s:48:\"Boost content creation with Jetpack AI Assistant\";s:9:\"image_url\";s:114:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-jetpack.svg\";s:15:\"learn_more_link\";s:110:\"https://woocommerce.com/products/jetpack?utm_source=storeprofiler&utm_medium=product&utm_campaign=freefeatures\";s:16:\"install_priority\";i:8;}i:3;O:8:\"stdClass\":11:{s:4:\"name\";s:25:\"Pinterest for WooCommerce\";s:11:\"description\";s:56:\"Get your products in front of a highly engaged audience.\";s:9:\"image_url\";s:116:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-pinterest.svg\";s:10:\"manage_url\";s:51:\"admin.php?page=wc-admin&path=%2Fpinterest%2Flanding\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:37:\"woocommerce_remote_variant_assignment\";s:5:\"value\";a:2:{i:0;i:1;i:1;i:60;}s:7:\"default\";b:0;s:9:\"operation\";s:5:\"range\";}}s:14:\"is_built_by_wc\";b:1;s:15:\"min_php_version\";s:3:\"7.3\";s:3:\"key\";s:25:\"pinterest-for-woocommerce\";s:5:\"label\";s:37:\"Showcase your products with Pinterest\";s:15:\"learn_more_link\";s:128:\"https://woocommerce.com/products/pinterest-for-woocommerce?utm_source=storeprofiler&utm_medium=product&utm_campaign=freefeatures\";s:16:\"install_priority\";i:2;}i:4;O:8:\"stdClass\":9:{s:4:\"name\";s:32:\"Meta Ads & Pixel for WooCommerce\";s:11:\"description\";s:78:\"Sync your store catalog, set up pixel tracking, and run targeted ad campaigns.\";s:9:\"image_url\";s:113:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/kliken-ads-pixel-for-meta.svg\";s:10:\"manage_url\";s:40:\"admin.php?page=kliken-ads-pixel-for-meta\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:37:\"woocommerce_remote_variant_assignment\";s:5:\"value\";a:2:{i:0;i:61;i:1;i:120;}s:7:\"default\";b:0;s:9:\"operation\";s:5:\"range\";}}s:3:\"key\";s:25:\"kliken-ads-pixel-for-meta\";s:5:\"label\";s:46:\"Grow your business with Facebook and Instagram\";s:15:\"learn_more_link\";s:121:\"https://woocommerce.com/products/meta-ads-and-pixel?utm_source=storeprofiler&utm_medium=product&utm_campaign=freefeatures\";s:16:\"install_priority\";i:2;}i:5;O:8:\"stdClass\":10:{s:4:\"name\";s:9:\"Mailchimp\";s:11:\"description\";s:78:\"Send targeted campaigns, recover abandoned carts and much more with Mailchimp.\";s:9:\"image_url\";s:97:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/mailchimp.svg\";s:10:\"manage_url\";s:36:\"admin.php?page=mailchimp-woocommerce\";s:14:\"is_built_by_wc\";b:0;s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:37:\"woocommerce_remote_variant_assignment\";s:5:\"value\";a:2:{i:0;i:1;i:1;i:60;}s:7:\"default\";b:0;s:9:\"operation\";s:5:\"range\";}}s:3:\"key\";s:25:\"mailchimp-for-woocommerce\";s:5:\"label\";s:35:\"Reach your customers with MailChimp\";s:15:\"learn_more_link\";s:128:\"https://woocommerce.com/products/mailchimp-for-woocommerce?utm_source=storeprofiler&utm_medium=product&utm_campaign=freefeatures\";s:16:\"install_priority\";i:7;}i:6;O:8:\"stdClass\":10:{s:4:\"name\";s:8:\"MailPoet\";s:11:\"description\";s:71:\"Send purchase follow-up emails, newsletters, and promotional campaigns.\";s:10:\"manage_url\";s:35:\"admin.php?page=mailpoet-newsletters\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:37:\"woocommerce_remote_variant_assignment\";s:5:\"value\";a:2:{i:0;i:61;i:1;i:120;}s:7:\"default\";b:0;s:9:\"operation\";s:5:\"range\";}}s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:8:\"mailpoet\";s:5:\"label\";s:34:\"Reach your customers with MailPoet\";s:9:\"image_url\";s:115:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-mailpoet.svg\";s:15:\"learn_more_link\";s:111:\"https://woocommerce.com/products/mailpoet?utm_source=storeprofiler&utm_medium=product&utm_campaign=freefeatures\";s:16:\"install_priority\";i:7;}i:7;O:8:\"stdClass\":11:{s:4:\"name\";s:22:\"Google for WooCommerce\";s:11:\"description\";s:83:\"Reach millions of active shoppers across Google with free product listings and ads.\";s:9:\"image_url\";s:113:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-google.svg\";s:10:\"manage_url\";s:46:\"admin.php?page=wc-admin&path=%2Fgoogle%2Fstart\";s:10:\"is_visible\";b:1;s:14:\"is_built_by_wc\";b:1;s:15:\"min_php_version\";s:3:\"7.4\";s:3:\"key\";s:23:\"google-listings-and-ads\";s:5:\"label\";s:39:\"Drive sales with Google for WooCommerce\";s:15:\"learn_more_link\";s:126:\"https://woocommerce.com/products/google-listings-and-ads?utm_source=storeprofiler&utm_medium=product&utm_campaign=freefeatures\";s:16:\"install_priority\";i:6;}i:8;O:8:\"stdClass\":9:{s:4:\"name\";s:15:\"WooCommerce Tax\";s:11:\"description\";s:94:\"Automatically calculate how much sales tax should be collected – by city, country, or state.\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";a:11:{i:0;s:2:\"US\";i:1;s:2:\"FR\";i:2;s:2:\"GB\";i:3;s:2:\"DE\";i:4;s:2:\"CA\";i:5;s:2:\"AU\";i:6;s:2:\"GR\";i:7;s:2:\"BE\";i:8;s:2:\"PT\";i:9;s:2:\"DK\";i:10;s:2:\"SE\";}s:9:\"operation\";s:2:\"in\";}}s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:24:\"woocommerce-services:tax\";s:5:\"label\";s:44:\"Get automated tax rates with WooCommerce Tax\";s:9:\"image_url\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-woo.svg\";s:15:\"learn_more_link\";s:106:\"https://woocommerce.com/products/tax?utm_source=storeprofiler&utm_medium=product&utm_campaign=freefeatures\";s:16:\"install_priority\";i:4;}i:9;O:8:\"stdClass\":10:{s:4:\"name\";s:22:\"TikTok for WooCommerce\";s:9:\"image_url\";s:113:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-tiktok.svg\";s:11:\"description\";s:64:\"Create advertising campaigns and reach one billion global users.\";s:10:\"manage_url\";s:21:\"admin.php?page=tiktok\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";a:40:{i:0;s:2:\"US\";i:1;s:2:\"CA\";i:2;s:2:\"MX\";i:3;s:2:\"AT\";i:4;s:2:\"BE\";i:5;s:2:\"CZ\";i:6;s:2:\"DK\";i:7;s:2:\"FI\";i:8;s:2:\"FR\";i:9;s:2:\"DE\";i:10;s:2:\"GR\";i:11;s:2:\"HU\";i:12;s:2:\"IE\";i:13;s:2:\"IT\";i:14;s:2:\"NL\";i:15;s:2:\"PL\";i:16;s:2:\"PT\";i:17;s:2:\"RO\";i:18;s:2:\"ES\";i:19;s:2:\"SE\";i:20;s:2:\"GB\";i:21;s:2:\"CH\";i:22;s:2:\"NO\";i:23;s:2:\"AU\";i:24;s:2:\"NZ\";i:25;s:2:\"SG\";i:26;s:2:\"MY\";i:27;s:2:\"PH\";i:28;s:2:\"ID\";i:29;s:2:\"VN\";i:30;s:2:\"TH\";i:31;s:2:\"KR\";i:32;s:2:\"IL\";i:33;s:2:\"AE\";i:34;s:2:\"RU\";i:35;s:2:\"UA\";i:36;s:2:\"TR\";i:37;s:2:\"SA\";i:38;s:2:\"BR\";i:39;s:2:\"JP\";}s:9:\"operation\";s:2:\"in\";}}s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:19:\"tiktok-for-business\";s:5:\"label\";s:31:\"Create ad campaigns with TikTok\";s:15:\"learn_more_link\";s:125:\"https://woocommerce.com/products/tiktok-for-woocommerce?utm_source=storeprofiler&utm_medium=product&utm_campaign=freefeatures\";s:16:\"install_priority\";i:1;}}}}}','off'),(478,'_transient_timeout_woocommerce_admin_remote_inbox_notifications_specs','1747054983','off'),(479,'_transient_woocommerce_admin_remote_inbox_notifications_specs','a:2:{s:2:\"vi\";a:59:{s:21:\"wayflyer_bnpl_q4_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:21:\"wayflyer_bnpl_q4_2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:48:\"Grow your business with funding through Wayflyer\";s:7:\"content\";s:261:\"Fast, flexible financing to boost cash flow and help your business grow – one fee, no interest rates, penalties, equity, or personal guarantees. Based on your store’s performance, Wayflyer provides funding and analytical insights to invest in your business.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:21:\"wayflyer_bnpl_q4_2021\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"Level up with funding\";}}s:3:\"url\";s:118:\"https://woocommerce.com/products/wayflyer/?utm_source=inbox_note&utm_medium=product&utm_campaign=wayflyer_bnpl_q4_2021\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-11-17 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-12-18 00:00:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:7:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"AU\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"BE\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"CA\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"IE\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"NL\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"GB\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-gateway-affirm\";}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:32:\"afterpay-gateway-for-woocommerce\";}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:31:\"klarna-payments-for-woocommerce\";}}}}}}s:35:\"wc_shipping_mobile_app_usps_q4_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:35:\"wc_shipping_mobile_app_usps_q4_2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:94:\"Print and manage your shipping labels with WooCommerce Shipping and the WooCommerce Mobile App\";s:7:\"content\";s:210:\"Save time by printing, purchasing, refunding, and tracking shipping labels generated by <a href=\"https://woocommerce.com/woocommerce-shipping/\">WooCommerce Shipping</a> – all directly from your mobile device!\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:35:\"wc_shipping_mobile_app_usps_q4_2021\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:24:\"Get WooCommerce Shipping\";}}s:3:\"url\";s:135:\"https://woocommerce.com/woocommerce-shipping/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc_shipping_mobile_app_usps_q4_2021\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-11-12 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-11-27 00:00:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:25:\"woocommerce-shipping-usps\";}}i:4;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}}}}}s:18:\"your-first-product\";O:8:\"stdClass\":8:{s:4:\"slug\";s:18:\"your-first-product\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:18:\"Your first product\";s:7:\"content\";s:467:\"That’s huge! You’re well on your way to building a successful online store — now it’s time to think about how you’ll fulfill your orders.<br/><br/>Read our shipping guide to learn best practices and options for putting together your shipping strategy. And for WooCommerce stores in the United States, you can print discounted shipping labels via USPS with <a href=\"https://href.li/?https://woocommerce.com/shipping\" target=\"_blank\">WooCommerce Shipping</a>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:130:\"https://woocommerce.com/posts/ecommerce-shipping-solutions-guide/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:19:13\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:12:\"stored_state\";s:5:\"index\";s:22:\"there_were_no_products\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:12:\"stored_state\";s:5:\"index\";s:22:\"there_are_now_products\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:13:\"product_count\";s:9:\"operation\";s:2:\">=\";s:5:\"value\";i:1;}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:13:\"product_types\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:8:\"physical\";s:7:\"default\";a:0:{}}}}s:37:\"wc-admin-optimizing-the-checkout-flow\";O:8:\"stdClass\":8:{s:4:\"slug\";s:37:\"wc-admin-optimizing-the-checkout-flow\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:28:\"Optimizing the checkout flow\";s:7:\"content\";s:177:\"It’s crucial to get your store’s checkout as smooth as possible to avoid losing sales. Let’s take a look at how you can optimize the checkout experience for your shoppers.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:28:\"optimizing-the-checkout-flow\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:144:\"https://woocommerce.com/posts/optimizing-woocommerce-checkout?utm_source=inbox_note&utm_medium=product&utm_campaign=optimizing-the-checkout-flow\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:19:49\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:3;}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:45:\"woocommerce_task_list_tracked_completed_tasks\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:8:\"payments\";s:7:\"default\";a:0:{}}}}s:32:\"wc-payments-qualitative-feedback\";O:8:\"stdClass\":8:{s:4:\"slug\";s:32:\"wc-payments-qualitative-feedback\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:46:\"WooPayments setup - let us know what you think\";s:7:\"content\";s:137:\"Congrats on enabling WooPayments for your store. Please share your feedback in this 2 minute survey to help us improve the setup process.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:35:\"qualitative-feedback-from-new-users\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:58:\"https://automattic.survey.fm/woopayments-new-user-feedback\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:21:13\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:45:\"woocommerce_task_list_tracked_completed_tasks\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:20:\"woocommerce-payments\";s:7:\"default\";a:0:{}}}}s:29:\"share-your-feedback-on-paypal\";O:8:\"stdClass\":8:{s:4:\"slug\";s:29:\"share-your-feedback-on-paypal\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:29:\"Share your feedback on PayPal\";s:7:\"content\";s:127:\"Share your feedback in this 2 minute survey about how we can make the process of accepting payments more useful for your store.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"share-feedback\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:43:\"http://automattic.survey.fm/paypal-feedback\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:21:50\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-gateway-stripe\";}}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}}}s:31:\"google_listings_and_ads_install\";O:8:\"stdClass\":8:{s:4:\"slug\";s:31:\"google_listings_and_ads_install\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:35:\"Drive traffic and sales with Google\";s:7:\"content\";s:123:\"Reach online shoppers to drive traffic and sales for your store by showcasing products across Google, for free or with ads.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"get-started\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:11:\"Get started\";}}s:3:\"url\";s:122:\"https://woocommerce.com/products/google-listings-and-ads?utm_source=inbox_note&utm_medium=product&utm_campaign=get-started\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-06-09 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:23:\"google_listings_and_ads\";}}}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:11:\"order_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:10;}}}s:39:\"wc-subscriptions-security-update-3-0-15\";O:8:\"stdClass\":8:{s:4:\"slug\";s:39:\"wc-subscriptions-security-update-3-0-15\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:42:\"WooCommerce Subscriptions security update!\";s:7:\"content\";s:738:\"We recently released an important security update to WooCommerce Subscriptions. To ensure your site’s data is protected, please upgrade <strong>WooCommerce Subscriptions to version 3.0.15</strong> or later.<br/><br/>Click the button below to view and update to the latest Subscriptions version, or log in to <a href=\"https://woocommerce.com/my-dashboard\">WooCommerce.com Dashboard</a> and navigate to your <strong>Downloads</strong> page.<br/><br/>We recommend always using the latest version of WooCommerce Subscriptions, and other software running on your site, to ensure maximum security.<br/><br/>If you have any questions we are here to help — just <a href=\"https://woocommerce.com/my-account/create-a-ticket/\">open a ticket</a>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:30:\"update-wc-subscriptions-3-0-15\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:19:\"View latest version\";}}s:3:\"url\";s:30:\"&page=wc-addons&section=helper\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:30:32\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:25:\"woocommerce-subscriptions\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:6:\"3.0.15\";}}}s:29:\"woocommerce-core-update-5-4-0\";O:8:\"stdClass\":8:{s:4:\"slug\";s:29:\"woocommerce-core-update-5-4-0\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:31:\"Update to WooCommerce 5.4.1 now\";s:7:\"content\";s:140:\"WooCommerce 5.4.1 addresses a checkout issue discovered in WooCommerce 5.4. We recommend upgrading to WooCommerce 5.4.1 as soon as possible.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:20:\"update-wc-core-5-4-0\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:25:\"How to update WooCommerce\";}}s:3:\"url\";s:64:\"https://docs.woocommerce.com/document/how-to-update-woocommerce/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:31:08\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.0\";}}}s:19:\"wcpay-promo-2020-11\";O:8:\"stdClass\":8:{s:4:\"slug\";s:19:\"wcpay-promo-2020-11\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:19:\"wcpay-promo-2020-11\";s:7:\"content\";s:19:\"wcpay-promo-2020-11\";}}s:7:\"actions\";a:0:{}s:5:\"rules\";a:0:{}}s:19:\"wcpay-promo-2020-12\";O:8:\"stdClass\":8:{s:4:\"slug\";s:19:\"wcpay-promo-2020-12\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:19:\"wcpay-promo-2020-12\";s:7:\"content\";s:19:\"wcpay-promo-2020-12\";}}s:7:\"actions\";a:0:{}s:5:\"rules\";a:0:{}}s:34:\"ppxo-pps-upgrade-paypal-payments-1\";O:8:\"stdClass\":8:{s:4:\"slug\";s:34:\"ppxo-pps-upgrade-paypal-payments-1\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:47:\"Get the latest PayPal extension for WooCommerce\";s:7:\"content\";s:442:\"Heads up! There’s a new PayPal on the block!<br/><br/>Now is a great time to upgrade to our latest <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal extension</a> to continue to receive support and updates with PayPal.<br/><br/>Get access to a full suite of PayPal payment methods, extensive currency and country coverage, and pay later options with the all-new PayPal extension for WooCommerce.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"ppxo-pps-install-paypal-payments-1\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:18:\"View upgrade guide\";}}s:3:\"url\";s:96:\"https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:33:53\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.5\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-paypal-payments\";}}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:7:\"enabled\";}}}s:11:\"option_name\";s:27:\"woocommerce_paypal_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;}}}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";i:7;s:7:\"default\";i:1;s:9:\"operation\";s:1:\"<\";}}}s:34:\"ppxo-pps-upgrade-paypal-payments-2\";O:8:\"stdClass\":8:{s:4:\"slug\";s:34:\"ppxo-pps-upgrade-paypal-payments-2\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:31:\"Upgrade your PayPal experience!\";s:7:\"content\";s:358:\"Get access to a full suite of PayPal payment methods, extensive currency and country coverage, offer subscription and recurring payments, and the new PayPal pay later options.<br /><br />Start using our <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">latest PayPal today</a> to continue to receive support and updates.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"ppxo-pps-install-paypal-payments-2\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:18:\"View upgrade guide\";}}s:3:\"url\";s:96:\"https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:34:30\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.5\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-paypal-payments\";}}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:7:\"enabled\";}}}s:11:\"option_name\";s:27:\"woocommerce_paypal_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;}}}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";i:6;s:7:\"default\";i:1;s:9:\"operation\";s:1:\">\";}}}s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:56:\"Action required: Critical vulnerabilities in WooCommerce\";s:7:\"content\";s:574:\"In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br />Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br /><br />For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:137:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:59:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:35:06\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.3.6\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.4.8\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.5.9\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.6.6\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.7.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.8.2\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.4\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.3\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.2\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.3\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.3\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.4\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.4\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.5\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.2\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.3\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.3\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.4\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.4\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.2\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.3\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.2\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.3\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.4\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.1\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.2\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.1\";}i:31;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.2\";}i:32;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.3\";}i:33;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.4\";}i:34;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.1\";}i:35;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.2\";}i:36;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.2\";}i:37;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.3\";}i:38;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.5.1\";}i:39;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:6:\"3.5.10\";}i:40;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.6.7\";}i:41;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.7.3\";}i:42;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.8.3\";}i:43;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.5\";}i:44;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.4\";}i:45;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.4\";}i:46;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.5\";}i:47;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.6\";}i:48;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.4\";}i:49;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.5\";}i:50;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.5\";}i:51;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.4\";}i:52;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.3\";}i:53;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.5\";}i:54;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.3\";}i:55;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.3\";}i:56;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.5\";}i:57;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.3\";}i:58;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.4\";}}}s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:63:\"Action required: Critical vulnerabilities in WooCommerce Blocks\";s:7:\"content\";s:570:\"In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/>Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br/><br/>For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:137:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:32:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:35:42\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:6:\"2.5.16\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.6.2\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.7.2\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.8.1\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.9.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.0.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.1.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.2.1\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.3.1\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.4.1\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.5.1\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.6.1\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.7.2\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.8.1\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.1\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.1\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.1\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.3\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.1\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.2\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.1\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.1\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.1\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.2\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.1\";}i:31;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.5.1\";}}}s:45:\"woocommerce-core-sqli-july-2021-store-patched\";O:8:\"stdClass\":8:{s:4:\"slug\";s:45:\"woocommerce-core-sqli-july-2021-store-patched\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:55:\"Solved: Critical vulnerabilities patched in WooCommerce\";s:7:\"content\";s:433:\"In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:137:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:36:18\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:23:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.3.6\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.4.8\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.5.9\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.6\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.2\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.4\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.2\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.3\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.4\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.2\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.3\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.2\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.1\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.3\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.1\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.2\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.5.1\";}}}}}s:47:\"woocommerce-blocks-sqli-july-2021-store-patched\";O:8:\"stdClass\":8:{s:4:\"slug\";s:47:\"woocommerce-blocks-sqli-july-2021-store-patched\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:62:\"Solved: Critical vulnerabilities patched in WooCommerce Blocks\";s:7:\"content\";s:433:\"In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:137:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:36:54\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:31:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"2.5.16\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.6.2\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.7.2\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.8.1\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.9.1\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.0.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.1.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.2.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.3.1\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.4.1\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.5.1\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.1\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.2\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.1\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.1\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.1\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.1\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.3\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.1\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.1\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.2\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.1\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.1\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.1\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.2\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.1\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.5.1\";}}}}}s:19:\"habit-moment-survey\";O:8:\"stdClass\":8:{s:4:\"slug\";s:19:\"habit-moment-survey\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:63:\"We’re all ears! Share your experience so far with WooCommerce\";s:7:\"content\";s:136:\"We’d love your input to shape the future of WooCommerce together. Feel free to share any feedback, ideas or suggestions that you have.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"share-feedback\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:45:\"https://automattic.survey.fm/store-management\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:37:30\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:3;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:11:\"order_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:30;}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:13:\"product_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:0;}}}s:42:\"woocommerce-core-paypal-march-2022-updated\";O:8:\"stdClass\":8:{s:4:\"slug\";s:42:\"woocommerce-core-paypal-march-2022-updated\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:35:\"Security auto-update of WooCommerce\";s:7:\"content\";s:391:\"<strong>Your store has been updated to the latest secure version of WooCommerce</strong>. We worked with WordPress to deploy PayPal Standard security updates for stores running WooCommerce (version 3.5 to 6.3). It’s recommended to disable PayPal Standard, and use <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal Payments</a> to accept PayPal.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:88:\"https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:42:\"woocommerce-core-paypal-march-2022-dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-03-10 18:44:57\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:28:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"3.5.10\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.7\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.3\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.5\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.4\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.4\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.5\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.6\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.4\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.5\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.5\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.4\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.5\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.3\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.5\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.3\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.4\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.5.4\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.6.2\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.7.2\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.8.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.9.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.0.1\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.1.2\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.2.2\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:3:\"5.5\";}i:1;a:2:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.5\";}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:27:\"woocommerce_paypal_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:7:\"enabled\";}}}}}}}}}s:47:\"woocommerce-core-paypal-march-2022-updated-nopp\";O:8:\"stdClass\":8:{s:4:\"slug\";s:47:\"woocommerce-core-paypal-march-2022-updated-nopp\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:35:\"Security auto-update of WooCommerce\";s:7:\"content\";s:237:\"<strong>Your store has been updated to the latest secure version of WooCommerce</strong>. We worked with WordPress to deploy security updates related to PayPal Standard payment gateway for stores running WooCommerce (version 3.5 to 6.3).\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:88:\"https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-03-10 18:45:04\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:28:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"3.5.10\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.7\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.3\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.5\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.4\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.4\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.5\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.6\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.4\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.5\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.5\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.4\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.5\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.3\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.5\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.3\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.4\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.5.4\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.6.2\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.7.2\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.8.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.9.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.0.1\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.1.2\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.2.2\";}}}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:42:\"woocommerce-core-paypal-march-2022-updated\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}s:24:\"pinterest_03_2022_update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:24:\"pinterest_03_2022_update\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:53:\"Your Pinterest for WooCommerce plugin is out of date!\";s:7:\"content\";s:262:\"Update to the latest version of Pinterest for WooCommerce to continue using this plugin and keep your store connected with Pinterest. To update, visit <strong>Plugins &gt; Installed Plugins</strong>, and click on “update now” under Pinterest for WooCommerce.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:24:\"pinterest_03_2022_update\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:19:\"Update Instructions\";}}s:3:\"url\";s:148:\"https://woocommerce.com/document/pinterest-for-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=pinterest_03_2022_update#section-3\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-03-23 00:00:39\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:25:\"pinterest-for-woocommerce\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"1.0.8\";}}}s:33:\"store_setup_survey_survey_q2_2022\";O:8:\"stdClass\":8:{s:4:\"slug\";s:33:\"store_setup_survey_survey_q2_2022\";s:4:\"type\";s:6:\"survey\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:30:\"How is your store setup going?\";s:7:\"content\";s:232:\"Our goal is to make sure you have all the right tools to start setting up your store in the smoothest way possible.\r\nWe’d love to know if we hit our mark and how we can improve. To collect your thoughts, we made a 2-minute survey.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:53:\"store_setup_survey_survey_q2_2022_share_your_thoughts\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:24:\"Tell us how it’s going\";}}s:3:\"url\";s:52:\"https://automattic.survey.fm/store-setup-survey-2022\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-05-09 08:42:10\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:7;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\"<\";s:4:\"days\";i:9;}}}s:48:\"needs-update-eway-payment-gateway-rin-2022-12-20\";O:8:\"stdClass\":8:{s:4:\"slug\";s:48:\"needs-update-eway-payment-gateway-rin-2022-12-20\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:58:\"Security vulnerability patched in WooCommerce Eway Gateway\";s:7:\"content\";s:323:\"In response to a potential vulnerability identified in WooCommerce Eway Gateway versions 3.1.0 to 3.5.0, we’ve worked to deploy security fixes and have released an updated version.\r\nNo external exploits have been detected, but we recommend you update to your latest supported version 3.1.26, 3.2.3, 3.3.1, 3.4.6, or 3.5.1\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:62:\"needs-update-eway-payment-gateway-rin-action-button-2022-12-20\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:16:\"/update-core.php\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:63:\"needs-update-eway-payment-gateway-rin-dismiss-button-2022-12-20\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:7:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-03 23:45:53\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:6:\"3.1.26\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.2.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.3.1\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.4.6\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"3.5.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"3.1.0\";}}}s:43:\"updated-eway-payment-gateway-rin-2022-12-20\";O:8:\"stdClass\":8:{s:4:\"slug\";s:43:\"updated-eway-payment-gateway-rin-2022-12-20\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:55:\"WooCommerce Eway Gateway has been automatically updated\";s:7:\"content\";s:280:\"Your store is now running the latest secure version of WooCommerce Eway Gateway. We worked with the WordPress Plugins team to deploy a software update to stores running WooCommerce Eway Gateway (versions 3.1.0 to 3.5.0) in response to a security vulnerability that was discovered.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:57:\"updated-eway-payment-gateway-rin-action-button-2022-12-20\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"See all updates\";}}s:3:\"url\";s:16:\"/update-core.php\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:58:\"updated-eway-payment-gateway-rin-dismiss-button-2022-12-20\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-03 23:45:06\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:48:\"needs-update-eway-payment-gateway-rin-2022-12-20\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:5:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"3.1.26\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.2.3\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.3.1\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.4.6\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.5.1\";}}}}}s:31:\"ecomm-wc-navigation-survey-2023\";O:8:\"stdClass\":8:{s:4:\"slug\";s:31:\"ecomm-wc-navigation-survey-2023\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:39:\"Navigating WooCommerce on WordPress.com\";s:7:\"content\";s:166:\"We are improving the WooCommerce navigation on WordPress.com and would love your help to make it better! Please share your experience with us in this 2-minute survey.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:32:\"share-navigation-survey-feedback\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:58:\"https://automattic.survey.fm/new-ecommerce-plan-navigation\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-01-16 09:53:44\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:12:\"is_ecommerce\";s:5:\"value\";b:1;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:180;}}}s:39:\"woopay-beta-merchantrecruitment-04MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:39:\"woopay-beta-merchantrecruitment-04MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:319:\"WooPay, a new express checkout feature built into WooCommerce Payments, is <b>now available</b> —and we’re inviting you to be one of the first to try it. \r\n<br><br>\r\n<b>Boost conversions</b> by offering your customers a simple, secure way to pay with a <b>single click</b>.\r\n<br><br>\r\n<b>Get started in seconds.</b>\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:48:\"woopay-beta-merchantrecruitment-activate-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:58:\"woopay-beta-merchantrecruitment-activate-learnmore-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:155:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-activate-learnmore-04MAY23\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-04 18:00:27\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:144:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"http://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.handinhandparenting.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://pritikinfoods.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://utahrecsports.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.hunterpta.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://www.smokinbeans.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://shulabeauty.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://bingeworthytvmerch.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://s91.4d8.myftpupload.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://stephanienicolenorris.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://aliensshirt.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://libertyordeathapparelllc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://cowboystatedaily.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:42:\"https://fundrgear.com/beckendorffathletics\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:50:\"http://wordpress-528155-2231771.cloudwaysapps.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://checkout.sohaprice.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://amadozstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://eliwehbe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://lunabra.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://nptixx.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://louisianapantry.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://aplusanatomy.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://wildsvg.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://bleachfilm.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://benabeautyspa.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:47:\"http://barrettfitnessenterprises.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://goabroadable.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://alexoathletica.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.fourpurls.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.hagmannreport.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://busybeeorganics.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://nallsproduce.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://bigtimebats.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://shop.cookingwithkarli.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.queenofpeacemedia.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://bigjohnsbeefjerky.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://paperbyjaney.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://carolinarisemembers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://veroticaevents.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://spira.farm\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:40;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://endlessassist.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:41;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://betterlifeblog.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:42;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://ashleighrenard.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:43;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.turkeymerck.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:44;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://carfiershop.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:45;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://normanmusicfestival.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:46;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"http://www.olfactoryfactoryllc.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:47;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://fundrgear.com/anthonyathletics\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:48;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"http://tkechilifestdotcom.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:49;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:15:\"No results foun\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:50;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://pvsa.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:51;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://becbatop.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:52;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wwmeconvention.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:53;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://lswmp.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:54;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://bubbaskincare.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:55;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://fusango.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:56;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://vcdpostershow.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:57;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://www.rileysribz.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:58;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.fakeultrasound.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:59;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://onelongfellowsquare.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:60;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://agodpod.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:61;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/littleladybulldogs\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:62;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://thecirclelarp.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:63;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://byletam.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:64;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.nachonite.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:65;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://designerdab.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:66;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"http://box2151.temp.domains/~lovebyt2/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:67;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://shortporchbaseballcompany.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:68;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://distancecme.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:69;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://middleswarthchips.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:70;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://railblazausa.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:71;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://mikescountrymeats.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:72;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://www.woodenshoe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:73;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://rockspringscafe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:74;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"http://footballfangears.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:75;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://ybtoner.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:76;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://simplyclayyy.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:77;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://naturecreation.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:78;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://marisrodriguez.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:79;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://asanteinternational.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:80;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://theatre55.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:81;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://carolynscreativeclassroom.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:82;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://www.miiriya.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:83;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://trendyds.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:84;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wooedbythefood.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:85;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://papasteamstores.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:86;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://omdurags.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:87;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://happydogbarkery.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:88;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://kitbose.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:89;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://seamossdeals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:90;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://zeatala.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:91;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://shop.atwaterffa.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:92;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://www.brettsfirstresponders.org/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:93;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://shirtactive.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:94;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://boerneparade.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:95;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://zorahshrine.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:96;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://davidcervenka.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:97;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://addisjourney.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:98;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://305ycle.cc\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:99;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"http://yourworstnightmarehaunt.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:100;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://westcoastpreps.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:101;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://checkout.sohaking.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:102;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://www.theunshakeablepundit.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:103;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://www.stellaandchewys.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:104;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://www.raywhitcomb.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:105;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:39:\"http://constellationtheatercompany.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:106;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://stacynguyen.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:107;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:46:\"https://fundrgear.com/lakecreekgirlsbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:108;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://winslowartcenter.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:109;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://flufftastik.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:110;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mygreenbeach.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:111;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://ebookvip.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:112;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://fundrgear.com/needvillevolleyball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:113;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://bifocalmedia.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:114;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://clrc.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:115;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://hyperpins.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:116;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"https://fundrgear.com/lakecreekboysbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:117;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://fundrgear.com/kparktennis\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:118;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://mogadorspices.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:119;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://fundrgear.com/newcaneytrack\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:120;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://sigmascents.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:121;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://bsharisemoore.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:122;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://morrflate.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:123;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://westbrosinc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:124;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://shop.danceplexaz.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:125;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://chikepod.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:126;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.advanahealth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:127;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://tatter.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:128;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://greatawakeningbrewing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:129;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://waterfowlfestival.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:130;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://preppedwellness.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:131;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://events.thus.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:132;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://stormtide.thefifthtrooper.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:133;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://www.tabsynth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:134;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"http://staging.fliptheswitchon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:135;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://duffysdough.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:136;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://fitfoodieliving.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:137;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://breakerbrotherstcg.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:138;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://andymation.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:139;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://recklessmetals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:140;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://sophielark.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:141;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://wp.arabtherapy.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:142;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://creativeappliques.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:143;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://altitude.win\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:42:\"woocommerce-wcpay-march-2023-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:42:\"woocommerce-wcpay-march-2023-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:57:\"Action required: Security update for WooCommerce Payments\";s:7:\"content\";s:296:\"<strong>Your store requires a security update for WooCommerce Payments</strong>. Please update to the latest version of WooCommerce Payments immediately to address a potential vulnerability discovered on March 22. For more information on how to update, visit this WooCommerce Developer Blog Post.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:49:\"woocommerce-wcpay-march-2023-update-needed-button\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:13:\"See Blog Post\";}}s:3:\"url\";s:122:\"https://developer.woocommerce.com/2023/03/23/critical-vulnerability-detected-in-woocommerce-payments-what-you-need-to-know\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:57:\"woocommerce-wcpay-march-2023-update-needed-dismiss-button\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:11:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-03-22 20:25:44\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.2\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.1\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.4\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.3\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.5.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"4.8.0\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"<=\";s:7:\"version\";s:5:\"5.6.1\";}}}s:34:\"tap_to_pay_iphone_q2_2023_no_wcpay\";O:8:\"stdClass\":8:{s:4:\"slug\";s:34:\"tap_to_pay_iphone_q2_2023_no_wcpay\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:52:\"Accept in-person contactless payments on your iPhone\";s:7:\"content\";s:230:\"Tap to Pay on iPhone and WooCommerce Payments is quick, secure, and simple to set up — no extra terminals or card readers are needed. Accept contactless debit and credit cards, Apple Pay, and other NFC digital wallets in person.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"tap_to_pay_iphone_q2_2023_no_wcpay\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:20:\"Simplify my payments\";}}s:3:\"url\";s:143:\"https://woocommerce.com/products/woocommerce-payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=tap_to_pay_iphone_q2_2023_no_wcpay\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-04-03 23:59:47\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}}}s:48:\"woocommerce-WCPreOrders-april-2023-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:48:\"woocommerce-WCPreOrders-april-2023-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:68:\"Action required: Security update of WooCommerce Pre-Orders extension\";s:7:\"content\";s:220:\"<strong>Your store requires a security update for the WooCommerce Pre-Orders extension</strong>. Please update the WooCommerce Pre-Orders extension immediately to address a potential vulnerability discovered on April 11.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:18:\"extension-settings\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:15:\"update-core.php\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-04-12 22:16:37\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:22:\"woocommerce-pre-orders\";s:8:\"operator\";s:2:\"<=\";s:7:\"version\";s:5:\"2.0.0\";}}}s:46:\"woopay-beta-merchantrecruitment-update-04MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woopay-beta-merchantrecruitment-update-04MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:321:\"WooPay, a new express checkout feature built into WooCommerce Payments, is <b>now available</b> — and you’re invited to try it. \r\n<br /><br />\r\n<b>Boost conversions</b> by offering your customers a simple, secure way to pay with a <b>single click</b>.\r\n<br /><br />\r\n<b>Update WooCommerce Payments</b> to get started.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:52:\"woopay-beta-merchantrecruitment-update-WCPay-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:27:\"Update WooCommerce Payments\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:55:\"woopay-beta-merchantrecruitment-update-activate-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-04 18:00:06\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:144:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"http://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.handinhandparenting.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://pritikinfoods.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://utahrecsports.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.hunterpta.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://www.smokinbeans.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://shulabeauty.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://bingeworthytvmerch.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://s91.4d8.myftpupload.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://stephanienicolenorris.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://aliensshirt.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://libertyordeathapparelllc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://cowboystatedaily.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:42:\"https://fundrgear.com/beckendorffathletics\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:50:\"http://wordpress-528155-2231771.cloudwaysapps.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://checkout.sohaprice.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://amadozstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://eliwehbe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://lunabra.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://nptixx.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://louisianapantry.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://aplusanatomy.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://wildsvg.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://bleachfilm.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://benabeautyspa.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:47:\"http://barrettfitnessenterprises.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://goabroadable.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://alexoathletica.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.fourpurls.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.hagmannreport.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://busybeeorganics.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://nallsproduce.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://bigtimebats.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://shop.cookingwithkarli.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.queenofpeacemedia.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://bigjohnsbeefjerky.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://paperbyjaney.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://carolinarisemembers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://veroticaevents.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://spira.farm\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:40;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://endlessassist.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:41;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://betterlifeblog.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:42;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://ashleighrenard.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:43;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.turkeymerck.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:44;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://carfiershop.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:45;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://normanmusicfestival.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:46;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"http://www.olfactoryfactoryllc.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:47;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://fundrgear.com/anthonyathletics\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:48;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"http://tkechilifestdotcom.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:49;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:15:\"No results foun\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:50;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://pvsa.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:51;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://becbatop.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:52;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wwmeconvention.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:53;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://lswmp.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:54;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://bubbaskincare.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:55;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://fusango.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:56;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://vcdpostershow.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:57;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://www.rileysribz.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:58;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.fakeultrasound.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:59;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://onelongfellowsquare.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:60;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://agodpod.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:61;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/littleladybulldogs\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:62;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://thecirclelarp.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:63;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://byletam.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:64;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.nachonite.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:65;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://designerdab.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:66;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"http://box2151.temp.domains/~lovebyt2/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:67;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://shortporchbaseballcompany.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:68;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://distancecme.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:69;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://middleswarthchips.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:70;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://railblazausa.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:71;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://mikescountrymeats.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:72;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://www.woodenshoe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:73;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://rockspringscafe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:74;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"http://footballfangears.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:75;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://ybtoner.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:76;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://simplyclayyy.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:77;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://naturecreation.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:78;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://marisrodriguez.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:79;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://asanteinternational.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:80;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://theatre55.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:81;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://carolynscreativeclassroom.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:82;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://www.miiriya.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:83;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://trendyds.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:84;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wooedbythefood.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:85;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://papasteamstores.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:86;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://omdurags.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:87;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://happydogbarkery.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:88;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://kitbose.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:89;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://seamossdeals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:90;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://zeatala.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:91;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://shop.atwaterffa.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:92;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://www.brettsfirstresponders.org/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:93;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://shirtactive.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:94;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://boerneparade.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:95;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://zorahshrine.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:96;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://davidcervenka.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:97;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://addisjourney.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:98;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://305ycle.cc\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:99;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"http://yourworstnightmarehaunt.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:100;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://westcoastpreps.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:101;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://checkout.sohaking.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:102;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://www.theunshakeablepundit.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:103;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://www.stellaandchewys.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:104;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://www.raywhitcomb.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:105;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:39:\"http://constellationtheatercompany.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:106;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://stacynguyen.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:107;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:46:\"https://fundrgear.com/lakecreekgirlsbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:108;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://winslowartcenter.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:109;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://flufftastik.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:110;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mygreenbeach.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:111;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://ebookvip.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:112;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://fundrgear.com/needvillevolleyball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:113;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://bifocalmedia.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:114;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://clrc.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:115;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://hyperpins.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:116;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"https://fundrgear.com/lakecreekboysbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:117;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://fundrgear.com/kparktennis\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:118;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://mogadorspices.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:119;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://fundrgear.com/newcaneytrack\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:120;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://sigmascents.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:121;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://bsharisemoore.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:122;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://morrflate.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:123;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://westbrosinc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:124;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://shop.danceplexaz.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:125;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://chikepod.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:126;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.advanahealth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:127;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://tatter.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:128;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://greatawakeningbrewing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:129;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://waterfowlfestival.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:130;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://preppedwellness.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:131;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://events.thus.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:132;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://stormtide.thefifthtrooper.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:133;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://www.tabsynth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:134;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"http://staging.fliptheswitchon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:135;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://duffysdough.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:136;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://fitfoodieliving.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:137;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://breakerbrotherstcg.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:138;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://andymation.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:139;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://recklessmetals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:140;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://sophielark.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:141;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://wp.arabtherapy.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:142;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://creativeappliques.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:143;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://altitude.win\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:46:\"woopay-beta-existingmerchants-noaction-27APR23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woopay-beta-existingmerchants-noaction-27APR23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:15:\"WooPay is back!\";s:7:\"content\";s:361:\"Thanks for previously trying WooPay, the<b> express checkout feature</b> built into WooCommerce Payments. We’re excited to announce that <b>WooPay availability has resumed</b>. No action is required on your part.\r\n<br /><br />\r\nYou can now <b>continue boosting conversions</b> by offering your customers a simple, secure way to pay with a <b>single click</b>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-existingmerchants-noaction-documentation-27APR23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:13:\"Documentation\";}}s:3:\"url\";s:178:\"https://woocommerce.com/document/woopay-merchant-documentation/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-existingmerchants-noaction-documentation-27APR23\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-04-26 19:00:23\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.0\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:38:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://store.startingstrongman.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://joacreativelab.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.pureskincaresalon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://mariablaquier.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://getprodigital.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://dalefrickeholsters.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://sstour.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://tk-txstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://humanspiritproject.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://viradadrums.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://rosariumblends.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://organicskincare.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://stuckpigmedical.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.seattlegiftbasket.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://www.cloverandviolet.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://gvscholarship.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://yesimadiva.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://www.old.jmtrashbgone.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://victorialansford.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://craftcosplay.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://thefossilexchange.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://nextgenspeed.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://cappellarecords.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://ontimesupermarket.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://new2knox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://lovestudiollc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://thehivelivebox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://socceruniformkits.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://willowcreativ.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://summitprep.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://howda.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://soapavenuecompany.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://subsbox.mystagingwebsite.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wifflebreakers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.mps-outfitters.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://howardharrisassociates.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://bettersaferadio.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://bunnyluna.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:44:\"woopay-beta-existingmerchants-update-27APR23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:44:\"woopay-beta-existingmerchants-update-27APR23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:15:\"WooPay is back!\";s:7:\"content\";s:368:\"Thanks for previously trying WooPay, the <b>express checkout feature</b> built into WooCommerce Payments. We’re excited to announce that <b>WooPay availability has resumed</b>.\r\n<br /><br />\r\n\r\nUpdate to the latest WooCommerce Payments version to <b>continue boosting conversions</b> by offering your customers a simple, secure way to pay with a <b>single click</b>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:50:\"woopay-beta-existingmerchants-update-WCPay-27APR23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:27:\"Update WooCommerce Payments\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-04-26 19:00:08\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.8.0\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:38:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://store.startingstrongman.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://joacreativelab.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.pureskincaresalon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://mariablaquier.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://getprodigital.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://dalefrickeholsters.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://sstour.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://tk-txstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://humanspiritproject.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://viradadrums.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://rosariumblends.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://organicskincare.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://stuckpigmedical.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.seattlegiftbasket.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://www.cloverandviolet.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://gvscholarship.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://yesimadiva.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://www.old.jmtrashbgone.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://victorialansford.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://craftcosplay.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://thefossilexchange.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://nextgenspeed.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://cappellarecords.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://ontimesupermarket.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://new2knox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://lovestudiollc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://thehivelivebox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://socceruniformkits.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://willowcreativ.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://summitprep.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://howda.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://soapavenuecompany.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://subsbox.mystagingwebsite.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wifflebreakers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.mps-outfitters.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://howardharrisassociates.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://bettersaferadio.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://bunnyluna.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:45:\"woopay-beta-merchantrecruitment-short-04MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:45:\"woopay-beta-merchantrecruitment-short-04MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:54:\"woopay-beta-merchantrecruitment-short-activate-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:64:\"woopay-beta-merchantrecruitment-short-activate-learnmore-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:161:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-04MAY23\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-04 18:00:36\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:144:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://pieroatomic3.wpcomstaging.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.bluebeautifly.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"http://indianrivernatural.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://fouroaksproducts.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:14:\"https://acb.la\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://www.sweetpotatoplant.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"http://www.gocaseyourself.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://laugun.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://nebraskadaybyday.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://vintagemarche727.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://kohai.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://gracegaze.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://aliensmeaning.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://myheritagegardens.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://shopmoresport.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://oladino.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://frogjumpstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://cagedthundermma.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/mcelwainelementary\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://mgco.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://500gp.io/pay\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://waterglassslimes.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://antiqueful.shop/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://deeperkidmin.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"https://fundrgear.com/cyspringsboysbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://houseofminifigs.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"http://box2273.temp.domains/~dreambx2/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://madebymixture.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://reliabletrash.company\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://www.daddybutter.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://circleqessentials.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://garlicbraids.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://fbdonline.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://galaxysedge.us\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://duckduckbeetfarm.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://varsitygraphics.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://jademackenzie.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://kristysketolifestyle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://covid19criticalcare.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://parkviewprep.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:40;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://rock-fest.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:41;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"http://fillinxsolutions.com/etarix/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:42;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://doughremitx.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:43;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.montanafiddlecamp.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:44;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://fococomiccon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:45;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://patricendouglas.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:46;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://hectue.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:47;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://montanamaxbbq.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:48;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://smellzoom.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:49;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://uptowne.theoandson.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:50;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://superbasic.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:51;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://ppodstore.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:52;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://kerenzan.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:53;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://a13bargains.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:54;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://colorgr.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:55;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://mindbodysoulcandles.com/Charlotte\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:56;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://peaceloveandadhd.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:57;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://seymoursmash.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:58;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mwtournament.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:59;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:43:\"https://fundrgear.com/beckendorffgirlstrack\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:60;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:15:\"No results foun\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:61;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://allswellnyc.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:62;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://childoftheredwoodsmembers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:63;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://fundrgear.com/grandoaksvolleyball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:64;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.newhollandrochester.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:65;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.purplecatvet.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:66;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:39:\"https://www.mustangmountaincoaster.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:67;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://www.roccanj.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:68;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://www.teerico.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:69;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://passportunlimited.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:70;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.paladincards20.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:71;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://giantshorties.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:72;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://visualsports.biz\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:73;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://thefreakinricanrestaurant.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:74;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://arequestionscom.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:75;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://pt.tktxcompanystore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:76;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://fitfoodiechicks.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:77;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://nutoshop.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:78;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://backwoodzhiphop.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:79;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://gartapparel.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:80;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://bodega.badiaspices.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:81;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://rampartrange.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:82;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://teeuni.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:83;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://bearsinthealley.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:84;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://vitalbooks.net/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:85;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://hair-free-hair-remover.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:86;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://gangtaynails.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:87;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://crochetfoundry.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:88;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://westcoastbelts.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:89;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://payment.sundryfiles.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:90;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://ccadunkirk.mudhenmama.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:91;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://desertsupercup.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:92;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://shops-eminem.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:93;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://75yearsofracing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:94;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://tixpls.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:95;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:44:\"http://legacyoutfitters.org/banquet/raffles/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:96;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://91170e9fc9.nxcli.io/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:97;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://beachwayrentals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:98;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://thehivelivebox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:99;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://esd.camp\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:100;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mfkgamecalls.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:101;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://1greatce.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:102;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.luthyouth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:103;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://electionintegrityidaho.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:104;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://renbundle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:105;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://premierseamoss.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:106;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://teemart.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:107;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/beckendorffgirlsbb\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:108;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://visiblechild.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:109;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://ebookvital.me/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:110;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://renemarsh.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:111;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://www.eventricate.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:112;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://transgression.party\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:113;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://profadex.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:114;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://mxsbattlegrounds.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:115;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.poeinbaltimore.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:116;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://freefall.gg\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:117;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://underthechurchhatblog.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:118;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://naksparkle.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:119;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"http://bearlyburly.gay/inventory\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:120;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.premierboneandjoint.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:121;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://farm-2-bowl.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:122;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://hollandgrill.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:123;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://lividian.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:124;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.trainingrange.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:125;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://sarakepskitchen.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:126;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.phoenixyouththeatre.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:127;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://drivenarmsco.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:128;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://audiobro.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:129;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://www.iowaabortionaccessfund.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:130;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://findthemenu.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:131;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://moderndepot.co\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:132;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://granitesupplements.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:133;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://healthyrican.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:134;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://utest.edsandbox.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:135;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://c-pounds.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:136;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://littleschoolofsmiths.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:137;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://goblinstyle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:138;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://proper-testing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:139;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.cosafoundation.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:140;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://farmsteadboxes.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:141;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://fundraise4books.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:142;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://norskenook.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:143;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://cajulove.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:52:\"woopay-beta-merchantrecruitment-short-update-04MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:52:\"woopay-beta-merchantrecruitment-short-update-04MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:227:\"Be one of the first to try WooPay, our new express checkout feature. <br><b>Boost conversions</b> by letting customers pay with a <b>single click</b>. <br><br>Update to the latest version of WooCommerce Payments to get started.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:58:\"woopay-beta-merchantrecruitment-short-update-WCPay-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:27:\"Update WooCommerce Payments\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:61:\"woopay-beta-merchantrecruitment-short-update-activate-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-04 18:00:20\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:144:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"http://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.bluebeautifly.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"http://indianrivernatural.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://fouroaksproducts.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:14:\"https://acb.la\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://www.sweetpotatoplant.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"http://www.gocaseyourself.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://laugun.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://nebraskadaybyday.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://vintagemarche727.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://kohai.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://gracegaze.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://aliensmeaning.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://myheritagegardens.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://shopmoresport.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://oladino.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://frogjumpstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://cagedthundermma.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/mcelwainelementary\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://mgco.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://500gp.io/pay\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://waterglassslimes.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://antiqueful.shop/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://deeperkidmin.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"https://fundrgear.com/cyspringsboysbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://houseofminifigs.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"http://box2273.temp.domains/~dreambx2/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://madebymixture.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://reliabletrash.company\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://www.daddybutter.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://circleqessentials.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://garlicbraids.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://fbdonline.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://galaxysedge.us\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://duckduckbeetfarm.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://varsitygraphics.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://jademackenzie.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://kristysketolifestyle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://covid19criticalcare.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://parkviewprep.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:40;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://rock-fest.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:41;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"http://fillinxsolutions.com/etarix/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:42;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://doughremitx.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:43;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.montanafiddlecamp.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:44;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://fococomiccon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:45;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://patricendouglas.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:46;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://hectue.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:47;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://montanamaxbbq.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:48;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://smellzoom.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:49;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://uptowne.theoandson.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:50;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://superbasic.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:51;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://ppodstore.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:52;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://kerenzan.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:53;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://a13bargains.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:54;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://colorgr.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:55;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://mindbodysoulcandles.com/Charlotte\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:56;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://peaceloveandadhd.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:57;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://seymoursmash.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:58;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mwtournament.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:59;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:43:\"https://fundrgear.com/beckendorffgirlstrack\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:60;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:15:\"No results foun\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:61;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://allswellnyc.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:62;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://childoftheredwoodsmembers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:63;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://fundrgear.com/grandoaksvolleyball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:64;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.newhollandrochester.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:65;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.purplecatvet.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:66;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:39:\"https://www.mustangmountaincoaster.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:67;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://www.roccanj.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:68;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://www.teerico.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:69;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://passportunlimited.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:70;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.paladincards20.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:71;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://giantshorties.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:72;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://visualsports.biz\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:73;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://thefreakinricanrestaurant.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:74;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://arequestionscom.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:75;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://pt.tktxcompanystore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:76;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://fitfoodiechicks.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:77;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://nutoshop.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:78;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://backwoodzhiphop.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:79;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://gartapparel.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:80;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://bodega.badiaspices.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:81;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://rampartrange.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:82;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://teeuni.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:83;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://bearsinthealley.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:84;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://vitalbooks.net/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:85;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://hair-free-hair-remover.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:86;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://gangtaynails.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:87;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://crochetfoundry.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:88;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://westcoastbelts.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:89;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://payment.sundryfiles.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:90;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://ccadunkirk.mudhenmama.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:91;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://desertsupercup.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:92;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://shops-eminem.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:93;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://75yearsofracing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:94;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://tixpls.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:95;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:44:\"http://legacyoutfitters.org/banquet/raffles/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:96;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://91170e9fc9.nxcli.io/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:97;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://beachwayrentals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:98;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://thehivelivebox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:99;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://esd.camp\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:100;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mfkgamecalls.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:101;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://1greatce.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:102;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.luthyouth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:103;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://electionintegrityidaho.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:104;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://renbundle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:105;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://premierseamoss.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:106;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://teemart.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:107;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/beckendorffgirlsbb\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:108;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://visiblechild.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:109;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://ebookvital.me/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:110;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://renemarsh.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:111;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://www.eventricate.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:112;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://transgression.party\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:113;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://profadex.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:114;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://mxsbattlegrounds.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:115;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.poeinbaltimore.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:116;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://freefall.gg\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:117;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://underthechurchhatblog.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:118;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://naksparkle.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:119;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"http://bearlyburly.gay/inventory\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:120;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.premierboneandjoint.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:121;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://farm-2-bowl.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:122;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://hollandgrill.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:123;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://lividian.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:124;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.trainingrange.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:125;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://sarakepskitchen.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:126;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.phoenixyouththeatre.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:127;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://drivenarmsco.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:128;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://audiobro.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:129;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://www.iowaabortionaccessfund.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:130;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://findthemenu.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:131;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://moderndepot.co\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:132;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://granitesupplements.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:133;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://healthyrican.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:134;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://utest.edsandbox.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:135;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://c-pounds.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:136;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://littleschoolofsmiths.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:137;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://goblinstyle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:138;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://proper-testing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:139;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.cosafoundation.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:140;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://farmsteadboxes.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:141;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://fundraise4books.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:142;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://norskenook.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:143;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://cajulove.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTA\";O:8:\"stdClass\":8:{s:4:\"slug\";s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTA\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTA\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:22:\"Activate WooPay Test A\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:70:\"woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:167:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-05 00:01:32\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTB\";O:8:\"stdClass\":8:{s:4:\"slug\";s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTB\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTB\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:22:\"Activate WooPay Test B\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:70:\"woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:167:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-05 20:58:43\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"http://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTC\";O:8:\"stdClass\":8:{s:4:\"slug\";s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTC\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTC\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:22:\"Activate WooPay Test C\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:70:\"woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTC\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:167:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTC\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-05 21:03:33\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://pieroatomic3.wpcomstaging.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTD\";O:8:\"stdClass\":8:{s:4:\"slug\";s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTD\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTD\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:22:\"Activate WooPay Test D\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:70:\"woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTD\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:167:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTD\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-05 21:32:09\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://pieroatomic3.wpcomstaging.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}s:45:\"woopay-beta-merchantrecruitment-short-09MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:45:\"woopay-beta-merchantrecruitment-short-09MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:61:\"woopay-beta-merchantrecruitment-short-activate-button-09MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:72:\"woopay-beta-merchantrecruitment-short-activate-learnmore-button2-09MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:169:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-button2-09MAY23\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-08 19:18:44\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:17:\"platform_checkout\";}}}s:11:\"option_name\";s:41:\"woocommerce_woocommerce_payments_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"no\";s:7:\"default\";b:0;}i:3;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:31:\"data.platform_checkout_eligible\";}}}s:11:\"option_name\";s:18:\"wcpay_account_data\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;s:7:\"default\";b:0;}}}s:52:\"woopay-beta-merchantrecruitment-short-update-09MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:52:\"woopay-beta-merchantrecruitment-short-update-09MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:227:\"Be one of the first to try WooPay, our new express checkout feature. <br><b>Boost conversions</b> by letting customers pay with a <b>single click</b>. <br><br>Update to the latest version of WooCommerce Payments to get started.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:58:\"woopay-beta-merchantrecruitment-short-update-WCPay-09MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:27:\"Update WooCommerce Payments\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:61:\"woopay-beta-merchantrecruitment-short-update-activate-09MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-08 19:45:57\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:17:\"platform_checkout\";}}}s:11:\"option_name\";s:41:\"woocommerce_woocommerce_payments_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"no\";s:7:\"default\";b:0;}i:3;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:31:\"data.platform_checkout_eligible\";}}}s:11:\"option_name\";s:18:\"wcpay_account_data\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;s:7:\"default\";b:0;}}}s:52:\"woocommerce-WCSubscriptions-June-2023-updated-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:52:\"woocommerce-WCSubscriptions-June-2023-updated-needed\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Action required: Security update of WooCommerce Subscriptions\";s:7:\"content\";s:197:\"<strong>Your store requires a security update for the WooCommerce Subscriptions plugin</strong>. Please update the WooCommerce Subscriptions plugin immediately to address a potential vulnerability.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:68:\"woocommerce-WCSubscriptions-June-2023-updated-needed-Plugin-Settings\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woocommerce-WCSubscriptions-June-2023-updated-needed-dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-06-06 08:00:08\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:25:\"woocommerce-subscriptions\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"2.1.0\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:25:\"woocommerce-subscriptions\";s:8:\"operator\";s:2:\"<=\";s:7:\"version\";s:5:\"5.1.2\";}}}s:54:\"woocommerce-WCReturnsWarranty-June-2023-updated-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:54:\"woocommerce-WCReturnsWarranty-June-2023-updated-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:87:\"Action required: Security update of WooCommerce Returns and Warranty Requests extension\";s:7:\"content\";s:270:\"<strong>Your store requires a security update for the Returns and Warranty Requests extension</strong>.  Please update to the latest version of the WooCommerce Returns and Warranty Requests extension immediately to address a potential vulnerability discovered on May 31.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:54:\"woocommerce-WCReturnsWarranty-June-2023-updated-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:54:\"woocommerce-WCReturnsWarranty-June-2023-updated-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-06-02 23:53:57\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-warranty\";s:8:\"operator\";s:2:\"<=\";s:7:\"version\";s:5:\"2.1.8\";}}}s:42:\"woocommerce-WCOPC-June-2023-updated-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:42:\"woocommerce-WCOPC-June-2023-updated-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:65:\"Action required: Security update of WooCommerce One Page Checkout\";s:7:\"content\";s:232:\"<strong>Your shop requires a security update to address a vulnerability in the WooCommerce One Page Checkout extension</strong>. The fix for this vulnerability was released for this extension on June 13th. Please update immediately.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:42:\"woocommerce-WCOPC-June-2023-updated-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:42:\"woocommerce-WCOPC-June-2023-updated-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-06-21 14:05:46\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:29:\"woocommerce-one-page-checkout\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"2.4.0\";}}}s:40:\"woocommerce-WCGC-July-2023-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:40:\"woocommerce-WCGC-July-2023-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:68:\"Action required: Security update of WooCommerce GoCardless Extension\";s:7:\"content\";s:205:\"<strong>Your shop requires a security update to address a vulnerability in the WooCommerce GoCardless extension</strong>. The fix for this vulnerability was released on July 4th. Please update immediately.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:40:\"woocommerce-WCGC-July-2023-update-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:40:\"woocommerce-WCGC-July-2023-update-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-07-04 15:36:07\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:30:\"woocommerce-gateway-gocardless\";s:8:\"operator\";s:2:\"<=\";s:7:\"version\";s:5:\"2.5.6\";}}}s:48:\"woocommerce-shipping-fedex-api-outage-2023-07-16\";O:8:\"stdClass\":8:{s:4:\"slug\";s:48:\"woocommerce-shipping-fedex-api-outage-2023-07-16\";s:4:\"type\";s:7:\"warning\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:40:\"Scheduled FedEx API outage — July 2023\";s:7:\"content\";s:277:\"On July 16 there will be a full outage of the FedEx API from 04:00 to 08:00 AM UTC. Due to planned maintenance by FedEx, you\'ll be unable to provide FedEx shipping rates during this time. Follow the link below for more information and recommendations on how to minimize impact.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:125:\"https://woocommerce.com/document/fedex/?utm_medium=product&utm_source=inbox_note&utm_campaign=learn-more#july-2023-api-outage\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-07-05 18:19:17\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-shipping-fedex\";}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2023-07-17 00:00:00\";}}}s:35:\"wcship-2023-07-hazmat-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:35:\"wcship-2023-07-hazmat-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:87:\"Action required: USPS HAZMAT compliance update for WooCommerce Shipping & Tax extension\";s:7:\"content\";s:251:\"<strong>Your store requires an update for the WooCommerce Shipping extension</strong>. Please update to the latest version of the WooCommerce Shipping &amp; Tax extension immediately to ensure compliance with new USPS HAZMAT rules currently in effect.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"plugin-list\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:23:\"admin.php?page=wc-admin\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-07-11 20:26:59\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-services\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"2.3.0\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}}}s:43:\"woocommerce-WCStripe-Aug-2023-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:43:\"woocommerce-WCStripe-Aug-2023-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:62:\"Action required: Security update for WooCommerce Stripe plugin\";s:7:\"content\";s:183:\"<strong>Your shop requires an important security update for the  WooCommerce Stripe plugin</strong>. The fix for this vulnerability was released on July 31. Please update immediately.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:43:\"woocommerce-WCStripe-Aug-2023-update-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:16:\"update-core.php?\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-08-03 05:00:06\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.6\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"7.4.2\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:11:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.3.2\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.4.5\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.5.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.6.2\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.7.2\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.8.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.9.2\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.0.4\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.1.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.2.2\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.3.2\";}}}}}}}s:46:\"woocommerce-WCStripe-Aug-2023-security-updated\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woocommerce-WCStripe-Aug-2023-security-updated\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:44:\"Security update of WooCommerce Stripe plugin\";s:7:\"content\";s:144:\"<strong>Your store has been updated to the latest secure version of the WooCommerce Stripe plugin</strong>. This update was released on July 31.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-08-03 05:00:07\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:11:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.3.2\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.4.5\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.5.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.6.2\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.7.2\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.8.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.9.2\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.0.4\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.1.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.2.2\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.3.2\";}}}}}s:49:\"woocommerce-WooPayments-Aug-2023-security-updated\";O:8:\"stdClass\":8:{s:4:\"slug\";s:49:\"woocommerce-WooPayments-Aug-2023-security-updated\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:60:\"Security update of WooPayments (WooCommerce Payments) plugin\";s:7:\"content\";s:147:\"<strong>Your store has been updated to the more secure version of WooPayments (WooCommerce Payments)</strong>. This update was released on July 31.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-08-03 05:00:13\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:17:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.3\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.2\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.4\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.4\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.3\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.6\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.5\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.4\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.3\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.3\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.5.4\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.6.4\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.7.2\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.8.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.9.2\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.0.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.1.2\";}}}}}s:24:\"avalara_q3-2023_noAvaTax\";O:8:\"stdClass\":8:{s:4:\"slug\";s:24:\"avalara_q3-2023_noAvaTax\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:40:\"Automatically calculate VAT in real time\";s:7:\"content\";s:284:\"Take the effort out of determining tax rates and sell confidently across borders with automated tax management from Avalara AvaTax— including built-in VAT calculation when you sell into or across the EU and UK. Save time and stay compliant when you let Avalara do the heavy lifting.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:24:\"avalara_q3-2023_noAvaTax\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"Automate my sales tax\";}}s:3:\"url\";s:131:\"https://woocommerce.com/products/woocommerce-avatax/?utm_source=inbox_note&utm_medium=product&utm_campaign=avalara_q3-2023_noAvaTax\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-08-08 22:32:23\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2023-08-09 23:59:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:18:\"woocommerce-avatax\";}}}}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:30;}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:20:\"total_payments_value\";s:9:\"timeframe\";s:9:\"last_year\";s:5:\"value\";i:100;s:9:\"operation\";s:1:\">\";}}}s:44:\"woocommerce-usermeta-Sept2023-productvendors\";O:8:\"stdClass\":8:{s:4:\"slug\";s:44:\"woocommerce-usermeta-Sept2023-productvendors\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:37:\"Your store requires a security update\";s:7:\"content\";s:339:\"<strong>Your shop needs an update to address a vulnerability in WooCommerce.</strong> The fix was released on Sept 15. Please update WooCommerce to the latest version immediately. <a href=\"https://developer.woocommerce.com/2023/09/16/woocommerce-vulnerability-reintroduced-from-7-0-1/\" />Read our developer update</a> for more information.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:44:\"woocommerce-usermeta-Sept2023-productvendors\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:11:\"plugins.php\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-09-20 00:50:07\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-product-vendors\";}}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"8.1.1\";}}}s:41:\"woocommerce-STRIPE-Oct-2023-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:41:\"woocommerce-STRIPE-Oct-2023-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:63:\"Action required: Security update for WooCommerce Stripe Gateway\";s:7:\"content\";s:201:\"<strong>Your shop requires a security update to address a vulnerability in the WooCommerce Stripe Gateway</strong>. The fix for this vulnerability was released on October 17. Please update immediately.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:41:\"woocommerce-STRIPE-Oct-2023-update-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:15:\"update-core.php\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:36:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-10-18 00:01:58\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"4.5.4\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.6\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.1\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.1\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.1\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.4\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.1\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.2\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.5.2\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.6.4\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.7.2\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.8.3\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.9.2\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.0.2\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.1.2\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.2.2\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.3.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.4.6\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.5.4\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.6.3\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.5.4\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.6.3\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.7.3\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.8.3\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.9.3\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"7.0.5\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"7.1.3\";}i:31;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"7.2.3\";}i:32;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"7.3.3\";}i:33;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"7.4.3\";}i:34;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"7.5.1\";}i:35;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"7.6.1\";}}}s:29:\"amazon-mcf-reviews-2023-12-07\";O:8:\"stdClass\":8:{s:4:\"slug\";s:29:\"amazon-mcf-reviews-2023-12-07\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:36:\"Enjoying Amazon MCF for WooCommerce?\";s:7:\"content\";s:292:\"We\'re Never Settle, the developers behind Amazon MCF for WooCommerce, and would be deeply honored to have your review. Reviews help immensely as other users can learn how MCF can solve their needs too! Not happy or need help? Please reach out for support and we’d love to make things right!\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:35:\"amazon-mcf-review-button-2023-12-07\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Leave a review\";}}s:3:\"url\";s:161:\"https://woocommerce.com/products/woocommerce-amazon-fulfillment/?review&utm_source=inbox_note&utm_medium=product&utm_campaign=amazon-mcf-review-button-2023-12-07\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:36:\"amazon-mcf-support-button-2023-12-07\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Request support\";}}s:3:\"url\";s:142:\"https://woocommerce.com/my-account/contact-support/?utm_source=inbox_note&utm_medium=product&utm_campaign=amazon-mcf-support-button-2023-12-07\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-12-06 15:21:27\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:30:\"woocommerce-amazon-fulfillment\";}}}}s:30:\"remove_estimated_deposits_2024\";O:8:\"stdClass\":8:{s:4:\"slug\";s:30:\"remove_estimated_deposits_2024\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:33:\"Estimated deposits are going away\";s:7:\"content\";s:267:\"To provide more accurate deposit information and support the expansion of instant deposits, estimated deposit details will no longer be available in WooPayments. We recommend upgrading to the latest version of WooPayments for more detailed balance status information.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:9:\"view_docs\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:29:\"Learn about Deposit schedules\";}}s:3:\"url\";s:151:\"https://woocommerce.com/document/woopayments/deposits/deposit-schedule/?utm_source=inbox_note&utm_medium=product&utm_campaign=view_docs#available-funds\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:3:\"6.9\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2024-01-21 08:00:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2024-01-31 23:59:59\";}}}s:15:\"klaviyo_q2_2025\";O:8:\"stdClass\":8:{s:4:\"slug\";s:15:\"klaviyo_q2_2025\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:49:\"Tailor your marketing with data-driven automation\";s:7:\"content\";s:324:\"Deliver personalized experiences at scale, simplify your stack, and make your data work for you using Klaviyo’s best-in-class marketing extension for Woo. With advanced segmentation based on actual customer behavior, you can send email and SMS messages that drive revenue and increase loyalty — without adding complexity\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"klaviyo_q2_2025\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:17:\"Try Klaviyo today\";}}s:3:\"url\";s:127:\"https://woocommerce.com/products/klaviyo-for-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=klaviyo_q2_2025\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2025-04-30 00:00:37\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2025-05-13 23:59:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:23:\"klaviyo-for-woocommerce\";}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:25:\"mailchimp-for-woocommerce\";}}}}}}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:11:\"order_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:3;}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:20:\"total_payments_value\";s:9:\"timeframe\";s:9:\"last_year\";s:5:\"value\";i:25;s:9:\"operation\";s:1:\">\";}}}s:26:\"sirt-woo-2024-11-xss-admin\";O:8:\"stdClass\":8:{s:4:\"slug\";s:26:\"sirt-woo-2024-11-xss-admin\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:47:\"An important update is required for WooCommerce\";s:7:\"content\";s:353:\"This update addresses a security vulnerability that could allow unauthorized access to administrative privileges on your site. <a href=\"https://developer.woocommerce.com/2024/12/03/woocommerce-9-4-3-and-woocommerce-9-3-4-available-now/\">Learn more</a>.\r\n<br><br>\r\n<strong>Please ensure your site is updated to the latest version to stay secure.</strong>\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:26:\"sirt-woo-2024-11-xss-admin\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:16:\"update-core.php?\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:26:\"sirt-woo-2024-11-xss-admin\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2024-12-04 02:07:06\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"WooCommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"8.4.0\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"WooCommerce\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"9.4.3\";}}}s:64:\"woocommerce-analytics-order-attribution-promotions-december-2024\";O:8:\"stdClass\":8:{s:4:\"slug\";s:64:\"woocommerce-analytics-order-attribution-promotions-december-2024\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:31:\"Discover what drives your sales\";s:7:\"content\";s:216:\"Use our powerful <strong>Order Attribution</strong> extension to understand what truly drives your revenue. Track your sales journey, identify your most effective marketing channels, and optimize your sales strategy.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:78:\"woocommerce-analytics-order-attribution-promotions-december-2024-find-out-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:13:\"Find out more\";}}s:3:\"url\";s:51:\"https://wordpress.org/plugins/woocommerce-analytics\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2024-12-23 09:56:01\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:21:\"woocommerce-analytics\";}}}}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:5:\"value\";a:2:{i:0;i:1;i:1;i:12;}s:7:\"default\";i:0;s:9:\"operation\";s:5:\"range\";s:11:\"option_name\";s:37:\"woocommerce_remote_variant_assignment\";}}}s:44:\"paypal-braintree-sdk-depreciation-2025-02-20\";O:8:\"stdClass\":8:{s:4:\"slug\";s:44:\"paypal-braintree-sdk-depreciation-2025-02-20\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:51:\"Update required for your PayPal Braintree extension\";s:7:\"content\";s:253:\"To continue securely accepting payments, you must update your PayPal Braintree extension to version 3.2.4 or newer before June 30, 2025. Your current extension version will not support payment processing after this date due to an SSL certificate update.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:51:\"paypal-braintree-sdk-depreciation-2025-02-20-button\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:11:\"Upgrade now\";}}s:3:\"url\";s:21:\"/wp-admin/plugins.php\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2025-03-03 19:49:10\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:47:\"woocommerce-gateway-paypal-powered-by-braintree\";s:8:\"operator\";s:2:\"<=\";s:7:\"version\";s:5:\"3.2.3\";}}}s:24:\"uk-vat-notice-2025-04-30\";O:8:\"stdClass\":8:{s:4:\"slug\";s:24:\"uk-vat-notice-2025-04-30\";s:4:\"type\";s:7:\"warning\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:38:\"UK VAT numbers are no longer supported\";s:7:\"content\";s:322:\"Due to recent HM Revenue &amp; Customs (HMRC) VAT API changes, your EU VAT Number for WooCommerce extension can no longer validate UK VAT numbers. HMRC now requires merchants to register an API key, which this extension does not currently support. We recommend EU/UK VAT Validation Manager for WooCommerce as a replacement\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:31:\"uk-vat-notice-button-2025-04-30\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:31:\"Learn more about this extension\";}}s:3:\"url\";s:53:\"https://wordpress.org/plugins/eu-vat-for-woocommerce/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:25:\"woocommerce-eu-vat-number\";}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2025-05-05 00:00:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2025-05-15 00:00:00\";}}}}s:5:\"en_US\";a:55:{s:21:\"wayflyer_bnpl_q4_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:21:\"wayflyer_bnpl_q4_2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:48:\"Grow your business with funding through Wayflyer\";s:7:\"content\";s:261:\"Fast, flexible financing to boost cash flow and help your business grow – one fee, no interest rates, penalties, equity, or personal guarantees. Based on your store’s performance, Wayflyer provides funding and analytical insights to invest in your business.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:21:\"wayflyer_bnpl_q4_2021\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"Level up with funding\";}}s:3:\"url\";s:118:\"https://woocommerce.com/products/wayflyer/?utm_source=inbox_note&utm_medium=product&utm_campaign=wayflyer_bnpl_q4_2021\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-11-17 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-12-18 00:00:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:7:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"AU\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"BE\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"CA\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"IE\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"NL\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"GB\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-gateway-affirm\";}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:32:\"afterpay-gateway-for-woocommerce\";}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:31:\"klarna-payments-for-woocommerce\";}}}}}}s:35:\"wc_shipping_mobile_app_usps_q4_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:35:\"wc_shipping_mobile_app_usps_q4_2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:94:\"Print and manage your shipping labels with WooCommerce Shipping and the WooCommerce Mobile App\";s:7:\"content\";s:210:\"Save time by printing, purchasing, refunding, and tracking shipping labels generated by <a href=\"https://woocommerce.com/woocommerce-shipping/\">WooCommerce Shipping</a> – all directly from your mobile device!\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:35:\"wc_shipping_mobile_app_usps_q4_2021\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:24:\"Get WooCommerce Shipping\";}}s:3:\"url\";s:135:\"https://woocommerce.com/woocommerce-shipping/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc_shipping_mobile_app_usps_q4_2021\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-11-12 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-11-27 00:00:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:25:\"woocommerce-shipping-usps\";}}i:4;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}}}}}s:18:\"your-first-product\";O:8:\"stdClass\":8:{s:4:\"slug\";s:18:\"your-first-product\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:18:\"Your first product\";s:7:\"content\";s:467:\"That’s huge! You’re well on your way to building a successful online store — now it’s time to think about how you’ll fulfill your orders.<br/><br/>Read our shipping guide to learn best practices and options for putting together your shipping strategy. And for WooCommerce stores in the United States, you can print discounted shipping labels via USPS with <a href=\"https://href.li/?https://woocommerce.com/shipping\" target=\"_blank\">WooCommerce Shipping</a>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:130:\"https://woocommerce.com/posts/ecommerce-shipping-solutions-guide/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:19:13\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:12:\"stored_state\";s:5:\"index\";s:22:\"there_were_no_products\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:12:\"stored_state\";s:5:\"index\";s:22:\"there_are_now_products\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:13:\"product_count\";s:9:\"operation\";s:2:\">=\";s:5:\"value\";i:1;}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:13:\"product_types\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:8:\"physical\";s:7:\"default\";a:0:{}}}}s:37:\"wc-admin-optimizing-the-checkout-flow\";O:8:\"stdClass\":8:{s:4:\"slug\";s:37:\"wc-admin-optimizing-the-checkout-flow\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:28:\"Optimizing the checkout flow\";s:7:\"content\";s:177:\"It’s crucial to get your store’s checkout as smooth as possible to avoid losing sales. Let’s take a look at how you can optimize the checkout experience for your shoppers.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:28:\"optimizing-the-checkout-flow\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:144:\"https://woocommerce.com/posts/optimizing-woocommerce-checkout?utm_source=inbox_note&utm_medium=product&utm_campaign=optimizing-the-checkout-flow\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:19:49\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:3;}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:45:\"woocommerce_task_list_tracked_completed_tasks\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:8:\"payments\";s:7:\"default\";a:0:{}}}}s:32:\"wc-payments-qualitative-feedback\";O:8:\"stdClass\":8:{s:4:\"slug\";s:32:\"wc-payments-qualitative-feedback\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:46:\"WooPayments setup - let us know what you think\";s:7:\"content\";s:137:\"Congrats on enabling WooPayments for your store. Please share your feedback in this 2 minute survey to help us improve the setup process.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:35:\"qualitative-feedback-from-new-users\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:58:\"https://automattic.survey.fm/woopayments-new-user-feedback\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:21:13\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:45:\"woocommerce_task_list_tracked_completed_tasks\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:20:\"woocommerce-payments\";s:7:\"default\";a:0:{}}}}s:29:\"share-your-feedback-on-paypal\";O:8:\"stdClass\":8:{s:4:\"slug\";s:29:\"share-your-feedback-on-paypal\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:29:\"Share your feedback on PayPal\";s:7:\"content\";s:127:\"Share your feedback in this 2 minute survey about how we can make the process of accepting payments more useful for your store.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"share-feedback\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:43:\"http://automattic.survey.fm/paypal-feedback\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:21:50\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-gateway-stripe\";}}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}}}s:31:\"google_listings_and_ads_install\";O:8:\"stdClass\":8:{s:4:\"slug\";s:31:\"google_listings_and_ads_install\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:35:\"Drive traffic and sales with Google\";s:7:\"content\";s:123:\"Reach online shoppers to drive traffic and sales for your store by showcasing products across Google, for free or with ads.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"get-started\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:11:\"Get started\";}}s:3:\"url\";s:122:\"https://woocommerce.com/products/google-listings-and-ads?utm_source=inbox_note&utm_medium=product&utm_campaign=get-started\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-06-09 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:23:\"google_listings_and_ads\";}}}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:11:\"order_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:10;}}}s:39:\"wc-subscriptions-security-update-3-0-15\";O:8:\"stdClass\":8:{s:4:\"slug\";s:39:\"wc-subscriptions-security-update-3-0-15\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:42:\"WooCommerce Subscriptions security update!\";s:7:\"content\";s:738:\"We recently released an important security update to WooCommerce Subscriptions. To ensure your site’s data is protected, please upgrade <strong>WooCommerce Subscriptions to version 3.0.15</strong> or later.<br/><br/>Click the button below to view and update to the latest Subscriptions version, or log in to <a href=\"https://woocommerce.com/my-dashboard\">WooCommerce.com Dashboard</a> and navigate to your <strong>Downloads</strong> page.<br/><br/>We recommend always using the latest version of WooCommerce Subscriptions, and other software running on your site, to ensure maximum security.<br/><br/>If you have any questions we are here to help — just <a href=\"https://woocommerce.com/my-account/create-a-ticket/\">open a ticket</a>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:30:\"update-wc-subscriptions-3-0-15\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:19:\"View latest version\";}}s:3:\"url\";s:30:\"&page=wc-addons&section=helper\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:30:32\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:25:\"woocommerce-subscriptions\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:6:\"3.0.15\";}}}s:29:\"woocommerce-core-update-5-4-0\";O:8:\"stdClass\":8:{s:4:\"slug\";s:29:\"woocommerce-core-update-5-4-0\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:31:\"Update to WooCommerce 5.4.1 now\";s:7:\"content\";s:140:\"WooCommerce 5.4.1 addresses a checkout issue discovered in WooCommerce 5.4. We recommend upgrading to WooCommerce 5.4.1 as soon as possible.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:20:\"update-wc-core-5-4-0\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:25:\"How to update WooCommerce\";}}s:3:\"url\";s:64:\"https://docs.woocommerce.com/document/how-to-update-woocommerce/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:31:08\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.0\";}}}s:19:\"wcpay-promo-2020-11\";O:8:\"stdClass\":8:{s:4:\"slug\";s:19:\"wcpay-promo-2020-11\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:19:\"wcpay-promo-2020-11\";s:7:\"content\";s:19:\"wcpay-promo-2020-11\";}}s:7:\"actions\";a:0:{}s:5:\"rules\";a:0:{}}s:19:\"wcpay-promo-2020-12\";O:8:\"stdClass\":8:{s:4:\"slug\";s:19:\"wcpay-promo-2020-12\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:19:\"wcpay-promo-2020-12\";s:7:\"content\";s:19:\"wcpay-promo-2020-12\";}}s:7:\"actions\";a:0:{}s:5:\"rules\";a:0:{}}s:34:\"ppxo-pps-upgrade-paypal-payments-1\";O:8:\"stdClass\":8:{s:4:\"slug\";s:34:\"ppxo-pps-upgrade-paypal-payments-1\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:47:\"Get the latest PayPal extension for WooCommerce\";s:7:\"content\";s:442:\"Heads up! There’s a new PayPal on the block!<br/><br/>Now is a great time to upgrade to our latest <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal extension</a> to continue to receive support and updates with PayPal.<br/><br/>Get access to a full suite of PayPal payment methods, extensive currency and country coverage, and pay later options with the all-new PayPal extension for WooCommerce.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"ppxo-pps-install-paypal-payments-1\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:18:\"View upgrade guide\";}}s:3:\"url\";s:96:\"https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:33:53\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.5\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-paypal-payments\";}}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:7:\"enabled\";}}}s:11:\"option_name\";s:27:\"woocommerce_paypal_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;}}}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";i:7;s:7:\"default\";i:1;s:9:\"operation\";s:1:\"<\";}}}s:34:\"ppxo-pps-upgrade-paypal-payments-2\";O:8:\"stdClass\":8:{s:4:\"slug\";s:34:\"ppxo-pps-upgrade-paypal-payments-2\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:31:\"Upgrade your PayPal experience!\";s:7:\"content\";s:358:\"Get access to a full suite of PayPal payment methods, extensive currency and country coverage, offer subscription and recurring payments, and the new PayPal pay later options.<br /><br />Start using our <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">latest PayPal today</a> to continue to receive support and updates.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"ppxo-pps-install-paypal-payments-2\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:18:\"View upgrade guide\";}}s:3:\"url\";s:96:\"https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:34:30\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.5\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-paypal-payments\";}}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:7:\"enabled\";}}}s:11:\"option_name\";s:27:\"woocommerce_paypal_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;}}}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";i:6;s:7:\"default\";i:1;s:9:\"operation\";s:1:\">\";}}}s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:56:\"Action required: Critical vulnerabilities in WooCommerce\";s:7:\"content\";s:574:\"In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br />Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br /><br />For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:137:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:59:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:35:06\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.3.6\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.4.8\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.5.9\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.6.6\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.7.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.8.2\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.4\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.3\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.2\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.3\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.3\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.4\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.4\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.5\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.2\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.3\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.3\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.4\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.4\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.2\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.3\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.2\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.3\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.4\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.1\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.2\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.1\";}i:31;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.2\";}i:32;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.3\";}i:33;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.4\";}i:34;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.1\";}i:35;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.2\";}i:36;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.2\";}i:37;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.3\";}i:38;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.5.1\";}i:39;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:6:\"3.5.10\";}i:40;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.6.7\";}i:41;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.7.3\";}i:42;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.8.3\";}i:43;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.5\";}i:44;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.4\";}i:45;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.4\";}i:46;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.5\";}i:47;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.6\";}i:48;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.4\";}i:49;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.5\";}i:50;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.5\";}i:51;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.4\";}i:52;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.3\";}i:53;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.5\";}i:54;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.3\";}i:55;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.3\";}i:56;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.5\";}i:57;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.3\";}i:58;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.4\";}}}s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:63:\"Action required: Critical vulnerabilities in WooCommerce Blocks\";s:7:\"content\";s:570:\"In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/>Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br/><br/>For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:137:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:32:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:35:42\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:6:\"2.5.16\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.6.2\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.7.2\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.8.1\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.9.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.0.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.1.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.2.1\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.3.1\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.4.1\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.5.1\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.6.1\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.7.2\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.8.1\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.1\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.1\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.1\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.3\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.1\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.2\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.1\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.1\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.1\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.2\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.1\";}i:31;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.5.1\";}}}s:45:\"woocommerce-core-sqli-july-2021-store-patched\";O:8:\"stdClass\":8:{s:4:\"slug\";s:45:\"woocommerce-core-sqli-july-2021-store-patched\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:55:\"Solved: Critical vulnerabilities patched in WooCommerce\";s:7:\"content\";s:433:\"In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:137:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:36:18\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:23:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.3.6\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.4.8\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.5.9\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.6\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.2\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.4\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.2\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.3\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.4\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.2\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.3\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.2\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.1\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.3\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.1\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.2\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.5.1\";}}}}}s:47:\"woocommerce-blocks-sqli-july-2021-store-patched\";O:8:\"stdClass\":8:{s:4:\"slug\";s:47:\"woocommerce-blocks-sqli-july-2021-store-patched\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:62:\"Solved: Critical vulnerabilities patched in WooCommerce Blocks\";s:7:\"content\";s:433:\"In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:137:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:36:54\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:31:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"2.5.16\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.6.2\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.7.2\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.8.1\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.9.1\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.0.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.1.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.2.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.3.1\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.4.1\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.5.1\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.1\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.2\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.1\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.1\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.1\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.1\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.3\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.1\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.1\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.2\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.1\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.1\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.1\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.2\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.1\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.5.1\";}}}}}s:19:\"habit-moment-survey\";O:8:\"stdClass\":8:{s:4:\"slug\";s:19:\"habit-moment-survey\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:63:\"We’re all ears! Share your experience so far with WooCommerce\";s:7:\"content\";s:136:\"We’d love your input to shape the future of WooCommerce together. Feel free to share any feedback, ideas or suggestions that you have.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"share-feedback\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:45:\"https://automattic.survey.fm/store-management\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:37:30\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:3;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:11:\"order_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:30;}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:13:\"product_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:0;}}}s:42:\"woocommerce-core-paypal-march-2022-updated\";O:8:\"stdClass\":8:{s:4:\"slug\";s:42:\"woocommerce-core-paypal-march-2022-updated\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:35:\"Security auto-update of WooCommerce\";s:7:\"content\";s:391:\"<strong>Your store has been updated to the latest secure version of WooCommerce</strong>. We worked with WordPress to deploy PayPal Standard security updates for stores running WooCommerce (version 3.5 to 6.3). It’s recommended to disable PayPal Standard, and use <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal Payments</a> to accept PayPal.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:88:\"https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:42:\"woocommerce-core-paypal-march-2022-dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-03-10 18:44:57\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:28:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"3.5.10\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.7\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.3\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.5\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.4\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.4\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.5\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.6\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.4\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.5\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.5\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.4\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.5\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.3\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.5\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.3\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.4\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.5.4\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.6.2\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.7.2\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.8.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.9.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.0.1\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.1.2\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.2.2\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:3:\"5.5\";}i:1;a:2:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.5\";}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:27:\"woocommerce_paypal_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:7:\"enabled\";}}}}}}}}}s:47:\"woocommerce-core-paypal-march-2022-updated-nopp\";O:8:\"stdClass\":8:{s:4:\"slug\";s:47:\"woocommerce-core-paypal-march-2022-updated-nopp\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:35:\"Security auto-update of WooCommerce\";s:7:\"content\";s:237:\"<strong>Your store has been updated to the latest secure version of WooCommerce</strong>. We worked with WordPress to deploy security updates related to PayPal Standard payment gateway for stores running WooCommerce (version 3.5 to 6.3).\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:88:\"https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-03-10 18:45:04\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:28:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"3.5.10\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.7\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.3\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.5\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.4\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.4\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.5\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.6\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.4\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.5\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.5\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.4\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.5\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.3\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.5\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.3\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.4\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.5.4\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.6.2\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.7.2\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.8.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.9.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.0.1\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.1.2\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.2.2\";}}}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:42:\"woocommerce-core-paypal-march-2022-updated\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}s:24:\"pinterest_03_2022_update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:24:\"pinterest_03_2022_update\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:53:\"Your Pinterest for WooCommerce plugin is out of date!\";s:7:\"content\";s:262:\"Update to the latest version of Pinterest for WooCommerce to continue using this plugin and keep your store connected with Pinterest. To update, visit <strong>Plugins &gt; Installed Plugins</strong>, and click on “update now” under Pinterest for WooCommerce.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:24:\"pinterest_03_2022_update\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:19:\"Update Instructions\";}}s:3:\"url\";s:148:\"https://woocommerce.com/document/pinterest-for-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=pinterest_03_2022_update#section-3\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-03-23 00:00:39\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:25:\"pinterest-for-woocommerce\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"1.0.8\";}}}s:33:\"store_setup_survey_survey_q2_2022\";O:8:\"stdClass\":8:{s:4:\"slug\";s:33:\"store_setup_survey_survey_q2_2022\";s:4:\"type\";s:6:\"survey\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:30:\"How is your store setup going?\";s:7:\"content\";s:232:\"Our goal is to make sure you have all the right tools to start setting up your store in the smoothest way possible.\r\nWe’d love to know if we hit our mark and how we can improve. To collect your thoughts, we made a 2-minute survey.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:53:\"store_setup_survey_survey_q2_2022_share_your_thoughts\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:24:\"Tell us how it’s going\";}}s:3:\"url\";s:52:\"https://automattic.survey.fm/store-setup-survey-2022\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-05-09 08:42:10\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:7;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\"<\";s:4:\"days\";i:9;}}}s:48:\"needs-update-eway-payment-gateway-rin-2022-12-20\";O:8:\"stdClass\":8:{s:4:\"slug\";s:48:\"needs-update-eway-payment-gateway-rin-2022-12-20\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:58:\"Security vulnerability patched in WooCommerce Eway Gateway\";s:7:\"content\";s:323:\"In response to a potential vulnerability identified in WooCommerce Eway Gateway versions 3.1.0 to 3.5.0, we’ve worked to deploy security fixes and have released an updated version.\r\nNo external exploits have been detected, but we recommend you update to your latest supported version 3.1.26, 3.2.3, 3.3.1, 3.4.6, or 3.5.1\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:62:\"needs-update-eway-payment-gateway-rin-action-button-2022-12-20\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:16:\"/update-core.php\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:63:\"needs-update-eway-payment-gateway-rin-dismiss-button-2022-12-20\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:7:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-03 23:45:53\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:6:\"3.1.26\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.2.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.3.1\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.4.6\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"3.5.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"3.1.0\";}}}s:43:\"updated-eway-payment-gateway-rin-2022-12-20\";O:8:\"stdClass\":8:{s:4:\"slug\";s:43:\"updated-eway-payment-gateway-rin-2022-12-20\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:55:\"WooCommerce Eway Gateway has been automatically updated\";s:7:\"content\";s:280:\"Your store is now running the latest secure version of WooCommerce Eway Gateway. We worked with the WordPress Plugins team to deploy a software update to stores running WooCommerce Eway Gateway (versions 3.1.0 to 3.5.0) in response to a security vulnerability that was discovered.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:57:\"updated-eway-payment-gateway-rin-action-button-2022-12-20\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"See all updates\";}}s:3:\"url\";s:16:\"/update-core.php\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:58:\"updated-eway-payment-gateway-rin-dismiss-button-2022-12-20\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-03 23:45:06\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:48:\"needs-update-eway-payment-gateway-rin-2022-12-20\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:5:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"3.1.26\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.2.3\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.3.1\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.4.6\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.5.1\";}}}}}s:31:\"ecomm-wc-navigation-survey-2023\";O:8:\"stdClass\":8:{s:4:\"slug\";s:31:\"ecomm-wc-navigation-survey-2023\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:39:\"Navigating WooCommerce on WordPress.com\";s:7:\"content\";s:166:\"We are improving the WooCommerce navigation on WordPress.com and would love your help to make it better! Please share your experience with us in this 2-minute survey.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:32:\"share-navigation-survey-feedback\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:58:\"https://automattic.survey.fm/new-ecommerce-plan-navigation\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-01-16 09:53:44\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:12:\"is_ecommerce\";s:5:\"value\";b:1;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:180;}}}s:39:\"woopay-beta-merchantrecruitment-04MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:39:\"woopay-beta-merchantrecruitment-04MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:319:\"WooPay, a new express checkout feature built into WooCommerce Payments, is <b>now available</b> —and we’re inviting you to be one of the first to try it. \r\n<br><br>\r\n<b>Boost conversions</b> by offering your customers a simple, secure way to pay with a <b>single click</b>.\r\n<br><br>\r\n<b>Get started in seconds.</b>\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:48:\"woopay-beta-merchantrecruitment-activate-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:58:\"woopay-beta-merchantrecruitment-activate-learnmore-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:155:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-activate-learnmore-04MAY23\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-04 18:00:27\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:144:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"http://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.handinhandparenting.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://pritikinfoods.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://utahrecsports.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.hunterpta.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://www.smokinbeans.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://shulabeauty.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://bingeworthytvmerch.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://s91.4d8.myftpupload.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://stephanienicolenorris.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://aliensshirt.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://libertyordeathapparelllc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://cowboystatedaily.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:42:\"https://fundrgear.com/beckendorffathletics\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:50:\"http://wordpress-528155-2231771.cloudwaysapps.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://checkout.sohaprice.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://amadozstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://eliwehbe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://lunabra.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://nptixx.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://louisianapantry.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://aplusanatomy.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://wildsvg.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://bleachfilm.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://benabeautyspa.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:47:\"http://barrettfitnessenterprises.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://goabroadable.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://alexoathletica.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.fourpurls.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.hagmannreport.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://busybeeorganics.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://nallsproduce.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://bigtimebats.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://shop.cookingwithkarli.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.queenofpeacemedia.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://bigjohnsbeefjerky.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://paperbyjaney.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://carolinarisemembers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://veroticaevents.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://spira.farm\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:40;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://endlessassist.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:41;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://betterlifeblog.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:42;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://ashleighrenard.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:43;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.turkeymerck.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:44;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://carfiershop.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:45;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://normanmusicfestival.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:46;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"http://www.olfactoryfactoryllc.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:47;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://fundrgear.com/anthonyathletics\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:48;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"http://tkechilifestdotcom.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:49;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:15:\"No results foun\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:50;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://pvsa.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:51;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://becbatop.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:52;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wwmeconvention.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:53;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://lswmp.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:54;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://bubbaskincare.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:55;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://fusango.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:56;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://vcdpostershow.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:57;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://www.rileysribz.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:58;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.fakeultrasound.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:59;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://onelongfellowsquare.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:60;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://agodpod.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:61;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/littleladybulldogs\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:62;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://thecirclelarp.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:63;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://byletam.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:64;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.nachonite.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:65;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://designerdab.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:66;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"http://box2151.temp.domains/~lovebyt2/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:67;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://shortporchbaseballcompany.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:68;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://distancecme.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:69;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://middleswarthchips.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:70;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://railblazausa.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:71;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://mikescountrymeats.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:72;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://www.woodenshoe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:73;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://rockspringscafe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:74;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"http://footballfangears.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:75;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://ybtoner.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:76;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://simplyclayyy.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:77;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://naturecreation.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:78;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://marisrodriguez.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:79;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://asanteinternational.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:80;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://theatre55.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:81;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://carolynscreativeclassroom.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:82;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://www.miiriya.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:83;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://trendyds.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:84;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wooedbythefood.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:85;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://papasteamstores.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:86;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://omdurags.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:87;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://happydogbarkery.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:88;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://kitbose.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:89;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://seamossdeals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:90;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://zeatala.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:91;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://shop.atwaterffa.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:92;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://www.brettsfirstresponders.org/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:93;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://shirtactive.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:94;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://boerneparade.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:95;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://zorahshrine.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:96;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://davidcervenka.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:97;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://addisjourney.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:98;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://305ycle.cc\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:99;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"http://yourworstnightmarehaunt.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:100;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://westcoastpreps.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:101;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://checkout.sohaking.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:102;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://www.theunshakeablepundit.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:103;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://www.stellaandchewys.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:104;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://www.raywhitcomb.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:105;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:39:\"http://constellationtheatercompany.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:106;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://stacynguyen.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:107;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:46:\"https://fundrgear.com/lakecreekgirlsbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:108;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://winslowartcenter.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:109;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://flufftastik.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:110;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mygreenbeach.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:111;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://ebookvip.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:112;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://fundrgear.com/needvillevolleyball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:113;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://bifocalmedia.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:114;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://clrc.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:115;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://hyperpins.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:116;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"https://fundrgear.com/lakecreekboysbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:117;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://fundrgear.com/kparktennis\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:118;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://mogadorspices.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:119;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://fundrgear.com/newcaneytrack\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:120;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://sigmascents.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:121;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://bsharisemoore.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:122;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://morrflate.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:123;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://westbrosinc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:124;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://shop.danceplexaz.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:125;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://chikepod.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:126;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.advanahealth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:127;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://tatter.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:128;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://greatawakeningbrewing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:129;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://waterfowlfestival.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:130;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://preppedwellness.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:131;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://events.thus.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:132;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://stormtide.thefifthtrooper.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:133;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://www.tabsynth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:134;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"http://staging.fliptheswitchon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:135;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://duffysdough.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:136;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://fitfoodieliving.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:137;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://breakerbrotherstcg.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:138;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://andymation.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:139;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://recklessmetals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:140;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://sophielark.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:141;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://wp.arabtherapy.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:142;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://creativeappliques.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:143;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://altitude.win\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:42:\"woocommerce-wcpay-march-2023-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:42:\"woocommerce-wcpay-march-2023-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:57:\"Action required: Security update for WooCommerce Payments\";s:7:\"content\";s:296:\"<strong>Your store requires a security update for WooCommerce Payments</strong>. Please update to the latest version of WooCommerce Payments immediately to address a potential vulnerability discovered on March 22. For more information on how to update, visit this WooCommerce Developer Blog Post.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:49:\"woocommerce-wcpay-march-2023-update-needed-button\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:13:\"See Blog Post\";}}s:3:\"url\";s:122:\"https://developer.woocommerce.com/2023/03/23/critical-vulnerability-detected-in-woocommerce-payments-what-you-need-to-know\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:57:\"woocommerce-wcpay-march-2023-update-needed-dismiss-button\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:11:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-03-22 20:25:44\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.2\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.1\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.4\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.3\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.5.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"4.8.0\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"<=\";s:7:\"version\";s:5:\"5.6.1\";}}}s:34:\"tap_to_pay_iphone_q2_2023_no_wcpay\";O:8:\"stdClass\":8:{s:4:\"slug\";s:34:\"tap_to_pay_iphone_q2_2023_no_wcpay\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:52:\"Accept in-person contactless payments on your iPhone\";s:7:\"content\";s:230:\"Tap to Pay on iPhone and WooCommerce Payments is quick, secure, and simple to set up — no extra terminals or card readers are needed. Accept contactless debit and credit cards, Apple Pay, and other NFC digital wallets in person.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"tap_to_pay_iphone_q2_2023_no_wcpay\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:20:\"Simplify my payments\";}}s:3:\"url\";s:143:\"https://woocommerce.com/products/woocommerce-payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=tap_to_pay_iphone_q2_2023_no_wcpay\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-04-03 23:59:47\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}}}s:48:\"woocommerce-WCPreOrders-april-2023-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:48:\"woocommerce-WCPreOrders-april-2023-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:68:\"Action required: Security update of WooCommerce Pre-Orders extension\";s:7:\"content\";s:220:\"<strong>Your store requires a security update for the WooCommerce Pre-Orders extension</strong>. Please update the WooCommerce Pre-Orders extension immediately to address a potential vulnerability discovered on April 11.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:18:\"extension-settings\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:15:\"update-core.php\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-04-12 22:16:37\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:22:\"woocommerce-pre-orders\";s:8:\"operator\";s:2:\"<=\";s:7:\"version\";s:5:\"2.0.0\";}}}s:46:\"woopay-beta-merchantrecruitment-update-04MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woopay-beta-merchantrecruitment-update-04MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:321:\"WooPay, a new express checkout feature built into WooCommerce Payments, is <b>now available</b> — and you’re invited to try it. \r\n<br /><br />\r\n<b>Boost conversions</b> by offering your customers a simple, secure way to pay with a <b>single click</b>.\r\n<br /><br />\r\n<b>Update WooCommerce Payments</b> to get started.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:52:\"woopay-beta-merchantrecruitment-update-WCPay-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:27:\"Update WooCommerce Payments\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:55:\"woopay-beta-merchantrecruitment-update-activate-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-04 18:00:06\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:144:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"http://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.handinhandparenting.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://pritikinfoods.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://utahrecsports.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.hunterpta.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://www.smokinbeans.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://shulabeauty.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://bingeworthytvmerch.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://s91.4d8.myftpupload.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://stephanienicolenorris.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://aliensshirt.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://libertyordeathapparelllc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://cowboystatedaily.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:42:\"https://fundrgear.com/beckendorffathletics\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:50:\"http://wordpress-528155-2231771.cloudwaysapps.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://checkout.sohaprice.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://amadozstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://eliwehbe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://lunabra.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://nptixx.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://louisianapantry.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://aplusanatomy.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://wildsvg.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://bleachfilm.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://benabeautyspa.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:47:\"http://barrettfitnessenterprises.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://goabroadable.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://alexoathletica.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.fourpurls.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.hagmannreport.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://busybeeorganics.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://nallsproduce.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://bigtimebats.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://shop.cookingwithkarli.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.queenofpeacemedia.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://bigjohnsbeefjerky.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://paperbyjaney.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://carolinarisemembers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://veroticaevents.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://spira.farm\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:40;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://endlessassist.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:41;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://betterlifeblog.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:42;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://ashleighrenard.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:43;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.turkeymerck.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:44;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://carfiershop.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:45;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://normanmusicfestival.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:46;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"http://www.olfactoryfactoryllc.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:47;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://fundrgear.com/anthonyathletics\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:48;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"http://tkechilifestdotcom.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:49;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:15:\"No results foun\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:50;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://pvsa.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:51;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://becbatop.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:52;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wwmeconvention.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:53;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://lswmp.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:54;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://bubbaskincare.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:55;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://fusango.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:56;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://vcdpostershow.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:57;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://www.rileysribz.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:58;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.fakeultrasound.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:59;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://onelongfellowsquare.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:60;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://agodpod.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:61;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/littleladybulldogs\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:62;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://thecirclelarp.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:63;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://byletam.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:64;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.nachonite.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:65;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://designerdab.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:66;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"http://box2151.temp.domains/~lovebyt2/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:67;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://shortporchbaseballcompany.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:68;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://distancecme.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:69;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://middleswarthchips.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:70;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://railblazausa.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:71;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://mikescountrymeats.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:72;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://www.woodenshoe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:73;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://rockspringscafe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:74;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"http://footballfangears.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:75;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://ybtoner.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:76;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://simplyclayyy.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:77;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://naturecreation.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:78;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://marisrodriguez.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:79;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://asanteinternational.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:80;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://theatre55.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:81;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://carolynscreativeclassroom.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:82;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://www.miiriya.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:83;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://trendyds.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:84;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wooedbythefood.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:85;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://papasteamstores.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:86;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://omdurags.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:87;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://happydogbarkery.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:88;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://kitbose.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:89;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://seamossdeals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:90;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://zeatala.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:91;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://shop.atwaterffa.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:92;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://www.brettsfirstresponders.org/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:93;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://shirtactive.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:94;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://boerneparade.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:95;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://zorahshrine.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:96;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://davidcervenka.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:97;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://addisjourney.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:98;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://305ycle.cc\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:99;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"http://yourworstnightmarehaunt.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:100;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://westcoastpreps.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:101;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://checkout.sohaking.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:102;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://www.theunshakeablepundit.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:103;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://www.stellaandchewys.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:104;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://www.raywhitcomb.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:105;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:39:\"http://constellationtheatercompany.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:106;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://stacynguyen.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:107;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:46:\"https://fundrgear.com/lakecreekgirlsbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:108;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://winslowartcenter.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:109;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://flufftastik.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:110;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mygreenbeach.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:111;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://ebookvip.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:112;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://fundrgear.com/needvillevolleyball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:113;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://bifocalmedia.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:114;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://clrc.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:115;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://hyperpins.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:116;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"https://fundrgear.com/lakecreekboysbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:117;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://fundrgear.com/kparktennis\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:118;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://mogadorspices.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:119;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://fundrgear.com/newcaneytrack\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:120;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://sigmascents.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:121;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://bsharisemoore.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:122;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://morrflate.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:123;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://westbrosinc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:124;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://shop.danceplexaz.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:125;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://chikepod.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:126;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.advanahealth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:127;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://tatter.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:128;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://greatawakeningbrewing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:129;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://waterfowlfestival.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:130;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://preppedwellness.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:131;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://events.thus.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:132;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://stormtide.thefifthtrooper.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:133;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://www.tabsynth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:134;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"http://staging.fliptheswitchon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:135;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://duffysdough.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:136;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://fitfoodieliving.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:137;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://breakerbrotherstcg.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:138;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://andymation.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:139;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://recklessmetals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:140;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://sophielark.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:141;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://wp.arabtherapy.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:142;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://creativeappliques.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:143;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://altitude.win\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:46:\"woopay-beta-existingmerchants-noaction-27APR23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woopay-beta-existingmerchants-noaction-27APR23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:15:\"WooPay is back!\";s:7:\"content\";s:361:\"Thanks for previously trying WooPay, the<b> express checkout feature</b> built into WooCommerce Payments. We’re excited to announce that <b>WooPay availability has resumed</b>. No action is required on your part.\r\n<br /><br />\r\nYou can now <b>continue boosting conversions</b> by offering your customers a simple, secure way to pay with a <b>single click</b>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-existingmerchants-noaction-documentation-27APR23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:13:\"Documentation\";}}s:3:\"url\";s:178:\"https://woocommerce.com/document/woopay-merchant-documentation/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-existingmerchants-noaction-documentation-27APR23\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-04-26 19:00:23\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.0\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:38:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://store.startingstrongman.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://joacreativelab.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.pureskincaresalon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://mariablaquier.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://getprodigital.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://dalefrickeholsters.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://sstour.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://tk-txstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://humanspiritproject.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://viradadrums.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://rosariumblends.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://organicskincare.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://stuckpigmedical.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.seattlegiftbasket.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://www.cloverandviolet.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://gvscholarship.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://yesimadiva.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://www.old.jmtrashbgone.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://victorialansford.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://craftcosplay.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://thefossilexchange.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://nextgenspeed.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://cappellarecords.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://ontimesupermarket.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://new2knox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://lovestudiollc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://thehivelivebox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://socceruniformkits.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://willowcreativ.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://summitprep.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://howda.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://soapavenuecompany.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://subsbox.mystagingwebsite.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wifflebreakers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.mps-outfitters.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://howardharrisassociates.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://bettersaferadio.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://bunnyluna.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:44:\"woopay-beta-existingmerchants-update-27APR23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:44:\"woopay-beta-existingmerchants-update-27APR23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:15:\"WooPay is back!\";s:7:\"content\";s:368:\"Thanks for previously trying WooPay, the <b>express checkout feature</b> built into WooCommerce Payments. We’re excited to announce that <b>WooPay availability has resumed</b>.\r\n<br /><br />\r\n\r\nUpdate to the latest WooCommerce Payments version to <b>continue boosting conversions</b> by offering your customers a simple, secure way to pay with a <b>single click</b>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:50:\"woopay-beta-existingmerchants-update-WCPay-27APR23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:27:\"Update WooCommerce Payments\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-04-26 19:00:08\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.8.0\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:38:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://store.startingstrongman.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://joacreativelab.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.pureskincaresalon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://mariablaquier.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://getprodigital.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://dalefrickeholsters.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://sstour.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://tk-txstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://humanspiritproject.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://viradadrums.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://rosariumblends.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://organicskincare.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://stuckpigmedical.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.seattlegiftbasket.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://www.cloverandviolet.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://gvscholarship.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://yesimadiva.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://www.old.jmtrashbgone.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://victorialansford.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://craftcosplay.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://thefossilexchange.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://nextgenspeed.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://cappellarecords.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://ontimesupermarket.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://new2knox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://lovestudiollc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://thehivelivebox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://socceruniformkits.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://willowcreativ.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://summitprep.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://howda.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://soapavenuecompany.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://subsbox.mystagingwebsite.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wifflebreakers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.mps-outfitters.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://howardharrisassociates.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://bettersaferadio.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://bunnyluna.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:45:\"woopay-beta-merchantrecruitment-short-04MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:45:\"woopay-beta-merchantrecruitment-short-04MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:54:\"woopay-beta-merchantrecruitment-short-activate-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:64:\"woopay-beta-merchantrecruitment-short-activate-learnmore-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:161:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-04MAY23\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-04 18:00:36\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:144:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://pieroatomic3.wpcomstaging.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.bluebeautifly.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"http://indianrivernatural.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://fouroaksproducts.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:14:\"https://acb.la\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://www.sweetpotatoplant.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"http://www.gocaseyourself.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://laugun.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://nebraskadaybyday.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://vintagemarche727.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://kohai.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://gracegaze.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://aliensmeaning.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://myheritagegardens.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://shopmoresport.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://oladino.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://frogjumpstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://cagedthundermma.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/mcelwainelementary\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://mgco.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://500gp.io/pay\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://waterglassslimes.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://antiqueful.shop/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://deeperkidmin.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"https://fundrgear.com/cyspringsboysbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://houseofminifigs.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"http://box2273.temp.domains/~dreambx2/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://madebymixture.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://reliabletrash.company\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://www.daddybutter.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://circleqessentials.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://garlicbraids.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://fbdonline.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://galaxysedge.us\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://duckduckbeetfarm.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://varsitygraphics.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://jademackenzie.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://kristysketolifestyle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://covid19criticalcare.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://parkviewprep.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:40;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://rock-fest.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:41;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"http://fillinxsolutions.com/etarix/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:42;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://doughremitx.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:43;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.montanafiddlecamp.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:44;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://fococomiccon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:45;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://patricendouglas.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:46;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://hectue.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:47;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://montanamaxbbq.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:48;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://smellzoom.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:49;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://uptowne.theoandson.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:50;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://superbasic.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:51;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://ppodstore.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:52;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://kerenzan.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:53;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://a13bargains.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:54;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://colorgr.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:55;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://mindbodysoulcandles.com/Charlotte\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:56;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://peaceloveandadhd.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:57;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://seymoursmash.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:58;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mwtournament.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:59;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:43:\"https://fundrgear.com/beckendorffgirlstrack\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:60;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:15:\"No results foun\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:61;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://allswellnyc.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:62;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://childoftheredwoodsmembers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:63;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://fundrgear.com/grandoaksvolleyball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:64;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.newhollandrochester.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:65;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.purplecatvet.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:66;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:39:\"https://www.mustangmountaincoaster.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:67;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://www.roccanj.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:68;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://www.teerico.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:69;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://passportunlimited.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:70;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.paladincards20.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:71;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://giantshorties.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:72;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://visualsports.biz\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:73;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://thefreakinricanrestaurant.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:74;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://arequestionscom.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:75;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://pt.tktxcompanystore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:76;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://fitfoodiechicks.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:77;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://nutoshop.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:78;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://backwoodzhiphop.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:79;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://gartapparel.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:80;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://bodega.badiaspices.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:81;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://rampartrange.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:82;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://teeuni.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:83;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://bearsinthealley.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:84;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://vitalbooks.net/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:85;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://hair-free-hair-remover.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:86;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://gangtaynails.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:87;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://crochetfoundry.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:88;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://westcoastbelts.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:89;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://payment.sundryfiles.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:90;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://ccadunkirk.mudhenmama.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:91;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://desertsupercup.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:92;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://shops-eminem.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:93;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://75yearsofracing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:94;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://tixpls.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:95;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:44:\"http://legacyoutfitters.org/banquet/raffles/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:96;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://91170e9fc9.nxcli.io/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:97;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://beachwayrentals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:98;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://thehivelivebox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:99;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://esd.camp\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:100;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mfkgamecalls.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:101;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://1greatce.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:102;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.luthyouth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:103;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://electionintegrityidaho.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:104;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://renbundle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:105;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://premierseamoss.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:106;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://teemart.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:107;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/beckendorffgirlsbb\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:108;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://visiblechild.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:109;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://ebookvital.me/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:110;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://renemarsh.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:111;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://www.eventricate.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:112;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://transgression.party\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:113;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://profadex.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:114;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://mxsbattlegrounds.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:115;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.poeinbaltimore.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:116;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://freefall.gg\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:117;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://underthechurchhatblog.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:118;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://naksparkle.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:119;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"http://bearlyburly.gay/inventory\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:120;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.premierboneandjoint.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:121;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://farm-2-bowl.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:122;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://hollandgrill.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:123;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://lividian.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:124;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.trainingrange.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:125;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://sarakepskitchen.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:126;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.phoenixyouththeatre.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:127;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://drivenarmsco.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:128;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://audiobro.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:129;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://www.iowaabortionaccessfund.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:130;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://findthemenu.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:131;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://moderndepot.co\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:132;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://granitesupplements.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:133;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://healthyrican.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:134;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://utest.edsandbox.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:135;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://c-pounds.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:136;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://littleschoolofsmiths.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:137;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://goblinstyle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:138;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://proper-testing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:139;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.cosafoundation.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:140;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://farmsteadboxes.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:141;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://fundraise4books.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:142;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://norskenook.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:143;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://cajulove.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:52:\"woopay-beta-merchantrecruitment-short-update-04MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:52:\"woopay-beta-merchantrecruitment-short-update-04MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:227:\"Be one of the first to try WooPay, our new express checkout feature. <br><b>Boost conversions</b> by letting customers pay with a <b>single click</b>. <br><br>Update to the latest version of WooCommerce Payments to get started.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:58:\"woopay-beta-merchantrecruitment-short-update-WCPay-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:27:\"Update WooCommerce Payments\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:61:\"woopay-beta-merchantrecruitment-short-update-activate-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-04 18:00:20\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:144:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"http://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.bluebeautifly.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"http://indianrivernatural.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://fouroaksproducts.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:14:\"https://acb.la\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://www.sweetpotatoplant.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"http://www.gocaseyourself.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://laugun.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://nebraskadaybyday.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://vintagemarche727.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://kohai.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://gracegaze.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://aliensmeaning.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://myheritagegardens.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://shopmoresport.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://oladino.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://frogjumpstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://cagedthundermma.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/mcelwainelementary\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://mgco.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://500gp.io/pay\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://waterglassslimes.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://antiqueful.shop/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://deeperkidmin.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"https://fundrgear.com/cyspringsboysbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://houseofminifigs.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"http://box2273.temp.domains/~dreambx2/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://madebymixture.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://reliabletrash.company\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://www.daddybutter.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://circleqessentials.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://garlicbraids.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://fbdonline.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://galaxysedge.us\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://duckduckbeetfarm.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://varsitygraphics.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://jademackenzie.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://kristysketolifestyle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://covid19criticalcare.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://parkviewprep.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:40;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://rock-fest.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:41;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"http://fillinxsolutions.com/etarix/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:42;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://doughremitx.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:43;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.montanafiddlecamp.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:44;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://fococomiccon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:45;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://patricendouglas.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:46;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://hectue.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:47;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://montanamaxbbq.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:48;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://smellzoom.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:49;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://uptowne.theoandson.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:50;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://superbasic.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:51;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://ppodstore.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:52;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://kerenzan.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:53;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://a13bargains.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:54;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://colorgr.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:55;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://mindbodysoulcandles.com/Charlotte\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:56;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://peaceloveandadhd.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:57;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://seymoursmash.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:58;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mwtournament.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:59;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:43:\"https://fundrgear.com/beckendorffgirlstrack\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:60;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:15:\"No results foun\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:61;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://allswellnyc.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:62;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://childoftheredwoodsmembers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:63;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://fundrgear.com/grandoaksvolleyball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:64;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.newhollandrochester.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:65;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.purplecatvet.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:66;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:39:\"https://www.mustangmountaincoaster.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:67;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://www.roccanj.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:68;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://www.teerico.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:69;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://passportunlimited.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:70;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.paladincards20.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:71;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://giantshorties.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:72;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://visualsports.biz\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:73;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://thefreakinricanrestaurant.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:74;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://arequestionscom.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:75;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://pt.tktxcompanystore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:76;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://fitfoodiechicks.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:77;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://nutoshop.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:78;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://backwoodzhiphop.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:79;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://gartapparel.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:80;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://bodega.badiaspices.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:81;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://rampartrange.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:82;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://teeuni.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:83;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://bearsinthealley.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:84;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://vitalbooks.net/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:85;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://hair-free-hair-remover.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:86;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://gangtaynails.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:87;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://crochetfoundry.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:88;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://westcoastbelts.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:89;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://payment.sundryfiles.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:90;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://ccadunkirk.mudhenmama.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:91;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://desertsupercup.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:92;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://shops-eminem.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:93;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://75yearsofracing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:94;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://tixpls.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:95;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:44:\"http://legacyoutfitters.org/banquet/raffles/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:96;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://91170e9fc9.nxcli.io/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:97;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://beachwayrentals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:98;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://thehivelivebox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:99;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://esd.camp\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:100;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mfkgamecalls.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:101;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://1greatce.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:102;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.luthyouth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:103;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://electionintegrityidaho.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:104;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://renbundle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:105;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://premierseamoss.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:106;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://teemart.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:107;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/beckendorffgirlsbb\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:108;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://visiblechild.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:109;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://ebookvital.me/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:110;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://renemarsh.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:111;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://www.eventricate.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:112;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://transgression.party\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:113;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://profadex.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:114;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://mxsbattlegrounds.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:115;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.poeinbaltimore.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:116;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://freefall.gg\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:117;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://underthechurchhatblog.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:118;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://naksparkle.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:119;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"http://bearlyburly.gay/inventory\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:120;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.premierboneandjoint.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:121;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://farm-2-bowl.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:122;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://hollandgrill.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:123;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://lividian.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:124;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.trainingrange.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:125;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://sarakepskitchen.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:126;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.phoenixyouththeatre.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:127;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://drivenarmsco.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:128;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://audiobro.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:129;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://www.iowaabortionaccessfund.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:130;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://findthemenu.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:131;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://moderndepot.co\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:132;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://granitesupplements.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:133;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://healthyrican.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:134;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://utest.edsandbox.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:135;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://c-pounds.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:136;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://littleschoolofsmiths.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:137;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://goblinstyle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:138;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://proper-testing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:139;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.cosafoundation.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:140;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://farmsteadboxes.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:141;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://fundraise4books.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:142;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://norskenook.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:143;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://cajulove.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTA\";O:8:\"stdClass\":8:{s:4:\"slug\";s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTA\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTA\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:22:\"Activate WooPay Test A\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:70:\"woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:167:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-05 00:01:32\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTB\";O:8:\"stdClass\":8:{s:4:\"slug\";s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTB\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTB\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:22:\"Activate WooPay Test B\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:70:\"woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:167:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-05 20:58:43\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"http://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTC\";O:8:\"stdClass\":8:{s:4:\"slug\";s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTC\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTC\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:22:\"Activate WooPay Test C\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:70:\"woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTC\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:167:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTC\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-05 21:03:33\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://pieroatomic3.wpcomstaging.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTD\";O:8:\"stdClass\":8:{s:4:\"slug\";s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTD\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTD\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:22:\"Activate WooPay Test D\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:70:\"woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTD\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:167:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTD\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-05 21:32:09\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://pieroatomic3.wpcomstaging.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}s:45:\"woopay-beta-merchantrecruitment-short-09MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:45:\"woopay-beta-merchantrecruitment-short-09MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:61:\"woopay-beta-merchantrecruitment-short-activate-button-09MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:72:\"woopay-beta-merchantrecruitment-short-activate-learnmore-button2-09MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:169:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-button2-09MAY23\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-08 19:18:44\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:17:\"platform_checkout\";}}}s:11:\"option_name\";s:41:\"woocommerce_woocommerce_payments_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"no\";s:7:\"default\";b:0;}i:3;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:31:\"data.platform_checkout_eligible\";}}}s:11:\"option_name\";s:18:\"wcpay_account_data\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;s:7:\"default\";b:0;}}}s:52:\"woopay-beta-merchantrecruitment-short-update-09MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:52:\"woopay-beta-merchantrecruitment-short-update-09MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:227:\"Be one of the first to try WooPay, our new express checkout feature. <br><b>Boost conversions</b> by letting customers pay with a <b>single click</b>. <br><br>Update to the latest version of WooCommerce Payments to get started.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:58:\"woopay-beta-merchantrecruitment-short-update-WCPay-09MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:27:\"Update WooCommerce Payments\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:61:\"woopay-beta-merchantrecruitment-short-update-activate-09MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-08 19:45:57\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:17:\"platform_checkout\";}}}s:11:\"option_name\";s:41:\"woocommerce_woocommerce_payments_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"no\";s:7:\"default\";b:0;}i:3;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:31:\"data.platform_checkout_eligible\";}}}s:11:\"option_name\";s:18:\"wcpay_account_data\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;s:7:\"default\";b:0;}}}s:52:\"woocommerce-WCSubscriptions-June-2023-updated-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:52:\"woocommerce-WCSubscriptions-June-2023-updated-needed\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Action required: Security update of WooCommerce Subscriptions\";s:7:\"content\";s:197:\"<strong>Your store requires a security update for the WooCommerce Subscriptions plugin</strong>. Please update the WooCommerce Subscriptions plugin immediately to address a potential vulnerability.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:68:\"woocommerce-WCSubscriptions-June-2023-updated-needed-Plugin-Settings\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woocommerce-WCSubscriptions-June-2023-updated-needed-dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-06-06 08:00:08\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:25:\"woocommerce-subscriptions\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"2.1.0\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:25:\"woocommerce-subscriptions\";s:8:\"operator\";s:2:\"<=\";s:7:\"version\";s:5:\"5.1.2\";}}}s:54:\"woocommerce-WCReturnsWarranty-June-2023-updated-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:54:\"woocommerce-WCReturnsWarranty-June-2023-updated-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:87:\"Action required: Security update of WooCommerce Returns and Warranty Requests extension\";s:7:\"content\";s:270:\"<strong>Your store requires a security update for the Returns and Warranty Requests extension</strong>.  Please update to the latest version of the WooCommerce Returns and Warranty Requests extension immediately to address a potential vulnerability discovered on May 31.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:54:\"woocommerce-WCReturnsWarranty-June-2023-updated-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:54:\"woocommerce-WCReturnsWarranty-June-2023-updated-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-06-02 23:53:57\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-warranty\";s:8:\"operator\";s:2:\"<=\";s:7:\"version\";s:5:\"2.1.8\";}}}s:42:\"woocommerce-WCOPC-June-2023-updated-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:42:\"woocommerce-WCOPC-June-2023-updated-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:65:\"Action required: Security update of WooCommerce One Page Checkout\";s:7:\"content\";s:232:\"<strong>Your shop requires a security update to address a vulnerability in the WooCommerce One Page Checkout extension</strong>. The fix for this vulnerability was released for this extension on June 13th. Please update immediately.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:42:\"woocommerce-WCOPC-June-2023-updated-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:42:\"woocommerce-WCOPC-June-2023-updated-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-06-21 14:05:46\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:29:\"woocommerce-one-page-checkout\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"2.4.0\";}}}s:40:\"woocommerce-WCGC-July-2023-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:40:\"woocommerce-WCGC-July-2023-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:68:\"Action required: Security update of WooCommerce GoCardless Extension\";s:7:\"content\";s:205:\"<strong>Your shop requires a security update to address a vulnerability in the WooCommerce GoCardless extension</strong>. The fix for this vulnerability was released on July 4th. Please update immediately.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:40:\"woocommerce-WCGC-July-2023-update-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:40:\"woocommerce-WCGC-July-2023-update-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-07-04 15:36:07\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:30:\"woocommerce-gateway-gocardless\";s:8:\"operator\";s:2:\"<=\";s:7:\"version\";s:5:\"2.5.6\";}}}s:48:\"woocommerce-shipping-fedex-api-outage-2023-07-16\";O:8:\"stdClass\":8:{s:4:\"slug\";s:48:\"woocommerce-shipping-fedex-api-outage-2023-07-16\";s:4:\"type\";s:7:\"warning\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:40:\"Scheduled FedEx API outage — July 2023\";s:7:\"content\";s:277:\"On July 16 there will be a full outage of the FedEx API from 04:00 to 08:00 AM UTC. Due to planned maintenance by FedEx, you\'ll be unable to provide FedEx shipping rates during this time. Follow the link below for more information and recommendations on how to minimize impact.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:125:\"https://woocommerce.com/document/fedex/?utm_medium=product&utm_source=inbox_note&utm_campaign=learn-more#july-2023-api-outage\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-07-05 18:19:17\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-shipping-fedex\";}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2023-07-17 00:00:00\";}}}s:35:\"wcship-2023-07-hazmat-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:35:\"wcship-2023-07-hazmat-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:87:\"Action required: USPS HAZMAT compliance update for WooCommerce Shipping & Tax extension\";s:7:\"content\";s:251:\"<strong>Your store requires an update for the WooCommerce Shipping extension</strong>. Please update to the latest version of the WooCommerce Shipping &amp; Tax extension immediately to ensure compliance with new USPS HAZMAT rules currently in effect.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"plugin-list\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:23:\"admin.php?page=wc-admin\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-07-11 20:26:59\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-services\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"2.3.0\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}}}s:43:\"woocommerce-WCStripe-Aug-2023-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:43:\"woocommerce-WCStripe-Aug-2023-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:62:\"Action required: Security update for WooCommerce Stripe plugin\";s:7:\"content\";s:183:\"<strong>Your shop requires an important security update for the  WooCommerce Stripe plugin</strong>. The fix for this vulnerability was released on July 31. Please update immediately.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:43:\"woocommerce-WCStripe-Aug-2023-update-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:16:\"update-core.php?\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-08-03 05:00:06\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.6\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"7.4.2\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:11:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.3.2\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.4.5\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.5.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.6.2\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.7.2\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.8.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.9.2\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.0.4\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.1.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.2.2\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.3.2\";}}}}}}}s:46:\"woocommerce-WCStripe-Aug-2023-security-updated\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woocommerce-WCStripe-Aug-2023-security-updated\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:44:\"Security update of WooCommerce Stripe plugin\";s:7:\"content\";s:144:\"<strong>Your store has been updated to the latest secure version of the WooCommerce Stripe plugin</strong>. This update was released on July 31.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-08-03 05:00:07\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:11:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.3.2\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.4.5\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.5.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.6.2\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.7.2\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.8.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.9.2\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.0.4\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.1.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.2.2\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.3.2\";}}}}}s:49:\"woocommerce-WooPayments-Aug-2023-security-updated\";O:8:\"stdClass\":8:{s:4:\"slug\";s:49:\"woocommerce-WooPayments-Aug-2023-security-updated\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:60:\"Security update of WooPayments (WooCommerce Payments) plugin\";s:7:\"content\";s:147:\"<strong>Your store has been updated to the more secure version of WooPayments (WooCommerce Payments)</strong>. This update was released on July 31.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-08-03 05:00:13\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:17:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.3\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.2\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.4\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.4\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.3\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.6\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.5\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.4\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.3\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.3\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.5.4\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.6.4\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.7.2\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.8.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.9.2\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.0.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.1.2\";}}}}}s:24:\"avalara_q3-2023_noAvaTax\";O:8:\"stdClass\":8:{s:4:\"slug\";s:24:\"avalara_q3-2023_noAvaTax\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:40:\"Automatically calculate VAT in real time\";s:7:\"content\";s:284:\"Take the effort out of determining tax rates and sell confidently across borders with automated tax management from Avalara AvaTax— including built-in VAT calculation when you sell into or across the EU and UK. Save time and stay compliant when you let Avalara do the heavy lifting.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:24:\"avalara_q3-2023_noAvaTax\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"Automate my sales tax\";}}s:3:\"url\";s:131:\"https://woocommerce.com/products/woocommerce-avatax/?utm_source=inbox_note&utm_medium=product&utm_campaign=avalara_q3-2023_noAvaTax\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-08-08 22:32:23\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2023-08-09 23:59:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:18:\"woocommerce-avatax\";}}}}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:30;}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:20:\"total_payments_value\";s:9:\"timeframe\";s:9:\"last_year\";s:5:\"value\";i:100;s:9:\"operation\";s:1:\">\";}}}s:44:\"woocommerce-usermeta-Sept2023-productvendors\";O:8:\"stdClass\":8:{s:4:\"slug\";s:44:\"woocommerce-usermeta-Sept2023-productvendors\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:37:\"Your store requires a security update\";s:7:\"content\";s:339:\"<strong>Your shop needs an update to address a vulnerability in WooCommerce.</strong> The fix was released on Sept 15. Please update WooCommerce to the latest version immediately. <a href=\"https://developer.woocommerce.com/2023/09/16/woocommerce-vulnerability-reintroduced-from-7-0-1/\" />Read our developer update</a> for more information.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:44:\"woocommerce-usermeta-Sept2023-productvendors\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:11:\"plugins.php\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-09-20 00:50:07\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-product-vendors\";}}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"8.1.1\";}}}s:41:\"woocommerce-STRIPE-Oct-2023-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:41:\"woocommerce-STRIPE-Oct-2023-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:63:\"Action required: Security update for WooCommerce Stripe Gateway\";s:7:\"content\";s:201:\"<strong>Your shop requires a security update to address a vulnerability in the WooCommerce Stripe Gateway</strong>. The fix for this vulnerability was released on October 17. Please update immediately.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:41:\"woocommerce-STRIPE-Oct-2023-update-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:15:\"update-core.php\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:36:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-10-18 00:01:58\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"4.5.4\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.6\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.1\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.1\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.1\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.4\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.1\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.2\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.5.2\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.6.4\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.7.2\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.8.3\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.9.2\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.0.2\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.1.2\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.2.2\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.3.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.4.6\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.5.4\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.6.3\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.5.4\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.6.3\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.7.3\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.8.3\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.9.3\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"7.0.5\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"7.1.3\";}i:31;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"7.2.3\";}i:32;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"7.3.3\";}i:33;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"7.4.3\";}i:34;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"7.5.1\";}i:35;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"7.6.1\";}}}s:29:\"amazon-mcf-reviews-2023-12-07\";O:8:\"stdClass\":8:{s:4:\"slug\";s:29:\"amazon-mcf-reviews-2023-12-07\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:36:\"Enjoying Amazon MCF for WooCommerce?\";s:7:\"content\";s:292:\"We\'re Never Settle, the developers behind Amazon MCF for WooCommerce, and would be deeply honored to have your review. Reviews help immensely as other users can learn how MCF can solve their needs too! Not happy or need help? Please reach out for support and we’d love to make things right!\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:35:\"amazon-mcf-review-button-2023-12-07\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Leave a review\";}}s:3:\"url\";s:161:\"https://woocommerce.com/products/woocommerce-amazon-fulfillment/?review&utm_source=inbox_note&utm_medium=product&utm_campaign=amazon-mcf-review-button-2023-12-07\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:36:\"amazon-mcf-support-button-2023-12-07\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Request support\";}}s:3:\"url\";s:142:\"https://woocommerce.com/my-account/contact-support/?utm_source=inbox_note&utm_medium=product&utm_campaign=amazon-mcf-support-button-2023-12-07\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-12-06 15:21:27\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:30:\"woocommerce-amazon-fulfillment\";}}}}s:30:\"remove_estimated_deposits_2024\";O:8:\"stdClass\":8:{s:4:\"slug\";s:30:\"remove_estimated_deposits_2024\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:33:\"Estimated deposits are going away\";s:7:\"content\";s:267:\"To provide more accurate deposit information and support the expansion of instant deposits, estimated deposit details will no longer be available in WooPayments. We recommend upgrading to the latest version of WooPayments for more detailed balance status information.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:9:\"view_docs\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:29:\"Learn about Deposit schedules\";}}s:3:\"url\";s:151:\"https://woocommerce.com/document/woopayments/deposits/deposit-schedule/?utm_source=inbox_note&utm_medium=product&utm_campaign=view_docs#available-funds\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:3:\"6.9\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2024-01-21 08:00:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2024-01-31 23:59:59\";}}}s:29:\"stripe_securityupdate_q3_2024\";O:8:\"stdClass\":8:{s:4:\"slug\";s:29:\"stripe_securityupdate_q3_2024\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:50:\"Security update required for your Stripe extension\";s:7:\"content\";s:273:\"To continue securely accepting payments, you must update your Stripe extension to at least version 8.6, re-authenticate, and turn on the new checkout experience. Review the documentation for instructions on how to make the necessary changes from your WooCommerce dashboard.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:35:\"stripe_securityupdate_q4_2024_click\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:17:\"Review and update\";}}s:3:\"url\";s:195:\"https://woocommerce.com/document/stripe/admin-experience/updated-requirements-for-stripe-plugin-mid-2024/?utm_source=inbox_note&utm_medium=product&utm_campaign=stripe_securityupdate_q4_2024_click\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:7:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2024-09-18 16:07:40\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2024-10-29 23:59:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-gateway-stripe\";}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}}}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:11:\"order_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:3;}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:20:\"total_payments_value\";s:9:\"timeframe\";s:9:\"last_year\";s:5:\"value\";i:10;s:9:\"operation\";s:1:\">\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:3:\"8.6\";}}}}}','off'),(483,'jetpack_options','a:1:{s:14:\"last_heartbeat\";i:1746450183;}','auto'),(497,'envato_market_state','activated','auto'),(513,'_transient_woocommerce_reports-transient-version','1730195483','on'),(520,'woocommerce_task_list_tracked_completed_tasks','a:6:{i:0;s:17:\"launch-your-store\";i:1;s:15:\"customize-store\";i:2;s:8:\"products\";i:3;s:8:\"shipping\";i:4;s:8:\"payments\";i:5;s:3:\"tax\";}','auto'),(638,'_transient_shipping-transient-version','1730370942','on'),(772,'_transient_product_query-transient-version','1746187686','on'),(773,'wp_calendar_block_has_published_posts','1','auto'),(774,'category_children','a:0:{}','auto'),(775,'masonry-gallery-category_children','a:0:{}','auto'),(776,'testimonials-category_children','a:0:{}','auto'),(778,'instructor-category_children','a:0:{}','auto'),(779,'product_cat_children','a:1:{i:194;a:8:{i:0;i:199;i:1;i:200;i:2;i:202;i:3;i:204;i:4;i:207;i:5;i:208;i:6;i:211;i:7;i:212;}}','auto'),(780,'tribe_events_cat_children','a:0:{}','auto'),(781,'_transient_product-transient-version','1746187686','on'),(785,'mkdf_sidebars','a:12:{i:0;s:14:\"Sidebar Course\";i:1;s:16:\"Elements Sidebar\";i:2;s:17:\"Course Menu Col 2\";i:3;s:17:\"Course Menu Col 3\";i:4;s:17:\"Course Menu Col 4\";i:5;s:20:\"Custom Widget Home 2\";i:6;s:11:\"FAQ Sidebar\";i:7;s:19:\"Course List Sidebar\";i:8;s:12:\"Shop Sidebar\";i:9;s:20:\" Footer Col 1 Custom\";i:10;s:14:\"Landing Header\";i:11;s:7:\"Home 10\";}','auto'),(786,'widget_tribe-events-list-widget','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(787,'rs_image_meta_todo','a:0:{}','auto'),(851,'https_detection_errors','a:2:{s:23:\"ssl_verification_failed\";a:1:{i:0;s:36:\"Xác thực SSL không thành công.\";}s:17:\"bad_response_code\";a:1:{i:0;s:9:\"Forbidden\";}}','auto'),(854,'_transient_health-check-site-status-result','{\"good\":12,\"recommended\":9,\"critical\":2}','on'),(952,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','auto'),(1400,'new_admin_email','ductai2982@gmail.com','auto'),(1438,'recovery_mode_email_last_sent','1731059647','auto'),(1440,'rewrite_rules','a:705:{s:28:\"tribe/events/kitchen-sink/?$\";s:69:\"index.php?post_type=tribe_events&tribe_events_views_kitchen_sink=page\";s:93:\"tribe/events/kitchen-sink/(page|grid|typographical|elements|events-bar|navigation|manager)/?$\";s:76:\"index.php?post_type=tribe_events&tribe_events_views_kitchen_sink=$matches[1]\";s:28:\"event-aggregator/(insert)/?$\";s:53:\"index.php?tribe-aggregator=1&tribe-action=$matches[1]\";s:25:\"(?:event)/([^/]+)/ical/?$\";s:56:\"index.php?ical=1&name=$matches[1]&post_type=tribe_events\";s:28:\"(?:events)/(?:page)/(\\d+)/?$\";s:71:\"index.php?post_type=tribe_events&eventDisplay=default&paged=$matches[1]\";s:41:\"(?:events)/(?:featured)/(?:page)/(\\d+)/?$\";s:79:\"index.php?post_type=tribe_events&featured=1&eventDisplay=list&paged=$matches[1]\";s:38:\"(?:events)/(feed|rdf|rss|rss2|atom)/?$\";s:67:\"index.php?post_type=tribe_events&eventDisplay=list&feed=$matches[1]\";s:51:\"(?:events)/(?:featured)/(feed|rdf|rss|rss2|atom)/?$\";s:78:\"index.php?post_type=tribe_events&featured=1&eventDisplay=list&feed=$matches[1]\";s:23:\"(?:events)/(?:month)/?$\";s:51:\"index.php?post_type=tribe_events&eventDisplay=month\";s:36:\"(?:events)/(?:month)/(?:featured)/?$\";s:62:\"index.php?post_type=tribe_events&eventDisplay=month&featured=1\";s:37:\"(?:events)/(?:month)/(\\d{4}-\\d{2})/?$\";s:73:\"index.php?post_type=tribe_events&eventDisplay=month&eventDate=$matches[1]\";s:37:\"(?:events)/(?:list)/(?:page)/(\\d+)/?$\";s:68:\"index.php?post_type=tribe_events&eventDisplay=list&paged=$matches[1]\";s:50:\"(?:events)/(?:list)/(?:featured)/(?:page)/(\\d+)/?$\";s:79:\"index.php?post_type=tribe_events&eventDisplay=list&featured=1&paged=$matches[1]\";s:22:\"(?:events)/(?:list)/?$\";s:50:\"index.php?post_type=tribe_events&eventDisplay=list\";s:35:\"(?:events)/(?:list)/(?:featured)/?$\";s:61:\"index.php?post_type=tribe_events&eventDisplay=list&featured=1\";s:23:\"(?:events)/(?:today)/?$\";s:49:\"index.php?post_type=tribe_events&eventDisplay=day\";s:36:\"(?:events)/(?:today)/(?:featured)/?$\";s:60:\"index.php?post_type=tribe_events&eventDisplay=day&featured=1\";s:27:\"(?:events)/(\\d{4}-\\d{2})/?$\";s:73:\"index.php?post_type=tribe_events&eventDisplay=month&eventDate=$matches[1]\";s:40:\"(?:events)/(\\d{4}-\\d{2})/(?:featured)/?$\";s:84:\"index.php?post_type=tribe_events&eventDisplay=month&eventDate=$matches[1]&featured=1\";s:33:\"(?:events)/(\\d{4}-\\d{2}-\\d{2})/?$\";s:71:\"index.php?post_type=tribe_events&eventDisplay=day&eventDate=$matches[1]\";s:46:\"(?:events)/(\\d{4}-\\d{2}-\\d{2})/(?:featured)/?$\";s:82:\"index.php?post_type=tribe_events&eventDisplay=day&eventDate=$matches[1]&featured=1\";s:26:\"(?:events)/(?:featured)/?$\";s:43:\"index.php?post_type=tribe_events&featured=1\";s:13:\"(?:events)/?$\";s:53:\"index.php?post_type=tribe_events&eventDisplay=default\";s:18:\"(?:events)/ical/?$\";s:39:\"index.php?post_type=tribe_events&ical=1\";s:31:\"(?:events)/(?:featured)/ical/?$\";s:50:\"index.php?post_type=tribe_events&ical=1&featured=1\";s:38:\"(?:events)/(\\d{4}-\\d{2}-\\d{2})/ical/?$\";s:78:\"index.php?post_type=tribe_events&ical=1&eventDisplay=day&eventDate=$matches[1]\";s:51:\"(?:events)/(\\d{4}-\\d{2}-\\d{2})/ical/(?:featured)/?$\";s:89:\"index.php?post_type=tribe_events&ical=1&eventDisplay=day&eventDate=$matches[1]&featured=1\";s:60:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:page)/(\\d+)/?$\";s:97:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=list&paged=$matches[2]\";s:73:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:featured)/(?:page)/(\\d+)/?$\";s:108:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&featured=1&eventDisplay=list&paged=$matches[2]\";s:55:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:month)/?$\";s:80:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=month\";s:68:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:month)/(?:featured)/?$\";s:91:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=month&featured=1\";s:69:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:list)/(?:page)/(\\d+)/?$\";s:97:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=list&paged=$matches[2]\";s:82:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:list)/(?:featured)/(?:page)/(\\d+)/?$\";s:108:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=list&featured=1&paged=$matches[2]\";s:54:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:list)/?$\";s:79:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=list\";s:67:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:list)/(?:featured)/?$\";s:90:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=list&featured=1\";s:55:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:today)/?$\";s:78:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=day\";s:68:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:today)/(?:featured)/?$\";s:89:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=day&featured=1\";s:73:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:day)/(\\d{4}-\\d{2}-\\d{2})/?$\";s:100:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=day&eventDate=$matches[2]\";s:86:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:day)/(\\d{4}-\\d{2}-\\d{2})/(?:featured)/?$\";s:111:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=day&eventDate=$matches[2]&featured=1\";s:59:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(\\d{4}-\\d{2})/?$\";s:102:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=month&eventDate=$matches[2]\";s:72:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(\\d{4}-\\d{2})/(?:featured)/?$\";s:113:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=month&eventDate=$matches[2]&featured=1\";s:65:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(\\d{4}-\\d{2}-\\d{2})/?$\";s:100:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=day&eventDate=$matches[2]\";s:78:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(\\d{4}-\\d{2}-\\d{2})/(?:featured)/?$\";s:111:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=day&eventDate=$matches[2]&featured=1\";s:50:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/feed/?$\";s:89:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=list&feed=rss2\";s:63:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:featured)/feed/?$\";s:100:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&featured=1&eventDisplay=list&feed=rss2\";s:50:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/ical/?$\";s:68:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&ical=1\";s:63:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:featured)/ical/?$\";s:79:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&featured=1&ical=1\";s:75:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:78:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&feed=$matches[2]\";s:88:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:featured)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:89:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&featured=1&feed=$matches[2]\";s:58:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:featured)/?$\";s:93:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&featured=1&eventDisplay=default\";s:45:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/?$\";s:82:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=default\";s:44:\"(?:events)/(?:tag)/([^/]+)/(?:page)/(\\d+)/?$\";s:84:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=list&paged=$matches[2]\";s:57:\"(?:events)/(?:tag)/([^/]+)/(?:featured)/(?:page)/(\\d+)/?$\";s:95:\"index.php?post_type=tribe_events&tag=$matches[1]&featured=1&eventDisplay=list&paged=$matches[2]\";s:39:\"(?:events)/(?:tag)/([^/]+)/(?:month)/?$\";s:67:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=month\";s:52:\"(?:events)/(?:tag)/([^/]+)/(?:month)/(?:featured)/?$\";s:78:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=month&featured=1\";s:53:\"(?:events)/(?:tag)/([^/]+)/(?:list)/(?:page)/(\\d+)/?$\";s:84:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=list&paged=$matches[2]\";s:66:\"(?:events)/(?:tag)/([^/]+)/(?:list)/(?:featured)/(?:page)/(\\d+)/?$\";s:95:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=list&featured=1&paged=$matches[2]\";s:38:\"(?:events)/(?:tag)/([^/]+)/(?:list)/?$\";s:66:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=list\";s:51:\"(?:events)/(?:tag)/([^/]+)/(?:list)/(?:featured)/?$\";s:77:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=list&featured=1\";s:39:\"(?:events)/(?:tag)/([^/]+)/(?:today)/?$\";s:65:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=day\";s:52:\"(?:events)/(?:tag)/([^/]+)/(?:today)/(?:featured)/?$\";s:76:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=day&featured=1\";s:57:\"(?:events)/(?:tag)/([^/]+)/(?:day)/(\\d{4}-\\d{2}-\\d{2})/?$\";s:87:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=day&eventDate=$matches[2]\";s:70:\"(?:events)/(?:tag)/([^/]+)/(?:day)/(\\d{4}-\\d{2}-\\d{2})/(?:featured)/?$\";s:98:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=day&eventDate=$matches[2]&featured=1\";s:43:\"(?:events)/(?:tag)/([^/]+)/(\\d{4}-\\d{2})/?$\";s:89:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=month&eventDate=$matches[2]\";s:56:\"(?:events)/(?:tag)/([^/]+)/(\\d{4}-\\d{2})/(?:featured)/?$\";s:100:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=month&eventDate=$matches[2]&featured=1\";s:49:\"(?:events)/(?:tag)/([^/]+)/(\\d{4}-\\d{2}-\\d{2})/?$\";s:87:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=day&eventDate=$matches[2]\";s:62:\"(?:events)/(?:tag)/([^/]+)/(\\d{4}-\\d{2}-\\d{2})/(?:featured)/?$\";s:98:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=day&eventDate=$matches[2]&featured=1\";s:34:\"(?:events)/(?:tag)/([^/]+)/feed/?$\";s:76:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=list&feed=rss2\";s:47:\"(?:events)/(?:tag)/([^/]+)/(?:featured)/feed/?$\";s:87:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=list&feed=rss2&featured=1\";s:34:\"(?:events)/(?:tag)/([^/]+)/ical/?$\";s:55:\"index.php?post_type=tribe_events&tag=$matches[1]&ical=1\";s:47:\"(?:events)/(?:tag)/([^/]+)/(?:featured)/ical/?$\";s:66:\"index.php?post_type=tribe_events&tag=$matches[1]&featured=1&ical=1\";s:59:\"(?:events)/(?:tag)/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:65:\"index.php?post_type=tribe_events&tag=$matches[1]&feed=$matches[2]\";s:72:\"(?:events)/(?:tag)/([^/]+)/(?:featured)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:76:\"index.php?post_type=tribe_events&tag=$matches[1]&featured=1&feed=$matches[2]\";s:42:\"(?:events)/(?:tag)/([^/]+)/(?:featured)/?$\";s:59:\"index.php?post_type=tribe_events&tag=$matches[1]&featured=1\";s:29:\"(?:events)/(?:tag)/([^/]+)/?$\";s:69:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=default\";s:9:\"course/?$\";s:26:\"index.php?post_type=course\";s:39:\"course/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?post_type=course&feed=$matches[1]\";s:34:\"course/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?post_type=course&feed=$matches[1]\";s:26:\"course/page/([0-9]{1,})/?$\";s:44:\"index.php?post_type=course&paged=$matches[1]\";s:13:\"instructor/?$\";s:30:\"index.php?post_type=instructor\";s:43:\"instructor/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?post_type=instructor&feed=$matches[1]\";s:38:\"instructor/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?post_type=instructor&feed=$matches[1]\";s:30:\"instructor/page/([0-9]{1,})/?$\";s:48:\"index.php?post_type=instructor&paged=$matches[1]\";s:9:\"lesson/?$\";s:26:\"index.php?post_type=lesson\";s:39:\"lesson/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?post_type=lesson&feed=$matches[1]\";s:34:\"lesson/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?post_type=lesson&feed=$matches[1]\";s:26:\"lesson/page/([0-9]{1,})/?$\";s:44:\"index.php?post_type=lesson&paged=$matches[1]\";s:11:\"question/?$\";s:28:\"index.php?post_type=question\";s:41:\"question/feed/(feed|rdf|rss|rss2|atom)/?$\";s:45:\"index.php?post_type=question&feed=$matches[1]\";s:36:\"question/(feed|rdf|rss|rss2|atom)/?$\";s:45:\"index.php?post_type=question&feed=$matches[1]\";s:28:\"question/page/([0-9]{1,})/?$\";s:46:\"index.php?post_type=question&paged=$matches[1]\";s:7:\"quiz/?$\";s:24:\"index.php?post_type=quiz\";s:37:\"quiz/feed/(feed|rdf|rss|rss2|atom)/?$\";s:41:\"index.php?post_type=quiz&feed=$matches[1]\";s:32:\"quiz/(feed|rdf|rss|rss2|atom)/?$\";s:41:\"index.php?post_type=quiz&feed=$matches[1]\";s:24:\"quiz/page/([0-9]{1,})/?$\";s:42:\"index.php?post_type=quiz&paged=$matches[1]\";s:9:\"forums/?$\";s:25:\"index.php?post_type=forum\";s:39:\"forums/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?post_type=forum&feed=$matches[1]\";s:34:\"forums/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?post_type=forum&feed=$matches[1]\";s:26:\"forums/page/([0-9]{1,})/?$\";s:43:\"index.php?post_type=forum&paged=$matches[1]\";s:9:\"topics/?$\";s:25:\"index.php?post_type=topic\";s:39:\"topics/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?post_type=topic&feed=$matches[1]\";s:34:\"topics/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?post_type=topic&feed=$matches[1]\";s:26:\"topics/page/([0-9]{1,})/?$\";s:43:\"index.php?post_type=topic&paged=$matches[1]\";s:28:\"forums/forum/([^/]+)/edit/?$\";s:34:\"index.php?forum=$matches[1]&edit=1\";s:28:\"forums/topic/([^/]+)/edit/?$\";s:34:\"index.php?topic=$matches[1]&edit=1\";s:28:\"forums/reply/([^/]+)/edit/?$\";s:34:\"index.php?reply=$matches[1]&edit=1\";s:32:\"forums/topic-tag/([^/]+)/edit/?$\";s:38:\"index.php?topic-tag=$matches[1]&edit=1\";s:48:\"forums/users/([^/]+)/topics/page/?([0-9]{1,})/?$\";s:59:\"index.php?bbp_user=$matches[1]&bbp_tops=1&paged=$matches[2]\";s:49:\"forums/users/([^/]+)/replies/page/?([0-9]{1,})/?$\";s:59:\"index.php?bbp_user=$matches[1]&bbp_reps=1&paged=$matches[2]\";s:51:\"forums/users/([^/]+)/favorites/page/?([0-9]{1,})/?$\";s:59:\"index.php?bbp_user=$matches[1]&bbp_favs=1&paged=$matches[2]\";s:55:\"forums/users/([^/]+)/subscriptions/page/?([0-9]{1,})/?$\";s:59:\"index.php?bbp_user=$matches[1]&bbp_subs=1&paged=$matches[2]\";s:53:\"forums/users/([^/]+)/engagements/page/?([0-9]{1,})/?$\";s:66:\"index.php?bbp_user=$matches[1]&bbp_engagements=1&paged=$matches[2]\";s:30:\"forums/users/([^/]+)/topics/?$\";s:41:\"index.php?bbp_user=$matches[1]&bbp_tops=1\";s:31:\"forums/users/([^/]+)/replies/?$\";s:41:\"index.php?bbp_user=$matches[1]&bbp_reps=1\";s:33:\"forums/users/([^/]+)/favorites/?$\";s:41:\"index.php?bbp_user=$matches[1]&bbp_favs=1\";s:37:\"forums/users/([^/]+)/subscriptions/?$\";s:41:\"index.php?bbp_user=$matches[1]&bbp_subs=1\";s:35:\"forums/users/([^/]+)/engagements/?$\";s:48:\"index.php?bbp_user=$matches[1]&bbp_engagements=1\";s:28:\"forums/users/([^/]+)/edit/?$\";s:37:\"index.php?bbp_user=$matches[1]&edit=1\";s:23:\"forums/users/([^/]+)/?$\";s:30:\"index.php?bbp_user=$matches[1]\";s:40:\"forums/view/([^/]+)/page/?([0-9]{1,})/?$\";s:48:\"index.php?bbp_view=$matches[1]&paged=$matches[2]\";s:27:\"forums/view/([^/]+)/feed/?$\";s:47:\"index.php?bbp_view=$matches[1]&feed=$matches[2]\";s:22:\"forums/view/([^/]+)/?$\";s:30:\"index.php?bbp_view=$matches[1]\";s:34:\"forums/search/page/?([0-9]{1,})/?$\";s:27:\"index.php?paged=$matches[1]\";s:16:\"forums/search/?$\";s:20:\"index.php?bbp_search\";s:24:\"^wc-auth/v([1]{1})/(.*)?\";s:63:\"index.php?wc-auth-version=$matches[1]&wc-auth-route=$matches[2]\";s:22:\"^wc-api/v([1-3]{1})/?$\";s:51:\"index.php?wc-api-version=$matches[1]&wc-api-route=/\";s:24:\"^wc-api/v([1-3]{1})(.*)?\";s:61:\"index.php?wc-api-version=$matches[1]&wc-api-route=$matches[2]\";s:21:\"^wc/file/transient/?$\";s:33:\"index.php?wc-transient-file-name=\";s:24:\"^wc/file/transient/(.+)$\";s:44:\"index.php?wc-transient-file-name=$matches[1]\";s:7:\"shop/?$\";s:27:\"index.php?post_type=product\";s:37:\"shop/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:32:\"shop/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:24:\"shop/page/([0-9]{1,})/?$\";s:45:\"index.php?post_type=product&paged=$matches[1]\";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:22:\"tribe-promoter-auth/?$\";s:37:\"index.php?tribe-promoter-auth-check=1\";s:8:\"event/?$\";s:32:\"index.php?post_type=tribe_events\";s:38:\"event/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?post_type=tribe_events&feed=$matches[1]\";s:33:\"event/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?post_type=tribe_events&feed=$matches[1]\";s:25:\"event/page/([0-9]{1,})/?$\";s:50:\"index.php?post_type=tribe_events&paged=$matches[1]\";s:43:\"masonry-gallery/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:53:\"masonry-gallery/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:73:\"masonry-gallery/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:68:\"masonry-gallery/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:68:\"masonry-gallery/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:49:\"masonry-gallery/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:32:\"masonry-gallery/([^/]+)/embed/?$\";s:48:\"index.php?masonry-gallery=$matches[1]&embed=true\";s:36:\"masonry-gallery/([^/]+)/trackback/?$\";s:42:\"index.php?masonry-gallery=$matches[1]&tb=1\";s:44:\"masonry-gallery/([^/]+)/page/?([0-9]{1,})/?$\";s:55:\"index.php?masonry-gallery=$matches[1]&paged=$matches[2]\";s:51:\"masonry-gallery/([^/]+)/comment-page-([0-9]{1,})/?$\";s:55:\"index.php?masonry-gallery=$matches[1]&cpage=$matches[2]\";s:41:\"masonry-gallery/([^/]+)/wc-api(/(.*))?/?$\";s:56:\"index.php?masonry-gallery=$matches[1]&wc-api=$matches[3]\";s:52:\"masonry-gallery/([^/]+)/wc/file/transient(/(.*))?/?$\";s:67:\"index.php?masonry-gallery=$matches[1]&wc/file/transient=$matches[3]\";s:47:\"masonry-gallery/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:58:\"masonry-gallery/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:58:\"masonry-gallery/[^/]+/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:69:\"masonry-gallery/[^/]+/attachment/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:40:\"masonry-gallery/([^/]+)(?:/([0-9]+))?/?$\";s:54:\"index.php?masonry-gallery=$matches[1]&page=$matches[2]\";s:32:\"masonry-gallery/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:42:\"masonry-gallery/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:62:\"masonry-gallery/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"masonry-gallery/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"masonry-gallery/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:38:\"masonry-gallery/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:65:\"masonry-gallery-category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:63:\"index.php?masonry-gallery-category=$matches[1]&feed=$matches[2]\";s:60:\"masonry-gallery-category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:63:\"index.php?masonry-gallery-category=$matches[1]&feed=$matches[2]\";s:41:\"masonry-gallery-category/([^/]+)/embed/?$\";s:57:\"index.php?masonry-gallery-category=$matches[1]&embed=true\";s:53:\"masonry-gallery-category/([^/]+)/page/?([0-9]{1,})/?$\";s:64:\"index.php?masonry-gallery-category=$matches[1]&paged=$matches[2]\";s:35:\"masonry-gallery-category/([^/]+)/?$\";s:46:\"index.php?masonry-gallery-category=$matches[1]\";s:40:\"testimonials/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:50:\"testimonials/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:70:\"testimonials/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"testimonials/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"testimonials/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:46:\"testimonials/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:29:\"testimonials/([^/]+)/embed/?$\";s:45:\"index.php?testimonials=$matches[1]&embed=true\";s:33:\"testimonials/([^/]+)/trackback/?$\";s:39:\"index.php?testimonials=$matches[1]&tb=1\";s:41:\"testimonials/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?testimonials=$matches[1]&paged=$matches[2]\";s:48:\"testimonials/([^/]+)/comment-page-([0-9]{1,})/?$\";s:52:\"index.php?testimonials=$matches[1]&cpage=$matches[2]\";s:38:\"testimonials/([^/]+)/wc-api(/(.*))?/?$\";s:53:\"index.php?testimonials=$matches[1]&wc-api=$matches[3]\";s:49:\"testimonials/([^/]+)/wc/file/transient(/(.*))?/?$\";s:64:\"index.php?testimonials=$matches[1]&wc/file/transient=$matches[3]\";s:44:\"testimonials/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:55:\"testimonials/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:55:\"testimonials/[^/]+/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:66:\"testimonials/[^/]+/attachment/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:37:\"testimonials/([^/]+)(?:/([0-9]+))?/?$\";s:51:\"index.php?testimonials=$matches[1]&page=$matches[2]\";s:29:\"testimonials/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:39:\"testimonials/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:59:\"testimonials/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"testimonials/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"testimonials/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:35:\"testimonials/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:62:\"testimonials-category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:60:\"index.php?testimonials-category=$matches[1]&feed=$matches[2]\";s:57:\"testimonials-category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:60:\"index.php?testimonials-category=$matches[1]&feed=$matches[2]\";s:38:\"testimonials-category/([^/]+)/embed/?$\";s:54:\"index.php?testimonials-category=$matches[1]&embed=true\";s:50:\"testimonials-category/([^/]+)/page/?([0-9]{1,})/?$\";s:61:\"index.php?testimonials-category=$matches[1]&paged=$matches[2]\";s:32:\"testimonials-category/([^/]+)/?$\";s:43:\"index.php?testimonials-category=$matches[1]\";s:34:\"course/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:44:\"course/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:64:\"course/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"course/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"course/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:40:\"course/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:23:\"course/([^/]+)/embed/?$\";s:39:\"index.php?course=$matches[1]&embed=true\";s:27:\"course/([^/]+)/trackback/?$\";s:33:\"index.php?course=$matches[1]&tb=1\";s:47:\"course/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:45:\"index.php?course=$matches[1]&feed=$matches[2]\";s:42:\"course/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:45:\"index.php?course=$matches[1]&feed=$matches[2]\";s:35:\"course/([^/]+)/page/?([0-9]{1,})/?$\";s:46:\"index.php?course=$matches[1]&paged=$matches[2]\";s:42:\"course/([^/]+)/comment-page-([0-9]{1,})/?$\";s:46:\"index.php?course=$matches[1]&cpage=$matches[2]\";s:32:\"course/([^/]+)/wc-api(/(.*))?/?$\";s:47:\"index.php?course=$matches[1]&wc-api=$matches[3]\";s:43:\"course/([^/]+)/wc/file/transient(/(.*))?/?$\";s:58:\"index.php?course=$matches[1]&wc/file/transient=$matches[3]\";s:38:\"course/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:49:\"course/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:49:\"course/[^/]+/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:60:\"course/[^/]+/attachment/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:31:\"course/([^/]+)(?:/([0-9]+))?/?$\";s:45:\"index.php?course=$matches[1]&page=$matches[2]\";s:23:\"course/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:33:\"course/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:53:\"course/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:48:\"course/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:48:\"course/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:29:\"course/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:56:\"course-category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?course-category=$matches[1]&feed=$matches[2]\";s:51:\"course-category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?course-category=$matches[1]&feed=$matches[2]\";s:32:\"course-category/([^/]+)/embed/?$\";s:48:\"index.php?course-category=$matches[1]&embed=true\";s:44:\"course-category/([^/]+)/page/?([0-9]{1,})/?$\";s:55:\"index.php?course-category=$matches[1]&paged=$matches[2]\";s:26:\"course-category/([^/]+)/?$\";s:37:\"index.php?course-category=$matches[1]\";s:51:\"course-tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?course-tag=$matches[1]&feed=$matches[2]\";s:46:\"course-tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?course-tag=$matches[1]&feed=$matches[2]\";s:27:\"course-tag/([^/]+)/embed/?$\";s:43:\"index.php?course-tag=$matches[1]&embed=true\";s:39:\"course-tag/([^/]+)/page/?([0-9]{1,})/?$\";s:50:\"index.php?course-tag=$matches[1]&paged=$matches[2]\";s:21:\"course-tag/([^/]+)/?$\";s:32:\"index.php?course-tag=$matches[1]\";s:38:\"instructor/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:48:\"instructor/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:68:\"instructor/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"instructor/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"instructor/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:44:\"instructor/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:27:\"instructor/([^/]+)/embed/?$\";s:43:\"index.php?instructor=$matches[1]&embed=true\";s:31:\"instructor/([^/]+)/trackback/?$\";s:37:\"index.php?instructor=$matches[1]&tb=1\";s:51:\"instructor/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?instructor=$matches[1]&feed=$matches[2]\";s:46:\"instructor/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?instructor=$matches[1]&feed=$matches[2]\";s:39:\"instructor/([^/]+)/page/?([0-9]{1,})/?$\";s:50:\"index.php?instructor=$matches[1]&paged=$matches[2]\";s:46:\"instructor/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?instructor=$matches[1]&cpage=$matches[2]\";s:36:\"instructor/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?instructor=$matches[1]&wc-api=$matches[3]\";s:47:\"instructor/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?instructor=$matches[1]&wc/file/transient=$matches[3]\";s:42:\"instructor/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:53:\"instructor/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:53:\"instructor/[^/]+/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:64:\"instructor/[^/]+/attachment/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:35:\"instructor/([^/]+)(?:/([0-9]+))?/?$\";s:49:\"index.php?instructor=$matches[1]&page=$matches[2]\";s:27:\"instructor/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"instructor/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"instructor/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"instructor/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"instructor/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"instructor/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:60:\"instructor-category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:58:\"index.php?instructor-category=$matches[1]&feed=$matches[2]\";s:55:\"instructor-category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:58:\"index.php?instructor-category=$matches[1]&feed=$matches[2]\";s:36:\"instructor-category/([^/]+)/embed/?$\";s:52:\"index.php?instructor-category=$matches[1]&embed=true\";s:48:\"instructor-category/([^/]+)/page/?([0-9]{1,})/?$\";s:59:\"index.php?instructor-category=$matches[1]&paged=$matches[2]\";s:30:\"instructor-category/([^/]+)/?$\";s:41:\"index.php?instructor-category=$matches[1]\";s:34:\"lesson/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:44:\"lesson/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:64:\"lesson/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"lesson/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"lesson/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:40:\"lesson/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:23:\"lesson/([^/]+)/embed/?$\";s:39:\"index.php?lesson=$matches[1]&embed=true\";s:27:\"lesson/([^/]+)/trackback/?$\";s:33:\"index.php?lesson=$matches[1]&tb=1\";s:47:\"lesson/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:45:\"index.php?lesson=$matches[1]&feed=$matches[2]\";s:42:\"lesson/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:45:\"index.php?lesson=$matches[1]&feed=$matches[2]\";s:35:\"lesson/([^/]+)/page/?([0-9]{1,})/?$\";s:46:\"index.php?lesson=$matches[1]&paged=$matches[2]\";s:42:\"lesson/([^/]+)/comment-page-([0-9]{1,})/?$\";s:46:\"index.php?lesson=$matches[1]&cpage=$matches[2]\";s:32:\"lesson/([^/]+)/wc-api(/(.*))?/?$\";s:47:\"index.php?lesson=$matches[1]&wc-api=$matches[3]\";s:43:\"lesson/([^/]+)/wc/file/transient(/(.*))?/?$\";s:58:\"index.php?lesson=$matches[1]&wc/file/transient=$matches[3]\";s:38:\"lesson/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:49:\"lesson/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:49:\"lesson/[^/]+/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:60:\"lesson/[^/]+/attachment/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:31:\"lesson/([^/]+)(?:/([0-9]+))?/?$\";s:45:\"index.php?lesson=$matches[1]&page=$matches[2]\";s:23:\"lesson/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:33:\"lesson/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:53:\"lesson/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:48:\"lesson/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:48:\"lesson/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:29:\"lesson/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:36:\"question/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:46:\"question/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:66:\"question/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"question/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"question/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:42:\"question/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:25:\"question/([^/]+)/embed/?$\";s:41:\"index.php?question=$matches[1]&embed=true\";s:29:\"question/([^/]+)/trackback/?$\";s:35:\"index.php?question=$matches[1]&tb=1\";s:49:\"question/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?question=$matches[1]&feed=$matches[2]\";s:44:\"question/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?question=$matches[1]&feed=$matches[2]\";s:37:\"question/([^/]+)/page/?([0-9]{1,})/?$\";s:48:\"index.php?question=$matches[1]&paged=$matches[2]\";s:44:\"question/([^/]+)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?question=$matches[1]&cpage=$matches[2]\";s:34:\"question/([^/]+)/wc-api(/(.*))?/?$\";s:49:\"index.php?question=$matches[1]&wc-api=$matches[3]\";s:45:\"question/([^/]+)/wc/file/transient(/(.*))?/?$\";s:60:\"index.php?question=$matches[1]&wc/file/transient=$matches[3]\";s:40:\"question/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:51:\"question/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:51:\"question/[^/]+/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:62:\"question/[^/]+/attachment/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:33:\"question/([^/]+)(?:/([0-9]+))?/?$\";s:47:\"index.php?question=$matches[1]&page=$matches[2]\";s:25:\"question/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:35:\"question/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:55:\"question/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"question/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"question/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:31:\"question/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:32:\"quiz/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:42:\"quiz/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:62:\"quiz/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"quiz/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"quiz/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:38:\"quiz/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:21:\"quiz/([^/]+)/embed/?$\";s:37:\"index.php?quiz=$matches[1]&embed=true\";s:25:\"quiz/([^/]+)/trackback/?$\";s:31:\"index.php?quiz=$matches[1]&tb=1\";s:45:\"quiz/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?quiz=$matches[1]&feed=$matches[2]\";s:40:\"quiz/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?quiz=$matches[1]&feed=$matches[2]\";s:33:\"quiz/([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?quiz=$matches[1]&paged=$matches[2]\";s:40:\"quiz/([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?quiz=$matches[1]&cpage=$matches[2]\";s:30:\"quiz/([^/]+)/wc-api(/(.*))?/?$\";s:45:\"index.php?quiz=$matches[1]&wc-api=$matches[3]\";s:41:\"quiz/([^/]+)/wc/file/transient(/(.*))?/?$\";s:56:\"index.php?quiz=$matches[1]&wc/file/transient=$matches[3]\";s:36:\"quiz/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:47:\"quiz/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:47:\"quiz/[^/]+/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:58:\"quiz/[^/]+/attachment/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:29:\"quiz/([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?quiz=$matches[1]&page=$matches[2]\";s:21:\"quiz/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:31:\"quiz/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:51:\"quiz/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:46:\"quiz/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:46:\"quiz/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:27:\"quiz/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";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:32:\"category/(.+?)/wc-api(/(.*))?/?$\";s:54:\"index.php?category_name=$matches[1]&wc-api=$matches[3]\";s:43:\"category/(.+?)/wc/file/transient(/(.*))?/?$\";s:65:\"index.php?category_name=$matches[1]&wc/file/transient=$matches[3]\";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:29:\"tag/([^/]+)/wc-api(/(.*))?/?$\";s:44:\"index.php?tag=$matches[1]&wc-api=$matches[3]\";s:40:\"tag/([^/]+)/wc/file/transient(/(.*))?/?$\";s:55:\"index.php?tag=$matches[1]&wc/file/transient=$matches[3]\";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:38:\"forums/forum/.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:48:\"forums/forum/.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:68:\"forums/forum/.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"forums/forum/.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"forums/forum/.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:44:\"forums/forum/.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:27:\"forums/forum/(.+?)/embed/?$\";s:38:\"index.php?forum=$matches[1]&embed=true\";s:31:\"forums/forum/(.+?)/trackback/?$\";s:32:\"index.php?forum=$matches[1]&tb=1\";s:51:\"forums/forum/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?forum=$matches[1]&feed=$matches[2]\";s:46:\"forums/forum/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?forum=$matches[1]&feed=$matches[2]\";s:39:\"forums/forum/(.+?)/page/?([0-9]{1,})/?$\";s:45:\"index.php?forum=$matches[1]&paged=$matches[2]\";s:46:\"forums/forum/(.+?)/comment-page-([0-9]{1,})/?$\";s:45:\"index.php?forum=$matches[1]&cpage=$matches[2]\";s:36:\"forums/forum/(.+?)/wc-api(/(.*))?/?$\";s:46:\"index.php?forum=$matches[1]&wc-api=$matches[3]\";s:47:\"forums/forum/(.+?)/wc/file/transient(/(.*))?/?$\";s:57:\"index.php?forum=$matches[1]&wc/file/transient=$matches[3]\";s:42:\"forums/forum/.+?/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:53:\"forums/forum/.+?/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:53:\"forums/forum/.+?/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:64:\"forums/forum/.+?/attachment/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:35:\"forums/forum/(.+?)(?:/([0-9]+))?/?$\";s:44:\"index.php?forum=$matches[1]&page=$matches[2]\";s:40:\"forums/topic/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:50:\"forums/topic/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:70:\"forums/topic/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"forums/topic/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"forums/topic/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:46:\"forums/topic/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:29:\"forums/topic/([^/]+)/embed/?$\";s:38:\"index.php?topic=$matches[1]&embed=true\";s:33:\"forums/topic/([^/]+)/trackback/?$\";s:32:\"index.php?topic=$matches[1]&tb=1\";s:53:\"forums/topic/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?topic=$matches[1]&feed=$matches[2]\";s:48:\"forums/topic/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?topic=$matches[1]&feed=$matches[2]\";s:41:\"forums/topic/([^/]+)/page/?([0-9]{1,})/?$\";s:45:\"index.php?topic=$matches[1]&paged=$matches[2]\";s:48:\"forums/topic/([^/]+)/comment-page-([0-9]{1,})/?$\";s:45:\"index.php?topic=$matches[1]&cpage=$matches[2]\";s:38:\"forums/topic/([^/]+)/wc-api(/(.*))?/?$\";s:46:\"index.php?topic=$matches[1]&wc-api=$matches[3]\";s:49:\"forums/topic/([^/]+)/wc/file/transient(/(.*))?/?$\";s:57:\"index.php?topic=$matches[1]&wc/file/transient=$matches[3]\";s:44:\"forums/topic/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:55:\"forums/topic/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:55:\"forums/topic/[^/]+/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:66:\"forums/topic/[^/]+/attachment/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:37:\"forums/topic/([^/]+)(?:/([0-9]+))?/?$\";s:44:\"index.php?topic=$matches[1]&page=$matches[2]\";s:29:\"forums/topic/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:39:\"forums/topic/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:59:\"forums/topic/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"forums/topic/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"forums/topic/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:35:\"forums/topic/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:40:\"forums/reply/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:50:\"forums/reply/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:70:\"forums/reply/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"forums/reply/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"forums/reply/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:46:\"forums/reply/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:29:\"forums/reply/([^/]+)/embed/?$\";s:38:\"index.php?reply=$matches[1]&embed=true\";s:33:\"forums/reply/([^/]+)/trackback/?$\";s:32:\"index.php?reply=$matches[1]&tb=1\";s:41:\"forums/reply/([^/]+)/page/?([0-9]{1,})/?$\";s:45:\"index.php?reply=$matches[1]&paged=$matches[2]\";s:48:\"forums/reply/([^/]+)/comment-page-([0-9]{1,})/?$\";s:45:\"index.php?reply=$matches[1]&cpage=$matches[2]\";s:38:\"forums/reply/([^/]+)/wc-api(/(.*))?/?$\";s:46:\"index.php?reply=$matches[1]&wc-api=$matches[3]\";s:49:\"forums/reply/([^/]+)/wc/file/transient(/(.*))?/?$\";s:57:\"index.php?reply=$matches[1]&wc/file/transient=$matches[3]\";s:44:\"forums/reply/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:55:\"forums/reply/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:55:\"forums/reply/[^/]+/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:66:\"forums/reply/[^/]+/attachment/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:37:\"forums/reply/([^/]+)(?:/([0-9]+))?/?$\";s:44:\"index.php?reply=$matches[1]&page=$matches[2]\";s:29:\"forums/reply/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:39:\"forums/reply/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:59:\"forums/reply/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"forums/reply/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"forums/reply/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:35:\"forums/reply/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:57:\"forums/topic-tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?topic-tag=$matches[1]&feed=$matches[2]\";s:52:\"forums/topic-tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?topic-tag=$matches[1]&feed=$matches[2]\";s:33:\"forums/topic-tag/([^/]+)/embed/?$\";s:42:\"index.php?topic-tag=$matches[1]&embed=true\";s:45:\"forums/topic-tag/([^/]+)/page/?([0-9]{1,})/?$\";s:49:\"index.php?topic-tag=$matches[1]&paged=$matches[2]\";s:27:\"forums/topic-tag/([^/]+)/?$\";s:31:\"index.php?topic-tag=$matches[1]\";s:42:\"forums/search/([^/]+)/page/?([0-9]{1,})/?$\";s:50:\"index.php?bbp_search=$matches[1]&paged=$matches[2]\";s:24:\"forums/search/([^/]+)/?$\";s:32:\"index.php?bbp_search=$matches[1]\";s:55:\"product-category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:50:\"product-category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:31:\"product-category/(.+?)/embed/?$\";s:44:\"index.php?product_cat=$matches[1]&embed=true\";s:43:\"product-category/(.+?)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_cat=$matches[1]&paged=$matches[2]\";s:25:\"product-category/(.+?)/?$\";s:33:\"index.php?product_cat=$matches[1]\";s:52:\"product-tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:47:\"product-tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:28:\"product-tag/([^/]+)/embed/?$\";s:44:\"index.php?product_tag=$matches[1]&embed=true\";s:40:\"product-tag/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_tag=$matches[1]&paged=$matches[2]\";s:22:\"product-tag/([^/]+)/?$\";s:33:\"index.php?product_tag=$matches[1]\";s:35:\"product/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"product/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"product/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"product/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"product/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"product/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"product/([^/]+)/embed/?$\";s:40:\"index.php?product=$matches[1]&embed=true\";s:28:\"product/([^/]+)/trackback/?$\";s:34:\"index.php?product=$matches[1]&tb=1\";s:48:\"product/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?product=$matches[1]&feed=$matches[2]\";s:43:\"product/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?product=$matches[1]&feed=$matches[2]\";s:36:\"product/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&paged=$matches[2]\";s:43:\"product/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&cpage=$matches[2]\";s:33:\"product/([^/]+)/wc-api(/(.*))?/?$\";s:48:\"index.php?product=$matches[1]&wc-api=$matches[3]\";s:44:\"product/([^/]+)/wc/file/transient(/(.*))?/?$\";s:59:\"index.php?product=$matches[1]&wc/file/transient=$matches[3]\";s:39:\"product/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:50:\"product/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:50:\"product/[^/]+/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:61:\"product/[^/]+/attachment/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:32:\"product/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?product=$matches[1]&page=$matches[2]\";s:24:\"product/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"product/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"product/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"product/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"product/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"product/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:40:\"vc_grid_item/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:50:\"vc_grid_item/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:70:\"vc_grid_item/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"vc_grid_item/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"vc_grid_item/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:46:\"vc_grid_item/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:29:\"vc_grid_item/([^/]+)/embed/?$\";s:45:\"index.php?vc_grid_item=$matches[1]&embed=true\";s:33:\"vc_grid_item/([^/]+)/trackback/?$\";s:39:\"index.php?vc_grid_item=$matches[1]&tb=1\";s:41:\"vc_grid_item/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?vc_grid_item=$matches[1]&paged=$matches[2]\";s:48:\"vc_grid_item/([^/]+)/comment-page-([0-9]{1,})/?$\";s:52:\"index.php?vc_grid_item=$matches[1]&cpage=$matches[2]\";s:38:\"vc_grid_item/([^/]+)/wc-api(/(.*))?/?$\";s:53:\"index.php?vc_grid_item=$matches[1]&wc-api=$matches[3]\";s:49:\"vc_grid_item/([^/]+)/wc/file/transient(/(.*))?/?$\";s:64:\"index.php?vc_grid_item=$matches[1]&wc/file/transient=$matches[3]\";s:44:\"vc_grid_item/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:55:\"vc_grid_item/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:55:\"vc_grid_item/[^/]+/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:66:\"vc_grid_item/[^/]+/attachment/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:37:\"vc_grid_item/([^/]+)(?:/([0-9]+))?/?$\";s:51:\"index.php?vc_grid_item=$matches[1]&page=$matches[2]\";s:29:\"vc_grid_item/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:39:\"vc_grid_item/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:59:\"vc_grid_item/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"vc_grid_item/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"vc_grid_item/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:35:\"vc_grid_item/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:33:\"venue/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"venue/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"venue/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"venue/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"venue/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:39:\"venue/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:22:\"venue/([^/]+)/embed/?$\";s:44:\"index.php?tribe_venue=$matches[1]&embed=true\";s:26:\"venue/([^/]+)/trackback/?$\";s:38:\"index.php?tribe_venue=$matches[1]&tb=1\";s:34:\"venue/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?tribe_venue=$matches[1]&paged=$matches[2]\";s:41:\"venue/([^/]+)/comment-page-([0-9]{1,})/?$\";s:51:\"index.php?tribe_venue=$matches[1]&cpage=$matches[2]\";s:31:\"venue/([^/]+)/wc-api(/(.*))?/?$\";s:52:\"index.php?tribe_venue=$matches[1]&wc-api=$matches[3]\";s:42:\"venue/([^/]+)/wc/file/transient(/(.*))?/?$\";s:63:\"index.php?tribe_venue=$matches[1]&wc/file/transient=$matches[3]\";s:37:\"venue/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:48:\"venue/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:48:\"venue/[^/]+/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:59:\"venue/[^/]+/attachment/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:30:\"venue/([^/]+)(?:/([0-9]+))?/?$\";s:50:\"index.php?tribe_venue=$matches[1]&page=$matches[2]\";s:22:\"venue/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:32:\"venue/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:52:\"venue/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:47:\"venue/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:47:\"venue/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:28:\"venue/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:37:\"organizer/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:47:\"organizer/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:67:\"organizer/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"organizer/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"organizer/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:43:\"organizer/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:26:\"organizer/([^/]+)/embed/?$\";s:48:\"index.php?tribe_organizer=$matches[1]&embed=true\";s:30:\"organizer/([^/]+)/trackback/?$\";s:42:\"index.php?tribe_organizer=$matches[1]&tb=1\";s:38:\"organizer/([^/]+)/page/?([0-9]{1,})/?$\";s:55:\"index.php?tribe_organizer=$matches[1]&paged=$matches[2]\";s:45:\"organizer/([^/]+)/comment-page-([0-9]{1,})/?$\";s:55:\"index.php?tribe_organizer=$matches[1]&cpage=$matches[2]\";s:35:\"organizer/([^/]+)/wc-api(/(.*))?/?$\";s:56:\"index.php?tribe_organizer=$matches[1]&wc-api=$matches[3]\";s:46:\"organizer/([^/]+)/wc/file/transient(/(.*))?/?$\";s:67:\"index.php?tribe_organizer=$matches[1]&wc/file/transient=$matches[3]\";s:41:\"organizer/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:52:\"organizer/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:52:\"organizer/[^/]+/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:63:\"organizer/[^/]+/attachment/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:34:\"organizer/([^/]+)(?:/([0-9]+))?/?$\";s:54:\"index.php?tribe_organizer=$matches[1]&page=$matches[2]\";s:26:\"organizer/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:36:\"organizer/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:56:\"organizer/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"organizer/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"organizer/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:32:\"organizer/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:33:\"event/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"event/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"event/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"event/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"event/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:39:\"event/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:22:\"event/([^/]+)/embed/?$\";s:45:\"index.php?tribe_events=$matches[1]&embed=true\";s:26:\"event/([^/]+)/trackback/?$\";s:39:\"index.php?tribe_events=$matches[1]&tb=1\";s:46:\"event/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?tribe_events=$matches[1]&feed=$matches[2]\";s:41:\"event/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?tribe_events=$matches[1]&feed=$matches[2]\";s:34:\"event/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?tribe_events=$matches[1]&paged=$matches[2]\";s:41:\"event/([^/]+)/comment-page-([0-9]{1,})/?$\";s:52:\"index.php?tribe_events=$matches[1]&cpage=$matches[2]\";s:31:\"event/([^/]+)/wc-api(/(.*))?/?$\";s:53:\"index.php?tribe_events=$matches[1]&wc-api=$matches[3]\";s:42:\"event/([^/]+)/wc/file/transient(/(.*))?/?$\";s:64:\"index.php?tribe_events=$matches[1]&wc/file/transient=$matches[3]\";s:37:\"event/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:48:\"event/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:48:\"event/[^/]+/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:59:\"event/[^/]+/attachment/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:30:\"event/([^/]+)(?:/([0-9]+))?/?$\";s:51:\"index.php?tribe_events=$matches[1]&page=$matches[2]\";s:22:\"event/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:32:\"event/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:52:\"event/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:47:\"event/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:47:\"event/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:28:\"event/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:54:\"events/category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?tribe_events_cat=$matches[1]&feed=$matches[2]\";s:49:\"events/category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?tribe_events_cat=$matches[1]&feed=$matches[2]\";s:30:\"events/category/(.+?)/embed/?$\";s:49:\"index.php?tribe_events_cat=$matches[1]&embed=true\";s:42:\"events/category/(.+?)/page/?([0-9]{1,})/?$\";s:56:\"index.php?tribe_events_cat=$matches[1]&paged=$matches[2]\";s:24:\"events/category/(.+?)/?$\";s:38:\"index.php?tribe_events_cat=$matches[1]\";s:41:\"deleted_event/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:51:\"deleted_event/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:71:\"deleted_event/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"deleted_event/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"deleted_event/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:47:\"deleted_event/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:30:\"deleted_event/([^/]+)/embed/?$\";s:46:\"index.php?deleted_event=$matches[1]&embed=true\";s:34:\"deleted_event/([^/]+)/trackback/?$\";s:40:\"index.php?deleted_event=$matches[1]&tb=1\";s:42:\"deleted_event/([^/]+)/page/?([0-9]{1,})/?$\";s:53:\"index.php?deleted_event=$matches[1]&paged=$matches[2]\";s:49:\"deleted_event/([^/]+)/comment-page-([0-9]{1,})/?$\";s:53:\"index.php?deleted_event=$matches[1]&cpage=$matches[2]\";s:39:\"deleted_event/([^/]+)/wc-api(/(.*))?/?$\";s:54:\"index.php?deleted_event=$matches[1]&wc-api=$matches[3]\";s:50:\"deleted_event/([^/]+)/wc/file/transient(/(.*))?/?$\";s:65:\"index.php?deleted_event=$matches[1]&wc/file/transient=$matches[3]\";s:45:\"deleted_event/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:56:\"deleted_event/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:56:\"deleted_event/[^/]+/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:67:\"deleted_event/[^/]+/attachment/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:38:\"deleted_event/([^/]+)(?:/([0-9]+))?/?$\";s:52:\"index.php?deleted_event=$matches[1]&page=$matches[2]\";s:30:\"deleted_event/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:40:\"deleted_event/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:60:\"deleted_event/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:55:\"deleted_event/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:55:\"deleted_event/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:36:\"deleted_event/[^/]+/([^/]+)/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:41:\"index.php?&page_id=4124&cpage=$matches[1]\";s:17:\"wc-api(/(.*))?/?$\";s:29:\"index.php?&wc-api=$matches[2]\";s:28:\"wc/file/transient(/(.*))?/?$\";s:40:\"index.php?&wc/file/transient=$matches[2]\";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:26:\"comments/wc-api(/(.*))?/?$\";s:29:\"index.php?&wc-api=$matches[2]\";s:37:\"comments/wc/file/transient(/(.*))?/?$\";s:40:\"index.php?&wc/file/transient=$matches[2]\";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:29:\"search/(.+)/wc-api(/(.*))?/?$\";s:42:\"index.php?s=$matches[1]&wc-api=$matches[3]\";s:40:\"search/(.+)/wc/file/transient(/(.*))?/?$\";s:53:\"index.php?s=$matches[1]&wc/file/transient=$matches[3]\";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:32:\"author/([^/]+)/wc-api(/(.*))?/?$\";s:52:\"index.php?author_name=$matches[1]&wc-api=$matches[3]\";s:43:\"author/([^/]+)/wc/file/transient(/(.*))?/?$\";s:63:\"index.php?author_name=$matches[1]&wc/file/transient=$matches[3]\";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:54:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/wc-api(/(.*))?/?$\";s:82:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&wc-api=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/wc/file/transient(/(.*))?/?$\";s:93:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&wc/file/transient=$matches[5]\";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:41:\"([0-9]{4})/([0-9]{1,2})/wc-api(/(.*))?/?$\";s:66:\"index.php?year=$matches[1]&monthnum=$matches[2]&wc-api=$matches[4]\";s:52:\"([0-9]{4})/([0-9]{1,2})/wc/file/transient(/(.*))?/?$\";s:77:\"index.php?year=$matches[1]&monthnum=$matches[2]&wc/file/transient=$matches[4]\";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:28:\"([0-9]{4})/wc-api(/(.*))?/?$\";s:45:\"index.php?year=$matches[1]&wc-api=$matches[3]\";s:39:\"([0-9]{4})/wc/file/transient(/(.*))?/?$\";s:56:\"index.php?year=$matches[1]&wc/file/transient=$matches[3]\";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:62:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/wc-api(/(.*))?/?$\";s:99:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&wc-api=$matches[6]\";s:73:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/wc/file/transient(/(.*))?/?$\";s:110:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&wc/file/transient=$matches[6]\";s:62:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:73:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:73:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:84:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";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:25:\"(.?.+?)/wc-api(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&wc-api=$matches[3]\";s:36:\"(.?.+?)/wc/file/transient(/(.*))?/?$\";s:60:\"index.php?pagename=$matches[1]&wc/file/transient=$matches[3]\";s:28:\"(.?.+?)/order-pay(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&order-pay=$matches[3]\";s:33:\"(.?.+?)/order-received(/(.*))?/?$\";s:57:\"index.php?pagename=$matches[1]&order-received=$matches[3]\";s:25:\"(.?.+?)/orders(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&orders=$matches[3]\";s:29:\"(.?.+?)/view-order(/(.*))?/?$\";s:53:\"index.php?pagename=$matches[1]&view-order=$matches[3]\";s:28:\"(.?.+?)/downloads(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&downloads=$matches[3]\";s:31:\"(.?.+?)/edit-account(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&edit-account=$matches[3]\";s:31:\"(.?.+?)/edit-address(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&edit-address=$matches[3]\";s:34:\"(.?.+?)/payment-methods(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&payment-methods=$matches[3]\";s:32:\"(.?.+?)/lost-password(/(.*))?/?$\";s:56:\"index.php?pagename=$matches[1]&lost-password=$matches[3]\";s:34:\"(.?.+?)/customer-logout(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&customer-logout=$matches[3]\";s:37:\"(.?.+?)/add-payment-method(/(.*))?/?$\";s:61:\"index.php?pagename=$matches[1]&add-payment-method=$matches[3]\";s:40:\"(.?.+?)/delete-payment-method(/(.*))?/?$\";s:64:\"index.php?pagename=$matches[1]&delete-payment-method=$matches[3]\";s:45:\"(.?.+?)/set-default-payment-method(/(.*))?/?$\";s:69:\"index.php?pagename=$matches[1]&set-default-payment-method=$matches[3]\";s:31:\".?.+?/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:42:\".?.+?/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:42:\".?.+?/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:53:\".?.+?/attachment/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','auto'),(1456,'tribe_customizer','a:1:{s:15:\"global_elements\";a:2:{s:9:\"font_size\";s:1:\"0\";s:14:\"font_size_base\";s:2:\"16\";}}','on'),(1457,'woocommerce_admin_customize_store_completed','yes','auto'),(1458,'woocommerce_maybe_regenerate_images_hash','991b1ca641921cf0f5baf7a2fe85861b','auto'),(3052,'course-category_children','a:0:{}','auto'),(3076,'wpb_js_composer_license_activation_notified','yes','auto'),(3389,'secret_key','uNVfE&0JWh/%?^p@y=U(UNesiffMAvo)~f3 I&L (TxU`R_1m?;%s$t+c;:vbNR%','off'),(3793,'woocommerce_share_key','UD2E653nZT24blhJee7M8f4BgPnv6vVW','auto'),(4834,'jetpack_connection_active_plugins','a:1:{s:11:\"woocommerce\";a:1:{s:4:\"name\";s:11:\"WooCommerce\";}}','auto'),(4912,'wc_has_tracked_default_theme','1','auto'),(4914,'woocommerce_onboarding_profile','a:9:{s:15:\"business_choice\";s:34:\"im_setting_up_a_store_for_a_client\";s:21:\"selling_online_answer\";N;s:17:\"selling_platforms\";N;s:20:\"is_store_country_set\";b:1;s:8:\"industry\";a:1:{i:0;s:22:\"education_and_learning\";}s:18:\"is_agree_marketing\";b:1;s:11:\"store_email\";s:15:\"ductai2982@gmail.com\";s:9:\"completed\";b:1;s:23:\"is_plugins_page_skipped\";b:1;}','auto'),(4921,'woocommerce_store_pages_only','yes','auto'),(4922,'woocommerce_private_link','no','auto'),(4925,'woocommerce_free_shipping_1_settings','a:4:{s:5:\"title\";s:13:\"Free shipping\";s:8:\"requires\";s:0:\"\";s:10:\"min_amount\";s:1:\"0\";s:16:\"ignore_discounts\";s:2:\"no\";}','auto'),(4926,'woocommerce_admin_created_default_shipping_zones','yes','auto'),(4927,'_transient_woocommerce_shipping_task_zone_count_transient','1','on'),(4931,'woocommerce_cod_settings','a:6:{s:7:\"enabled\";s:3:\"yes\";s:5:\"title\";s:16:\"Cash on delivery\";s:11:\"description\";s:28:\"Pay with cash upon delivery.\";s:12:\"instructions\";s:28:\"Pay with cash upon delivery.\";s:18:\"enable_for_methods\";a:0:{}s:18:\"enable_for_virtual\";s:3:\"yes\";}','auto'),(5020,'woocommerce_onboarding_subscribed_to_mailchimp','yes','auto'),(5021,'woocommerce_tracker_last_send','1746023380','auto'),(5031,'woocommerce_tracker_ua','a:1:{i:0;s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36\";}','off'),(5627,'loco_recent','a:4:{s:1:\"c\";s:21:\"Loco_data_RecentItems\";s:1:\"v\";i:0;s:1:\"d\";a:1:{s:6:\"bundle\";a:2:{s:14:\"theme.iacademy\";i:1730280045;s:24:\"plugin.mkdf-lms/main.php\";i:1730286609;}}s:1:\"t\";i:1730286609;}','off'),(6503,'woocommerce_task_list_completed_lists','a:1:{i:0;s:5:\"setup\";}','auto'),(6504,'woocommerce_default_homepage_layout','two_columns','auto'),(8701,'rs-templates-new','','off');
INSERT INTO `wp_options` VALUES (8702,'rs-templates','a:3:{s:4:\"hash\";s:32:\"946c0d4f47d3ad7163d2be422620df85\";s:6:\"slider\";a:781:{i:0;a:24:{s:2:\"id\";s:1:\"1\";s:5:\"title\";s:16:\"Classic Carousel\";s:5:\"alias\";s:16:\"classic-carousel\";s:3:\"zip\";s:20:\"classic-carousel.zip\";s:3:\"uid\";s:32:\"146a01dd380c0cdee85c4456ee68cd84\";s:3:\"img\";s:27:\"classic-carousel/slider.jpg\";s:7:\"preview\";s:147:\"http://revolution.themepunch.com/carousel-slider-plugin/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=carousel-slider-plugin\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:141:\"<span class=\"ttm_content\">Our classic, full-width carousel example. Drag, swipe or click to navigate!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-22 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:1;a:24:{s:2:\"id\";s:1:\"2\";s:5:\"title\";s:14:\"Classic Slider\";s:5:\"alias\";s:13:\"classicslider\";s:3:\"zip\";s:17:\"classicslider.zip\";s:3:\"uid\";s:32:\"a0d6a9248c9066b404ba0f1cdadc5cf2\";s:3:\"img\";s:24:\"classicslider/slider.jpg\";s:7:\"preview\";s:157:\"http://revolution.themepunch.com/wordpress-slideshow-gallery/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-slideshow-gallery\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:136:\" <span class=\"ttm_content\">A classic slideshow example with timer, bullets and arrow navigation.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:2;a:24:{s:2:\"id\";s:1:\"3\";s:5:\"title\";s:12:\"Content Tabs\";s:5:\"alias\";s:11:\"contenttabs\";s:3:\"zip\";s:15:\"contenttabs.zip\";s:3:\"uid\";s:32:\"e02e91604b690123a3d07a65582c4fd0\";s:3:\"img\";s:22:\"contenttabs/slider.jpg\";s:7:\"preview\";s:161:\"http://revolution.themepunch.com/wordpress-content-tabs-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-content-tabs-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:170:\" <span class=\"ttm_content\">An auto-size slider with a cool split-text animation effect. Navigate with vertical bullets and thumbs.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:3;a:25:{s:2:\"id\";s:1:\"4\";s:5:\"title\";s:13:\"Facebook Feed\";s:5:\"alias\";s:13:\"facebook-feed\";s:3:\"zip\";s:17:\"facebook-feed.zip\";s:3:\"uid\";s:32:\"5506431d5b1babcb25dcf52c508d42e3\";s:3:\"img\";s:24:\"facebook-feed/slider.jpg\";s:7:\"preview\";s:149:\"http://revolution.themepunch.com/wordpress-facebook-feed/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-facebook-feed\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:174:\"<span class=\"ttm_content\"> This slider is automatically populated by a Facebook stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"Facebook Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:4;a:24:{s:2:\"id\";s:1:\"5\";s:5:\"title\";s:7:\"Fashion\";s:5:\"alias\";s:7:\"fashion\";s:3:\"zip\";s:11:\"fashion.zip\";s:3:\"uid\";s:32:\"4f4b914d6db35e19101ff003c4e7ea3a\";s:3:\"img\";s:18:\"fashion/slider.jpg\";s:7:\"preview\";s:165:\"http://revolution.themepunch.com/wordpress-one-page-slider-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-one-page-slider-theme\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:183:\"  <span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or bullets.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:5;a:24:{s:2:\"id\";s:1:\"6\";s:5:\"title\";s:14:\"Flickr Gallery\";s:5:\"alias\";s:14:\"flickr-gallery\";s:3:\"zip\";s:18:\"flickr-gallery.zip\";s:3:\"uid\";s:32:\"ad85cfac7acfa678e6a1b8febfee51ed\";s:3:\"img\";s:25:\"flickr-gallery/slider.jpg\";s:7:\"preview\";s:149:\"http://revolution.themepunch.com/wordpress-flickr-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-flickr-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"640\";s:11:\"description\";s:173:\" <span class=\"ttm_content\"> This slider is automatically populated by a Flickr stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:6;a:25:{s:2:\"id\";s:1:\"7\";s:5:\"title\";s:3:\"Gym\";s:5:\"alias\";s:3:\"gym\";s:3:\"zip\";s:7:\"gym.zip\";s:3:\"uid\";s:32:\"e4d81f13f96fb9bc905f4ad89615032b\";s:3:\"img\";s:14:\"gym/slider.jpg\";s:7:\"preview\";s:153:\"http://revolution.themepunch.com/one-page-wordpress-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=one-page-wordpress-slider\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:189:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the slider menu.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:7;a:24:{s:2:\"id\";s:1:\"8\";s:5:\"title\";s:18:\"Highlight Carousel\";s:5:\"alias\";s:18:\"highlight-carousel\";s:3:\"zip\";s:22:\"highlight-carousel.zip\";s:3:\"uid\";s:32:\"ada52163f723a942f782351fa0396b3d\";s:3:\"img\";s:29:\"highlight-carousel/slider.jpg\";s:7:\"preview\";s:147:\"http://revolution.themepunch.com/wordpress-swipe-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-swipe-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"720\";s:11:\"description\";s:138:\"  <span class=\"ttm_content\">A swipe-controlled carousel with an additional tab-based navigation.</span>\r\n<span class=\"ttm_space\"></span>\r\n\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:8;a:24:{s:2:\"id\";s:1:\"9\";s:5:\"title\";s:18:\"Highlight Showcase\";s:5:\"alias\";s:18:\"highlight-showcase\";s:3:\"zip\";s:22:\"highlight-showcase.zip\";s:3:\"uid\";s:32:\"2bfe0bd410fb48fec9d942eab1e21530\";s:3:\"img\";s:29:\"highlight-showcase/slider.jpg\";s:7:\"preview\";s:159:\"http://revolution.themepunch.com/wordpress-parallax-slideshow/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-parallax-slideshow\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"720\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">A tab-based navigation, a slideshow timer and cool animations make this slider interesting!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:9;a:24:{s:2:\"id\";s:2:\"10\";s:5:\"title\";s:10:\"Image Hero\";s:5:\"alias\";s:10:\"image-hero\";s:3:\"zip\";s:13:\"imagehero.zip\";s:3:\"uid\";s:32:\"7db18781d44f2adc28c962440894aac1\";s:3:\"img\";s:20:\"imagehero/slider.jpg\";s:7:\"preview\";s:143:\"http://revolution.themepunch.com/wordpress-hero-image/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-hero-image\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:121:\"<span class=\"ttm_content\">A commonly used full-width image hero block with texts.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:10;a:25:{s:2:\"id\";s:2:\"11\";s:5:\"title\";s:17:\"Instagram Gallery\";s:5:\"alias\";s:13:\"insta-gallery\";s:3:\"zip\";s:17:\"insta-gallery.zip\";s:3:\"uid\";s:32:\"711732b0d42ec2b57818a2b9b1d86cba\";s:3:\"img\";s:24:\"insta-gallery/slider.jpg\";s:7:\"preview\";s:157:\"http://revolution.themepunch.com/wordpress-instagram-gallery/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-instagram-gallery\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"640\";s:11:\"description\";s:174:\"<span class=\"ttm_content\">This slider is automatically populated by a Instagram stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:416:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"Instagram Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:11;a:25:{s:2:\"id\";s:2:\"12\";s:5:\"title\";s:21:\"Levano Restaurant Bar\";s:5:\"alias\";s:19:\"levanorestaurantbar\";s:3:\"zip\";s:23:\"levanorestaurantbar.zip\";s:3:\"uid\";s:32:\"4178f837db67d1b2eb6cb5840bbd0b42\";s:3:\"img\";s:30:\"levanorestaurantbar/slider.jpg\";s:7:\"preview\";s:161:\"http://revolution.themepunch.com/wordpress-front-page-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-front-page-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:181:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or bullets.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:12;a:25:{s:2:\"id\";s:2:\"13\";s:5:\"title\";s:19:\"Main Feature Slider\";s:5:\"alias\";s:11:\"mainfeature\";s:3:\"zip\";s:15:\"mainfeature.zip\";s:3:\"uid\";s:32:\"1e002a3230ab00095bedc6f60393ee7f\";s:3:\"img\";s:22:\"mainfeature/slider.jpg\";s:7:\"preview\";s:127:\"http://revolution.themepunch.com/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=revolution.themepunch.com\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"750\";s:11:\"description\";s:127:\" <span class=\"ttm_content\">A slightly stripped down version of the main preview slider.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:13;a:25:{s:2:\"id\";s:2:\"14\";s:5:\"title\";s:17:\"Media Gallery Two\";s:5:\"alias\";s:17:\"media-gallery-two\";s:3:\"zip\";s:21:\"media-gallery-two.zip\";s:3:\"uid\";s:32:\"d002f1b1b55805f9322c264c5504ba5a\";s:3:\"img\";s:28:\"media-gallery-two/slider.jpg\";s:7:\"preview\";s:163:\"http://revolution.themepunch.com/wordpress-media-gallery-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-media-gallery-slider\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:6:\"6.2.22\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"692\";s:11:\"description\";s:127:\"<span class=\"ttm_content\">A media gallery example with Vimeo, HTML5 and Youtube videos.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change media and titles.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:14;a:25:{s:2:\"id\";s:2:\"15\";s:5:\"title\";s:23:\"Media Carousel Autoplay\";s:5:\"alias\";s:23:\"media-carousel-autoplay\";s:3:\"zip\";s:27:\"media-carousel-autoplay.zip\";s:3:\"uid\";s:32:\"393d7875b1cc9d933378b35e4f645d76\";s:3:\"img\";s:34:\"media-carousel-autoplay/slider.jpg\";s:7:\"preview\";s:149:\"http://revolution.themepunch.com/wordpress-media-gallery/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-media-gallery\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"720\";s:6:\"height\";s:3:\"405\";s:11:\"description\";s:153:\"<span class=\"ttm_content\">A media carousel with \"autoplay\" activated. Swipe or click tabs to navigate the slider.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:289:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change media and caption texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:15;a:25:{s:2:\"id\";s:2:\"16\";s:5:\"title\";s:21:\"News Background Video\";s:5:\"alias\";s:21:\"news-background-video\";s:3:\"zip\";s:17:\"news-bg-video.zip\";s:3:\"uid\";s:32:\"a0efe44ac3af0f958b3f84c816a08272\";s:3:\"img\";s:24:\"news-bg-video/slider.jpg\";s:7:\"preview\";s:151:\"http://revolution.themepunch.com/wordpress-content-blocks/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-content-blocks\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A hero block with HTML5 background video that plays when entering the screen.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background video and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:16;a:25:{s:2:\"id\";s:2:\"17\";s:5:\"title\";s:12:\"News Gallery\";s:5:\"alias\";s:12:\"news-gallery\";s:3:\"zip\";s:16:\"news-gallery.zip\";s:3:\"uid\";s:32:\"3a069c3b286dbb9ee435563f747e3300\";s:3:\"img\";s:23:\"news-gallery/slider.jpg\";s:7:\"preview\";s:147:\"http://revolution.themepunch.com/wordpress-news-rotator/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-news-rotator\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:131:\"<span class=\"ttm_content\">A news gallery slideshow with tab navigation. Great for any blog!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:17;a:25:{s:2:\"id\";s:2:\"18\";s:5:\"title\";s:23:\"News Gallery Post Based\";s:5:\"alias\";s:23:\"news-gallery-post-based\";s:3:\"zip\";s:27:\"news-gallery-post-based.zip\";s:3:\"uid\";s:32:\"32fe05b1039c29ab9420bfd15aec5488\";s:3:\"img\";s:34:\"news-gallery-post-based/slider.jpg\";s:7:\"preview\";s:145:\"http://revolution.themepunch.com/wordpress-post-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-post-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:125:\"<span class=\"ttm_content\"> This slider is automatically populated by WordPress posts.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:423:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"Post-Based Slider\"</a>. Make sure to select the post type you want to display in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:18;a:25:{s:2:\"id\";s:2:\"19\";s:5:\"title\";s:9:\"News Hero\";s:5:\"alias\";s:9:\"news-hero\";s:3:\"zip\";s:13:\"news-hero.zip\";s:3:\"uid\";s:32:\"96a0385538a17c8c81ed8175740f70ea\";s:3:\"img\";s:20:\"news-hero/slider.jpg\";s:7:\"preview\";s:151:\"http://revolution.themepunch.com/wordpress-content-blocks/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-content-blocks\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:107:\"<span class=\"ttm_content\">A image hero block with ken burns effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:19;a:25:{s:2:\"id\";s:2:\"20\";s:5:\"title\";s:10:\"News Video\";s:5:\"alias\";s:10:\"news-video\";s:3:\"zip\";s:14:\"news-video.zip\";s:3:\"uid\";s:32:\"f901e9e16e0363248156c2209eb584e9\";s:3:\"img\";s:21:\"news-video/slider.jpg\";s:7:\"preview\";s:151:\"http://revolution.themepunch.com/wordpress-content-blocks/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-content-blocks\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:128:\"<span class=\"ttm_content\">A Vimeo background video hero block with play / pause buttons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:289:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the video and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:20;a:25:{s:2:\"id\";s:2:\"21\";s:5:\"title\";s:15:\"Newsletter Hero\";s:5:\"alias\";s:15:\"newsletter-hero\";s:3:\"zip\";s:19:\"newsletter-hero.zip\";s:3:\"uid\";s:32:\"6290a9864d8c4c6311784586ed1cc5fe\";s:3:\"img\";s:26:\"newsletter-hero/slider.jpg\";s:7:\"preview\";s:157:\"http://revolution.themepunch.com/wordpress-newsletter-signup/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-newsletter-signup\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:137:\"<span class=\"ttm_content\">This hero block uses a custom styled Mailchimp newsletter signup field.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:435:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image, texts, and <a href=\"https://www.themepunch.com/faq/how-to-setup-mailchimp-for-the-newsletter-hero-template/\" target=\"_blank\">Mailchimp code</a>.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:21;a:25:{s:2:\"id\";s:2:\"22\";s:5:\"title\";s:11:\"Not Generic\";s:5:\"alias\";s:10:\"notgeneric\";s:3:\"zip\";s:14:\"notgeneric.zip\";s:3:\"uid\";s:32:\"9d87ba95e02210a9f82387add2ceadf9\";s:3:\"img\";s:21:\"notgeneric/slider.jpg\";s:7:\"preview\";s:157:\"http://revolution.themepunch.com/wordpress-fullscreen-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-fullscreen-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">A full-screen slider with a layer based navigation and sleek content elements.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:22;a:25:{s:2:\"id\";s:2:\"23\";s:5:\"title\";s:11:\"Photography\";s:5:\"alias\";s:11:\"photography\";s:3:\"zip\";s:15:\"photography.zip\";s:3:\"uid\";s:32:\"1b2072547afb75e49f33b016751ed360\";s:3:\"img\";s:22:\"photography/slider.jpg\";s:7:\"preview\";s:159:\"http://revolution.themepunch.com/wordpress-photography-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-photography-slider\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the layer-based menu.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:23;a:25:{s:2:\"id\";s:2:\"24\";s:5:\"title\";s:20:\"Photography Carousel\";s:5:\"alias\";s:20:\"photography-carousel\";s:3:\"zip\";s:24:\"photography-carousel.zip\";s:3:\"uid\";s:32:\"9a84b859ba23dc49ba8784e3a86545fa\";s:3:\"img\";s:31:\"photography-carousel/slider.jpg\";s:7:\"preview\";s:149:\"http://revolution.themepunch.com/wordpress-photo-gallery/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-photo-gallery\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">A front-page carousel that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the layer-based menu.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:24;a:25:{s:2:\"id\";s:2:\"25\";s:5:\"title\";s:16:\"Search Form Hero\";s:5:\"alias\";s:16:\"search-form-hero\";s:3:\"zip\";s:20:\"search-form-hero.zip\";s:3:\"uid\";s:32:\"e09eb1bd0f22b3a2b02a1aa251dd1f3e\";s:3:\"img\";s:27:\"search-form-hero/slider.jpg\";s:7:\"preview\";s:155:\"http://revolution.themepunch.com/wordpress-search-form-hero/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-search-form-hero\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">This hero block uses a custom styled input field to show search results on a WordPress site.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:320:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image, texts, and search field code.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:25;a:25:{s:2:\"id\";s:2:\"26\";s:5:\"title\";s:17:\"Showcase Carousel\";s:5:\"alias\";s:16:\"showcasecarousel\";s:3:\"zip\";s:20:\"showcasecarousel.zip\";s:3:\"uid\";s:32:\"c5ca218398331bd2c064efc2f62eae56\";s:3:\"img\";s:27:\"showcasecarousel/slider.jpg\";s:7:\"preview\";s:159:\"http://revolution.themepunch.com/wordpress-cover-flow-gallery/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-cover-flow-gallery\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:129:\"<span class=\"ttm_content\">A fancy carousel that rotates, fades and scales slider items.</span>\r\n<span class=\"ttm_space\"></span>\r\n\";s:11:\"setup_notes\";s:284:\"<span class=\"ttm_content\">This is a \"Default\" content carousel. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:26;a:25:{s:2:\"id\";s:2:\"27\";s:5:\"title\";s:11:\"Sports Hero\";s:5:\"alias\";s:11:\"sports-hero\";s:3:\"zip\";s:14:\"sportshero.zip\";s:3:\"uid\";s:32:\"8de7a145f32a362d618d2595ffa2f724\";s:3:\"img\";s:21:\"sportshero/slider.jpg\";s:7:\"preview\";s:143:\"http://revolution.themepunch.com/wordpress-image-hero/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-image-hero\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"720\";s:11:\"description\";s:113:\"<span class=\"ttm_content\">An sports themed image hero block with buttons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:27;a:25:{s:2:\"id\";s:2:\"29\";s:5:\"title\";s:13:\"Vimeo Gallery\";s:5:\"alias\";s:13:\"vimeo-gallery\";s:3:\"zip\";s:17:\"vimeo-gallery.zip\";s:3:\"uid\";s:32:\"fa824ce1ff3942ec268fc9eda60df539\";s:3:\"img\";s:24:\"vimeo-gallery/slider.jpg\";s:7:\"preview\";s:149:\"http://revolution.themepunch.com/wordpress-vimeo-gallery/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-vimeo-gallery\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"692\";s:11:\"description\";s:170:\"<span class=\"ttm_content\">This slider is automatically populated by a Vimeo stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:412:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"Vimeo Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:28;a:25:{s:2:\"id\";s:2:\"30\";s:5:\"title\";s:10:\"Vimeo Hero\";s:5:\"alias\";s:9:\"vimeohero\";s:3:\"zip\";s:13:\"vimeohero.zip\";s:3:\"uid\";s:32:\"c575575f96173d88589cddcb06120b77\";s:3:\"img\";s:20:\"vimeohero/slider.jpg\";s:7:\"preview\";s:143:\"http://revolution.themepunch.com/wordpress-hero-vimeo/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-hero-vimeo\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:116:\"<span class=\"ttm_content\">A commonly used Vimeo video background hero block.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:464:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background video and texts.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:29;a:25:{s:2:\"id\";s:2:\"31\";s:5:\"title\";s:16:\"Web Product Dark\";s:5:\"alias\";s:16:\"web-product-dark\";s:3:\"zip\";s:20:\"web-product-dark.zip\";s:3:\"uid\";s:32:\"39b872cf0608e63c3a503e58374dc30a\";s:3:\"img\";s:27:\"web-product-dark/slider.jpg\";s:7:\"preview\";s:155:\"http://revolution.themepunch.com/wordpress-frontpage-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-frontpage-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the layer-based menu.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:30;a:25:{s:2:\"id\";s:2:\"32\";s:5:\"title\";s:21:\"Web Product Dark Hero\";s:5:\"alias\";s:21:\"web-product-dark-hero\";s:3:\"zip\";s:25:\"web-product-dark-hero.zip\";s:3:\"uid\";s:32:\"b6784e8925221f36677217979d26e6f0\";s:3:\"img\";s:32:\"web-product-dark-hero/slider.jpg\";s:7:\"preview\";s:147:\"http://revolution.themepunch.com/wordpress-header-image/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-header-image\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:162:\"<span class=\"ttm_content\">A modern hero block with three common devices. The screens of each device can be changed easily!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:31;a:25:{s:2:\"id\";s:2:\"33\";s:5:\"title\";s:22:\"Web Product Light Hero\";s:5:\"alias\";s:22:\"web-product-light-hero\";s:3:\"zip\";s:26:\"web-product-light-hero.zip\";s:3:\"uid\";s:32:\"428e65d6aaa6ef775429989d50516492\";s:3:\"img\";s:33:\"web-product-light-hero/slider.jpg\";s:7:\"preview\";s:143:\"http://revolution.themepunch.com/hero-image-wordpress/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=hero-image-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:162:\"<span class=\"ttm_content\">A modern hero block with three common devices. The screens of each device can be changed easily!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:289:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:32;a:25:{s:2:\"id\";s:2:\"34\";s:5:\"title\";s:17:\"Web Product Light\";s:5:\"alias\";s:15:\"webproductlight\";s:3:\"zip\";s:19:\"webproductlight.zip\";s:3:\"uid\";s:32:\"fa23dab5bf1139c6393828647a9de4e0\";s:3:\"img\";s:26:\"webproductlight/slider.jpg\";s:7:\"preview\";s:143:\"http://revolution.themepunch.com/wordpress-cover-page/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-cover-page\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the layer-based menu.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:33;a:25:{s:2:\"id\";s:2:\"35\";s:5:\"title\";s:15:\"Youtube Gallery\";s:5:\"alias\";s:15:\"youtube-gallery\";s:3:\"zip\";s:19:\"youtube-gallery.zip\";s:3:\"uid\";s:32:\"ee9e4928ac74f5f0c0b697ce708f5aa7\";s:3:\"img\";s:26:\"youtube-gallery/slider.jpg\";s:7:\"preview\";s:153:\"http://revolution.themepunch.com/wordpress-youtube-gallery/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-youtube-gallery\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:173:\"<span class=\"ttm_content\"> This slider is automatically populated by a YouTube stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:414:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"YouTube Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:34;a:25:{s:2:\"id\";s:2:\"36\";s:5:\"title\";s:12:\"Youtube Hero\";s:5:\"alias\";s:11:\"youtubehero\";s:3:\"zip\";s:15:\"youtubehero.zip\";s:3:\"uid\";s:32:\"e0b2c12a45841bdf21cb96305f2c85bf\";s:3:\"img\";s:22:\"youtubehero/slider.jpg\";s:7:\"preview\";s:151:\"http://revolution.themepunch.com/wordpress-youtube-header/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-youtube-header\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:104:\"<span class=\"ttm_content\">A YouTube video background hero block.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:633:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background video and texts.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\nLearn how to <a href=\"https://www.themepunch.com/faq/enable-sound-for-the-youtube-hero-template/\" target=\"_blank\">enable sound for the background video</a><br /><br />\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:35;a:25:{s:2:\"id\";s:2:\"37\";s:5:\"title\";s:13:\"Scroll Effect\";s:5:\"alias\";s:13:\"scroll-effect\";s:3:\"zip\";s:17:\"scroll-effect.zip\";s:3:\"uid\";s:32:\"417f59e9db87aa7e47c8509eb88d4af6\";s:3:\"img\";s:23:\"scrolleffect/slide1.jpg\";s:7:\"preview\";s:155:\"http://revolution.themepunch.com/big-bold-fullscreen-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=big-bold-fullscreen-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:134:\"<span class=\"ttm_content\">A full-screen slider with a unique scroll effect and big, bold text.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:485:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>For further configuration options please view the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:36;a:25:{s:2:\"id\";s:2:\"38\";s:5:\"title\";s:12:\"Content Zoom\";s:5:\"alias\";s:12:\"content-zoom\";s:3:\"zip\";s:16:\"content-zoom.zip\";s:3:\"uid\";s:32:\"42ef8cdb70d42ec6ff6fa3b69a027b5f\";s:3:\"img\";s:22:\"contentzoom/slide1.jpg\";s:7:\"preview\";s:141:\"http://revolution.themepunch.com/content-zoom-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=content-zoom-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:243:\"<span class=\"ttm_content\">A very unique full-width slider that uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to their potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:371:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:37;a:25:{s:2:\"id\";s:2:\"39\";s:5:\"title\";s:13:\"Food Carousel\";s:5:\"alias\";s:13:\"food-carousel\";s:3:\"zip\";s:17:\"food-carousel.zip\";s:3:\"uid\";s:32:\"a7bf54527b6658a0a308c70c729779fe\";s:3:\"img\";s:29:\"foodcarousel/slider_cover.jpg\";s:7:\"preview\";s:143:\"http://revolution.themepunch.com/food-carousel-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=food-carousel-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:267:\"<span class=\"ttm_content\">A fancy carousel with detail content on each slide. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> are used to show and hide layers.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:371:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:38;a:25:{s:2:\"id\";s:2:\"41\";s:5:\"title\";s:22:\"Travel Static Captions\";s:5:\"alias\";s:22:\"travel-static-captions\";s:3:\"zip\";s:26:\"travel-static-captions.zip\";s:3:\"uid\";s:32:\"bbe7d61c7c741ebc7aa1ce1082b0cb71\";s:3:\"img\";s:33:\"travel-static-captions/slide1.jpg\";s:7:\"preview\";s:135:\"http://revolution.themepunch.com/travel-slideshow/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=travel-slideshow\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:148:\"<span class=\"ttm_content\">A slideshow example with static captions layers above a rotating image background.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:39;a:25:{s:2:\"id\";s:2:\"42\";s:5:\"title\";s:7:\"Concept\";s:5:\"alias\";s:7:\"concept\";s:3:\"zip\";s:11:\"concept.zip\";s:3:\"uid\";s:32:\"47cb06083e87503762f6746725117a3c\";s:3:\"img\";s:18:\"concept/slide1.jpg\";s:7:\"preview\";s:157:\"http://revolution.themepunch.com/fullscreen-wordpress-plugin/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=fullscreen-wordpress-plugin\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">A full-screen slider that uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to their potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:371:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:40;a:25:{s:2:\"id\";s:2:\"43\";s:5:\"title\";s:15:\"True Fullscreen\";s:5:\"alias\";s:17:\"fullscreen-button\";s:3:\"zip\";s:21:\"fullscreen-button.zip\";s:3:\"uid\";s:32:\"618a43bdf89333b555531f6d6ecde359\";s:3:\"img\";s:28:\"fullscreen-button/slide1.jpg\";s:7:\"preview\";s:157:\"http://revolution.themepunch.com/wordpress-sidebar-slideshow/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-sidebar-slideshow\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:246:\"<span class=\"ttm_content\">A slider with a full-screen button that uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to their potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:297:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change the background images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:41;a:25:{s:2:\"id\";s:2:\"44\";s:5:\"title\";s:16:\"Creative Freedom\";s:5:\"alias\";s:15:\"creativefreedom\";s:3:\"zip\";s:19:\"creativefreedom.zip\";s:3:\"uid\";s:32:\"8902bf6c93126c2c6323626b9e872621\";s:3:\"img\";s:26:\"creativefreedom/slide1.jpg\";s:7:\"preview\";s:147:\"http://revolution.themepunch.com/wordpress-touch-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-touch-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A full-screen slider with a unique vertical navigation and 3D-parallax effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:290:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images, videos and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:42;a:25:{s:2:\"id\";s:2:\"45\";s:5:\"title\";s:17:\"3D Parallax Scene\";s:5:\"alias\";s:13:\"parallaxscene\";s:3:\"zip\";s:17:\"parallaxscene.zip\";s:3:\"uid\";s:32:\"51566f1ce649708e97a0f5dfaf05ea19\";s:3:\"img\";s:24:\"parallaxscene/slide1.jpg\";s:7:\"preview\";s:145:\"http://revolution.themepunch.com/wordpress-3d-parallax/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-3d-parallax\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"700\";s:11:\"description\";s:328:\"<span class=\"ttm_content\">A 3D-parallax hero scene with mouse-controlled effects. Smart image arrangement creates a convincing 3D effect. Tooltips are shown using <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a>.</span>\r\n</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:43;a:25:{s:2:\"id\";s:2:\"46\";s:5:\"title\";s:10:\"Wow Factor\";s:5:\"alias\";s:15:\"slidingoverlays\";s:3:\"zip\";s:19:\"slidingoverlays.zip\";s:3:\"uid\";s:32:\"18002d17e8bc7ca61b0951f5305a759e\";s:3:\"img\";s:26:\"slidingoverlays/slide1.jpg\";s:7:\"preview\";s:157:\"http://revolution.themepunch.com/responsive-wordpress-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=responsive-wordpress-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:106:\"<span class=\"ttm_content\">A 3D-parallax effect full-screen slider.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:44;a:25:{s:2:\"id\";s:2:\"47\";s:5:\"title\";s:14:\"3D Web Product\";s:5:\"alias\";s:25:\"web-product-light-hero-3d\";s:3:\"zip\";s:29:\"web-product-light-hero-3d.zip\";s:3:\"uid\";s:32:\"efd345c5da805414093e46066cefd751\";s:3:\"img\";s:36:\"web-product-light-hero-3d/slide1.jpg\";s:7:\"preview\";s:139:\"http://revolution.themepunch.com/wordpress-3d-scene/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-3d-scene\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"668\";s:11:\"description\";s:149:\"<span class=\"ttm_content\">A 3D-parallax hero scene slider with a convincing depth-effect and animated clouds.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:45;a:25:{s:2:\"id\";s:2:\"48\";s:5:\"title\";s:15:\"WooCommerce Big\";s:5:\"alias\";s:6:\"woobig\";s:3:\"zip\";s:10:\"woobig.zip\";s:3:\"uid\";s:32:\"bfb09a39656c7c80e86b468fc5b3403c\";s:3:\"img\";s:17:\"woobig/slide1.jpg\";s:7:\"preview\";s:139:\"http://revolution.themepunch.com/woocommerce-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=woocommerce-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:173:\"<span class=\"ttm_content\">This slider is automatically populated by WooCommerce posts. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"WooCommerce Slider\"</a>. Make sure to select the products you want to show in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";i:2;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:46;a:25:{s:2:\"id\";s:2:\"49\";s:5:\"title\";s:17:\"WooCommerce Small\";s:5:\"alias\";s:16:\"woocommercesmall\";s:3:\"zip\";s:20:\"woocommercesmall.zip\";s:3:\"uid\";s:32:\"b17c2adcc5c4c4b68a7ac6fee32fa030\";s:3:\"img\";s:27:\"woocommercesmall/slide1.jpg\";s:7:\"preview\";s:139:\"http://revolution.themepunch.com/woocommerce-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=woocommerce-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:3:\"400\";s:6:\"height\";s:3:\"266\";s:11:\"description\";s:174:\" <span class=\"ttm_content\">This slider is automatically populated by WooCommerce posts. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"WooCommerce Slider\"</a>. Make sure to select the products you want to show in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";i:2;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:47;a:25:{s:2:\"id\";s:2:\"50\";s:5:\"title\";s:17:\"Restaurant Header\";s:5:\"alias\";s:10:\"finedining\";s:3:\"zip\";s:14:\"finedining.zip\";s:3:\"uid\";s:32:\"03481a9e258501fbe3888b48830ea845\";s:3:\"img\";s:21:\"finedining/slide1.jpg\";s:7:\"preview\";s:147:\"http://revolution.themepunch.com/restaurant-hero-header/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=restaurant-hero-header\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:275:\"<span class=\"ttm_content\">A full-screen hero block slider that shows different background layers on button hover using <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a>.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:464:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:48;a:25:{s:2:\"id\";s:2:\"51\";s:5:\"title\";s:21:\"Agency Website Header\";s:5:\"alias\";s:12:\"agency-intro\";s:3:\"zip\";s:16:\"agency-intro.zip\";s:3:\"uid\";s:32:\"e9be2afdd55a0c8d0d8d0cc12ba4c82f\";s:3:\"img\";s:23:\"agency-intro/slide1.jpg\";s:7:\"preview\";s:155:\"http://revolution.themepunch.com/agency-website-hero-header/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=agency-website-hero-header\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:302:\" <span class=\"ttm_content\">A full-screen hero block slider with ken burns effect and video modal on button click. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> are used to achieve this effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:371:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:49;a:25:{s:2:\"id\";s:2:\"52\";s:5:\"title\";s:11:\"Team Slider\";s:5:\"alias\";s:7:\"ourteam\";s:3:\"zip\";s:11:\"ourteam.zip\";s:3:\"uid\";s:32:\"d8eb1fec07a79202d1118bb17f70c233\";s:3:\"img\";s:18:\"ourteam/slide1.jpg\";s:7:\"preview\";s:183:\"http://revolution.themepunch.com/thumbnail-hover-slider-revolution-plugin/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=thumbnail-hover-slider-revolution-plugin\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.4\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:303:\"<span class=\"ttm_content\">A team slider that changes slides and displays additional information on thumbnail hover. It uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to achieve this effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:657:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\nLearn how to <a href=\"https://www.themepunch.com/faq/modify-thumbnails-for-our-team-template/\" target=\"_blank\">modify the thumbnails</a><br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:50;a:25:{s:2:\"id\";s:2:\"53\";s:5:\"title\";s:13:\"Team Carousel\";s:5:\"alias\";s:17:\"our-team-carousel\";s:3:\"zip\";s:21:\"our-team-carousel.zip\";s:3:\"uid\";s:32:\"37656d5dcab1f265c025cb2a3d669809\";s:3:\"img\";s:26:\"ourteamcarousel/slide1.jpg\";s:7:\"preview\";s:201:\"http://revolution.themepunch.com/thumbnail-hover-carousel-slider-revolution-plugin/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=thumbnail-hover-carousel-slider-revolution-plugin\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.4\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:306:\" <span class=\"ttm_content\">A team carousel that changes slides and displays additional information on thumbnail hover. It uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to achieve this effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:659:\"<span class=\"ttm_content\">This is a \"Default\" content carousel. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\nLearn how to <a href=\"https://www.themepunch.com/faq/modify-thumbnails-for-our-team-template/\" target=\"_blank\">modify the thumbnails</a><br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:51;a:25:{s:2:\"id\";s:2:\"54\";s:5:\"title\";s:17:\"4K Youtube Slider\";s:5:\"alias\";s:13:\"betteryoutube\";s:3:\"zip\";s:17:\"betteryoutube.zip\";s:3:\"uid\";s:32:\"d7c5fef9f257037d7a148038aa2a1857\";s:3:\"img\";s:24:\"betteryoutube/slide1.jpg\";s:7:\"preview\";s:223:\"http://revolution.themepunch.com/fullscreen-4k-youtube-video-gallery-slider-revolution-plugin/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=fullscreen-4k-youtube-video-gallery-slider-revolution-plugin\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.1.4\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"675\";s:11:\"description\";s:293:\" <span class=\"ttm_content\">A full-screen youtube gallery with 4K videos as an example. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> are used to breathe life into navigation elements.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:535:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change videos and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:52;a:25:{s:2:\"id\";s:2:\"55\";s:5:\"title\";s:21:\"Agency Website Header\";s:5:\"alias\";s:19:\"agencywebsiteheader\";s:3:\"zip\";s:23:\"agencywebsiteheader.zip\";s:3:\"uid\";s:32:\"c11d272c87277a7a38d9e7fd13e27947\";s:3:\"img\";s:30:\"agencywebsiteheader/slide1.jpg\";s:7:\"preview\";s:147:\"http://revolution.themepunch.com/fullscreen-hero-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=fullscreen-hero-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:245:\" <span class=\"ttm_content\">A very unique full-screen slider that uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to their potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:509:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:53;a:25:{s:2:\"id\";s:2:\"56\";s:5:\"title\";s:11:\"Coming Soon\";s:5:\"alias\";s:10:\"comingsoon\";s:3:\"zip\";s:14:\"comingsoon.zip\";s:3:\"uid\";s:32:\"0f89edf995512e6d6e864a2ee7221829\";s:3:\"img\";s:21:\"comingsoon/slide1.jpg\";s:7:\"preview\";s:193:\"http://revolution.themepunch.com/coming-soon-wordpress-under-construction-site/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=coming-soon-wordpress-under-construction-site\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:299:\"<span class=\"ttm_content\">A full-screen slider that can be used as a \"Coming Soon\" page. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> are used to achieve various interaction possibilities.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:638:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>For further configuration options please view the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the slider settings.<br/><br/></span>\r\nInstructions for <a href=\"https://www.themepunch.com/faq/change-date-for-coming-soon-template/\" target=\"_blank\">how to change the date.</a><br /><br />\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:54;a:25:{s:2:\"id\";s:2:\"57\";s:5:\"title\";s:20:\"Christmas Snow Scene\";s:5:\"alias\";s:9:\"snowscene\";s:3:\"zip\";s:13:\"snowscene.zip\";s:3:\"uid\";s:32:\"a747bf0837caff86c62419a746690209\";s:3:\"img\";s:20:\"snowscene/slide1.jpg\";s:7:\"preview\";s:143:\"http://revolution.themepunch.com/christmas-snow-scene/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=christmas-snow-scene\";s:7:\"version\";s:5:\"1.0.5\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:141:\"<span class=\"ttm_content\">A slider with multiple christmas themed slides and a neat snow fall effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:485:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>For further configuration options please view the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:153:\"[{\"path\":\"revslider-snow-addon\\/revslider-snow-addon.php\",\"name\":\"Snow AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:55;a:25:{s:2:\"id\";s:2:\"58\";s:5:\"title\";s:15:\"Rock Band Music\";s:5:\"alias\";s:8:\"rockband\";s:3:\"zip\";s:12:\"rockband.zip\";s:3:\"uid\";s:32:\"5f557a5fad2fd6ca982a6ae6e9619637\";s:3:\"img\";s:19:\"rockband/slide1.jpg\";s:7:\"preview\";s:195:\"http://revolution.themepunch.com/rock-band-music-theme-slider-revolution-plugin/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=rock-band-music-theme-slider-revolution-plugin\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:140:\" <span class=\"ttm_content\">A rock band themed hero block slider with an embedded SoundCloud element.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:464:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background video and texts.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:56;a:25:{s:2:\"id\";s:2:\"59\";s:5:\"title\";s:18:\"Sleek Landing Page\";s:5:\"alias\";s:16:\"sleeklandingpage\";s:3:\"zip\";s:20:\"sleeklandingpage.zip\";s:3:\"uid\";s:32:\"07f7f2608936a8ae226213b7d99eee3f\";s:3:\"img\";s:27:\"sleeklandingpage/slide1.jpg\";s:7:\"preview\";s:175:\"http://revolution.themepunch.com/landing-page-free-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=landing-page-free-wordpress-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:191:\"<span class=\"ttm_content\">A full-screen slider that can be used as an App-Landing-Page. The object layers and custom animations create a unique effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-22 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:57;a:25:{s:2:\"id\";s:2:\"60\";s:5:\"title\";s:16:\"App Landing Page\";s:5:\"alias\";s:14:\"applandingpage\";s:3:\"zip\";s:18:\"applandingpage.zip\";s:3:\"uid\";s:32:\"38eb600893c1484ab8fd2a3dce3678d7\";s:3:\"img\";s:25:\"applandingpage/slide1.jpg\";s:7:\"preview\";s:163:\"http://revolution.themepunch.com/app-landing-page-free-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=app-landing-page-free-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:263:\"<span class=\"ttm_content\">A full-screen hero block that can be used as an app landing page. The detail view is build using <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a>.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:371:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:58;a:25:{s:2:\"id\";s:2:\"61\";s:5:\"title\";s:10:\"Desk Scene\";s:5:\"alias\";s:9:\"deskscene\";s:3:\"zip\";s:13:\"deskscene.zip\";s:3:\"uid\";s:32:\"172a1a89a3e3b333cb4dbeb238f534c5\";s:3:\"img\";s:20:\"deskscene/slide1.jpg\";s:7:\"preview\";s:133:\"http://revolution.themepunch.com/hero-desk-scene/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=hero-desk-scene\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:135:\"<span class=\"ttm_content\">A beautiful desk scene with a cool reveal effect when scrolling down.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:59;a:25:{s:2:\"id\";s:2:\"62\";s:5:\"title\";s:17:\"Clean News Slider\";s:5:\"alias\";s:15:\"cleannewsslider\";s:3:\"zip\";s:19:\"cleannewsslider.zip\";s:3:\"uid\";s:32:\"82c3f521fe31b80984be0f19e1a9899e\";s:3:\"img\";s:26:\"cleannewsslider/slide1.jpg\";s:7:\"preview\";s:145:\"http://revolution.themepunch.com/wordpress-news-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-news-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:132:\"<span class=\"ttm_content\">A slideshow example with clean content and thumbnail navigation.</span>\r\n<span class=\"ttm_space\"></span>\r\n\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:60;a:25:{s:2:\"id\";s:2:\"63\";s:5:\"title\";s:13:\"Image Gallery\";s:5:\"alias\";s:12:\"imagegallery\";s:3:\"zip\";s:16:\"imagegallery.zip\";s:3:\"uid\";s:32:\"cef1d75357df2cb53b990c74a214813e\";s:3:\"img\";s:23:\"imagegallery/slide1.jpg\";s:7:\"preview\";s:163:\"http://revolution.themepunch.com/wordpress-photo-gallery-plugin/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-photo-gallery-plugin\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"667\";s:11:\"description\";s:239:\"<span class=\"ttm_content\">A photo gallery suitable to display your images using <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> to their potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:61;a:25:{s:2:\"id\";s:2:\"64\";s:5:\"title\";s:19:\"Standard WP Gallery\";s:5:\"alias\";s:19:\"standard-wp-gallery\";s:3:\"zip\";s:23:\"standard-wp-gallery.zip\";s:3:\"uid\";s:32:\"632035b8a27652d8081dbdfa343dc93d\";s:3:\"img\";s:30:\"standard-wp-gallery/slide1.jpg\";s:7:\"preview\";s:163:\"http://revolution.themepunch.com/wordpress-photo-gallery-plugin/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-photo-gallery-plugin\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"667\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A photo gallery that uses the \"Standard WP Gallery\" add-on to display images.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:407:\"<span class=\"ttm_content\">Please follow the setup guide on the \"Standard WP Gallery\" add-on page.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";}s:14:\"plugin_require\";s:166:\"[{\"path\":\"revslider-gallery-addon\\/revslider-gallery-addon.php\",\"name\":\"WP Gallery AddOn\",\"url\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-photo-gallery-plugin\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:62;a:25:{s:2:\"id\";s:2:\"65\";s:5:\"title\";s:21:\"Clean News Post Based\";s:5:\"alias\";s:21:\"clean-news-post-based\";s:3:\"zip\";s:25:\"clean-news-post-based.zip\";s:3:\"uid\";s:32:\"f4cf5bbe51afa5a361754bb081cbabf2\";s:3:\"img\";s:32:\"clean-news-post-based/slide1.jpg\";s:7:\"preview\";s:145:\"http://revolution.themepunch.com/wordpress-news-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-news-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:125:\"<span class=\"ttm_content\"> This slider is automatically populated by WordPress posts.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:423:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"Post-Based Slider\"</a>. Make sure to select the post type you want to display in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:63;a:25:{s:2:\"id\";s:2:\"66\";s:5:\"title\";s:22:\"Interactive Whiteboard\";s:5:\"alias\";s:21:\"interactivewhiteboard\";s:3:\"zip\";s:25:\"interactivewhiteboard.zip\";s:3:\"uid\";s:32:\"058b4af535d6c6c7bcec5225845e3eb4\";s:3:\"img\";s:32:\"interactivewhiteboard/slide1.jpg\";s:7:\"preview\";s:189:\"http://revolution.themepunch.com/interactive-whiteboard-animation-free-addon/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=interactive-whiteboard-animation-free-addon\";s:7:\"version\";s:5:\"1.0.5\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:269:\"<span class=\"ttm_content\">This is the example slider from the Whiteboard add-on preview.<br/><a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used to achieve certain effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:541:\"<span class=\"ttm_content\">This slider template requires the <a href=\"https://www.themepunch.com/slider-revolution/whiteboard-addon/\" target=\"_blank\">Whiteboard add-on</a> to be installed. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:185:\"[{\"path\":\"revslider-whiteboard-addon\\/revslider-whiteboard-addon.php\",\"name\":\"Whiteboard AddOn\",\"url\":\"http:\\/\\/revolution.themepunch.com\\/interactive-whiteboard-animation-free-addon\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:64;a:25:{s:2:\"id\";s:2:\"68\";s:5:\"title\";s:17:\"Innovation Slider\";s:5:\"alias\";s:10:\"innovation\";s:3:\"zip\";s:14:\"innovation.zip\";s:3:\"uid\";s:32:\"d3440b69126d9c186fddc713b18b0002\";s:3:\"img\";s:21:\"innovation/slide1.jpg\";s:7:\"preview\";s:170:\"https://revolution.themepunch.com/best-wordpress-slider-plugin-2016/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=best-wordpress-slider-plugin-2016\";s:7:\"version\";s:5:\"1.0.5\";s:8:\"required\";s:7:\"5.2.3.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:258:\"<span class=\"ttm_content\">A full-screen slider with an elegant fade-out parallax effect. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on layers.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:493:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images, videos and texts.<br/>For further configuration options please view the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-03-29 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:65;a:28:{s:2:\"id\";s:2:\"69\";s:5:\"title\";s:25:\"Dark Content Block - Menu\";s:5:\"alias\";s:24:\"dark-fullsite-block-menu\";s:3:\"zip\";s:34:\"packs/dark-fullsite-block-menu.zip\";s:3:\"uid\";s:32:\"bf4bd226719d3c3d3146592976e31ca1\";s:3:\"img\";s:35:\"dark-fullsite-block-menu/slide1.jpg\";s:7:\"preview\";s:162:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=dark-wordpress-parallax-theme\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:66;a:28:{s:2:\"id\";s:2:\"70\";s:5:\"title\";s:25:\"Dark Content Block - Hero\";s:5:\"alias\";s:21:\"dark-fullsite-block-1\";s:3:\"zip\";s:31:\"packs/dark-fullsite-block-1.zip\";s:3:\"uid\";s:32:\"d8859245fe600288ca932dc29aca751f\";s:3:\"img\";s:32:\"dark-fullsite-block-1/slide1.jpg\";s:7:\"preview\";s:162:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=dark-wordpress-parallax-theme\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:67;a:28:{s:2:\"id\";s:2:\"71\";s:5:\"title\";s:26:\"Dark Content Block - About\";s:5:\"alias\";s:27:\"dark-fullsite-block-2-about\";s:3:\"zip\";s:37:\"packs/dark-fullsite-block-2-about.zip\";s:3:\"uid\";s:32:\"298401901521a197a8294c1b4f73df3e\";s:3:\"img\";s:38:\"dark-fullsite-block-2-about/slide1.jpg\";s:7:\"preview\";s:162:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=dark-wordpress-parallax-theme\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:68;a:28:{s:2:\"id\";s:2:\"72\";s:5:\"title\";s:29:\"Dark Content Block - Services\";s:5:\"alias\";s:30:\"dark-fullsite-block-3-services\";s:3:\"zip\";s:40:\"packs/dark-fullsite-block-3-services.zip\";s:3:\"uid\";s:32:\"8da3ed605472ed6a26c745fb52f85f82\";s:3:\"img\";s:41:\"dark-fullsite-block-3-services/slide1.jpg\";s:7:\"preview\";s:162:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=dark-wordpress-parallax-theme\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:69;a:28:{s:2:\"id\";s:2:\"73\";s:5:\"title\";s:29:\"Dark Content Block - Products\";s:5:\"alias\";s:30:\"dark-fullsite-block-4-products\";s:3:\"zip\";s:40:\"packs/dark-fullsite-block-4-products.zip\";s:3:\"uid\";s:32:\"99e4f40399d20261a6131043d0e50b0c\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide1.jpg\";s:7:\"preview\";s:162:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=dark-wordpress-parallax-theme\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:422:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\r\n\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:70;a:28:{s:2:\"id\";s:2:\"74\";s:5:\"title\";s:33:\"Dark Content Block - Testimonials\";s:5:\"alias\";s:34:\"dark-fullsite-block-5-testimonials\";s:3:\"zip\";s:44:\"packs/dark-fullsite-block-5-testimonials.zip\";s:3:\"uid\";s:32:\"2f9121e0eedd51afe85e233d0743acab\";s:3:\"img\";s:45:\"dark-fullsite-block-5-testimonials/slide1.jpg\";s:7:\"preview\";s:162:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=dark-wordpress-parallax-theme\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:71;a:28:{s:2:\"id\";s:2:\"75\";s:5:\"title\";s:28:\"Dark Content Block - Callout\";s:5:\"alias\";s:29:\"dark-fullsite-block-6-callout\";s:3:\"zip\";s:39:\"packs/dark-fullsite-block-6-callout.zip\";s:3:\"uid\";s:32:\"55fbecb113ff21f050be7adc08637329\";s:3:\"img\";s:40:\"dark-fullsite-block-6-callout/slide1.jpg\";s:7:\"preview\";s:162:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=dark-wordpress-parallax-theme\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:72;a:28:{s:2:\"id\";s:2:\"76\";s:5:\"title\";s:27:\"Dark Content Block - Footer\";s:5:\"alias\";s:28:\"dark-fullsite-block-7-footer\";s:3:\"zip\";s:38:\"packs/dark-fullsite-block-7-footer.zip\";s:3:\"uid\";s:32:\"2ff517f5c7c54e3e0c2dd733cfd3400e\";s:3:\"img\";s:39:\"dark-fullsite-block-7-footer/slide1.jpg\";s:7:\"preview\";s:162:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=dark-wordpress-parallax-theme\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:73;a:28:{s:2:\"id\";s:2:\"77\";s:5:\"title\";s:26:\"Light Content Block - Menu\";s:5:\"alias\";s:19:\"fullsite-block-menu\";s:3:\"zip\";s:29:\"packs/fullsite-block-menu.zip\";s:3:\"uid\";s:32:\"8010971f34387d5f94a1f4e577ef382a\";s:3:\"img\";s:30:\"fullsite-block-menu/slide1.jpg\";s:7:\"preview\";s:152:\"https://revolution.themepunch.com/wordpress-parallax-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-parallax-theme\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:74;a:28:{s:2:\"id\";s:2:\"78\";s:5:\"title\";s:26:\"Light Content Block - Hero\";s:5:\"alias\";s:15:\"fullsite-block1\";s:3:\"zip\";s:25:\"packs/fullsite-block1.zip\";s:3:\"uid\";s:32:\"45bf7179843e01ce112e8ec754b0455c\";s:3:\"img\";s:26:\"fullsite-block1/slide1.jpg\";s:7:\"preview\";s:152:\"https://revolution.themepunch.com/wordpress-parallax-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-parallax-theme\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:75;a:28:{s:2:\"id\";s:2:\"79\";s:5:\"title\";s:27:\"Light Content Block - About\";s:5:\"alias\";s:22:\"fullsite-block-2-about\";s:3:\"zip\";s:32:\"packs/fullsite-block-2-about.zip\";s:3:\"uid\";s:32:\"8402b460638a746d36433cb161440b7d\";s:3:\"img\";s:33:\"fullsite-block-2-about/slide1.jpg\";s:7:\"preview\";s:152:\"https://revolution.themepunch.com/wordpress-parallax-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-parallax-theme\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:76;a:28:{s:2:\"id\";s:2:\"80\";s:5:\"title\";s:30:\"Light Content Block - Services\";s:5:\"alias\";s:25:\"fullsite-block-3-services\";s:3:\"zip\";s:35:\"packs/fullsite-block-3-services.zip\";s:3:\"uid\";s:32:\"7b8cea27f4d6ae17c5e1eae12457bd06\";s:3:\"img\";s:36:\"fullsite-block-3-services/slide1.jpg\";s:7:\"preview\";s:152:\"https://revolution.themepunch.com/wordpress-parallax-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-parallax-theme\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:77;a:28:{s:2:\"id\";s:2:\"81\";s:5:\"title\";s:30:\"Light Content Block - Products\";s:5:\"alias\";s:25:\"fullsite-block-4-products\";s:3:\"zip\";s:35:\"packs/fullsite-block-4-products.zip\";s:3:\"uid\";s:32:\"d148935362d7122636cda0635eae4be7\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide1.jpg\";s:7:\"preview\";s:152:\"https://revolution.themepunch.com/wordpress-parallax-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-parallax-theme\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:78;a:28:{s:2:\"id\";s:2:\"82\";s:5:\"title\";s:34:\"Light Content Block - Testimonials\";s:5:\"alias\";s:29:\"fullsite-block-5-testimonials\";s:3:\"zip\";s:39:\"packs/fullsite-block-5-testimonials.zip\";s:3:\"uid\";s:32:\"06255bfd421e40f71fa8197b839dbf03\";s:3:\"img\";s:40:\"fullsite-block-5-testimonials/slide1.jpg\";s:7:\"preview\";s:152:\"https://revolution.themepunch.com/wordpress-parallax-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-parallax-theme\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:79;a:28:{s:2:\"id\";s:2:\"83\";s:5:\"title\";s:29:\"Light Content Block - Callout\";s:5:\"alias\";s:24:\"fullsite-block-6-callout\";s:3:\"zip\";s:34:\"packs/fullsite-block-6-callout.zip\";s:3:\"uid\";s:32:\"8a88c3447676b613ec5db2fe5d63315c\";s:3:\"img\";s:35:\"fullsite-block-6-callout/slide1.jpg\";s:7:\"preview\";s:152:\"https://revolution.themepunch.com/wordpress-parallax-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-parallax-theme\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:80;a:28:{s:2:\"id\";s:2:\"84\";s:5:\"title\";s:28:\"Light Content Block - Footer\";s:5:\"alias\";s:23:\"fullsite-block-7-footer\";s:3:\"zip\";s:33:\"packs/fullsite-block-7-footer.zip\";s:3:\"uid\";s:32:\"34300b4407a2093eb2e1e08868fa8319\";s:3:\"img\";s:34:\"fullsite-block-7-footer/slide1.jpg\";s:7:\"preview\";s:152:\"https://revolution.themepunch.com/wordpress-parallax-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-parallax-theme\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:81;a:25:{s:2:\"id\";s:2:\"85\";s:5:\"title\";s:12:\"Tech Journal\";s:5:\"alias\";s:11:\"techjournal\";s:3:\"zip\";s:15:\"techjournal.zip\";s:3:\"uid\";s:32:\"7f92d70d1c108378f915b18c2ceb71d6\";s:3:\"img\";s:22:\"techjournal/slide1.jpg\";s:7:\"preview\";s:152:\"https://revolution.themepunch.com/wordpress-parallax-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-parallax-theme\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.1\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:130:\"<span class=\"ttm_content\">A full-width slider with navigation direction-based transitions.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:277:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:82;a:25:{s:2:\"id\";s:2:\"86\";s:5:\"title\";s:14:\"Car Dealership\";s:5:\"alias\";s:13:\"cardealership\";s:3:\"zip\";s:17:\"cardealership.zip\";s:3:\"uid\";s:32:\"bb010838855a8ae4d1dd68e139bf169e\";s:3:\"img\";s:24:\"cardealership/slide1.jpg\";s:7:\"preview\";s:146:\"https://revolution.themepunch.com/car-dealership-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=car-dealership-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"650\";s:11:\"description\";s:130:\"<span class=\"ttm_content\">A full-width slider with navigation direction-based transitions.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:277:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:83;a:25:{s:2:\"id\";s:2:\"87\";s:5:\"title\";s:22:\"FullScreen Menu Slider\";s:5:\"alias\";s:14:\"fullscreenmenu\";s:3:\"zip\";s:18:\"fullscreenmenu.zip\";s:3:\"uid\";s:32:\"6de81d74c4bf193e2e274d43038adc85\";s:3:\"img\";s:25:\"fullscreenmenu/slide1.jpg\";s:7:\"preview\";s:154:\"https://revolution.themepunch.com/wordpress-fullscreen-menu/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-fullscreen-menu\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:131:\"<span class=\"ttm_content\">A full-screen slider that contains a menu with slide blur effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:84;a:25:{s:2:\"id\";s:2:\"88\";s:5:\"title\";s:18:\"Creative Frontpage\";s:5:\"alias\";s:17:\"creativefrontpage\";s:3:\"zip\";s:21:\"creativefrontpage.zip\";s:3:\"uid\";s:32:\"0636cb368af3bcaa2f68eb0ebefe6439\";s:3:\"img\";s:28:\"creativefrontpage/slide1.jpg\";s:7:\"preview\";s:146:\"https://revolution.themepunch.com/best-wordpress-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=best-wordpress-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:246:\"<span class=\"ttm_content\">A full-screen slider with hidden slides that are triggered via  <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a>.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:85;a:25:{s:2:\"id\";s:2:\"97\";s:5:\"title\";s:21:\"Focus Parallax Effect\";s:5:\"alias\";s:13:\"focusparallax\";s:3:\"zip\";s:17:\"focusparallax.zip\";s:3:\"uid\";s:32:\"13bd15fb3ddf8b9841cb55b89389cc73\";s:3:\"img\";s:24:\"focusparallax/slide1.jpg\";s:7:\"preview\";s:169:\" https://revolution.themepunch.com/parallax-effect-wordpress-plugin/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=parallax-effect-wordpress-plugin\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:256:\"<span class=\"ttm_content\">A full-screen slider with mouse controlled parallax effects. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on layers.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:86;a:25:{s:2:\"id\";s:2:\"98\";s:5:\"title\";s:14:\"Duotone Slider\";s:5:\"alias\";s:7:\"duotone\";s:3:\"zip\";s:11:\"duotone.zip\";s:3:\"uid\";s:32:\"494862ceb6cb7c6658ad7cd36848cccd\";s:3:\"img\";s:18:\"duotone/slide1.jpg\";s:7:\"preview\";s:162:\"https://revolution.themepunch.com/wordpress-header-image-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-header-image-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.4\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:252:\"<span class=\"ttm_content\">A full-screen slider with unique parallax scroll effect. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on layers.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:277:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:87;a:28:{s:2:\"id\";s:2:\"99\";s:5:\"title\";s:12:\"Minimal Menu\";s:5:\"alias\";s:6:\"r_menu\";s:3:\"zip\";s:16:\"packs/r_menu.zip\";s:3:\"uid\";s:32:\"30d6a6895db1a5f29b1679061551c9f0\";s:3:\"img\";s:17:\"r_menu/slide1.jpg\";s:7:\"preview\";s:152:\"https://revolution.themepunch.com/minimal-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=minimal-website-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"110\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:890:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:88;a:28:{s:2:\"id\";s:3:\"100\";s:5:\"title\";s:12:\"Minimal Hero\";s:5:\"alias\";s:5:\"rhero\";s:3:\"zip\";s:16:\"packs/r_hero.zip\";s:3:\"uid\";s:32:\"b8b46186956f6e66ad0c08e4532bbbde\";s:3:\"img\";s:17:\"r_hero/slide1.jpg\";s:7:\"preview\";s:152:\"https://revolution.themepunch.com/minimal-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=minimal-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"700\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:890:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:89;a:28:{s:2:\"id\";s:3:\"101\";s:5:\"title\";s:13:\"Minimal About\";s:5:\"alias\";s:7:\"r_about\";s:3:\"zip\";s:17:\"packs/r_about.zip\";s:3:\"uid\";s:32:\"343010c4b4c03f92888c3e9e95bc2bb1\";s:3:\"img\";s:18:\"r_about/slide1.jpg\";s:7:\"preview\";s:152:\"https://revolution.themepunch.com/minimal-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=minimal-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:890:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:90;a:28:{s:2:\"id\";s:3:\"102\";s:5:\"title\";s:16:\"Minimal Products\";s:5:\"alias\";s:10:\"r_products\";s:3:\"zip\";s:20:\"packs/r_products.zip\";s:3:\"uid\";s:32:\"dda93e85c6a4456d132040147f087f39\";s:3:\"img\";s:21:\"r_products/slide1.jpg\";s:7:\"preview\";s:152:\"https://revolution.themepunch.com/minimal-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=minimal-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1100\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:890:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:91;a:28:{s:2:\"id\";s:3:\"103\";s:5:\"title\";s:12:\"Minimal Info\";s:5:\"alias\";s:6:\"r_info\";s:3:\"zip\";s:16:\"packs/r_info.zip\";s:3:\"uid\";s:32:\"d6e368e8fd4862174af6c980389ae530\";s:3:\"img\";s:17:\"r_info/slide1.jpg\";s:7:\"preview\";s:152:\"https://revolution.themepunch.com/minimal-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=minimal-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:890:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:92;a:25:{s:2:\"id\";s:3:\"104\";s:5:\"title\";s:18:\"Inspiration Header\";s:5:\"alias\";s:17:\"inspirationheader\";s:3:\"zip\";s:21:\"inspirationheader.zip\";s:3:\"uid\";s:32:\"69f04b2be0b618fa7e184af83b86b7e7\";s:3:\"img\";s:28:\"inspirationheader/slide1.jpg\";s:7:\"preview\";s:148:\"https://revolution.themepunch.com/wordpress-theme-header/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-theme-header\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:159:\"<span class=\"ttm_content\">This full-screen hero slider features sequentially animated texts and cool parallax elements.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:93;a:25:{s:2:\"id\";s:3:\"105\";s:5:\"title\";s:15:\"Magazine Slider\";s:5:\"alias\";s:13:\"magazineposts\";s:3:\"zip\";s:17:\"magazineposts.zip\";s:3:\"uid\";s:32:\"c562f3457e4edbd030959f7c5e6e0f7c\";s:3:\"img\";s:24:\"magazineposts/slide1.jpg\";s:7:\"preview\";s:154:\"https://revolution.themepunch.com/wordpress-magazine-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-magazine-slider\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1000\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">A full-width slider with a mouse-controlled 3D-Parallax effect. Enjoy! <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on layers.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:277:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:94;a:25:{s:2:\"id\";s:3:\"106\";s:5:\"title\";s:11:\"News Header\";s:5:\"alias\";s:17:\"explorationheader\";s:3:\"zip\";s:21:\"explorationheader.zip\";s:3:\"uid\";s:32:\"8f20d5a868c90ded08b835fb9e8307d7\";s:3:\"img\";s:28:\"explorationheader/slide1.jpg\";s:7:\"preview\";s:146:\"https://revolution.themepunch.com/wordpress-news-header/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-news-header\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:288:\"<span class=\"ttm_content\">A full-screen slider that is a perfect fit for displaying news on your websites header! Check out <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> to add links to buttons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:277:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:95;a:28:{s:2:\"id\";s:3:\"107\";s:5:\"title\";s:23:\"Minimal Website Package\";s:5:\"alias\";s:23:\"minimal-website-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:23:\"minimal-website-package\";s:3:\"img\";s:31:\"packages/template_group_1_1.jpg\";s:7:\"preview\";s:152:\"https://revolution.themepunch.com/minimal-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=minimal-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"110\";s:11:\"description\";s:181:\"<span class=\"ttm_content\">The Minimal Website Template is a one-pager website with a unique background color change effect on scrolling down.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:890:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:96;a:28:{s:2:\"id\";s:3:\"109\";s:5:\"title\";s:26:\"Dark Content Block Package\";s:5:\"alias\";s:27:\"dark-fullsite-block-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:27:\"dark-fullsite-block-package\";s:3:\"img\";s:29:\"packages/template_group_4.jpg\";s:7:\"preview\";s:162:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=dark-wordpress-parallax-theme\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">This Minimal Website Template has some sleek parallax effects and on-demand loading modules.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:97;a:28:{s:2:\"id\";s:3:\"110\";s:5:\"title\";s:27:\"Light Content Block Package\";s:5:\"alias\";s:22:\"fullsite-block-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:22:\"fullsite-block-package\";s:3:\"img\";s:29:\"packages/template_group_3.jpg\";s:7:\"preview\";s:152:\"https://revolution.themepunch.com/wordpress-parallax-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-parallax-theme\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">This Minimal Website Template has some sleek parallax effects and on-demand loading modules.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:98;a:25:{s:2:\"id\";s:3:\"111\";s:5:\"title\";s:17:\"Typewriter Effect\";s:5:\"alias\";s:16:\"typewritereffect\";s:3:\"zip\";s:20:\"typewritereffect.zip\";s:3:\"uid\";s:32:\"d6f8bae06cc4a7b158d680c01e59ddc2\";s:3:\"img\";s:27:\"typewritereffect/slide1.jpg\";s:7:\"preview\";s:158:\"https://revolution.themepunch.com/wordpress-typewriter-effect/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-typewriter-effect\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:263:\"<span class=\"ttm_content\">This is the example slider from the Typewriter add-on preview.<br/><a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on buttons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:403:\"<span class=\"ttm_content\">This slider template requires the <a href=\"https://www.themepunch.com/slider-revolution/typewriter-addon/\" target=\"_blank\">Typewriter add-on</a> to be installed. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:173:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:99;a:25:{s:2:\"id\";s:3:\"112\";s:5:\"title\";s:17:\"Blend Mode Header\";s:5:\"alias\";s:15:\"blendmodeheader\";s:3:\"zip\";s:19:\"blendmodeheader.zip\";s:3:\"uid\";s:32:\"2e44e976596d757aab40ffa28086dcf9\";s:3:\"img\";s:26:\"blendmodeheader/slide1.jpg\";s:7:\"preview\";s:148:\"https://revolution.themepunch.com/blend-mode-hero-header/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=blend-mode-hero-header\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1000\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">This full-screen hero header with HMTL5 background video, utilizes the new 5.3 blend mode effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:100;a:28:{s:2:\"id\";s:3:\"113\";s:5:\"title\";s:17:\"Themeplicity Menu\";s:5:\"alias\";s:17:\"themeplicity_menu\";s:3:\"zip\";s:27:\"packs/themeplicity_menu.zip\";s:3:\"uid\";s:32:\"7d5c1e75eaafa63683895a32a62f4ce0\";s:3:\"img\";s:28:\"themeplicity_menu/slide1.jpg\";s:7:\"preview\";s:134:\"https://revolution.themepunch.com/wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-theme\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:2:\"90\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:101;a:28:{s:2:\"id\";s:3:\"114\";s:5:\"title\";s:19:\"Themeplicity Header\";s:5:\"alias\";s:19:\"themeplicity_header\";s:3:\"zip\";s:29:\"packs/themeplicity_header.zip\";s:3:\"uid\";s:32:\"907091e4d58acc7d12f802de2f280b7d\";s:3:\"img\";s:30:\"themeplicity_header/slide1.jpg\";s:7:\"preview\";s:134:\"https://revolution.themepunch.com/wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-theme\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1000\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:102;a:28:{s:2:\"id\";s:3:\"115\";s:5:\"title\";s:18:\"Themeplicity Offer\";s:5:\"alias\";s:18:\"themeplicity_offer\";s:3:\"zip\";s:28:\"packs/themeplicity_offer.zip\";s:3:\"uid\";s:32:\"1bd8f9aa2f3e340449664c65ba17fb51\";s:3:\"img\";s:29:\"themeplicity_offer/slide1.jpg\";s:7:\"preview\";s:134:\"https://revolution.themepunch.com/wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-theme\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"330\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:103;a:28:{s:2:\"id\";s:3:\"116\";s:5:\"title\";s:23:\"Themeplicity What We Do\";s:5:\"alias\";s:21:\"themeplicity_whatwedo\";s:3:\"zip\";s:31:\"packs/themeplicity_whatwedo.zip\";s:3:\"uid\";s:32:\"aa800a44b5a3eab30414dde1f32bfed7\";s:3:\"img\";s:32:\"themeplicity_whatwedo/slide1.jpg\";s:7:\"preview\";s:134:\"https://revolution.themepunch.com/wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-theme\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"813\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:104;a:28:{s:2:\"id\";s:3:\"117\";s:5:\"title\";s:21:\"Themeplicity Projects\";s:5:\"alias\";s:21:\"themeplicity_projects\";s:3:\"zip\";s:31:\"packs/themeplicity_projects.zip\";s:3:\"uid\";s:32:\"5f61b3a13033ba6a51a18270163e0a50\";s:3:\"img\";s:32:\"themeplicity_projects/slide1.jpg\";s:7:\"preview\";s:134:\"https://revolution.themepunch.com/wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-theme\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"813\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:105;a:28:{s:2:\"id\";s:3:\"118\";s:5:\"title\";s:24:\"Themeplicity Whats Great\";s:5:\"alias\";s:23:\"themeplicity_whatsgreat\";s:3:\"zip\";s:33:\"packs/themeplicity_whatsgreat.zip\";s:3:\"uid\";s:32:\"ce9faf8c55ed2e33e091b23667e7173b\";s:3:\"img\";s:34:\"themeplicity_whatsgreat/slide1.jpg\";s:7:\"preview\";s:134:\"https://revolution.themepunch.com/wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-theme\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:106;a:28:{s:2:\"id\";s:3:\"119\";s:5:\"title\";s:19:\"Themeplicity Tables\";s:5:\"alias\";s:19:\"themeplicity_tables\";s:3:\"zip\";s:29:\"packs/themeplicity_tables.zip\";s:3:\"uid\";s:32:\"f28bb4cd20ec1f29a1de7da5ad09c293\";s:3:\"img\";s:30:\"themeplicity_tables/slide1.jpg\";s:7:\"preview\";s:134:\"https://revolution.themepunch.com/wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-theme\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1059\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:107;a:28:{s:2:\"id\";s:3:\"120\";s:5:\"title\";s:24:\"Themeplicity Contactform\";s:5:\"alias\";s:24:\"themeplicity_contactform\";s:3:\"zip\";s:34:\"packs/themeplicity_contactform.zip\";s:3:\"uid\";s:32:\"3e59da970f534490774fa8e053f5b5ed\";s:3:\"img\";s:35:\"themeplicity_contactform/slide1.jpg\";s:7:\"preview\";s:134:\"https://revolution.themepunch.com/wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-theme\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1067\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:108;a:28:{s:2:\"id\";s:3:\"121\";s:5:\"title\";s:19:\"Themeplicity Footer\";s:5:\"alias\";s:19:\"themeplicity_footer\";s:3:\"zip\";s:29:\"packs/themeplicity_footer.zip\";s:3:\"uid\";s:32:\"89eeb0b4b852c5f743e1bd76e3e8f2ef\";s:3:\"img\";s:30:\"themeplicity_footer/slide1.jpg\";s:7:\"preview\";s:134:\"https://revolution.themepunch.com/wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-theme\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"780\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:109;a:28:{s:2:\"id\";s:3:\"122\";s:5:\"title\";s:20:\"Themeplicity Package\";s:5:\"alias\";s:20:\"themeplicity-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:20:\"themeplicity-package\";s:3:\"img\";s:38:\"packages/templatepack_themeplicity.jpg\";s:7:\"preview\";s:134:\"https://revolution.themepunch.com/wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-theme\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Themeplicity Website Template uses the new groups & rows feature introduced in 5.3 to its full potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:110;a:28:{s:2:\"id\";s:3:\"123\";s:5:\"title\";s:19:\"Nice And Clean Menu\";s:5:\"alias\";s:17:\"NiceAndClean_Menu\";s:3:\"zip\";s:27:\"packs/NiceAndClean_Menu.zip\";s:3:\"uid\";s:32:\"3f8c01e26c7446428e045c4b1180776d\";s:3:\"img\";s:28:\"NiceAndClean_Menu/slide1.jpg\";s:7:\"preview\";s:178:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=nice-clean-responsive-wordpress-theme\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:2:\"90\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:111;a:28:{s:2:\"id\";s:3:\"124\";s:5:\"title\";s:21:\"Nice And Clean Header\";s:5:\"alias\";s:19:\"NiceAndClean_Header\";s:3:\"zip\";s:29:\"packs/NiceAndClean_Header.zip\";s:3:\"uid\";s:32:\"76931033addb20a62557c2845a4d6a11\";s:3:\"img\";s:30:\"NiceAndClean_Header/slide1.jpg\";s:7:\"preview\";s:178:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=nice-clean-responsive-wordpress-theme\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:112;a:28:{s:2:\"id\";s:3:\"125\";s:5:\"title\";s:23:\"Nice And Clean Services\";s:5:\"alias\";s:21:\"NiceAndClean_Services\";s:3:\"zip\";s:31:\"packs/NiceAndClean_Services.zip\";s:3:\"uid\";s:32:\"02f72ec606800c8215bcadea09624e87\";s:3:\"img\";s:32:\"NiceAndClean_Services/slide1.jpg\";s:7:\"preview\";s:178:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=nice-clean-responsive-wordpress-theme\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"360\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:113;a:28:{s:2:\"id\";s:3:\"126\";s:5:\"title\";s:20:\"Nice And Clean About\";s:5:\"alias\";s:18:\"NiceAndClean_About\";s:3:\"zip\";s:28:\"packs/NiceAndClean_About.zip\";s:3:\"uid\";s:32:\"9510f6fdbb8e9473e8c22f692a6bc89f\";s:3:\"img\";s:29:\"NiceAndClean_About/slide1.jpg\";s:7:\"preview\";s:178:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=nice-clean-responsive-wordpress-theme\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:114;a:28:{s:2:\"id\";s:3:\"127\";s:5:\"title\";s:20:\"Nice And Clean Video\";s:5:\"alias\";s:18:\"niceandclean_video\";s:3:\"zip\";s:28:\"packs/niceandclean_video.zip\";s:3:\"uid\";s:32:\"2bb9e1ad329435cc500542d0c7025e15\";s:3:\"img\";s:29:\"niceandclean_video/slide1.jpg\";s:7:\"preview\";s:178:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=nice-clean-responsive-wordpress-theme\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:115;a:28:{s:2:\"id\";s:3:\"128\";s:5:\"title\";s:25:\"Nice And Clean Highlights\";s:5:\"alias\";s:23:\"niceandclean_highlights\";s:3:\"zip\";s:33:\"packs/niceandclean_highlights.zip\";s:3:\"uid\";s:32:\"ff396af163a79d2d5b35db17c1ea7aa6\";s:3:\"img\";s:34:\"niceandclean_highlights/slide1.jpg\";s:7:\"preview\";s:178:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=nice-clean-responsive-wordpress-theme\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:116;a:28:{s:2:\"id\";s:3:\"129\";s:5:\"title\";s:23:\"Nice And Clean Projects\";s:5:\"alias\";s:21:\"NiceAndClean_Projects\";s:3:\"zip\";s:31:\"packs/NiceAndClean_Projects.zip\";s:3:\"uid\";s:32:\"1e6695959ef83f8975b52289c08a4d44\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide1.jpg\";s:7:\"preview\";s:178:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=nice-clean-responsive-wordpress-theme\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:117;a:28:{s:2:\"id\";s:3:\"130\";s:5:\"title\";s:25:\"Nice And Clean TextBlocks\";s:5:\"alias\";s:23:\"niceandclean_textblocks\";s:3:\"zip\";s:33:\"packs/niceandclean_textblocks.zip\";s:3:\"uid\";s:32:\"1f33eb839c96ea3225faff1c8d382b05\";s:3:\"img\";s:34:\"niceandclean_textblocks/slide1.jpg\";s:7:\"preview\";s:178:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=nice-clean-responsive-wordpress-theme\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:118;a:28:{s:2:\"id\";s:3:\"131\";s:5:\"title\";s:22:\"Nice And Clean CallOut\";s:5:\"alias\";s:20:\"niceandclean_callout\";s:3:\"zip\";s:30:\"packs/niceandclean_callout.zip\";s:3:\"uid\";s:32:\"54d4d9bcf79d357de0e614700e909863\";s:3:\"img\";s:31:\"niceandclean_callout/slide1.jpg\";s:7:\"preview\";s:178:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=nice-clean-responsive-wordpress-theme\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:119;a:28:{s:2:\"id\";s:3:\"132\";s:5:\"title\";s:21:\"Nice And Clean Footer\";s:5:\"alias\";s:19:\"niceandclean_footer\";s:3:\"zip\";s:29:\"packs/niceandclean_footer.zip\";s:3:\"uid\";s:32:\"5492d7f72b3771a4e754f91bda063b15\";s:3:\"img\";s:30:\"niceandclean_footer/slide1.jpg\";s:7:\"preview\";s:178:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=nice-clean-responsive-wordpress-theme\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"400\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:542:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">For using the social sharing buttons, please install the social sharing add-on.<br><br></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:120;a:25:{s:2:\"id\";s:3:\"134\";s:5:\"title\";s:15:\"80s Style Intro\";s:5:\"alias\";s:3:\"80s\";s:3:\"zip\";s:7:\"80s.zip\";s:3:\"uid\";s:32:\"98881ab51f71b2fbdb220752d321b15a\";s:3:\"img\";s:14:\"80s/slide1.jpg\";s:7:\"preview\";s:134:\"https://revolution.themepunch.com/80s-style-intro/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=80s-style-intro\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:139:\"<span class=\"ttm_content\">This intro hero block takes you back to the 80\'s with some funky effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:317:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and text.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:121;a:25:{s:2:\"id\";s:3:\"135\";s:5:\"title\";s:18:\"Blur Effect Slider\";s:5:\"alias\";s:10:\"blurslider\";s:3:\"zip\";s:14:\"blurslider.zip\";s:3:\"uid\";s:32:\"83bd6e1ccef83f03c944fa05b0a2d879\";s:3:\"img\";s:21:\"blurslider/slide1.jpg\";s:7:\"preview\";s:140:\"https://revolution.themepunch.com/blur-effect-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=blur-effect-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:147:\"<span class=\"ttm_content\">This slider makes use of the brand new blur effects available with version 5.3.1.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:315:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change the background images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:122;a:24:{s:2:\"id\";s:3:\"136\";s:5:\"title\";s:18:\"Coming Soon Add-On\";s:5:\"alias\";s:15:\"ComingSoonAddon\";s:3:\"zip\";s:19:\"ComingSoonAddon.zip\";s:3:\"uid\";s:32:\"51258492055b940099eb96ba52901fa9\";s:3:\"img\";s:26:\"ComingSoonAddon/slide1.jpg\";s:7:\"preview\";s:140:\"https://revolution.themepunch.com/coming-soon-add-on/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=coming-soon-add-on\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:133:\"<span class=\"ttm_content\">This slider template makes use of the brand new Coming Soon Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:197:\"[{\"path\":\"revslider-maintenance-addon\\/revslider-maintenance-addon.php\",\"name\":\"Coming Soon & Maintenance AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/revslider-doc\\/add-coming-soon-maintenance\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:123;a:28:{s:2:\"id\";s:3:\"137\";s:5:\"title\";s:22:\"Nice And Clean Package\";s:5:\"alias\";s:22:\"nice-and-clean-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:22:\"nice-and-clean-package\";s:3:\"img\";s:38:\"packages/templatepack_niceandclean.jpg\";s:7:\"preview\";s:178:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=nice-clean-responsive-wordpress-theme\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:242:\"<span class=\"ttm_content\">The Nice & Clean Website Template uses groups & rows for a fully responsive website experience. Elegant blur effects available since version 5.3.1 make this template stand out!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:124;a:24:{s:2:\"id\";s:3:\"138\";s:5:\"title\";s:18:\"Snow Effect Add-On\";s:5:\"alias\";s:9:\"snowaddon\";s:3:\"zip\";s:13:\"snowaddon.zip\";s:3:\"uid\";s:32:\"7408d8567b8af5716eaabd390422e51b\";s:3:\"img\";s:20:\"snowaddon/slide1.jpg\";s:7:\"preview\";s:140:\"https://revolution.themepunch.com/snow-effect-add-on/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=snow-effect-add-on\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:183:\"<span class=\"ttm_content\">Add a pleasant Snow Effect to your website with this slider template. Make sure to install the \"Holiday Snow\" Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:153:\"[{\"path\":\"revslider-snow-addon\\/revslider-snow-addon.php\",\"name\":\"Snow AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:125;a:25:{s:2:\"id\";s:3:\"139\";s:5:\"title\";s:19:\"Particle Effect One\";s:5:\"alias\";s:19:\"particle-effect-one\";s:3:\"zip\";s:23:\"particle-effect-one.zip\";s:3:\"uid\";s:32:\"a4611c906e35ca60f617da86217b5299\";s:3:\"img\";s:30:\"particle-effect-one/slide1.jpg\";s:7:\"preview\";s:162:\"https://revolution.themepunch.com/particle-effect-for-wordpress/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=particle-effect-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A unique particle effect that can serve as a stunning intro for your website.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:442:\"<span class=\"ttm_content\">The blend mode effect is achieved through a layer image with CSS blend mode. If you want to customize this effect, select the \"BLEND MODE IMAGE\" layer and go to \"advanced style -> filters -> blend mode\".</span>\r\n<span class=\"ttm_space\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:74:\"How to Increase Engagement with Particle Effects and Blend Mode [Tutorial]\";s:9:\"guide_url\";s:107:\"https://www.sliderrevolution.com/tutorials/how-to-increase-engagement-with-particle-effects-and-blend-mode/\";s:9:\"guide_img\";s:32:\"tutorial/particle-effect-one.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:126;a:24:{s:2:\"id\";s:3:\"140\";s:5:\"title\";s:19:\"Particle Effect Two\";s:5:\"alias\";s:19:\"particle-effect-two\";s:3:\"zip\";s:23:\"particle-effect-two.zip\";s:3:\"uid\";s:32:\"b8ecbf43374a69e4ab329ea834862ef8\";s:3:\"img\";s:30:\"particle-effect-two/slide1.jpg\";s:7:\"preview\";s:146:\"https://revolution.themepunch.com/particle-effect-intro/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=particle-effect-intro\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A unique particle effect that can serve as a stunning intro for your website.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:127;a:25:{s:2:\"id\";s:3:\"141\";s:5:\"title\";s:21:\"Particle Effect Three\";s:5:\"alias\";s:21:\"particle-effect-three\";s:3:\"zip\";s:25:\"particle-effect-three.zip\";s:3:\"uid\";s:32:\"b33bc2c5655d8d51cd17c3740f72e748\";s:3:\"img\";s:32:\"particle-effect-three/slide1.jpg\";s:7:\"preview\";s:156:\"https://revolution.themepunch.com/particle-background-effect/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=particle-background-effect\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A unique particle effect that can serve as a stunning intro for your website.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:437:\"<span class=\"ttm_content\">The blend mode effect is achieved through a layer image with CSS blend mode. If you want to customize this effect, select the \"BLEND IMAGE\" layer and go to \"advanced style -> filters -> blend mode\".</span>\r\n<span class=\"ttm_space\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:128;a:25:{s:2:\"id\";s:3:\"142\";s:5:\"title\";s:16:\"Portfolio Viewer\";s:5:\"alias\";s:15:\"portfolioviewer\";s:3:\"zip\";s:19:\"portfolioviewer.zip\";s:3:\"uid\";s:32:\"9ac7230ff5b880fb6c8f28fbbc123b3b\";s:3:\"img\";s:26:\"portfolioviewer/slide1.jpg\";s:7:\"preview\";s:156:\"https://revolution.themepunch.com/wordpress-portfolio-plugin/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-portfolio-plugin\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:207:\"<span class=\"ttm_content\">This slider template can be used to display your portfolio highlights in a stunning way, utilising out free particles add-on and blend modes.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:387:\"<span class=\"ttm_content\">The navigation for the slides is found in the <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">Static Layers</a>.</span><span class=\"ttm_space\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:129;a:24:{s:2:\"id\";s:3:\"143\";s:5:\"title\";s:12:\"App Showcase\";s:5:\"alias\";s:11:\"appshowcase\";s:3:\"zip\";s:15:\"appshowcase.zip\";s:3:\"uid\";s:32:\"082aef931b0369080bc30c3a2a0c331f\";s:3:\"img\";s:22:\"appshowcase/slide1.jpg\";s:7:\"preview\";s:162:\"https://revolution.themepunch.com/app-showcase-wordpress-plugin/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=app-showcase-wordpress-plugin\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:239:\"<span class=\"ttm_content\">This template shows off our new \"Polyfold Effects\" Add-On in form of an App product showcase module. Get started now and illustrate your Apps key features in a striking way!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:179:\"[{\"path\":\"revslider-polyfold-addon\\/revslider-polyfold-addon.php\",\"name\":\"Polyfold Scroll Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:130;a:24:{s:2:\"id\";s:3:\"144\";s:5:\"title\";s:19:\"Gravity Design Hero\";s:5:\"alias\";s:13:\"gravitydesign\";s:3:\"zip\";s:17:\"gravitydesign.zip\";s:3:\"uid\";s:32:\"7bdbe73a6e5bf290cb4412708ac4134d\";s:3:\"img\";s:24:\"gravitydesign/slide1.jpg\";s:7:\"preview\";s:170:\"https://revolution.themepunch.com/best-wordpress-slider-plugin-2017/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=best-wordpress-slider-plugin-2017\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:205:\"<span class=\"ttm_content\">This hero template shows a striking mouse-parallax scene and cool particle effects. Requires our \"Particle Effects\" Add-on to be installed.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:68:\"How to Create an Exciting Action Shot for Your Hero Image [Tutorial]\";s:9:\"guide_url\";s:101:\"https://www.sliderrevolution.com/tutorials/how-to-create-an-exciting-action-shot-for-your-hero-image/\";s:9:\"guide_img\";s:26:\"tutorial/gravitydesign.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:131;a:24:{s:2:\"id\";s:3:\"145\";s:5:\"title\";s:14:\"404 Error Page\";s:5:\"alias\";s:12:\"404errorpage\";s:3:\"zip\";s:16:\"404errorpage.zip\";s:3:\"uid\";s:32:\"2dc62d802b42b73088651cac17d0c486\";s:3:\"img\";s:23:\"404errorpage/slide1.jpg\";s:7:\"preview\";s:150:\"https://revolution.themepunch.com/404-error-page-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=404-error-page-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:227:\"<span class=\"ttm_content\">This template can be used as a custom error page on your website with our new 404 page Add-On. Of course you can also use this template as a regular hero header.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:179:\"{\"1\":{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}}\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:132;a:24:{s:2:\"id\";s:3:\"146\";s:5:\"title\";s:16:\"Carousel Gallery\";s:5:\"alias\";s:15:\"carouselgallery\";s:3:\"zip\";s:19:\"carouselgallery.zip\";s:3:\"uid\";s:32:\"041838fd32923c40e15c998f0ea19526\";s:3:\"img\";s:26:\"carouselgallery/slide1.jpg\";s:7:\"preview\";s:156:\"https://revolution.themepunch.com/wordpress-carousel-gallery/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-carousel-gallery\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:159:\"<span class=\"ttm_content\">This carousel gallery features a subtle parallax effect, html5 video and a fullscreen button.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:133;a:24:{s:2:\"id\";s:3:\"147\";s:5:\"title\";s:16:\"Filmstrip Effect\";s:5:\"alias\";s:9:\"filmstrip\";s:3:\"zip\";s:13:\"filmstrip.zip\";s:3:\"uid\";s:32:\"7bd142f272cc15d86998a79520e9e581\";s:3:\"img\";s:20:\"filmstrip/slide1.jpg\";s:7:\"preview\";s:129:\"https://revolution.themepunch.com/filmstrip-add-on-slider/ ?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content= \";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">This template uses our Filmstrip Add-On to display a continuous scrolling set of images per slide.\r\n There is lots of customization options like animation speed and direction.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:179:\"[{\"path\":\"revslider-filmstrip-addon\\/revslider-filmstrip-addon.php\",\"name\":\"Background FilmStrip AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:134;a:24:{s:2:\"id\";s:3:\"148\";s:5:\"title\";s:11:\"Space Opera\";s:5:\"alias\";s:10:\"spaceopera\";s:3:\"zip\";s:14:\"spaceopera.zip\";s:3:\"uid\";s:32:\"a2c8bffcb138a86c0f373adebb6de046\";s:3:\"img\";s:21:\"spaceopera/slide1.jpg\";s:7:\"preview\";s:152:\"https://revolution.themepunch.com/space-opera-presentation/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=space-opera-presentation\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:201:\"<span class=\"ttm_content\">The Space Opera template can be enjoyed as a slow paced, full-screen slider experience and is great to show your most prominent photos.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:135;a:24:{s:2:\"id\";s:3:\"149\";s:5:\"title\";s:13:\"Website Intro\";s:5:\"alias\";s:12:\"websiteintro\";s:3:\"zip\";s:16:\"websiteintro.zip\";s:3:\"uid\";s:32:\"348df76d999456aa19be58c9df56ae20\";s:3:\"img\";s:23:\"websiteintro/slide1.jpg\";s:7:\"preview\";s:164:\"https://revolution.themepunch.com/website-intro-wordpress-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=website-intro-wordpress-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:274:\"<span class=\"ttm_content\">Making use of our new Slicey Add-On, this slider show a really cool effect you just have to experience yourself! Just change the slides background images and the existing slices will automatically be applied.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:170:\"[{\"path\":\"revslider-slicey-addon\\/revslider-slicey-addon.php\",\"name\":\"Background Slicey AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:79:\"How to Create a Slider Animation Effect Your Visitors Won’t Forget [Tutorial]\";s:9:\"guide_url\";s:83:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-slider-animation-effect/\";s:9:\"guide_img\";s:25:\"tutorial/websiteintro.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:136;a:24:{s:2:\"id\";s:3:\"150\";s:5:\"title\";s:13:\"Mask Showcase\";s:5:\"alias\";s:12:\"maskshowcase\";s:3:\"zip\";s:16:\"maskshowcase.zip\";s:3:\"uid\";s:32:\"fc943c31e2da9c63b252aeabf554d128\";s:3:\"img\";s:23:\"maskshowcase/slide1.jpg\";s:7:\"preview\";s:146:\"https://revolution.themepunch.com/minimal-mask-showcase/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=minimal-mask-showcase\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Mask Showcase template uses gradients and the amazing block layer animations. A minimal slider treat for any website!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:137;a:24:{s:2:\"id\";s:3:\"151\";s:5:\"title\";s:20:\"Parallax Zoom Slices\";s:5:\"alias\";s:18:\"parallaxzoomslices\";s:3:\"zip\";s:22:\"parallaxzoomslices.zip\";s:3:\"uid\";s:32:\"83537cae05709ddb9bcb7375470a5894\";s:3:\"img\";s:29:\"parallaxzoomslices/slide1.jpg\";s:7:\"preview\";s:178:\"https://revolution.themepunch.com/parallax-zoom-slices-wordpress-plugin/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=parallax-zoom-slices-wordpress-plugin\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:249:\"<span class=\"ttm_content\">This template uses the Slicey Add-On to add a unique effect to slide background images. You can simple change the background images and the slice effect will automatically be applied.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:170:\"[{\"path\":\"revslider-slicey-addon\\/revslider-slicey-addon.php\",\"name\":\"Background Slicey AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:138;a:24:{s:2:\"id\";s:3:\"152\";s:5:\"title\";s:22:\"Double Exposure Effect\";s:5:\"alias\";s:20:\"doubleexposureeffect\";s:3:\"zip\";s:24:\"doubleexposureeffect.zip\";s:3:\"uid\";s:32:\"8d9229b5cbcf5bda5fbdc6a8e01a2b8c\";s:3:\"img\";s:31:\"doubleexposureeffect/slide1.jpg\";s:7:\"preview\";s:168:\"https://revolution.themepunch.com/wordpress-double-exposure-effect/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-double-exposure-effect\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">Make any website special with the double exposure effect slider. Use as a header module or anywhere you want!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:139;a:24:{s:2:\"id\";s:3:\"153\";s:5:\"title\";s:24:\"Mountain Parallax Header\";s:5:\"alias\";s:22:\"mountainparallaxheader\";s:3:\"zip\";s:26:\"mountainparallaxheader.zip\";s:3:\"uid\";s:32:\"8dc64663f317a2abdf179bbe341d016e\";s:3:\"img\";s:33:\"mountainparallaxheader/slide1.jpg\";s:7:\"preview\";s:172:\"https://revolution.themepunch.com/mountain-wordpress-parallax-header/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=mountain-wordpress-parallax-header\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:192:\"<span class=\"ttm_content\">This template is a cool intro for any page, featuring a striking parallax effect. Just change texts and links and you\'re done!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:62:\"How to Place Text Behind Objects in Your Hero Image [Tutorial]\";s:9:\"guide_url\";s:69:\"https://www.sliderrevolution.com/tutorials/place-text-behind-objects/\";s:9:\"guide_img\";s:35:\"tutorial/mountainparallaxheader.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:140;a:28:{s:2:\"id\";s:3:\"154\";s:5:\"title\";s:26:\"GoodNews One-Pager Package\";s:5:\"alias\";s:26:\"goodnews-one-pager-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"goodnews-one-pager-package\";s:3:\"img\";s:44:\"packages/templatepack_goodnews_one_pager.jpg\";s:7:\"preview\";s:174:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=goodnews-responsive-wordpress-theme\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:4:{i:0;s:8:\"carousel\";i:1;s:6:\"slider\";i:2;s:4:\"hero\";i:3;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:141;a:28:{s:2:\"id\";s:3:\"155\";s:5:\"title\";s:13:\"GoodNews Menu\";s:5:\"alias\";s:12:\"goodnewsmenu\";s:3:\"zip\";s:22:\"packs/goodnewsmenu.zip\";s:3:\"uid\";s:32:\"4cbc82501ff340fcdc0acf7eb3ba2640\";s:3:\"img\";s:23:\"goodnewsmenu/slide1.jpg\";s:7:\"preview\";s:174:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=goodnews-responsive-wordpress-theme\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:142;a:28:{s:2:\"id\";s:3:\"156\";s:5:\"title\";s:15:\"GoodNews Header\";s:5:\"alias\";s:14:\"goodnewsheader\";s:3:\"zip\";s:24:\"packs/goodnewsheader.zip\";s:3:\"uid\";s:32:\"c6660b6bdbf596f38466f569596f5259\";s:3:\"img\";s:25:\"goodnewsheader/slide1.jpg\";s:7:\"preview\";s:174:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=goodnews-responsive-wordpress-theme\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:143;a:28:{s:2:\"id\";s:3:\"157\";s:5:\"title\";s:18:\"GoodNews Whats Hot\";s:5:\"alias\";s:16:\"goodnewswhatshot\";s:3:\"zip\";s:26:\"packs/goodnewswhatshot.zip\";s:3:\"uid\";s:32:\"cb841ce64a99a6644adab049cf5405cd\";s:3:\"img\";s:27:\"goodnewswhatshot/slide1.jpg\";s:7:\"preview\";s:174:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=goodnews-responsive-wordpress-theme\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:144;a:28:{s:2:\"id\";s:3:\"158\";s:5:\"title\";s:17:\"GoodNews Featured\";s:5:\"alias\";s:16:\"goodnewsfeatured\";s:3:\"zip\";s:26:\"packs/goodnewsfeatured.zip\";s:3:\"uid\";s:32:\"00bde4b09e3700da7183999eaf137ccc\";s:3:\"img\";s:27:\"goodnewsfeatured/slide1.jpg\";s:7:\"preview\";s:174:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=goodnews-responsive-wordpress-theme\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:145;a:28:{s:2:\"id\";s:3:\"159\";s:5:\"title\";s:18:\"GoodNews Spotlight\";s:5:\"alias\";s:17:\"goodnewsspotlight\";s:3:\"zip\";s:27:\"packs/goodnewsspotlight.zip\";s:3:\"uid\";s:32:\"138076241a828e1c5764379944755f2b\";s:3:\"img\";s:28:\"goodnewsspotlight/slide1.jpg\";s:7:\"preview\";s:174:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=goodnews-responsive-wordpress-theme\";s:7:\"version\";s:5:\"1.0.4\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:146;a:28:{s:2:\"id\";s:3:\"160\";s:5:\"title\";s:17:\"GoodNews Carousel\";s:5:\"alias\";s:16:\"goodnewscarousel\";s:3:\"zip\";s:26:\"packs/goodnewscarousel.zip\";s:3:\"uid\";s:32:\"d29d4460a6015e30d08d2714232d3768\";s:3:\"img\";s:27:\"goodnewscarousel/slide1.jpg\";s:7:\"preview\";s:174:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=goodnews-responsive-wordpress-theme\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:147;a:28:{s:2:\"id\";s:3:\"161\";s:5:\"title\";s:16:\"GoodNews Callout\";s:5:\"alias\";s:15:\"goodnewscallout\";s:3:\"zip\";s:25:\"packs/goodnewscallout.zip\";s:3:\"uid\";s:32:\"d9568b3193e96577fae630b3a6728785\";s:3:\"img\";s:26:\"goodnewscallout/slide1.jpg\";s:7:\"preview\";s:174:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=goodnews-responsive-wordpress-theme\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:148;a:28:{s:2:\"id\";s:3:\"162\";s:5:\"title\";s:15:\"GoodNews Footer\";s:5:\"alias\";s:14:\"goodnewsfooter\";s:3:\"zip\";s:24:\"packs/goodnewsfooter.zip\";s:3:\"uid\";s:32:\"34f43f891cb8d55375149dc4bbc38298\";s:3:\"img\";s:25:\"goodnewsfooter/slide1.jpg\";s:7:\"preview\";s:174:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=goodnews-responsive-wordpress-theme\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:149;a:28:{s:2:\"id\";s:3:\"163\";s:5:\"title\";s:29:\"GoodNews Content Page Package\";s:5:\"alias\";s:29:\"goodnews-content-page-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:29:\"goodnews-content-page-package\";s:3:\"img\";s:55:\"packages/templatepack_goodnews_content_page_package.jpg\";s:7:\"preview\";s:190:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=goodnews-responsive-wordpress-theme-content\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;}i:150;a:28:{s:2:\"id\";s:3:\"164\";s:5:\"title\";s:18:\"GoodNews Menu Back\";s:5:\"alias\";s:16:\"goodnewsmenuback\";s:3:\"zip\";s:26:\"packs/goodnewsmenuback.zip\";s:3:\"uid\";s:32:\"1340d1aeefba497a7d404d12a1fceed4\";s:3:\"img\";s:27:\"goodnewsmenuback/slide1.jpg\";s:7:\"preview\";s:190:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=goodnews-responsive-wordpress-theme-content\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;}i:151;a:28:{s:2:\"id\";s:3:\"165\";s:5:\"title\";s:20:\"GoodNews Blog Header\";s:5:\"alias\";s:18:\"goodnewsblogheader\";s:3:\"zip\";s:28:\"packs/goodnewsblogheader.zip\";s:3:\"uid\";s:32:\"abc4d7c1e48475c6def05f1f6d8bf564\";s:3:\"img\";s:29:\"goodnewsblogheader/slide1.jpg\";s:7:\"preview\";s:190:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=goodnews-responsive-wordpress-theme-content\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;}i:152;a:28:{s:2:\"id\";s:3:\"166\";s:5:\"title\";s:21:\"GoodNews Blog Content\";s:5:\"alias\";s:19:\"goodnewsblogcontent\";s:3:\"zip\";s:29:\"packs/goodnewsblogcontent.zip\";s:3:\"uid\";s:32:\"bbf34563da6db2779c29599b503b07e9\";s:3:\"img\";s:30:\"goodnewsblogcontent/slide1.jpg\";s:7:\"preview\";s:190:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=goodnews-responsive-wordpress-theme-content\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;}i:153;a:28:{s:2:\"id\";s:3:\"167\";s:5:\"title\";s:21:\"GoodNews Testimonials\";s:5:\"alias\";s:20:\"goodnewstestimonials\";s:3:\"zip\";s:30:\"packs/goodnewstestimonials.zip\";s:3:\"uid\";s:32:\"606b7336e86f69c567542d3f43712b56\";s:3:\"img\";s:31:\"goodnewstestimonials/slide1.jpg\";s:7:\"preview\";s:190:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=goodnews-responsive-wordpress-theme-content\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;}i:154;a:28:{s:2:\"id\";s:3:\"168\";s:5:\"title\";s:20:\"GoodNews Blog Footer\";s:5:\"alias\";s:18:\"goodnewsblogfooter\";s:3:\"zip\";s:28:\"packs/goodnewsblogfooter.zip\";s:3:\"uid\";s:32:\"1fb88aecfb116fde67ce8d52bd3b5f05\";s:3:\"img\";s:29:\"goodnewsblogfooter/slide1.jpg\";s:7:\"preview\";s:190:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=goodnews-responsive-wordpress-theme-content\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;}i:155;a:25:{s:2:\"id\";s:3:\"169\";s:5:\"title\";s:19:\"Before After Slider\";s:5:\"alias\";s:17:\"beforeafterslider\";s:3:\"zip\";s:21:\"beforeafterslider.zip\";s:3:\"uid\";s:32:\"6e615091a1fc3037c24b985ce5136fb2\";s:3:\"img\";s:28:\"beforeafterslider/slide1.jpg\";s:7:\"preview\";s:142:\"https://revolution.themepunch.com/before-after-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=before-after-slider\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:7:\"5.4.3.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:201:\"<span class=\"ttm_content\">This is the example slider for our Before / After Add-On that allows you to create unique presentations with a comparing functionality.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:320:\"<span class=\"ttm_content\">How to install <a href=\"https://www.themepunch.com/slider-revolution/install-addons/\" target=\"_blank\">Add-Ons</a>.</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-beforeafter-addon\\/revslider-beforeafter-addon.php\",\"name\":\"Before After AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:156;a:24:{s:2:\"id\";s:3:\"170\";s:5:\"title\";s:16:\"Product Showcase\";s:5:\"alias\";s:15:\"productshowcase\";s:3:\"zip\";s:19:\"productshowcase.zip\";s:3:\"uid\";s:32:\"a43447670260aaa7e8ff66cedfddb57a\";s:3:\"img\";s:26:\"productshowcase/slide1.jpg\";s:7:\"preview\";s:170:\"https://revolution.themepunch.com/wordpress-product-showcase-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-product-showcase-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:165:\"<span class=\"ttm_content\">Looking to sell products effectively? Our product showcase slider is just what you are looking for!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:157;a:25:{s:2:\"id\";s:3:\"171\";s:5:\"title\";s:23:\"Overexposure Transition\";s:5:\"alias\";s:22:\"overexposuretransition\";s:3:\"zip\";s:26:\"overexposuretransition.zip\";s:3:\"uid\";s:32:\"13f16bbe6c6d646c7d0cb817a0d3d181\";s:3:\"img\";s:33:\"overexposuretransition/slide1.jpg\";s:7:\"preview\";s:164:\"https://revolution.themepunch.com/overexposure-transition-effect/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=overexposure-transition-effect\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:155:\"<span class=\"ttm_content\">Subtle overexposure transitions and smooth color fade effects make this slider stand out.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:320:\"<span class=\"ttm_content\">How to install <a href=\"https://www.themepunch.com/slider-revolution/install-addons/\" target=\"_blank\">Add-Ons</a>.</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:158;a:24:{s:2:\"id\";s:3:\"172\";s:5:\"title\";s:15:\"Parallax Scroll\";s:5:\"alias\";s:14:\"parallaxscroll\";s:3:\"zip\";s:18:\"parallaxscroll.zip\";s:3:\"uid\";s:32:\"82546ee2f6af6c6682852f495109b3c3\";s:3:\"img\";s:25:\"parallaxscroll/slide1.jpg\";s:7:\"preview\";s:134:\"https://revolution.themepunch.com/parallax-scroll/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=parallax-scroll\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:148:\"<span class=\"ttm_content\">A strikingly colourful header for your website with super smooth parallax effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:159;a:28:{s:2:\"id\";s:3:\"173\";s:5:\"title\";s:24:\"TechCo One-Pager Package\";s:5:\"alias\";s:24:\"techco-one-pager-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:24:\"techco-one-pager-package\";s:3:\"img\";s:28:\"packages/techco_overview.jpg\";s:7:\"preview\";s:166:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=techco-one-page-wordpress-theme\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:160;a:28:{s:2:\"id\";s:3:\"174\";s:5:\"title\";s:11:\"TechCo Menu\";s:5:\"alias\";s:11:\"techco-menu\";s:3:\"zip\";s:21:\"packs/techco-menu.zip\";s:3:\"uid\";s:32:\"55e5efee828cdf1ff7e2d3b90a301ea9\";s:3:\"img\";s:22:\"techco-menu/slide1.jpg\";s:7:\"preview\";s:166:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=techco-one-page-wordpress-theme\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:161;a:28:{s:2:\"id\";s:3:\"175\";s:5:\"title\";s:13:\"TechCo Header\";s:5:\"alias\";s:13:\"techco-header\";s:3:\"zip\";s:23:\"packs/techco-header.zip\";s:3:\"uid\";s:32:\"fb574d1376de9b1e408c91f51e6497d7\";s:3:\"img\";s:24:\"techco-header/slide1.jpg\";s:7:\"preview\";s:166:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=techco-one-page-wordpress-theme\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:162;a:28:{s:2:\"id\";s:3:\"176\";s:5:\"title\";s:12:\"TechCo About\";s:5:\"alias\";s:12:\"techco-about\";s:3:\"zip\";s:22:\"packs/techco-about.zip\";s:3:\"uid\";s:32:\"ba216da8231e55118d87e37d2358812c\";s:3:\"img\";s:23:\"techco-about/slide1.jpg\";s:7:\"preview\";s:166:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=techco-one-page-wordpress-theme\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:163;a:28:{s:2:\"id\";s:3:\"177\";s:5:\"title\";s:15:\"TechCo Services\";s:5:\"alias\";s:15:\"techco-services\";s:3:\"zip\";s:25:\"packs/techco-services.zip\";s:3:\"uid\";s:32:\"ef4a8ddbb5e1136133f7bc1227248e22\";s:3:\"img\";s:26:\"techco-services/slide1.jpg\";s:7:\"preview\";s:166:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=techco-one-page-wordpress-theme\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:164;a:28:{s:2:\"id\";s:3:\"178\";s:5:\"title\";s:12:\"TechCo Video\";s:5:\"alias\";s:12:\"techco-video\";s:3:\"zip\";s:22:\"packs/techco-video.zip\";s:3:\"uid\";s:32:\"d7bb92281d05f39f9bc9eca71f90e402\";s:3:\"img\";s:23:\"techco-video/slide1.jpg\";s:7:\"preview\";s:166:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=techco-one-page-wordpress-theme\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:165;a:28:{s:2:\"id\";s:3:\"179\";s:5:\"title\";s:13:\"TechCo Prices\";s:5:\"alias\";s:13:\"techco-prices\";s:3:\"zip\";s:23:\"packs/techco-prices.zip\";s:3:\"uid\";s:32:\"6291f404efbea12bb181352aba71ef11\";s:3:\"img\";s:24:\"techco-prices/slide1.jpg\";s:7:\"preview\";s:166:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=techco-one-page-wordpress-theme\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:166;a:28:{s:2:\"id\";s:3:\"180\";s:5:\"title\";s:19:\"TechCo Testimonials\";s:5:\"alias\";s:19:\"techco-testimonials\";s:3:\"zip\";s:29:\"packs/techco-testimonials.zip\";s:3:\"uid\";s:32:\"3460bd51f6b80599266fecb7fbb918be\";s:3:\"img\";s:30:\"techco-testimonials/slide1.jpg\";s:7:\"preview\";s:166:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=techco-one-page-wordpress-theme\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:167;a:28:{s:2:\"id\";s:3:\"181\";s:5:\"title\";s:13:\"TechCo Footer\";s:5:\"alias\";s:13:\"techco-footer\";s:3:\"zip\";s:23:\"packs/techco-footer.zip\";s:3:\"uid\";s:32:\"640abcd549137520461a4a71ff758a3b\";s:3:\"img\";s:24:\"techco-footer/slide1.jpg\";s:7:\"preview\";s:166:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=techco-one-page-wordpress-theme\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:168;a:24:{s:2:\"id\";s:3:\"182\";s:5:\"title\";s:12:\"Live Weather\";s:5:\"alias\";s:7:\"weather\";s:3:\"zip\";s:11:\"weather.zip\";s:3:\"uid\";s:32:\"aab92e69374e4c7b8c6741fe02e574b9\";s:3:\"img\";s:18:\"weather/slide1.jpg\";s:7:\"preview\";s:162:\"https://revolution.themepunch.com/wordpress-live-weather-add-on/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-live-weather-add-on\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:7:\"5.4.5.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:173:\"<span class=\"ttm_content\">Showcasing our weather add-on, this slider show a different cities temperatures and forecast on each slide.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:167:\"[{\"path\":\"revslider-weather-addon\\/revslider-weather-addon.php\",\"name\":\"Live Weather AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:169;a:24:{s:2:\"id\";s:3:\"183\";s:5:\"title\";s:17:\"360 Panorama Tour\";s:5:\"alias\";s:11:\"360panorama\";s:3:\"zip\";s:15:\"360panorama.zip\";s:3:\"uid\";s:32:\"332720fdacdbb38f65e8327a2a96c52d\";s:3:\"img\";s:22:\"360panorama/slide1.jpg\";s:7:\"preview\";s:174:\"https://revolution.themepunch.com/360-degree-real-estate-virtual-tour/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=360-degree-real-estate-virtual-tour\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.5.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:155:\"<span class=\"ttm_content\">An example template for our Panorama 360 tour add-on, created for the real estate market.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:165:\"[{\"path\":\"revslider-panorama-addon\\/revslider-panorama-addon.php\",\"name\":\"Panorama AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:170;a:24:{s:2:\"id\";s:3:\"184\";s:5:\"title\";s:14:\"Duotone Add-on\";s:5:\"alias\";s:14:\"duotone-add-on\";s:3:\"zip\";s:18:\"duotone-add-on.zip\";s:3:\"uid\";s:32:\"a428c6f363b3146e96d20a6f44958922\";s:3:\"img\";s:25:\"duotone-add-on/slide1.jpg\";s:7:\"preview\";s:166:\"https://revolution.themepunch.com/wordpress-duotone-effect-add-on/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-duotone-effect-add-on\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:168:\"<span class=\"ttm_content\">This example template showcases 3 of the 30 Duotone filters available in our brand new Duotone Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:350:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-duotonefilters-addon\\/revslider-duotonefilters-addon.php\",\"name\":\"Duotone AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:171;a:24:{s:2:\"id\";s:3:\"185\";s:5:\"title\";s:13:\"Reveal Add-on\";s:5:\"alias\";s:13:\"reveal-add-on\";s:3:\"zip\";s:17:\"reveal-add-on.zip\";s:3:\"uid\";s:32:\"7fa7525d8ff7fa7365cb98a437e88e32\";s:3:\"img\";s:24:\"reveal-add-on/slide1.jpg\";s:7:\"preview\";s:166:\"https://revolution.themepunch.com/wordpress-content-reveal-effect/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-content-reveal-effect\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:204:\"<span class=\"ttm_content\">An example template that uses our Reveal Add-On, which adds 14 new preloaders combined with reveal loading effects for any slider or hero.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:337:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:190;a:28:{s:2:\"id\";s:3:\"211\";s:5:\"title\";s:18:\"Immersion One Page\";s:5:\"alias\";s:26:\"immersion-one-page-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"immersion-one-page-package\";s:3:\"img\";s:31:\"packages/immersion_overview.jpg\";s:7:\"preview\";s:182:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=immersion-wordpress-one-page-theme-2018\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:7:\"website\";}s:14:\"plugin_require\";s:342:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"},{\"path\":\"revslider-slicey-addon\\/revslider-slicey-addon.php\",\"name\":\"Background Slicey AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:191;a:28:{s:2:\"id\";s:3:\"212\";s:5:\"title\";s:16:\"Immersion Header\";s:5:\"alias\";s:16:\"immersion_header\";s:3:\"zip\";s:26:\"packs/immersion_header.zip\";s:3:\"uid\";s:32:\"853da51256308b341ecd030bd4883229\";s:3:\"img\";s:27:\"immersion_header/slide1.jpg\";s:7:\"preview\";s:182:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=immersion-wordpress-one-page-theme-2018\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:173:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:192;a:28:{s:2:\"id\";s:3:\"213\";s:5:\"title\";s:19:\"Immersion Mountains\";s:5:\"alias\";s:19:\"immersion-mountains\";s:3:\"zip\";s:29:\"packs/immersion-mountains.zip\";s:3:\"uid\";s:32:\"817167eb3fe22b7e065ba210cbe6d53c\";s:3:\"img\";s:30:\"immersion-mountains/slide1.jpg\";s:7:\"preview\";s:182:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=immersion-wordpress-one-page-theme-2018\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:170:\"[{\"path\":\"revslider-slicey-addon\\/revslider-slicey-addon.php\",\"name\":\"Background Slicey AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:193;a:28:{s:2:\"id\";s:3:\"214\";s:5:\"title\";s:17:\"Immersion Product\";s:5:\"alias\";s:17:\"immersion-product\";s:3:\"zip\";s:27:\"packs/immersion-product.zip\";s:3:\"uid\";s:32:\"64134f263484d2bbcd7ef088ffbbfb4b\";s:3:\"img\";s:28:\"immersion-product/slide1.jpg\";s:7:\"preview\";s:182:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=immersion-wordpress-one-page-theme-2018\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:194;a:28:{s:2:\"id\";s:3:\"215\";s:5:\"title\";s:16:\"Immersion Design\";s:5:\"alias\";s:16:\"immersion-design\";s:3:\"zip\";s:26:\"packs/immersion-design.zip\";s:3:\"uid\";s:32:\"91e1d77c1a2826438763804f4d02bc26\";s:3:\"img\";s:27:\"immersion-design/slide1.jpg\";s:7:\"preview\";s:182:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=immersion-wordpress-one-page-theme-2018\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:195;a:28:{s:2:\"id\";s:3:\"216\";s:5:\"title\";s:22:\"Immersion Phototgraphy\";s:5:\"alias\";s:21:\"immersion-photography\";s:3:\"zip\";s:31:\"packs/immersion-photography.zip\";s:3:\"uid\";s:32:\"e3ddf0c577b09740f5cbf2e38ffd684d\";s:3:\"img\";s:32:\"immersion-photography/slide1.jpg\";s:7:\"preview\";s:182:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=immersion-wordpress-one-page-theme-2018\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:196;a:28:{s:2:\"id\";s:3:\"217\";s:5:\"title\";s:14:\"Immersion Grid\";s:5:\"alias\";s:14:\"immersion-grid\";s:3:\"zip\";s:24:\"packs/immersion-grid.zip\";s:3:\"uid\";s:32:\"b6903868189bb83b2c7a852fde3a7dc3\";s:3:\"img\";s:25:\"immersion-grid/slide1.jpg\";s:7:\"preview\";s:182:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=immersion-wordpress-one-page-theme-2018\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:197;a:25:{s:2:\"id\";s:3:\"218\";s:5:\"title\";s:18:\"Funky Intro Slider\";s:5:\"alias\";s:11:\"funkyslider\";s:3:\"zip\";s:15:\"funkyslider.zip\";s:3:\"uid\";s:32:\"2d4187e3fdad19b976be335253c8925d\";s:3:\"img\";s:22:\"funkyslider/slide1.jpg\";s:7:\"preview\";s:174:\"https://revolution.themepunch.com/funky-intro-slider-wordpress-plugin/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=funky-intro-slider-wordpress-plugin\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">This funky intro slider fits just right if you need a striking introduction to your website! Sleek, beautiful and easily customizable!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:335:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"},{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:198;a:28:{s:2:\"id\";s:3:\"219\";s:5:\"title\";s:19:\"Clear View Magazine\";s:5:\"alias\";s:27:\"clear-view-magazine-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:27:\"clear-view-magazine-package\";s:3:\"img\";s:41:\"packages/clear_view_magazine_overview.jpg\";s:7:\"preview\";s:196:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=clear-view-minimal-magazine-wordpress-template\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:199;a:28:{s:2:\"id\";s:3:\"220\";s:5:\"title\";s:15:\"Clear View Menu\";s:5:\"alias\";s:14:\"clearview_menu\";s:3:\"zip\";s:24:\"packs/clearview_menu.zip\";s:3:\"uid\";s:32:\"eaecee5fa5f3c3a7f4d2a96c4616a353\";s:3:\"img\";s:25:\"clearview_menu/slide1.jpg\";s:7:\"preview\";s:196:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=clear-view-minimal-magazine-wordpress-template\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:200;a:28:{s:2:\"id\";s:3:\"221\";s:5:\"title\";s:17:\"Clear View Header\";s:5:\"alias\";s:16:\"clearview_header\";s:3:\"zip\";s:26:\"packs/clearview_header.zip\";s:3:\"uid\";s:32:\"25e3dd80ad130875d7438a07952cb0cd\";s:3:\"img\";s:27:\"clearview_header/slide1.jpg\";s:7:\"preview\";s:196:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=clear-view-minimal-magazine-wordpress-template\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:201;a:28:{s:2:\"id\";s:3:\"222\";s:5:\"title\";s:18:\"Clear View Mission\";s:5:\"alias\";s:17:\"clearview_mission\";s:3:\"zip\";s:27:\"packs/clearview_mission.zip\";s:3:\"uid\";s:32:\"35b2092a49fd2beb549342e69097eb5b\";s:3:\"img\";s:28:\"clearview_mission/slide1.jpg\";s:7:\"preview\";s:196:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=clear-view-minimal-magazine-wordpress-template\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:202;a:28:{s:2:\"id\";s:3:\"223\";s:5:\"title\";s:17:\"Clear View Slider\";s:5:\"alias\";s:17:\"clear-view-slider\";s:3:\"zip\";s:27:\"packs/clear-view-slider.zip\";s:3:\"uid\";s:32:\"d2e17edffce16ed78c54b0ef23fd7e05\";s:3:\"img\";s:28:\"clear-view-slider/slide1.jpg\";s:7:\"preview\";s:196:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=clear-view-minimal-magazine-wordpress-template\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:203;a:28:{s:2:\"id\";s:3:\"224\";s:5:\"title\";s:15:\"Clear View News\";s:5:\"alias\";s:15:\"clear-view-news\";s:3:\"zip\";s:25:\"packs/clear-view-news.zip\";s:3:\"uid\";s:32:\"5698d3131ba141e9afcfd2906739dd00\";s:3:\"img\";s:26:\"clear-view-news/slide1.jpg\";s:7:\"preview\";s:196:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=clear-view-minimal-magazine-wordpress-template\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:204;a:28:{s:2:\"id\";s:3:\"225\";s:5:\"title\";s:18:\"Clear View Clients\";s:5:\"alias\";s:18:\"clear-view-clients\";s:3:\"zip\";s:28:\"packs/clear-view-clients.zip\";s:3:\"uid\";s:32:\"b95616a94832e22bdfac5ce60232be1b\";s:3:\"img\";s:29:\"clear-view-clients/slide1.jpg\";s:7:\"preview\";s:196:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=clear-view-minimal-magazine-wordpress-template\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:205;a:28:{s:2:\"id\";s:3:\"226\";s:5:\"title\";s:18:\"Clear View Contact\";s:5:\"alias\";s:18:\"clear-view-contact\";s:3:\"zip\";s:28:\"packs/clear-view-contact.zip\";s:3:\"uid\";s:32:\"0e0cc1d8f6f6500e5f8a2b091fa3b4cb\";s:3:\"img\";s:29:\"clear-view-contact/slide1.jpg\";s:7:\"preview\";s:196:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=clear-view-minimal-magazine-wordpress-template\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:206;a:28:{s:2:\"id\";s:3:\"227\";s:5:\"title\";s:20:\"Clear View Post Page\";s:5:\"alias\";s:28:\"clear-view-post-page-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:28:\"clear-view-post-page-package\";s:3:\"img\";s:42:\"packages/clear_view_post_page_overview.jpg\";s:7:\"preview\";s:196:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=clear-view-single-post-page-wordpress-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;}i:207;a:28:{s:2:\"id\";s:3:\"228\";s:5:\"title\";s:22:\"Clear View Single Menu\";s:5:\"alias\";s:22:\"clear-view-single-menu\";s:3:\"zip\";s:32:\"packs/clear-view-single-menu.zip\";s:3:\"uid\";s:32:\"1e80f81982f8a4ea763482d4fa99d321\";s:3:\"img\";s:33:\"clear-view-single-menu/slide1.jpg\";s:7:\"preview\";s:196:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=clear-view-single-post-page-wordpress-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;}i:208;a:28:{s:2:\"id\";s:3:\"229\";s:5:\"title\";s:24:\"Clear View Single Header\";s:5:\"alias\";s:24:\"clear-view-single-header\";s:3:\"zip\";s:34:\"packs/clear-view-single-header.zip\";s:3:\"uid\";s:32:\"c8d717627be6cd5e70922ab609694dbf\";s:3:\"img\";s:35:\"clear-view-single-header/slide1.jpg\";s:7:\"preview\";s:196:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=clear-view-single-post-page-wordpress-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;}i:209;a:28:{s:2:\"id\";s:3:\"230\";s:5:\"title\";s:23:\"Clear View Single Media\";s:5:\"alias\";s:23:\"clear-view-single-media\";s:3:\"zip\";s:33:\"packs/clear-view-single-media.zip\";s:3:\"uid\";s:32:\"c480368ded2a64f0cdd44f1674213814\";s:3:\"img\";s:34:\"clear-view-single-media/slide1.jpg\";s:7:\"preview\";s:196:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=clear-view-single-post-page-wordpress-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;}i:210;a:28:{s:2:\"id\";s:3:\"231\";s:5:\"title\";s:22:\"Clear View Single More\";s:5:\"alias\";s:22:\"clear-view-single-more\";s:3:\"zip\";s:32:\"packs/clear-view-single-more.zip\";s:3:\"uid\";s:32:\"9c693190df26218366d1f77e10cf550a\";s:3:\"img\";s:33:\"clear-view-single-more/slide1.jpg\";s:7:\"preview\";s:196:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=clear-view-single-post-page-wordpress-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;}i:211;a:28:{s:2:\"id\";s:3:\"232\";s:5:\"title\";s:25:\"Clear View Single Contact\";s:5:\"alias\";s:25:\"clear-view-single-contact\";s:3:\"zip\";s:35:\"packs/clear-view-single-contact.zip\";s:3:\"uid\";s:32:\"73c0a889f2b654a87b5aba1ff76fbc5c\";s:3:\"img\";s:36:\"clear-view-single-contact/slide1.jpg\";s:7:\"preview\";s:196:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=clear-view-single-post-page-wordpress-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;}i:212;a:24:{s:2:\"id\";s:3:\"233\";s:5:\"title\";s:18:\"Clean Landing Page\";s:5:\"alias\";s:16:\"cleanlandingpage\";s:3:\"zip\";s:20:\"cleanlandingpage.zip\";s:3:\"uid\";s:32:\"727a3680d312f22c6a5998ebdb9afe52\";s:3:\"img\";s:27:\"cleanlandingpage/slide1.jpg\";s:7:\"preview\";s:168:\"https://revolution.themepunch.com/clean-landing-page-for-wordpress/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=clean-landing-page-for-wordpress\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:203:\"<span class=\"ttm_content\">The Clean Landing Page is a fullscreen Intro Module that is a striking introduction to any minimal website, with no unnecessary elements.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:173:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:213;a:24:{s:2:\"id\";s:3:\"234\";s:5:\"title\";s:9:\"Clear Cut\";s:5:\"alias\";s:8:\"clearcut\";s:3:\"zip\";s:12:\"clearcut.zip\";s:3:\"uid\";s:32:\"07f43c00e9b4d3057a03cdb3385ad2b7\";s:3:\"img\";s:19:\"clearcut/slide1.jpg\";s:7:\"preview\";s:186:\"https://revolution.themepunch.com/clear-cut-portfolio-website-for-wordpress/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=clear-cut-portfolio-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:240:\"<span class=\"ttm_content\">The Clear Cut Template is an All-In-One Portfolio Website solution that works best for smaller portfolios. Highlight your best work in a striking and mobile friendly fashion!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:214;a:28:{s:2:\"id\";s:3:\"235\";s:5:\"title\";s:22:\"Wonderstruck One-Pager\";s:5:\"alias\";s:30:\"wonderstruck-one-pager-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:30:\"wonderstruck-one-pager-package\";s:3:\"img\";s:44:\"packages/wonderstruck-one-pager-overview.jpg\";s:7:\"preview\";s:189:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:215;a:28:{s:2:\"id\";s:3:\"236\";s:5:\"title\";s:17:\"Wonderstruck Menu\";s:5:\"alias\";s:17:\"wonderstruck_menu\";s:3:\"zip\";s:27:\"packs/wonderstruck_menu.zip\";s:3:\"uid\";s:32:\"0a976e9aaae59c4f795b38f59f5a08d8\";s:3:\"img\";s:28:\"wonderstruck_menu/slide1.jpg\";s:7:\"preview\";s:189:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:216;a:28:{s:2:\"id\";s:3:\"237\";s:5:\"title\";s:19:\"Wonderstruck Header\";s:5:\"alias\";s:19:\"wonderstruck_header\";s:3:\"zip\";s:29:\"packs/wonderstruck_header.zip\";s:3:\"uid\";s:32:\"e1379f77a902960a0ce12d44d85a9e0a\";s:3:\"img\";s:30:\"wonderstruck_header/slide1.jpg\";s:7:\"preview\";s:189:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:217;a:28:{s:2:\"id\";s:3:\"238\";s:5:\"title\";s:18:\"Wonderstruck About\";s:5:\"alias\";s:18:\"wonderstruck_about\";s:3:\"zip\";s:28:\"packs/wonderstruck_about.zip\";s:3:\"uid\";s:32:\"d207fb140fd328acc3038300ea52082a\";s:3:\"img\";s:29:\"wonderstruck_about/slide1.jpg\";s:7:\"preview\";s:189:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:218;a:28:{s:2:\"id\";s:3:\"239\";s:5:\"title\";s:18:\"Wonderstruck Works\";s:5:\"alias\";s:18:\"wonderstruck-works\";s:3:\"zip\";s:28:\"packs/wonderstruck-works.zip\";s:3:\"uid\";s:32:\"4476935097e27d92454b0011b7700c1d\";s:3:\"img\";s:29:\"wonderstruck-works/slide1.jpg\";s:7:\"preview\";s:189:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:219;a:28:{s:2:\"id\";s:3:\"240\";s:5:\"title\";s:20:\"Wonderstruck Contact\";s:5:\"alias\";s:20:\"wonderstruck-contact\";s:3:\"zip\";s:30:\"packs/wonderstruck-contact.zip\";s:3:\"uid\";s:32:\"9e4911521f77bce2b8efa40f4c2adc22\";s:3:\"img\";s:31:\"wonderstruck-contact/slide1.jpg\";s:7:\"preview\";s:189:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:220;a:24:{s:2:\"id\";s:3:\"241\";s:5:\"title\";s:12:\"Bubble Morph\";s:5:\"alias\";s:11:\"bubblemorph\";s:3:\"zip\";s:15:\"bubblemorph.zip\";s:3:\"uid\";s:32:\"1102d6f5460ab82cb612cbe9f1d9514b\";s:3:\"img\";s:22:\"bubblemorph/slide1.jpg\";s:7:\"preview\";s:184:\"https://revolution.themepunch.com/bubble-morph-effect-add-on-for-wordpress/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=bubble-morph-effect-add-on-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:188:\"<span class=\"ttm_content\">The Bubble Morph Add-On allows you to create interesting Lava-Lamp style effects on any of your Slider Revolution content.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:221;a:24:{s:2:\"id\";s:3:\"242\";s:5:\"title\";s:16:\"Distortion AddOn\";s:5:\"alias\";s:15:\"distortionaddon\";s:3:\"zip\";s:19:\"distortionaddon.zip\";s:3:\"uid\";s:32:\"0ad46c9929bb2fa6316f1e6ced301aaf\";s:3:\"img\";s:26:\"distortionaddon/slide1.jpg\";s:7:\"preview\";s:180:\"https://revolution.themepunch.com/distortion-effect-add-on-for-wordpress/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=distortion-effect-add-on-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Distortion Add-On allows you to create interesting Distortion style effects on any of your Slider Revolution content.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:182:\"[{\"path\":\"revslider-liquideffect-addon\\/revslider-liquideffect-addon.php\",\"name\":\"Distortion Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:222;a:24:{s:2:\"id\";s:3:\"243\";s:5:\"title\";s:10:\"Club Flyer\";s:5:\"alias\";s:9:\"clubflyer\";s:3:\"zip\";s:13:\"clubflyer.zip\";s:3:\"uid\";s:32:\"dab73b9904d0e643a35b0475980998bd\";s:3:\"img\";s:20:\"clubflyer/slide1.jpg\";s:7:\"preview\";s:196:\"https://revolution.themepunch.com/club-flyer-landing-page-template-for-wordpress/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=club-flyer-landing-page-template-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:227:\"<span class=\"ttm_content\">This Club Fyler Template for Slider Revolution uses the brand new Exploding Layers Add-On to create a captivating effect. Tap into unlimited creative potential. </span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:187:\"[{\"path\":\"revslider-explodinglayers-addon\\/revslider-explodinglayers-addon.php\",\"name\":\"Exploding Layers AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:223;a:24:{s:2:\"id\";s:3:\"244\";s:5:\"title\";s:16:\"Paintbrush AddOn\";s:5:\"alias\";s:15:\"paintbrushaddon\";s:3:\"zip\";s:19:\"paintbrushaddon.zip\";s:3:\"uid\";s:32:\"c85c48a6742b4bf72a2590cc1b50f6a0\";s:3:\"img\";s:26:\"paintbrushaddon/slide1.jpg\";s:7:\"preview\";s:180:\"https://revolution.themepunch.com/paintbrush-effect-add-on-for-wordpress/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=paintbrush-effect-add-on-for-wordpress\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:239:\"<span class=\"ttm_content\">The Paintbrush Add-On for WordPress allows you to add cool mouse interaction effects to your Slider Revolution content. Examples: Blur Reveal, Color Reveal, Scratch Me Free.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:171:\"[{\"path\":\"revslider-paintbrush-addon\\/revslider-paintbrush-addon.php\",\"name\":\"Paintbrush AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:87:\"How to Add a Unique Paintbrush Effect to Your Website with Slider Revolution [Tutorial]\";s:9:\"guide_url\";s:68:\"https://www.sliderrevolution.com/tutorials/unique-paintbrush-effect/\";s:9:\"guide_img\";s:28:\"tutorial/paintbrushaddon.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:224;a:28:{s:2:\"id\";s:3:\"245\";s:5:\"title\";s:18:\"Parallax One-Pager\";s:5:\"alias\";s:26:\"parallax-one-pager-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"parallax-one-pager-package\";s:3:\"img\";s:39:\"packages/parallax-one-pager-package.jpg\";s:7:\"preview\";s:176:\"https://revolution.themepunch.com/parallax-one-page-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=parallax-one-page-wordpress-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:230:\"<span class=\"ttm_content\">The Parallax One-Page WordPress Template is consisting of 3 hero blocks and contains a beautiful parallax mountain scene. An impactful opening to your web presence!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Parallax One-Pager\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"14\";s:9:\"installed\";b:0;}i:225;a:28:{s:2:\"id\";s:3:\"246\";s:5:\"title\";s:15:\"Parallax Header\";s:5:\"alias\";s:15:\"parallax_header\";s:3:\"zip\";s:25:\"packs/parallax_header.zip\";s:3:\"uid\";s:32:\"32bf4a0f5136853bd6bd366275a7a60b\";s:3:\"img\";s:26:\"parallax_header/slide1.jpg\";s:7:\"preview\";s:176:\"https://revolution.themepunch.com/parallax-one-page-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=parallax-one-page-wordpress-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:230:\"<span class=\"ttm_content\">The Parallax One-Page WordPress Template is consisting of 3 hero blocks and contains a beautiful parallax mountain scene. An impactful opening to your web presence!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Parallax One-Pager\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"14\";s:9:\"installed\";b:0;}i:226;a:28:{s:2:\"id\";s:3:\"247\";s:5:\"title\";s:16:\"Parallax Content\";s:5:\"alias\";s:16:\"parallax_content\";s:3:\"zip\";s:26:\"packs/parallax_content.zip\";s:3:\"uid\";s:32:\"a25c5fb8f74757476ab4dc038e56f90d\";s:3:\"img\";s:27:\"parallax_content/slide1.jpg\";s:7:\"preview\";s:176:\"https://revolution.themepunch.com/parallax-one-page-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=parallax-one-page-wordpress-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:230:\"<span class=\"ttm_content\">The Parallax One-Page WordPress Template is consisting of 3 hero blocks and contains a beautiful parallax mountain scene. An impactful opening to your web presence!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Parallax One-Pager\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"14\";s:9:\"installed\";b:0;}i:227;a:28:{s:2:\"id\";s:3:\"248\";s:5:\"title\";s:15:\"Parallax Footer\";s:5:\"alias\";s:15:\"parallax_footer\";s:3:\"zip\";s:25:\"packs/parallax_footer.zip\";s:3:\"uid\";s:32:\"665dff9ea6eaf162a2a1f160f51a9ddb\";s:3:\"img\";s:26:\"parallax_footer/slide1.jpg\";s:7:\"preview\";s:176:\"https://revolution.themepunch.com/parallax-one-page-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=parallax-one-page-wordpress-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:230:\"<span class=\"ttm_content\">The Parallax One-Page WordPress Template is consisting of 3 hero blocks and contains a beautiful parallax mountain scene. An impactful opening to your web presence!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Parallax One-Pager\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"14\";s:9:\"installed\";b:0;}i:228;a:28:{s:2:\"id\";s:3:\"249\";s:5:\"title\";s:18:\"Le Chef Restaurant\";s:5:\"alias\";s:18:\"le-chef-restaurant\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"le-chef-restaurant-package\";s:3:\"img\";s:39:\"packages/le-chef-restaurant-package.jpg\";s:7:\"preview\";s:194:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=le-chef-restaurant-website-wordpress-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:261:\"<span class=\"ttm_content\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:229;a:28:{s:2:\"id\";s:3:\"250\";s:5:\"title\";s:12:\"Le Chef Menu\";s:5:\"alias\";s:12:\"le-chef-menu\";s:3:\"zip\";s:22:\"packs/le-chef-menu.zip\";s:3:\"uid\";s:32:\"2f2a6a333431fefe4a7b3b6a982b2ff5\";s:3:\"img\";s:23:\"le-chef-menu/slide1.jpg\";s:7:\"preview\";s:194:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=le-chef-restaurant-website-wordpress-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:261:\"<span class=\"ttm_content\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:230;a:28:{s:2:\"id\";s:3:\"251\";s:5:\"title\";s:14:\"Le Chef Header\";s:5:\"alias\";s:14:\"le-chef-header\";s:3:\"zip\";s:24:\"packs/le-chef-header.zip\";s:3:\"uid\";s:32:\"06450ca3be5a4a8959f3752ab974e574\";s:3:\"img\";s:25:\"le-chef-header/slide1.jpg\";s:7:\"preview\";s:194:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=le-chef-restaurant-website-wordpress-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:261:\"<span class=\"ttm_content\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:231;a:28:{s:2:\"id\";s:3:\"252\";s:5:\"title\";s:18:\"Le Chef Philosophy\";s:5:\"alias\";s:18:\"le-chef-philosophy\";s:3:\"zip\";s:28:\"packs/le-chef-philosophy.zip\";s:3:\"uid\";s:32:\"a532fd029addeb18106e751409b8e20a\";s:3:\"img\";s:29:\"le-chef-philosophy/slide1.jpg\";s:7:\"preview\";s:194:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=le-chef-restaurant-website-wordpress-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:261:\"<span class=\"ttm_content\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:232;a:28:{s:2:\"id\";s:3:\"253\";s:5:\"title\";s:12:\"Le Chef Food\";s:5:\"alias\";s:12:\"le-chef-food\";s:3:\"zip\";s:22:\"packs/le-chef-food.zip\";s:3:\"uid\";s:32:\"cd4b6a2cb5de2dd20a0e8ba0c35451df\";s:3:\"img\";s:23:\"le-chef-food/slide1.jpg\";s:7:\"preview\";s:194:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=le-chef-restaurant-website-wordpress-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:261:\"<span class=\"ttm_content\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:233;a:28:{s:2:\"id\";s:3:\"254\";s:5:\"title\";s:16:\"Le Chef La Carte\";s:5:\"alias\";s:16:\"le-chef-la-carte\";s:3:\"zip\";s:26:\"packs/le-chef-la-carte.zip\";s:3:\"uid\";s:32:\"6f312749679c3ba52c41189a6b8bf729\";s:3:\"img\";s:27:\"le-chef-la-carte/slide1.jpg\";s:7:\"preview\";s:194:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=le-chef-restaurant-website-wordpress-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:261:\"<span class=\"ttm_content\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:234;a:28:{s:2:\"id\";s:3:\"255\";s:5:\"title\";s:14:\"Le Chef Footer\";s:5:\"alias\";s:14:\"le-chef-footer\";s:3:\"zip\";s:24:\"packs/le-chef-footer.zip\";s:3:\"uid\";s:32:\"12fc241e8e5b9e5df9758c43448e2907\";s:3:\"img\";s:25:\"le-chef-footer/slide1.jpg\";s:7:\"preview\";s:194:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=le-chef-restaurant-website-wordpress-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:261:\"<span class=\"ttm_content\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:235;a:24:{s:2:\"id\";s:3:\"256\";s:5:\"title\";s:20:\"News Magazine Slider\";s:5:\"alias\";s:20:\"news-magazine-slider\";s:3:\"zip\";s:24:\"news-magazine-slider.zip\";s:3:\"uid\";s:32:\"31f2c1506babb1fef459401f051d2d52\";s:3:\"img\";s:31:\"news-magazine-slider/slide1.jpg\";s:7:\"preview\";s:172:\"https://revolution.themepunch.com/news-magazine-slider-for-wordpress/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=news-magazine-slider-for-wordpress\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:205:\"<span class=\"ttm_content\">The Magazine Slider offers various layouts that support static content images, HTML5 and Youtube video. Great for any blog or news website!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:236;a:24:{s:2:\"id\";s:3:\"257\";s:5:\"title\";s:18:\"Real Estate Slider\";s:5:\"alias\";s:18:\"real-estate-slider\";s:3:\"zip\";s:22:\"real-estate-slider.zip\";s:3:\"uid\";s:32:\"739ce6336e46815094387c9448e6c804\";s:3:\"img\";s:29:\"real-estate-slider/slide1.jpg\";s:7:\"preview\";s:168:\"https://revolution.themepunch.com/real-estate-slider-for-wordpress/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=real-estate-slider-for-wordpress\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:204:\"<span class=\"ttm_content\">The Real Estate Slider allows to display real estate offers with a large ken burns background image and additional thumbnail hover images.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:237;a:24:{s:2:\"id\";s:3:\"258\";s:5:\"title\";s:14:\"Fashion Header\";s:5:\"alias\";s:14:\"fashion-header\";s:3:\"zip\";s:18:\"fashion-header.zip\";s:3:\"uid\";s:32:\"24ece4e7f4d31cd90377c62abbd9e25a\";s:3:\"img\";s:25:\"fashion-header/slide1.jpg\";s:7:\"preview\";s:184:\"https://revolution.themepunch.com/fashion-shop-header-slider-for-wordpress/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=fashion-shop-header-slider-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:254:\"<span class=\"ttm_content\">The Fashion Shop Header ist the ideal Slider to display as an intro to your shop website or as a separator in between content. Our unique \"Bubble Morph\" effect makes this module stand out!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:238;a:24:{s:2:\"id\";s:3:\"259\";s:5:\"title\";s:14:\"Seasonal Offer\";s:5:\"alias\";s:13:\"seasonaloffer\";s:3:\"zip\";s:17:\"seasonaloffer.zip\";s:3:\"uid\";s:32:\"caf2f17f8fd64f2f89dcb3c8dd238457\";s:3:\"img\";s:24:\"seasonaloffer/slide1.jpg\";s:7:\"preview\";s:194:\"https://revolution.themepunch.com/seasonal-offer-christmas-header-for-wordpress/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=seasonal-offer-christmas-header-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.8.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:204:\"<span class=\"ttm_content\">Use the Seasonal Offer Header to promote special offers in the holiday season, or just to add some snowy christmas spirit to your website!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:153:\"[{\"path\":\"revslider-snow-addon\\/revslider-snow-addon.php\",\"name\":\"Snow AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:239;a:28:{s:2:\"id\";s:3:\"260\";s:5:\"title\";s:11:\"Barber Shop\";s:5:\"alias\";s:11:\"barber-shop\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:19:\"barber-shop-package\";s:3:\"img\";s:32:\"packages/barber-shop-package.jpg\";s:7:\"preview\";s:172:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=barber-shop-template-for-wordpress\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;}i:240;a:28:{s:2:\"id\";s:3:\"261\";s:5:\"title\";s:18:\"Barber Shop Header\";s:5:\"alias\";s:18:\"barber-shop-header\";s:3:\"zip\";s:28:\"packs/barber-shop-header.zip\";s:3:\"uid\";s:32:\"71c995d36d39a0e8a04cffdf753f2ba2\";s:3:\"img\";s:29:\"barber-shop-header/slide1.jpg\";s:7:\"preview\";s:172:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=barber-shop-template-for-wordpress\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;}i:241;a:28:{s:2:\"id\";s:3:\"262\";s:5:\"title\";s:23:\"Barber Shop Mobile Menu\";s:5:\"alias\";s:23:\"barber-shop-mobile-menu\";s:3:\"zip\";s:33:\"packs/barber-shop-mobile-menu.zip\";s:3:\"uid\";s:32:\"762c6fb5c6306f37becb1e55773c2592\";s:3:\"img\";s:34:\"barber-shop-mobile-menu/slide1.jpg\";s:7:\"preview\";s:172:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=barber-shop-template-for-wordpress\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;}i:242;a:28:{s:2:\"id\";s:3:\"263\";s:5:\"title\";s:24:\"Barber Shop First Screen\";s:5:\"alias\";s:24:\"barber-shop-first-screen\";s:3:\"zip\";s:34:\"packs/barber-shop-first-screen.zip\";s:3:\"uid\";s:32:\"acf70bfd64cff2c3c2ea5585223575da\";s:3:\"img\";s:35:\"barber-shop-first-screen/slide1.jpg\";s:7:\"preview\";s:172:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=barber-shop-template-for-wordpress\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;}i:243;a:28:{s:2:\"id\";s:3:\"264\";s:5:\"title\";s:17:\"Barber Shop About\";s:5:\"alias\";s:17:\"barber-shop-about\";s:3:\"zip\";s:27:\"packs/barber-shop-about.zip\";s:3:\"uid\";s:32:\"bc8b63cfc7f8c34173b4fd5b082fc05a\";s:3:\"img\";s:28:\"barber-shop-about/slide1.jpg\";s:7:\"preview\";s:172:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=barber-shop-template-for-wordpress\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;}i:244;a:28:{s:2:\"id\";s:3:\"265\";s:5:\"title\";s:20:\"Barber Shop Services\";s:5:\"alias\";s:20:\"barber-shop-services\";s:3:\"zip\";s:30:\"packs/barber-shop-services.zip\";s:3:\"uid\";s:32:\"d65121d6f84fabd812a2b621b768e10e\";s:3:\"img\";s:31:\"barber-shop-services/slide1.jpg\";s:7:\"preview\";s:172:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=barber-shop-template-for-wordpress\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;}i:245;a:28:{s:2:\"id\";s:3:\"266\";s:5:\"title\";s:19:\"Barber Shop Barbers\";s:5:\"alias\";s:19:\"barber-shop-barbers\";s:3:\"zip\";s:29:\"packs/barber-shop-barbers.zip\";s:3:\"uid\";s:32:\"003e9fec9693072119c8f8d8b6690c4d\";s:3:\"img\";s:30:\"barber-shop-barbers/slide1.jpg\";s:7:\"preview\";s:172:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=barber-shop-template-for-wordpress\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;}i:246;a:28:{s:2:\"id\";s:3:\"267\";s:5:\"title\";s:20:\"Barber Shop Contacts\";s:5:\"alias\";s:20:\"barber-shop-contacts\";s:3:\"zip\";s:30:\"packs/barber-shop-contacts.zip\";s:3:\"uid\";s:32:\"cdcc08f5d6c90dbcfd0502bda2401643\";s:3:\"img\";s:31:\"barber-shop-contacts/slide1.jpg\";s:7:\"preview\";s:172:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=barber-shop-template-for-wordpress\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;}i:247;a:28:{s:2:\"id\";s:3:\"268\";s:5:\"title\";s:18:\"Barber Shop Footer\";s:5:\"alias\";s:18:\"barber-shop-footer\";s:3:\"zip\";s:28:\"packs/barber-shop-footer.zip\";s:3:\"uid\";s:32:\"26ca5ae0de7cdbb2ca19348b6e01eda0\";s:3:\"img\";s:29:\"barber-shop-footer/slide1.jpg\";s:7:\"preview\";s:172:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=barber-shop-template-for-wordpress\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;}i:248;a:24:{s:2:\"id\";s:3:\"269\";s:5:\"title\";s:12:\"Fitness Club\";s:5:\"alias\";s:21:\"fitness-club-template\";s:3:\"zip\";s:25:\"fitness-club-template.zip\";s:3:\"uid\";s:32:\"14ea10d68d6aad1df62b3becf71df754\";s:3:\"img\";s:32:\"fitness-club-template/slide1.jpg\";s:7:\"preview\";s:170:\"https://revolution.themepunch.com/fitness-club-header-for-wordpress/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=fitness-club-header-for-wordpress\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:223:\"<span class=\"ttm_content\">The Fitness Club Header is the perfect introduction to your fitness themed website. Showcase your current offers or service portfolio with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:249;a:24:{s:2:\"id\";s:3:\"270\";s:5:\"title\";s:13:\"Soccer School\";s:5:\"alias\";s:13:\"soccer-school\";s:3:\"zip\";s:17:\"soccer-school.zip\";s:3:\"uid\";s:32:\"9906b48812aff67097f990eeee42dd41\";s:3:\"img\";s:24:\"soccer-school/slide1.jpg\";s:7:\"preview\";s:168:\"https://revolution.themepunch.com/soccer-club-slider-for-wordpress/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=soccer-club-slider-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:228:\"<span class=\"ttm_content\">The Soccer Club Header is the perfect introduction to your Soccer School themed website. Showcase your current offers or service portfolio with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:250;a:24:{s:2:\"id\";s:3:\"271\";s:5:\"title\";s:10:\"Music Band\";s:5:\"alias\";s:19:\"music-band-template\";s:3:\"zip\";s:23:\"music-band-template.zip\";s:3:\"uid\";s:32:\"91e79657bf1b1812f8114a00ab8e0eb4\";s:3:\"img\";s:30:\"music-band-template/slide1.jpg\";s:7:\"preview\";s:170:\"https://revolution.themepunch.com/music-band-template-for-wordpress/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=music-band-template-for-wordpress\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:7:\"5.4.8.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Music Band Header is the perfect introduction to your Music Band themed website. Showcase your current songs, albums and videos with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:251;a:24:{s:2:\"id\";s:3:\"272\";s:5:\"title\";s:15:\"Restaurant Menu\";s:5:\"alias\";s:15:\"restaurant-menu\";s:3:\"zip\";s:19:\"restaurant-menu.zip\";s:3:\"uid\";s:32:\"078809cffb21b6c4d3f5aaa2daeb193d\";s:3:\"img\";s:26:\"restaurant-menu/slide1.jpg\";s:7:\"preview\";s:176:\"https://revolution.themepunch.com/restaurant-menu-slider-for-wordpress/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=restaurant-menu-slider-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.8.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:208:\"<span class=\"ttm_content\">The Restaurant Menu Header is the perfect introduction to your Restaurant themed website. Showcase your current dishes with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:70:\"How to Create a Digital Menu Teaser for Your Foodie Website [Tutorial]\";s:9:\"guide_url\";s:103:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-digital-menu-teaser-for-your-foodie-website/\";s:9:\"guide_img\";s:28:\"tutorial/restaurant-menu.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:252;a:24:{s:2:\"id\";s:3:\"273\";s:5:\"title\";s:16:\"Cinematic Slider\";s:5:\"alias\";s:16:\"cinematic-slider\";s:3:\"zip\";s:20:\"cinematic-slider.zip\";s:3:\"uid\";s:32:\"c53e7dcbb6b656ae7b4c91d333589838\";s:3:\"img\";s:27:\"cinematic-slider/slide1.jpg\";s:7:\"preview\";s:154:\"https://revolution.themepunch.com/cinematic-slider-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=cinematic-slider-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:138:\"<span class=\"ttm_content\">Bold texts and a cinematic transition effect make this slider stand out!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:253;a:24:{s:2:\"id\";s:3:\"274\";s:5:\"title\";s:17:\"3D Parallax Cubes\";s:5:\"alias\";s:17:\"3d-parallax-cubes\";s:3:\"zip\";s:21:\"3d-parallax-cubes.zip\";s:3:\"uid\";s:32:\"c5b809a1829f8f809c9a768cd3d6b3cb\";s:3:\"img\";s:28:\"3d-parallax-cubes/slide1.jpg\";s:7:\"preview\";s:170:\"https://revolution.themepunch.com/3d-parallax-cubes-slider-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=3d-parallax-cubes-slider-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:149:\"<span class=\"ttm_content\">This amazing 3D cubes parallax effect can be an eye-opening intro for your website!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:254;a:28:{s:2:\"id\";s:3:\"275\";s:5:\"title\";s:33:\"Medicare Medical Services Website\";s:5:\"alias\";s:33:\"medicare-medical-services-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:41:\"medicare-medical-services-website-package\";s:3:\"img\";s:29:\"packages/medicare_package.jpg\";s:7:\"preview\";s:170:\"https://revolution.themepunch.com/medicare-medical-services-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=medicare-medical-services-website\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:255;a:28:{s:2:\"id\";s:3:\"276\";s:5:\"title\";s:13:\"Medicare Menu\";s:5:\"alias\";s:13:\"medicare-menu\";s:3:\"zip\";s:23:\"packs/medicare-menu.zip\";s:3:\"uid\";s:32:\"0e4ca8fc281e20251b3fffa19d470fed\";s:3:\"img\";s:24:\"medicare-menu/slide1.jpg\";s:7:\"preview\";s:170:\"https://revolution.themepunch.com/medicare-medical-services-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=medicare-medical-services-website\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:256;a:28:{s:2:\"id\";s:3:\"277\";s:5:\"title\";s:15:\"Medicare Header\";s:5:\"alias\";s:15:\"medicare-header\";s:3:\"zip\";s:25:\"packs/medicare-header.zip\";s:3:\"uid\";s:32:\"03e8ade247d8c96f548bc0515f34043f\";s:3:\"img\";s:26:\"medicare-header/slide1.jpg\";s:7:\"preview\";s:170:\"https://revolution.themepunch.com/medicare-medical-services-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=medicare-medical-services-website\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:257;a:28:{s:2:\"id\";s:3:\"278\";s:5:\"title\";s:14:\"Medicare About\";s:5:\"alias\";s:14:\"medicare-about\";s:3:\"zip\";s:24:\"packs/medicare-about.zip\";s:3:\"uid\";s:32:\"a3ab9e89155ef2542820343f30b29f72\";s:3:\"img\";s:25:\"medicare-about/slide1.jpg\";s:7:\"preview\";s:170:\"https://revolution.themepunch.com/medicare-medical-services-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=medicare-medical-services-website\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:258;a:28:{s:2:\"id\";s:3:\"279\";s:5:\"title\";s:18:\"Medicare Highlight\";s:5:\"alias\";s:18:\"medicare-highlight\";s:3:\"zip\";s:28:\"packs/medicare-highlight.zip\";s:3:\"uid\";s:32:\"c3c8a74e5402489f1a85a0c83890ef1f\";s:3:\"img\";s:29:\"medicare-highlight/slide1.jpg\";s:7:\"preview\";s:170:\"https://revolution.themepunch.com/medicare-medical-services-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=medicare-medical-services-website\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:259;a:28:{s:2:\"id\";s:3:\"280\";s:5:\"title\";s:17:\"Medicare Services\";s:5:\"alias\";s:17:\"medicare-services\";s:3:\"zip\";s:27:\"packs/medicare-services.zip\";s:3:\"uid\";s:32:\"8869b0834d4649dcc3221bed65980806\";s:3:\"img\";s:28:\"medicare-services/slide1.jpg\";s:7:\"preview\";s:170:\"https://revolution.themepunch.com/medicare-medical-services-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=medicare-medical-services-website\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:260;a:28:{s:2:\"id\";s:3:\"281\";s:5:\"title\";s:16:\"Medicare Doctors\";s:5:\"alias\";s:16:\"medicare-doctors\";s:3:\"zip\";s:26:\"packs/medicare-doctors.zip\";s:3:\"uid\";s:32:\"2c9d57afd64244b5f7e30b0d87c842f9\";s:3:\"img\";s:27:\"medicare-doctors/slide1.jpg\";s:7:\"preview\";s:170:\"https://revolution.themepunch.com/medicare-medical-services-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=medicare-medical-services-website\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:261;a:28:{s:2:\"id\";s:3:\"282\";s:5:\"title\";s:17:\"Medicare Research\";s:5:\"alias\";s:17:\"medicare-research\";s:3:\"zip\";s:27:\"packs/medicare-research.zip\";s:3:\"uid\";s:32:\"31e84a91fc8b8d5296e715e539a076d0\";s:3:\"img\";s:28:\"medicare-research/slide1.jpg\";s:7:\"preview\";s:170:\"https://revolution.themepunch.com/medicare-medical-services-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=medicare-medical-services-website\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:262;a:28:{s:2:\"id\";s:3:\"283\";s:5:\"title\";s:19:\"Medicare Why Choose\";s:5:\"alias\";s:18:\"medicare-whychoose\";s:3:\"zip\";s:28:\"packs/medicare-whychoose.zip\";s:3:\"uid\";s:32:\"6dad61c672127de9e35884caa45d49a0\";s:3:\"img\";s:29:\"medicare-whychoose/slide1.jpg\";s:7:\"preview\";s:170:\"https://revolution.themepunch.com/medicare-medical-services-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=medicare-medical-services-website\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:263;a:28:{s:2:\"id\";s:3:\"284\";s:5:\"title\";s:16:\"Medicare Contact\";s:5:\"alias\";s:16:\"medicare-contact\";s:3:\"zip\";s:26:\"packs/medicare-contact.zip\";s:3:\"uid\";s:32:\"89bc35ad8beb62a149c42262ae49a270\";s:3:\"img\";s:27:\"medicare-contact/slide1.jpg\";s:7:\"preview\";s:170:\"https://revolution.themepunch.com/medicare-medical-services-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=medicare-medical-services-website\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:264;a:28:{s:2:\"id\";s:3:\"285\";s:5:\"title\";s:15:\"Medicare Footer\";s:5:\"alias\";s:15:\"medicare-footer\";s:3:\"zip\";s:25:\"packs/medicare-footer.zip\";s:3:\"uid\";s:32:\"ccf63e5233b3d63009e5ee90db51b37b\";s:3:\"img\";s:26:\"medicare-footer/slide1.jpg\";s:7:\"preview\";s:170:\"https://revolution.themepunch.com/medicare-medical-services-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=medicare-medical-services-website\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:2:\"10\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:265;a:28:{s:2:\"id\";s:3:\"286\";s:5:\"title\";s:20:\"Coffee Joint Website\";s:5:\"alias\";s:20:\"coffee-joint-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:28:\"coffee-joint-website-package\";s:3:\"img\";s:27:\"packages/coffee_package.jpg\";s:7:\"preview\";s:186:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=coffee-joint-coffee-shop-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:266;a:28:{s:2:\"id\";s:3:\"287\";s:5:\"title\";s:11:\"Coffee Menu\";s:5:\"alias\";s:11:\"coffee-menu\";s:3:\"zip\";s:21:\"packs/coffee-menu.zip\";s:3:\"uid\";s:32:\"81195cad7be3f5180a267b34ce8cf966\";s:3:\"img\";s:22:\"coffee-menu/slide1.jpg\";s:7:\"preview\";s:186:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=coffee-joint-coffee-shop-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:267;a:28:{s:2:\"id\";s:3:\"288\";s:5:\"title\";s:13:\"Coffee Header\";s:5:\"alias\";s:13:\"coffee-header\";s:3:\"zip\";s:23:\"packs/coffee-header.zip\";s:3:\"uid\";s:32:\"5eed8adb9d3ae12168ad4735ac63eb20\";s:3:\"img\";s:24:\"coffee-header/slide1.jpg\";s:7:\"preview\";s:186:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=coffee-joint-coffee-shop-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:268;a:28:{s:2:\"id\";s:3:\"289\";s:5:\"title\";s:17:\"Coffee Philosophy\";s:5:\"alias\";s:17:\"coffee-philosophy\";s:3:\"zip\";s:27:\"packs/coffee-philosophy.zip\";s:3:\"uid\";s:32:\"76b5ccae3fa87fd0f991b87e7ae71c27\";s:3:\"img\";s:28:\"coffee-philosophy/slide1.jpg\";s:7:\"preview\";s:186:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=coffee-joint-coffee-shop-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:269;a:28:{s:2:\"id\";s:3:\"290\";s:5:\"title\";s:12:\"Coffee Carte\";s:5:\"alias\";s:12:\"coffee-carte\";s:3:\"zip\";s:22:\"packs/coffee-carte.zip\";s:3:\"uid\";s:32:\"470214ddd2cec585629fb79a0fd908d6\";s:3:\"img\";s:23:\"coffee-carte/slide1.jpg\";s:7:\"preview\";s:186:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=coffee-joint-coffee-shop-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:270;a:28:{s:2:\"id\";s:3:\"291\";s:5:\"title\";s:13:\"Coffee Teaser\";s:5:\"alias\";s:13:\"coffee-teaser\";s:3:\"zip\";s:23:\"packs/coffee-teaser.zip\";s:3:\"uid\";s:32:\"2ed868896c92a7bfb6431803c79e8486\";s:3:\"img\";s:24:\"coffee-teaser/slide1.jpg\";s:7:\"preview\";s:186:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=coffee-joint-coffee-shop-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:271;a:28:{s:2:\"id\";s:3:\"292\";s:5:\"title\";s:14:\"Coffee Find Us\";s:5:\"alias\";s:13:\"coffee-findus\";s:3:\"zip\";s:23:\"packs/coffee-findus.zip\";s:3:\"uid\";s:32:\"96d3784473dfa64bce9e1e4101919927\";s:3:\"img\";s:24:\"coffee-findus/slide1.jpg\";s:7:\"preview\";s:186:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=coffee-joint-coffee-shop-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:272;a:28:{s:2:\"id\";s:3:\"293\";s:5:\"title\";s:13:\"Coffee Footer\";s:5:\"alias\";s:13:\"coffee-footer\";s:3:\"zip\";s:23:\"packs/coffee-footer.zip\";s:3:\"uid\";s:32:\"6027c25e87a5fe7fd8727a51c0967915\";s:3:\"img\";s:24:\"coffee-footer/slide1.jpg\";s:7:\"preview\";s:186:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=coffee-joint-coffee-shop-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:273;a:28:{s:2:\"id\";s:3:\"294\";s:5:\"title\";s:25:\"Minimal Portfolio Website\";s:5:\"alias\";s:25:\"minimal-portfolio-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:25:\"minimal-portfolio-website\";s:3:\"img\";s:38:\"packages/minimal_portfolio_package.jpg\";s:7:\"preview\";s:172:\"https://revolution.themepunch.com/minimal-portfolio-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=minimal-portfolio-website-template\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">The Minimal Portfolio template is a slide based website with additional modal detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Minimal Portfolio\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"19\";s:9:\"installed\";b:0;}i:274;a:28:{s:2:\"id\";s:3:\"295\";s:5:\"title\";s:17:\"Minimal Portfolio\";s:5:\"alias\";s:17:\"minimal-portfolio\";s:3:\"zip\";s:27:\"packs/minimal-portfolio.zip\";s:3:\"uid\";s:32:\"183b97b301d5ff0b171c067a87c8a3f5\";s:3:\"img\";s:28:\"minimal-portfolio/slide1.jpg\";s:7:\"preview\";s:172:\"https://revolution.themepunch.com/minimal-portfolio-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=minimal-portfolio-website-template\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">The Minimal Portfolio template is a slide based website with additional modal detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Minimal Portfolio\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"19\";s:9:\"installed\";b:0;}i:275;a:28:{s:2:\"id\";s:3:\"296\";s:5:\"title\";s:23:\"Minimal Portfolio Modal\";s:5:\"alias\";s:23:\"minimal-portfolio-modal\";s:3:\"zip\";s:33:\"packs/minimal-portfolio-modal.zip\";s:3:\"uid\";s:32:\"6874e6cec3663670f209a8d8a4f26b16\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide1.jpg\";s:7:\"preview\";s:172:\"https://revolution.themepunch.com/minimal-portfolio-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=minimal-portfolio-website-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">The Minimal Portfolio template is a slide based website with additional modal detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Minimal Portfolio\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"19\";s:9:\"installed\";b:0;}i:276;a:28:{s:2:\"id\";s:3:\"297\";s:5:\"title\";s:23:\"Angled Business Website\";s:5:\"alias\";s:23:\"angled-business-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:31:\"angled-business-website-package\";s:3:\"img\";s:27:\"packages/angled_package.jpg\";s:7:\"preview\";s:168:\"https://revolution.themepunch.com/angled-business-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=angled-business-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:277;a:28:{s:2:\"id\";s:3:\"298\";s:5:\"title\";s:11:\"Angled Menu\";s:5:\"alias\";s:11:\"angled-menu\";s:3:\"zip\";s:21:\"packs/angled-menu.zip\";s:3:\"uid\";s:32:\"2fe0c4682d1231ee3918be9e4fcb1837\";s:3:\"img\";s:22:\"angled-menu/slide1.jpg\";s:7:\"preview\";s:168:\"https://revolution.themepunch.com/angled-business-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=angled-business-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:278;a:28:{s:2:\"id\";s:3:\"299\";s:5:\"title\";s:13:\"Angled Header\";s:5:\"alias\";s:13:\"angled-header\";s:3:\"zip\";s:23:\"packs/angled-header.zip\";s:3:\"uid\";s:32:\"09462601d4edca8dff899de6f666dc47\";s:3:\"img\";s:24:\"angled-header/slide1.jpg\";s:7:\"preview\";s:168:\"https://revolution.themepunch.com/angled-business-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=angled-business-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:279;a:28:{s:2:\"id\";s:3:\"300\";s:5:\"title\";s:11:\"Angled News\";s:5:\"alias\";s:11:\"angled-news\";s:3:\"zip\";s:21:\"packs/angled-news.zip\";s:3:\"uid\";s:32:\"b315105763ed91214cb2f0ac12615729\";s:3:\"img\";s:22:\"angled-news/slide1.jpg\";s:7:\"preview\";s:168:\"https://revolution.themepunch.com/angled-business-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=angled-business-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:280;a:28:{s:2:\"id\";s:3:\"301\";s:5:\"title\";s:15:\"Angled Services\";s:5:\"alias\";s:15:\"angled-services\";s:3:\"zip\";s:25:\"packs/angled-services.zip\";s:3:\"uid\";s:32:\"7605651c1487e1a6c32edc70017be8ad\";s:3:\"img\";s:26:\"angled-services/slide1.jpg\";s:7:\"preview\";s:168:\"https://revolution.themepunch.com/angled-business-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=angled-business-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:281;a:28:{s:2:\"id\";s:3:\"302\";s:5:\"title\";s:14:\"Angled Success\";s:5:\"alias\";s:14:\"angled-success\";s:3:\"zip\";s:24:\"packs/angled-success.zip\";s:3:\"uid\";s:32:\"9e3fa974a42ecf80e1ec6ff991fca430\";s:3:\"img\";s:25:\"angled-success/slide1.jpg\";s:7:\"preview\";s:168:\"https://revolution.themepunch.com/angled-business-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=angled-business-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:282;a:28:{s:2:\"id\";s:3:\"303\";s:5:\"title\";s:13:\"Angled Footer\";s:5:\"alias\";s:13:\"angled-footer\";s:3:\"zip\";s:23:\"packs/angled-footer.zip\";s:3:\"uid\";s:32:\"aed4eaa2f7883351ba9c9947feef153e\";s:3:\"img\";s:24:\"angled-footer/slide1.jpg\";s:7:\"preview\";s:168:\"https://revolution.themepunch.com/angled-business-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=angled-business-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:283;a:28:{s:2:\"id\";s:3:\"304\";s:5:\"title\";s:20:\"Angled Content Modal\";s:5:\"alias\";s:20:\"angled-content-modal\";s:3:\"zip\";s:30:\"packs/angled-content-modal.zip\";s:3:\"uid\";s:32:\"4ddc74515fdf84f974217e4ed47a7c66\";s:3:\"img\";s:31:\"angled-content-modal/slide1.jpg\";s:7:\"preview\";s:168:\"https://revolution.themepunch.com/angled-business-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=angled-business-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:284;a:24:{s:2:\"id\";s:3:\"312\";s:5:\"title\";s:24:\"Retouch Before and After\";s:5:\"alias\";s:7:\"Retouch\";s:3:\"zip\";s:11:\"Retouch.zip\";s:3:\"uid\";s:32:\"58894991f1abd8b448c8d353b1b5fe76\";s:3:\"img\";s:18:\"Retouch/slide1.jpg\";s:7:\"preview\";s:157:\"http://revolution.themepunch.com/retouch-before-after-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=retouch-before-after-slider\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:155:\"<span class=\"ttm_content\">The Retouch Slider is the perfect way to compare your photos before and after retouching.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-beforeafter-addon\\/revslider-beforeafter-addon.php\",\"name\":\"Before After AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:285;a:24:{s:2:\"id\";s:3:\"313\";s:5:\"title\";s:11:\"Tech Slider\";s:5:\"alias\";s:11:\"tech-slider\";s:3:\"zip\";s:15:\"tech-slider.zip\";s:3:\"uid\";s:32:\"a98e2b264f00a1116d21808c6a543162\";s:3:\"img\";s:22:\"tech-slider/slide1.jpg\";s:7:\"preview\";s:161:\"http://revolution.themepunch.com/tech-showcase-slider-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=tech-showcase-slider-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:153:\"<span class=\"ttm_content\">This classic slider module with sleek device mockups features a smooth parallax effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:286;a:28:{s:2:\"id\";s:3:\"314\";s:5:\"title\";s:19:\"Peak Agency Website\";s:5:\"alias\";s:19:\"peak-agency-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:27:\"peak-agency-website-package\";s:3:\"img\";s:25:\"packages/peak_package.jpg\";s:7:\"preview\";s:160:\"https://revolution.themepunch.com/peak-agency-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=peak-agency-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:129:\"<span class=\"ttm_content\">The Peak Agency Website template is a minimal, light one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Peak Agency\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"22\";s:9:\"installed\";b:0;}i:287;a:28:{s:2:\"id\";s:3:\"315\";s:5:\"title\";s:11:\"Peak Header\";s:5:\"alias\";s:11:\"peak-header\";s:3:\"zip\";s:21:\"packs/peak-header.zip\";s:3:\"uid\";s:32:\"b721bd612e9fbc5182418ad3fd7d0808\";s:3:\"img\";s:22:\"peak-header/slide1.jpg\";s:7:\"preview\";s:160:\"https://revolution.themepunch.com/peak-agency-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=peak-agency-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:129:\"<span class=\"ttm_content\">The Peak Agency Website template is a minimal, light one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Peak Agency\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"22\";s:9:\"installed\";b:0;}i:288;a:28:{s:2:\"id\";s:3:\"316\";s:5:\"title\";s:10:\"Peak About\";s:5:\"alias\";s:10:\"peak-about\";s:3:\"zip\";s:20:\"packs/peak-about.zip\";s:3:\"uid\";s:32:\"7e68b1012fb03490d45c7f79e8cb1b19\";s:3:\"img\";s:21:\"peak-about/slide1.jpg\";s:7:\"preview\";s:160:\"https://revolution.themepunch.com/peak-agency-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=peak-agency-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:129:\"<span class=\"ttm_content\">The Peak Agency Website template is a minimal, light one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Peak Agency\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"22\";s:9:\"installed\";b:0;}i:289;a:28:{s:2:\"id\";s:3:\"317\";s:5:\"title\";s:14:\"Peak Portfolio\";s:5:\"alias\";s:14:\"peak-portfolio\";s:3:\"zip\";s:24:\"packs/peak-portfolio.zip\";s:3:\"uid\";s:32:\"6198d1885ba9e95221c33e404f21bdbc\";s:3:\"img\";s:25:\"peak-portfolio/slide1.jpg\";s:7:\"preview\";s:160:\"https://revolution.themepunch.com/peak-agency-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=peak-agency-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:129:\"<span class=\"ttm_content\">The Peak Agency Website template is a minimal, light one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Peak Agency\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"22\";s:9:\"installed\";b:0;}i:290;a:28:{s:2:\"id\";s:3:\"318\";s:5:\"title\";s:11:\"Peak Footer\";s:5:\"alias\";s:11:\"peak-footer\";s:3:\"zip\";s:21:\"packs/peak-footer.zip\";s:3:\"uid\";s:32:\"2dead6897ad3b3a709b380d81242f76b\";s:3:\"img\";s:22:\"peak-footer/slide1.jpg\";s:7:\"preview\";s:160:\"https://revolution.themepunch.com/peak-agency-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=peak-agency-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:129:\"<span class=\"ttm_content\">The Peak Agency Website template is a minimal, light one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Peak Agency\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"22\";s:9:\"installed\";b:0;}i:291;a:28:{s:2:\"id\";s:3:\"319\";s:5:\"title\";s:24:\"Modern Portfolio Website\";s:5:\"alias\";s:24:\"modern-portfolio-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:24:\"modern-portfolio-website\";s:3:\"img\";s:30:\"packages/portfolio-package.jpg\";s:7:\"preview\";s:152:\"https://revolution.themepunch.com/modern-portfolio-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=modern-portfolio-website\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A modern portfolio template with fancy scroll animations and a colorful design.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"Modern Portfolio\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:80:\"How to Add a Dramatic Pop of Color to Your Site with a Duotone Effect [Tutorial]\";s:9:\"guide_url\";s:113:\"https://www.sliderrevolution.com/tutorials/how-to-add-a-dramatic-pop-of-color-to-your-site-with-a-duotone-effect/\";s:9:\"guide_img\";s:37:\"tutorial/Modern-Portfolio-Website.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"23\";s:9:\"installed\";b:0;}i:292;a:28:{s:2:\"id\";s:3:\"320\";s:5:\"title\";s:17:\"Portfolio Welcome\";s:5:\"alias\";s:17:\"portfolio-welcome\";s:3:\"zip\";s:27:\"packs/portfolio-welcome.zip\";s:3:\"uid\";s:32:\"97336b8785e4a7b27facaf1547e0464d\";s:3:\"img\";s:28:\"portfolio-welcome/slide1.jpg\";s:7:\"preview\";s:152:\"https://revolution.themepunch.com/modern-portfolio-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=modern-portfolio-website\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A modern portfolio template with fancy scroll animations and a colorful design.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"Modern Portfolio\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:80:\"How to Add a Dramatic Pop of Color to Your Site with a Duotone Effect [Tutorial]\";s:9:\"guide_url\";s:113:\"https://www.sliderrevolution.com/tutorials/how-to-add-a-dramatic-pop-of-color-to-your-site-with-a-duotone-effect/\";s:9:\"guide_img\";s:37:\"tutorial/Modern-Portfolio-Website.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"23\";s:9:\"installed\";b:0;}i:293;a:28:{s:2:\"id\";s:3:\"321\";s:5:\"title\";s:15:\"Portfolio About\";s:5:\"alias\";s:15:\"portfolio-about\";s:3:\"zip\";s:25:\"packs/portfolio-about.zip\";s:3:\"uid\";s:32:\"5d3a4724fd453de5313ceb6696c1db62\";s:3:\"img\";s:26:\"portfolio-about/slide1.jpg\";s:7:\"preview\";s:152:\"https://revolution.themepunch.com/modern-portfolio-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=modern-portfolio-website\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A modern portfolio template with fancy scroll animations and a colorful design.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"Modern Portfolio\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:80:\"How to Add a Dramatic Pop of Color to Your Site with a Duotone Effect [Tutorial]\";s:9:\"guide_url\";s:113:\"https://www.sliderrevolution.com/tutorials/how-to-add-a-dramatic-pop-of-color-to-your-site-with-a-duotone-effect/\";s:9:\"guide_img\";s:37:\"tutorial/Modern-Portfolio-Website.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"23\";s:9:\"installed\";b:0;}i:294;a:28:{s:2:\"id\";s:3:\"322\";s:5:\"title\";s:21:\"Portfolio Works Title\";s:5:\"alias\";s:21:\"portfolio-works-title\";s:3:\"zip\";s:31:\"packs/portfolio-works-title.zip\";s:3:\"uid\";s:32:\"cbb5c6e875cc1f25b463fdf89cabef28\";s:3:\"img\";s:32:\"portfolio-works-title/slide1.jpg\";s:7:\"preview\";s:152:\"https://revolution.themepunch.com/modern-portfolio-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=modern-portfolio-website\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A modern portfolio template with fancy scroll animations and a colorful design.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"Modern Portfolio\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:80:\"How to Add a Dramatic Pop of Color to Your Site with a Duotone Effect [Tutorial]\";s:9:\"guide_url\";s:113:\"https://www.sliderrevolution.com/tutorials/how-to-add-a-dramatic-pop-of-color-to-your-site-with-a-duotone-effect/\";s:9:\"guide_img\";s:37:\"tutorial/Modern-Portfolio-Website.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"23\";s:9:\"installed\";b:0;}i:295;a:28:{s:2:\"id\";s:3:\"323\";s:5:\"title\";s:23:\"Portfolio Works Content\";s:5:\"alias\";s:23:\"portfolio-works-content\";s:3:\"zip\";s:33:\"packs/portfolio-works-content.zip\";s:3:\"uid\";s:32:\"5c87311128c7794ffa6ee07ea0648082\";s:3:\"img\";s:34:\"portfolio-works-content/slide1.jpg\";s:7:\"preview\";s:152:\"https://revolution.themepunch.com/modern-portfolio-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=modern-portfolio-website\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A modern portfolio template with fancy scroll animations and a colorful design.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"Modern Portfolio\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:80:\"How to Add a Dramatic Pop of Color to Your Site with a Duotone Effect [Tutorial]\";s:9:\"guide_url\";s:113:\"https://www.sliderrevolution.com/tutorials/how-to-add-a-dramatic-pop-of-color-to-your-site-with-a-duotone-effect/\";s:9:\"guide_img\";s:37:\"tutorial/Modern-Portfolio-Website.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"23\";s:9:\"installed\";b:0;}i:296;a:28:{s:2:\"id\";s:3:\"324\";s:5:\"title\";s:18:\"Portfolio Contacts\";s:5:\"alias\";s:18:\"portfolio-contacts\";s:3:\"zip\";s:28:\"packs/portfolio-contacts.zip\";s:3:\"uid\";s:32:\"bd81feffad83b69218f7e837478038e5\";s:3:\"img\";s:29:\"portfolio-contacts/slide1.jpg\";s:7:\"preview\";s:152:\"https://revolution.themepunch.com/modern-portfolio-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=modern-portfolio-website\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A modern portfolio template with fancy scroll animations and a colorful design.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"Modern Portfolio\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:80:\"How to Add a Dramatic Pop of Color to Your Site with a Duotone Effect [Tutorial]\";s:9:\"guide_url\";s:113:\"https://www.sliderrevolution.com/tutorials/how-to-add-a-dramatic-pop-of-color-to-your-site-with-a-duotone-effect/\";s:9:\"guide_img\";s:37:\"tutorial/Modern-Portfolio-Website.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"23\";s:9:\"installed\";b:0;}i:297;a:28:{s:2:\"id\";s:3:\"325\";s:5:\"title\";s:18:\"App Studio Website\";s:5:\"alias\";s:18:\"app-studio-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"app-studio-website-package\";s:3:\"img\";s:31:\"packages/App_Studio_package.jpg\";s:7:\"preview\";s:140:\"https://revolution.themepunch.com/app-studio-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=app-studio-website\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:149:\"<span class=\"ttm_content\">A modern one-page presentation website to present your mobile app development team.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:10:\"App Studio\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"24\";s:9:\"installed\";b:0;}i:298;a:28:{s:2:\"id\";s:3:\"326\";s:5:\"title\";s:18:\"App Studio Welcome\";s:5:\"alias\";s:18:\"App-Studio-Welcome\";s:3:\"zip\";s:28:\"packs/App-Studio-Welcome.zip\";s:3:\"uid\";s:32:\"2ce0f3c54214b04e6c3a9becfd59730c\";s:3:\"img\";s:29:\"App-Studio-Welcome/slide1.jpg\";s:7:\"preview\";s:140:\"https://revolution.themepunch.com/app-studio-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=app-studio-website\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:149:\"<span class=\"ttm_content\">A modern one-page presentation website to present your mobile app development team.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:10:\"App Studio\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"24\";s:9:\"installed\";b:0;}i:299;a:28:{s:2:\"id\";s:3:\"327\";s:5:\"title\";s:19:\"App Studio Services\";s:5:\"alias\";s:19:\"App-Studio-Services\";s:3:\"zip\";s:29:\"packs/App-Studio-Services.zip\";s:3:\"uid\";s:32:\"5df7776271ec69d2f9edaa6b842715a9\";s:3:\"img\";s:30:\"App-Studio-Services/slide1.jpg\";s:7:\"preview\";s:140:\"https://revolution.themepunch.com/app-studio-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=app-studio-website\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:149:\"<span class=\"ttm_content\">A modern one-page presentation website to present your mobile app development team.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:10:\"App Studio\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"24\";s:9:\"installed\";b:0;}i:300;a:28:{s:2:\"id\";s:3:\"328\";s:5:\"title\";s:16:\"App Studio About\";s:5:\"alias\";s:16:\"App-Studio-About\";s:3:\"zip\";s:26:\"packs/App-Studio-About.zip\";s:3:\"uid\";s:32:\"af8b84dc116c629df7bd89fc69271a2e\";s:3:\"img\";s:27:\"App-Studio-About/slide1.jpg\";s:7:\"preview\";s:140:\"https://revolution.themepunch.com/app-studio-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=app-studio-website\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:149:\"<span class=\"ttm_content\">A modern one-page presentation website to present your mobile app development team.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:10:\"App Studio\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"24\";s:9:\"installed\";b:0;}i:301;a:28:{s:2:\"id\";s:3:\"329\";s:5:\"title\";s:19:\"App Studio Contacts\";s:5:\"alias\";s:19:\"App-Studio-Contacts\";s:3:\"zip\";s:29:\"packs/App-Studio-Contacts.zip\";s:3:\"uid\";s:32:\"afbbd2214c983d314f3215a00db9198d\";s:3:\"img\";s:30:\"App-Studio-Contacts/slide1.jpg\";s:7:\"preview\";s:140:\"https://revolution.themepunch.com/app-studio-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=app-studio-website\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:149:\"<span class=\"ttm_content\">A modern one-page presentation website to present your mobile app development team.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:10:\"App Studio\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"24\";s:9:\"installed\";b:0;}i:302;a:24:{s:2:\"id\";s:3:\"330\";s:5:\"title\";s:14:\"Cube Animation\";s:5:\"alias\";s:14:\"cube-animation\";s:3:\"zip\";s:18:\"cube-animation.zip\";s:3:\"uid\";s:32:\"c03dd3cfc60479dfc6d79ddb64fa0ec5\";s:3:\"img\";s:25:\"cube-animation/slide1.jpg\";s:7:\"preview\";s:164:\"https://revolution.themepunch.com/cube-animation-slider-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=cube-animation-slider-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:155:\"<span class=\"ttm_content\">A modern slider with text elements, cube animations and a striking call to action button.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:303;a:28:{s:2:\"id\";s:3:\"331\";s:5:\"title\";s:13:\"Basic Website\";s:5:\"alias\";s:13:\"basic-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:21:\"basic-website-package\";s:3:\"img\";s:26:\"packages/basic_package.jpg\";s:7:\"preview\";s:130:\"https://revolution.themepunch.com/basic-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=basic-website\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;}i:304;a:28:{s:2:\"id\";s:3:\"332\";s:5:\"title\";s:10:\"Basic Menu\";s:5:\"alias\";s:10:\"basic-menu\";s:3:\"zip\";s:20:\"packs/basic-menu.zip\";s:3:\"uid\";s:32:\"39277f53b2cb5ac644a1649b47c37270\";s:3:\"img\";s:21:\"basic-menu/slide1.jpg\";s:7:\"preview\";s:130:\"https://revolution.themepunch.com/basic-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=basic-website\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;}i:305;a:28:{s:2:\"id\";s:3:\"333\";s:5:\"title\";s:12:\"Basic Header\";s:5:\"alias\";s:12:\"basic-header\";s:3:\"zip\";s:22:\"packs/basic-header.zip\";s:3:\"uid\";s:32:\"ad7a32dbccb0bdf9de64cf2adfa950a2\";s:3:\"img\";s:23:\"basic-header/slide1.jpg\";s:7:\"preview\";s:130:\"https://revolution.themepunch.com/basic-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=basic-website\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;}i:306;a:28:{s:2:\"id\";s:3:\"334\";s:5:\"title\";s:13:\"Basic Content\";s:5:\"alias\";s:13:\"basic-content\";s:3:\"zip\";s:23:\"packs/basic-content.zip\";s:3:\"uid\";s:32:\"0b12f3b183a3c8206e3a7b28d2d93108\";s:3:\"img\";s:24:\"basic-content/slide1.jpg\";s:7:\"preview\";s:130:\"https://revolution.themepunch.com/basic-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=basic-website\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;}i:307;a:28:{s:2:\"id\";s:3:\"335\";s:5:\"title\";s:14:\"Basic Carousel\";s:5:\"alias\";s:14:\"basic-carousel\";s:3:\"zip\";s:24:\"packs/basic-carousel.zip\";s:3:\"uid\";s:32:\"e4abb5c6d5cf914530575a982d3dfc14\";s:3:\"img\";s:25:\"basic-carousel/slide1.jpg\";s:7:\"preview\";s:130:\"https://revolution.themepunch.com/basic-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=basic-website\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;}i:308;a:28:{s:2:\"id\";s:3:\"336\";s:5:\"title\";s:13:\"Basic Callout\";s:5:\"alias\";s:13:\"basic-callout\";s:3:\"zip\";s:23:\"packs/basic-callout.zip\";s:3:\"uid\";s:32:\"2ccc208b9322f5435d0f4ff64c6d9dab\";s:3:\"img\";s:24:\"basic-callout/slide1.jpg\";s:7:\"preview\";s:130:\"https://revolution.themepunch.com/basic-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=basic-website\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;}i:309;a:28:{s:2:\"id\";s:3:\"337\";s:5:\"title\";s:10:\"Basic Grid\";s:5:\"alias\";s:10:\"basic-grid\";s:3:\"zip\";s:20:\"packs/basic-grid.zip\";s:3:\"uid\";s:32:\"3cb4b41d2992eba012921b8fb7c96daa\";s:3:\"img\";s:21:\"basic-grid/slide1.jpg\";s:7:\"preview\";s:130:\"https://revolution.themepunch.com/basic-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=basic-website\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;}i:310;a:28:{s:2:\"id\";s:3:\"338\";s:5:\"title\";s:17:\"Basic Video Block\";s:5:\"alias\";s:17:\"basic-video-block\";s:3:\"zip\";s:27:\"packs/basic-video-block.zip\";s:3:\"uid\";s:32:\"e7c1d42b21819741f3e72c1325dae5ed\";s:3:\"img\";s:28:\"basic-video-block/slide1.jpg\";s:7:\"preview\";s:130:\"https://revolution.themepunch.com/basic-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=basic-website\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;}i:311;a:28:{s:2:\"id\";s:3:\"339\";s:5:\"title\";s:12:\"Basic Footer\";s:5:\"alias\";s:12:\"basic-footer\";s:3:\"zip\";s:22:\"packs/basic-footer.zip\";s:3:\"uid\";s:32:\"ed8f6a554775ebace558af2f4f2dcbac\";s:3:\"img\";s:23:\"basic-footer/slide1.jpg\";s:7:\"preview\";s:130:\"https://revolution.themepunch.com/basic-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=basic-website\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;}i:312;a:28:{s:2:\"id\";s:3:\"340\";s:5:\"title\";s:14:\"Basic Lightbox\";s:5:\"alias\";s:14:\"basic-lightbox\";s:3:\"zip\";s:24:\"packs/basic-lightbox.zip\";s:3:\"uid\";s:32:\"e4b025b300b1a8f417d04eb80113fac2\";s:3:\"img\";s:25:\"basic-lightbox/slide1.jpg\";s:7:\"preview\";s:130:\"https://revolution.themepunch.com/basic-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=basic-website\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;}i:313;a:24:{s:2:\"id\";s:3:\"341\";s:5:\"title\";s:13:\"Nature Slider\";s:5:\"alias\";s:13:\"nature-slider\";s:3:\"zip\";s:17:\"nature-slider.zip\";s:3:\"uid\";s:32:\"eef1a4584ec1c3b8c26c305cca44e805\";s:3:\"img\";s:24:\"nature-slider/slide1.jpg\";s:7:\"preview\";s:147:\"http://revolution.themepunch.com/nature-explorer-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=nature-explorer-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:151:\"<span class=\"ttm_content\">The Nature Explorer Slider Template uses the Distortion and Particle Effects Add-Ons.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:356:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-liquideffect-addon\\/revslider-liquideffect-addon.php\",\"name\":\"Distortion Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:70:\"How to Design a Featured Post Slider That Impresses Readers [Tutorial]\";s:9:\"guide_url\";s:64:\"https://www.sliderrevolution.com/tutorials/featured-post-slider/\";s:9:\"guide_img\";s:26:\"tutorial/nature-slider.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:314;a:24:{s:2:\"id\";s:3:\"342\";s:5:\"title\";s:11:\"Art Gallery\";s:5:\"alias\";s:11:\"art-gallery\";s:3:\"zip\";s:15:\"art-gallery.zip\";s:3:\"uid\";s:32:\"b8c5095ae3407337e6e5b2a8515e7d6e\";s:3:\"img\";s:22:\"art-gallery/slide1.jpg\";s:7:\"preview\";s:158:\"https://revolution.themepunch.com/art-gallery-slider-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=art-gallery-slider-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:6:\"6.2.22\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A modern slider with large, geometric elements and interesting mask animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:71:\"Promote Your Most Recent Content with a Colorful Hero Design [Tutorial]\";s:9:\"guide_url\";s:104:\"https://www.sliderrevolution.com/tutorials/promote-your-most-recent-content-with-a-colorful-hero-design/\";s:9:\"guide_img\";s:31:\"tutorial/Art-Gallery-Slider.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:315;a:28:{s:2:\"id\";s:3:\"343\";s:5:\"title\";s:20:\"Construction Company\";s:5:\"alias\";s:28:\"construction-company-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:36:\"construction-company-website-package\";s:3:\"img\";s:33:\"packages/construction_package.jpg\";s:7:\"preview\";s:160:\"https://revolution.themepunch.com/construction-company-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=construction-company-website\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:244:\"<span class=\"ttm_content\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Construction Company\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"26\";s:9:\"installed\";b:0;}i:316;a:28:{s:2:\"id\";s:3:\"344\";s:5:\"title\";s:19:\"Construction Header\";s:5:\"alias\";s:19:\"Construction-Header\";s:3:\"zip\";s:29:\"packs/Construction-Header.zip\";s:3:\"uid\";s:32:\"5c77de774b8f5487c1276c4a7b3dc80c\";s:3:\"img\";s:30:\"Construction-Header/slide1.jpg\";s:7:\"preview\";s:160:\"https://revolution.themepunch.com/construction-company-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=construction-company-website\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:244:\"<span class=\"ttm_content\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Construction Company\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"26\";s:9:\"installed\";b:0;}i:317;a:28:{s:2:\"id\";s:3:\"345\";s:5:\"title\";s:17:\"Construction Home\";s:5:\"alias\";s:17:\"Construction-Home\";s:3:\"zip\";s:27:\"packs/Construction-Home.zip\";s:3:\"uid\";s:32:\"fcb277f0c07dad270d2a7cef4431bef8\";s:3:\"img\";s:28:\"Construction-Home/slide1.jpg\";s:7:\"preview\";s:160:\"https://revolution.themepunch.com/construction-company-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=construction-company-website\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:244:\"<span class=\"ttm_content\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Construction Company\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"26\";s:9:\"installed\";b:0;}i:318;a:28:{s:2:\"id\";s:3:\"346\";s:5:\"title\";s:21:\"Construction Projects\";s:5:\"alias\";s:21:\"Construction-Projects\";s:3:\"zip\";s:31:\"packs/Construction-Projects.zip\";s:3:\"uid\";s:32:\"0c847173c3739f79778dc2c0fc9704e4\";s:3:\"img\";s:32:\"Construction-Projects/slide1.jpg\";s:7:\"preview\";s:160:\"https://revolution.themepunch.com/construction-company-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=construction-company-website\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:244:\"<span class=\"ttm_content\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Construction Company\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"26\";s:9:\"installed\";b:0;}i:319;a:28:{s:2:\"id\";s:3:\"347\";s:5:\"title\";s:20:\"Construction History\";s:5:\"alias\";s:20:\"Construction-History\";s:3:\"zip\";s:30:\"packs/Construction-History.zip\";s:3:\"uid\";s:32:\"758da120c4b6c5606692faf0aa43aac6\";s:3:\"img\";s:31:\"Construction-History/slide1.jpg\";s:7:\"preview\";s:160:\"https://revolution.themepunch.com/construction-company-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=construction-company-website\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:244:\"<span class=\"ttm_content\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Construction Company\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"26\";s:9:\"installed\";b:0;}i:320;a:28:{s:2:\"id\";s:3:\"348\";s:5:\"title\";s:21:\"Construction Services\";s:5:\"alias\";s:21:\"Construction-Services\";s:3:\"zip\";s:31:\"packs/Construction-Services.zip\";s:3:\"uid\";s:32:\"5ad5b841c1d89e97ddbf972c8b11abd4\";s:3:\"img\";s:32:\"Construction-Services/slide1.jpg\";s:7:\"preview\";s:160:\"https://revolution.themepunch.com/construction-company-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=construction-company-website\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:244:\"<span class=\"ttm_content\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Construction Company\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:11:\"zindex=\"10\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"26\";s:9:\"installed\";b:0;}i:321;a:28:{s:2:\"id\";s:3:\"349\";s:5:\"title\";s:21:\"Construction Contacts\";s:5:\"alias\";s:21:\"Construction-Contacts\";s:3:\"zip\";s:31:\"packs/Construction-Contacts.zip\";s:3:\"uid\";s:32:\"b8c3c34046bb91ebb243e4da64745d37\";s:3:\"img\";s:32:\"Construction-Contacts/slide1.jpg\";s:7:\"preview\";s:160:\"https://revolution.themepunch.com/construction-company-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=construction-company-website\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:244:\"<span class=\"ttm_content\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Construction Company\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"26\";s:9:\"installed\";b:0;}i:322;a:24:{s:2:\"id\";s:3:\"350\";s:5:\"title\";s:22:\"Classic Cars Evolution\";s:5:\"alias\";s:22:\"Classic-Cars-Evolution\";s:3:\"zip\";s:26:\"Classic-Cars-Evolution.zip\";s:3:\"uid\";s:32:\"7061757f128fd624b0227715dab73b74\";s:3:\"img\";s:33:\"Classic-Cars-Evolution/slide1.jpg\";s:7:\"preview\";s:164:\"https://revolution.themepunch.com/classic-cars-before-after-hero/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=classic-cars-before-after-hero\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:156:\"<span class=\"ttm_content\">The Classic Cars Evolution Slider is a great example of our popular before & after Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-beforeafter-addon\\/revslider-beforeafter-addon.php\",\"name\":\"Before After AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:69:\"How to Create an Interactive Before-and-After Image Slider [Tutorial]\";s:9:\"guide_url\";s:102:\"https://www.sliderrevolution.com/tutorials/how-to-create-an-interactive-before-and-after-image-slider/\";s:9:\"guide_img\";s:35:\"tutorial/Classic-Cars-Evolution.jpg\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:323;a:24:{s:2:\"id\";s:3:\"351\";s:5:\"title\";s:21:\"404 Error Space Theme\";s:5:\"alias\";s:21:\"404-Error-Space-Theme\";s:3:\"zip\";s:25:\"404-Error-Space-Theme.zip\";s:3:\"uid\";s:32:\"6412adc7ec025826328e40e552a14e1e\";s:3:\"img\";s:32:\"404-Error-Space-Theme/slide1.jpg\";s:7:\"preview\";s:132:\"https://revolution.themepunch.com/404-error-page/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=404-error-page\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">The Classic Cars Evolution Slider is the perfect way to make your error page more beautiful.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:82:\"How to Create a 404 Page That Will Convert Instead of Cost You Visitors [Tutorial]\";s:9:\"guide_url\";s:68:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-404-page/\";s:9:\"guide_img\";s:34:\"tutorial/404-Error-Space-Theme.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:324;a:28:{s:2:\"id\";s:3:\"352\";s:5:\"title\";s:12:\"Landing Page\";s:5:\"alias\";s:20:\"landing-page-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:28:\"landing-page-website-package\";s:3:\"img\";s:23:\"packages/lp_package.jpg\";s:7:\"preview\";s:144:\"https://revolution.themepunch.com/landing-page-builder/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=landing-page-builder\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:325;a:28:{s:2:\"id\";s:3:\"353\";s:5:\"title\";s:17:\"Landing Page Hero\";s:5:\"alias\";s:17:\"landing-page-hero\";s:3:\"zip\";s:27:\"packs/landing-page-hero.zip\";s:3:\"uid\";s:32:\"d328635caa20da7ee8a3ab687f8656ff\";s:3:\"img\";s:28:\"landing-page-hero/slide1.jpg\";s:7:\"preview\";s:144:\"https://revolution.themepunch.com/landing-page-builder/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=landing-page-builder\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:326;a:28:{s:2:\"id\";s:3:\"354\";s:5:\"title\";s:21:\"Landing Page Features\";s:5:\"alias\";s:21:\"landing-page-features\";s:3:\"zip\";s:31:\"packs/landing-page-features.zip\";s:3:\"uid\";s:32:\"6552bc72abace10918a64866d9bb79c1\";s:3:\"img\";s:32:\"landing-page-features/slide1.jpg\";s:7:\"preview\";s:144:\"https://revolution.themepunch.com/landing-page-builder/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=landing-page-builder\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:327;a:28:{s:2:\"id\";s:3:\"355\";s:5:\"title\";s:20:\"Landing Page Callout\";s:5:\"alias\";s:20:\"landing-page-callout\";s:3:\"zip\";s:30:\"packs/landing-page-callout.zip\";s:3:\"uid\";s:32:\"c5b101ea5471e7409ae7effa8d45fbcf\";s:3:\"img\";s:31:\"landing-page-callout/slide1.jpg\";s:7:\"preview\";s:144:\"https://revolution.themepunch.com/landing-page-builder/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=landing-page-builder\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:328;a:28:{s:2:\"id\";s:3:\"356\";s:5:\"title\";s:20:\"Landing Page Content\";s:5:\"alias\";s:20:\"landing-page-content\";s:3:\"zip\";s:30:\"packs/landing-page-content.zip\";s:3:\"uid\";s:32:\"34da8057a6bb3677c9adf9f18ffc6cf0\";s:3:\"img\";s:31:\"landing-page-content/slide1.jpg\";s:7:\"preview\";s:144:\"https://revolution.themepunch.com/landing-page-builder/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=landing-page-builder\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:329;a:28:{s:2:\"id\";s:3:\"357\";s:5:\"title\";s:25:\"Landing Page Testimonials\";s:5:\"alias\";s:25:\"landing-page-testimonials\";s:3:\"zip\";s:35:\"packs/landing-page-testimonials.zip\";s:3:\"uid\";s:32:\"a83606e311cd5115422d86f04890cbf1\";s:3:\"img\";s:36:\"landing-page-testimonials/slide1.jpg\";s:7:\"preview\";s:144:\"https://revolution.themepunch.com/landing-page-builder/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=landing-page-builder\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:330;a:28:{s:2:\"id\";s:3:\"358\";s:5:\"title\";s:27:\"Landing Page Call to Action\";s:5:\"alias\";s:27:\"landing-page-call-to-action\";s:3:\"zip\";s:37:\"packs/landing-page-call-to-action.zip\";s:3:\"uid\";s:32:\"adfb456b27fa7eb6b1415d8f80836f05\";s:3:\"img\";s:38:\"landing-page-call-to-action/slide1.jpg\";s:7:\"preview\";s:144:\"https://revolution.themepunch.com/landing-page-builder/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=landing-page-builder\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:331;a:28:{s:2:\"id\";s:3:\"359\";s:5:\"title\";s:17:\"Landing Page Help\";s:5:\"alias\";s:17:\"landing-page-help\";s:3:\"zip\";s:27:\"packs/landing-page-help.zip\";s:3:\"uid\";s:32:\"ca502431f9b7f6249d99b02464de2dd7\";s:3:\"img\";s:28:\"landing-page-help/slide1.jpg\";s:7:\"preview\";s:144:\"https://revolution.themepunch.com/landing-page-builder/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=landing-page-builder\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:332;a:28:{s:2:\"id\";s:3:\"360\";s:5:\"title\";s:19:\"Landing Page Footer\";s:5:\"alias\";s:19:\"landing-page-footer\";s:3:\"zip\";s:29:\"packs/landing-page-footer.zip\";s:3:\"uid\";s:32:\"2a6afc371dbd60cb117f8a0f5d09eac9\";s:3:\"img\";s:30:\"landing-page-footer/slide1.jpg\";s:7:\"preview\";s:144:\"https://revolution.themepunch.com/landing-page-builder/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=landing-page-builder\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:333;a:28:{s:2:\"id\";s:3:\"361\";s:5:\"title\";s:24:\"Landing Page Price Modal\";s:5:\"alias\";s:24:\"landing-page-price-modal\";s:3:\"zip\";s:34:\"packs/landing-page-price-modal.zip\";s:3:\"uid\";s:32:\"a6c5c0430b46dd4e6e68416964a8c54d\";s:3:\"img\";s:35:\"landing-page-price-modal/slide1.jpg\";s:7:\"preview\";s:144:\"https://revolution.themepunch.com/landing-page-builder/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=landing-page-builder\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:334;a:27:{s:2:\"id\";s:3:\"371\";s:5:\"title\";s:17:\"Corporate Website\";s:5:\"alias\";s:17:\"corporate-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:25:\"corporate-website-package\";s:3:\"img\";s:30:\"packages/corporate-website.jpg\";s:7:\"preview\";s:156:\"https://revolution.themepunch.com/corporate-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=corporate-website-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:173:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:335;a:27:{s:2:\"id\";s:3:\"372\";s:5:\"title\";s:16:\"Corporate Header\";s:5:\"alias\";s:16:\"Corporate-Header\";s:3:\"zip\";s:26:\"packs/Corporate-Header.zip\";s:3:\"uid\";s:32:\"04f868e3812a1681f00ab89580e5d1f8\";s:3:\"img\";s:27:\"Corporate-Header/slide1.jpg\";s:7:\"preview\";s:156:\"https://revolution.themepunch.com/corporate-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=corporate-website-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:336;a:27:{s:2:\"id\";s:3:\"373\";s:5:\"title\";s:24:\"Corporate Welcome Screen\";s:5:\"alias\";s:24:\"Corporate-Welcome-Screen\";s:3:\"zip\";s:34:\"packs/Corporate-Welcome-Screen.zip\";s:3:\"uid\";s:32:\"052afe98ef819f7ace041dbbdb749639\";s:3:\"img\";s:35:\"Corporate-Welcome-Screen/slide1.jpg\";s:7:\"preview\";s:156:\"https://revolution.themepunch.com/corporate-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=corporate-website-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:173:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:337;a:27:{s:2:\"id\";s:3:\"374\";s:5:\"title\";s:15:\"Corporate About\";s:5:\"alias\";s:15:\"Corporate-About\";s:3:\"zip\";s:25:\"packs/Corporate-About.zip\";s:3:\"uid\";s:32:\"7bf5f8f6d4cc3016cea86289cb46e5b6\";s:3:\"img\";s:26:\"Corporate-About/slide1.jpg\";s:7:\"preview\";s:156:\"https://revolution.themepunch.com/corporate-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=corporate-website-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:338;a:27:{s:2:\"id\";s:3:\"375\";s:5:\"title\";s:19:\"Corporate Portfolio\";s:5:\"alias\";s:19:\"Corporate-Portfolio\";s:3:\"zip\";s:29:\"packs/Corporate-Portfolio.zip\";s:3:\"uid\";s:32:\"612c2bd784fea81392dda1644a3c3cf3\";s:3:\"img\";s:30:\"Corporate-Portfolio/slide1.jpg\";s:7:\"preview\";s:156:\"https://revolution.themepunch.com/corporate-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=corporate-website-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:339;a:27:{s:2:\"id\";s:3:\"376\";s:5:\"title\";s:15:\"Corporate Chart\";s:5:\"alias\";s:15:\"Corporate-Chart\";s:3:\"zip\";s:25:\"packs/Corporate-Chart.zip\";s:3:\"uid\";s:32:\"4d27d9b3b2cfcce750e526aafb322a9f\";s:3:\"img\";s:26:\"Corporate-Chart/slide1.jpg\";s:7:\"preview\";s:156:\"https://revolution.themepunch.com/corporate-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=corporate-website-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:340;a:27:{s:2:\"id\";s:3:\"377\";s:5:\"title\";s:14:\"Corporate News\";s:5:\"alias\";s:14:\"Corporate-News\";s:3:\"zip\";s:24:\"packs/Corporate-News.zip\";s:3:\"uid\";s:32:\"bb65ed57a0d4db795d8b738f0a92f2d7\";s:3:\"img\";s:25:\"Corporate-News/slide1.jpg\";s:7:\"preview\";s:156:\"https://revolution.themepunch.com/corporate-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=corporate-website-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:341;a:27:{s:2:\"id\";s:3:\"378\";s:5:\"title\";s:16:\"Corporate Hiring\";s:5:\"alias\";s:16:\"Corporate-Hiring\";s:3:\"zip\";s:26:\"packs/Corporate-Hiring.zip\";s:3:\"uid\";s:32:\"136cf1a91604e819089eb3573a6e100a\";s:3:\"img\";s:27:\"Corporate-Hiring/slide1.jpg\";s:7:\"preview\";s:156:\"https://revolution.themepunch.com/corporate-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=corporate-website-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:342;a:27:{s:2:\"id\";s:3:\"379\";s:5:\"title\";s:22:\"Corporate Testimonials\";s:5:\"alias\";s:22:\"Corporate-Testimonials\";s:3:\"zip\";s:32:\"packs/Corporate-Testimonials.zip\";s:3:\"uid\";s:32:\"b17aec0afdc31e37359cfa406164463c\";s:3:\"img\";s:33:\"Corporate-Testimonials/slide1.jpg\";s:7:\"preview\";s:156:\"https://revolution.themepunch.com/corporate-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=corporate-website-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:343;a:27:{s:2:\"id\";s:3:\"380\";s:5:\"title\";s:15:\"Corporate Store\";s:5:\"alias\";s:15:\"Corporate-Store\";s:3:\"zip\";s:25:\"packs/Corporate-Store.zip\";s:3:\"uid\";s:32:\"6240b14620ddc634736716e0cdfdeb31\";s:3:\"img\";s:26:\"Corporate-Store/slide1.jpg\";s:7:\"preview\";s:156:\"https://revolution.themepunch.com/corporate-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=corporate-website-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:344;a:27:{s:2:\"id\";s:3:\"381\";s:5:\"title\";s:17:\"Corporate Support\";s:5:\"alias\";s:17:\"Corporate-Support\";s:3:\"zip\";s:27:\"packs/Corporate-Support.zip\";s:3:\"uid\";s:32:\"9424292a78076ce68c2faf587b26cdad\";s:3:\"img\";s:28:\"Corporate-Support/slide1.jpg\";s:7:\"preview\";s:156:\"https://revolution.themepunch.com/corporate-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=corporate-website-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"10\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:345;a:27:{s:2:\"id\";s:3:\"382\";s:5:\"title\";s:14:\"Corporate Team\";s:5:\"alias\";s:14:\"Corporate-Team\";s:3:\"zip\";s:24:\"packs/Corporate-Team.zip\";s:3:\"uid\";s:32:\"4fafe469b5a0a2545625c3f6d7ff3b9e\";s:3:\"img\";s:25:\"Corporate-Team/slide1.jpg\";s:7:\"preview\";s:156:\"https://revolution.themepunch.com/corporate-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=corporate-website-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"11\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:346;a:27:{s:2:\"id\";s:3:\"383\";s:5:\"title\";s:33:\"Corporate Selected Projects Title\";s:5:\"alias\";s:33:\"Corporate-Selected-Projects-Title\";s:3:\"zip\";s:43:\"packs/Corporate-Selected-Projects-Title.zip\";s:3:\"uid\";s:32:\"0ed3c41f51e6bf404c2fe179fa8d8ceb\";s:3:\"img\";s:44:\"Corporate-Selected-Projects-Title/slide1.jpg\";s:7:\"preview\";s:156:\"https://revolution.themepunch.com/corporate-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=corporate-website-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"12\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:347;a:27:{s:2:\"id\";s:3:\"384\";s:5:\"title\";s:27:\"Corporate Selected Projects\";s:5:\"alias\";s:27:\"Corporate-Selected-Projects\";s:3:\"zip\";s:37:\"packs/Corporate-Selected-Projects.zip\";s:3:\"uid\";s:32:\"1096c78d5f007f3900228a4092515e2e\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide1.jpg\";s:7:\"preview\";s:156:\"https://revolution.themepunch.com/corporate-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=corporate-website-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"13\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:348;a:27:{s:2:\"id\";s:3:\"385\";s:5:\"title\";s:17:\"Corporate Clients\";s:5:\"alias\";s:17:\"Corporate-Clients\";s:3:\"zip\";s:27:\"packs/Corporate-Clients.zip\";s:3:\"uid\";s:32:\"60fe3a311195bf4dba3e50bd1ab98574\";s:3:\"img\";s:28:\"Corporate-Clients/slide1.jpg\";s:7:\"preview\";s:156:\"https://revolution.themepunch.com/corporate-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=corporate-website-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"14\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:349;a:27:{s:2:\"id\";s:3:\"386\";s:5:\"title\";s:20:\"Corporate Text Block\";s:5:\"alias\";s:20:\"Corporate-Text-Block\";s:3:\"zip\";s:30:\"packs/Corporate-Text-Block.zip\";s:3:\"uid\";s:32:\"93b68bb23d65fd1028b6b5f6d19b85b5\";s:3:\"img\";s:31:\"Corporate-Text-Block/slide1.jpg\";s:7:\"preview\";s:156:\"https://revolution.themepunch.com/corporate-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=corporate-website-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"15\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:350;a:27:{s:2:\"id\";s:3:\"387\";s:5:\"title\";s:20:\"Corporate Mobile App\";s:5:\"alias\";s:20:\"Corporate-Mobile-App\";s:3:\"zip\";s:30:\"packs/Corporate-Mobile-App.zip\";s:3:\"uid\";s:32:\"e592369d233bea673403daa15c6e498a\";s:3:\"img\";s:31:\"Corporate-Mobile-App/slide1.jpg\";s:7:\"preview\";s:156:\"https://revolution.themepunch.com/corporate-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=corporate-website-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"16\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:351;a:27:{s:2:\"id\";s:3:\"388\";s:5:\"title\";s:18:\"Corporate Contacts\";s:5:\"alias\";s:18:\"Corporate-Contacts\";s:3:\"zip\";s:28:\"packs/Corporate-Contacts.zip\";s:3:\"uid\";s:32:\"91ae9488b54b7020f8ae9dfbfd6c563a\";s:3:\"img\";s:29:\"Corporate-Contacts/slide1.jpg\";s:7:\"preview\";s:156:\"https://revolution.themepunch.com/corporate-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=corporate-website-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"17\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:352;a:27:{s:2:\"id\";s:3:\"389\";s:5:\"title\";s:16:\"Corporate Footer\";s:5:\"alias\";s:16:\"Corporate-Footer\";s:3:\"zip\";s:26:\"packs/Corporate-Footer.zip\";s:3:\"uid\";s:32:\"a01df90af203f06194c1a18745d79861\";s:3:\"img\";s:27:\"Corporate-Footer/slide1.jpg\";s:7:\"preview\";s:156:\"https://revolution.themepunch.com/corporate-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=corporate-website-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"18\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:353;a:27:{s:2:\"id\";s:3:\"390\";s:5:\"title\";s:23:\"Corporate Scroll To Top\";s:5:\"alias\";s:23:\"Corporate-Scroll-To-Top\";s:3:\"zip\";s:33:\"packs/Corporate-Scroll-To-Top.zip\";s:3:\"uid\";s:32:\"2d68f6e4590a9a445e6eb055dfee88ba\";s:3:\"img\";s:34:\"Corporate-Scroll-To-Top/slide1.jpg\";s:7:\"preview\";s:156:\"https://revolution.themepunch.com/corporate-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=corporate-website-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"19\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:354;a:27:{s:2:\"id\";s:3:\"402\";s:5:\"title\";s:23:\"Brutal Website Template\";s:5:\"alias\";s:23:\"brutal-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:23:\"brutal-website-template\";s:3:\"img\";s:36:\"packages/brutal-website-template.jpg\";s:7:\"preview\";s:150:\"https://revolution.themepunch.com/brutal-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=brutal-website-template\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:78:\"How to Create a Scroll-Triggered About Me Section for the Home Page [Tutorial]\";s:9:\"guide_url\";s:111:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-scroll-triggered-about-me-section-for-the-home-page/\";s:9:\"guide_img\";s:27:\"tutorial/Brutal-Website.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;}i:355;a:27:{s:2:\"id\";s:3:\"403\";s:5:\"title\";s:11:\"Brutal Menu\";s:5:\"alias\";s:11:\"brutal-menu\";s:3:\"zip\";s:21:\"packs/brutal-menu.zip\";s:3:\"uid\";s:32:\"04b21c7aee2479793336e964230d6e3f\";s:3:\"img\";s:22:\"brutal-menu/slide1.jpg\";s:7:\"preview\";s:150:\"https://revolution.themepunch.com/brutal-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=brutal-website-template\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:78:\"How to Create a Scroll-Triggered About Me Section for the Home Page [Tutorial]\";s:9:\"guide_url\";s:111:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-scroll-triggered-about-me-section-for-the-home-page/\";s:9:\"guide_img\";s:27:\"tutorial/Brutal-Website.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;}i:356;a:27:{s:2:\"id\";s:3:\"404\";s:5:\"title\";s:11:\"Brutal Hero\";s:5:\"alias\";s:11:\"brutal-hero\";s:3:\"zip\";s:21:\"packs/brutal-hero.zip\";s:3:\"uid\";s:32:\"a342ad01054b97bac7980fdf9e275b34\";s:3:\"img\";s:22:\"brutal-hero/slide1.jpg\";s:7:\"preview\";s:150:\"https://revolution.themepunch.com/brutal-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=brutal-website-template\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:78:\"How to Create a Scroll-Triggered About Me Section for the Home Page [Tutorial]\";s:9:\"guide_url\";s:111:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-scroll-triggered-about-me-section-for-the-home-page/\";s:9:\"guide_img\";s:27:\"tutorial/Brutal-Website.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;}i:357;a:27:{s:2:\"id\";s:3:\"405\";s:5:\"title\";s:12:\"Brutal About\";s:5:\"alias\";s:12:\"brutal-about\";s:3:\"zip\";s:22:\"packs/brutal-about.zip\";s:3:\"uid\";s:32:\"a3e1cd2e36c9a783c1932fdafe2e4434\";s:3:\"img\";s:23:\"brutal-about/slide1.jpg\";s:7:\"preview\";s:150:\"https://revolution.themepunch.com/brutal-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=brutal-website-template\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:78:\"How to Create a Scroll-Triggered About Me Section for the Home Page [Tutorial]\";s:9:\"guide_url\";s:111:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-scroll-triggered-about-me-section-for-the-home-page/\";s:9:\"guide_img\";s:27:\"tutorial/Brutal-Website.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;}i:358;a:27:{s:2:\"id\";s:3:\"406\";s:5:\"title\";s:16:\"Brutal Highlight\";s:5:\"alias\";s:16:\"brutal-highlight\";s:3:\"zip\";s:26:\"packs/brutal-highlight.zip\";s:3:\"uid\";s:32:\"b7f8522dcb4636467633bd3b14f4e3e9\";s:3:\"img\";s:27:\"brutal-highlight/slide1.jpg\";s:7:\"preview\";s:150:\"https://revolution.themepunch.com/brutal-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=brutal-website-template\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:78:\"How to Create a Scroll-Triggered About Me Section for the Home Page [Tutorial]\";s:9:\"guide_url\";s:111:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-scroll-triggered-about-me-section-for-the-home-page/\";s:9:\"guide_img\";s:27:\"tutorial/Brutal-Website.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;}i:359;a:27:{s:2:\"id\";s:3:\"407\";s:5:\"title\";s:15:\"Brutal Projects\";s:5:\"alias\";s:15:\"brutal-projects\";s:3:\"zip\";s:25:\"packs/brutal-projects.zip\";s:3:\"uid\";s:32:\"1a462e91373042193ca5d623dd8e8a47\";s:3:\"img\";s:26:\"brutal-projects/slide1.jpg\";s:7:\"preview\";s:150:\"https://revolution.themepunch.com/brutal-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=brutal-website-template\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:78:\"How to Create a Scroll-Triggered About Me Section for the Home Page [Tutorial]\";s:9:\"guide_url\";s:111:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-scroll-triggered-about-me-section-for-the-home-page/\";s:9:\"guide_img\";s:27:\"tutorial/Brutal-Website.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;}i:360;a:27:{s:2:\"id\";s:3:\"408\";s:5:\"title\";s:15:\"Brutal Services\";s:5:\"alias\";s:15:\"brutal-services\";s:3:\"zip\";s:25:\"packs/brutal-services.zip\";s:3:\"uid\";s:32:\"cbeeb1e7a5c2842b155fe13acb7c165d\";s:3:\"img\";s:26:\"brutal-services/slide1.jpg\";s:7:\"preview\";s:150:\"https://revolution.themepunch.com/brutal-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=brutal-website-template\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:78:\"How to Create a Scroll-Triggered About Me Section for the Home Page [Tutorial]\";s:9:\"guide_url\";s:111:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-scroll-triggered-about-me-section-for-the-home-page/\";s:9:\"guide_img\";s:27:\"tutorial/Brutal-Website.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;}i:361;a:27:{s:2:\"id\";s:3:\"409\";s:5:\"title\";s:14:\"Brutal Callout\";s:5:\"alias\";s:14:\"brutal-callout\";s:3:\"zip\";s:24:\"packs/brutal-callout.zip\";s:3:\"uid\";s:32:\"31b6dafdb2dfb548152653e60df5a3bc\";s:3:\"img\";s:25:\"brutal-callout/slide1.jpg\";s:7:\"preview\";s:150:\"https://revolution.themepunch.com/brutal-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=brutal-website-template\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:78:\"How to Create a Scroll-Triggered About Me Section for the Home Page [Tutorial]\";s:9:\"guide_url\";s:111:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-scroll-triggered-about-me-section-for-the-home-page/\";s:9:\"guide_img\";s:27:\"tutorial/Brutal-Website.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;}i:362;a:27:{s:2:\"id\";s:3:\"410\";s:5:\"title\";s:13:\"Brutal Footer\";s:5:\"alias\";s:13:\"brutal-footer\";s:3:\"zip\";s:23:\"packs/brutal-footer.zip\";s:3:\"uid\";s:32:\"07559f0c574e3dd95b2d40d72cbb01bc\";s:3:\"img\";s:24:\"brutal-footer/slide1.jpg\";s:7:\"preview\";s:150:\"https://revolution.themepunch.com/brutal-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=brutal-website-template\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:78:\"How to Create a Scroll-Triggered About Me Section for the Home Page [Tutorial]\";s:9:\"guide_url\";s:111:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-scroll-triggered-about-me-section-for-the-home-page/\";s:9:\"guide_img\";s:27:\"tutorial/Brutal-Website.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;}i:363;a:27:{s:2:\"id\";s:3:\"411\";s:5:\"title\";s:23:\"Church Website Template\";s:5:\"alias\";s:23:\"church-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:31:\"church-website-template-package\";s:3:\"img\";s:36:\"packages/church-website-template.jpg\";s:7:\"preview\";s:160:\"https://revolution.themepunch.com/church-website-template-dark/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=church-website-template-dark\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:364;a:27:{s:2:\"id\";s:3:\"412\";s:5:\"title\";s:13:\"Church Header\";s:5:\"alias\";s:13:\"Church-Header\";s:3:\"zip\";s:23:\"packs/Church-Header.zip\";s:3:\"uid\";s:32:\"c14289117e1e2b9ee716fb99146b2e03\";s:3:\"img\";s:24:\"Church-Header/slide1.jpg\";s:7:\"preview\";s:160:\"https://revolution.themepunch.com/church-website-template-dark/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=church-website-template-dark\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:365;a:28:{s:2:\"id\";s:3:\"413\";s:5:\"title\";s:22:\"Church Upcoming Events\";s:5:\"alias\";s:22:\"Church-Upcoming-Events\";s:3:\"zip\";s:32:\"packs/Church-Upcoming-Events.zip\";s:3:\"uid\";s:32:\"056a26efddae92973fee4ee5cfa75f10\";s:3:\"img\";s:33:\"Church-Upcoming-Events/slide1.jpg\";s:7:\"preview\";s:160:\"https://revolution.themepunch.com/church-website-template-dark/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=church-website-template-dark\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:366;a:27:{s:2:\"id\";s:3:\"414\";s:5:\"title\";s:12:\"Church About\";s:5:\"alias\";s:12:\"Church-About\";s:3:\"zip\";s:22:\"packs/Church-About.zip\";s:3:\"uid\";s:32:\"8ef133f3f669f06380334a83e27eedbb\";s:3:\"img\";s:23:\"Church-About/slide1.jpg\";s:7:\"preview\";s:160:\"https://revolution.themepunch.com/church-website-template-dark/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=church-website-template-dark\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:367;a:27:{s:2:\"id\";s:3:\"415\";s:5:\"title\";s:14:\"Church Pastors\";s:5:\"alias\";s:14:\"Church-Pastors\";s:3:\"zip\";s:24:\"packs/Church-Pastors.zip\";s:3:\"uid\";s:32:\"715edc0833a753b72350b8c974f86f94\";s:3:\"img\";s:25:\"Church-Pastors/slide1.jpg\";s:7:\"preview\";s:160:\"https://revolution.themepunch.com/church-website-template-dark/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=church-website-template-dark\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:368;a:27:{s:2:\"id\";s:3:\"416\";s:5:\"title\";s:20:\"Church Photo Gallery\";s:5:\"alias\";s:20:\"Church-Photo-Gallery\";s:3:\"zip\";s:30:\"packs/Church-Photo-Gallery.zip\";s:3:\"uid\";s:32:\"d94808a97149cd5d3b3354a28409ffd7\";s:3:\"img\";s:31:\"Church-Photo-Gallery/slide1.jpg\";s:7:\"preview\";s:160:\"https://revolution.themepunch.com/church-website-template-dark/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=church-website-template-dark\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:369;a:27:{s:2:\"id\";s:3:\"417\";s:5:\"title\";s:16:\"Church Community\";s:5:\"alias\";s:16:\"Church-Community\";s:3:\"zip\";s:26:\"packs/Church-Community.zip\";s:3:\"uid\";s:32:\"2244e6a6d7a691653eae2d70765130a7\";s:3:\"img\";s:27:\"Church-Community/slide1.jpg\";s:7:\"preview\";s:160:\"https://revolution.themepunch.com/church-website-template-dark/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=church-website-template-dark\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:370;a:27:{s:2:\"id\";s:3:\"418\";s:5:\"title\";s:13:\"Church Sermon\";s:5:\"alias\";s:13:\"Church-Sermon\";s:3:\"zip\";s:23:\"packs/Church-Sermon.zip\";s:3:\"uid\";s:32:\"8fedf983bd55fff0f7a16d9f0a7e5408\";s:3:\"img\";s:24:\"Church-Sermon/slide1.jpg\";s:7:\"preview\";s:160:\"https://revolution.themepunch.com/church-website-template-dark/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=church-website-template-dark\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:371;a:27:{s:2:\"id\";s:3:\"419\";s:5:\"title\";s:15:\"Church Contacts\";s:5:\"alias\";s:15:\"Church-Contacts\";s:3:\"zip\";s:25:\"packs/Church-Contacts.zip\";s:3:\"uid\";s:32:\"0b1a6968e75868548fd98e435625c090\";s:3:\"img\";s:26:\"Church-Contacts/slide1.jpg\";s:7:\"preview\";s:160:\"https://revolution.themepunch.com/church-website-template-dark/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=church-website-template-dark\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:372;a:27:{s:2:\"id\";s:3:\"420\";s:5:\"title\";s:13:\"Church Footer\";s:5:\"alias\";s:13:\"Church-Footer\";s:3:\"zip\";s:23:\"packs/Church-Footer.zip\";s:3:\"uid\";s:32:\"29756685d3dc49e42edada43e6393b7b\";s:3:\"img\";s:24:\"Church-Footer/slide1.jpg\";s:7:\"preview\";s:160:\"https://revolution.themepunch.com/church-website-template-dark/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=church-website-template-dark\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:373;a:27:{s:2:\"id\";s:3:\"421\";s:5:\"title\";s:29:\"Church Light Website Template\";s:5:\"alias\";s:29:\"church-light-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:37:\"church-light-website-template-package\";s:3:\"img\";s:42:\"packages/church-light-website-template.jpg\";s:7:\"preview\";s:162:\"https://revolution.themepunch.com/church-website-template-light/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=church-website-template-light\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:374;a:27:{s:2:\"id\";s:3:\"422\";s:5:\"title\";s:19:\"Church Light Header\";s:5:\"alias\";s:19:\"Church-Light-Header\";s:3:\"zip\";s:29:\"packs/Church-Light-Header.zip\";s:3:\"uid\";s:32:\"81c00f4b52cf55214de919e3f13121fc\";s:3:\"img\";s:30:\"Church-Light-Header/slide1.jpg\";s:7:\"preview\";s:162:\"https://revolution.themepunch.com/church-website-template-light/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=church-website-template-light\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:375;a:28:{s:2:\"id\";s:3:\"423\";s:5:\"title\";s:28:\"Church Light Upcoming Events\";s:5:\"alias\";s:28:\"Church-Light-Upcoming-Events\";s:3:\"zip\";s:38:\"packs/Church-Light-Upcoming-Events.zip\";s:3:\"uid\";s:32:\"963a49f4be0557ac5f3ee61d256f5bda\";s:3:\"img\";s:39:\"Church-Light-Upcoming-Events/slide1.jpg\";s:7:\"preview\";s:162:\"https://revolution.themepunch.com/church-website-template-light/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=church-website-template-light\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:376;a:27:{s:2:\"id\";s:3:\"424\";s:5:\"title\";s:18:\"Church Light About\";s:5:\"alias\";s:18:\"Church-Light-About\";s:3:\"zip\";s:28:\"packs/Church-Light-About.zip\";s:3:\"uid\";s:32:\"d46c8e8e6f80e6bfedb54f1cdc49e7e6\";s:3:\"img\";s:29:\"Church-Light-About/slide1.jpg\";s:7:\"preview\";s:162:\"https://revolution.themepunch.com/church-website-template-light/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=church-website-template-light\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:377;a:27:{s:2:\"id\";s:3:\"425\";s:5:\"title\";s:20:\"Church Light Pastors\";s:5:\"alias\";s:20:\"Church-Light-Pastors\";s:3:\"zip\";s:30:\"packs/Church-Light-Pastors.zip\";s:3:\"uid\";s:32:\"7cc3dec61556e2291d6f38c1ea5e983f\";s:3:\"img\";s:31:\"Church-Light-Pastors/slide1.jpg\";s:7:\"preview\";s:162:\"https://revolution.themepunch.com/church-website-template-light/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=church-website-template-light\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:378;a:27:{s:2:\"id\";s:3:\"426\";s:5:\"title\";s:26:\"Church Light Photo Gallery\";s:5:\"alias\";s:26:\"Church-Light-Photo-Gallery\";s:3:\"zip\";s:36:\"packs/Church-Light-Photo-Gallery.zip\";s:3:\"uid\";s:32:\"9e13100179b9b700b005693eeca57902\";s:3:\"img\";s:37:\"Church-Light-Photo-Gallery/slide1.jpg\";s:7:\"preview\";s:162:\"https://revolution.themepunch.com/church-website-template-light/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=church-website-template-light\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:379;a:27:{s:2:\"id\";s:3:\"427\";s:5:\"title\";s:22:\"Church Light Community\";s:5:\"alias\";s:22:\"Church-Light-Community\";s:3:\"zip\";s:32:\"packs/Church-Light-Community.zip\";s:3:\"uid\";s:32:\"14fcc0d43d899fd96116bdbc57c7c5ea\";s:3:\"img\";s:33:\"Church-Light-Community/slide1.jpg\";s:7:\"preview\";s:162:\"https://revolution.themepunch.com/church-website-template-light/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=church-website-template-light\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:380;a:27:{s:2:\"id\";s:3:\"428\";s:5:\"title\";s:19:\"Church Light Sermon\";s:5:\"alias\";s:19:\"Church-Light-Sermon\";s:3:\"zip\";s:29:\"packs/Church-Light-Sermon.zip\";s:3:\"uid\";s:32:\"fc30be7e703bc7b235665c36baa80e4e\";s:3:\"img\";s:30:\"Church-Light-Sermon/slide1.jpg\";s:7:\"preview\";s:162:\"https://revolution.themepunch.com/church-website-template-light/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=church-website-template-light\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:381;a:27:{s:2:\"id\";s:3:\"429\";s:5:\"title\";s:21:\"Church Light Contacts\";s:5:\"alias\";s:21:\"Church-Light-Contacts\";s:3:\"zip\";s:31:\"packs/Church-Light-Contacts.zip\";s:3:\"uid\";s:32:\"ed83d8fa63ecb59cf42656068ecf8d25\";s:3:\"img\";s:32:\"Church-Light-Contacts/slide1.jpg\";s:7:\"preview\";s:162:\"https://revolution.themepunch.com/church-website-template-light/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=church-website-template-light\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:382;a:27:{s:2:\"id\";s:3:\"430\";s:5:\"title\";s:19:\"Church Light Footer\";s:5:\"alias\";s:19:\"Church-Light-Footer\";s:3:\"zip\";s:29:\"packs/Church-Light-Footer.zip\";s:3:\"uid\";s:32:\"a168772865fd5dcf6229c9c6a49dff73\";s:3:\"img\";s:30:\"Church-Light-Footer/slide1.jpg\";s:7:\"preview\";s:162:\"https://revolution.themepunch.com/church-website-template-light/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=church-website-template-light\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:383;a:27:{s:2:\"id\";s:3:\"431\";s:5:\"title\";s:25:\"Rockable Website Template\";s:5:\"alias\";s:25:\"rockable-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:33:\"rockable-website-template-package\";s:3:\"img\";s:38:\"packages/rockable-website-template.jpg\";s:7:\"preview\";s:154:\"https://revolution.themepunch.com/rockable-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=rockable-website-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:384;a:27:{s:2:\"id\";s:3:\"432\";s:5:\"title\";s:13:\"Rockable Menu\";s:5:\"alias\";s:13:\"rockable-menu\";s:3:\"zip\";s:23:\"packs/rockable-menu.zip\";s:3:\"uid\";s:32:\"92d18f7ff38f22ff411a4ef4d9f54934\";s:3:\"img\";s:24:\"rockable-menu/slide1.jpg\";s:7:\"preview\";s:154:\"https://revolution.themepunch.com/rockable-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=rockable-website-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:385;a:27:{s:2:\"id\";s:3:\"433\";s:5:\"title\";s:13:\"Rockable Hero\";s:5:\"alias\";s:13:\"rockable-hero\";s:3:\"zip\";s:23:\"packs/rockable-hero.zip\";s:3:\"uid\";s:32:\"ba16b28d6bde95910cbce572bb251208\";s:3:\"img\";s:24:\"rockable-hero/slide1.jpg\";s:7:\"preview\";s:154:\"https://revolution.themepunch.com/rockable-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=rockable-website-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:386;a:27:{s:2:\"id\";s:3:\"434\";s:5:\"title\";s:15:\"Rockable Lineup\";s:5:\"alias\";s:15:\"rockable-lineup\";s:3:\"zip\";s:25:\"packs/rockable-lineup.zip\";s:3:\"uid\";s:32:\"6631980112805533a0d328c37e56adbd\";s:3:\"img\";s:26:\"rockable-lineup/slide1.jpg\";s:7:\"preview\";s:154:\"https://revolution.themepunch.com/rockable-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=rockable-website-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:387;a:27:{s:2:\"id\";s:3:\"435\";s:5:\"title\";s:17:\"Rockable Lineup 2\";s:5:\"alias\";s:17:\"rockable-lineup-2\";s:3:\"zip\";s:27:\"packs/rockable-lineup-2.zip\";s:3:\"uid\";s:32:\"98bc41d982dc478edabff4aa99461dbc\";s:3:\"img\";s:28:\"rockable-lineup-2/slide1.jpg\";s:7:\"preview\";s:154:\"https://revolution.themepunch.com/rockable-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=rockable-website-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:388;a:27:{s:2:\"id\";s:3:\"436\";s:5:\"title\";s:22:\"Rockable Gallery Title\";s:5:\"alias\";s:22:\"rockable-gallery-title\";s:3:\"zip\";s:32:\"packs/rockable-gallery-title.zip\";s:3:\"uid\";s:32:\"da43a76f5bc77aa6efe158b00ab7cf0d\";s:3:\"img\";s:33:\"rockable-gallery-title/slide1.jpg\";s:7:\"preview\";s:154:\"https://revolution.themepunch.com/rockable-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=rockable-website-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:389;a:27:{s:2:\"id\";s:3:\"437\";s:5:\"title\";s:16:\"Rockable Gallery\";s:5:\"alias\";s:16:\"rockable-gallery\";s:3:\"zip\";s:26:\"packs/rockable-gallery.zip\";s:3:\"uid\";s:32:\"c12a144d6860bcf24e91d5b980ac22f1\";s:3:\"img\";s:27:\"rockable-gallery/slide1.jpg\";s:7:\"preview\";s:154:\"https://revolution.themepunch.com/rockable-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=rockable-website-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:390;a:27:{s:2:\"id\";s:3:\"438\";s:5:\"title\";s:17:\"Rockable Sponsors\";s:5:\"alias\";s:17:\"rockable-sponsors\";s:3:\"zip\";s:27:\"packs/rockable-sponsors.zip\";s:3:\"uid\";s:32:\"1e40d4a810c23f8d5fe5cd5ca31ee20d\";s:3:\"img\";s:28:\"rockable-sponsors/slide1.jpg\";s:7:\"preview\";s:154:\"https://revolution.themepunch.com/rockable-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=rockable-website-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:391;a:27:{s:2:\"id\";s:3:\"439\";s:5:\"title\";s:15:\"Rockable Footer\";s:5:\"alias\";s:15:\"rockable-footer\";s:3:\"zip\";s:25:\"packs/rockable-footer.zip\";s:3:\"uid\";s:32:\"a4a9952d5e56fc14366155e8ebfa432a\";s:3:\"img\";s:26:\"rockable-footer/slide1.jpg\";s:7:\"preview\";s:154:\"https://revolution.themepunch.com/rockable-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=rockable-website-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:392;a:27:{s:2:\"id\";s:3:\"440\";s:5:\"title\";s:21:\"Rockable Detail Modal\";s:5:\"alias\";s:21:\"rockable-detail-modal\";s:3:\"zip\";s:31:\"packs/rockable-detail-modal.zip\";s:3:\"uid\";s:32:\"b51d918203ff7975a144a9f1be09f31b\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";s:7:\"preview\";s:154:\"https://revolution.themepunch.com/rockable-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=rockable-website-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:393;a:27:{s:2:\"id\";s:3:\"441\";s:5:\"title\";s:23:\"Rockable Detail Modal 2\";s:5:\"alias\";s:23:\"rockable-detail-modal-2\";s:3:\"zip\";s:33:\"packs/rockable-detail-modal-2.zip\";s:3:\"uid\";s:32:\"dcf51ebb3d4a1dec94748a1e016c5ef7\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";s:7:\"preview\";s:154:\"https://revolution.themepunch.com/rockable-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=rockable-website-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:2:\"10\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:394;a:24:{s:2:\"id\";s:3:\"442\";s:5:\"title\";s:27:\"Real Estate Showcase Slider\";s:5:\"alias\";s:27:\"real-estate-showcase-slider\";s:3:\"zip\";s:31:\"real-estate-showcase-slider.zip\";s:3:\"uid\";s:32:\"486b2bbe296722e70421731e3c05711b\";s:3:\"img\";s:38:\"Real-Estate-Showcase-Slider/slide1.jpg\";s:7:\"preview\";s:158:\"https://revolution.themepunch.com/real-estate-showcase-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=real-estate-showcase-slider\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:152:\"<span class=\"ttm_content\">An elegant showcase for your real estate & realtor website. Flexible and customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:395;a:24:{s:2:\"id\";s:3:\"443\";s:5:\"title\";s:16:\"Isometric Slider\";s:5:\"alias\";s:16:\"isometric-slider\";s:3:\"zip\";s:20:\"isometric-slider.zip\";s:3:\"uid\";s:32:\"fb06051fcf6649a44f2292044e414a36\";s:3:\"img\";s:27:\"isometric-slider/slide1.jpg\";s:7:\"preview\";s:136:\"https://revolution.themepunch.com/isometric-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=isometric-slider\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:154:\"<span class=\"ttm_content\">A colorful, isometric slider template with fully customizable colors and screen content.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:396;a:27:{s:2:\"id\";s:3:\"444\";s:5:\"title\";s:26:\"Woo Commerce Slider Static\";s:5:\"alias\";s:26:\"woo-commerce-slider-static\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"woo-commerce-slider-static\";s:3:\"img\";s:39:\"packages/woo-commerce-slider-static.jpg\";s:7:\"preview\";s:142:\"https://revolution.themepunch.com/woo-commerce-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=woo-commerce-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:178:\"<span class=\"ttm_content\">A uniquely animated Woo Commerce Slider template - this is the static version that doesn\'t use Woo Commerce data</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:7:\"website\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Woo Commerce Slider Static\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"35\";s:9:\"installed\";b:0;}i:397;a:27:{s:2:\"id\";s:3:\"445\";s:5:\"title\";s:17:\"E-Commerce Slider\";s:5:\"alias\";s:17:\"E-Commerce-Slider\";s:3:\"zip\";s:27:\"packs/E-Commerce-Slider.zip\";s:3:\"uid\";s:32:\"1533cfd83c2ae122f23074e1ed77f256\";s:3:\"img\";s:28:\"E-Commerce-Slider/slide1.jpg\";s:7:\"preview\";s:142:\"https://revolution.themepunch.com/woo-commerce-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=woo-commerce-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:178:\"<span class=\"ttm_content\">A uniquely animated Woo Commerce Slider template - this is the static version that doesn\'t use Woo Commerce data</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:4:\"hero\";i:1;s:7:\"website\";i:2;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Woo Commerce Slider Static\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"35\";s:9:\"installed\";b:0;}i:398;a:27:{s:2:\"id\";s:3:\"446\";s:5:\"title\";s:23:\"E-Commerce Slider Modal\";s:5:\"alias\";s:23:\"E-Commerce-Slider-Modal\";s:3:\"zip\";s:33:\"packs/E-Commerce-Slider-Modal.zip\";s:3:\"uid\";s:32:\"825e05c3967515b92a75da017c68a863\";s:3:\"img\";s:34:\"E-Commerce-Slider-Modal/slide1.jpg\";s:7:\"preview\";s:142:\"https://revolution.themepunch.com/woo-commerce-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=woo-commerce-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:178:\"<span class=\"ttm_content\">A uniquely animated Woo Commerce Slider template - this is the static version that doesn\'t use Woo Commerce data</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:4:\"hero\";i:1;s:7:\"website\";i:2;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Woo Commerce Slider Static\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"35\";s:9:\"installed\";b:0;}i:399;a:24:{s:2:\"id\";s:3:\"447\";s:5:\"title\";s:27:\"Woo Commerce Slider Dynamic\";s:5:\"alias\";s:27:\"Woo-Commerce-Slider-Dynamic\";s:3:\"zip\";s:31:\"Woo-Commerce-Slider-Dynamic.zip\";s:3:\"uid\";s:32:\"b8e2c64f3739e552c563c48c59f20fe7\";s:3:\"img\";s:38:\"Woo-Commerce-Slider-Dynamic/slide1.jpg\";s:7:\"preview\";s:151:\"https://www.sliderrevolution.com/templates/woo-commerce-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=woo-commerce-slider\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">A uniquely animated Woo Commerce Slider template - this is the dynamic version that uses Woo Commerce data</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:400;a:27:{s:2:\"id\";s:3:\"448\";s:5:\"title\";s:31:\"Blooming Event Florist Template\";s:5:\"alias\";s:31:\"blooming-event-florist-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:39:\"blooming-event-florist-template-package\";s:3:\"img\";s:52:\"packages/blooming-event-florist-template-package.jpg\";s:7:\"preview\";s:148:\"https://revolution.themepunch.com/event-florist-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=event-florist-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:401;a:27:{s:2:\"id\";s:3:\"449\";s:5:\"title\";s:15:\"Blooming Header\";s:5:\"alias\";s:15:\"blooming-header\";s:3:\"zip\";s:25:\"packs/blooming-header.zip\";s:3:\"uid\";s:32:\"aa2ee34fd8ed018945ba64e6913810e4\";s:3:\"img\";s:26:\"blooming-header/slide1.jpg\";s:7:\"preview\";s:148:\"https://revolution.themepunch.com/event-florist-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=event-florist-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:402;a:27:{s:2:\"id\";s:3:\"450\";s:5:\"title\";s:14:\"Blooming About\";s:5:\"alias\";s:14:\"blooming-about\";s:3:\"zip\";s:24:\"packs/blooming-about.zip\";s:3:\"uid\";s:32:\"dd7095e46fab2eb475d00480fd17a6ec\";s:3:\"img\";s:25:\"blooming-about/slide1.jpg\";s:7:\"preview\";s:148:\"https://revolution.themepunch.com/event-florist-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=event-florist-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:403;a:27:{s:2:\"id\";s:3:\"451\";s:5:\"title\";s:18:\"Blooming Portfolio\";s:5:\"alias\";s:18:\"blooming-portfolio\";s:3:\"zip\";s:28:\"packs/blooming-portfolio.zip\";s:3:\"uid\";s:32:\"c72ddcbb07b62982b8c21328a6383e22\";s:3:\"img\";s:29:\"blooming-portfolio/slide1.jpg\";s:7:\"preview\";s:148:\"https://revolution.themepunch.com/event-florist-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=event-florist-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:404;a:27:{s:2:\"id\";s:3:\"452\";s:5:\"title\";s:22:\"Blooming Wedding Title\";s:5:\"alias\";s:22:\"blooming-wedding-title\";s:3:\"zip\";s:32:\"packs/blooming-wedding-title.zip\";s:3:\"uid\";s:32:\"4fcfb0b99289c12d014c67306bb7687b\";s:3:\"img\";s:33:\"blooming-wedding-title/slide1.jpg\";s:7:\"preview\";s:148:\"https://revolution.themepunch.com/event-florist-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=event-florist-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:405;a:27:{s:2:\"id\";s:3:\"453\";s:5:\"title\";s:25:\"Blooming Wedding Carousel\";s:5:\"alias\";s:25:\"blooming-wedding-carousel\";s:3:\"zip\";s:35:\"packs/blooming-wedding-carousel.zip\";s:3:\"uid\";s:32:\"1d1bb979dbfca8ba9d43da1c0f665339\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide1.jpg\";s:7:\"preview\";s:148:\"https://revolution.themepunch.com/event-florist-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=event-florist-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:406;a:27:{s:2:\"id\";s:3:\"454\";s:5:\"title\";s:21:\"Blooming Wedding Text\";s:5:\"alias\";s:21:\"blooming-wedding-text\";s:3:\"zip\";s:31:\"packs/blooming-wedding-text.zip\";s:3:\"uid\";s:32:\"326f2793294a739dd3aac3cc45332df8\";s:3:\"img\";s:32:\"blooming-wedding-text/slide1.jpg\";s:7:\"preview\";s:148:\"https://revolution.themepunch.com/event-florist-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=event-florist-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:407;a:27:{s:2:\"id\";s:3:\"455\";s:5:\"title\";s:22:\"Blooming Parties Title\";s:5:\"alias\";s:22:\"blooming-parties-title\";s:3:\"zip\";s:32:\"packs/blooming-parties-title.zip\";s:3:\"uid\";s:32:\"b47aae1b368d3c3d9017f260e6c6a547\";s:3:\"img\";s:33:\"blooming-parties-title/slide1.jpg\";s:7:\"preview\";s:148:\"https://revolution.themepunch.com/event-florist-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=event-florist-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:408;a:27:{s:2:\"id\";s:3:\"456\";s:5:\"title\";s:25:\"Blooming Parties Carousel\";s:5:\"alias\";s:25:\"blooming-parties-carousel\";s:3:\"zip\";s:35:\"packs/blooming-parties-carousel.zip\";s:3:\"uid\";s:32:\"9f90a9da7b017aeee7f3b608cda066e6\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide1.jpg\";s:7:\"preview\";s:148:\"https://revolution.themepunch.com/event-florist-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=event-florist-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:409;a:27:{s:2:\"id\";s:3:\"457\";s:5:\"title\";s:21:\"Blooming Parties Text\";s:5:\"alias\";s:21:\"blooming-parties-text\";s:3:\"zip\";s:31:\"packs/blooming-parties-text.zip\";s:3:\"uid\";s:32:\"66a47346cc639b8b9b9b5dfa1521b6ef\";s:3:\"img\";s:32:\"blooming-parties-text/slide1.jpg\";s:7:\"preview\";s:148:\"https://revolution.themepunch.com/event-florist-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=event-florist-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:410;a:27:{s:2:\"id\";s:3:\"458\";s:5:\"title\";s:22:\"Blooming Funeral Title\";s:5:\"alias\";s:22:\"blooming-funeral-title\";s:3:\"zip\";s:32:\"packs/blooming-funeral-title.zip\";s:3:\"uid\";s:32:\"e9e77134472c33c56be442073f29d1fd\";s:3:\"img\";s:33:\"blooming-funeral-title/slide1.jpg\";s:7:\"preview\";s:148:\"https://revolution.themepunch.com/event-florist-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=event-florist-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:2:\"10\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:411;a:27:{s:2:\"id\";s:3:\"459\";s:5:\"title\";s:23:\"Blooming Funeral Slider\";s:5:\"alias\";s:23:\"blooming-funeral-slider\";s:3:\"zip\";s:33:\"packs/blooming-funeral-slider.zip\";s:3:\"uid\";s:32:\"d15090841c25c7c8f0e1b0987c0c0887\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide1.jpg\";s:7:\"preview\";s:148:\"https://revolution.themepunch.com/event-florist-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=event-florist-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:2:\"11\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:412;a:27:{s:2:\"id\";s:3:\"460\";s:5:\"title\";s:21:\"Blooming Funeral Text\";s:5:\"alias\";s:21:\"blooming-funeral-text\";s:3:\"zip\";s:31:\"packs/blooming-funeral-text.zip\";s:3:\"uid\";s:32:\"d7c80e246f31e3d2f4e5dc1656f133cc\";s:3:\"img\";s:32:\"blooming-funeral-text/slide1.jpg\";s:7:\"preview\";s:148:\"https://revolution.themepunch.com/event-florist-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=event-florist-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:2:\"12\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:413;a:27:{s:2:\"id\";s:3:\"461\";s:5:\"title\";s:16:\"Blooming Contact\";s:5:\"alias\";s:16:\"blooming-contact\";s:3:\"zip\";s:26:\"packs/blooming-contact.zip\";s:3:\"uid\";s:32:\"54280182bca86443e2648b3146f41e47\";s:3:\"img\";s:27:\"blooming-contact/slide1.jpg\";s:7:\"preview\";s:148:\"https://revolution.themepunch.com/event-florist-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=event-florist-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:2:\"13\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:414;a:24:{s:2:\"id\";s:3:\"462\";s:5:\"title\";s:13:\"Particle Hero\";s:5:\"alias\";s:13:\"particle-hero\";s:3:\"zip\";s:17:\"particle-hero.zip\";s:3:\"uid\";s:32:\"3f422f4807bf9ef4cb15dade515dad00\";s:3:\"img\";s:24:\"particle-hero/slide1.jpg\";s:7:\"preview\";s:145:\"https://revolution.themepunch.com/wordpress-hero-image-header/#slide6?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=#slide6\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:120:\"<span class=\"ttm_content\">A Hero header module using the Particle Effect Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:415;a:24:{s:2:\"id\";s:3:\"463\";s:5:\"title\";s:17:\"Bubble Morph Hero\";s:5:\"alias\";s:17:\"bubble-morph-hero\";s:3:\"zip\";s:21:\"bubble-morph-hero.zip\";s:3:\"uid\";s:32:\"b47e6bcc1ae80393ff3f7388ed3b9f8f\";s:3:\"img\";s:28:\"bubble-morph-hero/slide1.jpg\";s:7:\"preview\";s:145:\"https://revolution.themepunch.com/wordpress-hero-image-header/#slide5?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=#slide5\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:117:\"<span class=\"ttm_content\">A Hero header module using the Bubble Morph Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:416;a:24:{s:2:\"id\";s:3:\"464\";s:5:\"title\";s:13:\"Parallax Hero\";s:5:\"alias\";s:13:\"parallax-hero\";s:3:\"zip\";s:17:\"parallax-hero.zip\";s:3:\"uid\";s:32:\"290e86534326ee118e96ae7ce0538fa2\";s:3:\"img\";s:24:\"parallax-hero/slide1.jpg\";s:7:\"preview\";s:145:\"https://revolution.themepunch.com/wordpress-hero-image-header/#slide4?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=#slide4\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:117:\"<span class=\"ttm_content\">A parallax hero module with mouse move interaction.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:417;a:24:{s:2:\"id\";s:3:\"465\";s:5:\"title\";s:10:\"Video Hero\";s:5:\"alias\";s:10:\"video-hero\";s:3:\"zip\";s:14:\"video-hero.zip\";s:3:\"uid\";s:32:\"f9e280015d3408bb0482e13fe753da8f\";s:3:\"img\";s:21:\"video-hero/slide1.jpg\";s:7:\"preview\";s:145:\"https://revolution.themepunch.com/wordpress-hero-image-header/#slide3?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=#slide3\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:111:\"<span class=\"ttm_content\">A simple Hero header module with HTML5 video.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:418;a:24:{s:2:\"id\";s:3:\"466\";s:5:\"title\";s:14:\"Ken Burns Hero\";s:5:\"alias\";s:14:\"ken-burns-hero\";s:3:\"zip\";s:18:\"ken-burns-hero.zip\";s:3:\"uid\";s:32:\"d5f89e5f5b3991b995e2bfeb50cfe9f8\";s:3:\"img\";s:25:\"ken-burns-hero/slide1.jpg\";s:7:\"preview\";s:145:\"https://revolution.themepunch.com/wordpress-hero-image-header/#slide2?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=#slide2\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:142:\"<span class=\"ttm_content\">A simple image background hero header module with a subtle Ken Burns effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:419;a:24:{s:2:\"id\";s:3:\"467\";s:5:\"title\";s:21:\"Basic Hero Collection\";s:5:\"alias\";s:21:\"basic-hero-collection\";s:3:\"zip\";s:25:\"basic-hero-collection.zip\";s:3:\"uid\";s:32:\"ff625c65e8aab4689fa56d5652279d51\";s:3:\"img\";s:32:\"basic-hero-collection/slide1.jpg\";s:7:\"preview\";s:158:\"https://revolution.themepunch.com/wordpress-hero-image-header/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-hero-image-header\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:153:\"<span class=\"ttm_content\">A collection of WordPress Hero Headers with image, video, particles, parallax and more!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:348:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:420;a:24:{s:2:\"id\";s:3:\"468\";s:5:\"title\";s:19:\"Launching Very Soon\";s:5:\"alias\";s:19:\"launching-very-soon\";s:3:\"zip\";s:23:\"launching-very-soon.zip\";s:3:\"uid\";s:32:\"2da45cf2d9bec07e7183b3f7777986b9\";s:3:\"img\";s:30:\"launching-very-soon/slide1.jpg\";s:7:\"preview\";s:152:\"https://revolution.themepunch.com/launching-soon-countdown/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=launching-soon-countdown\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:166:\"<span class=\"ttm_content\">Rocket BOOST! A beautifully animated launching soon countdown module using our \"Coming Soon\" Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:197:\"[{\"path\":\"revslider-maintenance-addon\\/revslider-maintenance-addon.php\",\"name\":\"Coming Soon & Maintenance AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/revslider-doc\\/add-coming-soon-maintenance\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:421;a:24:{s:2:\"id\";s:3:\"469\";s:5:\"title\";s:18:\"Under Construction\";s:5:\"alias\";s:18:\"Under-Construction\";s:3:\"zip\";s:22:\"Under-Construction.zip\";s:3:\"uid\";s:32:\"4b12f9a82a5b48d45a707df93406eb5b\";s:3:\"img\";s:29:\"Under-Construction/slide1.jpg\";s:7:\"preview\";s:140:\"https://revolution.themepunch.com/under-construction/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=under-construction\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You will love this animated under construction landing page using our \"Coming Soon\" Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:197:\"[{\"path\":\"revslider-maintenance-addon\\/revslider-maintenance-addon.php\",\"name\":\"Coming Soon & Maintenance AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/revslider-doc\\/add-coming-soon-maintenance\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:88:\"Create an Under Construction Page That’ll Entertain Visitors While You Work [Tutorial]\";s:9:\"guide_url\";s:121:\"https://www.sliderrevolution.com/tutorials/create-an-under-construction-page-that-will-entertain-visitors-while-you-work/\";s:9:\"guide_img\";s:31:\"tutorial/Under-Construction.jpg\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:422;a:24:{s:2:\"id\";s:3:\"470\";s:5:\"title\";s:15:\"Particle Effect\";s:5:\"alias\";s:15:\"Particle-Effect\";s:3:\"zip\";s:19:\"Particle-Effect.zip\";s:3:\"uid\";s:32:\"66cf4e514e83a6984903694fd587edb6\";s:3:\"img\";s:26:\"Particle-Effect/slide1.jpg\";s:7:\"preview\";s:142:\"https://revolution.themepunch.com/snow-particle-scene/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=snow-particle-scene\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:140:\"<span class=\"ttm_content\">Get into a winter mood with our Snow Particle Scene for Slider Revolution!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:423;a:24:{s:2:\"id\";s:3:\"471\";s:5:\"title\";s:17:\"Particle Effect 2\";s:5:\"alias\";s:17:\"Particle-Effect-2\";s:3:\"zip\";s:21:\"Particle-Effect-2.zip\";s:3:\"uid\";s:32:\"303337c29a97a816ccecca7e5f0b5e20\";s:3:\"img\";s:28:\"Particle-Effect-2/slide1.jpg\";s:7:\"preview\";s:146:\"https://revolution.themepunch.com/cyber-particle-effect/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=cyber-particle-effect\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:147:\"<span class=\"ttm_content\">Amaze your website visitors with the cyber particle effect for Slider Revolution!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:69:\"How to Create a Retro-Inspired Design for the Hero Section [Tutorial]\";s:9:\"guide_url\";s:102:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-retro-inspired-design-for-the-hero-section/\";s:9:\"guide_img\";s:30:\"tutorial/Particle-Effect-2.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:424;a:27:{s:2:\"id\";s:3:\"472\";s:5:\"title\";s:22:\"Stark Website Template\";s:5:\"alias\";s:22:\"stark-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:30:\"stark-website-template-package\";s:3:\"img\";s:43:\"packages/stark-website-template-package.jpg\";s:7:\"preview\";s:162:\"https://revolution.themepunch.com/stark-agency-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=stark-agency-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:425;a:27:{s:2:\"id\";s:3:\"473\";s:5:\"title\";s:10:\"Stark Menu\";s:5:\"alias\";s:10:\"stark-menu\";s:3:\"zip\";s:20:\"packs/stark-menu.zip\";s:3:\"uid\";s:32:\"bb31150df180e784d76a1f5ea306bf05\";s:3:\"img\";s:21:\"stark-menu/slide1.jpg\";s:7:\"preview\";s:162:\"https://revolution.themepunch.com/stark-agency-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=stark-agency-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:87:\"offset=\"t:0px,0px,0px,0px;b:0px,0px,0px,0px;l:140px,70px,0px,0px;r:140px,70px,0px,0px;\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:426;a:27:{s:2:\"id\";s:3:\"474\";s:5:\"title\";s:12:\"Stark Header\";s:5:\"alias\";s:12:\"stark-header\";s:3:\"zip\";s:22:\"packs/stark-header.zip\";s:3:\"uid\";s:32:\"62bfca01bf6e33cfad81d8df06498299\";s:3:\"img\";s:23:\"stark-header/slide1.jpg\";s:7:\"preview\";s:162:\"https://revolution.themepunch.com/stark-agency-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=stark-agency-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:93:\"offset=\"t:40px,30px,20px,10px;b:0px,0px,0px,0px;l:40px,30px,20px,10px;r:40px,30px,20px,10px;\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:427;a:27:{s:2:\"id\";s:3:\"475\";s:5:\"title\";s:13:\"Stark Content\";s:5:\"alias\";s:13:\"stark-content\";s:3:\"zip\";s:23:\"packs/stark-content.zip\";s:3:\"uid\";s:32:\"4577ca760133eb5d894c46f212f6eefb\";s:3:\"img\";s:24:\"stark-content/slide1.jpg\";s:7:\"preview\";s:162:\"https://revolution.themepunch.com/stark-agency-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=stark-agency-website-template\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:6:\"6.2.22\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:110:\"offset=\"t:-50px,-30px,-30px,-20px;b:0px,0px,0px,0px;l:140px,70px,50px,30px;r:140px,70px,50px,30px;\" zindex=\"6\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:428;a:27:{s:2:\"id\";s:3:\"476\";s:5:\"title\";s:14:\"Stark Carousel\";s:5:\"alias\";s:14:\"stark-carousel\";s:3:\"zip\";s:24:\"packs/stark-carousel.zip\";s:3:\"uid\";s:32:\"de63336d333eeff10eccfd5d9741e6c9\";s:3:\"img\";s:25:\"stark-carousel/slide1.jpg\";s:7:\"preview\";s:162:\"https://revolution.themepunch.com/stark-agency-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=stark-agency-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:108:\"offset=\"t:-50px,-30px,-30px,-20px;b:0px,0px,0px,0px;l:40px,30px,20px,10px;r:40px,30px,20px,10px;\" zindex=\"1\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:429;a:27:{s:2:\"id\";s:3:\"477\";s:5:\"title\";s:15:\"Stark Portfolio\";s:5:\"alias\";s:15:\"stark-portfolio\";s:3:\"zip\";s:25:\"packs/stark-portfolio.zip\";s:3:\"uid\";s:32:\"99fcf3df65f8471fe30bec1bf0c2350d\";s:3:\"img\";s:26:\"stark-portfolio/slide1.jpg\";s:7:\"preview\";s:162:\"https://revolution.themepunch.com/stark-agency-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=stark-agency-website-template\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:6:\"6.2.22\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:110:\"offset=\"t:-50px,-30px,-30px,-20px;b:0px,0px,0px,0px;l:140px,70px,50px,30px;r:140px,70px,50px,30px;\" zindex=\"5\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:430;a:27:{s:2:\"id\";s:3:\"478\";s:5:\"title\";s:22:\"Stark Portfolio Detail\";s:5:\"alias\";s:22:\"stark-portfolio-detail\";s:3:\"zip\";s:32:\"packs/stark-portfolio-detail.zip\";s:3:\"uid\";s:32:\"7484fc54f81daec07c93e992216310ce\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide1.jpg\";s:7:\"preview\";s:162:\"https://revolution.themepunch.com/stark-agency-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=stark-agency-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:431;a:27:{s:2:\"id\";s:3:\"479\";s:5:\"title\";s:13:\"Stark Contact\";s:5:\"alias\";s:13:\"stark-contact\";s:3:\"zip\";s:23:\"packs/stark-contact.zip\";s:3:\"uid\";s:32:\"8d704226b7093123a9d9faf424da6c35\";s:3:\"img\";s:24:\"stark-contact/slide1.jpg\";s:7:\"preview\";s:162:\"https://revolution.themepunch.com/stark-agency-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=stark-agency-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:108:\"offset=\"t:-50px,-30px,-30px,-20px;b:0px,0px,0px,0px;l:40px,30px,20px,10px;r:40px,30px,20px,10px;\" zindex=\"2\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:432;a:27:{s:2:\"id\";s:3:\"480\";s:5:\"title\";s:12:\"Stark Footer\";s:5:\"alias\";s:12:\"stark-footer\";s:3:\"zip\";s:22:\"packs/stark-footer.zip\";s:3:\"uid\";s:32:\"e7132dc158e7dcdb4ef5b3a1aa00208a\";s:3:\"img\";s:23:\"stark-footer/slide1.jpg\";s:7:\"preview\";s:162:\"https://revolution.themepunch.com/stark-agency-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=stark-agency-website-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:6:\"6.2.22\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:114:\"offset=\"t:-50px,-30px,-30px,-20px;b:40px,30px,20px,20px;l:140px,70px,50px,30px;r:140px,70px,50px,30px;\" zindex=\"3\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:433;a:27:{s:2:\"id\";s:3:\"481\";s:5:\"title\";s:16:\"Stark Newsletter\";s:5:\"alias\";s:16:\"stark-newsletter\";s:3:\"zip\";s:26:\"packs/stark-newsletter.zip\";s:3:\"uid\";s:32:\"bb76ddd68dbe6bda5ece7e4227a51413\";s:3:\"img\";s:27:\"stark-newsletter/slide1.jpg\";s:7:\"preview\";s:162:\"https://revolution.themepunch.com/stark-agency-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=stark-agency-website-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:33:\"usage=\"modal\" modal=\"s:#contact;\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:434;a:24:{s:2:\"id\";s:3:\"482\";s:5:\"title\";s:15:\"Big Summer Sale\";s:5:\"alias\";s:15:\"big-summer-sale\";s:3:\"zip\";s:19:\"big-summer-sale.zip\";s:3:\"uid\";s:32:\"a6779fa7109763209d234f9cf2e766c6\";s:3:\"img\";s:26:\"big-summer-sale/slide1.jpg\";s:7:\"preview\";s:158:\"https://revolution.themepunch.com/big-summer-sale-shop-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=big-summer-sale-shop-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:153:\"<span class=\"ttm_content\">The Big Summer Sale Shop Slider is a beautiful eye catcher for your e-commerce website!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:60:\"How to Add an Animated Headline to Your Home Page [Tutorial]\";s:9:\"guide_url\";s:102:\"https://www.sliderrevolution.com/tutorials/how-to-add-an-animated-headline-to-your-home-page-tutorial/\";s:9:\"guide_img\";s:28:\"tutorial/big-summer-sale.jpg\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:435;a:25:{s:2:\"id\";s:3:\"483\";s:5:\"title\";s:18:\"Traveller Carousel\";s:5:\"alias\";s:18:\"traveller-carousel\";s:3:\"zip\";s:22:\"traveller-carousel.zip\";s:3:\"uid\";s:32:\"185344ed6236bea2906a79035d1d5702\";s:3:\"img\";s:29:\"traveller-carousel/slide1.jpg\";s:7:\"preview\";s:144:\"https://revolution.themepunch.com/travel-blog-carousel/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=travel-blog-carousel\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:137:\"<span class=\"ttm_content\">A travel blog carousel with interesting parallax and ken burns effects!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:263:\"<span class=\"ttm_content\">Note that the content visible on all slides can be edited on the \"global layers\" slide.<br/>Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:74:\"How to Create an Engaging Product Carousel for Your Online Shop [Tutorial]\";s:9:\"guide_url\";s:107:\"https://www.sliderrevolution.com/tutorials/how-to-create-an-engaging-product-carousel-for-your-online-shop/\";s:9:\"guide_img\";s:31:\"tutorial/traveller-carousel.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:436;a:24:{s:2:\"id\";s:3:\"484\";s:5:\"title\";s:16:\"Project Carousel\";s:5:\"alias\";s:16:\"project-carousel\";s:3:\"zip\";s:20:\"project-carousel.zip\";s:3:\"uid\";s:32:\"49c85ad406da943bdd25f08fd6496748\";s:3:\"img\";s:27:\"project-carousel/slide1.jpg\";s:7:\"preview\";s:136:\"https://revolution.themepunch.com/project-carousel/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=project-carousel\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:137:\"<span class=\"ttm_content\">A project carousel with images and texts that can be customized easily!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:437;a:24:{s:2:\"id\";s:3:\"485\";s:5:\"title\";s:13:\"News Carousel\";s:5:\"alias\";s:13:\"news-carousel\";s:3:\"zip\";s:17:\"news-carousel.zip\";s:3:\"uid\";s:32:\"76f5b939150092a30038f161084140ae\";s:3:\"img\";s:24:\"news-carousel/slide1.jpg\";s:7:\"preview\";s:130:\"https://revolution.themepunch.com/news-carousel/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=news-carousel\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:134:\"<span class=\"ttm_content\">A news carousel with images and texts that can be customized easily!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:438;a:27:{s:2:\"id\";s:3:\"486\";s:5:\"title\";s:29:\"Story Blocks Website Template\";s:5:\"alias\";s:29:\"story-blocks-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:37:\"story-blocks-website-template-package\";s:3:\"img\";s:50:\"packages/story-blocks-website-template-package.jpg\";s:7:\"preview\";s:128:\"https://revolution.themepunch.com/story-blocks/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=story-blocks\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;}i:439;a:27:{s:2:\"id\";s:3:\"487\";s:5:\"title\";s:10:\"Story Menu\";s:5:\"alias\";s:10:\"story-menu\";s:3:\"zip\";s:20:\"packs/story-menu.zip\";s:3:\"uid\";s:32:\"1f2f7cd91480f15cff8e7100f788c650\";s:3:\"img\";s:21:\"story-menu/slide1.jpg\";s:7:\"preview\";s:128:\"https://revolution.themepunch.com/story-blocks/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=story-blocks\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;}i:440;a:27:{s:2:\"id\";s:3:\"488\";s:5:\"title\";s:12:\"Story Header\";s:5:\"alias\";s:12:\"story-header\";s:3:\"zip\";s:22:\"packs/story-header.zip\";s:3:\"uid\";s:32:\"e1a5ad5018a24ccdc71c2863edfe775e\";s:3:\"img\";s:23:\"story-header/slide1.jpg\";s:7:\"preview\";s:128:\"https://revolution.themepunch.com/story-blocks/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=story-blocks\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;}i:441;a:27:{s:2:\"id\";s:3:\"489\";s:5:\"title\";s:13:\"Story Block 1\";s:5:\"alias\";s:13:\"story-block-1\";s:3:\"zip\";s:23:\"packs/story-block-1.zip\";s:3:\"uid\";s:32:\"2a9fee97dcf477e36d048af8a902f47a\";s:3:\"img\";s:24:\"story-block-1/slide1.jpg\";s:7:\"preview\";s:128:\"https://revolution.themepunch.com/story-blocks/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=story-blocks\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;}i:442;a:27:{s:2:\"id\";s:3:\"490\";s:5:\"title\";s:15:\"Story Content 1\";s:5:\"alias\";s:15:\"story-content-1\";s:3:\"zip\";s:25:\"packs/story-content-1.zip\";s:3:\"uid\";s:32:\"6773614bbce543b83a0d2b2ad8facc96\";s:3:\"img\";s:26:\"story-content-1/slide1.jpg\";s:7:\"preview\";s:128:\"https://revolution.themepunch.com/story-blocks/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=story-blocks\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;}i:443;a:27:{s:2:\"id\";s:3:\"491\";s:5:\"title\";s:13:\"Story Block 2\";s:5:\"alias\";s:13:\"story-block-2\";s:3:\"zip\";s:23:\"packs/story-block-2.zip\";s:3:\"uid\";s:32:\"2e708e3cebab57ca20b228ffba426ce7\";s:3:\"img\";s:24:\"story-block-2/slide1.jpg\";s:7:\"preview\";s:128:\"https://revolution.themepunch.com/story-blocks/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=story-blocks\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;}i:444;a:27:{s:2:\"id\";s:3:\"492\";s:5:\"title\";s:13:\"Story Block 3\";s:5:\"alias\";s:13:\"story-block-3\";s:3:\"zip\";s:23:\"packs/story-block-3.zip\";s:3:\"uid\";s:32:\"7156cf069f65644faf90122dab451231\";s:3:\"img\";s:24:\"story-block-3/slide1.jpg\";s:7:\"preview\";s:128:\"https://revolution.themepunch.com/story-blocks/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=story-blocks\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;}i:445;a:27:{s:2:\"id\";s:3:\"493\";s:5:\"title\";s:15:\"Story Content 2\";s:5:\"alias\";s:15:\"story-content-2\";s:3:\"zip\";s:25:\"packs/story-content-2.zip\";s:3:\"uid\";s:32:\"1223cd77d1f36d69e69ce50223e16ea7\";s:3:\"img\";s:26:\"story-content-2/slide1.jpg\";s:7:\"preview\";s:128:\"https://revolution.themepunch.com/story-blocks/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=story-blocks\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;}i:446;a:27:{s:2:\"id\";s:3:\"494\";s:5:\"title\";s:13:\"Story Block 4\";s:5:\"alias\";s:13:\"story-block-4\";s:3:\"zip\";s:23:\"packs/story-block-4.zip\";s:3:\"uid\";s:32:\"85ac48e8e8231d2c38206cba4e7ebb68\";s:3:\"img\";s:24:\"story-block-4/slide1.jpg\";s:7:\"preview\";s:128:\"https://revolution.themepunch.com/story-blocks/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=story-blocks\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;}i:447;a:27:{s:2:\"id\";s:3:\"495\";s:5:\"title\";s:15:\"Story Content 3\";s:5:\"alias\";s:15:\"story-content-3\";s:3:\"zip\";s:25:\"packs/story-content-3.zip\";s:3:\"uid\";s:32:\"82cac52f3ba79c0559fe0ad0cdf9d3b2\";s:3:\"img\";s:26:\"story-content-3/slide1.jpg\";s:7:\"preview\";s:128:\"https://revolution.themepunch.com/story-blocks/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=story-blocks\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;}i:448;a:24:{s:2:\"id\";s:3:\"496\";s:5:\"title\";s:21:\"Animated Mini Website\";s:5:\"alias\";s:12:\"mini-website\";s:3:\"zip\";s:16:\"mini-website.zip\";s:3:\"uid\";s:32:\"cc6c0a3b0f933a88c43e2be0fa397c1c\";s:3:\"img\";s:23:\"mini-website/slide1.jpg\";s:7:\"preview\";s:137:\"https://www.sliderrevolution.com/templates/mini-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=mini-website\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:209:\"<span class=\"ttm_content\">The animated mini website template has a modern, vibrant design and can be customized easily! Get the #1 WordPress Builder with 200+ templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:449;a:24:{s:2:\"id\";s:3:\"497\";s:5:\"title\";s:18:\"Food Delivery Hero\";s:5:\"alias\";s:13:\"food-delivery\";s:3:\"zip\";s:17:\"food-delivery.zip\";s:3:\"uid\";s:32:\"992e9b22ff43227a655eea341835d04c\";s:3:\"img\";s:24:\"food-delivery/slide1.jpg\";s:7:\"preview\";s:149:\"https://www.sliderrevolution.com/templates/food-delivery-hero/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=food-delivery-hero\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:207:\"<span class=\"ttm_content\">Yummy! This hero template convinces with a changing color background, a particle effect, vibrant illustrations and smooth mouse over effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:342:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:450;a:24:{s:2:\"id\";s:3:\"498\";s:5:\"title\";s:25:\"Slider With Illustrations\";s:5:\"alias\";s:25:\"slider-with-illustrations\";s:3:\"zip\";s:29:\"slider-with-illustrations.zip\";s:3:\"uid\";s:32:\"ebc24280b669f26734c7fdd8b5683e9f\";s:3:\"img\";s:36:\"slider-with-illustrations/slide1.jpg\";s:7:\"preview\";s:163:\"https://www.sliderrevolution.com/templates/slider-with-illustrations/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=slider-with-illustrations\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">A basic slider template with easy to customize content, colorful illustrations and pleasant parallax effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:451;a:27:{s:2:\"id\";s:3:\"499\";s:5:\"title\";s:31:\"Zen Technology Website Template\";s:5:\"alias\";s:31:\"zen-technology-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:39:\"zen-technology-website-template-package\";s:3:\"img\";s:52:\"packages/zen-technology-website-template-package.jpg\";s:7:\"preview\";s:157:\"https://www.sliderrevolution.com/templates/zen-technology-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=zen-technology-website\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:452;a:27:{s:2:\"id\";s:3:\"500\";s:5:\"title\";s:8:\"Zen Menu\";s:5:\"alias\";s:8:\"zen-menu\";s:3:\"zip\";s:18:\"packs/zen-menu.zip\";s:3:\"uid\";s:32:\"3b53d755058b75fa6172510dcca2f2bb\";s:3:\"img\";s:19:\"zen-menu/slide1.jpg\";s:7:\"preview\";s:157:\"https://www.sliderrevolution.com/templates/zen-technology-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=zen-technology-website\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:453;a:27:{s:2:\"id\";s:3:\"501\";s:5:\"title\";s:10:\"Zen Header\";s:5:\"alias\";s:10:\"zen-header\";s:3:\"zip\";s:20:\"packs/zen-header.zip\";s:3:\"uid\";s:32:\"13d3cdde05308616fda7e2920a29e006\";s:3:\"img\";s:21:\"zen-header/slide1.jpg\";s:7:\"preview\";s:157:\"https://www.sliderrevolution.com/templates/zen-technology-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=zen-technology-website\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:454;a:27:{s:2:\"id\";s:3:\"502\";s:5:\"title\";s:9:\"Zen About\";s:5:\"alias\";s:9:\"zen-about\";s:3:\"zip\";s:19:\"packs/zen-about.zip\";s:3:\"uid\";s:32:\"d50d4f9b43e025fa99503b9a4eec6551\";s:3:\"img\";s:20:\"zen-about/slide1.jpg\";s:7:\"preview\";s:157:\"https://www.sliderrevolution.com/templates/zen-technology-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=zen-technology-website\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:455;a:27:{s:2:\"id\";s:3:\"503\";s:5:\"title\";s:12:\"Zen Features\";s:5:\"alias\";s:12:\"zen-features\";s:3:\"zip\";s:22:\"packs/zen-features.zip\";s:3:\"uid\";s:32:\"f4f7f500fae57b1b55adace13f030778\";s:3:\"img\";s:23:\"zen-features/slide1.jpg\";s:7:\"preview\";s:157:\"https://www.sliderrevolution.com/templates/zen-technology-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=zen-technology-website\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:456;a:27:{s:2:\"id\";s:3:\"504\";s:5:\"title\";s:9:\"Zen Video\";s:5:\"alias\";s:9:\"zen-video\";s:3:\"zip\";s:19:\"packs/zen-video.zip\";s:3:\"uid\";s:32:\"fa83df1b45b795174770b1b0155e89f3\";s:3:\"img\";s:20:\"zen-video/slide1.jpg\";s:7:\"preview\";s:157:\"https://www.sliderrevolution.com/templates/zen-technology-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=zen-technology-website\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:457;a:27:{s:2:\"id\";s:3:\"505\";s:5:\"title\";s:11:\"Zen Pricing\";s:5:\"alias\";s:11:\"zen-pricing\";s:3:\"zip\";s:21:\"packs/zen-pricing.zip\";s:3:\"uid\";s:32:\"921f8e5c156d9027f6ae8f1c5e426251\";s:3:\"img\";s:22:\"zen-pricing/slide1.jpg\";s:7:\"preview\";s:157:\"https://www.sliderrevolution.com/templates/zen-technology-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=zen-technology-website\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:458;a:27:{s:2:\"id\";s:3:\"506\";s:5:\"title\";s:22:\"Zen Testimonials Title\";s:5:\"alias\";s:22:\"zen-testimonials-title\";s:3:\"zip\";s:32:\"packs/zen-testimonials-title.zip\";s:3:\"uid\";s:32:\"d9aeeb596c0455ddd564a60a2d449b17\";s:3:\"img\";s:33:\"zen-testimonials-title/slide1.jpg\";s:7:\"preview\";s:157:\"https://www.sliderrevolution.com/templates/zen-technology-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=zen-technology-website\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:459;a:27:{s:2:\"id\";s:3:\"507\";s:5:\"title\";s:16:\"Zen Testimonials\";s:5:\"alias\";s:16:\"zen-testimonials\";s:3:\"zip\";s:26:\"packs/zen-testimonials.zip\";s:3:\"uid\";s:32:\"5a0e0141599c63828e4b99e3bc863366\";s:3:\"img\";s:27:\"zen-testimonials/slide1.jpg\";s:7:\"preview\";s:157:\"https://www.sliderrevolution.com/templates/zen-technology-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=zen-technology-website\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:460;a:27:{s:2:\"id\";s:3:\"508\";s:5:\"title\";s:10:\"Zen Footer\";s:5:\"alias\";s:10:\"zen-footer\";s:3:\"zip\";s:20:\"packs/zen-footer.zip\";s:3:\"uid\";s:32:\"47fb8604e2aafa8cfc97f5af75fda911\";s:3:\"img\";s:21:\"zen-footer/slide1.jpg\";s:7:\"preview\";s:157:\"https://www.sliderrevolution.com/templates/zen-technology-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=zen-technology-website\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:461;a:24:{s:2:\"id\";s:3:\"509\";s:5:\"title\";s:24:\"Paintbrush Effect Add-on\";s:5:\"alias\";s:17:\"Paintbrush-Effect\";s:3:\"zip\";s:21:\"Paintbrush-Effect.zip\";s:3:\"uid\";s:32:\"b934d1376df026f0ff45447de17b5ee9\";s:3:\"img\";s:28:\"Paintbrush-Effect/slide1.jpg\";s:7:\"preview\";s:169:\"https://www.sliderrevolution.com/templates/paintbrush-effect-collection/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=paintbrush-effect-collection\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:179:\"<span class=\"ttm_content\">The Paintbrush Effect Add-on is the perfect way to add some interactivity to your website with Slider Revolution.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:338:\"[{\"path\":\"revslider-paintbrush-addon\\/revslider-paintbrush-addon.php\",\"name\":\"Paintbrush AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:462;a:24:{s:2:\"id\";s:3:\"518\";s:5:\"title\";s:25:\"Black Friday Scroll Video\";s:5:\"alias\";s:25:\"black-friday-scroll-video\";s:3:\"zip\";s:29:\"black-friday-scroll-video.zip\";s:3:\"uid\";s:32:\"a6a4ab2e2f703aaee0a1e6121881bdd8\";s:3:\"img\";s:36:\"black-friday-scroll-video/slide1.jpg\";s:7:\"preview\";s:163:\"https://www.sliderrevolution.com/templates/black-friday-scroll-video/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=black-friday-scroll-video\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:169:\"<span class=\"ttm_content\">Blackfriday offers are coming towards you from the depths of space, with this scroll-based hero module.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:369:\"[{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-scrollvideo-addon\\/revslider-scrollvideo-addon.php\",\"name\":\"Slider Revolution Scroll Video AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:71:\"Spice Up Your Sales Promotions with a Video Scroll Animation [Tutorial]\";s:9:\"guide_url\";s:104:\"https://www.sliderrevolution.com/tutorials/spice-up-your-sales-promotions-with-a-video-scroll-animation/\";s:9:\"guide_img\";s:38:\"tutorial/black-friday-scroll-video.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:463;a:27:{s:2:\"id\";s:3:\"519\";s:5:\"title\";s:26:\"Charity Non-Profit-Website\";s:5:\"alias\";s:26:\"charity-non-profit-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"charity-non-profit-website\";s:3:\"img\";s:47:\"packages/charity-non-profit-website-package.jpg\";s:7:\"preview\";s:165:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=charity-non-profit-website\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:177:\"[{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:464;a:27:{s:2:\"id\";s:3:\"520\";s:5:\"title\";s:12:\"Charity Menu\";s:5:\"alias\";s:12:\"charity-menu\";s:3:\"zip\";s:22:\"packs/charity-menu.zip\";s:3:\"uid\";s:32:\"77794a39041c7f128de3b5ad9b8e7d0d\";s:3:\"img\";s:23:\"charity-menu/slide1.jpg\";s:7:\"preview\";s:165:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=charity-non-profit-website\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:465;a:27:{s:2:\"id\";s:3:\"521\";s:5:\"title\";s:14:\"Charity Header\";s:5:\"alias\";s:14:\"charity-header\";s:3:\"zip\";s:24:\"packs/charity-header.zip\";s:3:\"uid\";s:32:\"36096787d4ed62942cbd48f6a57e9d4f\";s:3:\"img\";s:25:\"charity-header/slide1.jpg\";s:7:\"preview\";s:165:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=charity-non-profit-website\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:86:\" offset=\"t:90px,80px,70px,70px;b:0px,0px,0px,0px;l:0px,0px,0px,0px;r:0px,0px,0px,0px;\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:466;a:27:{s:2:\"id\";s:3:\"522\";s:5:\"title\";s:15:\"Charity Mission\";s:5:\"alias\";s:15:\"charity-mission\";s:3:\"zip\";s:25:\"packs/charity-mission.zip\";s:3:\"uid\";s:32:\"8c5cd67e3eb51c0ca3e571408ac8e97b\";s:3:\"img\";s:26:\"charity-mission/slide1.jpg\";s:7:\"preview\";s:165:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=charity-non-profit-website\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:177:\"[{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:467;a:27:{s:2:\"id\";s:3:\"523\";s:5:\"title\";s:13:\"Charity Funds\";s:5:\"alias\";s:13:\"charity-funds\";s:3:\"zip\";s:23:\"packs/charity-funds.zip\";s:3:\"uid\";s:32:\"10da554c7529ef91965e1618a04b410b\";s:3:\"img\";s:24:\"charity-funds/slide1.jpg\";s:7:\"preview\";s:165:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=charity-non-profit-website\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:177:\"[{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:468;a:27:{s:2:\"id\";s:3:\"524\";s:5:\"title\";s:15:\"Charity Success\";s:5:\"alias\";s:15:\"charity-success\";s:3:\"zip\";s:25:\"packs/charity-success.zip\";s:3:\"uid\";s:32:\"0c35448c1905272606e87447886a348e\";s:3:\"img\";s:26:\"charity-success/slide1.jpg\";s:7:\"preview\";s:165:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=charity-non-profit-website\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:177:\"[{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:469;a:27:{s:2:\"id\";s:3:\"525\";s:5:\"title\";s:15:\"Charity Stories\";s:5:\"alias\";s:15:\"charity-stories\";s:3:\"zip\";s:25:\"packs/charity-stories.zip\";s:3:\"uid\";s:32:\"f277f145d9f9c3f0033bb8ceffeb4c9f\";s:3:\"img\";s:26:\"charity-stories/slide1.jpg\";s:7:\"preview\";s:165:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=charity-non-profit-website\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:470;a:27:{s:2:\"id\";s:3:\"526\";s:5:\"title\";s:16:\"Charity Worldmap\";s:5:\"alias\";s:16:\"charity-worldmap\";s:3:\"zip\";s:26:\"packs/charity-worldmap.zip\";s:3:\"uid\";s:32:\"9e00cbac269b92cb24fd3230297f4685\";s:3:\"img\";s:27:\"charity-worldmap/slide1.jpg\";s:7:\"preview\";s:165:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=charity-non-profit-website\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:471;a:27:{s:2:\"id\";s:3:\"527\";s:5:\"title\";s:19:\"Charity Large Image\";s:5:\"alias\";s:19:\"charity-large-image\";s:3:\"zip\";s:29:\"packs/charity-large-image.zip\";s:3:\"uid\";s:32:\"fa927036c2b14622832106fa987bc8e7\";s:3:\"img\";s:30:\"charity-large-image/slide1.jpg\";s:7:\"preview\";s:165:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=charity-non-profit-website\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:472;a:27:{s:2:\"id\";s:3:\"528\";s:5:\"title\";s:16:\"Charity Sponsors\";s:5:\"alias\";s:16:\"charity-sponsors\";s:3:\"zip\";s:26:\"packs/charity-sponsors.zip\";s:3:\"uid\";s:32:\"efd087bc3fa3915139af9e93d47ee295\";s:3:\"img\";s:27:\"charity-sponsors/slide1.jpg\";s:7:\"preview\";s:165:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=charity-non-profit-website\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:473;a:27:{s:2:\"id\";s:3:\"529\";s:5:\"title\";s:12:\"Charity Help\";s:5:\"alias\";s:12:\"charity-help\";s:3:\"zip\";s:22:\"packs/charity-help.zip\";s:3:\"uid\";s:32:\"4f3571c0b27f061648c9ff95b1a3f718\";s:3:\"img\";s:23:\"charity-help/slide1.jpg\";s:7:\"preview\";s:165:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=charity-non-profit-website\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:2:\"10\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:474;a:27:{s:2:\"id\";s:3:\"530\";s:5:\"title\";s:14:\"Charity Footer\";s:5:\"alias\";s:14:\"charity-footer\";s:3:\"zip\";s:24:\"packs/charity-footer.zip\";s:3:\"uid\";s:32:\"9340fa48c56635a8a781cc37c4bf538c\";s:3:\"img\";s:25:\"charity-footer/slide1.jpg\";s:7:\"preview\";s:165:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=charity-non-profit-website\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:2:\"11\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:475;a:24:{s:2:\"id\";s:3:\"531\";s:5:\"title\";s:21:\"Cinematic Hero Titles\";s:5:\"alias\";s:21:\"cinematic-hero-titles\";s:3:\"zip\";s:25:\"cinematic-hero-titles.zip\";s:3:\"uid\";s:32:\"51a59c54bb97c274092d22dbf4f6085e\";s:3:\"img\";s:32:\"cinematic-hero-titles/slide1.jpg\";s:7:\"preview\";s:155:\"https://www.sliderrevolution.com/templates/cinematic-hero-titles/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=cinematic-hero-titles\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:199:\"<span class=\"ttm_content\">The \"Cinematic Hero Titles\" template is a collection of fullscreen hero blocks that use a cinematic, animated letter-spacing effect..</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:177:\"[{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:70:\"https://www.sliderrevolution.com/tutorials/how-to-design-a-hero-image/\";s:9:\"guide_url\";s:70:\"https://www.sliderrevolution.com/tutorials/how-to-design-a-hero-image/\";s:9:\"guide_img\";s:34:\"tutorial/cinematic-hero-titles.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:476;a:24:{s:2:\"id\";s:3:\"532\";s:5:\"title\";s:23:\"Design DNA Scroll Video\";s:5:\"alias\";s:23:\"design-dna-scroll-video\";s:3:\"zip\";s:27:\"design-dna-scroll-video.zip\";s:3:\"uid\";s:32:\"39180fc9f7a07e50832fc1a68fb4eba2\";s:3:\"img\";s:34:\"design-dna-scroll-video/slide1.jpg\";s:7:\"preview\";s:159:\"https://www.sliderrevolution.com/templates/design-dna-scroll-video/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=design-dna-scroll-video\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:185:\"<span class=\"ttm_content\">The \"Design DNA Scroll Video\" template is a striking, fullscreen hero module that is using our new Scroll Video addon.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:543:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-scrollvideo-addon\\/revslider-scrollvideo-addon.php\",\"name\":\"Slider Revolution Scroll Video AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:477;a:24:{s:2:\"id\";s:3:\"533\";s:5:\"title\";s:27:\"Food Delivery Lottie Scroll\";s:5:\"alias\";s:27:\"food-delivery-lottie-scroll\";s:3:\"zip\";s:31:\"food-delivery-lottie-scroll.zip\";s:3:\"uid\";s:32:\"5dfbfac45c5df7702238ba1b43afe8f6\";s:3:\"img\";s:38:\"food-delivery-lottie-scroll/slide1.jpg\";s:7:\"preview\";s:167:\"https://www.sliderrevolution.com/templates/food-delivery-lottie-scroll/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=food-delivery-lottie-scroll\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:185:\"<span class=\"ttm_content\">The \"Design DNA Scroll Video\" template is a striking, fullscreen hero module that is using our new Scroll Video addon.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:177:\"[{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:68:\"How to Design a Scroll Animation on Your Own Using Lottie [Tutorial]\";s:9:\"guide_url\";s:110:\"https://www.sliderrevolution.com/tutorials/how-to-design-a-scroll-animation-on-your-own-using-lottie-tutorial/\";s:9:\"guide_img\";s:40:\"tutorial/food-delivery-lottie-scroll.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:478;a:27:{s:2:\"id\";s:3:\"534\";s:5:\"title\";s:29:\"Food Recipe Carousel Template\";s:5:\"alias\";s:29:\"food-recipe-carousel-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:29:\"food-recipe-carousel-template\";s:3:\"img\";s:50:\"packages/food-recipe-carousel-template-package.jpg\";s:7:\"preview\";s:153:\"https://www.sliderrevolution.com/templates/food-recipe-carousel/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=food-recipe-carousel\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Showcase your cooking recipes with the easy to use \"Food Recipe Carousel\" template. Clicking the titles opens up a detail view!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Food Recipe Carousel Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"42\";s:9:\"installed\";b:0;}i:479;a:27:{s:2:\"id\";s:3:\"535\";s:5:\"title\";s:20:\"Food Recipe Carousel\";s:5:\"alias\";s:20:\"food-recipe-carousel\";s:3:\"zip\";s:30:\"packs/food-recipe-carousel.zip\";s:3:\"uid\";s:32:\"6ba9695ba1a22a6e99f96431d8fb01e8\";s:3:\"img\";s:31:\"food-recipe-carousel/slide1.jpg\";s:7:\"preview\";s:153:\"https://www.sliderrevolution.com/templates/food-recipe-carousel/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=food-recipe-carousel\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Food Recipe Carousel Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"42\";s:9:\"installed\";b:0;}i:480;a:27:{s:2:\"id\";s:3:\"536\";s:5:\"title\";s:17:\"Food Recipe Modal\";s:5:\"alias\";s:17:\"food-recipe-modal\";s:3:\"zip\";s:27:\"packs/food-recipe-modal.zip\";s:3:\"uid\";s:32:\"1c5b2e959cd973efc5c1887a3a4279f3\";s:3:\"img\";s:28:\"food-recipe-modal/slide1.jpg\";s:7:\"preview\";s:153:\"https://www.sliderrevolution.com/templates/food-recipe-carousel/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=food-recipe-carousel\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Food Recipe Carousel Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"42\";s:9:\"installed\";b:0;}i:481;a:27:{s:2:\"id\";s:3:\"537\";s:5:\"title\";s:27:\"Corporate Carousel Template\";s:5:\"alias\";s:27:\"corporate-carousel-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:27:\"corporate-carousel-template\";s:3:\"img\";s:38:\"packages/corporate_carousel_bundle.jpg\";s:7:\"preview\";s:176:\"https://www.sliderrevolution.com/templates/corporate-carousel-with-lightbox?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=corporate-carousel-with-lightbox\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Corporate Carousel is a basic, easy to use carousel with tab navigation. The lightbox modal can show any additonal content, independant of the carousel.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 15:14:10\";s:7:\"package\";s:27:\"Corporate Carousel Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"43\";s:9:\"installed\";b:0;}i:482;a:27:{s:2:\"id\";s:3:\"538\";s:5:\"title\";s:18:\"Corporate Carousel\";s:5:\"alias\";s:18:\"corporate-carousel\";s:3:\"zip\";s:28:\"packs/corporate-carousel.zip\";s:3:\"uid\";s:32:\"30dea0e333913cb5ebbf8dded8c3a839\";s:3:\"img\";s:29:\"corporate-carousel/slide1.jpg\";s:7:\"preview\";s:128:\"https://revolution.themepunch.com/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=revolution.themepunch.com\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Corporate Carousel is a basic, easy to use carousel with tab navigation. The lightbox modal can show any additonal content, independant of the carousel.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 15:26:51\";s:7:\"package\";s:27:\"Corporate Carousel Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"43\";s:9:\"installed\";b:0;}i:483;a:27:{s:2:\"id\";s:3:\"539\";s:5:\"title\";s:18:\"Corporate Lightbox\";s:5:\"alias\";s:18:\"corporate-lightbox\";s:3:\"zip\";s:28:\"packs/corporate-lightbox.zip\";s:3:\"uid\";s:32:\"832c277bfc5a288c0dffd784e4041265\";s:3:\"img\";s:29:\"corporate-lightbox/slide1.jpg\";s:7:\"preview\";s:128:\"https://revolution.themepunch.com/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=revolution.themepunch.com\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Corporate Carousel is a basic, easy to use carousel with tab navigation. The lightbox modal can show any additonal content, independant of the carousel.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 15:34:36\";s:7:\"package\";s:27:\"Corporate Carousel Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"43\";s:9:\"installed\";b:0;}i:484;a:27:{s:2:\"id\";s:3:\"540\";s:5:\"title\";s:23:\"Cyber Carousel Template\";s:5:\"alias\";s:23:\"cyber-carousel-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:23:\"cyber-carousel-template\";s:3:\"img\";s:33:\"packages/cybercarousel_bundle.jpg\";s:7:\"preview\";s:168:\"https://www.sliderrevolution.com/templates/cyber-carousel-with-lightbox?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=cyber-carousel-with-lightbox\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:218:\"<span class=\"ttm_content\">This fullscreen carousel has easy to edit content and vertical navigation tabs. The highlight color can be changed with one click upon opening the editor.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 15:40:25\";s:7:\"package\";s:23:\"Cyber Carousel Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:91:\"How to Create a Featured Content Section That Convinces Visitors to Keep Reading [Tutorial]\";s:9:\"guide_url\";s:124:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-featured-content-section-that-convinces-visitors-to-keep-reading/\";s:9:\"guide_img\";s:41:\"tutorial/Cyber-Carousel-With-Lightbox.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"44\";s:9:\"installed\";b:0;}i:485;a:27:{s:2:\"id\";s:3:\"541\";s:5:\"title\";s:14:\"Cyber Carousel\";s:5:\"alias\";s:14:\"cyber-carousel\";s:3:\"zip\";s:24:\"packs/cyber-carousel.zip\";s:3:\"uid\";s:32:\"b5ef41c7f498bd1dccf8224bfbade718\";s:3:\"img\";s:25:\"cyber-carousel/slide1.jpg\";s:7:\"preview\";s:168:\"https://www.sliderrevolution.com/templates/cyber-carousel-with-lightbox?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=cyber-carousel-with-lightbox\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:218:\"<span class=\"ttm_content\">This fullscreen carousel has easy to edit content and vertical navigation tabs. The highlight color can be changed with one click upon opening the editor.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 15:42:44\";s:7:\"package\";s:23:\"Cyber Carousel Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:91:\"How to Create a Featured Content Section That Convinces Visitors to Keep Reading [Tutorial]\";s:9:\"guide_url\";s:124:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-featured-content-section-that-convinces-visitors-to-keep-reading/\";s:9:\"guide_img\";s:41:\"tutorial/Cyber-Carousel-With-Lightbox.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"44\";s:9:\"installed\";b:0;}i:486;a:27:{s:2:\"id\";s:3:\"542\";s:5:\"title\";s:23:\"Cyber Carousel Lightbox\";s:5:\"alias\";s:23:\"cyber-carousel-lightbox\";s:3:\"zip\";s:33:\"packs/cyber-carousel-lightbox.zip\";s:3:\"uid\";s:32:\"cb91abeed0555dfcafe849c37e7c9c32\";s:3:\"img\";s:34:\"cyber-carousel-lightbox/slide1.jpg\";s:7:\"preview\";s:168:\"https://www.sliderrevolution.com/templates/cyber-carousel-with-lightbox?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=cyber-carousel-with-lightbox\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:218:\"<span class=\"ttm_content\">This fullscreen carousel has easy to edit content and vertical navigation tabs. The highlight color can be changed with one click upon opening the editor.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 15:50:15\";s:7:\"package\";s:23:\"Cyber Carousel Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:91:\"How to Create a Featured Content Section That Convinces Visitors to Keep Reading [Tutorial]\";s:9:\"guide_url\";s:124:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-featured-content-section-that-convinces-visitors-to-keep-reading/\";s:9:\"guide_img\";s:41:\"tutorial/Cyber-Carousel-With-Lightbox.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"44\";s:9:\"installed\";b:0;}i:487;a:27:{s:2:\"id\";s:3:\"543\";s:5:\"title\";s:16:\"Woo Carousel One\";s:5:\"alias\";s:24:\"woocommerce-carousel-one\";s:3:\"zip\";s:28:\"woocommerce-carousel-one.zip\";s:3:\"uid\";s:32:\"df0a99cef3981ecb608dff4ed573a493\";s:3:\"img\";s:35:\"woocommerce-carousel-one/slide1.jpg\";s:7:\"preview\";s:159:\"https://www.sliderrevolution.com/templates/woocommerce-slider-pack/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=woocommerce-slider-pack\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:185:\"<span class=\"ttm_content\">A basic WooCommerce carousel. Just set your categories and the carousel will be populated with your WooCommerce products.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 16:02:45\";s:7:\"package\";s:15:\"Woo Slider Pack\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"45\";s:9:\"installed\";b:0;}i:488;a:27:{s:2:\"id\";s:3:\"544\";s:5:\"title\";s:23:\"Woo Carousel One Static\";s:5:\"alias\";s:31:\"woocommerce-carousel-one-static\";s:3:\"zip\";s:35:\"woocommerce-carousel-one-static.zip\";s:3:\"uid\";s:32:\"5c955a3850369e79b1e18921306ac1df\";s:3:\"img\";s:42:\"woocommerce-carousel-one-static/slide1.jpg\";s:7:\"preview\";s:155:\"https://sliderrevolution.com/templates/woocommerce-slider-pack/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=woocommerce-slider-pack\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A static content carousel. Please use the \"non-static\" version for WooCommerce.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 16:05:02\";s:7:\"package\";s:22:\"Woo Slider Pack Static\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"46\";s:9:\"installed\";b:0;}i:489;a:27:{s:2:\"id\";s:3:\"545\";s:5:\"title\";s:16:\"Woo Carousel Two\";s:5:\"alias\";s:24:\"woocommerce-carousel-two\";s:3:\"zip\";s:28:\"woocommerce-carousel-two.zip\";s:3:\"uid\";s:32:\"fdd797d8e98a9138f5563b68b95ebe1c\";s:3:\"img\";s:35:\"woocommerce-carousel-two/slide1.jpg\";s:7:\"preview\";s:159:\"https://www.sliderrevolution.com/templates/woocommerce-slider-pack/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=woocommerce-slider-pack\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:185:\"<span class=\"ttm_content\">A basic WooCommerce carousel. Just set your categories and the carousel will be populated with your WooCommerce products.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 16:06:57\";s:7:\"package\";s:15:\"Woo Slider Pack\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"45\";s:9:\"installed\";b:0;}i:490;a:27:{s:2:\"id\";s:3:\"546\";s:5:\"title\";s:23:\"Woo Carousel Two Static\";s:5:\"alias\";s:31:\"woocommerce-carousel-two-static\";s:3:\"zip\";s:35:\"woocommerce-carousel-two-static.zip\";s:3:\"uid\";s:32:\"2f3bfb1dfa99647426ce906f10dfc480\";s:3:\"img\";s:42:\"woocommerce-carousel-two-static/slide1.jpg\";s:7:\"preview\";s:155:\"https://sliderrevolution.com/templates/woocommerce-slider-pack/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=woocommerce-slider-pack\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A static content carousel. Please use the \"non-static\" version for WooCommerce.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 16:16:15\";s:7:\"package\";s:22:\"Woo Slider Pack Static\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"46\";s:9:\"installed\";b:0;}i:491;a:27:{s:2:\"id\";s:3:\"547\";s:5:\"title\";s:18:\"Woo Feature Slider\";s:5:\"alias\";s:26:\"woocommerce-feature-slider\";s:3:\"zip\";s:30:\"woocommerce-feature-slider.zip\";s:3:\"uid\";s:32:\"c8aa1f551065eeffc752f2d8daef6db1\";s:3:\"img\";s:37:\"woocommerce-feature-slider/slide1.jpg\";s:7:\"preview\";s:159:\"https://www.sliderrevolution.com/templates/woocommerce-slider-pack/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=woocommerce-slider-pack\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:181:\"<span class=\"ttm_content\">A basic WooCommerce slider. Just set your categories and the slider will be populated with your WooCommerce products.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 16:19:13\";s:7:\"package\";s:15:\"Woo Slider Pack\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"45\";s:9:\"installed\";b:0;}i:492;a:27:{s:2:\"id\";s:3:\"548\";s:5:\"title\";s:25:\"Woo Feature Slider Static\";s:5:\"alias\";s:33:\"woocommerce-feature-slider-static\";s:3:\"zip\";s:37:\"woocommerce-feature-slider-static.zip\";s:3:\"uid\";s:32:\"2f29e8fd101c799480152a7911b33ca6\";s:3:\"img\";s:44:\"woocommerce-feature-slider-static/slide1.jpg\";s:7:\"preview\";s:155:\"https://sliderrevolution.com/templates/woocommerce-slider-pack/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=woocommerce-slider-pack\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:140:\"<span class=\"ttm_content\">A static content slider Please use the \"non-static\" version for WooCommerce.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 16:20:57\";s:7:\"package\";s:22:\"Woo Slider Pack Static\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"46\";s:9:\"installed\";b:0;}i:493;a:24:{s:2:\"id\";s:3:\"549\";s:5:\"title\";s:17:\"Woo Liquid Slider\";s:5:\"alias\";s:17:\"woo-liquid-slider\";s:3:\"zip\";s:21:\"woo-liquid-slider.zip\";s:3:\"uid\";s:32:\"9f455f73675a73dbefe820288e994f27\";s:3:\"img\";s:28:\"woo-liquid-slider/slide1.jpg\";s:7:\"preview\";s:162:\"https://www.sliderrevolution.com/templates/woocommerce-liquid-slider?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=woocommerce-liquid-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:236:\"<span class=\"ttm_content\">A WooCommerce slider using the BubbleMorph addon for an interesting liquid effect. Just set your categories and the slider will be populated with your WooCommerce products.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";i:2;s:11:\"woocommerce\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-01-19 16:23:03\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:80:\"How to Draw Attention to Your eCommerce Products with a Liquid Effect [Tutorial]\";s:9:\"guide_url\";s:92:\"https://www.sliderrevolution.com/tutorials/how-to-draw-attention-to-your-ecommerce-products/\";s:9:\"guide_img\";s:30:\"tutorial/woo-liquid-slider.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:494;a:24:{s:2:\"id\";s:3:\"550\";s:5:\"title\";s:24:\"Woo Liquid Slider Static\";s:5:\"alias\";s:32:\"woocommerce-liquid-slider-static\";s:3:\"zip\";s:36:\"woocommerce-liquid-slider-static.zip\";s:3:\"uid\";s:32:\"5848192fea46ffee95a91aa531848e19\";s:3:\"img\";s:43:\"woocommerce-liquid-slider-static/slide1.jpg\";s:7:\"preview\";s:162:\"https://www.sliderrevolution.com/templates/woocommerce-liquid-slider?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=woocommerce-liquid-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:203:\"<span class=\"ttm_content\">A static content slider using the BubbleMorph addon for an interesting liquid effect. For WooCommerce, please use the \"non-static\" version.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-01-19 16:24:35\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:80:\"How to Draw Attention to Your eCommerce Products with a Liquid Effect [Tutorial]\";s:9:\"guide_url\";s:92:\"https://www.sliderrevolution.com/tutorials/how-to-draw-attention-to-your-ecommerce-products/\";s:9:\"guide_img\";s:30:\"tutorial/woo-liquid-slider.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:495;a:27:{s:2:\"id\";s:3:\"551\";s:5:\"title\";s:15:\"Woo Slider Pack\";s:5:\"alias\";s:15:\"woo-slider-pack\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:15:\"woo-slider-pack\";s:3:\"img\";s:34:\"packages/woosliderpack_dynamic.jpg\";s:7:\"preview\";s:159:\"https://www.sliderrevolution.com/templates/woocommerce-slider-pack/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=woocommerce-slider-pack\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:181:\"<span class=\"ttm_content\">A basic WooCommerce slider. Just set your categories and the slider will be populated with your WooCommerce products.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:4:{i:0;s:8:\"carousel\";i:1;s:6:\"slider\";i:2;s:9:\"postbased\";i:3;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-20 09:34:45\";s:7:\"package\";s:15:\"Woo Slider Pack\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"45\";s:9:\"installed\";b:0;}i:496;a:27:{s:2:\"id\";s:3:\"552\";s:5:\"title\";s:22:\"Woo Slider Pack Static\";s:5:\"alias\";s:22:\"woo-slider-pack-static\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:22:\"woo-slider-pack-static\";s:3:\"img\";s:33:\"packages/woosliderpack_static.jpg\";s:7:\"preview\";s:159:\"https://www.sliderrevolution.com/templates/woocommerce-slider-pack/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=woocommerce-slider-pack\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:181:\"<span class=\"ttm_content\">A basic WooCommerce slider. Just set your categories and the slider will be populated with your WooCommerce products.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-20 09:39:21\";s:7:\"package\";s:22:\"Woo Slider Pack Static\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"46\";s:9:\"installed\";b:0;}i:497;a:24:{s:2:\"id\";s:3:\"553\";s:5:\"title\";s:24:\"Creative Hero Collection\";s:5:\"alias\";s:24:\"creative-hero-collection\";s:3:\"zip\";s:28:\"creative-hero-collection.zip\";s:3:\"uid\";s:32:\"e20126d93d081055e5ff3f6981b971fa\";s:3:\"img\";s:35:\"creative-hero-collection/slide1.jpg\";s:7:\"preview\";s:161:\"https://www.sliderrevolution.com/templates/creative-hero-collection/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=creative-hero-collection\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:245:\"<span class=\"ttm_content\">A fantastic intro presentation for almost any website. If you want to use a single slide as a hero, simply drag it to the first position and set the layout of the module to \"scene\".</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:348:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-02-23 10:22:47\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:78:\"How to Create an Engaging Hero Section Without Any Photos or Videos [Tutorial]\";s:9:\"guide_url\";s:111:\"https://www.sliderrevolution.com/tutorials/how-to-create-an-engaging-hero-section-without-any-photos-or-videos/\";s:9:\"guide_img\";s:37:\"tutorial/Creative-Hero-Collection.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:498;a:24:{s:2:\"id\";s:3:\"554\";s:5:\"title\";s:12:\"Photo Slider\";s:5:\"alias\";s:19:\"photographer-slider\";s:3:\"zip\";s:23:\"photographer-slider.zip\";s:3:\"uid\";s:32:\"e00104cff231e2aaeb149b3c63e78a5e\";s:3:\"img\";s:30:\"photographer-slider/slide1.jpg\";s:7:\"preview\";s:185:\"https://www.sliderrevolution.com/templates/photographer-and-videographer-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=photographer-and-videographer-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:169:\"<span class=\"ttm_content\">A great module for any photographer/videographer who wants to display their portfolio in an engaging way.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-02-23 10:25:31\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:77:\"How to Create a Customized Transition Effect for Your Hero Section [Tutorial]\";s:9:\"guide_url\";s:110:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-customized-transition-effect-for-your-hero-section/\";s:9:\"guide_img\";s:32:\"tutorial/photographer-slider.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:499;a:24:{s:2:\"id\";s:3:\"555\";s:5:\"title\";s:18:\"Real Estate Slider\";s:5:\"alias\";s:17:\"realestate-slider\";s:3:\"zip\";s:21:\"realestate-slider.zip\";s:3:\"uid\";s:32:\"596effabfef768f0371cba2b1fdd0c1d\";s:3:\"img\";s:28:\"realestate-slider/slide1.jpg\";s:7:\"preview\";s:167:\"https://www.sliderrevolution.com/templates/real-estate-showcase-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=real-estate-showcase-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:152:\"<span class=\"ttm_content\">Showcase your clients real estate offerings with this clean and convincing presentation.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-02-23 10:45:36\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:76:\"How to Create a Stunning Hero Slider for Your Real Estate Website [Tutorial]\";s:9:\"guide_url\";s:109:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-stunning-hero-slider-for-your-real-estate-website/\";s:9:\"guide_img\";s:30:\"tutorial/realestate-slider.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:500;a:24:{s:2:\"id\";s:3:\"556\";s:5:\"title\";s:19:\"Saas Product Slider\";s:5:\"alias\";s:19:\"saas-product-slider\";s:3:\"zip\";s:23:\"saas-product-slider.zip\";s:3:\"uid\";s:32:\"3cf7809058f383425c5409aa1204335f\";s:3:\"img\";s:30:\"saas-product-slider/slide1.jpg\";s:7:\"preview\";s:151:\"https://www.sliderrevolution.com/templates/saas-product-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=saas-product-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">Present your digital SaaS product with a modern design and stunning animations.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:349:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"},{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-02-23 10:49:44\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:501;a:27:{s:2:\"id\";s:3:\"557\";s:5:\"title\";s:27:\"Cinematic Wildlife Template\";s:5:\"alias\";s:27:\"cinematic-wildlife-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:27:\"cinematic-wildlife-template\";s:3:\"img\";s:39:\"packages/cinematic-wildlife-package.jpg\";s:7:\"preview\";s:163:\"https://www.sliderrevolution.com/templates/cinematic-wildlife-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=cinematic-wildlife-slider\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:185:\"<span class=\"ttm_content\">Easily create cinematic presentations with this photography-based slider, that features a convenient YouTube video popup.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-04-16 10:45:38\";s:7:\"package\";s:27:\"Cinematic Wildlife Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:79:\"How to Create a Beautiful Content Showcase for an Online Publication [Tutorial]\";s:9:\"guide_url\";s:112:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-beautiful-content-showcase-for-an-online-publication/\";s:9:\"guide_img\";s:31:\"tutorial/Cinematic-Wildlife.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"47\";s:9:\"installed\";b:0;}i:502;a:27:{s:2:\"id\";s:3:\"558\";s:5:\"title\";s:25:\"Cinematic Wildlife Slider\";s:5:\"alias\";s:25:\"cinematic-wildlife-slider\";s:3:\"zip\";s:35:\"packs/cinematic-wildlife-slider.zip\";s:3:\"uid\";s:32:\"a37b04e221a845d6d446f4d70e815b87\";s:3:\"img\";s:36:\"cinematic-wildlife-slider/slide1.jpg\";s:7:\"preview\";s:163:\"https://www.sliderrevolution.com/templates/cinematic-wildlife-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=cinematic-wildlife-slider\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:185:\"<span class=\"ttm_content\">Easily create cinematic presentations with this photography-based slider, that features a convenient YouTube video popup.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-04-16 10:47:01\";s:7:\"package\";s:27:\"Cinematic Wildlife Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:79:\"How to Create a Beautiful Content Showcase for an Online Publication [Tutorial]\";s:9:\"guide_url\";s:112:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-beautiful-content-showcase-for-an-online-publication/\";s:9:\"guide_img\";s:31:\"tutorial/Cinematic-Wildlife.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"47\";s:9:\"installed\";b:0;}i:503;a:27:{s:2:\"id\";s:3:\"559\";s:5:\"title\";s:24:\"Cinematic Wildlife Modal\";s:5:\"alias\";s:24:\"cinematic-wildlife-modal\";s:3:\"zip\";s:34:\"packs/cinematic-wildlife-modal.zip\";s:3:\"uid\";s:32:\"636a6885199f684ad743167ceea70dc4\";s:3:\"img\";s:35:\"cinematic-wildlife-modal/slide1.jpg\";s:7:\"preview\";s:163:\"https://www.sliderrevolution.com/templates/cinematic-wildlife-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=cinematic-wildlife-slider\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:185:\"<span class=\"ttm_content\">Easily create cinematic presentations with this photography-based slider, that features a convenient YouTube video popup.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-04-16 10:50:56\";s:7:\"package\";s:27:\"Cinematic Wildlife Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:79:\"How to Create a Beautiful Content Showcase for an Online Publication [Tutorial]\";s:9:\"guide_url\";s:112:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-beautiful-content-showcase-for-an-online-publication/\";s:9:\"guide_img\";s:31:\"tutorial/Cinematic-Wildlife.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"47\";s:9:\"installed\";b:0;}i:504;a:24:{s:2:\"id\";s:3:\"560\";s:5:\"title\";s:32:\"Gaming Stats Presentation Slider\";s:5:\"alias\";s:32:\"gaming-stats-presentation-slider\";s:3:\"zip\";s:36:\"gaming-stats-presentation-slider.zip\";s:3:\"uid\";s:32:\"988df5050f2a45a108ef32518a725bf8\";s:3:\"img\";s:43:\"gaming-stats-presentation-slider/slide1.jpg\";s:7:\"preview\";s:177:\"https://www.sliderrevolution.com/templates/charts-addon-presentation-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=charts-addon-presentation-slider\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:6:\"6.4.11\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:156:\"<span class=\"ttm_content\">Create interactive presentations and showcase statistics with unique and customizable charts</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:159:\"[{\"path\":\"revslider-charts-addon\\/revslider-charts-addon.php\",\"name\":\"Charts AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-04-29 09:50:58\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:71:\"How to Create a Digital Report Teaser with Slider Revolution [Tutorial]\";s:9:\"guide_url\";s:104:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-digital-report-teaser-with-slider-revolution/\";s:9:\"guide_img\";s:45:\"tutorial/gaming-stats-presentation-slider.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:505;a:24:{s:2:\"id\";s:3:\"561\";s:5:\"title\";s:31:\"Coffee Shop Split Screen Slider\";s:5:\"alias\";s:15:\"coffee-flavours\";s:3:\"zip\";s:19:\"coffee-flavours.zip\";s:3:\"uid\";s:32:\"63726447a6a614d8f53fbf6024fd3033\";s:3:\"img\";s:25:\"coffee-flavors/slide1.jpg\";s:7:\"preview\";s:175:\"https://www.sliderrevolution.com/templates/coffee-shop-split-screen-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=coffee-shop-split-screen-slider\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.5.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:249:\"<span class=\"ttm_content\">The animated elements and clean layout make this slider an eye-catcher for your coffee shop. With it\'s easy customizability, this template is perfect for showcasing any type of product!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-06-11 09:09:52\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:506;a:24:{s:2:\"id\";s:3:\"562\";s:5:\"title\";s:32:\"Modern Portfolio Showreel Slider\";s:5:\"alias\";s:15:\"showreel-slider\";s:3:\"zip\";s:19:\"showreel-slider.zip\";s:3:\"uid\";s:32:\"bced29a585e67153a1ed7608ddcdb69d\";s:3:\"img\";s:26:\"showreel-slider/slide1.jpg\";s:7:\"preview\";s:177:\"https://www.sliderrevolution.com/templates/modern-portfolio-showreel-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=modern-portfolio-showreel-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:216:\"<span class=\"ttm_content\">Showcase beautiful videos and photography with this clean looking slider with modern UI and effective typography. Perfect for any creative professional.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-06-11 09:14:43\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:66:\"How to Add a Beautiful Video Background to Your Website [Tutorial]\";s:9:\"guide_url\";s:108:\"https://www.sliderrevolution.com/tutorials/how-to-add-a-beautiful-video-background-to-your-website-tutorial/\";s:9:\"guide_img\";s:28:\"tutorial/showreel-slider.jpg\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:507;a:24:{s:2:\"id\";s:3:\"563\";s:5:\"title\";s:23:\"Visual Art Forms Slider\";s:5:\"alias\";s:16:\"visual-art-forms\";s:3:\"zip\";s:20:\"visual-art-forms.zip\";s:3:\"uid\";s:32:\"4d57a5abf20bc4a615fe30837ac3ce1a\";s:3:\"img\";s:27:\"visual-art-forms/slide1.jpg\";s:7:\"preview\";s:159:\"https://www.sliderrevolution.com/templates/visual-art-forms-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=visual-art-forms-slider\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.5.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:180:\"<span class=\"ttm_content\">Present just about anything with this highly flexible and modern looking slider, no matter what industry you are in.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-06-11 09:18:19\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:508;a:24:{s:2:\"id\";s:3:\"564\";s:5:\"title\";s:22:\"Background Effect Hero\";s:5:\"alias\";s:14:\"bg-effect-hero\";s:3:\"zip\";s:18:\"bg-effect-hero.zip\";s:3:\"uid\";s:32:\"55bb0fa5ac66ad84423fa704b701e1df\";s:3:\"img\";s:25:\"bg-effect-hero/slide1.jpg\";s:7:\"preview\";s:179:\"https://www.sliderrevolution.com/templates/background-effect-hero-collection/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=background-effect-hero-collection\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:224:\"<span class=\"ttm_content\">If you really want to stun your visitors with gorgeous gradients and dreamy transitions, <br />\r\nthis slider / hero module is exactly what you were looking for.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:703:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-08-09 10:45:50\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:60:\"How to Create a Unique Gradient Background Design [Tutorial]\";s:9:\"guide_url\";s:63:\"https://www.sliderrevolution.com/tutorials/gradient-background/\";s:9:\"guide_img\";s:27:\"tutorial/bg-effect-hero.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:509;a:24:{s:2:\"id\";s:3:\"565\";s:5:\"title\";s:26:\"Cyber Glitch Effect Slider\";s:5:\"alias\";s:9:\"cyberfunk\";s:3:\"zip\";s:13:\"cyberfunk.zip\";s:3:\"uid\";s:32:\"44fdc7e13074bdc46500972cd708c739\";s:3:\"img\";s:20:\"cyberfunk/slide1.jpg\";s:7:\"preview\";s:165:\"https://www.sliderrevolution.com/templates/cyber-glitch-effect-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=cyber-glitch-effect-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">Dive into a futuristic, neon, cyber world with this amazing slider template featuring <br />\r\nglitch effect transitions and a typewriter effect.<br />\r\nThe custom navigation skin can be customized easily!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:361:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-08-09 10:51:54\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:72:\"How to Create a Futuristic-looking Website for a Tech Company [Tutorial]\";s:9:\"guide_url\";s:105:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-futuristic-looking-website-for-a-tech-company/\";s:9:\"guide_img\";s:22:\"tutorial/cyberfunk.jpg\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:510;a:24:{s:2:\"id\";s:3:\"566\";s:5:\"title\";s:30:\"Motion Blur Portfolio Showcase\";s:5:\"alias\";s:21:\"motion-blur-portfolio\";s:3:\"zip\";s:25:\"motion-blur-portfolio.zip\";s:3:\"uid\";s:32:\"28086bed49cfb241c7d40f91cd64e970\";s:3:\"img\";s:32:\"motion-blur-portfolio/slide1.jpg\";s:7:\"preview\";s:173:\"https://www.sliderrevolution.com/templates/motion-blur-portfolio-showcase/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=motion-blur-portfolio-showcase\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.5.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:238:\"<span class=\"ttm_content\">This clean showcase slider with an optional video popup is using a fancy motion blur transition!<br />\r\nPacked with a logo and menu its ready to visualize your wildest ideas.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:356:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-08-09 10:56:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:75:\"A Different Way to Wow Shoppers with an eCommerce Product Slider [Tutorial]\";s:9:\"guide_url\";s:108:\"https://www.sliderrevolution.com/tutorials/a-different-way-to-wow-shoppers-with-an-ecommerce-product-slider/\";s:9:\"guide_img\";s:34:\"tutorial/motion-blur-portfolio.jpg\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:511;a:24:{s:2:\"id\";s:3:\"567\";s:5:\"title\";s:25:\"Portal Effect Hero Slider\";s:5:\"alias\";s:18:\"portal-effect-hero\";s:3:\"zip\";s:22:\"portal-effect-hero.zip\";s:3:\"uid\";s:32:\"87f5b64e44dc5b75bc1c7adbeb287ee9\";s:3:\"img\";s:29:\"portal-effect-hero/slide1.jpg\";s:7:\"preview\";s:163:\"https://www.sliderrevolution.com/templates/portal-effect-hero-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=portal-effect-hero-slider\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.5.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:282:\"<span class=\"ttm_content\">This slider module can function as an impressive landing page or a striking product presentation anywhere on your WordPress website.<br />\r\nThe design already includes elements like a logo, menu and social media icons.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:189:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-08-09 11:08:18\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:67:\"Demystifying the Slider Revolution Builder and Templates [Tutorial]\";s:9:\"guide_url\";s:109:\"https://www.sliderrevolution.com/tutorials/demystifying-the-slider-revolution-builder-and-templates-tutorial/\";s:9:\"guide_img\";s:31:\"tutorial/portal-effect-hero.jpg\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:512;a:24:{s:2:\"id\";s:3:\"568\";s:5:\"title\";s:22:\"Winery Timeline Slider\";s:5:\"alias\";s:15:\"winery-timeline\";s:3:\"zip\";s:19:\"winery-timeline.zip\";s:3:\"uid\";s:32:\"d2ccdaf0a5c73db21e8e8a3f6712e8bd\";s:3:\"img\";s:26:\"winery-timeline/slide1.jpg\";s:7:\"preview\";s:157:\"https://www.sliderrevolution.com/templates/winery-timeline-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=winery-timeline-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:247:\"<span class=\"ttm_content\">Tell your own story with this fabulous timeline slider.<br />\r\nLogo and social icon design elements are already included if you want to use this template as a standalone landing page!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:356:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-08-09 11:13:39\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:79:\"How to Create a Vertical Slider Timeline That Tells Your Brand Story [Tutorial]\";s:9:\"guide_url\";s:112:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-vertical-slider-timeline-that-tells-your-brand-story/\";s:9:\"guide_img\";s:28:\"tutorial/winery-timeline.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:513;a:27:{s:2:\"id\";s:3:\"569\";s:5:\"title\";s:25:\"Smart Living One Pager V1\";s:5:\"alias\";s:25:\"smart-living-one-pager-v1\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:25:\"smart-living-one-pager-v1\";s:3:\"img\";s:38:\"packages/Smart-Living-One-Pager-V1.jpg\";s:7:\"preview\";s:207:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v1/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=smart-living-one-page-template-for-wordpress-v1\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:189:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-09-07 14:33:48\";s:7:\"package\";s:25:\"Smart Living One Pager V1\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"48\";s:9:\"installed\";b:0;}i:514;a:27:{s:2:\"id\";s:3:\"570\";s:5:\"title\";s:25:\"Smart Living One Pager V2\";s:5:\"alias\";s:25:\"smart-living-one-pager-v2\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:25:\"smart-living-one-pager-v2\";s:3:\"img\";s:38:\"packages/Smart-Living-One-Pager-V2.jpg\";s:7:\"preview\";s:207:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v2/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=smart-living-one-page-template-for-wordpress-v2\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:189:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-09-07 14:38:21\";s:7:\"package\";s:25:\"Smart Living One Pager V2\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"49\";s:9:\"installed\";b:0;}i:515;a:27:{s:2:\"id\";s:3:\"571\";s:5:\"title\";s:25:\"Smart Living One Pager V3\";s:5:\"alias\";s:25:\"smart-living-one-pager-v3\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:25:\"smart-living-one-pager-v3\";s:3:\"img\";s:38:\"packages/Smart-Living-One-Pager-V3.jpg\";s:7:\"preview\";s:207:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v3/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=smart-living-one-page-template-for-wordpress-v3\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:189:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-09-07 14:39:44\";s:7:\"package\";s:25:\"Smart Living One Pager V3\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"50\";s:9:\"installed\";b:0;}i:516;a:27:{s:2:\"id\";s:3:\"572\";s:5:\"title\";s:6:\"Menu 1\";s:5:\"alias\";s:6:\"menu-1\";s:3:\"zip\";s:16:\"packs/menu-1.zip\";s:3:\"uid\";s:32:\"6e5038d711f2ee8326c79c3a9e06ded4\";s:3:\"img\";s:17:\"menu-1/slide1.jpg\";s:7:\"preview\";s:207:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v1/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=smart-living-one-page-template-for-wordpress-v1\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 14:41:12\";s:7:\"package\";s:25:\"Smart Living One Pager V1\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"48\";s:9:\"installed\";b:0;}i:517;a:27:{s:2:\"id\";s:3:\"573\";s:5:\"title\";s:6:\"Hero 1\";s:5:\"alias\";s:14:\"onepage-hero-1\";s:3:\"zip\";s:24:\"packs/onepage-hero-1.zip\";s:3:\"uid\";s:32:\"9f5fec6956bd2e1e1ecc553a8b7471b0\";s:3:\"img\";s:25:\"onepage-hero-1/slide1.jpg\";s:7:\"preview\";s:207:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v1/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=smart-living-one-page-template-for-wordpress-v1\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:189:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-09-07 14:48:41\";s:7:\"package\";s:25:\"Smart Living One Pager V1\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"48\";s:9:\"installed\";b:0;}i:518;a:27:{s:2:\"id\";s:3:\"574\";s:5:\"title\";s:7:\"About 1\";s:5:\"alias\";s:6:\"about1\";s:3:\"zip\";s:16:\"packs/about1.zip\";s:3:\"uid\";s:32:\"fc4962093f61124101c05ceb506fa5d2\";s:3:\"img\";s:17:\"about1/slide1.jpg\";s:7:\"preview\";s:207:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v1/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=smart-living-one-page-template-for-wordpress-v1\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 14:50:54\";s:7:\"package\";s:25:\"Smart Living One Pager V1\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"48\";s:9:\"installed\";b:0;}i:519;a:27:{s:2:\"id\";s:3:\"575\";s:5:\"title\";s:10:\"Services 1\";s:5:\"alias\";s:9:\"services1\";s:3:\"zip\";s:19:\"packs/services1.zip\";s:3:\"uid\";s:32:\"08f72a81aeb9afdaa57f544e4331a6da\";s:3:\"img\";s:20:\"services1/slide1.jpg\";s:7:\"preview\";s:207:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v1/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=smart-living-one-page-template-for-wordpress-v1\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 14:52:41\";s:7:\"package\";s:25:\"Smart Living One Pager V1\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"48\";s:9:\"installed\";b:0;}i:520;a:27:{s:2:\"id\";s:3:\"576\";s:5:\"title\";s:10:\"Projects 1\";s:5:\"alias\";s:9:\"projects1\";s:3:\"zip\";s:19:\"packs/projects1.zip\";s:3:\"uid\";s:32:\"11ff60e82fcf47a6a2c6bdce3cc1d8f2\";s:3:\"img\";s:20:\"projects1/slide1.jpg\";s:7:\"preview\";s:207:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v1/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=smart-living-one-page-template-for-wordpress-v1\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:01:48\";s:7:\"package\";s:25:\"Smart Living One Pager V1\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"48\";s:9:\"installed\";b:0;}i:521;a:27:{s:2:\"id\";s:3:\"577\";s:5:\"title\";s:8:\"Footer 1\";s:5:\"alias\";s:8:\"footer-1\";s:3:\"zip\";s:18:\"packs/footer-1.zip\";s:3:\"uid\";s:32:\"947fac99689a985c7f0f7dfec4311f6b\";s:3:\"img\";s:19:\"footer-1/slide1.jpg\";s:7:\"preview\";s:207:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v1/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=smart-living-one-page-template-for-wordpress-v1\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:05:00\";s:7:\"package\";s:25:\"Smart Living One Pager V1\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"48\";s:9:\"installed\";b:0;}i:522;a:28:{s:2:\"id\";s:3:\"578\";s:5:\"title\";s:24:\"Explainer Block 1 Part 1\";s:5:\"alias\";s:23:\"explainer-block-1-part1\";s:3:\"zip\";s:33:\"packs/explainer-block-1-part1.zip\";s:3:\"uid\";s:32:\"731980bef0ea06263d05b286b5a75dfe\";s:3:\"img\";s:34:\"explainer-block-1-part1/slide1.jpg\";s:7:\"preview\";s:207:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v1/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=smart-living-one-page-template-for-wordpress-v1\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:126:\"<span class=\"ttm_content\">An elegant slider for your website. Flexible and customizable.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:06:07\";s:7:\"package\";s:25:\"Smart Living One Pager V1\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"48\";s:9:\"installed\";b:0;}i:523;a:28:{s:2:\"id\";s:3:\"579\";s:5:\"title\";s:24:\"Explainer Block 1 Part 2\";s:5:\"alias\";s:23:\"explainer-block-1-part2\";s:3:\"zip\";s:33:\"packs/explainer-block-1-part2.zip\";s:3:\"uid\";s:32:\"ded730f13551f78b9a87b159b72d8ce8\";s:3:\"img\";s:34:\"explainer-block-1-part2/slide1.jpg\";s:7:\"preview\";s:207:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v1/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=smart-living-one-page-template-for-wordpress-v1\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:126:\"<span class=\"ttm_content\">An elegant slider for your website. Flexible and customizable.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:07:26\";s:7:\"package\";s:25:\"Smart Living One Pager V1\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"48\";s:9:\"installed\";b:0;}i:524;a:27:{s:2:\"id\";s:3:\"580\";s:5:\"title\";s:16:\"Projects Modal 1\";s:5:\"alias\";s:16:\"projects-modal-1\";s:3:\"zip\";s:26:\"packs/projects-modal-1.zip\";s:3:\"uid\";s:32:\"b17af2f4e21786711a2ce4ac0c4436ad\";s:3:\"img\";s:27:\"projects-modal-1/slide1.jpg\";s:7:\"preview\";s:207:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v1/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=smart-living-one-page-template-for-wordpress-v1\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:08:26\";s:7:\"package\";s:25:\"Smart Living One Pager V1\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"48\";s:9:\"installed\";b:0;}i:525;a:27:{s:2:\"id\";s:3:\"581\";s:5:\"title\";s:6:\"Menu 2\";s:5:\"alias\";s:6:\"menu-2\";s:3:\"zip\";s:16:\"packs/menu-2.zip\";s:3:\"uid\";s:32:\"a8d103f753ee50d4f81aa4100df8b7f9\";s:3:\"img\";s:17:\"menu-2/slide1.jpg\";s:7:\"preview\";s:207:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v2/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=smart-living-one-page-template-for-wordpress-v2\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:20:20\";s:7:\"package\";s:25:\"Smart Living One Pager V2\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"49\";s:9:\"installed\";b:0;}i:526;a:27:{s:2:\"id\";s:3:\"582\";s:5:\"title\";s:6:\"Hero 2\";s:5:\"alias\";s:6:\"hero-2\";s:3:\"zip\";s:16:\"packs/hero-2.zip\";s:3:\"uid\";s:32:\"7e56900f8c4b6e12435b70e141accaa8\";s:3:\"img\";s:17:\"hero-2/slide1.jpg\";s:7:\"preview\";s:207:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v2/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=smart-living-one-page-template-for-wordpress-v2\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:189:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-09-07 15:27:59\";s:7:\"package\";s:25:\"Smart Living One Pager V2\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"49\";s:9:\"installed\";b:0;}i:527;a:27:{s:2:\"id\";s:3:\"583\";s:5:\"title\";s:10:\"Services 2\";s:5:\"alias\";s:10:\"services-2\";s:3:\"zip\";s:20:\"packs/services-2.zip\";s:3:\"uid\";s:32:\"da2d588b291a7754096ac77746ba1da5\";s:3:\"img\";s:34:\"services-2/services2-thumbnail.jpg\";s:7:\"preview\";s:207:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v2/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=smart-living-one-page-template-for-wordpress-v2\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:29:09\";s:7:\"package\";s:25:\"Smart Living One Pager V2\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"49\";s:9:\"installed\";b:0;}i:528;a:27:{s:2:\"id\";s:3:\"584\";s:5:\"title\";s:7:\"About 2\";s:5:\"alias\";s:7:\"about-2\";s:3:\"zip\";s:17:\"packs/about-2.zip\";s:3:\"uid\";s:32:\"8e9e84d1aec08de6e099473683bf0e57\";s:3:\"img\";s:18:\"about-2/slide1.jpg\";s:7:\"preview\";s:207:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v2/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=smart-living-one-page-template-for-wordpress-v2\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:30:15\";s:7:\"package\";s:25:\"Smart Living One Pager V2\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"49\";s:9:\"installed\";b:0;}i:529;a:27:{s:2:\"id\";s:3:\"585\";s:5:\"title\";s:10:\"Projects 2\";s:5:\"alias\";s:10:\"projects-2\";s:3:\"zip\";s:20:\"packs/projects-2.zip\";s:3:\"uid\";s:32:\"99bc6ca75f6d5e018701aef5f5b22b27\";s:3:\"img\";s:21:\"projects-2/slide1.jpg\";s:7:\"preview\";s:207:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v2/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=smart-living-one-page-template-for-wordpress-v2\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:32:06\";s:7:\"package\";s:25:\"Smart Living One Pager V2\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"49\";s:9:\"installed\";b:0;}i:530;a:27:{s:2:\"id\";s:3:\"586\";s:5:\"title\";s:8:\"Footer 2\";s:5:\"alias\";s:7:\"footer2\";s:3:\"zip\";s:17:\"packs/footer2.zip\";s:3:\"uid\";s:32:\"99df496d2fd9e897a2debb66958cb610\";s:3:\"img\";s:18:\"footer2/slide1.jpg\";s:7:\"preview\";s:207:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v2/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=smart-living-one-page-template-for-wordpress-v2\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:34:09\";s:7:\"package\";s:25:\"Smart Living One Pager V2\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"49\";s:9:\"installed\";b:0;}i:531;a:28:{s:2:\"id\";s:3:\"587\";s:5:\"title\";s:24:\"Explainer Block 2 Part 1\";s:5:\"alias\";s:23:\"explainer-block-2-part1\";s:3:\"zip\";s:33:\"packs/explainer-block-2-part1.zip\";s:3:\"uid\";s:32:\"aee4d41e9cf5f91ad69bfbe96d1dc1b8\";s:3:\"img\";s:34:\"explainer-block-2-part1/slide1.jpg\";s:7:\"preview\";s:207:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v2/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=smart-living-one-page-template-for-wordpress-v2\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:35:48\";s:7:\"package\";s:25:\"Smart Living One Pager V2\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"49\";s:9:\"installed\";b:0;}i:532;a:27:{s:2:\"id\";s:3:\"588\";s:5:\"title\";s:24:\"Explainer Block 2 Part 2\";s:5:\"alias\";s:23:\"explainer-block-2-part2\";s:3:\"zip\";s:33:\"packs/explainer-block-2-part2.zip\";s:3:\"uid\";s:32:\"b12ac82484c5d2609994978f95026057\";s:3:\"img\";s:34:\"explainer-block-2-part2/slide1.jpg\";s:7:\"preview\";s:207:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v2/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=smart-living-one-page-template-for-wordpress-v2\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:37:05\";s:7:\"package\";s:25:\"Smart Living One Pager V2\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"49\";s:9:\"installed\";b:0;}i:533;a:27:{s:2:\"id\";s:3:\"589\";s:5:\"title\";s:16:\"Projects Modal 2\";s:5:\"alias\";s:16:\"projects-modal-2\";s:3:\"zip\";s:26:\"packs/projects-modal-2.zip\";s:3:\"uid\";s:32:\"ac164d7043a8958ae2931e4be54bf56e\";s:3:\"img\";s:27:\"projects-modal-2/slide1.jpg\";s:7:\"preview\";s:207:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v2/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=smart-living-one-page-template-for-wordpress-v2\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:38:22\";s:7:\"package\";s:25:\"Smart Living One Pager V2\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"49\";s:9:\"installed\";b:0;}i:534;a:27:{s:2:\"id\";s:3:\"590\";s:5:\"title\";s:6:\"Menu 3\";s:5:\"alias\";s:6:\"menu-3\";s:3:\"zip\";s:16:\"packs/menu-3.zip\";s:3:\"uid\";s:32:\"7300529d564642c76e61890cf0ef57cf\";s:3:\"img\";s:17:\"menu-3/slide1.jpg\";s:7:\"preview\";s:207:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v3/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=smart-living-one-page-template-for-wordpress-v3\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:42:03\";s:7:\"package\";s:25:\"Smart Living One Pager V3\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"50\";s:9:\"installed\";b:0;}i:535;a:27:{s:2:\"id\";s:3:\"591\";s:5:\"title\";s:6:\"Hero 3\";s:5:\"alias\";s:6:\"hero-3\";s:3:\"zip\";s:16:\"packs/hero-3.zip\";s:3:\"uid\";s:32:\"08db05794abf4e6c10788cbd423f92b2\";s:3:\"img\";s:17:\"hero-3/slide1.jpg\";s:7:\"preview\";s:207:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v3/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=smart-living-one-page-template-for-wordpress-v3\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:46:06\";s:7:\"package\";s:25:\"Smart Living One Pager V3\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"50\";s:9:\"installed\";b:0;}i:536;a:27:{s:2:\"id\";s:3:\"592\";s:5:\"title\";s:7:\"About 3\";s:5:\"alias\";s:7:\"about-3\";s:3:\"zip\";s:17:\"packs/about-3.zip\";s:3:\"uid\";s:32:\"dac01fc9b9d664f271e1ea6a1bbb850c\";s:3:\"img\";s:18:\"about-3/slide1.jpg\";s:7:\"preview\";s:207:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v3/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=smart-living-one-page-template-for-wordpress-v3\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:47:44\";s:7:\"package\";s:25:\"Smart Living One Pager V3\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"50\";s:9:\"installed\";b:0;}i:537;a:27:{s:2:\"id\";s:3:\"593\";s:5:\"title\";s:10:\"Services 3\";s:5:\"alias\";s:10:\"services-3\";s:3:\"zip\";s:20:\"packs/services-3.zip\";s:3:\"uid\";s:32:\"4bad1c4a765cef7d93d3c7e2a0e76b83\";s:3:\"img\";s:21:\"services-3/slide1.jpg\";s:7:\"preview\";s:207:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v3/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=smart-living-one-page-template-for-wordpress-v3\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:50:03\";s:7:\"package\";s:25:\"Smart Living One Pager V3\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"50\";s:9:\"installed\";b:0;}i:538;a:27:{s:2:\"id\";s:3:\"594\";s:5:\"title\";s:10:\"Projects 3\";s:5:\"alias\";s:10:\"projects-3\";s:3:\"zip\";s:20:\"packs/projects-3.zip\";s:3:\"uid\";s:32:\"e3337a84122e580679474dea8d7bf37c\";s:3:\"img\";s:21:\"projects-3/slide1.jpg\";s:7:\"preview\";s:207:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v3/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=smart-living-one-page-template-for-wordpress-v3\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:51:31\";s:7:\"package\";s:25:\"Smart Living One Pager V3\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"50\";s:9:\"installed\";b:0;}i:539;a:27:{s:2:\"id\";s:3:\"595\";s:5:\"title\";s:8:\"Footer 3\";s:5:\"alias\";s:8:\"footer-3\";s:3:\"zip\";s:18:\"packs/footer-3.zip\";s:3:\"uid\";s:32:\"524f4445a5565bf3ef1dcd7b2f0228cc\";s:3:\"img\";s:19:\"footer-3/slide1.jpg\";s:7:\"preview\";s:207:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v3/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=smart-living-one-page-template-for-wordpress-v3\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:53:03\";s:7:\"package\";s:25:\"Smart Living One Pager V3\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"50\";s:9:\"installed\";b:0;}i:540;a:27:{s:2:\"id\";s:3:\"596\";s:5:\"title\";s:24:\"Explainer Block 3 Part 1\";s:5:\"alias\";s:23:\"explainer-block-3-part1\";s:3:\"zip\";s:33:\"packs/explainer-block-3-part1.zip\";s:3:\"uid\";s:32:\"b1469a955fecb4e1d645a604804716de\";s:3:\"img\";s:34:\"explainer-block-3-part1/slide1.jpg\";s:7:\"preview\";s:207:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v3/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=smart-living-one-page-template-for-wordpress-v3\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:54:20\";s:7:\"package\";s:25:\"Smart Living One Pager V3\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"50\";s:9:\"installed\";b:0;}i:541;a:27:{s:2:\"id\";s:3:\"597\";s:5:\"title\";s:24:\"Explainer Block 3 Part 2\";s:5:\"alias\";s:23:\"explainer-block-3-part2\";s:3:\"zip\";s:33:\"packs/explainer-block-3-part2.zip\";s:3:\"uid\";s:32:\"3faa6f1dc248ef2ba3d50cc60db557b1\";s:3:\"img\";s:34:\"explainer-block-3-part2/slide1.jpg\";s:7:\"preview\";s:207:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v3/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=smart-living-one-page-template-for-wordpress-v3\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:55:33\";s:7:\"package\";s:25:\"Smart Living One Pager V3\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"50\";s:9:\"installed\";b:0;}i:542;a:27:{s:2:\"id\";s:3:\"598\";s:5:\"title\";s:16:\"Projects Modal 3\";s:5:\"alias\";s:16:\"projects-modal-3\";s:3:\"zip\";s:26:\"packs/projects-modal-3.zip\";s:3:\"uid\";s:32:\"b22bb57c30e75bf7d7ba7d240a21b3fe\";s:3:\"img\";s:27:\"projects-modal-3/slide1.jpg\";s:7:\"preview\";s:207:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v3/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=smart-living-one-page-template-for-wordpress-v3\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:57:05\";s:7:\"package\";s:25:\"Smart Living One Pager V3\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"50\";s:9:\"installed\";b:0;}i:543;a:24:{s:2:\"id\";s:3:\"599\";s:5:\"title\";s:25:\"Urban Street Skate Slider\";s:5:\"alias\";s:25:\"urban-street-skate-slider\";s:3:\"zip\";s:29:\"urban-street-skate-slider.zip\";s:3:\"uid\";s:32:\"14b18e98ac51aa922a264b74518d6f25\";s:3:\"img\";s:36:\"urban-street-skate-slider/slide1.jpg\";s:7:\"preview\";s:191:\"https://www.sliderrevolution.com/templates/urban-street-skate-slider-for-wordpress/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=urban-street-skate-slider-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:233:\"<span class=\"ttm_content\">Create catchy presentations with sleek transitions, using this urban-themed slider. A template that\'s perfectly suitable for showcasing products and marketing campaigns!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:356:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-09-14 18:54:30\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:73:\"How to Create a Modern Slider Design for Your Medical Practice [Tutorial]\";s:9:\"guide_url\";s:106:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-modern-slider-design-for-your-medical-practice/\";s:9:\"guide_img\";s:38:\"tutorial/urban-street-skate-slider.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:544;a:24:{s:2:\"id\";s:3:\"600\";s:5:\"title\";s:34:\"Fast Food Burger Restaurant Slider\";s:5:\"alias\";s:13:\"yummy-burgers\";s:3:\"zip\";s:17:\"yummy-burgers.zip\";s:3:\"uid\";s:32:\"3de3520af809748281f3aaa16d8c2222\";s:3:\"img\";s:24:\"yummy-burgers/slide1.jpg\";s:7:\"preview\";s:181:\"https://www.sliderrevolution.com/templates/fast-food-burger-restaurant-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=fast-food-burger-restaurant-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:242:\"<span class=\"ttm_content\">Make your clients feel hungry with this tasty looking slider, featuring jaw dropping animations and smooth interactions! Easily customizable for showcasing food related products.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-10-11 12:47:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:83:\"How to Creatively Display Ingredients and Nutrition Info on Your Website [Tutorial]\";s:9:\"guide_url\";s:116:\"https://www.sliderrevolution.com/tutorials/how-to-creatively-display-ingredients-and-nutrition-info-on-your-website/\";s:9:\"guide_img\";s:26:\"tutorial/yummy-burgers.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:545;a:27:{s:2:\"id\";s:3:\"601\";s:5:\"title\";s:37:\"Tattoo Event Website Template Package\";s:5:\"alias\";s:37:\"tattoo-event-website-template-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:37:\"tattoo-event-website-template-package\";s:3:\"img\";s:41:\"packages/tattoo_event_website_package.jpg\";s:7:\"preview\";s:171:\"https://www.sliderrevolution.com/templates/tattoo-event-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=tattoo-event-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:330:\"<span class=\"ttm_content\">This modern, typography driven, one-page website template is the perfect event landing page. Whether you are looking for a wordpress event website template or a conference website template, Slider Revolution gives you a competitive advantage in event website design.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:7:\"website\";}s:14:\"plugin_require\";s:356:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-10-12 14:37:06\";s:7:\"package\";s:29:\"Tattoo Event Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:77:\"How to Create a Dark Website Design with a Surprising Color Reveal [Tutorial]\";s:9:\"guide_url\";s:110:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-dark-website-design-with-a-surprising-color-reveal/\";s:9:\"guide_img\";s:33:\"tutorial/Tattoo-Event-Website.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"51\";s:9:\"installed\";b:0;}i:546;a:27:{s:2:\"id\";s:3:\"602\";s:5:\"title\";s:24:\"Tattoo Event Hero Slider\";s:5:\"alias\";s:24:\"tattoo-event-hero-slider\";s:3:\"zip\";s:34:\"packs/tattoo-event-hero-slider.zip\";s:3:\"uid\";s:32:\"3a4eb0f2f1de6b9a644d626c4472208b\";s:3:\"img\";s:35:\"tattoo-event-hero-slider/slide1.jpg\";s:7:\"preview\";s:171:\"https://www.sliderrevolution.com/templates/tattoo-event-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=tattoo-event-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:330:\"<span class=\"ttm_content\">This modern, typography driven, one-page website template is the perfect event landing page. Whether you are looking for a wordpress event website template or a conference website template, Slider Revolution gives you a competitive advantage in event website design.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:7:\"website\";}s:14:\"plugin_require\";s:189:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-10-13 11:11:21\";s:7:\"package\";s:29:\"Tattoo Event Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:77:\"How to Create a Dark Website Design with a Surprising Color Reveal [Tutorial]\";s:9:\"guide_url\";s:110:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-dark-website-design-with-a-surprising-color-reveal/\";s:9:\"guide_img\";s:33:\"tutorial/Tattoo-Event-Website.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"51\";s:9:\"installed\";b:0;}i:547;a:27:{s:2:\"id\";s:3:\"603\";s:5:\"title\";s:18:\"Tattoo Event About\";s:5:\"alias\";s:18:\"tattoo-event-about\";s:3:\"zip\";s:28:\"packs/tattoo-event-about.zip\";s:3:\"uid\";s:32:\"ae8aaf2b1aeb84036c35ac3d4a178ed6\";s:3:\"img\";s:29:\"tattoo-event-about/slide1.jpg\";s:7:\"preview\";s:171:\"https://www.sliderrevolution.com/templates/tattoo-event-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=tattoo-event-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:330:\"<span class=\"ttm_content\">This modern, typography driven, one-page website template is the perfect event landing page. Whether you are looking for a wordpress event website template or a conference website template, Slider Revolution gives you a competitive advantage in event website design.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-10-13 11:14:35\";s:7:\"package\";s:29:\"Tattoo Event Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:77:\"How to Create a Dark Website Design with a Surprising Color Reveal [Tutorial]\";s:9:\"guide_url\";s:110:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-dark-website-design-with-a-surprising-color-reveal/\";s:9:\"guide_img\";s:33:\"tutorial/Tattoo-Event-Website.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"51\";s:9:\"installed\";b:0;}i:548;a:27:{s:2:\"id\";s:3:\"604\";s:5:\"title\";s:20:\"Tattoo Event Artists\";s:5:\"alias\";s:20:\"tattoo-event-artists\";s:3:\"zip\";s:30:\"packs/tattoo-event-artists.zip\";s:3:\"uid\";s:32:\"e11b6508214396963c856afc1b604e58\";s:3:\"img\";s:31:\"tattoo-event-artists/slide1.jpg\";s:7:\"preview\";s:171:\"https://www.sliderrevolution.com/templates/tattoo-event-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=tattoo-event-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:330:\"<span class=\"ttm_content\">This modern, typography driven, one-page website template is the perfect event landing page. Whether you are looking for a wordpress event website template or a conference website template, Slider Revolution gives you a competitive advantage in event website design.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:3:{i:0;s:8:\"carousel\";i:1;s:6:\"slider\";i:2;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-10-13 11:16:36\";s:7:\"package\";s:29:\"Tattoo Event Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:77:\"How to Create a Dark Website Design with a Surprising Color Reveal [Tutorial]\";s:9:\"guide_url\";s:110:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-dark-website-design-with-a-surprising-color-reveal/\";s:9:\"guide_img\";s:33:\"tutorial/Tattoo-Event-Website.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"51\";s:9:\"installed\";b:0;}i:549;a:27:{s:2:\"id\";s:3:\"605\";s:5:\"title\";s:21:\"Tattoo Event Schedule\";s:5:\"alias\";s:21:\"tattoo-event-schedule\";s:3:\"zip\";s:31:\"packs/tattoo-event-schedule.zip\";s:3:\"uid\";s:32:\"73be4b953a719fc9abfadc447e88b906\";s:3:\"img\";s:32:\"tattoo-event-schedule/slide1.jpg\";s:7:\"preview\";s:171:\"https://www.sliderrevolution.com/templates/tattoo-event-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=tattoo-event-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:330:\"<span class=\"ttm_content\">This modern, typography driven, one-page website template is the perfect event landing page. Whether you are looking for a wordpress event website template or a conference website template, Slider Revolution gives you a competitive advantage in event website design.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:356:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-10-13 11:19:17\";s:7:\"package\";s:29:\"Tattoo Event Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:77:\"How to Create a Dark Website Design with a Surprising Color Reveal [Tutorial]\";s:9:\"guide_url\";s:110:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-dark-website-design-with-a-surprising-color-reveal/\";s:9:\"guide_img\";s:33:\"tutorial/Tattoo-Event-Website.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"51\";s:9:\"installed\";b:0;}i:550;a:27:{s:2:\"id\";s:3:\"606\";s:5:\"title\";s:17:\"Tattoo Event News\";s:5:\"alias\";s:17:\"tattoo-event-news\";s:3:\"zip\";s:27:\"packs/tattoo-event-news.zip\";s:3:\"uid\";s:32:\"80eafaaaa2f1844cac7c5c1efb0912d1\";s:3:\"img\";s:28:\"tattoo-event-news/slide1.jpg\";s:7:\"preview\";s:171:\"https://www.sliderrevolution.com/templates/tattoo-event-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=tattoo-event-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:330:\"<span class=\"ttm_content\">This modern, typography driven, one-page website template is the perfect event landing page. Whether you are looking for a wordpress event website template or a conference website template, Slider Revolution gives you a competitive advantage in event website design.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-10-13 11:21:56\";s:7:\"package\";s:29:\"Tattoo Event Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:77:\"How to Create a Dark Website Design with a Surprising Color Reveal [Tutorial]\";s:9:\"guide_url\";s:110:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-dark-website-design-with-a-surprising-color-reveal/\";s:9:\"guide_img\";s:33:\"tutorial/Tattoo-Event-Website.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"51\";s:9:\"installed\";b:0;}i:551;a:27:{s:2:\"id\";s:3:\"607\";s:5:\"title\";s:19:\"Tattoo Event Footer\";s:5:\"alias\";s:19:\"tattoo-event-footer\";s:3:\"zip\";s:29:\"packs/tattoo-event-footer.zip\";s:3:\"uid\";s:32:\"0c16f7290794f2e26566c8a8ca8f6493\";s:3:\"img\";s:30:\"tattoo-event-footer/slide1.jpg\";s:7:\"preview\";s:171:\"https://www.sliderrevolution.com/templates/tattoo-event-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=tattoo-event-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:330:\"<span class=\"ttm_content\">This modern, typography driven, one-page website template is the perfect event landing page. Whether you are looking for a wordpress event website template or a conference website template, Slider Revolution gives you a competitive advantage in event website design.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-10-13 11:23:18\";s:7:\"package\";s:29:\"Tattoo Event Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:77:\"How to Create a Dark Website Design with a Surprising Color Reveal [Tutorial]\";s:9:\"guide_url\";s:110:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-dark-website-design-with-a-surprising-color-reveal/\";s:9:\"guide_img\";s:33:\"tutorial/Tattoo-Event-Website.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"51\";s:9:\"installed\";b:0;}i:552;a:27:{s:2:\"id\";s:3:\"608\";s:5:\"title\";s:24:\"Startup Website Template\";s:5:\"alias\";s:24:\"startup-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:24:\"startup-website-template\";s:3:\"img\";s:37:\"packages/startup-website-template.jpg\";s:7:\"preview\";s:161:\"https://www.sliderrevolution.com/templates/startup-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=startup-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:399:\"<span class=\"ttm_content\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\r\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:7:\"website\";}s:14:\"plugin_require\";s:179:\"[{\"path\":\"revslider-polyfold-addon\\/revslider-polyfold-addon.php\",\"name\":\"Polyfold Scroll Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-11-03 09:29:34\";s:7:\"package\";s:24:\"Startup Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:63:\"A Fun Way to Design the CTA Section with Two Buttons [Tutorial]\";s:9:\"guide_url\";s:96:\"https://www.sliderrevolution.com/tutorials/a-fun-way-to-design-the-cta-section-with-two-buttons/\";s:9:\"guide_img\";s:37:\"tutorial/startup-website-template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"52\";s:9:\"installed\";b:0;}i:553;a:27:{s:2:\"id\";s:3:\"609\";s:5:\"title\";s:12:\"Startup Menu\";s:5:\"alias\";s:12:\"startup-menu\";s:3:\"zip\";s:22:\"packs/startup-menu.zip\";s:3:\"uid\";s:32:\"10b7853c05d47a99e61a68ec7ef0a0ea\";s:3:\"img\";s:23:\"startup-menu/slide1.jpg\";s:7:\"preview\";s:161:\"https://www.sliderrevolution.com/templates/startup-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=startup-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:399:\"<span class=\"ttm_content\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\r\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-11-03 09:32:41\";s:7:\"package\";s:24:\"Startup Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:63:\"A Fun Way to Design the CTA Section with Two Buttons [Tutorial]\";s:9:\"guide_url\";s:96:\"https://www.sliderrevolution.com/tutorials/a-fun-way-to-design-the-cta-section-with-two-buttons/\";s:9:\"guide_img\";s:37:\"tutorial/startup-website-template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"52\";s:9:\"installed\";b:0;}i:554;a:27:{s:2:\"id\";s:3:\"610\";s:5:\"title\";s:12:\"Startup Hero\";s:5:\"alias\";s:12:\"startup-hero\";s:3:\"zip\";s:22:\"packs/startup-hero.zip\";s:3:\"uid\";s:32:\"7a41e68bac8bc7f937b7eb957e01eb11\";s:3:\"img\";s:23:\"startup-hero/slide1.jpg\";s:7:\"preview\";s:161:\"https://www.sliderrevolution.com/templates/startup-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=startup-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:399:\"<span class=\"ttm_content\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\r\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:179:\"[{\"path\":\"revslider-polyfold-addon\\/revslider-polyfold-addon.php\",\"name\":\"Polyfold Scroll Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-11-03 09:34:41\";s:7:\"package\";s:24:\"Startup Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:12:\"zindex=\"300\"\";s:11:\"guide_title\";s:63:\"A Fun Way to Design the CTA Section with Two Buttons [Tutorial]\";s:9:\"guide_url\";s:96:\"https://www.sliderrevolution.com/tutorials/a-fun-way-to-design-the-cta-section-with-two-buttons/\";s:9:\"guide_img\";s:37:\"tutorial/startup-website-template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"52\";s:9:\"installed\";b:0;}i:555;a:27:{s:2:\"id\";s:3:\"611\";s:5:\"title\";s:13:\"Startup About\";s:5:\"alias\";s:13:\"startup-about\";s:3:\"zip\";s:23:\"packs/startup-about.zip\";s:3:\"uid\";s:32:\"22a816ba986476a36fef3887ff4d1ea1\";s:3:\"img\";s:24:\"startup-about/slide1.jpg\";s:7:\"preview\";s:161:\"https://www.sliderrevolution.com/templates/startup-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=startup-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:399:\"<span class=\"ttm_content\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\r\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:179:\"[{\"path\":\"revslider-polyfold-addon\\/revslider-polyfold-addon.php\",\"name\":\"Polyfold Scroll Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-11-03 09:36:55\";s:7:\"package\";s:24:\"Startup Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:10:\"zindex=\"0\"\";s:11:\"guide_title\";s:63:\"A Fun Way to Design the CTA Section with Two Buttons [Tutorial]\";s:9:\"guide_url\";s:96:\"https://www.sliderrevolution.com/tutorials/a-fun-way-to-design-the-cta-section-with-two-buttons/\";s:9:\"guide_img\";s:37:\"tutorial/startup-website-template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"52\";s:9:\"installed\";b:0;}i:556;a:27:{s:2:\"id\";s:3:\"612\";s:5:\"title\";s:18:\"Startup Features 1\";s:5:\"alias\";s:18:\"startup-features-1\";s:3:\"zip\";s:28:\"packs/startup-features-1.zip\";s:3:\"uid\";s:32:\"4b0b7b8773ba30bdc58b862442155faa\";s:3:\"img\";s:29:\"startup-features-1/slide1.jpg\";s:7:\"preview\";s:161:\"https://www.sliderrevolution.com/templates/startup-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=startup-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:399:\"<span class=\"ttm_content\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\r\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:179:\"[{\"path\":\"revslider-polyfold-addon\\/revslider-polyfold-addon.php\",\"name\":\"Polyfold Scroll Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-11-03 09:39:11\";s:7:\"package\";s:24:\"Startup Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:12:\"zindex=\"300\"\";s:11:\"guide_title\";s:63:\"A Fun Way to Design the CTA Section with Two Buttons [Tutorial]\";s:9:\"guide_url\";s:96:\"https://www.sliderrevolution.com/tutorials/a-fun-way-to-design-the-cta-section-with-two-buttons/\";s:9:\"guide_img\";s:37:\"tutorial/startup-website-template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"52\";s:9:\"installed\";b:0;}i:557;a:27:{s:2:\"id\";s:3:\"613\";s:5:\"title\";s:18:\"Startup Features 2\";s:5:\"alias\";s:18:\"startup-features-2\";s:3:\"zip\";s:28:\"packs/startup-features-2.zip\";s:3:\"uid\";s:32:\"7a686556ca8c4355fea931b3e946a3d0\";s:3:\"img\";s:29:\"startup-features-2/slide1.jpg\";s:7:\"preview\";s:161:\"https://www.sliderrevolution.com/templates/startup-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=startup-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:399:\"<span class=\"ttm_content\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\r\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:179:\"[{\"path\":\"revslider-polyfold-addon\\/revslider-polyfold-addon.php\",\"name\":\"Polyfold Scroll Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-11-03 09:40:44\";s:7:\"package\";s:24:\"Startup Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:10:\"zindex=\"0\"\";s:11:\"guide_title\";s:63:\"A Fun Way to Design the CTA Section with Two Buttons [Tutorial]\";s:9:\"guide_url\";s:96:\"https://www.sliderrevolution.com/tutorials/a-fun-way-to-design-the-cta-section-with-two-buttons/\";s:9:\"guide_img\";s:37:\"tutorial/startup-website-template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"52\";s:9:\"installed\";b:0;}i:558;a:27:{s:2:\"id\";s:3:\"614\";s:5:\"title\";s:12:\"Startup Team\";s:5:\"alias\";s:12:\"startup-team\";s:3:\"zip\";s:22:\"packs/startup-team.zip\";s:3:\"uid\";s:32:\"7969f1f556fd276ec04dcbf49144d2f8\";s:3:\"img\";s:23:\"startup-team/slide1.jpg\";s:7:\"preview\";s:161:\"https://www.sliderrevolution.com/templates/startup-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=startup-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:399:\"<span class=\"ttm_content\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\r\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:179:\"[{\"path\":\"revslider-polyfold-addon\\/revslider-polyfold-addon.php\",\"name\":\"Polyfold Scroll Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-11-03 09:42:12\";s:7:\"package\";s:24:\"Startup Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:63:\"A Fun Way to Design the CTA Section with Two Buttons [Tutorial]\";s:9:\"guide_url\";s:96:\"https://www.sliderrevolution.com/tutorials/a-fun-way-to-design-the-cta-section-with-two-buttons/\";s:9:\"guide_img\";s:37:\"tutorial/startup-website-template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"52\";s:9:\"installed\";b:0;}i:559;a:27:{s:2:\"id\";s:3:\"615\";s:5:\"title\";s:15:\"Startup Reviews\";s:5:\"alias\";s:15:\"startup-reviews\";s:3:\"zip\";s:25:\"packs/startup-reviews.zip\";s:3:\"uid\";s:32:\"4d5253028165c237cda5f42c3f721c09\";s:3:\"img\";s:26:\"startup-reviews/slide1.jpg\";s:7:\"preview\";s:161:\"https://www.sliderrevolution.com/templates/startup-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=startup-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:399:\"<span class=\"ttm_content\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\r\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:179:\"[{\"path\":\"revslider-polyfold-addon\\/revslider-polyfold-addon.php\",\"name\":\"Polyfold Scroll Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-11-03 09:43:42\";s:7:\"package\";s:24:\"Startup Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:12:\"zindex=\"300\"\";s:11:\"guide_title\";s:63:\"A Fun Way to Design the CTA Section with Two Buttons [Tutorial]\";s:9:\"guide_url\";s:96:\"https://www.sliderrevolution.com/tutorials/a-fun-way-to-design-the-cta-section-with-two-buttons/\";s:9:\"guide_img\";s:37:\"tutorial/startup-website-template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"52\";s:9:\"installed\";b:0;}i:560;a:27:{s:2:\"id\";s:3:\"616\";s:5:\"title\";s:11:\"Startup CTA\";s:5:\"alias\";s:11:\"startup-cta\";s:3:\"zip\";s:21:\"packs/startup-cta.zip\";s:3:\"uid\";s:32:\"bfe7cb2a94dd8292179e16a986cf2748\";s:3:\"img\";s:22:\"startup-cta/slide1.jpg\";s:7:\"preview\";s:161:\"https://www.sliderrevolution.com/templates/startup-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=startup-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:399:\"<span class=\"ttm_content\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\r\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:179:\"[{\"path\":\"revslider-polyfold-addon\\/revslider-polyfold-addon.php\",\"name\":\"Polyfold Scroll Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-11-03 09:45:02\";s:7:\"package\";s:24:\"Startup Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:63:\"A Fun Way to Design the CTA Section with Two Buttons [Tutorial]\";s:9:\"guide_url\";s:96:\"https://www.sliderrevolution.com/tutorials/a-fun-way-to-design-the-cta-section-with-two-buttons/\";s:9:\"guide_img\";s:37:\"tutorial/startup-website-template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"52\";s:9:\"installed\";b:0;}i:561;a:27:{s:2:\"id\";s:3:\"617\";s:5:\"title\";s:14:\"Startup Footer\";s:5:\"alias\";s:14:\"startup-footer\";s:3:\"zip\";s:24:\"packs/startup-footer.zip\";s:3:\"uid\";s:32:\"d73466042d108699d366bf9cab2beaa8\";s:3:\"img\";s:25:\"startup-footer/slide1.jpg\";s:7:\"preview\";s:161:\"https://www.sliderrevolution.com/templates/startup-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=startup-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:399:\"<span class=\"ttm_content\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\r\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-11-03 09:46:31\";s:7:\"package\";s:24:\"Startup Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:63:\"A Fun Way to Design the CTA Section with Two Buttons [Tutorial]\";s:9:\"guide_url\";s:96:\"https://www.sliderrevolution.com/tutorials/a-fun-way-to-design-the-cta-section-with-two-buttons/\";s:9:\"guide_img\";s:37:\"tutorial/startup-website-template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"52\";s:9:\"installed\";b:0;}i:562;a:27:{s:2:\"id\";s:3:\"618\";s:5:\"title\";s:19:\"Startup Video Modal\";s:5:\"alias\";s:19:\"startup-video-modal\";s:3:\"zip\";s:29:\"packs/startup-video-modal.zip\";s:3:\"uid\";s:32:\"5fd53a8ad93456a152c25079f6437377\";s:3:\"img\";s:30:\"startup-video-modal/slide1.jpg\";s:7:\"preview\";s:161:\"https://www.sliderrevolution.com/templates/startup-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=startup-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:399:\"<span class=\"ttm_content\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\r\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-11-03 09:47:44\";s:7:\"package\";s:24:\"Startup Website Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:63:\"A Fun Way to Design the CTA Section with Two Buttons [Tutorial]\";s:9:\"guide_url\";s:96:\"https://www.sliderrevolution.com/tutorials/a-fun-way-to-design-the-cta-section-with-two-buttons/\";s:9:\"guide_img\";s:37:\"tutorial/startup-website-template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"52\";s:9:\"installed\";b:0;}i:563;a:27:{s:2:\"id\";s:3:\"619\";s:5:\"title\";s:32:\"Christmas Gift Card Landing Page\";s:5:\"alias\";s:32:\"christmas-gift-card-landing-page\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:32:\"christmas-gift-card-landing-page\";s:3:\"img\";s:45:\"packages/christmas-gift-card-landing-page.jpg\";s:7:\"preview\";s:177:\"https://www.sliderrevolution.com/templates/christmas-gift-card-landing-page/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=christmas-gift-card-landing-page\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.11\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:372:\"<span class=\"ttm_content\">Greet and thank your visitors in a creative way during the Christmas Holidays with this dynamic, two-part Christmas gift card landing page. Ideal for e-commerce websites that want to give special discounts during the holidays. The first module can also be used on it\'s own to bring xmas vibes to any website!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:10:\"Special FX\";}s:14:\"plugin_require\";s:515:\"[{\"path\":\"revslider-snow-addon\\/revslider-snow-addon.php\",\"name\":\"Snow AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-12-08 12:05:33\";s:7:\"package\";s:32:\"Christmas Gift Card Landing Page\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"53\";s:9:\"installed\";b:0;}i:564;a:27:{s:2:\"id\";s:3:\"620\";s:5:\"title\";s:24:\"Christmas Landing Page 1\";s:5:\"alias\";s:24:\"christmas-landing-page-1\";s:3:\"zip\";s:34:\"packs/christmas-landing-page-1.zip\";s:3:\"uid\";s:32:\"17eb656138d076ca1dc2d9fa5cefb1b8\";s:3:\"img\";s:43:\"christmas-gift-card-landing-page/slide1.jpg\";s:7:\"preview\";s:177:\"https://www.sliderrevolution.com/templates/christmas-gift-card-landing-page/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=christmas-gift-card-landing-page\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.11\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:372:\"<span class=\"ttm_content\">Greet and thank your visitors in a creative way during the Christmas Holidays with this dynamic, two-part Christmas gift card landing page. Ideal for e-commerce websites that want to give special discounts during the holidays. The first module can also be used on it\'s own to bring xmas vibes to any website!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:10:\"Special FX\";}s:14:\"plugin_require\";s:515:\"[{\"path\":\"revslider-snow-addon\\/revslider-snow-addon.php\",\"name\":\"Snow AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-12-08 12:08:37\";s:7:\"package\";s:32:\"Christmas Gift Card Landing Page\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"53\";s:9:\"installed\";b:0;}i:565;a:27:{s:2:\"id\";s:3:\"621\";s:5:\"title\";s:24:\"Christmas Landing Page 2\";s:5:\"alias\";s:24:\"christmas-landing-page-2\";s:3:\"zip\";s:34:\"packs/christmas-landing-page-2.zip\";s:3:\"uid\";s:32:\"ea0d2cfdba50c8060c66ee7b979c3b83\";s:3:\"img\";s:35:\"christmas-landing-page-2/slide1.jpg\";s:7:\"preview\";s:177:\"https://www.sliderrevolution.com/templates/christmas-gift-card-landing-page/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=christmas-gift-card-landing-page\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.11\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:372:\"<span class=\"ttm_content\">Greet and thank your visitors in a creative way during the Christmas Holidays with this dynamic, two-part Christmas gift card landing page. Ideal for e-commerce websites that want to give special discounts during the holidays. The first module can also be used on it\'s own to bring xmas vibes to any website!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:10:\"Special FX\";}s:14:\"plugin_require\";s:341:\"[{\"path\":\"revslider-snow-addon\\/revslider-snow-addon.php\",\"name\":\"Snow AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-12-08 12:10:54\";s:7:\"package\";s:32:\"Christmas Gift Card Landing Page\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"53\";s:9:\"installed\";b:0;}i:566;a:24:{s:2:\"id\";s:3:\"622\";s:5:\"title\";s:12:\"Image Slider\";s:5:\"alias\";s:12:\"image-slider\";s:3:\"zip\";s:16:\"image-slider.zip\";s:3:\"uid\";s:32:\"85a8fcfa9220809176bd3d6bc70b4abf\";s:3:\"img\";s:24:\"image-slider/slide-1.jpg\";s:7:\"preview\";s:153:\"https://www.sliderrevolution.com/templates/newborn-image-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=newborn-image-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.12\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:213:\"<span class=\"ttm_content\">Get an instant \"wow\" from your visitors with this sleek background image slider, that includes a clean UI for easy navigation and smooth transitions.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:189:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-01-04 09:45:41\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:567;a:24:{s:2:\"id\";s:3:\"623\";s:5:\"title\";s:17:\"Full Width Slider\";s:5:\"alias\";s:17:\"full-width-slider\";s:3:\"zip\";s:21:\"full-width-slider.zip\";s:3:\"uid\";s:32:\"e2792804e7a1f3ec9806f6a6225a559d\";s:3:\"img\";s:28:\"full-width-slider/slide1.jpg\";s:7:\"preview\";s:167:\"https://www.sliderrevolution.com/templates/delicious-full-width-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=delicious-full-width-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:233:\"<span class=\"ttm_content\">We\'ve prepared something tasty for you. A delicious looking, responsive full width slider, with a wide range of use cases and a plethora of smart, UI navigation options.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:189:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-01-10 11:40:04\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:82:\"How to Visually Promote Products and Their Unique Scent Profiles Online [Tutorial]\";s:9:\"guide_url\";s:115:\"https://www.sliderrevolution.com/tutorials/how-to-visually-promote-products-and-their-unique-scent-profiles-online/\";s:9:\"guide_img\";s:30:\"tutorial/full-width-slider.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:568;a:27:{s:2:\"id\";s:3:\"624\";s:5:\"title\";s:20:\"App Website Template\";s:5:\"alias\";s:20:\"app-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:20:\"app-website-template\";s:3:\"img\";s:33:\"packages/app-website-template.jpg\";s:7:\"preview\";s:171:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=spaceman-app-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:189:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-01-17 10:22:53\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:83:\"A Creative Way to Design the Hero Image for Your Mobile App Landing Page [Tutorial]\";s:9:\"guide_url\";s:116:\"https://www.sliderrevolution.com/tutorials/a-creative-way-to-design-the-hero-image-for-your-mobile-app-landing-page/\";s:9:\"guide_img\";s:33:\"tutorial/App-Website-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}i:569;a:27:{s:2:\"id\";s:3:\"625\";s:5:\"title\";s:16:\"App Website Menu\";s:5:\"alias\";s:16:\"app-website-menu\";s:3:\"zip\";s:26:\"packs/app-website-menu.zip\";s:3:\"uid\";s:32:\"c3c100db368c091d01852df9851b9840\";s:3:\"img\";s:27:\"app-website-menu/slide1.jpg\";s:7:\"preview\";s:171:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=spaceman-app-website-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:189:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-01-17 10:26:14\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:83:\"A Creative Way to Design the Hero Image for Your Mobile App Landing Page [Tutorial]\";s:9:\"guide_url\";s:116:\"https://www.sliderrevolution.com/tutorials/a-creative-way-to-design-the-hero-image-for-your-mobile-app-landing-page/\";s:9:\"guide_img\";s:33:\"tutorial/App-Website-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}i:570;a:27:{s:2:\"id\";s:3:\"626\";s:5:\"title\";s:16:\"App Website Hero\";s:5:\"alias\";s:16:\"app-website-hero\";s:3:\"zip\";s:26:\"packs/app-website-hero.zip\";s:3:\"uid\";s:32:\"4b42974b08f2923986932ed529974d6f\";s:3:\"img\";s:27:\"app-website-hero/slide1.jpg\";s:7:\"preview\";s:171:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=spaceman-app-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:189:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-01-17 10:29:00\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:13:\" zindex=\"300\"\";s:11:\"guide_title\";s:83:\"A Creative Way to Design the Hero Image for Your Mobile App Landing Page [Tutorial]\";s:9:\"guide_url\";s:116:\"https://www.sliderrevolution.com/tutorials/a-creative-way-to-design-the-hero-image-for-your-mobile-app-landing-page/\";s:9:\"guide_img\";s:33:\"tutorial/App-Website-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}i:571;a:27:{s:2:\"id\";s:3:\"627\";s:5:\"title\";s:20:\"App Download Buttons\";s:5:\"alias\";s:20:\"app-download-buttons\";s:3:\"zip\";s:30:\"packs/app-download-buttons.zip\";s:3:\"uid\";s:32:\"d5ecce65284cc95c506185e6f6291d55\";s:3:\"img\";s:31:\"app-download-buttons/slide1.jpg\";s:7:\"preview\";s:171:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=spaceman-app-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-01-17 10:31:22\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:83:\"A Creative Way to Design the Hero Image for Your Mobile App Landing Page [Tutorial]\";s:9:\"guide_url\";s:116:\"https://www.sliderrevolution.com/tutorials/a-creative-way-to-design-the-hero-image-for-your-mobile-app-landing-page/\";s:9:\"guide_img\";s:33:\"tutorial/App-Website-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}i:572;a:27:{s:2:\"id\";s:3:\"628\";s:5:\"title\";s:17:\"App Website About\";s:5:\"alias\";s:17:\"app-website-about\";s:3:\"zip\";s:27:\"packs/app-website-about.zip\";s:3:\"uid\";s:32:\"984477b3ea7c943a7c6be78950754e3c\";s:3:\"img\";s:28:\"app-website-about/slide1.jpg\";s:7:\"preview\";s:171:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=spaceman-app-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-01-17 10:33:06\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:83:\"A Creative Way to Design the Hero Image for Your Mobile App Landing Page [Tutorial]\";s:9:\"guide_url\";s:116:\"https://www.sliderrevolution.com/tutorials/a-creative-way-to-design-the-hero-image-for-your-mobile-app-landing-page/\";s:9:\"guide_img\";s:33:\"tutorial/App-Website-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}i:573;a:27:{s:2:\"id\";s:3:\"629\";s:5:\"title\";s:20:\"App Website Features\";s:5:\"alias\";s:20:\"app-website-features\";s:3:\"zip\";s:30:\"packs/app-website-features.zip\";s:3:\"uid\";s:32:\"206a0f73553c974ad86790fba6a13efd\";s:3:\"img\";s:31:\"app-website-features/slide1.jpg\";s:7:\"preview\";s:171:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=spaceman-app-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-01-17 10:35:08\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:83:\"A Creative Way to Design the Hero Image for Your Mobile App Landing Page [Tutorial]\";s:9:\"guide_url\";s:116:\"https://www.sliderrevolution.com/tutorials/a-creative-way-to-design-the-hero-image-for-your-mobile-app-landing-page/\";s:9:\"guide_img\";s:33:\"tutorial/App-Website-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}i:574;a:27:{s:2:\"id\";s:3:\"630\";s:5:\"title\";s:21:\"App Website Video Cta\";s:5:\"alias\";s:21:\"app-website-video-cta\";s:3:\"zip\";s:31:\"packs/app-website-video-cta.zip\";s:3:\"uid\";s:32:\"19b2930f9cd9840dccbe94cb1cc435e2\";s:3:\"img\";s:32:\"app-website-video-cta/slide1.jpg\";s:7:\"preview\";s:171:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=spaceman-app-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:189:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-01-17 10:36:15\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:83:\"A Creative Way to Design the Hero Image for Your Mobile App Landing Page [Tutorial]\";s:9:\"guide_url\";s:116:\"https://www.sliderrevolution.com/tutorials/a-creative-way-to-design-the-hero-image-for-your-mobile-app-landing-page/\";s:9:\"guide_img\";s:33:\"tutorial/App-Website-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}i:575;a:27:{s:2:\"id\";s:3:\"631\";s:5:\"title\";s:23:\"App Website Screenshots\";s:5:\"alias\";s:23:\"app-website-screenshots\";s:3:\"zip\";s:33:\"packs/app-website-screenshots.zip\";s:3:\"uid\";s:32:\"94ce8eeecb7ffad62adc2d29b203f9d2\";s:3:\"img\";s:34:\"app-website-screenshots/slide1.jpg\";s:7:\"preview\";s:171:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=spaceman-app-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-01-17 10:38:15\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:83:\"A Creative Way to Design the Hero Image for Your Mobile App Landing Page [Tutorial]\";s:9:\"guide_url\";s:116:\"https://www.sliderrevolution.com/tutorials/a-creative-way-to-design-the-hero-image-for-your-mobile-app-landing-page/\";s:9:\"guide_img\";s:33:\"tutorial/App-Website-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}i:576;a:27:{s:2:\"id\";s:3:\"632\";s:5:\"title\";s:22:\"App Testimonials Title\";s:5:\"alias\";s:22:\"app-testimonials-title\";s:3:\"zip\";s:32:\"packs/app-testimonials-title.zip\";s:3:\"uid\";s:32:\"bea74fa6e180fe23007c3d215b1b0704\";s:3:\"img\";s:33:\"app-testimonials-title/slide1.jpg\";s:7:\"preview\";s:171:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=spaceman-app-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:189:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-01-17 10:40:21\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:83:\"A Creative Way to Design the Hero Image for Your Mobile App Landing Page [Tutorial]\";s:9:\"guide_url\";s:116:\"https://www.sliderrevolution.com/tutorials/a-creative-way-to-design-the-hero-image-for-your-mobile-app-landing-page/\";s:9:\"guide_img\";s:33:\"tutorial/App-Website-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}i:577;a:27:{s:2:\"id\";s:3:\"633\";s:5:\"title\";s:24:\"App Website Testimonials\";s:5:\"alias\";s:24:\"app-website-testimonials\";s:3:\"zip\";s:34:\"packs/app-website-testimonials.zip\";s:3:\"uid\";s:32:\"e7438a870ac1007da4c7821056d511fc\";s:3:\"img\";s:35:\"app-website-testimonials/slide1.jpg\";s:7:\"preview\";s:171:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=spaceman-app-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-01-17 10:41:59\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:107:\" offset=\"t:-300px,-300px,-300px,-250px;b:0px,0px,0px,0px;l:0px,0px,0px,0px;r:0px,0px,0px,0px;\" zindex=\"300\"\";s:11:\"guide_title\";s:83:\"A Creative Way to Design the Hero Image for Your Mobile App Landing Page [Tutorial]\";s:9:\"guide_url\";s:116:\"https://www.sliderrevolution.com/tutorials/a-creative-way-to-design-the-hero-image-for-your-mobile-app-landing-page/\";s:9:\"guide_img\";s:33:\"tutorial/App-Website-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}i:578;a:27:{s:2:\"id\";s:3:\"634\";s:5:\"title\";s:16:\"App Website Team\";s:5:\"alias\";s:16:\"app-website-team\";s:3:\"zip\";s:26:\"packs/app-website-team.zip\";s:3:\"uid\";s:32:\"d9013f2968e43f696f8cc33fa3524071\";s:3:\"img\";s:27:\"app-website-team/slide1.jpg\";s:7:\"preview\";s:171:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=spaceman-app-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-01-17 10:43:40\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:94:\" offset=\"t:-350px,-350px,-350px,-300px;b:0px,0px,0px,0px;l:0px,0px,0px,0px;r:0px,0px,0px,0px;\"\";s:11:\"guide_title\";s:83:\"A Creative Way to Design the Hero Image for Your Mobile App Landing Page [Tutorial]\";s:9:\"guide_url\";s:116:\"https://www.sliderrevolution.com/tutorials/a-creative-way-to-design-the-hero-image-for-your-mobile-app-landing-page/\";s:9:\"guide_img\";s:33:\"tutorial/App-Website-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}i:579;a:27:{s:2:\"id\";s:3:\"635\";s:5:\"title\";s:18:\"App Website Footer\";s:5:\"alias\";s:18:\"app-website-footer\";s:3:\"zip\";s:28:\"packs/app-website-footer.zip\";s:3:\"uid\";s:32:\"5e13126b929feb389f9e083f3476ec46\";s:3:\"img\";s:29:\"app-website-footer/slide1.jpg\";s:7:\"preview\";s:171:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=spaceman-app-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:189:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-01-17 10:45:12\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:2:\"10\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:83:\"A Creative Way to Design the Hero Image for Your Mobile App Landing Page [Tutorial]\";s:9:\"guide_url\";s:116:\"https://www.sliderrevolution.com/tutorials/a-creative-way-to-design-the-hero-image-for-your-mobile-app-landing-page/\";s:9:\"guide_img\";s:33:\"tutorial/App-Website-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}i:580;a:27:{s:2:\"id\";s:3:\"636\";s:5:\"title\";s:15:\"App Video Modal\";s:5:\"alias\";s:15:\"app-video-modal\";s:3:\"zip\";s:25:\"packs/app-video-modal.zip\";s:3:\"uid\";s:32:\"7fe8115d0b6158c90fe92d1144ed7b01\";s:3:\"img\";s:26:\"app-video-modal/slide1.jpg\";s:7:\"preview\";s:171:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=spaceman-app-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-01-17 10:46:49\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:2:\"11\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:83:\"A Creative Way to Design the Hero Image for Your Mobile App Landing Page [Tutorial]\";s:9:\"guide_url\";s:116:\"https://www.sliderrevolution.com/tutorials/a-creative-way-to-design-the-hero-image-for-your-mobile-app-landing-page/\";s:9:\"guide_img\";s:33:\"tutorial/App-Website-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}i:581;a:27:{s:2:\"id\";s:3:\"637\";s:5:\"title\";s:25:\"Testimonial Carousel Pack\";s:5:\"alias\";s:25:\"testimonial-carousel-pack\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:25:\"testimonial-carousel-pack\";s:3:\"img\";s:38:\"packages/testimonial-carousel-pack.jpg\";s:7:\"preview\";s:175:\"https://www.sliderrevolution.com/templates/testimonial-carousel-collection/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=testimonial-carousel-collection\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.15\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:126:\"<span class=\"ttm_content\">An elegant slider for your website. Flexible and customizable.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-01-31 16:38:17\";s:7:\"package\";s:25:\"Testimonial Carousel Pack\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:74:\"How to Give Your Testimonials Section the Attention It Deserves [Tutorial]\";s:9:\"guide_url\";s:107:\"https://www.sliderrevolution.com/tutorials/how-to-give-your-testimonials-section-the-attention-it-deserves/\";s:9:\"guide_img\";s:38:\"tutorial/testimonial-carousel-pack.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"55\";s:9:\"installed\";b:0;}i:582;a:27:{s:2:\"id\";s:3:\"638\";s:5:\"title\";s:22:\"Testimonial Carousel 1\";s:5:\"alias\";s:22:\"testimonial-carousel-1\";s:3:\"zip\";s:32:\"packs/testimonial-carousel-1.zip\";s:3:\"uid\";s:32:\"1cc1f92edb4edd47f880c0b4f77e343d\";s:3:\"img\";s:33:\"testimonial-carousel-1/slide1.jpg\";s:7:\"preview\";s:175:\"https://www.sliderrevolution.com/templates/testimonial-carousel-collection/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=testimonial-carousel-collection\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.15\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:227:\"<span class=\"ttm_content\">Want to show testimonials on your website ?  We got you covered.  Our testimonial carousel pack has 5 options to choose from with colours you can easily customise.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-01-31 16:41:02\";s:7:\"package\";s:25:\"Testimonial Carousel Pack\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:74:\"How to Give Your Testimonials Section the Attention It Deserves [Tutorial]\";s:9:\"guide_url\";s:107:\"https://www.sliderrevolution.com/tutorials/how-to-give-your-testimonials-section-the-attention-it-deserves/\";s:9:\"guide_img\";s:38:\"tutorial/testimonial-carousel-pack.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"55\";s:9:\"installed\";b:0;}i:583;a:27:{s:2:\"id\";s:3:\"639\";s:5:\"title\";s:22:\"Testimonial Carousel 2\";s:5:\"alias\";s:22:\"testimonial-carousel-2\";s:3:\"zip\";s:32:\"packs/testimonial-carousel-2.zip\";s:3:\"uid\";s:32:\"b6ad1675b8d14c0ccc63ffc01b221aac\";s:3:\"img\";s:33:\"testimonial-carousel-2/slide1.jpg\";s:7:\"preview\";s:175:\"https://www.sliderrevolution.com/templates/testimonial-carousel-collection/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=testimonial-carousel-collection\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.15\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:227:\"<span class=\"ttm_content\">Want to show testimonials on your website ?  We got you covered.  Our testimonial carousel pack has 5 options to choose from with colours you can easily customise.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-01-31 16:43:25\";s:7:\"package\";s:25:\"Testimonial Carousel Pack\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:74:\"How to Give Your Testimonials Section the Attention It Deserves [Tutorial]\";s:9:\"guide_url\";s:107:\"https://www.sliderrevolution.com/tutorials/how-to-give-your-testimonials-section-the-attention-it-deserves/\";s:9:\"guide_img\";s:38:\"tutorial/testimonial-carousel-pack.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"55\";s:9:\"installed\";b:0;}i:584;a:27:{s:2:\"id\";s:3:\"640\";s:5:\"title\";s:22:\"Testimonial Carousel 3\";s:5:\"alias\";s:22:\"testimonial-carousel-3\";s:3:\"zip\";s:32:\"packs/testimonial-carousel-3.zip\";s:3:\"uid\";s:32:\"cb4a72fb40fc400a71754f71b9bb2d6e\";s:3:\"img\";s:33:\"testimonial-carousel-3/slide1.jpg\";s:7:\"preview\";s:175:\"https://www.sliderrevolution.com/templates/testimonial-carousel-collection/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=testimonial-carousel-collection\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.15\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:227:\"<span class=\"ttm_content\">Want to show testimonials on your website ?  We got you covered.  Our testimonial carousel pack has 5 options to choose from with colours you can easily customise.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-01-31 16:46:01\";s:7:\"package\";s:25:\"Testimonial Carousel Pack\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:74:\"How to Give Your Testimonials Section the Attention It Deserves [Tutorial]\";s:9:\"guide_url\";s:107:\"https://www.sliderrevolution.com/tutorials/how-to-give-your-testimonials-section-the-attention-it-deserves/\";s:9:\"guide_img\";s:38:\"tutorial/testimonial-carousel-pack.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"55\";s:9:\"installed\";b:0;}i:585;a:27:{s:2:\"id\";s:3:\"641\";s:5:\"title\";s:22:\"Testimonial Carousel 4\";s:5:\"alias\";s:22:\"testimonial-carousel-4\";s:3:\"zip\";s:32:\"packs/testimonial-carousel-4.zip\";s:3:\"uid\";s:32:\"bfca98d6b4042b38df044e9e2a6ca983\";s:3:\"img\";s:33:\"testimonial-carousel-4/slide1.jpg\";s:7:\"preview\";s:175:\"https://www.sliderrevolution.com/templates/testimonial-carousel-collection/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=testimonial-carousel-collection\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.15\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:227:\"<span class=\"ttm_content\">Want to show testimonials on your website ?  We got you covered.  Our testimonial carousel pack has 5 options to choose from with colours you can easily customise.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-01-31 16:47:57\";s:7:\"package\";s:25:\"Testimonial Carousel Pack\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:74:\"How to Give Your Testimonials Section the Attention It Deserves [Tutorial]\";s:9:\"guide_url\";s:107:\"https://www.sliderrevolution.com/tutorials/how-to-give-your-testimonials-section-the-attention-it-deserves/\";s:9:\"guide_img\";s:38:\"tutorial/testimonial-carousel-pack.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"55\";s:9:\"installed\";b:0;}i:586;a:27:{s:2:\"id\";s:3:\"642\";s:5:\"title\";s:22:\"Testimonial Carousel 5\";s:5:\"alias\";s:22:\"testimonial-carousel-5\";s:3:\"zip\";s:32:\"packs/testimonial-carousel-5.zip\";s:3:\"uid\";s:32:\"4a9b9c72b51628e1343adde9bff3915f\";s:3:\"img\";s:33:\"testimonial-carousel-5/slide1.jpg\";s:7:\"preview\";s:175:\"https://www.sliderrevolution.com/templates/testimonial-carousel-collection/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=testimonial-carousel-collection\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.15\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:227:\"<span class=\"ttm_content\">Want to show testimonials on your website ?  We got you covered.  Our testimonial carousel pack has 5 options to choose from with colours you can easily customise.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-01-31 16:49:27\";s:7:\"package\";s:25:\"Testimonial Carousel Pack\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:74:\"How to Give Your Testimonials Section the Attention It Deserves [Tutorial]\";s:9:\"guide_url\";s:107:\"https://www.sliderrevolution.com/tutorials/how-to-give-your-testimonials-section-the-attention-it-deserves/\";s:9:\"guide_img\";s:38:\"tutorial/testimonial-carousel-pack.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"55\";s:9:\"installed\";b:0;}i:587;a:24:{s:2:\"id\";s:3:\"643\";s:5:\"title\";s:28:\"Deep Dive Ocean Water Effect\";s:5:\"alias\";s:9:\"deep-dive\";s:3:\"zip\";s:13:\"deep-dive.zip\";s:3:\"uid\";s:32:\"5cc0599857b0108fe4e76adc7fbf9a16\";s:3:\"img\";s:20:\"deep-dive/slide1.jpg\";s:7:\"preview\";s:169:\"https://www.sliderrevolution.com/templates/deep-dive-ocean-water-effect/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=deep-dive-ocean-water-effect\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.15\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:267:\"<span class=\"ttm_content\">Take a dive into the ocean with this 3D Particles Animation template for Slider Revolution.<br>\r\nThe scroll-based interaction makes this hero module an absolute eye-catcher for any ocean-related website.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:10:\"Special FX\";}s:14:\"plugin_require\";s:178:\"[{\"path\":\"revslider-particlewave-addon\\/revslider-particlewave-addon.php\",\"name\":\"Particle Wave AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-02-09 09:23:47\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:81:\"How to Create a Digital Underwater Scene for Your Water Sports Website [Tutorial]\";s:9:\"guide_url\";s:114:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-digital-underwater-scene-for-your-water-sports-website/\";s:9:\"guide_img\";s:41:\"tutorial/Deep-Dive-Ocean-Water-Effect.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:588;a:24:{s:2:\"id\";s:3:\"644\";s:5:\"title\";s:22:\"Particle Wave Showcase\";s:5:\"alias\";s:22:\"particle-wave-showcase\";s:3:\"zip\";s:26:\"particle-wave-showcase.zip\";s:3:\"uid\";s:32:\"1c9ac477fd636078d1812d8d98060899\";s:3:\"img\";s:33:\"particle-wave-showcase/slide1.jpg\";s:7:\"preview\";s:157:\"https://www.sliderrevolution.com/templates/particle-wave-showcase/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=particle-wave-showcase\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:6:\"6.5.15\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:307:\"<span class=\"ttm_content\">Is your website missing that one unique design element to set it apart from your competition? The Particle Wave addon for Slider Revolution enables you to add interactive, 3D particles background animation effects that will amaze your clients!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:10:\"Special FX\";}s:14:\"plugin_require\";s:178:\"[{\"path\":\"revslider-particlewave-addon\\/revslider-particlewave-addon.php\",\"name\":\"Particle Wave AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-02-09 09:30:08\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:76:\"How to Design a Hero Image That Feels Alive and Three-Dimensional [Tutorial]\";s:9:\"guide_url\";s:109:\"https://www.sliderrevolution.com/tutorials/how-to-design-a-hero-image-that-feels-alive-and-three-dimensional/\";s:9:\"guide_img\";s:35:\"tutorial/particle-wave-showcase.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:589;a:24:{s:2:\"id\";s:3:\"645\";s:5:\"title\";s:17:\"Video Hero Header\";s:5:\"alias\";s:17:\"video-hero-header\";s:3:\"zip\";s:21:\"video-hero-header.zip\";s:3:\"uid\";s:32:\"f6a715d4b10e0746f7eb5100836ba1ab\";s:3:\"img\";s:28:\"video-hero-header/slide1.jpg\";s:7:\"preview\";s:147:\"https://www.sliderrevolution.com/templates/video-hero-header/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=video-hero-header\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.15\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:288:\"<span class=\"ttm_content\">Get ahead with this modern, futuristic video hero header with colorful gradients and a polygon particle wave.<br>\r\nShowcase the highlights of your tech-related business website with a video button that demands to be clicked.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:10:\"Special FX\";}s:14:\"plugin_require\";s:345:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-particlewave-addon\\/revslider-particlewave-addon.php\",\"name\":\"Particle Wave AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-02-09 09:33:10\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:77:\"How to Create a Trippy Hero Image Backdrop with Particle Animation [Tutorial]\";s:9:\"guide_url\";s:110:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-trippy-hero-image-backdrop-with-particle-animation/\";s:9:\"guide_img\";s:30:\"tutorial/video-hero-header.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:590;a:24:{s:2:\"id\";s:3:\"646\";s:5:\"title\";s:28:\"Solar System Showcase Slider\";s:5:\"alias\";s:28:\"solar-system-showcase-slider\";s:3:\"zip\";s:32:\"solar-system-showcase-slider.zip\";s:3:\"uid\";s:32:\"40f7b26ea7f8228d40e8e9cf0f34b5e8\";s:3:\"img\";s:39:\"solar-system-showcase-slider/slide1.jpg\";s:7:\"preview\";s:169:\"https://www.sliderrevolution.com/templates/solar-system-showcase-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=solar-system-showcase-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.15\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:233:\"<span class=\"ttm_content\">Want to amaze your users ? Look no further.  Showcase products, images or anything you can think of with this highly capable and easily customisable full screen slider. </span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:366:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-particlewave-addon\\/revslider-particlewave-addon.php\",\"name\":\"Particle Wave AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-02-09 09:50:27\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:591;a:24:{s:2:\"id\";s:3:\"647\";s:5:\"title\";s:26:\"Optic Shop Showcase Slider\";s:5:\"alias\";s:26:\"Optic-shop-showcase-slider\";s:3:\"zip\";s:30:\"Optic-shop-showcase-slider.zip\";s:3:\"uid\";s:32:\"01509228c996ad45c2179d03654f499b\";s:3:\"img\";s:37:\"Optic-shop-showcase-slider/slide1.jpg\";s:7:\"preview\";s:165:\"https://www.sliderrevolution.com/templates/optic-shop-showcase-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=optic-shop-showcase-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.16\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:272:\"<span class=\"ttm_content\">This image slider is the perfect showcase for any optic shop, utilizing the blur effect in a brilliant way. It\'s not just made for your optic showcase but also a great fit for any modern product presentation.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-02-16 16:41:07\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:83:\"How to Create an Awesome Product Slider with a Built-in Variant Switcher [Tutorial]\";s:9:\"guide_url\";s:116:\"https://www.sliderrevolution.com/tutorials/how-to-create-an-awesome-product-slider-with-a-built-in-variant-switcher/\";s:9:\"guide_img\";s:39:\"tutorial/Optic-shop-showcase-slider.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:592;a:24:{s:2:\"id\";s:3:\"648\";s:5:\"title\";s:27:\"WordPress Charts And Graphs\";s:5:\"alias\";s:24:\"charts-template-showcase\";s:3:\"zip\";s:28:\"charts-template-showcase.zip\";s:3:\"uid\";s:32:\"4ae2fe61830f96c6c5b316368c1ad2c6\";s:3:\"img\";s:35:\"charts-template-showcase/slide1.jpg\";s:7:\"preview\";s:167:\"https://www.sliderrevolution.com/templates/wordpress-charts-and-graphs/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-charts-and-graphs\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.17\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:230:\"<span class=\"ttm_content\">Who says data has to look boring? With our WordPress charts addon, you can create eye-catching sliders and hero sections with interactive and stunning-looking charts.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:347:\"[{\"path\":\"revslider-charts-addon\\/revslider-charts-addon.php\",\"name\":\"Charts AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-03-03 15:55:16\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:68:\"How to Create Interactive Charts and Graphs for WordPress [Tutorial]\";s:9:\"guide_url\";s:101:\"https://www.sliderrevolution.com/tutorials/how-to-create-interactive-charts-and-graphs-for-wordpress/\";s:9:\"guide_img\";s:37:\"tutorial/charts-template-showcase.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:593;a:27:{s:2:\"id\";s:3:\"649\";s:5:\"title\";s:31:\"Fashion Website Slider Template\";s:5:\"alias\";s:31:\"fashion-website-slider-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:31:\"fashion-website-slider-template\";s:3:\"img\";s:35:\"packages/fashion-website-slider.jpg\";s:7:\"preview\";s:157:\"https://www.sliderrevolution.com/templates/fashion-website-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=fashion-website-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.19\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:251:\"<span class=\"ttm_content\">A fashion slider that\'s not just for fashion! This template is suitable for any image-based marketing campaign and also comes with a fullscreen gallery carousel modal to show more images.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:3:{i:0;s:8:\"carousel\";i:1;s:6:\"slider\";i:2;s:4:\"hero\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-03-14 13:00:36\";s:7:\"package\";s:22:\"Fashion Website Slider\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:76:\"How to Create a Summary Slider for Blog Posts, Articles, and More [Tutorial]\";s:9:\"guide_url\";s:107:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-summary-slider-for-blog-posts-articles-and-more/\";s:9:\"guide_img\";s:35:\"tutorial/Fashion-Website-Slider.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"56\";s:9:\"installed\";b:0;}i:594;a:27:{s:2:\"id\";s:3:\"650\";s:5:\"title\";s:22:\"Fashion Website Slider\";s:5:\"alias\";s:22:\"fashion-website-slider\";s:3:\"zip\";s:32:\"packs/fashion-website-slider.zip\";s:3:\"uid\";s:32:\"8fb8379f47346173fa0dd402dda37360\";s:3:\"img\";s:33:\"fashion-website-slider/slide1.jpg\";s:7:\"preview\";s:157:\"https://www.sliderrevolution.com/templates/fashion-website-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=fashion-website-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.19\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:251:\"<span class=\"ttm_content\">A fashion slider that\'s not just for fashion! This template is suitable for any image-based marketing campaign and also comes with a fullscreen gallery carousel modal to show more images.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:3:{i:0;s:8:\"carousel\";i:1;s:6:\"slider\";i:2;s:4:\"hero\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-03-14 13:04:56\";s:7:\"package\";s:22:\"Fashion Website Slider\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:76:\"How to Create a Summary Slider for Blog Posts, Articles, and More [Tutorial]\";s:9:\"guide_url\";s:107:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-summary-slider-for-blog-posts-articles-and-more/\";s:9:\"guide_img\";s:35:\"tutorial/Fashion-Website-Slider.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"56\";s:9:\"installed\";b:0;}i:595;a:27:{s:2:\"id\";s:3:\"651\";s:5:\"title\";s:28:\"Fashion Website Slider Modal\";s:5:\"alias\";s:28:\"fashion-website-slider-modal\";s:3:\"zip\";s:38:\"packs/fashion-website-slider-modal.zip\";s:3:\"uid\";s:32:\"788f34043b6a5fcbfa5fc1c3322fb502\";s:3:\"img\";s:39:\"fashion-website-slider-modal/slide1.jpg\";s:7:\"preview\";s:157:\"https://www.sliderrevolution.com/templates/fashion-website-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=fashion-website-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.19\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:251:\"<span class=\"ttm_content\">A fashion slider that\'s not just for fashion! This template is suitable for any image-based marketing campaign and also comes with a fullscreen gallery carousel modal to show more images.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:3:{i:0;s:8:\"carousel\";i:1;s:6:\"slider\";i:2;s:4:\"hero\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-03-14 13:08:21\";s:7:\"package\";s:22:\"Fashion Website Slider\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:76:\"How to Create a Summary Slider for Blog Posts, Articles, and More [Tutorial]\";s:9:\"guide_url\";s:107:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-summary-slider-for-blog-posts-articles-and-more/\";s:9:\"guide_img\";s:35:\"tutorial/Fashion-Website-Slider.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"56\";s:9:\"installed\";b:0;}i:596;a:24:{s:2:\"id\";s:3:\"652\";s:5:\"title\";s:24:\"Furniture Website Slider\";s:5:\"alias\";s:24:\"furniture-website-slider\";s:3:\"zip\";s:28:\"furniture-website-slider.zip\";s:3:\"uid\";s:32:\"8575493ed5fd1ee2e671e67479fdeccb\";s:3:\"img\";s:35:\"furniture-website-slider/slide1.jpg\";s:7:\"preview\";s:161:\"https://www.sliderrevolution.com/templates/furniture-website-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=furniture-website-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.19\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">Promote products or create stunning landing pages with the Furniture Website Slider. Each slide comes with a different layout that can be used as a hero module or on an individual section on your website.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-03-23 14:05:44\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:74:\"How to Quickly Build a Great-Looking Microsite for Your Product [Tutorial]\";s:9:\"guide_url\";s:107:\"https://www.sliderrevolution.com/tutorials/how-to-quickly-build-a-great-looking-microsite-for-your-product/\";s:9:\"guide_img\";s:37:\"tutorial/furniture-website-slider.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:597;a:24:{s:2:\"id\";s:3:\"653\";s:5:\"title\";s:26:\"Fitness Gym Website Slider\";s:5:\"alias\";s:26:\"fitness-gym-website-slider\";s:3:\"zip\";s:30:\"fitness-gym-website-slider.zip\";s:3:\"uid\";s:32:\"86894d98e34a590e80a1d0cd3d7dc819\";s:3:\"img\";s:37:\"fitness-gym-website-slider/slide1.jpg\";s:7:\"preview\";s:165:\"https://www.sliderrevolution.com/templates/fitness-gym-website-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=fitness-gym-website-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.20\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:240:\"<span class=\"ttm_content\">Make your website visitors want to hit the gym once they see this fitness website slider. The background videos and unique, masked slide transitions make this module stand out!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-04-19 11:02:01\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:71:\"How to Create a Multimedia Slider that Lures in More Clients [Tutorial]\";s:9:\"guide_url\";s:104:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-multimedia-slider-that-lures-in-more-clients/\";s:9:\"guide_img\";s:39:\"tutorial/fitness-gym-website-slider.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:598;a:27:{s:2:\"id\";s:3:\"654\";s:5:\"title\";s:36:\"Ai & Robotics Webside Slider Package\";s:5:\"alias\";s:35:\"ai--robotics-webside-slider-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:35:\"ai--robotics-webside-slider-package\";s:3:\"img\";s:51:\"packages/ai-and-robotics-website-slider-package.jpg\";s:7:\"preview\";s:173:\"https://www.sliderrevolution.com/templates/ai-and-robotics-website-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=ai-and-robotics-website-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.20\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">Have a glimpse of the future of robots and artificial intelligence. A vivid-looking slider, perfect for tech companies and startups.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:178:\"[{\"path\":\"revslider-particlewave-addon\\/revslider-particlewave-addon.php\",\"name\":\"Particle Wave AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-04-19 15:12:25\";s:7:\"package\";s:36:\"Ai & Robotics Webside Slider Package\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:71:\"How to Create a Sleek Slider Design for Your High-Tech Brand [Tutorial]\";s:9:\"guide_url\";s:104:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-sleek-slider-design-for-your-high-tech-brand/\";s:9:\"guide_img\";s:24:\"tutorial/Ai-Robotics.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"57\";s:9:\"installed\";b:0;}i:599;a:27:{s:2:\"id\";s:3:\"655\";s:5:\"title\";s:28:\"Ai & Robotics Website Slider\";s:5:\"alias\";s:30:\"ai-and-robotics-website-slider\";s:3:\"zip\";s:40:\"packs/ai-and-robotics-website-slider.zip\";s:3:\"uid\";s:32:\"e40b7296d1519972029e9744a0c09b29\";s:3:\"img\";s:41:\"ai-and-robotics-website-slider/slide1.jpg\";s:7:\"preview\";s:173:\"https://www.sliderrevolution.com/templates/ai-and-robotics-website-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=ai-and-robotics-website-slider\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:6:\"6.5.20\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">Have a glimpse of the future of robots and artificial intelligence. A vivid-looking slider, perfect for tech companies and startups.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:178:\"[{\"path\":\"revslider-particlewave-addon\\/revslider-particlewave-addon.php\",\"name\":\"Particle Wave AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-04-19 15:16:48\";s:7:\"package\";s:36:\"Ai & Robotics Webside Slider Package\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:71:\"How to Create a Sleek Slider Design for Your High-Tech Brand [Tutorial]\";s:9:\"guide_url\";s:104:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-sleek-slider-design-for-your-high-tech-brand/\";s:9:\"guide_img\";s:24:\"tutorial/Ai-Robotics.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"57\";s:9:\"installed\";b:0;}i:600;a:27:{s:2:\"id\";s:3:\"656\";s:5:\"title\";s:14:\"AI Video Modal\";s:5:\"alias\";s:14:\"ai-video-modal\";s:3:\"zip\";s:24:\"packs/ai-video-modal.zip\";s:3:\"uid\";s:32:\"aab36a599413b7e66dfdda8f517b47b1\";s:3:\"img\";s:25:\"ai-video-modal/slide1.jpg\";s:7:\"preview\";s:173:\"https://www.sliderrevolution.com/templates/ai-and-robotics-website-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=ai-and-robotics-website-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.20\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">Have a glimpse of the future of robots and artificial intelligence. A vivid-looking slider, perfect for tech companies and startups.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:178:\"[{\"path\":\"revslider-particlewave-addon\\/revslider-particlewave-addon.php\",\"name\":\"Particle Wave AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-04-19 15:20:55\";s:7:\"package\";s:36:\"Ai & Robotics Webside Slider Package\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:71:\"How to Create a Sleek Slider Design for Your High-Tech Brand [Tutorial]\";s:9:\"guide_url\";s:104:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-sleek-slider-design-for-your-high-tech-brand/\";s:9:\"guide_img\";s:24:\"tutorial/Ai-Robotics.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"57\";s:9:\"installed\";b:0;}i:601;a:24:{s:2:\"id\";s:3:\"657\";s:5:\"title\";s:33:\"Minimal Typography Website Slider\";s:5:\"alias\";s:33:\"minimal-typography-website-slider\";s:3:\"zip\";s:37:\"minimal-typography-website-slider.zip\";s:3:\"uid\";s:32:\"43cf63d6541d33b7d4e59350935d73bf\";s:3:\"img\";s:44:\"minimal-typography-website-slider/slide1.jpg\";s:7:\"preview\";s:179:\"https://www.sliderrevolution.com/templates/minimal-typography-website-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=minimal-typography-website-slider\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:6:\"6.5.20\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:228:\"<span class=\"ttm_content\">Make the hero section on your website stand out with this minimal, typography-based hero slider, featuring cool parallax bubble effects and fluid slide transitions.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:10:\"Special FX\";}s:14:\"plugin_require\";s:189:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-04-25 14:39:36\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:68:\"How to Transform the Mood of Your Home Page with Duotones [Tutorial]\";s:9:\"guide_url\";s:101:\"https://www.sliderrevolution.com/tutorials/how-to-transform-the-mood-of-your-home-page-with-duotones/\";s:9:\"guide_img\";s:46:\"tutorial/duotone-typography-website-slider.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:602;a:24:{s:2:\"id\";s:3:\"658\";s:5:\"title\";s:19:\"404 Page Collection\";s:5:\"alias\";s:19:\"404-page-collection\";s:3:\"zip\";s:23:\"404-page-collection.zip\";s:3:\"uid\";s:32:\"3f0b25b5e893b170536a498939465a1a\";s:3:\"img\";s:30:\"404-page-collection/slide1.jpg\";s:7:\"preview\";s:151:\"https://www.sliderrevolution.com/templates/404-page-collection/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=404-page-collection\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.21\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:167:\"<span class=\"ttm_content\">Show your lost website visitors a funny and lighthearted message with our 404 page template collection.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-05-04 11:30:30\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:69:\"How to Create an Effective Thank You Page for Your Website [Tutorial]\";s:9:\"guide_url\";s:102:\"https://www.sliderrevolution.com/tutorials/how-to-create-an-effective-thank-you-page-for-your-website/\";s:9:\"guide_img\";s:32:\"tutorial/404-page-collection.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:603;a:24:{s:2:\"id\";s:3:\"659\";s:5:\"title\";s:24:\"eCommerce Product Slider\";s:5:\"alias\";s:21:\"ecommerce-sale-slider\";s:3:\"zip\";s:25:\"ecommerce-sale-slider.zip\";s:3:\"uid\";s:32:\"49ca4743090cddca705ee108eae967c5\";s:3:\"img\";s:32:\"ecommerce-sale-slider/slide1.jpg\";s:7:\"preview\";s:161:\"https://www.sliderrevolution.com/templates/ecommerce-product-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=ecommerce-product-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.22\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:269:\"<span class=\"ttm_content\">So you have an eCommerce shop and are looking for the ultimate sales pitch on your landing page? Trying to convert your precious visitors into more sales? Look no further than our eCommerce Product Slider!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-05-17 14:22:52\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:65:\"How to Get More Eyes on Your eCommerce Sales Promotion [Tutorial]\";s:9:\"guide_url\";s:98:\"https://www.sliderrevolution.com/tutorials/how-to-get-more-eyes-on-your-ecommerce-sales-promotion/\";s:9:\"guide_img\";s:34:\"tutorial/ecommerce-sale-slider.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:604;a:24:{s:2:\"id\";s:3:\"660\";s:5:\"title\";s:19:\"Fashion Shop Slider\";s:5:\"alias\";s:19:\"fashion-shop-slider\";s:3:\"zip\";s:23:\"fashion-shop-slider.zip\";s:3:\"uid\";s:32:\"e488e9126dbe4a34c02c89a1115f4ff9\";s:3:\"img\";s:30:\"fashion-shop-slider/slide1.jpg\";s:7:\"preview\";s:151:\"https://www.sliderrevolution.com/templates/fashion-shop-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=fashion-shop-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.22\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">Customize texts, images, and colors in seconds and have this beast of a shop slider running on your own website in no time.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:189:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-05-18 13:24:56\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:73:\"How to Create a Colorful Retro Effect for the Home Page Slider [Tutorial]\";s:9:\"guide_url\";s:106:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-colorful-retro-effect-for-the-home-page-slider/\";s:9:\"guide_img\";s:32:\"tutorial/fashion-shop-slider.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:605;a:24:{s:2:\"id\";s:3:\"661\";s:5:\"title\";s:29:\"Lingerie Store Website Slider\";s:5:\"alias\";s:29:\"lingerie-store-website-slider\";s:3:\"zip\";s:33:\"lingerie-store-website-slider.zip\";s:3:\"uid\";s:32:\"7bdad27521b7c9b171b618dff2fa0315\";s:3:\"img\";s:40:\"lingerie-store-website-slider/slide1.jpg\";s:7:\"preview\";s:171:\"https://www.sliderrevolution.com/templates/lingerie-store-website-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=lingerie-store-website-slider\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:6:\"6.5.22\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">This hero slider also includes optional menu navigation and links, in case you want to use it as a standalone landing page.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:189:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-05-18 13:28:21\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:606;a:24:{s:2:\"id\";s:3:\"662\";s:5:\"title\";s:28:\"Beach Events Hero Collection\";s:5:\"alias\";s:28:\"beach-events-hero-collection\";s:3:\"zip\";s:32:\"beach-events-hero-collection.zip\";s:3:\"uid\";s:32:\"cf87cd65572e9bc4ee019cceae1c75f8\";s:3:\"img\";s:39:\"beach-events-hero-collection/slide1.jpg\";s:7:\"preview\";s:182:\"https://www.sliderrevolution.com/templates/summer-beach-events-hero-collection?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=summer-beach-events-hero-collection\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:6:\"6.5.25\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">These hero image templates offer a high-octane mix of headlines, images, and special effects.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:189:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-07-18 16:56:11\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:66:\"Sell More Event Tickets with a High-Energy Hero Section [Tutorial]\";s:9:\"guide_url\";s:99:\"https://www.sliderrevolution.com/tutorials/sell-more-event-tickets-with-a-high-energy-hero-section/\";s:9:\"guide_img\";s:41:\"tutorial/beach-events-hero-collection.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:607;a:27:{s:2:\"id\";s:3:\"663\";s:5:\"title\";s:41:\"Creative Portfolio Website Slider Package\";s:5:\"alias\";s:41:\"creative-portfolio-website-slider-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:41:\"creative-portfolio-website-slider-package\";s:3:\"img\";s:54:\"packages/creative-portfolio-website-slider-package.jpg\";s:7:\"preview\";s:178:\"https://www.sliderrevolution.com/templates/creative-portfolio-website-slider?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=creative-portfolio-website-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.25\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:272:\"<span class=\"ttm_content\">This one-page portfolio website template was built to impress. Shine a spotlight on all your work with this striking, interactive design and wow prospective clients the second they step foot inside your site.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:7:\"website\";}s:14:\"plugin_require\";s:345:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-particlewave-addon\\/revslider-particlewave-addon.php\",\"name\":\"Particle Wave AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-07-18 17:00:43\";s:7:\"package\";s:41:\"Creative Portfolio Website Slider Package\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:77:\"How to Create a Great-looking Masonry Portfolio for Your Home Page [Tutorial]\";s:9:\"guide_url\";s:110:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-great-looking-masonry-portfolio-for-your-home-page/\";s:9:\"guide_img\";s:39:\"tutorial/Creative-Portfolio-Website.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"58\";s:9:\"installed\";b:0;}i:608;a:27:{s:2:\"id\";s:3:\"664\";s:5:\"title\";s:30:\"Creative Portfolio Main Slider\";s:5:\"alias\";s:30:\"creative-portfolio-main-slider\";s:3:\"zip\";s:40:\"packs/creative-portfolio-main-slider.zip\";s:3:\"uid\";s:32:\"2b01de6e46611e4353f1687609aa6783\";s:3:\"img\";s:41:\"creative-portfolio-main-slider/slide1.jpg\";s:7:\"preview\";s:178:\"https://www.sliderrevolution.com/templates/creative-portfolio-website-slider?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=creative-portfolio-website-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.25\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:272:\"<span class=\"ttm_content\">This one-page portfolio website template was built to impress. Shine a spotlight on all your work with this striking, interactive design and wow prospective clients the second they step foot inside your site.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:7:\"website\";}s:14:\"plugin_require\";s:345:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-particlewave-addon\\/revslider-particlewave-addon.php\",\"name\":\"Particle Wave AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-07-18 17:03:03\";s:7:\"package\";s:41:\"Creative Portfolio Website Slider Package\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:77:\"How to Create a Great-looking Masonry Portfolio for Your Home Page [Tutorial]\";s:9:\"guide_url\";s:110:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-great-looking-masonry-portfolio-for-your-home-page/\";s:9:\"guide_img\";s:39:\"tutorial/Creative-Portfolio-Website.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"58\";s:9:\"installed\";b:0;}i:609;a:27:{s:2:\"id\";s:3:\"665\";s:5:\"title\";s:28:\"Creative Portfolio Project 1\";s:5:\"alias\";s:28:\"creative-portfolio-project-1\";s:3:\"zip\";s:38:\"packs/creative-portfolio-project-1.zip\";s:3:\"uid\";s:32:\"f1e3a170d3f06d7162445fe9cce99335\";s:3:\"img\";s:39:\"creative-portfolio-project-1/slide1.jpg\";s:7:\"preview\";s:178:\"https://www.sliderrevolution.com/templates/creative-portfolio-website-slider?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=creative-portfolio-website-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.25\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:272:\"<span class=\"ttm_content\">This one-page portfolio website template was built to impress. Shine a spotlight on all your work with this striking, interactive design and wow prospective clients the second they step foot inside your site.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:7:\"website\";}s:14:\"plugin_require\";s:345:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-particlewave-addon\\/revslider-particlewave-addon.php\",\"name\":\"Particle Wave AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-07-18 17:07:45\";s:7:\"package\";s:41:\"Creative Portfolio Website Slider Package\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:77:\"How to Create a Great-looking Masonry Portfolio for Your Home Page [Tutorial]\";s:9:\"guide_url\";s:110:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-great-looking-masonry-portfolio-for-your-home-page/\";s:9:\"guide_img\";s:39:\"tutorial/Creative-Portfolio-Website.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"58\";s:9:\"installed\";b:0;}i:610;a:27:{s:2:\"id\";s:3:\"666\";s:5:\"title\";s:28:\"Creative Portfolio Project 2\";s:5:\"alias\";s:28:\"creative-portfolio-project-2\";s:3:\"zip\";s:38:\"packs/creative-portfolio-project-2.zip\";s:3:\"uid\";s:32:\"59369faef5b4a0571cd5fd72432d2d20\";s:3:\"img\";s:39:\"creative-portfolio-project-2/slide1.jpg\";s:7:\"preview\";s:178:\"https://www.sliderrevolution.com/templates/creative-portfolio-website-slider?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=creative-portfolio-website-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.25\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:272:\"<span class=\"ttm_content\">This one-page portfolio website template was built to impress. Shine a spotlight on all your work with this striking, interactive design and wow prospective clients the second they step foot inside your site.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:7:\"website\";}s:14:\"plugin_require\";s:345:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-particlewave-addon\\/revslider-particlewave-addon.php\",\"name\":\"Particle Wave AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-07-18 17:12:09\";s:7:\"package\";s:41:\"Creative Portfolio Website Slider Package\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:77:\"How to Create a Great-looking Masonry Portfolio for Your Home Page [Tutorial]\";s:9:\"guide_url\";s:110:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-great-looking-masonry-portfolio-for-your-home-page/\";s:9:\"guide_img\";s:39:\"tutorial/Creative-Portfolio-Website.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"58\";s:9:\"installed\";b:0;}i:611;a:27:{s:2:\"id\";s:3:\"667\";s:5:\"title\";s:28:\"Creative Portfolio Project 3\";s:5:\"alias\";s:28:\"creative-portfolio-project-3\";s:3:\"zip\";s:38:\"packs/creative-portfolio-project-3.zip\";s:3:\"uid\";s:32:\"ac6823b9ffeba97c56aa6f4593109e5f\";s:3:\"img\";s:39:\"creative-portfolio-project-3/slide1.jpg\";s:7:\"preview\";s:178:\"https://www.sliderrevolution.com/templates/creative-portfolio-website-slider?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=creative-portfolio-website-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.25\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:272:\"<span class=\"ttm_content\">This one-page portfolio website template was built to impress. Shine a spotlight on all your work with this striking, interactive design and wow prospective clients the second they step foot inside your site.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:7:\"website\";}s:14:\"plugin_require\";s:345:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-particlewave-addon\\/revslider-particlewave-addon.php\",\"name\":\"Particle Wave AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-07-18 17:14:02\";s:7:\"package\";s:41:\"Creative Portfolio Website Slider Package\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:77:\"How to Create a Great-looking Masonry Portfolio for Your Home Page [Tutorial]\";s:9:\"guide_url\";s:110:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-great-looking-masonry-portfolio-for-your-home-page/\";s:9:\"guide_img\";s:39:\"tutorial/Creative-Portfolio-Website.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"58\";s:9:\"installed\";b:0;}i:612;a:27:{s:2:\"id\";s:3:\"668\";s:5:\"title\";s:28:\"Creative Portfolio Project 4\";s:5:\"alias\";s:28:\"creative-portfolio-project-4\";s:3:\"zip\";s:38:\"packs/creative-portfolio-project-4.zip\";s:3:\"uid\";s:32:\"31f5cc4c9d13af7b56adfa7b7c84dce9\";s:3:\"img\";s:39:\"creative-portfolio-project-4/slide1.jpg\";s:7:\"preview\";s:178:\"https://www.sliderrevolution.com/templates/creative-portfolio-website-slider?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=creative-portfolio-website-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.25\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:272:\"<span class=\"ttm_content\">This one-page portfolio website template was built to impress. Shine a spotlight on all your work with this striking, interactive design and wow prospective clients the second they step foot inside your site.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:7:\"website\";}s:14:\"plugin_require\";s:345:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-particlewave-addon\\/revslider-particlewave-addon.php\",\"name\":\"Particle Wave AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-07-18 17:16:40\";s:7:\"package\";s:41:\"Creative Portfolio Website Slider Package\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:77:\"How to Create a Great-looking Masonry Portfolio for Your Home Page [Tutorial]\";s:9:\"guide_url\";s:110:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-great-looking-masonry-portfolio-for-your-home-page/\";s:9:\"guide_img\";s:39:\"tutorial/Creative-Portfolio-Website.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"58\";s:9:\"installed\";b:0;}i:613;a:27:{s:2:\"id\";s:3:\"669\";s:5:\"title\";s:28:\"Creative Portfolio Project 5\";s:5:\"alias\";s:28:\"creative-portfolio-project-5\";s:3:\"zip\";s:38:\"packs/creative-portfolio-project-5.zip\";s:3:\"uid\";s:32:\"23c8e18d556da040ef6ac2382d4a7b94\";s:3:\"img\";s:39:\"creative-portfolio-project-5/slide1.jpg\";s:7:\"preview\";s:178:\"https://www.sliderrevolution.com/templates/creative-portfolio-website-slider?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=creative-portfolio-website-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.25\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:272:\"<span class=\"ttm_content\">This one-page portfolio website template was built to impress. Shine a spotlight on all your work with this striking, interactive design and wow prospective clients the second they step foot inside your site.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:7:\"website\";}s:14:\"plugin_require\";s:345:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-particlewave-addon\\/revslider-particlewave-addon.php\",\"name\":\"Particle Wave AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-07-18 17:20:22\";s:7:\"package\";s:41:\"Creative Portfolio Website Slider Package\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:77:\"How to Create a Great-looking Masonry Portfolio for Your Home Page [Tutorial]\";s:9:\"guide_url\";s:110:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-great-looking-masonry-portfolio-for-your-home-page/\";s:9:\"guide_img\";s:39:\"tutorial/Creative-Portfolio-Website.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"58\";s:9:\"installed\";b:0;}i:614;a:27:{s:2:\"id\";s:3:\"670\";s:5:\"title\";s:28:\"Creative Portfolio Project 6\";s:5:\"alias\";s:28:\"creative-portfolio-project-6\";s:3:\"zip\";s:38:\"packs/creative-portfolio-project-6.zip\";s:3:\"uid\";s:32:\"518434a06d7a959bd3f3e0905e252209\";s:3:\"img\";s:39:\"creative-portfolio-project-6/slide1.jpg\";s:7:\"preview\";s:178:\"https://www.sliderrevolution.com/templates/creative-portfolio-website-slider?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=creative-portfolio-website-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.25\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:272:\"<span class=\"ttm_content\">This one-page portfolio website template was built to impress. Shine a spotlight on all your work with this striking, interactive design and wow prospective clients the second they step foot inside your site.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:7:\"website\";}s:14:\"plugin_require\";s:345:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-particlewave-addon\\/revslider-particlewave-addon.php\",\"name\":\"Particle Wave AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-07-18 17:21:51\";s:7:\"package\";s:41:\"Creative Portfolio Website Slider Package\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:77:\"How to Create a Great-looking Masonry Portfolio for Your Home Page [Tutorial]\";s:9:\"guide_url\";s:110:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-great-looking-masonry-portfolio-for-your-home-page/\";s:9:\"guide_img\";s:39:\"tutorial/Creative-Portfolio-Website.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"58\";s:9:\"installed\";b:0;}i:615;a:27:{s:2:\"id\";s:3:\"671\";s:5:\"title\";s:28:\"Creative Portfolio Project 7\";s:5:\"alias\";s:28:\"creative-portfolio-project-7\";s:3:\"zip\";s:38:\"packs/creative-portfolio-project-7.zip\";s:3:\"uid\";s:32:\"bb1552746859766efbe319d7c0a1978e\";s:3:\"img\";s:39:\"creative-portfolio-project-7/slide1.jpg\";s:7:\"preview\";s:178:\"https://www.sliderrevolution.com/templates/creative-portfolio-website-slider?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=creative-portfolio-website-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.25\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:272:\"<span class=\"ttm_content\">This one-page portfolio website template was built to impress. Shine a spotlight on all your work with this striking, interactive design and wow prospective clients the second they step foot inside your site.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:7:\"website\";}s:14:\"plugin_require\";s:345:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-particlewave-addon\\/revslider-particlewave-addon.php\",\"name\":\"Particle Wave AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-07-18 17:24:03\";s:7:\"package\";s:41:\"Creative Portfolio Website Slider Package\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:77:\"How to Create a Great-looking Masonry Portfolio for Your Home Page [Tutorial]\";s:9:\"guide_url\";s:110:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-great-looking-masonry-portfolio-for-your-home-page/\";s:9:\"guide_img\";s:39:\"tutorial/Creative-Portfolio-Website.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"58\";s:9:\"installed\";b:0;}i:616;a:25:{s:2:\"id\";s:3:\"672\";s:5:\"title\";s:24:\"AI Particle Cluster Hero\";s:5:\"alias\";s:19:\"ai-particle-cluster\";s:3:\"zip\";s:23:\"ai-particle-cluster.zip\";s:3:\"uid\";s:32:\"e47971fc290d738faca66e100cc7da74\";s:3:\"img\";s:30:\"ai-particle-cluster/slide1.jpg\";s:7:\"preview\";s:161:\"https://www.sliderrevolution.com/templates/ai-particle-cluster-hero/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=ai-particle-cluster-hero\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.6.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:222:\"<span class=\"ttm_content\">If you are looking for a stunning, interactive particles animation for your WordPress website, this Slider Revolution template surely is a unique eye-catcher.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:10:\"Special FX\";}s:14:\"plugin_require\";s:190:\"[{\"path\":\"revslider-thecluster-addon\\/revslider-thecluster-addon.php\",\"name\":\"Slider Revolution The Cluster AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-10-06 12:25:01\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:86:\"Make Visitors Want to Stop and Play with Your Particle Animation Hero Image [Tutorial]\";s:9:\"guide_url\";s:119:\"https://www.sliderrevolution.com/tutorials/make-visitors-want-to-stop-and-play-with-your-particle-animation-hero-image/\";s:9:\"guide_img\";s:32:\"tutorial/ai-particle-cluster.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:617;a:25:{s:2:\"id\";s:3:\"673\";s:5:\"title\";s:24:\"Artistic Parallax Slider\";s:5:\"alias\";s:24:\"artistic-parallax-slider\";s:3:\"zip\";s:28:\"artistic-parallax-slider.zip\";s:3:\"uid\";s:32:\"a1488f5f4d3ffd2912f9520bba2a2418\";s:3:\"img\";s:35:\"artistic-parallax-slider/slide1.jpg\";s:7:\"preview\";s:161:\"https://www.sliderrevolution.com/templates/artistic-parallax-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=artistic-parallax-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.6.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:230:\"<span class=\"ttm_content\">Gorgeous visuals and clear typography, paired with scroll-based slide navigation, make this WordPress parallax slider template a winner for a wide range of use cases.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:189:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-10-06 12:29:34\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:61:\"How to Create a Surreal Design for Your Hero Image [Tutorial]\";s:9:\"guide_url\";s:94:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-surreal-design-for-your-hero-image/\";s:9:\"guide_img\";s:37:\"tutorial/artistic-parallax-slider.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:618;a:25:{s:2:\"id\";s:3:\"674\";s:5:\"title\";s:23:\"Magazine Content Slider\";s:5:\"alias\";s:23:\"magazine-content-slider\";s:3:\"zip\";s:27:\"magazine-content-slider.zip\";s:3:\"uid\";s:32:\"6701ec2aab76c253004d6ed5755cf9f6\";s:3:\"img\";s:34:\"magazine-content-slider/slide1.jpg\";s:7:\"preview\";s:158:\"https://www.sliderrevolution.com/templates/magazine-content-slider?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=magazine-content-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.6.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:259:\"<span class=\"ttm_content\">This WordPress content slider can display any static content or your WordPress posts. Like any element in this featured slider template, the optional menu can easily be removed if its not needed.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";}s:14:\"plugin_require\";s:189:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-10-06 12:32:38\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:71:\"How to Promote Your Top Content with a Magazine-style Slider [Tutorial]\";s:9:\"guide_url\";s:104:\"https://www.sliderrevolution.com/tutorials/how-to-promote-your-top-content-with-a-magazine-style-slider/\";s:9:\"guide_img\";s:36:\"tutorial/Magazine-Content-Slider.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:619;a:25:{s:2:\"id\";s:3:\"675\";s:5:\"title\";s:30:\"Magazine Content Slider Static\";s:5:\"alias\";s:30:\"magazine-content-slider-static\";s:3:\"zip\";s:34:\"magazine-content-slider-static.zip\";s:3:\"uid\";s:32:\"3b1f7d279064fa1fb90bb2000e9ebc7b\";s:3:\"img\";s:41:\"magazine-content-slider-static/slide1.jpg\";s:7:\"preview\";s:158:\"https://www.sliderrevolution.com/templates/magazine-content-slider?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=magazine-content-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.6.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:260:\"<span class=\"ttm_content\">This WordPress content slider can display any static content or your WordPress posts. Like any element in this featured slider template, the optional menu can easily be removed if it\'s not needed.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";}s:14:\"plugin_require\";s:189:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-10-06 12:35:12\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:71:\"How to Promote Your Top Content with a Magazine-style Slider [Tutorial]\";s:9:\"guide_url\";s:104:\"https://www.sliderrevolution.com/tutorials/how-to-promote-your-top-content-with-a-magazine-style-slider/\";s:9:\"guide_img\";s:36:\"tutorial/Magazine-Content-Slider.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:620;a:25:{s:2:\"id\";s:3:\"676\";s:5:\"title\";s:24:\"Masonry Gallery Carousel\";s:5:\"alias\";s:24:\"Masonry-Gallery-Carousel\";s:3:\"zip\";s:28:\"Masonry-Gallery-Carousel.zip\";s:3:\"uid\";s:32:\"c189884a358e4984c8f300916909f54b\";s:3:\"img\";s:35:\"Masonry-Gallery-Carousel/slide1.jpg\";s:7:\"preview\";s:161:\"https://www.sliderrevolution.com/templates/masonry-gallery-carousel/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=masonry-gallery-carousel\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.6.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:301:\"<span class=\"ttm_content\">This masonry gallery template for Slider Revolution has three different masonry layouts, which can be mixed & matched and are easily customized. The headline and description captions make this template very flexible, with many use cases.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-10-06 12:39:35\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:66:\"How to Create a Horizontal Masonry Layout for Your Work [Tutorial]\";s:9:\"guide_url\";s:99:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-horizontal-masonry-layout-for-your-work/\";s:9:\"guide_img\";s:37:\"tutorial/Masonry-Gallery-Carousel.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:621;a:25:{s:2:\"id\";s:3:\"677\";s:5:\"title\";s:31:\"Neon WordPress Slider With Text\";s:5:\"alias\";s:21:\"neon-wordpress-slider\";s:3:\"zip\";s:25:\"neon-wordpress-slider.zip\";s:3:\"uid\";s:32:\"9d620dfc8df1be5b956a70106a4ca5d7\";s:3:\"img\";s:32:\"neon-wordpress-slider/slide1.jpg\";s:7:\"preview\";s:175:\"https://www.sliderrevolution.com/templates/neon-wordpress-slider-with-text/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=neon-wordpress-slider-with-text\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.6.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">This is not your average WordPress slider with text and image. Stunning, AI generated images paired with crisp & snappy animations make this Slider Revolution template a winner!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:10:\"Special FX\";}s:14:\"plugin_require\";s:189:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-10-06 12:41:29\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:63:\"Break Down Your Process with a Colorful Image Slider [Tutorial]\";s:9:\"guide_url\";s:96:\"https://www.sliderrevolution.com/tutorials/break-down-your-process-with-a-colorful-image-slider/\";s:9:\"guide_img\";s:34:\"tutorial/neon-wordpress-slider.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:622;a:25:{s:2:\"id\";s:3:\"678\";s:5:\"title\";s:27:\"Restaurant One Page Website\";s:5:\"alias\";s:27:\"Restaurant-One-Page-Website\";s:3:\"zip\";s:31:\"Restaurant-One-Page-Website.zip\";s:3:\"uid\";s:32:\"747730efa359467cb5627ae123839090\";s:3:\"img\";s:38:\"Restaurant-One-Page-Website/slide1.jpg\";s:7:\"preview\";s:185:\"https://www.sliderrevolution.com/templates/kostlich-restaurant-one-page-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=kostlich-restaurant-one-page-website\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.6.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:285:\"<span class=\"ttm_content\">A restaurant WordPress template can easily be overloaded with features that no one really needs. The Köstlich Restaurant One Page Website template for Slider Revolution focuses on the information, a visitor wants to see.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-10-06 12:43:57\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:83:\"A Fast and Easy Way to Create a Good Looking One-Page Restaurant Website [Tutorial]\";s:9:\"guide_url\";s:116:\"https://www.sliderrevolution.com/tutorials/a-fast-and-easy-way-to-create-a-good-looking-one-page-restaurant-website/\";s:9:\"guide_img\";s:40:\"tutorial/Restaurant-One-Page-Website.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:623;a:25:{s:2:\"id\";s:3:\"679\";s:5:\"title\";s:18:\"WooCommerce Slider\";s:5:\"alias\";s:18:\"woocommerce-slider\";s:3:\"zip\";s:22:\"woocommerce-slider.zip\";s:3:\"uid\";s:32:\"5f354f9d17d3b8562e7dfbac0b289ab3\";s:3:\"img\";s:29:\"woocommerce-slider/slide1.jpg\";s:7:\"preview\";s:165:\"https://www.sliderrevolution.com/templates/sneaker-woocommerce-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=sneaker-woocommerce-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.6.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:164:\"<span class=\"ttm_content\">Sell your products faster with this futuristic looking slider with sleek navigation and clean layout</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:11:\"woocommerce\";}s:14:\"plugin_require\";s:356:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-10-06 12:47:34\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:66:\"How to Create a Beautiful 3D WooCommerce Product Slider [Tutorial]\";s:9:\"guide_url\";s:99:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-beautiful-3d-woocommerce-product-slider/\";s:9:\"guide_img\";s:38:\"tutorial/woocommerce-slider-static.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:624;a:25:{s:2:\"id\";s:3:\"680\";s:5:\"title\";s:25:\"WooCommerce Slider Static\";s:5:\"alias\";s:25:\"woocommerce-slider-static\";s:3:\"zip\";s:29:\"woocommerce-slider-static.zip\";s:3:\"uid\";s:32:\"66d86a41303223abecec3c4820bcd8f0\";s:3:\"img\";s:36:\"woocommerce-slider-static/slide1.jpg\";s:7:\"preview\";s:165:\"https://www.sliderrevolution.com/templates/sneaker-woocommerce-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=sneaker-woocommerce-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.6.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:164:\"<span class=\"ttm_content\">Sell your products faster with this futuristic looking slider with sleek navigation and clean layout</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:356:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-10-06 12:50:07\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:66:\"How to Create a Beautiful 3D WooCommerce Product Slider [Tutorial]\";s:9:\"guide_url\";s:99:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-beautiful-3d-woocommerce-product-slider/\";s:9:\"guide_img\";s:38:\"tutorial/woocommerce-slider-static.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:625;a:25:{s:2:\"id\";s:3:\"681\";s:5:\"title\";s:21:\"WordPress Post Slider\";s:5:\"alias\";s:21:\"wordpress-post-slider\";s:3:\"zip\";s:25:\"wordpress-post-slider.zip\";s:3:\"uid\";s:32:\"c854a5e0be29cb28893b0bb98d9e6740\";s:3:\"img\";s:32:\"wordpress-post-slider/slide1.jpg\";s:7:\"preview\";s:175:\"https://www.sliderrevolution.com/templates/superhero-wordpress-post-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=superhero-wordpress-post-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.6.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:233:\"<span class=\"ttm_content\">This amazing Slider Revolution post slider can display static and dynamic WordPress content. Display your blog posts automatically or add your texts and images manually!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:9:\"postbased\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-10-06 12:52:10\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:81:\"Make Your Employees Look Like Superheroes with a Comic-inspired Slider [Tutorial]\";s:9:\"guide_url\";s:114:\"https://www.sliderrevolution.com/tutorials/make-your-employees-look-like-superheroes-with-a-comic-inspired-slider/\";s:9:\"guide_img\";s:41:\"tutorial/WordPress-Post-Slider-Static.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:626;a:25:{s:2:\"id\";s:3:\"682\";s:5:\"title\";s:28:\"WordPress Post Slider Static\";s:5:\"alias\";s:28:\"WordPress-Post-Slider-Static\";s:3:\"zip\";s:32:\"WordPress-Post-Slider-Static.zip\";s:3:\"uid\";s:32:\"edbb9e724f7758aff215ab3e743abd9e\";s:3:\"img\";s:39:\"WordPress-Post-Slider-Static/slide1.jpg\";s:7:\"preview\";s:175:\"https://www.sliderrevolution.com/templates/superhero-wordpress-post-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=superhero-wordpress-post-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.6.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:233:\"<span class=\"ttm_content\">This amazing Slider Revolution post slider can display static and dynamic WordPress content. Display your blog posts automatically or add your texts and images manually!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-10-06 12:53:43\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:81:\"Make Your Employees Look Like Superheroes with a Comic-inspired Slider [Tutorial]\";s:9:\"guide_url\";s:114:\"https://www.sliderrevolution.com/tutorials/make-your-employees-look-like-superheroes-with-a-comic-inspired-slider/\";s:9:\"guide_img\";s:41:\"tutorial/WordPress-Post-Slider-Static.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:627;a:25:{s:2:\"id\";s:3:\"683\";s:5:\"title\";s:22:\"Wordpress Video Slider\";s:5:\"alias\";s:22:\"wordpress-video-slider\";s:3:\"zip\";s:26:\"wordpress-video-slider.zip\";s:3:\"uid\";s:32:\"fd50cf2c76a1fe0bf8bd35e727a00bb7\";s:3:\"img\";s:33:\"wordpress-video-slider/slide1.jpg\";s:7:\"preview\";s:157:\"https://www.sliderrevolution.com/templates/wordpress-video-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-video-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.6.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:303:\"<span class=\"ttm_content\">The WordPress Video Slider template for Slider Revolution offers a cinematic video viewing experience. With it is stylish, blurred background videos and a video player modal, this template is a fitting hero module choice for many websites.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:356:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-10-06 12:55:51\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:82:\"How to Create Good Vibes on Your Website with a Background Video Slider [Tutorial]\";s:9:\"guide_url\";s:115:\"https://www.sliderrevolution.com/tutorials/how-to-create-good-vibes-on-your-website-with-a-background-video-slider/\";s:9:\"guide_img\";s:35:\"tutorial/wordpress-video-slider.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:628;a:27:{s:2:\"id\";s:3:\"684\";s:5:\"title\";s:37:\"Architecture Website Template Package\";s:5:\"alias\";s:37:\"architecture-website-template-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:37:\"architecture-website-template-package\";s:3:\"img\";s:39:\"packages/architecture-website-thumb.jpg\";s:7:\"preview\";s:171:\"https://www.sliderrevolution.com/templates/architecture-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=architecture-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.6.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:272:\"<span class=\"ttm_content\">The architecture website template offers a modern, visually appealing one-page layout with flexible customization options. This is not just a real estate website, but can also fit for any other kind of theme!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-10-06 12:59:17\";s:7:\"package\";s:37:\"Architecture Website Template Package\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:77:\"A Beautiful Way to Showcase Your Best Work for Prospective Clients [Tutorial]\";s:9:\"guide_url\";s:110:\"https://www.sliderrevolution.com/tutorials/a-beautiful-way-to-showcase-your-best-work-for-prospective-clients/\";s:9:\"guide_img\";s:42:\"tutorial/Architecture-Website-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"59\";s:9:\"installed\";b:0;}i:629;a:28:{s:2:\"id\";s:3:\"685\";s:5:\"title\";s:17:\"Architecture Menu\";s:5:\"alias\";s:17:\"architecture-menu\";s:3:\"zip\";s:27:\"packs/architecture-menu.zip\";s:3:\"uid\";s:32:\"a8c46db54ab5fdbb104aacc0cb26d48a\";s:3:\"img\";s:28:\"architecture-menu/slide1.jpg\";s:7:\"preview\";s:171:\"https://www.sliderrevolution.com/templates/architecture-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=architecture-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.6.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:272:\"<span class=\"ttm_content\">The architecture website template offers a modern, visually appealing one-page layout with flexible customization options. This is not just a real estate website, but can also fit for any other kind of theme!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-10-06 13:10:25\";s:7:\"package\";s:37:\"Architecture Website Template Package\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:77:\"A Beautiful Way to Showcase Your Best Work for Prospective Clients [Tutorial]\";s:9:\"guide_url\";s:110:\"https://www.sliderrevolution.com/tutorials/a-beautiful-way-to-showcase-your-best-work-for-prospective-clients/\";s:9:\"guide_img\";s:42:\"tutorial/Architecture-Website-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"59\";s:9:\"installed\";b:0;}i:630;a:28:{s:2:\"id\";s:3:\"686\";s:5:\"title\";s:26:\"Architecture Header Slider\";s:5:\"alias\";s:26:\"architecture-header-slider\";s:3:\"zip\";s:36:\"packs/architecture-header-slider.zip\";s:3:\"uid\";s:32:\"e13d9d910db3371527ceb9f92a27057d\";s:3:\"img\";s:37:\"architecture-header-slider/slide1.jpg\";s:7:\"preview\";s:171:\"https://www.sliderrevolution.com/templates/architecture-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=architecture-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.6.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:272:\"<span class=\"ttm_content\">The architecture website template offers a modern, visually appealing one-page layout with flexible customization options. This is not just a real estate website, but can also fit for any other kind of theme!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-10-06 13:12:12\";s:7:\"package\";s:37:\"Architecture Website Template Package\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:77:\"A Beautiful Way to Showcase Your Best Work for Prospective Clients [Tutorial]\";s:9:\"guide_url\";s:110:\"https://www.sliderrevolution.com/tutorials/a-beautiful-way-to-showcase-your-best-work-for-prospective-clients/\";s:9:\"guide_img\";s:42:\"tutorial/Architecture-Website-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"59\";s:9:\"installed\";b:0;}i:631;a:28:{s:2:\"id\";s:3:\"687\";s:5:\"title\";s:23:\"Architecture Text Block\";s:5:\"alias\";s:23:\"architecture-text-block\";s:3:\"zip\";s:33:\"packs/architecture-text-block.zip\";s:3:\"uid\";s:32:\"c130dd8a5faf7c292c54b99c82226c72\";s:3:\"img\";s:34:\"architecture-text-block/slide1.jpg\";s:7:\"preview\";s:171:\"https://www.sliderrevolution.com/templates/architecture-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=architecture-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.6.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:272:\"<span class=\"ttm_content\">The architecture website template offers a modern, visually appealing one-page layout with flexible customization options. This is not just a real estate website, but can also fit for any other kind of theme!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-10-06 13:15:46\";s:7:\"package\";s:37:\"Architecture Website Template Package\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:77:\"A Beautiful Way to Showcase Your Best Work for Prospective Clients [Tutorial]\";s:9:\"guide_url\";s:110:\"https://www.sliderrevolution.com/tutorials/a-beautiful-way-to-showcase-your-best-work-for-prospective-clients/\";s:9:\"guide_img\";s:42:\"tutorial/Architecture-Website-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"59\";s:9:\"installed\";b:0;}i:632;a:28:{s:2:\"id\";s:3:\"688\";s:5:\"title\";s:18:\"Architecture About\";s:5:\"alias\";s:18:\"architecture-about\";s:3:\"zip\";s:28:\"packs/architecture-about.zip\";s:3:\"uid\";s:32:\"5f589ec1e639ed4aa9b44542659cb2e9\";s:3:\"img\";s:29:\"architecture-about/slide1.jpg\";s:7:\"preview\";s:171:\"https://www.sliderrevolution.com/templates/architecture-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=architecture-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.6.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:272:\"<span class=\"ttm_content\">The architecture website template offers a modern, visually appealing one-page layout with flexible customization options. This is not just a real estate website, but can also fit for any other kind of theme!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-10-06 13:17:04\";s:7:\"package\";s:37:\"Architecture Website Template Package\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:77:\"A Beautiful Way to Showcase Your Best Work for Prospective Clients [Tutorial]\";s:9:\"guide_url\";s:110:\"https://www.sliderrevolution.com/tutorials/a-beautiful-way-to-showcase-your-best-work-for-prospective-clients/\";s:9:\"guide_img\";s:42:\"tutorial/Architecture-Website-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"59\";s:9:\"installed\";b:0;}i:633;a:28:{s:2:\"id\";s:3:\"689\";s:5:\"title\";s:26:\"Architecture Process Title\";s:5:\"alias\";s:26:\"architecture-process-title\";s:3:\"zip\";s:36:\"packs/architecture-process-title.zip\";s:3:\"uid\";s:32:\"6ca17bec2dc410a6c8a80a138c603a3c\";s:3:\"img\";s:37:\"architecture-process-title/slide1.jpg\";s:7:\"preview\";s:171:\"https://www.sliderrevolution.com/templates/architecture-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=architecture-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.6.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:272:\"<span class=\"ttm_content\">The architecture website template offers a modern, visually appealing one-page layout with flexible customization options. This is not just a real estate website, but can also fit for any other kind of theme!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-10-06 13:18:48\";s:7:\"package\";s:37:\"Architecture Website Template Package\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:77:\"A Beautiful Way to Showcase Your Best Work for Prospective Clients [Tutorial]\";s:9:\"guide_url\";s:110:\"https://www.sliderrevolution.com/tutorials/a-beautiful-way-to-showcase-your-best-work-for-prospective-clients/\";s:9:\"guide_img\";s:42:\"tutorial/Architecture-Website-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"59\";s:9:\"installed\";b:0;}i:634;a:28:{s:2:\"id\";s:3:\"690\";s:5:\"title\";s:20:\"Architecture Process\";s:5:\"alias\";s:20:\"architecture-process\";s:3:\"zip\";s:30:\"packs/architecture-process.zip\";s:3:\"uid\";s:32:\"df6202f061079192fde61c7756624c6c\";s:3:\"img\";s:31:\"architecture-process/slide1.jpg\";s:7:\"preview\";s:171:\"https://www.sliderrevolution.com/templates/architecture-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=architecture-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.6.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:272:\"<span class=\"ttm_content\">The architecture website template offers a modern, visually appealing one-page layout with flexible customization options. This is not just a real estate website, but can also fit for any other kind of theme!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-10-06 13:20:31\";s:7:\"package\";s:37:\"Architecture Website Template Package\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:77:\"A Beautiful Way to Showcase Your Best Work for Prospective Clients [Tutorial]\";s:9:\"guide_url\";s:110:\"https://www.sliderrevolution.com/tutorials/a-beautiful-way-to-showcase-your-best-work-for-prospective-clients/\";s:9:\"guide_img\";s:42:\"tutorial/Architecture-Website-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"59\";s:9:\"installed\";b:0;}i:635;a:28:{s:2:\"id\";s:3:\"691\";s:5:\"title\";s:22:\"Architecture Portfolio\";s:5:\"alias\";s:22:\"architecture-portfolio\";s:3:\"zip\";s:32:\"packs/architecture-portfolio.zip\";s:3:\"uid\";s:32:\"444b7a502897a53a16eea5ec3cb7f08c\";s:3:\"img\";s:33:\"architecture-portfolio/slide1.jpg\";s:7:\"preview\";s:171:\"https://www.sliderrevolution.com/templates/architecture-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=architecture-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.6.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:272:\"<span class=\"ttm_content\">The architecture website template offers a modern, visually appealing one-page layout with flexible customization options. This is not just a real estate website, but can also fit for any other kind of theme!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-10-06 13:22:15\";s:7:\"package\";s:37:\"Architecture Website Template Package\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:77:\"A Beautiful Way to Showcase Your Best Work for Prospective Clients [Tutorial]\";s:9:\"guide_url\";s:110:\"https://www.sliderrevolution.com/tutorials/a-beautiful-way-to-showcase-your-best-work-for-prospective-clients/\";s:9:\"guide_img\";s:42:\"tutorial/Architecture-Website-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"59\";s:9:\"installed\";b:0;}i:636;a:28:{s:2:\"id\";s:3:\"692\";s:5:\"title\";s:28:\"Architecture Portfolio Modal\";s:5:\"alias\";s:28:\"architecture-portfolio-modal\";s:3:\"zip\";s:38:\"packs/architecture-portfolio-modal.zip\";s:3:\"uid\";s:32:\"59994ba13c87a5409d75fdcbc7f58005\";s:3:\"img\";s:39:\"architecture-portfolio-modal/slide1.jpg\";s:7:\"preview\";s:171:\"https://www.sliderrevolution.com/templates/architecture-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=architecture-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.6.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:272:\"<span class=\"ttm_content\">The architecture website template offers a modern, visually appealing one-page layout with flexible customization options. This is not just a real estate website, but can also fit for any other kind of theme!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-10-06 13:23:38\";s:7:\"package\";s:37:\"Architecture Website Template Package\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:77:\"A Beautiful Way to Showcase Your Best Work for Prospective Clients [Tutorial]\";s:9:\"guide_url\";s:110:\"https://www.sliderrevolution.com/tutorials/a-beautiful-way-to-showcase-your-best-work-for-prospective-clients/\";s:9:\"guide_img\";s:42:\"tutorial/Architecture-Website-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"59\";s:9:\"installed\";b:0;}i:637;a:28:{s:2:\"id\";s:3:\"693\";s:5:\"title\";s:20:\"Architecture Contact\";s:5:\"alias\";s:20:\"architecture-contact\";s:3:\"zip\";s:30:\"packs/architecture-contact.zip\";s:3:\"uid\";s:32:\"b1ff4cf0d6530d79f7d67540ffdcd98d\";s:3:\"img\";s:31:\"architecture-contact/slide1.jpg\";s:7:\"preview\";s:171:\"https://www.sliderrevolution.com/templates/architecture-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=architecture-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.6.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:272:\"<span class=\"ttm_content\">The architecture website template offers a modern, visually appealing one-page layout with flexible customization options. This is not just a real estate website, but can also fit for any other kind of theme!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-10-06 13:25:49\";s:7:\"package\";s:37:\"Architecture Website Template Package\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:77:\"A Beautiful Way to Showcase Your Best Work for Prospective Clients [Tutorial]\";s:9:\"guide_url\";s:110:\"https://www.sliderrevolution.com/tutorials/a-beautiful-way-to-showcase-your-best-work-for-prospective-clients/\";s:9:\"guide_img\";s:42:\"tutorial/Architecture-Website-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"59\";s:9:\"installed\";b:0;}i:638;a:24:{s:2:\"id\";s:3:\"694\";s:5:\"title\";s:23:\"Image Comparison Slider\";s:5:\"alias\";s:23:\"image-comparison-slider\";s:3:\"zip\";s:27:\"image-comparison-slider.zip\";s:3:\"uid\";s:32:\"c5af5832be50fc581c3a5ae31b09e5ab\";s:3:\"img\";s:34:\"image-comparison-slider/slide1.jpg\";s:7:\"preview\";s:159:\"https://www.sliderrevolution.com/templates/image-comparison-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=image-comparison-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.6.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:254:\"<span class=\"ttm_content\">Create amazing before and after animations for your website with the image comparison slider template. We made sure to include multiple exciting examples for you to customize to your liking.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:363:\"[{\"path\":\"revslider-beforeafter-addon\\/revslider-beforeafter-addon.php\",\"name\":\"Before After AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-11-18 11:13:19\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:66:\"Boost Interactions with a Before-and-After Image Slider [Tutorial]\";s:9:\"guide_url\";s:99:\"https://www.sliderrevolution.com/tutorials/boost-interactions-with-a-before-and-after-image-slider/\";s:9:\"guide_img\";s:36:\"tutorial/image-comparison-slider.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:639;a:27:{s:2:\"id\";s:3:\"695\";s:5:\"title\";s:37:\"Wedding Photo Slider Template Package\";s:5:\"alias\";s:37:\"wedding-photo-slider-template-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:37:\"wedding-photo-slider-template-package\";s:3:\"img\";s:41:\"packages/Wedding-Photo-Slider-Package.jpg\";s:7:\"preview\";s:153:\"https://www.sliderrevolution.com/templates/wedding-photo-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wedding-photo-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.6.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:300:\"<span class=\"ttm_content\">This WordPress photo slider template offers many interesting features to elevate your photography website. The main slider rotates through your photo highlights and a click of the button reveals a lightbox carousel with masonry layout. </span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:3:{i:0;s:8:\"carousel\";i:1;s:6:\"slider\";i:2;s:4:\"hero\";}s:14:\"plugin_require\";s:363:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-11-18 11:19:04\";s:7:\"package\";s:37:\"Wedding Photo Slider Template Package\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:68:\"Create a Beautiful Photo Slider for Your Personal Website [Tutorial]\";s:9:\"guide_url\";s:101:\"https://www.sliderrevolution.com/tutorials/create-a-beautiful-photo-slider-for-your-personal-website/\";s:9:\"guide_img\";s:33:\"tutorial/Wedding-Photo-Slider.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"60\";s:9:\"installed\";b:0;}i:640;a:27:{s:2:\"id\";s:3:\"696\";s:5:\"title\";s:20:\"Wedding Photo Slider\";s:5:\"alias\";s:20:\"wedding-photo-slider\";s:3:\"zip\";s:30:\"packs/wedding-photo-slider.zip\";s:3:\"uid\";s:32:\"490b30ad46586bbf7034e50651b248a7\";s:3:\"img\";s:31:\"wedding-photo-slider/slide1.jpg\";s:7:\"preview\";s:153:\"https://www.sliderrevolution.com/templates/wedding-photo-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wedding-photo-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.6.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:299:\"<span class=\"ttm_content\">This WordPress photo slider template offers many interesting features to elevate your photography website. The main slider rotates through your photo highlights and a click of the button reveals a lightbox carousel with masonry layout.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:6:\"slider\";}s:14:\"plugin_require\";s:363:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-11-18 11:24:38\";s:7:\"package\";s:37:\"Wedding Photo Slider Template Package\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:68:\"Create a Beautiful Photo Slider for Your Personal Website [Tutorial]\";s:9:\"guide_url\";s:101:\"https://www.sliderrevolution.com/tutorials/create-a-beautiful-photo-slider-for-your-personal-website/\";s:9:\"guide_img\";s:33:\"tutorial/Wedding-Photo-Slider.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"60\";s:9:\"installed\";b:0;}i:641;a:27:{s:2:\"id\";s:3:\"697\";s:5:\"title\";s:26:\"Wedding Photo Slider Modal\";s:5:\"alias\";s:26:\"wedding-photo-slider-modal\";s:3:\"zip\";s:36:\"packs/wedding-photo-slider-modal.zip\";s:3:\"uid\";s:32:\"56b40b3a73b786f5320f8814cddd3fda\";s:3:\"img\";s:37:\"wedding-photo-slider-modal/slide1.jpg\";s:7:\"preview\";s:153:\"https://www.sliderrevolution.com/templates/wedding-photo-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wedding-photo-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.6.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:299:\"<span class=\"ttm_content\">This WordPress photo slider template offers many interesting features to elevate your photography website. The main slider rotates through your photo highlights and a click of the button reveals a lightbox carousel with masonry layout.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:363:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-11-18 11:27:53\";s:7:\"package\";s:37:\"Wedding Photo Slider Template Package\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:68:\"Create a Beautiful Photo Slider for Your Personal Website [Tutorial]\";s:9:\"guide_url\";s:101:\"https://www.sliderrevolution.com/tutorials/create-a-beautiful-photo-slider-for-your-personal-website/\";s:9:\"guide_img\";s:33:\"tutorial/Wedding-Photo-Slider.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"60\";s:9:\"installed\";b:0;}i:642;a:24:{s:2:\"id\";s:3:\"698\";s:5:\"title\";s:25:\"Travel Agency Card Slider\";s:5:\"alias\";s:24:\"destinations-card-slider\";s:3:\"zip\";s:28:\"destinations-card-slider.zip\";s:3:\"uid\";s:32:\"59af2d3ac72375f6764f224d93d600ac\";s:3:\"img\";s:35:\"destinations-card-slider/slide1.jpg\";s:7:\"preview\";s:163:\"https://www.sliderrevolution.com/templates/travel-agency-card-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=travel-agency-card-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.6.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The destination of your travel blog or travel booking website, definitely is \"above & beyond\" with this tastefully modern card slider template for Slider Revolution.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-11-18 11:31:52\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:84:\"How to Make Your Product Comparison Pages More Attractive and Trustworthy [Tutorial]\";s:9:\"guide_url\";s:117:\"https://www.sliderrevolution.com/tutorials/how-to-make-your-product-comparison-pages-more-attractive-and-trustworthy/\";s:9:\"guide_img\";s:37:\"tutorial/destinations-card-slider.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:643;a:24:{s:2:\"id\";s:3:\"699\";s:5:\"title\";s:29:\"Kitchen Knives Product Slider\";s:5:\"alias\";s:21:\"knives-product-slider\";s:3:\"zip\";s:25:\"knives-product-slider.zip\";s:3:\"uid\";s:32:\"b1d2db8fcd3e6bb1e949d00c90fd6ec0\";s:3:\"img\";s:32:\"knives-product-slider/slide1.jpg\";s:7:\"preview\";s:171:\"https://www.sliderrevolution.com/templates/kitchen-knives-product-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=kitchen-knives-product-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.6.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:281:\"<span class=\"ttm_content\">Even if you\'re not into the knives selling business, this product slider template is easily customized to fit any use-case. The beautifully animated parallax elements, can be replaced with your own .png\'s, in no time!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:189:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-11-18 11:34:48\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:80:\"How to Promote Subscription Boxes with a Unique Product Slider Design [Tutorial]\";s:9:\"guide_url\";s:113:\"https://www.sliderrevolution.com/tutorials/how-to-promote-subscription-boxes-with-a-unique-product-slider-design/\";s:9:\"guide_img\";s:34:\"tutorial/knives-product-slider.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:644;a:25:{s:2:\"id\";s:3:\"700\";s:5:\"title\";s:16:\"Tiny Slider Dark\";s:5:\"alias\";s:16:\"tiny-slider-dark\";s:3:\"zip\";s:20:\"tiny-slider-dark.zip\";s:3:\"uid\";s:32:\"57f5cd4e698621f5b7e09bc0bb172d72\";s:3:\"img\";s:27:\"tiny-slider-dark/slide1.jpg\";s:7:\"preview\";s:163:\"https://www.sliderrevolution.com/templates/event-booking-tiny-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=event-booking-tiny-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.6.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:301:\"<span class=\"ttm_content\">The Event Booking Tiny Slider is a compact and stylish way to promote your events on your website or social media. With this template, you can create a sleek and minimalistic slider featuring your upcoming events and booking information.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-12-20 13:51:32\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:70:\"How to Design an Event Booking Page That Sells More Tickets [Tutorial]\";s:9:\"guide_url\";s:103:\"https://www.sliderrevolution.com/tutorials/how-to-design-an-event-booking-page-that-sells-more-tickets/\";s:9:\"guide_img\";s:29:\"tutorial/tiny-slider-dark.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:645;a:25:{s:2:\"id\";s:3:\"701\";s:5:\"title\";s:17:\"Tiny Slider Light\";s:5:\"alias\";s:17:\"tiny-slider-light\";s:3:\"zip\";s:21:\"tiny-slider-light.zip\";s:3:\"uid\";s:32:\"67e9640a0dd7ac7c04342a323abb054a\";s:3:\"img\";s:28:\"tiny-slider-light/slide1.jpg\";s:7:\"preview\";s:163:\"https://www.sliderrevolution.com/templates/event-booking-tiny-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=event-booking-tiny-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.6.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:301:\"<span class=\"ttm_content\">The Event Booking Tiny Slider is a compact and stylish way to promote your events on your website or social media. With this template, you can create a sleek and minimalistic slider featuring your upcoming events and booking information.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-12-20 13:56:22\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:646;a:25:{s:2:\"id\";s:3:\"702\";s:5:\"title\";s:24:\"Pet Store Product Slider\";s:5:\"alias\";s:24:\"pet-store-product-slider\";s:3:\"zip\";s:28:\"pet-store-product-slider.zip\";s:3:\"uid\";s:32:\"6f847227958900311108951a77721e29\";s:3:\"img\";s:35:\"pet-store-product-slider/slide1.jpg\";s:7:\"preview\";s:161:\"https://www.sliderrevolution.com/templates/pet-store-product-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=pet-store-product-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.6.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:328:\"<span class=\"ttm_content\">The Pet Store Product Slider template is a professional and eye-catching way to showcase your pet store\'s products on your website or social media. With this template, you can easily create a dynamic and interactive slider featuring your most popular pet products.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-12-20 14:02:59\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:75:\"How to Design More Engaging Product Pages for eCommerce Websites [Tutorial]\";s:9:\"guide_url\";s:108:\"https://www.sliderrevolution.com/tutorials/how-to-design-more-engaging-product-pages-for-ecommerce-websites/\";s:9:\"guide_img\";s:37:\"tutorial/pet-store-product-slider.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:647;a:24:{s:2:\"id\";s:3:\"703\";s:5:\"title\";s:18:\"Material UI Slider\";s:5:\"alias\";s:18:\"material-ui-slider\";s:3:\"zip\";s:22:\"material-ui-slider.zip\";s:3:\"uid\";s:32:\"7e7909a030545f80c8ba8101c5b9bbd7\";s:3:\"img\";s:29:\"material-ui-slider/slide1.jpg\";s:7:\"preview\";s:149:\"https://www.sliderrevolution.com/templates/material-ui-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=material-ui-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.6.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:299:\"<span class=\"ttm_content\">The Material UI Slider Template is easy to use and requires no coding skills. You can quickly and easily create a professional-looking slider to showcase your products, services, or information in a visually appealing and engaging way.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:190:\"[{\"path\":\"revslider-thecluster-addon\\/revslider-thecluster-addon.php\",\"name\":\"Slider Revolution The Cluster AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-12-20 14:06:25\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:74:\"How to Promote Your Digital Agency’s Services in a Unique Way [Tutorial]\";s:9:\"guide_url\";s:105:\"https://www.sliderrevolution.com/tutorials/how-to-promote-your-digital-agency-s-services-in-a-unique-way/\";s:9:\"guide_img\";s:31:\"tutorial/material-ui-slider.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:648;a:25:{s:2:\"id\";s:3:\"704\";s:5:\"title\";s:19:\"Happy Holidays Hero\";s:5:\"alias\";s:19:\"happy-holidays-hero\";s:3:\"zip\";s:23:\"happy-holidays-hero.zip\";s:3:\"uid\";s:32:\"aabe32f963bc66d36f617c595ca2f1fd\";s:3:\"img\";s:30:\"happy-holidays-hero/slide1.jpg\";s:7:\"preview\";s:151:\"https://www.sliderrevolution.com/templates/happy-holidays-hero/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=happy-holidays-hero\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.6.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:141:\"<span class=\"ttm_content\">Wish everyone happy holidays with our newest Christmas inspired hero section.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:366:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-particlewave-addon\\/revslider-particlewave-addon.php\",\"name\":\"Particle Wave AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-12-22 09:27:59\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:76:\"How to Create a Hero Image Template to Use for Holidays and Sales [Tutorial]\";s:9:\"guide_url\";s:109:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-hero-image-template-to-use-for-holidays-and-sales/\";s:9:\"guide_img\";s:32:\"tutorial/happy-holidays-hero.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:649;a:24:{s:2:\"id\";s:3:\"705\";s:5:\"title\";s:34:\"Space & Sci-Fi Presentation Slider\";s:5:\"alias\";s:36:\"space-and-sci-fi-presentation-slider\";s:3:\"zip\";s:40:\"space-and-sci-fi-presentation-slider.zip\";s:3:\"uid\";s:32:\"6f8a89cfaa624a4ac799901fc85b802d\";s:3:\"img\";s:47:\"space-and-sci-fi-presentation-slider/slide1.png\";s:7:\"preview\";s:177:\"https://www.sliderrevolution.com/templates/space-sci-fi-presentation-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=space-sci-fi-presentation-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.6.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">This is a perfect choice for technology companies, science fiction writers, space enthusiasts and much more.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:10:\"Special FX\";}s:14:\"plugin_require\";s:356:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-01-24 12:57:45\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:86:\"How to Transport Your Visitors to Another Time or Place with Layered Images [Tutorial]\";s:9:\"guide_url\";s:119:\"https://www.sliderrevolution.com/tutorials/how-to-transport-your-visitors-to-another-time-or-place-with-layered-images/\";s:9:\"guide_img\";s:49:\"tutorial/space-and-sci-fi-presentation-slider.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:650;a:24:{s:2:\"id\";s:3:\"706\";s:5:\"title\";s:21:\"Claymorphism Carousel\";s:5:\"alias\";s:21:\"Claymorphism-Carousel\";s:3:\"zip\";s:25:\"Claymorphism-Carousel.zip\";s:3:\"uid\";s:32:\"8faec9adf09737acd8efdad7a1ccb673\";s:3:\"img\";s:32:\"Claymorphism-Carousel/slide1.jpg\";s:7:\"preview\";s:155:\"https://www.sliderrevolution.com/templates/claymorphism-carousel/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=claymorphism-carousel\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.6.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:195:\"<span class=\"ttm_content\">The Claymorphism Carousel template for Slider Revolution is a visually striking slider that features the unique claymorphism style.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2023-01-24 13:01:22\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:69:\"How to Create a 3D Space for Your Portfolio Highlight Reel [Tutorial]\";s:9:\"guide_url\";s:102:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-3d-space-for-your-portfolio-highlight-reel/\";s:9:\"guide_img\";s:37:\"tutorial/startup-website-template.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:651;a:24:{s:2:\"id\";s:3:\"707\";s:5:\"title\";s:24:\"404 Page Hero Collection\";s:5:\"alias\";s:24:\"404-page-hero-collection\";s:3:\"zip\";s:28:\"404-page-hero-collection.zip\";s:3:\"uid\";s:32:\"a614db3d61935fdf249d7de2ff1f2d8f\";s:3:\"img\";s:35:\"404-page-hero-collection/slide1.jpg\";s:7:\"preview\";s:161:\"https://www.sliderrevolution.com/templates/404-page-hero-collection/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=404-page-hero-collection\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.11\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:212:\"<span class=\"ttm_content\">With the 404 Page Hero Collection template for Slider Revolution, you have several creative solutions at your disposal, to make your 404 page shine!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:356:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-02-22 16:28:44\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:652;a:24:{s:2:\"id\";s:3:\"708\";s:5:\"title\";s:32:\"Furniture Store Isometric Slider\";s:5:\"alias\";s:32:\"furniture-store-isometric-slider\";s:3:\"zip\";s:36:\"furniture-store-isometric-slider.zip\";s:3:\"uid\";s:32:\"385f8e4dac9f84ea72388f656b200251\";s:3:\"img\";s:43:\"furniture-store-isometric-slider/slide1.jpg\";s:7:\"preview\";s:177:\"https://www.sliderrevolution.com/templates/furniture-store-isometric-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=furniture-store-isometric-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.11\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:256:\"<span class=\"ttm_content\">A furniture store slider template with stunning and versatile visuals! With bold and beautiful 3D isometric graphics, it\'s the perfect way to showcase modern furniture pieces and room designs.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-02-22 16:35:11\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:653;a:27:{s:2:\"id\";s:3:\"709\";s:5:\"title\";s:36:\"Woodworking Website Template Package\";s:5:\"alias\";s:36:\"woodworking-website-template-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:36:\"woodworking-website-template-package\";s:3:\"img\";s:41:\"packages/Woodworking-Website-Template.jpg\";s:7:\"preview\";s:169:\"https://www.sliderrevolution.com/templates/woodworking-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=woodworking-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.11\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:434:\"<span class=\"ttm_content\">A beautifully crafted, user-friendly, and visually stunning template that is perfect for both professional woodworkers and woodworking enthusiasts alike. This template has been meticulously designed to showcase your skills, projects, and products in a captivating and engaging manner, allowing you to create an online presence that truly stands out from the competition.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-03-15 10:54:05\";s:7:\"package\";s:36:\"Woodworking Website Template Package\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:70:\"How to Create a 3D Product Carousel for Your eCommerce Site [Tutorial]\";s:9:\"guide_url\";s:103:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-3d-product-carousel-for-your-ecommerce-site/\";s:9:\"guide_img\";s:41:\"tutorial/Woodworking-Website-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"61\";s:9:\"installed\";b:0;}i:654;a:27:{s:2:\"id\";s:3:\"710\";s:5:\"title\";s:22:\"Wood Art One Page Hero\";s:5:\"alias\";s:22:\"wood-art-one-page-hero\";s:3:\"zip\";s:32:\"packs/wood-art-one-page-hero.zip\";s:3:\"uid\";s:32:\"4236270d46058389ddb032f6c68d63dc\";s:3:\"img\";s:33:\"wood-art-one-page-hero/slide1.jpg\";s:7:\"preview\";s:169:\"https://www.sliderrevolution.com/templates/woodworking-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=woodworking-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.11\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:434:\"<span class=\"ttm_content\">A beautifully crafted, user-friendly, and visually stunning template that is perfect for both professional woodworkers and woodworking enthusiasts alike. This template has been meticulously designed to showcase your skills, projects, and products in a captivating and engaging manner, allowing you to create an online presence that truly stands out from the competition.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-03-15 11:15:10\";s:7:\"package\";s:36:\"Woodworking Website Template Package\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:70:\"How to Create a 3D Product Carousel for Your eCommerce Site [Tutorial]\";s:9:\"guide_url\";s:103:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-3d-product-carousel-for-your-ecommerce-site/\";s:9:\"guide_img\";s:41:\"tutorial/Woodworking-Website-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"61\";s:9:\"installed\";b:0;}i:655;a:27:{s:2:\"id\";s:3:\"711\";s:5:\"title\";s:23:\"Wood Art One Page About\";s:5:\"alias\";s:23:\"wood-art-one-page-about\";s:3:\"zip\";s:33:\"packs/wood-art-one-page-about.zip\";s:3:\"uid\";s:32:\"c14fe92fa107d914dab4826681db8d1d\";s:3:\"img\";s:34:\"wood-art-one-page-about/slide1.jpg\";s:7:\"preview\";s:169:\"https://www.sliderrevolution.com/templates/woodworking-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=woodworking-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.11\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:434:\"<span class=\"ttm_content\">A beautifully crafted, user-friendly, and visually stunning template that is perfect for both professional woodworkers and woodworking enthusiasts alike. This template has been meticulously designed to showcase your skills, projects, and products in a captivating and engaging manner, allowing you to create an online presence that truly stands out from the competition.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-03-15 11:19:12\";s:7:\"package\";s:36:\"Woodworking Website Template Package\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:70:\"How to Create a 3D Product Carousel for Your eCommerce Site [Tutorial]\";s:9:\"guide_url\";s:103:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-3d-product-carousel-for-your-ecommerce-site/\";s:9:\"guide_img\";s:41:\"tutorial/Woodworking-Website-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"61\";s:9:\"installed\";b:0;}i:656;a:27:{s:2:\"id\";s:3:\"712\";s:5:\"title\";s:22:\"Wood Art One Page Work\";s:5:\"alias\";s:22:\"wood-art-one-page-work\";s:3:\"zip\";s:32:\"packs/wood-art-one-page-work.zip\";s:3:\"uid\";s:32:\"a5d98ff9e7ecc52e9c8f5cb69e13fab9\";s:3:\"img\";s:33:\"wood-art-one-page-work/slide1.jpg\";s:7:\"preview\";s:169:\"https://www.sliderrevolution.com/templates/woodworking-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=woodworking-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.11\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:434:\"<span class=\"ttm_content\">A beautifully crafted, user-friendly, and visually stunning template that is perfect for both professional woodworkers and woodworking enthusiasts alike. This template has been meticulously designed to showcase your skills, projects, and products in a captivating and engaging manner, allowing you to create an online presence that truly stands out from the competition.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2023-03-15 11:23:03\";s:7:\"package\";s:36:\"Woodworking Website Template Package\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:70:\"How to Create a 3D Product Carousel for Your eCommerce Site [Tutorial]\";s:9:\"guide_url\";s:103:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-3d-product-carousel-for-your-ecommerce-site/\";s:9:\"guide_img\";s:41:\"tutorial/Woodworking-Website-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"61\";s:9:\"installed\";b:0;}i:657;a:27:{s:2:\"id\";s:3:\"713\";s:5:\"title\";s:30:\"Wood Art One Page Testimonials\";s:5:\"alias\";s:30:\"wood-art-one-page-testimonials\";s:3:\"zip\";s:40:\"packs/wood-art-one-page-testimonials.zip\";s:3:\"uid\";s:32:\"10cc4a93223c739cdd72a6f29ddfdbdc\";s:3:\"img\";s:41:\"wood-art-one-page-testimonials/slide1.jpg\";s:7:\"preview\";s:169:\"https://www.sliderrevolution.com/templates/woodworking-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=woodworking-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.11\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:434:\"<span class=\"ttm_content\">A beautifully crafted, user-friendly, and visually stunning template that is perfect for both professional woodworkers and woodworking enthusiasts alike. This template has been meticulously designed to showcase your skills, projects, and products in a captivating and engaging manner, allowing you to create an online presence that truly stands out from the competition.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-03-15 11:32:12\";s:7:\"package\";s:36:\"Woodworking Website Template Package\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:70:\"How to Create a 3D Product Carousel for Your eCommerce Site [Tutorial]\";s:9:\"guide_url\";s:103:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-3d-product-carousel-for-your-ecommerce-site/\";s:9:\"guide_img\";s:41:\"tutorial/Woodworking-Website-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"61\";s:9:\"installed\";b:0;}i:658;a:27:{s:2:\"id\";s:3:\"714\";s:5:\"title\";s:24:\"Wood Art One Page Events\";s:5:\"alias\";s:24:\"wood-art-one-page-events\";s:3:\"zip\";s:34:\"packs/wood-art-one-page-events.zip\";s:3:\"uid\";s:32:\"caf1318cca92472611d1bff75de2834e\";s:3:\"img\";s:35:\"wood-art-one-page-events/slide1.jpg\";s:7:\"preview\";s:169:\"https://www.sliderrevolution.com/templates/woodworking-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=woodworking-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.11\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:434:\"<span class=\"ttm_content\">A beautifully crafted, user-friendly, and visually stunning template that is perfect for both professional woodworkers and woodworking enthusiasts alike. This template has been meticulously designed to showcase your skills, projects, and products in a captivating and engaging manner, allowing you to create an online presence that truly stands out from the competition.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-03-15 11:35:58\";s:7:\"package\";s:36:\"Woodworking Website Template Package\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:70:\"How to Create a 3D Product Carousel for Your eCommerce Site [Tutorial]\";s:9:\"guide_url\";s:103:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-3d-product-carousel-for-your-ecommerce-site/\";s:9:\"guide_img\";s:41:\"tutorial/Woodworking-Website-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"61\";s:9:\"installed\";b:0;}i:659;a:27:{s:2:\"id\";s:3:\"715\";s:5:\"title\";s:24:\"Wood Art One Page Footer\";s:5:\"alias\";s:24:\"wood-art-one-page-footer\";s:3:\"zip\";s:34:\"packs/wood-art-one-page-footer.zip\";s:3:\"uid\";s:32:\"096eb58a1bdc1da5f228ee26f44cc35e\";s:3:\"img\";s:35:\"wood-art-one-page-footer/slide1.jpg\";s:7:\"preview\";s:169:\"https://www.sliderrevolution.com/templates/woodworking-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=woodworking-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.11\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:434:\"<span class=\"ttm_content\">A beautifully crafted, user-friendly, and visually stunning template that is perfect for both professional woodworkers and woodworking enthusiasts alike. This template has been meticulously designed to showcase your skills, projects, and products in a captivating and engaging manner, allowing you to create an online presence that truly stands out from the competition.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-03-15 11:38:37\";s:7:\"package\";s:36:\"Woodworking Website Template Package\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:70:\"How to Create a 3D Product Carousel for Your eCommerce Site [Tutorial]\";s:9:\"guide_url\";s:103:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-3d-product-carousel-for-your-ecommerce-site/\";s:9:\"guide_img\";s:41:\"tutorial/Woodworking-Website-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"61\";s:9:\"installed\";b:0;}i:660;a:27:{s:2:\"id\";s:3:\"716\";s:5:\"title\";s:27:\"Wood Art One Page Gallery 1\";s:5:\"alias\";s:26:\"wood-art-one-page-gallery1\";s:3:\"zip\";s:36:\"packs/wood-art-one-page-gallery1.zip\";s:3:\"uid\";s:32:\"9692c155e32743e6ad5656ff98fc1854\";s:3:\"img\";s:37:\"wood-art-one-page-gallery1/slide1.jpg\";s:7:\"preview\";s:169:\"https://www.sliderrevolution.com/templates/woodworking-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=woodworking-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.11\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:434:\"<span class=\"ttm_content\">A beautifully crafted, user-friendly, and visually stunning template that is perfect for both professional woodworkers and woodworking enthusiasts alike. This template has been meticulously designed to showcase your skills, projects, and products in a captivating and engaging manner, allowing you to create an online presence that truly stands out from the competition.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2023-03-15 11:43:14\";s:7:\"package\";s:36:\"Woodworking Website Template Package\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:70:\"How to Create a 3D Product Carousel for Your eCommerce Site [Tutorial]\";s:9:\"guide_url\";s:103:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-3d-product-carousel-for-your-ecommerce-site/\";s:9:\"guide_img\";s:41:\"tutorial/Woodworking-Website-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"61\";s:9:\"installed\";b:0;}i:661;a:27:{s:2:\"id\";s:3:\"717\";s:5:\"title\";s:27:\"Wood Art One Page Gallery 2\";s:5:\"alias\";s:26:\"wood-art-one-page-gallery2\";s:3:\"zip\";s:36:\"packs/wood-art-one-page-gallery2.zip\";s:3:\"uid\";s:32:\"63487dd51eb68d1f748cbdc01d1659aa\";s:3:\"img\";s:37:\"wood-art-one-page-gallery2/slide1.jpg\";s:7:\"preview\";s:169:\"https://www.sliderrevolution.com/templates/woodworking-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=woodworking-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.11\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:434:\"<span class=\"ttm_content\">A beautifully crafted, user-friendly, and visually stunning template that is perfect for both professional woodworkers and woodworking enthusiasts alike. This template has been meticulously designed to showcase your skills, projects, and products in a captivating and engaging manner, allowing you to create an online presence that truly stands out from the competition.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2023-03-15 11:46:52\";s:7:\"package\";s:36:\"Woodworking Website Template Package\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:70:\"How to Create a 3D Product Carousel for Your eCommerce Site [Tutorial]\";s:9:\"guide_url\";s:103:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-3d-product-carousel-for-your-ecommerce-site/\";s:9:\"guide_img\";s:41:\"tutorial/Woodworking-Website-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"61\";s:9:\"installed\";b:0;}i:662;a:27:{s:2:\"id\";s:3:\"718\";s:5:\"title\";s:27:\"Wood Art One Page Gallery 3\";s:5:\"alias\";s:26:\"wood-art-one-page-gallery3\";s:3:\"zip\";s:36:\"packs/wood-art-one-page-gallery3.zip\";s:3:\"uid\";s:32:\"4d907965c605272fdb037aadd150e533\";s:3:\"img\";s:37:\"wood-art-one-page-gallery3/slide1.jpg\";s:7:\"preview\";s:169:\"https://www.sliderrevolution.com/templates/woodworking-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=woodworking-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.11\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:434:\"<span class=\"ttm_content\">A beautifully crafted, user-friendly, and visually stunning template that is perfect for both professional woodworkers and woodworking enthusiasts alike. This template has been meticulously designed to showcase your skills, projects, and products in a captivating and engaging manner, allowing you to create an online presence that truly stands out from the competition.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2023-03-15 11:49:44\";s:7:\"package\";s:36:\"Woodworking Website Template Package\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:70:\"How to Create a 3D Product Carousel for Your eCommerce Site [Tutorial]\";s:9:\"guide_url\";s:103:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-3d-product-carousel-for-your-ecommerce-site/\";s:9:\"guide_img\";s:41:\"tutorial/Woodworking-Website-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"61\";s:9:\"installed\";b:0;}i:663;a:27:{s:2:\"id\";s:3:\"719\";s:5:\"title\";s:27:\"Wood Art One Page Gallery 4\";s:5:\"alias\";s:26:\"wood-art-one-page-gallery4\";s:3:\"zip\";s:36:\"packs/wood-art-one-page-gallery4.zip\";s:3:\"uid\";s:32:\"1ea74ff7001db07847cb98f505f62569\";s:3:\"img\";s:37:\"wood-art-one-page-gallery4/slide1.jpg\";s:7:\"preview\";s:169:\"https://www.sliderrevolution.com/templates/woodworking-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=woodworking-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.11\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:434:\"<span class=\"ttm_content\">A beautifully crafted, user-friendly, and visually stunning template that is perfect for both professional woodworkers and woodworking enthusiasts alike. This template has been meticulously designed to showcase your skills, projects, and products in a captivating and engaging manner, allowing you to create an online presence that truly stands out from the competition.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2023-03-15 11:53:19\";s:7:\"package\";s:36:\"Woodworking Website Template Package\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:70:\"How to Create a 3D Product Carousel for Your eCommerce Site [Tutorial]\";s:9:\"guide_url\";s:103:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-3d-product-carousel-for-your-ecommerce-site/\";s:9:\"guide_img\";s:41:\"tutorial/Woodworking-Website-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"61\";s:9:\"installed\";b:0;}i:664;a:27:{s:2:\"id\";s:3:\"720\";s:5:\"title\";s:27:\"Wood Art One Page Gallery 5\";s:5:\"alias\";s:26:\"wood-art-one-page-gallery5\";s:3:\"zip\";s:36:\"packs/wood-art-one-page-gallery5.zip\";s:3:\"uid\";s:32:\"f7c9b11f559f69fb2fdff1ca96ff9c4d\";s:3:\"img\";s:37:\"wood-art-one-page-gallery5/slide1.jpg\";s:7:\"preview\";s:169:\"https://www.sliderrevolution.com/templates/woodworking-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=woodworking-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.11\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:434:\"<span class=\"ttm_content\">A beautifully crafted, user-friendly, and visually stunning template that is perfect for both professional woodworkers and woodworking enthusiasts alike. This template has been meticulously designed to showcase your skills, projects, and products in a captivating and engaging manner, allowing you to create an online presence that truly stands out from the competition.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2023-03-15 11:56:28\";s:7:\"package\";s:36:\"Woodworking Website Template Package\";s:13:\"package_order\";s:2:\"10\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:70:\"How to Create a 3D Product Carousel for Your eCommerce Site [Tutorial]\";s:9:\"guide_url\";s:103:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-3d-product-carousel-for-your-ecommerce-site/\";s:9:\"guide_img\";s:41:\"tutorial/Woodworking-Website-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"61\";s:9:\"installed\";b:0;}i:665;a:24:{s:2:\"id\";s:3:\"721\";s:5:\"title\";s:35:\"Hero Template With Cursor Animation\";s:5:\"alias\";s:35:\"Hero-Template-With-Cursor-Animation\";s:3:\"zip\";s:39:\"Hero-Template-With-Cursor-Animation.zip\";s:3:\"uid\";s:32:\"a0b666db728eb8585980a43443fb30bf\";s:3:\"img\";s:46:\"Hero-Template-With-Cursor-Animation/slide1.jpg\";s:7:\"preview\";s:183:\"https://www.sliderrevolution.com/templates/hero-template-with-cursor-animation/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=hero-template-with-cursor-animation\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.11\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Elevate your website with our hero template that features a captivating cursor animation. Perfect for any website design project.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-03-28 11:18:43\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:65:\"How to Create a Mesmerizing Effect for Your Hero Image [Tutorial]\";s:9:\"guide_url\";s:98:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-mesmerizing-effect-for-your-hero-image/\";s:9:\"guide_img\";s:48:\"tutorial/Hero-Template-With-Cursor-Animation.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:666;a:25:{s:2:\"id\";s:3:\"722\";s:5:\"title\";s:26:\"Modern Hair Salon Showcase\";s:5:\"alias\";s:28:\"futuristic-hairstyles-slider\";s:3:\"zip\";s:32:\"futuristic-hairstyles-slider.zip\";s:3:\"uid\";s:32:\"29d22b07310f9f2a9e504f565bca3864\";s:3:\"img\";s:39:\"futuristic-hairstyles-slider/slide1.jpg\";s:7:\"preview\";s:165:\"https://www.sliderrevolution.com/templates/modern-hair-salon-showcase/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=modern-hair-salon-showcase\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.12\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:331:\"<span class=\"ttm_content\">Showcase your salon\'s unique services, talented stylists, and stunning transformations with high-quality images, videos, and testimonials. Engage your audience with interactive sliders, sleek animations, and an intuitive design that highlights your salon\'s expertise.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:356:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-04-17 11:43:56\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:81:\"A Creative Way to Display Different Options and Offerings on Your Site [Tutorial]\";s:9:\"guide_url\";s:114:\"https://www.sliderrevolution.com/tutorials/a-creative-way-to-display-different-options-and-offerings-on-your-site/\";s:9:\"guide_img\";s:41:\"tutorial/futuristic-hairstyles-slider.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:667;a:28:{s:2:\"id\";s:3:\"723\";s:5:\"title\";s:28:\"Instagram Gallery Carousel 1\";s:5:\"alias\";s:28:\"instagram-gallery-carousel-1\";s:3:\"zip\";s:32:\"instagram-gallery-carousel-1.zip\";s:3:\"uid\";s:32:\"28ab921107c8748e1f67185448e4488c\";s:3:\"img\";s:39:\"instagram-gallery-carousel-1/slide1.jpg\";s:7:\"preview\";s:161:\"https://www.sliderrevolution.com/templates/wordpress-image-carousel/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-image-carousel\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.12\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:178:\"<span class=\"ttm_content\">Effortlessly blend your website\'s visual content with your vibrant Instagram feed in a sleek, responsive carousel.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2023-04-17 11:49:21\";s:7:\"package\";s:31:\"Instagram Gallery Carousel Pack\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:70:\"How to Uniquely Display Your Instagram Feed on Your Website [Tutorial]\";s:9:\"guide_url\";s:103:\"https://www.sliderrevolution.com/tutorials/how-to-uniquely-display-your-instagram-feed-on-your-website/\";s:9:\"guide_img\";s:44:\"tutorial/Instagram-Gallery-Carousel-Pack.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"62\";s:9:\"installed\";b:0;}i:668;a:28:{s:2:\"id\";s:3:\"724\";s:5:\"title\";s:28:\"Instagram Gallery Carousel 2\";s:5:\"alias\";s:28:\"instagram-gallery-carousel-2\";s:3:\"zip\";s:32:\"instagram-gallery-carousel-2.zip\";s:3:\"uid\";s:32:\"b6508dd2b1621eb44fc191906712730a\";s:3:\"img\";s:39:\"instagram-gallery-carousel-2/slide1.jpg\";s:7:\"preview\";s:161:\"https://www.sliderrevolution.com/templates/wordpress-image-carousel/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-image-carousel\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.12\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:178:\"<span class=\"ttm_content\">Effortlessly blend your website\'s visual content with your vibrant Instagram feed in a sleek, responsive carousel.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2023-04-17 11:59:00\";s:7:\"package\";s:31:\"Instagram Gallery Carousel Pack\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:70:\"How to Uniquely Display Your Instagram Feed on Your Website [Tutorial]\";s:9:\"guide_url\";s:103:\"https://www.sliderrevolution.com/tutorials/how-to-uniquely-display-your-instagram-feed-on-your-website/\";s:9:\"guide_img\";s:44:\"tutorial/Instagram-Gallery-Carousel-Pack.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"62\";s:9:\"installed\";b:0;}i:669;a:28:{s:2:\"id\";s:3:\"725\";s:5:\"title\";s:28:\"Instagram Gallery Carousel 3\";s:5:\"alias\";s:28:\"instagram-gallery-carousel-3\";s:3:\"zip\";s:32:\"instagram-gallery-carousel-3.zip\";s:3:\"uid\";s:32:\"bbddb7776d56f9417a5aa1ffd336580c\";s:3:\"img\";s:39:\"instagram-gallery-carousel-3/slide1.jpg\";s:7:\"preview\";s:161:\"https://www.sliderrevolution.com/templates/wordpress-image-carousel/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-image-carousel\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.12\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:178:\"<span class=\"ttm_content\">Effortlessly blend your website\'s visual content with your vibrant Instagram feed in a sleek, responsive carousel.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2023-04-17 12:00:51\";s:7:\"package\";s:31:\"Instagram Gallery Carousel Pack\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:70:\"How to Uniquely Display Your Instagram Feed on Your Website [Tutorial]\";s:9:\"guide_url\";s:103:\"https://www.sliderrevolution.com/tutorials/how-to-uniquely-display-your-instagram-feed-on-your-website/\";s:9:\"guide_img\";s:44:\"tutorial/Instagram-Gallery-Carousel-Pack.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"62\";s:9:\"installed\";b:0;}i:670;a:28:{s:2:\"id\";s:3:\"726\";s:5:\"title\";s:28:\"Instagram Gallery Carousel 4\";s:5:\"alias\";s:28:\"instagram-gallery-carousel-4\";s:3:\"zip\";s:32:\"instagram-gallery-carousel-4.zip\";s:3:\"uid\";s:32:\"191c6f2fc6b1b4d922ac59df22637f04\";s:3:\"img\";s:39:\"instagram-gallery-carousel-4/slide1.jpg\";s:7:\"preview\";s:161:\"https://www.sliderrevolution.com/templates/wordpress-image-carousel/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-image-carousel\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.12\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:178:\"<span class=\"ttm_content\">Effortlessly blend your website\'s visual content with your vibrant Instagram feed in a sleek, responsive carousel.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2023-04-17 12:02:42\";s:7:\"package\";s:31:\"Instagram Gallery Carousel Pack\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:70:\"How to Uniquely Display Your Instagram Feed on Your Website [Tutorial]\";s:9:\"guide_url\";s:103:\"https://www.sliderrevolution.com/tutorials/how-to-uniquely-display-your-instagram-feed-on-your-website/\";s:9:\"guide_img\";s:44:\"tutorial/Instagram-Gallery-Carousel-Pack.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"62\";s:9:\"installed\";b:0;}i:671;a:28:{s:2:\"id\";s:3:\"727\";s:5:\"title\";s:31:\"Instagram Gallery Carousel Pack\";s:5:\"alias\";s:31:\"instagram-gallery-carousel-pack\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:31:\"instagram-gallery-carousel-pack\";s:3:\"img\";s:39:\"packages/Instagram-Gallery-Carousel.jpg\";s:7:\"preview\";s:161:\"https://www.sliderrevolution.com/templates/wordpress-image-carousel/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-image-carousel\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.12\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:178:\"<span class=\"ttm_content\">Effortlessly blend your website\'s visual content with your vibrant Instagram feed in a sleek, responsive carousel.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2023-05-03 08:57:11\";s:7:\"package\";s:31:\"Instagram Gallery Carousel Pack\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:70:\"How to Uniquely Display Your Instagram Feed on Your Website [Tutorial]\";s:9:\"guide_url\";s:103:\"https://www.sliderrevolution.com/tutorials/how-to-uniquely-display-your-instagram-feed-on-your-website/\";s:9:\"guide_img\";s:44:\"tutorial/Instagram-Gallery-Carousel-Pack.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"62\";s:9:\"installed\";b:0;}i:672;a:25:{s:2:\"id\";s:3:\"728\";s:5:\"title\";s:29:\"Storytelling Website Template\";s:5:\"alias\";s:29:\"Storytelling-Website-Template\";s:3:\"zip\";s:33:\"Storytelling-Website-Template.zip\";s:3:\"uid\";s:32:\"43a1d7c46025ab8f0b9fc49837f068de\";s:3:\"img\";s:40:\"Storytelling-Website-Template/slide1.jpg\";s:7:\"preview\";s:170:\"https://www.sliderrevolution.com/templates/storytelling-website-template?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=storytelling-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.13\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:169:\"<span class=\"ttm_content\">The ultimate solution to captivate your audience with immersive and interactive storytelling experiences.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-05-04 12:49:03\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:673;a:28:{s:2:\"id\";s:3:\"729\";s:5:\"title\";s:32:\"Generative AI Wordpress Template\";s:5:\"alias\";s:32:\"generative-ai-wordpress-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:32:\"generative-ai-wordpress-template\";s:3:\"img\";s:45:\"packages/Generative-AI-Wordpress-Template.jpg\";s:7:\"preview\";s:177:\"https://www.sliderrevolution.com/templates/generative-ai-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=generative-ai-wordpress-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.13\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:332:\"<span class=\"ttm_content\">Introducing the Generative AI WordPress template, exclusively available on Slider Revolution. Elevate your online presence and captivate your audience with captivating visuals and dynamic content. Embrace the future of design with the Generative AI WordPress template.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:535:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"},{\"path\":\"revslider-beforeafter-addon\\/revslider-beforeafter-addon.php\",\"name\":\"Before After AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-05-19 11:03:15\";s:7:\"package\";s:40:\"Generative AI Wordpress Template Package\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:74:\"How to Create a Video Reel That Impresses Your Website Visitors [Tutorial]\";s:9:\"guide_url\";s:107:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-video-reel-that-impresses-your-website-visitors/\";s:9:\"guide_img\";s:45:\"tutorial/Generative-AI-Wordpress-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"63\";s:9:\"installed\";b:0;}i:674;a:28:{s:2:\"id\";s:3:\"730\";s:5:\"title\";s:9:\"G AI Hero\";s:5:\"alias\";s:9:\"G-AI-Hero\";s:3:\"zip\";s:19:\"packs/G-AI-Hero.zip\";s:3:\"uid\";s:32:\"bddbaf321d5e7fd3c46ad3cf7b684934\";s:3:\"img\";s:20:\"G-AI-Hero/slide1.jpg\";s:7:\"preview\";s:177:\"https://www.sliderrevolution.com/templates/generative-ai-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=generative-ai-wordpress-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.13\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:332:\"<span class=\"ttm_content\">Introducing the Generative AI WordPress template, exclusively available on Slider Revolution. Elevate your online presence and captivate your audience with captivating visuals and dynamic content. Embrace the future of design with the Generative AI WordPress template.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2023-05-19 11:06:43\";s:7:\"package\";s:40:\"Generative AI Wordpress Template Package\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:74:\"How to Create a Video Reel That Impresses Your Website Visitors [Tutorial]\";s:9:\"guide_url\";s:107:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-video-reel-that-impresses-your-website-visitors/\";s:9:\"guide_img\";s:45:\"tutorial/Generative-AI-Wordpress-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"63\";s:9:\"installed\";b:0;}i:675;a:28:{s:2:\"id\";s:3:\"731\";s:5:\"title\";s:10:\"G AI Intro\";s:5:\"alias\";s:10:\"G-AI-Intro\";s:3:\"zip\";s:20:\"packs/G-AI-Intro.zip\";s:3:\"uid\";s:32:\"c260d21743606248a98ebc9fe0f7daa0\";s:3:\"img\";s:21:\"G-AI-Intro/slide1.jpg\";s:7:\"preview\";s:177:\"https://www.sliderrevolution.com/templates/generative-ai-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=generative-ai-wordpress-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.13\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:332:\"<span class=\"ttm_content\">Introducing the Generative AI WordPress template, exclusively available on Slider Revolution. Elevate your online presence and captivate your audience with captivating visuals and dynamic content. Embrace the future of design with the Generative AI WordPress template.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2023-05-19 11:09:41\";s:7:\"package\";s:40:\"Generative AI Wordpress Template Package\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:74:\"How to Create a Video Reel That Impresses Your Website Visitors [Tutorial]\";s:9:\"guide_url\";s:107:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-video-reel-that-impresses-your-website-visitors/\";s:9:\"guide_img\";s:45:\"tutorial/Generative-AI-Wordpress-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"63\";s:9:\"installed\";b:0;}i:676;a:28:{s:2:\"id\";s:3:\"732\";s:5:\"title\";s:10:\"G AI Logos\";s:5:\"alias\";s:10:\"G-AI-Logos\";s:3:\"zip\";s:20:\"packs/G-AI-Logos.zip\";s:3:\"uid\";s:32:\"5e701af3844551f18cf4d45a6853cedd\";s:3:\"img\";s:21:\"G-AI-Logos/slide1.jpg\";s:7:\"preview\";s:177:\"https://www.sliderrevolution.com/templates/generative-ai-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=generative-ai-wordpress-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.13\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:332:\"<span class=\"ttm_content\">Introducing the Generative AI WordPress template, exclusively available on Slider Revolution. Elevate your online presence and captivate your audience with captivating visuals and dynamic content. Embrace the future of design with the Generative AI WordPress template.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2023-05-19 11:12:16\";s:7:\"package\";s:40:\"Generative AI Wordpress Template Package\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:74:\"How to Create a Video Reel That Impresses Your Website Visitors [Tutorial]\";s:9:\"guide_url\";s:107:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-video-reel-that-impresses-your-website-visitors/\";s:9:\"guide_img\";s:45:\"tutorial/Generative-AI-Wordpress-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"63\";s:9:\"installed\";b:0;}i:677;a:28:{s:2:\"id\";s:3:\"733\";s:5:\"title\";s:11:\"G AI Images\";s:5:\"alias\";s:11:\"G-AI-Images\";s:3:\"zip\";s:21:\"packs/G-AI-Images.zip\";s:3:\"uid\";s:32:\"8862e4e3ce5c3d67f80809d892df54f5\";s:3:\"img\";s:22:\"G-AI-Images/slide1.jpg\";s:7:\"preview\";s:177:\"https://www.sliderrevolution.com/templates/generative-ai-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=generative-ai-wordpress-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.13\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:332:\"<span class=\"ttm_content\">Introducing the Generative AI WordPress template, exclusively available on Slider Revolution. Elevate your online presence and captivate your audience with captivating visuals and dynamic content. Embrace the future of design with the Generative AI WordPress template.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2023-05-19 11:14:32\";s:7:\"package\";s:40:\"Generative AI Wordpress Template Package\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:74:\"How to Create a Video Reel That Impresses Your Website Visitors [Tutorial]\";s:9:\"guide_url\";s:107:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-video-reel-that-impresses-your-website-visitors/\";s:9:\"guide_img\";s:45:\"tutorial/Generative-AI-Wordpress-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"63\";s:9:\"installed\";b:0;}i:678;a:28:{s:2:\"id\";s:3:\"734\";s:5:\"title\";s:9:\"G AI Copy\";s:5:\"alias\";s:9:\"G-AI-Copy\";s:3:\"zip\";s:19:\"packs/G-AI-Copy.zip\";s:3:\"uid\";s:32:\"067c9615856d2ec6be31b066d82c2306\";s:3:\"img\";s:20:\"G-AI-Copy/slide1.jpg\";s:7:\"preview\";s:177:\"https://www.sliderrevolution.com/templates/generative-ai-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=generative-ai-wordpress-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.13\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:332:\"<span class=\"ttm_content\">Introducing the Generative AI WordPress template, exclusively available on Slider Revolution. Elevate your online presence and captivate your audience with captivating visuals and dynamic content. Embrace the future of design with the Generative AI WordPress template.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2023-05-19 11:17:03\";s:7:\"package\";s:40:\"Generative AI Wordpress Template Package\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:74:\"How to Create a Video Reel That Impresses Your Website Visitors [Tutorial]\";s:9:\"guide_url\";s:107:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-video-reel-that-impresses-your-website-visitors/\";s:9:\"guide_img\";s:45:\"tutorial/Generative-AI-Wordpress-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"63\";s:9:\"installed\";b:0;}i:679;a:28:{s:2:\"id\";s:3:\"735\";s:5:\"title\";s:10:\"G AI Tools\";s:5:\"alias\";s:10:\"G-AI-Tools\";s:3:\"zip\";s:20:\"packs/G-AI-Tools.zip\";s:3:\"uid\";s:32:\"23805fec299a8ca82659c030a4f16ce5\";s:3:\"img\";s:21:\"G-AI-Tools/slide1.jpg\";s:7:\"preview\";s:177:\"https://www.sliderrevolution.com/templates/generative-ai-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=generative-ai-wordpress-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.13\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:332:\"<span class=\"ttm_content\">Introducing the Generative AI WordPress template, exclusively available on Slider Revolution. Elevate your online presence and captivate your audience with captivating visuals and dynamic content. Embrace the future of design with the Generative AI WordPress template.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-beforeafter-addon\\/revslider-beforeafter-addon.php\",\"name\":\"Before After AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-05-19 11:18:36\";s:7:\"package\";s:40:\"Generative AI Wordpress Template Package\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:74:\"How to Create a Video Reel That Impresses Your Website Visitors [Tutorial]\";s:9:\"guide_url\";s:107:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-video-reel-that-impresses-your-website-visitors/\";s:9:\"guide_img\";s:45:\"tutorial/Generative-AI-Wordpress-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"63\";s:9:\"installed\";b:0;}i:680;a:28:{s:2:\"id\";s:3:\"736\";s:5:\"title\";s:10:\"G AI Cases\";s:5:\"alias\";s:10:\"G-AI-Cases\";s:3:\"zip\";s:20:\"packs/G-AI-Cases.zip\";s:3:\"uid\";s:32:\"7b474fb1cbc351d00732a51524cc0ae0\";s:3:\"img\";s:21:\"G-AI-Cases/slide1.jpg\";s:7:\"preview\";s:177:\"https://www.sliderrevolution.com/templates/generative-ai-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=generative-ai-wordpress-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.13\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:332:\"<span class=\"ttm_content\">Introducing the Generative AI WordPress template, exclusively available on Slider Revolution. Elevate your online presence and captivate your audience with captivating visuals and dynamic content. Embrace the future of design with the Generative AI WordPress template.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2023-05-19 11:22:41\";s:7:\"package\";s:40:\"Generative AI Wordpress Template Package\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:74:\"How to Create a Video Reel That Impresses Your Website Visitors [Tutorial]\";s:9:\"guide_url\";s:107:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-video-reel-that-impresses-your-website-visitors/\";s:9:\"guide_img\";s:45:\"tutorial/Generative-AI-Wordpress-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"63\";s:9:\"installed\";b:0;}i:681;a:28:{s:2:\"id\";s:3:\"737\";s:5:\"title\";s:18:\"G AI Gallery Title\";s:5:\"alias\";s:18:\"G-AI-Gallery-Title\";s:3:\"zip\";s:28:\"packs/G-AI-Gallery-Title.zip\";s:3:\"uid\";s:32:\"6e28c3f7027e58537782b95d0290b16e\";s:3:\"img\";s:29:\"G-AI-Gallery-Title/slide1.jpg\";s:7:\"preview\";s:177:\"https://www.sliderrevolution.com/templates/generative-ai-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=generative-ai-wordpress-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.13\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:332:\"<span class=\"ttm_content\">Introducing the Generative AI WordPress template, exclusively available on Slider Revolution. Elevate your online presence and captivate your audience with captivating visuals and dynamic content. Embrace the future of design with the Generative AI WordPress template.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2023-05-19 11:24:20\";s:7:\"package\";s:40:\"Generative AI Wordpress Template Package\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:74:\"How to Create a Video Reel That Impresses Your Website Visitors [Tutorial]\";s:9:\"guide_url\";s:107:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-video-reel-that-impresses-your-website-visitors/\";s:9:\"guide_img\";s:45:\"tutorial/Generative-AI-Wordpress-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"63\";s:9:\"installed\";b:0;}i:682;a:28:{s:2:\"id\";s:3:\"738\";s:5:\"title\";s:12:\"G AI Gallery\";s:5:\"alias\";s:12:\"G-AI-Gallery\";s:3:\"zip\";s:22:\"packs/G-AI-Gallery.zip\";s:3:\"uid\";s:32:\"9ce2e0db0c4af129329b42169133de12\";s:3:\"img\";s:23:\"G-AI-Gallery/slide1.jpg\";s:7:\"preview\";s:177:\"https://www.sliderrevolution.com/templates/generative-ai-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=generative-ai-wordpress-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.13\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:332:\"<span class=\"ttm_content\">Introducing the Generative AI WordPress template, exclusively available on Slider Revolution. Elevate your online presence and captivate your audience with captivating visuals and dynamic content. Embrace the future of design with the Generative AI WordPress template.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2023-05-19 11:26:02\";s:7:\"package\";s:40:\"Generative AI Wordpress Template Package\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:74:\"How to Create a Video Reel That Impresses Your Website Visitors [Tutorial]\";s:9:\"guide_url\";s:107:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-video-reel-that-impresses-your-website-visitors/\";s:9:\"guide_img\";s:45:\"tutorial/Generative-AI-Wordpress-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"63\";s:9:\"installed\";b:0;}i:683;a:28:{s:2:\"id\";s:3:\"739\";s:5:\"title\";s:17:\"G AI Testimonials\";s:5:\"alias\";s:17:\"G-AI-Testimonials\";s:3:\"zip\";s:27:\"packs/G-AI-Testimonials.zip\";s:3:\"uid\";s:32:\"2bdff749f895cf484919fa379daa4ce1\";s:3:\"img\";s:28:\"G-AI-Testimonials/slide1.jpg\";s:7:\"preview\";s:177:\"https://www.sliderrevolution.com/templates/generative-ai-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=generative-ai-wordpress-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.13\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:332:\"<span class=\"ttm_content\">Introducing the Generative AI WordPress template, exclusively available on Slider Revolution. Elevate your online presence and captivate your audience with captivating visuals and dynamic content. Embrace the future of design with the Generative AI WordPress template.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2023-05-19 11:29:00\";s:7:\"package\";s:40:\"Generative AI Wordpress Template Package\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:74:\"How to Create a Video Reel That Impresses Your Website Visitors [Tutorial]\";s:9:\"guide_url\";s:107:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-video-reel-that-impresses-your-website-visitors/\";s:9:\"guide_img\";s:45:\"tutorial/Generative-AI-Wordpress-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"63\";s:9:\"installed\";b:0;}i:684;a:28:{s:2:\"id\";s:3:\"740\";s:5:\"title\";s:11:\"G AI Footer\";s:5:\"alias\";s:11:\"G-AI-Footer\";s:3:\"zip\";s:21:\"packs/G-AI-Footer.zip\";s:3:\"uid\";s:32:\"756676ee2fb920253d84e0558b9e5c43\";s:3:\"img\";s:22:\"G-AI-Footer/slide1.jpg\";s:7:\"preview\";s:177:\"https://www.sliderrevolution.com/templates/generative-ai-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=generative-ai-wordpress-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.13\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:332:\"<span class=\"ttm_content\">Introducing the Generative AI WordPress template, exclusively available on Slider Revolution. Elevate your online presence and captivate your audience with captivating visuals and dynamic content. Embrace the future of design with the Generative AI WordPress template.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2023-05-19 11:31:24\";s:7:\"package\";s:40:\"Generative AI Wordpress Template Package\";s:13:\"package_order\";s:2:\"10\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:74:\"How to Create a Video Reel That Impresses Your Website Visitors [Tutorial]\";s:9:\"guide_url\";s:107:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-video-reel-that-impresses-your-website-visitors/\";s:9:\"guide_img\";s:45:\"tutorial/Generative-AI-Wordpress-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"63\";s:9:\"installed\";b:0;}i:685;a:28:{s:2:\"id\";s:3:\"741\";s:5:\"title\";s:23:\"Visual Design One-Pager\";s:5:\"alias\";s:23:\"visual-design-one-pager\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:23:\"visual-design-one-pager\";s:3:\"img\";s:36:\"packages/Visual-Design-One-Pager.jpg\";s:7:\"preview\";s:195:\"https://www.sliderrevolution.com/templates/visual-design-one-page-portfolio-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=visual-design-one-page-portfolio-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:249:\"<span class=\"ttm_content\">Whether you are a web designer, AI artist, 3D designer, digital illustrator, UI/UX designer, or photographer, this template is designed to showcase your work in the most impressive way.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-06-05 13:01:18\";s:7:\"package\";s:31:\"Visual Design One-Pager Package\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:44:\"Page Portfolio Site in Just Hours [Tutorial]\";s:9:\"guide_url\";s:107:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-beautiful-one-page-portfolio-site-in-just-hours/\";s:9:\"guide_img\";s:36:\"tutorial/Visual-Design-One-Pager.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"64\";s:9:\"installed\";b:0;}i:686;a:28:{s:2:\"id\";s:3:\"742\";s:5:\"title\";s:20:\"Visual Designer Menu\";s:5:\"alias\";s:20:\"visual-designer-menu\";s:3:\"zip\";s:30:\"packs/visual-designer-menu.zip\";s:3:\"uid\";s:32:\"5c5177905993ce5e7919d1360f0a264b\";s:3:\"img\";s:31:\"visual-designer-menu/slide1.jpg\";s:7:\"preview\";s:195:\"https://www.sliderrevolution.com/templates/visual-design-one-page-portfolio-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=visual-design-one-page-portfolio-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:249:\"<span class=\"ttm_content\">Whether you are a web designer, AI artist, 3D designer, digital illustrator, UI/UX designer, or photographer, this template is designed to showcase your work in the most impressive way.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2023-06-05 13:04:41\";s:7:\"package\";s:31:\"Visual Design One-Pager Package\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:44:\"Page Portfolio Site in Just Hours [Tutorial]\";s:9:\"guide_url\";s:107:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-beautiful-one-page-portfolio-site-in-just-hours/\";s:9:\"guide_img\";s:36:\"tutorial/Visual-Design-One-Pager.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"64\";s:9:\"installed\";b:0;}i:687;a:28:{s:2:\"id\";s:3:\"743\";s:5:\"title\";s:22:\"Visual Designer Slider\";s:5:\"alias\";s:22:\"visual-designer-slider\";s:3:\"zip\";s:32:\"packs/visual-designer-slider.zip\";s:3:\"uid\";s:32:\"9a48f4a2546c87d311f692aa1a2d70a4\";s:3:\"img\";s:33:\"visual-designer-slider/slide1.jpg\";s:7:\"preview\";s:195:\"https://www.sliderrevolution.com/templates/visual-design-one-page-portfolio-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=visual-design-one-page-portfolio-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:249:\"<span class=\"ttm_content\">Whether you are a web designer, AI artist, 3D designer, digital illustrator, UI/UX designer, or photographer, this template is designed to showcase your work in the most impressive way.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-06-05 13:06:26\";s:7:\"package\";s:31:\"Visual Design One-Pager Package\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:44:\"Page Portfolio Site in Just Hours [Tutorial]\";s:9:\"guide_url\";s:107:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-beautiful-one-page-portfolio-site-in-just-hours/\";s:9:\"guide_img\";s:36:\"tutorial/Visual-Design-One-Pager.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"64\";s:9:\"installed\";b:0;}i:688;a:28:{s:2:\"id\";s:3:\"744\";s:5:\"title\";s:25:\"Visual Designer Portfolio\";s:5:\"alias\";s:25:\"Visual-Designer-Portfolio\";s:3:\"zip\";s:35:\"packs/Visual-Designer-Portfolio.zip\";s:3:\"uid\";s:32:\"d53dbb86df1fca5ac940eb98a045b7f7\";s:3:\"img\";s:36:\"Visual-Designer-Portfolio/slide1.jpg\";s:7:\"preview\";s:195:\"https://www.sliderrevolution.com/templates/visual-design-one-page-portfolio-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=visual-design-one-page-portfolio-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:249:\"<span class=\"ttm_content\">Whether you are a web designer, AI artist, 3D designer, digital illustrator, UI/UX designer, or photographer, this template is designed to showcase your work in the most impressive way.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-06-05 13:08:57\";s:7:\"package\";s:31:\"Visual Design One-Pager Package\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:44:\"Page Portfolio Site in Just Hours [Tutorial]\";s:9:\"guide_url\";s:107:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-beautiful-one-page-portfolio-site-in-just-hours/\";s:9:\"guide_img\";s:36:\"tutorial/Visual-Design-One-Pager.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"64\";s:9:\"installed\";b:0;}i:689;a:27:{s:2:\"id\";s:3:\"745\";s:5:\"title\";s:21:\"Visual Designer About\";s:5:\"alias\";s:21:\"Visual-Designer-About\";s:3:\"zip\";s:31:\"packs/Visual-Designer-About.zip\";s:3:\"uid\";s:32:\"0968eb1bf48e95ddccc9fb7555752099\";s:3:\"img\";s:32:\"Visual-Designer-About/slide1.jpg\";s:7:\"preview\";s:195:\"https://www.sliderrevolution.com/templates/visual-design-one-page-portfolio-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=visual-design-one-page-portfolio-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:249:\"<span class=\"ttm_content\">Whether you are a web designer, AI artist, 3D designer, digital illustrator, UI/UX designer, or photographer, this template is designed to showcase your work in the most impressive way.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2023-06-05 13:10:45\";s:7:\"package\";s:31:\"Visual Design One-Pager Package\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:44:\"Page Portfolio Site in Just Hours [Tutorial]\";s:9:\"guide_url\";s:107:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-beautiful-one-page-portfolio-site-in-just-hours/\";s:9:\"guide_img\";s:36:\"tutorial/Visual-Design-One-Pager.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"64\";s:9:\"installed\";b:0;}i:690;a:28:{s:2:\"id\";s:3:\"746\";s:5:\"title\";s:22:\"Visual Designer Footer\";s:5:\"alias\";s:22:\"visual-designer-footer\";s:3:\"zip\";s:32:\"packs/visual-designer-footer.zip\";s:3:\"uid\";s:32:\"e6027c38009d73cf8ddaeb70ea48d8a8\";s:3:\"img\";s:33:\"visual-designer-footer/slide1.jpg\";s:7:\"preview\";s:195:\"https://www.sliderrevolution.com/templates/visual-design-one-page-portfolio-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=visual-design-one-page-portfolio-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:249:\"<span class=\"ttm_content\">Whether you are a web designer, AI artist, 3D designer, digital illustrator, UI/UX designer, or photographer, this template is designed to showcase your work in the most impressive way.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2023-06-05 13:12:21\";s:7:\"package\";s:31:\"Visual Design One-Pager Package\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:44:\"Page Portfolio Site in Just Hours [Tutorial]\";s:9:\"guide_url\";s:107:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-beautiful-one-page-portfolio-site-in-just-hours/\";s:9:\"guide_img\";s:36:\"tutorial/Visual-Design-One-Pager.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"64\";s:9:\"installed\";b:0;}i:691;a:28:{s:2:\"id\";s:3:\"747\";s:5:\"title\";s:27:\"Visual Designer Detail View\";s:5:\"alias\";s:27:\"Visual-Designer-Detail-View\";s:3:\"zip\";s:37:\"packs/Visual-Designer-Detail-View.zip\";s:3:\"uid\";s:32:\"1faa6ce0fc43a08f3800acace5eb2925\";s:3:\"img\";s:38:\"Visual-Designer-Detail-View/slide1.jpg\";s:7:\"preview\";s:195:\"https://www.sliderrevolution.com/templates/visual-design-one-page-portfolio-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=visual-design-one-page-portfolio-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:249:\"<span class=\"ttm_content\">Whether you are a web designer, AI artist, 3D designer, digital illustrator, UI/UX designer, or photographer, this template is designed to showcase your work in the most impressive way.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2023-06-05 13:14:05\";s:7:\"package\";s:31:\"Visual Design One-Pager Package\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:44:\"Page Portfolio Site in Just Hours [Tutorial]\";s:9:\"guide_url\";s:107:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-beautiful-one-page-portfolio-site-in-just-hours/\";s:9:\"guide_img\";s:36:\"tutorial/Visual-Design-One-Pager.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"64\";s:9:\"installed\";b:0;}i:692;a:25:{s:2:\"id\";s:3:\"748\";s:5:\"title\";s:24:\"Online Watch Shop Slider\";s:5:\"alias\";s:24:\"online-watch-shop-slider\";s:3:\"zip\";s:28:\"online-watch-shop-slider.zip\";s:3:\"uid\";s:32:\"bbe52119b342d63ead804a91e2ade96d\";s:3:\"img\";s:35:\"online-watch-shop-slider/slide1.jpg\";s:7:\"preview\";s:161:\"https://www.sliderrevolution.com/templates/online-watch-shop-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=online-watch-shop-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:524:\"<span class=\"ttm_content\">The \"Online Watch Shop Slider\" is a stunning design tailored specifically for watch retailers and enthusiasts. With its sleek and modern layout, this template allows you to showcase your collection of timepieces in a visually captivating manner. Featuring smooth transitions and customizable slides, this template provides a seamless browsing experience for your customers, making it an ideal choice for online watch shops aiming to leave a lasting impression.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-06-12 08:36:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:80:\"How to Create a Product Comparison Slider for Your Shop’s Home Page [Tutorial]\";s:9:\"guide_url\";s:111:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-product-comparison-slider-for-your-shop-s-home-page/\";s:9:\"guide_img\";s:37:\"tutorial/Online-Watch-Shop-Slider.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:693;a:25:{s:2:\"id\";s:3:\"749\";s:5:\"title\";s:31:\"Brewery Website Slider Template\";s:5:\"alias\";s:31:\"Brewery-Website-Slider-Template\";s:3:\"zip\";s:35:\"Brewery-Website-Slider-Template.zip\";s:3:\"uid\";s:32:\"bcf9213d1ba9c2c41382433c124adf30\";s:3:\"img\";s:42:\"Brewery-Website-Slider-Template/slide1.jpg\";s:7:\"preview\";s:175:\"https://www.sliderrevolution.com/templates/brewery-website-slider-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=brewery-website-slider-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:421:\"<span class=\"ttm_content\">The Brewery Website Slider Template offers a visually appealing and versatile design, perfect for showcasing the unique offerings of any brewery. With its captivating imagery, smooth transitions, and customizable elements, this template creates an engaging experience that entices visitors to explore the brewery\'s story and discover its exceptional brews. </span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:189:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-06-23 11:27:46\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:61:\"How to Market Drink Products with a Stylish Slider [Tutorial]\";s:9:\"guide_url\";s:94:\"https://www.sliderrevolution.com/tutorials/how-to-market-drink-products-with-a-stylish-slider/\";s:9:\"guide_img\";s:44:\"tutorial/Brewery-Website-Slider-Template.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:694;a:25:{s:2:\"id\";s:3:\"750\";s:5:\"title\";s:40:\"Hero Slider with Midjourney Image Effect\";s:5:\"alias\";s:40:\"Hero-Slider-with-Midjourney-Image-Effect\";s:3:\"zip\";s:44:\"Hero-Slider-with-Midjourney-Image-Effect.zip\";s:3:\"uid\";s:32:\"45db238a0a64622e4d39f1993106d5e6\";s:3:\"img\";s:51:\"Hero-Slider-with-Midjourney-Image-Effect/slide1.jpg\";s:7:\"preview\";s:193:\"https://www.sliderrevolution.com/templates/hero-slider-with-midjourney-image-effect/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=hero-slider-with-midjourney-image-effect\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:6:\"6.6.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:427:\"<span class=\"ttm_content\">Experience the magic of our new Hero Slider template, featuring the innovative Midjourney Image Effect. This unique template brings the style of an action movie poster to your website, offering an interactive intro that iss sure to captivate visitors. The Midjourney Image sequence, with its subtle variations, adds a dynamic touch, making your website stand out.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:356:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-06-28 13:47:30\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:83:\"How to Design a High Impact Image for Your Fitness Website’s Home Page [Tutorial]\";s:9:\"guide_url\";s:114:\"https://www.sliderrevolution.com/tutorials/how-to-design-a-high-impact-image-for-your-fitness-website-s-home-page/\";s:9:\"guide_img\";s:53:\"tutorial/Hero-Slider-with-Midjourney-Image-Effect.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:695;a:25:{s:2:\"id\";s:3:\"751\";s:5:\"title\";s:31:\"Highlight Hero Section Template\";s:5:\"alias\";s:31:\"Highlight-Hero-Section-Template\";s:3:\"zip\";s:35:\"Highlight-Hero-Section-Template.zip\";s:3:\"uid\";s:32:\"e16c375827f3c54cdd224ef612e3e31a\";s:3:\"img\";s:42:\"Highlight-Hero-Section-Template/slide1.jpg\";s:7:\"preview\";s:175:\"https://www.sliderrevolution.com/templates/highlight-hero-section-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=highlight-hero-section-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:334:\"<span class=\"ttm_content\">Introducing the Highlight Hero Section Template for Slider Revolution. Make a bold first impression with stunning visuals and seamless animations. Customize every aspect effortlessly and engage your visitors instantly. Elevate your website with this remarkable template.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-07-06 10:07:35\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:79:\"How to Attract Customers to Your Store with a Highlight Hero Section [Tutorial]\";s:9:\"guide_url\";s:112:\"https://www.sliderrevolution.com/tutorials/how-to-attract-customers-to-your-store-with-a-highlight-hero-section/\";s:9:\"guide_img\";s:44:\"tutorial/Highlight-Hero-Section-Template.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:696;a:25:{s:2:\"id\";s:3:\"752\";s:5:\"title\";s:36:\"Samurai Fullscreen Carousel Template\";s:5:\"alias\";s:36:\"Samurai-Fullscreen-Carousel-Template\";s:3:\"zip\";s:40:\"Samurai-Fullscreen-Carousel-Template.zip\";s:3:\"uid\";s:32:\"8b5c5483aa54c09be24bb18a20ec98a5\";s:3:\"img\";s:47:\"Samurai-Fullscreen-Carousel-Template/slide1.jpg\";s:7:\"preview\";s:185:\"https://www.sliderrevolution.com/templates/samurai-fullscreen-carousel-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=samurai-fullscreen-carousel-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:318:\"<span class=\"ttm_content\">Experience the power of our Samurai Fullscreen Carousel Template. With large, bold captions, call-to-action buttons, and tab navigation, it iss a visual feast. Seamlessly pan across a panorama of samurai warriors, thanks to Midjourneys new \"pan\" feature.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";s:190:\"[{\"path\":\"revslider-thecluster-addon\\/revslider-thecluster-addon.php\",\"name\":\"Slider Revolution The Cluster AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-07-10 12:21:25\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:64:\"How to Create a Beautiful Fullscreen Product Carousel [Tutorial]\";s:9:\"guide_url\";s:97:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-beautiful-fullscreen-product-carousel/\";s:9:\"guide_img\";s:49:\"tutorial/Samurai-Fullscreen-Carousel-Template.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:697;a:28:{s:2:\"id\";s:3:\"753\";s:5:\"title\";s:32:\"Surf Scroll Based Story Template\";s:5:\"alias\";s:32:\"surf-scroll-based-story-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:32:\"surf-scroll-based-story-template\";s:3:\"img\";s:45:\"packages/surf-scroll-based-story-template.jpg\";s:7:\"preview\";s:177:\"https://www.sliderrevolution.com/templates/surf-scroll-based-story-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=surf-scroll-based-story-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.15\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:298:\"<span class=\"ttm_content\">Dive into the world of immersive storytelling with the \"Surf Scroll Based Story Template\" for Slider Revolution! Take your website visitors on an unforgettable journey through the waves of creativity and engage them like never before.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-08-04 10:45:39\";s:7:\"package\";s:40:\"Surf Scroll Based Story Template Package\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:82:\"How to Use Lifestyle Imagery to Shape Your eCommerce Brand’s Identity [Tutorial]\";s:9:\"guide_url\";s:113:\"https://www.sliderrevolution.com/tutorials/how-to-use-lifestyle-imagery-to-shape-your-ecommerce-brand-s-identity/\";s:9:\"guide_img\";s:45:\"tutorial/surf-scroll-based-story-template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"65\";s:9:\"installed\";b:0;}i:698;a:28:{s:2:\"id\";s:3:\"754\";s:5:\"title\";s:18:\"Surf Template Logo\";s:5:\"alias\";s:18:\"Surf-Template-Logo\";s:3:\"zip\";s:28:\"packs/Surf-Template-Logo.zip\";s:3:\"uid\";s:32:\"8bf655d46efa183455bffc8ea5ddd18f\";s:3:\"img\";s:29:\"Surf-Template-Logo/slide1.jpg\";s:7:\"preview\";s:177:\"https://www.sliderrevolution.com/templates/surf-scroll-based-story-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=surf-scroll-based-story-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.15\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:298:\"<span class=\"ttm_content\">Dive into the world of immersive storytelling with the \"Surf Scroll Based Story Template\" for Slider Revolution! Take your website visitors on an unforgettable journey through the waves of creativity and engage them like never before.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2023-08-04 10:48:52\";s:7:\"package\";s:40:\"Surf Scroll Based Story Template Package\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:82:\"How to Use Lifestyle Imagery to Shape Your eCommerce Brand’s Identity [Tutorial]\";s:9:\"guide_url\";s:113:\"https://www.sliderrevolution.com/tutorials/how-to-use-lifestyle-imagery-to-shape-your-ecommerce-brand-s-identity/\";s:9:\"guide_img\";s:45:\"tutorial/surf-scroll-based-story-template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"65\";s:9:\"installed\";b:0;}i:699;a:28:{s:2:\"id\";s:3:\"755\";s:5:\"title\";s:15:\"Surf Template 1\";s:5:\"alias\";s:15:\"Surf-Template-1\";s:3:\"zip\";s:25:\"packs/Surf-Template-1.zip\";s:3:\"uid\";s:32:\"4a532d7cbbe52544f41a6a81023a3879\";s:3:\"img\";s:26:\"Surf-Template-1/slide1.jpg\";s:7:\"preview\";s:177:\"https://www.sliderrevolution.com/templates/surf-scroll-based-story-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=surf-scroll-based-story-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.15\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:298:\"<span class=\"ttm_content\">Dive into the world of immersive storytelling with the \"Surf Scroll Based Story Template\" for Slider Revolution! Take your website visitors on an unforgettable journey through the waves of creativity and engage them like never before.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-08-04 10:52:16\";s:7:\"package\";s:40:\"Surf Scroll Based Story Template Package\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:82:\"How to Use Lifestyle Imagery to Shape Your eCommerce Brand’s Identity [Tutorial]\";s:9:\"guide_url\";s:113:\"https://www.sliderrevolution.com/tutorials/how-to-use-lifestyle-imagery-to-shape-your-ecommerce-brand-s-identity/\";s:9:\"guide_img\";s:45:\"tutorial/surf-scroll-based-story-template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"65\";s:9:\"installed\";b:0;}i:700;a:28:{s:2:\"id\";s:3:\"756\";s:5:\"title\";s:15:\"Surf Template 2\";s:5:\"alias\";s:15:\"Surf-Template-2\";s:3:\"zip\";s:25:\"packs/Surf-Template-2.zip\";s:3:\"uid\";s:32:\"7d76218ed2d5144b9dcc0669bb3e346a\";s:3:\"img\";s:26:\"Surf-Template-2/slide1.jpg\";s:7:\"preview\";s:177:\"https://www.sliderrevolution.com/templates/surf-scroll-based-story-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=surf-scroll-based-story-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.15\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:298:\"<span class=\"ttm_content\">Dive into the world of immersive storytelling with the \"Surf Scroll Based Story Template\" for Slider Revolution! Take your website visitors on an unforgettable journey through the waves of creativity and engage them like never before.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-08-04 10:54:13\";s:7:\"package\";s:40:\"Surf Scroll Based Story Template Package\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:82:\"How to Use Lifestyle Imagery to Shape Your eCommerce Brand’s Identity [Tutorial]\";s:9:\"guide_url\";s:113:\"https://www.sliderrevolution.com/tutorials/how-to-use-lifestyle-imagery-to-shape-your-ecommerce-brand-s-identity/\";s:9:\"guide_img\";s:45:\"tutorial/surf-scroll-based-story-template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"65\";s:9:\"installed\";b:0;}i:701;a:28:{s:2:\"id\";s:3:\"757\";s:5:\"title\";s:15:\"Surf Template 3\";s:5:\"alias\";s:15:\"Surf-Template-3\";s:3:\"zip\";s:25:\"packs/Surf-Template-3.zip\";s:3:\"uid\";s:32:\"a42b54df91b2c3987bbe22280c26b40d\";s:3:\"img\";s:26:\"Surf-Template-3/slide1.jpg\";s:7:\"preview\";s:177:\"https://www.sliderrevolution.com/templates/surf-scroll-based-story-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=surf-scroll-based-story-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.15\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:298:\"<span class=\"ttm_content\">Dive into the world of immersive storytelling with the \"Surf Scroll Based Story Template\" for Slider Revolution! Take your website visitors on an unforgettable journey through the waves of creativity and engage them like never before.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-08-04 10:56:13\";s:7:\"package\";s:40:\"Surf Scroll Based Story Template Package\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:82:\"How to Use Lifestyle Imagery to Shape Your eCommerce Brand’s Identity [Tutorial]\";s:9:\"guide_url\";s:113:\"https://www.sliderrevolution.com/tutorials/how-to-use-lifestyle-imagery-to-shape-your-ecommerce-brand-s-identity/\";s:9:\"guide_img\";s:45:\"tutorial/surf-scroll-based-story-template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"65\";s:9:\"installed\";b:0;}i:702;a:28:{s:2:\"id\";s:3:\"758\";s:5:\"title\";s:15:\"Surf Template 4\";s:5:\"alias\";s:15:\"Surf-Template-4\";s:3:\"zip\";s:25:\"packs/Surf-Template-4.zip\";s:3:\"uid\";s:32:\"017fb0dca11e63421427315718464823\";s:3:\"img\";s:26:\"Surf-Template-4/slide1.jpg\";s:7:\"preview\";s:177:\"https://www.sliderrevolution.com/templates/surf-scroll-based-story-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=surf-scroll-based-story-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.15\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:298:\"<span class=\"ttm_content\">Dive into the world of immersive storytelling with the \"Surf Scroll Based Story Template\" for Slider Revolution! Take your website visitors on an unforgettable journey through the waves of creativity and engage them like never before.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-08-04 10:58:06\";s:7:\"package\";s:40:\"Surf Scroll Based Story Template Package\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:82:\"How to Use Lifestyle Imagery to Shape Your eCommerce Brand’s Identity [Tutorial]\";s:9:\"guide_url\";s:113:\"https://www.sliderrevolution.com/tutorials/how-to-use-lifestyle-imagery-to-shape-your-ecommerce-brand-s-identity/\";s:9:\"guide_img\";s:45:\"tutorial/surf-scroll-based-story-template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"65\";s:9:\"installed\";b:0;}i:703;a:25:{s:2:\"id\";s:3:\"759\";s:5:\"title\";s:33:\"50/50 Split Screen Website Design\";s:5:\"alias\";s:33:\"50-50-Split-Screen-Website-Design\";s:3:\"zip\";s:37:\"50-50-Split-Screen-Website-Design.zip\";s:3:\"uid\";s:32:\"e524d518ac23d3f408fca3caddf2dac3\";s:3:\"img\";s:44:\"50-50-Split-Screen-Website-Design/slide1.jpg\";s:7:\"preview\";s:167:\"https://www.sliderrevolution.com/templates/split-screen-website-design/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=split-screen-website-design\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:6:\"6.6.15\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:442:\"<span class=\"ttm_content\">Introducing the 50/50 Split Screen Website Design template: A dynamic showcase that seamlessly balances content and visuals. With a sleek half-and-half layout, captivate your audience with contrasting elements while delivering a clear and engaging message. Customize effortlessly and elevate your web presence with this modern, user-friendly design, only with Slider Revolution.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-08-08 12:22:38\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:71:\"How to Design a Unique Split Screen Layout for Your Homepage [Tutorial]\";s:9:\"guide_url\";s:104:\"https://www.sliderrevolution.com/tutorials/how-to-design-a-unique-split-screen-layout-for-your-homepage/\";s:9:\"guide_img\";s:46:\"tutorial/50-50-Split-Screen-Website-Design.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:704;a:25:{s:2:\"id\";s:3:\"760\";s:5:\"title\";s:33:\"Food Presentation Template Slider\";s:5:\"alias\";s:33:\"Food-Presentation-Template-Slider\";s:3:\"zip\";s:37:\"Food-Presentation-Template-Slider.zip\";s:3:\"uid\";s:32:\"7ebe00aee026ff7baeffaad909e6ee24\";s:3:\"img\";s:44:\"Food-Presentation-Template-Slider/slide1.jpg\";s:7:\"preview\";s:179:\"https://www.sliderrevolution.com/templates/food-presentation-template-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=food-presentation-template-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.15\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:422:\"<span class=\"ttm_content\">Unveil the essence of your cuisine with the \"Food Presentation Template Slider.\" Elevate your dishes through seamless transitions, vibrant imagery, and enticing descriptions in this captivating slider. Engage your audience, tantalize their taste buds, and showcase your culinary artistry effortlessly. Now available in the Slider Revolution template library.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:189:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-08-18 11:56:17\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:76:\"How to Create a Classy Product Slider for Your Shop’s Home Page [Tutorial]\";s:9:\"guide_url\";s:107:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-classy-product-slider-for-your-shop-s-home-page/\";s:9:\"guide_img\";s:46:\"tutorial/Food-Presentation-Template-Slider.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:705;a:25:{s:2:\"id\";s:3:\"761\";s:5:\"title\";s:38:\"FutureSight Digital Marketing Template\";s:5:\"alias\";s:38:\"FutureSight-Digital-Marketing-Template\";s:3:\"zip\";s:42:\"FutureSight-Digital-Marketing-Template.zip\";s:3:\"uid\";s:32:\"9bfd6be89aca94230967563d61b796b3\";s:3:\"img\";s:49:\"FutureSight-Digital-Marketing-Template/slide1.jpg\";s:7:\"preview\";s:189:\"https://www.sliderrevolution.com/templates/futuresight-digital-marketing-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=futuresight-digital-marketing-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.15\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:276:\"<span class=\"ttm_content\">Embrace the future with FutureSight - a template designed for visionary marketers. Its sleek design, combined with dynamic animations, offers a seamless user experience. Perfect for agencies aiming for the stars.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:3:{i:0;s:8:\"carousel\";i:1;s:4:\"hero\";i:2;s:10:\"Special FX\";}s:14:\"plugin_require\";s:178:\"[{\"path\":\"revslider-particlewave-addon\\/revslider-particlewave-addon.php\",\"name\":\"Particle Wave AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-08-23 10:38:17\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:81:\"How to Create an Eye-Catching Hero with Gradients and Particle Effects [Tutorial]\";s:9:\"guide_url\";s:114:\"https://www.sliderrevolution.com/tutorials/how-to-create-an-eye-catching-hero-with-gradients-and-particle-effects/\";s:9:\"guide_img\";s:51:\"tutorial/FutureSight-Digital-Marketing-Template.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:706;a:25:{s:2:\"id\";s:3:\"762\";s:5:\"title\";s:40:\"Starry Night Parallax Zoom Effect Slider\";s:5:\"alias\";s:40:\"Starry-Night-Parallax-Zoom-Effect-Slider\";s:3:\"zip\";s:44:\"Starry-Night-Parallax-Zoom-Effect-Slider.zip\";s:3:\"uid\";s:32:\"dd0a9034a10397ba5b0b76fb8d7e203c\";s:3:\"img\";s:51:\"Starry-Night-Parallax-Zoom-Effect-Slider/slide1.jpg\";s:7:\"preview\";s:193:\"https://www.sliderrevolution.com/templates/starry-night-parallax-zoom-effect-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=starry-night-parallax-zoom-effect-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.16\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:498:\"<span class=\"ttm_content\">The \"Starry Night Parallax Zoom Effect Slider\" is a captivating template that transforms your website slider into a mesmerizing journey through a celestial dreamscape. With stunning parallax and zoom effects, it immerses your audience in a starry night sky, creating a visually stunning and engaging user experience that will leave a lasting impression. Perfect for showcasing your content or products with a touch of celestial magic.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:189:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-09-13 11:16:06\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:75:\"How to Create an Eye-catching Slider with a Parallax Zoom Effect [Tutorial]\";s:9:\"guide_url\";s:108:\"https://www.sliderrevolution.com/tutorials/how-to-create-an-eye-catching-slider-with-a-parallax-zoom-effect/\";s:9:\"guide_img\";s:53:\"tutorial/Starry-Night-Parallax-Zoom-Effect-Slider.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:707;a:25:{s:2:\"id\";s:3:\"763\";s:5:\"title\";s:44:\"Beyond The Void Parallax Hero With Particles\";s:5:\"alias\";s:15:\"beyond-the-void\";s:3:\"zip\";s:19:\"beyond-the-void.zip\";s:3:\"uid\";s:32:\"c7f47a117b31c76d7f3ad52440abed86\";s:3:\"img\";s:26:\"beyond-the-void/slide1.jpg\";s:7:\"preview\";s:201:\"https://www.sliderrevolution.com/templates/beyond-the-void-parallax-hero-with-particles/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=beyond-the-void-parallax-hero-with-particles\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.16\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:384:\"<span class=\"ttm_content\">Journey beyond the stars with our latest template. An astronaut, after landing on a distant asteroid, unveils an alien anomaly. This parallax hero design, reminiscent of a cinematic sci-fi poster, promises a visual treat. \"Beyond the stars, he found the unknown. Now it is coming home.\" Experience the magic of the void.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:10:\"Special FX\";}s:14:\"plugin_require\";s:357:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-thecluster-addon\\/revslider-thecluster-addon.php\",\"name\":\"Slider Revolution The Cluster AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-09-19 14:42:06\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:69:\"How to Enhance Your Hero Image Design with Special Effects [Tutorial]\";s:9:\"guide_url\";s:102:\"https://www.sliderrevolution.com/tutorials/how-to-enhance-your-hero-image-design-with-special-effects/\";s:9:\"guide_img\";s:28:\"tutorial/beyond-the-void.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:708;a:25:{s:2:\"id\";s:3:\"764\";s:5:\"title\";s:46:\"Extravaganza Ecommerce Product Carousel Static\";s:5:\"alias\";s:33:\"Static-Ecommerce-Product-Carousel\";s:3:\"zip\";s:37:\"Static-Ecommerce-Product-Carousel.zip\";s:3:\"uid\";s:32:\"6bb030f4419e247edfaf94478aa6578e\";s:3:\"img\";s:44:\"Static-Ecommerce-Product-Carousel/slide1.jpg\";s:7:\"preview\";s:191:\"https://www.sliderrevolution.com/templates/extravaganza-ecommerce-product-carousel/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=extravaganza-ecommerce-product-carousel\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.16\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:372:\"<span class=\"ttm_content\">Step up your online store with the Extravaganza Ecommerce Product Carousel. Crafted for the contemporary shop, it flaunts products in their full glory, enveloped in a dark, sleek aesthetic. There is a WooCommerce version and a static version available, which you can adapt to work with any WordPress website.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2023-10-04 11:56:54\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:60:\"How to Create a Beautiful Product Carousel Design [Tutorial]\";s:9:\"guide_url\";s:102:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-beautiful-product-carousel-design-tutorial/\";s:9:\"guide_img\";s:39:\"tutorial/ecommerce-product-carousel.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:709;a:25:{s:2:\"id\";s:3:\"765\";s:5:\"title\";s:43:\"Extravaganza Ecommerce Product Carousel Woo\";s:5:\"alias\";s:30:\"woo-ecommerce-product-carousel\";s:3:\"zip\";s:34:\"woo-ecommerce-product-carousel.zip\";s:3:\"uid\";s:32:\"51b63bf649fdff61634fe888f51ddb4d\";s:3:\"img\";s:41:\"woo-ecommerce-product-carousel/slide1.jpg\";s:7:\"preview\";s:191:\"https://www.sliderrevolution.com/templates/extravaganza-ecommerce-product-carousel/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=extravaganza-ecommerce-product-carousel\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.16\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:372:\"<span class=\"ttm_content\">Step up your online store with the Extravaganza Ecommerce Product Carousel. Crafted for the contemporary shop, it flaunts products in their full glory, enveloped in a dark, sleek aesthetic. There is a WooCommerce version and a static version available, which you can adapt to work with any WordPress website.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2023-10-04 12:00:08\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:60:\"How to Create a Beautiful Product Carousel Design [Tutorial]\";s:9:\"guide_url\";s:102:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-beautiful-product-carousel-design-tutorial/\";s:9:\"guide_img\";s:39:\"tutorial/ecommerce-product-carousel.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:710;a:25:{s:2:\"id\";s:3:\"766\";s:5:\"title\";s:31:\"Serenity Hero With Focus Effect\";s:5:\"alias\";s:31:\"Serenity-Hero-With-Focus-Effect\";s:3:\"zip\";s:35:\"Serenity-Hero-With-Focus-Effect.zip\";s:3:\"uid\";s:32:\"f0c6d9090236c20b1d7536aedc3d8cf8\";s:3:\"img\";s:42:\"Serenity-Hero-With-Focus-Effect/slide1.jpg\";s:7:\"preview\";s:175:\"https://www.sliderrevolution.com/templates/serenity-hero-with-focus-effect/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=serenity-hero-with-focus-effect\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.16\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:578:\"<span class=\"ttm_content\">Enhance your websites visual appeal with the \"Serenity Hero With Focus Effect\" Slider Revolution template. This mesmerizing slider seamlessly combines tranquil backgrounds with dynamic focus effects, guiding your audiences attention to vital elements of your content. Impress with engaging animations, ensure responsive design across all devices, and customize effortlessly to match your brands style. Create a captivating user experience that converts visitors into devoted followers with this exceptional slider.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-10-04 12:03:27\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:80:\"How to Create a Focus Effect to Draw Attention to Your Product Images [Tutorial]\";s:9:\"guide_url\";s:113:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-focus-effect-to-draw-attention-to-your-product-images/\";s:9:\"guide_img\";s:44:\"tutorial/Serenity-Hero-With-Focus-Effect.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:711;a:25:{s:2:\"id\";s:3:\"767\";s:5:\"title\";s:29:\"OakGrove Wine Slider Template\";s:5:\"alias\";s:29:\"OakGrove-Wine-Slider-Template\";s:3:\"zip\";s:33:\"OakGrove-Wine-Slider-Template.zip\";s:3:\"uid\";s:32:\"151ae1d2e6e7b84873f8b62ba57f829c\";s:3:\"img\";s:40:\"OakGrove-Wine-Slider-Template/slide1.jpg\";s:7:\"preview\";s:171:\"https://www.sliderrevolution.com/templates/oakgrove-wine-slider-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=oakgrove-wine-slider-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.18\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:421:\"<span class=\"ttm_content\">Unveil the allure of your wines with the \"OakGrove Wine Slider Template.\" Infused with rustic elegance and smooth transitions, this template offers a captivating journey through your vineyards legacy. Whether you are a boutique winery or an established vineyard, this slider is the ideal tool to showcase your finest vintages and unique tasting experiences.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:189:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-11-03 15:34:47\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:66:\"How to Create a Mysterious Splash Page for Your Website [Tutorial]\";s:9:\"guide_url\";s:99:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-mysterious-splash-page-for-your-website/\";s:9:\"guide_img\";s:42:\"tutorial/OakGrove-Wine-Slider-Template.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:712;a:25:{s:2:\"id\";s:3:\"768\";s:5:\"title\";s:32:\"Geometric Slider Design Template\";s:5:\"alias\";s:32:\"Geometric-Slider-Design-Template\";s:3:\"zip\";s:36:\"Geometric-Slider-Design-Template.zip\";s:3:\"uid\";s:32:\"f024549e5a43b79c185def088f00e42f\";s:3:\"img\";s:43:\"Geometric-Slider-Design-Template/slide1.jpg\";s:7:\"preview\";s:177:\"https://www.sliderrevolution.com/templates/geometric-slider-design-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=geometric-slider-design-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.18\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:446:\"<span class=\"ttm_content\">Immerse your audience in contemporary visual sophistication with our Geometric Slider Design Template. This dynamic slider combines sleek geometric patterns with a modern aesthetic, creating a captivating visual experience. With its seamless integration and customizable features, effortlessly elevate your websites allure and engage your visitors in a cutting-edge digital journey.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:178:\"[{\"path\":\"revslider-particlewave-addon\\/revslider-particlewave-addon.php\",\"name\":\"Particle Wave AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-11-14 10:25:27\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:75:\"How to Create an Eye-catching Geometric Design for Your Homepage [Tutorial]\";s:9:\"guide_url\";s:108:\"https://www.sliderrevolution.com/tutorials/how-to-create-an-eye-catching-geometric-design-for-your-homepage/\";s:9:\"guide_img\";s:45:\"tutorial/Geometric-Slider-Design-Template.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:713;a:25:{s:2:\"id\";s:3:\"769\";s:5:\"title\";s:43:\"Chocolate Bar Product Presentation Template\";s:5:\"alias\";s:43:\"Chocolate-Bar-Product-Presentation-Template\";s:3:\"zip\";s:47:\"Chocolate-Bar-Product-Presentation-Template.zip\";s:3:\"uid\";s:32:\"dc30a3d883c8d16de25544e94640c982\";s:3:\"img\";s:54:\"Chocolate-Bar-Product-Presentation-Template/slide1.jpg\";s:7:\"preview\";s:199:\"https://www.sliderrevolution.com/templates/chocolate-bar-product-presentation-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=chocolate-bar-product-presentation-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.18\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:346:\"<span class=\"ttm_content\">Unwrap the \"Chocolate Bar Product Presentation Template\" – a delectable, visually captivating showcase for your irresistible chocolate creations. Whether you are a chocolatier or a gourmet brand, this template is the key to presenting your products with a touch of sophistication.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-11-14 10:29:58\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:75:\"How to Create a Unique Product Presentation Slider for Your Site [Tutorial]\";s:9:\"guide_url\";s:108:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-unique-product-presentation-slider-for-your-site/\";s:9:\"guide_img\";s:56:\"tutorial/Chocolate-Bar-Product-Presentation-Template.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:714;a:25:{s:2:\"id\";s:3:\"770\";s:5:\"title\";s:30:\"Fluid Dynamics Effect Showcase\";s:5:\"alias\";s:30:\"Fluid-Dynamics-Effect-Showcase\";s:3:\"zip\";s:34:\"Fluid-Dynamics-Effect-Showcase.zip\";s:3:\"uid\";s:32:\"cdd9213edf970f1fe04ded427fb2ada8\";s:3:\"img\";s:41:\"Fluid-Dynamics-Effect-Showcase/slide1.jpg\";s:7:\"preview\";s:173:\"https://www.sliderrevolution.com/templates/fluid-dynamics-effect-showcase/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=fluid-dynamics-effect-showcase\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.18\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:312:\"<span class=\"ttm_content\">Introducing the Fluid Dynamics Effect Showcase - a mesmerizing journey through liquid/gas wonders. Delve into cyber flows, chromatic ripples, ethereal jungle spirits, and cosmic collisions. Crafted for those who appreciate the magic in every pixel.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:10:\"Special FX\";}s:14:\"plugin_require\";s:181:\"[{\"path\":\"revslider-fluiddynamics-addon\\/revslider-fluiddynamics-addon.php\",\"name\":\"Fluid Dynamics AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-11-14 10:32:31\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:76:\"Add Some Magic to Your Hero Section with Liquid Animation Effects [Tutorial]\";s:9:\"guide_url\";s:109:\"https://www.sliderrevolution.com/tutorials/add-some-magic-to-your-hero-section-with-liquid-animation-effects/\";s:9:\"guide_img\";s:43:\"tutorial/Fluid-Dynamics-Effect-Showcase.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:715;a:24:{s:2:\"id\";s:3:\"771\";s:5:\"title\";s:39:\"Spotlight Hero Header With Fluid Effect\";s:5:\"alias\";s:39:\"Spotlight-Hero-Header-With-Fluid-Effect\";s:3:\"zip\";s:43:\"Spotlight-Hero-Header-With-Fluid-Effect.zip\";s:3:\"uid\";s:32:\"c15c375d48a9368fcb61f6a732fb9b9b\";s:3:\"img\";s:50:\"Spotlight-Hero-Header-With-Fluid-Effect/slide1.jpg\";s:7:\"preview\";s:191:\"https://www.sliderrevolution.com/templates/spotlight-hero-header-with-fluid-effect/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=spotlight-hero-header-with-fluid-effect\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.20\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:355:\"<span class=\"ttm_content\">The \"Spotlight Hero Header With Fluid Effect\" is a dynamic and visually engaging website header template, perfect for making a bold first impression. Ideal for creative agencies, product showcases, or promotional campaigns, it blends drama with functionality for a memorable user experience.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:510:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-fluiddynamics-addon\\/revslider-fluiddynamics-addon.php\",\"name\":\"Fluid Dynamics AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-12-20 16:48:30\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:62:\"How to Create an Innovative Typography Hero Section [Tutorial]\";s:9:\"guide_url\";s:95:\"https://www.sliderrevolution.com/tutorials/how-to-create-an-innovative-typography-hero-section/\";s:9:\"guide_img\";s:52:\"tutorial/Spotlight-Hero-Header-With-Fluid-Effect.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:716;a:25:{s:2:\"id\";s:3:\"772\";s:5:\"title\";s:38:\"Suits Product Showcase Slider Template\";s:5:\"alias\";s:38:\"Suits-Product-Showcase-Slider-Template\";s:3:\"zip\";s:42:\"Suits-Product-Showcase-Slider-Template.zip\";s:3:\"uid\";s:32:\"f15dcfc11bbadfd8973ea38627d3ede6\";s:3:\"img\";s:49:\"Suits-Product-Showcase-Slider-Template/slide1.jpg\";s:7:\"preview\";s:189:\"https://www.sliderrevolution.com/templates/suits-product-showcase-slider-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=suits-product-showcase-slider-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.20\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:494:\"<span class=\"ttm_content\">The \"Suits Product Showcase Slider Template\" is a sleek and professional slider design tailored for highlighting high-end products, especially suits. It features clean, elegant lines with a minimalist layout, ensuring the products are the focal point. This template is perfect for fashion retailers or businesses looking to showcase their products with sophistication and style, offering an intuitive and engaging user experience.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:189:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-12-20 16:51:58\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:76:\"How to Create an Eye-Catching Slider for Your Ecommerce Home Page [Tutorial]\";s:9:\"guide_url\";s:109:\"https://www.sliderrevolution.com/tutorials/how-to-create-an-eye-catching-slider-for-your-ecommerce-home-page/\";s:9:\"guide_img\";s:51:\"tutorial/Suits-Product-Showcase-Slider-Template.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:717;a:25:{s:2:\"id\";s:3:\"773\";s:5:\"title\";s:41:\"Beards Full Width Image Carousel Template\";s:5:\"alias\";s:41:\"Beards-Full-Width-Image-Carousel-Template\";s:3:\"zip\";s:45:\"Beards-Full-Width-Image-Carousel-Template.zip\";s:3:\"uid\";s:32:\"98de06abfddd962e725202ceac02a952\";s:3:\"img\";s:52:\"Beards-Full-Width-Image-Carousel-Template/slide1.jpg\";s:7:\"preview\";s:195:\"https://www.sliderrevolution.com/templates/beards-full-width-image-carousel-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=beards-full-width-image-carousel-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.20\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:637:\"<span class=\"ttm_content\">The \"Beards Full Width Image Carousel Template\" is a modern and stylish carousel design, ideal for showcasing wide-ranging images, especially focusing on beard styles and grooming products. This template features a full-width layout, giving each image maximum screen space for a more immersive visual experience. Its sleek and user-friendly interface allows for smooth navigation through the carousel, making it perfect for barber shops, grooming blogs, or lifestyle brands that want to highlight their work or products in a visually appealing and easily accessible format.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";s:190:\"[{\"path\":\"revslider-thecluster-addon\\/revslider-thecluster-addon.php\",\"name\":\"Slider Revolution The Cluster AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-12-20 16:54:46\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:81:\"Give Your Customers Different Choices with a Full-Width Image Carousel [Tutorial]\";s:9:\"guide_url\";s:114:\"https://www.sliderrevolution.com/tutorials/give-your-customers-different-choices-with-a-full-width-image-carousel/\";s:9:\"guide_img\";s:54:\"tutorial/Beards-Full-Width-Image-Carousel-Template.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:718;a:25:{s:2:\"id\";s:3:\"774\";s:5:\"title\";s:29:\"Animated Type Hero Collection\";s:5:\"alias\";s:29:\"Animated-Type-Hero-Collection\";s:3:\"zip\";s:33:\"Animated-Type-Hero-Collection.zip\";s:3:\"uid\";s:32:\"b939ae94fc4bcc2cf2aad050dc14a2f9\";s:3:\"img\";s:40:\"Animated-Type-Hero-Collection/slide1.jpg\";s:7:\"preview\";s:171:\"https://www.sliderrevolution.com/templates/animated-type-hero-collection/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=animated-type-hero-collection\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.7.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:310:\"<span class=\"ttm_content\">Elevate your websites first impression with dynamic, animated typography. Perfect for impactful hero sections, these template is versatile, easily customizable, and designed to make your message stand out, ensuring a memorable visitor experience.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:189:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2024-04-05 14:32:10\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:719;a:25:{s:2:\"id\";s:3:\"775\";s:5:\"title\";s:37:\"Horoscope Slider with Zodiac Showcase\";s:5:\"alias\";s:37:\"Horoscope-Slider-with-Zodiac-Showcase\";s:3:\"zip\";s:41:\"Horoscope-Slider-with-Zodiac-Showcase.zip\";s:3:\"uid\";s:32:\"e896ce65076384fc81834b389dd90385\";s:3:\"img\";s:48:\"Horoscope-Slider-with-Zodiac-Showcase/slide1.jpg\";s:7:\"preview\";s:187:\"https://www.sliderrevolution.com/templates/horoscope-slider-with-zodiac-showcase/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=horoscope-slider-with-zodiac-showcase\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.7.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:483:\"<span class=\"ttm_content\">The \"Horoscope Slider with Zodiac Showcase\" is an engaging Slider Revolution template that brings the magic of astrology to your website. It offers a sleek, interactive experience with beautiful visuals of all twelve zodiac signs, providing users with insightful astrological information. Perfect for adding a celestial touch to any site, this template makes exploring the zodiac both informative and visually stunning.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:545:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-thecluster-addon\\/revslider-thecluster-addon.php\",\"name\":\"Slider Revolution The Cluster AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2024-04-05 14:35:39\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:82:\"How to Create an Employee Spotlight Presentation Using a Website Slider [Tutorial]\";s:9:\"guide_url\";s:115:\"https://www.sliderrevolution.com/tutorials/how-to-create-an-employee-spotlight-presentation-using-a-website-slider/\";s:9:\"guide_img\";s:50:\"tutorial/Horoscope-Slider-with-Zodiac-Showcase.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:720;a:25:{s:2:\"id\";s:3:\"776\";s:5:\"title\";s:32:\"Urban Oven Pizza Slider Template\";s:5:\"alias\";s:32:\"Urban-Oven-Pizza-Slider-Template\";s:3:\"zip\";s:36:\"Urban-Oven-Pizza-Slider-Template.zip\";s:3:\"uid\";s:32:\"630e123eb690fcf2f9a8807f64e24855\";s:3:\"img\";s:43:\"Urban-Oven-Pizza-Slider-Template/slide1.jpg\";s:7:\"preview\";s:177:\"https://www.sliderrevolution.com/templates/urban-oven-pizza-slider-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=urban-oven-pizza-slider-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.7.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:514:\"<span class=\"ttm_content\">Elevate your pizzerias online presence with the \"Urban Oven Pizza Slider\", a modern and sleek website slider designed to showcase the irresistible appeal of freshly baked pizzas. This template captivates with vivid imagery and smooth transitions, highlighting your culinary creations and enticing food enthusiasts with every slide. Perfect for any food-oriented website looking to engage and attract customers with a taste of urban dining excellence.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:189:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2024-04-05 14:43:14\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:721;a:28:{s:2:\"id\";s:3:\"777\";s:5:\"title\";s:42:\"Modern Web Agency Website Template Package\";s:5:\"alias\";s:42:\"modern-web-agency-website-template-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:42:\"modern-web-agency-website-template-package\";s:3:\"img\";s:47:\"packages/Modern-Web-Agency-Website-Template.jpg\";s:7:\"preview\";s:181:\"https://www.sliderrevolution.com/templates/modern-web-agency-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=modern-web-agency-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.7.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:708:\"<span class=\"ttm_content\">Modern Web Agency Website Template is a one-page website template designed for contemporary web agencies seeking a blend of elegance and functionality. This minimalist yet sophisticated template features a dynamic full-screen hero section, interactive elements, and smooth scrolling navigation, ensuring a captivating user experience. Responsive and SEO-optimized, it adapts beautifully across devices while enhancing your online visibility. Ideal for showcasing services and projects, it combines ease of customization with fast loading times, making it a perfect choice for agencies looking to leave a lasting impression in the digital world.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:348:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-fluiddynamics-addon\\/revslider-fluiddynamics-addon.php\",\"name\":\"Fluid Dynamics AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2024-04-05 14:46:51\";s:7:\"package\";s:42:\"Modern Web Agency Website Template Package\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"66\";s:9:\"installed\";b:0;}i:722;a:29:{s:2:\"id\";s:3:\"778\";s:5:\"title\";s:22:\"Modern Web Agency Hero\";s:5:\"alias\";s:22:\"Modern-Web-Agency-Hero\";s:3:\"zip\";s:32:\"packs/Modern-Web-Agency-Hero.zip\";s:3:\"uid\";s:32:\"c7c212ffd591dc749821824acfed9b1e\";s:3:\"img\";s:33:\"Modern-Web-Agency-Hero/slide1.jpg\";s:7:\"preview\";s:181:\"https://www.sliderrevolution.com/templates/modern-web-agency-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=modern-web-agency-website-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.7.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:708:\"<span class=\"ttm_content\">Modern Web Agency Website Template is a one-page website template designed for contemporary web agencies seeking a blend of elegance and functionality. This minimalist yet sophisticated template features a dynamic full-screen hero section, interactive elements, and smooth scrolling navigation, ensuring a captivating user experience. Responsive and SEO-optimized, it adapts beautifully across devices while enhancing your online visibility. Ideal for showcasing services and projects, it combines ease of customization with fast loading times, making it a perfect choice for agencies looking to leave a lasting impression in the digital world.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:181:\"[{\"path\":\"revslider-fluiddynamics-addon\\/revslider-fluiddynamics-addon.php\",\"name\":\"Fluid Dynamics AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2024-04-05 14:50:46\";s:7:\"package\";s:42:\"Modern Web Agency Website Template Package\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"66\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:723;a:28:{s:2:\"id\";s:3:\"779\";s:5:\"title\";s:24:\"Modern Web Agency Brands\";s:5:\"alias\";s:24:\"Modern-Web-Agency-Brands\";s:3:\"zip\";s:34:\"packs/Modern-Web-Agency-Brands.zip\";s:3:\"uid\";s:32:\"1264d8fefc943dbcc791458e6cee7ce8\";s:3:\"img\";s:35:\"Modern-Web-Agency-Brands/slide1.jpg\";s:7:\"preview\";s:181:\"https://www.sliderrevolution.com/templates/modern-web-agency-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=modern-web-agency-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.7.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:708:\"<span class=\"ttm_content\">Modern Web Agency Website Template is a one-page website template designed for contemporary web agencies seeking a blend of elegance and functionality. This minimalist yet sophisticated template features a dynamic full-screen hero section, interactive elements, and smooth scrolling navigation, ensuring a captivating user experience. Responsive and SEO-optimized, it adapts beautifully across devices while enhancing your online visibility. Ideal for showcasing services and projects, it combines ease of customization with fast loading times, making it a perfect choice for agencies looking to leave a lasting impression in the digital world.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2024-04-05 14:53:18\";s:7:\"package\";s:42:\"Modern Web Agency Website Template Package\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"66\";s:9:\"installed\";b:0;}i:724;a:28:{s:2:\"id\";s:3:\"780\";s:5:\"title\";s:23:\"Modern Web Agency About\";s:5:\"alias\";s:23:\"Modern-Web-Agency-About\";s:3:\"zip\";s:33:\"packs/Modern-Web-Agency-About.zip\";s:3:\"uid\";s:32:\"28af788973472a5b8d1d9f4bc9200667\";s:3:\"img\";s:34:\"Modern-Web-Agency-About/slide1.jpg\";s:7:\"preview\";s:181:\"https://www.sliderrevolution.com/templates/modern-web-agency-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=modern-web-agency-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.7.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:708:\"<span class=\"ttm_content\">Modern Web Agency Website Template is a one-page website template designed for contemporary web agencies seeking a blend of elegance and functionality. This minimalist yet sophisticated template features a dynamic full-screen hero section, interactive elements, and smooth scrolling navigation, ensuring a captivating user experience. Responsive and SEO-optimized, it adapts beautifully across devices while enhancing your online visibility. Ideal for showcasing services and projects, it combines ease of customization with fast loading times, making it a perfect choice for agencies looking to leave a lasting impression in the digital world.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2024-04-05 14:55:45\";s:7:\"package\";s:42:\"Modern Web Agency Website Template Package\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"66\";s:9:\"installed\";b:0;}i:725;a:28:{s:2:\"id\";s:3:\"781\";s:5:\"title\";s:26:\"Modern Web Agency Projects\";s:5:\"alias\";s:26:\"Modern-Web-Agency-Projects\";s:3:\"zip\";s:36:\"packs/Modern-Web-Agency-Projects.zip\";s:3:\"uid\";s:32:\"ff5c528962fcbff1c39184d538a32a6a\";s:3:\"img\";s:37:\"Modern-Web-Agency-Projects/slide1.jpg\";s:7:\"preview\";s:181:\"https://www.sliderrevolution.com/templates/modern-web-agency-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=modern-web-agency-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.7.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:708:\"<span class=\"ttm_content\">Modern Web Agency Website Template is a one-page website template designed for contemporary web agencies seeking a blend of elegance and functionality. This minimalist yet sophisticated template features a dynamic full-screen hero section, interactive elements, and smooth scrolling navigation, ensuring a captivating user experience. Responsive and SEO-optimized, it adapts beautifully across devices while enhancing your online visibility. Ideal for showcasing services and projects, it combines ease of customization with fast loading times, making it a perfect choice for agencies looking to leave a lasting impression in the digital world.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2024-04-05 14:57:15\";s:7:\"package\";s:42:\"Modern Web Agency Website Template Package\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"66\";s:9:\"installed\";b:0;}i:726;a:28:{s:2:\"id\";s:3:\"782\";s:5:\"title\";s:32:\"Modern Web Agency Title Projects\";s:5:\"alias\";s:32:\"Modern-Web-Agency-Title-Projects\";s:3:\"zip\";s:42:\"packs/Modern-Web-Agency-Title-Projects.zip\";s:3:\"uid\";s:32:\"ff9fe269ad43f301274963920944b903\";s:3:\"img\";s:43:\"Modern-Web-Agency-Title-Projects/slide1.jpg\";s:7:\"preview\";s:181:\"https://www.sliderrevolution.com/templates/modern-web-agency-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=modern-web-agency-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.7.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:708:\"<span class=\"ttm_content\">Modern Web Agency Website Template is a one-page website template designed for contemporary web agencies seeking a blend of elegance and functionality. This minimalist yet sophisticated template features a dynamic full-screen hero section, interactive elements, and smooth scrolling navigation, ensuring a captivating user experience. Responsive and SEO-optimized, it adapts beautifully across devices while enhancing your online visibility. Ideal for showcasing services and projects, it combines ease of customization with fast loading times, making it a perfect choice for agencies looking to leave a lasting impression in the digital world.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2024-04-05 15:00:22\";s:7:\"package\";s:42:\"Modern Web Agency Website Template Package\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"66\";s:9:\"installed\";b:0;}i:727;a:28:{s:2:\"id\";s:3:\"783\";s:5:\"title\";s:26:\"Modern Web Agency Services\";s:5:\"alias\";s:26:\"Modern-Web-Agency-Services\";s:3:\"zip\";s:36:\"packs/Modern-Web-Agency-Services.zip\";s:3:\"uid\";s:32:\"f307d3db154e238ca0de95dac9401963\";s:3:\"img\";s:37:\"Modern-Web-Agency-Services/slide1.jpg\";s:7:\"preview\";s:181:\"https://www.sliderrevolution.com/templates/modern-web-agency-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=modern-web-agency-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.7.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:708:\"<span class=\"ttm_content\">Modern Web Agency Website Template is a one-page website template designed for contemporary web agencies seeking a blend of elegance and functionality. This minimalist yet sophisticated template features a dynamic full-screen hero section, interactive elements, and smooth scrolling navigation, ensuring a captivating user experience. Responsive and SEO-optimized, it adapts beautifully across devices while enhancing your online visibility. Ideal for showcasing services and projects, it combines ease of customization with fast loading times, making it a perfect choice for agencies looking to leave a lasting impression in the digital world.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2024-04-05 15:02:05\";s:7:\"package\";s:42:\"Modern Web Agency Website Template Package\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"66\";s:9:\"installed\";b:0;}i:728;a:28:{s:2:\"id\";s:3:\"784\";s:5:\"title\";s:25:\"Modern Web Agency Contact\";s:5:\"alias\";s:25:\"Modern-Web-Agency-Contact\";s:3:\"zip\";s:35:\"packs/Modern-Web-Agency-Contact.zip\";s:3:\"uid\";s:32:\"ffba037192afa45656e9f4f7bc425b3c\";s:3:\"img\";s:36:\"Modern-Web-Agency-Contact/slide1.jpg\";s:7:\"preview\";s:181:\"https://www.sliderrevolution.com/templates/modern-web-agency-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=modern-web-agency-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.7.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:708:\"<span class=\"ttm_content\">Modern Web Agency Website Template is a one-page website template designed for contemporary web agencies seeking a blend of elegance and functionality. This minimalist yet sophisticated template features a dynamic full-screen hero section, interactive elements, and smooth scrolling navigation, ensuring a captivating user experience. Responsive and SEO-optimized, it adapts beautifully across devices while enhancing your online visibility. Ideal for showcasing services and projects, it combines ease of customization with fast loading times, making it a perfect choice for agencies looking to leave a lasting impression in the digital world.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2024-04-05 15:03:27\";s:7:\"package\";s:42:\"Modern Web Agency Website Template Package\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"66\";s:9:\"installed\";b:0;}i:729;a:28:{s:2:\"id\";s:3:\"785\";s:5:\"title\";s:23:\"Modern Agency Project 1\";s:5:\"alias\";s:23:\"Modern-Agency-Project-1\";s:3:\"zip\";s:33:\"packs/Modern-Agency-Project-1.zip\";s:3:\"uid\";s:32:\"a894e6ba97e8176be1e66abebcaaf986\";s:3:\"img\";s:34:\"Modern-Agency-Project-1/slide1.jpg\";s:7:\"preview\";s:181:\"https://www.sliderrevolution.com/templates/modern-web-agency-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=modern-web-agency-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.7.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:708:\"<span class=\"ttm_content\">Modern Web Agency Website Template is a one-page website template designed for contemporary web agencies seeking a blend of elegance and functionality. This minimalist yet sophisticated template features a dynamic full-screen hero section, interactive elements, and smooth scrolling navigation, ensuring a captivating user experience. Responsive and SEO-optimized, it adapts beautifully across devices while enhancing your online visibility. Ideal for showcasing services and projects, it combines ease of customization with fast loading times, making it a perfect choice for agencies looking to leave a lasting impression in the digital world.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2024-04-05 15:04:46\";s:7:\"package\";s:42:\"Modern Web Agency Website Template Package\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"66\";s:9:\"installed\";b:0;}i:730;a:27:{s:2:\"id\";s:3:\"786\";s:5:\"title\";s:23:\"Modern Agency Project 2\";s:5:\"alias\";s:23:\"Modern-Agency-Project-2\";s:3:\"zip\";s:33:\"packs/Modern-Agency-Project-2.zip\";s:3:\"uid\";s:32:\"a6a6f6cdd82579808bbff580261adfdf\";s:3:\"img\";s:34:\"Modern-Agency-Project-2/slide1.jpg\";s:7:\"preview\";s:181:\"https://www.sliderrevolution.com/templates/modern-web-agency-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=modern-web-agency-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.7.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:708:\"<span class=\"ttm_content\">Modern Web Agency Website Template is a one-page website template designed for contemporary web agencies seeking a blend of elegance and functionality. This minimalist yet sophisticated template features a dynamic full-screen hero section, interactive elements, and smooth scrolling navigation, ensuring a captivating user experience. Responsive and SEO-optimized, it adapts beautifully across devices while enhancing your online visibility. Ideal for showcasing services and projects, it combines ease of customization with fast loading times, making it a perfect choice for agencies looking to leave a lasting impression in the digital world.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2024-04-05 15:08:30\";s:7:\"package\";s:42:\"Modern Web Agency Website Template Package\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"66\";s:9:\"installed\";b:0;}i:731;a:28:{s:2:\"id\";s:3:\"787\";s:5:\"title\";s:23:\"Modern Agency Project 3\";s:5:\"alias\";s:23:\"Modern-Agency-Project-3\";s:3:\"zip\";s:33:\"packs/Modern-Agency-Project-3.zip\";s:3:\"uid\";s:32:\"77b68af53a2d6ed705e8118334144fa8\";s:3:\"img\";s:34:\"Modern-Agency-Project-3/slide1.jpg\";s:7:\"preview\";s:181:\"https://www.sliderrevolution.com/templates/modern-web-agency-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=modern-web-agency-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.7.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:708:\"<span class=\"ttm_content\">Modern Web Agency Website Template is a one-page website template designed for contemporary web agencies seeking a blend of elegance and functionality. This minimalist yet sophisticated template features a dynamic full-screen hero section, interactive elements, and smooth scrolling navigation, ensuring a captivating user experience. Responsive and SEO-optimized, it adapts beautifully across devices while enhancing your online visibility. Ideal for showcasing services and projects, it combines ease of customization with fast loading times, making it a perfect choice for agencies looking to leave a lasting impression in the digital world.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2024-04-05 15:10:19\";s:7:\"package\";s:42:\"Modern Web Agency Website Template Package\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"66\";s:9:\"installed\";b:0;}i:732;a:28:{s:2:\"id\";s:3:\"788\";s:5:\"title\";s:23:\"Modern Agency Project 4\";s:5:\"alias\";s:23:\"Modern-Agency-Project-4\";s:3:\"zip\";s:33:\"packs/Modern-Agency-Project-4.zip\";s:3:\"uid\";s:32:\"347d38dd2ddf98497ef7a621b0d6ec1f\";s:3:\"img\";s:34:\"Modern-Agency-Project-4/slide1.jpg\";s:7:\"preview\";s:181:\"https://www.sliderrevolution.com/templates/modern-web-agency-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=modern-web-agency-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.7.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:708:\"<span class=\"ttm_content\">Modern Web Agency Website Template is a one-page website template designed for contemporary web agencies seeking a blend of elegance and functionality. This minimalist yet sophisticated template features a dynamic full-screen hero section, interactive elements, and smooth scrolling navigation, ensuring a captivating user experience. Responsive and SEO-optimized, it adapts beautifully across devices while enhancing your online visibility. Ideal for showcasing services and projects, it combines ease of customization with fast loading times, making it a perfect choice for agencies looking to leave a lasting impression in the digital world.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2024-04-05 15:11:56\";s:7:\"package\";s:42:\"Modern Web Agency Website Template Package\";s:13:\"package_order\";s:2:\"10\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"66\";s:9:\"installed\";b:0;}i:733;a:24:{s:2:\"id\";s:3:\"789\";s:5:\"title\";s:27:\"Dog Shelter Showcase Slider\";s:5:\"alias\";s:33:\"Dog-Shelter-Puppy-Showcase-Slider\";s:3:\"zip\";s:31:\"Dog-Shelter-Showcase-Slider.zip\";s:3:\"uid\";s:32:\"7c301fa0df88e2a143a3e166c5610ad2\";s:3:\"img\";s:38:\"Dog-Shelter-Showcase-Slider/slide1.jpg\";s:7:\"preview\";s:167:\"https://www.sliderrevolution.com/templates/dog-shelter-showcase-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=dog-shelter-showcase-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.7.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:582:\"<span class=\"ttm_content\">Discover the \"Dog Shelter Showcase Slider,\" a captivating slider template crafted for dog shelters aiming to connect puppies with their forever homes. Featuring engaging slides with high-quality images and essential puppy details, this template highlights the unique personalities of each adorable canine. It\'s user-friendly, fully responsive, and designed to inspire potential adopters, making it an essential addition to any dog adoption website. Bring stories to life and help puppies find their families with ease.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2024-04-30 16:03:57\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:734;a:24:{s:2:\"id\";s:3:\"790\";s:5:\"title\";s:34:\"Velocity Elegant Fullscreen Slider\";s:5:\"alias\";s:34:\"Velocity-Elegant-Fullscreen-Slider\";s:3:\"zip\";s:38:\"Velocity-Elegant-Fullscreen-Slider.zip\";s:3:\"uid\";s:32:\"bfaea7a4e5e15981e2ec432b2f6bb0c2\";s:3:\"img\";s:45:\"Velocity-Elegant-Fullscreen-Slider/slide1.jpg\";s:7:\"preview\";s:128:\"https://revolution.themepunch.com/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=revolution.themepunch.com\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.7.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:550:\"<span class=\"ttm_content\">Elevate your website with our Elegant Fullscreen Slider, a visually striking presentation tool designed specifically for showcasing bicycles. This slider captures the essence of both style and functionality, offering fullscreen visuals that bring your cycling products to life. With seamless transitions and a clean design, it is perfect for cycling shops, manufacturers, or any enthusiast looking to highlight their passion for bicycles through a dynamic and engaging online experience</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2024-04-30 16:08:01\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:735;a:24:{s:2:\"id\";s:3:\"791\";s:5:\"title\";s:37:\"Professional Training Slider Template\";s:5:\"alias\";s:37:\"Professional-Training-Slider-Template\";s:3:\"zip\";s:41:\"Professional-Training-Slider-Template.zip\";s:3:\"uid\";s:32:\"27bb0e841e8b508883dd4db3d65e342b\";s:3:\"img\";s:48:\"Professional-Training-Slider-Template/slide1.jpg\";s:7:\"preview\";s:187:\"https://www.sliderrevolution.com/templates/professional-training-slider-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=professional-training-slider-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.7.10\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:618:\"<span class=\"ttm_content\">Capture the essence of expertise with this Professional Training Slider Template, designed to showcase educational or training services in a compelling and visually engaging manner. Perfect for institutions, trainers, and educational programs looking to highlight their offerings, this template features sleek design elements and intuitive layouts that guide potential clients through your services. Its versatile structure ensures it can be adapted to various professional settings, enhancing user experience and emphasizing key information effectively.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:189:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2024-05-06 14:27:37\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:736;a:25:{s:2:\"id\";s:3:\"792\";s:5:\"title\";s:31:\"Modern Restaurant Slider Design\";s:5:\"alias\";s:31:\"Modern-Restaurant-Slider-Design\";s:3:\"zip\";s:35:\"Modern-Restaurant-Slider-Design.zip\";s:3:\"uid\";s:32:\"460679aa4879a6ed62b489fb9198169e\";s:3:\"img\";s:42:\"Modern-Restaurant-Slider-Design/slide1.jpg\";s:7:\"preview\";s:175:\"https://www.sliderrevolution.com/templates/modern-restaurant-slider-design/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=modern-restaurant-slider-design\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.7.12\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:435:\"<span class=\"ttm_content\">Elevate your restaurants online presence with the Modern Restaurant Slider Design, an exquisite template that seamlessly blends stunning visuals of signature dishes with elegant typography and refined design elements. Ideal for fine dining establishments, bistros, and cafes, this slider is designed to captivate your audience and turn online visitors into loyal patrons.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:356:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2024-05-24 11:03:17\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:737;a:28:{s:2:\"id\";s:3:\"793\";s:5:\"title\";s:32:\"Coworking Space Website Template\";s:5:\"alias\";s:32:\"coworking-space-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:32:\"coworking-space-website-template\";s:3:\"img\";s:45:\"packages/coworking-space-website-template.jpg\";s:7:\"preview\";s:176:\"https://www.sliderrevolution.com/templates/coworking-space-website-template?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=coworking-space-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.7.13\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:730:\"<span class=\"ttm_content\">Discover the ultimate solution for coworking spaces and shared offices with our modern, clean, and visually captivating website template. Designed to attract remote workers, digital nomads, and professionals, this template features a full-width hero image, detailed descriptions of flexible membership plans, comprehensive amenities, and vibrant community highlights. Testimonials and engaging visuals create a compelling narrative about your space. With a responsive design and intuitive layout, this template ensures a seamless user experience across all devices, making it easier than ever to showcase your coworking spaces unique offerings and vibrant community.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2024-06-17 16:43:56\";s:7:\"package\";s:40:\"Coworking Space Website Template Package\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"67\";s:9:\"installed\";b:0;}i:738;a:28:{s:2:\"id\";s:3:\"794\";s:5:\"title\";s:20:\"Coworking Space Menu\";s:5:\"alias\";s:20:\"Coworking-Space-Menu\";s:3:\"zip\";s:30:\"packs/Coworking-Space-Menu.zip\";s:3:\"uid\";s:32:\"a54d7136ad9469944a75b7a1ac1e9cad\";s:3:\"img\";s:31:\"Coworking-Space-Menu/slide1.jpg\";s:7:\"preview\";s:176:\"https://www.sliderrevolution.com/templates/coworking-space-website-template?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=coworking-space-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.7.13\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:732:\"<span class=\"ttm_content\">Discover the ultimate solution for coworking spaces and shared offices with our modern, clean, and visually captivating website template. Designed to attract remote workers, digital nomads, and professionals, this template features a full-width hero image, detailed descriptions of flexible membership plans, comprehensive amenities, and vibrant community highlights. Testimonials and engaging visuals create a compelling narrative about your space. With a responsive design and intuitive layout, this template ensures a seamless user experience across all devices, making it easier than ever to showcase your coworking spaces unique offerings and vibrant community.</span><span class=\"ttm_space\"></span>\r\n\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2024-06-17 16:46:22\";s:7:\"package\";s:40:\"Coworking Space Website Template Package\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"67\";s:9:\"installed\";b:0;}i:739;a:27:{s:2:\"id\";s:3:\"795\";s:5:\"title\";s:20:\"Coworking Space Hero\";s:5:\"alias\";s:20:\"Coworking-Space-Hero\";s:3:\"zip\";s:30:\"packs/Coworking-Space-Hero.zip\";s:3:\"uid\";s:32:\"b64e93198eb2b9f1662d11da891833a3\";s:3:\"img\";s:31:\"Coworking-Space-Hero/slide1.jpg\";s:7:\"preview\";s:176:\"https://www.sliderrevolution.com/templates/coworking-space-website-template?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=coworking-space-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.7.13\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:730:\"<span class=\"ttm_content\">Discover the ultimate solution for coworking spaces and shared offices with our modern, clean, and visually captivating website template. Designed to attract remote workers, digital nomads, and professionals, this template features a full-width hero image, detailed descriptions of flexible membership plans, comprehensive amenities, and vibrant community highlights. Testimonials and engaging visuals create a compelling narrative about your space. With a responsive design and intuitive layout, this template ensures a seamless user experience across all devices, making it easier than ever to showcase your coworking spaces unique offerings and vibrant community.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2024-06-17 16:48:26\";s:7:\"package\";s:40:\"Coworking Space Website Template Package\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"67\";s:9:\"installed\";b:0;}i:740;a:28:{s:2:\"id\";s:3:\"796\";s:5:\"title\";s:23:\"Coworking Space Counter\";s:5:\"alias\";s:23:\"Coworking-Space-Counter\";s:3:\"zip\";s:33:\"packs/Coworking-Space-Counter.zip\";s:3:\"uid\";s:32:\"779df7e1cfd3e20813f4e2cfe75351e1\";s:3:\"img\";s:34:\"Coworking-Space-Counter/slide1.jpg\";s:7:\"preview\";s:176:\"https://www.sliderrevolution.com/templates/coworking-space-website-template?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=coworking-space-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.7.13\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:730:\"<span class=\"ttm_content\">Discover the ultimate solution for coworking spaces and shared offices with our modern, clean, and visually captivating website template. Designed to attract remote workers, digital nomads, and professionals, this template features a full-width hero image, detailed descriptions of flexible membership plans, comprehensive amenities, and vibrant community highlights. Testimonials and engaging visuals create a compelling narrative about your space. With a responsive design and intuitive layout, this template ensures a seamless user experience across all devices, making it easier than ever to showcase your coworking spaces unique offerings and vibrant community.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2024-06-17 16:50:21\";s:7:\"package\";s:40:\"Coworking Space Website Template Package\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"67\";s:9:\"installed\";b:0;}i:741;a:28:{s:2:\"id\";s:3:\"797\";s:5:\"title\";s:26:\"Coworking Space Why Choose\";s:5:\"alias\";s:26:\"Coworking-Space-Why-Choose\";s:3:\"zip\";s:36:\"packs/Coworking-Space-Why-Choose.zip\";s:3:\"uid\";s:32:\"0148f542b5884b5508355508afc21790\";s:3:\"img\";s:37:\"Coworking-Space-Why-Choose/slide1.jpg\";s:7:\"preview\";s:176:\"https://www.sliderrevolution.com/templates/coworking-space-website-template?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=coworking-space-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.7.13\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:730:\"<span class=\"ttm_content\">Discover the ultimate solution for coworking spaces and shared offices with our modern, clean, and visually captivating website template. Designed to attract remote workers, digital nomads, and professionals, this template features a full-width hero image, detailed descriptions of flexible membership plans, comprehensive amenities, and vibrant community highlights. Testimonials and engaging visuals create a compelling narrative about your space. With a responsive design and intuitive layout, this template ensures a seamless user experience across all devices, making it easier than ever to showcase your coworking spaces unique offerings and vibrant community.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2024-06-17 16:52:24\";s:7:\"package\";s:40:\"Coworking Space Website Template Package\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"67\";s:9:\"installed\";b:0;}i:742;a:28:{s:2:\"id\";s:3:\"798\";s:5:\"title\";s:25:\"Coworking Space Amenities\";s:5:\"alias\";s:25:\"Coworking-Space-Amenities\";s:3:\"zip\";s:35:\"packs/Coworking-Space-Amenities.zip\";s:3:\"uid\";s:32:\"f0c9d57fad0574ad61d55818d7fe2384\";s:3:\"img\";s:36:\"Coworking-Space-Amenities/slide1.jpg\";s:7:\"preview\";s:176:\"https://www.sliderrevolution.com/templates/coworking-space-website-template?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=coworking-space-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.7.13\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:730:\"<span class=\"ttm_content\">Discover the ultimate solution for coworking spaces and shared offices with our modern, clean, and visually captivating website template. Designed to attract remote workers, digital nomads, and professionals, this template features a full-width hero image, detailed descriptions of flexible membership plans, comprehensive amenities, and vibrant community highlights. Testimonials and engaging visuals create a compelling narrative about your space. With a responsive design and intuitive layout, this template ensures a seamless user experience across all devices, making it easier than ever to showcase your coworking spaces unique offerings and vibrant community.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2024-06-17 16:54:02\";s:7:\"package\";s:40:\"Coworking Space Website Template Package\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"67\";s:9:\"installed\";b:0;}i:743;a:28:{s:2:\"id\";s:3:\"799\";s:5:\"title\";s:21:\"Coworking Space Plans\";s:5:\"alias\";s:21:\"Coworking-Space-Plans\";s:3:\"zip\";s:31:\"packs/Coworking-Space-Plans.zip\";s:3:\"uid\";s:32:\"d0bd67ed8369c905fab8d162e90d909c\";s:3:\"img\";s:32:\"Coworking-Space-Plans/slide1.jpg\";s:7:\"preview\";s:176:\"https://www.sliderrevolution.com/templates/coworking-space-website-template?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=coworking-space-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.7.13\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:730:\"<span class=\"ttm_content\">Discover the ultimate solution for coworking spaces and shared offices with our modern, clean, and visually captivating website template. Designed to attract remote workers, digital nomads, and professionals, this template features a full-width hero image, detailed descriptions of flexible membership plans, comprehensive amenities, and vibrant community highlights. Testimonials and engaging visuals create a compelling narrative about your space. With a responsive design and intuitive layout, this template ensures a seamless user experience across all devices, making it easier than ever to showcase your coworking spaces unique offerings and vibrant community.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2024-06-17 16:57:42\";s:7:\"package\";s:40:\"Coworking Space Website Template Package\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"67\";s:9:\"installed\";b:0;}i:744;a:28:{s:2:\"id\";s:3:\"800\";s:5:\"title\";s:28:\"Coworking Space Testimonials\";s:5:\"alias\";s:28:\"Coworking-Space-Testimonials\";s:3:\"zip\";s:38:\"packs/Coworking-Space-Testimonials.zip\";s:3:\"uid\";s:32:\"4c0f0d009ffff4a2e5bcb763ba3b59df\";s:3:\"img\";s:39:\"Coworking-Space-Testimonials/slide1.jpg\";s:7:\"preview\";s:176:\"https://www.sliderrevolution.com/templates/coworking-space-website-template?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=coworking-space-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.7.13\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:730:\"<span class=\"ttm_content\">Discover the ultimate solution for coworking spaces and shared offices with our modern, clean, and visually captivating website template. Designed to attract remote workers, digital nomads, and professionals, this template features a full-width hero image, detailed descriptions of flexible membership plans, comprehensive amenities, and vibrant community highlights. Testimonials and engaging visuals create a compelling narrative about your space. With a responsive design and intuitive layout, this template ensures a seamless user experience across all devices, making it easier than ever to showcase your coworking spaces unique offerings and vibrant community.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2024-06-17 16:59:24\";s:7:\"package\";s:40:\"Coworking Space Website Template Package\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"67\";s:9:\"installed\";b:0;}i:745;a:28:{s:2:\"id\";s:3:\"801\";s:5:\"title\";s:20:\"Coworking Space Join\";s:5:\"alias\";s:20:\"Coworking-Space-Join\";s:3:\"zip\";s:30:\"packs/Coworking-Space-Join.zip\";s:3:\"uid\";s:32:\"3ce0b13b8345324a396dc82e10b1d6d7\";s:3:\"img\";s:31:\"Coworking-Space-Join/slide1.jpg\";s:7:\"preview\";s:176:\"https://www.sliderrevolution.com/templates/coworking-space-website-template?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=coworking-space-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.7.13\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:730:\"<span class=\"ttm_content\">Discover the ultimate solution for coworking spaces and shared offices with our modern, clean, and visually captivating website template. Designed to attract remote workers, digital nomads, and professionals, this template features a full-width hero image, detailed descriptions of flexible membership plans, comprehensive amenities, and vibrant community highlights. Testimonials and engaging visuals create a compelling narrative about your space. With a responsive design and intuitive layout, this template ensures a seamless user experience across all devices, making it easier than ever to showcase your coworking spaces unique offerings and vibrant community.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2024-06-17 17:01:34\";s:7:\"package\";s:40:\"Coworking Space Website Template Package\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"67\";s:9:\"installed\";b:0;}i:746;a:28:{s:2:\"id\";s:3:\"802\";s:5:\"title\";s:22:\"Coworking Space Footer\";s:5:\"alias\";s:22:\"Coworking-Space-Footer\";s:3:\"zip\";s:32:\"packs/Coworking-Space-Footer.zip\";s:3:\"uid\";s:32:\"ca80282c2de127b26fd753897c9e6fe0\";s:3:\"img\";s:33:\"Coworking-Space-Footer/slide1.jpg\";s:7:\"preview\";s:176:\"https://www.sliderrevolution.com/templates/coworking-space-website-template?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=coworking-space-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.7.13\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:730:\"<span class=\"ttm_content\">Discover the ultimate solution for coworking spaces and shared offices with our modern, clean, and visually captivating website template. Designed to attract remote workers, digital nomads, and professionals, this template features a full-width hero image, detailed descriptions of flexible membership plans, comprehensive amenities, and vibrant community highlights. Testimonials and engaging visuals create a compelling narrative about your space. With a responsive design and intuitive layout, this template ensures a seamless user experience across all devices, making it easier than ever to showcase your coworking spaces unique offerings and vibrant community.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2024-06-17 17:02:36\";s:7:\"package\";s:40:\"Coworking Space Website Template Package\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"67\";s:9:\"installed\";b:0;}i:747;a:25:{s:2:\"id\";s:3:\"803\";s:5:\"title\";s:22:\"Seafood Store Template\";s:5:\"alias\";s:22:\"Seafood-Store-Template\";s:3:\"zip\";s:26:\"Seafood-Store-Template.zip\";s:3:\"uid\";s:32:\"32f8d8f6925c45d5c049b46c83616d8c\";s:3:\"img\";s:33:\"Seafood-Store-Template/slide1.jpg\";s:7:\"preview\";s:157:\"https://www.sliderrevolution.com/templates/seafood-store-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=seafood-store-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:6:\"6.7.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:757:\"<span class=\"ttm_content\">Introducing the Seafood Store Template, a visually stunning and highly informative slider designed specifically for fish and seafood businesses. This template features five beautifully crafted slides, each showcasing a different type of fresh fish with high-resolution images, detailed descriptions, and engaging calls to action. Perfect for seafood markets, online fish stores, and restaurants, this template combines coastal aesthetics with modern design elements to create an appealing and user-friendly experience. With easy customization options and responsive design, the Seafood Store Template is the ideal solution for highlighting your premium seafood products and enticing customers.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:370:\"[{\"path\":\"revslider-liquideffect-addon\\/revslider-liquideffect-addon.php\",\"name\":\"Distortion Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2024-07-08 12:16:10\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:748;a:25:{s:2:\"id\";s:3:\"804\";s:5:\"title\";s:41:\"Director & Photographer Showcase Template\";s:5:\"alias\";s:40:\"Director--Photographer-Showcase-Template\";s:3:\"zip\";s:44:\"Director--Photographer-Showcase-Template.zip\";s:3:\"uid\";s:32:\"93cc8dbae694476a7e59f6e7121c79b7\";s:3:\"img\";s:51:\"Director--Photographer-Showcase-Template/slide1.jpg\";s:7:\"preview\";s:199:\"https://www.sliderrevolution.com/templates/director-and-photographer-showcase-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=director-and-photographer-showcase-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.7.15\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:679:\"<span class=\"ttm_content\">This meticulously crafted slider is designed for creative professionals who want to make a bold statement with their portfolio. Featuring 10 dynamic slides that seamlessly showcase a curated reel of stunning videos and images, it offers a powerful visual narrative that captures the essence of your work. Whether you\'re a director, photographer, or visual artist, this template provides the perfect platform to highlight your creativity, leaving a lasting impression on your audience with its sleek transitions, captivating layouts, and professional design. Elevate your showcase and let your work speak for itself.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:189:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2024-08-02 10:05:28\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:749;a:25:{s:2:\"id\";s:3:\"805\";s:5:\"title\";s:40:\"Stellar Souls Creative Fullscreen Slider\";s:5:\"alias\";s:40:\"Stellar-Souls-Creative-Fullscreen-Slider\";s:3:\"zip\";s:44:\"Stellar-Souls-Creative-Fullscreen-Slider.zip\";s:3:\"uid\";s:32:\"3e41511dd6095dc7131cdcc329d8539a\";s:3:\"img\";s:51:\"Stellar-Souls-Creative-Fullscreen-Slider/slide1.jpg\";s:7:\"preview\";s:193:\"https://www.sliderrevolution.com/templates/stellar-souls-creative-fullscreen-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=stellar-souls-creative-fullscreen-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.7.17\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:474:\"<span class=\"ttm_content\">Stellar Souls Creative Fullscreen Slider is a visually captivating template designed to elevate your websites aesthetic. With its seamless transitions and immersive fullscreen experience, this slider blends cosmic imagery with elegant typography, perfect for showcasing creative content in a modern, dynamic way. Ideal for portfolios, artistic presentations, or any project that seeks to inspire and captivate.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:189:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2024-08-14 10:55:34\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:750;a:25:{s:2:\"id\";s:3:\"806\";s:5:\"title\";s:30:\"Dystopian Fashion Brand Slider\";s:5:\"alias\";s:30:\"Dystopian-Fashion-Brand-Slider\";s:3:\"zip\";s:34:\"Dystopian-Fashion-Brand-Slider.zip\";s:3:\"uid\";s:32:\"564e974deb05f824058ac35c3c560ef4\";s:3:\"img\";s:41:\"Dystopian-Fashion-Brand-Slider/slide1.jpg\";s:7:\"preview\";s:173:\"https://www.sliderrevolution.com/templates/dystopian-fashion-brand-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=dystopian-fashion-brand-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.7.18\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:550:\"<span class=\"ttm_content\">Step into a future where fashion meets the edge of tomorrow with the Dystopian Fashion Brand Slider. This template is designed for brands that challenge the conventional, offering a visually striking presentation of bold, avant-garde styles. Featuring dramatic imagery, powerful headlines, and sleek transitions, this slider captures the essence of a world transformed by the unknown, perfect for showcasing collections that speak to resilience, adaptation, and forward-thinking design.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:358:\"[{\"path\":\"revslider-particlewave-addon\\/revslider-particlewave-addon.php\",\"name\":\"Particle Wave AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-fluiddynamics-addon\\/revslider-fluiddynamics-addon.php\",\"name\":\"Fluid Dynamics AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2024-08-21 11:48:03\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:751;a:28:{s:2:\"id\";s:3:\"807\";s:5:\"title\";s:33:\"Renewable Energy Website Template\";s:5:\"alias\";s:33:\"renewable-energy-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:33:\"renewable-energy-website-template\";s:3:\"img\";s:46:\"packages/Renewable-Energy-Website-Template.jpg\";s:7:\"preview\";s:179:\"https://www.sliderrevolution.com/templates/renewable-energy-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=renewable-energy-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.7.18\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:554:\"<span class=\"ttm_content\">This template offers a modern, dynamic platform for showcasing renewable energy solutions. Featuring immersive visuals, interactive elements, and smooth animations, it’s designed to engage visitors and effectively communicate the benefits of clean energy. With sections dedicated to technology, innovation, and sustainability, it provides an informative and compelling narrative, perfect for organizations aiming to inspire and educate their audience about the future of renewable energy.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:366:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-particlewave-addon\\/revslider-particlewave-addon.php\",\"name\":\"Particle Wave AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2024-09-19 13:51:56\";s:7:\"package\";s:41:\"Renewable Energy Website Template Package\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"68\";s:9:\"installed\";b:0;}i:752;a:28:{s:2:\"id\";s:3:\"808\";s:5:\"title\";s:21:\"Renewable Energy Menu\";s:5:\"alias\";s:21:\"Renewable-Energy-Menu\";s:3:\"zip\";s:31:\"packs/Renewable-Energy-Menu.zip\";s:3:\"uid\";s:32:\"31e0c0cf4233b472c51b66ed0d9601fc\";s:3:\"img\";s:32:\"Renewable-Energy-Menu/slide1.jpg\";s:7:\"preview\";s:179:\"https://www.sliderrevolution.com/templates/renewable-energy-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=renewable-energy-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.7.18\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:554:\"<span class=\"ttm_content\">This template offers a modern, dynamic platform for showcasing renewable energy solutions. Featuring immersive visuals, interactive elements, and smooth animations, it’s designed to engage visitors and effectively communicate the benefits of clean energy. With sections dedicated to technology, innovation, and sustainability, it provides an informative and compelling narrative, perfect for organizations aiming to inspire and educate their audience about the future of renewable energy.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2024-09-19 13:54:18\";s:7:\"package\";s:41:\"Renewable Energy Website Template Package\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"68\";s:9:\"installed\";b:0;}i:753;a:28:{s:2:\"id\";s:3:\"809\";s:5:\"title\";s:21:\"Renewable Energy Hero\";s:5:\"alias\";s:21:\"Renewable-Energy-Hero\";s:3:\"zip\";s:31:\"packs/Renewable-Energy-Hero.zip\";s:3:\"uid\";s:32:\"f3877fa9e8a16dfefb9686fdf77ea0d8\";s:3:\"img\";s:32:\"Renewable-Energy-Hero/slide1.jpg\";s:7:\"preview\";s:179:\"https://www.sliderrevolution.com/templates/renewable-energy-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=renewable-energy-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.7.18\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:554:\"<span class=\"ttm_content\">This template offers a modern, dynamic platform for showcasing renewable energy solutions. Featuring immersive visuals, interactive elements, and smooth animations, it’s designed to engage visitors and effectively communicate the benefits of clean energy. With sections dedicated to technology, innovation, and sustainability, it provides an informative and compelling narrative, perfect for organizations aiming to inspire and educate their audience about the future of renewable energy.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:189:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2024-09-19 13:56:28\";s:7:\"package\";s:41:\"Renewable Energy Website Template Package\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"68\";s:9:\"installed\";b:0;}i:754;a:28:{s:2:\"id\";s:3:\"810\";s:5:\"title\";s:22:\"Renewable Energy About\";s:5:\"alias\";s:22:\"Renewable-Energy-About\";s:3:\"zip\";s:32:\"packs/Renewable-Energy-About.zip\";s:3:\"uid\";s:32:\"383c990a5aa272942d9d16b4a37bd10e\";s:3:\"img\";s:33:\"Renewable-Energy-About/slide1.jpg\";s:7:\"preview\";s:179:\"https://www.sliderrevolution.com/templates/renewable-energy-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=renewable-energy-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.7.18\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:554:\"<span class=\"ttm_content\">This template offers a modern, dynamic platform for showcasing renewable energy solutions. Featuring immersive visuals, interactive elements, and smooth animations, it’s designed to engage visitors and effectively communicate the benefits of clean energy. With sections dedicated to technology, innovation, and sustainability, it provides an informative and compelling narrative, perfect for organizations aiming to inspire and educate their audience about the future of renewable energy.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:178:\"[{\"path\":\"revslider-particlewave-addon\\/revslider-particlewave-addon.php\",\"name\":\"Particle Wave AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2024-09-19 13:57:34\";s:7:\"package\";s:41:\"Renewable Energy Website Template Package\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"68\";s:9:\"installed\";b:0;}i:755;a:28:{s:2:\"id\";s:3:\"811\";s:5:\"title\";s:26:\"Renewable Energy Solutions\";s:5:\"alias\";s:26:\"Renewable-Energy-Solutions\";s:3:\"zip\";s:36:\"packs/Renewable-Energy-Solutions.zip\";s:3:\"uid\";s:32:\"98cd3ab82f8a6c8187e03679e7628ac1\";s:3:\"img\";s:37:\"Renewable-Energy-Solutions/slide1.jpg\";s:7:\"preview\";s:179:\"https://www.sliderrevolution.com/templates/renewable-energy-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=renewable-energy-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.7.18\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:554:\"<span class=\"ttm_content\">This template offers a modern, dynamic platform for showcasing renewable energy solutions. Featuring immersive visuals, interactive elements, and smooth animations, it’s designed to engage visitors and effectively communicate the benefits of clean energy. With sections dedicated to technology, innovation, and sustainability, it provides an informative and compelling narrative, perfect for organizations aiming to inspire and educate their audience about the future of renewable energy.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:189:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2024-09-19 13:59:05\";s:7:\"package\";s:41:\"Renewable Energy Website Template Package\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"68\";s:9:\"installed\";b:0;}i:756;a:28:{s:2:\"id\";s:3:\"812\";s:5:\"title\";s:27:\"Renewable Energy Technology\";s:5:\"alias\";s:27:\"Renewable-Energy-Technology\";s:3:\"zip\";s:37:\"packs/Renewable-Energy-Technology.zip\";s:3:\"uid\";s:32:\"6196ebc8b38ce6cc6191db9f109543f2\";s:3:\"img\";s:38:\"Renewable-Energy-Technology/slide1.jpg\";s:7:\"preview\";s:179:\"https://www.sliderrevolution.com/templates/renewable-energy-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=renewable-energy-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.7.18\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:554:\"<span class=\"ttm_content\">This template offers a modern, dynamic platform for showcasing renewable energy solutions. Featuring immersive visuals, interactive elements, and smooth animations, it’s designed to engage visitors and effectively communicate the benefits of clean energy. With sections dedicated to technology, innovation, and sustainability, it provides an informative and compelling narrative, perfect for organizations aiming to inspire and educate their audience about the future of renewable energy.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:178:\"[{\"path\":\"revslider-particlewave-addon\\/revslider-particlewave-addon.php\",\"name\":\"Particle Wave AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2024-09-19 14:01:04\";s:7:\"package\";s:41:\"Renewable Energy Website Template Package\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"68\";s:9:\"installed\";b:0;}i:757;a:28:{s:2:\"id\";s:3:\"813\";s:5:\"title\";s:25:\"Renewable Energy Benefits\";s:5:\"alias\";s:25:\"Renewable-Energy-Benefits\";s:3:\"zip\";s:35:\"packs/Renewable-Energy-Benefits.zip\";s:3:\"uid\";s:32:\"88d08d96fd84ca64cf50476394246948\";s:3:\"img\";s:36:\"Renewable-Energy-Benefits/slide1.jpg\";s:7:\"preview\";s:179:\"https://www.sliderrevolution.com/templates/renewable-energy-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=renewable-energy-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.7.18\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:554:\"<span class=\"ttm_content\">This template offers a modern, dynamic platform for showcasing renewable energy solutions. Featuring immersive visuals, interactive elements, and smooth animations, it’s designed to engage visitors and effectively communicate the benefits of clean energy. With sections dedicated to technology, innovation, and sustainability, it provides an informative and compelling narrative, perfect for organizations aiming to inspire and educate their audience about the future of renewable energy.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:189:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2024-09-19 14:02:12\";s:7:\"package\";s:41:\"Renewable Energy Website Template Package\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"68\";s:9:\"installed\";b:0;}i:758;a:28:{s:2:\"id\";s:3:\"814\";s:5:\"title\";s:25:\"Renewable Energy Projects\";s:5:\"alias\";s:25:\"Renewable-Energy-Projects\";s:3:\"zip\";s:35:\"packs/Renewable-Energy-Projects.zip\";s:3:\"uid\";s:32:\"44c3942cfd4dfae1ce404a15cb71d057\";s:3:\"img\";s:36:\"Renewable-Energy-Projects/slide1.jpg\";s:7:\"preview\";s:179:\"https://www.sliderrevolution.com/templates/renewable-energy-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=renewable-energy-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.7.18\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:554:\"<span class=\"ttm_content\">This template offers a modern, dynamic platform for showcasing renewable energy solutions. Featuring immersive visuals, interactive elements, and smooth animations, it’s designed to engage visitors and effectively communicate the benefits of clean energy. With sections dedicated to technology, innovation, and sustainability, it provides an informative and compelling narrative, perfect for organizations aiming to inspire and educate their audience about the future of renewable energy.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:6:\"slider\";}s:14:\"plugin_require\";s:189:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2024-09-19 14:03:10\";s:7:\"package\";s:41:\"Renewable Energy Website Template Package\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"68\";s:9:\"installed\";b:0;}i:759;a:28:{s:2:\"id\";s:3:\"815\";s:5:\"title\";s:24:\"Renewable Energy Contact\";s:5:\"alias\";s:24:\"Renewable-Energy-Contact\";s:3:\"zip\";s:34:\"packs/Renewable-Energy-Contact.zip\";s:3:\"uid\";s:32:\"d465ac8a01a36a5cf21f80f0d61eca9b\";s:3:\"img\";s:35:\"Renewable-Energy-Contact/slide1.jpg\";s:7:\"preview\";s:179:\"https://www.sliderrevolution.com/templates/renewable-energy-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=renewable-energy-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.7.18\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:554:\"<span class=\"ttm_content\">This template offers a modern, dynamic platform for showcasing renewable energy solutions. Featuring immersive visuals, interactive elements, and smooth animations, it’s designed to engage visitors and effectively communicate the benefits of clean energy. With sections dedicated to technology, innovation, and sustainability, it provides an informative and compelling narrative, perfect for organizations aiming to inspire and educate their audience about the future of renewable energy.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:189:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2024-09-19 14:05:52\";s:7:\"package\";s:41:\"Renewable Energy Website Template Package\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"68\";s:9:\"installed\";b:0;}i:760;a:25:{s:2:\"id\";s:3:\"816\";s:5:\"title\";s:40:\"Wheels & Tires Automotive Product Slider\";s:5:\"alias\";s:39:\"Wheels--Tires-Automotive-Product-Slider\";s:3:\"zip\";s:43:\"Wheels--Tires-Automotive-Product-Slider.zip\";s:3:\"uid\";s:32:\"68650b32f957e75c7d78d0cbdebf9292\";s:3:\"img\";s:50:\"Wheels--Tires-Automotive-Product-Slider/slide1.jpg\";s:7:\"preview\";s:197:\"https://www.sliderrevolution.com/templates/wheels-and-tires-automotive-product-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wheels-and-tires-automotive-product-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.7.20\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:621:\"<span class=\"ttm_content\">This high-impact template offers a stunning visual showcase for automotive wheels, tires, and other circular products. With its sleek design and central focus on a rotating product display, this slider is ideal for brands looking to make a bold statement. Featuring dedicated slides for highlighting product details, pricing, and performance specs, this template is perfect for elevating your online presence and captivating your audience with elegance and style. Experience the ultimate way to display premium products with this modern, interactive slider.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:189:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2024-10-04 12:59:58\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:761;a:25:{s:2:\"id\";s:3:\"817\";s:5:\"title\";s:37:\"Animated Coming Soon Website Template\";s:5:\"alias\";s:37:\"Animated-Coming-Soon-Website-Template\";s:3:\"zip\";s:41:\"Animated-Coming-Soon-Website-Template.zip\";s:3:\"uid\";s:32:\"0b8be610a320808fad10847529d67970\";s:3:\"img\";s:48:\"Animated-Coming-Soon-Website-Template/slide1.jpg\";s:7:\"preview\";s:187:\"https://www.sliderrevolution.com/templates/animated-coming-soon-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=animated-coming-soon-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.7.20\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:333:\"<span class=\"ttm_content\">Create anticipation with this modern, minimalistic pre-launch template. Featuring sleek animations, it iss designed to engage visitors while keeping things simple. Fully customizable and responsive, it is perfect for any project or brand preparing to make a big reveal.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:358:\"[{\"path\":\"revslider-particlewave-addon\\/revslider-particlewave-addon.php\",\"name\":\"Particle Wave AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-fluiddynamics-addon\\/revslider-fluiddynamics-addon.php\",\"name\":\"Fluid Dynamics AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2024-10-17 15:21:07\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:762;a:25:{s:2:\"id\";s:3:\"818\";s:5:\"title\";s:28:\"Mecha Sci-Fi Showcase Slider\";s:5:\"alias\";s:28:\"Mecha-Sci-Fi-Showcase-Slider\";s:3:\"zip\";s:32:\"Mecha-Sci-Fi-Showcase-Slider.zip\";s:3:\"uid\";s:32:\"e5aafb8ed10919b2727fbf3c055aee1f\";s:3:\"img\";s:39:\"Mecha-Sci-Fi-Showcase-Slider/slide1.jpg\";s:7:\"preview\";s:168:\"https://www.sliderrevolution.com/templates/mecha-sci-fi-showcase-slider?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=mecha-sci-fi-showcase-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.7.21\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:463:\"<span class=\"ttm_content\">Showcase your sci-fi creations with the Mecha Sci-Fi Showcase Slider, a bold and futuristic template perfect for highlighting high-tech designs. Featuring striking visuals, dynamic transitions, and sleek, responsive elements, this template brings your mech models to life. Fully customizable, its ideal for portfolios, product presentations, or any project that demands a powerful, modern aesthetic.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2024-11-19 14:03:09\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:763;a:28:{s:2:\"id\";s:3:\"819\";s:5:\"title\";s:32:\"Bento Grid Travel Slider Package\";s:5:\"alias\";s:32:\"bento-grid-travel-slider-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:32:\"bento-grid-travel-slider-package\";s:3:\"img\";s:45:\"packages/Bento-Grid-Travel-Slider-Package.jpg\";s:7:\"preview\";s:160:\"https://www.sliderrevolution.com/templates/bento-grid-travel-slider?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=bento-grid-travel-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.7.21\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:547:\"<span class=\"ttm_content\">Experience seamless travel inspiration with this dynamic bento-style grid slider. Designed to captivate, each slide offers an immersive journey with stunning visuals, interactive call-to-action buttons, and engaging lightbox pop-ups featuring videos and detailed destination highlights. Perfect for travel and lifestyle brands, this template combines aesthetics and functionality, creating a unique experience that invites users to explore and plan their next adventure effortlessly.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2024-11-19 14:05:20\";s:7:\"package\";s:32:\"Bento Grid Travel Slider Package\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"69\";s:9:\"installed\";b:0;}i:764;a:28:{s:2:\"id\";s:3:\"820\";s:5:\"title\";s:24:\"Bento Grid Travel Slider\";s:5:\"alias\";s:24:\"Bento-Grid-Travel-Slider\";s:3:\"zip\";s:34:\"packs/Bento-Grid-Travel-Slider.zip\";s:3:\"uid\";s:32:\"cb4a409e6c55d3acc641401683addaf8\";s:3:\"img\";s:35:\"Bento-Grid-Travel-Slider/slide1.jpg\";s:7:\"preview\";s:160:\"https://www.sliderrevolution.com/templates/bento-grid-travel-slider?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=bento-grid-travel-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.7.21\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:547:\"<span class=\"ttm_content\">Experience seamless travel inspiration with this dynamic bento-style grid slider. Designed to captivate, each slide offers an immersive journey with stunning visuals, interactive call-to-action buttons, and engaging lightbox pop-ups featuring videos and detailed destination highlights. Perfect for travel and lifestyle brands, this template combines aesthetics and functionality, creating a unique experience that invites users to explore and plan their next adventure effortlessly.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2024-11-19 14:07:53\";s:7:\"package\";s:32:\"Bento Grid Travel Slider Package\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"69\";s:9:\"installed\";b:0;}i:765;a:28:{s:2:\"id\";s:3:\"821\";s:5:\"title\";s:23:\"Bento Grid Travel Modal\";s:5:\"alias\";s:23:\"Bento-Grid-Travel-Modal\";s:3:\"zip\";s:33:\"packs/Bento-Grid-Travel-Modal.zip\";s:3:\"uid\";s:32:\"f2d593fd2fcfd75be1a263a65b647d7f\";s:3:\"img\";s:34:\"Bento-Grid-Travel-Modal/slide1.jpg\";s:7:\"preview\";s:160:\"https://www.sliderrevolution.com/templates/bento-grid-travel-slider?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=bento-grid-travel-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.7.21\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:547:\"<span class=\"ttm_content\">Experience seamless travel inspiration with this dynamic bento-style grid slider. Designed to captivate, each slide offers an immersive journey with stunning visuals, interactive call-to-action buttons, and engaging lightbox pop-ups featuring videos and detailed destination highlights. Perfect for travel and lifestyle brands, this template combines aesthetics and functionality, creating a unique experience that invites users to explore and plan their next adventure effortlessly.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2024-11-19 14:09:39\";s:7:\"package\";s:32:\"Bento Grid Travel Slider Package\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"69\";s:9:\"installed\";b:0;}i:766;a:28:{s:2:\"id\";s:3:\"822\";s:5:\"title\";s:45:\"Exquisite Wedding Cake Gallery Slider Package\";s:5:\"alias\";s:45:\"exquisite-wedding-cake-gallery-slider-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:45:\"exquisite-wedding-cake-gallery-slider-package\";s:3:\"img\";s:58:\"packages/Exquisite-Wedding-Cake-Gallery-Slider-Package.jpg\";s:7:\"preview\";s:186:\"https://www.sliderrevolution.com/templates/exquisite-wedding-cake-gallery-slider?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=exquisite-wedding-cake-gallery-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.7.21\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:743:\"<span class=\"ttm_content\">This premium Slider Revolution template is designed to showcase the artistry and elegance of wedding cakes in a visually captivating way. Featuring four stunning slides, it highlights a variety of styles, from romantic floral designs to minimalist modern masterpieces, vintage-inspired creations, and luxurious confections. Each slide is meticulously crafted with elegant animations and high-resolution visuals to capture the intricate details and textures of the cakes. Additionally, a gallery modal allows visitors to explore even more breathtaking cake designs, making it perfect for bakeries, cake designers, or wedding planners looking to impress and inspire their audience.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:356:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2024-11-19 14:14:10\";s:7:\"package\";s:45:\"Exquisite Wedding Cake Gallery Slider Package\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"70\";s:9:\"installed\";b:0;}i:767;a:28:{s:2:\"id\";s:3:\"823\";s:5:\"title\";s:37:\"Exquisite Wedding Cake Gallery Slider\";s:5:\"alias\";s:37:\"Exquisite-Wedding-Cake-Gallery-Slider\";s:3:\"zip\";s:47:\"packs/Exquisite-Wedding-Cake-Gallery-Slider.zip\";s:3:\"uid\";s:32:\"bf99170649b93ca5255b155b88be7c96\";s:3:\"img\";s:48:\"Exquisite-Wedding-Cake-Gallery-Slider/slide1.jpg\";s:7:\"preview\";s:186:\"https://www.sliderrevolution.com/templates/exquisite-wedding-cake-gallery-slider?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=exquisite-wedding-cake-gallery-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.7.21\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:743:\"<span class=\"ttm_content\">This premium Slider Revolution template is designed to showcase the artistry and elegance of wedding cakes in a visually captivating way. Featuring four stunning slides, it highlights a variety of styles, from romantic floral designs to minimalist modern masterpieces, vintage-inspired creations, and luxurious confections. Each slide is meticulously crafted with elegant animations and high-resolution visuals to capture the intricate details and textures of the cakes. Additionally, a gallery modal allows visitors to explore even more breathtaking cake designs, making it perfect for bakeries, cake designers, or wedding planners looking to impress and inspire their audience.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:356:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2024-11-19 14:16:03\";s:7:\"package\";s:45:\"Exquisite Wedding Cake Gallery Slider Package\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"70\";s:9:\"installed\";b:0;}i:768;a:28:{s:2:\"id\";s:3:\"824\";s:5:\"title\";s:28:\"Exquisite Cake Gallery Modal\";s:5:\"alias\";s:28:\"Exquisite-Cake-Gallery-Modal\";s:3:\"zip\";s:38:\"packs/Exquisite-Cake-Gallery-Modal.zip\";s:3:\"uid\";s:32:\"27aa277412fcab96df781233f8f74de0\";s:3:\"img\";s:39:\"Exquisite-Cake-Gallery-Modal/slide1.jpg\";s:7:\"preview\";s:186:\"https://www.sliderrevolution.com/templates/exquisite-wedding-cake-gallery-slider?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=exquisite-wedding-cake-gallery-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.7.21\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:743:\"<span class=\"ttm_content\">This premium Slider Revolution template is designed to showcase the artistry and elegance of wedding cakes in a visually captivating way. Featuring four stunning slides, it highlights a variety of styles, from romantic floral designs to minimalist modern masterpieces, vintage-inspired creations, and luxurious confections. Each slide is meticulously crafted with elegant animations and high-resolution visuals to capture the intricate details and textures of the cakes. Additionally, a gallery modal allows visitors to explore even more breathtaking cake designs, making it perfect for bakeries, cake designers, or wedding planners looking to impress and inspire their audience.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:356:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2024-11-19 14:18:05\";s:7:\"package\";s:45:\"Exquisite Wedding Cake Gallery Slider Package\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"70\";s:9:\"installed\";b:0;}i:769;a:25:{s:2:\"id\";s:3:\"825\";s:5:\"title\";s:28:\"Fine Art Photography Gallery\";s:5:\"alias\";s:28:\"Fine-Art-Photography-Gallery\";s:3:\"zip\";s:32:\"Fine-Art-Photography-Gallery.zip\";s:3:\"uid\";s:32:\"a48b3b686b12fe7297331308b27befa0\";s:3:\"img\";s:39:\"Fine-Art-Photography-Gallery/slide1.jpg\";s:7:\"preview\";s:168:\"https://www.sliderrevolution.com/templates/fine-art-photography-gallery?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=fine-art-photography-gallery\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.7.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:356:\"<span class=\"ttm_content\">The Fine Art Photography Gallery template offers a unique, immersive experience with captivating visuals and interactive particle effects. Ideal for exhibitions or artist portfolios, it combines elegance with dynamic motion, inviting viewers to engage deeply with each images timeless allure.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:171:\"[{\"path\":\"revslider-shapeburst-addon\\/revslider-shapeburst-addon.php\",\"name\":\"ShapeBurst AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2024-11-21 12:42:39\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:770;a:25:{s:2:\"id\";s:3:\"826\";s:5:\"title\";s:39:\"Cosmic Odyssey Animated Slider Template\";s:5:\"alias\";s:39:\"Cosmic-Odyssey-Animated-Slider-Template\";s:3:\"zip\";s:43:\"Cosmic-Odyssey-Animated-Slider-Template.zip\";s:3:\"uid\";s:32:\"bcb630d463314ec1d42e9c24f726967d\";s:3:\"img\";s:50:\"Cosmic-Odyssey-Animated-Slider-Template/slide1.jpg\";s:7:\"preview\";s:191:\"https://www.sliderrevolution.com/templates/cosmic-odyssey-animated-slider-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=cosmic-odyssey-animated-slider-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.7.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:329:\"<span class=\"ttm_content\">Transform your website with the Cosmic Odyssey Animated Slider Template. This fullscreen slider captivates with sci-fi alien planet scenes, parallax effects, and stunning animations. Designed to evoke wonder, its fully adaptable for diverse real-world applications.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:189:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2024-12-13 09:15:14\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:771;a:28:{s:2:\"id\";s:3:\"827\";s:5:\"title\";s:49:\"Hair Salon - Hairdresser Website Template Package\";s:5:\"alias\";s:49:\"hair-salon---hairdresser-website-template-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:49:\"hair-salon---hairdresser-website-template-package\";s:3:\"img\";s:52:\"packages/Hair-Salon-Hairdresser-Website-Template.jpg\";s:7:\"preview\";s:191:\"https://www.sliderrevolution.com/templates/hair-salon-hairdresser-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=hair-salon-hairdresser-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.7.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:671:\"<span class=\"ttm_content\">Elevate your online presence with a sleek and modern one-page design crafted specifically for hair salons and stylists. This template combines vibrant visuals, dynamic sliders, and a refined layout to beautifully showcase services, team members, and client testimonials. Perfectly blending style and functionality, it features a dedicated gallery section for stunning hair transformations and a fully customizable structure that adapts seamlessly to your needs. Whether highlighting precision cuts, bold colors, or elegant updos, this design ensures your salon stands out with sophistication and creativity.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:178:\"[{\"path\":\"revslider-particlewave-addon\\/revslider-particlewave-addon.php\",\"name\":\"Particle Wave AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2024-12-13 09:21:15\";s:7:\"package\";s:49:\"Hair Salon - Hairdresser Website Template Package\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"71\";s:9:\"installed\";b:0;}i:772;a:28:{s:2:\"id\";s:3:\"828\";s:5:\"title\";s:15:\"Hair Salon Hero\";s:5:\"alias\";s:15:\"Hair-Salon-Hero\";s:3:\"zip\";s:25:\"packs/Hair-Salon-Hero.zip\";s:3:\"uid\";s:32:\"f43d7e30d14e8e78f71246e5dbe34a30\";s:3:\"img\";s:26:\"Hair-Salon-Hero/slide1.jpg\";s:7:\"preview\";s:191:\"https://www.sliderrevolution.com/templates/hair-salon-hairdresser-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=hair-salon-hairdresser-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.7.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:671:\"<span class=\"ttm_content\">Elevate your online presence with a sleek and modern one-page design crafted specifically for hair salons and stylists. This template combines vibrant visuals, dynamic sliders, and a refined layout to beautifully showcase services, team members, and client testimonials. Perfectly blending style and functionality, it features a dedicated gallery section for stunning hair transformations and a fully customizable structure that adapts seamlessly to your needs. Whether highlighting precision cuts, bold colors, or elegant updos, this design ensures your salon stands out with sophistication and creativity.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:178:\"[{\"path\":\"revslider-particlewave-addon\\/revslider-particlewave-addon.php\",\"name\":\"Particle Wave AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2024-12-13 09:25:40\";s:7:\"package\";s:49:\"Hair Salon - Hairdresser Website Template Package\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"71\";s:9:\"installed\";b:0;}i:773;a:28:{s:2:\"id\";s:3:\"829\";s:5:\"title\";s:16:\"Hair Salon About\";s:5:\"alias\";s:16:\"Hair-Salon-About\";s:3:\"zip\";s:26:\"packs/Hair-Salon-About.zip\";s:3:\"uid\";s:32:\"3c7c40b0987037cbbf3c9c68c96a0a18\";s:3:\"img\";s:27:\"Hair-Salon-About/slide1.jpg\";s:7:\"preview\";s:191:\"https://www.sliderrevolution.com/templates/hair-salon-hairdresser-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=hair-salon-hairdresser-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.7.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:671:\"<span class=\"ttm_content\">Elevate your online presence with a sleek and modern one-page design crafted specifically for hair salons and stylists. This template combines vibrant visuals, dynamic sliders, and a refined layout to beautifully showcase services, team members, and client testimonials. Perfectly blending style and functionality, it features a dedicated gallery section for stunning hair transformations and a fully customizable structure that adapts seamlessly to your needs. Whether highlighting precision cuts, bold colors, or elegant updos, this design ensures your salon stands out with sophistication and creativity.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2024-12-13 09:27:23\";s:7:\"package\";s:49:\"Hair Salon - Hairdresser Website Template Package\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"71\";s:9:\"installed\";b:0;}i:774;a:28:{s:2:\"id\";s:3:\"830\";s:5:\"title\";s:25:\"Hair Salon Services Title\";s:5:\"alias\";s:25:\"Hair-Salon-Services-Title\";s:3:\"zip\";s:35:\"packs/Hair-Salon-Services-Title.zip\";s:3:\"uid\";s:32:\"1981623c1beeab08612c7c19cc2a37d1\";s:3:\"img\";s:36:\"Hair-Salon-Services-Title/slide1.jpg\";s:7:\"preview\";s:191:\"https://www.sliderrevolution.com/templates/hair-salon-hairdresser-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=hair-salon-hairdresser-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.7.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:671:\"<span class=\"ttm_content\">Elevate your online presence with a sleek and modern one-page design crafted specifically for hair salons and stylists. This template combines vibrant visuals, dynamic sliders, and a refined layout to beautifully showcase services, team members, and client testimonials. Perfectly blending style and functionality, it features a dedicated gallery section for stunning hair transformations and a fully customizable structure that adapts seamlessly to your needs. Whether highlighting precision cuts, bold colors, or elegant updos, this design ensures your salon stands out with sophistication and creativity.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2024-12-13 09:30:01\";s:7:\"package\";s:49:\"Hair Salon - Hairdresser Website Template Package\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"71\";s:9:\"installed\";b:0;}i:775;a:28:{s:2:\"id\";s:3:\"831\";s:5:\"title\";s:15:\"Hair Salon Team\";s:5:\"alias\";s:15:\"Hair-Salon-Team\";s:3:\"zip\";s:25:\"packs/Hair-Salon-Team.zip\";s:3:\"uid\";s:32:\"a634fc79532526fa7d5e40d4be8e0ccb\";s:3:\"img\";s:26:\"Hair-Salon-Team/slide1.jpg\";s:7:\"preview\";s:191:\"https://www.sliderrevolution.com/templates/hair-salon-hairdresser-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=hair-salon-hairdresser-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.7.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:673:\"<span class=\"ttm_content\">Elevate your online presence with a sleek and modern one-page design crafted specifically for hair salons and stylists. This template combines vibrant visuals, dynamic sliders, and a refined layout to beautifully showcase services, team members, and client testimonials. Perfectly blending style and functionality, it features a dedicated gallery section for stunning hair transformations and a fully customizable structure that adapts seamlessly to your needs. Whether highlighting precision cuts, bold colors, or elegant updos, this design ensures your salon stands out with sophistication and creativity.</span><span class=\"ttm_space\"></span>\r\n\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2024-12-13 09:31:16\";s:7:\"package\";s:49:\"Hair Salon - Hairdresser Website Template Package\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"71\";s:9:\"installed\";b:0;}i:776;a:28:{s:2:\"id\";s:3:\"832\";s:5:\"title\";s:19:\"Hair Salon Services\";s:5:\"alias\";s:19:\"Hair-Salon-Services\";s:3:\"zip\";s:29:\"packs/Hair-Salon-Services.zip\";s:3:\"uid\";s:32:\"5d41e18139dc6513830998446b061138\";s:3:\"img\";s:30:\"Hair-Salon-Services/slide1.jpg\";s:7:\"preview\";s:191:\"https://www.sliderrevolution.com/templates/hair-salon-hairdresser-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=hair-salon-hairdresser-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.7.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:671:\"<span class=\"ttm_content\">Elevate your online presence with a sleek and modern one-page design crafted specifically for hair salons and stylists. This template combines vibrant visuals, dynamic sliders, and a refined layout to beautifully showcase services, team members, and client testimonials. Perfectly blending style and functionality, it features a dedicated gallery section for stunning hair transformations and a fully customizable structure that adapts seamlessly to your needs. Whether highlighting precision cuts, bold colors, or elegant updos, this design ensures your salon stands out with sophistication and creativity.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2024-12-13 09:33:38\";s:7:\"package\";s:49:\"Hair Salon - Hairdresser Website Template Package\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"71\";s:9:\"installed\";b:0;}i:777;a:28:{s:2:\"id\";s:3:\"833\";s:5:\"title\";s:24:\"Hair Salon Gallery Title\";s:5:\"alias\";s:24:\"Hair-Salon-Gallery-Title\";s:3:\"zip\";s:34:\"packs/Hair-Salon-Gallery-Title.zip\";s:3:\"uid\";s:32:\"4e7fa91eee36eb7e1a2fdf08217ceda3\";s:3:\"img\";s:35:\"Hair-Salon-Gallery-Title/slide1.jpg\";s:7:\"preview\";s:191:\"https://www.sliderrevolution.com/templates/hair-salon-hairdresser-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=hair-salon-hairdresser-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.7.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:671:\"<span class=\"ttm_content\">Elevate your online presence with a sleek and modern one-page design crafted specifically for hair salons and stylists. This template combines vibrant visuals, dynamic sliders, and a refined layout to beautifully showcase services, team members, and client testimonials. Perfectly blending style and functionality, it features a dedicated gallery section for stunning hair transformations and a fully customizable structure that adapts seamlessly to your needs. Whether highlighting precision cuts, bold colors, or elegant updos, this design ensures your salon stands out with sophistication and creativity.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2024-12-13 09:36:18\";s:7:\"package\";s:49:\"Hair Salon - Hairdresser Website Template Package\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"71\";s:9:\"installed\";b:0;}i:778;a:28:{s:2:\"id\";s:3:\"834\";s:5:\"title\";s:18:\"Hair Salon Gallery\";s:5:\"alias\";s:18:\"Hair-Salon-Gallery\";s:3:\"zip\";s:28:\"packs/Hair-Salon-Gallery.zip\";s:3:\"uid\";s:32:\"419212d8ec5d1fba16d456503a42a8e1\";s:3:\"img\";s:29:\"Hair-Salon-Gallery/slide1.jpg\";s:7:\"preview\";s:191:\"https://www.sliderrevolution.com/templates/hair-salon-hairdresser-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=hair-salon-hairdresser-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.7.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:671:\"<span class=\"ttm_content\">Elevate your online presence with a sleek and modern one-page design crafted specifically for hair salons and stylists. This template combines vibrant visuals, dynamic sliders, and a refined layout to beautifully showcase services, team members, and client testimonials. Perfectly blending style and functionality, it features a dedicated gallery section for stunning hair transformations and a fully customizable structure that adapts seamlessly to your needs. Whether highlighting precision cuts, bold colors, or elegant updos, this design ensures your salon stands out with sophistication and creativity.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2024-12-13 09:38:13\";s:7:\"package\";s:49:\"Hair Salon - Hairdresser Website Template Package\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"71\";s:9:\"installed\";b:0;}i:779;a:28:{s:2:\"id\";s:3:\"835\";s:5:\"title\";s:29:\"Hair Salon Testimonials Title\";s:5:\"alias\";s:29:\"Hair-Salon-Testimonials-Title\";s:3:\"zip\";s:39:\"packs/Hair-Salon-Testimonials-Title.zip\";s:3:\"uid\";s:32:\"5259bfe0061242861ef5013cfdc9ecd6\";s:3:\"img\";s:40:\"Hair-Salon-Testimonials-Title/slide1.jpg\";s:7:\"preview\";s:191:\"https://www.sliderrevolution.com/templates/hair-salon-hairdresser-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=hair-salon-hairdresser-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.7.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:671:\"<span class=\"ttm_content\">Elevate your online presence with a sleek and modern one-page design crafted specifically for hair salons and stylists. This template combines vibrant visuals, dynamic sliders, and a refined layout to beautifully showcase services, team members, and client testimonials. Perfectly blending style and functionality, it features a dedicated gallery section for stunning hair transformations and a fully customizable structure that adapts seamlessly to your needs. Whether highlighting precision cuts, bold colors, or elegant updos, this design ensures your salon stands out with sophistication and creativity.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2024-12-13 09:41:07\";s:7:\"package\";s:49:\"Hair Salon - Hairdresser Website Template Package\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"71\";s:9:\"installed\";b:0;}i:780;a:28:{s:2:\"id\";s:3:\"836\";s:5:\"title\";s:23:\"Hair Salon Testimonials\";s:5:\"alias\";s:23:\"Hair-Salon-Testimonials\";s:3:\"zip\";s:33:\"packs/Hair-Salon-Testimonials.zip\";s:3:\"uid\";s:32:\"88b6bd892671c8036c85a5af9b73d96c\";s:3:\"img\";s:34:\"Hair-Salon-Testimonials/slide1.jpg\";s:7:\"preview\";s:191:\"https://www.sliderrevolution.com/templates/hair-salon-hairdresser-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=hair-salon-hairdresser-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.7.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:671:\"<span class=\"ttm_content\">Elevate your online presence with a sleek and modern one-page design crafted specifically for hair salons and stylists. This template combines vibrant visuals, dynamic sliders, and a refined layout to beautifully showcase services, team members, and client testimonials. Perfectly blending style and functionality, it features a dedicated gallery section for stunning hair transformations and a fully customizable structure that adapts seamlessly to your needs. Whether highlighting precision cuts, bold colors, or elegant updos, this design ensures your salon stands out with sophistication and creativity.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2024-12-13 09:42:41\";s:7:\"package\";s:49:\"Hair Salon - Hairdresser Website Template Package\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"71\";s:9:\"installed\";b:0;}i:781;a:28:{s:2:\"id\";s:3:\"837\";s:5:\"title\";s:17:\"Hair Salon Footer\";s:5:\"alias\";s:17:\"Hair-Salon-Footer\";s:3:\"zip\";s:27:\"packs/Hair-Salon-Footer.zip\";s:3:\"uid\";s:32:\"33c786d67a18e399f55840955637a327\";s:3:\"img\";s:28:\"Hair-Salon-Footer/slide1.jpg\";s:7:\"preview\";s:191:\"https://www.sliderrevolution.com/templates/hair-salon-hairdresser-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=hair-salon-hairdresser-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.7.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:671:\"<span class=\"ttm_content\">Elevate your online presence with a sleek and modern one-page design crafted specifically for hair salons and stylists. This template combines vibrant visuals, dynamic sliders, and a refined layout to beautifully showcase services, team members, and client testimonials. Perfectly blending style and functionality, it features a dedicated gallery section for stunning hair transformations and a fully customizable structure that adapts seamlessly to your needs. Whether highlighting precision cuts, bold colors, or elegant updos, this design ensures your salon stands out with sophistication and creativity.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2024-12-13 09:44:43\";s:7:\"package\";s:49:\"Hair Salon - Hairdresser Website Template Package\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"71\";s:9:\"installed\";b:0;}i:782;a:25:{s:2:\"id\";s:3:\"838\";s:5:\"title\";s:50:\"Festive Christmas Slider with Particle Snow Effect\";s:5:\"alias\";s:50:\"Festive-Christmas-Slider-with-Particle-Snow-Effect\";s:3:\"zip\";s:54:\"Festive-Christmas-Slider-with-Particle-Snow-Effect.zip\";s:3:\"uid\";s:32:\"6a09953656965d60f986999f7ee2d8dc\";s:3:\"img\";s:61:\"Festive-Christmas-Slider-with-Particle-Snow-Effect/slide1.jpg\";s:7:\"preview\";s:213:\"https://www.sliderrevolution.com/templates/festive-christmas-slider-with-particle-snow-effect/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=festive-christmas-slider-with-particle-snow-effect\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.7.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:665:\"<span class=\"ttm_content\">Capture the enchanting spirit of the holidays with the \"Festive Christmas Slider with Particle Snow Effect.\" This Slider Revolution template wraps your website in a soft, drifting snowfall and warm seasonal imagery, creating an immersive winter wonderland right on your homepage. Perfect for showcasing holiday promotions, heartfelt greetings, or festive product highlights, its versatile design and elegant animations let you easily incorporate your brand’s style and messaging. Embrace the magic of the season and spread cheer to every visitor with this beautifully crafted, ready-to-use template.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:363:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2024-12-13 09:50:19\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:783;a:25:{s:2:\"id\";s:3:\"839\";s:5:\"title\";s:43:\"Zero Point - Energy Drink Showcase Template\";s:5:\"alias\";s:43:\"Zero-Point---Energy-Drink-Showcase-Template\";s:3:\"zip\";s:47:\"Zero-Point---Energy-Drink-Showcase-Template.zip\";s:3:\"uid\";s:32:\"eeb4a4ebcc0a64c02a758306d96b8fdc\";s:3:\"img\";s:54:\"Zero-Point---Energy-Drink-Showcase-Template/slide1.jpg\";s:7:\"preview\";s:195:\"https://www.sliderrevolution.com/templates/zero-point-energy-drink-showcase-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=zero-point-energy-drink-showcase-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.7.25\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:622:\"<span class=\"ttm_content\">This energy drink showcase template features a sleek, futuristic, and space-inspired design, perfect for beverage brands looking to captivate audiences with a cutting-edge aesthetic. Highlighting flavor-specific slides with vibrant, cosmic themes, the template creates an engaging and visually dynamic experience. Its clean, modern layout and customizable elements make it ideal for showcasing product innovation while aligning with a forward-thinking brand identity. This template is the perfect tool to energize your website and leave a lasting impression.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:189:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2025-01-08 10:01:41\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:784;a:25:{s:2:\"id\";s:3:\"840\";s:5:\"title\";s:39:\"Prismara - Jewelry Shop Slider Template\";s:5:\"alias\";s:37:\"Prismara-Jewelry-Shop-Slider-Template\";s:3:\"zip\";s:41:\"Prismara-Jewelry-Shop-Slider-Template.zip\";s:3:\"uid\";s:32:\"852f210986d8f831cf050938ea7815f6\";s:3:\"img\";s:48:\"Prismara-Jewelry-Shop-Slider-Template/slide1.jpg\";s:7:\"preview\";s:187:\"https://www.sliderrevolution.com/templates/prismara-jewelry-shop-slider-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=prismara-jewelry-shop-slider-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.7.25\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:410:\"<span class=\"ttm_content\">Prismara is a luxurious slider template crafted for jewelry shops and designers. With a modern split-screen design, it highlights collections like rings, necklaces, and more through bold visuals, elegant copy, and creative image placements. Perfectly responsive and visually captivating, this template ensures your jewelry shines on every device.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2025-01-20 13:45:56\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:785;a:25:{s:2:\"id\";s:3:\"841\";s:5:\"title\";s:36:\"Elegant Perfume Shop Slider Template\";s:5:\"alias\";s:36:\"Elegant-Perfume-Shop-Slider-Template\";s:3:\"zip\";s:40:\"Elegant-Perfume-Shop-Slider-Template.zip\";s:3:\"uid\";s:32:\"b3a8f3437a9255259decf8855d7c4cf7\";s:3:\"img\";s:47:\"Elegant-Perfume-Shop-Slider-Template/slide1.jpg\";s:7:\"preview\";s:185:\"https://www.sliderrevolution.com/templates/elegant-perfume-shop-slider-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=elegant-perfume-shop-slider-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.7.28\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:761:\"<span class=\"ttm_content\">The Elegant Perfume Shop Slider Template is a luxurious and immersive design crafted for high-end fragrance boutiques and beauty brands. It begins with a striking split-screen intro slide, allowing visitors to seamlessly choose between women’s and men’s fragrance collections. As users navigate through the elegantly designed product slides, each fragrance is brought to life with a refined fluid scent trail effect, mimicking the graceful movement of aroma in the air. With cinematic visuals, sophisticated typography, and seamless animations, this template transforms fragrance storytelling into an exquisite digital experience, perfect for luxury brands looking to captivate their audience.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:181:\"[{\"path\":\"revslider-fluiddynamics-addon\\/revslider-fluiddynamics-addon.php\",\"name\":\"Fluid Dynamics AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2025-02-06 10:09:51\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:786;a:27:{s:2:\"id\";s:3:\"842\";s:5:\"title\";s:37:\"Yoga Studio One-Page Website Template\";s:5:\"alias\";s:37:\"yoga-studio-one-page-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:37:\"yoga-studio-one-page-website-template\";s:3:\"img\";s:50:\"packages/Yoga-Studio-One-Page-Website-Template.jpg\";s:7:\"preview\";s:187:\"https://www.sliderrevolution.com/templates/yoga-studio-one-page-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=yoga-studio-one-page-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.7.29\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:548:\"<span class=\"ttm_content\">Experience a seamless and immersive scroll journey with the Yoga Studio One-Page Website Template for Slider Revolution. Designed for yoga studios, instructors, and wellness brands, this beautifully crafted template features smooth transitions, elegant typography, and a calming aesthetic. With dedicated sections for classes, instructors, testimonials, and contact details, it is fully responsive and easily customizable-perfect for creating a tranquil yet engaging online presence..</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2025-03-04 13:01:49\";s:7:\"package\";s:37:\"Yoga Studio One-Page Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"72\";s:9:\"installed\";b:0;}i:787;a:27:{s:2:\"id\";s:3:\"843\";s:5:\"title\";s:16:\"Yoga Studio Menu\";s:5:\"alias\";s:16:\"Yoga-Studio-Menu\";s:3:\"zip\";s:26:\"packs/Yoga-Studio-Menu.zip\";s:3:\"uid\";s:32:\"54525561cb1574b3a63cb10d90366312\";s:3:\"img\";s:27:\"Yoga-Studio-Menu/slide1.jpg\";s:7:\"preview\";s:187:\"https://www.sliderrevolution.com/templates/yoga-studio-one-page-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=yoga-studio-one-page-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.7.29\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:548:\"<span class=\"ttm_content\">Experience a seamless and immersive scroll journey with the Yoga Studio One-Page Website Template for Slider Revolution. Designed for yoga studios, instructors, and wellness brands, this beautifully crafted template features smooth transitions, elegant typography, and a calming aesthetic. With dedicated sections for classes, instructors, testimonials, and contact details, it is fully responsive and easily customizable-perfect for creating a tranquil yet engaging online presence..</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2025-03-04 13:05:19\";s:7:\"package\";s:37:\"Yoga Studio One-Page Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"72\";s:9:\"installed\";b:0;}i:788;a:28:{s:2:\"id\";s:3:\"844\";s:5:\"title\";s:16:\"Yoga Studio Hero\";s:5:\"alias\";s:16:\"Yoga-Studio-Hero\";s:3:\"zip\";s:26:\"packs/Yoga-Studio-Hero.zip\";s:3:\"uid\";s:32:\"973e2b3dc3661dd81a72e3288c7e7fb7\";s:3:\"img\";s:27:\"Yoga-Studio-Hero/slide1.jpg\";s:7:\"preview\";s:187:\"https://www.sliderrevolution.com/templates/yoga-studio-one-page-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=yoga-studio-one-page-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.7.29\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:548:\"<span class=\"ttm_content\">Experience a seamless and immersive scroll journey with the Yoga Studio One-Page Website Template for Slider Revolution. Designed for yoga studios, instructors, and wellness brands, this beautifully crafted template features smooth transitions, elegant typography, and a calming aesthetic. With dedicated sections for classes, instructors, testimonials, and contact details, it is fully responsive and easily customizable-perfect for creating a tranquil yet engaging online presence..</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2025-03-04 13:06:43\";s:7:\"package\";s:37:\"Yoga Studio One-Page Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"72\";s:9:\"installed\";b:0;}i:789;a:28:{s:2:\"id\";s:3:\"845\";s:5:\"title\";s:17:\"Yoga Studio About\";s:5:\"alias\";s:17:\"Yoga-Studio-About\";s:3:\"zip\";s:27:\"packs/Yoga-Studio-About.zip\";s:3:\"uid\";s:32:\"a1d04d4753b1a0a4a0ce624c947e6081\";s:3:\"img\";s:28:\"Yoga-Studio-About/slide1.jpg\";s:7:\"preview\";s:187:\"https://www.sliderrevolution.com/templates/yoga-studio-one-page-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=yoga-studio-one-page-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.7.29\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:548:\"<span class=\"ttm_content\">Experience a seamless and immersive scroll journey with the Yoga Studio One-Page Website Template for Slider Revolution. Designed for yoga studios, instructors, and wellness brands, this beautifully crafted template features smooth transitions, elegant typography, and a calming aesthetic. With dedicated sections for classes, instructors, testimonials, and contact details, it is fully responsive and easily customizable-perfect for creating a tranquil yet engaging online presence..</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2025-03-04 13:08:30\";s:7:\"package\";s:37:\"Yoga Studio One-Page Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"72\";s:9:\"installed\";b:0;}i:790;a:28:{s:2:\"id\";s:3:\"846\";s:5:\"title\";s:19:\"Yoga Studio Classes\";s:5:\"alias\";s:19:\"Yoga-Studio-Classes\";s:3:\"zip\";s:29:\"packs/Yoga-Studio-Classes.zip\";s:3:\"uid\";s:32:\"9b408943edec0b4c79b4e0af3524a106\";s:3:\"img\";s:30:\"Yoga-Studio-Classes/slide1.jpg\";s:7:\"preview\";s:187:\"https://www.sliderrevolution.com/templates/yoga-studio-one-page-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=yoga-studio-one-page-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.7.29\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:548:\"<span class=\"ttm_content\">Experience a seamless and immersive scroll journey with the Yoga Studio One-Page Website Template for Slider Revolution. Designed for yoga studios, instructors, and wellness brands, this beautifully crafted template features smooth transitions, elegant typography, and a calming aesthetic. With dedicated sections for classes, instructors, testimonials, and contact details, it is fully responsive and easily customizable-perfect for creating a tranquil yet engaging online presence..</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2025-03-04 13:10:14\";s:7:\"package\";s:37:\"Yoga Studio One-Page Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"72\";s:9:\"installed\";b:0;}i:791;a:28:{s:2:\"id\";s:3:\"847\";s:5:\"title\";s:20:\"Yoga Studio Benefits\";s:5:\"alias\";s:20:\"Yoga-Studio-Benefits\";s:3:\"zip\";s:30:\"packs/Yoga-Studio-Benefits.zip\";s:3:\"uid\";s:32:\"bc8f3ea50ab090be3536567beb50d248\";s:3:\"img\";s:31:\"Yoga-Studio-Benefits/slide1.jpg\";s:7:\"preview\";s:187:\"https://www.sliderrevolution.com/templates/yoga-studio-one-page-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=yoga-studio-one-page-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.7.29\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:548:\"<span class=\"ttm_content\">Experience a seamless and immersive scroll journey with the Yoga Studio One-Page Website Template for Slider Revolution. Designed for yoga studios, instructors, and wellness brands, this beautifully crafted template features smooth transitions, elegant typography, and a calming aesthetic. With dedicated sections for classes, instructors, testimonials, and contact details, it is fully responsive and easily customizable-perfect for creating a tranquil yet engaging online presence..</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2025-03-04 13:11:21\";s:7:\"package\";s:37:\"Yoga Studio One-Page Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"72\";s:9:\"installed\";b:0;}i:792;a:28:{s:2:\"id\";s:3:\"848\";s:5:\"title\";s:24:\"Yoga Studio Testimonials\";s:5:\"alias\";s:24:\"Yoga-Studio-Testimonials\";s:3:\"zip\";s:34:\"packs/Yoga-Studio-Testimonials.zip\";s:3:\"uid\";s:32:\"e14204df1e4e24e531cf8c2fe6577d08\";s:3:\"img\";s:35:\"Yoga-Studio-Testimonials/slide1.jpg\";s:7:\"preview\";s:187:\"https://www.sliderrevolution.com/templates/yoga-studio-one-page-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=yoga-studio-one-page-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.7.29\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:548:\"<span class=\"ttm_content\">Experience a seamless and immersive scroll journey with the Yoga Studio One-Page Website Template for Slider Revolution. Designed for yoga studios, instructors, and wellness brands, this beautifully crafted template features smooth transitions, elegant typography, and a calming aesthetic. With dedicated sections for classes, instructors, testimonials, and contact details, it is fully responsive and easily customizable-perfect for creating a tranquil yet engaging online presence..</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2025-03-04 13:12:46\";s:7:\"package\";s:37:\"Yoga Studio One-Page Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"72\";s:9:\"installed\";b:0;}i:793;a:28:{s:2:\"id\";s:3:\"849\";s:5:\"title\";s:16:\"Yoga Studio Team\";s:5:\"alias\";s:16:\"Yoga-Studio-Team\";s:3:\"zip\";s:26:\"packs/Yoga-Studio-Team.zip\";s:3:\"uid\";s:32:\"381f1c6f623c3e67ea13a07448a028f1\";s:3:\"img\";s:27:\"Yoga-Studio-Team/slide1.jpg\";s:7:\"preview\";s:187:\"https://www.sliderrevolution.com/templates/yoga-studio-one-page-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=yoga-studio-one-page-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.7.29\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:548:\"<span class=\"ttm_content\">Experience a seamless and immersive scroll journey with the Yoga Studio One-Page Website Template for Slider Revolution. Designed for yoga studios, instructors, and wellness brands, this beautifully crafted template features smooth transitions, elegant typography, and a calming aesthetic. With dedicated sections for classes, instructors, testimonials, and contact details, it is fully responsive and easily customizable-perfect for creating a tranquil yet engaging online presence..</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2025-03-04 13:14:05\";s:7:\"package\";s:37:\"Yoga Studio One-Page Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"72\";s:9:\"installed\";b:0;}i:794;a:27:{s:2:\"id\";s:3:\"850\";s:5:\"title\";s:17:\"Yoga Studio Quote\";s:5:\"alias\";s:17:\"Yoga-Studio-Quote\";s:3:\"zip\";s:27:\"packs/Yoga-Studio-Quote.zip\";s:3:\"uid\";s:32:\"5154abe7a234ecdbd4a75edf74b545bd\";s:3:\"img\";s:28:\"Yoga-Studio-Quote/slide1.jpg\";s:7:\"preview\";s:187:\"https://www.sliderrevolution.com/templates/yoga-studio-one-page-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=yoga-studio-one-page-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.7.29\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:548:\"<span class=\"ttm_content\">Experience a seamless and immersive scroll journey with the Yoga Studio One-Page Website Template for Slider Revolution. Designed for yoga studios, instructors, and wellness brands, this beautifully crafted template features smooth transitions, elegant typography, and a calming aesthetic. With dedicated sections for classes, instructors, testimonials, and contact details, it is fully responsive and easily customizable-perfect for creating a tranquil yet engaging online presence..</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2025-03-04 13:15:11\";s:7:\"package\";s:37:\"Yoga Studio One-Page Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"72\";s:9:\"installed\";b:0;}i:795;a:28:{s:2:\"id\";s:3:\"851\";s:5:\"title\";s:19:\"Yoga Studio Pricing\";s:5:\"alias\";s:19:\"Yoga-Studio-Pricing\";s:3:\"zip\";s:29:\"packs/Yoga-Studio-Pricing.zip\";s:3:\"uid\";s:32:\"83519a8d18a57775c04d045c52379afa\";s:3:\"img\";s:30:\"Yoga-Studio-Pricing/slide1.jpg\";s:7:\"preview\";s:187:\"https://www.sliderrevolution.com/templates/yoga-studio-one-page-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=yoga-studio-one-page-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.7.29\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:548:\"<span class=\"ttm_content\">Experience a seamless and immersive scroll journey with the Yoga Studio One-Page Website Template for Slider Revolution. Designed for yoga studios, instructors, and wellness brands, this beautifully crafted template features smooth transitions, elegant typography, and a calming aesthetic. With dedicated sections for classes, instructors, testimonials, and contact details, it is fully responsive and easily customizable-perfect for creating a tranquil yet engaging online presence..</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2025-03-04 13:16:25\";s:7:\"package\";s:37:\"Yoga Studio One-Page Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"72\";s:9:\"installed\";b:0;}i:796;a:28:{s:2:\"id\";s:3:\"852\";s:5:\"title\";s:15:\"Yoga Studio Cta\";s:5:\"alias\";s:15:\"Yoga-Studio-Cta\";s:3:\"zip\";s:25:\"packs/Yoga-Studio-Cta.zip\";s:3:\"uid\";s:32:\"f9e71bf6c0c31dcff3aaf84063be33d4\";s:3:\"img\";s:26:\"Yoga-Studio-Cta/slide1.jpg\";s:7:\"preview\";s:187:\"https://www.sliderrevolution.com/templates/yoga-studio-one-page-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=yoga-studio-one-page-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.7.29\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:548:\"<span class=\"ttm_content\">Experience a seamless and immersive scroll journey with the Yoga Studio One-Page Website Template for Slider Revolution. Designed for yoga studios, instructors, and wellness brands, this beautifully crafted template features smooth transitions, elegant typography, and a calming aesthetic. With dedicated sections for classes, instructors, testimonials, and contact details, it is fully responsive and easily customizable-perfect for creating a tranquil yet engaging online presence..</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2025-03-04 13:17:23\";s:7:\"package\";s:37:\"Yoga Studio One-Page Website Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"72\";s:9:\"installed\";b:0;}i:797;a:28:{s:2:\"id\";s:3:\"853\";s:5:\"title\";s:18:\"Yoga Studio Footer\";s:5:\"alias\";s:18:\"Yoga-Studio-Footer\";s:3:\"zip\";s:28:\"packs/Yoga-Studio-Footer.zip\";s:3:\"uid\";s:32:\"7c864de61bca028ea4f4294a626cf84a\";s:3:\"img\";s:29:\"Yoga-Studio-Footer/slide1.jpg\";s:7:\"preview\";s:187:\"https://www.sliderrevolution.com/templates/yoga-studio-one-page-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=yoga-studio-one-page-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.7.29\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:548:\"<span class=\"ttm_content\">Experience a seamless and immersive scroll journey with the Yoga Studio One-Page Website Template for Slider Revolution. Designed for yoga studios, instructors, and wellness brands, this beautifully crafted template features smooth transitions, elegant typography, and a calming aesthetic. With dedicated sections for classes, instructors, testimonials, and contact details, it is fully responsive and easily customizable-perfect for creating a tranquil yet engaging online presence..</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2025-03-04 13:18:31\";s:7:\"package\";s:37:\"Yoga Studio One-Page Website Template\";s:13:\"package_order\";s:2:\"10\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"72\";s:9:\"installed\";b:0;}i:798;a:26:{s:2:\"id\";s:3:\"855\";s:5:\"title\";s:41:\"The Ghost Shell-Ecommerce Slider Template\";s:5:\"alias\";s:41:\"The-Ghost-Shell-Ecommerce-Slider-Template\";s:3:\"zip\";s:45:\"The-Ghost-Shell-Ecommerce-Slider-Template.zip\";s:3:\"uid\";s:32:\"5c3715939ff83901b3f6e12934717098\";s:3:\"img\";s:52:\"The-Ghost-Shell-Ecommerce-Slider-Template/slide1.jpg\";s:7:\"preview\";s:195:\"https://www.sliderrevolution.com/templates/the-ghost-shell-ecommerce-slider-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=the-ghost-shell-ecommerce-slider-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.7.31\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:775:\"<span class=\"ttm_content\">The Ghost Shell is a bold, minimal ecommerce slider template designed to make a statement with just two powerful slides. Inspired by futuristic techwear and clean design principles, this template is perfect for showcasing a single hero product with precision and style.<br><br>Slide one delivers a strong introduction—combining impactful typography, subtle keywords, and a high-end fashion aesthetic to set the tone. Slide two focuses entirely on the product itself, presenting it in full detail with elegant animations and a refined visual layout.<br><br>Ideal for modern brands launching a flagship piece or crafting a cinematic product reveal, The Ghost Shell keeps things simple, sharp, and unforgettable.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2025-04-01 10:46:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:10:\"new_slider\";b:1;}}s:6:\"slides\";a:803:{s:16:\"classic-carousel\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"classic-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"classic-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"classic-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"classic-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"classic-carousel/slide5.jpg\";}}s:13:\"classicslider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"classicslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"classicslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"classicslider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"classicslider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:24:\"classicslider/slide5.jpg\";}}s:11:\"contenttabs\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"contenttabs/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"contenttabs/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"contenttabs/slide3.jpg\";}}s:13:\"facebook-feed\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"facebook-feed/slide1.jpg\";}}s:7:\"fashion\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"fashion/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"fashion/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"fashion/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:18:\"fashion/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:18:\"fashion/slide5.jpg\";}}s:14:\"flickr-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"flickr-gallery/slide1.jpg\";}}s:3:\"gym\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:14:\"gym/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:14:\"gym/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:14:\"gym/slide3.jpg\";}}s:18:\"highlight-carousel\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"highlight-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"highlight-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"highlight-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"highlight-carousel/slide4.jpg\";}}s:18:\"highlight-showcase\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"highlight-showcase/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"highlight-showcase/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"highlight-showcase/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"highlight-showcase/slide4.jpg\";}}s:10:\"image-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"imagehero/slide1.jpg\";}}s:13:\"insta-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"insta-gallery/slide1.jpg\";}}s:19:\"levanorestaurantbar\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"levanorestaurantbar/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"levanorestaurantbar/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"levanorestaurantbar/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:30:\"levanorestaurantbar/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:30:\"levanorestaurantbar/slide5.jpg\";}}s:11:\"mainfeature\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"mainfeature/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"mainfeature/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"mainfeature/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:22:\"mainfeature/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:22:\"mainfeature/slide7.jpg\";}}s:17:\"media-gallery-two\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"media-gallery-two/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"media-gallery-two/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"media-gallery-two/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"media-gallery-two/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:28:\"media-gallery-two/slide6.jpg\";}}s:23:\"media-carousel-autoplay\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide6.jpg\";}}s:21:\"news-background-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"news-bg-video/slide1.jpg\";}}s:12:\"news-gallery\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"news-gallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"news-gallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"news-gallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"news-gallery/slide4.jpg\";}}s:23:\"news-gallery-post-based\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"news-gallery-post-based/slide1.jpg\";}}s:9:\"news-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"news-hero/slide1.jpg\";}}s:10:\"news-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"news-video/slide1.jpg\";}}s:15:\"newsletter-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"newsletter-hero/slide1.jpg\";}}s:10:\"notgeneric\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"notgeneric/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"notgeneric/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"notgeneric/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:21:\"notgeneric/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:21:\"notgeneric/slide5.jpg\";}}s:11:\"photography\";a:10:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"photography/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"photography/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"photography/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:22:\"photography/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:22:\"photography/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:22:\"photography/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:22:\"photography/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:22:\"photography/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:22:\"photography/slide9.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:23:\"photography/slide10.jpg\";}}s:20:\"photography-carousel\";a:10:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"photography-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"photography-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:31:\"photography-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:31:\"photography-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:31:\"photography-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:31:\"photography-carousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:31:\"photography-carousel/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:31:\"photography-carousel/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:31:\"photography-carousel/slide9.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:32:\"photography-carousel/slide10.jpg\";}}s:16:\"search-form-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"search-form-hero/slide1.jpg\";}}s:16:\"showcasecarousel\";a:9:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"showcasecarousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"showcasecarousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"showcasecarousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"showcasecarousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"showcasecarousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:27:\"showcasecarousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:27:\"showcasecarousel/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:27:\"showcasecarousel/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:27:\"showcasecarousel/slide9.jpg\";}}s:11:\"sports-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"sportshero/slide1.jpg\";}}s:12:\"twitter-feed\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"twitter-feed/slide1.jpg\";}}s:13:\"vimeo-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"vimeo-gallery/slide1.jpg\";}}s:9:\"vimeohero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"vimeohero/slide1.jpg\";}}s:16:\"web-product-dark\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"web-product-dark/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"web-product-dark/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"web-product-dark/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"web-product-dark/slide4.jpg\";}}s:21:\"web-product-dark-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"web-product-dark-hero/slide1.jpg\";}}s:22:\"web-product-light-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"web-product-light-hero/slide1.jpg\";}}s:15:\"webproductlight\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"webproductlight/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"webproductlight/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"webproductlight/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"webproductlight/slide4.jpg\";}}s:15:\"youtube-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"youtube-gallery/slide1.jpg\";}}s:11:\"youtubehero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"youtubehero/slide1.jpg\";}}s:13:\"scroll-effect\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"scrolleffect/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"scrolleffect/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"scrolleffect/slide3.jpg\";}}s:12:\"content-zoom\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"contentzoom/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"contentzoom/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"contentzoom/slide3.jpg\";}}s:13:\"food-carousel\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"foodcarousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"foodcarousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"foodcarousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"foodcarousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:23:\"foodcarousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:23:\"foodcarousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:23:\"foodcarousel/slide7.jpg\";}}s:14:\"rotating-words\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"rotatingwords/slide1.jpg\";}}s:22:\"travel-static-captions\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"travel-static-captions/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"travel-static-captions/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"travel-static-captions/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:33:\"travel-static-captions/slide4.jpg\";}}s:7:\"concept\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"concept/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"concept/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"concept/slide3.jpg\";}}s:17:\"fullscreen-button\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"fullscreen-button/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"fullscreen-button/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"fullscreen-button/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"fullscreen-button/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:28:\"fullscreen-button/slide5.jpg\";}}s:15:\"creativefreedom\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"creativefreedom/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"creativefreedom/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"creativefreedom/slide3.jpg\";}}s:13:\"parallaxscene\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"parallaxscene/slide1.jpg\";}}s:15:\"slidingoverlays\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"slidingoverlays/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"slidingoverlays/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"slidingoverlays/slide3.jpg\";}}s:25:\"web-product-light-hero-3d\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"web-product-light-hero-3d/slide1.jpg\";}}s:6:\"woobig\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"woobig/slide1.jpg\";}}s:16:\"woocommercesmall\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"woocommercesmall/slide1.jpg\";}}s:10:\"finedining\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"finedining/slide1.jpg\";}}s:12:\"agency-intro\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"agency-intro/slide1.jpg\";}}s:7:\"ourteam\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"ourteam/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"ourteam/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"ourteam/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:18:\"ourteam/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:18:\"ourteam/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:18:\"ourteam/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:18:\"ourteam/slide7.jpg\";}}s:17:\"our-team-carousel\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"ourteamcarousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"ourteamcarousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"ourteamcarousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"ourteamcarousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"ourteamcarousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:26:\"ourteamcarousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:26:\"ourteamcarousel/slide7.jpg\";}}s:13:\"betteryoutube\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"betteryoutube/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"betteryoutube/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"betteryoutube/slide3.jpg\";}}s:19:\"agencywebsiteheader\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"agencywebsiteheader/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"agencywebsiteheader/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"agencywebsiteheader/slide3.jpg\";}}s:10:\"comingsoon\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"comingsoon/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"comingsoon/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"comingsoon/slide3.jpg\";}}s:9:\"snowscene\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"snowscene/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:20:\"snowscene/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:20:\"snowscene/slide3.jpg\";}}s:8:\"rockband\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:19:\"rockband/slide1.jpg\";}}s:16:\"sleeklandingpage\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"sleeklandingpage/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"sleeklandingpage/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"sleeklandingpage/slide3.jpg\";}}s:14:\"applandingpage\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"applandingpage/slide1.jpg\";}}s:9:\"deskscene\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"deskscene/slide1.jpg\";}}s:15:\"cleannewsslider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"cleannewsslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"cleannewsslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"cleannewsslider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"cleannewsslider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"cleannewsslider/slide5.jpg\";}}s:12:\"imagegallery\";a:8:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"imagegallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"imagegallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"imagegallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"imagegallery/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:23:\"imagegallery/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:23:\"imagegallery/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:23:\"imagegallery/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:23:\"imagegallery/slide8.jpg\";}}s:19:\"standard-wp-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"standard-wp-gallery/slide1.jpg\";}}s:21:\"clean-news-post-based\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"clean-news-post-based/slide1.jpg\";}}s:21:\"interactivewhiteboard\";a:8:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"interactivewhiteboard/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"interactivewhiteboard/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"interactivewhiteboard/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"interactivewhiteboard/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:32:\"interactivewhiteboard/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:32:\"interactivewhiteboard/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:32:\"interactivewhiteboard/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:32:\"interactivewhiteboard/slide8.jpg\";}}s:10:\"innovation\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"innovation/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"innovation/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"innovation/slide3.jpg\";}}s:24:\"dark-fullsite-block-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"dark-fullsite-block-menu/slide1.jpg\";}}s:21:\"dark-fullsite-block-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"dark-fullsite-block-1/slide1.jpg\";}}s:27:\"dark-fullsite-block-2-about\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"dark-fullsite-block-2-about/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:38:\"dark-fullsite-block-2-about/slide2.jpg\";}}s:30:\"dark-fullsite-block-3-services\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:41:\"dark-fullsite-block-3-services/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:41:\"dark-fullsite-block-3-services/slide2.jpg\";}}s:30:\"dark-fullsite-block-4-products\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide5.jpg\";}}s:34:\"dark-fullsite-block-5-testimonials\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:45:\"dark-fullsite-block-5-testimonials/slide1.jpg\";}}s:29:\"dark-fullsite-block-6-callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:40:\"dark-fullsite-block-6-callout/slide1.jpg\";}}s:28:\"dark-fullsite-block-7-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"dark-fullsite-block-7-footer/slide1.jpg\";}}s:19:\"fullsite-block-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"fullsite-block-menu/slide1.jpg\";}}s:15:\"fullsite-block1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"fullsite-block1/slide1.jpg\";}}s:22:\"fullsite-block-2-about\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"fullsite-block-2-about/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"fullsite-block-2-about/slide2.jpg\";}}s:25:\"fullsite-block-3-services\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"fullsite-block-3-services/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"fullsite-block-3-services/slide2.jpg\";}}s:25:\"fullsite-block-4-products\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide5.jpg\";}}s:29:\"fullsite-block-5-testimonials\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:40:\"fullsite-block-5-testimonials/slide1.jpg\";}}s:24:\"fullsite-block-6-callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"fullsite-block-6-callout/slide1.jpg\";}}s:23:\"fullsite-block-7-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"fullsite-block-7-footer/slide1.jpg\";}}s:11:\"techjournal\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"techjournal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"techjournal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"techjournal/slide3.jpg\";}}s:13:\"cardealership\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"cardealership/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"cardealership/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"cardealership/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"cardealership/slide4.jpg\";}}s:14:\"fullscreenmenu\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"fullscreenmenu/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"fullscreenmenu/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"fullscreenmenu/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:25:\"fullscreenmenu/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:25:\"fullscreenmenu/slide5.jpg\";}}s:17:\"creativefrontpage\";a:8:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"creativefrontpage/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"creativefrontpage/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"creativefrontpage/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"creativefrontpage/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:28:\"creativefrontpage/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:28:\"creativefrontpage/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:28:\"creativefrontpage/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:28:\"creativefrontpage/slide8.jpg\";}}s:19:\"websitebuilder-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"websitebuilder-menu/slide1.jpg\";}}s:19:\"websitebuilder-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"websitebuilder-hero/slide1.jpg\";}}s:22:\"websitebuilder-clients\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"websitebuilder-clients/slide1.jpg\";}}s:23:\"websitebuilder-services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"websitebuilder-services/slide1.jpg\";}}s:23:\"websitebuilder-discover\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"websitebuilder-discover/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"websitebuilder-discover/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"websitebuilder-discover/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"websitebuilder-discover/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:34:\"websitebuilder-discover/slide5.jpg\";}}s:21:\"websitebuilder-slider\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"websitebuilder-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"websitebuilder-slider/slide2.jpg\";}}s:27:\"websitebuilder-calltoaction\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"websitebuilder-calltoaction/slide1.jpg\";}}s:21:\"websitebuilder-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"websitebuilder-footer/slide1.jpg\";}}s:13:\"focusparallax\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"focusparallax/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"focusparallax/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"focusparallax/slide3.jpg\";}}s:7:\"duotone\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"duotone/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"duotone/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"duotone/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:18:\"duotone/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:18:\"duotone/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:18:\"duotone/slide6.jpg\";}}s:6:\"r_menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"r_menu/slide1.jpg\";}}s:5:\"rhero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"r_hero/slide1.jpg\";}}s:7:\"r_about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"r_about/slide1.jpg\";}}s:10:\"r_products\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"r_products/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"r_products/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"r_products/slide3.jpg\";}}s:6:\"r_info\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"r_info/slide1.jpg\";}}s:17:\"inspirationheader\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"inspirationheader/slide1.jpg\";}}s:13:\"magazineposts\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"magazineposts/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"magazineposts/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"magazineposts/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"magazineposts/slide4.jpg\";}}s:17:\"explorationheader\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"explorationheader/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"explorationheader/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"explorationheader/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"explorationheader/slide4.jpg\";}}s:16:\"typewritereffect\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"typewritereffect/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"typewritereffect/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"typewritereffect/slide3.jpg\";}}s:15:\"blendmodeheader\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"blendmodeheader/slide1.jpg\";}}s:17:\"themeplicity_menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"themeplicity_menu/slide1.jpg\";}}s:19:\"themeplicity_header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"themeplicity_header/slide1.jpg\";}}s:18:\"themeplicity_offer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"themeplicity_offer/slide1.jpg\";}}s:21:\"themeplicity_whatwedo\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"themeplicity_whatwedo/slide1.jpg\";}}s:21:\"themeplicity_projects\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"themeplicity_projects/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"themeplicity_projects/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"themeplicity_projects/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"themeplicity_projects/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:32:\"themeplicity_projects/slide5.jpg\";s:3:\"img\";s:7:\"Slide 5\";}}s:23:\"themeplicity_whatsgreat\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"themeplicity_whatsgreat/slide1.jpg\";}}s:19:\"themeplicity_tables\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"themeplicity_tables/slide1.jpg\";}}s:24:\"themeplicity_contactform\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"themeplicity_contactform/slide1.jpg\";}}s:19:\"themeplicity_footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"themeplicity_footer/slide1.jpg\";}}s:17:\"NiceAndClean_Menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"NiceAndClean_Menu/slide1.jpg\";}}s:19:\"NiceAndClean_Header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"NiceAndClean_Header/slide1.jpg\";}}s:21:\"NiceAndClean_Services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"NiceAndClean_Services/slide1.jpg\";}}s:18:\"NiceAndClean_About\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"NiceAndClean_About/slide1.jpg\";}}s:18:\"niceandclean_video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"niceandclean_video/slide1.jpg\";}}s:23:\"niceandclean_highlights\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"niceandclean_highlights/slide1.jpg\";}}s:21:\"NiceAndClean_Projects\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide5.jpg\";}}s:23:\"niceandclean_textblocks\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"niceandclean_textblocks/slide1.jpg\";}}s:20:\"niceandclean_callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"niceandclean_callout/slide1.jpg\";}}s:19:\"niceandclean_footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"niceandclean_footer/slide1.jpg\";}}s:3:\"80s\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:14:\"80s/slide1.jpg\";}}s:10:\"blurslider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"blurslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"blurslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"blurslider/slide3.jpg\";}}s:15:\"ComingSoonAddon\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"ComingSoonAddon/slide1.jpg\";}}s:9:\"snowaddon\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"snowaddon/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:20:\"snowaddon/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:20:\"snowaddon/slide3.jpg\";}}s:19:\"particle-effect-one\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"particle-effect-one/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"particle-effect-one/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"particle-effect-one/slide3.jpg\";}}s:19:\"particle-effect-two\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"particle-effect-two/slide1.jpg\";}}s:21:\"particle-effect-three\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"particle-effect-three/slide1.jpg\";}}s:15:\"portfolioviewer\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"portfolioviewer/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"portfolioviewer/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"portfolioviewer/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"portfolioviewer/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"portfolioviewer/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:26:\"portfolioviewer/slide6.jpg\";}}s:11:\"appshowcase\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"appshowcase/slide1.jpg\";}}s:13:\"gravitydesign\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"gravitydesign/slide1.jpg\";}}s:12:\"404errorpage\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"404errorpage/slide1.jpg\";}}s:15:\"carouselgallery\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"carouselgallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"carouselgallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"carouselgallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"carouselgallery/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"carouselgallery/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:26:\"carouselgallery/slide6.jpg\";}}s:9:\"filmstrip\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"filmstrip/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:20:\"filmstrip/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:20:\"filmstrip/slide3.jpg\";}}s:10:\"spaceopera\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"spaceopera/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"spaceopera/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"spaceopera/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:21:\"spaceopera/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:21:\"spaceopera/slide5.jpg\";}}s:12:\"websiteintro\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"websiteintro/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"websiteintro/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"websiteintro/slide3.jpg\";}}s:12:\"maskshowcase\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"maskshowcase/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"maskshowcase/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"maskshowcase/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"maskshowcase/slide4.jpg\";}}s:18:\"parallaxzoomslices\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"parallaxzoomslices/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"parallaxzoomslices/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"parallaxzoomslices/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"parallaxzoomslices/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:29:\"parallaxzoomslices/slide5.jpg\";}}s:20:\"doubleexposureeffect\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"doubleexposureeffect/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"doubleexposureeffect/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:31:\"doubleexposureeffect/slide3.jpg\";}}s:22:\"mountainparallaxheader\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"mountainparallaxheader/slide1.jpg\";}}s:12:\"goodnewsmenu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"goodnewsmenu/slide1.jpg\";}}s:14:\"goodnewsheader\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"goodnewsheader/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"goodnewsheader/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"goodnewsheader/slide3.jpg\";}}s:16:\"goodnewswhatshot\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"goodnewswhatshot/slide1.jpg\";}}s:16:\"goodnewsfeatured\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"goodnewsfeatured/slide1.jpg\";}}s:17:\"goodnewsspotlight\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"goodnewsspotlight/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"goodnewsspotlight/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"goodnewsspotlight/slide3.jpg\";}}s:16:\"goodnewscarousel\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"goodnewscarousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"goodnewscarousel/slide2.jpg\";}}s:15:\"goodnewscallout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"goodnewscallout/slide1.jpg\";}}s:14:\"goodnewsfooter\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"goodnewsfooter/slide1.jpg\";}}s:16:\"goodnewsmenuback\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"goodnewsmenuback/slide1.jpg\";}}s:18:\"goodnewsblogheader\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"goodnewsblogheader/slide1.jpg\";}}s:19:\"goodnewsblogcontent\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"goodnewsblogcontent/slide1.jpg\";}}s:20:\"goodnewstestimonials\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"goodnewstestimonials/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"goodnewstestimonials/slide2.jpg\";}}s:18:\"goodnewsblogfooter\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"goodnewsblogfooter/slide1.jpg\";}}s:17:\"beforeafterslider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"beforeafterslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"beforeafterslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"beforeafterslider/slide3.jpg\";}}s:15:\"productshowcase\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"productshowcase/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"productshowcase/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"productshowcase/slide3.jpg\";}}s:22:\"overexposuretransition\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"overexposuretransition/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"overexposuretransition/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"overexposuretransition/slide3.jpg\";}}s:14:\"parallaxscroll\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"parallaxscroll/slide1.jpg\";}}s:11:\"techco-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"techco-menu/slide1.jpg\";}}s:13:\"techco-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"techco-header/slide1.jpg\";}}s:12:\"techco-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"techco-about/slide1.jpg\";}}s:15:\"techco-services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"techco-services/slide1.jpg\";}}s:12:\"techco-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"techco-video/slide1.jpg\";}}s:13:\"techco-prices\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"techco-prices/slide1.jpg\";}}s:19:\"techco-testimonials\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"techco-testimonials/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"techco-testimonials/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"techco-testimonials/slide3.jpg\";}}s:13:\"techco-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"techco-footer/slide1.jpg\";}}s:7:\"weather\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"weather/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"weather/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"weather/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:18:\"weather/slide4.jpg\";}}s:11:\"360panorama\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"360panorama/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"360panorama/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"360panorama/slide3.jpg\";}}s:14:\"duotone-add-on\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"duotone-add-on/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"duotone-add-on/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"duotone-add-on/slide3.jpg\";}}s:13:\"reveal-add-on\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"reveal-add-on/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"reveal-add-on/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"reveal-add-on/slide3.jpg\";}}s:16:\"band-tour-poster\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:40:\"smartcontent/band-tour-poster/slide1.png\";}}s:14:\"brewery-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"smartcontent/brewery-slider/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:38:\"smartcontent/brewery-slider/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:38:\"smartcontent/brewery-slider/slide3.png\";}}s:9:\"burgerbar\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"smartcontent/burgerbar/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"smartcontent/burgerbar/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"smartcontent/burgerbar/slide3.png\";}}s:19:\"burger-bar-portrait\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:43:\"smartcontent/burger-bar-portrait/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:43:\"smartcontent/burger-bar-portrait/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:43:\"smartcontent/burger-bar-portrait/slide3.png\";}}s:8:\"car-rent\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"smartcontent/car-rent/slide1.png\";}}s:6:\"coffee\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"smartcontent/coffee/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"smartcontent/coffee/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"smartcontent/coffee/slide3.png\";}}s:14:\"holiday-advert\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"smartcontent/holiday-advert/slide1.png\";}}s:18:\"iphone-cases-light\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:42:\"smartcontent/iphone-cases-light/slide1.png\";}}s:7:\"medical\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"smartcontent/medical/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"smartcontent/medical/slide2.png\";}}s:13:\"mexican-grill\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"smartcontent/mexican-grill/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:37:\"smartcontent/mexican-grill/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:37:\"smartcontent/mexican-grill/slide3.png\";}}s:20:\"mobile-retail-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:44:\"smartcontent/mobile-retail-slider/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:44:\"smartcontent/mobile-retail-slider/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:44:\"smartcontent/mobile-retail-slider/slide3.png\";}}s:14:\"money-exchange\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"smartcontent/money-exchange/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:38:\"smartcontent/money-exchange/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:38:\"smartcontent/money-exchange/slide3.png\";}}s:28:\"restaurant-menu-first-screen\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:52:\"smartcontent/restaurant-menu-first-screen/slide1.png\";}}s:29:\"restaurant-menu-second-screen\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:53:\"smartcontent/restaurant-menu-second-screen/slide1.png\";}}s:28:\"restaurant-menu-third-screen\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:52:\"smartcontent/restaurant-menu-third-screen/slide1.png\";}}s:11:\"shoes-store\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"smartcontent/shoes-store/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:35:\"smartcontent/shoes-store/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:35:\"smartcontent/shoes-store/slide3.png\";}}s:20:\"supermarket-products\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:44:\"smartcontent/supermarket-products/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:44:\"smartcontent/supermarket-products/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:44:\"smartcontent/supermarket-products/slide3.png\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:44:\"smartcontent/supermarket-products/slide4.png\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:44:\"smartcontent/supermarket-products/slide5.png\";}}s:16:\"travel-insurance\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:40:\"smartcontent/travel-insurance/slide1.png\";}}s:12:\"cryptoslider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"cryptoslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"cryptoslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"cryptoslider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"cryptoslider/slide4.jpg\";}}s:16:\"immersion_header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"immersion_header/slide1.jpg\";}}s:19:\"immersion-mountains\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"immersion-mountains/slide1.jpg\";}}s:17:\"immersion-product\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"immersion-product/slide1.jpg\";}}s:16:\"immersion-design\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"immersion-design/slide1.jpg\";}}s:21:\"immersion-photography\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"immersion-photography/slide1.jpg\";}}s:14:\"immersion-grid\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"immersion-grid/slide1.jpg\";}}s:11:\"funkyslider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"funkyslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"funkyslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"funkyslider/slide3.jpg\";}}s:14:\"clearview_menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"clearview_menu/slide1.jpg\";}}s:16:\"clearview_header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"clearview_header/slide1.jpg\";}}s:17:\"clearview_mission\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"clearview_mission/slide1.jpg\";}}s:17:\"clear-view-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"clear-view-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"clear-view-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"clear-view-slider/slide3.jpg\";}}s:15:\"clear-view-news\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"clear-view-news/slide1.jpg\";}}s:18:\"clear-view-clients\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"clear-view-clients/slide1.jpg\";}}s:18:\"clear-view-contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"clear-view-contact/slide1.jpg\";}}s:22:\"clear-view-single-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"clear-view-single-menu/slide1.jpg\";}}s:24:\"clear-view-single-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"clear-view-single-header/slide1.jpg\";}}s:23:\"clear-view-single-media\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"clear-view-single-media/slide1.jpg\";}}s:22:\"clear-view-single-more\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"clear-view-single-more/slide1.jpg\";}}s:25:\"clear-view-single-contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"clear-view-single-contact/slide1.jpg\";}}s:16:\"cleanlandingpage\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"cleanlandingpage/slide1.jpg\";}}s:8:\"clearcut\";a:10:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:19:\"clearcut/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:19:\"clearcut/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:19:\"clearcut/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:19:\"clearcut/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:19:\"clearcut/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:19:\"clearcut/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:19:\"clearcut/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:19:\"clearcut/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:19:\"clearcut/slide9.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:20:\"clearcut/slide10.jpg\";}}s:17:\"wonderstruck_menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"wonderstruck_menu/slide1.jpg\";}}s:19:\"wonderstruck_header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"wonderstruck_header/slide1.jpg\";}}s:18:\"wonderstruck_about\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"wonderstruck_about/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"wonderstruck_about/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"wonderstruck_about/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"wonderstruck_about/slide4.jpg\";}}s:18:\"wonderstruck-works\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"wonderstruck-works/slide1.jpg\";}}s:20:\"wonderstruck-contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"wonderstruck-contact/slide1.jpg\";}}s:11:\"bubblemorph\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"bubblemorph/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"bubblemorph/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"bubblemorph/slide3.jpg\";}}s:15:\"distortionaddon\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"distortionaddon/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"distortionaddon/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"distortionaddon/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"distortionaddon/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"distortionaddon/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:26:\"distortionaddon/slide6.jpg\";}}s:9:\"clubflyer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"clubflyer/slide1.jpg\";}}s:15:\"paintbrushaddon\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"paintbrushaddon/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"paintbrushaddon/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"paintbrushaddon/slide3.jpg\";}}s:15:\"parallax_header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"parallax_header/slide1.jpg\";}}s:16:\"parallax_content\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"parallax_content/slide1.jpg\";}}s:15:\"parallax_footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"parallax_footer/slide1.jpg\";}}s:12:\"le-chef-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"le-chef-menu/slide1.jpg\";}}s:14:\"le-chef-header\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"le-chef-header/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"le-chef-header/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"le-chef-header/slide3.jpg\";}}s:18:\"le-chef-philosophy\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"le-chef-philosophy/slide1.jpg\";}}s:12:\"le-chef-food\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"le-chef-food/slide1.jpg\";}}s:16:\"le-chef-la-carte\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"le-chef-la-carte/slide1.jpg\";}}s:14:\"le-chef-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"le-chef-footer/slide1.jpg\";}}s:20:\"news-magazine-slider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"news-magazine-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"news-magazine-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:31:\"news-magazine-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:31:\"news-magazine-slider/slide4.jpg\";}}s:18:\"real-estate-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"real-estate-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"real-estate-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"real-estate-slider/slide3.jpg\";}}s:14:\"fashion-header\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"fashion-header/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"fashion-header/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"fashion-header/slide3.jpg\";}}s:13:\"seasonaloffer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"seasonaloffer/slide1.jpg\";}}s:18:\"barber-shop-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"barber-shop-header/slide1.jpg\";}}s:23:\"barber-shop-mobile-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"barber-shop-mobile-menu/slide1.jpg\";}}s:24:\"barber-shop-first-screen\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"barber-shop-first-screen/slide1.jpg\";}}s:17:\"barber-shop-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"barber-shop-about/slide1.jpg\";}}s:20:\"barber-shop-services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"barber-shop-services/slide1.jpg\";}}s:19:\"barber-shop-barbers\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"barber-shop-barbers/slide1.jpg\";}}s:20:\"barber-shop-contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"barber-shop-contacts/slide1.jpg\";}}s:18:\"barber-shop-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"barber-shop-footer/slide1.jpg\";}}s:21:\"fitness-club-template\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"fitness-club-template/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"fitness-club-template/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"fitness-club-template/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"fitness-club-template/slide4.jpg\";}}s:13:\"soccer-school\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"soccer-school/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"soccer-school/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"soccer-school/slide3.jpg\";}}s:19:\"music-band-template\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"music-band-template/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"music-band-template/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"music-band-template/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:30:\"music-band-template/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:30:\"music-band-template/slide5.jpg\";}}s:15:\"restaurant-menu\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"restaurant-menu/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"restaurant-menu/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"restaurant-menu/slide3.jpg\";}}s:16:\"cinematic-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"cinematic-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"cinematic-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"cinematic-slider/slide3.jpg\";}}s:17:\"3d-parallax-cubes\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"3d-parallax-cubes/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"3d-parallax-cubes/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"3d-parallax-cubes/slide3.jpg\";}}s:13:\"medicare-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"medicare-menu/slide1.jpg\";}}s:15:\"medicare-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"medicare-header/slide1.jpg\";}}s:14:\"medicare-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"medicare-about/slide1.jpg\";}}s:18:\"medicare-highlight\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"medicare-highlight/slide1.jpg\";}}s:17:\"medicare-services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"medicare-services/slide1.jpg\";}}s:16:\"medicare-doctors\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"medicare-doctors/slide1.jpg\";}}s:17:\"medicare-research\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"medicare-research/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"medicare-research/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"medicare-research/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"medicare-research/slide4.jpg\";}}s:18:\"medicare-whychoose\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"medicare-whychoose/slide1.jpg\";}}s:16:\"medicare-contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"medicare-contact/slide1.jpg\";}}s:15:\"medicare-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"medicare-footer/slide1.jpg\";}}s:11:\"coffee-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"coffee-menu/slide1.jpg\";}}s:13:\"coffee-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"coffee-header/slide1.jpg\";}}s:17:\"coffee-philosophy\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"coffee-philosophy/slide1.jpg\";}}s:12:\"coffee-carte\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"coffee-carte/slide1.jpg\";}}s:13:\"coffee-teaser\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"coffee-teaser/slide1.jpg\";}}s:13:\"coffee-findus\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"coffee-findus/slide1.jpg\";}}s:13:\"coffee-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"coffee-footer/slide1.jpg\";}}s:17:\"minimal-portfolio\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"minimal-portfolio/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"minimal-portfolio/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"minimal-portfolio/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"minimal-portfolio/slide4.jpg\";}}s:23:\"minimal-portfolio-modal\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide7.jpg\";}}s:11:\"angled-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"angled-menu/slide1.jpg\";}}s:13:\"angled-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"angled-header/slide1.jpg\";}}s:11:\"angled-news\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"angled-news/slide1.jpg\";}}s:15:\"angled-services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"angled-services/slide1.jpg\";}}s:14:\"angled-success\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"angled-success/slide1.jpg\";}}s:13:\"angled-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"angled-footer/slide1.jpg\";}}s:20:\"angled-content-modal\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"angled-content-modal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"angled-content-modal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:31:\"angled-content-modal/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:31:\"angled-content-modal/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:31:\"angled-content-modal/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:31:\"angled-content-modal/slide6.jpg\";}}s:13:\"big-bold-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"big-bold-menu/slide1.jpg\";}}s:15:\"big-bold-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"big-bold-header/slide1.jpg\";}}s:16:\"big-bold-content\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"big-bold-content/slide1.jpg\";}}s:13:\"big-bold-blog\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"big-bold-blog/slide1.jpg\";}}s:18:\"big-bold-highlight\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"big-bold-highlight/slide1.jpg\";}}s:15:\"big-bold-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"big-bold-footer/slide1.jpg\";}}s:7:\"Retouch\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"Retouch/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"Retouch/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"Retouch/slide3.jpg\";}}s:11:\"tech-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"tech-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"tech-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"tech-slider/slide3.jpg\";}}s:11:\"peak-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"peak-header/slide1.jpg\";}}s:10:\"peak-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"peak-about/slide1.jpg\";}}s:14:\"peak-portfolio\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"peak-portfolio/slide1.jpg\";}}s:11:\"peak-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"peak-footer/slide1.jpg\";}}s:17:\"portfolio-welcome\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"portfolio-welcome/slide1.jpg\";}}s:15:\"portfolio-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"portfolio-about/slide1.jpg\";}}s:21:\"portfolio-works-title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"portfolio-works-title/slide1.jpg\";}}s:23:\"portfolio-works-content\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"portfolio-works-content/slide1.jpg\";}}s:18:\"portfolio-contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"portfolio-contacts/slide1.jpg\";}}s:18:\"App-Studio-Welcome\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"App-Studio-Welcome/slide1.jpg\";}}s:19:\"App-Studio-Services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"App-Studio-Services/slide1.jpg\";}}s:16:\"App-Studio-About\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"App-Studio-About/slide1.jpg\";}}s:19:\"App-Studio-Contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"App-Studio-Contacts/slide1.jpg\";}}s:14:\"cube-animation\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"cube-animation/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"cube-animation/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"cube-animation/slide3.jpg\";}}s:10:\"basic-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"basic-menu/slide1.jpg\";}}s:12:\"basic-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"basic-header/slide1.jpg\";}}s:13:\"basic-content\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"basic-content/slide1.jpg\";}}s:14:\"basic-carousel\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"basic-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"basic-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"basic-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:25:\"basic-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:25:\"basic-carousel/slide5.jpg\";}}s:13:\"basic-callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"basic-callout/slide1.jpg\";}}s:10:\"basic-grid\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"basic-grid/slide1.jpg\";}}s:17:\"basic-video-block\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"basic-video-block/slide1.jpg\";}}s:12:\"basic-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"basic-footer/slide1.jpg\";}}s:14:\"basic-lightbox\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"basic-lightbox/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"basic-lightbox/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"basic-lightbox/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:25:\"basic-lightbox/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:25:\"basic-lightbox/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:25:\"basic-lightbox/slide6.jpg\";}}s:13:\"nature-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"nature-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"nature-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"nature-slider/slide3.jpg\";}}s:11:\"art-gallery\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"art-gallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"art-gallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"art-gallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:22:\"art-gallery/slide4.jpg\";}}s:19:\"Construction-Header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"Construction-Header/slide1.jpg\";}}s:17:\"Construction-Home\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"Construction-Home/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"Construction-Home/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"Construction-Home/slide3.jpg\";}}s:21:\"Construction-Projects\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"Construction-Projects/slide1.jpg\";}}s:20:\"Construction-History\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"Construction-History/slide1.jpg\";}}s:21:\"Construction-Services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"Construction-Services/slide1.jpg\";}}s:21:\"Construction-Contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"Construction-Contacts/slide1.jpg\";}}s:21:\"404-Error-Space-Theme\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"404-Error-Space-Theme/slide1.jpg\";}}s:17:\"landing-page-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"landing-page-hero/slide1.jpg\";}}s:21:\"landing-page-features\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"landing-page-features/slide1.jpg\";}}s:20:\"landing-page-callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"landing-page-callout/slide1.jpg\";}}s:20:\"landing-page-content\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"landing-page-content/slide1.jpg\";}}s:25:\"landing-page-testimonials\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"landing-page-testimonials/slide1.jpg\";}}s:27:\"landing-page-call-to-action\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"landing-page-call-to-action/slide1.jpg\";}}s:17:\"landing-page-help\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"landing-page-help/slide1.jpg\";}}s:19:\"landing-page-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"landing-page-footer/slide1.jpg\";}}s:24:\"landing-page-price-modal\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"landing-page-price-modal/slide1.jpg\";}}s:18:\"energy-drinks-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"energy-drinks-hero/slide1.jpg\";}}s:19:\"energy-drinks-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"energy-drinks-about/slide1.jpg\";}}s:21:\"energy-drinks-product\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"energy-drinks-product/slide1.jpg\";}}s:23:\"energy-drinks-product-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"energy-drinks-product-2/slide1.jpg\";}}s:23:\"energy-drinks-product-3\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"energy-drinks-product-3/slide1.jpg\";}}s:19:\"energy-drinks-order\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"energy-drinks-order/slide1.jpg\";}}s:20:\"energy-drinks-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"energy-drinks-footer/slide1.jpg\";}}s:19:\"energy-drinks-modal\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"energy-drinks-modal/slide1.jpg\";}}s:16:\"Corporate-Header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"Corporate-Header/slide1.jpg\";}}s:24:\"Corporate-Welcome-Screen\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"Corporate-Welcome-Screen/slide1.jpg\";}}s:15:\"Corporate-About\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"Corporate-About/slide1.jpg\";}}s:19:\"Corporate-Portfolio\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"Corporate-Portfolio/slide1.jpg\";}}s:15:\"Corporate-Chart\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"Corporate-Chart/slide1.jpg\";}}s:14:\"Corporate-News\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"Corporate-News/slide1.jpg\";}}s:16:\"Corporate-Hiring\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"Corporate-News/slide1.jpg\";}}s:22:\"Corporate-Testimonials\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"Corporate-Testimonials/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"Corporate-Testimonials/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"Corporate-Testimonials/slide3.jpg\";}}s:15:\"Corporate-Store\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"Corporate-Store/slide1.jpg\";}}s:17:\"Corporate-Support\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"Corporate-Support/slide1.jpg\";}}s:14:\"Corporate-Team\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"Corporate-Team/slide1.jpg\";}}s:33:\"Corporate-Selected-Projects-Title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:44:\"Corporate-Selected-Projects-Title/slide1.jpg\";}}s:27:\"Corporate-Selected-Projects\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide7.jpg\";}}s:17:\"Corporate-Clients\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"Corporate-Clients/slide1.jpg\";}}s:20:\"Corporate-Text-Block\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"Corporate-Text-Block/slide1.jpg\";}}s:20:\"Corporate-Mobile-App\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"Corporate-Mobile-App/slide1.jpg\";}}s:18:\"Corporate-Contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"Corporate-Contacts/slide1.jpg\";}}s:16:\"Corporate-Footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"Corporate-Footer/slide1.jpg\";}}s:23:\"Corporate-Scroll-To-Top\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"Corporate-Scroll-To-Top/slide1.jpg\";}}s:14:\"geometric-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"geometric-menu/slide1.jpg\";}}s:14:\"geometric-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"geometric-hero/slide1.jpg\";}}s:14:\"geometric-grid\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"geometric-grid/slide1.jpg\";}}s:15:\"geometric-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"geometric-about/slide1.jpg\";}}s:15:\"geometric-texts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"geometric-texts/slide1.jpg\";}}s:18:\"geometric-services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"geometric-services/slide1.jpg\";}}s:17:\"geometric-texts-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"geometric-texts-2/slide1.jpg\";}}s:22:\"geometric-testimonials\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"geometric-testimonials/slide1.jpg\";}}s:16:\"geometric-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"geometric-footer/slide1.jpg\";}}s:18:\"geometric-lightbox\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"geometric-lightbox/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"geometric-lightbox/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"geometric-lightbox/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"geometric-lightbox/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:29:\"geometric-lightbox/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:29:\"geometric-lightbox/slide6.jpg\";}}s:11:\"brutal-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"brutal-menu/slide1.jpg\";}}s:11:\"brutal-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"brutal-hero/slide1.jpg\";}}s:12:\"brutal-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"brutal-about/slide1.jpg\";}}s:16:\"brutal-highlight\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"brutal-highlight/slide1.jpg\";}}s:15:\"brutal-projects\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"brutal-projects/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"brutal-projects/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"brutal-projects/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"brutal-projects/slide4.jpg\";}}s:15:\"brutal-services\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"brutal-services/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"brutal-services/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"brutal-services/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"brutal-services/slide4.jpg\";}}s:14:\"brutal-callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"brutal-callout/slide1.jpg\";}}s:13:\"brutal-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"brutal-footer/slide1.jpg\";}}s:13:\"Church-Header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"Church-Header/slide1.jpg\";}}s:22:\"Church-Upcoming-Events\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"Church-Upcoming-Events/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"Church-Upcoming-Events/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"Church-Upcoming-Events/slide3.jpg\";}}s:12:\"Church-About\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"Church-About/slide1.jpg\";}}s:14:\"Church-Pastors\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"Church-Pastors/slide1.jpg\";}}s:20:\"Church-Photo-Gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"Church-Photo-Gallery/slide1.jpg\";}}s:16:\"Church-Community\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"Church-Community/slide1.jpg\";}}s:13:\"Church-Sermon\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"Church-Sermon/slide1.jpg\";}}s:15:\"Church-Contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"Church-Contacts/slide1.jpg\";}}s:13:\"Church-Footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"Church-Footer/slide1.jpg\";}}s:19:\"Church-Light-Header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"Church-Light-Header/slide1.jpg\";}}s:28:\"Church-Light-Upcoming-Events\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"Church-Light-Upcoming-Events/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:39:\"Church-Light-Upcoming-Events/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:39:\"Church-Light-Upcoming-Events/slide3.jpg\";}}s:18:\"Church-Light-About\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"Church-Light-About/slide1.jpg\";}}s:20:\"Church-Light-Pastors\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"Church-Light-Pastors/slide1.jpg\";}}s:26:\"Church-Light-Photo-Gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"Church-Light-Photo-Gallery/slide1.jpg\";}}s:22:\"Church-Light-Community\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"Church-Light-Community/slide1.jpg\";}}s:19:\"Church-Light-Sermon\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"Church-Light-Sermon/slide1.jpg\";}}s:21:\"Church-Light-Contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"Church-Light-Contacts/slide1.jpg\";}}s:19:\"Church-Light-Footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"Church-Light-Footer/slide1.jpg\";}}s:13:\"rockable-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"rockable-menu/slide1.jpg\";}}s:13:\"rockable-hero\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"rockable-hero/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"rockable-hero/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"rockable-hero/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"rockable-hero/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:24:\"rockable-hero/slide5.jpg\";}}s:15:\"rockable-lineup\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"rockable-lineup/slide1.jpg\";}}s:17:\"rockable-lineup-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"rockable-lineup-2/slide1.jpg\";}}s:22:\"rockable-gallery-title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"rockable-gallery-title/slide1.jpg\";}}s:16:\"rockable-gallery\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"rockable-gallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"rockable-gallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"rockable-gallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"rockable-gallery/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"rockable-gallery/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:27:\"rockable-gallery/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:27:\"rockable-gallery/slide7.jpg\";}}s:17:\"rockable-sponsors\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"rockable-sponsors/slide1.jpg\";}}s:15:\"rockable-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"rockable-footer/slide1.jpg\";}}s:21:\"rockable-detail-modal\";a:18:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:10;a:2:{s:5:\"title\";s:8:\"Slide 11\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:11;a:2:{s:5:\"title\";s:8:\"Slide 12\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:12;a:2:{s:5:\"title\";s:8:\"Slide 13\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:13;a:2:{s:5:\"title\";s:8:\"Slide 14\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:14;a:2:{s:5:\"title\";s:8:\"Slide 15\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:15;a:2:{s:5:\"title\";s:8:\"Slide 16\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:16;a:2:{s:5:\"title\";s:8:\"Slide 17\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:17;a:2:{s:5:\"title\";s:8:\"Slide 18\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}}s:23:\"rockable-detail-modal-2\";a:18:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:10;a:2:{s:5:\"title\";s:8:\"Slide 11\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:11;a:2:{s:5:\"title\";s:8:\"Slide 12\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:12;a:2:{s:5:\"title\";s:8:\"Slide 13\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:13;a:2:{s:5:\"title\";s:8:\"Slide 14\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:14;a:2:{s:5:\"title\";s:8:\"Slide 15\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:15;a:2:{s:5:\"title\";s:8:\"Slide 16\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:16;a:2:{s:5:\"title\";s:8:\"Slide 17\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:17;a:2:{s:5:\"title\";s:8:\"Slide 18\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}}s:27:\"real-estate-showcase-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"Real-Estate-Showcase-Slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:38:\"Real-Estate-Showcase-Slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:38:\"Real-Estate-Showcase-Slider/slide3.jpg\";}}s:16:\"isometric-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"isometric-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"isometric-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"isometric-slider/slide3.jpg\";}}s:17:\"E-Commerce-Slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"Shoes-Store-Slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"Shoes-Store-Slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"Shoes-Store-Slider/slide3.jpg\";}}s:23:\"E-Commerce-Slider-Modal\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"Shoes-Store-Slider-Modal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:35:\"Shoes-Store-Slider-Modal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:35:\"Shoes-Store-Slider-Modal/slide3.jpg\";}}s:27:\"Woo-Commerce-Slider-Dynamic\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"Shoes-Store-Slider-Dynamic/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:37:\"Shoes-Store-Slider-Dynamic/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:37:\"Shoes-Store-Slider-Dynamic/slide3.jpg\";}}s:15:\"blooming-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"blooming-header/slide1.jpg\";}}s:14:\"blooming-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"blooming-about/slide1.jpg\";}}s:18:\"blooming-portfolio\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"blooming-portfolio/slide1.jpg\";}}s:22:\"blooming-wedding-title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"blooming-wedding-title/slide1.jpg\";}}s:25:\"blooming-wedding-carousel\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide6.jpg\";}}s:21:\"blooming-wedding-text\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"blooming-wedding-text/slide1.jpg\";}}s:22:\"blooming-parties-title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"blooming-parties-title/slide1.jpg\";}}s:25:\"blooming-parties-carousel\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide6.jpg\";}}s:21:\"blooming-parties-text\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"blooming-parties-text/slide1.jpg\";}}s:22:\"blooming-funeral-title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"blooming-funeral-title/slide1.jpg\";}}s:23:\"blooming-funeral-slider\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide6.jpg\";}}s:21:\"blooming-funeral-text\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"blooming-funeral-text/slide1.jpg\";}}s:16:\"blooming-contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"blooming-contact/slide1.jpg\";}}s:13:\"particle-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"particle-hero/slide1.jpg\";}}s:17:\"bubble-morph-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"bubble-morph-hero/slide1.jpg\";}}s:13:\"parallax-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"parallax-hero/slide1.jpg\";}}s:10:\"video-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"video-hero/slide1.jpg\";}}s:14:\"ken-burns-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"ken-burns-hero/slide1.jpg\";}}s:21:\"basic-hero-collection\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"basic-hero-collection/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"basic-hero-collection/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"basic-hero-collection/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"basic-hero-collection/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:32:\"basic-hero-collection/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:32:\"basic-hero-collection/slide6.jpg\";}}s:19:\"launching-very-soon\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"launching-very-soon/slide1.jpg\";}}s:18:\"Under-Construction\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"Under-Construction/slide1.jpg\";}}s:15:\"Particle-Effect\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"Particle-Effect/slide1.jpg\";}}s:17:\"Particle-Effect-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"Particle-Effect-2/slide1.jpg\";}}s:10:\"stark-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"stark-menu/slide1.jpg\";}}s:12:\"stark-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"stark-header/slide1.jpg\";}}s:13:\"stark-content\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"stark-content/slide1.jpg\";}}s:14:\"stark-carousel\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"stark-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"stark-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"stark-carousel/slide3.jpg\";}}s:15:\"stark-portfolio\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"stark-portfolio/slide1.jpg\";}}s:22:\"stark-portfolio-detail\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide6.jpg\";}}s:13:\"stark-contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"stark-contact/slide1.jpg\";}}s:12:\"stark-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"stark-footer/slide1.jpg\";}}s:16:\"stark-newsletter\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"stark-newsletter/slide1.jpg\";}}s:15:\"big-summer-sale\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"big-summer-sale/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"big-summer-sale/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"big-summer-sale/slide3.jpg\";}}s:18:\"traveller-carousel\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"traveller-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"traveller-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"traveller-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"traveller-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:29:\"traveller-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:29:\"traveller-carousel/slide6.jpg\";}}s:16:\"project-carousel\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"project-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"project-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"project-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"project-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"project-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:27:\"project-carousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:27:\"project-carousel/slide7.jpg\";}}s:13:\"news-carousel\";a:8:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"news-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"news-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"news-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"news-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:24:\"news-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:24:\"news-carousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:24:\"news-carousel/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:24:\"news-carousel/slide8.jpg\";}}s:10:\"story-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"story-menu/slide1.jpg\";}}s:12:\"story-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"story-header/slide1.jpg\";}}s:13:\"story-block-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"story-block-1/slide1.jpg\";}}s:15:\"story-content-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"story-content-1/slide1.jpg\";}}s:13:\"story-block-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"story-block-2/slide1.jpg\";}}s:13:\"story-block-3\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"story-block-3/slide1.jpg\";}}s:15:\"story-content-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"story-content-2/slide1.jpg\";}}s:13:\"story-block-4\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"story-block-4/slide1.jpg\";}}s:15:\"story-content-3\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"story-content-3/slide1.jpg\";}}s:12:\"mini-website\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"mini-website/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"mini-website/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"mini-website/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"mini-website/slide4.jpg\";}}s:13:\"food-delivery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"food-delivery/slide1.jpg\";}}s:25:\"slider-with-illustrations\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"slider-with-illustrations/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"slider-with-illustrations/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:36:\"slider-with-illustrations/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:36:\"slider-with-illustrations/slide4.jpg\";}}s:8:\"zen-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:19:\"zen-menu/slide1.jpg\";}}s:10:\"zen-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"zen-header/slide1.jpg\";}}s:9:\"zen-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"zen-about/slide1.jpg\";}}s:12:\"zen-features\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"zen-features/slide1.jpg\";}}s:9:\"zen-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"zen-video/slide1.jpg\";}}s:11:\"zen-pricing\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"zen-pricing/slide1.jpg\";}}s:22:\"zen-testimonials-title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"zen-testimonials-title/slide1.jpg\";}}s:16:\"zen-testimonials\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"zen-testimonials/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"zen-testimonials/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"zen-testimonials/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"zen-testimonials/slide4.jpg\";}}s:10:\"zen-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"zen-footer/slide1.jpg\";}}s:17:\"Paintbrush-Effect\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"Paintbrush-Effect/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"Paintbrush-Effect/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"Paintbrush-Effect/slide3.jpg\";}}s:19:\"Photographer-Header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"Photographer-Header/slide1.jpg\";}}s:27:\"Photographer-Welcome-Screen\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"Photographer-Welcome-Screen/slide1.jpg\";}}s:21:\"Photographer-Showcase\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"Photographer-Showcase/slide1.jpg\";}}s:22:\"Photographer-Portfolio\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"Photographer-Portfolio/slide1.jpg\";}}s:21:\"Photographer-Contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"Photographer-Contacts/slide1.jpg\";}}s:19:\"Photographer-Footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"Photographer-Footer/slide1.jpg\";}}s:18:\"Photographer-Modal\";a:1:{i:0;a:2:{s:5:\"title\";s:8:\"Slider 1\";s:3:\"img\";s:29:\"Photographer-Modal/slide1.jpg\";}}s:25:\"black-friday-scroll-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"black-friday-scroll-video/slide1.jpg\";}}s:12:\"charity-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"charity-menu/slide1.jpg\";}}s:14:\"charity-header\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"charity-header/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"charity-header/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"charity-header/slide3.jpg\";}}s:15:\"charity-mission\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"charity-mission/slide1.jpg\";}}s:13:\"charity-funds\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"charity-funds/slide1.jpg\";}}s:15:\"charity-success\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"charity-success/slide1.jpg\";}}s:15:\"charity-stories\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"charity-stories/slide1.jpg\";}}s:16:\"charity-worldmap\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"charity-worldmap/slide1.jpg\";}}s:19:\"charity-large-image\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"charity-large-image/slide1.jpg\";}}s:16:\"charity-sponsors\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"charity-sponsors/slide1.jpg\";}}s:12:\"charity-help\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"charity-help/slide1.jpg\";}}s:14:\"charity-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"charity-footer/slide1.jpg\";}}s:21:\"cinematic-hero-titles\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"cinematic-hero-titles/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"cinematic-hero-titles/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"cinematic-hero-titles/slide3.jpg\";}}s:23:\"design-dna-scroll-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"design-dna-scroll-video/slide1.jpg\";}}s:27:\"food-delivery-lottie-scroll\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"food-delivery-lottie-scroll/slide1.jpg\";}}s:20:\"food-recipe-carousel\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"food-recipe-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"food-recipe-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:31:\"food-recipe-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:31:\"food-recipe-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:31:\"food-recipe-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:31:\"food-recipe-carousel/slide6.jpg\";}}s:17:\"food-recipe-modal\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"food-recipe-modal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"food-recipe-modal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"food-recipe-modal/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"food-recipe-modal/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:28:\"food-recipe-modal/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:28:\"food-recipe-modal/slide6.jpg\";}}s:27:\"corporate-carousel-template\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"packages/corporate_carousel_bundle.jpg\";}}s:18:\"corporate-carousel\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"corporate-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"corporate-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"corporate-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"corporate-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:29:\"corporate-carousel/slide5.jpg\";}}s:18:\"corporate-lightbox\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"corporate-lightbox/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"corporate-lightbox/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"corporate-lightbox/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"corporate-lightbox/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:29:\"corporate-lightbox/slide5.jpg\";}}s:23:\"cyber-carousel-template\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"packages/cybercarousel_bundle.jpg\";}}s:14:\"cyber-carousel\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"cyber-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"cyber-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"cyber-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:25:\"cyber-carousel/slide4.jpg\";}}s:23:\"cyber-carousel-lightbox\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"cyber-carousel-lightbox/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"cyber-carousel-lightbox/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"cyber-carousel-lightbox/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"cyber-carousel-lightbox/slide4.jpg\";}}s:24:\"woocommerce-carousel-one\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"woocommerce-carousel-one/slide1.jpg\";}}s:31:\"woocommerce-carousel-one-static\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:42:\"woocommerce-carousel-one-static/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:42:\"woocommerce-carousel-one-static/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:42:\"woocommerce-carousel-one-static/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:42:\"woocommerce-carousel-one-static/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:42:\"woocommerce-carousel-one-static/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:42:\"woocommerce-carousel-one-static/slide6.jpg\";}}s:24:\"woocommerce-carousel-two\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"woocommerce-carousel-two/slide1.jpg\";}}s:31:\"woocommerce-carousel-two-static\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:42:\"woocommerce-carousel-two-static/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:42:\"woocommerce-carousel-two-static/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:42:\"woocommerce-carousel-two-static/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:42:\"woocommerce-carousel-two-static/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:42:\"woocommerce-carousel-two-static/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:42:\"woocommerce-carousel-two-static/slide6.jpg\";}}s:26:\"woocommerce-feature-slider\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"woocommerce-feature-slider/slide1.jpg\";}}s:33:\"woocommerce-feature-slider-static\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:44:\"woocommerce-feature-slider-static/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:44:\"woocommerce-feature-slider-static/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:44:\"woocommerce-feature-slider-static/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:44:\"woocommerce-feature-slider-static/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:44:\"woocommerce-feature-slider-static/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:44:\"woocommerce-feature-slider-static/slide6.jpg\";}}s:17:\"woo-liquid-slider\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"woo-liquid-slider/slide1.jpg\";}}s:32:\"woocommerce-liquid-slider-static\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:43:\"woocommerce-liquid-slider-static/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:43:\"woocommerce-liquid-slider-static/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:43:\"woocommerce-liquid-slider-static/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:43:\"woocommerce-liquid-slider-static/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:43:\"woocommerce-liquid-slider-static/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:43:\"woocommerce-liquid-slider-static/slide6.jpg\";}}s:15:\"woo-slider-pack\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"packages/woosliderpack_dynamic.jpg\";}}s:22:\"woo-slider-pack-static\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"packages/woosliderpack_static.jpg\";}}s:24:\"creative-hero-collection\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"creative-hero-collection/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:35:\"creative-hero-collection/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:35:\"creative-hero-collection/slide3.jpg\";}}s:19:\"photographer-slider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"photographer-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"photographer-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"photographer-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:30:\"photographer-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:30:\"photographer-slider/slide5.jpg\";}}s:17:\"realestate-slider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"realestate-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"realestate-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"realestate-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"realestate-slider/slide4.jpg\";}}s:19:\"saas-product-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"saas-product-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"saas-product-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"saas-product-slider/slide3.jpg\";}}s:27:\"cinematic-wildlife-template\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"packages/cinematic-wildlife-package.jpg\";}}s:25:\"cinematic-wildlife-slider\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"cinematic-wildlife-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"cinematic-wildlife-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:36:\"cinematic-wildlife-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:36:\"cinematic-wildlife-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:36:\"cinematic-wildlife-slider/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:36:\"cinematic-wildlife-slider/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:36:\"cinematic-wildlife-slider/slide7.jpg\";}}s:24:\"cinematic-wildlife-modal\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"cinematic-wildlife-modal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:35:\"cinematic-wildlife-modal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:35:\"cinematic-wildlife-modal/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:35:\"cinematic-wildlife-modal/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:35:\"cinematic-wildlife-modal/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:35:\"cinematic-wildlife-modal/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:35:\"cinematic-wildlife-modal/slide7.jpg\";}}s:32:\"gaming-stats-presentation-slider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:43:\"gaming-stats-presentation-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:43:\"gaming-stats-presentation-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:43:\"gaming-stats-presentation-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:43:\"gaming-stats-presentation-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:43:\"gaming-stats-presentation-slider/slide5.jpg\";}}s:15:\"coffee-flavours\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"coffee-flavors/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"coffee-flavors/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"coffee-flavors/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:25:\"coffee-flavors/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:25:\"coffee-flavors/slide5.jpg\";}}s:15:\"showreel-slider\";a:10:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"showreel-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"showreel-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"showreel-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"showreel-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"showreel-slider/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:26:\"showreel-slider/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:26:\"showreel-slider/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:26:\"showreel-slider/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:26:\"showreel-slider/slide9.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:27:\"showreel-slider/slide10.jpg\";}}s:16:\"visual-art-forms\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"visual-art-forms/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"visual-art-forms/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"visual-art-forms/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"visual-art-forms/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"visual-art-forms/slide5.jpg\";}}s:14:\"bg-effect-hero\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"bg-effect-hero/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"bg-effect-hero/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"bg-effect-hero/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:25:\"bg-effect-hero/slide4.jpg\";}}s:9:\"cyberfunk\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"cyberfunk/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:20:\"cyberfunk/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:20:\"cyberfunk/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:20:\"cyberfunk/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:20:\"cyberfunk/slide5.jpg\";}}s:21:\"motion-blur-portfolio\";a:8:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"motion-blur-portfolio/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"motion-blur-portfolio/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"motion-blur-portfolio/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"motion-blur-portfolio/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:32:\"motion-blur-portfolio/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:32:\"motion-blur-portfolio/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:32:\"motion-blur-portfolio/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:32:\"motion-blur-portfolio/slide8.jpg\";}}s:18:\"portal-effect-hero\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"portal-effect-hero/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"portal-effect-hero/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"portal-effect-hero/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"portal-effect-hero/slide4.jpg\";}}s:15:\"winery-timeline\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"winery-timeline/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"winery-timeline/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"winery-timeline/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"winery-timeline/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"winery-timeline/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:26:\"winery-timeline/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:26:\"winery-timeline/slide7.jpg\";}}s:25:\"smart-living-one-pager-v1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"packages/Smart-Living-One-Pager-V1.jpg\";}}s:25:\"smart-living-one-pager-v2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"packages/Smart-Living-One-Pager-V2.jpg\";}}s:25:\"smart-living-one-pager-v3\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"packages/Smart-Living-One-Pager-V3.jpg\";}}s:6:\"menu-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"menu-1/slide1.jpg\";}}s:14:\"onepage-hero-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"onepage-hero-1/slide1.jpg\";}}s:6:\"about1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"about1/slide1.jpg\";}}s:9:\"services1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"services1/slide1.jpg\";}}s:9:\"projects1\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"projects1/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:20:\"projects1/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:20:\"projects1/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:20:\"projects1/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:20:\"projects1/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:20:\"projects1/slide6.jpg\";}}s:8:\"footer-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:19:\"footer-1/slide1.jpg\";}}s:23:\"explainer-block-1-part1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"explainer-block-1-part1/slide1.jpg\";}}s:23:\"explainer-block-1-part2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"explainer-block-1-part2/slide1.jpg\";}}s:16:\"projects-modal-1\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"projects-modal-1/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"projects-modal-1/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"projects-modal-1/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"projects-modal-1/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"projects-modal-1/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:27:\"projects-modal-1/slide6.jpg\";}}s:6:\"menu-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"menu-2/slide1.jpg\";}}s:6:\"hero-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"hero-2/slide1.jpg\";}}s:10:\"services-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"services-2/services2-thumbnail.jpg\";}}s:7:\"about-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"about-2/slide1.jpg\";}}s:10:\"projects-2\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"projects-2/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"projects-2/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"projects-2/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:21:\"projects-2/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:21:\"projects-2/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:21:\"projects-2/slide6.jpg\";}}s:7:\"footer2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"footer2/slide1.jpg\";}}s:23:\"explainer-block-2-part1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"explainer-block-2-part1/slide1.jpg\";}}s:23:\"explainer-block-2-part2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"explainer-block-2-part2/slide1.jpg\";}}s:16:\"projects-modal-2\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"projects-modal-2/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"projects-modal-2/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"projects-modal-2/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"projects-modal-2/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"projects-modal-2/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:27:\"projects-modal-2/slide6.jpg\";}}s:6:\"menu-3\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"menu-3/slide1.jpg\";}}s:6:\"hero-3\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"hero-3/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:17:\"hero-3/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:17:\"hero-3/slide3.jpg\";}}s:7:\"about-3\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"about-3/slide1.jpg\";}}s:10:\"services-3\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"services-3/slide1.jpg\";}}s:10:\"projects-3\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"projects-3/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"projects-3/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"projects-3/slide3.jpg\";}}s:8:\"footer-3\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:19:\"footer-3/slide1.jpg\";}}s:23:\"explainer-block-3-part1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"explainer-block-3-part1/slide1.jpg\";}}s:23:\"explainer-block-3-part2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"explainer-block-3-part2/slide1.jpg\";}}s:16:\"projects-modal-3\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"projects-modal-3/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"projects-modal-3/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"projects-modal-3/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"projects-modal-3/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"projects-modal-3/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:27:\"projects-modal-3/slide6.jpg\";}}s:25:\"urban-street-skate-slider\";a:12:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"urban-street-skate-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"urban-street-skate-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:36:\"urban-street-skate-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:36:\"urban-street-skate-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:36:\"urban-street-skate-slider/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:36:\"urban-street-skate-slider/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:36:\"urban-street-skate-slider/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:36:\"urban-street-skate-slider/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:36:\"urban-street-skate-slider/slide9.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:37:\"urban-street-skate-slider/slide10.jpg\";}i:10;a:2:{s:5:\"title\";s:8:\"Slide 11\";s:3:\"img\";s:37:\"urban-street-skate-slider/slide11.jpg\";}i:11;a:2:{s:5:\"title\";s:8:\"Slide 12\";s:3:\"img\";s:37:\"urban-street-skate-slider/slide12.jpg\";}}s:13:\"yummy-burgers\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"yummy-burgers/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"yummy-burgers/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"yummy-burgers/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"yummy-burgers/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:24:\"yummy-burgers/slide5.jpg\";}}s:37:\"tattoo-event-website-template-package\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:41:\"packages/tattoo_event_website_package.jpg\";}}s:24:\"tattoo-event-hero-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"tattoo-event-hero-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:35:\"tattoo-event-hero-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:35:\"tattoo-event-hero-slider/slide3.jpg\";}}s:18:\"tattoo-event-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"tattoo-event-about/slide1.jpg\";}}s:20:\"tattoo-event-artists\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"tattoo-event-artists/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"tattoo-event-artists/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:31:\"tattoo-event-artists/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:31:\"tattoo-event-artists/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:31:\"tattoo-event-artists/slide5.jpg\";}}s:21:\"tattoo-event-schedule\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"tattoo-event-schedule/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"tattoo-event-schedule/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"tattoo-event-schedule/slide3.jpg\";}}s:17:\"tattoo-event-news\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"tattoo-event-news/slide1.jpg\";}}s:19:\"tattoo-event-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"tattoo-event-footer/slide1.jpg\";}}s:24:\"startup-website-template\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"packages/startup-website-template.jpg\";}}s:12:\"startup-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"startup-menu/slide1.jpg\";}}s:12:\"startup-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"startup-hero/slide1.jpg\";}}s:13:\"startup-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"startup-about/slide1.jpg\";}}s:18:\"startup-features-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"startup-features-1/slide1.jpg\";}}s:18:\"startup-features-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"startup-features-2/slide1.jpg\";}}s:12:\"startup-team\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"startup-team/slide1.jpg\";}}s:15:\"startup-reviews\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"startup-reviews/slide1.jpg\";}}s:11:\"startup-cta\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"startup-cta/slide1.jpg\";}}s:14:\"startup-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"startup-footer/slide1.jpg\";}}s:19:\"startup-video-modal\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"startup-video-modal/slide1.jpg\";}}s:32:\"christmas-gift-card-landing-page\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:45:\"packages/christmas-gift-card-landing-page.jpg\";}}s:24:\"christmas-landing-page-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:43:\"christmas-gift-card-landing-page/slide1.jpg\";}}s:24:\"christmas-landing-page-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"christmas-landing-page-2/slide1.jpg\";}}s:12:\"image-slider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"image-slider/slide-1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"image-slider/slide-2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"image-slider/slide-3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"image-slider/slide-4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:24:\"image-slider/slide-5.jpg\";}}s:17:\"full-width-slider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"full-width-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"full-width-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"full-width-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"full-width-slider/slide4.jpg\";}}s:20:\"app-website-template\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"packages/app-website-template.jpg\";}}s:16:\"app-website-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"app-website-menu/slide1.jpg\";}}s:16:\"app-website-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"app-website-hero/slide1.jpg\";}}s:20:\"app-download-buttons\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"app-download-buttons/slide1.jpg\";}}s:17:\"app-website-about\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"app-website-about/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"app-website-about/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"app-website-about/slide3.jpg\";}}s:20:\"app-website-features\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"app-website-features/slide1.jpg\";}}s:21:\"app-website-video-cta\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"app-website-video-cta/slide1.jpg\";}}s:23:\"app-website-screenshots\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"app-website-screenshots/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"app-website-screenshots/slide2.jpg\";}}s:22:\"app-testimonials-title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"app-testimonials-title/slide1.jpg\";}}s:24:\"app-website-testimonials\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"app-website-testimonials/slide1.jpg\";}}s:16:\"app-website-team\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"app-website-team/slide1.jpg\";}}s:18:\"app-website-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"app-website-footer/slide1.jpg\";}}s:15:\"app-video-modal\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"app-video-modal/slide1.jpg\";}}s:25:\"testimonial-carousel-pack\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"packages/testimonial-carousel-pack.jpg\";}}s:22:\"testimonial-carousel-1\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"testimonial-carousel-1/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"testimonial-carousel-1/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"testimonial-carousel-1/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:33:\"testimonial-carousel-1/slide4.jpg\";}}s:22:\"testimonial-carousel-2\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"testimonial-carousel-2/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"testimonial-carousel-2/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"testimonial-carousel-2/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:33:\"testimonial-carousel-2/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:33:\"testimonial-carousel-2/slide5.jpg\";}}s:22:\"testimonial-carousel-3\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"testimonial-carousel-3/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"testimonial-carousel-3/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"testimonial-carousel-3/slide3.jpg\";}}s:22:\"testimonial-carousel-4\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"testimonial-carousel-4/slide1.jpg\";}}s:22:\"testimonial-carousel-5\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"testimonial-carousel-5/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"testimonial-carousel-5/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"testimonial-carousel-5/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:33:\"testimonial-carousel-5/slide4.jpg\";}}s:9:\"deep-dive\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"deep-dive/slide1.jpg\";}}s:22:\"particle-wave-showcase\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"particle-wave-showcase/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"particle-wave-showcase/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"particle-wave-showcase/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:33:\"particle-wave-showcase/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:33:\"particle-wave-showcase/slide5.jpg\";}}s:17:\"video-hero-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"video-hero-header/slide1.jpg\";}}s:28:\"solar-system-showcase-slider\";a:9:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"solar-system-showcase-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:39:\"solar-system-showcase-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:39:\"solar-system-showcase-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:39:\"solar-system-showcase-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:39:\"solar-system-showcase-slider/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:39:\"solar-system-showcase-slider/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:39:\"solar-system-showcase-slider/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:39:\"solar-system-showcase-slider/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:39:\"solar-system-showcase-slider/slide9.jpg\";}}s:26:\"Optic-shop-showcase-slider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"Optic-shop-showcase-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:37:\"Optic-shop-showcase-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:37:\"Optic-shop-showcase-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:37:\"Optic-shop-showcase-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:37:\"Optic-shop-showcase-slider/slide5.jpg\";}}s:24:\"charts-template-showcase\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"charts-template-showcase/slide1.jpg\";}}s:31:\"fashion-website-slider-template\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"packages/fashion-website-slider.jpg\";}}s:22:\"fashion-website-slider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"fashion-website-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"fashion-website-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"fashion-website-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:33:\"fashion-website-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:33:\"fashion-website-slider/slide5.jpg\";}}s:28:\"fashion-website-slider-modal\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"fashion-website-slider-modal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:39:\"fashion-website-slider-modal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:39:\"fashion-website-slider-modal/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:39:\"fashion-website-slider-modal/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:39:\"fashion-website-slider-modal/slide5.jpg\";}}s:24:\"furniture-website-slider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"furniture-website-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:35:\"furniture-website-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:35:\"furniture-website-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:35:\"furniture-website-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:35:\"furniture-website-slider/slide5.jpg\";}}s:26:\"fitness-gym-website-slider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"fitness-gym-website-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:37:\"fitness-gym-website-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:37:\"fitness-gym-website-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:37:\"fitness-gym-website-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:37:\"fitness-gym-website-slider/slide5.jpg\";}}s:35:\"ai--robotics-webside-slider-package\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:51:\"packages/ai-and-robotics-website-slider-package.jpg\";}}s:30:\"ai-and-robotics-website-slider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:41:\"ai-and-robotics-website-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:41:\"ai-and-robotics-website-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:41:\"ai-and-robotics-website-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:41:\"ai-and-robotics-website-slider/slide4.jpg\";}}s:14:\"ai-video-modal\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"ai-video-modal/slide1.jpg\";}}s:33:\"minimal-typography-website-slider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:44:\"minimal-typography-website-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:44:\"minimal-typography-website-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:44:\"minimal-typography-website-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:44:\"minimal-typography-website-slider/slide4.jpg\";}}s:19:\"404-page-collection\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"404-page-collection/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"404-page-collection/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"404-page-collection/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:30:\"404-page-collection/slide4.jpg\";}}s:21:\"ecommerce-sale-slider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"ecommerce-sale-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"ecommerce-sale-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"ecommerce-sale-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"ecommerce-sale-slider/slide4.jpg\";}}s:19:\"fashion-shop-slider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"fashion-shop-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"fashion-shop-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"fashion-shop-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:30:\"fashion-shop-slider/slide4.jpg\";}}s:29:\"lingerie-store-website-slider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:40:\"lingerie-store-website-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:40:\"lingerie-store-website-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:40:\"lingerie-store-website-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:40:\"lingerie-store-website-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:40:\"lingerie-store-website-slider/slide5.jpg\";}}s:28:\"beach-events-hero-collection\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"beach-events-hero-collection/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:39:\"beach-events-hero-collection/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:39:\"beach-events-hero-collection/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:39:\"beach-events-hero-collection/slide4.jpg\";}}s:41:\"creative-portfolio-website-slider-package\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:54:\"packages/creative-portfolio-website-slider-package.jpg\";}}s:30:\"creative-portfolio-main-slider\";a:8:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:41:\"creative-portfolio-main-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:41:\"creative-portfolio-main-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:41:\"creative-portfolio-main-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:41:\"creative-portfolio-main-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:41:\"creative-portfolio-main-slider/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:41:\"creative-portfolio-main-slider/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:41:\"creative-portfolio-main-slider/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:41:\"creative-portfolio-main-slider/slide8.jpg\";}}s:28:\"creative-portfolio-project-1\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"creative-portfolio-project-1/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:39:\"creative-portfolio-project-1/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:39:\"creative-portfolio-project-1/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:39:\"creative-portfolio-project-1/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:39:\"creative-portfolio-project-1/slide5.jpg\";}}s:28:\"creative-portfolio-project-2\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"creative-portfolio-project-2/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:39:\"creative-portfolio-project-2/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:39:\"creative-portfolio-project-2/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:39:\"creative-portfolio-project-2/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:39:\"creative-portfolio-project-2/slide5.jpg\";}}s:28:\"creative-portfolio-project-3\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"creative-portfolio-project-3/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:39:\"creative-portfolio-project-3/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:39:\"creative-portfolio-project-3/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:39:\"creative-portfolio-project-3/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:39:\"creative-portfolio-project-3/slide5.jpg\";}}s:28:\"creative-portfolio-project-4\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"creative-portfolio-project-4/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:39:\"creative-portfolio-project-4/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:39:\"creative-portfolio-project-4/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:39:\"creative-portfolio-project-4/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:39:\"creative-portfolio-project-4/slide5.jpg\";}}s:28:\"creative-portfolio-project-5\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"creative-portfolio-project-5/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:39:\"creative-portfolio-project-5/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:39:\"creative-portfolio-project-5/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:39:\"creative-portfolio-project-5/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:39:\"creative-portfolio-project-5/slide5.jpg\";}}s:28:\"creative-portfolio-project-6\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"creative-portfolio-project-6/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:39:\"creative-portfolio-project-6/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:39:\"creative-portfolio-project-6/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:39:\"creative-portfolio-project-6/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:39:\"creative-portfolio-project-6/slide5.jpg\";}}s:28:\"creative-portfolio-project-7\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"creative-portfolio-project-7/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:39:\"creative-portfolio-project-7/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:39:\"creative-portfolio-project-7/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:39:\"creative-portfolio-project-7/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:39:\"creative-portfolio-project-7/slide5.jpg\";}}s:19:\"ai-particle-cluster\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"ai-particle-cluster/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"ai-particle-cluster/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"ai-particle-cluster/slide3.jpg\";}}s:24:\"artistic-parallax-slider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"artistic-parallax-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:35:\"artistic-parallax-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:35:\"artistic-parallax-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:35:\"artistic-parallax-slider/slide4.jpg\";}}s:23:\"magazine-content-slider\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"magazine-content-slider/slide1.jpg\";}}s:30:\"magazine-content-slider-static\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:41:\"magazine-content-slider-static/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:41:\"magazine-content-slider-static/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:41:\"magazine-content-slider-static/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:41:\"magazine-content-slider-static/slide4.jpg\";}}s:24:\"Masonry-Gallery-Carousel\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"Masonry-Gallery-Carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:35:\"Masonry-Gallery-Carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:35:\"Masonry-Gallery-Carousel/slide3.jpg\";}}s:21:\"neon-wordpress-slider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"neon-wordpress-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"neon-wordpress-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"neon-wordpress-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"neon-wordpress-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:32:\"neon-wordpress-slider/slide5.jpg\";}}s:27:\"Restaurant-One-Page-Website\";a:11:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"Restaurant-One-Page-Website/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:38:\"Restaurant-One-Page-Website/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:38:\"Restaurant-One-Page-Website/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:38:\"Restaurant-One-Page-Website/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:38:\"Restaurant-One-Page-Website/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:38:\"Restaurant-One-Page-Website/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:38:\"Restaurant-One-Page-Website/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:38:\"Restaurant-One-Page-Website/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:38:\"Restaurant-One-Page-Website/slide9.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:39:\"Restaurant-One-Page-Website/slide10.jpg\";}i:10;a:2:{s:5:\"title\";s:8:\"Slide 11\";s:3:\"img\";s:39:\"Restaurant-One-Page-Website/slide11.jpg\";}}s:18:\"woocommerce-slider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"woocommerce-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"woocommerce-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"woocommerce-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"woocommerce-slider/slide4.jpg\";}}s:25:\"woocommerce-slider-static\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"woocommerce-slider-static/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"woocommerce-slider-static/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:36:\"woocommerce-slider-static/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:36:\"woocommerce-slider-static/slide4.jpg\";}}s:21:\"wordpress-post-slider\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"wordpress-post-slider/slide1.jpg\";}}s:28:\"WordPress-Post-Slider-Static\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"WordPress-Post-Slider-Static/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:39:\"WordPress-Post-Slider-Static/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:39:\"WordPress-Post-Slider-Static/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:39:\"WordPress-Post-Slider-Static/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:39:\"WordPress-Post-Slider-Static/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:39:\"WordPress-Post-Slider-Static/slide6.jpg\";}}s:22:\"wordpress-video-slider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"wordpress-video-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"wordpress-video-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"wordpress-video-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:33:\"wordpress-video-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:33:\"wordpress-video-slider/slide5.jpg\";}}s:37:\"architecture-website-template-package\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"packages/architecture-website-thumb.jpg\";}}s:17:\"architecture-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"architecture-menu/slide1.jpg\";}}s:26:\"architecture-header-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"architecture-header-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:37:\"architecture-header-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:37:\"architecture-header-slider/slide3.jpg\";}}s:23:\"architecture-text-block\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"architecture-text-block/slide1.jpg\";}}s:18:\"architecture-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"architecture-about/slide1.jpg\";}}s:26:\"architecture-process-title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"architecture-process-title/slide1.jpg\";}}s:20:\"architecture-process\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"architecture-process/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"architecture-process/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:31:\"architecture-process/slide3.jpg\";}}s:22:\"architecture-portfolio\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"architecture-portfolio/slide1.jpg\";}}s:28:\"architecture-portfolio-modal\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"architecture-portfolio-modal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:39:\"architecture-portfolio-modal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:39:\"architecture-portfolio-modal/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:39:\"architecture-portfolio-modal/slide4.jpg\";}}s:20:\"architecture-contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"architecture-contact/slide1.jpg\";}}s:23:\"image-comparison-slider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"image-comparison-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"image-comparison-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"image-comparison-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"image-comparison-slider/slide4.jpg\";}}s:37:\"wedding-photo-slider-template-package\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:41:\"packages/Wedding-Photo-Slider-Package.jpg\";}}s:20:\"wedding-photo-slider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"wedding-photo-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"wedding-photo-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:31:\"wedding-photo-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:31:\"wedding-photo-slider/slide4.jpg\";}}s:26:\"wedding-photo-slider-modal\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"wedding-photo-slider-modal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:37:\"wedding-photo-slider-modal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:37:\"wedding-photo-slider-modal/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:37:\"wedding-photo-slider-modal/slide4.jpg\";}}s:24:\"destinations-card-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"destinations-card-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:35:\"destinations-card-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:35:\"destinations-card-slider/slide3.jpg\";}}s:21:\"knives-product-slider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"knives-product-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"knives-product-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"knives-product-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"knives-product-slider/slide4.jpg\";}}s:16:\"tiny-slider-dark\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"tiny-slider-dark/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"tiny-slider-dark/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"tiny-slider-dark/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"tiny-slider-dark/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"tiny-slider-dark/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:27:\"tiny-slider-dark/slide6.jpg\";}}s:17:\"tiny-slider-light\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"tiny-slider-light/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"tiny-slider-light/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"tiny-slider-light/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"tiny-slider-light/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:28:\"tiny-slider-light/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:28:\"tiny-slider-light/slide6.jpg\";}}s:24:\"pet-store-product-slider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"pet-store-product-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:35:\"pet-store-product-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:35:\"pet-store-product-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:35:\"pet-store-product-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:35:\"pet-store-product-slider/slide5.jpg\";}}s:18:\"material-ui-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"material-ui-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"material-ui-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"material-ui-slider/slide3.jpg\";}}s:19:\"happy-holidays-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"happy-holidays-hero/slide1.jpg\";}}s:36:\"space-and-sci-fi-presentation-slider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:47:\"space-and-sci-fi-presentation-slider/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:47:\"space-and-sci-fi-presentation-slider/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:47:\"space-and-sci-fi-presentation-slider/slide3.png\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:47:\"space-and-sci-fi-presentation-slider/slide4.png\";}}s:21:\"Claymorphism-Carousel\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"Claymorphism-Carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"Claymorphism-Carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"Claymorphism-Carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"Claymorphism-Carousel/slide4.jpg\";}}s:24:\"404-page-hero-collection\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"404-page-hero-collection/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:35:\"404-page-hero-collection/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:35:\"404-page-hero-collection/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:35:\"404-page-hero-collection/slide4.jpg\";}}s:32:\"furniture-store-isometric-slider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:43:\"furniture-store-isometric-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:43:\"furniture-store-isometric-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:43:\"furniture-store-isometric-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:43:\"furniture-store-isometric-slider/slide4.jpg\";}}s:36:\"woodworking-website-template-package\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:41:\"packages/Woodworking-Website-Template.jpg\";}}s:22:\"wood-art-one-page-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"wood-art-one-page-hero/slide1.jpg\";}}s:23:\"wood-art-one-page-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"wood-art-one-page-about/slide1.jpg\";}}s:22:\"wood-art-one-page-work\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"wood-art-one-page-work/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"wood-art-one-page-work/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"wood-art-one-page-work/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:33:\"wood-art-one-page-work/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:33:\"wood-art-one-page-work/slide5.jpg\";}}s:30:\"wood-art-one-page-testimonials\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:41:\"wood-art-one-page-testimonials/slide1.jpg\";}}s:24:\"wood-art-one-page-events\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"wood-art-one-page-events/slide1.jpg\";}}s:24:\"wood-art-one-page-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"wood-art-one-page-footer/slide1.jpg\";}}s:26:\"wood-art-one-page-gallery1\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"wood-art-one-page-gallery1/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:37:\"wood-art-one-page-gallery1/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:37:\"wood-art-one-page-gallery1/slide3.jpg\";}}s:26:\"wood-art-one-page-gallery2\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"wood-art-one-page-gallery2/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:37:\"wood-art-one-page-gallery2/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:37:\"wood-art-one-page-gallery2/slide3.jpg\";}}s:26:\"wood-art-one-page-gallery3\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"wood-art-one-page-gallery3/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:37:\"wood-art-one-page-gallery3/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:37:\"wood-art-one-page-gallery3/slide3.jpg\";}}s:26:\"wood-art-one-page-gallery4\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"wood-art-one-page-gallery4/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:37:\"wood-art-one-page-gallery4/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:37:\"wood-art-one-page-gallery4/slide3.jpg\";}}s:26:\"wood-art-one-page-gallery5\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"wood-art-one-page-gallery5/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:37:\"wood-art-one-page-gallery5/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:37:\"wood-art-one-page-gallery5/slide3.jpg\";}}s:35:\"Hero-Template-With-Cursor-Animation\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:46:\"Hero-Template-With-Cursor-Animation/slide1.jpg\";}}s:28:\"futuristic-hairstyles-slider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"futuristic-hairstyles-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:39:\"futuristic-hairstyles-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:39:\"futuristic-hairstyles-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:39:\"futuristic-hairstyles-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:39:\"futuristic-hairstyles-slider/slide5.jpg\";}}s:28:\"instagram-gallery-carousel-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"instagram-gallery-carousel-1/slide1.jpg\";}}s:28:\"instagram-gallery-carousel-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"instagram-gallery-carousel-2/slide1.jpg\";}}s:28:\"instagram-gallery-carousel-3\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"instagram-gallery-carousel-3/slide1.jpg\";}}s:28:\"instagram-gallery-carousel-4\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"instagram-gallery-carousel-4/slide1.jpg\";}}s:31:\"instagram-gallery-carousel-pack\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"packages/Instagram-Gallery-Carousel.jpg\";}}s:29:\"Storytelling-Website-Template\";a:16:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:40:\"Storytelling-Website-Template/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:40:\"Storytelling-Website-Template/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:40:\"Storytelling-Website-Template/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:40:\"Storytelling-Website-Template/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:40:\"Storytelling-Website-Template/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:40:\"Storytelling-Website-Template/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:40:\"Storytelling-Website-Template/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:40:\"Storytelling-Website-Template/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:40:\"Storytelling-Website-Template/slide9.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:41:\"Storytelling-Website-Template/slide10.jpg\";}i:10;a:2:{s:5:\"title\";s:8:\"Slide 11\";s:3:\"img\";s:41:\"Storytelling-Website-Template/slide11.jpg\";}i:11;a:2:{s:5:\"title\";s:8:\"Slide 12\";s:3:\"img\";s:41:\"Storytelling-Website-Template/slide12.jpg\";}i:12;a:2:{s:5:\"title\";s:8:\"Slide 13\";s:3:\"img\";s:41:\"Storytelling-Website-Template/slide13.jpg\";}i:13;a:2:{s:5:\"title\";s:8:\"Slide 14\";s:3:\"img\";s:41:\"Storytelling-Website-Template/slide14.jpg\";}i:14;a:2:{s:5:\"title\";s:8:\"Slide 15\";s:3:\"img\";s:41:\"Storytelling-Website-Template/slide15.jpg\";}i:15;a:2:{s:5:\"title\";s:8:\"Slide 16\";s:3:\"img\";s:41:\"Storytelling-Website-Template/slide16.jpg\";}}s:32:\"generative-ai-wordpress-template\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:45:\"packages/Generative-AI-Wordpress-Template.jpg\";}}s:9:\"G-AI-Hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"G-AI-Hero/slide1.jpg\";}}s:10:\"G-AI-Intro\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"G-AI-Intro/slide1.jpg\";}}s:10:\"G-AI-Logos\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"G-AI-Logos/slide1.jpg\";}}s:11:\"G-AI-Images\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"G-AI-Images/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"G-AI-Images/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"G-AI-Images/slide3.jpg\";}}s:9:\"G-AI-Copy\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"G-AI-Copy/slide1.jpg\";}}s:10:\"G-AI-Tools\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"G-AI-Tools/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"G-AI-Tools/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"G-AI-Tools/slide3.jpg\";}}s:10:\"G-AI-Cases\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"G-AI-Cases/slide1.jpg\";}}s:18:\"G-AI-Gallery-Title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"G-AI-Gallery-Title/slide1.jpg\";}}s:12:\"G-AI-Gallery\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"G-AI-Gallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"G-AI-Gallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"G-AI-Gallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"G-AI-Gallery/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:23:\"G-AI-Gallery/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:23:\"G-AI-Gallery/slide6.jpg\";}}s:17:\"G-AI-Testimonials\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"G-AI-Testimonials/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"G-AI-Testimonials/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"G-AI-Testimonials/slide3.jpg\";}}s:11:\"G-AI-Footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"G-AI-Footer/slide1.jpg\";}}s:23:\"visual-design-one-pager\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"packages/Visual-Design-One-Pager.jpg\";}}s:20:\"visual-designer-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"visual-designer-menu/slide1.jpg\";}}s:22:\"visual-designer-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"visual-designer-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"visual-designer-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"visual-designer-slider/slide3.jpg\";}}s:25:\"Visual-Designer-Portfolio\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"Visual-Designer-Portfolio/slide1.jpg\";}}s:21:\"Visual-Designer-About\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"Visual-Designer-About/slide1.jpg\";}}s:22:\"visual-designer-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"visual-designer-footer/slide1.jpg\";}}s:27:\"Visual-Designer-Detail-View\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"Visual-Designer-Detail-View/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:38:\"Visual-Designer-Detail-View/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:38:\"Visual-Designer-Detail-View/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:38:\"Visual-Designer-Detail-View/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:38:\"Visual-Designer-Detail-View/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:38:\"Visual-Designer-Detail-View/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:38:\"Visual-Designer-Detail-View/slide7.jpg\";}}s:24:\"online-watch-shop-slider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"online-watch-shop-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:35:\"online-watch-shop-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:35:\"online-watch-shop-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:35:\"online-watch-shop-slider/slide4.jpg\";}}s:31:\"Brewery-Website-Slider-Template\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:42:\"Brewery-Website-Slider-Template/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:42:\"Brewery-Website-Slider-Template/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:42:\"Brewery-Website-Slider-Template/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:42:\"Brewery-Website-Slider-Template/slide4.jpg\";}}s:40:\"Hero-Slider-with-Midjourney-Image-Effect\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:51:\"Hero-Slider-with-Midjourney-Image-Effect/slide1.jpg\";}}s:31:\"Highlight-Hero-Section-Template\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:42:\"Highlight-Hero-Section-Template/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:42:\"Highlight-Hero-Section-Template/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:42:\"Highlight-Hero-Section-Template/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:42:\"Highlight-Hero-Section-Template/slide4.jpg\";}}s:36:\"Samurai-Fullscreen-Carousel-Template\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:47:\"Samurai-Fullscreen-Carousel-Template/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:47:\"Samurai-Fullscreen-Carousel-Template/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:47:\"Samurai-Fullscreen-Carousel-Template/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:47:\"Samurai-Fullscreen-Carousel-Template/slide4.jpg\";}}s:32:\"surf-scroll-based-story-template\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:45:\"packages/surf-scroll-based-story-template.jpg\";}}s:18:\"Surf-Template-Logo\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"Surf-Template-Logo/slide1.jpg\";}}s:15:\"Surf-Template-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"Surf-Template-1/slide1.jpg\";}}s:15:\"Surf-Template-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"Surf-Template-2/slide1.jpg\";}}s:15:\"Surf-Template-3\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"Surf-Template-3/slide1.jpg\";}}s:15:\"Surf-Template-4\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"Surf-Template-4/slide1.jpg\";}}s:33:\"50-50-Split-Screen-Website-Design\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:44:\"50-50-Split-Screen-Website-Design/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:44:\"50-50-Split-Screen-Website-Design/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:44:\"50-50-Split-Screen-Website-Design/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:44:\"50-50-Split-Screen-Website-Design/slide4.jpg\";}}s:33:\"Food-Presentation-Template-Slider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:44:\"Food-Presentation-Template-Slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:44:\"Food-Presentation-Template-Slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:44:\"Food-Presentation-Template-Slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:44:\"Food-Presentation-Template-Slider/slide4.jpg\";}}s:38:\"FutureSight-Digital-Marketing-Template\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:49:\"FutureSight-Digital-Marketing-Template/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:49:\"FutureSight-Digital-Marketing-Template/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:49:\"FutureSight-Digital-Marketing-Template/slide3.jpg\";}}s:40:\"Starry-Night-Parallax-Zoom-Effect-Slider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:51:\"Starry-Night-Parallax-Zoom-Effect-Slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:51:\"Starry-Night-Parallax-Zoom-Effect-Slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:51:\"Starry-Night-Parallax-Zoom-Effect-Slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:51:\"Starry-Night-Parallax-Zoom-Effect-Slider/slide4.jpg\";}}s:15:\"beyond-the-void\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"beyond-the-void/slide1.jpg\";}}s:33:\"Static-Ecommerce-Product-Carousel\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:44:\"Static-Ecommerce-Product-Carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:44:\"Static-Ecommerce-Product-Carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:44:\"Static-Ecommerce-Product-Carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:44:\"Static-Ecommerce-Product-Carousel/slide4.jpg\";}}s:30:\"woo-ecommerce-product-carousel\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:41:\"woo-ecommerce-product-carousel/slide1.jpg\";}}s:31:\"Serenity-Hero-With-Focus-Effect\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:42:\"Serenity-Hero-With-Focus-Effect/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:42:\"Serenity-Hero-With-Focus-Effect/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:42:\"Serenity-Hero-With-Focus-Effect/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:42:\"Serenity-Hero-With-Focus-Effect/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:42:\"Serenity-Hero-With-Focus-Effect/slide5.jpg\";}}s:29:\"OakGrove-Wine-Slider-Template\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:40:\"OakGrove-Wine-Slider-Template/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:40:\"OakGrove-Wine-Slider-Template/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:40:\"OakGrove-Wine-Slider-Template/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:40:\"OakGrove-Wine-Slider-Template/slide4.jpg\";}}s:32:\"Geometric-Slider-Design-Template\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:43:\"Geometric-Slider-Design-Template/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:43:\"Geometric-Slider-Design-Template/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:43:\"Geometric-Slider-Design-Template/slide3.jpg\";}}s:43:\"Chocolate-Bar-Product-Presentation-Template\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:54:\"Chocolate-Bar-Product-Presentation-Template/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:54:\"Chocolate-Bar-Product-Presentation-Template/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:54:\"Chocolate-Bar-Product-Presentation-Template/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:54:\"Chocolate-Bar-Product-Presentation-Template/slide4.jpg\";}}s:30:\"Fluid-Dynamics-Effect-Showcase\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:41:\"Fluid-Dynamics-Effect-Showcase/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:41:\"Fluid-Dynamics-Effect-Showcase/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:41:\"Fluid-Dynamics-Effect-Showcase/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:41:\"Fluid-Dynamics-Effect-Showcase/slide4.jpg\";}}s:39:\"Spotlight-Hero-Header-With-Fluid-Effect\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:50:\"Spotlight-Hero-Header-With-Fluid-Effect/slide1.jpg\";}}s:38:\"Suits-Product-Showcase-Slider-Template\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:49:\"Suits-Product-Showcase-Slider-Template/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:49:\"Suits-Product-Showcase-Slider-Template/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:49:\"Suits-Product-Showcase-Slider-Template/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:49:\"Suits-Product-Showcase-Slider-Template/slide4.jpg\";}}s:41:\"Beards-Full-Width-Image-Carousel-Template\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:52:\"Beards-Full-Width-Image-Carousel-Template/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:52:\"Beards-Full-Width-Image-Carousel-Template/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:52:\"Beards-Full-Width-Image-Carousel-Template/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:52:\"Beards-Full-Width-Image-Carousel-Template/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:52:\"Beards-Full-Width-Image-Carousel-Template/slide5.jpg\";}}s:29:\"Animated-Type-Hero-Collection\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:40:\"Animated-Type-Hero-Collection/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:40:\"Animated-Type-Hero-Collection/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:40:\"Animated-Type-Hero-Collection/slide3.jpg\";}}s:37:\"Horoscope-Slider-with-Zodiac-Showcase\";a:12:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:48:\"Horoscope-Slider-with-Zodiac-Showcase/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:48:\"Horoscope-Slider-with-Zodiac-Showcase/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:48:\"Horoscope-Slider-with-Zodiac-Showcase/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:48:\"Horoscope-Slider-with-Zodiac-Showcase/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:48:\"Horoscope-Slider-with-Zodiac-Showcase/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:48:\"Horoscope-Slider-with-Zodiac-Showcase/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:48:\"Horoscope-Slider-with-Zodiac-Showcase/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:48:\"Horoscope-Slider-with-Zodiac-Showcase/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:48:\"Horoscope-Slider-with-Zodiac-Showcase/slide9.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:49:\"Horoscope-Slider-with-Zodiac-Showcase/slide10.jpg\";}i:10;a:2:{s:5:\"title\";s:8:\"Slide 11\";s:3:\"img\";s:49:\"Horoscope-Slider-with-Zodiac-Showcase/slide11.jpg\";}i:11;a:2:{s:5:\"title\";s:8:\"Slide 12\";s:3:\"img\";s:49:\"Horoscope-Slider-with-Zodiac-Showcase/slide12.jpg\";}}s:32:\"Urban-Oven-Pizza-Slider-Template\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:43:\"Urban-Oven-Pizza-Slider-Template/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:43:\"Urban-Oven-Pizza-Slider-Template/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:43:\"Urban-Oven-Pizza-Slider-Template/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:43:\"Urban-Oven-Pizza-Slider-Template/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:43:\"Urban-Oven-Pizza-Slider-Template/slide5.jpg\";}}s:42:\"modern-web-agency-website-template-package\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:47:\"packages/Modern-Web-Agency-Website-Template.jpg\";}}s:22:\"Modern-Web-Agency-Hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"Modern-Web-Agency-Hero/slide1.jpg\";}}s:24:\"Modern-Web-Agency-Brands\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"Modern-Web-Agency-Brands/slide1.jpg\";}}s:23:\"Modern-Web-Agency-About\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"Modern-Web-Agency-About/slide1.jpg\";}}s:26:\"Modern-Web-Agency-Projects\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"Modern-Web-Agency-Projects/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:37:\"Modern-Web-Agency-Projects/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:37:\"Modern-Web-Agency-Projects/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:37:\"Modern-Web-Agency-Projects/slide4.jpg\";}}s:32:\"Modern-Web-Agency-Title-Projects\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:43:\"Modern-Web-Agency-Title-Projects/slide1.jpg\";}}s:26:\"Modern-Web-Agency-Services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"Modern-Web-Agency-Services/slide1.jpg\";}}s:25:\"Modern-Web-Agency-Contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"Modern-Web-Agency-Contact/slide1.jpg\";}}s:23:\"Modern-Agency-Project-1\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"Modern-Agency-Project-1/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"Modern-Agency-Project-1/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"Modern-Agency-Project-1/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"Modern-Agency-Project-1/slide4.jpg\";}}s:23:\"Modern-Agency-Project-2\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"Modern-Agency-Project-2/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"Modern-Agency-Project-2/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"Modern-Agency-Project-2/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"Modern-Agency-Project-2/slide4.jpg\";}}s:23:\"Modern-Agency-Project-3\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"Modern-Agency-Project-3/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"Modern-Agency-Project-3/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"Modern-Agency-Project-3/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"Modern-Agency-Project-3/slide4.jpg\";}}s:23:\"Modern-Agency-Project-4\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"Modern-Agency-Project-4/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"Modern-Agency-Project-4/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"Modern-Agency-Project-4/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"Modern-Agency-Project-4/slide4.jpg\";}}s:33:\"Dog-Shelter-Puppy-Showcase-Slider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"Dog-Shelter-Showcase-Slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:38:\"Dog-Shelter-Showcase-Slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:38:\"Dog-Shelter-Showcase-Slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:38:\"Dog-Shelter-Showcase-Slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:38:\"Dog-Shelter-Showcase-Slider/slide5.jpg\";}}s:34:\"Velocity-Elegant-Fullscreen-Slider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:45:\"Velocity-Elegant-Fullscreen-Slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:45:\"Velocity-Elegant-Fullscreen-Slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:45:\"Velocity-Elegant-Fullscreen-Slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:45:\"Velocity-Elegant-Fullscreen-Slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:45:\"Velocity-Elegant-Fullscreen-Slider/slide5.jpg\";}}s:37:\"Professional-Training-Slider-Template\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:48:\"Professional-Training-Slider-Template/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:48:\"Professional-Training-Slider-Template/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:48:\"Professional-Training-Slider-Template/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:48:\"Professional-Training-Slider-Template/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:48:\"Professional-Training-Slider-Template/slide5.jpg\";}}s:31:\"Modern-Restaurant-Slider-Design\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:42:\"Modern-Restaurant-Slider-Design/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:42:\"Modern-Restaurant-Slider-Design/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:42:\"Modern-Restaurant-Slider-Design/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:42:\"Modern-Restaurant-Slider-Design/slide4.jpg\";}}s:32:\"coworking-space-website-template\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:45:\"packages/coworking-space-website-template.jpg\";}}s:20:\"Coworking-Space-Menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"Coworking-Space-Menu/slide1.jpg\";}}s:20:\"Coworking-Space-Hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"Coworking-Space-Hero/slide1.jpg\";}}s:23:\"Coworking-Space-Counter\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"Coworking-Space-Counter/slide1.jpg\";}}s:26:\"Coworking-Space-Why-Choose\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"Coworking-Space-Why-Choose/slide1.jpg\";}}s:25:\"Coworking-Space-Amenities\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"Coworking-Space-Amenities/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"Coworking-Space-Amenities/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:36:\"Coworking-Space-Amenities/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:36:\"Coworking-Space-Amenities/slide4.jpg\";}}s:21:\"Coworking-Space-Plans\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"Coworking-Space-Plans/slide1.jpg\";}}s:28:\"Coworking-Space-Testimonials\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"Coworking-Space-Testimonials/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:39:\"Coworking-Space-Testimonials/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:39:\"Coworking-Space-Testimonials/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:39:\"Coworking-Space-Testimonials/slide4.jpg\";}}s:20:\"Coworking-Space-Join\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"Coworking-Space-Join/slide1.jpg\";}}s:22:\"Coworking-Space-Footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"Coworking-Space-Footer/slide1.jpg\";}}s:22:\"Seafood-Store-Template\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"Seafood-Store-Template/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"Seafood-Store-Template/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"Seafood-Store-Template/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:33:\"Seafood-Store-Template/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:33:\"Seafood-Store-Template/slide5.jpg\";}}s:40:\"Director--Photographer-Showcase-Template\";a:10:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:51:\"Director--Photographer-Showcase-Template/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:51:\"Director--Photographer-Showcase-Template/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:51:\"Director--Photographer-Showcase-Template/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:51:\"Director--Photographer-Showcase-Template/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:51:\"Director--Photographer-Showcase-Template/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:51:\"Director--Photographer-Showcase-Template/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:51:\"Director--Photographer-Showcase-Template/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:51:\"Director--Photographer-Showcase-Template/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:51:\"Director--Photographer-Showcase-Template/slide9.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:52:\"Director--Photographer-Showcase-Template/slide10.jpg\";}}s:40:\"Stellar-Souls-Creative-Fullscreen-Slider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:51:\"Stellar-Souls-Creative-Fullscreen-Slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:51:\"Stellar-Souls-Creative-Fullscreen-Slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:51:\"Stellar-Souls-Creative-Fullscreen-Slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:51:\"Stellar-Souls-Creative-Fullscreen-Slider/slide4.jpg\";}}s:30:\"Dystopian-Fashion-Brand-Slider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:41:\"Dystopian-Fashion-Brand-Slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:41:\"Dystopian-Fashion-Brand-Slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:41:\"Dystopian-Fashion-Brand-Slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:41:\"Dystopian-Fashion-Brand-Slider/slide4.jpg\";}}s:33:\"renewable-energy-website-template\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:46:\"packages/Renewable-Energy-Website-Template.jpg\";}}s:21:\"Renewable-Energy-Menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"Renewable-Energy-Menu/slide1.jpg\";}}s:21:\"Renewable-Energy-Hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"Renewable-Energy-Hero/slide1.jpg\";}}s:22:\"Renewable-Energy-About\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"Renewable-Energy-About/slide1.jpg\";}}s:26:\"Renewable-Energy-Solutions\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"Renewable-Energy-Solutions/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:37:\"Renewable-Energy-Solutions/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:37:\"Renewable-Energy-Solutions/slide3.jpg\";}}s:27:\"Renewable-Energy-Technology\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"Renewable-Energy-Technology/slide1.jpg\";}}s:25:\"Renewable-Energy-Benefits\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"Renewable-Energy-Benefits/slide1.jpg\";}}s:25:\"Renewable-Energy-Projects\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"Renewable-Energy-Projects/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"Renewable-Energy-Projects/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:36:\"Renewable-Energy-Projects/slide3.jpg\";}}s:24:\"Renewable-Energy-Contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"Renewable-Energy-Contact/slide1.jpg\";}}s:39:\"Wheels--Tires-Automotive-Product-Slider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:50:\"Wheels--Tires-Automotive-Product-Slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:50:\"Wheels--Tires-Automotive-Product-Slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:50:\"Wheels--Tires-Automotive-Product-Slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:50:\"Wheels--Tires-Automotive-Product-Slider/slide4.jpg\";}}s:37:\"Animated-Coming-Soon-Website-Template\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:48:\"Animated-Coming-Soon-Website-Template/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:48:\"Animated-Coming-Soon-Website-Template/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:48:\"Animated-Coming-Soon-Website-Template/slide3.jpg\";}}s:28:\"Mecha-Sci-Fi-Showcase-Slider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"Mecha-Sci-Fi-Showcase-Slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:39:\"Mecha-Sci-Fi-Showcase-Slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:39:\"Mecha-Sci-Fi-Showcase-Slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:39:\"Mecha-Sci-Fi-Showcase-Slider/slide4.jpg\";}}s:32:\"bento-grid-travel-slider-package\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:45:\"packages/Bento-Grid-Travel-Slider-Package.jpg\";}}s:24:\"Bento-Grid-Travel-Slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"Bento-Grid-Travel-Slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:35:\"Bento-Grid-Travel-Slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:35:\"Bento-Grid-Travel-Slider/slide3.jpg\";}}s:23:\"Bento-Grid-Travel-Modal\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"Bento-Grid-Travel-Modal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"Bento-Grid-Travel-Modal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"Bento-Grid-Travel-Modal/slide3.jpg\";}}s:45:\"exquisite-wedding-cake-gallery-slider-package\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:58:\"packages/Exquisite-Wedding-Cake-Gallery-Slider-Package.jpg\";}}s:37:\"Exquisite-Wedding-Cake-Gallery-Slider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:48:\"Exquisite-Wedding-Cake-Gallery-Slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:48:\"Exquisite-Wedding-Cake-Gallery-Slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:48:\"Exquisite-Wedding-Cake-Gallery-Slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:48:\"Exquisite-Wedding-Cake-Gallery-Slider/slide4.jpg\";}}s:28:\"Exquisite-Cake-Gallery-Modal\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"Exquisite-Cake-Gallery-Modal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:39:\"Exquisite-Cake-Gallery-Modal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:39:\"Exquisite-Cake-Gallery-Modal/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:39:\"Exquisite-Cake-Gallery-Modal/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:39:\"Exquisite-Cake-Gallery-Modal/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:39:\"Exquisite-Cake-Gallery-Modal/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:39:\"Exquisite-Cake-Gallery-Modal/slide7.jpg\";}}s:28:\"Fine-Art-Photography-Gallery\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"Fine-Art-Photography-Gallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:39:\"Fine-Art-Photography-Gallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:39:\"Fine-Art-Photography-Gallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:39:\"Fine-Art-Photography-Gallery/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:39:\"Fine-Art-Photography-Gallery/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:39:\"Fine-Art-Photography-Gallery/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:39:\"Fine-Art-Photography-Gallery/slide7.jpg\";}}s:39:\"Cosmic-Odyssey-Animated-Slider-Template\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:50:\"Cosmic-Odyssey-Animated-Slider-Template/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:50:\"Cosmic-Odyssey-Animated-Slider-Template/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:50:\"Cosmic-Odyssey-Animated-Slider-Template/slide3.jpg\";}}s:49:\"hair-salon---hairdresser-website-template-package\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:52:\"packages/Hair-Salon-Hairdresser-Website-Template.jpg\";}}s:15:\"Hair-Salon-Hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"Hair-Salon-Hero/slide1.jpg\";}}s:16:\"Hair-Salon-About\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"Hair-Salon-About/slide1.jpg\";}}s:25:\"Hair-Salon-Services-Title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"Hair-Salon-Services-Title/slide1.jpg\";}}s:15:\"Hair-Salon-Team\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"Hair-Salon-Team/slide1.jpg\";}}s:19:\"Hair-Salon-Services\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"Hair-Salon-Services/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"Hair-Salon-Services/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"Hair-Salon-Services/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:30:\"Hair-Salon-Services/slide4.jpg\";}}s:24:\"Hair-Salon-Gallery-Title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"Hair-Salon-Gallery-Title/slide1.jpg\";}}s:18:\"Hair-Salon-Gallery\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"Hair-Salon-Gallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"Hair-Salon-Gallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"Hair-Salon-Gallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"Hair-Salon-Gallery/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:29:\"Hair-Salon-Gallery/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:29:\"Hair-Salon-Gallery/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:29:\"Hair-Salon-Gallery/slide7.jpg\";}}s:29:\"Hair-Salon-Testimonials-Title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:40:\"Hair-Salon-Testimonials-Title/slide1.jpg\";}}s:23:\"Hair-Salon-Testimonials\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"Hair-Salon-Testimonials/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"Hair-Salon-Testimonials/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"Hair-Salon-Testimonials/slide3.jpg\";}}s:17:\"Hair-Salon-Footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"Hair-Salon-Footer/slide1.jpg\";}}s:50:\"Festive-Christmas-Slider-with-Particle-Snow-Effect\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:61:\"Festive-Christmas-Slider-with-Particle-Snow-Effect/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:61:\"Festive-Christmas-Slider-with-Particle-Snow-Effect/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:61:\"Festive-Christmas-Slider-with-Particle-Snow-Effect/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:61:\"Festive-Christmas-Slider-with-Particle-Snow-Effect/slide4.jpg\";}}s:43:\"Zero-Point---Energy-Drink-Showcase-Template\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:54:\"Zero-Point---Energy-Drink-Showcase-Template/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:54:\"Zero-Point---Energy-Drink-Showcase-Template/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:54:\"Zero-Point---Energy-Drink-Showcase-Template/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:54:\"Zero-Point---Energy-Drink-Showcase-Template/slide4.jpg\";}}s:37:\"Prismara-Jewelry-Shop-Slider-Template\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:48:\"Prismara-Jewelry-Shop-Slider-Template/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:48:\"Prismara-Jewelry-Shop-Slider-Template/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:48:\"Prismara-Jewelry-Shop-Slider-Template/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:48:\"Prismara-Jewelry-Shop-Slider-Template/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:48:\"Prismara-Jewelry-Shop-Slider-Template/slide5.jpg\";}}s:36:\"Elegant-Perfume-Shop-Slider-Template\";a:9:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:47:\"Elegant-Perfume-Shop-Slider-Template/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:47:\"Elegant-Perfume-Shop-Slider-Template/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:47:\"Elegant-Perfume-Shop-Slider-Template/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:47:\"Elegant-Perfume-Shop-Slider-Template/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:47:\"Elegant-Perfume-Shop-Slider-Template/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:47:\"Elegant-Perfume-Shop-Slider-Template/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:47:\"Elegant-Perfume-Shop-Slider-Template/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:47:\"Elegant-Perfume-Shop-Slider-Template/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:47:\"Elegant-Perfume-Shop-Slider-Template/slide9.jpg\";}}s:37:\"yoga-studio-one-page-website-template\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:50:\"packages/Yoga-Studio-One-Page-Website-Template.jpg\";}}s:16:\"Yoga-Studio-Menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"Yoga-Studio-Menu/slide1.jpg\";}}s:16:\"Yoga-Studio-Hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"Yoga-Studio-Hero/slide1.jpg\";}}s:17:\"Yoga-Studio-About\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"Yoga-Studio-About/slide1.jpg\";}}s:19:\"Yoga-Studio-Classes\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"Yoga-Studio-Classes/slide1.jpg\";}}s:20:\"Yoga-Studio-Benefits\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"Yoga-Studio-Benefits/slide1.jpg\";}}s:24:\"Yoga-Studio-Testimonials\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"Yoga-Studio-Testimonials/slide1.jpg\";}}s:16:\"Yoga-Studio-Team\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"Yoga-Studio-Team/slide1.jpg\";}}s:17:\"Yoga-Studio-Quote\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"Yoga-Studio-Quote/slide1.jpg\";}}s:19:\"Yoga-Studio-Pricing\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"Yoga-Studio-Pricing/slide1.jpg\";}}s:15:\"Yoga-Studio-Cta\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"Yoga-Studio-Cta/slide1.jpg\";}}s:18:\"Yoga-Studio-Footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"Yoga-Studio-Footer/slide1.jpg\";}}s:41:\"The-Ghost-Shell-Ecommerce-Slider-Template\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:52:\"The-Ghost-Shell-Ecommerce-Slider-Template/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:52:\"The-Ghost-Shell-Ecommerce-Slider-Template/slide2.jpg\";}}}}','off');
INSERT INTO `wp_options` VALUES (9823,'action_scheduler_migration_status','complete','auto'),(9848,'_transient_wc_attribute_taxonomies','a:0:{}','on'),(9863,'_transient_ptk_patterns','a:99:{i:0;a:18:{s:2:\"ID\";i:450;s:7:\"site_id\";i:231214916;s:5:\"title\";s:47:\"Intro: Heading with image and two columns above\";s:4:\"name\";s:51:\"intro-heading-with-image-and-two-columns-above-copy\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:4027:\"<!-- wp:group {\"metadata\":{\"name\":\"Intro\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:columns {\"verticalAlignment\":\"top\",\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide are-vertically-aligned-top\"><!-- wp:column {\"verticalAlignment\":\"top\",\"width\":\"\",\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"left\",\"contentSize\":\"480px\"}} -->\n<div class=\"wp-block-column is-vertically-aligned-top\"><!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Stay dry in style</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"top\",\"width\":\"40%\"} -->\n<div class=\"wp-block-column is-vertically-aligned-top\" style=\"flex-basis:40%\"><!-- wp:paragraph -->\n<p>Designed for both fashion and function, our rain jackets offers sleek styles and waterproof protection to keep you dry in any downpour.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button --><div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\">Discover collection</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"id\":75,\"aspectRatio\":\"16/9\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/06/man-person-winter-photography-statue-coat.png\" alt=\"\" class=\"wp-image-75\" style=\"aspect-ratio:16/9;object-fit:cover\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_intro\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_intro\";s:5:\"title\";s:22:\"_dotcom_imported_intro\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:105:\"https://wooblockpatterns.wpcomstaging.com/2024/07/10/intro-heading-with-image-and-two-columns-above-copy/\";s:13:\"modified_date\";s:19:\"2024-07-10 13:45:39\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:1;a:18:{s:2:\"ID\";i:448;s:7:\"site_id\";i:231214916;s:5:\"title\";s:40:\"Intro: Two column with content and image\";s:4:\"name\";s:39:\"intro-two-column-with-content-and-image\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:3511:\"<!-- wp:group {\"metadata\":{\"name\":\"Intro\"},\"align\":\"full\",\"className\":\"alignfull\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"verticalAlignment\":\"center\",\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"left\":\"var:preset|spacing|40\"}}}} -->\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center\"><!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:heading {\"fontSize\":\"xx-large\"} -->\n<h2 class=\"wp-block-heading has-xx-large-font-size\">Sounds like<br>no other</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Experience your music like never before with our latest generation of hi-fidelity headphones.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button --><div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\">Shop now</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:image {\"id\":79,\"aspectRatio\":\"3/4\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/06/man-person-music-black-and-white-white-photography.jpg\" alt=\"\" class=\"wp-image-79\" style=\"aspect-ratio:3/4;object-fit:cover\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_intro\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_intro\";s:5:\"title\";s:22:\"_dotcom_imported_intro\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:93:\"https://wooblockpatterns.wpcomstaging.com/2024/07/10/intro-two-column-with-content-and-image/\";s:13:\"modified_date\";s:19:\"2024-07-18 12:14:17\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:2;a:18:{s:2:\"ID\";i:410;s:7:\"site_id\";i:231214916;s:5:\"title\";s:28:\"Review: Centered testimonial\";s:4:\"name\";s:27:\"review-centered-testimonial\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:4654:\"<!-- wp:group {\"metadata\":{\"name\":\"Review\",\"categories\":[\"featured\",\"reviews\"],\"patternName\":\"review-centered-testimonial\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"0\",\"left\":\"var:preset|spacing|40\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"20%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:20%\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"textAlign\":\"center\",\"align\":\"wide\",\"fontSize\":\"large\"} -->\n<h2 class=\"wp-block-heading alignwide has-text-align-center has-large-font-size\">What people are saying</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">\"I recently attended a pottery workshop at this shop, and it was such a wonderful experience. The instructor was patient and encouraging, and I had a blast getting creative with clay.”</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group\"><!-- wp:image {\"id\":107,\"width\":\"64px\",\"aspectRatio\":\"1\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"border\":{\"radius\":\"100px\"}}} -->\n<figure class=\"wp-block-image size-full is-resized has-custom-border\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/06/portrait.png\" alt=\"\" class=\"wp-image-107\" style=\"border-radius:100px;aspect-ratio:1;object-fit:cover;width:64px\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"8px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"textAlign\":\"center\",\"level\":3,\"fontSize\":\"medium\"} -->\n<h3 class=\"wp-block-heading has-text-align-center has-medium-font-size\">Liz S.</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"small\"} -->\n<p class=\"has-text-align-center has-small-font-size\">Painter</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"20%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:20%\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:24:\"_dotcom_imported_reviews\";a:3:{s:4:\"slug\";s:24:\"_dotcom_imported_reviews\";s:5:\"title\";s:24:\"_dotcom_imported_reviews\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:81:\"https://wooblockpatterns.wpcomstaging.com/2024/07/04/review-centered-testimonial/\";s:13:\"modified_date\";s:19:\"2024-07-04 12:03:45\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:3;a:18:{s:2:\"ID\";i:404;s:7:\"site_id\";i:231214916;s:5:\"title\";s:37:\"Review: A quote with scattered images\";s:4:\"name\";s:36:\"review-a-quote-with-scattered-images\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:4689:\"<!-- wp:group {\"metadata\":{\"categories\":[\"reviews\"],\"patternName\":\"review-a-quote-with-scattered-images\",\"name\":\"Review: A quote with scattered images\"},\"style\":{\"spacing\":{\"padding\":{\"right\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\"}}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"padding-right:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:spacer {\"height\":\"var:preset|spacing|40\"} -->\n<div style=\"height:var(--wp--preset--spacing--40)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"id\":405,\"width\":\"200px\",\"aspectRatio\":\"1\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"align\":\"left\",\"style\":{\"border\":{\"width\":\"0px\",\"style\":\"none\"}},\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image alignleft size-full is-resized has-custom-border is-style-default\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/07/table-food-dessert-cake-circle-painting-23295-pxhere-2.png\" alt=\"\" class=\"wp-image-405\" style=\"border-style:none;border-width:0px;aspect-ratio:1;object-fit:cover;width:200px\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":408,\"width\":\"95px\",\"height\":\"auto\",\"aspectRatio\":\"1\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"align\":\"right\",\"style\":{\"border\":{\"width\":\"0px\",\"style\":\"none\"}},\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image alignright size-full is-resized has-custom-border is-style-default\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/07/formation-cave-food-autumn-darkness-still-life-790116-pxhere-2.png\" alt=\"\" class=\"wp-image-408\" style=\"border-style:none;border-width:0px;aspect-ratio:1;object-fit:cover;width:95px;height:auto\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"bottom\":\"0\"},\"blockGap\":\"var:preset|spacing|20\",\"padding\":{\"right\":\"var:preset|spacing|20\",\"left\":\"var:preset|spacing|20\",\"top\":\"var:preset|spacing|60\",\"bottom\":\"var:preset|spacing|60\"}},\"dimensions\":{\"minHeight\":\"\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--60);padding-right:var(--wp--preset--spacing--20);padding-bottom:var(--wp--preset--spacing--60);padding-left:var(--wp--preset--spacing--20)\"><!-- wp:spacer {\"height\":\"40px\"} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"id\":107,\"width\":\"62px\",\"height\":\"62px\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"align\":\"center\",\"className\":\"is-style-rounded\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized is-style-rounded\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/06/portrait.png\" alt=\"\" class=\"wp-image-107\" style=\"object-fit:cover;width:62px;height:62px\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"center\"} -->\n<h2 class=\"wp-block-heading has-text-align-center\">\"The only limit is the extent of your imagination.\"</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Jayla H.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:image {\"id\":406,\"width\":\"200px\",\"aspectRatio\":\"1\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"align\":\"right\",\"style\":{\"border\":{\"width\":\"0px\",\"style\":\"none\"}},\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image alignright size-full is-resized has-custom-border is-style-default\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/07/plant-fruit-dish-meal-food-cooking-88153-pxhere-2.png\" alt=\"\" class=\"wp-image-406\" style=\"border-style:none;border-width:0px;aspect-ratio:1;object-fit:cover;width:200px\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":407,\"width\":\"112px\",\"height\":\"auto\",\"aspectRatio\":\"1\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"align\":\"left\",\"style\":{\"border\":{\"width\":\"0px\",\"style\":\"none\"}},\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image alignleft size-full is-resized has-custom-border is-style-default\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/07/tree-nature-branch-plant-fruit-flower-104610-pxhere.png\" alt=\"\" class=\"wp-image-407\" style=\"border-style:none;border-width:0px;aspect-ratio:1;object-fit:cover;width:112px;height:auto\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"var:preset|spacing|40\"} -->\n<div style=\"height:var(--wp--preset--spacing--40)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:24:\"_dotcom_imported_reviews\";a:3:{s:4:\"slug\";s:24:\"_dotcom_imported_reviews\";s:5:\"title\";s:24:\"_dotcom_imported_reviews\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:90:\"https://wooblockpatterns.wpcomstaging.com/2024/07/04/review-a-quote-with-scattered-images/\";s:13:\"modified_date\";s:19:\"2024-07-04 12:00:48\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:4;a:18:{s:2:\"ID\";i:401;s:7:\"site_id\";i:231214916;s:5:\"title\";s:35:\"Review: Two column centered reviews\";s:4:\"name\";s:2:\"ff\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:7073:\"<!-- wp:group {\"metadata\":{\"name\":\"Reviews\",\"categories\":[\"featured\",\"reviews\"],\"patternName\":\"review-two-column-centered-reviews\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\",\"wideSize\":\"900px\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"align\":\"wide\"} -->\n<h2 class=\"wp-block-heading alignwide has-text-align-center\">Reviews</h2>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|10\",\"bottom\":\"var:preset|spacing|10\",\"left\":\"var:preset|spacing|10\",\"right\":\"var:preset|spacing|10\"}}}} -->\n<div class=\"wp-block-column\" style=\"padding-top:var(--wp--preset--spacing--10);padding-right:var(--wp--preset--spacing--10);padding-bottom:var(--wp--preset--spacing--10);padding-left:var(--wp--preset--spacing--10)\"><!-- wp:group {\"layout\":{\"type\":\"constrained\",\"contentSize\":\"380px\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"12px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"center\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:image {\"id\":107,\"width\":\"48px\",\"aspectRatio\":\"1\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"border\":{\"radius\":\"100px\"}}} -->\n<figure class=\"wp-block-image size-full is-resized has-custom-border\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/06/portrait.png\" alt=\"\" class=\"wp-image-107\" style=\"border-radius:100px;aspect-ratio:1;object-fit:cover;width:48px\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"6px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"textAlign\":\"center\",\"level\":3,\"style\":{\"typography\":{\"lineHeight\":\"1\"}},\"className\":\"is-testimonial-name\",\"fontSize\":\"small\"} -->\n<h3 class=\"wp-block-heading has-text-align-center is-testimonial-name has-small-font-size\" style=\"line-height:1\">Jayla H.</h3>\n<!-- /wp:heading --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"0\"} -->\n<div style=\"height:0\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"className\":\"is-testimonial-review\"} -->\n<p class=\"has-text-align-center is-testimonial-review\">\"I\'ve been a loyal customer for years, and for good reason. The customer service is top-notch, and the products are always reliable.\"</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|10\",\"bottom\":\"var:preset|spacing|10\",\"left\":\"var:preset|spacing|10\",\"right\":\"var:preset|spacing|10\"}}}} -->\n<div class=\"wp-block-column\" style=\"padding-top:var(--wp--preset--spacing--10);padding-right:var(--wp--preset--spacing--10);padding-bottom:var(--wp--preset--spacing--10);padding-left:var(--wp--preset--spacing--10)\"><!-- wp:group {\"layout\":{\"type\":\"constrained\",\"contentSize\":\"380px\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"12px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"center\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:image {\"id\":325,\"width\":\"48px\",\"aspectRatio\":\"1\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"border\":{\"radius\":\"100px\"}}} -->\n<figure class=\"wp-block-image size-full is-resized has-custom-border\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/07/cf19a5d21c3eeb7afa7c346b32af3ece-1.jpeg\" alt=\"\" class=\"wp-image-325\" style=\"border-radius:100px;aspect-ratio:1;object-fit:cover;width:48px\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"6px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"textAlign\":\"center\",\"level\":4,\"style\":{\"typography\":{\"lineHeight\":\"1\"}},\"className\":\"is-testimonial-name\",\"fontSize\":\"small\"} -->\n<h4 class=\"wp-block-heading has-text-align-center is-testimonial-name has-small-font-size\" style=\"line-height:1\">Scott F.</h4>\n<!-- /wp:heading --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"0\"} -->\n<div style=\"height:0\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"className\":\"is-testimonial-review\"} -->\n<p class=\"has-text-align-center is-testimonial-review\">“I recently purchased a smart TV, and I couldn\'t be happier with my purchase. The staff was friendly and helpful, answering all of my questions.\"</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:24:\"_dotcom_imported_reviews\";a:3:{s:4:\"slug\";s:24:\"_dotcom_imported_reviews\";s:5:\"title\";s:24:\"_dotcom_imported_reviews\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:56:\"https://wooblockpatterns.wpcomstaging.com/2024/07/04/ff/\";s:13:\"modified_date\";s:19:\"2024-07-04 12:00:56\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:5;a:18:{s:2:\"ID\";i:397;s:7:\"site_id\";i:231214916;s:5:\"title\";s:26:\"Three column pricing table\";s:4:\"name\";s:28:\"three-column-pricing-table-2\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:15916:\"<!-- wp:group {\"metadata\":{\"name\":\"Pricing table\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"alignfull\",\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"center\"} -->\n<h2 class=\"wp-block-heading has-text-align-center\">Elevate your learning</h2>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"var:preset|spacing|30\",\"width\":\"0px\"} -->\n<div style=\"height:var(--wp--preset--spacing--30);width:0px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"metadata\":{\"name\":\"Tiers\"},\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"metadata\":{\"name\":\"Tier Item\"},\"style\":{\"spacing\":{\"padding\":{\"right\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|40\",\"top\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|50\"},\"blockGap\":\"var:preset|spacing|40\"},\"border\":{\"width\":\"1px\"}},\"borderColor\":\"primary\",\"backgroundColor\":\"base-2\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-column has-border-color has-primary-border-color has-base-2-background-color has-background\" style=\"border-width:1px;padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--40)\"><!-- wp:paragraph {\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\">Free</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"is-style-default\"} -->\n<h2 class=\"wp-block-heading is-style-default\">$0</h2>\n<!-- /wp:heading -->\n\n<!-- wp:group {\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"stretch\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast-2\"}}}},\"textColor\":\"contrast-2\"} -->\n<p class=\"has-text-align-left has-contrast-2-color has-text-color has-link-color\"><strong>✦</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}},\"layout\":{\"selfStretch\":\"fit\",\"flexSize\":null}},\"textColor\":\"contrast\"} -->\n<p class=\"has-text-align-left has-contrast-color has-text-color has-link-color\">Video lectures</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast-2\"}}}},\"textColor\":\"contrast-2\"} -->\n<p class=\"has-text-align-left has-contrast-2-color has-text-color has-link-color\"><strong>✦</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}},\"layout\":{\"selfStretch\":\"fit\",\"flexSize\":null}},\"textColor\":\"contrast\"} -->\n<p class=\"has-text-align-left has-contrast-color has-text-color has-link-color\">Interactive quizzes</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast-2\"}}}},\"textColor\":\"contrast-2\"} -->\n<p class=\"has-text-align-left has-contrast-2-color has-text-color has-link-color\"><strong>✦</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}},\"layout\":{\"selfStretch\":\"fit\",\"flexSize\":null}},\"textColor\":\"contrast\"} -->\n<p class=\"has-text-align-left has-contrast-color has-text-color has-link-color\">Downloadable resources</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast-2\"}}}},\"textColor\":\"contrast-2\"} -->\n<p class=\"has-text-align-left has-contrast-2-color has-text-color has-link-color\"><strong>✦</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}},\"layout\":{\"selfStretch\":\"fit\",\"flexSize\":null}},\"textColor\":\"contrast\"} -->\n<p class=\"has-text-align-left has-contrast-color has-text-color has-link-color\">Certificates of completion</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"16px\"} -->\n<div style=\"height:16px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"width\":100,\"className\":\"is-style-outline\"} --><div class=\"wp-block-button has-custom-width wp-block-button__width-100 is-style-outline\"><a class=\"wp-block-button__link wp-element-button\">Subscribe</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"metadata\":{\"name\":\"Tier Item (highlighted)\"},\"style\":{\"spacing\":{\"padding\":{\"right\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|40\",\"top\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\"},\"blockGap\":\"var:preset|spacing|40\"},\"border\":{\"width\":\"2px\"}},\"borderColor\":\"primary\",\"backgroundColor\":\"base-2\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-column has-border-color has-primary-border-color has-base-2-background-color has-background\" style=\"border-width:2px;padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--40)\"><!-- wp:paragraph {\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\">Basic</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"is-style-default\"} -->\n<h2 class=\"wp-block-heading is-style-default\">$39</h2>\n<!-- /wp:heading -->\n\n<!-- wp:group {\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"stretch\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast-2\"}}}},\"textColor\":\"contrast-2\"} -->\n<p class=\"has-text-align-left has-contrast-2-color has-text-color has-link-color\"><strong>✦</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}},\"layout\":{\"selfStretch\":\"fit\",\"flexSize\":null}},\"textColor\":\"contrast\"} -->\n<p class=\"has-text-align-left has-contrast-color has-text-color has-link-color\">Everything included in Free</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast-2\"}}}},\"textColor\":\"contrast-2\"} -->\n<p class=\"has-text-align-left has-contrast-2-color has-text-color has-link-color\"><strong>✦</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}},\"layout\":{\"selfStretch\":\"fit\",\"flexSize\":null}},\"textColor\":\"contrast\"} -->\n<p class=\"has-text-align-left has-contrast-color has-text-color has-link-color\">Personalized feedback</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast-2\"}}}},\"textColor\":\"contrast-2\"} -->\n<p class=\"has-text-align-left has-contrast-2-color has-text-color has-link-color\"><strong>✦</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}},\"layout\":{\"selfStretch\":\"fit\",\"flexSize\":null}},\"textColor\":\"contrast\"} -->\n<p class=\"has-text-align-left has-contrast-color has-text-color has-link-color\">Live Q&amp;A sessions</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast-2\"}}}},\"textColor\":\"contrast-2\"} -->\n<p class=\"has-text-align-left has-contrast-2-color has-text-color has-link-color\"><strong>✦</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}},\"layout\":{\"selfStretch\":\"fit\",\"flexSize\":null}},\"textColor\":\"contrast\"} -->\n<p class=\"has-text-align-left has-contrast-color has-text-color has-link-color\">Community forums</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"16px\"} -->\n<div style=\"height:16px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"width\":100,\"className\":\"is-style-fill\"} --><div class=\"wp-block-button has-custom-width wp-block-button__width-100 is-style-fill\"><a class=\"wp-block-button__link wp-element-button\">Subscribe</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"metadata\":{\"name\":\"Tier Item\"},\"style\":{\"spacing\":{\"padding\":{\"right\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|40\",\"top\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|50\"},\"blockGap\":\"var:preset|spacing|40\"},\"border\":{\"width\":\"1px\"}},\"borderColor\":\"primary\",\"backgroundColor\":\"base-2\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-column has-border-color has-primary-border-color has-base-2-background-color has-background\" style=\"border-width:1px;padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--40)\"><!-- wp:paragraph {\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\">Premium</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"is-style-default\"} -->\n<h2 class=\"wp-block-heading is-style-default\">$99</h2>\n<!-- /wp:heading -->\n\n<!-- wp:group {\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"stretch\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast-2\"}}}},\"textColor\":\"contrast-2\"} -->\n<p class=\"has-text-align-left has-contrast-2-color has-text-color has-link-color\"><strong>✦</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}},\"layout\":{\"selfStretch\":\"fit\",\"flexSize\":null}},\"textColor\":\"contrast\"} -->\n<p class=\"has-text-align-left has-contrast-color has-text-color has-link-color\"><s><span></span></s>Everything included in Basic</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast-2\"}}}},\"textColor\":\"contrast-2\"} -->\n<p class=\"has-text-align-left has-contrast-2-color has-text-color has-link-color\"><strong>✦</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}},\"layout\":{\"selfStretch\":\"fit\",\"flexSize\":null}},\"textColor\":\"contrast\"} -->\n<p class=\"has-text-align-left has-contrast-color has-text-color has-link-color\">Premium support</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast-2\"}}}},\"textColor\":\"contrast-2\"} -->\n<p class=\"has-text-align-left has-contrast-2-color has-text-color has-link-color\"><strong>✦</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}},\"layout\":{\"selfStretch\":\"fit\",\"flexSize\":null}},\"textColor\":\"contrast\"} -->\n<p class=\"has-text-align-left has-contrast-color has-text-color has-link-color\">Coaching sessions</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast-2\"}}}},\"textColor\":\"contrast-2\"} -->\n<p class=\"has-text-align-left has-contrast-2-color has-text-color has-link-color\"><strong>✦</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}},\"layout\":{\"selfStretch\":\"fit\",\"flexSize\":null}},\"textColor\":\"contrast\"} -->\n<p class=\"has-text-align-left has-contrast-color has-text-color has-link-color\">Priority access to new content</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"16px\"} -->\n<div style=\"height:16px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"width\":100,\"className\":\"is-style-outline\"} --><div class=\"wp-block-button has-custom-width wp-block-button__width-100 is-style-outline\"><a class=\"wp-block-button__link wp-element-button\">Subscribe</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:25:\"_dotcom_imported_services\";a:3:{s:4:\"slug\";s:25:\"_dotcom_imported_services\";s:5:\"title\";s:25:\"_dotcom_imported_services\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:82:\"https://wooblockpatterns.wpcomstaging.com/2024/07/02/three-column-pricing-table-2/\";s:13:\"modified_date\";s:19:\"2024-07-05 10:59:28\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:6;a:18:{s:2:\"ID\";i:395;s:7:\"site_id\";i:231214916;s:5:\"title\";s:30:\"Two column boxed pricing table\";s:4:\"name\";s:30:\"two-column-boxed-pricing-table\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:7641:\"<!-- wp:group {\"metadata\":{\"name\":\"Pricing Table\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"alignfull\",\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"textColor\":\"ast-global-color-2\",\"className\":\"is-pricing-title\"} -->\n<h2 class=\"wp-block-heading has-text-align-center is-pricing-title has-ast-global-color-2-color has-text-color\">Pricing</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"className\":\"is-pricing-description\"} -->\n<p class=\"has-text-align-center is-pricing-description\">Whether you\'re a self-paced learner looking for flexibility or someone who thrives with additional support and guidance, we have a plan for you.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"var:preset|spacing|20\"} -->\n<div style=\"height:var(--wp--preset--spacing--20)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"constrained\",\"contentSize\":\"800px\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"style\":{\"color\":{\"background\":\"#00000012\"},\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\"}}}} -->\n<div class=\"wp-block-column has-background\" style=\"background-color:#00000012;padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"level\":3,\"className\":\"is-pricing-tier-name\",\"fontSize\":\"large\"} -->\n<h3 class=\"wp-block-heading is-pricing-tier-name has-large-font-size\">Free</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"is-pricing-tier-price\",\"fontSize\":\"small\"} -->\n<p class=\"is-pricing-tier-price has-small-font-size\">$0.00/month</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"width\":100,\"className\":\"is-style-fill\"} --><div class=\"wp-block-button has-custom-width wp-block-button__width-100 is-style-fill\"><a class=\"wp-block-button__link wp-element-button\">Get Started</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"4px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"className\":\"is-pricing-tier-service-checked\"} -->\n<p class=\"is-pricing-tier-service-checked\"><strong>✓</strong> Video lectures</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"is-pricing-tier-service-checked\"} -->\n<p class=\"is-pricing-tier-service-checked\"><strong>✓</strong> Interactive quizzes</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"is-pricing-tier-service-checked\"} -->\n<p class=\"is-pricing-tier-service-checked\"><strong>✓</strong> Downloadable resources</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"is-pricing-tier-service-checked\"} -->\n<p class=\"is-pricing-tier-service-checked\"><strong>✓</strong> Downloadable resources</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"color\":{\"background\":\"#00000012\"},\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\"}}}} -->\n<div class=\"wp-block-column has-background\" style=\"background-color:#00000012;padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"metadata\":{\"name\":\"Pricing Title\"},\"style\":{\"spacing\":{\"blockGap\":\"0\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"level\":3,\"className\":\"is-pricing-tier-name\",\"fontSize\":\"large\"} -->\n<h3 class=\"wp-block-heading is-pricing-tier-name has-large-font-size\">Basic</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"is-pricing-tier-price\",\"fontSize\":\"small\"} -->\n<p class=\"is-pricing-tier-price has-small-font-size\">$69.00</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"width\":100,\"className\":\"is-style-fill\"} --><div class=\"wp-block-button has-custom-width wp-block-button__width-100 is-style-fill\"><a class=\"wp-block-button__link wp-element-button\">Get Started</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"4px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"className\":\"is-pricing-tier-service-checked\"} -->\n<p class=\"is-pricing-tier-service-checked\"><strong>✓</strong> Everything included in Free</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"is-pricing-tier-service-checked\"} -->\n<p class=\"is-pricing-tier-service-checked\"><strong>✓</strong> Personalized feedback</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"is-pricing-tier-service-checked\"} -->\n<p class=\"is-pricing-tier-service-checked\"><strong>✓</strong> Live Q&amp;A sessions</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"is-pricing-tier-service-checked\"} -->\n<p class=\"is-pricing-tier-service-checked\"><strong>✓</strong> Online community forums</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:25:\"_dotcom_imported_services\";a:3:{s:4:\"slug\";s:25:\"_dotcom_imported_services\";s:5:\"title\";s:25:\"_dotcom_imported_services\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:84:\"https://wooblockpatterns.wpcomstaging.com/2024/07/02/two-column-boxed-pricing-table/\";s:13:\"modified_date\";s:19:\"2024-07-02 11:49:48\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:7;a:18:{s:2:\"ID\";i:392;s:7:\"site_id\";i:231214916;s:5:\"title\";s:24:\"Two column pricing table\";s:4:\"name\";s:24:\"two-column-pricing-table\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:7002:\"<!-- wp:group {\"metadata\":{\"name\":\"Pricing\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"alignfull\",\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\",\"contentSize\":\"960px\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:heading {\"textAlign\":\"center\",\"align\":\"wide\",\"className\":\"is-pricing-title\"} -->\n<h2 class=\"wp-block-heading alignwide has-text-align-center is-pricing-title\">Pricing</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"var:preset|spacing|40\",\"left\":\"0\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|10\",\"bottom\":\"var:preset|spacing|10\",\"left\":\"var:preset|spacing|10\",\"right\":\"var:preset|spacing|10\"}}}} -->\n<div class=\"wp-block-column\" style=\"padding-top:var(--wp--preset--spacing--10);padding-right:var(--wp--preset--spacing--10);padding-bottom:var(--wp--preset--spacing--10);padding-left:var(--wp--preset--spacing--10)\"><!-- wp:group {\"layout\":{\"type\":\"constrained\",\"contentSize\":\"380px\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"textAlign\":\"center\",\"level\":3,\"className\":\"is-pricing-tier-name\",\"fontSize\":\"medium\"} -->\n<h3 class=\"wp-block-heading has-text-align-center is-pricing-tier-name has-medium-font-size\">Basic</h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"var:preset|spacing|20\"} -->\n<div style=\"height:var(--wp--preset--spacing--20)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":4,\"className\":\"is-pricing-tier-price\",\"fontSize\":\"xx-large\"} -->\n<h4 class=\"wp-block-heading has-text-align-center is-pricing-tier-price has-xx-large-font-size\">$99</h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"className\":\"is-pricing-tier-service\"} -->\n<p class=\"has-text-align-center is-pricing-tier-service\">It offers comprehensive access to all course materials, including video lectures, interactive quizzes, and downloadable resources.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"width\":50} --><div class=\"wp-block-button has-custom-width wp-block-button__width-50\"><a class=\"wp-block-button__link wp-element-button\">Get Started</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:spacer {\"height\":\"var:preset|spacing|20\"} -->\n<div style=\"height:var(--wp--preset--spacing--20)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|10\",\"bottom\":\"var:preset|spacing|10\",\"left\":\"var:preset|spacing|10\",\"right\":\"var:preset|spacing|10\"}}}} -->\n<div class=\"wp-block-column\" style=\"padding-top:var(--wp--preset--spacing--10);padding-right:var(--wp--preset--spacing--10);padding-bottom:var(--wp--preset--spacing--10);padding-left:var(--wp--preset--spacing--10)\"><!-- wp:group {\"layout\":{\"type\":\"constrained\",\"contentSize\":\"380px\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"textAlign\":\"center\",\"level\":3,\"className\":\"is-pricing-tier-name\",\"fontSize\":\"medium\"} -->\n<h3 class=\"wp-block-heading has-text-align-center is-pricing-tier-name has-medium-font-size\">Premium</h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"var:preset|spacing|20\"} -->\n<div style=\"height:var(--wp--preset--spacing--20)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":4,\"className\":\"is-pricing-tier-price\",\"fontSize\":\"xx-large\"} -->\n<h4 class=\"wp-block-heading has-text-align-center is-pricing-tier-price has-xx-large-font-size\">$199</h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"className\":\"is-pricing-tier-service\"} -->\n<p class=\"has-text-align-center is-pricing-tier-service\">Everything in the Basic plan plus exclusive perks and additional support. Enjoy live Q&amp;A, coaching sessions, and priority access to new content.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"width\":50} --><div class=\"wp-block-button has-custom-width wp-block-button__width-50\"><a class=\"wp-block-button__link wp-element-button\">Get Started</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:spacer {\"height\":\"0px\"} -->\n<div style=\"height:0px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:25:\"_dotcom_imported_services\";a:3:{s:4:\"slug\";s:25:\"_dotcom_imported_services\";s:5:\"title\";s:25:\"_dotcom_imported_services\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:78:\"https://wooblockpatterns.wpcomstaging.com/2024/07/02/two-column-pricing-table/\";s:13:\"modified_date\";s:19:\"2024-07-02 11:48:37\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:8;a:18:{s:2:\"ID\";i:384;s:7:\"site_id\";i:231214916;s:5:\"title\";s:28:\"Two column service offerings\";s:4:\"name\";s:28:\"two-column-service-offerings\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:4375:\"<!-- wp:group {\"metadata\":{\"name\":\"Services\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"alignfull\",\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"var:preset|spacing|60\",\"left\":\"var:preset|spacing|30\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"4px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"textAlign\":\"center\",\"level\":3,\"fontSize\":\"large\"} -->\n<h3 class=\"wp-block-heading has-text-align-center has-large-font-size\">Basic</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">$99/month</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"8px\"} -->\n<div style=\"height:8px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"id\":250,\"aspectRatio\":\"4/3\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"color\":[]}} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/07/0ad9cb5f991125c89fc952521795a1e6-1.jpeg\" alt=\"\" class=\"wp-image-250\" style=\"aspect-ratio:4/3;object-fit:cover\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"4px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"textAlign\":\"center\",\"level\":3,\"fontSize\":\"large\"} -->\n<h3 class=\"wp-block-heading has-text-align-center has-large-font-size\">Premium</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">$199/month</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"8px\"} -->\n<div style=\"height:8px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"id\":237,\"aspectRatio\":\"4/3\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"color\":[]}} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/06/8d8416beec2ca80653d3b811bf6b1f77.jpeg\" alt=\"\" class=\"wp-image-237\" style=\"aspect-ratio:4/3;object-fit:cover\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:25:\"_dotcom_imported_services\";a:3:{s:4:\"slug\";s:25:\"_dotcom_imported_services\";s:5:\"title\";s:25:\"_dotcom_imported_services\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:82:\"https://wooblockpatterns.wpcomstaging.com/2024/07/02/two-column-service-offerings/\";s:13:\"modified_date\";s:19:\"2024-07-02 11:21:24\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:9;a:18:{s:2:\"ID\";i:382;s:7:\"site_id\";i:231214916;s:5:\"title\";s:43:\"Three columns of headings, images and links\";s:4:\"name\";s:42:\"three-columns-of-headings-images-and-links\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:5867:\"<!-- wp:group {\"metadata\":{\"name\":\"Services\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|30\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"fontSize\":\"medium\"} -->\n<h3 class=\"wp-block-heading has-medium-font-size\" style=\"font-style:normal;font-weight:700\">Furniture customization</h3>\n<!-- /wp:heading -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"bottom\":\"4px\"}}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"padding-bottom:4px\"><!-- wp:image {\"id\":63,\"aspectRatio\":\"3/2\",\"scale\":\"cover\",\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/06/table-wood-house-chair-floor-window-1-1024x683.jpg\" alt=\"\" class=\"wp-image-63\" style=\"aspect-ratio:3/2;object-fit:cover\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph -->\n<p>Create bespoke pieces that perfectly fit your space and style with our customization services. From fabric selection to dimensions, we\'ll bring your vision to life.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#\">Get started</a></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"fontSize\":\"medium\"} -->\n<h3 class=\"wp-block-heading has-medium-font-size\" style=\"font-style:normal;font-weight:700\">Interior design</h3>\n<!-- /wp:heading -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"bottom\":\"4px\"}}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"padding-bottom:4px\"><!-- wp:image {\"id\":304,\"aspectRatio\":\"3/2\",\"scale\":\"cover\",\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/07/54f708281f82831c082a1cf9d7b7faa9-1-683x1024.jpeg\" alt=\"\" class=\"wp-image-304\" style=\"aspect-ratio:3/2;object-fit:cover\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph -->\n<p>Our expert designers will work with you to transform your space into a stylish and functional haven that reflects your personal taste and lifestyle.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#\">Get started</a></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"fontSize\":\"medium\"} -->\n<h3 class=\"wp-block-heading has-medium-font-size\" style=\"font-style:normal;font-weight:700\">Delivery and assembly</h3>\n<!-- /wp:heading -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"bottom\":\"4px\"}}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"padding-bottom:4px\"><!-- wp:image {\"id\":354,\"aspectRatio\":\"3/2\",\"scale\":\"cover\",\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/07/ade23ce2024ccbbb42f7f7d6dfe5f2e0-1-684x1024.jpeg\" alt=\"\" class=\"wp-image-354\" style=\"aspect-ratio:3/2;object-fit:cover\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph -->\n<p>Enjoy hassle-free shopping with our delivery and assembly services. Let our team handle the heavy lifting and installation, so you can relax in your newly furnished home.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#\">Get started</a></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:25:\"_dotcom_imported_services\";a:3:{s:4:\"slug\";s:25:\"_dotcom_imported_services\";s:5:\"title\";s:25:\"_dotcom_imported_services\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:96:\"https://wooblockpatterns.wpcomstaging.com/2024/07/02/three-columns-of-headings-images-and-links/\";s:13:\"modified_date\";s:19:\"2024-07-04 13:40:28\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:10;a:18:{s:2:\"ID\";i:380;s:7:\"site_id\";i:231214916;s:5:\"title\";s:21:\"Grid of text features\";s:4:\"name\";s:21:\"grid-of-text-features\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:5163:\"<!-- wp:group {\"metadata\":{\"name\":\"Services\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"alignfull\",\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|40\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"className\":\"is-service-name\",\"fontSize\":\"medium\"} -->\n<h3 class=\"wp-block-heading is-service-name has-medium-font-size\" style=\"font-style:normal;font-weight:700\">Personal styling</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"is-service-description\"} -->\n<p class=\"is-service-description\">Work one-on-one with our expert stylists to curate outfits that align with your unique taste, body type, and lifestyle.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"className\":\"is-service-name\",\"fontSize\":\"medium\"} -->\n<h3 class=\"wp-block-heading is-service-name has-medium-font-size\" style=\"font-style:normal;font-weight:700\">Alterations and tailoring</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"is-service-description\"} -->\n<p class=\"is-service-description\">Ensure the perfect fit. From hemming to resizing, our skilled tailors will tailor your garments<br>to perfection.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"var:preset|spacing|20\"} -->\n<div style=\"height:var(--wp--preset--spacing--20)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|40\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"className\":\"is-service-name\",\"fontSize\":\"medium\"} -->\n<h3 class=\"wp-block-heading is-service-name has-medium-font-size\" style=\"font-style:normal;font-weight:700\">Wardrobe refresh</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"is-service-description\"} -->\n<p class=\"is-service-description\">Revamp your wardrobe. Our stylists will help you declutter, organize, and update your closet with fresh new pieces.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"className\":\"is-service-name\",\"fontSize\":\"medium\"} -->\n<h3 class=\"wp-block-heading is-service-name has-medium-font-size\" style=\"font-style:normal;font-weight:700\">Virtual Shopping</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"is-service-description\"} -->\n<p class=\"is-service-description\">Can\'t make it to our store? Our virtual shopping assistance service allows you to shop from the comfort of your home.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:25:\"_dotcom_imported_services\";a:3:{s:4:\"slug\";s:25:\"_dotcom_imported_services\";s:5:\"title\";s:25:\"_dotcom_imported_services\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:75:\"https://wooblockpatterns.wpcomstaging.com/2024/07/02/grid-of-text-features/\";s:13:\"modified_date\";s:19:\"2024-07-04 13:41:09\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:11;a:18:{s:2:\"ID\";i:378;s:7:\"site_id\";i:231214916;s:5:\"title\";s:28:\"Headings left, content right\";s:4:\"name\";s:27:\"headings-left-content-right\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:6543:\"<!-- wp:group {\"metadata\":{\"name\":\"Services\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"alignfull\",\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"metadata\":{\"name\":\"Content\"},\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":\"var:preset|spacing|40\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"40%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:40%\"><!-- wp:heading {\"fontSize\":\"large\"} -->\n<h2 class=\"wp-block-heading has-large-font-size\">Installation</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>Enjoy peace of mind with our professional installation and setup services. From home theater systems to smart home devices, we\'ll ensure everything is installed and configured correctly for optimal performance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#\">Discover more</a></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:separator {\"align\":\"wide\",\"style\":{\"color\":{\"background\":\"#4747471a\"}},\"className\":\"is-style-wide\"} -->\n<hr class=\"wp-block-separator alignwide has-text-color has-alpha-channel-opacity has-background is-style-wide\" style=\"background-color:#4747471a;color:#4747471a\"/>\n<!-- /wp:separator -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"40%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:40%\"><!-- wp:heading {\"fontSize\":\"large\"} -->\n<h2 class=\"wp-block-heading has-large-font-size\">Maintenance</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>Extend the lifespan of your electronics with our repair and maintenance services. Our skilled technicians will diagnose and fix any issues to keep your devices running smoothly.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#\">Discover more</a></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:separator {\"align\":\"wide\",\"style\":{\"color\":{\"background\":\"#4747471a\"}},\"className\":\"is-style-wide\"} -->\n<hr class=\"wp-block-separator alignwide has-text-color has-alpha-channel-opacity has-background is-style-wide\" style=\"background-color:#4747471a;color:#4747471a\"/>\n<!-- /wp:separator -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"40%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:40%\"><!-- wp:heading {\"fontSize\":\"large\"} -->\n<h2 class=\"wp-block-heading has-large-font-size\">Trade-in</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>Upgrade to the latest technology while being environmentally conscious with our trade-in and recycling programs. Trade in your old devices for credit towards new purchases or recycle them responsibly with us.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#\">Discover more</a></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:separator {\"align\":\"wide\",\"style\":{\"color\":{\"background\":\"#4747471a\"}},\"className\":\"is-style-wide\"} -->\n<hr class=\"wp-block-separator alignwide has-text-color has-alpha-channel-opacity has-background is-style-wide\" style=\"background-color:#4747471a;color:#4747471a\"/>\n<!-- /wp:separator -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"40%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:40%\"><!-- wp:heading {\"fontSize\":\"large\"} -->\n<h2 class=\"wp-block-heading has-large-font-size\">Support</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>Get the most out of your electronics with our tech support and training services. Our experts will help troubleshoot any issues and provide guidance on using your devices effectively.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#\">Discover more</a></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:separator {\"align\":\"wide\",\"style\":{\"color\":{\"background\":\"#4747471a\"}},\"className\":\"is-style-wide\"} -->\n<hr class=\"wp-block-separator alignwide has-text-color has-alpha-channel-opacity has-background is-style-wide\" style=\"background-color:#4747471a;color:#4747471a\"/>\n<!-- /wp:separator --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:25:\"_dotcom_imported_services\";a:3:{s:4:\"slug\";s:25:\"_dotcom_imported_services\";s:5:\"title\";s:25:\"_dotcom_imported_services\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:81:\"https://wooblockpatterns.wpcomstaging.com/2024/07/02/headings-left-content-right/\";s:13:\"modified_date\";s:19:\"2024-07-02 11:17:53\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:12;a:18:{s:2:\"ID\";i:376;s:7:\"site_id\";i:231214916;s:5:\"title\";s:30:\"Heading with six text sections\";s:4:\"name\";s:30:\"heading-with-six-text-sections\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:6956:\"<!-- wp:group {\"metadata\":{\"name\":\"Services\"},\"align\":\"full\",\"className\":\"alignfull\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"100%\"}},\"fontSize\":\"large\"} -->\n<h2 class=\"wp-block-heading has-large-font-size\">Our services</h2>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"var:preset|spacing|10\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}}} -->\n<div style=\"margin-top:0;margin-bottom:0;height:var(--wp--preset--spacing--10)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"blockGap\":\"0\"}}} -->\n<div class=\"wp-block-column\"><!-- wp:group {\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"fontSize\":\"medium\"} -->\n<h3 class=\"wp-block-heading has-medium-font-size\" style=\"font-style:normal;font-weight:700\">Furniture customization</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Create bespoke pieces that perfectly fit your space and style with our customization services. We\'ll bring your vision to life.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"56px\"} -->\n<div style=\"height:56px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"fontSize\":\"medium\"} -->\n<h3 class=\"wp-block-heading has-medium-font-size\" style=\"font-style:normal;font-weight:700\">Home staging</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Planning to sell your home? Our home staging service will help maximize its appeal to potential buyers, showcasing its full potential.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"56px\"} -->\n<div style=\"height:56px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"fontSize\":\"medium\"} -->\n<h3 class=\"wp-block-heading has-medium-font-size\" style=\"font-style:normal;font-weight:700\">Interior design consultation</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Our expert designers will work with you to transform your space into a stylish and functional haven that reflects your personal taste and lifestyle.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"blockGap\":\"0\"}}} -->\n<div class=\"wp-block-column\"><!-- wp:group {\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"fontSize\":\"medium\"} -->\n<h3 class=\"wp-block-heading has-medium-font-size\" style=\"font-style:normal;font-weight:700\">Furniture restoration</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Restore the beauty of your beloved furniture pieces. From refinishing to repairs, we\'ll breathe new life into your cherished items.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"56px\"} -->\n<div style=\"height:56px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"fontSize\":\"medium\"} -->\n<h3 class=\"wp-block-heading has-medium-font-size\" style=\"font-style:normal;font-weight:700\">Delivery and assembly</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Enjoy hassle-free shopping with our delivery and assembly services. Let our team handle the heavy lifting and installation, so you can relax.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"56px\"} -->\n<div style=\"height:56px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"fontSize\":\"medium\"} -->\n<h3 class=\"wp-block-heading has-medium-font-size\" style=\"font-style:normal;font-weight:700\">Virtual design consultation</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Can\'t make it to our showroom? No problem! Our virtual design consultation service allows you to get expert advice from the comfort of your home.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:25:\"_dotcom_imported_services\";a:3:{s:4:\"slug\";s:25:\"_dotcom_imported_services\";s:5:\"title\";s:25:\"_dotcom_imported_services\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:84:\"https://wooblockpatterns.wpcomstaging.com/2024/07/02/heading-with-six-text-sections/\";s:13:\"modified_date\";s:19:\"2024-07-24 14:34:50\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:13;a:18:{s:2:\"ID\";i:371;s:7:\"site_id\";i:231214916;s:5:\"title\";s:32:\"Three column boxed pricing table\";s:4:\"name\";s:26:\"three-column-pricing-table\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:9435:\"<!-- wp:group {\"metadata\":{\"name\":\"Pricing Table\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"alignfull\",\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"is-pricing-title\"} -->\n<h2 class=\"wp-block-heading has-text-align-center is-pricing-title\">Pricing</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"var:preset|spacing|30\"} -->\n<div style=\"height:var(--wp--preset--spacing--30)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"style\":{\"color\":{\"background\":\"#00000012\"},\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\"}}}} -->\n<div class=\"wp-block-column has-background\" style=\"background-color:#00000012;padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"level\":3,\"className\":\"is-pricing-tier-name\",\"fontSize\":\"large\"} -->\n<h3 class=\"wp-block-heading is-pricing-tier-name has-large-font-size\">Free</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"is-pricing-tier-price\",\"fontSize\":\"small\"} -->\n<p class=\"is-pricing-tier-price has-small-font-size\">$0.00/month</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"width\":100,\"className\":\"is-style-outline\"} --><div class=\"wp-block-button has-custom-width wp-block-button__width-100 is-style-outline\"><a class=\"wp-block-button__link wp-element-button\">Get Started</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"4px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"className\":\"is-pricing-tier-service-checked\"} -->\n<p class=\"is-pricing-tier-service-checked\"><strong>✓</strong> Video lectures</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"is-pricing-tier-service-checked\"} -->\n<p class=\"is-pricing-tier-service-checked\"><strong>✓</strong> Interactive quizzes</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"is-pricing-tier-service-checked\"} -->\n<p class=\"is-pricing-tier-service-checked\"><strong>✓</strong> Downloadable resources</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"is-pricing-tier-service-checked\"} -->\n<p class=\"is-pricing-tier-service-checked\"><strong>✓</strong> Certificate of completion</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"color\":{\"background\":\"#00000012\"},\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\"}}}} -->\n<div class=\"wp-block-column has-background\" style=\"background-color:#00000012;padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"metadata\":{\"name\":\"Pricing Title\"},\"style\":{\"spacing\":{\"blockGap\":\"0\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"level\":3,\"className\":\"is-pricing-tier-name\",\"fontSize\":\"large\"} -->\n<h3 class=\"wp-block-heading is-pricing-tier-name has-large-font-size\">Basic</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"is-pricing-tier-price\",\"fontSize\":\"small\"} -->\n<p class=\"is-pricing-tier-price has-small-font-size\">$39.00/month</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"width\":100,\"className\":\"is-style-fill\"} --><div class=\"wp-block-button has-custom-width wp-block-button__width-100 is-style-fill\"><a class=\"wp-block-button__link wp-element-button\">Get Started</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"4px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"className\":\"is-pricing-tier-service-checked\"} -->\n<p class=\"is-pricing-tier-service-checked\"><strong>✓</strong> Everything included in Free</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"is-pricing-tier-service-checked\"} -->\n<p class=\"is-pricing-tier-service-checked\"><strong>✓</strong> Personalized feedback</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"is-pricing-tier-service-checked\"} -->\n<p class=\"is-pricing-tier-service-checked\"><strong>✓</strong> Live Q&amp;A sessions</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"is-pricing-tier-service-checked\"} -->\n<p class=\"is-pricing-tier-service-checked\"><strong>✓</strong> Online community forums</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"color\":{\"background\":\"#00000012\"},\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\"}}}} -->\n<div class=\"wp-block-column has-background\" style=\"background-color:#00000012;padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"level\":3,\"className\":\"is-pricing-tier-name\",\"fontSize\":\"large\"} -->\n<h3 class=\"wp-block-heading is-pricing-tier-name has-large-font-size\">Premium</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"is-pricing-tier-price\",\"fontSize\":\"small\"} -->\n<p class=\"is-pricing-tier-price has-small-font-size\">$99.00/month</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"width\":100,\"className\":\"is-style-outline\"} --><div class=\"wp-block-button has-custom-width wp-block-button__width-100 is-style-outline\"><a class=\"wp-block-button__link wp-element-button\">Get Started</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"4px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"className\":\"is-pricing-tier-service-checked\"} -->\n<p class=\"is-pricing-tier-service-checked\"><strong>✓</strong> Everything included in Basic</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"is-pricing-tier-service-checked\"} -->\n<p class=\"is-pricing-tier-service-checked\"><strong>✓</strong> Premium support</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"is-pricing-tier-service-checked\"} -->\n<p class=\"is-pricing-tier-service-checked\"><strong>✓</strong> Coaching sessions</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"is-pricing-tier-service-checked\"} -->\n<p class=\"is-pricing-tier-service-checked\"><strong>✓</strong> Priority access to new content</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:25:\"_dotcom_imported_services\";a:3:{s:4:\"slug\";s:25:\"_dotcom_imported_services\";s:5:\"title\";s:25:\"_dotcom_imported_services\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:80:\"https://wooblockpatterns.wpcomstaging.com/2024/07/02/three-column-pricing-table/\";s:13:\"modified_date\";s:19:\"2024-07-02 11:47:39\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:14;a:18:{s:2:\"ID\";i:359;s:7:\"site_id\";i:231214916;s:5:\"title\";s:23:\"Two columns with images\";s:4:\"name\";s:23:\"two-columns-with-images\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:5295:\"<!-- wp:group {\"metadata\":{\"name\":\"Services\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"alignfull\",\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"var:preset|spacing|60\",\"left\":\"var:preset|spacing|30\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":368,\"aspectRatio\":\"4/3\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"color\":[]}} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/07/56b4ef6554bcb138de65c66f1ec092b9-2.jpeg\" alt=\"\" class=\"wp-image-368\" style=\"aspect-ratio:4/3;object-fit:cover\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"4px\"} -->\n<div style=\"height:4px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Trade-in and recycling</h3>\n<!-- /wp:heading --></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph -->\n<p>Upgrade to the latest technology while being environmentally conscious with our trade-in and recycling programs. Trade in your old devices for credit towards new purchases or recycle them responsibly.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"8px\"} -->\n<div style=\"height:8px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}}} -->\n<div class=\"wp-block-buttons\" style=\"margin-top:0;margin-bottom:0\"><!-- wp:button --><div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\">Get Started</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":222,\"aspectRatio\":\"4/3\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"color\":[]}} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/06/772d1d20f57861f0aa71dccda165b03e.jpeg\" alt=\"\" class=\"wp-image-222\" style=\"aspect-ratio:4/3;object-fit:cover\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"4px\"} -->\n<div style=\"height:4px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Extended warranty</h3>\n<!-- /wp:heading --></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph -->\n<p>Protect your investment with our extended warranty and protection plans. Get peace of mind knowing your electronics are covered against unexpected damage and defects.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"8px\"} -->\n<div style=\"height:8px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}}} -->\n<div class=\"wp-block-buttons\" style=\"margin-top:0;margin-bottom:0\"><!-- wp:button --><div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\">Get Started</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:25:\"_dotcom_imported_services\";a:3:{s:4:\"slug\";s:25:\"_dotcom_imported_services\";s:5:\"title\";s:25:\"_dotcom_imported_services\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:77:\"https://wooblockpatterns.wpcomstaging.com/2024/07/02/two-columns-with-images/\";s:13:\"modified_date\";s:19:\"2024-07-04 13:21:17\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:15;a:18:{s:2:\"ID\";i:357;s:7:\"site_id\";i:231214916;s:5:\"title\";s:31:\"Heading with four text sections\";s:4:\"name\";s:31:\"heading-with-four-text-sections\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:5530:\"<!-- wp:group {\"metadata\":{\"name\":\"Services\"},\"align\":\"full\",\"className\":\"alignfull\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"100%\"}},\"fontSize\":\"large\"} -->\n<h2 class=\"wp-block-heading has-large-font-size\">Services</h2>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"var:preset|spacing|10\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}}} -->\n<div style=\"margin-top:0;margin-bottom:0;height:var(--wp--preset--spacing--10)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"blockGap\":\"0\"}}} -->\n<div class=\"wp-block-column\"><!-- wp:group {\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"fontSize\":\"medium\"} -->\n<h3 class=\"wp-block-heading has-medium-font-size\" style=\"font-style:normal;font-weight:700\">Personal styling</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Work one-on-one with our expert stylists to curate outfits that align with your unique taste, body type, and lifestyle.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"56px\"} -->\n<div style=\"height:56px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"fontSize\":\"medium\"} -->\n<h3 class=\"wp-block-heading has-medium-font-size\" style=\"font-style:normal;font-weight:700\">Wardrobe refresh</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Revamp your wardrobe. Our stylists will help you declutter, organize, and update your closet with fresh new pieces.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"blockGap\":\"0\"}}} -->\n<div class=\"wp-block-column\"><!-- wp:group {\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"fontSize\":\"medium\"} -->\n<h3 class=\"wp-block-heading has-medium-font-size\" style=\"font-style:normal;font-weight:700\">Alterations and tailoring</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Ensure the perfect fit. From hemming to resizing, our skilled tailors will tailor your garments to perfection.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"56px\"} -->\n<div style=\"height:56px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"fontSize\":\"medium\"} -->\n<h3 class=\"wp-block-heading has-medium-font-size\" style=\"font-style:normal;font-weight:700\">Virtual Shopping</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Can\'t make it to our store? Our virtual shopping assistance service allows you to shop from the comfort of your home.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:25:\"_dotcom_imported_services\";a:3:{s:4:\"slug\";s:25:\"_dotcom_imported_services\";s:5:\"title\";s:25:\"_dotcom_imported_services\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:85:\"https://wooblockpatterns.wpcomstaging.com/2024/07/02/heading-with-four-text-sections/\";s:13:\"modified_date\";s:19:\"2024-07-24 14:35:12\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:16;a:18:{s:2:\"ID\";i:348;s:7:\"site_id\";i:231214916;s:5:\"title\";s:34:\"Personal bio with a contact button\";s:4:\"name\";s:34:\"personal-bio-with-a-contact-button\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:3768:\"<!-- wp:group {\"metadata\":{\"name\":\"Intro\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"alignfull\",\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"id\":107,\"width\":\"175px\",\"height\":\"auto\",\"aspectRatio\":\"1\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"align\":\"center\",\"style\":{\"border\":{\"radius\":\"100em\"}}} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized has-custom-border\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/06/portrait.png\" alt=\"\" class=\"wp-image-107\" style=\"border-radius:100em;aspect-ratio:1;object-fit:cover;width:175px;height:auto\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"8px\"} -->\n<div style=\"height:8px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"constrained\",\"wideSize\":\"460px\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:heading {\"textAlign\":\"center\",\"textColor\":\"ast-global-color-2\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-ast-global-color-2-color has-text-color\">Marianne R.</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">“My journey into fashion began with a passion for sustainability and a love for artisanal crafts. Since childhood, I’ve been captivated by the intricate handiwork of global artisans and the stories behind their creations.” </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"orientation\":\"horizontal\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button --><div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\">About me</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_about\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_about\";s:5:\"title\";s:22:\"_dotcom_imported_about\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:88:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/personal-bio-with-a-contact-button/\";s:13:\"modified_date\";s:19:\"2024-07-01 18:33:10\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:17;a:18:{s:2:\"ID\";i:345;s:7:\"site_id\";i:231214916;s:5:\"title\";s:66:\"Circular avatar on left header on right with sub-header and button\";s:4:\"name\";s:66:\"circular-avatar-on-left-header-on-right-with-sub-header-and-button\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:3642:\"<!-- wp:group {\"metadata\":{\"name\":\"About\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"verticalAlignment\":\"center\",\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"left\":\"var:preset|spacing|50\"}}}} -->\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center\"><!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:image {\"id\":346,\"aspectRatio\":\"1\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"border\":{\"radius\":\"100em\"}}} -->\n<figure class=\"wp-block-image size-full has-custom-border\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/07/8d605dc291be9f49e7e9afe9b8d0f5c7-1.png\" alt=\"\" class=\"wp-image-346\" style=\"border-radius:100em;aspect-ratio:1;object-fit:cover\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:heading {\"align\":\"wide\"} -->\n<h2 class=\"wp-block-heading alignwide\">Sustainable fashion</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We believe that fashion should be as kind to the planet as it is to your wardrobe. With a commitment to sustainability and environmental responsibility, we curate a collection of chic and eco-friendly clothing.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button --><div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\">Get in touch</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_about\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_about\";s:5:\"title\";s:22:\"_dotcom_imported_about\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:120:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/circular-avatar-on-left-header-on-right-with-sub-header-and-button/\";s:13:\"modified_date\";s:19:\"2024-07-04 14:53:07\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:18;a:18:{s:2:\"ID\";i:343;s:7:\"site_id\";i:231214916;s:5:\"title\";s:57:\"Circular image on right with large border header on right\";s:4:\"name\";s:57:\"circular-image-on-right-with-large-border-header-on-right\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:3587:\"<!-- wp:group {\"metadata\":{\"name\":\"Intro\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"verticalAlignment\":\"center\",\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"left\":\"var:preset|spacing|50\"}}}} -->\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center\"><!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:heading {\"fontSize\":\"small\"} -->\n<h2 class=\"wp-block-heading has-small-font-size\">About us</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"align\":\"wide\"} -->\n<h2 class=\"wp-block-heading alignwide\">Sustainable fashion</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We believe that fashion should be as kind to the planet as it is to your wardrobe. With a commitment to sustainability and environmental responsibility, we curate a collection of chic and eco-friendly clothing.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:image {\"id\":262,\"aspectRatio\":\"1\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"border\":{\"radius\":\"100em\",\"width\":\"0px\",\"style\":\"none\"}}} -->\n<figure class=\"wp-block-image size-full has-custom-border\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/07/96bbcf9839d875a42e9aaaada8132a33.jpeg\" alt=\"\" class=\"wp-image-262\" style=\"border-style:none;border-width:0px;border-radius:100em;aspect-ratio:1;object-fit:cover\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_about\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_about\";s:5:\"title\";s:22:\"_dotcom_imported_about\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:111:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/circular-image-on-right-with-large-border-header-on-right/\";s:13:\"modified_date\";s:19:\"2024-07-04 14:46:29\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:19;a:18:{s:2:\"ID\";i:341;s:7:\"site_id\";i:231214916;s:5:\"title\";s:33:\"Header with a paragraph and stats\";s:4:\"name\";s:33:\"header-with-a-paragraph-and-stats\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:4298:\"<!-- wp:group {\"metadata\":{\"name\":\"Numbers\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"align\":\"wide\",\"fontSize\":\"xx-large\"} -->\n<h2 class=\"wp-block-heading alignwide has-text-align-left has-xx-large-font-size\">Create anything</h2>\n<!-- /wp:heading -->\n\n<!-- wp:group {\"align\":\"wide\",\"style\":{\"spacing\":{\"padding\":{\"right\":\"0\",\"left\":\"0\"}}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignwide\" style=\"padding-right:0;padding-left:0\"><!-- wp:spacer {\"height\":\"4px\"} -->\n<div style=\"height:4px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"75%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:75%\"><!-- wp:paragraph {\"fontSize\":\"medium\"} -->\n<p class=\"has-medium-font-size\">Welcome to a world of limitless possibilities, where the journey is as exhilarating as the destination, and where every moment is an opportunity to make your mark on the canvas of existence.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"var:preset|spacing|30\"} -->\n<div style=\"height:var(--wp--preset--spacing--30)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"fontSize\":\"x-large\"} -->\n<h3 class=\"wp-block-heading has-x-large-font-size\">14M</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Satisfied clients</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"fontSize\":\"x-large\"} -->\n<h3 class=\"wp-block-heading has-x-large-font-size\">Eco</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We are thinking about the planet</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"fontSize\":\"x-large\"} -->\n<h3 class=\"wp-block-heading has-x-large-font-size\">120</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Options</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_about\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_about\";s:5:\"title\";s:22:\"_dotcom_imported_about\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:87:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/header-with-a-paragraph-and-stats/\";s:13:\"modified_date\";s:19:\"2024-07-04 14:49:56\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:20;a:18:{s:2:\"ID\";i:338;s:7:\"site_id\";i:231214916;s:5:\"title\";s:12:\"Team members\";s:4:\"name\";s:12:\"team-members\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:11484:\"<!-- wp:group {\"metadata\":{\"name\":\"Team\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"center\"} -->\n<h2 class=\"wp-block-heading has-text-align-center\">Our Team</h2>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"metadata\":{\"name\":\"Team members\"},\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|30\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":336,\"aspectRatio\":\"1\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"color\":[]}} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/07/fab46ce87d847342cbe7410cdaa90732.jpeg\" alt=\"\" class=\"wp-image-336\" style=\"aspect-ratio:1;object-fit:cover\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"4px\"} -->\n<div style=\"height:4px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"9px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"fontSize\":\"medium\"} -->\n<h3 class=\"wp-block-heading has-medium-font-size\" style=\"font-style:normal;font-weight:700\">Emily Hayes</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Interior designer</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph -->\n<p>Emily brings over a decade of experience in interior design, specializing in creating unique and personalized spaces that reflect each client\'s personality and lifestyle.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":335,\"aspectRatio\":\"1\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"color\":[]}} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/07/f53d7341f90e86c42ed293bb386b5db4.jpeg\" alt=\"\" class=\"wp-image-335\" style=\"aspect-ratio:1;object-fit:cover\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"4px\"} -->\n<div style=\"height:4px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"9px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"fontSize\":\"medium\"} -->\n<h3 class=\"wp-block-heading has-medium-font-size\" style=\"font-style:normal;font-weight:700\">Mark Johnson</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Furniture designer</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph -->\n<p>With a keen eye for detail and craftsmanship, Mark designs furniture pieces that blend style with functionality, ensuring every piece enhances the beauty of any space.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":331,\"aspectRatio\":\"1\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"color\":[]}} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/07/885b26a44a4ca21844c169eca79dcf8c.jpeg\" alt=\"\" class=\"wp-image-331\" style=\"aspect-ratio:1;object-fit:cover\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"4px\"} -->\n<div style=\"height:4px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"9px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"fontSize\":\"medium\"} -->\n<h3 class=\"wp-block-heading has-medium-font-size\" style=\"font-style:normal;font-weight:700\">Alex Parker</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Customer support specialist</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph -->\n<p>Alex is committed to ensuring our customers have a seamless experience, providing attentive support and assistance with any inquiries or concerns they may have.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"metadata\":{\"name\":\"Team members\"},\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|30\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":330,\"aspectRatio\":\"1\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"color\":[]}} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/07/44df767ec48f3788eb836df942c12ca5.jpeg\" alt=\"\" class=\"wp-image-330\" style=\"aspect-ratio:1;object-fit:cover\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"4px\"} -->\n<div style=\"height:4px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"9px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"fontSize\":\"medium\"} -->\n<h3 class=\"wp-block-heading has-medium-font-size\" style=\"font-style:normal;font-weight:700\">David Carter</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Project manager</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph -->\n<p>David oversees every project with precision and efficiency, ensuring that timelines are met and that every detail is executed flawlessly from concept to completion.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":332,\"aspectRatio\":\"1\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"color\":[]}} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/07/b804be09af895837548af933fdea519f.jpeg\" alt=\"\" class=\"wp-image-332\" style=\"aspect-ratio:1;object-fit:cover\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"4px\"} -->\n<div style=\"height:4px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"9px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"fontSize\":\"medium\"} -->\n<h3 class=\"wp-block-heading has-medium-font-size\" style=\"font-style:normal;font-weight:700\">Sophia Lee</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Sales manager</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph -->\n<p>Sophia is dedicated to providing exceptional service to our customers, offering guidance to help them find the perfect furniture and décor pieces for their homes.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":339,\"aspectRatio\":\"1\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"color\":[]}} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/07/05414bb38f179cc7c6969cbaf1b152e1-1.jpeg\" alt=\"\" class=\"wp-image-339\" style=\"aspect-ratio:1;object-fit:cover\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"4px\"} -->\n<div style=\"height:4px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"9px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"fontSize\":\"medium\"} -->\n<h3 class=\"wp-block-heading has-medium-font-size\" style=\"font-style:normal;font-weight:700\">Emma Reynolds</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Marketing coordinator</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph -->\n<p>Emma\'s creative flair and passion for design shine through in her work, as she curates captivating content and engaging campaigns to showcase our products and services.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_about\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_about\";s:5:\"title\";s:22:\"_dotcom_imported_about\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:66:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/team-members/\";s:13:\"modified_date\";s:19:\"2024-07-04 14:42:27\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:21;a:18:{s:2:\"ID\";i:334;s:7:\"site_id\";i:231214916;s:5:\"title\";s:8:\"Our team\";s:4:\"name\";s:8:\"our-team\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:10193:\"<!-- wp:group {\"metadata\":{\"name\":\"Team\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"40%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:40%\"><!-- wp:heading {\"textAlign\":\"left\"} -->\n<h2 class=\"wp-block-heading has-text-align-left\">Our Team</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"30%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:30%\"><!-- wp:image {\"id\":336,\"aspectRatio\":\"1\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"color\":[]}} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/07/fab46ce87d847342cbe7410cdaa90732.jpeg\" alt=\"\" class=\"wp-image-336\" style=\"aspect-ratio:1;object-fit:cover\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"4px\"} -->\n<div style=\"height:4px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"9px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"fontSize\":\"medium\"} -->\n<h3 class=\"wp-block-heading has-medium-font-size\" style=\"font-style:normal;font-weight:700\">Emily Hayes</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Interior designer</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph -->\n<p>Emily brings over a decade of experience in interior design, specializing in creating unique and personalized spaces that reflect each client\'s personality and lifestyle. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:social-links {\"iconColor\":\"theme-4\",\"iconColorValue\":\"#242b2d\",\"size\":\"has-small-icon-size\",\"className\":\"is-style-logos-only\"} -->\n<ul class=\"wp-block-social-links has-small-icon-size has-icon-color is-style-logos-only\"><!-- wp:social-link {\"url\":\"#\",\"service\":\"facebook\"} /-->\n\n<!-- wp:social-link {\"url\":\"#\",\"service\":\"x\"} /-->\n\n<!-- wp:social-link {\"url\":\"#\",\"service\":\"linkedin\"} /--></ul>\n<!-- /wp:social-links --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"30%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:30%\"><!-- wp:image {\"id\":335,\"aspectRatio\":\"1\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"color\":[]}} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/07/f53d7341f90e86c42ed293bb386b5db4.jpeg\" alt=\"\" class=\"wp-image-335\" style=\"aspect-ratio:1;object-fit:cover\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"4px\"} -->\n<div style=\"height:4px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"9px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"fontSize\":\"medium\"} -->\n<h3 class=\"wp-block-heading has-medium-font-size\" style=\"font-style:normal;font-weight:700\">Mark Johnson</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Furniture designer</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph -->\n<p>With a keen eye for detail and craftsmanship, Mark designs furniture pieces that blend style with functionality, ensuring every piece enhances the beauty of any space.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:social-links {\"iconColor\":\"theme-4\",\"iconColorValue\":\"#242b2d\",\"size\":\"has-small-icon-size\",\"className\":\"is-style-logos-only\"} -->\n<ul class=\"wp-block-social-links has-small-icon-size has-icon-color is-style-logos-only\"><!-- wp:social-link {\"url\":\"#\",\"service\":\"facebook\"} /-->\n\n<!-- wp:social-link {\"url\":\"#\",\"service\":\"x\"} /-->\n\n<!-- wp:social-link {\"url\":\"#\",\"service\":\"linkedin\"} /--></ul>\n<!-- /wp:social-links --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"40%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:40%\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"30%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:30%\"><!-- wp:image {\"id\":331,\"aspectRatio\":\"1\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"color\":[]}} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/07/885b26a44a4ca21844c169eca79dcf8c.jpeg\" alt=\"\" class=\"wp-image-331\" style=\"aspect-ratio:1;object-fit:cover\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"4px\"} -->\n<div style=\"height:4px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"9px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"fontSize\":\"medium\"} -->\n<h3 class=\"wp-block-heading has-medium-font-size\" style=\"font-style:normal;font-weight:700\">Alex Parker</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Customer support specialist</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph -->\n<p>Alex is committed to ensuring our customers have a seamless experience, providing attentive support and assistance with any inquiries or concerns they may have.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:social-links {\"iconColor\":\"theme-4\",\"iconColorValue\":\"#242b2d\",\"size\":\"has-small-icon-size\",\"className\":\"is-style-logos-only\"} -->\n<ul class=\"wp-block-social-links has-small-icon-size has-icon-color is-style-logos-only\"><!-- wp:social-link {\"url\":\"#\",\"service\":\"facebook\"} /-->\n\n<!-- wp:social-link {\"url\":\"#\",\"service\":\"x\"} /-->\n\n<!-- wp:social-link {\"url\":\"#\",\"service\":\"linkedin\"} /--></ul>\n<!-- /wp:social-links --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"30%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:30%\"><!-- wp:image {\"id\":332,\"aspectRatio\":\"1\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"color\":[]}} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/07/b804be09af895837548af933fdea519f.jpeg\" alt=\"\" class=\"wp-image-332\" style=\"aspect-ratio:1;object-fit:cover\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"4px\"} -->\n<div style=\"height:4px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"9px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"fontSize\":\"medium\"} -->\n<h3 class=\"wp-block-heading has-medium-font-size\" style=\"font-style:normal;font-weight:700\">Sophia Lee</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Sales manager</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph -->\n<p>Sophia is dedicated to providing exceptional service to our customers, offering guidance to help them find the perfect furniture and décor pieces for their homes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:social-links {\"iconColor\":\"theme-4\",\"iconColorValue\":\"#242b2d\",\"size\":\"has-small-icon-size\",\"className\":\"is-style-logos-only\"} -->\n<ul class=\"wp-block-social-links has-small-icon-size has-icon-color is-style-logos-only\"><!-- wp:social-link {\"url\":\"#\",\"service\":\"facebook\"} /-->\n\n<!-- wp:social-link {\"url\":\"#\",\"service\":\"x\"} /-->\n\n<!-- wp:social-link {\"url\":\"#\",\"service\":\"linkedin\"} /--></ul>\n<!-- /wp:social-links --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_about\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_about\";s:5:\"title\";s:22:\"_dotcom_imported_about\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:62:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/our-team/\";s:13:\"modified_date\";s:19:\"2024-07-04 14:43:04\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:22;a:18:{s:2:\"ID\";i:329;s:7:\"site_id\";i:231214916;s:5:\"title\";s:4:\"Team\";s:4:\"name\";s:4:\"team\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:4867:\"<!-- wp:group {\"metadata\":{\"name\":\"Team\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"left\":\"var:preset|spacing|20\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"50%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:50%\"><!-- wp:heading {\"textAlign\":\"left\"} -->\n<h2 class=\"wp-block-heading has-text-align-left\">Meet the passionate team behind our brand</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"30%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:30%\"><!-- wp:image {\"id\":332,\"aspectRatio\":\"1\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"color\":[]},\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-full is-style-default\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/07/b804be09af895837548af933fdea519f.jpeg\" alt=\"\" class=\"wp-image-332\" style=\"aspect-ratio:1;object-fit:cover\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"30%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:30%\"><!-- wp:image {\"id\":331,\"aspectRatio\":\"1\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"color\":[]}} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/07/885b26a44a4ca21844c169eca79dcf8c.jpeg\" alt=\"\" class=\"wp-image-331\" style=\"aspect-ratio:1;object-fit:cover\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"left\":\"var:preset|spacing|20\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"50%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:50%\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"30%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:30%\"><!-- wp:image {\"id\":330,\"aspectRatio\":\"1\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"color\":[]}} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/07/44df767ec48f3788eb836df942c12ca5.jpeg\" alt=\"\" class=\"wp-image-330\" style=\"aspect-ratio:1;object-fit:cover\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"30%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:30%\"><!-- wp:image {\"id\":325,\"aspectRatio\":\"1\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"color\":[]}} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/07/cf19a5d21c3eeb7afa7c346b32af3ece-1.jpeg\" alt=\"\" class=\"wp-image-325\" style=\"aspect-ratio:1;object-fit:cover\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_about\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_about\";s:5:\"title\";s:22:\"_dotcom_imported_about\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:58:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/team/\";s:13:\"modified_date\";s:19:\"2024-07-01 16:45:42\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:23;a:18:{s:2:\"ID\";i:327;s:7:\"site_id\";i:231214916;s:5:\"title\";s:5:\"About\";s:4:\"name\";s:5:\"about\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:6609:\"<!-- wp:group {\"metadata\":{\"name\":\"Intro\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"verticalAlignment\":\"center\",\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"left\":\"var:preset|spacing|50\"}}}} -->\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center\"><!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"40%\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:40%\"><!-- wp:image {\"id\":462,\"aspectRatio\":\"3/4\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/07/girls-in-the-hills-3.jpg\" alt=\"\" class=\"wp-image-462\" style=\"aspect-ratio:3/4;object-fit:cover\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"80%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:80%\"><!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Embrace<br>sustainable fashion</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We believe that fashion should be as kind to the planet as it is to your wardrobe. With a commitment to sustainability and environmental responsibility, we curate a collection of chic and eco-friendly clothing.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"stretch\"} -->\n<div class=\"wp-block-column is-vertically-aligned-stretch\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"24px\"} -->\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"isStackedOnMobile\":false,\"fontSize\":\"medium\"} -->\n<div class=\"wp-block-columns is-not-stacked-on-mobile has-medium-font-size\"><!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"0\",\"bottom\":\"0\",\"left\":\"var:preset|spacing|20\",\"right\":\"var:preset|spacing|20\"},\"blockGap\":\"4px\"},\"border\":{\"left\":{\"color\":\"#1e1e1e40\",\"width\":\"1px\"},\"top\":[],\"right\":[],\"bottom\":[]}}} -->\n<div class=\"wp-block-column\" style=\"border-left-color:#1e1e1e40;border-left-width:1px;padding-top:0;padding-right:var(--wp--preset--spacing--20);padding-bottom:0;padding-left:var(--wp--preset--spacing--20)\"><!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">100%</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Eco-friendly packaging</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"0\",\"bottom\":\"0\",\"left\":\"var:preset|spacing|20\",\"right\":\"var:preset|spacing|20\"},\"blockGap\":\"4px\"},\"border\":{\"left\":{\"color\":\"#1e1e1e40\",\"width\":\"1px\"},\"top\":[],\"right\":[],\"bottom\":[]}}} -->\n<div class=\"wp-block-column\" style=\"border-left-color:#1e1e1e40;border-left-width:1px;padding-top:0;padding-right:var(--wp--preset--spacing--20);padding-bottom:0;padding-left:var(--wp--preset--spacing--20)\"><!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">75%</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Recycled materials</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"8px\"} -->\n<div style=\"height:8px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"isStackedOnMobile\":false,\"fontSize\":\"medium\"} -->\n<div class=\"wp-block-columns is-not-stacked-on-mobile has-medium-font-size\"><!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"0\",\"bottom\":\"0\",\"left\":\"var:preset|spacing|20\",\"right\":\"var:preset|spacing|20\"},\"blockGap\":\"4px\"},\"border\":{\"left\":{\"color\":\"#1e1e1e40\",\"width\":\"1px\"},\"top\":[],\"right\":[],\"bottom\":[]}}} -->\n<div class=\"wp-block-column\" style=\"border-left-color:#1e1e1e40;border-left-width:1px;padding-top:0;padding-right:var(--wp--preset--spacing--20);padding-bottom:0;padding-left:var(--wp--preset--spacing--20)\"><!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">80%</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Less water usage</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"0\",\"bottom\":\"0\",\"left\":\"var:preset|spacing|20\",\"right\":\"var:preset|spacing|20\"},\"blockGap\":\"4px\"},\"border\":{\"left\":{\"color\":\"#1e1e1e40\",\"width\":\"1px\"},\"top\":[],\"right\":[],\"bottom\":[]}}} -->\n<div class=\"wp-block-column\" style=\"border-left-color:#1e1e1e40;border-left-width:1px;padding-top:0;padding-right:var(--wp--preset--spacing--20);padding-bottom:0;padding-left:var(--wp--preset--spacing--20)\"><!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">100%</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Organic cotton</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"9px\"} -->\n<div style=\"height:9px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_about\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_about\";s:5:\"title\";s:22:\"_dotcom_imported_about\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:59:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/about/\";s:13:\"modified_date\";s:19:\"2024-07-18 12:31:42\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:24;a:18:{s:2:\"ID\";i:322;s:7:\"site_id\";i:231214916;s:5:\"title\";s:29:\"About with heading and images\";s:4:\"name\";s:29:\"about-with-heading-and-images\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:4896:\"<!-- wp:group {\"metadata\":{\"name\":\"About\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"align\":\"wide\"} -->\n<h2 class=\"wp-block-heading alignwide\">Chic and eco-friendly fashion, thoughtfully crafted with organic fabrics and recycled materials.</h2>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"var:preset|spacing|30\"} -->\n<div style=\"height:var(--wp--preset--spacing--30)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":\"var:preset|spacing|20\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"space-between\",\"verticalAlignment\":\"top\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:image {\"id\":323,\"aspectRatio\":\"3/4\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/07/f3b0161d47e4ada886ef5f69d0637ddd.jpeg\" alt=\"\" class=\"wp-image-323\" style=\"aspect-ratio:3/4;object-fit:cover\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:group {\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"stretch\"}} -->\n<div class=\"wp-block-group\"><!-- wp:spacer {\"height\":\"0px\",\"style\":{\"layout\":{\"flexSize\":\"5vw\",\"selfStretch\":\"fixed\"}}} -->\n<div style=\"height:0px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"id\":75,\"aspectRatio\":\"3/4\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/06/man-person-winter-photography-statue-coat.png\" alt=\"\" class=\"wp-image-75\" style=\"aspect-ratio:3/4;object-fit:cover\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:group -->\n\n<!-- wp:image {\"id\":325,\"aspectRatio\":\"3/4\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/07/cf19a5d21c3eeb7afa7c346b32af3ece-1.jpeg\" alt=\"\" class=\"wp-image-325\" style=\"aspect-ratio:3/4;object-fit:cover\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:group {\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"stretch\"}} -->\n<div class=\"wp-block-group\"><!-- wp:spacer {\"height\":\"0px\",\"style\":{\"layout\":{\"flexSize\":\"5vw\",\"selfStretch\":\"fixed\"}}} -->\n<div style=\"height:0px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"id\":324,\"aspectRatio\":\"3/4\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/07/f554dfb297c4824916eb82ee70a3d942.jpeg\" alt=\"\" class=\"wp-image-324\" style=\"aspect-ratio:3/4;object-fit:cover\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_about\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_about\";s:5:\"title\";s:22:\"_dotcom_imported_about\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:83:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/about-with-heading-and-images/\";s:13:\"modified_date\";s:19:\"2024-07-01 16:38:19\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:25;a:18:{s:2:\"ID\";i:319;s:7:\"site_id\";i:231214916;s:5:\"title\";s:22:\"List with descriptions\";s:4:\"name\";s:4:\"data\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:10266:\"<!-- wp:group {\"metadata\":{\"name\":\"Data list\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"metadata\":{\"name\":\"Data entry\"},\"align\":\"wide\",\"style\":{\"border\":{\"top\":{\"color\":\"var:preset|color|theme-4\",\"width\":\"1px\"},\"right\":[],\"bottom\":[],\"left\":[]},\"spacing\":{\"padding\":{\"right\":\"0\",\"left\":\"0\"}}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignwide\" style=\"border-top-color:var(--wp--preset--color--theme-4);border-top-width:1px;padding-right:0;padding-left:0\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"verticalAlignment\":\"center\",\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"var:preset|spacing|30\"}}}} -->\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center\"><!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:heading {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|theme-4\"}}}},\"textColor\":\"theme-4\"} -->\n<h2 class=\"wp-block-heading has-theme-4-color has-text-color has-link-color\">18 years</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"40%\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:40%\"><!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">We have been in the market for 18 years and proved our customers our experience matters.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"metadata\":{\"name\":\"Data entry\"},\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"var:preset|spacing|20\",\"left\":\"var:preset|spacing|20\"}},\"border\":{\"top\":{\"width\":\"1px\"}}}} -->\n<div class=\"wp-block-group alignwide\" style=\"border-top-width:1px\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"verticalAlignment\":\"center\",\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center\"><!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:heading {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|theme-4\"}}}},\"textColor\":\"theme-4\"} -->\n<h2 class=\"wp-block-heading has-theme-4-color has-text-color has-link-color\">54 countries</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"40%\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:40%\"><!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">We are worldwide with market participation in more than 54 countries in 5 continents.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"metadata\":{\"name\":\"Data entry\"},\"align\":\"wide\",\"style\":{\"border\":{\"top\":{\"width\":\"1px\"}},\"spacing\":{\"padding\":{\"right\":\"0\",\"left\":\"0\"}}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignwide\" style=\"border-top-width:1px;padding-right:0;padding-left:0\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"verticalAlignment\":\"center\",\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"var:preset|spacing|30\"}}}} -->\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center\"><!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:heading {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|theme-4\"}}}},\"textColor\":\"theme-4\"} -->\n<h2 class=\"wp-block-heading has-theme-4-color has-text-color has-link-color\">98K users</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"40%\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:40%\"><!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">We have almost 100k active users with a high level of engagement and adoption.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"metadata\":{\"name\":\"Data entry\"},\"align\":\"wide\",\"style\":{\"border\":{\"top\":{\"width\":\"1px\"}}}} -->\n<div class=\"wp-block-group alignwide\" style=\"border-top-width:1px\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"verticalAlignment\":\"center\",\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center\"><!-- wp:column {\"verticalAlignment\":\"center\",\"style\":{\"color\":[],\"border\":{\"radius\":\"0px\"}}} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"border-radius:0px\"><!-- wp:group {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"verticalAlignment\":\"top\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|theme-4\"}}}},\"textColor\":\"theme-4\"} -->\n<h2 class=\"wp-block-heading has-theme-4-color has-text-color has-link-color\">$12M revenue</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"40%\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:40%\"><!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">We closed 2023 over $12M dollars in revenue which position us as leader in our industry</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_about\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_about\";s:5:\"title\";s:22:\"_dotcom_imported_about\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:58:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/data/\";s:13:\"modified_date\";s:19:\"2024-07-04 14:33:26\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:26;a:18:{s:2:\"ID\";i:317;s:7:\"site_id\";i:231214916;s:5:\"title\";s:28:\"Tall content with image left\";s:4:\"name\";s:28:\"tall-content-with-image-left\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:4073:\"<!-- wp:group {\"metadata\":{\"name\":\"Intro\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"left\":\"var:preset|spacing|40\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":273,\"aspectRatio\":\"3/4\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/07/44024b9b9c88dd50f5cf11f5c31311c5-1.jpeg\" alt=\"\" class=\"wp-image-273\" style=\"aspect-ratio:3/4;object-fit:cover\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"right\":\"0\"},\"blockGap\":\"var:preset|spacing|30\"},\"dimensions\":{\"minHeight\":\"100%\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"verticalAlignment\":\"space-between\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"min-height:100%;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\"><!-- wp:group {\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"fontSize\":\"x-large\"} -->\n<h2 class=\"wp-block-heading has-x-large-font-size\">Committed to a greener lifestyle</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"layout\":{\"type\":\"constrained\",\"contentSize\":\"400px\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph -->\n<p>Our passion is crafting mindful moments with locally sourced, organic, and sustainable products. We\'re more than a store; we\'re your path to a community-driven, eco-friendly lifestyle that embraces premium quality.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button --><div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\">Meet us</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_about\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_about\";s:5:\"title\";s:22:\"_dotcom_imported_about\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:82:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/tall-content-with-image-left/\";s:13:\"modified_date\";s:19:\"2024-07-04 14:06:24\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:27;a:18:{s:2:\"ID\";i:315;s:7:\"site_id\";i:231214916;s:5:\"title\";s:24:\"Two column text sections\";s:4:\"name\";s:24:\"two-column-text-sections\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:3953:\"<!-- wp:group {\"metadata\":{\"name\":\"About\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"left\":\"var:preset|spacing|50\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"className\":\"is-service-name\",\"fontSize\":\"medium\"} -->\n<h3 class=\"wp-block-heading is-service-name has-medium-font-size\" style=\"font-style:normal;font-weight:700\">Commitment to sustainability</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"is-service-description\"} -->\n<p class=\"is-service-description\">Ethical sourcing is at the forefront of everything we do. We\'re proud to champion sustainable fashion by prioritizing the use of organic and recycled materials in our clothing and accessories. By supporting fair trade initiatives and maintaining transparent supply chains, we ensure that every piece upholds our commitment to ethical practices.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"className\":\"is-service-name\",\"fontSize\":\"medium\"} -->\n<h3 class=\"wp-block-heading is-service-name has-medium-font-size\" style=\"font-style:normal;font-weight:700\">Quality and Craftsmanship</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"is-service-description\"} -->\n<p class=\"is-service-description\">We are dedicated to crafting timeless pieces that stand the test of time. Each garment and accessory in our collection is a testament to our unwavering commitment to quality and craftsmanship. We take pride in using only the finest materials and employing meticulous attention to detail in every step of the creation process.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_about\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_about\";s:5:\"title\";s:22:\"_dotcom_imported_about\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:78:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/two-column-text-sections/\";s:13:\"modified_date\";s:19:\"2024-07-04 14:16:22\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:28;a:18:{s:2:\"ID\";i:313;s:7:\"site_id\";i:231214916;s:5:\"title\";s:36:\"Content with grid of images on right\";s:4:\"name\";s:36:\"content-with-grid-of-images-on-right\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:5453:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"left\":\"var:preset|spacing|40\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"25%\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-column\" style=\"flex-basis:25%\"><!-- wp:spacer {\"height\":\"var:preset|spacing|10\"} -->\n<div style=\"height:var(--wp--preset--spacing--10)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"fontSize\":\"large\"} -->\n<h2 class=\"wp-block-heading has-large-font-size\">Crafting beauty</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We are dedicated to the art of craftsmanship, where each vase is meticulously crafted to perfection. Our passion for detail and commitment to quality shines through in every piece, resulting in vases that are not just functional, but true works of art.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button --><div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\">More about us</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"left\":\"16px\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"style\":{\"spacing\":{\"blockGap\":\"18px\"}}} -->\n<div class=\"wp-block-column\"><!-- wp:image {\"lightbox\":{\"enabled\":true},\"id\":266,\"aspectRatio\":\"1\",\"scale\":\"cover\",\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-large is-style-default\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/07/a0c4b80dc701de6a1143de003da3ef95-1-768x1024.jpeg\" alt=\"\" class=\"wp-image-266\" style=\"aspect-ratio:1;object-fit:cover\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"lightbox\":{\"enabled\":true},\"id\":88,\"aspectRatio\":\"1\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-full is-style-default\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/06/white-vase-decoration-pattern-ceramic-lamp.jpg\" alt=\"\" class=\"wp-image-88\" style=\"aspect-ratio:1;object-fit:cover\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"blockGap\":\"18px\"}}} -->\n<div class=\"wp-block-column\"><!-- wp:image {\"lightbox\":{\"enabled\":true},\"id\":62,\"aspectRatio\":\"1\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-full is-style-default\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/06/plant-white-leaf-flower-vase-green.jpg\" alt=\"\" class=\"wp-image-62\" style=\"aspect-ratio:1;object-fit:cover\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"lightbox\":{\"enabled\":true},\"id\":69,\"aspectRatio\":\"1\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-full is-style-default\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/06/tree-branch-plant-wood-leaf-flower.jpg\" alt=\"\" class=\"wp-image-69\" style=\"aspect-ratio:1;object-fit:cover\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_about\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_about\";s:5:\"title\";s:22:\"_dotcom_imported_about\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:90:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/content-with-grid-of-images-on-right/\";s:13:\"modified_date\";s:19:\"2024-07-18 12:15:00\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:29;a:18:{s:2:\"ID\";i:311;s:7:\"site_id\";i:231214916;s:5:\"title\";s:26:\"Pull left, fullwidth image\";s:4:\"name\";s:25:\"pull-left-fullwidth-image\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:3495:\"<!-- wp:group {\"metadata\":{\"name\":\"Intro\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"40%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:40%\"><!-- wp:paragraph -->\n<p>We believe that your home should be a reflection of your unique style and personality. Our curated collection of home essentials and decor pieces is designed to help you create a space that feels truly like you. From cozy furnishings to stylish accents, we offer everything you need to turn your house into a home.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"60%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:60%\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"id\":63,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"align\":\"full\"} -->\n<figure class=\"wp-block-image alignfull size-full\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/06/table-wood-house-chair-floor-window-1.jpg\" alt=\"\" class=\"wp-image-63\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_about\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_about\";s:5:\"title\";s:22:\"_dotcom_imported_about\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:79:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/pull-left-fullwidth-image/\";s:13:\"modified_date\";s:19:\"2024-07-01 16:24:14\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:30;a:18:{s:2:\"ID\";i:309;s:7:\"site_id\";i:231214916;s:5:\"title\";s:21:\"Right-aligned content\";s:4:\"name\";s:21:\"right-aligned-content\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:3470:\"<!-- wp:group {\"metadata\":{\"name\":\"Intro\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"40%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:40%\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"\"} -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>We are dedicated to crafting timeless pieces that stand the test of time. Each garment and accessory in our collection is a testament to our unwavering commitment to quality and craftsmanship. We take pride in using only the finest materials and employing meticulous attention to detail in every step of the creation process. From the stitching to the finishing touches, our products are thoughtfully designed to exude durability, longevity, and timeless elegance. When you shop with us, you can trust that you\'re investing in items that are not only stylish but also built to last, ensuring years of enjoyment and wear. We believe in fashion that not only looks good but also does good for the planet and its people. That\'s why we\'re dedicated to reducing the environmental and social impact of the clothing and accessories industry. When you shop with us, you can feel confident knowing that your purchase supports a more sustainable and ethical approach to fashion, making a positive difference in the world.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_about\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_about\";s:5:\"title\";s:22:\"_dotcom_imported_about\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:75:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/right-aligned-content/\";s:13:\"modified_date\";s:19:\"2024-07-01 16:23:24\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:31;a:18:{s:2:\"ID\";i:306;s:7:\"site_id\";i:231214916;s:5:\"title\";s:35:\"Large heading with content on right\";s:4:\"name\";s:39:\"large-heading-with-content-on-the-right\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:3440:\"<!-- wp:group {\"metadata\":{\"name\":\"About\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"verticalAlignment\":\"top\",\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide are-vertically-aligned-top\"><!-- wp:column {\"verticalAlignment\":\"top\",\"width\":\"50%\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-column is-vertically-aligned-top\" style=\"flex-basis:50%\"><!-- wp:heading {\"fontSize\":\"xx-large\"} -->\n<h2 class=\"wp-block-heading has-xx-large-font-size\">Create anything</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"top\",\"width\":\"50%\"} -->\n<div class=\"wp-block-column is-vertically-aligned-top\" style=\"flex-basis:50%\"><!-- wp:paragraph -->\n<p>Welcome to a world of limitless possibilities, where the journey is as exhilarating as the destination, and where every moment is an opportunity to make your mark on the canvas of existence. The only limit is the extent of your imagination.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button --><div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\">Get Started</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:spacer {\"height\":\"var:preset|spacing|10\"} -->\n<div style=\"height:var(--wp--preset--spacing--10)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_about\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_about\";s:5:\"title\";s:22:\"_dotcom_imported_about\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:93:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/large-heading-with-content-on-the-right/\";s:13:\"modified_date\";s:19:\"2024-07-01 16:22:38\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:32;a:18:{s:2:\"ID\";i:303;s:7:\"site_id\";i:231214916;s:5:\"title\";s:29:\"Tall content with image right\";s:4:\"name\";s:29:\"tall-content-with-image-right\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:4003:\"<!-- wp:group {\"metadata\":{\"name\":\"Intro\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"right\":\"0\"},\"blockGap\":\"var:preset|spacing|30\"},\"dimensions\":{\"minHeight\":\"100%\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"verticalAlignment\":\"space-between\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"min-height:100%;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\"><!-- wp:heading {\"fontSize\":\"x-large\"} -->\n<h2 class=\"wp-block-heading has-x-large-font-size\">Discover a world of possibilities</h2>\n<!-- /wp:heading -->\n\n<!-- wp:group {\"layout\":{\"type\":\"constrained\",\"contentSize\":\"400px\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph -->\n<p>We believe that your home should be a reflection of your unique style and personality. Our curated collection of home essentials and decor pieces is designed to help you create a space that feels truly like you. From cozy furnishings to stylish accents, we offer everything you need to turn your house into a home.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button --><div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\">Meet us</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":304,\"aspectRatio\":\"3/4\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/07/54f708281f82831c082a1cf9d7b7faa9-1.jpeg\" alt=\"\" class=\"wp-image-304\" style=\"aspect-ratio:3/4;object-fit:cover\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_about\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_about\";s:5:\"title\";s:22:\"_dotcom_imported_about\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:83:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/tall-content-with-image-right/\";s:13:\"modified_date\";s:19:\"2024-07-01 15:58:41\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:33;a:18:{s:2:\"ID\";i:301;s:7:\"site_id\";i:231214916;s:5:\"title\";s:24:\"Spread right, heavy text\";s:4:\"name\";s:23:\"spread-right-heavy-text\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:3972:\"<!-- wp:group {\"metadata\":{\"name\":\"Intro\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"verticalAlignment\":\"center\",\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"left\":\"var:preset|spacing|40\"}}}} -->\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center\"><!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"40%\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:40%\"><!-- wp:image {\"id\":69,\"aspectRatio\":\"2/3\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/06/tree-branch-plant-wood-leaf-flower.jpg\" alt=\"\" class=\"wp-image-69\" style=\"aspect-ratio:2/3;object-fit:cover\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"50%\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:50%\"><!-- wp:paragraph {\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\">About us</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Step into a world of botanical beauty</h2>\n<!-- /wp:heading -->\n\n<!-- wp:group {\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph -->\n<p>With a passion for all things leafy, we offer a diverse collection of plants, from lush foliage to exotic blooms, to bring the beauty of nature into your home. Whether you\'re a seasoned plant parent or just beginning your green journey, our friendly team is here to help you find the perfect plant companion.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button --><div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\">More about us</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_about\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_about\";s:5:\"title\";s:22:\"_dotcom_imported_about\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:77:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/spread-right-heavy-text/\";s:13:\"modified_date\";s:19:\"2024-07-18 12:07:51\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:34;a:18:{s:2:\"ID\";i:299;s:7:\"site_id\";i:231214916;s:5:\"title\";s:28:\"Heading with button and text\";s:4:\"name\";s:28:\"heading-with-button-and-text\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:3802:\"<!-- wp:group {\"metadata\":{\"name\":\"About\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"verticalAlignment\":\"center\",\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center\"><!-- wp:column {\"width\":\"50%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:50%\"><!-- wp:heading {\"textAlign\":\"left\",\"fontSize\":\"x-large\"} -->\n<h2 class=\"wp-block-heading has-text-align-left has-x-large-font-size\">Discover a world of possibilities</h2>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"8px\"} -->\n<div style=\"height:8px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button --><div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\">Get Started</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"50%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:50%\"><!-- wp:paragraph {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"70%\"}}} -->\n<p>We believe that your home should be a reflection of your unique style and personality. Our curated collection of home essentials and decor pieces is designed to help you create a space that feels truly like you.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"70%\"}}} -->\n<p>Our expert designers will work closely with you to bring your vision to life. From furniture selection to color schemes, we\'ll provide professional advice and guidance every step of the way to help you achieve the perfect balance of comfort, functionality, and aesthetic appeal.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_about\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_about\";s:5:\"title\";s:22:\"_dotcom_imported_about\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:82:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/heading-with-button-and-text/\";s:13:\"modified_date\";s:19:\"2024-07-01 15:56:19\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:35;a:18:{s:2:\"ID\";i:297;s:7:\"site_id\";i:231214916;s:5:\"title\";s:20:\"Left-aligned content\";s:4:\"name\";s:22:\"left-aligned-content-2\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:2881:\"<!-- wp:group {\"metadata\":{\"name\":\"Intro\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"var:preset|spacing|20\"} -->\n<div style=\"height:var(--wp--preset--spacing--20)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"left\":\"var:preset|spacing|40\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"\"} -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>As we navigate the intricate tapestry of existence, we are constantly presented with choices, each a potential pathway to something extraordinary. This is a world where creativity knows no bounds, where the curious mind finds solace, and where the fearless heart discovers uncharted territories. It is a place where the pursuit of knowledge, the embrace of change, and the willingness to take risks are not mere options but essential ingredients for a life well-lived.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Welcome to a world of limitless possibilities, where the journey is as exhilarating as the destination, and where every moment is an opportunity to make your mark on the canvas of existence. The only limit is the extent of your imagination.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"40%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:40%\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"var:preset|spacing|20\"} -->\n<div style=\"height:var(--wp--preset--spacing--20)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_about\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_about\";s:5:\"title\";s:22:\"_dotcom_imported_about\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:76:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/left-aligned-content-2/\";s:13:\"modified_date\";s:19:\"2024-07-01 15:54:34\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:36;a:18:{s:2:\"ID\";i:294;s:7:\"site_id\";i:231214916;s:5:\"title\";s:35:\"Fullwidth image, content pull right\";s:4:\"name\";s:34:\"fullwidth-image-content-pull-right\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:3068:\"<!-- wp:group {\"metadata\":{\"name\":\"Intro\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:image {\"id\":295,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"align\":\"full\"} -->\n<figure class=\"wp-block-image alignfull size-full\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/07/90731e071ce29177b55e394f139c6400.jpeg\" alt=\"\" class=\"wp-image-295\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"var:preset|spacing|10\"} -->\n<div style=\"height:var(--wp--preset--spacing--10)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"padding\":{\"right\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|40\",\"top\":\"var:preset|spacing|10\",\"bottom\":\"var:preset|spacing|10\"}}}} -->\n<div class=\"wp-block-columns alignwide\" style=\"padding-top:var(--wp--preset--spacing--10);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--10);padding-left:var(--wp--preset--spacing--40)\"><!-- wp:column {\"width\":\"60%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:60%\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"40%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:40%\"><!-- wp:paragraph -->\n<p>Welcome to your premier destination for premium headphones and audio accessories. Dive into our curated collection, where cutting-edge technology meets sleek design to deliver an unparalleled listening experience. From wireless wonders to noise-canceling marvels, we have the perfect pair to suit every lifestyle and preference.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"var:preset|spacing|10\"} -->\n<div style=\"height:var(--wp--preset--spacing--10)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_about\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_about\";s:5:\"title\";s:22:\"_dotcom_imported_about\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:88:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/fullwidth-image-content-pull-right/\";s:13:\"modified_date\";s:19:\"2024-07-01 15:53:49\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:37;a:18:{s:2:\"ID\";i:291;s:7:\"site_id\";i:231214916;s:5:\"title\";s:25:\"Content left, image right\";s:4:\"name\";s:24:\"content-left-image-right\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:3411:\"<!-- wp:group {\"metadata\":{\"name\":\"About\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"var:preset|spacing|20\"} -->\n<div style=\"height:var(--wp--preset--spacing--20)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"verticalAlignment\":\"center\",\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"left\":\"var:preset|spacing|40\"}}}} -->\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center\"><!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"50%\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:50%\"><!-- wp:heading {\"level\":4,\"fontSize\":\"small\"} -->\n<h4 class=\"wp-block-heading has-small-font-size\">About us</h4>\n<!-- /wp:heading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Elevate your space</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We specialize in curating exquisite home decor pieces that add an element of elegance to every space. With a keen eye for detail and a commitment to quality, we strive to bring sophistication and charm into your home.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button --><div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\">More about us</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"40%\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:40%\"><!-- wp:image {\"id\":292,\"width\":\"521px\",\"height\":\"auto\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/07/b7754a09d649f4fe4ae390a60df7b556.jpeg\" alt=\"\" class=\"wp-image-292\" style=\"object-fit:cover;width:521px;height:auto\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"var:preset|spacing|20\"} -->\n<div style=\"height:var(--wp--preset--spacing--20)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_about\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_about\";s:5:\"title\";s:22:\"_dotcom_imported_about\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:78:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/content-left-image-right/\";s:13:\"modified_date\";s:19:\"2024-07-18 12:15:40\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:38;a:18:{s:2:\"ID\";i:289;s:7:\"site_id\";i:231214916;s:5:\"title\";s:27:\"Centered heading and button\";s:4:\"name\";s:27:\"centered-heading-and-button\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:2670:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"fontSize\":\"x-large\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-x-large-font-size\">Discover a world of possibilities</h2>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"8px\"} -->\n<div style=\"height:8px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button --><div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\">Get Started</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_about\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_about\";s:5:\"title\";s:22:\"_dotcom_imported_about\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:81:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/centered-heading-and-button/\";s:13:\"modified_date\";s:19:\"2024-07-01 15:49:09\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:39;a:18:{s:2:\"ID\";i:287;s:7:\"site_id\";i:231214916;s:5:\"title\";s:42:\"Heading with content and large image below\";s:4:\"name\";s:42:\"heading-with-content-and-large-image-below\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:4076:\"<!-- wp:group {\"metadata\":{\"name\":\"About\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"verticalAlignment\":\"center\",\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"left\":\"var:preset|spacing|60\"}}}} -->\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center\"><!-- wp:column {\"width\":\"50%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:50%\"><!-- wp:heading {\"textAlign\":\"left\",\"fontSize\":\"x-large\"} -->\n<h2 class=\"wp-block-heading has-text-align-left has-x-large-font-size\">Embrace<br>sustainable fashion</h2>\n<!-- /wp:heading -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button --><div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\">Discover more</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"50%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:50%\"><!-- wp:paragraph {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"70%\"}}} -->\n<p>We believe that fashion should be as kind to the planet as it is to your wardrobe. With a commitment to sustainability and environmental responsibility, we curate a collection of chic and eco-friendly clothing.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"70%\"}}} -->\n<p>From organic fabrics to recycled materials, every piece in our collection is thoughtfully crafted with the planet in mind.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"var:preset|spacing|30\"} -->\n<div style=\"height:var(--wp--preset--spacing--30)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"id\":75,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"align\":\"wide\"} -->\n<figure class=\"wp-block-image alignwide size-full\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/06/man-person-winter-photography-statue-coat.png\" alt=\"\" class=\"wp-image-75\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_about\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_about\";s:5:\"title\";s:22:\"_dotcom_imported_about\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:96:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/heading-with-content-and-large-image-below/\";s:13:\"modified_date\";s:19:\"2024-07-01 15:48:30\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:40;a:18:{s:2:\"ID\";i:284;s:7:\"site_id\";i:231214916;s:5:\"title\";s:30:\"Heading with two media columns\";s:4:\"name\";s:30:\"heading-with-two-media-columns\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:4400:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"left\":\"var:preset|spacing|30\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group {\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"10px\"}}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\" style=\"margin-bottom:10px\"><!-- wp:image {\"id\":285,\"aspectRatio\":\"4/3\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"color\":[]}} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/07/e7e21c3e64f977311b55a59d66aec660.jpeg\" alt=\"\" class=\"wp-image-285\" style=\"aspect-ratio:4/3;object-fit:cover\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:group -->\n\n<!-- wp:heading {\"level\":3,\"fontSize\":\"large\"} -->\n<h3 class=\"wp-block-heading has-large-font-size\">Commitment to sustainability</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At the heart of our mission is a commitment to sustainability. We prioritize environmentally friendly practices by sourcing locally grown produce, minimizing packaging waste, and championing sustainable farming methods.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group {\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"10px\"}}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\" style=\"margin-bottom:10px\"><!-- wp:image {\"id\":273,\"aspectRatio\":\"4/3\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"color\":[]}} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/07/44024b9b9c88dd50f5cf11f5c31311c5-1.jpeg\" alt=\"\" class=\"wp-image-273\" style=\"aspect-ratio:4/3;object-fit:cover\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:group -->\n\n<!-- wp:heading {\"level\":3,\"fontSize\":\"large\"} -->\n<h3 class=\"wp-block-heading has-large-font-size\">Quality and freshness</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Every step of our process, from meticulous ingredient selection to adhering to stringent standards, reflects our dedication to quality. From the initial harvest to the finished product, we uphold uncompromising standards of freshness and flavor.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_about\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_about\";s:5:\"title\";s:22:\"_dotcom_imported_about\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:84:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/heading-with-two-media-columns/\";s:13:\"modified_date\";s:19:\"2024-07-01 15:47:28\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:41;a:18:{s:2:\"ID\";i:282;s:7:\"site_id\";i:231214916;s:5:\"title\";s:27:\"Three columns with features\";s:4:\"name\";s:27:\"three-columns-with-features\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:4409:\"<!-- wp:group {\"metadata\":{\"name\":\"About\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"left\":\"var:preset|spacing|50\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"className\":\"is-service-name\",\"fontSize\":\"medium\"} -->\n<h3 class=\"wp-block-heading is-service-name has-medium-font-size\" style=\"font-style:normal;font-weight:700\">Commitment to sustainability</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"is-service-description\"} -->\n<p class=\"is-service-description\">At the heart of our mission is a commitment to sustainability. We prioritize environmentally friendly practices by sourcing locally grown produce, minimizing packaging waste, and championing sustainable farming methods.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"className\":\"is-service-name\",\"fontSize\":\"medium\"} -->\n<h3 class=\"wp-block-heading is-service-name has-medium-font-size\" style=\"font-style:normal;font-weight:700\">Quality and freshness</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"is-service-description\"} -->\n<p class=\"is-service-description\">At our core, we\'re dedicated to delivering excellence. We take great care in selecting only the finest organic fruits and vegetables, adhering to stringent standards to guarantee optimal freshness and flavor.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"className\":\"is-service-name\",\"fontSize\":\"medium\"} -->\n<h3 class=\"wp-block-heading is-service-name has-medium-font-size\" style=\"font-style:normal;font-weight:700\">Community engagement</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"is-service-description\"} -->\n<p class=\"is-service-description\">From fostering partnerships with local farmers to active participation in community events, we\'re deeply committed to supporting initiatives focused on food security, nutrition, and overall well-being.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_about\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_about\";s:5:\"title\";s:22:\"_dotcom_imported_about\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:81:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/three-columns-with-features/\";s:13:\"modified_date\";s:19:\"2024-07-04 14:17:24\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:42;a:18:{s:2:\"ID\";i:279;s:7:\"site_id\";i:231214916;s:5:\"title\";s:36:\"Four image grid, content on the left\";s:4:\"name\";s:35:\"four-image-grid-content-on-the-left\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:5282:\"<!-- wp:group {\"metadata\":{\"name\":\"About\"},\"align\":\"full\",\"className\":\"alignfull\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"left\":\"var:preset|spacing|40\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"8px\",\"left\":\"8px\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"style\":{\"spacing\":{\"blockGap\":\"8px\"}}} -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":266,\"aspectRatio\":\"1\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-full is-style-default\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/07/a0c4b80dc701de6a1143de003da3ef95-1.jpeg\" alt=\"\" class=\"wp-image-266\" style=\"aspect-ratio:1;object-fit:cover\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":88,\"aspectRatio\":\"1\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-full is-style-default\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/06/white-vase-decoration-pattern-ceramic-lamp.jpg\" alt=\"\" class=\"wp-image-88\" style=\"aspect-ratio:1;object-fit:cover\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"blockGap\":\"8px\"}}} -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":62,\"aspectRatio\":\"1\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-full is-style-default\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/06/plant-white-leaf-flower-vase-green.jpg\" alt=\"\" class=\"wp-image-62\" style=\"aspect-ratio:1;object-fit:cover\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":69,\"aspectRatio\":\"1\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-full is-style-default\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/06/tree-branch-plant-wood-leaf-flower.jpg\" alt=\"\" class=\"wp-image-69\" style=\"aspect-ratio:1;object-fit:cover\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"40%\",\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"left\",\"contentSize\":\"400px\"}} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:40%\"><!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Crafting beauty</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We are dedicated to the art of craftsmanship, where each vase is meticulously crafted to perfection. Our passion for detail and commitment to quality shines through in every piece, resulting in vases that are not just functional, but true works of art.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button --><div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\">More about us</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_about\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_about\";s:5:\"title\";s:22:\"_dotcom_imported_about\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:89:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/four-image-grid-content-on-the-left/\";s:13:\"modified_date\";s:19:\"2024-07-18 12:07:14\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:43;a:18:{s:2:\"ID\";i:277;s:7:\"site_id\";i:231214916;s:5:\"title\";s:30:\"Heading left and content right\";s:4:\"name\";s:30:\"heading-left-and-content-right\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:3526:\"<!-- wp:group {\"metadata\":{\"name\":\"About\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"alignfull\",\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"45%\",\"style\":{\"spacing\":{\"blockGap\":\"var:preset|spacing|20\"}}} -->\n<div class=\"wp-block-column\" style=\"flex-basis:45%\"><!-- wp:heading {\"fontSize\":\"small\"} -->\n<h2 class=\"wp-block-heading has-small-font-size\">Create anything</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Discover a world of possibilities</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"55%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:55%\"><!-- wp:spacer {\"height\":\"var:preset|spacing|20\"} -->\n<div style=\"height:var(--wp--preset--spacing--20)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>We believe that your home should be a reflection of your unique style and personality. Our curated collection of home essentials and decor pieces is designed to help you create a space that feels truly like you.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Our expert designers will work closely with you to bring your vision to life. From furniture selection to color schemes, we\'ll provide professional advice and guidance every step of the way to help you achieve the perfect balance of comfort, functionality, and aesthetic appeal.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_about\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_about\";s:5:\"title\";s:22:\"_dotcom_imported_about\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:84:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/heading-left-and-content-right/\";s:13:\"modified_date\";s:19:\"2024-07-01 15:41:54\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:44;a:18:{s:2:\"ID\";i:275;s:7:\"site_id\";i:231214916;s:5:\"title\";s:29:\"Content left with image right\";s:4:\"name\";s:29:\"content-left-with-image-right\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:3442:\"<!-- wp:group {\"metadata\":{\"name\":\"About\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"alignfull\",\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Where cycling dreams take flight</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Founded by avid cyclists with a passion for pedal-powered adventures, we\'re dedicated to providing top-quality bikes, accessories, and expert advice to riders of all levels.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button --><div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\">Discover more</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"bottom\"} -->\n<div class=\"wp-block-column is-vertically-aligned-bottom\"><!-- wp:image {\"lightbox\":{\"enabled\":false},\"id\":70,\"aspectRatio\":\"1\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/06/road-sport-vintage-wheel-retro-old.jpg\" alt=\"\" class=\"wp-image-70\" style=\"aspect-ratio:1;object-fit:cover\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_about\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_about\";s:5:\"title\";s:22:\"_dotcom_imported_about\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:83:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/content-left-with-image-right/\";s:13:\"modified_date\";s:19:\"2024-07-01 15:40:59\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:45;a:18:{s:2:\"ID\";i:269;s:7:\"site_id\";i:231214916;s:5:\"title\";s:40:\"Heading with image and two columns below\";s:4:\"name\";s:40:\"heading-with-image-and-two-columns-below\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:4873:\"<!-- wp:group {\"metadata\":{\"name\":\"Intro\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"alignfull\",\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:columns {\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}}} -->\n<div class=\"wp-block-columns\" style=\"margin-top:0;margin-bottom:0\"><!-- wp:column {\"width\":\"45%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:45%\"><!-- wp:heading {\"align\":\"wide\"} -->\n<h2 class=\"wp-block-heading alignwide\">Create anything</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"60%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:60%\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"id\":270,\"aspectRatio\":\"16/9\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/07/bc60cf21a37262b760535f0448a60acf-1.jpeg\" alt=\"\" class=\"wp-image-270\" style=\"aspect-ratio:16/9;object-fit:cover\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"var:preset|spacing|20\"} -->\n<div style=\"height:var(--wp--preset--spacing--20)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"verticalAlignment\":\"top\",\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide are-vertically-aligned-top\"><!-- wp:column {\"verticalAlignment\":\"top\",\"width\":\"\",\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"left\",\"contentSize\":\"420px\"}} -->\n<div class=\"wp-block-column is-vertically-aligned-top\"><!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Unleash your creativity at our pottery workshop</h3>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"top\",\"width\":\"40%\"} -->\n<div class=\"wp-block-column is-vertically-aligned-top\" style=\"flex-basis:40%\"><!-- wp:paragraph -->\n<p>Join us for an immersive pottery workshop where you can explore the art of shaping clay. Learn techniques from experienced artisans, unleash your creativity, and create your own unique pieces to take home. Perfect for all skill levels!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button --><div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\">Book now</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_intro\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_intro\";s:5:\"title\";s:22:\"_dotcom_imported_intro\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:94:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/heading-with-image-and-two-columns-below/\";s:13:\"modified_date\";s:19:\"2024-07-01 15:35:10\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:46;a:18:{s:2:\"ID\";i:264;s:7:\"site_id\";i:231214916;s:5:\"title\";s:31:\"Heading with three images below\";s:4:\"name\";s:31:\"heading-with-three-images-below\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:4771:\"<!-- wp:group {\"metadata\":{\"name\":\"Intro\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"verticalAlignment\":\"center\",\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|60\"}}}} -->\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center\"><!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"66.66%\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:66.66%\"><!-- wp:heading {\"align\":\"wide\"} -->\n<h2 class=\"wp-block-heading alignwide\">Beyond function: vases as works of art</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"33.33%\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:33.33%\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"70%\"}}} -->\n<p class=\"has-text-align-left\">We are dedicated to the art of craftsmanship, where each vase is meticulously crafted to perfection. Our passion for detail and commitment to quality shines through in every piece, resulting in vases that are not just functional, but true works of art.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"var:preset|spacing|20\"} -->\n<div style=\"height:var(--wp--preset--spacing--20)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":\"var:preset|spacing|30\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"verticalAlignment\":\"top\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:image {\"id\":266,\"aspectRatio\":\"2/3\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/07/a0c4b80dc701de6a1143de003da3ef95-1.jpeg\" alt=\"\" class=\"wp-image-266\" style=\"aspect-ratio:2/3;object-fit:cover\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":62,\"aspectRatio\":\"2/3\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/06/plant-white-leaf-flower-vase-green.jpg\" alt=\"\" class=\"wp-image-62\" style=\"aspect-ratio:2/3;object-fit:cover\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":69,\"aspectRatio\":\"2/3\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/06/tree-branch-plant-wood-leaf-flower.jpg\" alt=\"\" class=\"wp-image-69\" style=\"aspect-ratio:2/3;object-fit:cover\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_intro\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_intro\";s:5:\"title\";s:22:\"_dotcom_imported_intro\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:85:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/heading-with-three-images-below/\";s:13:\"modified_date\";s:19:\"2024-07-01 15:26:33\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:47;a:18:{s:2:\"ID\";i:261;s:7:\"site_id\";i:231214916;s:5:\"title\";s:52:\"Full-width cover with heading, paragraph, and button\";s:4:\"name\";s:50:\"full-width-cover-with-heading-paragraph-and-button\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:4084:\"<!-- wp:cover {\"url\":\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/07/96bbcf9839d875a42e9aaaada8132a33.jpeg\",\"id\":262,\"dimRatio\":50,\"overlayColor\":\"theme-5\",\"isUserOverlayColor\":true,\"minHeight\":558,\"minHeightUnit\":\"px\",\"style\":{\"spacing\":{\"padding\":{\"right\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|40\",\"top\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|40\"}}},\"className\":\"alignfull\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-cover alignfull\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--40);min-height:558px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-theme-5-background-color has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-262\" alt=\"\" src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/07/96bbcf9839d875a42e9aaaada8132a33.jpeg\" data-object-fit=\"cover\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"metadata\":{\"name\":\"Content\"},\"align\":\"wide\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"bottom\":\"0\"},\"padding\":{\"top\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"right\":\"0\"}}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group alignwide\" style=\"margin-top:0;margin-bottom:0;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"33.33%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.33%\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"stretch\",\"width\":\"66.67%\"} -->\n<div class=\"wp-block-column is-vertically-aligned-stretch\" style=\"flex-basis:66.67%\"><!-- wp:heading {\"textAlign\":\"center\",\"align\":\"wide\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"right\":\"0\"}},\"layout\":{\"selfStretch\":\"fit\",\"flexSize\":null}},\"className\":\"text-balance\",\"fontSize\":\"xx-large\"} -->\n<h2 class=\"wp-block-heading alignwide has-text-align-center text-balance has-xx-large-font-size\" style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:0\">Find your shade</h2>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"300px\"} -->\n<div style=\"height:300px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Explore our exclusive collection of sunglasses, crafted to elevate your look and safeguard your eyes. Find your perfect pair and see the world through a new lens.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"left\",\"orientation\":\"horizontal\"},\"style\":{\"layout\":{\"selfStretch\":\"fit\",\"flexSize\":null}}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"backgroundColor\":\"theme-1\",\"textColor\":\"theme-5\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|theme-5\"}}}}} --><div class=\"wp-block-button\"><a class=\"wp-block-button__link has-theme-5-color has-theme-1-background-color has-text-color has-background has-link-color wp-element-button\">Shop now</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"33.33%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.33%\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"verticalAlignment\":\"bottom\"} -->\n<div class=\"wp-block-columns are-vertically-aligned-bottom\"><!-- wp:column {\"verticalAlignment\":\"bottom\"} -->\n<div class=\"wp-block-column is-vertically-aligned-bottom\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"bottom\"} -->\n<div class=\"wp-block-column is-vertically-aligned-bottom\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"bottom\"} -->\n<div class=\"wp-block-column is-vertically-aligned-bottom\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_intro\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_intro\";s:5:\"title\";s:22:\"_dotcom_imported_intro\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:104:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/full-width-cover-with-heading-paragraph-and-button/\";s:13:\"modified_date\";s:19:\"2024-07-01 15:23:05\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:48;a:18:{s:2:\"ID\";i:259;s:7:\"site_id\";i:231214916;s:5:\"title\";s:30:\"Left-aligned header and button\";s:4:\"name\";s:30:\"left-aligned-header-and-button\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:2621:\"<!-- wp:group {\"metadata\":{\"name\":\"Intro\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Welcome to a world of limitless possibilities, where the journey is as exhilarating as the destination.</h2>\n<!-- /wp:heading -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button --><div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\">Learn More</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_intro\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_intro\";s:5:\"title\";s:22:\"_dotcom_imported_intro\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:84:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/left-aligned-header-and-button/\";s:13:\"modified_date\";s:19:\"2024-07-01 15:20:39\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:49;a:18:{s:2:\"ID\";i:254;s:7:\"site_id\";i:231214916;s:5:\"title\";s:20:\"Left-aligned content\";s:4:\"name\";s:20:\"left-aligned-content\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:3792:\"<!-- wp:group {\"metadata\":{\"name\":\"Intro\"},\"align\":\"full\",\"className\":\"alignfull\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"verticalAlignment\":\"center\",\"style\":{\"spacing\":{\"blockGap\":\"var:preset|spacing|30\"}}} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:heading {\"textAlign\":\"left\",\"fontSize\":\"xx-large\"} -->\n<h2 class=\"wp-block-heading has-text-align-left has-xx-large-font-size\">A world of possibilities</h2>\n<!-- /wp:heading -->\n\n<!-- wp:columns {\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"0\",\"left\":\"0\"}}}} -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"80%\",\"style\":{\"spacing\":{\"blockGap\":\"var:preset|spacing|30\"}}} -->\n<div class=\"wp-block-column\" style=\"flex-basis:80%\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"70%\"}}} -->\n<p class=\"has-text-align-left\">Welcome to a world of limitless possibilities, where the journey is as exhilarating as the destination, and where every moment is an opportunity to make your mark on the canvas of existence.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button --><div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\">Get Started</a></div><!-- /wp:button -->\n\n<!-- wp:button {\"className\":\"is-style-outline\"} --><div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link wp-element-button\">Learn more</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_intro\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_intro\";s:5:\"title\";s:22:\"_dotcom_imported_intro\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:74:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/left-aligned-content/\";s:13:\"modified_date\";s:19:\"2024-07-23 14:32:19\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:50;a:18:{s:2:\"ID\";i:252;s:7:\"site_id\";i:231214916;s:5:\"title\";s:32:\"Pull right with wide image below\";s:4:\"name\";s:32:\"pull-right-with-wide-image-below\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:3907:\"<!-- wp:group {\"metadata\":{\"name\":\"Intro\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"alignfull\",\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"50%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:50%\"><!-- wp:heading {\"fontSize\":\"x-large\"} -->\n<h2 class=\"wp-block-heading has-x-large-font-size\">Ride into adventure</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Zoom through the streets on this premium 3-speed bike. Manufactured and assembled in Germany in the 80s.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button --><div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\">Shop now</a></div><!-- /wp:button -->\n\n<!-- wp:button {\"className\":\"is-style-outline\"} --><div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link wp-element-button\">Discover collection</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"30%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:30%\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"id\":70,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"align\":\"wide\",\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image alignwide size-full is-style-default\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/06/road-sport-vintage-wheel-retro-old.jpg\" alt=\"\" class=\"wp-image-70\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_intro\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_intro\";s:5:\"title\";s:22:\"_dotcom_imported_intro\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:86:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/pull-right-with-wide-image-below/\";s:13:\"modified_date\";s:19:\"2024-07-01 15:17:04\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:51;a:18:{s:2:\"ID\";i:249;s:7:\"site_id\";i:231214916;s:5:\"title\";s:39:\"Fullwidth image with content and button\";s:4:\"name\";s:39:\"fullwidth-image-with-content-and-button\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:3779:\"<!-- wp:group {\"metadata\":{\"name\":\"Intro\",\"categories\":[\"intro\"],\"patternName\":\"a8c/intro-fullwidth-image-with-content-and-button-2\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"0\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"alignfull\",\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:0;padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:cover {\"url\":\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/07/0ad9cb5f991125c89fc952521795a1e6-1.jpeg\",\"id\":250,\"dimRatio\":0,\"customOverlayColor\":\"#FFF\",\"isUserOverlayColor\":true,\"minHeight\":550,\"minHeightUnit\":\"px\",\"isDark\":false,\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:550px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-0 has-background-dim\" style=\"background-color:#FFF\"></span><img class=\"wp-block-cover__image-background wp-image-250\" alt=\"\" src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/07/0ad9cb5f991125c89fc952521795a1e6-1.jpeg\" data-object-fit=\"cover\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:heading {\"textAlign\":\"center\",\"textColor\":\"ast-global-color-2\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-ast-global-color-2-color has-text-color\">Vintage vinyl treasures</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Step back in time and groove to the melodies of vinyl records. Dive into our eclectic collection, where each record spins tales of nostalgia and magic.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"orientation\":\"horizontal\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button --><div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\">Shop vinyl records</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_intro\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_intro\";s:5:\"title\";s:22:\"_dotcom_imported_intro\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:93:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/fullwidth-image-with-content-and-button/\";s:13:\"modified_date\";s:19:\"2024-07-01 15:15:23\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:52;a:18:{s:2:\"ID\";i:247;s:7:\"site_id\";i:231214916;s:5:\"title\";s:26:\"Large left-aligned heading\";s:4:\"name\";s:26:\"large-left-aligned-heading\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:2447:\"<!-- wp:group {\"metadata\":{\"name\":\"Intro\",\"categories\":[\"intro\"],\"patternName\":\"a8c/intro-left-aligned-header-and-button\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:heading -->\n<h2 class=\"wp-block-heading\">A world filled with boundless opportunities and endless potential</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_intro\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_intro\";s:5:\"title\";s:22:\"_dotcom_imported_intro\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:80:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/large-left-aligned-heading/\";s:13:\"modified_date\";s:19:\"2024-07-01 15:11:33\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:53;a:18:{s:2:\"ID\";i:244;s:7:\"site_id\";i:231214916;s:5:\"title\";s:37:\"Centered heading with two column text\";s:4:\"name\";s:37:\"centered-heading-with-two-column-text\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:4449:\"<!-- wp:group {\"metadata\":{\"name\":\"Intro\",\"categories\":[\"intro\"],\"patternName\":\"a8c/centered-heading-with-two-column-text\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"alignfull\",\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"15%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:15%\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"70%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:70%\"><!-- wp:heading {\"textAlign\":\"center\",\"fontSize\":\"xx-large\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xx-large-font-size\">Welcome home</h2>\n<!-- /wp:heading -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"textAlign\":\"center\"} --><div class=\"wp-block-button\"><a class=\"wp-block-button__link has-text-align-center wp-element-button\">Get Started</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"15%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:15%\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>We believe that your home should be a reflection of your unique style and personality. Our curated collection of home essentials and decor pieces is designed to help you create a space that feels truly like you. From cozy furnishings to stylish accents, we offer everything you need to turn your house into a home.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>Our expert designers will work closely with you to bring your vision to life. From furniture selection to color schemes, we\'ll provide professional advice and guidance every step of the way to help you achieve the perfect balance of comfort, functionality, and aesthetic appeal.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_intro\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_intro\";s:5:\"title\";s:22:\"_dotcom_imported_intro\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:91:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/centered-heading-with-two-column-text/\";s:13:\"modified_date\";s:19:\"2024-07-01 15:08:38\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:54;a:18:{s:2:\"ID\";i:243;s:7:\"site_id\";i:231214916;s:5:\"title\";s:33:\"Two column with image and content\";s:4:\"name\";s:35:\"two-column-with-image-and-content-2\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:3520:\"<!-- wp:group {\"metadata\":{\"name\":\"Intro\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"alignfull\",\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"verticalAlignment\":\"center\",\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"left\":\"var:preset|spacing|40\"}}}} -->\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center\"><!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:image {\"id\":69,\"aspectRatio\":\"3/4\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/06/tree-branch-plant-wood-leaf-flower.jpg\" alt=\"\" class=\"wp-image-69\" style=\"aspect-ratio:3/4;object-fit:cover\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:heading {\"fontSize\":\"xx-large\"} -->\n<h2 class=\"wp-block-heading has-xx-large-font-size\">Elevate your greenery</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Spruce up your plants with our delightful ceramic pots, lovingly crafted to bring joy to your indoor and outdoor spaces.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button --><div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\">Shop now</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_intro\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_intro\";s:5:\"title\";s:22:\"_dotcom_imported_intro\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:89:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/two-column-with-image-and-content-2/\";s:13:\"modified_date\";s:19:\"2024-07-04 14:02:00\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:55;a:18:{s:2:\"ID\";i:242;s:7:\"site_id\";i:231214916;s:5:\"title\";s:16:\"Centered content\";s:4:\"name\";s:18:\"centered-content-2\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:3583:\"<!-- wp:group {\"metadata\":{\"name\":\"Intro\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"alignfull\",\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"20%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:20%\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"60%\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-column\" style=\"flex-basis:60%\"><!-- wp:heading {\"textAlign\":\"center\",\"fontSize\":\"xx-large\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xx-large-font-size\">Ride into adventure</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"70%\"}}} -->\n<p class=\"has-text-align-center\">Welcome to your ultimate destination for high-quality bikes that fuel your passion for adventure. Whether you\'re a casual rider, a mountain biking enthusiast, or a road cycling pro, our diverse range of bikes promises to elevate your riding experience. Each bike is crafted with precision, combining cutting-edge technology and superior craftsmanship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button --><div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\">Explore our collection</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"20%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:20%\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_intro\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_intro\";s:5:\"title\";s:22:\"_dotcom_imported_intro\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:72:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/centered-content-2/\";s:13:\"modified_date\";s:19:\"2024-07-01 15:06:53\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:56;a:18:{s:2:\"ID\";i:241;s:7:\"site_id\";i:231214916;s:5:\"title\";s:39:\"Content with button and fullwidth image\";s:4:\"name\";s:41:\"content-with-button-and-fullwidth-image-3\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:3584:\"<!-- wp:group {\"metadata\":{\"name\":\"Intro\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"0\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"alignfull\",\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:0;padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:heading {\"textAlign\":\"center\",\"textColor\":\"ast-global-color-2\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-ast-global-color-2-color has-text-color\">Sit back and relax</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">With a wide range of designer chairs to elevate your living space.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"orientation\":\"horizontal\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button --><div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\">Shop now</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:cover {\"url\":\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/06/fa0e410e907dc5ba65806d0a9e45c89c.jpeg\",\"id\":231,\"dimRatio\":0,\"customOverlayColor\":\"#FFF\",\"isUserOverlayColor\":true,\"minHeight\":550,\"minHeightUnit\":\"px\",\"isDark\":false,\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:550px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-0 has-background-dim\" style=\"background-color:#FFF\"></span><img class=\"wp-block-cover__image-background wp-image-231\" alt=\"\" src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/06/fa0e410e907dc5ba65806d0a9e45c89c.jpeg\" data-object-fit=\"cover\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_intro\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_intro\";s:5:\"title\";s:22:\"_dotcom_imported_intro\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:95:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/content-with-button-and-fullwidth-image-3/\";s:13:\"modified_date\";s:19:\"2024-07-05 09:58:45\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:57;a:18:{s:2:\"ID\";i:239;s:7:\"site_id\";i:231214916;s:5:\"title\";s:41:\"Left-aligned content overlaid on an image\";s:4:\"name\";s:43:\"left-aligned-content-overlaid-on-an-image-2\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:3530:\"<!-- wp:cover {\"url\":\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/06/man-person-music-black-and-white-white-photography.jpg\",\"id\":79,\"dimRatio\":30,\"customOverlayColor\":\"#010101\",\"isUserOverlayColor\":true,\"focalPoint\":{\"x\":0.45,\"y\":0.19},\"contentPosition\":\"bottom left\",\"style\":{\"spacing\":{\"padding\":{\"right\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|40\",\"top\":\"var:preset|spacing|40\",\"bottom\":\"var:preset|spacing|40\"}}},\"className\":\"alignfull\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-cover has-custom-content-position is-position-bottom-left alignfull\" style=\"padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--40)\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-30 has-background-dim\" style=\"background-color:#010101\"></span><img class=\"wp-block-cover__image-background wp-image-79\" alt=\"\" src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/06/man-person-music-black-and-white-white-photography.jpg\" style=\"object-position:45% 19%\" data-object-fit=\"cover\" data-object-position=\"45% 19%\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"metadata\":{\"name\":\"Content\"},\"align\":\"wide\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"bottom\":\"0\"},\"padding\":{\"top\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"right\":\"0\"}}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group alignwide\" style=\"margin-top:0;margin-bottom:0;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\"><!-- wp:spacer {\"height\":\"var:preset|spacing|80\"} -->\n<div style=\"height:var(--wp--preset--spacing--80)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"var:preset|spacing|20\"}},\"layout\":{\"type\":\"constrained\",\"contentSize\":\"700px\",\"wideSize\":\"960px\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"textAlign\":\"left\",\"align\":\"wide\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"right\":\"0\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"#fefefe\"}}},\"color\":{\"text\":\"#fefefe\"}},\"className\":\"text-balance\",\"fontSize\":\"xx-large\"} -->\n<h2 class=\"wp-block-heading alignwide has-text-align-left text-balance has-text-color has-link-color has-xx-large-font-size\" style=\"color:#fefefe;margin-top:0;margin-right:0;margin-bottom:0;margin-left:0\">Sounds like no other</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"#fefefe\"}}},\"color\":{\"text\":\"#fefefe\"},\"spacing\":{\"margin\":{\"bottom\":\"var:preset|spacing|30\"}}}} -->\n<p class=\"has-text-align-left has-text-color has-link-color\" style=\"color:#fefefe;margin-bottom:var(--wp--preset--spacing--30)\">Experience your music like never before with our latest generation of hi-fidelity headphones.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-buttons alignwide\"><!-- wp:button {\"backgroundColor\":\"theme-1\",\"textColor\":\"theme-5\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|theme-5\"}}}}} --><div class=\"wp-block-button\"><a class=\"wp-block-button__link has-theme-5-color has-theme-1-background-color has-text-color has-background has-link-color wp-element-button\">Shop now</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_intro\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_intro\";s:5:\"title\";s:22:\"_dotcom_imported_intro\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:97:\"https://wooblockpatterns.wpcomstaging.com/2024/06/28/left-aligned-content-overlaid-on-an-image-2/\";s:13:\"modified_date\";s:19:\"2024-07-05 10:42:03\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:58;a:18:{s:2:\"ID\";i:235;s:7:\"site_id\";i:231214916;s:5:\"title\";s:43:\"Center-aligned content overlaid on an image\";s:4:\"name\";s:44:\"fullwidth-image-with-call-to-action-overlaid\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:3511:\"<!-- wp:cover {\"url\":\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/06/8d8416beec2ca80653d3b811bf6b1f77.jpeg\",\"id\":237,\"dimRatio\":20,\"customOverlayColor\":\"#010101\",\"isUserOverlayColor\":true,\"style\":{\"spacing\":{\"padding\":{\"right\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|40\",\"top\":\"var:preset|spacing|40\",\"bottom\":\"var:preset|spacing|40\"}},\"color\":{\"text\":\"#ffffff\"},\"elements\":{\"link\":{\"color\":{\"text\":\"#ffffff\"}}}},\"className\":\"alignfull\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-cover alignfull has-text-color has-link-color\" style=\"color:#ffffff;padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--40)\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-20 has-background-dim\" style=\"background-color:#010101\"></span><img class=\"wp-block-cover__image-background wp-image-237\" alt=\"\" src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/06/8d8416beec2ca80653d3b811bf6b1f77.jpeg\" data-object-fit=\"cover\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"metadata\":{\"name\":\"Content\"},\"align\":\"wide\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"bottom\":\"0\"},\"padding\":{\"top\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"right\":\"0\"}}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group alignwide\" style=\"margin-top:0;margin-bottom:0;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\"><!-- wp:spacer {\"height\":\"var:preset|spacing|70\"} -->\n<div style=\"height:var(--wp--preset--spacing--70)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"layout\":{\"type\":\"constrained\",\"contentSize\":\"\",\"wideSize\":\"580px\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"textAlign\":\"center\",\"align\":\"wide\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"right\":\"0\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"#fefefe\"}}},\"color\":{\"text\":\"#fefefe\"}},\"className\":\"text-balance\",\"fontSize\":\"xx-large\"} -->\n<h2 class=\"wp-block-heading alignwide has-text-align-center text-balance has-text-color has-link-color has-xx-large-font-size\" style=\"color:#fefefe;margin-top:0;margin-right:0;margin-bottom:0;margin-left:0\">Find your groove</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"#fefefe\"}}},\"color\":{\"text\":\"#fefefe\"}}} -->\n<p class=\"has-text-align-center has-text-color has-link-color\" style=\"color:#fefefe\">Embark on a musical adventure, where every chord is a step towards harmony. Discover guitars of all shapes, sizes, and melodies.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"center\"},\"style\":{\"layout\":{\"selfStretch\":\"fit\",\"flexSize\":null}}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"backgroundColor\":\"theme-1\",\"textColor\":\"theme-5\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|theme-5\"}}}}} --><div class=\"wp-block-button\"><a class=\"wp-block-button__link has-theme-5-color has-theme-1-background-color has-text-color has-background has-link-color wp-element-button\">Discover collection</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"var:preset|spacing|70\"} -->\n<div style=\"height:var(--wp--preset--spacing--70)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_intro\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_intro\";s:5:\"title\";s:22:\"_dotcom_imported_intro\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:98:\"https://wooblockpatterns.wpcomstaging.com/2024/06/28/fullwidth-image-with-call-to-action-overlaid/\";s:13:\"modified_date\";s:19:\"2024-07-05 09:24:31\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:59;a:18:{s:2:\"ID\";i:224;s:7:\"site_id\";i:231214916;s:5:\"title\";s:39:\"Fullwidth content with background image\";s:4:\"name\";s:39:\"fullwidth-content-with-background-image\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:2650:\"<!-- wp:cover {\"url\":\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/06/772d1d20f57861f0aa71dccda165b03e.jpeg\",\"id\":222,\"dimRatio\":0,\"overlayColor\":\"theme-5\",\"isUserOverlayColor\":true,\"minHeightUnit\":\"vh\",\"isDark\":false,\"metadata\":{\"name\":\"Intro\"},\"align\":\"full\",\"className\":\"alignfull\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|20\",\"bottom\":\"var:preset|spacing|20\",\"left\":\"var:preset|spacing|40\",\"right\":\"var:preset|spacing|40\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--20);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--20);padding-left:var(--wp--preset--spacing--40)\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-theme-5-background-color has-background-dim-0 has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-222\" alt=\"\" src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/06/772d1d20f57861f0aa71dccda165b03e.jpeg\" data-object-fit=\"cover\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:spacer {\"height\":\"var:preset|spacing|50\"} -->\n<div style=\"height:var(--wp--preset--spacing--50)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"metadata\":{\"name\":\"Content\"},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"xx-large\"} -->\n<p class=\"has-text-align-center has-xx-large-font-size\">Craft your Story</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Welcome to the place where the journey of a thousand stories begins. Embrace the transformative power of writing, and let your voice echo through the pages of time. Join us, and turn your imagination into reality.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"var:preset|spacing|10\",\"style\":{\"layout\":[]}} -->\n<div style=\"height:var(--wp--preset--spacing--10)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button --><div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\">Discover more</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"var:preset|spacing|50\"} -->\n<div style=\"height:var(--wp--preset--spacing--50)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div></div>\n<!-- /wp:cover -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_intro\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_intro\";s:5:\"title\";s:22:\"_dotcom_imported_intro\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:93:\"https://wooblockpatterns.wpcomstaging.com/2024/06/28/fullwidth-content-with-background-image/\";s:13:\"modified_date\";s:19:\"2024-07-24 11:18:13\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:60;a:18:{s:2:\"ID\";i:208;s:7:\"site_id\";i:231214916;s:5:\"title\";s:32:\"Small Discount Banner with Image\";s:4:\"name\";s:32:\"small-discount-banner-with-image\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:2291:\"<!-- wp:columns {\"metadata\":{\"categories\":[\"woo-commerce\"],\"patternName\":\"woocommerce-blocks/small-discount-banner-with-image\",\"name\":\"Small Discount Banner with Image\"},\"style\":{\"color\":{\"background\":\"#fcf8e1\"},\"spacing\":{\"padding\":{\"top\":\"20px\",\"right\":\"20px\",\"bottom\":\"20px\",\"left\":\"20px\"}}}} -->\n<div class=\"wp-block-columns has-background\" style=\"background-color:#fcf8e1;padding-top:20px;padding-right:20px;padding-bottom:20px;padding-left:20px\"><!-- wp:column {\"width\":\"45%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:45%\"><!-- wp:group {\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\"},\"padding\":{\"left\":\"25px\",\"top\":\"25px\"}}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"margin-top:0;padding-top:25px;padding-left:25px\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\",\"lineHeight\":\"1\",\"fontSize\":\"30px\"}}} -->\n<p style=\"font-size:30px;font-style:normal;font-weight:300;line-height:1\"><em>Chairs</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\",\"lineHeight\":\"0\",\"fontSize\":\"30px\"},\"color\":{\"text\":\"#74227b\"},\"elements\":{\"link\":{\"color\":{\"text\":\"#74227b\"}}}}} -->\n<p class=\"has-text-color has-link-color\" style=\"color:#74227b;font-size:30px;font-style:normal;font-weight:300;line-height:0\"><em>from</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#74227b\"},\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"900\",\"fontSize\":\"52px\",\"lineHeight\":\"1.2\"},\"elements\":{\"link\":{\"color\":{\"text\":\"#74227b\"}}}}} -->\n<p class=\"has-text-color has-link-color\" style=\"color:#74227b;font-size:52px;font-style:normal;font-weight:900;line-height:1.2\"><a href=\"https://wooblockpatterns.wpcomstaging.com/shop/\">$149</a></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":117,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"align\":\"center\"} -->\n<figure class=\"wp-block-image aligncenter size-full\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/06/table-floor-interior-atmosphere-living-room-furniture-square-lg.png\" alt=\"\" class=\"wp-image-117\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:16:\"_woo_woocommerce\";a:3:{s:4:\"slug\";s:16:\"_woo_woocommerce\";s:5:\"title\";s:16:\"_woo_WooCommerce\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:86:\"https://wooblockpatterns.wpcomstaging.com/2024/06/17/small-discount-banner-with-image/\";s:13:\"modified_date\";s:19:\"2024-11-06 17:35:31\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:61;a:18:{s:2:\"ID\";i:206;s:7:\"site_id\";i:231214916;s:5:\"title\";s:13:\"Shop by Price\";s:4:\"name\";s:13:\"shop-by-price\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:11069:\"<!-- wp:columns {\"metadata\":{\"categories\":[\"woo-commerce\"],\"patternName\":\"woocommerce-blocks/shop-by-price\",\"name\":\"Shop by Price\"},\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"25%\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"},\"blockGap\":\"10px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-column\" style=\"padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;flex-basis:25%\"><!-- wp:cover {\"customOverlayColor\":\"#e09300\",\"isUserOverlayColor\":true,\"minHeight\":130,\"minHeightUnit\":\"px\",\"contentPosition\":\"top left\",\"isDark\":false,\"style\":{\"spacing\":{\"blockGap\":\"0em\",\"padding\":{\"top\":\"0.8em\"}}},\"className\":\"is-light has-background-color has-text-color\"} -->\n<div class=\"wp-block-cover is-light has-custom-content-position is-position-top-left has-background-color has-text-color\" style=\"padding-top:0.8em;min-height:130px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#e09300\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"left\",\"placeholder\":\"Write title…\",\"style\":{\"typography\":{\"fontSize\":\"0.7em\",\"lineHeight\":\"1\"},\"spacing\":{\"margin\":{\"top\":\"0px\",\"bottom\":\"5px\"}},\"color\":{\"text\":\"#ffffff\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|base\"}}}}} -->\n<p class=\"has-text-align-left has-text-color has-link-color\" style=\"color:#ffffff;margin-top:0px;margin-bottom:5px;font-size:0.7em;line-height:1\"><a style=\"text-decoration:none\" href=\"/shop/?rating_filter=5\">Highest</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"0.7em\",\"lineHeight\":\"1\"},\"spacing\":{\"margin\":{\"top\":\"0px\",\"bottom\":\"5px\"}},\"color\":{\"text\":\"#ffffff\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|base\"}}}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-color has-link-color has-large-font-size\" style=\"color:#ffffff;margin-top:0px;margin-bottom:5px;font-size:0.7em;line-height:1\"><strong><a style=\"text-decoration:none\" href=\"/shop/?rating_filter=5\">rated</a></strong></p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"verticalAlignment\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"textColor\":\"contrast\",\"style\":{\"border\":{\"width\":\"0px\",\"style\":\"none\"},\"spacing\":{\"padding\":{\"left\":\"0\",\"right\":\"0\",\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"is-style-outline\",\"fontSize\":\"small\"} --><div class=\"wp-block-button has-custom-font-size is-style-outline has-small-font-size\"><a class=\"wp-block-button__link has-contrast-color has-text-color wp-element-button\" href=\"/shop/?rating_filter=5\" style=\"border-style:none;border-width:0px;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\"><strong>Outdoor Furniture &amp; Accessories</strong></a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"25%\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"},\"blockGap\":\"10px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-column\" style=\"padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;flex-basis:25%\"><!-- wp:cover {\"customOverlayColor\":\"#6f64f1\",\"isUserOverlayColor\":true,\"minHeight\":130,\"minHeightUnit\":\"px\",\"contentPosition\":\"top left\",\"style\":{\"spacing\":{\"blockGap\":\"0.8em\",\"padding\":{\"top\":\"0.8em\"}}},\"className\":\"has-background-color has-text-color\"} -->\n<div class=\"wp-block-cover has-custom-content-position is-position-top-left has-background-color has-text-color\" style=\"padding-top:0.8em;min-height:130px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#6f64f1\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"left\",\"placeholder\":\"Write title…\",\"style\":{\"typography\":{\"fontSize\":\"0.7em\",\"lineHeight\":\"1\"},\"spacing\":{\"margin\":{\"top\":\"0px\",\"bottom\":\"5px\"}},\"color\":{\"text\":\"#ffffff\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|base\"}}}}} -->\n<p class=\"has-text-align-left has-text-color has-link-color\" style=\"color:#ffffff;margin-top:0px;margin-bottom:5px;font-size:0.7em;line-height:1\"><a style=\"text-decoration:none\" href=\"/shop/?max_price=15\">Under</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"0.7em\",\"lineHeight\":\"1\"},\"spacing\":{\"margin\":{\"top\":\"0px\",\"bottom\":\"5px\"}},\"color\":{\"text\":\"#ffffff\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|base\"}}}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-color has-link-color has-large-font-size\" style=\"color:#ffffff;margin-top:0px;margin-bottom:5px;font-size:0.7em;line-height:1\"><strong><a style=\"text-decoration:none\" href=\"/shop/?max_price=15\">$15</a></strong></p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"verticalAlignment\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"textColor\":\"contrast\",\"style\":{\"border\":{\"width\":\"0px\",\"style\":\"none\"},\"spacing\":{\"padding\":{\"left\":\"0\",\"right\":\"0\",\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"is-style-outline\",\"fontSize\":\"small\"} --><div class=\"wp-block-button has-custom-font-size is-style-outline has-small-font-size\"><a class=\"wp-block-button__link has-contrast-color has-text-color wp-element-button\" href=\"/shop/?max_price=15\" style=\"border-style:none;border-width:0px;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\">\n					<strong>Summer Dinning</strong>\n				</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"25%\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"},\"blockGap\":\"10px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-column\" style=\"padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;flex-basis:25%\"><!-- wp:cover {\"customOverlayColor\":\"#c1d21c\",\"isUserOverlayColor\":true,\"minHeight\":130,\"minHeightUnit\":\"px\",\"contentPosition\":\"top left\",\"style\":{\"spacing\":{\"blockGap\":\"0.8em\",\"padding\":{\"top\":\"0.8em\"}}},\"className\":\"has-background-color has-text-color\"} -->\n<div class=\"wp-block-cover has-custom-content-position is-position-top-left has-background-color has-text-color\" style=\"padding-top:0.8em;min-height:130px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#c1d21c\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"left\",\"placeholder\":\"Write title…\",\"style\":{\"typography\":{\"fontSize\":\"0.7em\",\"lineHeight\":\"1\"},\"spacing\":{\"margin\":{\"top\":\"0px\",\"bottom\":\"5px\"}},\"color\":{\"text\":\"#ffffff\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|base\"}}}}} -->\n<p class=\"has-text-align-left has-text-color has-link-color\" style=\"color:#ffffff;margin-top:0px;margin-bottom:5px;font-size:0.7em;line-height:1\"><a style=\"text-decoration:none\" href=\"/shop/?max_price=25\">Under</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"0.7em\",\"lineHeight\":\"1\"},\"spacing\":{\"margin\":{\"top\":\"0px\",\"bottom\":\"5px\"}},\"color\":{\"text\":\"#ffffff\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|base\"}}}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-color has-link-color has-large-font-size\" style=\"color:#ffffff;margin-top:0px;margin-bottom:5px;font-size:0.7em;line-height:1\"><strong><a style=\"text-decoration:none\" href=\"/shop/?max_price=25\">$25</a></strong></p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"verticalAlignment\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"textColor\":\"contrast\",\"style\":{\"border\":{\"width\":\"0px\",\"style\":\"none\"},\"spacing\":{\"padding\":{\"left\":\"0\",\"right\":\"0\",\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"is-style-outline\",\"fontSize\":\"small\"} --><div class=\"wp-block-button has-custom-font-size is-style-outline has-small-font-size\"><a class=\"wp-block-button__link has-contrast-color has-text-color wp-element-button\" href=\"/shop/?max_price=25\" style=\"border-style:none;border-width:0px;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\">\n					<strong>Women\'s Styles</strong>\n				</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"25%\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"},\"blockGap\":\"10px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-column\" style=\"padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;flex-basis:25%\"><!-- wp:cover {\"customOverlayColor\":\"#10ca99\",\"isUserOverlayColor\":true,\"minHeight\":130,\"minHeightUnit\":\"px\",\"contentPosition\":\"top left\",\"style\":{\"spacing\":{\"blockGap\":\"0.8em\",\"padding\":{\"top\":\"0.8em\"}}},\"className\":\"has-background-color has-text-color\"} -->\n<div class=\"wp-block-cover has-custom-content-position is-position-top-left has-background-color has-text-color\" style=\"padding-top:0.8em;min-height:130px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#10ca99\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"left\",\"placeholder\":\"Write title…\",\"style\":{\"typography\":{\"fontSize\":\"0.7em\",\"lineHeight\":\"1\"},\"spacing\":{\"margin\":{\"top\":\"0px\",\"bottom\":\"5px\"}},\"color\":{\"text\":\"#ffffff\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|base\"}}}}} -->\n<p class=\"has-text-align-left has-text-color has-link-color\" style=\"color:#ffffff;margin-top:0px;margin-bottom:5px;font-size:0.7em;line-height:1\"><a style=\"text-decoration:none\" href=\"/shop/?max_price=20\">Under</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"0.7em\",\"lineHeight\":\"1\"},\"spacing\":{\"margin\":{\"top\":\"0px\",\"bottom\":\"5px\"}},\"color\":{\"text\":\"#ffffff\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|base\"}}}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-color has-link-color has-large-font-size\" style=\"color:#ffffff;margin-top:0px;margin-bottom:5px;font-size:0.7em;line-height:1\"><strong><a style=\"text-decoration:none\" href=\"/shop/?max_price=20\">$20</a></strong></p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"verticalAlignment\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"textColor\":\"contrast\",\"style\":{\"border\":{\"width\":\"0px\",\"style\":\"none\"},\"spacing\":{\"padding\":{\"left\":\"0\",\"right\":\"0\",\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"is-style-outline\",\"fontSize\":\"small\"} --><div class=\"wp-block-button has-custom-font-size is-style-outline has-small-font-size\"><a class=\"wp-block-button__link has-contrast-color has-text-color wp-element-button\" href=\"/shop/?max_price=20\" style=\"border-style:none;border-width:0px;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\">\n					<strong>Kids\' Styles</strong>\n				</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:16:\"_woo_woocommerce\";a:3:{s:4:\"slug\";s:16:\"_woo_woocommerce\";s:5:\"title\";s:16:\"_woo_WooCommerce\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:67:\"https://wooblockpatterns.wpcomstaging.com/2024/06/17/shop-by-price/\";s:13:\"modified_date\";s:19:\"2024-06-17 14:41:33\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:62;a:18:{s:2:\"ID\";i:204;s:7:\"site_id\";i:231214916;s:5:\"title\";s:42:\"Product List with Full Product Description\";s:4:\"name\";s:42:\"product-list-with-full-product-description\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:3309:\"<!-- wp:query {\"queryId\":18,\"query\":{\"perPage\":\"5\",\"pages\":0,\"offset\":0,\"postType\":\"product\",\"order\":\"desc\",\"orderBy\":\"date\",\"author\":\"\",\"search\":\"\",\"exclude\":[],\"sticky\":\"\",\"inherit\":false,\"__woocommerceStockStatus\":[\"instock\",\"outofstock\",\"onbackorder\"]},\"namespace\":\"woocommerce/product-query\",\"metadata\":{\"categories\":[\"woo-commerce\"],\"patternName\":\"woocommerce-blocks/product-query-product-list-with-full-product-description\",\"name\":\"Product List with Full Product Description\"}} -->\n<div class=\"wp-block-query\"><!-- wp:post-template {\"layout\":{\"type\":\"default\",\"columnCount\":2},\"__woocommerceNamespace\":\"woocommerce/product-query/product-template\"} -->\n<!-- wp:columns {\"isStackedOnMobile\":false} -->\n<div class=\"wp-block-columns is-not-stacked-on-mobile\"><!-- wp:column {\"width\":\"33.33%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.33%\"><!-- wp:woocommerce/product-image {\"saleBadgeAlign\":\"left\",\"isDescendentOfQueryLoop\":true} /--></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"66.66%\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-column\" style=\"flex-basis:66.66%\"><!-- wp:woocommerce/product-rating {\"isDescendentOfQueryLoop\":true,\"fontSize\":\"small\",\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"0.75rem\"}}}} /-->\n\n<!-- wp:post-terms {\"term\":\"product_cat\",\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"0.75rem\",\"top\":\"0\"}}}} /-->\n\n<!-- wp:post-title {\"level\":3,\"isLink\":true,\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"0.75rem\",\"top\":\"0\"}}},\"fontSize\":\"large\",\"__woocommerceNamespace\":\"woocommerce/product-query/product-title\"} /-->\n\n<!-- wp:post-excerpt {\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"0.75rem\",\"top\":\"0\"}}},\"fontSize\":\"small\",\"__woocommerceNamespace\":\"woocommerce/product-query/product-summary\"} /-->\n\n<!-- wp:woocommerce/product-sku {\"isDescendentOfQueryLoop\":true} /-->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"33.33%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.33%\"><!-- wp:woocommerce/product-price {\"isDescendentOfQueryLoop\":true,\"fontSize\":\"small\",\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"0.75rem\"}}}} /--></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"66.66%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:66.66%\"><!-- wp:woocommerce/product-button {\"isDescendentOfQueryLoop\":true,\"fontSize\":\"small\",\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"0.75rem\"}}}} /--></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n<!-- /wp:post-template -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"33.33%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.33%\"><!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"66.66%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:66.66%\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:query-pagination {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<!-- wp:query-pagination-previous /-->\n\n<!-- wp:query-pagination-numbers /-->\n\n<!-- wp:query-pagination-next /-->\n<!-- /wp:query-pagination -->\n\n<!-- wp:query-no-results -->\n<!-- wp:paragraph {\"placeholder\":\"Add text or blocks that will display when a query returns no results.\"} -->\n<p></p>\n<!-- /wp:paragraph -->\n<!-- /wp:query-no-results --></div>\n<!-- /wp:query -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:1:{i:0;s:11:\"woocommerce\";}s:10:\"categories\";a:1:{s:16:\"_woo_woocommerce\";a:3:{s:4:\"slug\";s:16:\"_woo_woocommerce\";s:5:\"title\";s:16:\"_woo_WooCommerce\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:96:\"https://wooblockpatterns.wpcomstaging.com/2024/06/17/product-list-with-full-product-description/\";s:13:\"modified_date\";s:19:\"2024-06-17 14:35:59\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:63;a:18:{s:2:\"ID\";i:202;s:7:\"site_id\";i:231214916;s:5:\"title\";s:28:\"Product List with 1:1 Images\";s:4:\"name\";s:27:\"product-list-with-11-images\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:2434:\"<!-- wp:query {\"queryId\":16,\"query\":{\"perPage\":\"5\",\"pages\":0,\"offset\":0,\"postType\":\"product\",\"order\":\"desc\",\"orderBy\":\"date\",\"author\":\"\",\"search\":\"\",\"exclude\":[],\"sticky\":\"\",\"inherit\":false,\"__woocommerceStockStatus\":[\"instock\",\"outofstock\",\"onbackorder\"]},\"namespace\":\"woocommerce/product-query\",\"metadata\":{\"categories\":[\"woo-commerce\"],\"patternName\":\"woocommerce-blocks/product-query-product-list-with-1-1-images\",\"name\":\"Product List with 1:1 Images\"}} -->\n<div class=\"wp-block-query\"><!-- wp:post-template {\"layout\":{\"type\":\"default\",\"columnCount\":2},\"__woocommerceNamespace\":\"woocommerce/product-query/product-template\"} -->\n<!-- wp:columns {\"isStackedOnMobile\":false} -->\n<div class=\"wp-block-columns is-not-stacked-on-mobile\"><!-- wp:column {\"width\":\"33.33%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.33%\"><!-- wp:woocommerce/product-image {\"saleBadgeAlign\":\"left\",\"isDescendentOfQueryLoop\":true} /--></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"66.66%\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-column\" style=\"flex-basis:66.66%\"><!-- wp:woocommerce/product-rating {\"isDescendentOfQueryLoop\":true,\"fontSize\":\"small\",\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"0.75rem\"}}}} /-->\n\n<!-- wp:post-title {\"level\":3,\"isLink\":true,\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"0.75rem\",\"top\":\"0\"}}},\"fontSize\":\"large\",\"__woocommerceNamespace\":\"woocommerce/product-query/product-title\"} /-->\n\n<!-- wp:post-excerpt {\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"0.75rem\",\"top\":\"0\"}}},\"fontSize\":\"small\",\"__woocommerceNamespace\":\"woocommerce/product-query/product-summary\"} /-->\n\n<!-- wp:woocommerce/product-price {\"isDescendentOfQueryLoop\":true,\"fontSize\":\"small\",\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"0.75rem\",\"top\":\"0\"}}}} /-->\n\n<!-- wp:woocommerce/product-button {\"isDescendentOfQueryLoop\":true,\"fontSize\":\"small\",\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"0.75rem\",\"top\":\"0\"}}}} /--></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n<!-- /wp:post-template -->\n\n<!-- wp:query-pagination {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<!-- wp:query-pagination-previous /-->\n\n<!-- wp:query-pagination-numbers /-->\n\n<!-- wp:query-pagination-next /-->\n<!-- /wp:query-pagination -->\n\n<!-- wp:query-no-results -->\n<!-- wp:paragraph {\"placeholder\":\"Add text or blocks that will display when a query returns no results.\"} -->\n<p></p>\n<!-- /wp:paragraph -->\n<!-- /wp:query-no-results --></div>\n<!-- /wp:query -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:1:{i:0;s:11:\"woocommerce\";}s:10:\"categories\";a:1:{s:16:\"_woo_woocommerce\";a:3:{s:4:\"slug\";s:16:\"_woo_woocommerce\";s:5:\"title\";s:16:\"_woo_WooCommerce\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:81:\"https://wooblockpatterns.wpcomstaging.com/2024/06/17/product-list-with-11-images/\";s:13:\"modified_date\";s:19:\"2024-06-17 14:35:29\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:64;a:18:{s:2:\"ID\";i:200;s:7:\"site_id\";i:231214916;s:5:\"title\";s:20:\"Minimal Product List\";s:4:\"name\";s:20:\"minimal-product-list\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:2060:\"<!-- wp:query {\"queryId\":14,\"query\":{\"perPage\":\"5\",\"pages\":0,\"offset\":0,\"postType\":\"product\",\"order\":\"desc\",\"orderBy\":\"date\",\"author\":\"\",\"search\":\"\",\"exclude\":[],\"sticky\":\"\",\"inherit\":false,\"__woocommerceStockStatus\":[\"instock\",\"outofstock\",\"onbackorder\"]},\"namespace\":\"woocommerce/product-query\",\"metadata\":{\"categories\":[\"woo-commerce\"],\"patternName\":\"woocommerce-blocks/product-query-minimal-product-list\",\"name\":\"Minimal Product List\"}} -->\n<div class=\"wp-block-query\"><!-- wp:post-template {\"layout\":{\"type\":\"default\",\"columnCount\":2},\"__woocommerceNamespace\":\"woocommerce/product-query/product-template\"} -->\n<!-- wp:columns {\"isStackedOnMobile\":false} -->\n<div class=\"wp-block-columns is-not-stacked-on-mobile\"><!-- wp:column {\"width\":\"33.33%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.33%\"><!-- wp:woocommerce/product-image {\"isDescendentOfQueryLoop\":true} /--></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"66.66%\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-column\" style=\"flex-basis:66.66%\"><!-- wp:woocommerce/product-rating {\"isDescendentOfQueryLoop\":true,\"fontSize\":\"small\",\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"0.75rem\"}}}} /-->\n\n<!-- wp:post-title {\"level\":3,\"isLink\":true,\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"0.75rem\",\"top\":\"0\"}}},\"fontSize\":\"large\",\"__woocommerceNamespace\":\"woocommerce/product-query/product-title\"} /-->\n\n<!-- wp:woocommerce/product-price {\"isDescendentOfQueryLoop\":true,\"fontSize\":\"small\",\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"0.75rem\",\"top\":\"0\"}}}} /--></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n<!-- /wp:post-template -->\n\n<!-- wp:query-pagination {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<!-- wp:query-pagination-previous /-->\n\n<!-- wp:query-pagination-numbers /-->\n\n<!-- wp:query-pagination-next /-->\n<!-- /wp:query-pagination -->\n\n<!-- wp:query-no-results -->\n<!-- wp:paragraph {\"placeholder\":\"Add text or blocks that will display when a query returns no results.\"} -->\n<p></p>\n<!-- /wp:paragraph -->\n<!-- /wp:query-no-results --></div>\n<!-- /wp:query -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:1:{i:0;s:11:\"woocommerce\";}s:10:\"categories\";a:1:{s:16:\"_woo_woocommerce\";a:3:{s:4:\"slug\";s:16:\"_woo_woocommerce\";s:5:\"title\";s:16:\"_woo_WooCommerce\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:74:\"https://wooblockpatterns.wpcomstaging.com/2024/06/17/minimal-product-list/\";s:13:\"modified_date\";s:19:\"2024-06-17 14:34:48\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:65;a:18:{s:2:\"ID\";i:198;s:7:\"site_id\";i:231214916;s:5:\"title\";s:20:\"4-Column Product Row\";s:4:\"name\";s:20:\"4-column-product-row\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:2017:\"<!-- wp:query {\"queryId\":10,\"query\":{\"perPage\":\"4\",\"pages\":0,\"offset\":0,\"postType\":\"product\",\"order\":\"desc\",\"orderBy\":\"date\",\"author\":\"\",\"search\":\"\",\"exclude\":[],\"sticky\":\"\",\"inherit\":false,\"__woocommerceStockStatus\":[\"instock\",\"outofstock\",\"onbackorder\"]},\"namespace\":\"woocommerce/product-query\",\"metadata\":{\"categories\":[\"woo-commerce\"],\"patternName\":\"woocommerce-blocks/product-query-4-column-product-row\",\"name\":\"4-Column Product Row\"},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-query\"><!-- wp:post-template {\"layout\":{\"type\":\"grid\",\"columnCount\":4},\"__woocommerceNamespace\":\"woocommerce/product-query/product-template\"} -->\n<!-- wp:woocommerce/product-image {\"isDescendentOfQueryLoop\":true} /-->\n\n<!-- wp:post-title {\"isLink\":true,\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"0.75rem\",\"top\":\"0\"}}},\"fontSize\":\"medium\",\"__woocommerceNamespace\":\"woocommerce/product-query/product-title\"} /-->\n\n<!-- wp:group {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"verticalAlignment\":\"top\",\"justifyContent\":\"space-between\",\"orientation\":\"horizontal\"}} -->\n<div class=\"wp-block-group\"><!-- wp:woocommerce/product-price {\"isDescendentOfQueryLoop\":true,\"fontSize\":\"small\",\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"0.75rem\"}}}} /-->\n\n<!-- wp:woocommerce/product-rating {\"isDescendentOfQueryLoop\":true,\"fontSize\":\"small\",\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"0.75rem\"}}}} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:woocommerce/product-button {\"isDescendentOfQueryLoop\":true,\"fontSize\":\"small\",\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"0.75rem\"}}}} /-->\n<!-- /wp:post-template -->\n\n<!-- wp:query-pagination {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<!-- wp:query-pagination-previous /-->\n\n<!-- wp:query-pagination-numbers /-->\n\n<!-- wp:query-pagination-next /-->\n<!-- /wp:query-pagination -->\n\n<!-- wp:query-no-results -->\n<!-- wp:paragraph {\"placeholder\":\"Add text or blocks that will display when a query returns no results.\"} -->\n<p></p>\n<!-- /wp:paragraph -->\n<!-- /wp:query-no-results --></div>\n<!-- /wp:query -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:1:{i:0;s:11:\"woocommerce\";}s:10:\"categories\";a:1:{s:16:\"_woo_woocommerce\";a:3:{s:4:\"slug\";s:16:\"_woo_woocommerce\";s:5:\"title\";s:16:\"_woo_WooCommerce\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:74:\"https://wooblockpatterns.wpcomstaging.com/2024/06/17/4-column-product-row/\";s:13:\"modified_date\";s:19:\"2024-06-17 14:34:06\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:66;a:18:{s:2:\"ID\";i:192;s:7:\"site_id\";i:231214916;s:5:\"title\";s:44:\"Product Listing with Gallery and Description\";s:4:\"name\";s:44:\"product-listing-with-gallery-and-description\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:7318:\"<!-- wp:columns {\"metadata\":{\"categories\":[\"woo-commerce\"],\"patternName\":\"woocommerce-blocks/product-listing-with-gallery-and-description\",\"name\":\"Product Listing with Gallery and Description\"},\"align\":\"wide\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"},\"blockGap\":{\"top\":\"60px\",\"left\":\"60px\"}}}} -->\n<div class=\"wp-block-columns alignwide\" style=\"padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:columns {\"isStackedOnMobile\":false,\"style\":{\"spacing\":{\"padding\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"},\"blockGap\":{\"top\":\"1.5rem\",\"left\":\"1.5rem\"}}}} -->\n<div class=\"wp-block-columns is-not-stacked-on-mobile\" style=\"margin-top:0;margin-bottom:0;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\"><!-- wp:column {\"width\":\"15%\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"0\",\"right\":\"var:preset|spacing|20\",\"bottom\":\"0\",\"left\":\"0\"},\"blockGap\":\"0\"}},\"layout\":{\"type\":\"constrained\",\"wideSize\":\"80px\"}} -->\n<div class=\"wp-block-column\" style=\"padding-top:0;padding-right:var(--wp--preset--spacing--20);padding-bottom:0;padding-left:0;flex-basis:15%\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"1rem\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"verticalAlignment\":\"center\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group\"><!-- wp:image {\"id\":193,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"border\":{\"color\":\"#dddddd\",\"width\":\"1px\",\"radius\":\"5px\"}},\"className\":\"is-resized\"} -->\n<figure class=\"wp-block-image size-full has-custom-border is-resized\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/06/desk-table-wood-chair-floor-home-square.png\" alt=\"\" class=\"has-border-color wp-image-193\" style=\"border-color:#dddddd;border-width:1px;border-radius:5px\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":194,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"border\":{\"color\":\"#dddddd\",\"width\":\"1px\",\"radius\":\"5px\"}},\"className\":\"is-resized\"} -->\n<figure class=\"wp-block-image size-full has-custom-border is-resized\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/06/table-floor-interior-atmosphere-living-room-furniture-square-1.png\" alt=\"\" class=\"has-border-color wp-image-194\" style=\"border-color:#dddddd;border-width:1px;border-radius:5px\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":195,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"border\":{\"color\":\"#dddddd\",\"width\":\"1px\",\"radius\":\"5px\"}},\"className\":\"is-resized\"} -->\n<figure class=\"wp-block-image size-full has-custom-border is-resized\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/06/table-floor-home-living-room-furniture-room-square.png\" alt=\"\" class=\"has-border-color wp-image-195\" style=\"border-color:#dddddd;border-width:1px;border-radius:5px\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"85%\",\"style\":{\"spacing\":{\"blockGap\":\"0\"}}} -->\n<div class=\"wp-block-column\" style=\"flex-basis:85%\"><!-- wp:image {\"id\":196,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/06/table-wood-chair-floor-living-room-furniture-vertical.png\" alt=\"\" class=\"wp-image-196\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"48px\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"textColor\":\"foreground\"} -->\n<h2 class=\"wp-block-heading has-foreground-color has-text-color\" style=\"font-size:48px;font-style:normal;font-weight:700\">Patterned Upright, Orange and White, Wood Legs</h2>\n<!-- /wp:heading -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"blockGap\":\"0px\",\"margin\":{\"top\":\"10px\",\"bottom\":\"0px\"}}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"verticalAlignment\":\"center\"}} -->\n<div class=\"wp-block-group\" style=\"margin-top:10px;margin-bottom:0px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px\"><!-- wp:paragraph {\"textColor\":\"luminous-vivid-amber\"} -->\n<p class=\"has-luminous-vivid-amber-color has-text-color\">★★★★</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#ffe8a4\"},\"spacing\":{\"margin\":{\"right\":\"5px\"}}}} -->\n<p class=\"has-text-color\" style=\"color:#ffe8a4;margin-right:5px\">★</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"0.7em\"}},\"textColor\":\"foreground\"} -->\n<p class=\"has-foreground-color has-text-color\" style=\"font-size:0.7em\">\n				<strong>4.2</strong>(1,079 reviews)\n			</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"8px\",\"padding\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"margin\":{\"top\":\"2px\",\"bottom\":\"0px\"}}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"verticalAlignment\":\"center\"}} -->\n<div class=\"wp-block-group\" style=\"margin-top:2px;margin-bottom:0px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"1.2em\"}},\"textColor\":\"foreground\"} -->\n<p class=\"has-foreground-color has-text-color\" style=\"font-size:1.2em\">\n				<strong><sup><sub>$</sub></sup>37.49</strong>\n			</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"0.7em\"},\"layout\":{\"selfStretch\":\"fit\",\"flexSize\":null},\"color\":{\"text\":\"#7c0a99\"}}} -->\n<p class=\"has-text-color\" style=\"color:#7c0a99;font-size:0.7em\">Save $10 <s>was $47.49</s></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"18px\"}},\"textColor\":\"foreground\"} -->\n<p class=\"has-foreground-color has-text-color\" style=\"font-size:18px\">Designed with your well-being in mind, this chair features a contoured backrest that provides exceptional lumbar support, helping to reduce strain on your back during long hours of sitting. The adjustable height and tilt mechanisms allow you to customize the chair to your preferred sitting position, ensuring a comfortable and productive workday. Upholstered in premium fabric and available in a variety of colors, the Harmony Ergonomic Chair adds a touch of elegance to any room.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-group\"><!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"style\":{\"spacing\":{\"padding\":{\"left\":\"80px\",\"right\":\"80px\"}},\"color\":{\"text\":\"#ffffff\",\"background\":\"#000000\"}}} --><div class=\"wp-block-button\"><a class=\"wp-block-button__link has-text-color has-background wp-element-button\" style=\"color:#ffffff;background-color:#000000;padding-right:80px;padding-left:80px\">Add to cart</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"16px\"}}} -->\n<p style=\"font-size:16px\">SKU 6355793</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:16:\"_woo_woocommerce\";a:3:{s:4:\"slug\";s:16:\"_woo_woocommerce\";s:5:\"title\";s:16:\"_woo_WooCommerce\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:98:\"https://wooblockpatterns.wpcomstaging.com/2024/06/17/product-listing-with-gallery-and-description/\";s:13:\"modified_date\";s:19:\"2024-06-17 14:33:29\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:67;a:18:{s:2:\"ID\";i:188;s:7:\"site_id\";i:231214916;s:5:\"title\";s:12:\"Product Hero\";s:4:\"name\";s:12:\"product-hero\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:1688:\"\n<!-- wp:woocommerce/single-product {\"isPreview\":true,\"align\":\"wide\"} -->\n<div class=\"wp-block-woocommerce-single-product alignwide\">\n	<!-- wp:columns -->\n	<div class=\"wp-block-columns\">\n		<!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"40%\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"}}},\"layout\":{\"type\":\"constrained\"}} -->\n		<div class=\"wp-block-column is-vertically-aligned-center\" style=\"padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;flex-basis:40%\">\n			<!-- wp:woocommerce/product-image {\"showSaleBadge\":false,\"isDescendentOfSingleProductBlock\":true,\"height\":\"300px\"} /-->\n		</div>\n		<!-- /wp:column -->\n\n		<!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"60%\",\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"left\",\"contentSize\":\"650px\"}} -->\n		<div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:60%\">\n			<!-- wp:post-title {\"textAlign\":\"\",\"isLink\":true,\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"}}},\"__woocommerceNamespace\":\"woocommerce/product-query/product-title\"} /-->\n\n			<!-- wp:woocommerce/product-price {\"isDescendentOfSingleProductBlock\":true} /-->\n\n			<!-- wp:group {\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n			<div class=\"wp-block-group\">\n				<!-- wp:woocommerce/product-button -->\n				<div class=\"wp-block-woocommerce-product-button is-loading\"></div>\n				<!-- /wp:woocommerce/product-button -->\n			</div>\n			<!-- /wp:group -->\n\n			<!-- wp:post-excerpt {\"__woocommerceNamespace\":\"woocommerce/product-query/product-summary\"} /-->\n		</div>\n		<!-- /wp:column -->\n	</div>\n	<!-- /wp:columns -->\n</div>\n<!-- /wp:woocommerce/single-product -->\n\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:1:{i:0;s:11:\"woocommerce\";}s:10:\"categories\";a:1:{s:16:\"_woo_woocommerce\";a:3:{s:4:\"slug\";s:16:\"_woo_woocommerce\";s:5:\"title\";s:16:\"_woo_WooCommerce\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:66:\"https://wooblockpatterns.wpcomstaging.com/2024/06/17/product-hero/\";s:13:\"modified_date\";s:19:\"2024-06-17 14:31:16\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:68;a:18:{s:2:\"ID\";i:186;s:7:\"site_id\";i:231214916;s:5:\"title\";s:27:\"Featured Products 2 Columns\";s:4:\"name\";s:27:\"featured-products-2-columns\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:2625:\"<!-- wp:columns {\"metadata\":{\"categories\":[\"woo-commerce\"],\"patternName\":\"woocommerce-blocks/featured-products-2-cols\",\"name\":\"Featured Products 2 Columns\"},\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|40\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"66.66%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:66.66%\"><!-- wp:query {\"queryId\":8,\"query\":{\"perPage\":\"4\",\"pages\":0,\"offset\":0,\"postType\":\"product\",\"order\":\"asc\",\"orderBy\":\"title\",\"author\":\"\",\"search\":\"\",\"exclude\":[],\"sticky\":\"\",\"inherit\":false,\"__woocommerceAttributes\":[],\"__woocommerceStockStatus\":[\"instock\",\"onbackorder\"]},\"namespace\":\"woocommerce/product-query\"} -->\n<div class=\"wp-block-query\"><!-- wp:post-template {\"layout\":{\"type\":\"grid\",\"columnCount\":2},\"__woocommerceNamespace\":\"woocommerce/product-query/product-template\"} -->\n<!-- wp:woocommerce/product-image {\"isDescendentOfQueryLoop\":true,\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"24px\",\"top\":\"0\"}}}} /-->\n\n<!-- wp:columns {\"verticalAlignment\":\"bottom\"} -->\n<div class=\"wp-block-columns are-vertically-aligned-bottom\"><!-- wp:column {\"verticalAlignment\":\"bottom\"} -->\n<div class=\"wp-block-column is-vertically-aligned-bottom\"><!-- wp:post-title {\"textAlign\":\"left\",\"level\":3,\"isLink\":true,\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"0rem\",\"top\":\"0\"}}},\"fontSize\":\"medium\",\"__woocommerceNamespace\":\"woocommerce/product-query/product-title\"} /--></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"bottom\"} -->\n<div class=\"wp-block-column is-vertically-aligned-bottom\"><!-- wp:woocommerce/product-price {\"isDescendentOfQueryLoop\":true,\"textAlign\":\"right\",\"fontSize\":\"small\",\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"0rem\",\"top\":\"0\"}}}} /--></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n<!-- /wp:post-template --></div>\n<!-- /wp:query --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"33.33%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.33%\"><!-- wp:heading {\"level\":4} -->\n<h4 class=\"wp-block-heading\"><strong>Fan favorites</strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Get ready to start the season right. All the fan favorites in one place at the best price.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"width\":50} --><div class=\"wp-block-button has-custom-width wp-block-button__width-50\"><a class=\"wp-block-button__link wp-element-button\" href=\"https://wooblockpatterns.wpcomstaging.com/shop/\">Shop All</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:1:{i:0;s:11:\"woocommerce\";}s:10:\"categories\";a:1:{s:16:\"_woo_woocommerce\";a:3:{s:4:\"slug\";s:16:\"_woo_woocommerce\";s:5:\"title\";s:16:\"_woo_WooCommerce\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:81:\"https://wooblockpatterns.wpcomstaging.com/2024/06/17/featured-products-2-columns/\";s:13:\"modified_date\";s:19:\"2024-06-17 14:30:24\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:69;a:18:{s:2:\"ID\";i:182;s:7:\"site_id\";i:231214916;s:5:\"title\";s:23:\"Product Details Pattern\";s:4:\"name\";s:23:\"product-details-pattern\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:8625:\"<!-- wp:columns {\"metadata\":{\"categories\":[\"woo-commerce\"],\"patternName\":\"woocommerce-blocks/product-details-pattern\",\"name\":\"Product Details Pattern\"},\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"0\",\"left\":\"0\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"0\",\"right\":\"40px\",\"bottom\":\"0\",\"left\":\"0px\"},\"blockGap\":\"0px\"}}} -->\n<div class=\"wp-block-column\" style=\"padding-top:0;padding-right:40px;padding-bottom:0;padding-left:0px\"><!-- wp:image {\"id\":183,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/06/table-floor-home-living-room-furniture-room.png\" alt=\"\" class=\"wp-image-183\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:columns {\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"0\",\"left\":\"0\"},\"padding\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"},\"margin\":{\"top\":\"0.2em\",\"bottom\":\"0.2em\"}}}} -->\n<div class=\"wp-block-columns\" style=\"margin-top:0.2em;margin-bottom:0.2em;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\"><!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"0px\",\"right\":\"5px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"blockGap\":\"0\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-column\" style=\"padding-top:0px;padding-right:5px;padding-bottom:0px;padding-left:0px\"><!-- wp:image {\"id\":184,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/06/table-white-chair-floor-shelf-lamp-square-lg.png\" alt=\"\" class=\"wp-image-184\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"},\"blockGap\":\"0px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-column\" style=\"padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\"><!-- wp:image {\"id\":117,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/06/table-floor-interior-atmosphere-living-room-furniture-square-lg.png\" alt=\"\" class=\"wp-image-117\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"style\":{\"color\":{\"text\":\"#000000\"}},\"fontSize\":\"x-large\"} -->\n<h2 class=\"wp-block-heading has-text-color has-x-large-font-size\" style=\"color:#000000\">Luxurious Charcoal Grey Upholstered Sofa</h2>\n<!-- /wp:heading -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"blockGap\":\"0px\",\"margin\":{\"top\":\"10px\",\"bottom\":\"0px\"}}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\" style=\"margin-top:10px;margin-bottom:0px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#fcb900\"}}} -->\n<p class=\"has-text-color\" style=\"color:#fcb900\">★★★★</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#ffe8a4\"},\"spacing\":{\"margin\":{\"right\":\"5px\"}}}} -->\n<p class=\"has-text-color\" style=\"color:#ffe8a4;margin-right:5px\">★</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"0.7em\"},\"color\":{\"text\":\"#000000\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:0.7em\">  <strong>4.2</strong>(1,079 reviews)</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"8px\",\"padding\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"margin\":{\"top\":\"2px\",\"bottom\":\"0px\"}}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\" style=\"margin-top:2px;margin-bottom:0px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"1.2em\"},\"color\":{\"text\":\"#000000\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:1.2em\"><strong><sup><sub>$</sub></sup>158.99</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"0.7em\"},\"layout\":{\"selfStretch\":\"fit\",\"flexSize\":null},\"color\":{\"text\":\"#000000\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:0.7em\"><s>was $173.99</s></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"0.7em\"},\"color\":{\"text\":\"#C51313\"}}} -->\n<p class=\"has-text-color\" style=\"color:#C51313;font-size:0.7em\"><strong>9% off</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0px\",\"margin\":{\"top\":\"5px\"}}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"margin-top:5px\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#00A510\"},\"typography\":{\"fontSize\":\"0.7em\"},\"spacing\":{\"margin\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"}}}} -->\n<p class=\"has-text-color\" style=\"color:#00A510;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;font-size:0.7em\"><strong>Free 2-Day Shipping</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"0.8em\"},\"color\":{\"text\":\"#000000\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:0.8em\">The \"Modern Elegance: Luxurious Charcoal Grey Upholstered Sofa\" harmonizes style and comfort to redefine your living space. This stunning piece is crafted with plush, high-density foam cushions, enveloped in a rich, charcoal grey fabric that is invitingly soft to the touch. Its clean lines and contemporary silhouette are complemented by the sturdy wooden frame, making it a durable yet stylish addition to any home decor. Whether you\'re lounging or entertaining, this sofa promises unrivaled comfort and a look that\'s seamlessly chic.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-group\"><!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"style\":{\"color\":{\"text\":\"#ffffff\",\"background\":\"#000000\"}}} --><div class=\"wp-block-button\"><a class=\"wp-block-button__link has-text-color has-background wp-element-button\" style=\"color:#ffffff;background-color:#000000\">Add to cart</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"0.8em\"},\"color\":{\"text\":\"#000000\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:0.8em\"><strong>Features</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"style\":{\"spacing\":{\"margin\":{\"top\":\"10px\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"}},\"color\":{\"text\":\"#000000\"}},\"className\":\"has-foreground-color\"} -->\n<ul style=\"color:#000000;margin-top:10px;margin-right:0;margin-bottom:0;margin-left:0\" class=\"wp-block-list has-foreground-color has-text-color\"><!-- wp:list-item {\"style\":{\"typography\":{\"fontSize\":\"0.8em\"}}} -->\n<li style=\"font-size:0.8em\">Top shelf weight capacity of 100 lbs</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item {\"style\":{\"typography\":{\"fontSize\":\"0.8em\"}}} -->\n<li style=\"font-size:0.8em\">Drawer weight capacity of 50 lbs</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"0.8em\"},\"color\":{\"text\":\"#000000\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:0.8em\"><strong>Weight and Dimensions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:table {\"hasFixedLayout\":false,\"style\":{\"typography\":{\"fontSize\":\"0.7em\"},\"color\":{\"text\":\"#000000\"}},\"backgroundColor\":\"background\",\"className\":\"is-style-stripes\"} -->\n<figure class=\"wp-block-table is-style-stripes\" style=\"font-size:0.7em\"><table class=\"has-background-background-color has-text-color has-background\" style=\"color:#000000\"><tbody><tr><td>Overall</td><td>36.5\'\' H X 40\'\' W X 20\'\' D</td></tr><tr><td>Drawer Interior</td><td>2\'\' H X 29.25\'\' W X 12.5\'\' D</td></tr><tr><td>Countertop</td><td>40\'\' W X 20\'\' D</td></tr><tr><td>Countertop Thickness</td><td>0.7\'\' H</td></tr><tr><td>Overall Product Weight</td><td>39.6 lb.</td></tr></tbody></table></figure>\n<!-- /wp:table --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:16:\"_woo_woocommerce\";a:3:{s:4:\"slug\";s:16:\"_woo_woocommerce\";s:5:\"title\";s:16:\"_woo_WooCommerce\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:77:\"https://wooblockpatterns.wpcomstaging.com/2024/06/17/product-details-pattern/\";s:13:\"modified_date\";s:19:\"2024-06-17 14:29:31\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:70;a:18:{s:2:\"ID\";i:180;s:7:\"site_id\";i:231214916;s:5:\"title\";s:31:\"Product Details Product Listing\";s:4:\"name\";s:31:\"product-details-product-listing\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:1582:\"\n<!-- wp:woocommerce/single-product {\"isPreview\":true} -->\n<div class=\"wp-block-woocommerce-single-product\">\n	<!-- wp:columns -->\n	<div class=\"wp-block-columns\">\n		<!-- wp:column -->\n		<div class=\"wp-block-column\">\n			<!-- wp:post-featured-image {\"height\":\"490px\"} /-->\n\n			<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"8px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"center\"}} -->\n			<div class=\"wp-block-group\">\n				<!-- wp:woocommerce/product-rating-stars {\"isDescendentOfSingleProductBlock\":true,\"textColor\":\"luminous-vivid-amber\",\"style\":{\"spacing\":{\"margin\":{\"right\":\"5px\"}}}} /-->\n				<!-- wp:woocommerce/product-average-rating {\"style\":{\"typography\":{\"fontWeight\":\"600\",\"fontSize\":\"14px\"}}} /-->\n				<!-- wp:woocommerce/product-rating-counter {\"isDescendentOfSingleProductBlock\":true,\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}},\"typography\":{\"fontSize\":\"14px\"}}} /-->\n			</div>\n			<!-- /wp:group -->\n\n			<!-- wp:post-title {\"textAlign\":\"center\",\"isLink\":true,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"fontSize\":\"x-large\",\"__woocommerceNamespace\":\"woocommerce/product-query/product-title\"} /-->\n			<!-- wp:woocommerce/product-price {\"textAlign\":\"center\",\"isDescendentOfSingleProductBlock\":true,\"style\":{\"typography\":{\"fontSize\":\"28px\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}}} /-->\n			<!-- wp:woocommerce/product-button {\"textAlign\":\"center\",\"isDescendentOfSingleProductBlock\":true} /-->\n		</div>\n		<!-- /wp:column -->\n	</div>\n	<!-- /wp:columns -->\n</div>\n<!-- /wp:woocommerce/single-product -->\n\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:1:{i:0;s:11:\"woocommerce\";}s:10:\"categories\";a:1:{s:16:\"_woo_woocommerce\";a:3:{s:4:\"slug\";s:16:\"_woo_woocommerce\";s:5:\"title\";s:16:\"_woo_WooCommerce\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:85:\"https://wooblockpatterns.wpcomstaging.com/2024/06/17/product-details-product-listing/\";s:13:\"modified_date\";s:19:\"2024-06-17 14:28:16\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:71;a:18:{s:2:\"ID\";i:178;s:7:\"site_id\";i:231214916;s:5:\"title\";s:35:\"Product Collections Newest Arrivals\";s:4:\"name\";s:35:\"product-collections-newest-arrivals\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:1993:\"<!-- wp:group {\"metadata\":{\"categories\":[\"woo-commerce\"],\"patternName\":\"woocommerce-blocks/product-collections-newest-arrivals\",\"name\":\"Product Collections Newest Arrivals\"},\"align\":\"wide\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Our newest arrivals</h3>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"right\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button --><div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"https://wooblockpatterns.wpcomstaging.com/shop/\">More new products</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:query {\"queryId\":6,\"query\":{\"perPage\":\"4\",\"pages\":0,\"offset\":0,\"postType\":\"product\",\"order\":\"desc\",\"orderBy\":\"date\",\"author\":\"\",\"search\":\"\",\"exclude\":[],\"sticky\":\"\",\"inherit\":false,\"__woocommerceAttributes\":[],\"__woocommerceStockStatus\":[\"instock\",\"onbackorder\"]},\"namespace\":\"woocommerce/product-query\"} -->\n<div class=\"wp-block-query\"><!-- wp:post-template {\"className\":\"products-block-post-template\",\"layout\":{\"type\":\"grid\",\"columnCount\":4},\"__woocommerceNamespace\":\"woocommerce/product-query/product-template\"} -->\n<!-- wp:woocommerce/product-image {\"isDescendentOfQueryLoop\":true} /-->\n\n<!-- wp:post-title {\"textAlign\":\"center\",\"level\":3,\"isLink\":true,\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"0.75rem\",\"top\":\"0\"}}},\"fontSize\":\"medium\",\"__woocommerceNamespace\":\"woocommerce/product-query/product-title\"} /-->\n<!-- /wp:post-template --></div>\n<!-- /wp:query --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:1:{i:0;s:11:\"woocommerce\";}s:10:\"categories\";a:1:{s:16:\"_woo_woocommerce\";a:3:{s:4:\"slug\";s:16:\"_woo_woocommerce\";s:5:\"title\";s:16:\"_woo_WooCommerce\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:89:\"https://wooblockpatterns.wpcomstaging.com/2024/06/17/product-collections-newest-arrivals/\";s:13:\"modified_date\";s:19:\"2024-06-17 14:26:37\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:72;a:18:{s:2:\"ID\";i:172;s:7:\"site_id\";i:231214916;s:5:\"title\";s:40:\"Product Collections Featured Collections\";s:4:\"name\";s:40:\"product-collections-featured-collections\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:4859:\"<!-- wp:columns {\"metadata\":{\"categories\":[\"woo-commerce\"],\"patternName\":\"woocommerce-blocks/product-collections-featured-collections\",\"name\":\"Product Collections Featured Collections\"},\"align\":\"wide\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"},\"blockGap\":{\"top\":\"0\",\"left\":\"0\"}}}} -->\n<div class=\"wp-block-columns alignwide\" style=\"padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\"><!-- wp:column {\"width\":\"50%\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"30px\",\"right\":\"30px\",\"bottom\":\"30px\",\"left\":\"30px\"}},\"color\":{\"background\":\"#f3edd8\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-column has-background\" style=\"background-color:#f3edd8;padding-top:30px;padding-right:30px;padding-bottom:30px;padding-left:30px;flex-basis:50%\"><!-- wp:heading {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"},\"color\":{\"text\":\"#000000\"}},\"fontSize\":\"x-large\"} -->\n<h2 class=\"wp-block-heading has-text-color has-x-large-font-size\" style=\"color:#000000;font-style:normal;font-weight:700\">Tech gifts under $100</h2>\n<!-- /wp:heading -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"style\":{\"spacing\":{\"padding\":{\"left\":\"18px\",\"right\":\"18px\",\"top\":\"9px\",\"bottom\":\"9px\"}},\"typography\":{\"fontSize\":\"16px\"},\"color\":{\"background\":\"#000000\",\"text\":\"#ffffff\"}}} --><div class=\"wp-block-button has-custom-font-size\" style=\"font-size:16px\"><a class=\"wp-block-button__link has-text-color has-background wp-element-button\" href=\"https://wooblockpatterns.wpcomstaging.com/shop/\" style=\"color:#ffffff;background-color:#000000;padding-top:9px;padding-right:18px;padding-bottom:9px;padding-left:18px\">Shop tech</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:group {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"right\"}} -->\n<div class=\"wp-block-group\"><!-- wp:image {\"id\":173,\"width\":\"140px\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/06/technology-white-camera-photography-vintage-photographer.png\" alt=\"\" class=\"wp-image-173\" style=\"width:140px\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":174,\"width\":\"140px\",\"height\":\"100px\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/06/leather-guitar-typewriter-red-gadget-sofa.png\" alt=\"\" class=\"wp-image-174\" style=\"width:140px;height:100px\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"50%\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"30px\",\"right\":\"30px\",\"bottom\":\"30px\",\"left\":\"30px\"}},\"color\":{\"background\":\"#d8f2f3\"}}} -->\n<div class=\"wp-block-column has-background\" style=\"background-color:#d8f2f3;padding-top:30px;padding-right:30px;padding-bottom:30px;padding-left:30px;flex-basis:50%\"><!-- wp:heading {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"},\"color\":{\"text\":\"#000000\"}},\"fontSize\":\"x-large\"} -->\n<h2 class=\"wp-block-heading has-text-color has-x-large-font-size\" style=\"color:#000000;font-style:normal;font-weight:700\">For the gamers</h2>\n<!-- /wp:heading -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"style\":{\"spacing\":{\"padding\":{\"left\":\"18px\",\"right\":\"18px\",\"top\":\"9px\",\"bottom\":\"9px\"}},\"typography\":{\"fontSize\":\"16px\"},\"color\":{\"background\":\"#000000\",\"text\":\"#ffffff\"}}} --><div class=\"wp-block-button has-custom-font-size\" style=\"font-size:16px\"><a class=\"wp-block-button__link has-text-color has-background wp-element-button\" href=\"https://wooblockpatterns.wpcomstaging.com/shop/\" style=\"color:#ffffff;background-color:#000000;padding-top:9px;padding-right:18px;padding-bottom:9px;padding-left:18px\">Shop games</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:group {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"right\"}} -->\n<div class=\"wp-block-group\"><!-- wp:image {\"id\":175,\"width\":\"140px\",\"height\":\"100px\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/06/music-technology-play-equipment-studio-gadget.png\" alt=\"\" class=\"wp-image-175\" style=\"width:140px;height:100px\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":176,\"width\":\"140px\",\"height\":\"100px\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/06/technology-joystick-gadget-console-games-playstation.png\" alt=\"\" class=\"wp-image-176\" style=\"width:140px;height:100px\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:16:\"_woo_woocommerce\";a:3:{s:4:\"slug\";s:16:\"_woo_woocommerce\";s:5:\"title\";s:16:\"_woo_WooCommerce\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:94:\"https://wooblockpatterns.wpcomstaging.com/2024/06/17/product-collections-featured-collections/\";s:13:\"modified_date\";s:19:\"2024-06-17 14:25:38\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:73;a:18:{s:2:\"ID\";i:169;s:7:\"site_id\";i:231214916;s:5:\"title\";s:39:\"Product Collections Featured Collection\";s:4:\"name\";s:39:\"product-collections-featured-collection\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:4254:\"<!-- wp:columns {\"metadata\":{\"categories\":[\"woo-commerce\"],\"patternName\":\"woocommerce-blocks/product-collections-featured-collection\",\"name\":\"Product Collections Featured Collection\"},\"align\":\"wide\",\"style\":{\"color\":{\"background\":\"#333333\"},\"spacing\":{\"padding\":{\"top\":\"1.3rem\",\"right\":\"1.3rem\",\"bottom\":\"1.3rem\",\"left\":\"1.3rem\"}}},\"textColor\":\"white\"} -->\n<div class=\"wp-block-columns alignwide has-white-color has-text-color has-background\" style=\"background-color:#333333;padding-top:1.3rem;padding-right:1.3rem;padding-bottom:1.3rem;padding-left:1.3rem\"><!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"33.33%\",\"style\":{\"spacing\":{\"padding\":{\"right\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|40\"}}}} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"padding-right:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--40);flex-basis:33.33%\"><!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"},\"color\":{\"text\":\"#ffffff\"}},\"fontSize\":\"x-large\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-text-color has-x-large-font-size\" style=\"color:#ffffff;font-style:normal;font-weight:700\">\n			This week\'s popular products		</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"66.66%\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:66.66%\"><!-- wp:query {\"queryId\":3,\"query\":{\"perPage\":\"3\",\"pages\":0,\"offset\":0,\"postType\":\"product\",\"order\":\"desc\",\"orderBy\":\"date\",\"author\":\"\",\"search\":\"\",\"exclude\":[],\"sticky\":\"\",\"inherit\":false,\"__woocommerceAttributes\":[],\"__woocommerceStockStatus\":[\"instock\",\"onbackorder\"]},\"namespace\":\"woocommerce/product-query\"} -->\n<div class=\"wp-block-query\"><!-- wp:post-template {\"layout\":{\"type\":\"grid\",\"columnCount\":3},\"__woocommerceNamespace\":\"woocommerce/product-query/product-template\"} -->\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"},\"blockGap\":\"0\"},\"color\":{\"background\":\"#484848\"},\"border\":{\"radius\":{\"topLeft\":\"0px\",\"topRight\":\"0px\",\"bottomLeft\":\"4px\",\"bottomRight\":\"4px\"}}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"stretch\"}} -->\n<div class=\"wp-block-group has-background\" style=\"border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-left-radius:4px;border-bottom-right-radius:4px;background-color:#484848;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\"><!-- wp:group {\"style\":{\"border\":{\"radius\":{\"topLeft\":\"4px\",\"topRight\":\"4px\"},\"color\":\"#ffffff\",\"style\":\"solid\",\"width\":\"3px\"},\"spacing\":{\"padding\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"},\"blockGap\":\"0\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group has-border-color\" style=\"border-color:#ffffff;border-style:solid;border-width:3px;border-top-left-radius:4px;border-top-right-radius:4px;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\"><!-- wp:woocommerce/product-image {\"isDescendentOfQueryLoop\":true,\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"}}}} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0\",\"padding\":{\"top\":\"20px\",\"right\":\"20px\",\"left\":\"20px\",\"bottom\":\"10px\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|background\"}}}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"left\",\"verticalAlignment\":\"center\"}} -->\n<div class=\"wp-block-group has-link-color\" style=\"padding-top:20px;padding-right:20px;padding-bottom:10px;padding-left:20px\"><!-- wp:woocommerce/product-price {\"isDescendentOfQueryLoop\":true,\"fontFamily\":\"system-font\",\"style\":{\"typography\":{\"fontSize\":\"16px\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\"},\"color\":{\"text\":\"#ffffff\"}}} /-->\n\n<!-- wp:post-title {\"level\":3,\"isLink\":true,\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"0.75rem\",\"top\":\"0\"}},\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\",\"fontSize\":\"16px\",\"textDecoration\":\"none\"},\"color\":{\"text\":\"#ffffff\"}},\"__woocommerceNamespace\":\"woocommerce/product-query/product-title\"} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n<!-- /wp:post-template --></div>\n<!-- /wp:query --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:1:{i:0;s:11:\"woocommerce\";}s:10:\"categories\";a:1:{s:16:\"_woo_woocommerce\";a:3:{s:4:\"slug\";s:16:\"_woo_woocommerce\";s:5:\"title\";s:16:\"_woo_WooCommerce\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:93:\"https://wooblockpatterns.wpcomstaging.com/2024/06/17/product-collections-featured-collection/\";s:13:\"modified_date\";s:19:\"2024-06-17 14:23:59\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:74;a:18:{s:2:\"ID\";i:167;s:7:\"site_id\";i:231214916;s:5:\"title\";s:30:\"Product Collection Simple Grid\";s:4:\"name\";s:30:\"product-collection-simple-grid\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:1707:\"<!-- wp:woocommerce/product-collection {\"queryId\":22,\"query\":{\"perPage\":5,\"pages\":0,\"offset\":0,\"postType\":\"product\",\"order\":\"asc\",\"orderBy\":\"title\",\"search\":\"\",\"exclude\":[],\"inherit\":false,\"taxQuery\":[],\"isProductCollectionBlock\":true,\"woocommerceOnSale\":false,\"woocommerceStockStatus\":[\"instock\",\"outofstock\",\"onbackorder\"],\"woocommerceAttributes\":[],\"woocommerceHandPickedProducts\":[]},\"tagName\":\"div\",\"displayLayout\":{\"type\":\"flex\",\"columns\":5,\"shrinkColumns\":true},\"queryContextIncludes\":[\"collection\"],\"metadata\":{\"categories\":[\"woo-commerce\"],\"patternName\":\"woocommerce-blocks/product-collection-simple-grid\",\"name\":\"Product Collection Simple Grid\"}} -->\n<div class=\"wp-block-woocommerce-product-collection\"><!-- wp:woocommerce/product-template -->\n<!-- wp:woocommerce/product-image {\"saleBadgeAlign\":\"left\",\"imageSizing\":\"thumbnail\",\"isDescendentOfQueryLoop\":true,\"style\":{\"typography\":{\"fontSize\":\"0.8rem\"}}} /-->\n\n<!-- wp:post-title {\"textAlign\":\"center\",\"level\":3,\"isLink\":true,\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"0.75rem\",\"top\":\"0\"}},\"typography\":{\"fontSize\":\"1rem\"}},\"__woocommerceNamespace\":\"woocommerce/product-collection/product-title\"} /-->\n<!-- /wp:woocommerce/product-template -->\n\n<!-- wp:query-pagination {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"orientation\":\"horizontal\"}} -->\n<!-- wp:query-pagination-previous /-->\n\n<!-- wp:query-pagination-numbers /-->\n\n<!-- wp:query-pagination-next /-->\n<!-- /wp:query-pagination -->\n\n<!-- wp:query-no-results -->\n<!-- wp:paragraph {\"placeholder\":\"Add text or blocks that will display when a query returns no results.\"} -->\n<p></p>\n<!-- /wp:paragraph -->\n<!-- /wp:query-no-results --></div>\n<!-- /wp:woocommerce/product-collection -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:1:{i:0;s:11:\"woocommerce\";}s:10:\"categories\";a:1:{s:16:\"_woo_woocommerce\";a:3:{s:4:\"slug\";s:16:\"_woo_woocommerce\";s:5:\"title\";s:16:\"_woo_WooCommerce\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:84:\"https://wooblockpatterns.wpcomstaging.com/2024/06/17/product-collection-simple-grid/\";s:13:\"modified_date\";s:19:\"2024-06-17 14:23:15\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:75;a:18:{s:2:\"ID\";i:165;s:7:\"site_id\";i:231214916;s:5:\"title\";s:23:\"Product Collection Rows\";s:4:\"name\";s:23:\"product-collection-rows\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:2506:\"<!-- wp:woocommerce/product-collection {\"queryId\":21,\"query\":{\"perPage\":9,\"pages\":0,\"offset\":0,\"postType\":\"product\",\"order\":\"asc\",\"orderBy\":\"title\",\"search\":\"\",\"exclude\":[],\"inherit\":false,\"taxQuery\":[],\"isProductCollectionBlock\":true,\"woocommerceOnSale\":false,\"woocommerceStockStatus\":[\"instock\",\"outofstock\",\"onbackorder\"],\"woocommerceAttributes\":[],\"woocommerceHandPickedProducts\":[]},\"tagName\":\"div\",\"displayLayout\":{\"type\":\"list\",\"columns\":3,\"shrinkColumns\":true},\"queryContextIncludes\":[\"collection\"],\"metadata\":{\"categories\":[\"woo-commerce\"],\"patternName\":\"woocommerce-blocks/product-collection-rows\",\"name\":\"Product Collection Rows\"}} -->\n<div class=\"wp-block-woocommerce-product-collection\"><!-- wp:woocommerce/product-template -->\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"33.33%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.33%\"><!-- wp:woocommerce/product-image {\"isDescendentOfQueryLoop\":true} /--></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"66.66%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:66.66%\"><!-- wp:post-title {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"1\"},\"spacing\":{\"margin\":{\"top\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"right\":\"0\"},\"padding\":{\"right\":\"0\",\"left\":\"0\",\"top\":\"0\",\"bottom\":\"0\"}}},\"fontSize\":\"large\",\"__woocommerceNamespace\":\"woocommerce/product-collection/product-title\"} /-->\n\n<!-- wp:woocommerce/product-price {\"isDescendentOfQueryLoop\":true,\"fontSize\":\"medium\",\"style\":{\"typography\":{\"lineHeight\":\"1\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}}} /-->\n\n<!-- wp:woocommerce/product-rating {\"isDescendentOfQueryLoop\":true,\"textColor\":\"luminous-vivid-amber\",\"fontSize\":\"medium\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"0px\",\"bottom\":\"0px\"}}}} /-->\n\n<!-- wp:post-excerpt {\"showMoreOnNewLine\":false,\"excerptLength\":23,\"fontSize\":\"small\",\"__woocommerceNamespace\":\"woocommerce/product-collection/product-summary\"} /--></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n<!-- /wp:woocommerce/product-template -->\n\n<!-- wp:query-pagination {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<!-- wp:query-pagination-previous /-->\n\n<!-- wp:query-pagination-numbers /-->\n\n<!-- wp:query-pagination-next /-->\n<!-- /wp:query-pagination -->\n\n<!-- wp:query-no-results -->\n<!-- wp:paragraph {\"placeholder\":\"Add text or blocks that will display when a query returns no results.\"} -->\n<p></p>\n<!-- /wp:paragraph -->\n<!-- /wp:query-no-results --></div>\n<!-- /wp:woocommerce/product-collection -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:1:{i:0;s:11:\"woocommerce\";}s:10:\"categories\";a:1:{s:16:\"_woo_woocommerce\";a:3:{s:4:\"slug\";s:16:\"_woo_woocommerce\";s:5:\"title\";s:16:\"_woo_WooCommerce\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:77:\"https://wooblockpatterns.wpcomstaging.com/2024/06/17/product-collection-rows/\";s:13:\"modified_date\";s:19:\"2024-06-17 14:22:29\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:76;a:18:{s:2:\"ID\";i:163;s:7:\"site_id\";i:231214916;s:5:\"title\";s:23:\"Product Collection Grid\";s:4:\"name\";s:23:\"product-collection-grid\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:1807:\"<!-- wp:woocommerce/product-collection {\"queryId\":20,\"query\":{\"perPage\":4,\"pages\":0,\"offset\":0,\"postType\":\"product\",\"order\":\"asc\",\"orderBy\":\"title\",\"search\":\"\",\"exclude\":[],\"inherit\":false,\"taxQuery\":[],\"isProductCollectionBlock\":true,\"woocommerceOnSale\":false,\"woocommerceStockStatus\":[\"instock\",\"outofstock\",\"onbackorder\"],\"woocommerceAttributes\":[],\"woocommerceHandPickedProducts\":[]},\"tagName\":\"div\",\"displayLayout\":{\"type\":\"flex\",\"columns\":4,\"shrinkColumns\":true},\"queryContextIncludes\":[\"collection\"],\"metadata\":{\"categories\":[\"woo-commerce\"],\"patternName\":\"woocommerce-blocks/product-collection-grid\",\"name\":\"Product Collection Grid\"}} -->\n<div class=\"wp-block-woocommerce-product-collection\"><!-- wp:woocommerce/product-template -->\n<!-- wp:woocommerce/product-image {\"imageSizing\":\"thumbnail\",\"isDescendentOfQueryLoop\":true} /-->\n\n<!-- wp:post-title {\"textAlign\":\"left\",\"level\":3,\"isLink\":true,\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"0.75rem\",\"top\":\"0\"}},\"typography\":{\"lineHeight\":\"1\"}},\"fontSize\":\"small\",\"__woocommerceNamespace\":\"woocommerce/product-collection/product-title\"} /-->\n\n<!-- wp:woocommerce/product-price {\"isDescendentOfQueryLoop\":true,\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"0.8rem\",\"lineHeight\":\"1\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}}} /-->\n<!-- /wp:woocommerce/product-template -->\n\n<!-- wp:query-pagination {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<!-- wp:query-pagination-previous /-->\n\n<!-- wp:query-pagination-numbers /-->\n\n<!-- wp:query-pagination-next /-->\n<!-- /wp:query-pagination -->\n\n<!-- wp:query-no-results -->\n<!-- wp:paragraph {\"placeholder\":\"Add text or blocks that will display when a query returns no results.\"} -->\n<p></p>\n<!-- /wp:paragraph -->\n<!-- /wp:query-no-results --></div>\n<!-- /wp:woocommerce/product-collection -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:1:{i:0;s:11:\"woocommerce\";}s:10:\"categories\";a:1:{s:16:\"_woo_woocommerce\";a:3:{s:4:\"slug\";s:16:\"_woo_woocommerce\";s:5:\"title\";s:16:\"_woo_WooCommerce\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:77:\"https://wooblockpatterns.wpcomstaging.com/2024/06/17/product-collection-grid/\";s:13:\"modified_date\";s:19:\"2024-06-17 14:21:55\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:77;a:18:{s:2:\"ID\";i:161;s:7:\"site_id\";i:231214916;s:5:\"title\";s:28:\"Product Collection Full Grid\";s:4:\"name\";s:28:\"product-collection-full-grid\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:1966:\"<!-- wp:woocommerce/product-collection {\"queryId\":19,\"query\":{\"perPage\":3,\"pages\":0,\"offset\":0,\"postType\":\"product\",\"order\":\"asc\",\"orderBy\":\"title\",\"search\":\"\",\"exclude\":[],\"inherit\":false,\"taxQuery\":[],\"isProductCollectionBlock\":true,\"woocommerceOnSale\":false,\"woocommerceStockStatus\":[\"instock\",\"outofstock\",\"onbackorder\"],\"woocommerceAttributes\":[],\"woocommerceHandPickedProducts\":[]},\"tagName\":\"div\",\"displayLayout\":{\"type\":\"flex\",\"columns\":3,\"shrinkColumns\":true},\"queryContextIncludes\":[\"collection\"],\"metadata\":{\"categories\":[\"woo-commerce\"],\"patternName\":\"woocommerce-blocks/product-collection-full-grid\",\"name\":\"Product Collection Full Grid\"}} -->\n<div class=\"wp-block-woocommerce-product-collection\"><!-- wp:woocommerce/product-template -->\n<!-- wp:woocommerce/product-image {\"imageSizing\":\"thumbnail\",\"isDescendentOfQueryLoop\":true} /-->\n\n<!-- wp:woocommerce/product-price {\"isDescendentOfQueryLoop\":true,\"textAlign\":\"left\",\"fontSize\":\"medium\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\",\"lineHeight\":\"1\"}}} /-->\n\n<!-- wp:post-title {\"textAlign\":\"left\",\"level\":3,\"isLink\":true,\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"0.75rem\",\"top\":\"0\"}},\"typography\":{\"lineHeight\":\"1\"}},\"fontSize\":\"small\",\"__woocommerceNamespace\":\"woocommerce/product-collection/product-title\"} /-->\n\n<!-- wp:woocommerce/product-button {\"textAlign\":\"left\",\"width\":50,\"isDescendentOfQueryLoop\":true,\"style\":{\"typography\":{\"fontSize\":\"0.8rem\"}}} /-->\n<!-- /wp:woocommerce/product-template -->\n\n<!-- wp:query-pagination {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<!-- wp:query-pagination-previous /-->\n\n<!-- wp:query-pagination-numbers /-->\n\n<!-- wp:query-pagination-next /-->\n<!-- /wp:query-pagination -->\n\n<!-- wp:query-no-results -->\n<!-- wp:paragraph {\"placeholder\":\"Add text or blocks that will display when a query returns no results.\"} -->\n<p></p>\n<!-- /wp:paragraph -->\n<!-- /wp:query-no-results --></div>\n<!-- /wp:woocommerce/product-collection -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:1:{i:0;s:11:\"woocommerce\";}s:10:\"categories\";a:1:{s:16:\"_woo_woocommerce\";a:3:{s:4:\"slug\";s:16:\"_woo_woocommerce\";s:5:\"title\";s:16:\"_woo_WooCommerce\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:82:\"https://wooblockpatterns.wpcomstaging.com/2024/06/17/product-collection-full-grid/\";s:13:\"modified_date\";s:19:\"2024-06-17 14:21:05\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:78;a:18:{s:2:\"ID\";i:158;s:7:\"site_id\";i:231214916;s:5:\"title\";s:25:\"Product Collection Banner\";s:4:\"name\";s:25:\"product-collection-banner\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:3069:\"<!-- wp:group {\"metadata\":{\"categories\":[\"woo-commerce\"],\"patternName\":\"woocommerce-blocks/product-collection-banner\",\"name\":\"Product Collection Banner\"},\"align\":\"wide\",\"layout\":{\"type\":\"constrained\",\"contentSize\":\"1000px\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:columns {\"align\":\"wide\",\"style\":{\"color\":{\"background\":\"#ffedf5\"}}} -->\n<div class=\"wp-block-columns alignwide has-background\" style=\"background-color:#ffedf5\"><!-- wp:column {\"width\":\"58%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:58%\"><!-- wp:cover {\"url\":\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/06/beach-landscape-sea-coast-nature-person.jpg\",\"id\":159,\"dimRatio\":20,\"customOverlayColor\":\"#9aacbd\",\"minHeight\":430,\"minHeightUnit\":\"px\",\"isDark\":false,\"style\":{\"spacing\":{\"padding\":{\"top\":\"80px\",\"right\":\"80px\",\"bottom\":\"80px\",\"left\":\"80px\"}}}} -->\n<div class=\"wp-block-cover is-light\" style=\"padding-top:80px;padding-right:80px;padding-bottom:80px;padding-left:80px;min-height:430px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-20 has-background-dim\" style=\"background-color:#9aacbd\"></span><img class=\"wp-block-cover__image-background wp-image-159\" alt=\"\" src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/06/beach-landscape-sea-coast-nature-person.jpg\" data-object-fit=\"cover\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"style\":{\"typography\":{\"fontSize\":\"40px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"1.3\"},\"color\":{\"text\":\"#ffffff\"}},\"fontFamily\":\"inter\"} -->\n<p class=\"has-text-align-center has-text-color has-inter-font-family\" style=\"color:#ffffff;font-size:40px;font-style:normal;font-weight:700;line-height:1.3;text-transform:uppercase\">Brand New for the Holidays</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"22px\",\"fontStyle\":\"normal\",\"fontWeight\":\"300\",\"lineHeight\":\"1.3\"},\"color\":{\"text\":\"#000000\"}},\"fontFamily\":\"inter\"} -->\n<p class=\"has-text-color has-inter-font-family\" style=\"color:#000000;font-size:22px;font-style:normal;font-weight:300;line-height:1.3\">Check out our brand new collection of holiday products and find the right gift for anyone.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"style\":{\"color\":{\"background\":\"#ff7179\",\"text\":\"#000000\"},\"border\":{\"radius\":\"100px\",\"width\":\"0px\",\"style\":\"none\"}}} --><div class=\"wp-block-button\"><a class=\"wp-block-button__link has-text-color has-background wp-element-button\" href=\"https://wooblockpatterns.wpcomstaging.com/shop/\" style=\"border-style:none;border-width:0px;border-radius:100px;color:#000000;background-color:#ff7179\">Shop now</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:16:\"_woo_woocommerce\";a:3:{s:4:\"slug\";s:16:\"_woo_woocommerce\";s:5:\"title\";s:16:\"_woo_WooCommerce\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:79:\"https://wooblockpatterns.wpcomstaging.com/2024/06/17/product-collection-banner/\";s:13:\"modified_date\";s:19:\"2024-06-17 14:19:42\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:79;a:18:{s:2:\"ID\";i:153;s:7:\"site_id\";i:231214916;s:5:\"title\";s:14:\"Minimal Header\";s:4:\"name\";s:14:\"minimal-header\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:1538:\"<!-- wp:group {\"metadata\":{\"categories\":[\"woo-commerce\"],\"patternName\":\"woocommerce-blocks/header-minimal\",\"name\":\"Minimal Header\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"right\":\"40px\",\"bottom\":\"24px\",\"left\":\"40px\",\"top\":\"24px\"},\"margin\":{\"top\":\"0px\",\"bottom\":\"0px\"}}},\"className\":\"wc-blocks-pattern-header-minimal wc-blocks-header-pattern sticky-header\",\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group alignfull wc-blocks-pattern-header-minimal wc-blocks-header-pattern sticky-header\" style=\"margin-top:0px;margin-bottom:0px;padding-top:24px;padding-right:40px;padding-bottom:24px;padding-left:40px\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"20px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo {\"shouldSyncIcon\":false,\"className\":\"is-style-default\"} /-->\n\n<!-- wp:site-title {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}}} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"8px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"right\"}} -->\n<div class=\"wp-block-group\"><!-- wp:woocommerce/mini-cart /-->\n\n<!-- wp:navigation {\"ref\":24,\"overlayMenu\":\"always\",\"metadata\":{\"ignoredHookedBlocks\":[\"woocommerce/customer-account\"]},\"layout\":{\"type\":\"flex\",\"justifyContent\":\"left\"}} /-->\n\n<!-- wp:woocommerce/customer-account {\"displayStyle\":\"icon_only\",\"style\":{\"spacing\":{\"margin\":{\"left\":\"0.5em\"}}}} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:1:{i:0;s:11:\"woocommerce\";}s:10:\"categories\";a:1:{s:16:\"_woo_woocommerce\";a:3:{s:4:\"slug\";s:16:\"_woo_woocommerce\";s:5:\"title\";s:16:\"_woo_WooCommerce\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:68:\"https://wooblockpatterns.wpcomstaging.com/2024/06/17/minimal-header/\";s:13:\"modified_date\";s:19:\"2024-06-17 14:14:02\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:80;a:18:{s:2:\"ID\";i:151;s:7:\"site_id\";i:231214916;s:5:\"title\";s:17:\"Large Header Dark\";s:4:\"name\";s:17:\"large-header-dark\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:2045:\"<!-- wp:group {\"metadata\":{\"categories\":[\"woo-commerce\"],\"patternName\":\"woocommerce-blocks/header-large-dark\",\"name\":\"Large Header Dark\"},\"align\":\"full\",\"style\":{\"spacing\":{\"blockGap\":\"0px\",\"padding\":{\"top\":\"1rem\",\"right\":\"1rem\",\"bottom\":\"1rem\",\"left\":\"1rem\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|background\"}}}},\"backgroundColor\":\"black\",\"textColor\":\"white\",\"className\":\"wc-blocks-header-pattern has-background-color\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group alignfull wc-blocks-header-pattern has-background-color has-white-color has-black-background-color has-text-color has-background has-link-color\" style=\"padding-top:1rem;padding-right:1rem;padding-bottom:1rem;padding-left:1rem\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"1rem\"}},\"className\":\"has-small-font-size\",\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group has-small-font-size\"><!-- wp:search {\"label\":\"Search\",\"showLabel\":false,\"placeholder\":\"Search\",\"width\":100,\"widthUnit\":\"%\",\"buttonText\":\"Search\",\"buttonUseIcon\":true,\"query\":{\"post_type\":\"product\"},\"style\":{\"border\":{\"radius\":\"0px\"}}} /-->\n\n<!-- wp:group {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:woocommerce/customer-account {\"displayStyle\":\"icon_only\",\"iconClass\":\"wc-block-customer-account__account-icon\",\"fontSize\":\"small\"} /-->\n\n<!-- wp:woocommerce/mini-cart {\"style\":{\"typography\":{\"fontSize\":\"14px\"}}} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"16px\",\"padding\":{\"top\":\"1rem\",\"left\":\"0px\",\"bottom\":\"2rem\"}}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group\" style=\"padding-top:1rem;padding-bottom:2rem;padding-left:0px\"><!-- wp:site-logo {\"shouldSyncIcon\":false} /-->\n\n<!-- wp:site-title /--></div>\n<!-- /wp:group -->\n\n<!-- wp:navigation {\"ref\":24,\"textColor\":\"background\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} /--></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:1:{i:0;s:11:\"woocommerce\";}s:10:\"categories\";a:1:{s:16:\"_woo_woocommerce\";a:3:{s:4:\"slug\";s:16:\"_woo_woocommerce\";s:5:\"title\";s:16:\"_woo_WooCommerce\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:71:\"https://wooblockpatterns.wpcomstaging.com/2024/06/17/large-header-dark/\";s:13:\"modified_date\";s:19:\"2024-06-17 14:13:31\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:81;a:18:{s:2:\"ID\";i:149;s:7:\"site_id\";i:231214916;s:5:\"title\";s:12:\"Large Header\";s:4:\"name\";s:12:\"large-header\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:2444:\"<!-- wp:group {\"metadata\":{\"categories\":[\"woo-commerce\"],\"patternName\":\"woocommerce-blocks/header-large\",\"name\":\"Large Header\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"right\":\"40px\",\"left\":\"40px\",\"top\":\"24px\",\"bottom\":\"24px\"}}},\"className\":\"wc-blocks-pattern-header-large wc-blocks-header-pattern\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group alignfull wc-blocks-pattern-header-large wc-blocks-header-pattern\" style=\"padding-top:24px;padding-right:40px;padding-bottom:24px;padding-left:40px\"><!-- wp:group {\"align\":\"full\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:columns {\"verticalAlignment\":\"center\",\"isStackedOnMobile\":false,\"align\":\"full\"} -->\n<div class=\"wp-block-columns alignfull are-vertically-aligned-center is-not-stacked-on-mobile\"><!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"70%\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:70%\"><!-- wp:group {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo {\"shouldSyncIcon\":false} /-->\n\n<!-- wp:site-title {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"200px\"}}} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"right\"}} -->\n<div class=\"wp-block-group\"><!-- wp:woocommerce/customer-account {\"displayStyle\":\"icon_only\",\"iconClass\":\"wc-block-customer-account__account-icon\"} /-->\n\n<!-- wp:woocommerce/mini-cart /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"align\":\"full\",\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:navigation {\"ref\":24} /-->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"right\":\"0\",\"left\":\"0\"}}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"padding-right:0;padding-left:0\"><!-- wp:search {\"label\":\"\",\"showLabel\":false,\"placeholder\":\"Search\",\"buttonText\":\"Search\",\"buttonUseIcon\":true,\"query\":{\"post_type\":\"product\"},\"style\":{\"border\":{\"radius\":\"0px\"}}} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:1:{i:0;s:11:\"woocommerce\";}s:10:\"categories\";a:1:{s:16:\"_woo_woocommerce\";a:3:{s:4:\"slug\";s:16:\"_woo_woocommerce\";s:5:\"title\";s:16:\"_woo_WooCommerce\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:66:\"https://wooblockpatterns.wpcomstaging.com/2024/06/17/large-header/\";s:13:\"modified_date\";s:19:\"2024-06-17 14:13:05\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:82;a:18:{s:2:\"ID\";i:147;s:7:\"site_id\";i:231214916;s:5:\"title\";s:21:\"Essential Header Dark\";s:4:\"name\";s:21:\"essential-header-dark\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:1885:\"<!-- wp:group {\"metadata\":{\"categories\":[\"woo-commerce\"],\"patternName\":\"woocommerce-blocks/header-essential-dark\",\"name\":\"Essential Header Dark\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"right\":\"2%\",\"bottom\":\"32px\",\"left\":\"2%\",\"top\":\"32px\"},\"margin\":{\"top\":\"0px\",\"bottom\":\"0px\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|background\"}}}},\"backgroundColor\":\"black\",\"textColor\":\"white\",\"className\":\"wc-blocks-header-pattern sticky-header has-background-color\",\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group alignfull wc-blocks-header-pattern sticky-header has-background-color has-white-color has-black-background-color has-text-color has-background has-link-color\" style=\"margin-top:0px;margin-bottom:0px;padding-top:32px;padding-right:2%;padding-bottom:32px;padding-left:2%\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"40px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo {\"shouldSyncIcon\":false} /-->\n\n<!-- wp:search {\"label\":\"Search\",\"showLabel\":false,\"placeholder\":\"Search\",\"width\":100,\"widthUnit\":\"%\",\"buttonText\":\"Search\",\"buttonUseIcon\":true,\"query\":{\"post_type\":\"product\"},\"style\":{\"border\":{\"radius\":\"0px\"}},\"backgroundColor\":\"contrast-2\"} /-->\n\n<!-- wp:navigation {\"ref\":24,\"textColor\":\"background\",\"overlayTextColor\":\"contrast\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"8px\"},\"layout\":{\"selfStretch\":\"fill\",\"flexSize\":null}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"right\"}} -->\n<div class=\"wp-block-group\"><!-- wp:woocommerce/customer-account {\"displayStyle\":\"icon_only\",\"iconStyle\":\"alt\",\"iconClass\":\"wc-block-customer-account__account-icon\"} /-->\n\n<!-- wp:woocommerce/mini-cart /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:1:{i:0;s:11:\"woocommerce\";}s:10:\"categories\";a:1:{s:16:\"_woo_woocommerce\";a:3:{s:4:\"slug\";s:16:\"_woo_woocommerce\";s:5:\"title\";s:16:\"_woo_WooCommerce\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:75:\"https://wooblockpatterns.wpcomstaging.com/2024/06/17/essential-header-dark/\";s:13:\"modified_date\";s:19:\"2024-06-17 14:12:34\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:83;a:18:{s:2:\"ID\";i:145;s:7:\"site_id\";i:231214916;s:5:\"title\";s:16:\"Essential Header\";s:4:\"name\";s:16:\"essential-header\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:1298:\"<!-- wp:group {\"metadata\":{\"categories\":[\"woo-commerce\"],\"patternName\":\"woocommerce-blocks/header-essential\",\"name\":\"Essential Header\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"40px\",\"bottom\":\"40px\",\"left\":\"40px\",\"right\":\"40px\"}}},\"className\":\"wc-blocks-pattern-header-essential wc-blocks-header-pattern\",\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group alignfull wc-blocks-pattern-header-essential wc-blocks-header-pattern\" style=\"padding-top:40px;padding-right:40px;padding-bottom:40px;padding-left:40px\"><!-- wp:group {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo /--></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"10px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:woocommerce/mini-cart /-->\n\n<!-- wp:woocommerce/customer-account {\"displayStyle\":\"icon_only\",\"iconClass\":\"wc-block-customer-account__account-icon\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:navigation {\"ref\":24,\"style\":{\"spacing\":{\"blockGap\":\"24px\"}}} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:1:{i:0;s:11:\"woocommerce\";}s:10:\"categories\";a:1:{s:16:\"_woo_woocommerce\";a:3:{s:4:\"slug\";s:16:\"_woo_woocommerce\";s:5:\"title\";s:16:\"_woo_WooCommerce\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:70:\"https://wooblockpatterns.wpcomstaging.com/2024/06/17/essential-header/\";s:13:\"modified_date\";s:19:\"2024-06-17 14:12:09\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:84;a:18:{s:2:\"ID\";i:143;s:7:\"site_id\";i:231214916;s:5:\"title\";s:20:\"Centered Header Menu\";s:4:\"name\";s:20:\"centered-header-menu\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:2534:\"<!-- wp:group {\"metadata\":{\"categories\":[\"woo-commerce\"],\"patternName\":\"woocommerce-blocks/header-centered-menu\",\"name\":\"Centered Header Menu\"},\"align\":\"full\",\"className\":\"wc-blocks-pattern-header-centered-menu wc-blocks-header-pattern\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull wc-blocks-pattern-header-centered-menu wc-blocks-header-pattern\"><!-- wp:columns {\"verticalAlignment\":\"center\",\"isStackedOnMobile\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"24px\",\"bottom\":\"24px\",\"left\":\"40px\",\"right\":\"40px\"}}}} -->\n<div class=\"wp-block-columns alignfull are-vertically-aligned-center is-not-stacked-on-mobile\" style=\"padding-top:24px;padding-right:40px;padding-bottom:24px;padding-left:40px\"><!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"70%\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:70%\"><!-- wp:group {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo {\"shouldSyncIcon\":false} /-->\n\n<!-- wp:site-title {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"200px\"},\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}}} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"right\"}} -->\n<div class=\"wp-block-group\"><!-- wp:woocommerce/customer-account {\"displayStyle\":\"icon_only\",\"iconClass\":\"wc-block-customer-account__account-icon\"} /-->\n\n<!-- wp:woocommerce/mini-cart /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:separator {\"align\":\"full\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"0px\",\"bottom\":\"0px\"}}},\"className\":\"is-style-wide\"} -->\n<hr class=\"wp-block-separator alignfull has-alpha-channel-opacity is-style-wide\" style=\"margin-top:0px;margin-bottom:0px\"/>\n<!-- /wp:separator -->\n\n<!-- wp:group {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group\"><!-- wp:navigation {\"ref\":24,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"400\"},\"spacing\":{\"blockGap\":\"30px\"}}} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:separator {\"align\":\"full\",\"className\":\"is-style-wide\"} -->\n<hr class=\"wp-block-separator alignfull has-alpha-channel-opacity is-style-wide\"/>\n<!-- /wp:separator --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:1:{i:0;s:11:\"woocommerce\";}s:10:\"categories\";a:1:{s:16:\"_woo_woocommerce\";a:3:{s:4:\"slug\";s:16:\"_woo_woocommerce\";s:5:\"title\";s:16:\"_woo_WooCommerce\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:74:\"https://wooblockpatterns.wpcomstaging.com/2024/06/17/centered-header-menu/\";s:13:\"modified_date\";s:19:\"2024-06-17 14:11:37\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:85;a:18:{s:2:\"ID\";i:141;s:7:\"site_id\";i:231214916;s:5:\"title\";s:17:\"Footer with menus\";s:4:\"name\";s:17:\"footer-with-menus\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:2902:\"<!-- wp:group {\"metadata\":{\"categories\":[\"woo-commerce\"],\"patternName\":\"woocommerce-blocks/footer-with-3-menus\",\"name\":\"Footer with menus\"},\"align\":\"full\",\"style\":{\"spacing\":{\"blockGap\":\"40px\",\"padding\":{\"top\":\"40px\",\"right\":\"40px\",\"bottom\":\"40px\",\"left\":\"40px\"}}},\"className\":\"wc-blocks-pattern-footer-with-3-menus wc-blocks-footer-pattern\"} -->\n<div class=\"wp-block-group alignfull wc-blocks-pattern-footer-with-3-menus wc-blocks-footer-pattern\" style=\"padding-top:40px;padding-right:40px;padding-bottom:40px;padding-left:40px\"><!-- wp:columns {\"style\":{\"spacing\":{\"padding\":{\"right\":\"0\",\"left\":\"0\"}}},\"className\":\"are-vertically-aligned-top\"} -->\n<div class=\"wp-block-columns are-vertically-aligned-top\" style=\"padding-right:0;padding-left:0\"><!-- wp:column {\"verticalAlignment\":\"top\",\"width\":\"60%\"} -->\n<div class=\"wp-block-column is-vertically-aligned-top\" style=\"flex-basis:60%\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"32px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"verticalAlignment\":\"top\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo /-->\n\n<!-- wp:columns {\"style\":{\"spacing\":{\"blockGap\":{\"left\":\"var:preset|spacing|50\"}},\"layout\":{\"selfStretch\":\"fill\",\"flexSize\":null}}} -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:navigation {\"ref\":24,\"overlayMenu\":\"never\",\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"},\"style\":{\"spacing\":{\"blockGap\":\"10px\"}}} /--></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"10%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:10%\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"stretch\",\"width\":\"30%\",\"style\":{\"spacing\":{\"blockGap\":\"60px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-column is-vertically-aligned-stretch\" style=\"flex-basis:30%\"><!-- wp:search {\"label\":\"Search\",\"showLabel\":false,\"placeholder\":\"Search\",\"width\":100,\"widthUnit\":\"%\",\"buttonText\":\"Search\",\"buttonUseIcon\":true,\"query\":{\"post_type\":\"product\"},\"style\":{\"border\":{\"radius\":\"0px\"}}} /-->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0\",\"padding\":{\"right\":\"0\",\"left\":\"0\"},\"margin\":{\"top\":\"56px\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"right\"}} -->\n<div class=\"wp-block-group\" style=\"margin-top:56px;margin-bottom:0;padding-right:0;padding-left:0\"><!-- wp:site-title {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}}} /-->\n\n<!-- wp:paragraph {\"align\":\"right\"} -->\n<p class=\"has-text-align-right\">\n					Powered by <a href=\"https://wordpress.org\" target=\"_blank\" rel=\"noreferrer nofollow noopener\">WordPress</a> with <a href=\"https://woocommerce.com\" target=\"_blank\" rel=\"noreferrer nofollow noopener\">WooCommerce</a>				</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:16:\"_woo_woocommerce\";a:3:{s:4:\"slug\";s:16:\"_woo_woocommerce\";s:5:\"title\";s:16:\"_woo_WooCommerce\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:71:\"https://wooblockpatterns.wpcomstaging.com/2024/06/17/footer-with-menus/\";s:13:\"modified_date\";s:19:\"2024-06-17 14:11:08\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:86;a:18:{s:2:\"ID\";i:139;s:7:\"site_id\";i:231214916;s:5:\"title\";s:24:\"Footer with 2 Menus Dark\";s:4:\"name\";s:24:\"footer-with-2-menus-dark\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:3670:\"<!-- wp:group {\"metadata\":{\"categories\":[\"woo-commerce\"],\"patternName\":\"woocommerce-blocks/footer-with-2-menus-dark\",\"name\":\"Footer with 2 Menus Dark\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"32px\",\"right\":\"4%\",\"bottom\":\"32px\",\"left\":\"4%\"},\"blockGap\":\"40px\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|background\"}}}},\"backgroundColor\":\"black\",\"textColor\":\"white\",\"className\":\"wc-blocks-footer-pattern has-background-color\"} -->\n<div class=\"wp-block-group alignfull wc-blocks-footer-pattern has-background-color has-white-color has-black-background-color has-text-color has-background has-link-color\" style=\"padding-top:32px;padding-right:4%;padding-bottom:32px;padding-left:4%\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"70%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:70%\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"32px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo {\"shouldSyncIcon\":false} /-->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"8px\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:navigation {\"ref\":24} /-->\n\n<!-- wp:navigation {\"ref\":24} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"blockGap\":\"16px\"}}} -->\n<div class=\"wp-block-column\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"4px\"}},\"textColor\":\"background\",\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group has-background-color has-text-color\"><!-- wp:paragraph {\"textColor\":\"background\",\"fontSize\":\"medium\"} -->\n<p class=\"has-background-color has-text-color has-medium-font-size\"><strong>Join our community</strong>\n				</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"14px\"}}} -->\n<p style=\"font-size:14px\">Learn about new products and discounts!</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:social-links {\"iconColor\":\"background\",\"iconColorValue\":\"#ffffff\",\"className\":\"is-style-logos-only\"} -->\n<ul class=\"wp-block-social-links has-icon-color is-style-logos-only\"><!-- wp:social-link {\"service\":\"facebook\"} /-->\n\n<!-- wp:social-link {\"service\":\"instagram\"} /-->\n\n<!-- wp:social-link {\"service\":\"twitter\"} /--></ul>\n<!-- /wp:social-links --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"blockGap\":\"16px\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|background\"}}}},\"textColor\":\"background\",\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull has-background-color has-text-color has-link-color\" style=\"padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"8px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"12px\"}}} -->\n<p style=\"font-size:12px\">@ 2022</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:site-title {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"fontSize\":\"12px\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|base\"}}}}} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"14px\"}}} -->\n<p style=\"font-size:14px\"><em>\n			Built with <a href=\"https://woocommerce.com/\" target=\"_blank\" rel=\"noreferrer nofollow noopener\">WooCommerce</a>		</em></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:16:\"_woo_woocommerce\";a:3:{s:4:\"slug\";s:16:\"_woo_woocommerce\";s:5:\"title\";s:16:\"_woo_WooCommerce\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:78:\"https://wooblockpatterns.wpcomstaging.com/2024/06/17/footer-with-2-menus-dark/\";s:13:\"modified_date\";s:19:\"2024-06-17 14:10:37\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:87;a:18:{s:2:\"ID\";i:137;s:7:\"site_id\";i:231214916;s:5:\"title\";s:19:\"Footer with 2 Menus\";s:4:\"name\";s:19:\"footer-with-2-menus\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:3013:\"<!-- wp:group {\"metadata\":{\"categories\":[\"woo-commerce\"],\"patternName\":\"woocommerce-blocks/footer-with-2-menus\",\"name\":\"Footer with 2 Menus\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"32px\",\"right\":\"4%\",\"bottom\":\"32px\",\"left\":\"4%\"},\"blockGap\":\"40px\"}},\"className\":\"wc-blocks-footer-pattern\"} -->\n<div class=\"wp-block-group alignfull wc-blocks-footer-pattern\" style=\"padding-top:32px;padding-right:4%;padding-bottom:32px;padding-left:4%\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"70%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:70%\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"32px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo {\"shouldSyncIcon\":false} /-->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"8px\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:navigation {\"ref\":24} /-->\n\n<!-- wp:navigation {\"ref\":24} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"blockGap\":\"16px\"}}} -->\n<div class=\"wp-block-column\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"4px\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"fontSize\":\"medium\"} -->\n<p class=\"has-medium-font-size\"><strong>Join our community</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"14px\"}}} -->\n<p style=\"font-size:14px\">Learn about new products and discounts!</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:social-links {\"className\":\"is-style-logos-only\"} -->\n<ul class=\"wp-block-social-links is-style-logos-only\"><!-- wp:social-link {\"service\":\"facebook\"} /-->\n\n<!-- wp:social-link {\"service\":\"instagram\"} /-->\n\n<!-- wp:social-link {\"service\":\"twitter\"} /--></ul>\n<!-- /wp:social-links --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"blockGap\":\"16px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"8px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"12px\"}}} -->\n<p style=\"font-size:12px\">@ 2022</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:site-title {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"fontSize\":\"12px\"}}} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"14px\"}}} -->\n<p style=\"font-size:14px\"><em>\n			Built with <a href=\"https://woocommerce.com/\" target=\"_blank\" rel=\"noreferrer nofollow noopener\">WooCommerce</a>		</em></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:16:\"_woo_woocommerce\";a:3:{s:4:\"slug\";s:16:\"_woo_woocommerce\";s:5:\"title\";s:16:\"_woo_WooCommerce\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:73:\"https://wooblockpatterns.wpcomstaging.com/2024/06/17/footer-with-2-menus/\";s:13:\"modified_date\";s:19:\"2024-06-17 14:10:01\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:88;a:18:{s:2:\"ID\";i:135;s:7:\"site_id\";i:231214916;s:5:\"title\";s:23:\"Footer with Simple Menu\";s:4:\"name\";s:23:\"footer-with-simple-menu\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:2412:\"<!-- wp:group {\"metadata\":{\"categories\":[\"woo-commerce\"],\"patternName\":\"woocommerce-blocks/footer-simple-menu\",\"name\":\"Footer with Simple Menu\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"40px\",\"bottom\":\"40px\",\"left\":\"40px\",\"right\":\"40px\"}}},\"className\":\"wc-blocks-pattern-footer-simple-menu wc-blocks-footer-pattern\"} -->\n<div class=\"wp-block-group alignfull wc-blocks-pattern-footer-simple-menu wc-blocks-footer-pattern\" style=\"padding-top:40px;padding-right:40px;padding-bottom:40px;padding-left:40px\"><!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"right\":\"0\",\"left\":\"0\"}}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-right:0;padding-left:0\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"24px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:search {\"label\":\"Search\",\"showLabel\":false,\"placeholder\":\"Search\",\"width\":100,\"widthUnit\":\"%\",\"buttonText\":\"Search\",\"buttonUseIcon\":true,\"query\":{\"post_type\":\"product\"},\"style\":{\"border\":{\"radius\":\"0px\"}}} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:navigation {\"ref\":24,\"overlayMenu\":\"never\",\"layout\":{\"type\":\"flex\",\"orientation\":\"horizontal\",\"justifyContent\":\"left\",\"flexWrap\":\"wrap\"},\"style\":{\"spacing\":{\"blockGap\":\"24px\"}}} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:separator {\"align\":\"full\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"var:preset|spacing|40\",\"bottom\":\"var:preset|spacing|40\"}}},\"className\":\"is-style-wide\"} -->\n<hr class=\"wp-block-separator alignfull has-alpha-channel-opacity is-style-wide\" style=\"margin-top:var(--wp--preset--spacing--40);margin-bottom:var(--wp--preset--spacing--40)\"/>\n<!-- /wp:separator -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"5px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"center\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-title /-->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">\n			Powered by <a href=\"https://wordpress.org\" target=\"_blank\" rel=\"noreferrer nofollow noopener\">WordPress</a> with <a href=\"https://woocommerce.com\" target=\"_blank\" rel=\"noreferrer nofollow noopener\">WooCommerce</a>		</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:16:\"_woo_woocommerce\";a:3:{s:4:\"slug\";s:16:\"_woo_woocommerce\";s:5:\"title\";s:16:\"_woo_WooCommerce\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:77:\"https://wooblockpatterns.wpcomstaging.com/2024/06/17/footer-with-simple-menu/\";s:13:\"modified_date\";s:19:\"2024-06-17 14:09:23\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:89;a:18:{s:2:\"ID\";i:133;s:7:\"site_id\";i:231214916;s:5:\"title\";s:18:\"Simple Footer Dark\";s:4:\"name\";s:18:\"simple-footer-dark\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:2951:\"<!-- wp:group {\"metadata\":{\"categories\":[\"woo-commerce\"],\"patternName\":\"woocommerce-blocks/footer-simple-dark\",\"name\":\"Simple Footer Dark\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"32px\",\"right\":\"48px\",\"bottom\":\"32px\",\"left\":\"48px\"},\"blockGap\":\"40px\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|background\"}}}},\"backgroundColor\":\"black\",\"textColor\":\"white\",\"className\":\"wc-blocks-footer-pattern has-background-color\"} -->\n<div class=\"wp-block-group alignfull wc-blocks-footer-pattern has-background-color has-white-color has-black-background-color has-text-color has-background has-link-color\" style=\"padding-top:32px;padding-right:48px;padding-bottom:32px;padding-left:48px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"50%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:50%\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"32px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo /-->\n\n<!-- wp:woocommerce/customer-account {\"fontSize\":\"small\"} /-->\n\n<!-- wp:navigation {\"ref\":24} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"50%\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:50%\"><!-- wp:social-links {\"iconColor\":\"background\",\"iconColorValue\":\"#ffffff\",\"className\":\"is-style-logos-only\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<ul class=\"wp-block-social-links has-icon-color is-style-logos-only\"><!-- wp:social-link {\"service\":\"facebook\"} /-->\n\n<!-- wp:social-link {\"service\":\"instagram\"} /-->\n\n<!-- wp:social-link {\"service\":\"twitter\"} /--></ul>\n<!-- /wp:social-links --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"blockGap\":\"12px\"}},\"textColor\":\"background\",\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull has-background-color has-text-color\" style=\"padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"8px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"12px\"}}} -->\n<p style=\"font-size:12px\">@ 2022</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:site-title {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"fontSize\":\"12px\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|background\"}}}}} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"14px\"}}} -->\n<p style=\"font-size:14px\"><em>\n			Built with <a href=\"https://woocommerce.com/\" target=\"_blank\" rel=\"noreferrer nofollow noopener\">WooCommerce</a>		</em></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:1:{i:0;s:11:\"woocommerce\";}s:10:\"categories\";a:1:{s:16:\"_woo_woocommerce\";a:3:{s:4:\"slug\";s:16:\"_woo_woocommerce\";s:5:\"title\";s:16:\"_woo_WooCommerce\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:72:\"https://wooblockpatterns.wpcomstaging.com/2024/06/17/simple-footer-dark/\";s:13:\"modified_date\";s:19:\"2024-06-17 14:08:48\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:90;a:18:{s:2:\"ID\";i:131;s:7:\"site_id\";i:231214916;s:5:\"title\";s:13:\"Simple Footer\";s:4:\"name\";s:13:\"simple-footer\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:2499:\"<!-- wp:group {\"metadata\":{\"categories\":[\"woo-commerce\"],\"patternName\":\"woocommerce-blocks/footer-simple\",\"name\":\"Simple Footer\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"32px\",\"right\":\"48px\",\"bottom\":\"32px\",\"left\":\"48px\"},\"blockGap\":\"40px\"}},\"className\":\"wc-blocks-footer-pattern\"} -->\n<div class=\"wp-block-group alignfull wc-blocks-footer-pattern\" style=\"padding-top:32px;padding-right:48px;padding-bottom:32px;padding-left:48px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"50%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:50%\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"32px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo /-->\n\n<!-- wp:woocommerce/customer-account {\"fontSize\":\"small\"} /-->\n\n<!-- wp:navigation {\"ref\":24} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"50%\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:50%\"><!-- wp:social-links {\"className\":\"is-style-logos-only\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<ul class=\"wp-block-social-links is-style-logos-only\"><!-- wp:social-link {\"service\":\"facebook\"} /-->\n\n<!-- wp:social-link {\"service\":\"instagram\"} /-->\n\n<!-- wp:social-link {\"service\":\"twitter\"} /--></ul>\n<!-- /wp:social-links --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"blockGap\":\"12px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"8px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"12px\"}}} -->\n<p style=\"font-size:12px\">@ 2022</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:site-title {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"fontSize\":\"12px\"}}} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"14px\"}}} -->\n<p style=\"font-size:14px\"><em>\n			Built with <a href=\"https://woocommerce.com/\" target=\"_blank\" rel=\"noreferrer nofollow noopener\">WooCommerce</a>		</em></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:1:{i:0;s:11:\"woocommerce\";}s:10:\"categories\";a:1:{s:16:\"_woo_woocommerce\";a:3:{s:4:\"slug\";s:16:\"_woo_woocommerce\";s:5:\"title\";s:16:\"_woo_WooCommerce\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:67:\"https://wooblockpatterns.wpcomstaging.com/2024/06/17/simple-footer/\";s:13:\"modified_date\";s:19:\"2024-06-17 14:07:40\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:91;a:18:{s:2:\"ID\";i:129;s:7:\"site_id\";i:231214916;s:5:\"title\";s:17:\"Large Footer Dark\";s:4:\"name\";s:17:\"large-footer-dark\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:4192:\"<!-- wp:group {\"metadata\":{\"categories\":[\"woo-commerce\"],\"patternName\":\"woocommerce-blocks/footer-large-dark\",\"name\":\"Large Footer Dark\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"32px\",\"right\":\"4%\",\"bottom\":\"32px\",\"left\":\"4%\"},\"blockGap\":\"40px\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|background\"}}}},\"backgroundColor\":\"black\",\"textColor\":\"white\",\"className\":\"wc-blocks-footer-pattern has-background-color\"} -->\n<div class=\"wp-block-group alignfull wc-blocks-footer-pattern has-background-color has-white-color has-black-background-color has-text-color has-background has-link-color\" style=\"padding-top:32px;padding-right:4%;padding-bottom:32px;padding-left:4%\"><!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":\"16px\"}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"45%\",\"style\":{\"spacing\":{\"padding\":{\"right\":\"50px\"}}}} -->\n<div class=\"wp-block-column\" style=\"padding-right:50px;flex-basis:45%\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"8px\"}},\"textColor\":\"background\",\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group has-background-color has-text-color\"><!-- wp:site-logo /-->\n\n<!-- wp:spacer {\"height\":\"0px\",\"style\":{\"layout\":{\"flexSize\":\"30px\",\"selfStretch\":\"fixed\"}}} -->\n<div style=\"height:0px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"level\":5} -->\n<h5 class=\"wp-block-heading\">Join the community</h5>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Learn about new products and discounts!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"0px\",\"style\":{\"layout\":{\"flexSize\":\"20px\",\"selfStretch\":\"fixed\"}}} -->\n<div style=\"height:0px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:social-links {\"iconColor\":\"background\",\"iconColorValue\":\"#ffffff\",\"size\":\"has-small-icon-size\",\"className\":\"is-style-logos-only\"} -->\n<ul class=\"wp-block-social-links has-small-icon-size has-icon-color is-style-logos-only\"><!-- wp:social-link {\"url\":\"https://www.facebook.com\",\"service\":\"facebook\"} /-->\n\n<!-- wp:social-link {\"url\":\"https://www.x.com\",\"service\":\"x\"} /-->\n\n<!-- wp:social-link {\"url\":\"https://www.instagram.com\",\"service\":\"instagram\"} /--></ul>\n<!-- /wp:social-links --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"20%\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"0px\"}}}} -->\n<div class=\"wp-block-column\" style=\"padding-top:0px;flex-basis:20%\"><!-- wp:navigation {\"ref\":24,\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} /--></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"top\",\"width\":\"20%\",\"style\":{\"spacing\":{\"blockGap\":\"16px\"}}} -->\n<div class=\"wp-block-column is-vertically-aligned-top\" style=\"flex-basis:20%\"><!-- wp:navigation {\"ref\":24,\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} /--></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"top\",\"width\":\"20%\",\"style\":{\"spacing\":{\"blockGap\":\"16px\"}}} -->\n<div class=\"wp-block-column is-vertically-aligned-top\" style=\"flex-basis:20%\"><!-- wp:woocommerce/customer-account {\"displayStyle\":\"text_only\",\"fontSize\":\"small\"} /--></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"blockGap\":\"10px\"}},\"textColor\":\"background\",\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull has-background-color has-text-color\" style=\"padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"8px\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|background\"}}}},\"textColor\":\"background\",\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group has-background-color has-text-color has-link-color\"><!-- wp:paragraph -->\n<p>@ 2024</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:site-title /--></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph -->\n<p><em>\n			Built with <a href=\"https://woocommerce.com/\" target=\"_blank\" rel=\"noreferrer nofollow noopener\">WooCommerce</a>		</em></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:1:{i:0;s:11:\"woocommerce\";}s:10:\"categories\";a:1:{s:16:\"_woo_woocommerce\";a:3:{s:4:\"slug\";s:16:\"_woo_woocommerce\";s:5:\"title\";s:16:\"_woo_WooCommerce\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:71:\"https://wooblockpatterns.wpcomstaging.com/2024/06/17/large-footer-dark/\";s:13:\"modified_date\";s:19:\"2024-06-17 14:06:19\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:92;a:18:{s:2:\"ID\";i:125;s:7:\"site_id\";i:231214916;s:5:\"title\";s:12:\"Large Footer\";s:4:\"name\";s:12:\"large-footer\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:3605:\"<!-- wp:group {\"metadata\":{\"categories\":[\"woo-commerce\"],\"patternName\":\"woocommerce-blocks/footer-large\",\"name\":\"Large Footer\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"40px\",\"right\":\"40px\",\"bottom\":\"40px\",\"left\":\"40px\"},\"blockGap\":\"40px\"}},\"className\":\"wc-blocks-pattern-footer-large wc-blocks-footer-pattern\"} -->\n<div class=\"wp-block-group alignfull wc-blocks-pattern-footer-large wc-blocks-footer-pattern\" style=\"padding-top:40px;padding-right:40px;padding-bottom:40px;padding-left:40px\"><!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":\"32px\",\"padding\":{\"right\":\"0px\",\"left\":\"0px\"}}}} -->\n<div class=\"wp-block-columns alignwide\" style=\"padding-right:0px;padding-left:0px\"><!-- wp:column {\"width\":\"60%\",\"style\":{\"spacing\":{\"padding\":{\"right\":\"50px\"}}}} -->\n<div class=\"wp-block-column\" style=\"padding-right:50px;flex-basis:60%\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"8px\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo /-->\n\n<!-- wp:heading {\"level\":5,\"style\":{\"typography\":{\"textTransform\":\"none\"},\"spacing\":{\"margin\":{\"top\":\"40px\"}}}} -->\n<h5 class=\"wp-block-heading\" style=\"margin-top:40px;text-transform:none\">Join the community</h5>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"40px\"}}}} -->\n<p style=\"margin-bottom:40px\">Learn about new products and discounts</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:social-links {\"size\":\"has-small-icon-size\",\"style\":{\"spacing\":{\"blockGap\":{\"left\":\"16px\"}}},\"className\":\"is-style-logos-only\"} -->\n<ul class=\"wp-block-social-links has-small-icon-size is-style-logos-only\"><!-- wp:social-link {\"url\":\"https://www.facebook.com\",\"service\":\"facebook\"} /-->\n\n<!-- wp:social-link {\"url\":\"https://www.x.com\",\"service\":\"x\"} /-->\n\n<!-- wp:social-link {\"url\":\"https://www.instagram.com\",\"service\":\"instagram\"} /-->\n\n<!-- wp:social-link {\"url\":\"https://www.twitch.com\",\"service\":\"twitch\"} /--></ul>\n<!-- /wp:social-links --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"20%\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"0px\"}}}} -->\n<div class=\"wp-block-column\" style=\"padding-top:0px;flex-basis:20%\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"top\",\"width\":\"20%\",\"style\":{\"spacing\":{\"blockGap\":\"16px\"}}} -->\n<div class=\"wp-block-column is-vertically-aligned-top\" style=\"flex-basis:20%\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"top\",\"width\":\"20%\",\"style\":{\"spacing\":{\"blockGap\":\"16px\"}}} -->\n<div class=\"wp-block-column is-vertically-aligned-top\" style=\"flex-basis:20%\"><!-- wp:navigation {\"ref\":24,\"overlayMenu\":\"never\",\"layout\":{\"overlayMenu\":\"never\",\"type\":\"flex\",\"orientation\":\"vertical\"},\"style\":{\"spacing\":{\"blockGap\":\"10px\"}}} /--></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"blockGap\":\"10px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px\"><!-- wp:site-title {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}}} /-->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">\n			Powered by <a href=\"https://wordpress.org\" target=\"_blank\" rel=\"noreferrer nofollow noopener\">WordPress</a> with <a href=\"https://woocommerce.com\" target=\"_blank\" rel=\"noreferrer nofollow noopener\">WooCommerce</a>		</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:16:\"_woo_woocommerce\";a:3:{s:4:\"slug\";s:16:\"_woo_woocommerce\";s:5:\"title\";s:16:\"_woo_WooCommerce\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:66:\"https://wooblockpatterns.wpcomstaging.com/2024/06/17/large-footer/\";s:13:\"modified_date\";s:19:\"2024-06-17 14:05:20\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:93;a:18:{s:2:\"ID\";i:119;s:7:\"site_id\";i:231214916;s:5:\"title\";s:36:\"Featured Products: Fresh &amp; Tasty\";s:4:\"name\";s:29:\"featured-products-fresh-tasty\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:5094:\"<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":120,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"align\":\"full\"} -->\n<figure class=\"wp-block-image alignfull size-full\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/06/sweet-organic-lemons.png\" alt=\"\" class=\"wp-image-120\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:columns {\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"0\"},\"margin\":{\"top\":\"5px\",\"bottom\":\"0\"}}}} -->\n<div class=\"wp-block-columns\" style=\"margin-top:5px;margin-bottom:0\"><!-- wp:column {\"width\":\"67%\",\"style\":{\"typography\":{\"fontWeight\":\"600\"}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-column\" style=\"font-weight:600;flex-basis:67%\"><!-- wp:paragraph {\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\">Sweet Organic Lemons</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"33%\",\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"right\"}} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33%\"><!-- wp:paragraph {\"align\":\"left\",\"fontSize\":\"small\"} -->\n<p class=\"has-text-align-left has-small-font-size\">from $1.99</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":121,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"align\":\"full\"} -->\n<figure class=\"wp-block-image alignfull size-full\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/06/fresh-organic-tomatoes.png\" alt=\"\" class=\"wp-image-121\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:columns {\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"0\"},\"margin\":{\"top\":\"5px\",\"bottom\":\"0\"}}}} -->\n<div class=\"wp-block-columns\" style=\"margin-top:5px;margin-bottom:0\"><!-- wp:column {\"width\":\"67%\",\"style\":{\"typography\":{\"fontWeight\":\"600\"}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-column\" style=\"font-weight:600;flex-basis:67%\"><!-- wp:paragraph {\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\">Fresh Organic Tomatoes</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"33%\",\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"right\"}} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33%\"><!-- wp:paragraph {\"align\":\"left\",\"fontSize\":\"small\"} -->\n<p class=\"has-text-align-left has-small-font-size\">from $2.99</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":122,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"align\":\"full\"} -->\n<figure class=\"wp-block-image alignfull size-full\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/06/fresh-lettuce-washed.png\" alt=\"\" class=\"wp-image-122\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:columns {\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"0\"},\"margin\":{\"top\":\"5px\",\"bottom\":\"0\"}}}} -->\n<div class=\"wp-block-columns\" style=\"margin-top:5px;margin-bottom:0\"><!-- wp:column {\"width\":\"67%\",\"style\":{\"typography\":{\"fontWeight\":\"600\"}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-column\" style=\"font-weight:600;flex-basis:67%\"><!-- wp:paragraph {\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\">Fresh Lettuce (Washed)</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"33%\",\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"right\"}} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33%\"><!-- wp:paragraph {\"align\":\"left\",\"fontSize\":\"small\"} -->\n<p class=\"has-text-align-left has-small-font-size\">from $0.99</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":123,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"align\":\"full\"} -->\n<figure class=\"wp-block-image alignfull size-full\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/06/russet-organic-potatoes.png\" alt=\"\" class=\"wp-image-123\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:columns {\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"0\"},\"margin\":{\"top\":\"5px\",\"bottom\":\"0\"}}}} -->\n<div class=\"wp-block-columns\" style=\"margin-top:5px;margin-bottom:0\"><!-- wp:column {\"width\":\"67%\",\"style\":{\"typography\":{\"fontWeight\":\"600\"}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-column\" style=\"font-weight:600;flex-basis:67%\"><!-- wp:paragraph {\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\">Russet Organic Potatoes</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"33%\",\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"right\"}} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33%\"><!-- wp:paragraph {\"align\":\"left\",\"fontSize\":\"small\"} -->\n<p class=\"has-text-align-left has-small-font-size\">from $1.49</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:16:\"_woo_woocommerce\";a:3:{s:4:\"slug\";s:16:\"_woo_woocommerce\";s:5:\"title\";s:16:\"_woo_WooCommerce\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:83:\"https://wooblockpatterns.wpcomstaging.com/2024/06/17/featured-products-fresh-tasty/\";s:13:\"modified_date\";s:19:\"2024-06-17 13:47:45\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:94;a:18:{s:2:\"ID\";i:115;s:7:\"site_id\";i:231214916;s:5:\"title\";s:26:\"Discount Banner with Image\";s:4:\"name\";s:26:\"discount-banner-with-image\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:3270:\"<!-- wp:columns {\"verticalAlignment\":\"center\",\"metadata\":{\"categories\":[\"woo-commerce\"],\"patternName\":\"woocommerce-blocks/discount-banner-with-image\",\"name\":\"Discount Banner with Image\"},\"align\":\"wide\",\"style\":{\"color\":{\"background\":\"#254094\"},\"spacing\":{\"padding\":{\"top\":\"30px\",\"right\":\"30px\",\"bottom\":\"30px\",\"left\":\"30px\"}}}} -->\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center has-background\" style=\"background-color:#254094;padding-top:30px;padding-right:30px;padding-bottom:30px;padding-left:30px\"><!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"15px\"}}},\"layout\":{\"type\":\"constrained\",\"contentSize\":\"350px\"}} -->\n<div class=\"wp-block-group\" style=\"padding-top:15px\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"fontSize\":\"45px\",\"lineHeight\":\"0\"},\"color\":{\"text\":\"#ffffff\"}}} -->\n<p class=\"has-text-color\" style=\"color:#ffffff;font-size:45px;font-style:normal;font-weight:500;line-height:0\">UP TO</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#fdf251\"},\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"800\",\"fontSize\":\"90px\",\"lineHeight\":\"0.8\"}}} -->\n<p class=\"has-text-color\" style=\"color:#fdf251;font-size:90px;font-style:normal;font-weight:800;line-height:0.8\">40% off</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\",\"fontSize\":\"35px\",\"lineHeight\":\"0\"},\"color\":{\"text\":\"#ffffff\"},\"spacing\":{\"margin\":{\"bottom\":\"40px\"}}}} -->\n<p class=\"has-text-color\" style=\"color:#ffffff;margin-bottom:40px;font-size:35px;font-style:normal;font-weight:300;line-height:0\">Select products</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"style\":{\"color\":{\"background\":\"#ff7179\",\"text\":\"#ffffff\"},\"border\":{\"radius\":\"40px\",\"width\":\"0px\",\"style\":\"none\"},\"spacing\":{\"padding\":{\"top\":\"10px\",\"bottom\":\"10px\",\"left\":\"30px\",\"right\":\"30px\"}}}} --><div class=\"wp-block-button\"><a class=\"wp-block-button__link has-text-color has-background wp-element-button\" href=\"https://wooblockpatterns.wpcomstaging.com/shop/\" style=\"border-style:none;border-width:0px;border-radius:40px;color:#ffffff;background-color:#ff7179;padding-top:10px;padding-right:30px;padding-bottom:10px;padding-left:30px\">Shop now</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:image {\"id\":117,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"align\":\"center\",\"style\":{\"border\":{\"radius\":{\"topLeft\":\"100px\",\"topRight\":\"10px\",\"bottomLeft\":\"10px\",\"bottomRight\":\"100px\"}}}} -->\n<figure class=\"wp-block-image aligncenter size-full has-custom-border\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/06/table-floor-interior-atmosphere-living-room-furniture-square-lg.png\" alt=\"\" class=\"wp-image-117\" style=\"border-top-left-radius:100px;border-top-right-radius:10px;border-bottom-left-radius:10px;border-bottom-right-radius:100px\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:16:\"_woo_woocommerce\";a:3:{s:4:\"slug\";s:16:\"_woo_woocommerce\";s:5:\"title\";s:16:\"_woo_WooCommerce\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:80:\"https://wooblockpatterns.wpcomstaging.com/2024/06/17/discount-banner-with-image/\";s:13:\"modified_date\";s:19:\"2024-06-17 13:45:36\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:95;a:18:{s:2:\"ID\";i:113;s:7:\"site_id\";i:231214916;s:5:\"title\";s:15:\"Discount banner\";s:4:\"name\";s:15:\"discount-banner\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:2312:\"<!-- wp:group {\"metadata\":{\"categories\":[\"woo-commerce\"],\"patternName\":\"woocommerce-blocks/discount-banner\",\"name\":\"Discount Banner\"},\"layout\":{\"type\":\"constrained\",\"contentSize\":\"470px\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\"}},\"color\":{\"background\":\"#254094\"}},\"layout\":{\"type\":\"constrained\",\"contentSize\":\"\"}} -->\n<div class=\"wp-block-group has-background\" style=\"background-color:#254094;padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"fontSize\":\"45px\"},\"color\":{\"text\":\"#ffffff\"}}} -->\n<p class=\"has-text-color\" style=\"color:#ffffff;font-size:45px;font-style:normal;font-weight:500\">UP TO</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#fdf251\"},\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"800\",\"fontSize\":\"90px\",\"lineHeight\":\"0.1\"}}} -->\n<p class=\"has-text-color\" style=\"color:#fdf251;font-size:90px;font-style:normal;font-weight:800;line-height:0.1\">40% off</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\",\"fontSize\":\"35px\"},\"color\":{\"text\":\"#ffffff\"}}} -->\n<p class=\"has-text-color\" style=\"color:#ffffff;font-size:35px;font-style:normal;font-weight:300\">Select products</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"style\":{\"color\":{\"background\":\"#ff7179\",\"text\":\"#ffffff\"},\"border\":{\"radius\":\"40px\",\"width\":\"0px\",\"style\":\"none\"},\"spacing\":{\"padding\":{\"top\":\"10px\",\"bottom\":\"10px\",\"left\":\"30px\",\"right\":\"30px\"}}}} --><div class=\"wp-block-button\"><a class=\"wp-block-button__link has-text-color has-background wp-element-button\" href=\"https://wooblockpatterns.wpcomstaging.com/shop/\" style=\"border-style:none;border-width:0px;border-radius:40px;color:#ffffff;background-color:#ff7179;padding-top:10px;padding-right:30px;padding-bottom:10px;padding-left:30px\">\n					Shop now\n				</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:16:\"_woo_woocommerce\";a:3:{s:4:\"slug\";s:16:\"_woo_woocommerce\";s:5:\"title\";s:16:\"_woo_WooCommerce\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:69:\"https://wooblockpatterns.wpcomstaging.com/2024/06/17/discount-banner/\";s:13:\"modified_date\";s:19:\"2024-06-17 13:39:37\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:96;a:18:{s:2:\"ID\";i:99;s:7:\"site_id\";i:231214916;s:5:\"title\";s:23:\"Featured Category Focus\";s:4:\"name\";s:22:\"feature-category-focus\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:1643:\"<!-- wp:group {\"metadata\":{\"categories\":[\"woo-commerce\"],\"patternName\":\"woocommerce-blocks/featured-category-focus\",\"name\":\"Featured Category Focus\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|70\",\"right\":\"var:preset|spacing|70\",\"bottom\":\"var:preset|spacing|70\",\"left\":\"var:preset|spacing|70\"}}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"center\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-top:var(--wp--preset--spacing--70);padding-right:var(--wp--preset--spacing--70);padding-bottom:var(--wp--preset--spacing--70);padding-left:var(--wp--preset--spacing--70)\"><!-- wp:image {\"id\":100,\"width\":\"469px\",\"height\":\"348px\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/06/white-black-black-and-white-photograph-monochrome-photography.jpg\" alt=\"\" class=\"wp-image-100\" style=\"object-fit:cover;width:469px;height:348px\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-large-font-size\">Black and white high-quality prints</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"style\":{\"border\":{\"width\":\"0px\",\"style\":\"none\"}}} --><div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"https://wooblockpatterns.wpcomstaging.com/shop/\" style=\"border-style:none;border-width:0px\">Shop prints</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:21:\"_woo_featured_selling\";a:3:{s:4:\"slug\";s:21:\"_woo_featured_selling\";s:5:\"title\";s:21:\"_woo_featured_selling\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:76:\"https://wooblockpatterns.wpcomstaging.com/2024/06/14/feature-category-focus/\";s:13:\"modified_date\";s:19:\"2024-07-18 16:17:19\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:97;a:18:{s:2:\"ID\";i:90;s:7:\"site_id\";i:231214916;s:5:\"title\";s:27:\"Large Image Product Gallery\";s:4:\"name\";s:27:\"large-image-product-gallery\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:3144:\"<!-- wp:group {\"metadata\":{\"name\":\"Large Image Product Gallery\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:query {\"queryId\":3,\"query\":{\"perPage\":\"4\",\"pages\":0,\"offset\":0,\"postType\":\"product\",\"order\":\"desc\",\"orderBy\":\"date\",\"author\":\"\",\"search\":\"\",\"exclude\":[],\"sticky\":\"\",\"inherit\":false,\"__woocommerceStockStatus\":[\"instock\",\"outofstock\",\"onbackorder\"]},\"namespace\":\"woocommerce/product-query\"} -->\n<div class=\"wp-block-query\"><!-- wp:post-template {\"layout\":{\"type\":\"grid\",\"columnCount\":2},\"__woocommerceNamespace\":\"woocommerce/product-query/product-template\"} -->\n<!-- wp:woocommerce/product-image {\"saleBadgeAlign\":\"left\",\"isDescendentOfQueryLoop\":true,\"aspectRatio\":\"2/3\"} /-->\n\n<!-- wp:post-title {\"textAlign\":\"center\",\"level\":3,\"isLink\":true,\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"0.75rem\",\"top\":\"0\"}}},\"fontSize\":\"medium\",\"__woocommerceNamespace\":\"woocommerce/product-query/product-title\"} /-->\n\n<!-- wp:woocommerce/product-price {\"isDescendentOfQueryLoop\":true,\"textAlign\":\"center\",\"fontSize\":\"small\",\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"0.75rem\"}}}} /-->\n<!-- /wp:post-template --></div>\n<!-- /wp:query -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:1:{i:0;s:11:\"woocommerce\";}s:10:\"categories\";a:1:{s:21:\"_woo_featured_selling\";a:3:{s:4:\"slug\";s:21:\"_woo_featured_selling\";s:5:\"title\";s:21:\"_woo_featured_selling\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:81:\"https://wooblockpatterns.wpcomstaging.com/2024/06/14/large-image-product-gallery/\";s:13:\"modified_date\";s:19:\"2024-07-02 10:55:34\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:98;a:18:{s:2:\"ID\";i:83;s:7:\"site_id\";i:231214916;s:5:\"title\";s:28:\"Product Collection 3 Columns\";s:4:\"name\";s:28:\"product-collection-3-columns\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:3351:\"<!-- wp:group {\"metadata\":{\"name\":\"Product Collection 3 Columns\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:woocommerce/product-collection {\"queryId\":26,\"query\":{\"perPage\":3,\"pages\":0,\"offset\":0,\"postType\":\"product\",\"order\":\"asc\",\"orderBy\":\"title\",\"search\":\"\",\"exclude\":[],\"inherit\":false,\"taxQuery\":[],\"isProductCollectionBlock\":true,\"woocommerceOnSale\":false,\"woocommerceStockStatus\":[\"instock\",\"outofstock\",\"onbackorder\"],\"woocommerceAttributes\":[],\"woocommerceHandPickedProducts\":[]},\"tagName\":\"div\",\"displayLayout\":{\"type\":\"flex\",\"columns\":3},\"queryContextIncludes\":[\"collection\"],\"align\":\"wide\"} -->\n<div class=\"wp-block-woocommerce-product-collection alignwide\"><!-- wp:woocommerce/product-template -->\n<!-- wp:woocommerce/product-image {\"isDescendentOfQueryLoop\":true,\"aspectRatio\":\"3/5\"} /-->\n\n<!-- wp:woocommerce/product-rating {\"isDescendentOfQueryLoop\":true,\"textAlign\":\"center\"} /-->\n\n<!-- wp:post-title {\"textAlign\":\"center\",\"level\":3,\"isLink\":true,\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"0.75rem\",\"top\":\"0\"}}},\"fontSize\":\"medium\",\"__woocommerceNamespace\":\"woocommerce/product-collection/product-title\"} /-->\n\n<!-- wp:woocommerce/product-price {\"isDescendentOfQueryLoop\":true,\"textAlign\":\"center\",\"fontSize\":\"small\"} /-->\n<!-- /wp:woocommerce/product-template --></div>\n<!-- /wp:woocommerce/product-collection -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:1:{i:0;s:11:\"woocommerce\";}s:10:\"categories\";a:1:{s:21:\"_woo_featured_selling\";a:3:{s:4:\"slug\";s:21:\"_woo_featured_selling\";s:5:\"title\";s:21:\"_woo_featured_selling\";s:11:\"description\";s:0:\"\";}}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:82:\"https://wooblockpatterns.wpcomstaging.com/2024/06/14/product-collection-3-columns/\";s:13:\"modified_date\";s:19:\"2024-07-02 10:35:33\";s:12:\"preview_data\";a:0:{}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}}','on'),(9864,'woocommerce_attribute_lookup_enabled','yes','auto'),(9894,'revslider_update_revision_current','6.4.10','auto'),(13897,'woocommerce_task_list_reminder_bar_hidden','yes','auto'),(49628,'_transient_orders-transient-version','1742585559','on'),(60082,'_transient_timeout_wc_product_loop_f181ab9c576a47854f98b9b7c00ec12d','1748779702','off'),(60083,'_transient_wc_product_loop_f181ab9c576a47854f98b9b7c00ec12d','a:2:{s:7:\"version\";s:10:\"1746187686\";s:5:\"value\";O:8:\"stdClass\":5:{s:3:\"ids\";a:10:{i:0;i:3060;i:1;i:3058;i:2;i:3056;i:3;i:1957;i:4;i:1936;i:5;i:1929;i:6;i:1917;i:7;i:1908;i:8;i:1829;i:9;i:1740;}s:5:\"total\";i:10;s:11:\"total_pages\";i:1;s:8:\"per_page\";i:-1;s:12:\"current_page\";i:1;}}','off'),(60084,'_transient_timeout_wc_product_children_1829','1747770028','off'),(60085,'_transient_wc_product_children_1829','a:2:{s:3:\"all\";a:6:{i:0;i:1831;i:1;i:1832;i:2;i:1833;i:3;i:1834;i:4;i:1835;i:5;i:1836;}s:7:\"visible\";a:6:{i:0;i:1831;i:1;i:1832;i:2;i:1833;i:3;i:1834;i:4;i:1835;i:5;i:1836;}}','off'),(60086,'_transient_timeout_wc_var_prices_1829','1748779693','off'),(60087,'_transient_wc_var_prices_1829','{\"version\":\"1746187686\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"1831\":\"25\",\"1832\":\"30\",\"1833\":\"23\",\"1834\":\"30\",\"1835\":\"26\"},\"regular_price\":{\"1831\":\"25\",\"1832\":\"30\",\"1833\":\"23\",\"1834\":\"30\",\"1835\":\"26\"},\"sale_price\":{\"1831\":\"25\",\"1832\":\"30\",\"1833\":\"23\",\"1834\":\"30\",\"1835\":\"26\"}},\"4173c8e28f114c545d779c47fd7e2df1\":{\"price\":{\"1831\":\"25\",\"1832\":\"30\",\"1833\":\"23\",\"1834\":\"30\",\"1835\":\"26\"},\"regular_price\":{\"1831\":\"25\",\"1832\":\"30\",\"1833\":\"23\",\"1834\":\"30\",\"1835\":\"26\"},\"sale_price\":{\"1831\":\"25\",\"1832\":\"30\",\"1833\":\"23\",\"1834\":\"30\",\"1835\":\"26\"}}}','off'),(60214,'_transient_timeout_wc_product_loop_76948baadeb182ff7833b08ae3c7bcef','1748779725','off'),(60215,'_transient_wc_product_loop_76948baadeb182ff7833b08ae3c7bcef','a:2:{s:7:\"version\";s:10:\"1746187686\";s:5:\"value\";O:8:\"stdClass\":5:{s:3:\"ids\";a:9:{i:0;i:1740;i:1;i:1829;i:2;i:1917;i:3;i:1929;i:4;i:1936;i:5;i:1957;i:6;i:3056;i:7;i:3058;i:8;i:3060;}s:5:\"total\";i:9;s:11:\"total_pages\";i:1;s:8:\"per_page\";i:-1;s:12:\"current_page\";i:1;}}','off'),(60364,'_transient_timeout_wc_product_loop_67be7e85c401b0c646b55b1b4eee23e3','1748779710','off'),(60365,'_transient_wc_product_loop_67be7e85c401b0c646b55b1b4eee23e3','a:2:{s:7:\"version\";s:10:\"1746187686\";s:5:\"value\";O:8:\"stdClass\":5:{s:3:\"ids\";a:12:{i:0;i:3060;i:1;i:3058;i:2;i:3056;i:3;i:1957;i:4;i:1936;i:5;i:1929;i:6;i:1917;i:7;i:1908;i:8;i:1880;i:9;i:1849;i:10;i:1829;i:11;i:1740;}s:5:\"total\";i:12;s:11:\"total_pages\";i:1;s:8:\"per_page\";i:-1;s:12:\"current_page\";i:1;}}','off'),(60432,'_transient_timeout_wc_product_loop_c426d357a146a67e36a1527e8067f930','1748779714','off'),(60433,'_transient_wc_product_loop_c426d357a146a67e36a1527e8067f930','a:2:{s:7:\"version\";s:10:\"1746187686\";s:5:\"value\";O:8:\"stdClass\":5:{s:3:\"ids\";a:12:{i:0;i:1740;i:1;i:1829;i:2;i:1849;i:3;i:1880;i:4;i:1908;i:5;i:1917;i:6;i:1929;i:7;i:1936;i:8;i:1957;i:9;i:3056;i:10;i:3058;i:11;i:3060;}s:5:\"total\";i:12;s:11:\"total_pages\";i:1;s:8:\"per_page\";i:-1;s:12:\"current_page\";i:1;}}','off'),(60611,'_transient_timeout_wc_product_loop_ee04de6ebcdb263010b2b9208f0d9ea6','1748779706','off'),(60612,'_transient_wc_product_loop_ee04de6ebcdb263010b2b9208f0d9ea6','a:2:{s:7:\"version\";s:10:\"1746187686\";s:5:\"value\";O:8:\"stdClass\":5:{s:3:\"ids\";a:10:{i:0;i:1740;i:1;i:1829;i:2;i:1849;i:3;i:1917;i:4;i:1929;i:5;i:1936;i:6;i:1957;i:7;i:3056;i:8;i:3058;i:9;i:3060;}s:5:\"total\";i:10;s:11:\"total_pages\";i:1;s:8:\"per_page\";i:-1;s:12:\"current_page\";i:1;}}','off'),(60630,'_transient_timeout_wc_product_loop_7e349dd51ec2e021280e4ec7bb398b72','1748779722','off'),(60631,'_transient_wc_product_loop_7e349dd51ec2e021280e4ec7bb398b72','a:2:{s:7:\"version\";s:10:\"1746187686\";s:5:\"value\";O:8:\"stdClass\":5:{s:3:\"ids\";a:9:{i:0;i:3060;i:1;i:3058;i:2;i:3056;i:3;i:1957;i:4;i:1936;i:5;i:1929;i:6;i:1917;i:7;i:1829;i:8;i:1740;}s:5:\"total\";i:9;s:11:\"total_pages\";i:1;s:8:\"per_page\";i:-1;s:12:\"current_page\";i:1;}}','off'),(61314,'_transient_timeout_wc_product_loop_a42620d5258a57352fc6473fe4ad22ce','1748874175','off'),(61315,'_transient_wc_product_loop_a42620d5258a57352fc6473fe4ad22ce','a:2:{s:7:\"version\";s:10:\"1746187686\";s:5:\"value\";O:8:\"stdClass\":5:{s:3:\"ids\";a:6:{i:0;i:1849;i:1;i:1929;i:2;i:1917;i:3;i:1740;i:4;i:1957;i:5;i:1829;}s:5:\"total\";i:6;s:11:\"total_pages\";i:1;s:8:\"per_page\";i:-1;s:12:\"current_page\";i:1;}}','off'),(64951,'_transient_timeout_wc_customer_bought_product_f286baf7f6902786dea51124da6db7b5','1748779671','off'),(64952,'_transient_wc_customer_bought_product_f286baf7f6902786dea51124da6db7b5','a:2:{s:7:\"version\";s:10:\"1742585559\";s:5:\"value\";a:0:{}}','off'),(64956,'_transient_timeout_wc_term_counts','1748779687','off'),(64957,'_transient_wc_term_counts','a:5:{i:204;s:1:\"3\";i:194;s:2:\"14\";i:208;s:1:\"2\";i:212;s:1:\"7\";i:199;s:1:\"2\";}','off'),(65660,'_transient_timeout_wc_related_1849','1746498363','off'),(65661,'_transient_wc_related_1849','a:1:{s:52:\"limit=3&exclude_ids%5B0%5D=0&exclude_ids%5B1%5D=1849\";a:13:{i:0;s:4:\"1740\";i:1;s:4:\"1829\";i:2;s:4:\"1880\";i:3;s:4:\"1897\";i:4;s:4:\"1908\";i:5;s:4:\"1917\";i:6;s:4:\"1929\";i:7;s:4:\"1936\";i:8;s:4:\"1957\";i:9;s:4:\"3056\";i:10;s:4:\"3058\";i:11;s:4:\"3060\";i:12;s:4:\"3062\";}}','off'),(65736,'_site_transient_timeout_php_check_1a31e573deff9bf63840fe4b3ef8afb9','1747054948','off'),(65737,'_site_transient_php_check_1a31e573deff9bf63840fe4b3ef8afb9','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:6:\"7.2.24\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','off'),(65750,'_transient_timeout_wcpay_incentive_store_has_orders','1746471777','off'),(65751,'_transient_wcpay_incentive_store_has_orders','no','off'),(65752,'_transient_timeout_wcpay_welcome_page_incentive','1746471782','off'),(65753,'_transient_wcpay_welcome_page_incentive','O:8:\"WP_Error\":3:{s:6:\"errors\";a:1:{s:19:\"http_request_failed\";a:1:{i:0;s:58:\"cURL error 28: Resolving timed out after 5000 milliseconds\";}}s:10:\"error_data\";a:0:{}s:18:\"\0*\0additional_data\";a:0:{}}','off'),(65773,'_transient_timeout_wc_related_1908','1746543918','off'),(65774,'_transient_wc_related_1908','a:1:{s:52:\"limit=3&exclude_ids%5B0%5D=0&exclude_ids%5B1%5D=1908\";a:13:{i:0;s:4:\"1740\";i:1;s:4:\"1829\";i:2;s:4:\"1849\";i:3;s:4:\"1880\";i:4;s:4:\"1897\";i:5;s:4:\"1917\";i:6;s:4:\"1929\";i:7;s:4:\"1936\";i:8;s:4:\"1957\";i:9;s:4:\"3056\";i:10;s:4:\"3058\";i:11;s:4:\"3060\";i:12;s:4:\"3062\";}}','off'),(65778,'_transient_timeout_wc_related_3060','1746545111','off'),(65779,'_transient_wc_related_3060','a:1:{s:52:\"limit=3&exclude_ids%5B0%5D=0&exclude_ids%5B1%5D=3060\";a:13:{i:0;s:4:\"1740\";i:1;s:4:\"1829\";i:2;s:4:\"1849\";i:3;s:4:\"1880\";i:4;s:4:\"1897\";i:5;s:4:\"1908\";i:6;s:4:\"1917\";i:7;s:4:\"1929\";i:8;s:4:\"1936\";i:9;s:4:\"1957\";i:10;s:4:\"3056\";i:11;s:4:\"3058\";i:12;s:4:\"3062\";}}','off'),(65802,'_transient_timeout_wc_related_1880','1746553141','off'),(65803,'_transient_wc_related_1880','a:1:{s:52:\"limit=3&exclude_ids%5B0%5D=0&exclude_ids%5B1%5D=1880\";a:13:{i:0;s:4:\"1740\";i:1;s:4:\"1829\";i:2;s:4:\"1849\";i:3;s:4:\"1897\";i:4;s:4:\"1908\";i:5;s:4:\"1917\";i:6;s:4:\"1929\";i:7;s:4:\"1936\";i:8;s:4:\"1957\";i:9;s:4:\"3056\";i:10;s:4:\"3058\";i:11;s:4:\"3060\";i:12;s:4:\"3062\";}}','off'),(65840,'_transient_timeout_wc_related_1829','1746561988','off'),(65841,'_transient_wc_related_1829','a:1:{s:52:\"limit=3&exclude_ids%5B0%5D=0&exclude_ids%5B1%5D=1829\";a:13:{i:0;s:4:\"1740\";i:1;s:4:\"1849\";i:2;s:4:\"1880\";i:3;s:4:\"1897\";i:4;s:4:\"1908\";i:5;s:4:\"1917\";i:6;s:4:\"1929\";i:7;s:4:\"1936\";i:8;s:4:\"1957\";i:9;s:4:\"3056\";i:10;s:4:\"3058\";i:11;s:4:\"3060\";i:12;s:4:\"3062\";}}','off'),(65853,'_transient_timeout_wc_related_3056','1746566118','off'),(65854,'_transient_wc_related_3056','a:1:{s:52:\"limit=3&exclude_ids%5B0%5D=0&exclude_ids%5B1%5D=3056\";a:13:{i:0;s:4:\"1740\";i:1;s:4:\"1829\";i:2;s:4:\"1849\";i:3;s:4:\"1880\";i:4;s:4:\"1897\";i:5;s:4:\"1908\";i:6;s:4:\"1917\";i:7;s:4:\"1929\";i:8;s:4:\"1936\";i:9;s:4:\"1957\";i:10;s:4:\"3058\";i:11;s:4:\"3060\";i:12;s:4:\"3062\";}}','off'),(65904,'_transient_timeout_GFCache_3335679ca4a09d454561722c66048982','1746581242','off'),(65905,'_transient_GFCache_3335679ca4a09d454561722c66048982','a:79:{s:12:\"gravityforms\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:7:\"2.9.7.2\";s:14:\"version_latest\";s:7:\"2.9.7.2\";}s:17:\"gravityforms-beta\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:10:\"2.9.0-rc-1\";s:14:\"version_latest\";s:10:\"2.9.0-rc-1\";}s:21:\"gravityforms2checkout\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"2.4.0\";s:14:\"version_latest\";s:5:\"2.4.0\";}s:26:\"gravityformsactivecampaign\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"2.1.0\";s:14:\"version_latest\";s:5:\"2.1.0\";}s:32:\"gravityformsadvancedpostcreation\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"1.5.0\";s:14:\"version_latest\";s:5:\"1.5.0\";}s:20:\"gravityformsagilecrm\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"1.5.0\";s:14:\"version_latest\";s:5:\"1.5.0\";}s:19:\"gravityformsakismet\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"1.0\";s:14:\"version_latest\";s:5:\"1.0.1\";}s:24:\"gravityformsauthorizenet\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:4:\"2.11\";s:14:\"version_latest\";s:4:\"2.11\";}s:18:\"gravityformsaweber\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"4.1.0\";s:14:\"version_latest\";s:5:\"4.1.0\";}s:21:\"gravityformsbatchbook\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"1.3\";s:14:\"version_latest\";s:3:\"1.3\";}s:18:\"gravityformsbreeze\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"1.7.0\";s:14:\"version_latest\";s:5:\"1.7.0\";}s:22:\"gravityformsbrevo-beta\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:12:\"1.0.0-beta-1\";s:14:\"version_latest\";s:12:\"1.0.0-beta-1\";}s:27:\"gravityformscampaignmonitor\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"4.1.0\";s:14:\"version_latest\";s:5:\"4.1.0\";}s:20:\"gravityformscampfire\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"1.1\";s:14:\"version_latest\";s:5:\"1.2.2\";}s:22:\"gravityformscapsulecrm\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"1.8.0\";s:14:\"version_latest\";s:5:\"1.8.0\";}s:26:\"gravityformschainedselects\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"1.8.0\";s:14:\"version_latest\";s:5:\"1.8.0\";}s:31:\"gravityformschainedselects-beta\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"1.0\";s:14:\"version_latest\";s:12:\"1.0-beta-1.3\";}s:23:\"gravityformscleverreach\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"1.8\";s:14:\"version_latest\";s:3:\"1.8\";}s:15:\"gravityformscli\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:0:\"\";s:14:\"version_latest\";s:3:\"1.5\";}s:27:\"gravityformsconstantcontact\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"1.8.0\";s:14:\"version_latest\";s:5:\"1.8.0\";}s:31:\"gravityformsconversationalforms\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"1.6.0\";s:14:\"version_latest\";s:5:\"1.6.1\";}s:22:\"gravityformsconvertkit\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"1.1.0\";s:14:\"version_latest\";s:5:\"1.1.0\";}s:19:\"gravityformscoupons\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"3.4.0\";s:14:\"version_latest\";s:5:\"3.4.0\";}s:17:\"gravityformsdebug\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:0:\"\";s:14:\"version_latest\";s:10:\"1.0.beta12\";}s:19:\"gravityformsdropbox\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"3.2.0\";s:14:\"version_latest\";s:5:\"3.2.0\";}s:24:\"gravityformsdropbox-beta\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"2.0\";s:14:\"version_latest\";s:12:\"2.0-beta-1.1\";}s:24:\"gravityformsemailoctopus\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"1.4.0\";s:14:\"version_latest\";s:5:\"1.4.0\";}s:16:\"gravityformsemma\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"1.8.0\";s:14:\"version_latest\";s:5:\"1.8.0\";}s:22:\"gravityformsfreshbooks\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"2.8\";s:14:\"version_latest\";s:3:\"2.8\";}s:23:\"gravityformsgeolocation\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"1.4.0\";s:14:\"version_latest\";s:5:\"1.4.0\";}s:23:\"gravityformsgetresponse\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"1.9.0\";s:14:\"version_latest\";s:5:\"1.9.0\";}s:27:\"gravityformsgoogleanalytics\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"2.3.0\";s:14:\"version_latest\";s:5:\"2.3.0\";}s:21:\"gravityformsgutenberg\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:10:\"1.0-rc-1.4\";s:14:\"version_latest\";s:10:\"1.0-rc-1.5\";}s:21:\"gravityformshelpscout\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"2.4.0\";s:14:\"version_latest\";s:5:\"2.4.0\";}s:20:\"gravityformshighrise\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"1.3\";s:14:\"version_latest\";s:3:\"1.3\";}s:19:\"gravityformshipchat\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"1.2\";s:14:\"version_latest\";s:3:\"1.2\";}s:19:\"gravityformshubspot\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"2.2.0\";s:14:\"version_latest\";s:5:\"2.2.0\";}s:20:\"gravityformsicontact\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"1.8.0\";s:14:\"version_latest\";s:5:\"1.8.0\";}s:19:\"gravityformslogging\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"1.3\";s:14:\"version_latest\";s:5:\"1.3.1\";}s:19:\"gravityformsmadmimi\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"1.5.0\";s:14:\"version_latest\";s:5:\"1.5.0\";}s:21:\"gravityformsmailchimp\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"5.6.0\";s:14:\"version_latest\";s:5:\"5.6.0\";}s:22:\"gravityformsmailerlite\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"1.1.0\";s:14:\"version_latest\";s:5:\"1.1.0\";}s:27:\"gravityformsmailerlite-beta\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:12:\"1.0.0-beta-1\";s:14:\"version_latest\";s:12:\"1.0.0-beta-1\";}s:19:\"gravityformsmailgun\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"1.4.0\";s:14:\"version_latest\";s:5:\"1.4.0\";}s:22:\"gravityformsmoderation\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"1.2.0\";s:14:\"version_latest\";s:5:\"1.2.1\";}s:18:\"gravityformsmollie\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"1.7.0\";s:14:\"version_latest\";s:5:\"1.7.0\";}s:26:\"gravityformspartialentries\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"1.7\";s:14:\"version_latest\";s:3:\"1.7\";}s:18:\"gravityformspaypal\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"3.5\";s:14:\"version_latest\";s:3:\"3.5\";}s:33:\"gravityformspaypalexpresscheckout\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:0:\"\";s:14:\"version_latest\";s:0:\"\";}s:29:\"gravityformspaypalpaymentspro\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"2.7\";s:14:\"version_latest\";s:3:\"2.7\";}s:21:\"gravityformspaypalpro\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"1.8.1\";s:14:\"version_latest\";s:5:\"1.8.4\";}s:20:\"gravityformspicatcha\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"2.0\";s:14:\"version_latest\";s:3:\"2.0\";}s:16:\"gravityformspipe\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"1.4.0\";s:14:\"version_latest\";s:5:\"1.4.0\";}s:17:\"gravityformspolls\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"4.3.0\";s:14:\"version_latest\";s:5:\"4.3.0\";}s:20:\"gravityformspostmark\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"1.4.0\";s:14:\"version_latest\";s:5:\"1.4.0\";}s:16:\"gravityformsppcp\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"3.9.0\";s:14:\"version_latest\";s:5:\"3.9.0\";}s:21:\"gravityformsppcp-beta\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:10:\"2.0-beta-3\";s:14:\"version_latest\";s:10:\"2.0-beta-3\";}s:24:\"gravityformsppcp-release\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"2.0\";s:14:\"version_latest\";s:5:\"2.0.2\";}s:16:\"gravityformsquiz\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"4.2.0\";s:14:\"version_latest\";s:5:\"4.2.1\";}s:21:\"gravityformsrecaptcha\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"1.6.0\";s:14:\"version_latest\";s:5:\"1.6.0\";}s:19:\"gravityformsrestapi\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:10:\"2.0-beta-2\";s:14:\"version_latest\";s:10:\"2.0-beta-2\";}s:22:\"gravityformssalesforce\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"1.0.0\";s:14:\"version_latest\";s:5:\"1.0.0\";}s:27:\"gravityformssalesforce-beta\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:12:\"1.0.0-beta-1\";s:14:\"version_latest\";s:12:\"1.0.0-beta-1\";}s:20:\"gravityformssendgrid\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"1.6.0\";s:14:\"version_latest\";s:5:\"1.6.0\";}s:21:\"gravityformssignature\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"4.8.0\";s:14:\"version_latest\";s:5:\"4.8.1\";}s:17:\"gravityformsslack\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"2.1.0\";s:14:\"version_latest\";s:5:\"2.1.0\";}s:18:\"gravityformssquare\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"2.4.0\";s:14:\"version_latest\";s:5:\"2.4.0\";}s:18:\"gravityformsstripe\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"5.9.0\";s:14:\"version_latest\";s:5:\"5.9.0\";}s:23:\"gravityformsstripe-beta\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:10:\"5.0-beta-1\";s:14:\"version_latest\";s:10:\"5.0-beta-1\";}s:18:\"gravityformssurvey\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"4.1.0\";s:14:\"version_latest\";s:5:\"4.1.1\";}s:18:\"gravityformstrello\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"2.1.0\";s:14:\"version_latest\";s:5:\"2.1.0\";}s:21:\"gravityformsturnstile\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"1.4.0\";s:14:\"version_latest\";s:5:\"1.4.0\";}s:18:\"gravityformstwilio\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"3.0.0\";s:14:\"version_latest\";s:5:\"3.0.0\";}s:28:\"gravityformsuserregistration\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"5.4.0\";s:14:\"version_latest\";s:5:\"5.4.0\";}s:20:\"gravityformswebhooks\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"1.7.0\";s:14:\"version_latest\";s:5:\"1.7.0\";}s:18:\"gravityformszapier\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"4.4.0\";s:14:\"version_latest\";s:5:\"4.4.0\";}s:23:\"gravityformszapier-beta\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:10:\"4.0-beta-2\";s:14:\"version_latest\";s:10:\"4.0-beta-2\";}s:19:\"gravityformszohocrm\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"2.3.0\";s:14:\"version_latest\";s:5:\"2.3.0\";}s:11:\"gravitysmtp\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"1.9.1\";s:14:\"version_latest\";s:5:\"1.9.1\";}}','off'),(65906,'_site_transient_timeout_envato_market_plugins','1746498455','off'),(65907,'_site_transient_envato_market_plugins','a:4:{s:9:\"purchased\";a:0:{}s:6:\"active\";a:0:{}s:9:\"installed\";a:0:{}s:7:\"install\";a:0:{}}','off'),(65908,'_transient_timeout_acf_plugin_updates','1746667643','off'),(65909,'_transient_acf_plugin_updates','a:5:{s:7:\"plugins\";a:1:{s:34:\"advanced-custom-fields-pro/acf.php\";a:11:{s:4:\"slug\";s:26:\"advanced-custom-fields-pro\";s:6:\"plugin\";s:34:\"advanced-custom-fields-pro/acf.php\";s:11:\"new_version\";s:7:\"6.4.0.1\";s:3:\"url\";s:36:\"https://www.advancedcustomfields.com\";s:6:\"tested\";s:5:\"6.8.1\";s:7:\"package\";s:0:\"\";s:5:\"icons\";a:1:{s:7:\"default\";s:64:\"https://connect.advancedcustomfields.com/assets/icon-256x256.png\";}s:7:\"banners\";a:2:{s:3:\"low\";s:66:\"https://connect.advancedcustomfields.com/assets/banner-772x250.jpg\";s:4:\"high\";s:67:\"https://connect.advancedcustomfields.com/assets/banner-1544x500.jpg\";}s:8:\"requires\";s:3:\"6.0\";s:12:\"requires_php\";s:3:\"7.4\";s:12:\"release_date\";s:8:\"20250408\";}}s:9:\"no_update\";a:0:{}s:10:\"expiration\";i:172800;s:6:\"status\";i:1;s:7:\"checked\";a:1:{s:34:\"advanced-custom-fields-pro/acf.php\";s:5:\"6.3.9\";}}','off'),(65910,'_transient_timeout__woocommerce_helper_subscriptions','1746495743','off'),(65911,'_transient__woocommerce_helper_subscriptions','a:0:{}','off'),(65912,'_site_transient_timeout_theme_roots','1746496643','off'),(65913,'_site_transient_theme_roots','a:4:{s:8:\"iacademy\";s:7:\"/themes\";s:16:\"twentytwentyfour\";s:7:\"/themes\";s:17:\"twentytwentythree\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";}','off'),(65914,'_site_transient_timeout_envato_market_themes','1746498450','off'),(65915,'_site_transient_envato_market_themes','a:4:{s:9:\"purchased\";a:0:{}s:6:\"active\";a:0:{}s:9:\"installed\";a:0:{}s:7:\"install\";a:0:{}}','off'),(65918,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:5:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:62:\"https://downloads.wordpress.org/release/vi/wordpress-6.8.1.zip\";s:6:\"locale\";s:2:\"vi\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:62:\"https://downloads.wordpress.org/release/vi/wordpress-6.8.1.zip\";s:10:\"no_content\";s:0:\"\";s:11:\"new_bundled\";s:0:\"\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.8.1\";s:7:\"version\";s:5:\"6.8.1\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";}i:1;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.8.1.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.8.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.8.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.8.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.8.1\";s:7:\"version\";s:5:\"6.8.1\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";}i:2;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:62:\"https://downloads.wordpress.org/release/vi/wordpress-6.8.1.zip\";s:6:\"locale\";s:2:\"vi\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:62:\"https://downloads.wordpress.org/release/vi/wordpress-6.8.1.zip\";s:10:\"no_content\";s:0:\"\";s:11:\"new_bundled\";s:0:\"\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.8.1\";s:7:\"version\";s:5:\"6.8.1\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:3;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:62:\"https://downloads.wordpress.org/release/vi/wordpress-6.7.2.zip\";s:6:\"locale\";s:2:\"vi\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:62:\"https://downloads.wordpress.org/release/vi/wordpress-6.7.2.zip\";s:10:\"no_content\";s:0:\"\";s:11:\"new_bundled\";s:0:\"\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.7.2\";s:7:\"version\";s:5:\"6.7.2\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:4;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:62:\"https://downloads.wordpress.org/release/vi/wordpress-6.7.1.zip\";s:6:\"locale\";s:2:\"vi\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:62:\"https://downloads.wordpress.org/release/vi/wordpress-6.7.1.zip\";s:10:\"no_content\";s:0:\"\";s:11:\"new_bundled\";s:0:\"\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.7.1\";s:7:\"version\";s:5:\"6.7.1\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}}s:12:\"last_checked\";i:1746494850;s:15:\"version_checked\";s:5:\"6.6.2\";s:12:\"translations\";a:0:{}}','off'),(65919,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1746494850;s:7:\"checked\";a:4:{s:8:\"iacademy\";s:3:\"1.7\";s:16:\"twentytwentyfour\";s:3:\"1.1\";s:17:\"twentytwentythree\";s:3:\"1.4\";s:15:\"twentytwentytwo\";s:3:\"1.7\";}s:8:\"response\";a:3:{s:16:\"twentytwentyfour\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfour\";s:11:\"new_version\";s:3:\"1.3\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfour/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfour.1.3.zip\";s:8:\"requires\";s:3:\"6.4\";s:12:\"requires_php\";s:3:\"7.0\";}s:17:\"twentytwentythree\";a:6:{s:5:\"theme\";s:17:\"twentytwentythree\";s:11:\"new_version\";s:3:\"1.6\";s:3:\"url\";s:47:\"https://wordpress.org/themes/twentytwentythree/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/twentytwentythree.1.6.zip\";s:8:\"requires\";s:3:\"6.1\";s:12:\"requires_php\";s:3:\"5.6\";}s:15:\"twentytwentytwo\";a:6:{s:5:\"theme\";s:15:\"twentytwentytwo\";s:11:\"new_version\";s:3:\"2.0\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.2.0.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:{}}','off'),(65920,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1746494853;s:8:\"response\";a:8:{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.7\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.5.3.7.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.8.1\";s:12:\"requires_php\";s:6:\"5.6.20\";s:16:\"requires_plugins\";a:0:{}}s:19:\"bbpress/bbpress.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:21:\"w.org/plugins/bbpress\";s:4:\"slug\";s:7:\"bbpress\";s:6:\"plugin\";s:19:\"bbpress/bbpress.php\";s:11:\"new_version\";s:6:\"2.6.13\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/bbpress/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/bbpress.2.6.13.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:51:\"https://ps.w.org/bbpress/assets/icon.svg?rev=978290\";s:3:\"svg\";s:51:\"https://ps.w.org/bbpress/assets/icon.svg?rev=978290\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:62:\"https://ps.w.org/bbpress/assets/banner-1544x500.png?rev=567403\";s:2:\"1x\";s:61:\"https://ps.w.org/bbpress/assets/banner-772x250.png?rev=478663\";}s:11:\"banners_rtl\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/bbpress/assets/banner-1544x500-rtl.png?rev=1534011\";s:2:\"1x\";s:66:\"https://ps.w.org/bbpress/assets/banner-772x250-rtl.png?rev=1534011\";}s:8:\"requires\";s:3:\"6.0\";s:6:\"tested\";s:3:\"6.9\";s:12:\"requires_php\";s:6:\"5.6.20\";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:\"6.0.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.6.0.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.6\";s:6:\"tested\";s:5:\"6.8.1\";s:12:\"requires_php\";s:3:\"7.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:5:\"2.7.2\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/loco-translate/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/loco-translate.2.7.2.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:\"6.6\";s:6:\"tested\";s:5:\"6.7.2\";s:12:\"requires_php\";s:6:\"7.2.24\";s:16:\"requires_plugins\";a:0:{}s:14:\"upgrade_notice\";s:54:\"<ul>\n<li>Various improvements and bug fixes</li>\n</ul>\";}s:43:\"the-events-calendar/the-events-calendar.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:33:\"w.org/plugins/the-events-calendar\";s:4:\"slug\";s:19:\"the-events-calendar\";s:6:\"plugin\";s:43:\"the-events-calendar/the-events-calendar.php\";s:11:\"new_version\";s:8:\"6.11.2.1\";s:3:\"url\";s:50:\"https://wordpress.org/plugins/the-events-calendar/\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.6.11.2.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/the-events-calendar/assets/icon-256x256.gif?rev=2516440\";s:2:\"1x\";s:72:\"https://ps.w.org/the-events-calendar/assets/icon-128x128.gif?rev=2516440\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:75:\"https://ps.w.org/the-events-calendar/assets/banner-1544x500.png?rev=2257622\";s:2:\"1x\";s:74:\"https://ps.w.org/the-events-calendar/assets/banner-772x250.png?rev=2257622\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.5\";s:6:\"tested\";s:5:\"6.7.2\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}}s:27:\"woocommerce/woocommerce.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:25:\"w.org/plugins/woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:6:\"plugin\";s:27:\"woocommerce/woocommerce.php\";s:11:\"new_version\";s:5:\"9.8.3\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/woocommerce/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.8.3.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:56:\"https://ps.w.org/woocommerce/assets/icon.svg?rev=3234504\";s:3:\"svg\";s:56:\"https://ps.w.org/woocommerce/assets/icon.svg?rev=3234504\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/woocommerce/assets/banner-1544x500.png?rev=3234504\";s:2:\"1x\";s:66:\"https://ps.w.org/woocommerce/assets/banner-772x250.png?rev=3234504\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.6\";s:6:\"tested\";s:5:\"6.8.1\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}}s:27:\"js_composer/js_composer.php\";O:8:\"stdClass\":6:{s:4:\"slug\";s:11:\"js_composer\";s:11:\"new_version\";s:5:\"8.4.1\";s:6:\"plugin\";s:27:\"js_composer/js_composer.php\";s:3:\"url\";s:0:\"\";s:7:\"package\";b:0;s:4:\"name\";s:21:\"WPBakery Page Builder\";}s:34:\"advanced-custom-fields-pro/acf.php\";O:8:\"stdClass\":11:{s:4:\"slug\";s:26:\"advanced-custom-fields-pro\";s:6:\"plugin\";s:34:\"advanced-custom-fields-pro/acf.php\";s:11:\"new_version\";s:7:\"6.4.0.1\";s:3:\"url\";s:36:\"https://www.advancedcustomfields.com\";s:6:\"tested\";s:5:\"6.8.1\";s:7:\"package\";s:0:\"\";s:5:\"icons\";a:1:{s:7:\"default\";s:64:\"https://connect.advancedcustomfields.com/assets/icon-256x256.png\";}s:7:\"banners\";a:2:{s:3:\"low\";s:66:\"https://connect.advancedcustomfields.com/assets/banner-772x250.jpg\";s:4:\"high\";s:67:\"https://connect.advancedcustomfields.com/assets/banner-1544x500.jpg\";}s:8:\"requires\";s:3:\"6.0\";s:12:\"requires_php\";s:3:\"7.4\";s:12:\"release_date\";s:8:\"20250408\";}}s:12:\"translations\";a:5:{i:0;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:7:\"bbpress\";s:8:\"language\";s:2:\"vi\";s:7:\"version\";s:6:\"2.6.11\";s:7:\"updated\";s:19:\"2019-11-14 23:43:56\";s:7:\"package\";s:72:\"https://downloads.wordpress.org/translation/plugin/bbpress/2.6.11/vi.zip\";s:10:\"autoupdate\";b:1;}i:1;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:14:\"contact-form-7\";s:8:\"language\";s:2:\"vi\";s:7:\"version\";s:5:\"5.9.8\";s:7:\"updated\";s:19:\"2024-08-11 13:44:17\";s:7:\"package\";s:78:\"https://downloads.wordpress.org/translation/plugin/contact-form-7/5.9.8/vi.zip\";s:10:\"autoupdate\";b:1;}i:2;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:11:\"hello-dolly\";s:8:\"language\";s:2:\"vi\";s:7:\"version\";s:5:\"1.7.2\";s:7:\"updated\";s:19:\"2019-11-12 11:26:07\";s:7:\"package\";s:75:\"https://downloads.wordpress.org/translation/plugin/hello-dolly/1.7.2/vi.zip\";s:10:\"autoupdate\";b:1;}i:3;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:14:\"loco-translate\";s:8:\"language\";s:2:\"vi\";s:7:\"version\";s:6:\"2.6.11\";s:7:\"updated\";s:19:\"2024-09-03 14:06:23\";s:7:\"package\";s:79:\"https://downloads.wordpress.org/translation/plugin/loco-translate/2.6.11/vi.zip\";s:10:\"autoupdate\";b:1;}i:4;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:11:\"woocommerce\";s:8:\"language\";s:2:\"vi\";s:7:\"version\";s:5:\"9.3.3\";s:7:\"updated\";s:19:\"2024-11-06 09:50:18\";s:7:\"package\";s:75:\"https://downloads.wordpress.org/translation/plugin/woocommerce/9.3.3/vi.zip\";s:10:\"autoupdate\";b:1;}}s:9:\"no_update\";a:1:{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:18:{s:34:\"advanced-custom-fields-pro/acf.php\";s:5:\"6.3.9\";s:19:\"akismet/akismet.php\";s:5:\"5.3.2\";s:19:\"bbpress/bbpress.php\";s:6:\"2.6.11\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:5:\"5.9.8\";s:31:\"envato-market/envato-market.php\";s:6:\"2.0.12\";s:29:\"gravityforms/gravityforms.php\";s:6:\"2.7.17\";s:9:\"hello.php\";s:5:\"1.7.2\";s:23:\"loco-translate/loco.php\";s:6:\"2.6.11\";s:18:\"mkdf-core/main.php\";s:3:\"1.4\";s:43:\"mkdf-instagram-feed/mkdf-instagram-feed.php\";s:5:\"2.0.1\";s:17:\"mkdf-lms/main.php\";s:5:\"1.2.2\";s:35:\"mkdf-membership/mkdf-membership.php\";s:5:\"1.1.2\";s:39:\"mkdf-twitter-feed/mkdf-twitter-feed.php\";s:5:\"1.0.3\";s:54:\"mkdf-checkout/mkdf-woocomerce-checkout-integration.php\";s:5:\"1.0.1\";s:23:\"revslider/revslider.php\";s:6:\"6.4.11\";s:43:\"the-events-calendar/the-events-calendar.php\";s:5:\"6.7.0\";s:27:\"woocommerce/woocommerce.php\";s:5:\"9.3.3\";s:27:\"js_composer/js_composer.php\";s:5:\"6.6.0\";}}','off'),(65948,'_site_transient_timeout_wp_theme_files_patterns-0d40efe5b3a5bdf3b7465485256ba9f5','1746520271','off'),(65949,'_site_transient_wp_theme_files_patterns-0d40efe5b3a5bdf3b7465485256ba9f5','a:2:{s:7:\"version\";s:3:\"1.7\";s:8:\"patterns\";a:0:{}}','off');
/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_postmeta`
--

DROP TABLE IF EXISTS `wp_postmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_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=15823 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_postmeta`
--

LOCK TABLES `wp_postmeta` WRITE;
/*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */;
INSERT INTO `wp_postmeta` VALUES (1,2,'_wp_page_template','default'),(2,3,'_wp_page_template','default'),(13,1,'_mkd-like','0'),(14,12,'_form','<label> Your name\n    [text* your-name autocomplete:name] </label>\n\n<label> Your email\n    [email* your-email autocomplete:email] </label>\n\n<label> Subject\n    [text* your-subject] </label>\n\n<label> Your message (optional)\n    [textarea your-message] </label>\n\n[submit \"Submit\"]'),(15,12,'_mail','a:8:{s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:31:\"[_site_title] <ductai2982@gmail.com>\";s:4:\"body\";s:191:\"From: [your-name] [your-email]\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis is a notification that a contact form was submitted on your website ([_site_title] [_site_url]).\";s:9:\"recipient\";s:19:\"[_site_admin_email]\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),(16,12,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:31:\"[_site_title] <ductai2982@gmail.com>\";s:4:\"body\";s:220:\"Message Body:\n[your-message]\n\n-- \nThis email is a receipt for your contact form submission on our website ([_site_title] [_site_url]) in which your email address was used. If that was not you, please ignore this message.\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:29:\"Reply-To: [_site_admin_email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),(17,12,'_messages','a:12:{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.\";}'),(18,12,'_additional_settings',''),(19,12,'_locale','vi'),(20,12,'_hash','c48c46bf90b5acb04f3d39a6fc5720d2cf7427a0'),(21,13,'_wp_attached_file','woocommerce-placeholder.png'),(22,13,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:4:\"file\";s:27:\"woocommerce-placeholder.png\";s:8:\"filesize\";i:48149;s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:35:\"woocommerce-placeholder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12321;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2330;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:38159;}s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12321;}s:5:\"large\";a:5:{s:4:\"file\";s:37:\"woocommerce-placeholder-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:90808;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4209;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:56643;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-550x550.png\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32842;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-350x282.png\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15216;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:36:\"woocommerce-placeholder-1100x550.png\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:99123;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:36:\"woocommerce-placeholder-550x1100.png\";s:5:\"width\";i:550;s:6:\"height\";i:1100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:96469;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:37:\"woocommerce-placeholder-1100x1100.png\";s:5:\"width\";i:1100;s:6:\"height\";i:1100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:104499;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23,1584,'_wp_attached_file','2017/06/h3-slide-2-background.jpg'),(24,1584,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:851;s:4:\"file\";s:33:\"2017/06/h3-slide-2-background.jpg\";s:8:\"filesize\";i:97781;s:5:\"sizes\";a:13:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:33:\"h3-slide-2-background-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12532;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:33:\"h3-slide-2-background-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3163;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:33:\"h3-slide-2-background-600x266.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19581;}s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"h3-slide-2-background-300x133.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:133;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7730;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"h3-slide-2-background-1024x454.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:454;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42986;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"h3-slide-2-background-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5012;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"h3-slide-2-background-768x340.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27924;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:34:\"h3-slide-2-background-1536x681.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:80262;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:33:\"h3-slide-2-background-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30948;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:33:\"h3-slide-2-background-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13767;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:34:\"h3-slide-2-background-1100x550.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53460;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:33:\"h3-slide-2-background-550x851.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:851;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47250;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:34:\"h3-slide-2-background-1100x851.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:851;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:80305;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(25,37,'_wp_attached_file','2017/05/page-background-img.png'),(26,37,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1100;s:4:\"file\";s:31:\"2017/05/page-background-img.png\";s:8:\"filesize\";i:30132;s:5:\"sizes\";a:13:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:31:\"page-background-img-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5595;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:31:\"page-background-img-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1412;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:31:\"page-background-img-600x344.png\";s:5:\"width\";i:600;s:6:\"height\";i:344;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11837;}s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"page-background-img-300x172.png\";s:5:\"width\";i:300;s:6:\"height\";i:172;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4511;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"page-background-img-1024x587.png\";s:5:\"width\";i:1024;s:6:\"height\";i:587;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23507;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"page-background-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:2310;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"page-background-img-768x440.png\";s:5:\"width\";i:768;s:6:\"height\";i:440;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15880;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:32:\"page-background-img-1536x880.png\";s:5:\"width\";i:1536;s:6:\"height\";i:880;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41600;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:31:\"page-background-img-550x550.png\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12098;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:31:\"page-background-img-350x282.png\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6371;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:32:\"page-background-img-1100x550.png\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22444;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:32:\"page-background-img-550x1100.png\";s:5:\"width\";i:550;s:6:\"height\";i:1100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17345;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:33:\"page-background-img-1100x1100.png\";s:5:\"width\";i:1100;s:6:\"height\";i:1100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30833;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27,1505,'_wp_attached_file','2017/06/h8-img-1.jpg'),(28,1898,'_wp_attached_file','2017/06/product-3.jpg'),(29,1505,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:483;s:4:\"file\";s:20:\"2017/06/h8-img-1.jpg\";s:8:\"filesize\";i:97439;s:5:\"sizes\";a:9:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:20:\"h8-img-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19869;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:20:\"h8-img-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3976;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:20:\"h8-img-1-600x362.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:362;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43486;}s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"h8-img-1-300x181.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:181;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13698;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"h8-img-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:6744;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"h8-img-1-768x464.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65013;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:20:\"h8-img-1-550x483.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:483;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55443;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:20:\"h8-img-1-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21894;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:20:\"h8-img-1-550x483.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:483;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55443;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,1898,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:722;s:4:\"file\";s:21:\"2017/06/product-3.jpg\";s:8:\"filesize\";i:40050;s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:21:\"product-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9523;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:21:\"product-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2292;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:21:\"product-3-600x542.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21271;}s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"product-3-300x271.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7882;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"product-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3814;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"product-3-768x693.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:693;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30726;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:21:\"product-3-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21543;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:21:\"product-3-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9984;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:21:\"product-3-800x550.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31772;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:21:\"product-3-550x722.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:722;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31126;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(31,273,'_wp_attached_file','2017/05/course-5-f-img.jpg'),(32,273,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:639;s:4:\"file\";s:26:\"2017/05/course-5-f-img.jpg\";s:8:\"filesize\";i:91225;s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"course-5-f-img-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18073;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"course-5-f-img-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3760;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:26:\"course-5-f-img-600x383.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:383;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40085;}s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"course-5-f-img-300x192.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13133;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"course-5-f-img-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6399;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"course-5-f-img-768x491.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:491;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59649;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:26:\"course-5-f-img-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45967;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:26:\"course-5-f-img-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20769;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:27:\"course-5-f-img-1000x550.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88366;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:26:\"course-5-f-img-550x639.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:639;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50155;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(33,1505,'_wp_attachment_image_alt','a'),(34,704,'_wp_attached_file','2017/05/h12-process-img-2.png'),(35,704,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:193;s:6:\"height\";i:193;s:4:\"file\";s:29:\"2017/05/h12-process-img-2.png\";s:8:\"filesize\";i:65590;s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:29:\"h12-process-img-2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17342;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"h12-process-img-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:34892;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,704,'_wp_attachment_image_alt','a'),(37,273,'_wp_attachment_image_alt','a'),(38,1898,'_wp_attachment_image_alt','a'),(39,1584,'_wp_attachment_image_alt','a'),(40,37,'_wp_attachment_image_alt','a'),(41,1899,'_wp_attached_file','2017/06/product-3-gallery-1.jpg'),(42,1899,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:542;s:4:\"file\";s:31:\"2017/06/product-3-gallery-1.jpg\";s:8:\"filesize\";i:23244;s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:31:\"product-3-gallery-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7773;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:31:\"product-3-gallery-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2176;}s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"product-3-gallery-1-300x271.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6921;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"product-3-gallery-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:3301;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:31:\"product-3-gallery-1-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18688;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:31:\"product-3-gallery-1-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7557;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:31:\"product-3-gallery-1-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18688;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(43,275,'_wp_attached_file','2017/05/course-6-f-img.jpg'),(44,275,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:639;s:4:\"file\";s:26:\"2017/05/course-6-f-img.jpg\";s:8:\"filesize\";i:81180;s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"course-6-f-img-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14953;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"course-6-f-img-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3337;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:26:\"course-6-f-img-600x383.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:383;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30765;}s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"course-6-f-img-300x192.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10953;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"course-6-f-img-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5572;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"course-6-f-img-768x491.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:491;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44212;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:26:\"course-6-f-img-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37094;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:26:\"course-6-f-img-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16477;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:27:\"course-6-f-img-1000x550.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64701;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:26:\"course-6-f-img-550x639.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:639;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43271;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(45,1585,'_wp_attached_file','2017/06/h3-slide-3-background.jpg'),(46,1585,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:851;s:4:\"file\";s:33:\"2017/06/h3-slide-3-background.jpg\";s:8:\"filesize\";i:100731;s:5:\"sizes\";a:13:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:33:\"h3-slide-3-background-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14775;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:33:\"h3-slide-3-background-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3382;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:33:\"h3-slide-3-background-600x266.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23013;}s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"h3-slide-3-background-300x133.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:133;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8545;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"h3-slide-3-background-1024x454.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:454;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52267;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"h3-slide-3-background-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5507;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"h3-slide-3-background-768x340.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33563;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:34:\"h3-slide-3-background-1536x681.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:99722;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:33:\"h3-slide-3-background-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37120;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:33:\"h3-slide-3-background-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16298;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:34:\"h3-slide-3-background-1100x550.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66114;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:33:\"h3-slide-3-background-550x851.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:851;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48540;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:34:\"h3-slide-3-background-1100x851.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:851;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:100839;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(47,1899,'_wp_attachment_image_alt','a'),(48,275,'_wp_attachment_image_alt','a'),(49,42,'_wp_attached_file','2017/05/instructor-img-1.jpg'),(50,42,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:28:\"2017/05/instructor-img-1.jpg\";s:8:\"filesize\";i:53285;s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:28:\"instructor-img-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13590;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:28:\"instructor-img-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3014;}s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"instructor-img-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13590;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"instructor-img-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:4990;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:28:\"instructor-img-1-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34100;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:28:\"instructor-img-1-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14053;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:28:\"instructor-img-1-600x550.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39442;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:28:\"instructor-img-1-550x600.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41015;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,42,'_wp_attachment_image_alt','a'),(52,1585,'_wp_attachment_image_alt','a'),(53,705,'_wp_attached_file','2017/05/h12-process-img-3.png'),(54,705,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:283;s:6:\"height\";i:283;s:4:\"file\";s:29:\"2017/05/h12-process-img-3.png\";s:8:\"filesize\";i:158989;s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:29:\"h12-process-img-3-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20032;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"h12-process-img-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:40844;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(55,705,'_wp_attachment_image_alt','a'),(56,1506,'_wp_attached_file','2017/06/h8-img-2.jpg'),(57,1506,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:483;s:4:\"file\";s:20:\"2017/06/h8-img-2.jpg\";s:8:\"filesize\";i:62414;s:5:\"sizes\";a:9:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:20:\"h8-img-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17688;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:20:\"h8-img-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3409;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:20:\"h8-img-2-600x362.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:362;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28904;}s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"h8-img-2-300x181.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:181;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9790;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"h8-img-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:5915;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"h8-img-2-768x464.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41729;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:20:\"h8-img-2-550x483.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:483;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43340;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:20:\"h8-img-2-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17579;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:20:\"h8-img-2-550x483.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:483;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43340;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(58,1506,'_wp_attachment_image_alt','a'),(59,278,'_wp_attached_file','2017/05/course-12-f-img.jpg'),(60,278,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:639;s:4:\"file\";s:27:\"2017/05/course-12-f-img.jpg\";s:8:\"filesize\";i:102851;s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:27:\"course-12-f-img-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26708;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:27:\"course-12-f-img-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4067;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:27:\"course-12-f-img-600x383.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:383;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53842;}s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"course-12-f-img-300x192.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15594;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"course-12-f-img-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7795;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"course-12-f-img-768x491.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:491;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:82434;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:27:\"course-12-f-img-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76617;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:27:\"course-12-f-img-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26491;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:28:\"course-12-f-img-1000x550.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:128036;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:27:\"course-12-f-img-550x639.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:639;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97260;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(61,1900,'_wp_attached_file','2017/06/product-3-gallery-2.jpg'),(62,1900,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:542;s:4:\"file\";s:31:\"2017/06/product-3-gallery-2.jpg\";s:8:\"filesize\";i:30580;s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:31:\"product-3-gallery-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10357;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:31:\"product-3-gallery-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2669;}s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"product-3-gallery-2-300x271.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9535;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"product-3-gallery-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:4321;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:31:\"product-3-gallery-2-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24607;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:31:\"product-3-gallery-2-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10976;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:31:\"product-3-gallery-2-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24607;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(63,278,'_wp_attachment_image_alt','a'),(64,1900,'_wp_attachment_image_alt','a'),(65,1586,'_wp_attached_file','2017/06/about-video-button.jpg'),(66,1586,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:530;s:4:\"file\";s:30:\"2017/06/about-video-button.jpg\";s:8:\"filesize\";i:102264;s:5:\"sizes\";a:9:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:30:\"about-video-button-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21037;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:30:\"about-video-button-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4455;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:30:\"about-video-button-600x398.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:398;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46234;}s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"about-video-button-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16559;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"about-video-button-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7702;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"about-video-button-768x509.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:509;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65796;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:30:\"about-video-button-550x530.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:530;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53989;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:30:\"about-video-button-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23420;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:30:\"about-video-button-550x530.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:530;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53989;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(67,43,'_wp_attached_file','2017/05/instructor-img-2.jpg'),(68,43,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:28:\"2017/05/instructor-img-2.jpg\";s:8:\"filesize\";i:61386;s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:28:\"instructor-img-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16330;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:28:\"instructor-img-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3537;}s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"instructor-img-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16330;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"instructor-img-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:5838;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:28:\"instructor-img-2-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40732;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:28:\"instructor-img-2-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17172;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:28:\"instructor-img-2-600x550.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47583;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:28:\"instructor-img-2-550x600.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48202;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(69,706,'_wp_attached_file','2017/05/h12-process-img-4.png'),(70,706,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:193;s:6:\"height\";i:193;s:4:\"file\";s:29:\"2017/05/h12-process-img-4.png\";s:8:\"filesize\";i:86514;s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:29:\"h12-process-img-4-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21827;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"h12-process-img-4-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45160;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(71,706,'_wp_attachment_image_alt','a'),(72,1586,'_wp_attachment_image_alt','f'),(73,43,'_wp_attachment_image_alt','a'),(74,1508,'_wp_attached_file','2017/06/h8-img-3.jpg'),(75,1508,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:483;s:4:\"file\";s:20:\"2017/06/h8-img-3.jpg\";s:8:\"filesize\";i:74075;s:5:\"sizes\";a:9:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:20:\"h8-img-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21393;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:20:\"h8-img-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4407;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:20:\"h8-img-3-600x362.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:362;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37207;}s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"h8-img-3-300x181.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:181;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13300;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"h8-img-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7609;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"h8-img-3-768x464.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52600;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:20:\"h8-img-3-550x483.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:483;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51954;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:20:\"h8-img-3-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22651;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:20:\"h8-img-3-550x483.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:483;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51954;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,1508,'_wp_attachment_image_alt','a'),(77,1901,'_wp_attached_file','2017/06/product-3-gallery-3.jpg'),(78,1901,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:542;s:4:\"file\";s:31:\"2017/06/product-3-gallery-3.jpg\";s:8:\"filesize\";i:29234;s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:31:\"product-3-gallery-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9936;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:31:\"product-3-gallery-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2593;}s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"product-3-gallery-3-300x271.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9056;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"product-3-gallery-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3991;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:31:\"product-3-gallery-3-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22476;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:31:\"product-3-gallery-3-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9922;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:31:\"product-3-gallery-3-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22476;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(79,280,'_wp_attached_file','2017/05/course-11-f-img.jpg'),(80,280,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:639;s:4:\"file\";s:27:\"2017/05/course-11-f-img.jpg\";s:8:\"filesize\";i:71058;s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:27:\"course-11-f-img-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12021;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:27:\"course-11-f-img-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2927;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:27:\"course-11-f-img-600x383.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:383;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26680;}s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"course-11-f-img-300x192.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9834;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"course-11-f-img-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4666;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"course-11-f-img-768x491.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:491;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38526;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:27:\"course-11-f-img-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28680;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:27:\"course-11-f-img-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14668;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:28:\"course-11-f-img-1000x550.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52955;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:27:\"course-11-f-img-550x639.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:639;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31948;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(81,44,'_wp_attached_file','2017/05/instructor-img-3.jpg'),(82,44,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:28:\"2017/05/instructor-img-3.jpg\";s:8:\"filesize\";i:70749;s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:28:\"instructor-img-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16752;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:28:\"instructor-img-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3078;}s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"instructor-img-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16752;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"instructor-img-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5440;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:28:\"instructor-img-3-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43052;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:28:\"instructor-img-3-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16508;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:28:\"instructor-img-3-600x550.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49519;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:28:\"instructor-img-3-550x600.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53419;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(83,280,'_wp_attachment_image_alt','a'),(84,44,'_wp_attachment_image_alt','a'),(85,726,'_wp_attached_file','2017/05/h12-parallax-1.jpg'),(86,726,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1100;s:4:\"file\";s:26:\"2017/05/h12-parallax-1.jpg\";s:8:\"filesize\";i:102926;s:5:\"sizes\";a:13:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"h12-parallax-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4915;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"h12-parallax-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1583;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:26:\"h12-parallax-1-600x344.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:344;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9813;}s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"h12-parallax-1-300x172.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:172;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3975;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"h12-parallax-1-1024x587.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:587;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21663;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"h12-parallax-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:2209;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"h12-parallax-1-768x440.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:440;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14051;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:27:\"h12-parallax-1-1536x880.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:880;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41277;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:26:\"h12-parallax-1-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11419;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:26:\"h12-parallax-1-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5257;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:27:\"h12-parallax-1-1100x550.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21602;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:27:\"h12-parallax-1-550x1100.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:1100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17279;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:28:\"h12-parallax-1-1100x1100.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:1100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35756;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(87,45,'_wp_attached_file','2017/05/instructor-img-4.jpg'),(88,45,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:28:\"2017/05/instructor-img-4.jpg\";s:8:\"filesize\";i:70343;s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:28:\"instructor-img-4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16629;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:28:\"instructor-img-4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3156;}s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"instructor-img-4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16629;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"instructor-img-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5469;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:28:\"instructor-img-4-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43140;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:28:\"instructor-img-4-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17058;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:28:\"instructor-img-4-600x550.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51012;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:28:\"instructor-img-4-550x600.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54698;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,726,'_wp_attachment_image_alt','a'),(90,45,'_wp_attachment_image_alt','a'),(91,1630,'_wp_attached_file','2017/06/h8-gallery-img-8.jpg'),(92,1630,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:665;s:4:\"file\";s:28:\"2017/06/h8-gallery-img-8.jpg\";s:8:\"filesize\";i:100078;s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:28:\"h8-gallery-img-8-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20817;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:28:\"h8-gallery-img-8-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4042;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:28:\"h8-gallery-img-8-600x499.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:499;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52958;}s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"h8-gallery-img-8-300x249.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:249;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18260;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"h8-gallery-img-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:7050;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"h8-gallery-img-8-768x638.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:638;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75730;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:28:\"h8-gallery-img-8-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51476;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:28:\"h8-gallery-img-8-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22550;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:28:\"h8-gallery-img-8-800x550.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78378;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:28:\"h8-gallery-img-8-550x665.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:665;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61077;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,1630,'_wp_attachment_image_alt','a'),(94,1904,'_wp_attached_file','2017/06/h8-slide-1-img.png'),(95,1904,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:614;s:6:\"height\";i:777;s:4:\"file\";s:26:\"2017/06/h8-slide-1-img.png\";s:8:\"filesize\";i:167089;s:5:\"sizes\";a:9:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"h8-slide-1-img-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:155149;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"h8-slide-1-img-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20519;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:26:\"h8-slide-1-img-600x759.png\";s:5:\"width\";i:600;s:6:\"height\";i:759;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:629397;}s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"h8-slide-1-img-237x300.png\";s:5:\"width\";i:237;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:115649;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"h8-slide-1-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:42663;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:26:\"h8-slide-1-img-550x550.png\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:475398;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:26:\"h8-slide-1-img-350x282.png\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:172658;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:26:\"h8-slide-1-img-614x550.png\";s:5:\"width\";i:614;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:400375;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:26:\"h8-slide-1-img-550x777.png\";s:5:\"width\";i:550;s:6:\"height\";i:777;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:480010;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(96,282,'_wp_attached_file','2017/05/course-7-f-img.jpg'),(97,282,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:639;s:4:\"file\";s:26:\"2017/05/course-7-f-img.jpg\";s:8:\"filesize\";i:87750;s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"course-7-f-img-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17330;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"course-7-f-img-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3509;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:26:\"course-7-f-img-600x383.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:383;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29495;}s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"course-7-f-img-300x192.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9468;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"course-7-f-img-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5954;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"course-7-f-img-768x491.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:491;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45130;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:26:\"course-7-f-img-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48033;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:26:\"course-7-f-img-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16930;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:27:\"course-7-f-img-1000x550.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71051;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:26:\"course-7-f-img-550x639.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:639;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63235;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(98,1509,'_wp_attached_file','2017/06/b-audio-everytings-nice.mp3'),(99,1509,'_wp_attachment_metadata','a:19:{s:10:\"dataformat\";s:3:\"mp3\";s:8:\"channels\";i:2;s:11:\"sample_rate\";i:48000;s:7:\"bitrate\";d:320113.5154310039;s:11:\"channelmode\";s:6:\"stereo\";s:12:\"bitrate_mode\";s:3:\"cbr\";s:8:\"lossless\";b:0;s:15:\"encoder_options\";s:6:\"CBR320\";s:17:\"compression_ratio\";d:0.20840723660872648;s:10:\"fileformat\";s:3:\"mp3\";s:8:\"filesize\";i:2707340;s:9:\"mime_type\";s:10:\"audio/mpeg\";s:6:\"length\";i:68;s:16:\"length_formatted\";s:4:\"1:08\";s:5:\"title\";s:16:\"Everythings Nice\";s:5:\"genre\";s:18:\"R&amp;B &amp; Soul\";s:6:\"artist\";s:12:\"Jingle Punks\";s:5:\"album\";s:21:\"YouTube Audio Library\";s:16:\"encoder_settings\";s:11:\"Lavf54.20.4\";}'),(100,731,'_wp_attached_file','2017/05/pin-img.png'),(101,731,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:35;s:6:\"height\";i:54;s:4:\"file\";s:19:\"2017/05/pin-img.png\";s:8:\"filesize\";i:1847;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:{}}}'),(102,731,'_wp_attachment_image_alt','a'),(103,1904,'_wp_attachment_image_alt','a'),(104,1513,'_wp_attached_file','2017/06/blog-post-19.jpg'),(105,1513,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:725;s:4:\"file\";s:24:\"2017/06/blog-post-19.jpg\";s:8:\"filesize\";i:119102;s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:24:\"blog-post-19-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26422;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:24:\"blog-post-19-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4915;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:24:\"blog-post-19-600x335.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:335;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44841;}s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"blog-post-19-300x167.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14315;}s:5:\"large\";a:5:{s:4:\"file\";s:25:\"blog-post-19-1024x571.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:571;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:106179;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"blog-post-19-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8841;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"blog-post-19-768x428.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:428;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67144;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:24:\"blog-post-19-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68138;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:24:\"blog-post-19-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27305;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:25:\"blog-post-19-1100x550.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:106148;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:24:\"blog-post-19-550x725.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:725;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:87766;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:25:\"blog-post-19-1100x725.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:725;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:146689;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,1631,'_wp_attached_file','2017/06/h8-gallery-img-1.jpg'),(107,1631,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:665;s:4:\"file\";s:28:\"2017/06/h8-gallery-img-1.jpg\";s:8:\"filesize\";i:105441;s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:28:\"h8-gallery-img-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27029;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:28:\"h8-gallery-img-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4459;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:28:\"h8-gallery-img-1-600x499.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:499;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76113;}s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"h8-gallery-img-1-300x249.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:249;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23089;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"h8-gallery-img-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:8221;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"h8-gallery-img-1-768x638.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:638;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:110557;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:28:\"h8-gallery-img-1-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74262;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:28:\"h8-gallery-img-1-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29902;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:28:\"h8-gallery-img-1-800x550.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:119755;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:28:\"h8-gallery-img-1-550x665.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:665;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:94970;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,734,'_wp_attached_file','2017/05/h4-parallax-img-1.png'),(109,734,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1100;s:4:\"file\";s:29:\"2017/05/h4-parallax-img-1.png\";s:8:\"filesize\";i:54834;s:5:\"sizes\";a:13:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:29:\"h4-parallax-img-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:9866;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:29:\"h4-parallax-img-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2393;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:29:\"h4-parallax-img-1-600x344.png\";s:5:\"width\";i:600;s:6:\"height\";i:344;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13514;}s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"h4-parallax-img-1-300x172.png\";s:5:\"width\";i:300;s:6:\"height\";i:172;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5589;}s:5:\"large\";a:5:{s:4:\"file\";s:30:\"h4-parallax-img-1-1024x587.png\";s:5:\"width\";i:1024;s:6:\"height\";i:587;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27198;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"h4-parallax-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:4089;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"h4-parallax-img-1-768x440.png\";s:5:\"width\";i:768;s:6:\"height\";i:440;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18872;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:30:\"h4-parallax-img-1-1536x880.png\";s:5:\"width\";i:1536;s:6:\"height\";i:880;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46839;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:29:\"h4-parallax-img-1-550x550.png\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20548;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:29:\"h4-parallax-img-1-350x282.png\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10134;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:30:\"h4-parallax-img-1-1100x550.png\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29506;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:30:\"h4-parallax-img-1-550x1100.png\";s:5:\"width\";i:550;s:6:\"height\";i:1100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22505;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:31:\"h4-parallax-img-1-1100x1100.png\";s:5:\"width\";i:1100;s:6:\"height\";i:1100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47905;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,283,'_wp_attached_file','2017/05/course-10-f-img.jpg'),(111,283,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:639;s:4:\"file\";s:27:\"2017/05/course-10-f-img.jpg\";s:8:\"filesize\";i:82348;s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:27:\"course-10-f-img-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15274;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:27:\"course-10-f-img-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3311;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:27:\"course-10-f-img-600x383.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:383;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28364;}s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"course-10-f-img-300x192.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10060;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"course-10-f-img-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5574;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"course-10-f-img-768x491.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:491;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41430;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:27:\"course-10-f-img-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39255;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:27:\"course-10-f-img-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15691;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:28:\"course-10-f-img-1000x550.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57888;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:27:\"course-10-f-img-550x639.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:639;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47692;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,1631,'_wp_attachment_image_alt','a'),(113,1513,'_wp_attachment_image_alt','v'),(114,283,'_wp_attachment_image_alt','a'),(115,734,'_wp_attachment_image_alt','a'),(116,1910,'_wp_attached_file','2017/06/grouped-product.jpg'),(117,1910,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:722;s:4:\"file\";s:27:\"2017/06/grouped-product.jpg\";s:8:\"filesize\";i:102531;s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:27:\"grouped-product-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12220;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:27:\"grouped-product-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2772;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:27:\"grouped-product-600x542.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30133;}s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"grouped-product-300x271.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10566;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"grouped-product-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4513;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"grouped-product-768x693.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:693;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43381;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:27:\"grouped-product-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30367;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:27:\"grouped-product-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13204;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:27:\"grouped-product-800x550.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48164;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:27:\"grouped-product-550x722.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:722;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47305;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(118,1514,'_wp_attached_file','2017/06/blog-post-20.jpg'),(119,1514,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:725;s:4:\"file\";s:24:\"2017/06/blog-post-20.jpg\";s:8:\"filesize\";i:117151;s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:24:\"blog-post-20-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19438;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:24:\"blog-post-20-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3932;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:24:\"blog-post-20-600x335.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:335;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43050;}s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"blog-post-20-300x167.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14010;}s:5:\"large\";a:5:{s:4:\"file\";s:25:\"blog-post-20-1024x571.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:571;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:101897;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"blog-post-20-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6746;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"blog-post-20-768x428.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:428;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64309;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:24:\"blog-post-20-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49912;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:24:\"blog-post-20-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22765;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:25:\"blog-post-20-1100x550.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105280;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:24:\"blog-post-20-550x725.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:725;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57859;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:25:\"blog-post-20-1100x725.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:725;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:137066;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(120,285,'_wp_attached_file','2017/05/course-9-f-img.jpg'),(121,285,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:639;s:4:\"file\";s:26:\"2017/05/course-9-f-img.jpg\";s:8:\"filesize\";i:101757;s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"course-9-f-img-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16343;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"course-9-f-img-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3866;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:26:\"course-9-f-img-600x383.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:383;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37901;}s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"course-9-f-img-300x192.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13961;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"course-9-f-img-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6357;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"course-9-f-img-768x491.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:491;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54590;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:26:\"course-9-f-img-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38658;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:26:\"course-9-f-img-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18841;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:27:\"course-9-f-img-1000x550.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75324;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:26:\"course-9-f-img-550x639.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:639;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42316;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(122,1910,'_wp_attachment_image_alt','a'),(123,285,'_wp_attachment_image_alt','a'),(124,1514,'_wp_attachment_image_alt','v'),(125,770,'_wp_attached_file','2017/05/blog-single-content-img.jpg'),(126,770,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:725;s:4:\"file\";s:35:\"2017/05/blog-single-content-img.jpg\";s:8:\"filesize\";i:102963;s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:35:\"blog-single-content-img-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17511;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:35:\"blog-single-content-img-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3595;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:35:\"blog-single-content-img-600x335.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:335;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36962;}s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"blog-single-content-img-300x167.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12024;}s:5:\"large\";a:5:{s:4:\"file\";s:36:\"blog-single-content-img-1024x571.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:571;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:87975;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"blog-single-content-img-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6082;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"blog-single-content-img-768x428.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:428;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55768;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:35:\"blog-single-content-img-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45588;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:35:\"blog-single-content-img-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20783;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:36:\"blog-single-content-img-1100x550.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89933;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:35:\"blog-single-content-img-550x725.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:725;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46004;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:36:\"blog-single-content-img-1100x725.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:725;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121006;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,1632,'_wp_attached_file','2017/06/h8-gallery-img-2.jpg'),(128,1632,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:665;s:4:\"file\";s:28:\"2017/06/h8-gallery-img-2.jpg\";s:8:\"filesize\";i:100076;s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:28:\"h8-gallery-img-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23152;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:28:\"h8-gallery-img-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3604;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:28:\"h8-gallery-img-2-600x499.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:499;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67468;}s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"h8-gallery-img-2-300x249.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:249;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19083;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"h8-gallery-img-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:6880;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"h8-gallery-img-2-768x638.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:638;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:100319;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:28:\"h8-gallery-img-2-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66898;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:28:\"h8-gallery-img-2-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24889;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:28:\"h8-gallery-img-2-800x550.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105141;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:28:\"h8-gallery-img-2-550x665.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:665;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86587;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,1632,'_wp_attachment_image_alt','a'),(130,1921,'_wp_attached_file','2017/06/product-4-gallery-1.jpg'),(131,1921,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:542;s:4:\"file\";s:31:\"2017/06/product-4-gallery-1.jpg\";s:8:\"filesize\";i:28719;s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:31:\"product-4-gallery-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10284;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:31:\"product-4-gallery-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2729;}s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"product-4-gallery-1-300x271.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9413;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"product-4-gallery-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:4341;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:31:\"product-4-gallery-1-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23743;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:31:\"product-4-gallery-1-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10926;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:31:\"product-4-gallery-1-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23743;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(132,1921,'_wp_attachment_image_alt','a'),(133,770,'_wp_attachment_image_alt','c'),(134,287,'_wp_attached_file','2017/05/course-8-f-img.jpg'),(135,287,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:639;s:4:\"file\";s:26:\"2017/05/course-8-f-img.jpg\";s:8:\"filesize\";i:89215;s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"course-8-f-img-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18763;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"course-8-f-img-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3606;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:26:\"course-8-f-img-600x383.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:383;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40025;}s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"course-8-f-img-300x192.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12355;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"course-8-f-img-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6254;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"course-8-f-img-768x491.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:491;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59891;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:26:\"course-8-f-img-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50116;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:26:\"course-8-f-img-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19986;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:27:\"course-8-f-img-1000x550.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86592;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:26:\"course-8-f-img-550x639.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:639;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60752;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(136,1515,'_wp_attached_file','2017/06/blog-post-21.jpg'),(137,1515,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:725;s:4:\"file\";s:24:\"2017/06/blog-post-21.jpg\";s:8:\"filesize\";i:112304;s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:24:\"blog-post-21-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17941;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:24:\"blog-post-21-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3723;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:24:\"blog-post-21-600x335.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:335;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27322;}s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"blog-post-21-300x167.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9543;}s:5:\"large\";a:5:{s:4:\"file\";s:25:\"blog-post-21-1024x571.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:571;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64815;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"blog-post-21-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6263;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"blog-post-21-768x428.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:428;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40755;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:24:\"blog-post-21-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48522;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:24:\"blog-post-21-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18296;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:25:\"blog-post-21-1100x550.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65203;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:24:\"blog-post-21-550x725.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:725;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74090;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:25:\"blog-post-21-1100x725.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:725;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:99538;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(138,287,'_wp_attachment_image_alt','a'),(139,778,'_wp_attached_file','2017/05/process-img-1.png'),(140,778,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:283;s:6:\"height\";i:283;s:4:\"file\";s:25:\"2017/05/process-img-1.png\";s:8:\"filesize\";i:19015;s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:25:\"process-img-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6588;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"process-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:10911;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,778,'_wp_attachment_image_alt','a'),(142,1515,'_wp_attachment_image_alt','v'),(143,1923,'_wp_attached_file','2017/06/product-4-gallery-3.jpg'),(144,1923,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:542;s:4:\"file\";s:31:\"2017/06/product-4-gallery-3.jpg\";s:8:\"filesize\";i:25137;s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:31:\"product-4-gallery-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8584;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:31:\"product-4-gallery-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2469;}s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"product-4-gallery-3-300x271.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8178;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"product-4-gallery-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3703;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:31:\"product-4-gallery-3-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19439;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:31:\"product-4-gallery-3-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9265;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:31:\"product-4-gallery-3-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19439;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,1923,'_wp_attachment_image_alt','a'),(146,779,'_wp_attached_file','2017/05/process-img-2.png'),(147,779,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:283;s:6:\"height\";i:283;s:4:\"file\";s:25:\"2017/05/process-img-2.png\";s:8:\"filesize\";i:19458;s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:25:\"process-img-2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6703;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"process-img-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:11044;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,779,'_wp_attachment_image_alt','a'),(149,1633,'_wp_attached_file','2017/06/h8-gallery-img-3.jpg'),(150,1633,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:665;s:4:\"file\";s:28:\"2017/06/h8-gallery-img-3.jpg\";s:8:\"filesize\";i:103780;s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:28:\"h8-gallery-img-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24199;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:28:\"h8-gallery-img-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4203;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:28:\"h8-gallery-img-3-600x499.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:499;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64766;}s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"h8-gallery-img-3-300x249.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:249;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19685;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"h8-gallery-img-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7531;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"h8-gallery-img-3-768x638.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:638;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:94699;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:28:\"h8-gallery-img-3-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68302;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:28:\"h8-gallery-img-3-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25081;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:28:\"h8-gallery-img-3-800x550.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:99403;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:28:\"h8-gallery-img-3-550x665.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:665;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:95589;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(151,1518,'_wp_attached_file','2017/06/blog-post-22.jpg'),(152,1518,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:725;s:4:\"file\";s:24:\"2017/06/blog-post-22.jpg\";s:8:\"filesize\";i:100704;s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:24:\"blog-post-22-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19037;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:24:\"blog-post-22-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4133;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:24:\"blog-post-22-600x335.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:335;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34490;}s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"blog-post-22-300x167.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12459;}s:5:\"large\";a:5:{s:4:\"file\";s:25:\"blog-post-22-1024x571.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:571;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76719;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"blog-post-22-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7009;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"blog-post-22-768x428.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:428;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49864;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:24:\"blog-post-22-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46965;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:24:\"blog-post-22-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20976;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:25:\"blog-post-22-1100x550.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77762;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:24:\"blog-post-22-550x725.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:725;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57655;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:25:\"blog-post-22-1100x725.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:725;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:108016;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(153,1633,'_wp_attachment_image_alt','a'),(154,781,'_wp_attached_file','2017/05/process-img-3.png'),(155,781,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:283;s:6:\"height\";i:283;s:4:\"file\";s:25:\"2017/05/process-img-3.png\";s:8:\"filesize\";i:21874;s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:25:\"process-img-3-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7123;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"process-img-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:11821;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,781,'_wp_attachment_image_alt','a'),(157,304,'_wp_attached_file','2017/05/h2-parallax-1.jpg'),(158,304,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1100;s:4:\"file\";s:25:\"2017/05/h2-parallax-1.jpg\";s:8:\"filesize\";i:105074;s:5:\"sizes\";a:13:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:25:\"h2-parallax-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14144;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:25:\"h2-parallax-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3206;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:25:\"h2-parallax-1-600x344.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:344;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25485;}s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"h2-parallax-1-300x172.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:172;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9470;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"h2-parallax-1-1024x587.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:587;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57114;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"h2-parallax-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:5337;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"h2-parallax-1-768x440.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:440;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36955;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:26:\"h2-parallax-1-1536x880.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:880;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105604;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:25:\"h2-parallax-1-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36269;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:25:\"h2-parallax-1-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15272;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:26:\"h2-parallax-1-1100x550.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59173;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:26:\"h2-parallax-1-550x1100.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:1100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52604;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:27:\"h2-parallax-1-1100x1100.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:1100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107622;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(159,1518,'_wp_attachment_image_alt','j'),(160,1925,'_wp_attached_file','2017/06/product-4.jpg'),(161,1925,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:722;s:4:\"file\";s:21:\"2017/06/product-4.jpg\";s:8:\"filesize\";i:91780;s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:21:\"product-4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7679;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:21:\"product-4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2010;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:21:\"product-4-600x542.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17737;}s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"product-4-300x271.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6637;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"product-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3121;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"product-4-768x693.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:693;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25690;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:21:\"product-4-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17890;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:21:\"product-4-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8227;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:21:\"product-4-800x550.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26460;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:21:\"product-4-550x722.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:722;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24955;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,1525,'_wp_attached_file','2017/06/blog-post-23.jpg'),(163,1525,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:725;s:4:\"file\";s:24:\"2017/06/blog-post-23.jpg\";s:8:\"filesize\";i:116403;s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:24:\"blog-post-23-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21187;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:24:\"blog-post-23-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4048;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:24:\"blog-post-23-600x335.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:335;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43941;}s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"blog-post-23-300x167.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13855;}s:5:\"large\";a:5:{s:4:\"file\";s:25:\"blog-post-23-1024x571.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:571;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:109309;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"blog-post-23-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7038;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"blog-post-23-768x428.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:428;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67651;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:24:\"blog-post-23-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57972;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:24:\"blog-post-23-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24381;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:25:\"blog-post-23-1100x550.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:112798;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:24:\"blog-post-23-550x725.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:725;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72917;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:25:\"blog-post-23-1100x725.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:725;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:158413;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,1925,'_wp_attachment_image_alt','a'),(165,1634,'_wp_attached_file','2017/06/h8-gallery-img-4.jpg'),(166,1634,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:665;s:4:\"file\";s:28:\"2017/06/h8-gallery-img-4.jpg\";s:8:\"filesize\";i:103910;s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:28:\"h8-gallery-img-4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24924;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:28:\"h8-gallery-img-4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4110;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:28:\"h8-gallery-img-4-600x499.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:499;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67759;}s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"h8-gallery-img-4-300x249.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:249;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19733;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"h8-gallery-img-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7544;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"h8-gallery-img-4-768x638.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:638;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:99141;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:28:\"h8-gallery-img-4-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70656;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:28:\"h8-gallery-img-4-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25190;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:28:\"h8-gallery-img-4-800x550.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96466;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:28:\"h8-gallery-img-4-550x665.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:665;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:95766;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(167,304,'_wp_attachment_image_alt','a'),(168,783,'_wp_attached_file','2017/05/process-img-4.png'),(169,783,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:283;s:6:\"height\";i:283;s:4:\"file\";s:25:\"2017/05/process-img-4.png\";s:8:\"filesize\";i:19364;s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:25:\"process-img-4-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6944;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"process-img-4-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11148;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,783,'_wp_attachment_image_alt','a'),(171,1634,'_wp_attachment_image_alt','a'),(172,1525,'_wp_attachment_image_alt','h'),(173,1926,'_wp_attached_file','2017/06/product-4-gallery-2.jpg'),(174,1926,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:542;s:4:\"file\";s:31:\"2017/06/product-4-gallery-2.jpg\";s:8:\"filesize\";i:86077;s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:31:\"product-4-gallery-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13512;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:31:\"product-4-gallery-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3385;}s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"product-4-gallery-2-300x271.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12544;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"product-4-gallery-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:5489;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:31:\"product-4-gallery-2-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31703;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:31:\"product-4-gallery-2-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14008;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:31:\"product-4-gallery-2-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31703;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(175,1926,'_wp_attachment_image_alt','a'),(176,828,'_wp_attached_file','2017/05/h4-video-background-img-1.png'),(177,828,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:689;s:4:\"file\";s:37:\"2017/05/h4-video-background-img-1.png\";s:8:\"filesize\";i:73203;s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:37:\"h4-video-background-img-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:32073;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:37:\"h4-video-background-img-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9539;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:37:\"h4-video-background-img-1-600x404.png\";s:5:\"width\";i:600;s:6:\"height\";i:404;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:50106;}s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"h4-video-background-img-1-300x202.png\";s:5:\"width\";i:300;s:6:\"height\";i:202;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22870;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"h4-video-background-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:14909;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:37:\"h4-video-background-img-1-768x517.png\";s:5:\"width\";i:768;s:6:\"height\";i:517;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:70513;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:37:\"h4-video-background-img-1-550x550.png\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:66167;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:37:\"h4-video-background-img-1-350x282.png\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32267;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:38:\"h4-video-background-img-1-1024x550.png\";s:5:\"width\";i:1024;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:68903;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:37:\"h4-video-background-img-1-550x689.png\";s:5:\"width\";i:550;s:6:\"height\";i:689;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:55558;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,828,'_wp_attachment_image_alt','a'),(179,1931,'_wp_attached_file','2017/06/product-5.jpg'),(180,1931,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:722;s:4:\"file\";s:21:\"2017/06/product-5.jpg\";s:8:\"filesize\";i:151458;s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:21:\"product-5-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10109;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:21:\"product-5-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2435;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:21:\"product-5-600x542.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24509;}s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"product-5-300x271.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8924;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"product-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3869;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"product-5-768x693.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:693;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35187;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:21:\"product-5-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24182;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:21:\"product-5-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10854;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:21:\"product-5-800x550.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38371;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:21:\"product-5-550x722.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:722;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37387;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(181,315,'_wp_attached_file','2017/05/h2-background-img-2.png'),(182,315,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:654;s:4:\"file\";s:31:\"2017/05/h2-background-img-2.png\";s:8:\"filesize\";i:37904;s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:31:\"h2-background-img-2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14897;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:31:\"h2-background-img-2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3859;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:31:\"h2-background-img-2-600x409.png\";s:5:\"width\";i:600;s:6:\"height\";i:409;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26633;}s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"h2-background-img-2-300x204.png\";s:5:\"width\";i:300;s:6:\"height\";i:204;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11193;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"h2-background-img-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:6339;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"h2-background-img-2-768x523.png\";s:5:\"width\";i:768;s:6:\"height\";i:523;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:36867;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:31:\"h2-background-img-2-550x550.png\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32341;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:31:\"h2-background-img-2-350x282.png\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15617;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:31:\"h2-background-img-2-960x550.png\";s:5:\"width\";i:960;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:38104;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:31:\"h2-background-img-2-550x654.png\";s:5:\"width\";i:550;s:6:\"height\";i:654;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28616;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(183,1931,'_wp_attachment_image_alt','a'),(184,1530,'_wp_attached_file','2017/06/blog-post-24.jpg'),(185,1530,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:725;s:4:\"file\";s:24:\"2017/06/blog-post-24.jpg\";s:8:\"filesize\";i:109883;s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:24:\"blog-post-24-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17518;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:24:\"blog-post-24-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3683;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:24:\"blog-post-24-600x335.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:335;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38541;}s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"blog-post-24-300x167.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12554;}s:5:\"large\";a:5:{s:4:\"file\";s:25:\"blog-post-24-1024x571.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:571;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:95147;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"blog-post-24-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6129;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"blog-post-24-768x428.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:428;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58834;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:24:\"blog-post-24-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48185;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:24:\"blog-post-24-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21034;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:25:\"blog-post-24-1100x550.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97485;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:24:\"blog-post-24-550x725.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:725;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59465;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:25:\"blog-post-24-1100x725.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:725;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:139444;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,1635,'_wp_attached_file','2017/06/h8-gallery-img-5.jpg'),(187,1635,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:665;s:4:\"file\";s:28:\"2017/06/h8-gallery-img-5.jpg\";s:8:\"filesize\";i:56315;s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:28:\"h8-gallery-img-5-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11477;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:28:\"h8-gallery-img-5-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2541;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:28:\"h8-gallery-img-5-600x499.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:499;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27752;}s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"h8-gallery-img-5-300x249.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:249;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9327;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"h8-gallery-img-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4146;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"h8-gallery-img-5-768x638.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:638;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39922;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:28:\"h8-gallery-img-5-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28740;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:28:\"h8-gallery-img-5-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11555;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:28:\"h8-gallery-img-5-800x550.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30720;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:28:\"h8-gallery-img-5-550x665.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:665;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37807;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,315,'_wp_attachment_image_alt','a'),(189,1635,'_wp_attachment_image_alt','a'),(190,1530,'_wp_attachment_image_alt','f'),(191,865,'_wp_attached_file','2017/05/h12-tabs-icon-1.png'),(192,865,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:194;s:6:\"height\";i:191;s:4:\"file\";s:27:\"2017/05/h12-tabs-icon-1.png\";s:8:\"filesize\";i:11374;s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:27:\"h12-tabs-icon-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6830;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"h12-tabs-icon-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:11248;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(193,865,'_wp_attachment_image_alt','a'),(194,321,'_wp_attached_file','2017/05/testimonials-standard-1.png'),(195,321,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:104;s:6:\"height\";i:105;s:4:\"file\";s:35:\"2017/05/testimonials-standard-1.png\";s:8:\"filesize\";i:24556;s:5:\"sizes\";a:1:{s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:35:\"testimonials-standard-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18070;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,321,'_wp_attachment_image_alt','a'),(197,1932,'_wp_attached_file','2017/06/product-5-gallery-1.jpg'),(198,1932,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:542;s:4:\"file\";s:31:\"2017/06/product-5-gallery-1.jpg\";s:8:\"filesize\";i:32374;s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:31:\"product-5-gallery-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10082;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:31:\"product-5-gallery-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2666;}s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"product-5-gallery-1-300x271.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9256;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"product-5-gallery-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:4071;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:31:\"product-5-gallery-1-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24961;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:31:\"product-5-gallery-1-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9967;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:31:\"product-5-gallery-1-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24961;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(199,898,'_wp_attached_file','2017/05/h5-custom-icon-1.png'),(200,1932,'_wp_attachment_image_alt','a'),(201,898,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:78;s:6:\"height\";i:68;s:4:\"file\";s:28:\"2017/05/h5-custom-icon-1.png\";s:8:\"filesize\";i:3618;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:{}}}'),(202,898,'_wp_attachment_image_alt','a'),(203,1636,'_wp_attached_file','2017/06/h8-gallery-img-6.jpg'),(204,1636,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:665;s:4:\"file\";s:28:\"2017/06/h8-gallery-img-6.jpg\";s:8:\"filesize\";i:98360;s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:28:\"h8-gallery-img-6-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20117;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:28:\"h8-gallery-img-6-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3761;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:28:\"h8-gallery-img-6-600x499.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:499;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56832;}s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"h8-gallery-img-6-300x249.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:249;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16718;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"h8-gallery-img-6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6567;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"h8-gallery-img-6-768x638.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:638;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:84620;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:28:\"h8-gallery-img-6-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57875;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:28:\"h8-gallery-img-6-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21204;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:28:\"h8-gallery-img-6-800x550.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83112;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:28:\"h8-gallery-img-6-550x665.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:665;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77230;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(205,1636,'_wp_attachment_image_alt','a'),(206,322,'_wp_attached_file','2017/05/testimonials-standard-2.png'),(207,322,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:104;s:6:\"height\";i:105;s:4:\"file\";s:35:\"2017/05/testimonials-standard-2.png\";s:8:\"filesize\";i:22401;s:5:\"sizes\";a:1:{s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:35:\"testimonials-standard-2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17257;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,322,'_wp_attachment_image_alt','a'),(209,1541,'_wp_attached_file','2017/06/h8-backgroung-img-1.jpg'),(210,1541,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1100;s:4:\"file\";s:31:\"2017/06/h8-backgroung-img-1.jpg\";s:8:\"filesize\";i:26764;s:5:\"sizes\";a:13:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:31:\"h8-backgroung-img-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2229;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:31:\"h8-backgroung-img-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:926;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:31:\"h8-backgroung-img-1-600x344.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:344;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4270;}s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"h8-backgroung-img-1-300x172.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:172;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1653;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"h8-backgroung-img-1-1024x587.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:587;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10558;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"h8-backgroung-img-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:1144;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"h8-backgroung-img-1-768x440.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:440;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6328;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:32:\"h8-backgroung-img-1-1536x880.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:880;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22656;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:31:\"h8-backgroung-img-1-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5770;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:31:\"h8-backgroung-img-1-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2418;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:32:\"h8-backgroung-img-1-1100x550.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10762;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:32:\"h8-backgroung-img-1-550x1100.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:1100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10569;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:33:\"h8-backgroung-img-1-1100x1100.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:1100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20212;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(211,899,'_wp_attached_file','2017/05/h5-custom-icon-2.png'),(212,899,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:78;s:6:\"height\";i:68;s:4:\"file\";s:28:\"2017/05/h5-custom-icon-2.png\";s:8:\"filesize\";i:2498;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:{}}}'),(213,899,'_wp_attachment_image_alt','a'),(214,1541,'_wp_attachment_image_alt','a'),(215,1637,'_wp_attached_file','2017/06/h8-gallery-img-7.jpg'),(216,1637,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:665;s:4:\"file\";s:28:\"2017/06/h8-gallery-img-7.jpg\";s:8:\"filesize\";i:103072;s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:28:\"h8-gallery-img-7-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19775;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:28:\"h8-gallery-img-7-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3624;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:28:\"h8-gallery-img-7-600x499.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:499;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57514;}s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"h8-gallery-img-7-300x249.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:249;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16351;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"h8-gallery-img-7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6383;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"h8-gallery-img-7-768x638.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:638;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:87331;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:28:\"h8-gallery-img-7-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59870;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:28:\"h8-gallery-img-7-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20564;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:28:\"h8-gallery-img-7-800x550.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85426;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:28:\"h8-gallery-img-7-550x665.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:665;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:84799;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(217,1933,'_wp_attached_file','2017/06/product-5-gallery-2.jpg'),(218,1933,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:542;s:4:\"file\";s:31:\"2017/06/product-5-gallery-2.jpg\";s:8:\"filesize\";i:38827;s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:31:\"product-5-gallery-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11956;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:31:\"product-5-gallery-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2721;}s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"product-5-gallery-2-300x271.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10783;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"product-5-gallery-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:4432;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:31:\"product-5-gallery-2-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31123;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:31:\"product-5-gallery-2-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12759;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:31:\"product-5-gallery-2-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31123;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(219,1933,'_wp_attachment_image_alt','a'),(220,323,'_wp_attached_file','2017/05/testimonials-standard-3.png'),(221,323,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:104;s:6:\"height\";i:105;s:4:\"file\";s:35:\"2017/05/testimonials-standard-3.png\";s:8:\"filesize\";i:24867;s:5:\"sizes\";a:1:{s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:35:\"testimonials-standard-3-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18303;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,323,'_wp_attachment_image_alt','a'),(223,1637,'_wp_attachment_image_alt','a'),(224,900,'_wp_attached_file','2017/05/h5-custom-icon-3.png'),(225,900,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:78;s:6:\"height\";i:68;s:4:\"file\";s:28:\"2017/05/h5-custom-icon-3.png\";s:8:\"filesize\";i:2117;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:{}}}'),(226,900,'_wp_attachment_image_alt','q'),(227,1934,'_wp_attached_file','2017/06/product-5-gallery-3.jpg'),(228,1934,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:542;s:4:\"file\";s:31:\"2017/06/product-5-gallery-3.jpg\";s:8:\"filesize\";i:22543;s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:31:\"product-5-gallery-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7968;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:31:\"product-5-gallery-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2317;}s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"product-5-gallery-3-300x271.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7325;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"product-5-gallery-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3478;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:31:\"product-5-gallery-3-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18947;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:31:\"product-5-gallery-3-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8321;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:31:\"product-5-gallery-3-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18947;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(229,1551,'_wp_attached_file','2017/06/h1-slide-1-background.jpg'),(230,1551,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:958;s:4:\"file\";s:33:\"2017/06/h1-slide-1-background.jpg\";s:8:\"filesize\";i:228102;s:5:\"sizes\";a:13:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:33:\"h1-slide-1-background-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21553;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:33:\"h1-slide-1-background-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4171;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:33:\"h1-slide-1-background-600x299.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:299;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46302;}s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"h1-slide-1-background-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15015;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"h1-slide-1-background-1024x511.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:109622;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"h1-slide-1-background-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7412;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"h1-slide-1-background-768x383.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:383;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68848;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:34:\"h1-slide-1-background-1536x766.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:766;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:206480;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:33:\"h1-slide-1-background-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57182;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:33:\"h1-slide-1-background-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24773;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:34:\"h1-slide-1-background-1100x550.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:123936;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:33:\"h1-slide-1-background-550x958.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:958;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77979;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:34:\"h1-slide-1-background-1100x958.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:958;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:166239;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(231,1934,'_wp_attachment_image_alt','a'),(232,1659,'_wp_attached_file','2017/06/h5-slide-1-background.jpg'),(233,1659,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:899;s:4:\"file\";s:33:\"2017/06/h5-slide-1-background.jpg\";s:8:\"filesize\";i:102991;s:5:\"sizes\";a:13:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:33:\"h5-slide-1-background-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13306;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:33:\"h5-slide-1-background-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3185;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:33:\"h5-slide-1-background-600x281.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25632;}s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"h5-slide-1-background-300x140.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9314;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"h5-slide-1-background-1024x479.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:479;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56723;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"h5-slide-1-background-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5134;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"h5-slide-1-background-768x360.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36803;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:34:\"h5-slide-1-background-1536x719.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:719;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:104749;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:33:\"h5-slide-1-background-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32856;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:33:\"h5-slide-1-background-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15148;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:34:\"h5-slide-1-background-1100x550.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66596;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:33:\"h5-slide-1-background-550x899.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:899;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44219;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:34:\"h5-slide-1-background-1100x899.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:899;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88170;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(234,333,'_wp_attached_file','2017/05/h2-img-1.png'),(235,333,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:636;s:4:\"file\";s:20:\"2017/05/h2-img-1.png\";s:8:\"filesize\";i:59884;s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:20:\"h2-img-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:13405;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:20:\"h2-img-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3583;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:20:\"h2-img-1-600x294.png\";s:5:\"width\";i:600;s:6:\"height\";i:294;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25784;}s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"h2-img-1-300x147.png\";s:5:\"width\";i:300;s:6:\"height\";i:147;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10896;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"h2-img-1-1024x501.png\";s:5:\"width\";i:1024;s:6:\"height\";i:501;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:50576;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"h2-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:5750;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"h2-img-1-768x376.png\";s:5:\"width\";i:768;s:6:\"height\";i:376;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35100;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:20:\"h2-img-1-550x550.png\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28656;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:20:\"h2-img-1-350x282.png\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15182;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:21:\"h2-img-1-1100x550.png\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:56271;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:20:\"h2-img-1-550x636.png\";s:5:\"width\";i:550;s:6:\"height\";i:636;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24658;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:21:\"h2-img-1-1100x636.png\";s:5:\"width\";i:1100;s:6:\"height\";i:636;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:53067;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(236,1551,'_wp_attachment_image_alt','a'),(237,901,'_wp_attached_file','2017/05/h5-custom-icon-4.png'),(238,901,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:78;s:6:\"height\";i:68;s:4:\"file\";s:28:\"2017/05/h5-custom-icon-4.png\";s:8:\"filesize\";i:2855;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:{}}}'),(239,901,'_wp_attachment_image_alt','a'),(240,1659,'_wp_attachment_image_alt','a'),(241,333,'_wp_attachment_image_alt','a'),(242,1947,'_wp_attached_file','2017/06/product-6.jpg'),(243,1947,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:722;s:4:\"file\";s:21:\"2017/06/product-6.jpg\";s:8:\"filesize\";i:99651;s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:21:\"product-6-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11599;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:21:\"product-6-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2497;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:21:\"product-6-600x542.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30622;}s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"product-6-300x271.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9865;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"product-6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4164;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"product-6-768x693.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:693;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45479;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:21:\"product-6-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31340;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:21:\"product-6-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12629;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:21:\"product-6-800x550.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51968;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:21:\"product-6-550x722.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:722;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50907;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(244,1947,'_wp_attachment_image_alt','a'),(245,1660,'_wp_attached_file','2017/06/h5-slide-2-background.jpg'),(246,1660,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:899;s:4:\"file\";s:33:\"2017/06/h5-slide-2-background.jpg\";s:8:\"filesize\";i:100827;s:5:\"sizes\";a:13:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:33:\"h5-slide-2-background-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16522;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:33:\"h5-slide-2-background-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3335;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:33:\"h5-slide-2-background-600x281.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19844;}s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"h5-slide-2-background-300x140.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6710;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"h5-slide-2-background-1024x479.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:479;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49345;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"h5-slide-2-background-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5656;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"h5-slide-2-background-768x360.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29833;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:34:\"h5-slide-2-background-1536x719.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:719;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:101512;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:33:\"h5-slide-2-background-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46726;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:33:\"h5-slide-2-background-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16908;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:34:\"h5-slide-2-background-1100x550.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62321;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:33:\"h5-slide-2-background-550x899.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:899;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:80460;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:34:\"h5-slide-2-background-1100x899.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:899;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:133071;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,902,'_wp_attached_file','2017/05/h5-custom-icon-5.png'),(248,902,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:78;s:6:\"height\";i:68;s:4:\"file\";s:28:\"2017/05/h5-custom-icon-5.png\";s:8:\"filesize\";i:3315;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,902,'_wp_attachment_image_alt','a'),(250,415,'_wp_attached_file','2017/05/testimonials-standard-4.png'),(251,415,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:104;s:6:\"height\";i:105;s:4:\"file\";s:35:\"2017/05/testimonials-standard-4.png\";s:8:\"filesize\";i:23532;s:5:\"sizes\";a:1:{s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:35:\"testimonials-standard-4-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17261;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(252,415,'_wp_attachment_image_alt','a'),(253,1559,'_wp_attached_file','2017/06/h1-slide-3-background.jpg'),(254,1559,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:958;s:4:\"file\";s:33:\"2017/06/h1-slide-3-background.jpg\";s:8:\"filesize\";i:239735;s:5:\"sizes\";a:13:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:33:\"h1-slide-3-background-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18296;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:33:\"h1-slide-3-background-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3652;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:33:\"h1-slide-3-background-600x299.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:299;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33277;}s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"h1-slide-3-background-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11073;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"h1-slide-3-background-1024x511.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85140;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"h1-slide-3-background-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6224;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"h1-slide-3-background-768x383.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:383;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50726;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:34:\"h1-slide-3-background-1536x766.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:766;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:173321;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:33:\"h1-slide-3-background-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53595;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:33:\"h1-slide-3-background-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20456;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:34:\"h1-slide-3-background-1100x550.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97553;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:33:\"h1-slide-3-background-550x958.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:958;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:87359;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:34:\"h1-slide-3-background-1100x958.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:958;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:164489;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,1660,'_wp_attachment_image_alt','a'),(256,903,'_wp_attached_file','2017/05/h5-custom-icon-6.png'),(257,903,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:78;s:6:\"height\";i:68;s:4:\"file\";s:28:\"2017/05/h5-custom-icon-6.png\";s:8:\"filesize\";i:3550;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:{}}}'),(258,903,'_wp_attachment_image_alt','a'),(259,416,'_wp_attached_file','2017/05/testimonials-standard-5.png'),(260,416,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:104;s:6:\"height\";i:105;s:4:\"file\";s:35:\"2017/05/testimonials-standard-5.png\";s:8:\"filesize\";i:28549;s:5:\"sizes\";a:1:{s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:35:\"testimonials-standard-5-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20457;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(261,416,'_wp_attachment_image_alt','a'),(262,1948,'_wp_attached_file','2017/06/product-6-gallery-1.jpg'),(263,1948,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:542;s:4:\"file\";s:31:\"2017/06/product-6-gallery-1.jpg\";s:8:\"filesize\";i:81232;s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:31:\"product-6-gallery-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14057;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:31:\"product-6-gallery-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2954;}s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"product-6-gallery-1-300x271.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12564;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"product-6-gallery-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:5148;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:31:\"product-6-gallery-1-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37852;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:31:\"product-6-gallery-1-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14177;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:31:\"product-6-gallery-1-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";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:{}}}'),(264,1948,'_wp_attachment_image_alt','a'),(265,1559,'_wp_attachment_image_alt','a'),(266,911,'_wp_attached_file','2017/05/h12-tabs-icon-2.png'),(267,911,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:194;s:6:\"height\";i:191;s:4:\"file\";s:27:\"2017/05/h12-tabs-icon-2.png\";s:8:\"filesize\";i:7394;s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:27:\"h12-tabs-icon-2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4227;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"h12-tabs-icon-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:7044;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(268,911,'_wp_attachment_image_alt','a'),(269,1950,'_wp_attached_file','2017/06/product-6-gallery-2.jpg'),(270,1950,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:542;s:4:\"file\";s:31:\"2017/06/product-6-gallery-2.jpg\";s:8:\"filesize\";i:104693;s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:31:\"product-6-gallery-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15345;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:31:\"product-6-gallery-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2998;}s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"product-6-gallery-2-300x271.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14625;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"product-6-gallery-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:5185;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:31:\"product-6-gallery-2-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44420;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:31:\"product-6-gallery-2-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17675;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:31:\"product-6-gallery-2-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44420;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(271,1566,'_wp_attached_file','2017/06/h1-slide-2-background.jpg'),(272,1566,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:958;s:4:\"file\";s:33:\"2017/06/h1-slide-2-background.jpg\";s:8:\"filesize\";i:223190;s:5:\"sizes\";a:13:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:33:\"h1-slide-2-background-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21079;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:33:\"h1-slide-2-background-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4299;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:33:\"h1-slide-2-background-600x299.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:299;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38282;}s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"h1-slide-2-background-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13432;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"h1-slide-2-background-1024x511.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86825;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"h1-slide-2-background-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7406;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"h1-slide-2-background-768x383.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:383;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55320;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:34:\"h1-slide-2-background-1536x766.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:766;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:163785;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:33:\"h1-slide-2-background-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55572;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:33:\"h1-slide-2-background-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23345;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:34:\"h1-slide-2-background-1100x550.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97844;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:33:\"h1-slide-2-background-550x958.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:958;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:99075;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:34:\"h1-slide-2-background-1100x958.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:958;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:166785;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(273,422,'_wp_attached_file','2017/05/h3-parallax-img-1.png'),(274,422,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1100;s:4:\"file\";s:29:\"2017/05/h3-parallax-img-1.png\";s:8:\"filesize\";i:64377;s:5:\"sizes\";a:13:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:29:\"h3-parallax-img-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:12769;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:29:\"h3-parallax-img-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3212;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:29:\"h3-parallax-img-1-600x344.png\";s:5:\"width\";i:600;s:6:\"height\";i:344;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18064;}s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"h3-parallax-img-1-300x172.png\";s:5:\"width\";i:300;s:6:\"height\";i:172;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7491;}s:5:\"large\";a:5:{s:4:\"file\";s:30:\"h3-parallax-img-1-1024x587.png\";s:5:\"width\";i:1024;s:6:\"height\";i:587;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35770;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"h3-parallax-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:5418;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"h3-parallax-img-1-768x440.png\";s:5:\"width\";i:768;s:6:\"height\";i:440;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24259;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:30:\"h3-parallax-img-1-1536x880.png\";s:5:\"width\";i:1536;s:6:\"height\";i:880;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59088;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:29:\"h3-parallax-img-1-550x550.png\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25576;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:29:\"h3-parallax-img-1-350x282.png\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13295;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:30:\"h3-parallax-img-1-1100x550.png\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:38180;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:30:\"h3-parallax-img-1-550x1100.png\";s:5:\"width\";i:550;s:6:\"height\";i:1100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27914;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:31:\"h3-parallax-img-1-1100x1100.png\";s:5:\"width\";i:1100;s:6:\"height\";i:1100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:56615;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(275,1661,'_wp_attached_file','2017/06/h5-slide-3-background.jpg'),(276,1661,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:899;s:4:\"file\";s:33:\"2017/06/h5-slide-3-background.jpg\";s:8:\"filesize\";i:95567;s:5:\"sizes\";a:13:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:33:\"h5-slide-3-background-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11688;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:33:\"h5-slide-3-background-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3035;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:33:\"h5-slide-3-background-600x281.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24941;}s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"h5-slide-3-background-300x140.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9625;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"h5-slide-3-background-1024x479.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:479;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53713;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"h5-slide-3-background-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4793;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"h5-slide-3-background-768x360.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35132;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:34:\"h5-slide-3-background-1536x719.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:719;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97602;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:33:\"h5-slide-3-background-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27930;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:33:\"h5-slide-3-background-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13748;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:34:\"h5-slide-3-background-1100x550.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60938;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:33:\"h5-slide-3-background-550x899.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:899;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36516;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:34:\"h5-slide-3-background-1100x899.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:899;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75888;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,1950,'_wp_attachment_image_alt','a'),(278,914,'_wp_attached_file','2017/05/h12-tabs-icon-3.png'),(279,914,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:194;s:6:\"height\";i:191;s:4:\"file\";s:27:\"2017/05/h12-tabs-icon-3.png\";s:8:\"filesize\";i:5042;s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:27:\"h12-tabs-icon-3-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2859;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"h12-tabs-icon-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:4487;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(280,914,'_wp_attachment_image_alt','a'),(281,1661,'_wp_attachment_image_alt','a'),(282,1566,'_wp_attachment_image_alt','a'),(283,1951,'_wp_attached_file','2017/06/product-6-gallery-3.jpg'),(284,1951,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:542;s:4:\"file\";s:31:\"2017/06/product-6-gallery-3.jpg\";s:8:\"filesize\";i:161542;s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:31:\"product-6-gallery-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24210;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:31:\"product-6-gallery-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4398;}s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"product-6-gallery-3-300x271.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22986;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"product-6-gallery-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7914;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:31:\"product-6-gallery-3-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70518;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:31:\"product-6-gallery-3-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26829;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:31:\"product-6-gallery-3-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70518;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,918,'_wp_attached_file','2017/05/h12-tabs-icon-4.png'),(286,918,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:194;s:6:\"height\";i:191;s:4:\"file\";s:27:\"2017/05/h12-tabs-icon-4.png\";s:8:\"filesize\";i:8690;s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:27:\"h12-tabs-icon-4-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4991;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"h12-tabs-icon-4-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8265;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,918,'_wp_attachment_image_alt','a'),(288,422,'_wp_attachment_image_alt','a'),(289,1951,'_wp_attachment_image_alt','a'),(290,921,'_wp_attached_file','2017/05/h5-parallax-img-1.png'),(291,921,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1100;s:4:\"file\";s:29:\"2017/05/h5-parallax-img-1.png\";s:8:\"filesize\";i:64934;s:5:\"sizes\";a:13:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:29:\"h5-parallax-img-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:13174;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:29:\"h5-parallax-img-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3304;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:29:\"h5-parallax-img-1-600x344.png\";s:5:\"width\";i:600;s:6:\"height\";i:344;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18598;}s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"h5-parallax-img-1-300x172.png\";s:5:\"width\";i:300;s:6:\"height\";i:172;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7746;}s:5:\"large\";a:5:{s:4:\"file\";s:30:\"h5-parallax-img-1-1024x587.png\";s:5:\"width\";i:1024;s:6:\"height\";i:587;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:36931;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"h5-parallax-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:5576;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"h5-parallax-img-1-768x440.png\";s:5:\"width\";i:768;s:6:\"height\";i:440;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24873;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:30:\"h5-parallax-img-1-1536x880.png\";s:5:\"width\";i:1536;s:6:\"height\";i:880;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:61276;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:29:\"h5-parallax-img-1-550x550.png\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26587;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:29:\"h5-parallax-img-1-350x282.png\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13813;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:30:\"h5-parallax-img-1-1100x550.png\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39309;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:30:\"h5-parallax-img-1-550x1100.png\";s:5:\"width\";i:550;s:6:\"height\";i:1100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27994;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:31:\"h5-parallax-img-1-1100x1100.png\";s:5:\"width\";i:1100;s:6:\"height\";i:1100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:57459;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(292,1693,'_wp_attached_file','2017/05/h1-img-8.jpg'),(293,1693,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:561;s:6:\"height\";i:635;s:4:\"file\";s:20:\"2017/05/h1-img-8.jpg\";s:8:\"filesize\";i:87640;s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:20:\"h1-img-8-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20923;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:20:\"h1-img-8-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3760;}s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"h1-img-8-265x300.jpg\";s:5:\"width\";i:265;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18158;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"h1-img-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:6775;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:20:\"h1-img-8-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56162;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:20:\"h1-img-8-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23096;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:20:\"h1-img-8-561x550.jpg\";s:5:\"width\";i:561;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64657;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:20:\"h1-img-8-550x635.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:635;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69501;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(294,1693,'_wp_attachment_image_alt','a'),(295,1577,'_wp_attached_file','2017/06/h9-parallax-img-1.png'),(296,1577,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1100;s:4:\"file\";s:29:\"2017/06/h9-parallax-img-1.png\";s:8:\"filesize\";i:89518;s:5:\"sizes\";a:13:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:29:\"h9-parallax-img-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:12675;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:29:\"h9-parallax-img-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3864;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:29:\"h9-parallax-img-1-600x344.png\";s:5:\"width\";i:600;s:6:\"height\";i:344;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23370;}s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"h9-parallax-img-1-300x172.png\";s:5:\"width\";i:300;s:6:\"height\";i:172;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10551;}s:5:\"large\";a:5:{s:4:\"file\";s:30:\"h9-parallax-img-1-1024x587.png\";s:5:\"width\";i:1024;s:6:\"height\";i:587;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43618;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"h9-parallax-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:6119;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"h9-parallax-img-1-768x440.png\";s:5:\"width\";i:768;s:6:\"height\";i:440;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30429;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:30:\"h9-parallax-img-1-1536x880.png\";s:5:\"width\";i:1536;s:6:\"height\";i:880;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:73795;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:29:\"h9-parallax-img-1-550x550.png\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25621;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:29:\"h9-parallax-img-1-350x282.png\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13154;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:30:\"h9-parallax-img-1-1100x550.png\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41846;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:30:\"h9-parallax-img-1-550x1100.png\";s:5:\"width\";i:550;s:6:\"height\";i:1100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32097;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:31:\"h9-parallax-img-1-1100x1100.png\";s:5:\"width\";i:1100;s:6:\"height\";i:1100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:60647;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,425,'_wp_attached_file','2017/05/h3-custom-icon-1.png'),(298,425,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:92;s:6:\"height\";i:82;s:4:\"file\";s:28:\"2017/05/h3-custom-icon-1.png\";s:8:\"filesize\";i:3270;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:{}}}'),(299,425,'_wp_attachment_image_alt','a'),(300,1953,'_wp_attached_file','2017/06/product-6-1.jpg'),(301,1953,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:722;s:4:\"file\";s:23:\"2017/06/product-6-1.jpg\";s:8:\"filesize\";i:99651;s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:23:\"product-6-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11599;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:23:\"product-6-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2497;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:23:\"product-6-1-600x542.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30622;}s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"product-6-1-300x271.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9865;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"product-6-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:4164;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"product-6-1-768x693.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:693;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45479;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:23:\"product-6-1-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31340;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:23:\"product-6-1-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12629;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:23:\"product-6-1-800x550.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51968;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:23:\"product-6-1-550x722.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:722;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50907;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(302,921,'_wp_attachment_image_alt','a'),(303,1953,'_wp_attachment_image_alt','a'),(304,1710,'_wp_attached_file','2017/06/blog-sidebar-contact-form-backround.jpg'),(305,1710,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:500;s:4:\"file\";s:47:\"2017/06/blog-sidebar-contact-form-backround.jpg\";s:8:\"filesize\";i:43241;s:5:\"sizes\";a:5:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:47:\"blog-sidebar-contact-form-backround-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8855;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:47:\"blog-sidebar-contact-form-backround-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1956;}s:6:\"medium\";a:5:{s:4:\"file\";s:47:\"blog-sidebar-contact-form-backround-180x300.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4921;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:47:\"blog-sidebar-contact-form-backround-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3253;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:47:\"blog-sidebar-contact-form-backround-300x282.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8561;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(306,1710,'_wp_attachment_image_alt','blog-sidebar-contact-form-backround'),(307,1577,'_wp_attachment_image_alt','a'),(308,426,'_wp_attached_file','2017/05/h3-custom-icon-2.png'),(309,426,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:92;s:6:\"height\";i:82;s:4:\"file\";s:28:\"2017/05/h3-custom-icon-2.png\";s:8:\"filesize\";i:2862;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:{}}}'),(310,426,'_wp_attachment_image_alt','a'),(311,925,'_wp_attached_file','2017/05/h12-tabs-icon-5.png'),(312,925,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:194;s:6:\"height\";i:191;s:4:\"file\";s:27:\"2017/05/h12-tabs-icon-5.png\";s:8:\"filesize\";i:5603;s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:27:\"h12-tabs-icon-5-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3278;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"h12-tabs-icon-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:5319;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(313,925,'_wp_attachment_image_alt','a'),(314,1719,'_wp_attached_file','2017/06/h6-slide-2-background.jpg'),(315,1719,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1900;s:6:\"height\";i:1054;s:4:\"file\";s:33:\"2017/06/h6-slide-2-background.jpg\";s:8:\"filesize\";i:136214;s:5:\"sizes\";a:13:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:33:\"h6-slide-2-background-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17030;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:33:\"h6-slide-2-background-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3783;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:33:\"h6-slide-2-background-600x333.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33222;}s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"h6-slide-2-background-300x166.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:166;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11994;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"h6-slide-2-background-1024x568.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:568;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73380;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"h6-slide-2-background-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6344;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"h6-slide-2-background-768x426.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:426;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48186;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:34:\"h6-slide-2-background-1536x852.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:852;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:135058;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:33:\"h6-slide-2-background-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42392;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:33:\"h6-slide-2-background-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18169;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:34:\"h6-slide-2-background-1100x550.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75710;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:34:\"h6-slide-2-background-550x1054.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:1054;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73578;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:35:\"h6-slide-2-background-1100x1054.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:1054;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:108766;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,1583,'_wp_attached_file','2017/06/h3-slide-1-background.jpg'),(317,1583,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:851;s:4:\"file\";s:33:\"2017/06/h3-slide-1-background.jpg\";s:8:\"filesize\";i:174200;s:5:\"sizes\";a:13:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:33:\"h3-slide-1-background-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17049;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:33:\"h3-slide-1-background-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3429;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:33:\"h3-slide-1-background-600x266.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29622;}s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"h3-slide-1-background-300x133.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:133;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10389;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"h3-slide-1-background-1024x454.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:454;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68952;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"h3-slide-1-background-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5879;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"h3-slide-1-background-768x340.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43878;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:34:\"h3-slide-1-background-1536x681.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:132183;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:33:\"h3-slide-1-background-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46707;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:33:\"h3-slide-1-background-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18765;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:34:\"h3-slide-1-background-1100x550.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:84987;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:33:\"h3-slide-1-background-550x851.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:851;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69560;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:34:\"h3-slide-1-background-1100x851.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:851;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:125193;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,1954,'_wp_attached_file','2017/06/product-6-gallery-1-1.jpg'),(319,1954,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:542;s:4:\"file\";s:33:\"2017/06/product-6-gallery-1-1.jpg\";s:8:\"filesize\";i:81232;s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:33:\"product-6-gallery-1-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14057;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:33:\"product-6-gallery-1-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2954;}s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"product-6-gallery-1-1-300x271.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12564;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"product-6-gallery-1-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5148;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:33:\"product-6-gallery-1-1-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37852;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:33:\"product-6-gallery-1-1-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14177;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:33:\"product-6-gallery-1-1-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";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:{}}}'),(320,1954,'_wp_attachment_image_alt','a'),(321,427,'_wp_attached_file','2017/05/h3-custom-icon-3.png'),(322,427,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:92;s:6:\"height\";i:82;s:4:\"file\";s:28:\"2017/05/h3-custom-icon-3.png\";s:8:\"filesize\";i:3889;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:{}}}'),(323,427,'_wp_attachment_image_alt','a'),(324,1583,'_wp_attachment_image_alt','a'),(325,1719,'_wp_attachment_image_alt','a'),(326,928,'_wp_attached_file','2017/05/h12-tabs-icon-6.png'),(327,928,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:194;s:6:\"height\";i:191;s:4:\"file\";s:27:\"2017/05/h12-tabs-icon-6.png\";s:8:\"filesize\";i:6661;s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:27:\"h12-tabs-icon-6-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4748;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"h12-tabs-icon-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:7689;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(328,928,'_wp_attachment_image_alt','a'),(329,1955,'_wp_attached_file','2017/06/product-6-gallery-2-1.jpg'),(330,1955,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:542;s:4:\"file\";s:33:\"2017/06/product-6-gallery-2-1.jpg\";s:8:\"filesize\";i:104693;s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:33:\"product-6-gallery-2-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15345;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:33:\"product-6-gallery-2-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2998;}s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"product-6-gallery-2-1-300x271.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14625;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"product-6-gallery-2-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5185;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:33:\"product-6-gallery-2-1-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44420;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:33:\"product-6-gallery-2-1-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17675;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:33:\"product-6-gallery-2-1-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44420;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,1955,'_wp_attachment_image_alt','a'),(332,1722,'_wp_attached_file','2017/06/h6-slide-3-background.jpg'),(333,1722,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1900;s:6:\"height\";i:1054;s:4:\"file\";s:33:\"2017/06/h6-slide-3-background.jpg\";s:8:\"filesize\";i:236970;s:5:\"sizes\";a:13:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:33:\"h6-slide-3-background-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17975;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:33:\"h6-slide-3-background-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3225;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:33:\"h6-slide-3-background-600x333.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39176;}s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"h6-slide-3-background-300x166.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:166;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11331;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"h6-slide-3-background-1024x568.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:568;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:104088;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"h6-slide-3-background-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5514;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"h6-slide-3-background-768x426.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:426;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61986;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:34:\"h6-slide-3-background-1536x852.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:852;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:210916;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:33:\"h6-slide-3-background-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53967;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:33:\"h6-slide-3-background-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20112;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:34:\"h6-slide-3-background-1100x550.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:106847;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:34:\"h6-slide-3-background-550x1054.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:1054;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85030;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:35:\"h6-slide-3-background-1100x1054.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:1054;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:168927;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(334,428,'_wp_attached_file','2017/05/h3-custom-icon-4.png'),(335,428,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:92;s:6:\"height\";i:82;s:4:\"file\";s:28:\"2017/05/h3-custom-icon-4.png\";s:8:\"filesize\";i:2624;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:{}}}'),(336,428,'_wp_attachment_image_alt','a'),(337,934,'_wp_attached_file','2017/05/h5-team-member-1.jpg'),(338,934,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:805;s:4:\"file\";s:28:\"2017/05/h5-team-member-1.jpg\";s:8:\"filesize\";i:101309;s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:28:\"h5-team-member-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24062;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:28:\"h5-team-member-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4189;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:28:\"h5-team-member-1-600x604.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:604;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73081;}s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"h5-team-member-1-298x300.jpg\";s:5:\"width\";i:298;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23546;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"h5-team-member-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:7577;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"h5-team-member-1-768x773.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:773;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105113;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:28:\"h5-team-member-1-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63590;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:28:\"h5-team-member-1-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23225;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:28:\"h5-team-member-1-800x550.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68904;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:28:\"h5-team-member-1-550x805.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:805;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:94787;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(339,934,'_wp_attachment_image_alt','a'),(340,1956,'_wp_attached_file','2017/06/product-6-gallery-3-1.jpg'),(341,1956,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:542;s:4:\"file\";s:33:\"2017/06/product-6-gallery-3-1.jpg\";s:8:\"filesize\";i:161542;s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:33:\"product-6-gallery-3-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24210;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:33:\"product-6-gallery-3-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4398;}s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"product-6-gallery-3-1-300x271.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22986;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"product-6-gallery-3-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:7914;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:33:\"product-6-gallery-3-1-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70518;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:33:\"product-6-gallery-3-1-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26829;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:33:\"product-6-gallery-3-1-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70518;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,1956,'_wp_attachment_image_alt','a'),(343,1722,'_wp_attachment_image_alt','a'),(344,429,'_wp_attached_file','2017/05/h3-custom-icon-5.png'),(345,429,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:92;s:6:\"height\";i:82;s:4:\"file\";s:28:\"2017/05/h3-custom-icon-5.png\";s:8:\"filesize\";i:2767;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:{}}}'),(346,429,'_wp_attachment_image_alt','a'),(347,1747,'_wp_attached_file','2017/06/product-1.jpg'),(348,1747,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:722;s:4:\"file\";s:21:\"2017/06/product-1.jpg\";s:8:\"filesize\";i:37784;s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:21:\"product-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8348;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:21:\"product-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2307;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:21:\"product-1-600x542.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19283;}s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"product-1-300x271.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7302;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"product-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:3475;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"product-1-768x693.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:693;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27531;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:21:\"product-1-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19220;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:21:\"product-1-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8976;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:21:\"product-1-800x550.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28394;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:21:\"product-1-550x722.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:722;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28867;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(349,1958,'_wp_attached_file','2017/06/product-8.jpg'),(350,1958,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:722;s:4:\"file\";s:21:\"2017/06/product-8.jpg\";s:8:\"filesize\";i:44758;s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:21:\"product-8-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9971;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:21:\"product-8-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2509;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:21:\"product-8-600x542.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22913;}s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"product-8-300x271.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8766;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"product-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:4075;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"product-8-768x693.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:693;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31883;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:21:\"product-8-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22778;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:21:\"product-8-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10654;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:21:\"product-8-800x550.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33629;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:21:\"product-8-550x722.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:722;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33496;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(351,2334,'_wp_attached_file','2017/06/gallery-img-5.jpg'),(352,2334,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:665;s:4:\"file\";s:25:\"2017/06/gallery-img-5.jpg\";s:8:\"filesize\";i:56325;s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:25:\"gallery-img-5-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12854;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:25:\"gallery-img-5-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3346;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:25:\"gallery-img-5-600x499.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:499;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30786;}s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"gallery-img-5-300x249.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:249;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11991;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"gallery-img-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5326;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"gallery-img-5-768x638.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:638;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43548;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:25:\"gallery-img-5-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29405;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:25:\"gallery-img-5-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14283;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:25:\"gallery-img-5-800x550.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41525;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:25:\"gallery-img-5-550x665.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:665;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33568;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(353,430,'_wp_attached_file','2017/05/h3-custom-icon-6.png'),(354,430,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:92;s:6:\"height\";i:82;s:4:\"file\";s:28:\"2017/05/h3-custom-icon-6.png\";s:8:\"filesize\";i:5008;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:{}}}'),(355,430,'_wp_attachment_image_alt','a'),(356,1747,'_wp_attachment_image_alt','a'),(357,2334,'_wp_attachment_image_alt','a'),(358,935,'_wp_attached_file','2017/05/h5-team-member-2.jpg'),(359,935,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:805;s:4:\"file\";s:28:\"2017/05/h5-team-member-2.jpg\";s:8:\"filesize\";i:102254;s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:28:\"h5-team-member-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19006;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:28:\"h5-team-member-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3692;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:28:\"h5-team-member-2-600x604.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:604;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68122;}s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"h5-team-member-2-298x300.jpg\";s:5:\"width\";i:298;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18746;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"h5-team-member-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:6192;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"h5-team-member-2-768x773.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:773;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:103853;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:28:\"h5-team-member-2-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57327;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:28:\"h5-team-member-2-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20327;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:28:\"h5-team-member-2-800x550.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88835;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:28:\"h5-team-member-2-550x805.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:805;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86191;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,503,'_wp_attached_file','2017/05/sidearea-logo.png'),(361,503,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:158;s:6:\"height\";i:158;s:4:\"file\";s:25:\"2017/05/sidearea-logo.png\";s:8:\"filesize\";i:3898;s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:25:\"sidearea-logo-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2476;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"sidearea-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:3985;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,503,'_wp_attachment_image_alt','a'),(363,935,'_wp_attachment_image_alt','a'),(364,1748,'_wp_attached_file','2017/06/product-1-gallery-1.jpg'),(365,1748,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:542;s:4:\"file\";s:31:\"2017/06/product-1-gallery-1.jpg\";s:8:\"filesize\";i:17650;s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:31:\"product-1-gallery-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6514;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:31:\"product-1-gallery-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1977;}s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"product-1-gallery-1-300x271.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5748;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"product-1-gallery-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:2839;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:31:\"product-1-gallery-1-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14348;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:31:\"product-1-gallery-1-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6665;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:31:\"product-1-gallery-1-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14348;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,1748,'_wp_attachment_image_alt','a'),(367,2361,'_wp_attached_file','2017/06/h10-slide-background-img.jpg'),(368,2361,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:978;s:4:\"file\";s:36:\"2017/06/h10-slide-background-img.jpg\";s:8:\"filesize\";i:28066;s:5:\"sizes\";a:13:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:36:\"h10-slide-background-img-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2770;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:36:\"h10-slide-background-img-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:983;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:36:\"h10-slide-background-img-600x306.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:306;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4966;}s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"h10-slide-background-img-300x153.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1941;}s:5:\"large\";a:5:{s:4:\"file\";s:37:\"h10-slide-background-img-1024x522.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:522;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11159;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"h10-slide-background-img-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1350;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:36:\"h10-slide-background-img-768x391.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:391;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7114;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:37:\"h10-slide-background-img-1536x782.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:782;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22875;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:36:\"h10-slide-background-img-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6856;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:36:\"h10-slide-background-img-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3060;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:37:\"h10-slide-background-img-1100x550.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12769;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:36:\"h10-slide-background-img-550x978.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:978;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10738;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:37:\"h10-slide-background-img-1100x978.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:978;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20274;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(369,1959,'_wp_attached_file','2017/06/product-8-gallery-1.jpg'),(370,1959,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:542;s:4:\"file\";s:31:\"2017/06/product-8-gallery-1.jpg\";s:8:\"filesize\";i:23172;s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:31:\"product-8-gallery-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8112;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:31:\"product-8-gallery-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2399;}s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"product-8-gallery-1-300x271.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7417;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"product-8-gallery-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:3552;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:31:\"product-8-gallery-1-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18741;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:31:\"product-8-gallery-1-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7943;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:31:\"product-8-gallery-1-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18741;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(371,936,'_wp_attached_file','2017/05/h5-team-member-3.jpg'),(372,936,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:805;s:4:\"file\";s:28:\"2017/05/h5-team-member-3.jpg\";s:8:\"filesize\";i:94538;s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:28:\"h5-team-member-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17744;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:28:\"h5-team-member-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3819;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:28:\"h5-team-member-3-600x604.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:604;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55372;}s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"h5-team-member-3-298x300.jpg\";s:5:\"width\";i:298;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17735;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"h5-team-member-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6398;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"h5-team-member-3-768x773.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:773;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:82838;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:28:\"h5-team-member-3-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47602;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:28:\"h5-team-member-3-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17693;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:28:\"h5-team-member-3-800x550.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63968;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:28:\"h5-team-member-3-550x805.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:805;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81094;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(373,571,'_wp_attached_file','2017/05/h3-process-img-1.png'),(374,571,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:193;s:6:\"height\";i:193;s:4:\"file\";s:28:\"2017/05/h3-process-img-1.png\";s:8:\"filesize\";i:76480;s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:28:\"h3-process-img-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20257;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"h3-process-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:41256;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(375,571,'_wp_attachment_image_alt','a'),(376,936,'_wp_attachment_image_alt','a'),(377,2361,'_wp_attachment_image_alt','a'),(378,1960,'_wp_attached_file','2017/06/product-8-gallery-2.jpg'),(379,1960,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:542;s:4:\"file\";s:31:\"2017/06/product-8-gallery-2.jpg\";s:8:\"filesize\";i:29711;s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:31:\"product-8-gallery-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9143;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:31:\"product-8-gallery-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2542;}s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"product-8-gallery-2-300x271.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9080;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"product-8-gallery-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:3949;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:31:\"product-8-gallery-2-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21638;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:31:\"product-8-gallery-2-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9882;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:31:\"product-8-gallery-2-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21638;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,572,'_wp_attached_file','2017/05/h3-process-img-2.png'),(381,572,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:193;s:6:\"height\";i:193;s:4:\"file\";s:28:\"2017/05/h3-process-img-2.png\";s:8:\"filesize\";i:63062;s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:28:\"h3-process-img-2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17721;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"h3-process-img-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:35116;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,572,'_wp_attachment_image_alt','a'),(383,1027,'_wp_attached_file','2017/05/h5-custom-icon-7.png'),(384,1027,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:84;s:6:\"height\";i:81;s:4:\"file\";s:28:\"2017/05/h5-custom-icon-7.png\";s:8:\"filesize\";i:3548;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:{}}}'),(385,1027,'_wp_attachment_image_alt','a'),(386,573,'_wp_attached_file','2017/05/h3-process-img-3.png'),(387,573,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:283;s:6:\"height\";i:283;s:4:\"file\";s:28:\"2017/05/h3-process-img-3.png\";s:8:\"filesize\";i:42949;s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:28:\"h3-process-img-3-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23075;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"h3-process-img-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:47764;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,573,'_wp_attachment_image_alt','a'),(389,2363,'_wp_attached_file','2017/06/h10-slide-img-1.png'),(390,2363,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:651;s:6:\"height\";i:773;s:4:\"file\";s:27:\"2017/06/h10-slide-img-1.png\";s:8:\"filesize\";i:96899;s:5:\"sizes\";a:9:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:27:\"h10-slide-img-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:118991;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:27:\"h10-slide-img-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15864;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:27:\"h10-slide-img-1-600x712.png\";s:5:\"width\";i:600;s:6:\"height\";i:712;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:489340;}s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"h10-slide-img-1-253x300.png\";s:5:\"width\";i:253;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:96767;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"h10-slide-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:32390;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:27:\"h10-slide-img-1-550x550.png\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:372520;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:27:\"h10-slide-img-1-350x282.png\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:131790;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:27:\"h10-slide-img-1-651x550.png\";s:5:\"width\";i:651;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:211696;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:27:\"h10-slide-img-1-550x773.png\";s:5:\"width\";i:550;s:6:\"height\";i:773;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:269255;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(391,1961,'_wp_attached_file','2017/06/product-8-gallery-3.jpg'),(392,1961,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:542;s:4:\"file\";s:31:\"2017/06/product-8-gallery-3.jpg\";s:8:\"filesize\";i:80955;s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:31:\"product-8-gallery-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14161;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:31:\"product-8-gallery-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3790;}s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"product-8-gallery-3-300x271.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14176;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"product-8-gallery-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5996;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:31:\"product-8-gallery-3-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33808;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:31:\"product-8-gallery-3-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14389;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:31:\"product-8-gallery-3-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33808;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(393,1028,'_wp_attached_file','2017/05/h5-custom-icon-8.png'),(394,1028,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:84;s:6:\"height\";i:81;s:4:\"file\";s:28:\"2017/05/h5-custom-icon-8.png\";s:8:\"filesize\";i:5452;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:{}}}'),(395,1028,'_wp_attachment_image_alt','a'),(396,2363,'_wp_attachment_image_alt','a'),(397,575,'_wp_attached_file','2017/05/h3-process-img-4.png'),(398,575,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:193;s:6:\"height\";i:193;s:4:\"file\";s:28:\"2017/05/h3-process-img-4.png\";s:8:\"filesize\";i:100105;s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:28:\"h3-process-img-4-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23745;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"h3-process-img-4-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:49647;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(399,575,'_wp_attachment_image_alt','a'),(400,2364,'_wp_attached_file','2017/06/h10-slide-img-2.png'),(401,2364,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:755;s:6:\"height\";i:756;s:4:\"file\";s:27:\"2017/06/h10-slide-img-2.png\";s:8:\"filesize\";i:46815;s:5:\"sizes\";a:9:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:27:\"h10-slide-img-2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28287;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:27:\"h10-slide-img-2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3502;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:27:\"h10-slide-img-2-600x601.png\";s:5:\"width\";i:600;s:6:\"height\";i:601;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:119336;}s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"h10-slide-img-2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28324;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"h10-slide-img-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:7156;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:27:\"h10-slide-img-2-550x550.png\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:101257;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:27:\"h10-slide-img-2-350x282.png\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33134;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:27:\"h10-slide-img-2-755x550.png\";s:5:\"width\";i:755;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:102049;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:27:\"h10-slide-img-2-550x756.png\";s:5:\"width\";i:550;s:6:\"height\";i:756;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:90634;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,1029,'_wp_attached_file','2017/05/h5-custom-icon-9.png'),(403,1029,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:84;s:6:\"height\";i:81;s:4:\"file\";s:28:\"2017/05/h5-custom-icon-9.png\";s:8:\"filesize\";i:4060;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:{}}}'),(404,1029,'_wp_attachment_image_alt','a'),(405,2364,'_wp_attachment_image_alt','a'),(406,1964,'_wp_attached_file','2017/06/h8-slide-2-background.jpg'),(407,1964,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:900;s:4:\"file\";s:33:\"2017/06/h8-slide-2-background.jpg\";s:8:\"filesize\";i:163824;s:5:\"sizes\";a:13:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:33:\"h8-slide-2-background-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11951;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:33:\"h8-slide-2-background-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2646;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:33:\"h8-slide-2-background-600x281.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22042;}s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"h8-slide-2-background-300x141.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7336;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"h8-slide-2-background-1024x480.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53367;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"h8-slide-2-background-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4359;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"h8-slide-2-background-768x360.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33181;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:34:\"h8-slide-2-background-1536x720.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105124;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:33:\"h8-slide-2-background-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30094;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:33:\"h8-slide-2-background-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12562;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:34:\"h8-slide-2-background-1100x550.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66040;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:33:\"h8-slide-2-background-550x900.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38240;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:34:\"h8-slide-2-background-1100x900.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79659;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,1156,'_wp_attached_file','2017/05/blog-post-1.jpg'),(409,1156,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:725;s:4:\"file\";s:23:\"2017/05/blog-post-1.jpg\";s:8:\"filesize\";i:101736;s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:23:\"blog-post-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23451;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:23:\"blog-post-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4093;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:23:\"blog-post-1-600x335.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:335;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38690;}s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"blog-post-1-300x167.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12348;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"blog-post-1-1024x571.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:571;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:94078;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"blog-post-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:7335;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"blog-post-1-768x428.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:428;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59003;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:23:\"blog-post-1-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66205;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:23:\"blog-post-1-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23952;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:24:\"blog-post-1-1100x550.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96746;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:23:\"blog-post-1-550x725.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:725;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96186;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:24:\"blog-post-1-1100x725.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:725;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:138597;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,606,'_wp_attached_file','2017/05/h4-img-1.png'),(411,606,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:597;s:6:\"height\";i:482;s:4:\"file\";s:20:\"2017/05/h4-img-1.png\";s:8:\"filesize\";i:52141;s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:20:\"h4-img-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:35488;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:20:\"h4-img-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9690;}s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"h4-img-1-300x242.png\";s:5:\"width\";i:300;s:6:\"height\";i:242;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28933;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"h4-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:15465;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:20:\"h4-img-1-550x482.png\";s:5:\"width\";i:550;s:6:\"height\";i:482;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:51724;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:20:\"h4-img-1-350x282.png\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35256;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:20:\"h4-img-1-550x482.png\";s:5:\"width\";i:550;s:6:\"height\";i:482;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:51724;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,606,'_wp_attachment_image_alt','a'),(413,2365,'_wp_attached_file','2017/06/h1-slide-img-3.png'),(414,2365,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:124;s:6:\"height\";i:123;s:4:\"file\";s:26:\"2017/06/h1-slide-img-3.png\";s:8:\"filesize\";i:7046;s:5:\"sizes\";a:1:{s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"h1-slide-img-3-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6248;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(415,2365,'_wp_attachment_image_alt','a'),(416,1964,'_wp_attachment_image_alt',''),(417,1156,'_wp_attachment_image_alt','f'),(418,619,'_wp_attached_file','2017/05/h4-background-img-1.png'),(419,619,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:966;s:4:\"file\";s:31:\"2017/05/h4-background-img-1.png\";s:8:\"filesize\";i:99972;s:5:\"sizes\";a:13:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:31:\"h4-background-img-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:17575;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:31:\"h4-background-img-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1622;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:31:\"h4-background-img-1-600x302.png\";s:5:\"width\";i:600;s:6:\"height\";i:302;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32332;}s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"h4-background-img-1-300x151.png\";s:5:\"width\";i:300;s:6:\"height\";i:151;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6330;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"h4-background-img-1-1024x515.png\";s:5:\"width\";i:1024;s:6:\"height\";i:515;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:127536;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"h4-background-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:3386;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"h4-background-img-1-768x386.png\";s:5:\"width\";i:768;s:6:\"height\";i:386;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59590;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:32:\"h4-background-img-1-1536x773.png\";s:5:\"width\";i:1536;s:6:\"height\";i:773;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:307429;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:31:\"h4-background-img-1-550x550.png\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:78493;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:31:\"h4-background-img-1-350x282.png\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17543;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:32:\"h4-background-img-1-1100x550.png\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:150381;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:31:\"h4-background-img-1-550x966.png\";s:5:\"width\";i:550;s:6:\"height\";i:966;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:85046;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:32:\"h4-background-img-1-1100x966.png\";s:5:\"width\";i:1100;s:6:\"height\";i:966;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:164494;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,2063,'_wp_attached_file','2017/06/map-pin-blue.png'),(421,2063,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:35;s:6:\"height\";i:54;s:4:\"file\";s:24:\"2017/06/map-pin-blue.png\";s:8:\"filesize\";i:1847;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:{}}}'),(422,2063,'_wp_attachment_image_alt','f'),(423,2366,'_wp_attached_file','2017/06/h1-slide-img-4.png'),(424,2366,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:124;s:6:\"height\";i:123;s:4:\"file\";s:26:\"2017/06/h1-slide-img-4.png\";s:8:\"filesize\";i:6462;s:5:\"sizes\";a:1:{s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"h1-slide-img-4-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5970;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(425,2366,'_wp_attachment_image_alt','a'),(426,619,'_wp_attachment_image_alt','a'),(427,2213,'_wp_attached_file','2017/06/h9-slider-background-img-1.jpg'),(428,2213,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:890;s:4:\"file\";s:38:\"2017/06/h9-slider-background-img-1.jpg\";s:8:\"filesize\";i:40459;s:5:\"sizes\";a:13:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:38:\"h9-slider-background-img-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4451;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:38:\"h9-slider-background-img-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1458;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:38:\"h9-slider-background-img-1-600x278.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7675;}s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"h9-slider-background-img-1-300x139.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:139;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3186;}s:5:\"large\";a:5:{s:4:\"file\";s:39:\"h9-slider-background-img-1-1024x475.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:475;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16486;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"h9-slider-background-img-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:2076;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:38:\"h9-slider-background-img-1-768x356.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:356;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10753;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:39:\"h9-slider-background-img-1-1536x712.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:712;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30615;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:38:\"h9-slider-background-img-1-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10403;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:38:\"h9-slider-background-img-1-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4769;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:39:\"h9-slider-background-img-1-1100x550.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19284;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:38:\"h9-slider-background-img-1-550x890.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:890;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13965;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:39:\"h9-slider-background-img-1-1100x890.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:890;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25652;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(429,1157,'_wp_attached_file','2017/05/blog-post-2.jpg'),(430,1157,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:725;s:4:\"file\";s:23:\"2017/05/blog-post-2.jpg\";s:8:\"filesize\";i:125594;s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:23:\"blog-post-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28077;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:23:\"blog-post-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4196;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:23:\"blog-post-2-600x335.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:335;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48206;}s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"blog-post-2-300x167.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13919;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"blog-post-2-1024x571.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:571;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:123776;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"blog-post-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:8023;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"blog-post-2-768x428.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:428;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75701;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:23:\"blog-post-2-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:82539;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:23:\"blog-post-2-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27898;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:24:\"blog-post-2-1100x550.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:128858;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:23:\"blog-post-2-550x725.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:725;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:108001;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:24:\"blog-post-2-1100x725.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:725;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:179162;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(431,2367,'_wp_attached_file','2017/06/h1-slide-img-5.png'),(432,2367,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:123;s:6:\"height\";i:123;s:4:\"file\";s:26:\"2017/06/h1-slide-img-5.png\";s:8:\"filesize\";i:7411;s:5:\"sizes\";a:1:{s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"h1-slide-img-5-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6546;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(433,2367,'_wp_attachment_image_alt','a'),(434,1157,'_wp_attachment_image_alt','f'),(435,2213,'_wp_attachment_image_alt','a'),(436,639,'_wp_attached_file','2017/05/h4-img-2.png'),(437,639,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:685;s:6:\"height\";i:495;s:4:\"file\";s:20:\"2017/05/h4-img-2.png\";s:8:\"filesize\";i:42395;s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:20:\"h4-img-2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46411;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:20:\"h4-img-2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9178;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:20:\"h4-img-2-600x434.png\";s:5:\"width\";i:600;s:6:\"height\";i:434;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:116322;}s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"h4-img-2-300x217.png\";s:5:\"width\";i:300;s:6:\"height\";i:217;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:36202;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"h4-img-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:16056;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:20:\"h4-img-2-550x495.png\";s:5:\"width\";i:550;s:6:\"height\";i:495;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:84976;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:20:\"h4-img-2-350x282.png\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:50783;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:20:\"h4-img-2-550x495.png\";s:5:\"width\";i:550;s:6:\"height\";i:495;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:84976;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,639,'_wp_attachment_image_alt','a'),(439,2368,'_wp_attached_file','2017/06/h1-slide-img-6.png'),(440,2368,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:124;s:6:\"height\";i:124;s:4:\"file\";s:26:\"2017/06/h1-slide-img-6.png\";s:8:\"filesize\";i:7349;s:5:\"sizes\";a:1:{s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"h1-slide-img-6-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6797;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(441,2368,'_wp_attachment_image_alt','a'),(442,2369,'_wp_attached_file','2017/06/h1-slide-img-7.png'),(443,2369,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:124;s:6:\"height\";i:123;s:4:\"file\";s:26:\"2017/06/h1-slide-img-7.png\";s:8:\"filesize\";i:5830;s:5:\"sizes\";a:1:{s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"h1-slide-img-7-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5292;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,2369,'_wp_attachment_image_alt','a'),(445,1158,'_wp_attached_file','2017/05/blog-post-3.jpg'),(446,1158,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:725;s:4:\"file\";s:23:\"2017/05/blog-post-3.jpg\";s:8:\"filesize\";i:121605;s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:23:\"blog-post-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27395;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:23:\"blog-post-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4256;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:23:\"blog-post-3-600x335.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:335;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57368;}s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"blog-post-3-300x167.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16352;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"blog-post-3-1024x571.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:571;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:141753;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"blog-post-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8059;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"blog-post-3-768x428.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:428;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88212;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:23:\"blog-post-3-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76339;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:23:\"blog-post-3-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29913;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:24:\"blog-post-3-1100x550.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:142607;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:23:\"blog-post-3-550x725.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:725;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:95117;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:24:\"blog-post-3-1100x725.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:725;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:189681;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(447,640,'_wp_attached_file','2017/05/h4-img-3.png'),(448,640,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:644;s:6:\"height\";i:476;s:4:\"file\";s:20:\"2017/05/h4-img-3.png\";s:8:\"filesize\";i:36351;s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:20:\"h4-img-3-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:52707;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:20:\"h4-img-3-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9512;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:20:\"h4-img-3-600x443.png\";s:5:\"width\";i:600;s:6:\"height\";i:443;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:123531;}s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"h4-img-3-300x222.png\";s:5:\"width\";i:300;s:6:\"height\";i:222;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40426;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"h4-img-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:17254;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:20:\"h4-img-3-550x476.png\";s:5:\"width\";i:550;s:6:\"height\";i:476;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:84718;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:20:\"h4-img-3-350x282.png\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:57469;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:20:\"h4-img-3-550x476.png\";s:5:\"width\";i:550;s:6:\"height\";i:476;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:84718;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(449,2246,'_wp_attached_file','2017/06/h9-slide-img-1.png'),(450,2246,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1098;s:6:\"height\";i:812;s:4:\"file\";s:26:\"2017/06/h9-slide-img-1.png\";s:8:\"filesize\";i:336286;s:5:\"sizes\";a:11:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"h9-slide-img-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:182044;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"h9-slide-img-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22108;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:26:\"h9-slide-img-1-600x444.png\";s:5:\"width\";i:600;s:6:\"height\";i:444;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:454299;}s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"h9-slide-img-1-300x222.png\";s:5:\"width\";i:300;s:6:\"height\";i:222;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:114736;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"h9-slide-img-1-1024x757.png\";s:5:\"width\";i:1024;s:6:\"height\";i:757;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1294302;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"h9-slide-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:47100;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"h9-slide-img-1-768x568.png\";s:5:\"width\";i:768;s:6:\"height\";i:568;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:747090;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:26:\"h9-slide-img-1-550x550.png\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:615022;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:26:\"h9-slide-img-1-350x282.png\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:179411;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:27:\"h9-slide-img-1-1098x550.png\";s:5:\"width\";i:1098;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:845073;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:26:\"h9-slide-img-1-550x812.png\";s:5:\"width\";i:550;s:6:\"height\";i:812;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:821851;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,1158,'_wp_attachment_image_alt','f'),(452,640,'_wp_attachment_image_alt','a'),(453,2246,'_wp_attachment_image_alt','a'),(454,2394,'_wp_attached_file','2017/05/h2-video-background-img.jpg'),(455,2394,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:760;s:4:\"file\";s:35:\"2017/05/h2-video-background-img.jpg\";s:8:\"filesize\";i:100089;s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:35:\"h2-video-background-img-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15060;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:35:\"h2-video-background-img-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3121;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:35:\"h2-video-background-img-600x445.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35675;}s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"h2-video-background-img-300x223.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:223;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12182;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"h2-video-background-img-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5327;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"h2-video-background-img-768x570.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52927;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:35:\"h2-video-background-img-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39421;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:35:\"h2-video-background-img-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16553;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:36:\"h2-video-background-img-1024x550.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66628;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:35:\"h2-video-background-img-550x760.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:760;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55977;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(456,1160,'_wp_attached_file','2017/05/blog-post-4.jpg'),(457,1160,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:725;s:4:\"file\";s:23:\"2017/05/blog-post-4.jpg\";s:8:\"filesize\";i:108506;s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:23:\"blog-post-4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24186;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:23:\"blog-post-4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4265;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:23:\"blog-post-4-600x335.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:335;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38179;}s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"blog-post-4-300x167.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11508;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"blog-post-4-1024x571.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:571;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:95920;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"blog-post-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7681;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"blog-post-4-768x428.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:428;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59219;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:23:\"blog-post-4-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67198;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:23:\"blog-post-4-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24257;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:24:\"blog-post-4-1100x550.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93025;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:23:\"blog-post-4-550x725.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:725;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:87496;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:24:\"blog-post-4-1100x725.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:725;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:141165;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(458,2394,'_wp_attachment_image_alt','a'),(459,1160,'_wp_attachment_image_alt','f'),(460,641,'_wp_attached_file','2017/05/h4-img-4.png'),(461,641,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:685;s:6:\"height\";i:495;s:4:\"file\";s:20:\"2017/05/h4-img-4.png\";s:8:\"filesize\";i:41650;s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:20:\"h4-img-4-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:60547;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:20:\"h4-img-4-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10955;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:20:\"h4-img-4-600x434.png\";s:5:\"width\";i:600;s:6:\"height\";i:434;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:137477;}s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"h4-img-4-300x217.png\";s:5:\"width\";i:300;s:6:\"height\";i:217;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44231;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"h4-img-4-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20361;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:20:\"h4-img-4-550x495.png\";s:5:\"width\";i:550;s:6:\"height\";i:495;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:93050;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:20:\"h4-img-4-350x282.png\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:63616;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:20:\"h4-img-4-550x495.png\";s:5:\"width\";i:550;s:6:\"height\";i:495;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:93050;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(462,641,'_wp_attachment_image_alt','a'),(463,2276,'_wp_attached_file','2017/06/h9-slide-img-2.png'),(464,2276,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:666;s:6:\"height\";i:864;s:4:\"file\";s:26:\"2017/06/h9-slide-img-2.png\";s:8:\"filesize\";i:148861;s:5:\"sizes\";a:9:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"h9-slide-img-2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:169450;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"h9-slide-img-2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21220;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:26:\"h9-slide-img-2-600x778.png\";s:5:\"width\";i:600;s:6:\"height\";i:778;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:711744;}s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"h9-slide-img-2-231x300.png\";s:5:\"width\";i:231;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:114839;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"h9-slide-img-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:44951;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:26:\"h9-slide-img-2-550x550.png\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:537158;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:26:\"h9-slide-img-2-350x282.png\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:194193;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:26:\"h9-slide-img-2-666x550.png\";s:5:\"width\";i:666;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:403095;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:26:\"h9-slide-img-2-550x864.png\";s:5:\"width\";i:550;s:6:\"height\";i:864;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:446199;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(465,2411,'_wp_attached_file','2017/06/coming-soon-background-img.jpg'),(466,2411,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1100;s:4:\"file\";s:38:\"2017/06/coming-soon-background-img.jpg\";s:8:\"filesize\";i:51069;s:5:\"sizes\";a:13:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:38:\"coming-soon-background-img-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4959;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:38:\"coming-soon-background-img-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1397;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:38:\"coming-soon-background-img-600x344.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:344;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9129;}s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"coming-soon-background-img-300x172.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:172;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3294;}s:5:\"large\";a:5:{s:4:\"file\";s:39:\"coming-soon-background-img-1024x587.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:587;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21579;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"coming-soon-background-img-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2015;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:38:\"coming-soon-background-img-768x440.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:440;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13491;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:39:\"coming-soon-background-img-1536x880.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:880;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41552;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:38:\"coming-soon-background-img-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12433;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:38:\"coming-soon-background-img-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5366;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:39:\"coming-soon-background-img-1100x550.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21530;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:39:\"coming-soon-background-img-550x1100.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:1100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18967;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:40:\"coming-soon-background-img-1100x1100.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:1100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35681;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,1209,'_wp_attached_file','2017/05/h3-background-img-1.jpg'),(468,1209,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1930;s:4:\"file\";s:31:\"2017/05/h3-background-img-1.jpg\";s:8:\"filesize\";i:23439;s:5:\"sizes\";a:13:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:31:\"h3-background-img-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2221;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:31:\"h3-background-img-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:948;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:31:\"h3-background-img-1-600x603.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:603;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6646;}s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"h3-background-img-1-298x300.jpg\";s:5:\"width\";i:298;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2223;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"h3-background-img-1-1019x1024.jpg\";s:5:\"width\";i:1019;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17538;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"h3-background-img-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:1137;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"h3-background-img-1-768x772.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:772;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10349;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:33:\"h3-background-img-1-1528x1536.jpg\";s:5:\"width\";i:1528;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38625;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:31:\"h3-background-img-1-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5760;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:31:\"h3-background-img-1-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2385;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:32:\"h3-background-img-1-1100x550.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10772;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:32:\"h3-background-img-1-550x1100.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:1100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10642;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:33:\"h3-background-img-1-1100x1100.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:1100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20365;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(469,2276,'_wp_attachment_image_alt','a'),(470,642,'_wp_attached_file','2017/05/h4-img-5.png'),(471,642,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:538;s:4:\"file\";s:20:\"2017/05/h4-img-5.png\";s:8:\"filesize\";i:53864;s:5:\"sizes\";a:9:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:20:\"h4-img-5-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35286;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:20:\"h4-img-5-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10018;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:20:\"h4-img-5-600x404.png\";s:5:\"width\";i:600;s:6:\"height\";i:404;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:55814;}s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"h4-img-5-300x202.png\";s:5:\"width\";i:300;s:6:\"height\";i:202;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24291;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"h4-img-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:15855;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"h4-img-5-768x516.png\";s:5:\"width\";i:768;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:73486;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:20:\"h4-img-5-550x538.png\";s:5:\"width\";i:550;s:6:\"height\";i:538;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:55510;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:20:\"h4-img-5-350x282.png\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35210;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:20:\"h4-img-5-550x538.png\";s:5:\"width\";i:550;s:6:\"height\";i:538;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:55510;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(472,2411,'_wp_attachment_image_alt','a'),(473,2412,'_wp_attached_file','2017/06/coming-soon-img-1.png'),(474,2412,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:569;s:4:\"file\";s:29:\"2017/06/coming-soon-img-1.png\";s:8:\"filesize\";i:120605;s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:29:\"coming-soon-img-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:127681;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:29:\"coming-soon-img-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17472;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:29:\"coming-soon-img-1-600x341.png\";s:5:\"width\";i:600;s:6:\"height\";i:341;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:227687;}s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"coming-soon-img-1-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:64879;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"coming-soon-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:36074;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"coming-soon-img-1-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:354134;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:29:\"coming-soon-img-1-550x550.png\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:372214;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:29:\"coming-soon-img-1-350x282.png\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:132494;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:30:\"coming-soon-img-1-1000x550.png\";s:5:\"width\";i:1000;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:351246;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:29:\"coming-soon-img-1-550x569.png\";s:5:\"width\";i:550;s:6:\"height\";i:569;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:270723;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(475,676,'_wp_attached_file','2017/05/h4-background-img-2.jpg'),(476,676,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1101;s:4:\"file\";s:31:\"2017/05/h4-background-img-2.jpg\";s:8:\"filesize\";i:26948;s:5:\"sizes\";a:13:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:31:\"h4-background-img-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2351;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:31:\"h4-background-img-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:977;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:31:\"h4-background-img-2-600x344.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:344;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4514;}s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"h4-background-img-2-300x172.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:172;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1709;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"h4-background-img-2-1024x587.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:587;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10717;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"h4-background-img-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:1196;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"h4-background-img-2-768x440.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:440;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6593;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:32:\"h4-background-img-2-1536x881.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:881;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23472;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:31:\"h4-background-img-2-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5903;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:31:\"h4-background-img-2-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2472;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:32:\"h4-background-img-2-1100x550.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11032;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:32:\"h4-background-img-2-550x1100.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:1100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10628;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:33:\"h4-background-img-2-1100x1100.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:1100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20219;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(477,1209,'_wp_attachment_image_alt','a'),(478,2311,'_wp_attached_file','2017/06/blog-post-25.jpg'),(479,2311,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:725;s:4:\"file\";s:24:\"2017/06/blog-post-25.jpg\";s:8:\"filesize\";i:129295;s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:24:\"blog-post-25-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30831;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:24:\"blog-post-25-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4703;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:24:\"blog-post-25-600x335.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:335;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78048;}s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"blog-post-25-300x167.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21393;}s:5:\"large\";a:5:{s:4:\"file\";s:25:\"blog-post-25-1024x571.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:571;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:198380;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"blog-post-25-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8911;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"blog-post-25-768x428.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:428;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121877;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:24:\"blog-post-25-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:87733;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:24:\"blog-post-25-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36166;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:25:\"blog-post-25-1100x550.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:200964;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:24:\"blog-post-25-550x725.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:725;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113126;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:25:\"blog-post-25-1100x725.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:725;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:266212;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(480,2412,'_wp_attachment_image_alt','a'),(481,2311,'_wp_attachment_image_alt','a'),(482,676,'_wp_attachment_image_alt','a'),(483,2423,'_wp_attached_file','2017/06/testimonials-standard-6.png'),(484,2423,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:104;s:6:\"height\";i:105;s:4:\"file\";s:35:\"2017/06/testimonials-standard-6.png\";s:8:\"filesize\";i:22902;s:5:\"sizes\";a:1:{s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:35:\"testimonials-standard-6-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17245;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,2423,'_wp_attachment_image_alt','a'),(486,1217,'_wp_attached_file','2017/05/blog-post-5.jpg'),(487,1217,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:725;s:4:\"file\";s:23:\"2017/05/blog-post-5.jpg\";s:8:\"filesize\";i:105681;s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:23:\"blog-post-5-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17266;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:23:\"blog-post-5-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3657;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:23:\"blog-post-5-600x335.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:335;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31619;}s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"blog-post-5-300x167.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10919;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"blog-post-5-1024x571.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:571;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75693;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"blog-post-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6084;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"blog-post-5-768x428.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:428;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47448;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:23:\"blog-post-5-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46148;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:23:\"blog-post-5-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19232;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:24:\"blog-post-5-1100x550.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:80669;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:23:\"blog-post-5-550x725.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:725;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59534;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:24:\"blog-post-5-1100x725.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:725;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:109375;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,681,'_wp_attached_file','2017/05/h4-course-img-1.png'),(489,681,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:639;s:4:\"file\";s:27:\"2017/05/h4-course-img-1.png\";s:8:\"filesize\";i:46077;s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:27:\"h4-course-img-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:22894;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:27:\"h4-course-img-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6372;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:27:\"h4-course-img-1-600x383.png\";s:5:\"width\";i:600;s:6:\"height\";i:383;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34280;}s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"h4-course-img-1-300x192.png\";s:5:\"width\";i:300;s:6:\"height\";i:192;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14698;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"h4-course-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:10158;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"h4-course-img-1-768x491.png\";s:5:\"width\";i:768;s:6:\"height\";i:491;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47672;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:27:\"h4-course-img-1-550x550.png\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:48938;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:27:\"h4-course-img-1-350x282.png\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22722;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:28:\"h4-course-img-1-1000x550.png\";s:5:\"width\";i:1000;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47708;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:27:\"h4-course-img-1-550x639.png\";s:5:\"width\";i:550;s:6:\"height\";i:639;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39854;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(490,2441,'_wp_attached_file','2017/06/shop-sidebar-banner.jpg'),(491,2441,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:513;s:4:\"file\";s:31:\"2017/06/shop-sidebar-banner.jpg\";s:8:\"filesize\";i:90083;s:5:\"sizes\";a:9:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:31:\"shop-sidebar-banner-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16409;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:31:\"shop-sidebar-banner-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3374;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:31:\"shop-sidebar-banner-600x385.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:385;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34686;}s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"shop-sidebar-banner-300x192.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11677;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"shop-sidebar-banner-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5818;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"shop-sidebar-banner-768x492.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:492;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49149;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:31:\"shop-sidebar-banner-550x513.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42145;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:31:\"shop-sidebar-banner-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18935;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:31:\"shop-sidebar-banner-550x513.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42145;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(492,2441,'_wp_attachment_image_alt','a'),(493,681,'_wp_attachment_image_alt','a'),(494,1217,'_wp_attachment_image_alt','g'),(495,2315,'_wp_attached_file','2017/06/blog-post-26.jpg'),(496,2315,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:725;s:4:\"file\";s:24:\"2017/06/blog-post-26.jpg\";s:8:\"filesize\";i:81796;s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:24:\"blog-post-26-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17064;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:24:\"blog-post-26-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3546;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:24:\"blog-post-26-600x335.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:335;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22142;}s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"blog-post-26-300x167.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7638;}s:5:\"large\";a:5:{s:4:\"file\";s:25:\"blog-post-26-1024x571.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:571;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53792;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"blog-post-26-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6028;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"blog-post-26-768x428.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:428;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33234;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:24:\"blog-post-26-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45643;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:24:\"blog-post-26-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15974;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:25:\"blog-post-26-1100x550.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54589;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:24:\"blog-post-26-550x725.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:725;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73981;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:25:\"blog-post-26-1100x725.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:725;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86139;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(497,2315,'_wp_attachment_image_alt','a'),(498,2820,'_wp_attached_file','2017/05/become-instructor-img-1.jpg'),(499,2820,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:966;s:6:\"height\";i:512;s:4:\"file\";s:35:\"2017/05/become-instructor-img-1.jpg\";s:8:\"filesize\";i:86842;s:5:\"sizes\";a:9:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:35:\"become-instructor-img-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17426;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:35:\"become-instructor-img-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3108;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:35:\"become-instructor-img-1-600x318.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:318;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27896;}s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"become-instructor-img-1-300x159.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:159;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7977;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"become-instructor-img-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:5471;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"become-instructor-img-1-768x407.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:407;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43774;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:35:\"become-instructor-img-1-550x512.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53504;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:35:\"become-instructor-img-1-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18287;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:35:\"become-instructor-img-1-550x512.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53504;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(500,2820,'_wp_attachment_image_alt','a'),(501,682,'_wp_attached_file','2017/05/h4-course-img-2.png'),(502,682,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:639;s:4:\"file\";s:27:\"2017/05/h4-course-img-2.png\";s:8:\"filesize\";i:42958;s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:27:\"h4-course-img-2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21632;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:27:\"h4-course-img-2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6074;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:27:\"h4-course-img-2-600x383.png\";s:5:\"width\";i:600;s:6:\"height\";i:383;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32513;}s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"h4-course-img-2-300x192.png\";s:5:\"width\";i:300;s:6:\"height\";i:192;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14255;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"h4-course-img-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:9537;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"h4-course-img-2-768x491.png\";s:5:\"width\";i:768;s:6:\"height\";i:491;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45122;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:27:\"h4-course-img-2-550x550.png\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45992;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:27:\"h4-course-img-2-350x282.png\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22000;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:28:\"h4-course-img-2-1000x550.png\";s:5:\"width\";i:1000;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42835;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:27:\"h4-course-img-2-550x639.png\";s:5:\"width\";i:550;s:6:\"height\";i:639;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39591;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(503,2320,'_wp_attached_file','2017/05/blog-post-17.jpg'),(504,2320,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:725;s:4:\"file\";s:24:\"2017/05/blog-post-17.jpg\";s:8:\"filesize\";i:96196;s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:24:\"blog-post-17-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17671;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:24:\"blog-post-17-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3478;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:24:\"blog-post-17-600x335.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:335;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24926;}s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"blog-post-17-300x167.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8179;}s:5:\"large\";a:5:{s:4:\"file\";s:25:\"blog-post-17-1024x571.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:571;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64370;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"blog-post-17-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5953;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"blog-post-17-768x428.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:428;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38621;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:24:\"blog-post-17-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49693;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:24:\"blog-post-17-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17122;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:25:\"blog-post-17-1100x550.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67270;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:24:\"blog-post-17-550x725.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:725;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75124;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:25:\"blog-post-17-1100x725.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:725;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:103472;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(505,682,'_wp_attachment_image_alt','a'),(506,2931,'_wp_attached_file','2017/06/landing-slider-1-logo.png'),(507,2931,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:83;s:6:\"height\";i:79;s:4:\"file\";s:33:\"2017/06/landing-slider-1-logo.png\";s:8:\"filesize\";i:1388;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:{}}}'),(508,2931,'_wp_attachment_image_alt','a'),(509,1225,'_wp_attached_file','2017/05/h5-img-1.jpg'),(510,1225,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1100;s:6:\"height\";i:699;s:4:\"file\";s:20:\"2017/05/h5-img-1.jpg\";s:8:\"filesize\";i:91179;s:5:\"sizes\";a:11:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:20:\"h5-img-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16963;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:20:\"h5-img-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3667;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:20:\"h5-img-1-600x381.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:381;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29589;}s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"h5-img-1-300x191.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10350;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"h5-img-1-1024x651.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:651;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64902;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"h5-img-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:6177;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"h5-img-1-768x488.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:488;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42232;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:20:\"h5-img-1-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40869;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:20:\"h5-img-1-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17537;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:21:\"h5-img-1-1100x550.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62011;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:20:\"h5-img-1-550x699.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:699;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50046;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(511,2320,'_wp_attachment_image_alt','a'),(512,1225,'_wp_attachment_image_alt','a'),(513,683,'_wp_attached_file','2017/05/h4-course-img-3.png'),(514,683,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:639;s:4:\"file\";s:27:\"2017/05/h4-course-img-3.png\";s:8:\"filesize\";i:51249;s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:27:\"h4-course-img-3-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26267;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:27:\"h4-course-img-3-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7525;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:27:\"h4-course-img-3-600x383.png\";s:5:\"width\";i:600;s:6:\"height\";i:383;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:38198;}s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"h4-course-img-3-300x192.png\";s:5:\"width\";i:300;s:6:\"height\";i:192;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16894;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"h4-course-img-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:11786;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"h4-course-img-3-768x491.png\";s:5:\"width\";i:768;s:6:\"height\";i:491;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:52439;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:27:\"h4-course-img-3-550x550.png\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:54896;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:27:\"h4-course-img-3-350x282.png\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26161;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:28:\"h4-course-img-3-1000x550.png\";s:5:\"width\";i:1000;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:49643;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:27:\"h4-course-img-3-550x639.png\";s:5:\"width\";i:550;s:6:\"height\";i:639;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:48906;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(515,2947,'_wp_attached_file','2017/06/landing-background-img.jpg'),(516,2947,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1100;s:4:\"file\";s:34:\"2017/06/landing-background-img.jpg\";s:8:\"filesize\";i:64771;s:5:\"sizes\";a:13:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:34:\"landing-background-img-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2495;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:34:\"landing-background-img-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:990;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:34:\"landing-background-img-600x344.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:344;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4776;}s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"landing-background-img-300x172.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:172;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1898;}s:5:\"large\";a:5:{s:4:\"file\";s:35:\"landing-background-img-1024x587.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:587;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11184;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"landing-background-img-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1258;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:34:\"landing-background-img-768x440.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:440;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6932;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:35:\"landing-background-img-1536x880.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:880;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23769;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:34:\"landing-background-img-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6193;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:34:\"landing-background-img-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2691;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:35:\"landing-background-img-1100x550.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11414;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:35:\"landing-background-img-550x1100.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:1100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11173;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:36:\"landing-background-img-1100x1100.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:1100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21568;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(517,683,'_wp_attachment_image_alt','a'),(518,2324,'_wp_attached_file','2017/05/blog-post-12.jpg'),(519,2324,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:725;s:4:\"file\";s:24:\"2017/05/blog-post-12.jpg\";s:8:\"filesize\";i:85271;s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:24:\"blog-post-12-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16935;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:24:\"blog-post-12-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3159;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:24:\"blog-post-12-600x335.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:335;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22082;}s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"blog-post-12-300x167.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6976;}s:5:\"large\";a:5:{s:4:\"file\";s:25:\"blog-post-12-1024x571.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:571;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54729;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"blog-post-12-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5552;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"blog-post-12-768x428.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:428;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33828;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:24:\"blog-post-12-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47117;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:24:\"blog-post-12-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15750;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:25:\"blog-post-12-1100x550.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58919;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:24:\"blog-post-12-550x725.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:725;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79210;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:25:\"blog-post-12-1100x725.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:725;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:87758;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(520,1235,'_wp_attached_file','2017/05/h5-img-2.jpg'),(521,1235,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:922;s:6:\"height\";i:700;s:4:\"file\";s:20:\"2017/05/h5-img-2.jpg\";s:8:\"filesize\";i:86908;s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:20:\"h5-img-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17583;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:20:\"h5-img-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3420;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:20:\"h5-img-2-600x456.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:456;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34844;}s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"h5-img-2-300x228.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:228;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11849;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"h5-img-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:5990;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"h5-img-2-768x583.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:583;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50091;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:20:\"h5-img-2-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44193;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:20:\"h5-img-2-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16423;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:20:\"h5-img-2-922x550.jpg\";s:5:\"width\";i:922;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57972;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:20:\"h5-img-2-550x700.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64637;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(522,703,'_wp_attached_file','2017/05/h12-process-img-1.png'),(523,703,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:193;s:6:\"height\";i:193;s:4:\"file\";s:29:\"2017/05/h12-process-img-1.png\";s:8:\"filesize\";i:64845;s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:29:\"h12-process-img-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17584;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"h12-process-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:34933;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(524,703,'_wp_attachment_image_alt','a'),(525,2947,'_wp_attachment_image_alt','a'),(526,1235,'_wp_attachment_image_alt','a'),(527,2324,'_wp_attachment_image_alt','a'),(528,2330,'_wp_attached_file','2017/06/gallery-img-1.jpg'),(529,2330,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:665;s:4:\"file\";s:25:\"2017/06/gallery-img-1.jpg\";s:8:\"filesize\";i:99084;s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:25:\"gallery-img-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24073;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:25:\"gallery-img-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4457;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:25:\"gallery-img-1-600x499.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:499;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61376;}s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"gallery-img-1-300x249.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:249;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20319;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"gallery-img-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:8001;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"gallery-img-1-768x638.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:638;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88698;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:25:\"gallery-img-1-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62704;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:25:\"gallery-img-1-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25227;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:25:\"gallery-img-1-800x550.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88145;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:25:\"gallery-img-1-550x665.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:665;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81234;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,2955,'_wp_attached_file','2017/06/landing-home-1.jpg'),(531,2955,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:844;s:4:\"file\";s:26:\"2017/06/landing-home-1.jpg\";s:8:\"filesize\";i:144238;s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"landing-home-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22349;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"landing-home-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4327;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:26:\"landing-home-1-600x633.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:633;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70828;}s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"landing-home-1-284x300.jpg\";s:5:\"width\";i:284;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22021;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"landing-home-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:7489;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"landing-home-1-768x810.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:810;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:99355;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:26:\"landing-home-1-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58495;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:26:\"landing-home-1-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23692;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:26:\"landing-home-1-800x550.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74531;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:26:\"landing-home-1-550x844.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:844;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88009;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(532,2330,'_wp_attachment_image_alt','a'),(533,2955,'_wp_attachment_image_alt','a'),(534,2331,'_wp_attached_file','2017/06/gallery-img-2.jpg'),(535,2331,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:665;s:4:\"file\";s:25:\"2017/06/gallery-img-2.jpg\";s:8:\"filesize\";i:84901;s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:25:\"gallery-img-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16148;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:25:\"gallery-img-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3262;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:25:\"gallery-img-2-600x499.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:499;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39462;}s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"gallery-img-2-300x249.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:249;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13013;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"gallery-img-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:5487;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"gallery-img-2-768x638.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:638;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57358;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:25:\"gallery-img-2-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42637;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:25:\"gallery-img-2-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16270;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:25:\"gallery-img-2-800x550.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62768;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:25:\"gallery-img-2-550x665.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:665;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58603;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,3529,'_wp_attached_file','2017/06/landing-cards-gallery-img-3.jpg'),(537,3529,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:754;s:6:\"height\";i:750;s:4:\"file\";s:39:\"2017/06/landing-cards-gallery-img-3.jpg\";s:8:\"filesize\";i:79649;s:5:\"sizes\";a:9:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:39:\"landing-cards-gallery-img-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14168;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:39:\"landing-cards-gallery-img-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3320;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:39:\"landing-cards-gallery-img-3-600x597.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:597;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40376;}s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"landing-cards-gallery-img-3-300x298.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:298;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14697;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"landing-cards-gallery-img-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5188;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:39:\"landing-cards-gallery-img-3-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35583;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:39:\"landing-cards-gallery-img-3-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14983;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:39:\"landing-cards-gallery-img-3-754x550.jpg\";s:5:\"width\";i:754;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46862;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:39:\"landing-cards-gallery-img-3-550x750.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55547;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(538,2331,'_wp_attachment_image_alt','a'),(539,3529,'_wp_attachment_image_alt','a'),(540,3049,'_wp_attached_file','2017/06/product-12-gallery-1.jpg'),(541,3049,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:542;s:4:\"file\";s:32:\"2017/06/product-12-gallery-1.jpg\";s:8:\"filesize\";i:90816;s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:32:\"product-12-gallery-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18252;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:32:\"product-12-gallery-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3532;}s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"product-12-gallery-1-300x271.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16439;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"product-12-gallery-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:6160;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:32:\"product-12-gallery-1-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51754;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:32:\"product-12-gallery-1-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19659;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:32:\"product-12-gallery-1-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51754;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,3006,'_wp_attached_file','2017/06/h4-course-img-4.png'),(543,3006,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:639;s:4:\"file\";s:27:\"2017/06/h4-course-img-4.png\";s:8:\"filesize\";i:55105;s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:27:\"h4-course-img-4-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23090;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:27:\"h4-course-img-4-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6540;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:27:\"h4-course-img-4-600x383.png\";s:5:\"width\";i:600;s:6:\"height\";i:383;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41711;}s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"h4-course-img-4-300x192.png\";s:5:\"width\";i:300;s:6:\"height\";i:192;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18737;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"h4-course-img-4-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10438;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"h4-course-img-4-768x491.png\";s:5:\"width\";i:768;s:6:\"height\";i:491;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:57314;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:27:\"h4-course-img-4-550x550.png\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:48240;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:27:\"h4-course-img-4-350x282.png\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27342;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:28:\"h4-course-img-4-1000x550.png\";s:5:\"width\";i:1000;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:57033;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:27:\"h4-course-img-4-550x639.png\";s:5:\"width\";i:550;s:6:\"height\";i:639;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:36429;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(544,3049,'_wp_attachment_image_alt','a'),(545,3006,'_wp_attachment_image_alt','a'),(546,3050,'_wp_attached_file','2017/06/product-12-gallery-2.jpg'),(547,3050,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:542;s:4:\"file\";s:32:\"2017/06/product-12-gallery-2.jpg\";s:8:\"filesize\";i:92344;s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:32:\"product-12-gallery-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20187;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:32:\"product-12-gallery-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3658;}s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"product-12-gallery-2-300x271.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18244;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"product-12-gallery-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:6833;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:32:\"product-12-gallery-2-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56157;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:32:\"product-12-gallery-2-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19929;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:32:\"product-12-gallery-2-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56157;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,3538,'_wp_attached_file','2017/06/landing-background-img-3.jpg'),(549,3538,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1100;s:4:\"file\";s:36:\"2017/06/landing-background-img-3.jpg\";s:8:\"filesize\";i:37479;s:5:\"sizes\";a:13:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:36:\"landing-background-img-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2229;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:36:\"landing-background-img-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:897;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:36:\"landing-background-img-3-600x344.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:344;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4875;}s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"landing-background-img-3-300x172.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:172;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1705;}s:5:\"large\";a:5:{s:4:\"file\";s:37:\"landing-background-img-3-1024x587.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:587;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12341;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"landing-background-img-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1109;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:36:\"landing-background-img-3-768x440.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:440;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7360;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:37:\"landing-background-img-3-1536x880.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:880;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25989;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:36:\"landing-background-img-3-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5879;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:36:\"landing-background-img-3-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2518;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:37:\"landing-background-img-3-1100x550.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12755;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:37:\"landing-background-img-3-550x1100.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:1100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10389;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:38:\"landing-background-img-3-1100x1100.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:1100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20745;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(550,2332,'_wp_attached_file','2017/06/gallery-img-3.jpg'),(551,2332,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:665;s:4:\"file\";s:25:\"2017/06/gallery-img-3.jpg\";s:8:\"filesize\";i:98079;s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:25:\"gallery-img-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26480;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:25:\"gallery-img-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5098;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:25:\"gallery-img-3-600x499.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:499;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69335;}s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"gallery-img-3-300x249.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:249;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23474;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"gallery-img-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9034;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"gallery-img-3-768x638.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:638;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:99365;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:25:\"gallery-img-3-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67646;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:25:\"gallery-img-3-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29021;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:25:\"gallery-img-3-800x550.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:99125;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:25:\"gallery-img-3-550x665.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:665;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:80288;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(552,3050,'_wp_attachment_image_alt','a'),(553,2332,'_wp_attachment_image_alt','a'),(554,3007,'_wp_attached_file','2017/06/h4-course-img-5.png'),(555,3007,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:639;s:4:\"file\";s:27:\"2017/06/h4-course-img-5.png\";s:8:\"filesize\";i:38962;s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:27:\"h4-course-img-5-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20419;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:27:\"h4-course-img-5-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5917;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:27:\"h4-course-img-5-600x383.png\";s:5:\"width\";i:600;s:6:\"height\";i:383;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29141;}s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"h4-course-img-5-300x192.png\";s:5:\"width\";i:300;s:6:\"height\";i:192;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12751;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"h4-course-img-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:9281;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"h4-course-img-5-768x491.png\";s:5:\"width\";i:768;s:6:\"height\";i:491;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40581;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:27:\"h4-course-img-5-550x550.png\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43192;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:27:\"h4-course-img-5-350x282.png\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19772;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:28:\"h4-course-img-5-1000x550.png\";s:5:\"width\";i:1000;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:38178;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:27:\"h4-course-img-5-550x639.png\";s:5:\"width\";i:550;s:6:\"height\";i:639;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:37420;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(556,3007,'_wp_attachment_image_alt','a'),(557,3538,'_wp_attachment_image_alt','a'),(558,2333,'_wp_attached_file','2017/06/gallery-img-4.jpg'),(559,2333,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:665;s:4:\"file\";s:25:\"2017/06/gallery-img-4.jpg\";s:8:\"filesize\";i:82453;s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:25:\"gallery-img-4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16483;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:25:\"gallery-img-4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3485;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:25:\"gallery-img-4-600x499.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:499;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38135;}s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"gallery-img-4-300x249.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:249;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12815;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"gallery-img-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5974;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"gallery-img-4-768x638.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:638;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55571;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:25:\"gallery-img-4-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42921;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:25:\"gallery-img-4-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15839;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:25:\"gallery-img-4-800x550.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56975;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:25:\"gallery-img-4-550x665.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:665;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60973;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,3051,'_wp_attached_file','2017/06/product-12-gallery-3.jpg'),(561,3051,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:542;s:4:\"file\";s:32:\"2017/06/product-12-gallery-3.jpg\";s:8:\"filesize\";i:92533;s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:32:\"product-12-gallery-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25134;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:32:\"product-12-gallery-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4455;}s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"product-12-gallery-3-300x271.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23225;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"product-12-gallery-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8083;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:32:\"product-12-gallery-3-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70752;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:32:\"product-12-gallery-3-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26306;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:32:\"product-12-gallery-3-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70752;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(562,3051,'_wp_attachment_image_alt','a'),(563,3008,'_wp_attached_file','2017/06/h4-course-img-6.png'),(564,3008,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:639;s:4:\"file\";s:27:\"2017/06/h4-course-img-6.png\";s:8:\"filesize\";i:40512;s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:27:\"h4-course-img-6-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21258;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:27:\"h4-course-img-6-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5893;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:27:\"h4-course-img-6-600x383.png\";s:5:\"width\";i:600;s:6:\"height\";i:383;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30327;}s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"h4-course-img-6-300x192.png\";s:5:\"width\";i:300;s:6:\"height\";i:192;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13204;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"h4-course-img-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:9411;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"h4-course-img-6-768x491.png\";s:5:\"width\";i:768;s:6:\"height\";i:491;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41710;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:27:\"h4-course-img-6-550x550.png\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44902;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:27:\"h4-course-img-6-350x282.png\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20521;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:28:\"h4-course-img-6-1000x550.png\";s:5:\"width\";i:1000;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39416;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:27:\"h4-course-img-6-550x639.png\";s:5:\"width\";i:550;s:6:\"height\";i:639;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39032;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(565,2333,'_wp_attachment_image_alt','a'),(566,3550,'_wp_attached_file','2017/06/landing-home-9.jpg'),(567,3550,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:844;s:4:\"file\";s:26:\"2017/06/landing-home-9.jpg\";s:8:\"filesize\";i:71884;s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"landing-home-9-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12435;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"landing-home-9-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2745;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:26:\"landing-home-9-600x633.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:633;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37148;}s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"landing-home-9-284x300.jpg\";s:5:\"width\";i:284;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12100;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"landing-home-9-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4579;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"landing-home-9-768x810.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:810;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51461;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:26:\"landing-home-9-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30753;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:26:\"landing-home-9-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13202;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:26:\"landing-home-9-800x550.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45270;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:26:\"landing-home-9-550x844.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:844;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52809;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(568,3008,'_wp_attachment_image_alt','a'),(569,3550,'_wp_attachment_image_alt','a'),(570,3052,'_wp_attached_file','2017/06/product-13.jpg'),(571,3052,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:722;s:4:\"file\";s:22:\"2017/06/product-13.jpg\";s:8:\"filesize\";i:90704;s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:22:\"product-13-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9668;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:22:\"product-13-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2281;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:22:\"product-13-600x542.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24130;}s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"product-13-300x271.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8456;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"product-13-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3703;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"product-13-768x693.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:693;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35096;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:22:\"product-13-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24660;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:22:\"product-13-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10538;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:22:\"product-13-800x550.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37585;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:22:\"product-13-550x722.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:722;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38313;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,3052,'_wp_attachment_image_alt','a'),(573,3021,'_wp_attached_file','2017/06/h3-event-img-3.jpg'),(574,3021,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:608;s:4:\"file\";s:26:\"2017/06/h3-event-img-3.jpg\";s:8:\"filesize\";i:90957;s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"h3-event-img-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18188;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"h3-event-img-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3340;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:26:\"h3-event-img-3-600x365.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38091;}s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"h3-event-img-3-300x182.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11933;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"h3-event-img-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6064;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"h3-event-img-3-768x467.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56899;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:26:\"h3-event-img-3-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48328;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:26:\"h3-event-img-3-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19784;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:27:\"h3-event-img-3-1000x550.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:91981;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:26:\"h3-event-img-3-550x608.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57206;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(575,3021,'_wp_attachment_image_alt','a'),(576,3551,'_wp_attached_file','2017/06/landing-home-10.jpg'),(577,3551,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:844;s:4:\"file\";s:27:\"2017/06/landing-home-10.jpg\";s:8:\"filesize\";i:69607;s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:27:\"landing-home-10-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11211;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:27:\"landing-home-10-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2689;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:27:\"landing-home-10-600x633.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:633;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35487;}s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"landing-home-10-284x300.jpg\";s:5:\"width\";i:284;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11187;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"landing-home-10-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4172;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"landing-home-10-768x810.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:810;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50724;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:27:\"landing-home-10-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28814;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:27:\"landing-home-10-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11766;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:27:\"landing-home-10-800x550.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44895;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:27:\"landing-home-10-550x844.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:844;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49351;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(578,3551,'_wp_attachment_image_alt','a'),(579,3053,'_wp_attached_file','2017/06/product-13-gallery-1.jpg'),(580,3053,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:542;s:4:\"file\";s:32:\"2017/06/product-13-gallery-1.jpg\";s:8:\"filesize\";i:66117;s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:32:\"product-13-gallery-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12450;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:32:\"product-13-gallery-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2844;}s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"product-13-gallery-1-300x271.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10963;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"product-13-gallery-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:4719;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:32:\"product-13-gallery-1-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32050;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:32:\"product-13-gallery-1-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12789;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:32:\"product-13-gallery-1-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32050;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(581,3053,'_wp_attachment_image_alt','a'),(582,3023,'_wp_attached_file','2017/06/h3-event-img-1.jpg'),(583,3023,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:791;s:4:\"file\";s:26:\"2017/06/h3-event-img-1.jpg\";s:8:\"filesize\";i:102076;s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"h3-event-img-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18565;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"h3-event-img-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4052;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:26:\"h3-event-img-1-600x365.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35642;}s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"h3-event-img-1-300x183.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:183;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12625;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"h3-event-img-1-1024x623.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:623;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:82821;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"h3-event-img-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:6803;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"h3-event-img-1-768x467.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53027;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:26:\"h3-event-img-1-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47866;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:26:\"h3-event-img-1-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19814;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:27:\"h3-event-img-1-1100x550.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76501;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:26:\"h3-event-img-1-550x791.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:791;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61493;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:27:\"h3-event-img-1-1100x791.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:791;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:115484;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(584,3023,'_wp_attachment_image_alt','a'),(585,3552,'_wp_attached_file','2017/06/landing-home-11.jpg'),(586,3552,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:844;s:4:\"file\";s:27:\"2017/06/landing-home-11.jpg\";s:8:\"filesize\";i:101482;s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:27:\"landing-home-11-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16106;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:27:\"landing-home-11-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3092;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:27:\"landing-home-11-600x633.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:633;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51100;}s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"landing-home-11-284x300.jpg\";s:5:\"width\";i:284;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15270;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"landing-home-11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5467;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"landing-home-11-768x810.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:810;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72630;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:27:\"landing-home-11-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42152;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:27:\"landing-home-11-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18140;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:27:\"landing-home-11-800x550.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61220;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:27:\"landing-home-11-550x844.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:844;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76299;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(587,3552,'_wp_attachment_image_alt','a'),(588,3054,'_wp_attached_file','2017/06/product-13-gallery-2.jpg'),(589,3054,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:542;s:4:\"file\";s:32:\"2017/06/product-13-gallery-2.jpg\";s:8:\"filesize\";i:75285;s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:32:\"product-13-gallery-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13739;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:32:\"product-13-gallery-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3017;}s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"product-13-gallery-2-300x271.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12634;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"product-13-gallery-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:5037;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:32:\"product-13-gallery-2-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36450;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:32:\"product-13-gallery-2-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15036;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:32:\"product-13-gallery-2-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36450;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(590,3054,'_wp_attachment_image_alt','a'),(591,3024,'_wp_attached_file','2017/06/h3-event-img-2.jpg'),(592,3024,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:791;s:4:\"file\";s:26:\"2017/06/h3-event-img-2.jpg\";s:8:\"filesize\";i:102268;s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"h3-event-img-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19043;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"h3-event-img-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3857;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:26:\"h3-event-img-2-600x365.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37841;}s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"h3-event-img-2-300x183.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:183;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12187;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"h3-event-img-2-1024x623.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:623;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:91305;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"h3-event-img-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:6541;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"h3-event-img-2-768x467.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57404;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:26:\"h3-event-img-2-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50631;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:26:\"h3-event-img-2-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21090;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:27:\"h3-event-img-2-1100x550.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:91726;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:26:\"h3-event-img-2-550x791.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:791;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57545;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:27:\"h3-event-img-2-1100x791.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:791;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:132490;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(593,3024,'_wp_attachment_image_alt','a'),(594,3554,'_wp_attached_file','2017/06/landing-home-12.jpg'),(595,3554,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:844;s:4:\"file\";s:27:\"2017/06/landing-home-12.jpg\";s:8:\"filesize\";i:72097;s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:27:\"landing-home-12-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12676;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:27:\"landing-home-12-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2891;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:27:\"landing-home-12-600x633.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:633;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37562;}s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"landing-home-12-284x300.jpg\";s:5:\"width\";i:284;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12029;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"landing-home-12-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4817;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"landing-home-12-768x810.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:810;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53510;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:27:\"landing-home-12-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31219;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:27:\"landing-home-12-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15523;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:27:\"landing-home-12-800x550.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43589;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:27:\"landing-home-12-550x844.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:844;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54058;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(596,3554,'_wp_attachment_image_alt','a'),(597,3055,'_wp_attached_file','2017/06/product-13-gallery-3.jpg'),(598,3055,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:542;s:4:\"file\";s:32:\"2017/06/product-13-gallery-3.jpg\";s:8:\"filesize\";i:88698;s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:32:\"product-13-gallery-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16404;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:32:\"product-13-gallery-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3612;}s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"product-13-gallery-3-300x271.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14708;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"product-13-gallery-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6222;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:32:\"product-13-gallery-3-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42520;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:32:\"product-13-gallery-3-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16854;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:32:\"product-13-gallery-3-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42520;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(599,3025,'_wp_attached_file','2017/06/h9-event-img-1.jpg'),(600,3025,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:791;s:4:\"file\";s:26:\"2017/06/h9-event-img-1.jpg\";s:8:\"filesize\";i:81064;s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"h9-event-img-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15820;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"h9-event-img-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3477;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:26:\"h9-event-img-1-600x365.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25542;}s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"h9-event-img-1-300x183.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:183;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9102;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"h9-event-img-1-1024x623.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:623;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58834;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"h9-event-img-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:5829;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"h9-event-img-1-768x467.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37612;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:26:\"h9-event-img-1-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41045;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:26:\"h9-event-img-1-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15218;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:27:\"h9-event-img-1-1100x550.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54216;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:26:\"h9-event-img-1-550x791.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:791;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64149;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:27:\"h9-event-img-1-1100x791.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:791;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85346;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(601,3055,'_wp_attachment_image_alt','a'),(602,3025,'_wp_attachment_image_alt','a'),(603,3564,'_wp_attached_file','2017/06/landing-img-2.jpg'),(604,3564,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:527;s:4:\"file\";s:25:\"2017/06/landing-img-2.jpg\";s:8:\"filesize\";i:34237;s:5:\"sizes\";a:9:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:25:\"landing-img-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9401;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:25:\"landing-img-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2135;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:25:\"landing-img-2-600x395.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:395;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18150;}s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"landing-img-2-300x198.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6529;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"landing-img-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:3576;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"landing-img-2-768x506.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25549;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:25:\"landing-img-2-550x527.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:527;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22964;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:25:\"landing-img-2-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9716;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:25:\"landing-img-2-550x527.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:527;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22964;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(605,3082,'_wp_attached_file','2017/06/logo-footer-dark.png'),(606,3082,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:313;s:6:\"height\";i:60;s:4:\"file\";s:28:\"2017/06/logo-footer-dark.png\";s:8:\"filesize\";i:6954;s:5:\"sizes\";a:4:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:27:\"logo-footer-dark-300x60.png\";s:5:\"width\";i:300;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5675;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:27:\"logo-footer-dark-100x60.png\";s:5:\"width\";i:100;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2419;}s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"logo-footer-dark-300x58.png\";s:5:\"width\";i:300;s:6:\"height\";i:58;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6909;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"logo-footer-dark-150x60.png\";s:5:\"width\";i:150;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3344;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(607,3082,'_wp_attachment_image_alt','a'),(608,3564,'_wp_attachment_image_alt','a'),(609,3316,'_wp_attached_file','2017/06/interactive-map-slider-cloud.png'),(610,3316,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:270;s:6:\"height\";i:93;s:4:\"file\";s:40:\"2017/06/interactive-map-slider-cloud.png\";s:8:\"filesize\";i:2049;s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:39:\"interactive-map-slider-cloud-100x93.png\";s:5:\"width\";i:100;s:6:\"height\";i:93;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:354;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"interactive-map-slider-cloud-150x93.png\";s:5:\"width\";i:150;s:6:\"height\";i:93;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:382;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(611,3316,'_wp_attachment_image_alt','a'),(612,3567,'_wp_attached_file','2017/06/landing-img-3-1.jpg'),(613,3567,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:527;s:4:\"file\";s:27:\"2017/06/landing-img-3-1.jpg\";s:8:\"filesize\";i:48126;s:5:\"sizes\";a:9:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:27:\"landing-img-3-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13306;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:27:\"landing-img-3-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2837;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:27:\"landing-img-3-1-600x395.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:395;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23626;}s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"landing-img-3-1-300x198.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8393;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"landing-img-3-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:4648;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"landing-img-3-1-768x506.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33775;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:27:\"landing-img-3-1-550x527.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:527;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34085;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:27:\"landing-img-3-1-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13300;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:27:\"landing-img-3-1-550x527.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:527;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34085;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(614,3567,'_wp_attachment_image_alt','a'),(615,3026,'_wp_attached_file','2017/06/event-img-2.jpg'),(616,3026,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:791;s:4:\"file\";s:23:\"2017/06/event-img-2.jpg\";s:8:\"filesize\";i:106727;s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:23:\"event-img-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26391;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:23:\"event-img-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4878;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:23:\"event-img-2-600x365.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48827;}s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"event-img-2-300x183.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:183;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15581;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"event-img-2-1024x623.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:623;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:114240;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"event-img-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:8814;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"event-img-2-768x467.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72988;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:23:\"event-img-2-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68878;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:23:\"event-img-2-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26950;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:24:\"event-img-2-1100x550.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105633;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:23:\"event-img-2-550x791.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:791;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:92381;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:24:\"event-img-2-1100x791.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:791;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:156451;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(617,3317,'_wp_attached_file','2017/06/interactive-map-slider-icon-close.png'),(618,3317,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:16;s:6:\"height\";i:16;s:4:\"file\";s:45:\"2017/06/interactive-map-slider-icon-close.png\";s:8:\"filesize\";i:1217;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:{}}}'),(619,3317,'_wp_attachment_image_alt','a'),(620,3026,'_wp_attachment_image_alt','a'),(621,3570,'_wp_attached_file','2017/06/landing-img-1.jpg'),(622,3570,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:527;s:4:\"file\";s:25:\"2017/06/landing-img-1.jpg\";s:8:\"filesize\";i:29144;s:5:\"sizes\";a:9:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:25:\"landing-img-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6539;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:25:\"landing-img-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1663;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:25:\"landing-img-1-600x395.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:395;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16038;}s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"landing-img-1-300x198.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5334;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"landing-img-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:2410;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"landing-img-1-768x506.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23140;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:25:\"landing-img-1-550x527.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:527;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17287;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:25:\"landing-img-1-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7998;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:25:\"landing-img-1-550x527.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:527;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17287;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(623,3318,'_wp_attached_file','2017/06/interactive-map-slider-icon-open.png'),(624,3318,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:26;s:6:\"height\";i:26;s:4:\"file\";s:44:\"2017/06/interactive-map-slider-icon-open.png\";s:8:\"filesize\";i:1520;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:{}}}'),(625,3318,'_wp_attachment_image_alt','a'),(626,3570,'_wp_attachment_image_alt','a'),(627,3027,'_wp_attached_file','2017/06/event-img-1-1.jpg'),(628,3027,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:791;s:4:\"file\";s:25:\"2017/06/event-img-1-1.jpg\";s:8:\"filesize\";i:99804;s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:25:\"event-img-1-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17871;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:25:\"event-img-1-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3906;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:25:\"event-img-1-1-600x365.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33029;}s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"event-img-1-1-300x183.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:183;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11977;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"event-img-1-1-1024x623.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:623;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72785;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"event-img-1-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6437;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"event-img-1-1-768x467.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48287;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:25:\"event-img-1-1-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44323;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:25:\"event-img-1-1-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18984;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:26:\"event-img-1-1-1100x550.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69745;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:25:\"event-img-1-1-550x791.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:791;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54338;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:26:\"event-img-1-1-1100x791.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:791;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:101167;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(629,3027,'_wp_attachment_image_alt','a'),(630,3572,'_wp_attached_file','2017/06/landing-home-7.jpg'),(631,3572,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:844;s:4:\"file\";s:26:\"2017/06/landing-home-7.jpg\";s:8:\"filesize\";i:87570;s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"landing-home-7-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11349;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"landing-home-7-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2521;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:26:\"landing-home-7-600x633.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:633;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34283;}s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"landing-home-7-284x300.jpg\";s:5:\"width\";i:284;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10708;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"landing-home-7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4282;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"landing-home-7-768x810.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:810;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47854;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:26:\"landing-home-7-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29038;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:26:\"landing-home-7-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12935;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:26:\"landing-home-7-800x550.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39594;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:26:\"landing-home-7-550x844.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:844;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51853;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(632,3320,'_wp_attached_file','2017/06/interactive-map-slider-img-1.png'),(633,3320,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1306;s:6:\"height\";i:639;s:4:\"file\";s:40:\"2017/06/interactive-map-slider-img-1.png\";s:8:\"filesize\";i:53907;s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:40:\"interactive-map-slider-img-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:11776;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:40:\"interactive-map-slider-img-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3108;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:40:\"interactive-map-slider-img-1-600x294.png\";s:5:\"width\";i:600;s:6:\"height\";i:294;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22834;}s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"interactive-map-slider-img-1-300x147.png\";s:5:\"width\";i:300;s:6:\"height\";i:147;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9380;}s:5:\"large\";a:5:{s:4:\"file\";s:41:\"interactive-map-slider-img-1-1024x501.png\";s:5:\"width\";i:1024;s:6:\"height\";i:501;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44250;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"interactive-map-slider-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:5002;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:40:\"interactive-map-slider-img-1-768x376.png\";s:5:\"width\";i:768;s:6:\"height\";i:376;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30642;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:40:\"interactive-map-slider-img-1-550x550.png\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24964;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:40:\"interactive-map-slider-img-1-350x282.png\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13472;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:41:\"interactive-map-slider-img-1-1100x550.png\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:49007;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:40:\"interactive-map-slider-img-1-550x639.png\";s:5:\"width\";i:550;s:6:\"height\";i:639;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22002;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:41:\"interactive-map-slider-img-1-1100x639.png\";s:5:\"width\";i:1100;s:6:\"height\";i:639;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46524;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(634,3572,'_wp_attachment_image_alt','a'),(635,3320,'_wp_attachment_image_alt',''),(636,3029,'_wp_attached_file','2017/06/event-img-3.jpg'),(637,3029,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:791;s:4:\"file\";s:23:\"2017/06/event-img-3.jpg\";s:8:\"filesize\";i:104894;s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:23:\"event-img-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20454;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:23:\"event-img-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4516;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:23:\"event-img-3-600x365.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41376;}s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"event-img-3-300x183.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:183;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14963;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"event-img-3-1024x623.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:623;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93686;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"event-img-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7698;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"event-img-3-768x467.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60518;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:23:\"event-img-3-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50741;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:23:\"event-img-3-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22473;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:24:\"event-img-3-1100x550.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:91680;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:23:\"event-img-3-550x791.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:791;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62554;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:24:\"event-img-3-1100x791.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:791;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:126395;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(638,3575,'_wp_attached_file','2017/06/landing-home-8.jpg'),(639,3575,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:844;s:4:\"file\";s:26:\"2017/06/landing-home-8.jpg\";s:8:\"filesize\";i:102877;s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"landing-home-8-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12915;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"landing-home-8-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2707;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:26:\"landing-home-8-600x633.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:633;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39824;}s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"landing-home-8-284x300.jpg\";s:5:\"width\";i:284;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12053;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"landing-home-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:4577;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"landing-home-8-768x810.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:810;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54510;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:26:\"landing-home-8-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32800;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:26:\"landing-home-8-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15116;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:26:\"landing-home-8-800x550.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47168;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:26:\"landing-home-8-550x844.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:844;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60295;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(640,3330,'_wp_attached_file','2017/06/interactive-map-slider-img-11.png'),(641,3330,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1306;s:6:\"height\";i:639;s:4:\"file\";s:41:\"2017/06/interactive-map-slider-img-11.png\";s:8:\"filesize\";i:55669;s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:41:\"interactive-map-slider-img-11-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13465;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:41:\"interactive-map-slider-img-11-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3593;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:41:\"interactive-map-slider-img-11-600x294.png\";s:5:\"width\";i:600;s:6:\"height\";i:294;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26162;}s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"interactive-map-slider-img-11-300x147.png\";s:5:\"width\";i:300;s:6:\"height\";i:147;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10739;}s:5:\"large\";a:5:{s:4:\"file\";s:42:\"interactive-map-slider-img-11-1024x501.png\";s:5:\"width\";i:1024;s:6:\"height\";i:501;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:52088;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"interactive-map-slider-img-11-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5808;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:41:\"interactive-map-slider-img-11-768x376.png\";s:5:\"width\";i:768;s:6:\"height\";i:376;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:36131;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:41:\"interactive-map-slider-img-11-550x550.png\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28975;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:41:\"interactive-map-slider-img-11-350x282.png\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15703;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:42:\"interactive-map-slider-img-11-1100x550.png\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:58452;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:41:\"interactive-map-slider-img-11-550x639.png\";s:5:\"width\";i:550;s:6:\"height\";i:639;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25407;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:42:\"interactive-map-slider-img-11-1100x639.png\";s:5:\"width\";i:1100;s:6:\"height\";i:639;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:55215;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(642,3575,'_wp_attachment_image_alt','a'),(643,3029,'_wp_attachment_image_alt','a'),(644,3330,'_wp_attachment_image_alt','a'),(645,3030,'_wp_attached_file','2017/06/event-img-4.jpg'),(646,3030,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:791;s:4:\"file\";s:23:\"2017/06/event-img-4.jpg\";s:8:\"filesize\";i:102654;s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:23:\"event-img-4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16141;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:23:\"event-img-4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3567;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:23:\"event-img-4-600x365.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36621;}s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"event-img-4-300x183.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:183;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12965;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"event-img-4-1024x623.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:623;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:82660;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"event-img-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6067;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"event-img-4-768x467.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53728;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:23:\"event-img-4-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38709;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:23:\"event-img-4-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18484;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:24:\"event-img-4-1100x550.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79368;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:23:\"event-img-4-550x791.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:791;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47427;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:24:\"event-img-4-1100x791.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:791;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102302;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(647,3417,'_wp_attached_file','2017/06/landing-home-2.jpg'),(648,3417,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:844;s:4:\"file\";s:26:\"2017/06/landing-home-2.jpg\";s:8:\"filesize\";i:87999;s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"landing-home-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15559;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"landing-home-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3486;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:26:\"landing-home-2-600x633.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:633;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44978;}s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"landing-home-2-284x300.jpg\";s:5:\"width\";i:284;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15462;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"landing-home-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:5745;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"landing-home-2-768x810.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:810;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63487;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:26:\"landing-home-2-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37896;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:26:\"landing-home-2-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16059;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:26:\"landing-home-2-800x550.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44723;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:26:\"landing-home-2-550x844.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:844;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63529;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(649,3030,'_wp_attachment_image_alt','a'),(650,3417,'_wp_attachment_image_alt','a'),(651,3031,'_wp_attached_file','2017/06/event-img-5.jpg'),(652,3031,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:791;s:4:\"file\";s:23:\"2017/06/event-img-5.jpg\";s:8:\"filesize\";i:97012;s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:23:\"event-img-5-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18200;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:23:\"event-img-5-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3814;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:23:\"event-img-5-600x365.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38285;}s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"event-img-5-300x183.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:183;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13406;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"event-img-5-1024x623.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:623;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85433;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"event-img-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6454;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"event-img-5-768x467.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56243;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:23:\"event-img-5-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45029;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:23:\"event-img-5-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20453;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:24:\"event-img-5-1100x550.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:80057;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:23:\"event-img-5-550x791.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:791;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57474;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:24:\"event-img-5-1100x791.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:791;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:114763;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(653,3031,'_wp_attachment_image_alt','a'),(654,3582,'_wp_attached_file','2017/06/landing-carousel-gallery-img-1.jpg'),(655,3582,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:377;s:6:\"height\";i:506;s:4:\"file\";s:42:\"2017/06/landing-carousel-gallery-img-1.jpg\";s:8:\"filesize\";i:52466;s:5:\"sizes\";a:5:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:42:\"landing-carousel-gallery-img-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14712;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:42:\"landing-carousel-gallery-img-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3258;}s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"landing-carousel-gallery-img-1-224x300.jpg\";s:5:\"width\";i:224;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12547;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"landing-carousel-gallery-img-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:5844;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:42:\"landing-carousel-gallery-img-1-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14876;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(656,3582,'_wp_attachment_image_alt','a'),(657,3040,'_wp_attached_file','2017/06/product-10.jpg'),(658,3040,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:722;s:4:\"file\";s:22:\"2017/06/product-10.jpg\";s:8:\"filesize\";i:91657;s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:22:\"product-10-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9294;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:22:\"product-10-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2136;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:22:\"product-10-600x542.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24004;}s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"product-10-300x271.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8026;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"product-10-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3395;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"product-10-768x693.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:693;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35261;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:22:\"product-10-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24252;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:22:\"product-10-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10110;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:22:\"product-10-800x550.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39592;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:22:\"product-10-550x722.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:722;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39387;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(659,3418,'_wp_attached_file','2017/06/landing-home-3.jpg'),(660,3418,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:844;s:4:\"file\";s:26:\"2017/06/landing-home-3.jpg\";s:8:\"filesize\";i:122119;s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"landing-home-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20101;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"landing-home-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3905;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:26:\"landing-home-3-600x633.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:633;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61045;}s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"landing-home-3-284x300.jpg\";s:5:\"width\";i:284;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19440;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"landing-home-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7089;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"landing-home-3-768x810.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:810;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86789;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:26:\"landing-home-3-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51103;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:26:\"landing-home-3-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22461;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:26:\"landing-home-3-800x550.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64754;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:26:\"landing-home-3-550x844.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:844;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:84882;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(661,3040,'_wp_attachment_image_alt','a'),(662,3418,'_wp_attachment_image_alt','a'),(663,3590,'_wp_attached_file','2017/06/landing-background-img-5.jpg'),(664,3590,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1095;s:4:\"file\";s:36:\"2017/06/landing-background-img-5.jpg\";s:8:\"filesize\";i:28794;s:5:\"sizes\";a:13:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:36:\"landing-background-img-5-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2151;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:36:\"landing-background-img-5-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:894;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:36:\"landing-background-img-5-600x342.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:342;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4082;}s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"landing-background-img-5-300x171.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1536;}s:5:\"large\";a:5:{s:4:\"file\";s:37:\"landing-background-img-5-1024x584.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:584;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10379;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"landing-background-img-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1095;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:36:\"landing-background-img-5-768x438.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6187;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:37:\"landing-background-img-5-1536x876.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:876;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22534;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:36:\"landing-background-img-5-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5712;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:36:\"landing-background-img-5-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2291;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:37:\"landing-background-img-5-1100x550.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10675;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:37:\"landing-background-img-5-550x1095.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:1095;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10626;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:38:\"landing-background-img-5-1100x1095.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:1095;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20330;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(665,3590,'_wp_attachment_image_alt','a'),(666,3041,'_wp_attached_file','2017/06/product-10-gallery-1.jpg'),(667,3041,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:542;s:4:\"file\";s:32:\"2017/06/product-10-gallery-1.jpg\";s:8:\"filesize\";i:70110;s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:32:\"product-10-gallery-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10716;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:32:\"product-10-gallery-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2288;}s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"product-10-gallery-1-300x271.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9649;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"product-10-gallery-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:3803;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:32:\"product-10-gallery-1-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30673;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:32:\"product-10-gallery-1-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11287;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:32:\"product-10-gallery-1-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30673;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(668,3041,'_wp_attachment_image_alt','a'),(669,3425,'_wp_attached_file','2017/06/landing-home-4.jpg'),(670,3425,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:844;s:4:\"file\";s:26:\"2017/06/landing-home-4.jpg\";s:8:\"filesize\";i:81504;s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"landing-home-4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8779;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"landing-home-4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2271;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:26:\"landing-home-4-600x633.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:633;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27590;}s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"landing-home-4-284x300.jpg\";s:5:\"width\";i:284;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9149;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"landing-home-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3399;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"landing-home-4-768x810.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:810;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38623;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:26:\"landing-home-4-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20945;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:26:\"landing-home-4-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9290;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:26:\"landing-home-4-800x550.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32156;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:26:\"landing-home-4-550x844.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:844;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40660;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(671,3425,'_wp_attachment_image_alt','a'),(672,3592,'_wp_attached_file','2017/06/landing-background-img-6.png'),(673,3592,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1040;s:4:\"file\";s:36:\"2017/06/landing-background-img-6.png\";s:8:\"filesize\";i:51280;s:5:\"sizes\";a:13:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:36:\"landing-background-img-6-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7927;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:36:\"landing-background-img-6-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1769;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:36:\"landing-background-img-6-600x325.png\";s:5:\"width\";i:600;s:6:\"height\";i:325;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9990;}s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"landing-background-img-6-300x163.png\";s:5:\"width\";i:300;s:6:\"height\";i:163;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3702;}s:5:\"large\";a:5:{s:4:\"file\";s:37:\"landing-background-img-6-1024x555.png\";s:5:\"width\";i:1024;s:6:\"height\";i:555;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22760;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"landing-background-img-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:3113;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:36:\"landing-background-img-6-768x416.png\";s:5:\"width\";i:768;s:6:\"height\";i:416;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14090;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:37:\"landing-background-img-6-1536x832.png\";s:5:\"width\";i:1536;s:6:\"height\";i:832;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40271;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:36:\"landing-background-img-6-550x550.png\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20048;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:36:\"landing-background-img-6-350x282.png\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7571;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:37:\"landing-background-img-6-1100x550.png\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25094;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:37:\"landing-background-img-6-550x1040.png\";s:5:\"width\";i:550;s:6:\"height\";i:1040;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29909;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:38:\"landing-background-img-6-1100x1040.png\";s:5:\"width\";i:1100;s:6:\"height\";i:1040;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42391;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(674,3042,'_wp_attached_file','2017/06/product-10-gallery-2.jpg'),(675,3042,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:542;s:4:\"file\";s:32:\"2017/06/product-10-gallery-2.jpg\";s:8:\"filesize\";i:116420;s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:32:\"product-10-gallery-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16320;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:32:\"product-10-gallery-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3155;}s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"product-10-gallery-2-300x271.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15219;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"product-10-gallery-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:5519;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:32:\"product-10-gallery-2-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46912;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:32:\"product-10-gallery-2-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18068;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:32:\"product-10-gallery-2-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46912;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(676,3042,'_wp_attachment_image_alt','a'),(677,3428,'_wp_attached_file','2017/06/landing-home-5.jpg'),(678,3428,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:844;s:4:\"file\";s:26:\"2017/06/landing-home-5.jpg\";s:8:\"filesize\";i:102610;s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"landing-home-5-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17590;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"landing-home-5-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3535;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:26:\"landing-home-5-600x633.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:633;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54129;}s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"landing-home-5-284x300.jpg\";s:5:\"width\";i:284;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16755;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"landing-home-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6013;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"landing-home-5-768x810.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:810;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75541;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:26:\"landing-home-5-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44956;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:26:\"landing-home-5-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16975;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:26:\"landing-home-5-800x550.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55282;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:26:\"landing-home-5-550x844.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:844;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71234;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(679,3592,'_wp_attachment_image_alt','a'),(680,3428,'_wp_attachment_image_alt','a'),(681,3043,'_wp_attached_file','2017/06/product-10-gallery-3.jpg'),(682,3043,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:542;s:4:\"file\";s:32:\"2017/06/product-10-gallery-3.jpg\";s:8:\"filesize\";i:74971;s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:32:\"product-10-gallery-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16819;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:32:\"product-10-gallery-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3252;}s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"product-10-gallery-3-300x271.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14851;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"product-10-gallery-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5546;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:32:\"product-10-gallery-3-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47524;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:32:\"product-10-gallery-3-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17272;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:32:\"product-10-gallery-3-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47524;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(683,3043,'_wp_attachment_image_alt','a'),(684,3429,'_wp_attached_file','2017/06/landing-home-6.jpg'),(685,3429,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:844;s:4:\"file\";s:26:\"2017/06/landing-home-6.jpg\";s:8:\"filesize\";i:91561;s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"landing-home-6-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19780;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"landing-home-6-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3829;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:26:\"landing-home-6-600x633.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:633;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60747;}s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"landing-home-6-284x300.jpg\";s:5:\"width\";i:284;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19481;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"landing-home-6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6778;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"landing-home-6-768x810.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:810;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86339;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:26:\"landing-home-6-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48681;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:26:\"landing-home-6-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19776;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:26:\"landing-home-6-800x550.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62541;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:26:\"landing-home-6-550x844.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:844;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79838;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(686,3597,'_wp_attached_file','2017/06/landing-google-logo.png'),(687,3597,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:315;s:6:\"height\";i:71;s:4:\"file\";s:31:\"2017/06/landing-google-logo.png\";s:8:\"filesize\";i:15368;s:5:\"sizes\";a:4:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:30:\"landing-google-logo-300x71.png\";s:5:\"width\";i:300;s:6:\"height\";i:71;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11738;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:30:\"landing-google-logo-100x71.png\";s:5:\"width\";i:100;s:6:\"height\";i:71;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3821;}s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"landing-google-logo-300x68.png\";s:5:\"width\";i:300;s:6:\"height\";i:68;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13385;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"landing-google-logo-150x71.png\";s:5:\"width\";i:150;s:6:\"height\";i:71;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4635;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(688,3597,'_wp_attachment_image_alt','a'),(689,3429,'_wp_attachment_image_alt','a'),(690,3044,'_wp_attached_file','2017/06/product-11.jpg'),(691,3044,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:722;s:4:\"file\";s:22:\"2017/06/product-11.jpg\";s:8:\"filesize\";i:91870;s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:22:\"product-11-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10036;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:22:\"product-11-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2348;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:22:\"product-11-600x542.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24769;}s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"product-11-300x271.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8584;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"product-11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3753;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"product-11-768x693.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:693;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35791;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:22:\"product-11-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24461;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:22:\"product-11-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10789;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:22:\"product-11-800x550.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39557;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:22:\"product-11-550x722.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:722;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39417;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(692,3044,'_wp_attachment_image_alt','a'),(693,3439,'_wp_attached_file','2017/06/landing-slider-2-img-1.png'),(694,3439,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:620;s:6:\"height\";i:620;s:4:\"file\";s:34:\"2017/06/landing-slider-2-img-1.png\";s:8:\"filesize\";i:33691;s:5:\"sizes\";a:9:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:34:\"landing-slider-2-img-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:12462;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:34:\"landing-slider-2-img-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2219;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:34:\"landing-slider-2-img-1-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33982;}s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"landing-slider-2-img-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:12462;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"landing-slider-2-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:4602;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:34:\"landing-slider-2-img-1-550x550.png\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31174;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:34:\"landing-slider-2-img-1-350x282.png\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13960;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:34:\"landing-slider-2-img-1-620x550.png\";s:5:\"width\";i:620;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28094;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:34:\"landing-slider-2-img-1-550x620.png\";s:5:\"width\";i:550;s:6:\"height\";i:620;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27701;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(695,3604,'_wp_attached_file','2017/06/landing-parallax-1.jpg'),(696,3604,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1100;s:4:\"file\";s:30:\"2017/06/landing-parallax-1.jpg\";s:8:\"filesize\";i:96515;s:5:\"sizes\";a:13:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:30:\"landing-parallax-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3322;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:30:\"landing-parallax-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1157;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:30:\"landing-parallax-1-600x344.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:344;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6325;}s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"landing-parallax-1-300x172.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:172;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2412;}s:5:\"large\";a:5:{s:4:\"file\";s:31:\"landing-parallax-1-1024x587.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:587;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15412;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"landing-parallax-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:1563;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"landing-parallax-1-768x440.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:440;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9449;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:31:\"landing-parallax-1-1536x880.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:880;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32113;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:30:\"landing-parallax-1-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8576;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:30:\"landing-parallax-1-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3601;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:31:\"landing-parallax-1-1100x550.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16128;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:31:\"landing-parallax-1-550x1100.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:1100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15347;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:32:\"landing-parallax-1-1100x1100.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:1100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29582;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(697,3439,'_wp_attachment_image_alt','a'),(698,3045,'_wp_attached_file','2017/06/product-11-gallery-1.jpg'),(699,3045,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:542;s:4:\"file\";s:32:\"2017/06/product-11-gallery-1.jpg\";s:8:\"filesize\";i:79039;s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:32:\"product-11-gallery-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15808;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:32:\"product-11-gallery-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3429;}s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"product-11-gallery-1-300x271.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15263;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"product-11-gallery-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:5899;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:32:\"product-11-gallery-1-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42512;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:32:\"product-11-gallery-1-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16716;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:32:\"product-11-gallery-1-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42512;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(700,3045,'_wp_attachment_image_alt','a'),(701,3440,'_wp_attached_file','2017/06/landing-slider-2-img-2.png'),(702,3440,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:329;s:6:\"height\";i:122;s:4:\"file\";s:34:\"2017/06/landing-slider-2-img-2.png\";s:8:\"filesize\";i:11333;s:5:\"sizes\";a:4:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:34:\"landing-slider-2-img-2-300x122.png\";s:5:\"width\";i:300;s:6:\"height\";i:122;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10696;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:34:\"landing-slider-2-img-2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3752;}s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"landing-slider-2-img-2-300x111.png\";s:5:\"width\";i:300;s:6:\"height\";i:111;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11384;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"landing-slider-2-img-2-150x122.png\";s:5:\"width\";i:150;s:6:\"height\";i:122;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3546;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(703,3440,'_wp_attachment_image_alt','a'),(704,3046,'_wp_attached_file','2017/06/product-11-gallery-2.jpg'),(705,3046,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:542;s:4:\"file\";s:32:\"2017/06/product-11-gallery-2.jpg\";s:8:\"filesize\";i:78035;s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:32:\"product-11-gallery-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15410;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:32:\"product-11-gallery-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3338;}s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"product-11-gallery-2-300x271.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14163;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"product-11-gallery-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:5663;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:32:\"product-11-gallery-2-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42056;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:32:\"product-11-gallery-2-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15777;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:32:\"product-11-gallery-2-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42056;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(706,3046,'_wp_attachment_image_alt','a'),(707,3609,'_wp_attached_file','2017/06/landing-img-device.png'),(708,3609,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:639;s:6:\"height\";i:773;s:4:\"file\";s:30:\"2017/06/landing-img-device.png\";s:8:\"filesize\";i:107856;s:5:\"sizes\";a:9:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:30:\"landing-img-device-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:85654;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:30:\"landing-img-device-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12685;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:30:\"landing-img-device-600x726.png\";s:5:\"width\";i:600;s:6:\"height\";i:726;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:330594;}s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"landing-img-device-248x300.png\";s:5:\"width\";i:248;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:69467;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"landing-img-device-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24938;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:30:\"landing-img-device-550x550.png\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:248010;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:30:\"landing-img-device-350x282.png\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:91192;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:30:\"landing-img-device-639x550.png\";s:5:\"width\";i:639;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:213485;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:30:\"landing-img-device-550x773.png\";s:5:\"width\";i:550;s:6:\"height\";i:773;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:273864;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(709,3441,'_wp_attached_file','2017/06/landing-slider-2-img-3.png'),(710,3441,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:446;s:6:\"height\";i:157;s:4:\"file\";s:34:\"2017/06/landing-slider-2-img-3.png\";s:8:\"filesize\";i:17199;s:5:\"sizes\";a:5:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:34:\"landing-slider-2-img-3-300x157.png\";s:5:\"width\";i:300;s:6:\"height\";i:157;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11209;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:34:\"landing-slider-2-img-3-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3746;}s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"landing-slider-2-img-3-300x106.png\";s:5:\"width\";i:300;s:6:\"height\";i:106;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11460;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"landing-slider-2-img-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:6501;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:34:\"landing-slider-2-img-3-350x157.png\";s:5:\"width\";i:350;s:6:\"height\";i:157;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15557;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(711,3441,'_wp_attachment_image_alt','a'),(712,3609,'_wp_attachment_image_alt','a'),(713,3047,'_wp_attached_file','2017/06/product-11-gallery-3.jpg'),(714,3047,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:542;s:4:\"file\";s:32:\"2017/06/product-11-gallery-3.jpg\";s:8:\"filesize\";i:76235;s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:32:\"product-11-gallery-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14747;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:32:\"product-11-gallery-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3178;}s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"product-11-gallery-3-300x271.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13920;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"product-11-gallery-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5295;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:32:\"product-11-gallery-3-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41296;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:32:\"product-11-gallery-3-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15442;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:32:\"product-11-gallery-3-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41296;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(715,3047,'_wp_attachment_image_alt','a'),(716,3442,'_wp_attached_file','2017/06/landing-slider-2-img-4.png'),(717,3442,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:418;s:6:\"height\";i:148;s:4:\"file\";s:34:\"2017/06/landing-slider-2-img-4.png\";s:8:\"filesize\";i:14900;s:5:\"sizes\";a:5:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:34:\"landing-slider-2-img-4-300x148.png\";s:5:\"width\";i:300;s:6:\"height\";i:148;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12366;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:34:\"landing-slider-2-img-4-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3534;}s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"landing-slider-2-img-4-300x106.png\";s:5:\"width\";i:300;s:6:\"height\";i:106;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10842;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"landing-slider-2-img-4-150x148.png\";s:5:\"width\";i:150;s:6:\"height\";i:148;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3748;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:34:\"landing-slider-2-img-4-350x148.png\";s:5:\"width\";i:350;s:6:\"height\";i:148;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13814;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(718,3442,'_wp_attachment_image_alt','a'),(719,3771,'_wp_attached_file','2017/06/landing-img-gallery-1.jpg'),(720,3771,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:958;s:6:\"height\";i:657;s:4:\"file\";s:33:\"2017/06/landing-img-gallery-1.jpg\";s:8:\"filesize\";i:97192;s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:33:\"landing-img-gallery-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20668;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:33:\"landing-img-gallery-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3980;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:33:\"landing-img-gallery-1-600x411.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:411;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34810;}s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"landing-img-gallery-1-300x206.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12170;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"landing-img-gallery-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:7219;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"landing-img-gallery-1-768x527.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:527;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50074;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:33:\"landing-img-gallery-1-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48956;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:33:\"landing-img-gallery-1-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19490;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:33:\"landing-img-gallery-1-958x550.jpg\";s:5:\"width\";i:958;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65729;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:33:\"landing-img-gallery-1-550x657.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:657;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57618;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(721,3771,'_wp_attachment_image_alt','a'),(722,3443,'_wp_attached_file','2017/06/landing-slider-2-img-5.png'),(723,3443,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:310;s:6:\"height\";i:566;s:4:\"file\";s:34:\"2017/06/landing-slider-2-img-5.png\";s:8:\"filesize\";i:104322;s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:34:\"landing-slider-2-img-5-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:71311;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:34:\"landing-slider-2-img-5-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11138;}s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"landing-slider-2-img-5-164x300.png\";s:5:\"width\";i:164;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:38106;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"landing-slider-2-img-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:21994;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:34:\"landing-slider-2-img-5-310x550.png\";s:5:\"width\";i:310;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:104073;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:34:\"landing-slider-2-img-5-310x282.png\";s:5:\"width\";i:310;s:6:\"height\";i:282;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:63089;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:34:\"landing-slider-2-img-5-310x550.png\";s:5:\"width\";i:310;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:104073;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(724,3048,'_wp_attached_file','2017/06/product-12.jpg'),(725,3048,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:722;s:4:\"file\";s:22:\"2017/06/product-12.jpg\";s:8:\"filesize\";i:95848;s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:22:\"product-12-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12246;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:22:\"product-12-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2489;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:22:\"product-12-600x542.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32126;}s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"product-12-300x271.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10808;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"product-12-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4338;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"product-12-768x693.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:693;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47273;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:22:\"product-12-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32448;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:22:\"product-12-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13076;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:22:\"product-12-800x550.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53121;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:22:\"product-12-550x722.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:722;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52592;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(726,3443,'_wp_attachment_image_alt','a'),(727,3048,'_wp_attachment_image_alt','a'),(728,3772,'_wp_attached_file','2017/06/landing-img-gallery-2.jpg'),(729,3772,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:958;s:6:\"height\";i:657;s:4:\"file\";s:33:\"2017/06/landing-img-gallery-2.jpg\";s:8:\"filesize\";i:99346;s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:33:\"landing-img-gallery-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13591;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:33:\"landing-img-gallery-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3010;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:33:\"landing-img-gallery-2-600x411.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:411;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24155;}s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"landing-img-gallery-2-300x206.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8764;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"landing-img-gallery-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:5061;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"landing-img-gallery-2-768x527.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:527;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33528;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:33:\"landing-img-gallery-2-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32903;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:33:\"landing-img-gallery-2-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13516;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:33:\"landing-img-gallery-2-958x550.jpg\";s:5:\"width\";i:958;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40644;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:33:\"landing-img-gallery-2-550x657.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:657;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41025;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(730,3772,'_wp_attachment_image_alt','a'),(731,3444,'_wp_attached_file','2017/06/landing-slider-2-img-6.png'),(732,3444,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:35;s:6:\"height\";i:35;s:4:\"file\";s:34:\"2017/06/landing-slider-2-img-6.png\";s:8:\"filesize\";i:2364;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:{}}}'),(733,3444,'_wp_attachment_image_alt','a'),(734,3773,'_wp_attached_file','2017/06/landing-img-gallery-3.jpg'),(735,3773,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:958;s:6:\"height\";i:657;s:4:\"file\";s:33:\"2017/06/landing-img-gallery-3.jpg\";s:8:\"filesize\";i:94278;s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:33:\"landing-img-gallery-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14019;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:33:\"landing-img-gallery-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2938;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:33:\"landing-img-gallery-3-600x411.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:411;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26941;}s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"landing-img-gallery-3-300x206.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9437;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"landing-img-gallery-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4943;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"landing-img-gallery-3-768x527.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:527;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37959;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:33:\"landing-img-gallery-3-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36502;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:33:\"landing-img-gallery-3-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13675;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:33:\"landing-img-gallery-3-958x550.jpg\";s:5:\"width\";i:958;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58083;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:33:\"landing-img-gallery-3-550x657.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:657;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43343;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(736,3773,'_wp_attachment_image_alt','a'),(737,3445,'_wp_attached_file','2017/06/landing-slider-2-img-7.png'),(738,3445,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:29;s:6:\"height\";i:30;s:4:\"file\";s:34:\"2017/06/landing-slider-2-img-7.png\";s:8:\"filesize\";i:3352;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:{}}}'),(739,3445,'_wp_attachment_image_alt','a'),(740,3774,'_wp_attached_file','2017/06/landing-img-gallery-4.jpg'),(741,3774,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:958;s:6:\"height\";i:657;s:4:\"file\";s:33:\"2017/06/landing-img-gallery-4.jpg\";s:8:\"filesize\";i:131374;s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:33:\"landing-img-gallery-4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13860;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:33:\"landing-img-gallery-4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3198;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:33:\"landing-img-gallery-4-600x411.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:411;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25638;}s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"landing-img-gallery-4-300x206.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9433;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"landing-img-gallery-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5306;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"landing-img-gallery-4-768x527.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:527;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37204;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:33:\"landing-img-gallery-4-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34746;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:33:\"landing-img-gallery-4-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13947;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:33:\"landing-img-gallery-4-958x550.jpg\";s:5:\"width\";i:958;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51046;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:33:\"landing-img-gallery-4-550x657.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:657;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42407;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(742,3446,'_wp_attached_file','2017/06/landing-slider-2-img-8.png'),(743,3446,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:42;s:6:\"height\";i:42;s:4:\"file\";s:34:\"2017/06/landing-slider-2-img-8.png\";s:8:\"filesize\";i:2619;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:{}}}'),(744,3446,'_wp_attachment_image_alt',''),(745,3774,'_wp_attachment_image_alt','a'),(746,3487,'_wp_attached_file','2017/06/landing-background-img-1.jpg'),(747,3487,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1100;s:4:\"file\";s:36:\"2017/06/landing-background-img-1.jpg\";s:8:\"filesize\";i:44051;s:5:\"sizes\";a:13:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:36:\"landing-background-img-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2183;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:36:\"landing-background-img-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:889;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:36:\"landing-background-img-1-600x344.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:344;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5530;}s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"landing-background-img-1-300x172.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:172;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1829;}s:5:\"large\";a:5:{s:4:\"file\";s:37:\"landing-background-img-1-1024x587.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:587;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14252;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"landing-background-img-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:1099;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:36:\"landing-background-img-1-768x440.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:440;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8537;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:37:\"landing-background-img-1-1536x880.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:880;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29889;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:36:\"landing-background-img-1-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5880;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:36:\"landing-background-img-1-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2561;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:37:\"landing-background-img-1-1100x550.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15009;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:37:\"landing-background-img-1-550x1100.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:1100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10762;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:38:\"landing-background-img-1-1100x1100.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:1100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20865;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(748,3792,'_wp_attached_file','2017/06/404-img-1.png'),(749,3792,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:108;s:6:\"height\";i:104;s:4:\"file\";s:21:\"2017/06/404-img-1.png\";s:8:\"filesize\";i:5274;s:5:\"sizes\";a:1:{s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:21:\"404-img-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5845;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(750,3792,'_wp_attachment_image_alt','a'),(751,3487,'_wp_attachment_image_alt','a'),(752,3980,'_wp_attached_file','2017/06/landing-carousel-gallery-img-2.jpg'),(753,3980,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:377;s:6:\"height\";i:506;s:4:\"file\";s:42:\"2017/06/landing-carousel-gallery-img-2.jpg\";s:8:\"filesize\";i:37892;s:5:\"sizes\";a:5:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:42:\"landing-carousel-gallery-img-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18030;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:42:\"landing-carousel-gallery-img-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3559;}s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"landing-carousel-gallery-img-2-224x300.jpg\";s:5:\"width\";i:224;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13947;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"landing-carousel-gallery-img-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:6412;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:42:\"landing-carousel-gallery-img-2-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18475;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(754,3980,'_wp_attachment_image_alt','a'),(755,3494,'_wp_attached_file','2017/06/landing-img-4.jpg'),(756,3494,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:527;s:4:\"file\";s:25:\"2017/06/landing-img-4.jpg\";s:8:\"filesize\";i:50672;s:5:\"sizes\";a:9:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:25:\"landing-img-4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13440;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:25:\"landing-img-4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2929;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:25:\"landing-img-4-600x395.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:395;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29667;}s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"landing-img-4-300x198.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10676;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"landing-img-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4917;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"landing-img-4-768x506.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40443;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:25:\"landing-img-4-550x527.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:527;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31802;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:25:\"landing-img-4-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15067;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:25:\"landing-img-4-550x527.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:527;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31802;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(757,3494,'_wp_attachment_image_alt','a'),(758,3981,'_wp_attached_file','2017/06/landing-carousel-gallery-img-3.jpg'),(759,3981,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:377;s:6:\"height\";i:506;s:4:\"file\";s:42:\"2017/06/landing-carousel-gallery-img-3.jpg\";s:8:\"filesize\";i:34532;s:5:\"sizes\";a:5:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:42:\"landing-carousel-gallery-img-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16615;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:42:\"landing-carousel-gallery-img-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3752;}s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"landing-carousel-gallery-img-3-224x300.jpg\";s:5:\"width\";i:224;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13049;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"landing-carousel-gallery-img-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6424;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:42:\"landing-carousel-gallery-img-3-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16540;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(760,3981,'_wp_attachment_image_alt','a'),(761,3495,'_wp_attached_file','2017/06/landing-img-5.jpg'),(762,3495,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:527;s:4:\"file\";s:25:\"2017/06/landing-img-5.jpg\";s:8:\"filesize\";i:85321;s:5:\"sizes\";a:9:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:25:\"landing-img-5-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18944;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:25:\"landing-img-5-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3945;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:25:\"landing-img-5-600x395.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:395;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39930;}s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"landing-img-5-300x198.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13065;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"landing-img-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6716;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"landing-img-5-768x506.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60361;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:25:\"landing-img-5-550x527.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:527;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55047;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:25:\"landing-img-5-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20490;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:25:\"landing-img-5-550x527.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:527;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55047;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(763,3495,'_wp_attachment_image_alt','a'),(764,3982,'_wp_attached_file','2017/06/landing-carousel-gallery-img-4.jpg'),(765,3982,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:377;s:6:\"height\";i:506;s:4:\"file\";s:42:\"2017/06/landing-carousel-gallery-img-4.jpg\";s:8:\"filesize\";i:28417;s:5:\"sizes\";a:5:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:42:\"landing-carousel-gallery-img-4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12498;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:42:\"landing-carousel-gallery-img-4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2777;}s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"landing-carousel-gallery-img-4-224x300.jpg\";s:5:\"width\";i:224;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10221;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"landing-carousel-gallery-img-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5020;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:42:\"landing-carousel-gallery-img-4-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13377;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(766,3982,'_wp_attachment_image_alt','a'),(767,3496,'_wp_attached_file','2017/06/landing-img-6.jpg'),(768,3496,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:527;s:4:\"file\";s:25:\"2017/06/landing-img-6.jpg\";s:8:\"filesize\";i:76985;s:5:\"sizes\";a:9:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:25:\"landing-img-6-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19227;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:25:\"landing-img-6-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3645;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:25:\"landing-img-6-600x395.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:395;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35660;}s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"landing-img-6-300x198.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11998;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"landing-img-6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6465;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"landing-img-6-768x506.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51870;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:25:\"landing-img-6-550x527.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:527;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53485;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:25:\"landing-img-6-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19068;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:25:\"landing-img-6-550x527.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:527;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53485;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(769,3496,'_wp_attachment_image_alt','a'),(770,3983,'_wp_attached_file','2017/06/landing-carousel-gallery-img-5.jpg'),(771,3983,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:377;s:6:\"height\";i:506;s:4:\"file\";s:42:\"2017/06/landing-carousel-gallery-img-5.jpg\";s:8:\"filesize\";i:38831;s:5:\"sizes\";a:5:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:42:\"landing-carousel-gallery-img-5-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18418;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:42:\"landing-carousel-gallery-img-5-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3958;}s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"landing-carousel-gallery-img-5-224x300.jpg\";s:5:\"width\";i:224;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14052;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"landing-carousel-gallery-img-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7058;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:42:\"landing-carousel-gallery-img-5-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17556;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(772,3983,'_wp_attachment_image_alt','a'),(773,3497,'_wp_attached_file','2017/06/landing-custom-logo-1.png'),(774,3497,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:228;s:6:\"height\";i:66;s:4:\"file\";s:33:\"2017/06/landing-custom-logo-1.png\";s:8:\"filesize\";i:7706;s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:32:\"landing-custom-logo-1-100x66.png\";s:5:\"width\";i:100;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2162;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"landing-custom-logo-1-150x66.png\";s:5:\"width\";i:150;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4081;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(775,3497,'_wp_attachment_image_alt','a'),(776,3985,'_wp_attached_file','2017/06/landing-carousel-gallery-img-6.jpg'),(777,3985,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:377;s:6:\"height\";i:506;s:4:\"file\";s:42:\"2017/06/landing-carousel-gallery-img-6.jpg\";s:8:\"filesize\";i:35419;s:5:\"sizes\";a:5:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:42:\"landing-carousel-gallery-img-6-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16759;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:42:\"landing-carousel-gallery-img-6-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3499;}s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"landing-carousel-gallery-img-6-224x300.jpg\";s:5:\"width\";i:224;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13513;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"landing-carousel-gallery-img-6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6643;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:42:\"landing-carousel-gallery-img-6-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17539;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(778,3985,'_wp_attachment_image_alt','a'),(779,3513,'_wp_attached_file','2017/06/landing-custom-logo-3.png'),(780,3513,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:266;s:6:\"height\";i:54;s:4:\"file\";s:33:\"2017/06/landing-custom-logo-3.png\";s:8:\"filesize\";i:8880;s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:32:\"landing-custom-logo-3-100x54.png\";s:5:\"width\";i:100;s:6:\"height\";i:54;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2249;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"landing-custom-logo-3-150x54.png\";s:5:\"width\";i:150;s:6:\"height\";i:54;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3983;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(781,3513,'_wp_attachment_image_alt','a'),(782,3989,'_wp_attached_file','2017/06/h6-slide-1-background.jpg'),(783,3989,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1100;s:4:\"file\";s:33:\"2017/06/h6-slide-1-background.jpg\";s:8:\"filesize\";i:142574;s:5:\"sizes\";a:13:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:33:\"h6-slide-1-background-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22248;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:33:\"h6-slide-1-background-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4269;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:33:\"h6-slide-1-background-600x344.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:344;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41207;}s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"h6-slide-1-background-300x172.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:172;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14134;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"h6-slide-1-background-1024x587.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:587;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:94918;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"h6-slide-1-background-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7651;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"h6-slide-1-background-768x440.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:440;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60365;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:34:\"h6-slide-1-background-1536x880.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:880;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:175878;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:33:\"h6-slide-1-background-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60733;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:33:\"h6-slide-1-background-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23472;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:34:\"h6-slide-1-background-1100x550.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:95568;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:34:\"h6-slide-1-background-550x1100.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:1100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:92053;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:35:\"h6-slide-1-background-1100x1100.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:1100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:178805;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(784,3989,'_wp_attachment_image_alt','a'),(785,3515,'_wp_attached_file','2017/06/landing-background-img-2.jpg'),(786,3515,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1100;s:4:\"file\";s:36:\"2017/06/landing-background-img-2.jpg\";s:8:\"filesize\";i:36310;s:5:\"sizes\";a:13:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:36:\"landing-background-img-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2273;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:36:\"landing-background-img-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:891;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:36:\"landing-background-img-2-600x344.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:344;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4788;}s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"landing-background-img-2-300x172.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:172;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1670;}s:5:\"large\";a:5:{s:4:\"file\";s:37:\"landing-background-img-2-1024x587.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:587;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12094;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"landing-background-img-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:1112;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:36:\"landing-background-img-2-768x440.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:440;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7259;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:37:\"landing-background-img-2-1536x880.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:880;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25604;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:36:\"landing-background-img-2-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6067;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:36:\"landing-background-img-2-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2538;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:37:\"landing-background-img-2-1100x550.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12562;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:37:\"landing-background-img-2-550x1100.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:1100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10349;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:38:\"landing-background-img-2-1100x1100.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:1100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21271;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(787,3515,'_wp_attachment_image_alt','a'),(788,4000,'_wp_attached_file','2017/05/h3-img-1.jpg'),(789,4000,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:744;s:6:\"height\";i:605;s:4:\"file\";s:20:\"2017/05/h3-img-1.jpg\";s:8:\"filesize\";i:101057;s:5:\"sizes\";a:9:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:20:\"h3-img-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24361;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:20:\"h3-img-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4519;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:20:\"h3-img-1-600x488.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:488;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54721;}s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"h3-img-1-300x244.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:244;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18055;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"h3-img-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:8034;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:20:\"h3-img-1-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64832;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:20:\"h3-img-1-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22955;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:20:\"h3-img-1-744x550.jpg\";s:5:\"width\";i:744;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81542;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:20:\"h3-img-1-550x605.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:605;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:82937;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(790,3516,'_wp_attached_file','2017/06/landing-custom-logo-6.png'),(791,3516,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:313;s:6:\"height\";i:73;s:4:\"file\";s:33:\"2017/06/landing-custom-logo-6.png\";s:8:\"filesize\";i:12128;s:5:\"sizes\";a:4:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:32:\"landing-custom-logo-6-300x73.png\";s:5:\"width\";i:300;s:6:\"height\";i:73;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9161;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:32:\"landing-custom-logo-6-100x73.png\";s:5:\"width\";i:100;s:6:\"height\";i:73;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3213;}s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"landing-custom-logo-6-300x70.png\";s:5:\"width\";i:300;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10799;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"landing-custom-logo-6-150x73.png\";s:5:\"width\";i:150;s:6:\"height\";i:73;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4639;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(792,4000,'_wp_attachment_image_alt','a'),(793,3516,'_wp_attachment_image_alt','a'),(794,4061,'_wp_attached_file','2017/06/landing-carousel-gallery-img-7.jpg'),(795,4061,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:377;s:6:\"height\";i:506;s:4:\"file\";s:42:\"2017/06/landing-carousel-gallery-img-7.jpg\";s:8:\"filesize\";i:37359;s:5:\"sizes\";a:5:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:42:\"landing-carousel-gallery-img-7-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19362;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:42:\"landing-carousel-gallery-img-7-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3941;}s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"landing-carousel-gallery-img-7-224x300.jpg\";s:5:\"width\";i:224;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13269;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"landing-carousel-gallery-img-7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7123;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:42:\"landing-carousel-gallery-img-7-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19561;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(796,3517,'_wp_attached_file','2017/06/landing-custom-logo-2.png'),(797,3517,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:362;s:6:\"height\";i:59;s:4:\"file\";s:33:\"2017/06/landing-custom-logo-2.png\";s:8:\"filesize\";i:18292;s:5:\"sizes\";a:5:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:32:\"landing-custom-logo-2-300x59.png\";s:5:\"width\";i:300;s:6:\"height\";i:59;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16241;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:32:\"landing-custom-logo-2-100x59.png\";s:5:\"width\";i:100;s:6:\"height\";i:59;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5563;}s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"landing-custom-logo-2-300x49.png\";s:5:\"width\";i:300;s:6:\"height\";i:49;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15616;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"landing-custom-logo-2-150x59.png\";s:5:\"width\";i:150;s:6:\"height\";i:59;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7966;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:32:\"landing-custom-logo-2-350x59.png\";s:5:\"width\";i:350;s:6:\"height\";i:59;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19622;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(798,3517,'_wp_attachment_image_alt','a'),(799,4061,'_wp_attachment_image_alt','a'),(800,3518,'_wp_attached_file','2017/06/landing-custom-logo-4.png'),(801,3518,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:382;s:6:\"height\";i:76;s:4:\"file\";s:33:\"2017/06/landing-custom-logo-4.png\";s:8:\"filesize\";i:13000;s:5:\"sizes\";a:5:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:32:\"landing-custom-logo-4-300x76.png\";s:5:\"width\";i:300;s:6:\"height\";i:76;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9013;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:32:\"landing-custom-logo-4-100x76.png\";s:5:\"width\";i:100;s:6:\"height\";i:76;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3242;}s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"landing-custom-logo-4-300x60.png\";s:5:\"width\";i:300;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8665;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"landing-custom-logo-4-150x76.png\";s:5:\"width\";i:150;s:6:\"height\";i:76;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4992;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:32:\"landing-custom-logo-4-350x76.png\";s:5:\"width\";i:350;s:6:\"height\";i:76;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10456;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(802,3518,'_wp_attachment_image_alt','a'),(803,3519,'_wp_attached_file','2017/06/landing-custom-logo-5.png'),(804,3519,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:387;s:6:\"height\";i:52;s:4:\"file\";s:33:\"2017/06/landing-custom-logo-5.png\";s:8:\"filesize\";i:4478;s:5:\"sizes\";a:5:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:32:\"landing-custom-logo-5-300x52.png\";s:5:\"width\";i:300;s:6:\"height\";i:52;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2276;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:32:\"landing-custom-logo-5-100x52.png\";s:5:\"width\";i:100;s:6:\"height\";i:52;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1009;}s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"landing-custom-logo-5-300x40.png\";s:5:\"width\";i:300;s:6:\"height\";i:40;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4599;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"landing-custom-logo-5-150x52.png\";s:5:\"width\";i:150;s:6:\"height\";i:52;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1302;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:32:\"landing-custom-logo-5-350x52.png\";s:5:\"width\";i:350;s:6:\"height\";i:52;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3109;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(805,3519,'_wp_attachment_image_alt','a'),(806,3527,'_wp_attached_file','2017/06/landing-cards-gallery-img-1.jpg'),(807,3527,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:754;s:6:\"height\";i:750;s:4:\"file\";s:39:\"2017/06/landing-cards-gallery-img-1.jpg\";s:8:\"filesize\";i:94400;s:5:\"sizes\";a:9:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:39:\"landing-cards-gallery-img-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17287;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:39:\"landing-cards-gallery-img-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3424;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:39:\"landing-cards-gallery-img-1-600x597.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:597;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46155;}s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"landing-cards-gallery-img-1-300x298.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:298;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17011;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"landing-cards-gallery-img-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:6144;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:39:\"landing-cards-gallery-img-1-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41629;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:39:\"landing-cards-gallery-img-1-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18028;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:39:\"landing-cards-gallery-img-1-754x550.jpg\";s:5:\"width\";i:754;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54763;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:39:\"landing-cards-gallery-img-1-550x750.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54915;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(808,3527,'_wp_attachment_image_alt','a'),(809,2,'_edit_lock','1729432974:1'),(810,37,'_wp_attachment_image_alt','a'),(811,42,'_wp_attachment_image_alt','a'),(812,43,'_wp_attachment_image_alt','a'),(813,44,'_wp_attachment_image_alt','a'),(814,45,'_wp_attachment_image_alt','a'),(815,704,'_wp_attachment_image_alt','a'),(816,705,'_wp_attachment_image_alt','a'),(817,706,'_wp_attachment_image_alt','a'),(818,726,'_wp_attachment_image_alt','a'),(819,731,'_wp_attachment_image_alt','a'),(820,734,'_wp_attachment_image_alt','a'),(821,770,'_wp_attachment_image_alt','c'),(822,1898,'_wp_attachment_image_alt','a'),(823,778,'_wp_attachment_image_alt','a'),(824,1899,'_wp_attachment_image_alt','a'),(825,779,'_wp_attachment_image_alt','a'),(826,1900,'_wp_attachment_image_alt','a'),(827,781,'_wp_attachment_image_alt','a'),(828,1904,'_wp_attachment_image_alt','a'),(829,783,'_wp_attachment_image_alt','a'),(830,1910,'_wp_attachment_image_alt','a'),(831,828,'_wp_attachment_image_alt','a'),(832,1921,'_wp_attachment_image_alt','a'),(833,865,'_wp_attachment_image_alt','a'),(834,1923,'_wp_attachment_image_alt','a'),(835,898,'_wp_attachment_image_alt','a'),(836,1925,'_wp_attachment_image_alt','a'),(837,899,'_wp_attachment_image_alt','a'),(838,1926,'_wp_attachment_image_alt','a'),(839,900,'_wp_attachment_image_alt','q'),(840,1931,'_wp_attachment_image_alt','a'),(841,901,'_wp_attachment_image_alt','a'),(842,1932,'_wp_attachment_image_alt','a'),(843,902,'_wp_attachment_image_alt','a'),(844,1933,'_wp_attachment_image_alt','a'),(845,903,'_wp_attachment_image_alt','a'),(846,1934,'_wp_attachment_image_alt','a'),(847,911,'_wp_attachment_image_alt','a'),(848,1947,'_wp_attachment_image_alt','a'),(849,914,'_wp_attachment_image_alt','a'),(850,1948,'_wp_attachment_image_alt','a'),(851,918,'_wp_attachment_image_alt','a'),(852,1950,'_wp_attachment_image_alt','a'),(853,921,'_wp_attachment_image_alt','a'),(854,1951,'_wp_attachment_image_alt','a'),(855,925,'_wp_attachment_image_alt','a'),(856,1953,'_wp_attachment_image_alt','a'),(857,928,'_wp_attachment_image_alt','a'),(858,1954,'_wp_attachment_image_alt','a'),(859,934,'_wp_attachment_image_alt','a'),(860,1955,'_wp_attachment_image_alt','a'),(861,935,'_wp_attachment_image_alt','a'),(862,1956,'_wp_attachment_image_alt','a'),(863,936,'_wp_attachment_image_alt','a'),(864,1027,'_wp_attachment_image_alt','a'),(865,1964,'_wp_attachment_image_alt',''),(866,1028,'_wp_attachment_image_alt','a'),(867,2063,'_wp_attachment_image_alt','f'),(868,1029,'_wp_attachment_image_alt','a'),(869,2213,'_wp_attachment_image_alt','a'),(870,1156,'_wp_attachment_image_alt','f'),(871,2246,'_wp_attachment_image_alt','a'),(872,1157,'_wp_attachment_image_alt','f'),(873,2276,'_wp_attachment_image_alt','a'),(874,1158,'_wp_attachment_image_alt','f'),(875,2311,'_wp_attachment_image_alt','a'),(876,1160,'_wp_attachment_image_alt','f'),(877,2315,'_wp_attachment_image_alt','a'),(878,1209,'_wp_attachment_image_alt','a'),(879,2320,'_wp_attachment_image_alt','a'),(880,1217,'_wp_attachment_image_alt','g'),(881,2324,'_wp_attachment_image_alt','a'),(882,1225,'_wp_attachment_image_alt','a'),(883,2330,'_wp_attachment_image_alt','a'),(884,1235,'_wp_attachment_image_alt','a'),(885,2331,'_wp_attachment_image_alt','a'),(886,2332,'_wp_attachment_image_alt','a'),(887,2333,'_wp_attachment_image_alt','a'),(888,273,'_wp_attachment_image_alt','a'),(889,1584,'_wp_attachment_image_alt','a'),(890,1585,'_wp_attachment_image_alt','a'),(891,275,'_wp_attachment_image_alt','a'),(892,1586,'_wp_attachment_image_alt','f'),(893,278,'_wp_attachment_image_alt','a'),(894,1630,'_wp_attachment_image_alt','a'),(895,280,'_wp_attachment_image_alt','a'),(896,1631,'_wp_attachment_image_alt','a'),(897,283,'_wp_attachment_image_alt','a'),(898,1632,'_wp_attachment_image_alt','a'),(899,285,'_wp_attachment_image_alt','a'),(900,1633,'_wp_attachment_image_alt','a'),(901,287,'_wp_attachment_image_alt','a'),(902,1634,'_wp_attachment_image_alt','a'),(903,304,'_wp_attachment_image_alt','a'),(904,1635,'_wp_attachment_image_alt','a'),(905,315,'_wp_attachment_image_alt','a'),(906,1636,'_wp_attachment_image_alt','a'),(907,321,'_wp_attachment_image_alt','a'),(908,1637,'_wp_attachment_image_alt','a'),(909,322,'_wp_attachment_image_alt','a'),(910,1659,'_wp_attachment_image_alt','a'),(911,323,'_wp_attachment_image_alt','a'),(912,1660,'_wp_attachment_image_alt','a'),(913,333,'_wp_attachment_image_alt','a'),(914,1661,'_wp_attachment_image_alt','a'),(915,415,'_wp_attachment_image_alt','a'),(916,1693,'_wp_attachment_image_alt','a'),(917,416,'_wp_attachment_image_alt','a'),(918,1710,'_wp_attachment_image_alt','blog-sidebar-contact-form-backround'),(919,422,'_wp_attachment_image_alt','a'),(920,1719,'_wp_attachment_image_alt','a'),(921,425,'_wp_attachment_image_alt','a'),(922,1722,'_wp_attachment_image_alt','a'),(923,426,'_wp_attachment_image_alt','a'),(924,1747,'_wp_attachment_image_alt','a'),(925,427,'_wp_attachment_image_alt','a'),(926,1748,'_wp_attachment_image_alt','a'),(927,428,'_wp_attachment_image_alt','a'),(928,429,'_wp_attachment_image_alt','a'),(929,430,'_wp_attachment_image_alt','a'),(930,503,'_wp_attachment_image_alt','a'),(931,571,'_wp_attachment_image_alt','a'),(932,572,'_wp_attachment_image_alt','a'),(933,573,'_wp_attachment_image_alt','a'),(934,575,'_wp_attachment_image_alt','a'),(935,606,'_wp_attachment_image_alt','a'),(936,619,'_wp_attachment_image_alt','a'),(937,639,'_wp_attachment_image_alt','a'),(938,640,'_wp_attachment_image_alt','a'),(939,641,'_wp_attachment_image_alt','a'),(940,676,'_wp_attachment_image_alt','a'),(941,681,'_wp_attachment_image_alt','a'),(942,682,'_wp_attachment_image_alt','a'),(943,683,'_wp_attachment_image_alt','a'),(944,703,'_wp_attachment_image_alt','a'),(945,2334,'_wp_attachment_image_alt','a'),(946,2361,'_wp_attachment_image_alt','a'),(947,2363,'_wp_attachment_image_alt','a'),(948,2364,'_wp_attachment_image_alt','a'),(949,2365,'_wp_attachment_image_alt','a'),(950,2366,'_wp_attachment_image_alt','a'),(951,2367,'_wp_attachment_image_alt','a'),(952,2368,'_wp_attachment_image_alt','a'),(953,2369,'_wp_attachment_image_alt','a'),(954,2394,'_wp_attachment_image_alt','a'),(955,2411,'_wp_attachment_image_alt','a'),(956,2412,'_wp_attachment_image_alt','a'),(957,2423,'_wp_attachment_image_alt','a'),(958,2441,'_wp_attachment_image_alt','a'),(959,2820,'_wp_attachment_image_alt','a'),(960,2931,'_wp_attachment_image_alt','a'),(961,2947,'_wp_attachment_image_alt','a'),(962,3049,'_wp_attachment_image_alt','a'),(963,2955,'_wp_attachment_image_alt','a'),(964,3050,'_wp_attachment_image_alt','a'),(965,3006,'_wp_attachment_image_alt','a'),(966,3051,'_wp_attachment_image_alt','a'),(967,3007,'_wp_attachment_image_alt','a'),(968,3052,'_wp_attachment_image_alt','a'),(969,3008,'_wp_attachment_image_alt','a'),(970,3053,'_wp_attachment_image_alt','a'),(971,3021,'_wp_attachment_image_alt','a'),(972,3054,'_wp_attachment_image_alt','a'),(973,3023,'_wp_attachment_image_alt','a'),(974,3055,'_wp_attachment_image_alt','a'),(975,3024,'_wp_attachment_image_alt','a'),(976,3082,'_wp_attachment_image_alt','a'),(977,3025,'_wp_attachment_image_alt','a'),(978,3316,'_wp_attachment_image_alt','a'),(979,3026,'_wp_attachment_image_alt','a'),(980,3317,'_wp_attachment_image_alt','a'),(981,3027,'_wp_attachment_image_alt','a'),(982,3318,'_wp_attachment_image_alt','a'),(983,3029,'_wp_attachment_image_alt','a'),(984,3320,'_wp_attachment_image_alt',''),(985,3030,'_wp_attachment_image_alt','a'),(986,3330,'_wp_attachment_image_alt','a'),(987,3031,'_wp_attachment_image_alt','a'),(988,3417,'_wp_attachment_image_alt','a'),(989,3040,'_wp_attachment_image_alt','a'),(990,3418,'_wp_attachment_image_alt','a'),(991,3041,'_wp_attachment_image_alt','a'),(992,3425,'_wp_attachment_image_alt','a'),(993,3042,'_wp_attachment_image_alt','a'),(994,3428,'_wp_attachment_image_alt','a'),(995,3043,'_wp_attachment_image_alt','a'),(996,3429,'_wp_attachment_image_alt','a'),(997,3044,'_wp_attachment_image_alt','a'),(998,3439,'_wp_attachment_image_alt','a'),(999,3045,'_wp_attachment_image_alt','a'),(1000,3440,'_wp_attachment_image_alt','a'),(1001,3046,'_wp_attachment_image_alt','a'),(1002,3441,'_wp_attachment_image_alt','a'),(1003,3047,'_wp_attachment_image_alt','a'),(1004,3442,'_wp_attachment_image_alt','a'),(1005,3048,'_wp_attachment_image_alt','a'),(1006,3443,'_wp_attachment_image_alt','a'),(1007,3444,'_wp_attachment_image_alt','a'),(1008,3445,'_wp_attachment_image_alt','a'),(1009,3446,'_wp_attachment_image_alt',''),(1010,3487,'_wp_attachment_image_alt','a'),(1011,3494,'_wp_attachment_image_alt','a'),(1012,3495,'_wp_attachment_image_alt','a'),(1013,3496,'_wp_attachment_image_alt','a'),(1014,3497,'_wp_attachment_image_alt','a'),(1015,3513,'_wp_attachment_image_alt','a'),(1016,3515,'_wp_attachment_image_alt','a'),(1017,3516,'_wp_attachment_image_alt','a'),(1018,3517,'_wp_attachment_image_alt','a'),(1019,3518,'_wp_attachment_image_alt','a'),(1020,3519,'_wp_attachment_image_alt','a'),(1021,3527,'_wp_attachment_image_alt','a'),(1022,3529,'_wp_attachment_image_alt','a'),(1023,3538,'_wp_attachment_image_alt','a'),(1024,3550,'_wp_attachment_image_alt','a'),(1025,3551,'_wp_attachment_image_alt','a'),(1026,3552,'_wp_attachment_image_alt','a'),(1027,3554,'_wp_attachment_image_alt','a'),(1028,3564,'_wp_attachment_image_alt','a'),(1029,3567,'_wp_attachment_image_alt','a'),(1030,3570,'_wp_attachment_image_alt','a'),(1031,3572,'_wp_attachment_image_alt','a'),(1032,3575,'_wp_attachment_image_alt','a'),(1033,3582,'_wp_attachment_image_alt','a'),(1034,3590,'_wp_attachment_image_alt','a'),(1035,3592,'_wp_attachment_image_alt','a'),(1036,3597,'_wp_attachment_image_alt','a'),(1037,3609,'_wp_attachment_image_alt','a'),(1038,3771,'_wp_attachment_image_alt','a'),(1039,3772,'_wp_attachment_image_alt','a'),(1040,3773,'_wp_attachment_image_alt','a'),(1041,3774,'_wp_attachment_image_alt','a'),(1042,3792,'_wp_attachment_image_alt','a'),(1043,3980,'_wp_attachment_image_alt','a'),(1044,3981,'_wp_attachment_image_alt','a'),(1045,3982,'_wp_attachment_image_alt','a'),(1046,3983,'_wp_attachment_image_alt','a'),(1047,3985,'_wp_attachment_image_alt','a'),(1048,3989,'_wp_attachment_image_alt','a'),(1049,4000,'_wp_attachment_image_alt','a'),(1050,4061,'_wp_attachment_image_alt','a'),(1051,1750,'_wp_attached_file','2017/06/product-1-gallery-3.jpg'),(1052,1750,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:542;s:4:\"file\";s:31:\"2017/06/product-1-gallery-3.jpg\";s:8:\"filesize\";i:27049;s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:31:\"product-1-gallery-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8365;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:31:\"product-1-gallery-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2323;}s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"product-1-gallery-3-300x271.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7701;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"product-1-gallery-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3511;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:31:\"product-1-gallery-3-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19691;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:31:\"product-1-gallery-3-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9241;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:31:\"product-1-gallery-3-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19691;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1053,1750,'_wp_attachment_image_alt',''),(1054,37,'_wp_attachment_image_alt','a'),(1055,42,'_wp_attachment_image_alt','a'),(1056,43,'_wp_attachment_image_alt','a'),(1057,44,'_wp_attachment_image_alt','a'),(1058,45,'_wp_attachment_image_alt','a'),(1059,1584,'_wp_attachment_image_alt','a'),(1060,1585,'_wp_attachment_image_alt','a'),(1061,1586,'_wp_attachment_image_alt','f'),(1062,1630,'_wp_attachment_image_alt','a'),(1063,1898,'_wp_attachment_image_alt','a'),(1064,1631,'_wp_attachment_image_alt','a'),(1065,1899,'_wp_attachment_image_alt','a'),(1066,1632,'_wp_attachment_image_alt','a'),(1067,1900,'_wp_attachment_image_alt','a'),(1068,1633,'_wp_attachment_image_alt','a'),(1069,1634,'_wp_attachment_image_alt','a'),(1070,1904,'_wp_attachment_image_alt','a'),(1071,1635,'_wp_attachment_image_alt','a'),(1072,1910,'_wp_attachment_image_alt','a'),(1073,1636,'_wp_attachment_image_alt','a'),(1074,1921,'_wp_attachment_image_alt','a'),(1075,1637,'_wp_attachment_image_alt','a'),(1076,1923,'_wp_attachment_image_alt','a'),(1077,1659,'_wp_attachment_image_alt','a'),(1078,1925,'_wp_attachment_image_alt','a'),(1079,1660,'_wp_attachment_image_alt','a'),(1080,1926,'_wp_attachment_image_alt','a'),(1081,1661,'_wp_attachment_image_alt','a'),(1082,1931,'_wp_attachment_image_alt','a'),(1083,1693,'_wp_attachment_image_alt','a'),(1084,1932,'_wp_attachment_image_alt','a'),(1085,1710,'_wp_attachment_image_alt','blog-sidebar-contact-form-backround'),(1086,1933,'_wp_attachment_image_alt','a'),(1087,1719,'_wp_attachment_image_alt','a'),(1088,1934,'_wp_attachment_image_alt','a'),(1089,1722,'_wp_attachment_image_alt','a'),(1090,1947,'_wp_attachment_image_alt','a'),(1091,1747,'_wp_attachment_image_alt','a'),(1092,1948,'_wp_attachment_image_alt','a'),(1093,1748,'_wp_attachment_image_alt','a'),(1094,1950,'_wp_attachment_image_alt','a'),(1095,1951,'_wp_attachment_image_alt','a'),(1096,1953,'_wp_attachment_image_alt','a'),(1097,1954,'_wp_attachment_image_alt','a'),(1098,1955,'_wp_attachment_image_alt','a'),(1099,704,'_wp_attachment_image_alt','a'),(1100,1956,'_wp_attachment_image_alt','a'),(1101,705,'_wp_attachment_image_alt','a'),(1102,706,'_wp_attachment_image_alt','a'),(1103,726,'_wp_attachment_image_alt','a'),(1104,1964,'_wp_attachment_image_alt',''),(1105,731,'_wp_attachment_image_alt','a'),(1106,2063,'_wp_attachment_image_alt','f'),(1107,734,'_wp_attachment_image_alt','a'),(1108,2213,'_wp_attachment_image_alt','a'),(1109,770,'_wp_attachment_image_alt','c'),(1110,2246,'_wp_attachment_image_alt','a'),(1111,778,'_wp_attachment_image_alt','a'),(1112,2276,'_wp_attachment_image_alt','a'),(1113,779,'_wp_attachment_image_alt','a'),(1114,2311,'_wp_attachment_image_alt','a'),(1115,781,'_wp_attachment_image_alt','a'),(1116,2315,'_wp_attachment_image_alt','a'),(1117,783,'_wp_attachment_image_alt','a'),(1118,2320,'_wp_attachment_image_alt','a'),(1119,828,'_wp_attachment_image_alt','a'),(1120,2324,'_wp_attachment_image_alt','a'),(1121,865,'_wp_attachment_image_alt','a'),(1122,2330,'_wp_attachment_image_alt','a'),(1123,898,'_wp_attachment_image_alt','a'),(1124,2331,'_wp_attachment_image_alt','a'),(1125,899,'_wp_attachment_image_alt','a'),(1126,2332,'_wp_attachment_image_alt','a'),(1127,900,'_wp_attachment_image_alt','q'),(1128,2333,'_wp_attachment_image_alt','a'),(1129,901,'_wp_attachment_image_alt','a'),(1130,902,'_wp_attachment_image_alt','a'),(1131,903,'_wp_attachment_image_alt','a'),(1132,911,'_wp_attachment_image_alt','a'),(1133,914,'_wp_attachment_image_alt','a'),(1134,918,'_wp_attachment_image_alt','a'),(1135,921,'_wp_attachment_image_alt','a'),(1136,925,'_wp_attachment_image_alt','a'),(1137,928,'_wp_attachment_image_alt','a'),(1138,934,'_wp_attachment_image_alt','a'),(1139,935,'_wp_attachment_image_alt','a'),(1140,936,'_wp_attachment_image_alt','a'),(1141,1027,'_wp_attachment_image_alt','a'),(1142,1028,'_wp_attachment_image_alt','a'),(1143,1029,'_wp_attachment_image_alt','a'),(1144,1156,'_wp_attachment_image_alt','f'),(1145,1157,'_wp_attachment_image_alt','f'),(1146,1158,'_wp_attachment_image_alt','f'),(1147,1160,'_wp_attachment_image_alt','f'),(1148,1209,'_wp_attachment_image_alt','a'),(1149,1217,'_wp_attachment_image_alt','g'),(1150,1225,'_wp_attachment_image_alt','a'),(1151,1235,'_wp_attachment_image_alt','a'),(1152,273,'_wp_attachment_image_alt','a'),(1153,275,'_wp_attachment_image_alt','a'),(1154,278,'_wp_attachment_image_alt','a'),(1155,280,'_wp_attachment_image_alt','a'),(1156,283,'_wp_attachment_image_alt','a'),(1157,285,'_wp_attachment_image_alt','a'),(1158,287,'_wp_attachment_image_alt','a'),(1159,304,'_wp_attachment_image_alt','a'),(1160,315,'_wp_attachment_image_alt','a'),(1161,321,'_wp_attachment_image_alt','a'),(1162,322,'_wp_attachment_image_alt','a'),(1163,46,'_wp_attached_file','2017/05/instructor-img-5-2.jpg'),(1164,323,'_wp_attachment_image_alt','a'),(1165,46,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:30:\"2017/05/instructor-img-5-2.jpg\";s:8:\"filesize\";i:79522;s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:30:\"instructor-img-5-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20955;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:30:\"instructor-img-5-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3884;}s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"instructor-img-5-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20955;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"instructor-img-5-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:6835;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:30:\"instructor-img-5-2-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51858;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:30:\"instructor-img-5-2-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20779;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:30:\"instructor-img-5-2-600x550.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57971;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:30:\"instructor-img-5-2-550x600.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60176;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1166,333,'_wp_attachment_image_alt','a'),(1167,415,'_wp_attachment_image_alt','a'),(1168,416,'_wp_attachment_image_alt','a'),(1169,422,'_wp_attachment_image_alt','a'),(1170,425,'_wp_attachment_image_alt','a'),(1171,426,'_wp_attachment_image_alt','a'),(1172,427,'_wp_attachment_image_alt','a'),(1173,428,'_wp_attachment_image_alt','a'),(1174,429,'_wp_attachment_image_alt','a'),(1175,430,'_wp_attachment_image_alt','a'),(1176,503,'_wp_attachment_image_alt','a'),(1177,571,'_wp_attachment_image_alt','a'),(1178,572,'_wp_attachment_image_alt','a'),(1179,573,'_wp_attachment_image_alt','a'),(1180,575,'_wp_attachment_image_alt','a'),(1181,606,'_wp_attachment_image_alt','a'),(1182,619,'_wp_attachment_image_alt','a'),(1183,639,'_wp_attachment_image_alt','a'),(1184,640,'_wp_attachment_image_alt','a'),(1185,641,'_wp_attachment_image_alt','a'),(1186,676,'_wp_attachment_image_alt','a'),(1187,681,'_wp_attachment_image_alt','a'),(1188,682,'_wp_attachment_image_alt','a'),(1189,683,'_wp_attachment_image_alt','a'),(1190,703,'_wp_attachment_image_alt','a'),(1191,46,'_wp_attachment_image_alt','a'),(1192,1749,'_wp_attached_file','2017/06/product-1-gallery-2-1.jpg'),(1193,1749,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:542;s:4:\"file\";s:33:\"2017/06/product-1-gallery-2-1.jpg\";s:8:\"filesize\";i:22208;s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:33:\"product-1-gallery-2-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6947;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:33:\"product-1-gallery-2-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1882;}s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"product-1-gallery-2-1-300x271.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6266;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"product-1-gallery-2-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3018;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:33:\"product-1-gallery-2-1-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17442;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:33:\"product-1-gallery-2-1-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7522;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:33:\"product-1-gallery-2-1-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17442;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1194,1749,'_wp_attachment_image_alt','a'),(1195,1750,'_wp_attachment_image_alt',''),(1196,1338,'_wp_attached_file','2017/05/logo-light-1.png'),(1197,1338,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:332;s:6:\"height\";i:64;s:4:\"file\";s:24:\"2017/05/logo-light-1.png\";s:8:\"filesize\";i:3721;s:5:\"sizes\";a:4:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:23:\"logo-light-1-300x64.png\";s:5:\"width\";i:300;s:6:\"height\";i:64;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3118;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:23:\"logo-light-1-100x64.png\";s:5:\"width\";i:100;s:6:\"height\";i:64;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1351;}s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"logo-light-1-300x58.png\";s:5:\"width\";i:300;s:6:\"height\";i:58;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5832;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"logo-light-1-150x64.png\";s:5:\"width\";i:150;s:6:\"height\";i:64;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1900;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1198,1338,'_wp_attachment_image_alt','a'),(1199,1338,'_mkd-like','0'),(1200,47,'_wp_attached_file','2017/05/instructor-img-6.jpg'),(1201,47,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:28:\"2017/05/instructor-img-6.jpg\";s:8:\"filesize\";i:60145;s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:28:\"instructor-img-6-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14369;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:28:\"instructor-img-6-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2952;}s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"instructor-img-6-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14369;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"instructor-img-6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4844;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:28:\"instructor-img-6-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37885;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:28:\"instructor-img-6-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14603;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:28:\"instructor-img-6-600x550.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46303;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:28:\"instructor-img-6-550x600.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48885;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1202,47,'_wp_attachment_image_alt','a'),(1203,2334,'_wp_attachment_image_alt','a'),(1204,2361,'_wp_attachment_image_alt','a'),(1205,2363,'_wp_attachment_image_alt','a'),(1206,2364,'_wp_attachment_image_alt','a'),(1207,2365,'_wp_attachment_image_alt','a'),(1208,2366,'_wp_attachment_image_alt','a'),(1209,2367,'_wp_attachment_image_alt','a'),(1210,2368,'_wp_attachment_image_alt','a'),(1211,2369,'_wp_attachment_image_alt','a'),(1212,2394,'_wp_attachment_image_alt','a'),(1213,2411,'_wp_attachment_image_alt','a'),(1214,2412,'_wp_attachment_image_alt','a'),(1215,2423,'_wp_attachment_image_alt','a'),(1216,2441,'_wp_attachment_image_alt','a'),(1217,2820,'_wp_attachment_image_alt','a'),(1218,2931,'_wp_attachment_image_alt','a'),(1219,2947,'_wp_attachment_image_alt','a'),(1220,2955,'_wp_attachment_image_alt','a'),(1221,3006,'_wp_attachment_image_alt','a'),(1222,3007,'_wp_attachment_image_alt','a'),(1223,3008,'_wp_attachment_image_alt','a'),(1224,3021,'_wp_attachment_image_alt','a'),(1225,3023,'_wp_attachment_image_alt','a'),(1226,3024,'_wp_attachment_image_alt','a'),(1227,3025,'_wp_attachment_image_alt','a'),(1228,3026,'_wp_attachment_image_alt','a'),(1229,3027,'_wp_attachment_image_alt','a'),(1230,3029,'_wp_attachment_image_alt','a'),(1231,3030,'_wp_attachment_image_alt','a'),(1232,3031,'_wp_attachment_image_alt','a'),(1233,3040,'_wp_attachment_image_alt','a'),(1234,3041,'_wp_attachment_image_alt','a'),(1235,3042,'_wp_attachment_image_alt','a'),(1236,3043,'_wp_attachment_image_alt','a'),(1237,3044,'_wp_attachment_image_alt','a'),(1238,3045,'_wp_attachment_image_alt','a'),(1239,3046,'_wp_attachment_image_alt','a'),(1240,3047,'_wp_attachment_image_alt','a'),(1241,3048,'_wp_attachment_image_alt','a'),(1242,3049,'_wp_attachment_image_alt','a'),(1243,3050,'_wp_attachment_image_alt','a'),(1244,3051,'_wp_attachment_image_alt','a'),(1245,3052,'_wp_attachment_image_alt','a'),(1246,3053,'_wp_attachment_image_alt','a'),(1247,3054,'_wp_attachment_image_alt','a'),(1248,3055,'_wp_attachment_image_alt','a'),(1249,3082,'_wp_attachment_image_alt','a'),(1250,3316,'_wp_attachment_image_alt','a'),(1251,3317,'_wp_attachment_image_alt','a'),(1252,3318,'_wp_attachment_image_alt','a'),(1253,3320,'_wp_attachment_image_alt',''),(1254,3330,'_wp_attachment_image_alt','a'),(1255,3417,'_wp_attachment_image_alt','a'),(1256,3418,'_wp_attachment_image_alt','a'),(1257,3425,'_wp_attachment_image_alt','a'),(1258,3428,'_wp_attachment_image_alt','a'),(1259,3429,'_wp_attachment_image_alt','a'),(1260,3439,'_wp_attachment_image_alt','a'),(1261,3440,'_wp_attachment_image_alt','a'),(1262,3441,'_wp_attachment_image_alt','a'),(1263,3442,'_wp_attachment_image_alt','a'),(1264,3443,'_wp_attachment_image_alt','a'),(1265,3444,'_wp_attachment_image_alt','a'),(1266,3445,'_wp_attachment_image_alt','a'),(1267,3446,'_wp_attachment_image_alt',''),(1268,3487,'_wp_attachment_image_alt','a'),(1269,3494,'_wp_attachment_image_alt','a'),(1270,3495,'_wp_attachment_image_alt','a'),(1271,3496,'_wp_attachment_image_alt','a'),(1272,3497,'_wp_attachment_image_alt','a'),(1273,3513,'_wp_attachment_image_alt','a'),(1274,3515,'_wp_attachment_image_alt','a'),(1275,3516,'_wp_attachment_image_alt','a'),(1276,3517,'_wp_attachment_image_alt','a'),(1277,3518,'_wp_attachment_image_alt','a'),(1278,3519,'_wp_attachment_image_alt','a'),(1279,3527,'_wp_attachment_image_alt','a'),(1280,1797,'_wp_attached_file','2017/06/h7-slide-1-background-1.jpg'),(1281,3529,'_wp_attachment_image_alt','a'),(1282,1797,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1297;s:6:\"height\";i:696;s:4:\"file\";s:35:\"2017/06/h7-slide-1-background-1.jpg\";s:8:\"filesize\";i:83044;s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:35:\"h7-slide-1-background-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20553;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:35:\"h7-slide-1-background-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4191;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:35:\"h7-slide-1-background-1-600x322.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:322;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32781;}s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"h7-slide-1-background-1-300x161.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11743;}s:5:\"large\";a:5:{s:4:\"file\";s:36:\"h7-slide-1-background-1-1024x550.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72070;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"h7-slide-1-background-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:7395;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"h7-slide-1-background-1-768x412.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:412;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47059;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:35:\"h7-slide-1-background-1-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50681;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:35:\"h7-slide-1-background-1-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22015;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:36:\"h7-slide-1-background-1-1100x550.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77223;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:35:\"h7-slide-1-background-1-550x696.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:696;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63754;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:36:\"h7-slide-1-background-1-1100x696.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:696;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:100879;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1283,3538,'_wp_attachment_image_alt','a'),(1284,3550,'_wp_attachment_image_alt','a'),(1285,3551,'_wp_attachment_image_alt','a'),(1286,3552,'_wp_attachment_image_alt','a'),(1287,3554,'_wp_attachment_image_alt','a'),(1288,3564,'_wp_attachment_image_alt','a'),(1289,3567,'_wp_attachment_image_alt','a'),(1290,3570,'_wp_attachment_image_alt','a'),(1291,3572,'_wp_attachment_image_alt','a'),(1292,3575,'_wp_attachment_image_alt','a'),(1293,52,'_wp_attached_file','2017/05/Favicon.png'),(1294,52,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:19:\"2017/05/Favicon.png\";s:8:\"filesize\";i:3699;s:5:\"sizes\";a:5:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:19:\"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:2112;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:19:\"Favicon-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:829;}s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"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:2112;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"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:1112;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:19:\"Favicon-350x282.png\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1948;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1295,52,'_wp_attachment_image_alt','a'),(1296,1345,'_wp_attached_file','2017/05/blog-post-6.jpg'),(1297,1345,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:725;s:4:\"file\";s:23:\"2017/05/blog-post-6.jpg\";s:8:\"filesize\";i:114658;s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:23:\"blog-post-6-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15431;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:23:\"blog-post-6-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3619;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:23:\"blog-post-6-600x335.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:335;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27173;}s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"blog-post-6-300x167.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9762;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"blog-post-6-1024x571.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:571;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63832;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"blog-post-6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6030;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"blog-post-6-768x428.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:428;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40471;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:23:\"blog-post-6-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38513;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:23:\"blog-post-6-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16431;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:24:\"blog-post-6-1100x550.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65296;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:23:\"blog-post-6-550x725.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:725;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45710;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:24:\"blog-post-6-1100x725.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:725;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:91416;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1298,1797,'_wp_attachment_image_alt','a'),(1299,1345,'_wp_attachment_image_alt','g'),(1300,53,'_wp_attached_file','2017/05/cropped-Favicon.png'),(1301,53,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:27:\"2017/05/cropped-Favicon.png\";s:8:\"filesize\";i:2415;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:2112;}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:1112;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:27:\"cropped-Favicon-350x282.png\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1948;}s:21:\"woocommerce_thumbnail\";a:6:{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:2112;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:27:\"cropped-Favicon-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:829;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1302,53,'_wp_attachment_context','site-icon'),(1303,3582,'_wp_attachment_image_alt','a'),(1304,3590,'_wp_attachment_image_alt','a'),(1305,3592,'_wp_attachment_image_alt','a'),(1306,3597,'_wp_attachment_image_alt','a'),(1307,3609,'_wp_attachment_image_alt','a'),(1308,3771,'_wp_attachment_image_alt','a'),(1309,3772,'_wp_attachment_image_alt','a'),(1310,3773,'_wp_attachment_image_alt','a'),(1311,3774,'_wp_attachment_image_alt','a'),(1312,3792,'_wp_attachment_image_alt','a'),(1313,3980,'_wp_attachment_image_alt','a'),(1314,3981,'_wp_attachment_image_alt','a'),(1315,3982,'_wp_attachment_image_alt','a'),(1316,3983,'_wp_attachment_image_alt','a'),(1317,3985,'_wp_attachment_image_alt','a'),(1318,3989,'_wp_attachment_image_alt','a'),(1319,4000,'_wp_attachment_image_alt','a'),(1320,4061,'_wp_attachment_image_alt','a'),(1321,1798,'_wp_attached_file','2017/06/h7-slide-2-background.jpg'),(1322,1798,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1297;s:6:\"height\";i:696;s:4:\"file\";s:33:\"2017/06/h7-slide-2-background.jpg\";s:8:\"filesize\";i:129964;s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:33:\"h7-slide-2-background-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22511;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:33:\"h7-slide-2-background-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4075;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:33:\"h7-slide-2-background-600x322.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:322;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45097;}s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"h7-slide-2-background-300x161.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14482;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"h7-slide-2-background-1024x550.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107254;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"h7-slide-2-background-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7120;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"h7-slide-2-background-768x412.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:412;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67501;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:33:\"h7-slide-2-background-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62251;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:33:\"h7-slide-2-background-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24026;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:34:\"h7-slide-2-background-1100x550.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:111798;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:33:\"h7-slide-2-background-550x696.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:696;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:84050;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:34:\"h7-slide-2-background-1100x696.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:696;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:144725;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1323,1346,'_wp_attached_file','2017/05/blog-post-7.jpg'),(1324,1346,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:725;s:4:\"file\";s:23:\"2017/05/blog-post-7.jpg\";s:8:\"filesize\";i:112490;s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:23:\"blog-post-7-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21487;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:23:\"blog-post-7-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4206;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:23:\"blog-post-7-600x335.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:335;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46306;}s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"blog-post-7-300x167.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13786;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"blog-post-7-1024x571.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:571;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:114957;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"blog-post-7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7235;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"blog-post-7-768x428.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:428;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71116;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:23:\"blog-post-7-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57308;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:23:\"blog-post-7-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24059;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:24:\"blog-post-7-1100x550.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:116227;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:23:\"blog-post-7-550x725.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:725;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71571;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:24:\"blog-post-7-1100x725.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:725;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:146096;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1325,56,'_wp_attached_file','2017/05/pages-title-parallax.jpg'),(1326,56,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:750;s:4:\"file\";s:32:\"2017/05/pages-title-parallax.jpg\";s:8:\"filesize\";i:55913;s:5:\"sizes\";a:13:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:32:\"pages-title-parallax-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4065;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:32:\"pages-title-parallax-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1118;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:32:\"pages-title-parallax-600x234.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:234;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5925;}s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"pages-title-parallax-300x117.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:117;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2055;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"pages-title-parallax-1024x400.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16108;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"pages-title-parallax-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1567;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"pages-title-parallax-768x300.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9344;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:33:\"pages-title-parallax-1536x600.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36188;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:32:\"pages-title-parallax-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12116;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:32:\"pages-title-parallax-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4272;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:33:\"pages-title-parallax-1100x550.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22971;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:32:\"pages-title-parallax-550x750.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17138;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:33:\"pages-title-parallax-1100x750.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31305;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1327,1798,'_wp_attachment_image_alt','a'),(1328,1346,'_wp_attachment_image_alt','g'),(1329,56,'_wp_attachment_image_alt','a'),(1330,1347,'_wp_attached_file','2017/05/blog-post-8.jpg'),(1331,1347,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:725;s:4:\"file\";s:23:\"2017/05/blog-post-8.jpg\";s:8:\"filesize\";i:113528;s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:23:\"blog-post-8-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20949;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:23:\"blog-post-8-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4184;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:23:\"blog-post-8-600x335.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:335;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37485;}s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"blog-post-8-300x167.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12574;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"blog-post-8-1024x571.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:571;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88822;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"blog-post-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:7281;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"blog-post-8-768x428.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:428;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56156;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:23:\"blog-post-8-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53529;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:23:\"blog-post-8-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23132;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:24:\"blog-post-8-1100x550.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89637;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:23:\"blog-post-8-550x725.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:725;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64672;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:24:\"blog-post-8-1100x725.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:725;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:128603;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1332,1799,'_wp_attached_file','2017/06/h7-slide-3-background.jpg'),(1333,1799,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1297;s:6:\"height\";i:696;s:4:\"file\";s:33:\"2017/06/h7-slide-3-background.jpg\";s:8:\"filesize\";i:64865;s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:33:\"h7-slide-3-background-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15319;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:33:\"h7-slide-3-background-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3639;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:33:\"h7-slide-3-background-600x322.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:322;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27044;}s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"h7-slide-3-background-300x161.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10233;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"h7-slide-3-background-1024x550.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59981;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"h7-slide-3-background-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5963;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"h7-slide-3-background-768x412.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:412;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38955;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:33:\"h7-slide-3-background-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37935;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:33:\"h7-slide-3-background-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16836;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:34:\"h7-slide-3-background-1100x550.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62939;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:33:\"h7-slide-3-background-550x696.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:696;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47061;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:34:\"h7-slide-3-background-1100x696.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:696;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:80519;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1334,1347,'_wp_attachment_image_alt','g'),(1335,1799,'_wp_attachment_image_alt','a'),(1336,58,'_wp_attached_file','2017/05/instructor-img-7.jpg'),(1337,58,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:28:\"2017/05/instructor-img-7.jpg\";s:8:\"filesize\";i:70768;s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:28:\"instructor-img-7-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16594;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:28:\"instructor-img-7-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3151;}s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"instructor-img-7-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16594;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"instructor-img-7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5358;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:28:\"instructor-img-7-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44333;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:28:\"instructor-img-7-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17022;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:28:\"instructor-img-7-600x550.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53586;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:28:\"instructor-img-7-550x600.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56002;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1338,58,'_wp_attachment_image_alt','a'),(1339,1358,'_wp_attached_file','2017/05/blog-post-9.jpg'),(1340,1358,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:725;s:4:\"file\";s:23:\"2017/05/blog-post-9.jpg\";s:8:\"filesize\";i:116900;s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:23:\"blog-post-9-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26269;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:23:\"blog-post-9-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4980;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:23:\"blog-post-9-600x335.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:335;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49157;}s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"blog-post-9-300x167.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17108;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"blog-post-9-1024x571.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:571;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:111726;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"blog-post-9-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8943;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"blog-post-9-768x428.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:428;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72111;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:23:\"blog-post-9-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68111;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:23:\"blog-post-9-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28727;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:24:\"blog-post-9-1100x550.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113621;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:23:\"blog-post-9-550x725.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:725;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81469;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:24:\"blog-post-9-1100x725.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:725;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:152705;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1341,1803,'_wp_attached_file','2017/06/blog-sidebar-contact-form-backround-horizontal.jpg'),(1342,1803,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:530;s:4:\"file\";s:58:\"2017/06/blog-sidebar-contact-form-backround-horizontal.jpg\";s:8:\"filesize\";i:95519;s:5:\"sizes\";a:9:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:58:\"blog-sidebar-contact-form-backround-horizontal-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11795;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:58:\"blog-sidebar-contact-form-backround-horizontal-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2094;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:58:\"blog-sidebar-contact-form-backround-horizontal-600x398.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:398;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31696;}s:6:\"medium\";a:5:{s:4:\"file\";s:58:\"blog-sidebar-contact-form-backround-horizontal-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8902;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:58:\"blog-sidebar-contact-form-backround-horizontal-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3649;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:58:\"blog-sidebar-contact-form-backround-horizontal-768x509.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:509;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49655;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:58:\"blog-sidebar-contact-form-backround-horizontal-550x530.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:530;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37926;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:58:\"blog-sidebar-contact-form-backround-horizontal-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13436;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:58:\"blog-sidebar-contact-form-backround-horizontal-550x530.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:530;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37926;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1343,1803,'_wp_attachment_image_alt','blog-sidebar-contact-form-backround-horizontal'),(1344,1358,'_wp_attachment_image_alt','n'),(1345,60,'_wp_attached_file','2017/05/instructor-img-8.jpg'),(1346,60,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:28:\"2017/05/instructor-img-8.jpg\";s:8:\"filesize\";i:78765;s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:28:\"instructor-img-8-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19310;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:28:\"instructor-img-8-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3380;}s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"instructor-img-8-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19310;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"instructor-img-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:5915;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:28:\"instructor-img-8-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51729;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:28:\"instructor-img-8-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20285;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:28:\"instructor-img-8-600x550.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60676;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:28:\"instructor-img-8-550x600.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59703;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1347,60,'_wp_attachment_image_alt','a'),(1348,1359,'_wp_attached_file','2017/05/blog-post-10.jpg'),(1349,1359,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:725;s:4:\"file\";s:24:\"2017/05/blog-post-10.jpg\";s:8:\"filesize\";i:110135;s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:24:\"blog-post-10-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18686;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:24:\"blog-post-10-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3657;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:24:\"blog-post-10-600x335.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:335;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37801;}s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"blog-post-10-300x167.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12281;}s:5:\"large\";a:5:{s:4:\"file\";s:25:\"blog-post-10-1024x571.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:571;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96702;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"blog-post-10-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6254;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"blog-post-10-768x428.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:428;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58595;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:24:\"blog-post-10-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54374;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:24:\"blog-post-10-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21074;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:25:\"blog-post-10-1100x550.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:99762;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:24:\"blog-post-10-550x725.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:725;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73054;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:25:\"blog-post-10-1100x725.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:725;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:136339;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1350,1359,'_wp_attachment_image_alt','n'),(1351,1816,'_wp_attached_file','2017/06/product-9.jpg'),(1352,1816,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:722;s:4:\"file\";s:21:\"2017/06/product-9.jpg\";s:8:\"filesize\";i:60691;s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:21:\"product-9-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11600;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:21:\"product-9-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2513;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:21:\"product-9-600x542.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29195;}s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"product-9-300x271.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9919;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"product-9-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4248;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"product-9-768x693.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:693;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41882;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:21:\"product-9-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29278;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:21:\"product-9-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12326;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:21:\"product-9-800x550.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46653;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:21:\"product-9-550x722.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:722;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46749;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1353,68,'_wp_attached_file','2017/05/instructor-img-9.jpg'),(1354,68,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:28:\"2017/05/instructor-img-9.jpg\";s:8:\"filesize\";i:52340;s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:28:\"instructor-img-9-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13113;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:28:\"instructor-img-9-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2619;}s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"instructor-img-9-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13113;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"instructor-img-9-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4278;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:28:\"instructor-img-9-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34943;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:28:\"instructor-img-9-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13494;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:28:\"instructor-img-9-600x550.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40537;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:28:\"instructor-img-9-550x600.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42413;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1355,68,'_wp_attachment_image_alt','a'),(1356,1816,'_wp_attachment_image_alt','a'),(1357,1817,'_wp_attached_file','2017/06/product-9-gallery-1.jpg'),(1358,1817,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:542;s:4:\"file\";s:31:\"2017/06/product-9-gallery-1.jpg\";s:8:\"filesize\";i:35810;s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:31:\"product-9-gallery-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10569;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:31:\"product-9-gallery-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2345;}s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"product-9-gallery-1-300x271.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9508;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"product-9-gallery-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:3867;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:31:\"product-9-gallery-1-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28381;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:31:\"product-9-gallery-1-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11559;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:31:\"product-9-gallery-1-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28381;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1359,1360,'_wp_attached_file','2017/05/blog-post-11.jpg'),(1360,1360,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:725;s:4:\"file\";s:24:\"2017/05/blog-post-11.jpg\";s:8:\"filesize\";i:125839;s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:24:\"blog-post-11-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20132;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:24:\"blog-post-11-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3297;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:24:\"blog-post-11-600x335.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:335;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41611;}s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"blog-post-11-300x167.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11561;}s:5:\"large\";a:5:{s:4:\"file\";s:25:\"blog-post-11-1024x571.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:571;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:111556;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"blog-post-11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6001;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"blog-post-11-768x428.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:428;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67049;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:24:\"blog-post-11-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58948;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:24:\"blog-post-11-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21577;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:25:\"blog-post-11-1100x550.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:115519;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:24:\"blog-post-11-550x725.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:725;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78280;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:25:\"blog-post-11-1100x725.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:725;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:153394;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1361,1817,'_wp_attachment_image_alt','a'),(1362,70,'_wp_attached_file','2017/05/course-1-f-img.jpg'),(1363,70,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:639;s:4:\"file\";s:26:\"2017/05/course-1-f-img.jpg\";s:8:\"filesize\";i:81189;s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"course-1-f-img-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15265;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"course-1-f-img-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3658;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:26:\"course-1-f-img-600x383.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:383;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31558;}s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"course-1-f-img-300x192.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11597;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"course-1-f-img-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5904;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"course-1-f-img-768x491.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:491;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45968;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:26:\"course-1-f-img-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37780;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:26:\"course-1-f-img-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16692;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:27:\"course-1-f-img-1000x550.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64269;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:26:\"course-1-f-img-550x639.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:639;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43923;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1364,1360,'_wp_attachment_image_alt','n'),(1365,70,'_wp_attachment_image_alt','a'),(1366,1818,'_wp_attached_file','2017/06/product-9-gallery-2.jpg'),(1367,1818,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:542;s:4:\"file\";s:31:\"2017/06/product-9-gallery-2.jpg\";s:8:\"filesize\";i:30388;s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:31:\"product-9-gallery-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10029;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:31:\"product-9-gallery-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2478;}s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"product-9-gallery-2-300x271.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8993;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"product-9-gallery-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:4098;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:31:\"product-9-gallery-2-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23641;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:31:\"product-9-gallery-2-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10649;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:31:\"product-9-gallery-2-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23641;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1368,1818,'_wp_attachment_image_alt','a'),(1369,76,'_wp_attached_file','2017/05/logo-default.png'),(1370,76,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:332;s:6:\"height\";i:64;s:4:\"file\";s:24:\"2017/05/logo-default.png\";s:8:\"filesize\";i:1895;s:5:\"sizes\";a:4:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:23:\"logo-default-300x64.png\";s:5:\"width\";i:300;s:6:\"height\";i:64;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3266;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:23:\"logo-default-100x64.png\";s:5:\"width\";i:100;s:6:\"height\";i:64;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1472;}s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"logo-default-300x58.png\";s:5:\"width\";i:300;s:6:\"height\";i:58;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5825;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"logo-default-150x64.png\";s:5:\"width\";i:150;s:6:\"height\";i:64;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2025;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1371,76,'_wp_attachment_image_alt','a'),(1372,76,'_mkd-like','0'),(1373,1362,'_wp_attached_file','2017/05/blog-post-13.jpg'),(1374,1362,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:725;s:4:\"file\";s:24:\"2017/05/blog-post-13.jpg\";s:8:\"filesize\";i:105743;s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:24:\"blog-post-13-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20769;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:24:\"blog-post-13-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3914;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:24:\"blog-post-13-600x335.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:335;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36561;}s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"blog-post-13-300x167.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11457;}s:5:\"large\";a:5:{s:4:\"file\";s:25:\"blog-post-13-1024x571.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:571;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:91267;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"blog-post-13-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6836;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"blog-post-13-768x428.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:428;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56277;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:24:\"blog-post-13-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58541;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:24:\"blog-post-13-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22274;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:25:\"blog-post-13-1100x550.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:87968;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:24:\"blog-post-13-550x725.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:725;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77019;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:25:\"blog-post-13-1100x725.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:725;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:136554;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1375,1819,'_wp_attached_file','2017/06/product-9-gallery-3.jpg'),(1376,1819,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:542;s:4:\"file\";s:31:\"2017/06/product-9-gallery-3.jpg\";s:8:\"filesize\";i:38718;s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:31:\"product-9-gallery-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11738;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:31:\"product-9-gallery-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2535;}s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"product-9-gallery-3-300x271.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10460;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"product-9-gallery-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4337;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:31:\"product-9-gallery-3-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30717;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:31:\"product-9-gallery-3-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12471;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:31:\"product-9-gallery-3-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30717;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1377,1819,'_wp_attachment_image_alt','a'),(1378,1362,'_wp_attachment_image_alt','n'),(1379,95,'_wp_attached_file','2017/05/h7-img-2.jpg'),(1380,95,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:464;s:4:\"file\";s:20:\"2017/05/h7-img-2.jpg\";s:8:\"filesize\";i:82883;s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:20:\"h7-img-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23645;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:20:\"h7-img-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2955;}s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"h7-img-2-300x232.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:232;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19609;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"h7-img-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:5676;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:20:\"h7-img-2-550x464.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59195;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:20:\"h7-img-2-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24255;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:20:\"h7-img-2-550x464.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59195;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1381,95,'_wp_attachment_image_alt','a'),(1382,1827,'_wp_attached_file','2017/06/about-us-img.png'),(1383,1827,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:706;s:6:\"height\";i:677;s:4:\"file\";s:24:\"2017/06/about-us-img.png\";s:8:\"filesize\";i:148708;s:5:\"sizes\";a:9:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:24:\"about-us-img-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:158344;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:24:\"about-us-img-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21504;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:24:\"about-us-img-600x575.png\";s:5:\"width\";i:600;s:6:\"height\";i:575;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:527444;}s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"about-us-img-300x288.png\";s:5:\"width\";i:300;s:6:\"height\";i:288;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:147359;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"about-us-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:44372;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:24:\"about-us-img-550x550.png\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:484758;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:24:\"about-us-img-350x282.png\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:175259;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:24:\"about-us-img-706x550.png\";s:5:\"width\";i:706;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:388561;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:24:\"about-us-img-550x677.png\";s:5:\"width\";i:550;s:6:\"height\";i:677;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:434832;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1384,1827,'_wp_attachment_image_alt','a'),(1385,1363,'_wp_attached_file','2017/05/blog-post-14.jpg'),(1386,1363,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:725;s:4:\"file\";s:24:\"2017/05/blog-post-14.jpg\";s:8:\"filesize\";i:108205;s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:24:\"blog-post-14-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19696;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:24:\"blog-post-14-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4272;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:24:\"blog-post-14-600x335.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:335;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36358;}s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"blog-post-14-300x167.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13360;}s:5:\"large\";a:5:{s:4:\"file\";s:25:\"blog-post-14-1024x571.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:571;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:80548;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"blog-post-14-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7270;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"blog-post-14-768x428.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:428;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52493;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:24:\"blog-post-14-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48326;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:24:\"blog-post-14-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21763;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:25:\"blog-post-14-1100x550.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81416;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:24:\"blog-post-14-550x725.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:725;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59166;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:25:\"blog-post-14-1100x725.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:725;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:111087;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1387,96,'_wp_attached_file','2017/05/h7-img-3.jpg'),(1388,96,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:464;s:4:\"file\";s:20:\"2017/05/h7-img-3.jpg\";s:8:\"filesize\";i:63541;s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:20:\"h7-img-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15854;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:20:\"h7-img-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2706;}s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"h7-img-3-300x232.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:232;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13187;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"h7-img-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4547;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:20:\"h7-img-3-550x464.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49270;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:20:\"h7-img-3-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16829;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:20:\"h7-img-3-550x464.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49270;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1389,96,'_wp_attachment_image_alt','a'),(1390,1363,'_wp_attachment_image_alt','n'),(1391,1866,'_wp_attached_file','2017/06/product-7-gallery-1.jpg'),(1392,1866,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:542;s:4:\"file\";s:31:\"2017/06/product-7-gallery-1.jpg\";s:8:\"filesize\";i:33089;s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:31:\"product-7-gallery-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9694;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:31:\"product-7-gallery-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2286;}s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"product-7-gallery-1-300x271.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8921;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"product-7-gallery-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:3544;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:31:\"product-7-gallery-1-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26665;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:31:\"product-7-gallery-1-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9570;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:31:\"product-7-gallery-1-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26665;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1393,1866,'_wp_attachment_image_alt','a'),(1394,97,'_wp_attached_file','2017/05/h7-img-4.jpg'),(1395,97,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:464;s:4:\"file\";s:20:\"2017/05/h7-img-4.jpg\";s:8:\"filesize\";i:68501;s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:20:\"h7-img-4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16468;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:20:\"h7-img-4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2198;}s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"h7-img-4-300x232.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:232;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14093;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"h7-img-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3914;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:20:\"h7-img-4-550x464.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53343;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:20:\"h7-img-4-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18893;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:20:\"h7-img-4-550x464.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53343;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1396,97,'_wp_attachment_image_alt','a'),(1397,1412,'_wp_attached_file','2017/05/h11-background-img.jpg'),(1398,1412,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1100;s:4:\"file\";s:30:\"2017/05/h11-background-img.jpg\";s:8:\"filesize\";i:83639;s:5:\"sizes\";a:13:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:30:\"h11-background-img-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3889;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:30:\"h11-background-img-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1015;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:30:\"h11-background-img-600x344.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:344;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7889;}s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"h11-background-img-300x172.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:172;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2495;}s:5:\"large\";a:5:{s:4:\"file\";s:31:\"h11-background-img-1024x587.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:587;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18182;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"h11-background-img-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1492;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"h11-background-img-768x440.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:440;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11462;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:31:\"h11-background-img-1536x880.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:880;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33253;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:30:\"h11-background-img-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9762;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:30:\"h11-background-img-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4211;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:31:\"h11-background-img-1100x550.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17760;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:31:\"h11-background-img-550x1100.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:1100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14727;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:32:\"h11-background-img-1100x1100.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:1100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28195;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1399,1867,'_wp_attached_file','2017/06/product-7-gallery-2.jpg'),(1400,1867,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:542;s:4:\"file\";s:31:\"2017/06/product-7-gallery-2.jpg\";s:8:\"filesize\";i:30065;s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:31:\"product-7-gallery-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9056;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:31:\"product-7-gallery-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2216;}s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"product-7-gallery-2-300x271.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8459;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"product-7-gallery-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:3426;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:31:\"product-7-gallery-2-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23809;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:31:\"product-7-gallery-2-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9352;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:31:\"product-7-gallery-2-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23809;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1401,1867,'_wp_attachment_image_alt','a'),(1402,1412,'_wp_attachment_image_alt','a'),(1403,98,'_wp_attached_file','2017/05/h7-img-5.jpg'),(1404,98,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:464;s:4:\"file\";s:20:\"2017/05/h7-img-5.jpg\";s:8:\"filesize\";i:86944;s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:20:\"h7-img-5-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20894;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:20:\"h7-img-5-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3246;}s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"h7-img-5-300x232.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:232;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18237;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"h7-img-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5650;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:20:\"h7-img-5-550x464.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63782;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:20:\"h7-img-5-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22501;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:20:\"h7-img-5-550x464.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63782;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1405,98,'_wp_attachment_image_alt','a'),(1406,1871,'_wp_attached_file','2017/06/product-7.jpg'),(1407,1871,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:722;s:4:\"file\";s:21:\"2017/06/product-7.jpg\";s:8:\"filesize\";i:92221;s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:21:\"product-7-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10256;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:21:\"product-7-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2342;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:21:\"product-7-600x542.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27495;}s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"product-7-300x271.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9080;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"product-7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3780;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"product-7-768x693.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:693;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39649;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:21:\"product-7-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27204;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:21:\"product-7-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11428;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:21:\"product-7-800x550.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44655;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:21:\"product-7-550x722.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:722;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43918;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1408,1871,'_wp_attachment_image_alt','a'),(1409,100,'_wp_attached_file','2017/05/course-sidebar-certificate-img.jpg'),(1410,100,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:566;s:4:\"file\";s:42:\"2017/05/course-sidebar-certificate-img.jpg\";s:8:\"filesize\";i:92876;s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:42:\"course-sidebar-certificate-img-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15589;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:42:\"course-sidebar-certificate-img-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2656;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:42:\"course-sidebar-certificate-img-600x425.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:425;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41222;}s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"course-sidebar-certificate-img-300x212.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10901;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"course-sidebar-certificate-img-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4474;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:42:\"course-sidebar-certificate-img-768x543.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:543;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65079;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:42:\"course-sidebar-certificate-img-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48356;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:42:\"course-sidebar-certificate-img-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16192;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:42:\"course-sidebar-certificate-img-800x550.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78091;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:42:\"course-sidebar-certificate-img-550x566.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:566;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55424;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1411,1459,'_wp_attached_file','2017/05/h7-video-background-img.jpg'),(1412,1459,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:689;s:4:\"file\";s:35:\"2017/05/h7-video-background-img.jpg\";s:8:\"filesize\";i:102086;s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:35:\"h7-video-background-img-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19216;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:35:\"h7-video-background-img-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3901;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:35:\"h7-video-background-img-600x404.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:404;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44317;}s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"h7-video-background-img-300x202.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15523;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"h7-video-background-img-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6703;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"h7-video-background-img-768x517.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:517;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65279;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:35:\"h7-video-background-img-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48758;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:35:\"h7-video-background-img-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21580;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:36:\"h7-video-background-img-1024x550.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96890;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:35:\"h7-video-background-img-550x689.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:689;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56493;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1413,100,'_wp_attachment_image_alt','a'),(1414,1459,'_wp_attachment_image_alt','a'),(1415,1873,'_wp_attached_file','2017/06/product-7-gallery-3.jpg'),(1416,1873,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:542;s:4:\"file\";s:31:\"2017/06/product-7-gallery-3.jpg\";s:8:\"filesize\";i:95383;s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:31:\"product-7-gallery-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18537;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:31:\"product-7-gallery-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3557;}s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"product-7-gallery-3-300x271.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16497;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"product-7-gallery-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6481;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:31:\"product-7-gallery-3-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52258;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:31:\"product-7-gallery-3-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18968;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:31:\"product-7-gallery-3-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52258;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1417,1873,'_wp_attachment_image_alt','a'),(1418,121,'_wp_attached_file','2017/05/footer-img-1.png'),(1419,121,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:291;s:4:\"file\";s:24:\"2017/05/footer-img-1.png\";s:8:\"filesize\";i:34930;s:5:\"sizes\";a:5:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:24:\"footer-img-1-300x291.png\";s:5:\"width\";i:300;s:6:\"height\";i:291;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25129;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:24:\"footer-img-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6129;}s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"footer-img-1-300x175.png\";s:5:\"width\";i:300;s:6:\"height\";i:175;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19907;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"footer-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:10860;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:24:\"footer-img-1-350x282.png\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33255;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1420,121,'_wp_attachment_image_alt','a'),(1421,1465,'_wp_attached_file','2017/05/h7-img-5-1.jpg'),(1422,1465,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:464;s:4:\"file\";s:22:\"2017/05/h7-img-5-1.jpg\";s:8:\"filesize\";i:86944;s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:22:\"h7-img-5-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20894;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:22:\"h7-img-5-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3246;}s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"h7-img-5-1-300x232.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:232;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18237;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"h7-img-5-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:5650;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:22:\"h7-img-5-1-550x464.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63782;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:22:\"h7-img-5-1-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22501;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:22:\"h7-img-5-1-550x464.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63782;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1423,1465,'_wp_attachment_image_alt','a'),(1424,1882,'_wp_attached_file','2017/06/product-2.jpg'),(1425,1882,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:722;s:4:\"file\";s:21:\"2017/06/product-2.jpg\";s:8:\"filesize\";i:105171;s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:21:\"product-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8588;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:21:\"product-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2274;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:21:\"product-2-600x542.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21598;}s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"product-2-300x271.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7689;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"product-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:3323;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"product-2-768x693.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:693;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31689;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:21:\"product-2-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21548;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:21:\"product-2-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9365;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:21:\"product-2-800x550.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35186;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:21:\"product-2-550x722.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:722;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34707;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1426,1882,'_wp_attachment_image_alt','a'),(1427,125,'_wp_attached_file','2017/05/footer-logo-1.png'),(1428,125,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:274;s:6:\"height\";i:53;s:4:\"file\";s:25:\"2017/05/footer-logo-1.png\";s:8:\"filesize\";i:3205;s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:24:\"footer-logo-1-100x53.png\";s:5:\"width\";i:100;s:6:\"height\";i:53;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1183;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"footer-logo-1-150x53.png\";s:5:\"width\";i:150;s:6:\"height\";i:53;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1617;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1429,125,'_wp_attachment_image_alt','a'),(1430,1466,'_wp_attached_file','2017/05/h7-img-2-1.jpg'),(1431,1466,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:464;s:4:\"file\";s:22:\"2017/05/h7-img-2-1.jpg\";s:8:\"filesize\";i:82883;s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:22:\"h7-img-2-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23645;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:22:\"h7-img-2-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2955;}s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"h7-img-2-1-300x232.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:232;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19609;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"h7-img-2-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5676;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:22:\"h7-img-2-1-550x464.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59195;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:22:\"h7-img-2-1-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24255;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:22:\"h7-img-2-1-550x464.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59195;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1432,1466,'_wp_attachment_image_alt','a'),(1433,1883,'_wp_attached_file','2017/06/product-2-gallery-1.jpg'),(1434,1883,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:542;s:4:\"file\";s:31:\"2017/06/product-2-gallery-1.jpg\";s:8:\"filesize\";i:32031;s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:31:\"product-2-gallery-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10074;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:31:\"product-2-gallery-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2543;}s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"product-2-gallery-1-300x271.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8813;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"product-2-gallery-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:3915;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:31:\"product-2-gallery-1-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26799;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:31:\"product-2-gallery-1-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9585;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:31:\"product-2-gallery-1-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26799;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1435,1883,'_wp_attachment_image_alt','a'),(1436,161,'_wp_attached_file','2017/05/h1-parallax-img-1.jpg'),(1437,161,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1100;s:4:\"file\";s:29:\"2017/05/h1-parallax-img-1.jpg\";s:8:\"filesize\";i:77175;s:5:\"sizes\";a:13:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:29:\"h1-parallax-img-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5120;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:29:\"h1-parallax-img-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1341;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:29:\"h1-parallax-img-1-600x344.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:344;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9964;}s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"h1-parallax-img-1-300x172.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:172;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3305;}s:5:\"large\";a:5:{s:4:\"file\";s:30:\"h1-parallax-img-1-1024x587.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:587;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25521;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"h1-parallax-img-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:1982;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"h1-parallax-img-1-768x440.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:440;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15233;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:30:\"h1-parallax-img-1-1536x880.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:880;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52608;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:29:\"h1-parallax-img-1-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14499;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:29:\"h1-parallax-img-1-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5479;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:30:\"h1-parallax-img-1-1100x550.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26322;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:30:\"h1-parallax-img-1-550x1100.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:1100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27314;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:31:\"h1-parallax-img-1-1100x1100.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:1100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49472;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1438,1467,'_wp_attached_file','2017/05/h7-img-3-1.jpg'),(1439,1467,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:464;s:4:\"file\";s:22:\"2017/05/h7-img-3-1.jpg\";s:8:\"filesize\";i:63541;s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:22:\"h7-img-3-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15854;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:22:\"h7-img-3-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2706;}s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"h7-img-3-1-300x232.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:232;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13187;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"h7-img-3-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:4547;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:22:\"h7-img-3-1-550x464.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49270;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:22:\"h7-img-3-1-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16829;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:22:\"h7-img-3-1-550x464.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49270;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1440,1467,'_wp_attachment_image_alt','a'),(1441,161,'_wp_attachment_image_alt','a'),(1442,1884,'_wp_attached_file','2017/06/product-2-gallery-2.jpg'),(1443,1884,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:542;s:4:\"file\";s:31:\"2017/06/product-2-gallery-2.jpg\";s:8:\"filesize\";i:95394;s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:31:\"product-2-gallery-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12448;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:31:\"product-2-gallery-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2926;}s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"product-2-gallery-2-300x271.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11806;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"product-2-gallery-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:4746;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:31:\"product-2-gallery-2-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35330;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:31:\"product-2-gallery-2-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13268;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:31:\"product-2-gallery-2-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35330;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1444,1884,'_wp_attachment_image_alt','a'),(1445,1468,'_wp_attached_file','2017/05/h7-img-4-1.jpg'),(1446,1468,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:464;s:4:\"file\";s:22:\"2017/05/h7-img-4-1.jpg\";s:8:\"filesize\";i:68501;s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:22:\"h7-img-4-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16468;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:22:\"h7-img-4-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2198;}s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"h7-img-4-1-300x232.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:232;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14093;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"h7-img-4-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:3914;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:22:\"h7-img-4-1-550x464.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53343;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:22:\"h7-img-4-1-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18893;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:22:\"h7-img-4-1-550x464.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53343;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1447,1885,'_wp_attached_file','2017/06/product-2-gallery-3.jpg'),(1448,1885,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:542;s:4:\"file\";s:31:\"2017/06/product-2-gallery-3.jpg\";s:8:\"filesize\";i:32782;s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:31:\"product-2-gallery-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9005;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:31:\"product-2-gallery-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2245;}s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"product-2-gallery-3-300x271.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9153;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"product-2-gallery-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3461;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:31:\"product-2-gallery-3-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24409;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:31:\"product-2-gallery-3-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10271;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:31:\"product-2-gallery-3-550x542.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24409;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1449,1468,'_wp_attachment_image_alt','a'),(1450,1885,'_wp_attachment_image_alt','a'),(1451,182,'_wp_attached_file','2017/05/h1-img-6.png'),(1452,182,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:550;s:6:\"height\";i:550;s:4:\"file\";s:20:\"2017/05/h1-img-6.png\";s:8:\"filesize\";i:25029;s:5:\"sizes\";a:5:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:20:\"h1-img-6-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9687;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:20:\"h1-img-6-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2255;}s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"h1-img-6-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9687;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"h1-img-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:3623;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:20:\"h1-img-6-350x282.png\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9524;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1453,182,'_wp_attachment_image_alt','a'),(1454,1487,'_wp_attached_file','2017/05/blog-post-15.jpg'),(1455,1487,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:725;s:4:\"file\";s:24:\"2017/05/blog-post-15.jpg\";s:8:\"filesize\";i:139955;s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:24:\"blog-post-15-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25247;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:24:\"blog-post-15-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3848;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:24:\"blog-post-15-600x335.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:335;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55856;}s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"blog-post-15-300x167.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15382;}s:5:\"large\";a:5:{s:4:\"file\";s:25:\"blog-post-15-1024x571.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:571;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:145341;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"blog-post-15-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7118;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"blog-post-15-768x428.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:428;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:87994;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:24:\"blog-post-15-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75461;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:24:\"blog-post-15-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28237;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:25:\"blog-post-15-1100x550.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:150012;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:24:\"blog-post-15-550x725.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:725;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96720;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:25:\"blog-post-15-1100x725.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:725;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:206582;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1456,183,'_wp_attached_file','2017/05/h1-img-7.jpg'),(1457,183,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:550;s:6:\"height\";i:550;s:4:\"file\";s:20:\"2017/05/h1-img-7.jpg\";s:8:\"filesize\";i:88402;s:5:\"sizes\";a:5:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:20:\"h1-img-7-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22670;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:20:\"h1-img-7-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3794;}s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"h1-img-7-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22670;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"h1-img-7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7007;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:20:\"h1-img-7-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23894;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1458,183,'_wp_attachment_image_alt','a'),(1459,1487,'_wp_attachment_image_alt','v'),(1460,184,'_wp_attached_file','2017/05/h1-img-1.jpg'),(1461,184,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:550;s:6:\"height\";i:550;s:4:\"file\";s:20:\"2017/05/h1-img-1.jpg\";s:8:\"filesize\";i:92273;s:5:\"sizes\";a:5:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:20:\"h1-img-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26508;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:20:\"h1-img-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4792;}s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"h1-img-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26508;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"h1-img-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:8772;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:20:\"h1-img-1-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28106;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1462,184,'_wp_attachment_image_alt','a'),(1463,1488,'_wp_attached_file','2017/05/blog-post-16.jpg'),(1464,1488,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:725;s:4:\"file\";s:24:\"2017/05/blog-post-16.jpg\";s:8:\"filesize\";i:117008;s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:24:\"blog-post-16-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23624;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:24:\"blog-post-16-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4409;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:24:\"blog-post-16-600x335.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:335;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53912;}s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"blog-post-16-300x167.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16211;}s:5:\"large\";a:5:{s:4:\"file\";s:25:\"blog-post-16-1024x571.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:571;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:132065;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"blog-post-16-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7673;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"blog-post-16-768x428.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:428;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:82385;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:24:\"blog-post-16-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63301;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:24:\"blog-post-16-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26973;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:25:\"blog-post-16-1100x550.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:137535;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:24:\"blog-post-16-550x725.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:725;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74557;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:25:\"blog-post-16-1100x725.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:725;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:171834;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1465,188,'_wp_attached_file','2017/05/h1-img-5.jpg'),(1466,188,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:550;s:6:\"height\";i:550;s:4:\"file\";s:20:\"2017/05/h1-img-5.jpg\";s:8:\"filesize\";i:82245;s:5:\"sizes\";a:5:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:20:\"h1-img-5-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18482;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:20:\"h1-img-5-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3127;}s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"h1-img-5-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18482;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"h1-img-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5440;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:20:\"h1-img-5-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20304;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1467,188,'_wp_attachment_image_alt','a'),(1468,1488,'_wp_attachment_image_alt','v'),(1469,1490,'_wp_attached_file','2017/05/blog-post-18.jpg'),(1470,1490,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:725;s:4:\"file\";s:24:\"2017/05/blog-post-18.jpg\";s:8:\"filesize\";i:119030;s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:24:\"blog-post-18-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18593;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:24:\"blog-post-18-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3430;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:24:\"blog-post-18-600x335.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:335;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27626;}s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"blog-post-18-300x167.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9212;}s:5:\"large\";a:5:{s:4:\"file\";s:25:\"blog-post-18-1024x571.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:571;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65655;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"blog-post-18-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6108;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"blog-post-18-768x428.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:428;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41169;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:24:\"blog-post-18-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50956;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:24:\"blog-post-18-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18566;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:25:\"blog-post-18-1100x550.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71463;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:24:\"blog-post-18-550x725.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:725;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78159;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:25:\"blog-post-18-1100x725.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:725;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:100767;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1471,1490,'_wp_attachment_image_alt','v'),(1472,1505,'_wp_attachment_image_alt','a'),(1473,1506,'_wp_attachment_image_alt','a'),(1474,1508,'_wp_attachment_image_alt','a'),(1475,1513,'_wp_attachment_image_alt','v'),(1476,1514,'_wp_attachment_image_alt','v'),(1477,1515,'_wp_attachment_image_alt','v'),(1478,1518,'_wp_attachment_image_alt','j'),(1479,1525,'_wp_attachment_image_alt','h'),(1480,1530,'_wp_attachment_image_alt','f'),(1481,1541,'_wp_attachment_image_alt','a'),(1482,1551,'_wp_attachment_image_alt','a'),(1483,196,'_wp_attached_file','2017/05/h1-img-2.jpg'),(1484,196,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1100;s:6:\"height\";i:1100;s:4:\"file\";s:20:\"2017/05/h1-img-2.jpg\";s:8:\"filesize\";i:78494;s:5:\"sizes\";a:11:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:20:\"h1-img-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9962;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:20:\"h1-img-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2389;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:20:\"h1-img-2-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27510;}s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"h1-img-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9962;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"h1-img-2-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60866;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"h1-img-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:3854;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"h1-img-2-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39484;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:20:\"h1-img-2-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24616;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:20:\"h1-img-2-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10872;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:21:\"h1-img-2-1100x550.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42184;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:21:\"h1-img-2-550x1100.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:1100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32278;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1485,196,'_wp_attachment_image_alt','a'),(1486,1555,'_wp_attached_file','2017/05/h5-client-1-h.png'),(1487,1555,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:260;s:6:\"height\";i:47;s:4:\"file\";s:25:\"2017/05/h5-client-1-h.png\";s:8:\"filesize\";i:6673;s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:24:\"h5-client-1-h-100x47.png\";s:5:\"width\";i:100;s:6:\"height\";i:47;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1602;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"h5-client-1-h-150x47.png\";s:5:\"width\";i:150;s:6:\"height\";i:47;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2211;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1488,1555,'_wp_attachment_image_alt','a'),(1489,1559,'_wp_attachment_image_alt','a'),(1490,197,'_wp_attached_file','2017/05/h1-img-3.jpg'),(1491,197,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:550;s:6:\"height\";i:550;s:4:\"file\";s:20:\"2017/05/h1-img-3.jpg\";s:8:\"filesize\";i:21391;s:5:\"sizes\";a:5:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:20:\"h1-img-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6782;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:20:\"h1-img-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1550;}s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"h1-img-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6782;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"h1-img-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2434;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:20:\"h1-img-3-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7369;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1492,197,'_wp_attachment_image_alt','a'),(1493,1560,'_wp_attached_file','2017/05/h5-client-4-h.png'),(1494,1560,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:260;s:6:\"height\";i:47;s:4:\"file\";s:25:\"2017/05/h5-client-4-h.png\";s:8:\"filesize\";i:6581;s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:24:\"h5-client-4-h-100x47.png\";s:5:\"width\";i:100;s:6:\"height\";i:47;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1313;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"h5-client-4-h-150x47.png\";s:5:\"width\";i:150;s:6:\"height\";i:47;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3804;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1495,1560,'_wp_attachment_image_alt','a'),(1496,1561,'_wp_attached_file','2017/05/h5-client-5-h.png'),(1497,1561,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:260;s:6:\"height\";i:47;s:4:\"file\";s:25:\"2017/05/h5-client-5-h.png\";s:8:\"filesize\";i:3058;s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:24:\"h5-client-5-h-100x47.png\";s:5:\"width\";i:100;s:6:\"height\";i:47;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1532;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"h5-client-5-h-150x47.png\";s:5:\"width\";i:150;s:6:\"height\";i:47;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2031;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1498,1561,'_wp_attachment_image_alt','a'),(1499,200,'_wp_attached_file','2017/05/course-2-f-img.jpg'),(1500,200,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:639;s:4:\"file\";s:26:\"2017/05/course-2-f-img.jpg\";s:8:\"filesize\";i:89538;s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"course-2-f-img-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23908;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"course-2-f-img-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4665;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:26:\"course-2-f-img-600x383.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:383;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47389;}s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"course-2-f-img-300x192.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16062;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"course-2-f-img-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8214;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"course-2-f-img-768x491.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:491;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69405;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:26:\"course-2-f-img-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61216;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:26:\"course-2-f-img-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25102;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:27:\"course-2-f-img-1000x550.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96659;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:26:\"course-2-f-img-550x639.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:639;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74202;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1501,200,'_wp_attachment_image_alt','a'),(1502,1563,'_wp_attached_file','2017/05/h5-client-2-h.png'),(1503,1563,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:260;s:6:\"height\";i:47;s:4:\"file\";s:25:\"2017/05/h5-client-2-h.png\";s:8:\"filesize\";i:2641;s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:24:\"h5-client-2-h-100x47.png\";s:5:\"width\";i:100;s:6:\"height\";i:47;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1284;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"h5-client-2-h-150x47.png\";s:5:\"width\";i:150;s:6:\"height\";i:47;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1877;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1504,1563,'_wp_attachment_image_alt','a'),(1505,1564,'_wp_attached_file','2017/05/h5-client-3-h.png'),(1506,1564,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:260;s:6:\"height\";i:47;s:4:\"file\";s:25:\"2017/05/h5-client-3-h.png\";s:8:\"filesize\";i:3258;s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:24:\"h5-client-3-h-100x47.png\";s:5:\"width\";i:100;s:6:\"height\";i:47;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1570;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"h5-client-3-h-150x47.png\";s:5:\"width\";i:150;s:6:\"height\";i:47;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2297;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1507,1564,'_wp_attachment_image_alt','a'),(1508,1566,'_wp_attachment_image_alt','a'),(1509,1577,'_wp_attachment_image_alt','a'),(1510,1583,'_wp_attachment_image_alt','a'),(1511,204,'_wp_attached_file','2017/05/h1-img-4.jpg'),(1512,204,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1100;s:6:\"height\";i:1100;s:4:\"file\";s:20:\"2017/05/h1-img-4.jpg\";s:8:\"filesize\";i:50248;s:5:\"sizes\";a:11:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:20:\"h1-img-4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5936;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:20:\"h1-img-4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1562;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:20:\"h1-img-4-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17467;}s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"h1-img-4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5936;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"h1-img-4-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42448;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"h1-img-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2382;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"h1-img-4-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26161;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:20:\"h1-img-4-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15422;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:20:\"h1-img-4-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6256;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:21:\"h1-img-4-1100x550.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27078;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:21:\"h1-img-4-550x1100.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:1100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26340;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1513,204,'_wp_attachment_image_alt','a'),(1514,211,'_wp_attached_file','2017/05/h1-parallax-img-2.jpg'),(1515,211,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1100;s:4:\"file\";s:29:\"2017/05/h1-parallax-img-2.jpg\";s:8:\"filesize\";i:95678;s:5:\"sizes\";a:13:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:29:\"h1-parallax-img-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5342;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:29:\"h1-parallax-img-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1308;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:29:\"h1-parallax-img-2-600x344.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:344;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12253;}s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"h1-parallax-img-2-300x172.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:172;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3638;}s:5:\"large\";a:5:{s:4:\"file\";s:30:\"h1-parallax-img-2-1024x587.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:587;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33152;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"h1-parallax-img-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:1955;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"h1-parallax-img-2-768x440.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:440;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19301;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:30:\"h1-parallax-img-2-1536x880.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:880;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68622;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:29:\"h1-parallax-img-2-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15692;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:29:\"h1-parallax-img-2-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6022;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:30:\"h1-parallax-img-2-1100x550.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34149;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:30:\"h1-parallax-img-2-550x1100.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:1100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23120;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:31:\"h1-parallax-img-2-1100x1100.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:1100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51541;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1516,211,'_wp_attachment_image_alt','a'),(1517,216,'_wp_attached_file','2017/05/h5-client-1.png'),(1518,216,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:260;s:6:\"height\";i:47;s:4:\"file\";s:23:\"2017/05/h5-client-1.png\";s:8:\"filesize\";i:6599;s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:22:\"h5-client-1-100x47.png\";s:5:\"width\";i:100;s:6:\"height\";i:47;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1548;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"h5-client-1-150x47.png\";s:5:\"width\";i:150;s:6:\"height\";i:47;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2136;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1519,216,'_wp_attachment_image_alt','a'),(1520,217,'_wp_attached_file','2017/05/h5-client-2.png'),(1521,217,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:260;s:6:\"height\";i:47;s:4:\"file\";s:23:\"2017/05/h5-client-2.png\";s:8:\"filesize\";i:2548;s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:22:\"h5-client-2-100x47.png\";s:5:\"width\";i:100;s:6:\"height\";i:47;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1267;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"h5-client-2-150x47.png\";s:5:\"width\";i:150;s:6:\"height\";i:47;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1832;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1522,217,'_wp_attachment_image_alt','a'),(1523,218,'_wp_attached_file','2017/05/h5-client-3.png'),(1524,218,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:260;s:6:\"height\";i:47;s:4:\"file\";s:23:\"2017/05/h5-client-3.png\";s:8:\"filesize\";i:3141;s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:22:\"h5-client-3-100x47.png\";s:5:\"width\";i:100;s:6:\"height\";i:47;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1526;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"h5-client-3-150x47.png\";s:5:\"width\";i:150;s:6:\"height\";i:47;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2224;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1525,218,'_wp_attachment_image_alt','a'),(1526,219,'_wp_attached_file','2017/05/h5-client-4.png'),(1527,219,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:260;s:6:\"height\";i:47;s:4:\"file\";s:23:\"2017/05/h5-client-4.png\";s:8:\"filesize\";i:6537;s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:22:\"h5-client-4-100x47.png\";s:5:\"width\";i:100;s:6:\"height\";i:47;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1293;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"h5-client-4-150x47.png\";s:5:\"width\";i:150;s:6:\"height\";i:47;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3792;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1528,219,'_wp_attachment_image_alt','q'),(1529,220,'_wp_attached_file','2017/05/h5-client-5.png'),(1530,220,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:260;s:6:\"height\";i:47;s:4:\"file\";s:23:\"2017/05/h5-client-5.png\";s:8:\"filesize\";i:2952;s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:22:\"h5-client-5-100x47.png\";s:5:\"width\";i:100;s:6:\"height\";i:47;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1399;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"h5-client-5-150x47.png\";s:5:\"width\";i:150;s:6:\"height\";i:47;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1960;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1531,220,'_wp_attachment_image_alt','a'),(1532,232,'_wp_attached_file','2017/05/course-3-f-img.jpg'),(1533,232,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:639;s:4:\"file\";s:26:\"2017/05/course-3-f-img.jpg\";s:8:\"filesize\";i:82951;s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"course-3-f-img-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18227;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"course-3-f-img-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3567;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:26:\"course-3-f-img-600x383.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:383;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36418;}s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"course-3-f-img-300x192.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12086;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"course-3-f-img-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6216;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"course-3-f-img-768x491.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:491;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54205;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:26:\"course-3-f-img-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47671;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:26:\"course-3-f-img-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19390;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:27:\"course-3-f-img-1000x550.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:80937;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:26:\"course-3-f-img-550x639.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:639;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58894;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1534,232,'_wp_attachment_image_alt','a'),(1535,271,'_wp_attached_file','2017/05/course-4-f-img.jpg'),(1536,271,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:639;s:4:\"file\";s:26:\"2017/05/course-4-f-img.jpg\";s:8:\"filesize\";i:97424;s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"course-4-f-img-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19025;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"course-4-f-img-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4089;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:26:\"course-4-f-img-600x383.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:383;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39090;}s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"course-4-f-img-300x192.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14098;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"course-4-f-img-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6860;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"course-4-f-img-768x491.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:491;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56857;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:26:\"course-4-f-img-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45881;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:26:\"course-4-f-img-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20521;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:27:\"course-4-f-img-1000x550.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75472;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:26:\"course-4-f-img-550x639.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:639;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51570;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1537,271,'_wp_attachment_image_alt','a'),(1540,4062,'mkdf_course_instructor_meta','110'),(1541,4062,'mkdf_course_duration_meta','3'),(1542,4062,'mkdf_course_duration_parameter_meta','weeks'),(1543,4062,'mkdf_course_retake_number_meta','3'),(1544,4062,'mkdf_course_featured_meta','no'),(1545,4062,'mkdf_course_passing_percentage_meta','60'),(1546,4062,'mkdf_course_free_meta','yes'),(1547,4062,'mkdf_course_price_meta','20'),(1548,4062,'mkdf_course_curriculum','a:2:{i:0;a:4:{s:12:\"section_name\";s:6:\"WEEK 1\";s:13:\"section_title\";s:18:\"Useful Expressions\";s:19:\"section_description\";s:176:\"Tools for Professional Approach: It’s not just about learning, it’s about having the confidence to use English in real life and upgrade your business communication skills. \";s:16:\"section_elements\";a:5:{i:0;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:3:\"265\";}i:1;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:2:\"19\";}i:2;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:2:\"27\";}i:3;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:2:\"35\";}i:4;a:2:{s:4:\"type\";s:4:\"quiz\";s:5:\"value\";s:3:\"243\";}}}i:1;a:4:{s:12:\"section_name\";s:6:\"WEEK 2\";s:13:\"section_title\";s:19:\"Diplomatic Language\";s:19:\"section_description\";s:185:\"Tools for Professional Approach - Step 2: It’s not just about learning, it’s about having the confidence to use English in real life and upgrade your business communication skills. \";s:16:\"section_elements\";a:4:{i:0;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:2:\"35\";}i:1;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:3:\"265\";}i:2;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:2:\"19\";}i:3;a:2:{s:4:\"type\";s:4:\"quiz\";s:5:\"value\";s:3:\"243\";}}}}'),(1549,4062,'mkdf_page_content_behind_header_meta','no'),(1550,4062,'mkdf_boxed_background_image_attachment_meta','fixed'),(1551,4062,'mkdf_disable_header_widget_logo_area_meta','no'),(1552,4062,'mkdf_disable_header_widget_menu_area_meta','no'),(1553,4062,'mkdf_disable_footer_meta','no'),(1555,4062,'_wpb_vc_js_status','true'),(1556,4062,'mkdf_course_maximum_students_meta','150'),(1557,4062,'mkdf_course_curriculum_desc_meta','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in. antas aliquam dolores mea no. No eos saepe vidisse ornatus, duo cu oratio sensibus. Erant perfecto mea ex, ei vis dolorem definitiones. Autem euripidis cu eum, sea posse. '),(1558,4062,'_oembed_3bccd48a7c6f571eedd99e115ef8ed9a','{{unknown}}'),(1559,4062,'mkdf_title_text_color_meta','#ffffff'),(1560,4062,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(1561,4062,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(1562,4062,'mkdf_title_area_background_image_behavior_meta','parallax'),(1563,4062,'mkdf_sidebar_layout_meta','sidebar-25-right'),(1564,4062,'_thumbnail_id','70'),(1566,4062,'mkdf_custom_sidebar_area_meta','sidebar-course'),(1567,4062,'mkdf_menu_area_in_grid_meta','yes'),(1568,4062,'mkdf_page_content_top_padding','64'),(1569,4062,'mkdf_page_content_top_padding_mobile','yes'),(1570,4062,'mkdf_course_users_attended','1'),(1571,4062,'mkdf_course_forum_meta','126'),(1572,4062,'show_footer_custom_widget_areas','no'),(1577,174,'mkdf_course_instructor_meta','109'),(1578,174,'mkdf_course_duration_meta','2'),(1579,174,'mkdf_course_duration_parameter_meta','weeks'),(1580,174,'mkdf_course_retake_number_meta','3'),(1581,174,'mkdf_course_featured_meta','no'),(1582,174,'mkdf_course_passing_percentage_meta','60'),(1583,174,'mkdf_course_free_meta','yes'),(1584,174,'mkdf_course_curriculum','a:3:{i:0;a:4:{s:12:\"section_name\";s:6:\"WEEK 1\";s:13:\"section_title\";s:16:\"Useful Web Tools\";s:19:\"section_description\";s:234:\"Starting Module: you’ll learn about different types of social software, how to think about physical collaboration and digital collaboration using the same framework, and what the challenges to success for collaborative software are.\";s:16:\"section_elements\";a:4:{i:0;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:3:\"176\";}i:1;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:3:\"195\";}i:2;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:3:\"203\";}i:3;a:2:{s:4:\"type\";s:4:\"quiz\";s:5:\"value\";s:3:\"190\";}}}i:1;a:4:{s:12:\"section_name\";s:6:\"WEEK 2\";s:13:\"section_title\";s:22:\"Programming Principles\";s:19:\"section_description\";s:234:\"Advanced Module: you’ll learn about different types of social software, how to think about physical collaboration and digital collaboration using the same framework, and what the challenges to success for collaborative software are.\";s:16:\"section_elements\";a:4:{i:0;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:3:\"237\";}i:1;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:3:\"203\";}i:2;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:3:\"176\";}i:3;a:2:{s:4:\"type\";s:4:\"quiz\";s:5:\"value\";s:3:\"190\";}}}i:2;a:4:{s:12:\"section_name\";s:6:\"WEEK 3\";s:13:\"section_title\";s:14:\"Specialization\";s:19:\"section_description\";s:238:\"Professional Module: you’ll learn about different types of social software, how to think about physical collaboration and digital collaboration using the same framework, and what the challenges to success for collaborative software are.\";s:16:\"section_elements\";a:3:{i:0;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:3:\"203\";}i:1;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:3:\"195\";}i:2;a:2:{s:4:\"type\";s:4:\"quiz\";s:5:\"value\";s:3:\"190\";}}}}'),(1585,174,'mkdf_page_content_behind_header_meta','no'),(1586,174,'mkdf_boxed_background_image_attachment_meta','fixed'),(1587,174,'mkdf_disable_header_widget_logo_area_meta','no'),(1588,174,'mkdf_disable_header_widget_menu_area_meta','no'),(1589,174,'mkdf_disable_footer_meta','no'),(1591,174,'_wpb_vc_js_status','true'),(1592,174,'mkdf_course_maximum_students_meta','200'),(1593,174,'mkdf_course_curriculum_desc_meta','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in. antas aliquam dolores mea no. No eos saepe vidisse ornatus, duo cu oratio sensibus. Erant perfecto mea ex, ei vis dolorem definitiones. Autem euripidis cu eum, sea posse. '),(1594,174,'_oembed_3bccd48a7c6f571eedd99e115ef8ed9a','{{unknown}}'),(1595,174,'mkdf_title_text_color_meta','#ffffff'),(1596,174,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(1597,174,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(1598,174,'mkdf_title_area_background_image_behavior_meta','parallax'),(1599,174,'mkdf_sidebar_layout_meta','sidebar-25-right'),(1601,174,'mkdf_custom_sidebar_area_meta','sidebar-course'),(1602,174,'mkdf_menu_area_in_grid_meta','yes'),(1603,174,'mkdf_page_content_top_padding','64'),(1604,174,'mkdf_page_content_top_padding_mobile','yes'),(1605,174,'mkdf_course_users_attended','1'),(1606,174,'mkdf_course_forum_meta','3269'),(1607,174,'_dp_original','18'),(1608,174,'_thumbnail_id','200'),(1609,174,'show_footer_custom_widget_areas','no'),(1614,229,'mkdf_course_instructor_meta','108'),(1615,229,'mkdf_course_duration_meta','2'),(1616,229,'mkdf_course_duration_parameter_meta','weeks'),(1617,229,'mkdf_course_retake_number_meta','3'),(1618,229,'mkdf_course_featured_meta','yes'),(1619,229,'mkdf_course_passing_percentage_meta','60'),(1620,229,'mkdf_course_free_meta','yes'),(1621,229,'mkdf_course_price_meta','20'),(1622,229,'mkdf_course_curriculum','a:2:{i:0;a:4:{s:12:\"section_name\";s:6:\"WEEK 1\";s:13:\"section_title\";s:15:\"Beginners Level\";s:19:\"section_description\";s:176:\"Tools for Professional Approach: It’s not just about learning, it’s about having the confidence to use Spanish in real life and upgrade your business communication skills. \";s:16:\"section_elements\";a:4:{i:0;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:3:\"248\";}i:1;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:2:\"27\";}i:2;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:2:\"35\";}i:3;a:2:{s:4:\"type\";s:4:\"quiz\";s:5:\"value\";s:3:\"243\";}}}i:1;a:4:{s:12:\"section_name\";s:6:\"WEEK 2\";s:13:\"section_title\";s:18:\"Intermediate Level\";s:19:\"section_description\";s:185:\"Tools for Professional Approach - Step 2: It’s not just about learning, it’s about having the confidence to use Spanish in real life and upgrade your business communication skills. \";s:16:\"section_elements\";a:5:{i:0;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:2:\"35\";}i:1;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:2:\"27\";}i:2;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:3:\"248\";}i:3;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:2:\"19\";}i:4;a:2:{s:4:\"type\";s:4:\"quiz\";s:5:\"value\";s:3:\"243\";}}}}'),(1623,229,'mkdf_page_content_behind_header_meta','no'),(1624,229,'mkdf_boxed_background_image_attachment_meta','fixed'),(1625,229,'mkdf_disable_header_widget_logo_area_meta','no'),(1626,229,'mkdf_disable_header_widget_menu_area_meta','no'),(1627,229,'mkdf_disable_footer_meta','no'),(1629,229,'_wpb_vc_js_status','true'),(1630,229,'mkdf_course_maximum_students_meta','1'),(1631,229,'mkdf_course_curriculum_desc_meta','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in. antas aliquam dolores mea no. No eos saepe vidisse ornatus, duo cu oratio sensibus. Erant perfecto mea ex, ei vis dolorem definitiones. Autem euripidis cu eum, sea posse. '),(1632,229,'_oembed_3bccd48a7c6f571eedd99e115ef8ed9a','{{unknown}}'),(1633,229,'mkdf_title_text_color_meta','#ffffff'),(1634,229,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(1635,229,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(1636,229,'mkdf_title_area_background_image_behavior_meta','parallax'),(1637,229,'mkdf_sidebar_layout_meta','sidebar-25-right'),(1638,229,'_thumbnail_id','232'),(1640,229,'mkdf_custom_sidebar_area_meta','sidebar-course'),(1641,229,'mkdf_menu_area_in_grid_meta','yes'),(1642,229,'mkdf_page_content_top_padding','64'),(1643,229,'mkdf_page_content_top_padding_mobile','yes'),(1644,229,'mkdf_course_users_attended','1'),(1645,229,'mkdf_course_forum_meta','126'),(1646,229,'_dp_original','18'),(1647,229,'show_footer_custom_widget_areas','no'),(1656,269,'mkdf_course_duration_meta','2'),(1657,269,'mkdf_course_duration_parameter_meta','weeks'),(1658,269,'mkdf_course_retake_number_meta','3'),(1659,269,'mkdf_course_featured_meta','yes'),(1660,269,'mkdf_course_passing_percentage_meta','75'),(1661,269,'mkdf_course_free_meta','yes'),(1662,269,'mkdf_course_curriculum','a:3:{i:0;a:4:{s:12:\"section_name\";s:6:\"WEEK 1\";s:13:\"section_title\";s:22:\"Useful Financial Tools\";s:19:\"section_description\";s:146:\"This course has been designed to enable you to learn and apply the powerful tools of modern finance to both personal and professional situations. \";s:16:\"section_elements\";a:4:{i:0;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:3:\"265\";}i:1;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:3:\"263\";}i:2;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:3:\"260\";}i:3;a:2:{s:4:\"type\";s:4:\"quiz\";s:5:\"value\";s:3:\"243\";}}}i:1;a:4:{s:12:\"section_name\";s:6:\"WEEK 2\";s:13:\"section_title\";s:23:\"Valuation and Investing\";s:19:\"section_description\";s:147:\"The course concentrates on the practical aspects of project finance: the most frequently used financial techniques for infrastructure investments. \";s:16:\"section_elements\";a:4:{i:0;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:3:\"260\";}i:1;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:3:\"262\";}i:2;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:3:\"263\";}i:3;a:2:{s:4:\"type\";s:4:\"quiz\";s:5:\"value\";s:3:\"243\";}}}i:2;a:4:{s:12:\"section_name\";s:6:\"WEEK 3\";s:13:\"section_title\";s:25:\"Microeconomics Principles\";s:19:\"section_description\";s:293:\"This course has been designed to enable you to learn and apply the powerful tools of modern finance to both personal and professional situations. The course concentrates on the practical aspects of project finance: the most frequently used financial techniques for infrastructure investments. \";s:16:\"section_elements\";a:3:{i:0;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:3:\"265\";}i:1;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:3:\"263\";}i:2;a:2:{s:4:\"type\";s:4:\"quiz\";s:5:\"value\";s:3:\"243\";}}}}'),(1663,269,'mkdf_page_content_behind_header_meta','no'),(1664,269,'mkdf_boxed_background_image_attachment_meta','fixed'),(1665,269,'mkdf_disable_header_widget_logo_area_meta','no'),(1666,269,'mkdf_disable_header_widget_menu_area_meta','no'),(1667,269,'mkdf_disable_footer_meta','no'),(1669,269,'_wpb_vc_js_status','true'),(1670,269,'mkdf_course_maximum_students_meta','60'),(1671,269,'mkdf_course_curriculum_desc_meta','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in. antas aliquam dolores mea no. No eos saepe vidisse ornatus, duo cu oratio sensibus. Erant perfecto mea ex, ei vis dolorem definitiones. Autem euripidis cu eum, sea posse. '),(1672,269,'_oembed_3bccd48a7c6f571eedd99e115ef8ed9a','{{unknown}}'),(1673,269,'mkdf_title_text_color_meta','#ffffff'),(1674,269,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(1675,269,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(1676,269,'mkdf_title_area_background_image_behavior_meta','parallax'),(1677,269,'mkdf_sidebar_layout_meta','sidebar-25-right'),(1678,269,'mkdf_custom_sidebar_area_meta','sidebar-course'),(1679,269,'mkdf_menu_area_in_grid_meta','yes'),(1680,269,'mkdf_page_content_top_padding','64'),(1681,269,'mkdf_page_content_top_padding_mobile','yes'),(1682,269,'mkdf_course_users_attended','1'),(1683,269,'mkdf_course_forum_meta','3267'),(1684,269,'_dp_original','174'),(1685,269,'mkdf_course_price_meta','65'),(1686,269,'mkdf_course_price_discount_meta','40'),(1687,269,'_thumbnail_id','271'),(1688,269,'show_footer_custom_widget_areas','no'),(1696,272,'mkdf_course_instructor_meta','109'),(1697,272,'mkdf_course_duration_meta','2'),(1698,272,'mkdf_course_duration_parameter_meta','weeks'),(1699,272,'mkdf_course_retake_number_meta','3'),(1700,272,'mkdf_course_featured_meta','no'),(1701,272,'mkdf_course_passing_percentage_meta','60'),(1702,272,'mkdf_course_free_meta','yes'),(1703,272,'mkdf_course_curriculum','a:3:{i:0;a:4:{s:12:\"section_name\";s:6:\"WEEK 1\";s:13:\"section_title\";s:12:\"Useful Tools\";s:19:\"section_description\";s:234:\"Starting Module: you’ll learn about different types of social software, how to think about physical collaboration and digital collaboration using the same framework, and what the challenges to success for collaborative software are.\";s:16:\"section_elements\";a:4:{i:0;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:3:\"176\";}i:1;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:3:\"195\";}i:2;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:3:\"203\";}i:3;a:2:{s:4:\"type\";s:4:\"quiz\";s:5:\"value\";s:3:\"190\";}}}i:1;a:4:{s:12:\"section_name\";s:6:\"WEEK 2\";s:13:\"section_title\";s:22:\"Programming Principles\";s:19:\"section_description\";s:234:\"Advanced Module: you’ll learn about different types of social software, how to think about physical collaboration and digital collaboration using the same framework, and what the challenges to success for collaborative software are.\";s:16:\"section_elements\";a:4:{i:0;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:3:\"237\";}i:1;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:3:\"203\";}i:2;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:3:\"176\";}i:3;a:2:{s:4:\"type\";s:4:\"quiz\";s:5:\"value\";s:3:\"190\";}}}i:2;a:4:{s:12:\"section_name\";s:6:\"WEEK 3\";s:13:\"section_title\";s:14:\"Specialization\";s:19:\"section_description\";s:238:\"Professional Module: you’ll learn about different types of social software, how to think about physical collaboration and digital collaboration using the same framework, and what the challenges to success for collaborative software are.\";s:16:\"section_elements\";a:3:{i:0;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:3:\"203\";}i:1;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:3:\"195\";}i:2;a:2:{s:4:\"type\";s:4:\"quiz\";s:5:\"value\";s:3:\"190\";}}}}'),(1704,272,'mkdf_page_content_behind_header_meta','no'),(1705,272,'mkdf_boxed_background_image_attachment_meta','fixed'),(1706,272,'mkdf_disable_header_widget_logo_area_meta','no'),(1707,272,'mkdf_disable_header_widget_menu_area_meta','no'),(1708,272,'mkdf_disable_footer_meta','no'),(1710,272,'_wpb_vc_js_status','true'),(1711,272,'mkdf_course_maximum_students_meta','200'),(1712,272,'mkdf_course_curriculum_desc_meta','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in. antas aliquam dolores mea no. No eos saepe vidisse ornatus, duo cu oratio sensibus. Erant perfecto mea ex, ei vis dolorem definitiones. Autem euripidis cu eum, sea posse. '),(1713,272,'_oembed_3bccd48a7c6f571eedd99e115ef8ed9a','{{unknown}}'),(1714,272,'mkdf_title_text_color_meta','#ffffff'),(1715,272,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(1716,272,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(1717,272,'mkdf_title_area_background_image_behavior_meta','parallax'),(1718,272,'mkdf_sidebar_layout_meta','sidebar-25-right'),(1719,272,'mkdf_custom_sidebar_area_meta','sidebar-course'),(1720,272,'mkdf_menu_area_in_grid_meta','yes'),(1721,272,'mkdf_page_content_top_padding','64'),(1722,272,'mkdf_page_content_top_padding_mobile','yes'),(1723,272,'mkdf_course_users_attended','1'),(1724,272,'mkdf_course_forum_meta','3269'),(1725,272,'_thumbnail_id','273'),(1726,272,'_dp_original','174'),(1727,272,'show_footer_custom_widget_areas','no'),(1737,274,'mkdf_course_instructor_meta','104'),(1738,274,'mkdf_course_duration_meta','2'),(1739,274,'mkdf_course_duration_parameter_meta','weeks'),(1740,274,'mkdf_course_retake_number_meta','2'),(1741,274,'mkdf_course_featured_meta','no'),(1742,274,'mkdf_course_passing_percentage_meta','85'),(1743,274,'mkdf_course_free_meta','yes'),(1744,274,'mkdf_course_curriculum','a:2:{i:0;a:4:{s:12:\"section_name\";s:6:\"WEEK 1\";s:13:\"section_title\";s:12:\"Useful Tools\";s:19:\"section_description\";s:234:\"Starting Module: you’ll learn about different types of social software, how to think about physical collaboration and digital collaboration using the same framework, and what the challenges to success for collaborative software are.\";s:16:\"section_elements\";a:4:{i:0;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:3:\"176\";}i:1;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:3:\"195\";}i:2;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:3:\"203\";}i:3;a:2:{s:4:\"type\";s:4:\"quiz\";s:5:\"value\";s:3:\"190\";}}}i:1;a:4:{s:12:\"section_name\";s:6:\"WEEK 2\";s:13:\"section_title\";s:22:\"Programming Principles\";s:19:\"section_description\";s:234:\"Advanced Module: you’ll learn about different types of social software, how to think about physical collaboration and digital collaboration using the same framework, and what the challenges to success for collaborative software are.\";s:16:\"section_elements\";a:4:{i:0;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:3:\"237\";}i:1;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:3:\"203\";}i:2;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:3:\"176\";}i:3;a:2:{s:4:\"type\";s:4:\"quiz\";s:5:\"value\";s:3:\"190\";}}}}'),(1745,274,'mkdf_page_content_behind_header_meta','no'),(1746,274,'mkdf_boxed_background_image_attachment_meta','fixed'),(1747,274,'mkdf_disable_header_widget_logo_area_meta','no'),(1748,274,'mkdf_disable_header_widget_menu_area_meta','no'),(1749,274,'mkdf_disable_footer_meta','no'),(1751,274,'_wpb_vc_js_status','true'),(1752,274,'mkdf_course_maximum_students_meta','1'),(1753,274,'mkdf_course_curriculum_desc_meta','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in. antas aliquam dolores mea no. No eos saepe vidisse ornatus, duo cu oratio sensibus. Erant perfecto mea ex, ei vis dolorem definitiones. Autem euripidis cu eum, sea posse. '),(1754,274,'_oembed_3bccd48a7c6f571eedd99e115ef8ed9a','{{unknown}}'),(1755,274,'mkdf_title_text_color_meta','#ffffff'),(1756,274,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(1757,274,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(1758,274,'mkdf_title_area_background_image_behavior_meta','parallax'),(1759,274,'mkdf_sidebar_layout_meta','sidebar-25-right'),(1760,274,'mkdf_custom_sidebar_area_meta','sidebar-course'),(1761,274,'mkdf_menu_area_in_grid_meta','yes'),(1762,274,'mkdf_page_content_top_padding','64'),(1763,274,'mkdf_page_content_top_padding_mobile','yes'),(1764,274,'mkdf_course_users_attended','1'),(1765,274,'mkdf_course_forum_meta','3269'),(1766,274,'_thumbnail_id','275'),(1767,274,'_dp_original','272'),(1768,274,'_wp_old_slug','web-design'),(1769,274,'show_footer_custom_widget_areas','no'),(1779,276,'mkdf_course_instructor_meta','103'),(1780,276,'mkdf_course_duration_meta','3'),(1781,276,'mkdf_course_duration_parameter_meta','weeks'),(1782,276,'mkdf_course_retake_number_meta','3'),(1783,276,'mkdf_course_featured_meta','no'),(1784,276,'mkdf_course_passing_percentage_meta','75'),(1785,276,'mkdf_course_free_meta','yes'),(1786,276,'mkdf_course_curriculum','a:2:{i:0;a:4:{s:12:\"section_name\";s:6:\"WEEK 1\";s:13:\"section_title\";s:25:\"Steps to Achieve Any Goal\";s:19:\"section_description\";s:192:\"This topic is Modern Psychology and it features some of the most controversial experiments in psychology. Some of these will having you thinking very deeply for a long time after you see them.\";s:16:\"section_elements\";a:4:{i:0;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:3:\"265\";}i:1;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:3:\"263\";}i:2;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:3:\"260\";}i:3;a:2:{s:4:\"type\";s:4:\"quiz\";s:5:\"value\";s:3:\"243\";}}}i:1;a:4:{s:12:\"section_name\";s:6:\"WEEK 2\";s:13:\"section_title\";s:15:\"The Social Mind\";s:19:\"section_description\";s:194:\"This topic is Social Psychology and it features some of the most controversial experiments in psychology. You\'ll have time to analyze and interpret our experience with conformity and authority. \";s:16:\"section_elements\";a:4:{i:0;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:3:\"260\";}i:1;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:3:\"262\";}i:2;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:3:\"263\";}i:3;a:2:{s:4:\"type\";s:4:\"quiz\";s:5:\"value\";s:3:\"243\";}}}}'),(1787,276,'mkdf_page_content_behind_header_meta','no'),(1788,276,'mkdf_boxed_background_image_attachment_meta','fixed'),(1789,276,'mkdf_disable_header_widget_logo_area_meta','no'),(1790,276,'mkdf_disable_header_widget_menu_area_meta','no'),(1791,276,'mkdf_disable_footer_meta','no'),(1793,276,'_wpb_vc_js_status','true'),(1794,276,'mkdf_course_maximum_students_meta','1'),(1795,276,'mkdf_course_curriculum_desc_meta','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in. antas aliquam dolores mea no. No eos saepe vidisse ornatus, duo cu oratio sensibus. Erant perfecto mea ex, ei vis dolorem definitiones. Autem euripidis cu eum, sea posse. '),(1796,276,'_oembed_3bccd48a7c6f571eedd99e115ef8ed9a','{{unknown}}'),(1797,276,'mkdf_title_text_color_meta','#ffffff'),(1798,276,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(1799,276,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(1800,276,'mkdf_title_area_background_image_behavior_meta','parallax'),(1801,276,'mkdf_sidebar_layout_meta','sidebar-25-right'),(1802,276,'mkdf_custom_sidebar_area_meta','sidebar-course'),(1803,276,'mkdf_menu_area_in_grid_meta','yes'),(1804,276,'mkdf_page_content_top_padding','64'),(1805,276,'mkdf_page_content_top_padding_mobile','yes'),(1806,276,'mkdf_course_users_attended','1'),(1807,276,'mkdf_course_forum_meta','3267'),(1808,276,'mkdf_course_price_meta','65'),(1809,276,'mkdf_course_price_discount_meta','40'),(1810,276,'_thumbnail_id','282'),(1811,276,'_dp_original','269'),(1812,276,'_wp_old_slug','social-psychology'),(1813,276,'show_footer_custom_widget_areas','no'),(1818,277,'mkdf_course_instructor_meta','10'),(1819,277,'mkdf_course_duration_meta','3'),(1820,277,'mkdf_course_duration_parameter_meta','weeks'),(1821,277,'mkdf_course_retake_number_meta','3'),(1822,277,'mkdf_course_featured_meta','yes'),(1823,277,'mkdf_course_passing_percentage_meta','70'),(1824,277,'mkdf_course_free_meta','yes'),(1825,277,'mkdf_course_price_meta','20'),(1826,277,'mkdf_course_curriculum','a:2:{i:0;a:4:{s:12:\"section_name\";s:6:\"WEEK 1\";s:13:\"section_title\";s:18:\"Useful Expressions\";s:19:\"section_description\";s:176:\"Tools for Professional Approach: It’s not just about learning, it’s about having the confidence to use English in real life and upgrade your business communication skills. \";s:16:\"section_elements\";a:5:{i:0;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:3:\"265\";}i:1;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:2:\"19\";}i:2;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:2:\"27\";}i:3;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:2:\"35\";}i:4;a:2:{s:4:\"type\";s:4:\"quiz\";s:5:\"value\";s:3:\"243\";}}}i:1;a:4:{s:12:\"section_name\";s:6:\"WEEK 2\";s:13:\"section_title\";s:19:\"Diplomatic Language\";s:19:\"section_description\";s:185:\"Tools for Professional Approach - Step 2: It’s not just about learning, it’s about having the confidence to use English in real life and upgrade your business communication skills. \";s:16:\"section_elements\";a:4:{i:0;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:2:\"35\";}i:1;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:3:\"265\";}i:2;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:2:\"19\";}i:3;a:2:{s:4:\"type\";s:4:\"quiz\";s:5:\"value\";s:3:\"243\";}}}}'),(1827,277,'mkdf_page_content_behind_header_meta','no'),(1828,277,'mkdf_boxed_background_image_attachment_meta','fixed'),(1829,277,'mkdf_disable_header_widget_logo_area_meta','no'),(1830,277,'mkdf_disable_header_widget_menu_area_meta','no'),(1831,277,'mkdf_disable_footer_meta','no'),(1833,277,'_wpb_vc_js_status','true'),(1834,277,'mkdf_course_maximum_students_meta','1'),(1835,277,'mkdf_course_curriculum_desc_meta','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in. antas aliquam dolores mea no. No eos saepe vidisse ornatus, duo cu oratio sensibus. Erant perfecto mea ex, ei vis dolorem definitiones. Autem euripidis cu eum, sea posse. '),(1836,277,'_oembed_3bccd48a7c6f571eedd99e115ef8ed9a','{{unknown}}'),(1837,277,'mkdf_title_text_color_meta','#ffffff'),(1838,277,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(1839,277,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(1840,277,'mkdf_title_area_background_image_behavior_meta','parallax'),(1841,277,'mkdf_sidebar_layout_meta','sidebar-25-right'),(1842,277,'_thumbnail_id','278'),(1844,277,'mkdf_custom_sidebar_area_meta','sidebar-course'),(1845,277,'mkdf_menu_area_in_grid_meta','yes'),(1846,277,'mkdf_page_content_top_padding','64'),(1847,277,'mkdf_page_content_top_padding_mobile','yes'),(1848,277,'mkdf_course_users_attended','1'),(1849,277,'mkdf_course_forum_meta','3267'),(1850,277,'_dp_original','18'),(1851,277,'show_footer_custom_widget_areas','no'),(1859,279,'mkdf_course_instructor_meta','105'),(1860,279,'mkdf_course_duration_meta','2'),(1861,279,'mkdf_course_duration_parameter_meta','weeks'),(1862,279,'mkdf_course_retake_number_meta','3'),(1863,279,'mkdf_course_featured_meta','no'),(1864,279,'mkdf_course_passing_percentage_meta','60'),(1865,279,'mkdf_course_free_meta','yes'),(1866,279,'mkdf_course_price_meta','20'),(1867,279,'mkdf_course_curriculum','a:2:{i:0;a:4:{s:12:\"section_name\";s:6:\"WEEK 1\";s:13:\"section_title\";s:15:\"Beginners Level\";s:19:\"section_description\";s:176:\"Tools for Professional Approach: It’s not just about learning, it’s about having the confidence to use Spanish in real life and upgrade your business communication skills. \";s:16:\"section_elements\";a:4:{i:0;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:3:\"248\";}i:1;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:2:\"27\";}i:2;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:2:\"35\";}i:3;a:2:{s:4:\"type\";s:4:\"quiz\";s:5:\"value\";s:3:\"243\";}}}i:1;a:4:{s:12:\"section_name\";s:6:\"WEEK 2\";s:13:\"section_title\";s:18:\"Intermediate Level\";s:19:\"section_description\";s:185:\"Tools for Professional Approach - Step 2: It’s not just about learning, it’s about having the confidence to use Spanish in real life and upgrade your business communication skills. \";s:16:\"section_elements\";a:5:{i:0;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:2:\"35\";}i:1;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:2:\"27\";}i:2;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:3:\"248\";}i:3;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:2:\"19\";}i:4;a:2:{s:4:\"type\";s:4:\"quiz\";s:5:\"value\";s:3:\"243\";}}}}'),(1868,279,'mkdf_page_content_behind_header_meta','no'),(1869,279,'mkdf_boxed_background_image_attachment_meta','fixed'),(1870,279,'mkdf_disable_header_widget_logo_area_meta','no'),(1871,279,'mkdf_disable_header_widget_menu_area_meta','no'),(1872,279,'mkdf_disable_footer_meta','no'),(1874,279,'_wpb_vc_js_status','true'),(1875,279,'mkdf_course_maximum_students_meta','1'),(1876,279,'mkdf_course_curriculum_desc_meta','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in. antas aliquam dolores mea no. No eos saepe vidisse ornatus, duo cu oratio sensibus. Erant perfecto mea ex, ei vis dolorem definitiones. Autem euripidis cu eum, sea posse. '),(1877,279,'_oembed_3bccd48a7c6f571eedd99e115ef8ed9a','{{unknown}}'),(1878,279,'mkdf_title_text_color_meta','#ffffff'),(1879,279,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(1880,279,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(1881,279,'mkdf_title_area_background_image_behavior_meta','parallax'),(1882,279,'mkdf_sidebar_layout_meta','sidebar-25-right'),(1883,279,'_thumbnail_id','280'),(1884,279,'mkdf_custom_sidebar_area_meta','sidebar-course'),(1885,279,'mkdf_menu_area_in_grid_meta','yes'),(1886,279,'mkdf_page_content_top_padding','64'),(1887,279,'mkdf_page_content_top_padding_mobile','yes'),(1888,279,'mkdf_course_users_attended','1'),(1889,279,'mkdf_course_forum_meta','126'),(1890,279,'_dp_original','229'),(1891,279,'show_footer_custom_widget_areas','no'),(1899,281,'mkdf_course_instructor_meta','106'),(1900,281,'mkdf_course_duration_meta','3'),(1901,281,'mkdf_course_duration_parameter_meta','weeks'),(1902,281,'mkdf_course_retake_number_meta','3'),(1903,281,'mkdf_course_featured_meta','no'),(1904,281,'mkdf_course_passing_percentage_meta','70'),(1905,281,'mkdf_course_free_meta','yes'),(1906,281,'mkdf_course_price_meta','20'),(1907,281,'mkdf_course_curriculum','a:2:{i:0;a:4:{s:12:\"section_name\";s:6:\"WEEK 1\";s:13:\"section_title\";s:18:\"Useful Expressions\";s:19:\"section_description\";s:176:\"Tools for Professional Approach: It’s not just about learning, it’s about having the confidence to use English in real life and upgrade your business communication skills. \";s:16:\"section_elements\";a:5:{i:0;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:3:\"265\";}i:1;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:2:\"19\";}i:2;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:2:\"27\";}i:3;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:2:\"35\";}i:4;a:2:{s:4:\"type\";s:4:\"quiz\";s:5:\"value\";s:3:\"243\";}}}i:1;a:4:{s:12:\"section_name\";s:6:\"WEEK 2\";s:13:\"section_title\";s:19:\"Diplomatic Language\";s:19:\"section_description\";s:185:\"Tools for Professional Approach - Step 2: It’s not just about learning, it’s about having the confidence to use English in real life and upgrade your business communication skills. \";s:16:\"section_elements\";a:4:{i:0;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:2:\"35\";}i:1;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:3:\"265\";}i:2;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:2:\"19\";}i:3;a:2:{s:4:\"type\";s:4:\"quiz\";s:5:\"value\";s:3:\"243\";}}}}'),(1908,281,'mkdf_page_content_behind_header_meta','no'),(1909,281,'mkdf_boxed_background_image_attachment_meta','fixed'),(1910,281,'mkdf_disable_header_widget_logo_area_meta','no'),(1911,281,'mkdf_disable_header_widget_menu_area_meta','no'),(1912,281,'mkdf_disable_footer_meta','no'),(1914,281,'_wpb_vc_js_status','true'),(1915,281,'mkdf_course_maximum_students_meta','1'),(1916,281,'mkdf_course_curriculum_desc_meta','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in. antas aliquam dolores mea no. No eos saepe vidisse ornatus, duo cu oratio sensibus. Erant perfecto mea ex, ei vis dolorem definitiones. Autem euripidis cu eum, sea posse. '),(1917,281,'_oembed_3bccd48a7c6f571eedd99e115ef8ed9a','{{unknown}}'),(1918,281,'mkdf_title_text_color_meta','#ffffff'),(1919,281,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(1920,281,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(1921,281,'mkdf_title_area_background_image_behavior_meta','parallax'),(1922,281,'mkdf_sidebar_layout_meta','sidebar-25-right'),(1923,281,'_thumbnail_id','283'),(1924,281,'mkdf_custom_sidebar_area_meta','sidebar-course'),(1925,281,'mkdf_menu_area_in_grid_meta','yes'),(1926,281,'mkdf_page_content_top_padding','64'),(1927,281,'mkdf_page_content_top_padding_mobile','yes'),(1928,281,'mkdf_course_users_attended','1'),(1929,281,'mkdf_course_forum_meta','3267'),(1930,281,'_dp_original','277'),(1931,281,'show_footer_custom_widget_areas','no'),(1943,284,'mkdf_course_instructor_meta','10'),(1944,284,'mkdf_course_duration_meta','2'),(1945,284,'mkdf_course_duration_parameter_meta','weeks'),(1946,284,'mkdf_course_retake_number_meta','2'),(1947,284,'mkdf_course_featured_meta','no'),(1948,284,'mkdf_course_passing_percentage_meta','85'),(1949,284,'mkdf_course_free_meta','yes'),(1950,284,'mkdf_course_curriculum','a:2:{i:0;a:4:{s:12:\"section_name\";s:6:\"WEEK 1\";s:13:\"section_title\";s:12:\"Useful Tools\";s:19:\"section_description\";s:234:\"Starting Module: you’ll learn about different types of social software, how to think about physical collaboration and digital collaboration using the same framework, and what the challenges to success for collaborative software are.\";s:16:\"section_elements\";a:4:{i:0;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:3:\"176\";}i:1;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:3:\"195\";}i:2;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:3:\"203\";}i:3;a:2:{s:4:\"type\";s:4:\"quiz\";s:5:\"value\";s:3:\"190\";}}}i:1;a:4:{s:12:\"section_name\";s:6:\"WEEK 2\";s:13:\"section_title\";s:22:\"Programming Principles\";s:19:\"section_description\";s:234:\"Advanced Module: you’ll learn about different types of social software, how to think about physical collaboration and digital collaboration using the same framework, and what the challenges to success for collaborative software are.\";s:16:\"section_elements\";a:4:{i:0;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:3:\"237\";}i:1;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:3:\"203\";}i:2;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:3:\"176\";}i:3;a:2:{s:4:\"type\";s:4:\"quiz\";s:5:\"value\";s:3:\"190\";}}}}'),(1951,284,'mkdf_page_content_behind_header_meta','no'),(1952,284,'mkdf_boxed_background_image_attachment_meta','fixed'),(1953,284,'mkdf_disable_header_widget_logo_area_meta','no'),(1954,284,'mkdf_disable_header_widget_menu_area_meta','no'),(1955,284,'mkdf_disable_footer_meta','no'),(1957,284,'_wpb_vc_js_status','true'),(1958,284,'mkdf_course_maximum_students_meta','150'),(1959,284,'mkdf_course_curriculum_desc_meta','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in. antas aliquam dolores mea no. No eos saepe vidisse ornatus, duo cu oratio sensibus. Erant perfecto mea ex, ei vis dolorem definitiones. Autem euripidis cu eum, sea posse. '),(1960,284,'_oembed_3bccd48a7c6f571eedd99e115ef8ed9a','{{unknown}}'),(1961,284,'mkdf_title_text_color_meta','#ffffff'),(1962,284,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(1963,284,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(1964,284,'mkdf_title_area_background_image_behavior_meta','parallax'),(1965,284,'mkdf_sidebar_layout_meta','sidebar-25-right'),(1966,284,'mkdf_custom_sidebar_area_meta','sidebar-course'),(1967,284,'mkdf_menu_area_in_grid_meta','yes'),(1968,284,'mkdf_page_content_top_padding','64'),(1969,284,'mkdf_page_content_top_padding_mobile','yes'),(1970,284,'mkdf_course_users_attended','1'),(1971,284,'mkdf_course_forum_meta','3269'),(1972,284,'_thumbnail_id','285'),(1973,284,'_dp_original','274'),(1974,284,'show_footer_custom_widget_areas','no'),(1979,286,'mkdf_course_instructor_meta','101'),(1980,286,'mkdf_course_duration_meta','2'),(1981,286,'mkdf_course_duration_parameter_meta','weeks'),(1982,286,'mkdf_course_retake_number_meta','3'),(1983,286,'mkdf_course_featured_meta','no'),(1984,286,'mkdf_course_passing_percentage_meta','90'),(1985,286,'mkdf_course_free_meta','yes'),(1986,286,'mkdf_course_price_meta','20'),(1987,286,'mkdf_course_curriculum','a:2:{i:0;a:4:{s:12:\"section_name\";s:6:\"WEEK 1\";s:13:\"section_title\";s:18:\"Useful Expressions\";s:19:\"section_description\";s:176:\"Tools for Professional Approach: It’s not just about learning, it’s about having the confidence to use English in real life and upgrade your business communication skills. \";s:16:\"section_elements\";a:5:{i:0;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:3:\"265\";}i:1;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:2:\"19\";}i:2;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:2:\"27\";}i:3;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:2:\"35\";}i:4;a:2:{s:4:\"type\";s:4:\"quiz\";s:5:\"value\";s:3:\"243\";}}}i:1;a:4:{s:12:\"section_name\";s:6:\"WEEK 2\";s:13:\"section_title\";s:19:\"Diplomatic Language\";s:19:\"section_description\";s:185:\"Tools for Professional Approach - Step 2: It’s not just about learning, it’s about having the confidence to use English in real life and upgrade your business communication skills. \";s:16:\"section_elements\";a:4:{i:0;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:2:\"35\";}i:1;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:3:\"265\";}i:2;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:2:\"19\";}i:3;a:2:{s:4:\"type\";s:4:\"quiz\";s:5:\"value\";s:3:\"243\";}}}}'),(1988,286,'mkdf_page_content_behind_header_meta','no'),(1989,286,'mkdf_boxed_background_image_attachment_meta','fixed'),(1990,286,'mkdf_disable_header_widget_logo_area_meta','no'),(1991,286,'mkdf_disable_header_widget_menu_area_meta','no'),(1992,286,'mkdf_disable_footer_meta','no'),(1994,286,'_wpb_vc_js_status','true'),(1995,286,'mkdf_course_maximum_students_meta','1'),(1996,286,'mkdf_course_curriculum_desc_meta','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in. antas aliquam dolores mea no. No eos saepe vidisse ornatus, duo cu oratio sensibus. Erant perfecto mea ex, ei vis dolorem definitiones. Autem euripidis cu eum, sea posse. '),(1997,286,'_oembed_3bccd48a7c6f571eedd99e115ef8ed9a','{{unknown}}'),(1998,286,'mkdf_title_text_color_meta','#ffffff'),(1999,286,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(2000,286,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(2001,286,'mkdf_title_area_background_image_behavior_meta','parallax'),(2002,286,'mkdf_sidebar_layout_meta','sidebar-25-right'),(2003,286,'_thumbnail_id','287'),(2005,286,'mkdf_custom_sidebar_area_meta','sidebar-course'),(2006,286,'mkdf_menu_area_in_grid_meta','yes'),(2007,286,'mkdf_page_content_top_padding','64'),(2008,286,'mkdf_page_content_top_padding_mobile','yes'),(2009,286,'mkdf_course_users_attended','1'),(2010,286,'mkdf_course_forum_meta','126'),(2011,286,'_dp_original','18'),(2012,286,'_wp_old_slug','comparative-linguistics'),(2013,286,'show_footer_custom_widget_areas','no'),(2021,677,'mkdf_course_instructor_meta','109'),(2022,677,'mkdf_course_duration_meta','2'),(2023,677,'mkdf_course_duration_parameter_meta','weeks'),(2024,677,'mkdf_course_retake_number_meta','3'),(2025,677,'mkdf_course_featured_meta','yes'),(2026,677,'mkdf_course_passing_percentage_meta','90'),(2027,677,'mkdf_course_free_meta','yes'),(2028,677,'mkdf_course_price_meta','20'),(2029,677,'mkdf_course_curriculum','a:2:{i:0;a:4:{s:12:\"section_name\";s:6:\"WEEK 1\";s:13:\"section_title\";s:18:\"Useful Expressions\";s:19:\"section_description\";s:176:\"Tools for Professional Approach: It’s not just about learning, it’s about having the confidence to use English in real life and upgrade your business communication skills. \";s:16:\"section_elements\";a:5:{i:0;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:3:\"265\";}i:1;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:2:\"19\";}i:2;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:2:\"27\";}i:3;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:2:\"35\";}i:4;a:2:{s:4:\"type\";s:4:\"quiz\";s:5:\"value\";s:3:\"243\";}}}i:1;a:4:{s:12:\"section_name\";s:6:\"WEEK 2\";s:13:\"section_title\";s:19:\"Diplomatic Language\";s:19:\"section_description\";s:185:\"Tools for Professional Approach - Step 2: It’s not just about learning, it’s about having the confidence to use English in real life and upgrade your business communication skills. \";s:16:\"section_elements\";a:4:{i:0;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:2:\"35\";}i:1;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:3:\"265\";}i:2;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:2:\"19\";}i:3;a:2:{s:4:\"type\";s:4:\"quiz\";s:5:\"value\";s:3:\"243\";}}}}'),(2030,677,'mkdf_page_content_behind_header_meta','no'),(2031,677,'mkdf_boxed_background_image_attachment_meta','fixed'),(2032,677,'mkdf_disable_header_widget_logo_area_meta','no'),(2033,677,'mkdf_disable_header_widget_menu_area_meta','no'),(2034,677,'mkdf_disable_footer_meta','no'),(2036,677,'_wpb_vc_js_status','true'),(2037,677,'mkdf_course_maximum_students_meta','1'),(2038,677,'mkdf_course_curriculum_desc_meta','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in. antas aliquam dolores mea no. No eos saepe vidisse ornatus, duo cu oratio sensibus. Erant perfecto mea ex, ei vis dolorem definitiones. Autem euripidis cu eum, sea posse. '),(2039,677,'_oembed_3bccd48a7c6f571eedd99e115ef8ed9a','{{unknown}}'),(2040,677,'mkdf_title_text_color_meta','#ffffff'),(2041,677,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(2042,677,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(2043,677,'mkdf_title_area_background_image_behavior_meta','parallax'),(2044,677,'mkdf_sidebar_layout_meta','sidebar-25-right'),(2045,677,'_thumbnail_id','681'),(2046,677,'mkdf_custom_sidebar_area_meta','sidebar-course'),(2047,677,'mkdf_menu_area_in_grid_meta','yes'),(2048,677,'mkdf_page_content_top_padding','64'),(2049,677,'mkdf_page_content_top_padding_mobile','yes'),(2050,677,'mkdf_course_users_attended','1'),(2051,677,'mkdf_course_forum_meta','3269'),(2052,677,'_wp_old_slug','comparative-linguistics'),(2053,677,'_dp_original','286'),(2054,677,'show_footer_custom_widget_areas','no'),(2068,692,'mkdf_course_instructor_meta','101'),(2069,692,'mkdf_course_duration_meta','2'),(2070,692,'mkdf_course_duration_parameter_meta','weeks'),(2071,692,'mkdf_course_retake_number_meta','2'),(2072,692,'mkdf_course_featured_meta','no'),(2073,692,'mkdf_course_passing_percentage_meta','85'),(2074,692,'mkdf_course_free_meta','yes'),(2075,692,'mkdf_course_curriculum','a:2:{i:0;a:4:{s:12:\"section_name\";s:6:\"WEEK 1\";s:13:\"section_title\";s:12:\"Useful Tools\";s:19:\"section_description\";s:234:\"Starting Module: you’ll learn about different types of social software, how to think about physical collaboration and digital collaboration using the same framework, and what the challenges to success for collaborative software are.\";s:16:\"section_elements\";a:4:{i:0;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:3:\"176\";}i:1;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:3:\"195\";}i:2;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:3:\"203\";}i:3;a:2:{s:4:\"type\";s:4:\"quiz\";s:5:\"value\";s:3:\"190\";}}}i:1;a:4:{s:12:\"section_name\";s:6:\"WEEK 2\";s:13:\"section_title\";s:22:\"Programming Principles\";s:19:\"section_description\";s:234:\"Advanced Module: you’ll learn about different types of social software, how to think about physical collaboration and digital collaboration using the same framework, and what the challenges to success for collaborative software are.\";s:16:\"section_elements\";a:4:{i:0;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:3:\"237\";}i:1;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:3:\"203\";}i:2;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:3:\"176\";}i:3;a:2:{s:4:\"type\";s:4:\"quiz\";s:5:\"value\";s:3:\"190\";}}}}'),(2076,692,'mkdf_page_content_behind_header_meta','no'),(2077,692,'mkdf_boxed_background_image_attachment_meta','fixed'),(2078,692,'mkdf_disable_header_widget_logo_area_meta','no'),(2079,692,'mkdf_disable_header_widget_menu_area_meta','no'),(2080,692,'mkdf_disable_footer_meta','no'),(2082,692,'_wpb_vc_js_status','true'),(2083,692,'mkdf_course_maximum_students_meta','150'),(2084,692,'mkdf_course_curriculum_desc_meta','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in. antas aliquam dolores mea no. No eos saepe vidisse ornatus, duo cu oratio sensibus. Erant perfecto mea ex, ei vis dolorem definitiones. Autem euripidis cu eum, sea posse. '),(2085,692,'_oembed_3bccd48a7c6f571eedd99e115ef8ed9a','{{unknown}}'),(2086,692,'mkdf_title_text_color_meta','#ffffff'),(2087,692,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(2088,692,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(2089,692,'mkdf_title_area_background_image_behavior_meta','parallax'),(2090,692,'mkdf_sidebar_layout_meta','sidebar-25-right'),(2091,692,'mkdf_custom_sidebar_area_meta','sidebar-course'),(2092,692,'mkdf_menu_area_in_grid_meta','yes'),(2093,692,'mkdf_page_content_top_padding','64'),(2094,692,'mkdf_page_content_top_padding_mobile','yes'),(2095,692,'mkdf_course_users_attended','1'),(2096,692,'mkdf_course_forum_meta','3267'),(2097,692,'_thumbnail_id','682'),(2098,692,'_dp_original','284'),(2099,692,'show_footer_custom_widget_areas','no'),(2109,694,'mkdf_course_instructor_meta','101'),(2110,694,'mkdf_course_duration_meta','3'),(2111,694,'mkdf_course_duration_parameter_meta','weeks'),(2112,694,'mkdf_course_retake_number_meta','3'),(2113,694,'mkdf_course_featured_meta','no'),(2114,694,'mkdf_course_passing_percentage_meta','70'),(2115,694,'mkdf_course_free_meta','yes'),(2116,694,'mkdf_course_price_meta','20'),(2117,694,'mkdf_course_curriculum','a:2:{i:0;a:4:{s:12:\"section_name\";s:6:\"WEEK 1\";s:13:\"section_title\";s:18:\"Useful Expressions\";s:19:\"section_description\";s:176:\"Tools for Professional Approach: It’s not just about learning, it’s about having the confidence to use English in real life and upgrade your business communication skills. \";s:16:\"section_elements\";a:5:{i:0;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:3:\"265\";}i:1;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:2:\"19\";}i:2;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:2:\"27\";}i:3;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:2:\"35\";}i:4;a:2:{s:4:\"type\";s:4:\"quiz\";s:5:\"value\";s:3:\"243\";}}}i:1;a:4:{s:12:\"section_name\";s:6:\"WEEK 2\";s:13:\"section_title\";s:19:\"Diplomatic Language\";s:19:\"section_description\";s:185:\"Tools for Professional Approach - Step 2: It’s not just about learning, it’s about having the confidence to use English in real life and upgrade your business communication skills. \";s:16:\"section_elements\";a:4:{i:0;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:2:\"35\";}i:1;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:3:\"265\";}i:2;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:2:\"19\";}i:3;a:2:{s:4:\"type\";s:4:\"quiz\";s:5:\"value\";s:3:\"243\";}}}}'),(2118,694,'mkdf_page_content_behind_header_meta','no'),(2119,694,'mkdf_boxed_background_image_attachment_meta','fixed'),(2120,694,'mkdf_disable_header_widget_logo_area_meta','no'),(2121,694,'mkdf_disable_header_widget_menu_area_meta','no'),(2122,694,'mkdf_disable_footer_meta','no'),(2124,694,'_wpb_vc_js_status','true'),(2125,694,'mkdf_course_maximum_students_meta','160'),(2126,694,'mkdf_course_curriculum_desc_meta','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in. antas aliquam dolores mea no. No eos saepe vidisse ornatus, duo cu oratio sensibus. Erant perfecto mea ex, ei vis dolorem definitiones. Autem euripidis cu eum, sea posse. '),(2127,694,'_oembed_3bccd48a7c6f571eedd99e115ef8ed9a','{{unknown}}'),(2128,694,'mkdf_title_text_color_meta','#ffffff'),(2129,694,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(2130,694,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(2131,694,'mkdf_title_area_background_image_behavior_meta','parallax'),(2132,694,'mkdf_sidebar_layout_meta','sidebar-25-right'),(2133,694,'_thumbnail_id','683'),(2134,694,'mkdf_custom_sidebar_area_meta','sidebar-course'),(2135,694,'mkdf_menu_area_in_grid_meta','yes'),(2136,694,'mkdf_page_content_top_padding','64'),(2137,694,'mkdf_page_content_top_padding_mobile','yes'),(2138,694,'mkdf_course_users_attended','1'),(2139,694,'mkdf_course_forum_meta','3267'),(2140,694,'_dp_original','281'),(2141,694,'show_footer_custom_widget_areas','no'),(2153,3005,'mkdf_course_instructor_meta','101'),(2154,3005,'mkdf_course_duration_meta','3'),(2155,3005,'mkdf_course_duration_parameter_meta','weeks'),(2156,3005,'mkdf_course_retake_number_meta','3'),(2157,3005,'mkdf_course_featured_meta','yes'),(2158,3005,'mkdf_course_passing_percentage_meta','70'),(2159,3005,'mkdf_course_free_meta','yes'),(2160,3005,'mkdf_course_price_meta','20'),(2161,3005,'mkdf_course_curriculum','a:2:{i:0;a:4:{s:12:\"section_name\";s:6:\"WEEK 1\";s:13:\"section_title\";s:18:\"Useful Expressions\";s:19:\"section_description\";s:176:\"Tools for Professional Approach: It’s not just about learning, it’s about having the confidence to use English in real life and upgrade your business communication skills. \";s:16:\"section_elements\";a:5:{i:0;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:3:\"265\";}i:1;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:2:\"19\";}i:2;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:2:\"27\";}i:3;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:2:\"35\";}i:4;a:2:{s:4:\"type\";s:4:\"quiz\";s:5:\"value\";s:3:\"243\";}}}i:1;a:4:{s:12:\"section_name\";s:6:\"WEEK 2\";s:13:\"section_title\";s:19:\"Diplomatic Language\";s:19:\"section_description\";s:185:\"Tools for Professional Approach - Step 2: It’s not just about learning, it’s about having the confidence to use English in real life and upgrade your business communication skills. \";s:16:\"section_elements\";a:4:{i:0;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:2:\"35\";}i:1;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:3:\"265\";}i:2;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:2:\"19\";}i:3;a:2:{s:4:\"type\";s:4:\"quiz\";s:5:\"value\";s:3:\"243\";}}}}'),(2162,3005,'mkdf_page_content_behind_header_meta','no'),(2163,3005,'mkdf_boxed_background_image_attachment_meta','fixed'),(2164,3005,'mkdf_disable_header_widget_logo_area_meta','no'),(2165,3005,'mkdf_disable_header_widget_menu_area_meta','no'),(2166,3005,'mkdf_disable_footer_meta','no'),(2168,3005,'_wpb_vc_js_status','true'),(2169,3005,'mkdf_course_maximum_students_meta','160'),(2170,3005,'mkdf_course_curriculum_desc_meta','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in. antas aliquam dolores mea no. No eos saepe vidisse ornatus, duo cu oratio sensibus. Erant perfecto mea ex, ei vis dolorem definitiones. Autem euripidis cu eum, sea posse. '),(2171,3005,'_oembed_3bccd48a7c6f571eedd99e115ef8ed9a','{{unknown}}'),(2172,3005,'mkdf_title_text_color_meta','#ffffff'),(2173,3005,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(2174,3005,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(2175,3005,'mkdf_title_area_background_image_behavior_meta','parallax'),(2176,3005,'mkdf_sidebar_layout_meta','sidebar-25-right'),(2177,3005,'_thumbnail_id','3006'),(2178,3005,'mkdf_custom_sidebar_area_meta','sidebar-course'),(2179,3005,'mkdf_menu_area_in_grid_meta','yes'),(2180,3005,'mkdf_page_content_top_padding','64'),(2181,3005,'mkdf_page_content_top_padding_mobile','yes'),(2182,3005,'mkdf_course_users_attended','1'),(2183,3005,'mkdf_course_forum_meta','3267'),(2184,3005,'_dp_original','694'),(2185,3005,'show_footer_custom_widget_areas','no'),(2195,3010,'mkdf_course_instructor_meta','109'),(2196,3010,'mkdf_course_duration_meta','2'),(2197,3010,'mkdf_course_duration_parameter_meta','weeks'),(2198,3010,'mkdf_course_retake_number_meta','3'),(2199,3010,'mkdf_course_featured_meta','no'),(2200,3010,'mkdf_course_passing_percentage_meta','90'),(2201,3010,'mkdf_course_free_meta','yes'),(2202,3010,'mkdf_course_price_meta','20'),(2203,3010,'mkdf_course_curriculum','a:2:{i:0;a:4:{s:12:\"section_name\";s:6:\"WEEK 1\";s:13:\"section_title\";s:18:\"Useful Expressions\";s:19:\"section_description\";s:176:\"Tools for Professional Approach: It’s not just about learning, it’s about having the confidence to use English in real life and upgrade your business communication skills. \";s:16:\"section_elements\";a:5:{i:0;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:3:\"265\";}i:1;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:2:\"19\";}i:2;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:2:\"27\";}i:3;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:2:\"35\";}i:4;a:2:{s:4:\"type\";s:4:\"quiz\";s:5:\"value\";s:3:\"243\";}}}i:1;a:4:{s:12:\"section_name\";s:6:\"WEEK 2\";s:13:\"section_title\";s:19:\"Diplomatic Language\";s:19:\"section_description\";s:185:\"Tools for Professional Approach - Step 2: It’s not just about learning, it’s about having the confidence to use English in real life and upgrade your business communication skills. \";s:16:\"section_elements\";a:4:{i:0;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:2:\"35\";}i:1;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:3:\"265\";}i:2;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:2:\"19\";}i:3;a:2:{s:4:\"type\";s:4:\"quiz\";s:5:\"value\";s:3:\"243\";}}}}'),(2204,3010,'mkdf_page_content_behind_header_meta','no'),(2205,3010,'mkdf_boxed_background_image_attachment_meta','fixed'),(2206,3010,'mkdf_disable_header_widget_logo_area_meta','no'),(2207,3010,'mkdf_disable_header_widget_menu_area_meta','no'),(2208,3010,'mkdf_disable_footer_meta','no'),(2210,3010,'_wpb_vc_js_status','true'),(2211,3010,'mkdf_course_maximum_students_meta','300'),(2212,3010,'mkdf_course_curriculum_desc_meta','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in. antas aliquam dolores mea no. No eos saepe vidisse ornatus, duo cu oratio sensibus. Erant perfecto mea ex, ei vis dolorem definitiones. Autem euripidis cu eum, sea posse. '),(2213,3010,'_oembed_3bccd48a7c6f571eedd99e115ef8ed9a','{{unknown}}'),(2214,3010,'mkdf_title_text_color_meta','#ffffff'),(2215,3010,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(2216,3010,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(2217,3010,'mkdf_title_area_background_image_behavior_meta','parallax'),(2218,3010,'mkdf_sidebar_layout_meta','sidebar-25-right'),(2219,3010,'_thumbnail_id','3007'),(2220,3010,'mkdf_custom_sidebar_area_meta','sidebar-course'),(2221,3010,'mkdf_menu_area_in_grid_meta','yes'),(2222,3010,'mkdf_page_content_top_padding','64'),(2223,3010,'mkdf_page_content_top_padding_mobile','yes'),(2224,3010,'mkdf_course_users_attended','1'),(2225,3010,'mkdf_course_forum_meta','3269'),(2226,3010,'_wp_old_slug','comparative-linguistics'),(2227,3010,'_dp_original','677'),(2228,3010,'show_footer_custom_widget_areas','no'),(2231,10,'mkdf_page_content_behind_header_meta','no'),(2232,10,'mkdf_boxed_background_image_attachment_meta','fixed'),(2233,10,'mkdf_instructor_title','Giáo viên trung học'),(2234,10,'mkdf_instructor_vita','Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a mauris. '),(2235,10,'mkdf_instructor_social_icon_pack_1','font_awesome'),(2236,10,'mkdf_instructor_social_icon_pack_1_fa_icon','fa-google-plus'),(2237,10,'mkdf_instructor_social_icon_1_link','https://plus.google.com'),(2238,10,'mkdf_instructor_social_icon_1_target','_blank'),(2239,10,'mkdf_instructor_social_icon_pack_2','font_elegant'),(2240,10,'mkdf_instructor_social_icon_pack_2_fa_icon','fa-facebook'),(2241,10,'mkdf_instructor_social_icon_2_link','https://www.facebook.com/'),(2242,10,'mkdf_instructor_social_icon_2_target','_blank'),(2243,10,'mkdf_instructor_social_icon_pack_3','font_elegant'),(2244,10,'mkdf_instructor_social_icon_pack_3_fa_icon','fa-twitter'),(2245,10,'mkdf_instructor_social_icon_3_link','https://www.twitter.com/'),(2246,10,'mkdf_instructor_social_icon_3_target','_blank'),(2247,10,'mkdf_disable_header_widget_logo_area_meta','no'),(2248,10,'mkdf_disable_header_widget_menu_area_meta','no'),(2249,10,'mkdf_disable_footer_meta','no'),(2251,10,'_wpb_vc_js_status','true'),(2252,10,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(2253,10,'mkdf_title_area_height_meta','250'),(2254,10,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(2255,10,'mkdf_title_area_background_image_behavior_meta','parallax'),(2256,10,'mkdf_title_area_vertical_alignment_meta','header_bottom'),(2257,10,'mkdf_title_text_color_meta','#ffffff'),(2258,10,'mkdf_breadcrumbs_color_meta','#ffffff'),(2259,10,'mkdf_page_content_top_padding','100'),(2261,10,'_thumbnail_id','4496'),(2262,10,'mkdf_instructor_social_icon_pack_1_fe_icon','social_googleplus'),(2263,10,'mkdf_instructor_social_icon_pack_2_fe_icon','social_facebook'),(2264,10,'mkdf_instructor_social_icon_pack_3_fe_icon','social_twitter'),(2265,10,'show_footer_custom_widget_areas','no'),(2494,101,'mkdf_page_content_behind_header_meta','no'),(2495,101,'mkdf_boxed_background_image_attachment_meta','fixed'),(2496,101,'mkdf_instructor_title','Giáo viên trung học'),(2497,101,'mkdf_instructor_vita','Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a mauris. '),(2498,101,'mkdf_instructor_social_icon_pack_1','font_awesome'),(2499,101,'mkdf_instructor_social_icon_pack_1_fa_icon','fa-google-plus'),(2500,101,'mkdf_instructor_social_icon_1_link','https://plus.google.com'),(2501,101,'mkdf_instructor_social_icon_1_target','_blank'),(2502,101,'mkdf_instructor_social_icon_pack_2','font_elegant'),(2503,101,'mkdf_instructor_social_icon_pack_2_fa_icon','fa-facebook'),(2504,101,'mkdf_instructor_social_icon_2_link','https://www.facebook.com/'),(2505,101,'mkdf_instructor_social_icon_2_target','_blank'),(2506,101,'mkdf_instructor_social_icon_pack_3','font_elegant'),(2507,101,'mkdf_instructor_social_icon_pack_3_fa_icon','fa-twitter'),(2508,101,'mkdf_instructor_social_icon_3_link','https://www.twitter.com/'),(2509,101,'mkdf_instructor_social_icon_3_target','_blank'),(2510,101,'mkdf_disable_header_widget_logo_area_meta','no'),(2511,101,'mkdf_disable_header_widget_menu_area_meta','no'),(2512,101,'mkdf_disable_footer_meta','no'),(2514,101,'_wpb_vc_js_status','true'),(2515,101,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(2516,101,'mkdf_title_area_height_meta','250'),(2517,101,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(2518,101,'mkdf_title_area_background_image_behavior_meta','parallax'),(2519,101,'mkdf_title_area_vertical_alignment_meta','header_bottom'),(2520,101,'mkdf_title_text_color_meta','#ffffff'),(2521,101,'mkdf_breadcrumbs_color_meta','#ffffff'),(2522,101,'mkdf_page_content_top_padding','100'),(2524,101,'_thumbnail_id','4497'),(2525,101,'_dp_original','10'),(2526,101,'_wp_old_slug','denise-wood-2'),(2527,101,'mkdf_instructor_social_icon_pack_1_fe_icon','social_googleplus'),(2528,101,'mkdf_instructor_social_icon_pack_2_fe_icon','social_facebook'),(2529,101,'mkdf_instructor_social_icon_pack_3_fe_icon','social_twitter'),(2530,101,'show_footer_custom_widget_areas','no'),(2538,103,'mkdf_page_content_behind_header_meta','no'),(2539,103,'mkdf_boxed_background_image_attachment_meta','fixed'),(2540,103,'mkdf_instructor_title','Giáo viên trung học'),(2541,103,'mkdf_instructor_vita','Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a mauris.'),(2542,103,'mkdf_instructor_social_icon_pack_1','font_awesome'),(2543,103,'mkdf_instructor_social_icon_pack_1_fa_icon','fa-google-plus'),(2544,103,'mkdf_instructor_social_icon_1_link','https://plus.google.com'),(2545,103,'mkdf_instructor_social_icon_1_target','_blank'),(2546,103,'mkdf_instructor_social_icon_pack_2','font_elegant'),(2547,103,'mkdf_instructor_social_icon_pack_2_fa_icon','fa-facebook'),(2548,103,'mkdf_instructor_social_icon_2_link','https://www.facebook.com/'),(2549,103,'mkdf_instructor_social_icon_2_target','_blank'),(2550,103,'mkdf_instructor_social_icon_pack_3','font_elegant'),(2551,103,'mkdf_instructor_social_icon_pack_3_fa_icon','fa-twitter'),(2552,103,'mkdf_instructor_social_icon_3_link','https://www.twitter.com/'),(2553,103,'mkdf_instructor_social_icon_3_target','_blank'),(2554,103,'mkdf_disable_header_widget_logo_area_meta','no'),(2555,103,'mkdf_disable_header_widget_menu_area_meta','no'),(2556,103,'mkdf_disable_footer_meta','no'),(2558,103,'_wpb_vc_js_status','true'),(2559,103,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(2560,103,'mkdf_title_area_height_meta','250'),(2561,103,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(2562,103,'mkdf_title_area_background_image_behavior_meta','parallax'),(2563,103,'mkdf_title_area_vertical_alignment_meta','header_bottom'),(2564,103,'mkdf_title_text_color_meta','#ffffff'),(2565,103,'mkdf_breadcrumbs_color_meta','#ffffff'),(2566,103,'mkdf_page_content_top_padding','100'),(2567,103,'_thumbnail_id','4497'),(2568,103,'_dp_original','101'),(2569,103,'_wp_old_slug','kathryn-webb-2'),(2570,103,'mkdf_instructor_social_icon_pack_1_fe_icon','social_googleplus'),(2571,103,'mkdf_instructor_social_icon_pack_2_fe_icon','social_facebook'),(2572,103,'mkdf_instructor_social_icon_pack_3_fe_icon','social_twitter'),(2573,103,'show_footer_custom_widget_areas','no'),(2583,104,'mkdf_page_content_behind_header_meta','no'),(2584,104,'mkdf_boxed_background_image_attachment_meta','fixed'),(2585,104,'mkdf_instructor_title','Giáo viên trung học'),(2586,104,'mkdf_instructor_vita','Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a mauris. '),(2587,104,'mkdf_instructor_social_icon_pack_1','font_awesome'),(2588,104,'mkdf_instructor_social_icon_pack_1_fa_icon','fa-google-plus'),(2589,104,'mkdf_instructor_social_icon_1_link','https://plus.google.com'),(2590,104,'mkdf_instructor_social_icon_1_target','_blank'),(2591,104,'mkdf_instructor_social_icon_pack_2','font_elegant'),(2592,104,'mkdf_instructor_social_icon_pack_2_fa_icon','fa-facebook'),(2593,104,'mkdf_instructor_social_icon_2_link','https://www.facebook.com/'),(2594,104,'mkdf_instructor_social_icon_2_target','_blank'),(2595,104,'mkdf_instructor_social_icon_pack_3','font_elegant'),(2596,104,'mkdf_instructor_social_icon_pack_3_fa_icon','fa-twitter'),(2597,104,'mkdf_instructor_social_icon_3_link','https://www.twitter.com/'),(2598,104,'mkdf_instructor_social_icon_3_target','_blank'),(2599,104,'mkdf_disable_header_widget_logo_area_meta','no'),(2600,104,'mkdf_disable_header_widget_menu_area_meta','no'),(2601,104,'mkdf_disable_footer_meta','no'),(2603,104,'_wpb_vc_js_status','true'),(2604,104,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(2605,104,'mkdf_title_area_height_meta','250'),(2606,104,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(2607,104,'mkdf_title_area_background_image_behavior_meta','parallax'),(2608,104,'mkdf_title_area_vertical_alignment_meta','header_bottom'),(2609,104,'mkdf_title_text_color_meta','#ffffff'),(2610,104,'mkdf_breadcrumbs_color_meta','#ffffff'),(2611,104,'mkdf_page_content_top_padding','100'),(2612,104,'_thumbnail_id','4497'),(2613,104,'_wp_old_slug','kathryn-webb-2'),(2614,104,'_dp_original','103'),(2615,104,'_wp_old_slug','jennifer-powell-2'),(2616,104,'mkdf_instructor_social_icon_pack_1_fe_icon','social_googleplus'),(2617,104,'mkdf_instructor_social_icon_pack_2_fe_icon','social_facebook'),(2618,104,'mkdf_instructor_social_icon_pack_3_fe_icon','social_twitter'),(2619,104,'show_footer_custom_widget_areas','no'),(2631,105,'mkdf_page_content_behind_header_meta','no'),(2632,105,'mkdf_boxed_background_image_attachment_meta','fixed'),(2633,105,'mkdf_instructor_title','Giáo viên tiểu học'),(2634,105,'mkdf_instructor_vita','Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a mauris. '),(2635,105,'mkdf_instructor_social_icon_pack_1','font_awesome'),(2636,105,'mkdf_instructor_social_icon_pack_1_fa_icon','fa-google-plus'),(2637,105,'mkdf_instructor_social_icon_1_link','https://plus.google.com'),(2638,105,'mkdf_instructor_social_icon_1_target','_blank'),(2639,105,'mkdf_instructor_social_icon_pack_2','font_elegant'),(2640,105,'mkdf_instructor_social_icon_pack_2_fa_icon','fa-facebook'),(2641,105,'mkdf_instructor_social_icon_2_link','https://www.facebook.com/'),(2642,105,'mkdf_instructor_social_icon_2_target','_blank'),(2643,105,'mkdf_instructor_social_icon_pack_3','font_elegant'),(2644,105,'mkdf_instructor_social_icon_pack_3_fa_icon','fa-twitter'),(2645,105,'mkdf_instructor_social_icon_3_link','https://www.twitter.com/'),(2646,105,'mkdf_instructor_social_icon_3_target','_blank'),(2647,105,'mkdf_disable_header_widget_logo_area_meta','no'),(2648,105,'mkdf_disable_header_widget_menu_area_meta','no'),(2649,105,'mkdf_disable_footer_meta','no'),(2651,105,'_wpb_vc_js_status','true'),(2652,105,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(2653,105,'mkdf_title_area_height_meta','250'),(2654,105,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(2655,105,'mkdf_title_area_background_image_behavior_meta','parallax'),(2656,105,'mkdf_title_area_vertical_alignment_meta','header_bottom'),(2657,105,'mkdf_title_text_color_meta','#ffffff'),(2658,105,'mkdf_breadcrumbs_color_meta','#ffffff'),(2659,105,'mkdf_page_content_top_padding','100'),(2660,105,'_thumbnail_id','4496'),(2661,105,'_wp_old_slug','kathryn-webb-2'),(2662,105,'_wp_old_slug','jennifer-powell-2'),(2663,105,'_dp_original','104'),(2664,105,'_wp_old_slug','dave-robbinson'),(2665,105,'_wp_old_slug','dave-robbins-2'),(2666,105,'mkdf_instructor_social_icon_pack_1_fe_icon','social_googleplus'),(2667,105,'mkdf_instructor_social_icon_pack_2_fe_icon','social_facebook'),(2668,105,'mkdf_instructor_social_icon_pack_3_fe_icon','social_twitter'),(2669,105,'show_footer_custom_widget_areas','no'),(2683,106,'mkdf_page_content_behind_header_meta','no'),(2684,106,'mkdf_boxed_background_image_attachment_meta','fixed'),(2685,106,'mkdf_instructor_title','Giáo viên trung học'),(2686,106,'mkdf_instructor_vita','Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a mauris. '),(2687,106,'mkdf_instructor_social_icon_pack_1','font_awesome'),(2688,106,'mkdf_instructor_social_icon_pack_1_fa_icon','fa-google-plus'),(2689,106,'mkdf_instructor_social_icon_1_link','https://plus.google.com'),(2690,106,'mkdf_instructor_social_icon_1_target','_blank'),(2691,106,'mkdf_instructor_social_icon_pack_2','font_elegant'),(2692,106,'mkdf_instructor_social_icon_pack_2_fa_icon','fa-facebook'),(2693,106,'mkdf_instructor_social_icon_2_link','https://www.facebook.com/'),(2694,106,'mkdf_instructor_social_icon_2_target','_blank'),(2695,106,'mkdf_instructor_social_icon_pack_3','font_elegant'),(2696,106,'mkdf_instructor_social_icon_pack_3_fa_icon','fa-twitter'),(2697,106,'mkdf_instructor_social_icon_3_link','https://www.twitter.com/'),(2698,106,'mkdf_instructor_social_icon_3_target','_blank'),(2699,106,'mkdf_disable_header_widget_logo_area_meta','no'),(2700,106,'mkdf_disable_header_widget_menu_area_meta','no'),(2701,106,'mkdf_disable_footer_meta','no'),(2703,106,'_wpb_vc_js_status','true'),(2704,106,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(2705,106,'mkdf_title_area_height_meta','250'),(2706,106,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(2707,106,'mkdf_title_area_background_image_behavior_meta','parallax'),(2708,106,'mkdf_title_area_vertical_alignment_meta','header_bottom'),(2709,106,'mkdf_title_text_color_meta','#ffffff'),(2710,106,'mkdf_breadcrumbs_color_meta','#ffffff'),(2711,106,'mkdf_page_content_top_padding','100'),(2712,106,'_thumbnail_id','4497'),(2713,106,'_wp_old_slug','kathryn-webb-2'),(2714,106,'_wp_old_slug','jennifer-powell-2'),(2715,106,'_wp_old_slug','dave-robbinson'),(2716,106,'_wp_old_slug','dave-robbins-2'),(2717,106,'_dp_original','105'),(2718,106,'_wp_old_slug','keith-taylor-2'),(2719,106,'mkdf_instructor_social_icon_pack_1_fe_icon','social_googleplus'),(2720,106,'mkdf_instructor_social_icon_pack_2_fe_icon','social_facebook'),(2721,106,'mkdf_instructor_social_icon_pack_3_fe_icon','social_twitter'),(2722,106,'show_footer_custom_widget_areas','no'),(2738,108,'mkdf_page_content_behind_header_meta','no'),(2739,108,'mkdf_boxed_background_image_attachment_meta','fixed'),(2740,108,'mkdf_instructor_title','Giáo viên tiểu học'),(2741,108,'mkdf_instructor_vita','Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a mauris. '),(2742,108,'mkdf_instructor_social_icon_pack_1','font_awesome'),(2743,108,'mkdf_instructor_social_icon_pack_1_fa_icon','fa-google-plus'),(2744,108,'mkdf_instructor_social_icon_1_link','https://plus.google.com'),(2745,108,'mkdf_instructor_social_icon_1_target','_blank'),(2746,108,'mkdf_instructor_social_icon_pack_2','font_elegant'),(2747,108,'mkdf_instructor_social_icon_pack_2_fa_icon','fa-facebook'),(2748,108,'mkdf_instructor_social_icon_2_link','https://www.facebook.com/'),(2749,108,'mkdf_instructor_social_icon_2_target','_blank'),(2750,108,'mkdf_instructor_social_icon_pack_3','font_elegant'),(2751,108,'mkdf_instructor_social_icon_pack_3_fa_icon','fa-twitter'),(2752,108,'mkdf_instructor_social_icon_3_link','https://www.twitter.com/'),(2753,108,'mkdf_instructor_social_icon_3_target','_blank'),(2754,108,'mkdf_disable_header_widget_logo_area_meta','no'),(2755,108,'mkdf_disable_header_widget_menu_area_meta','no'),(2756,108,'mkdf_disable_footer_meta','no'),(2758,108,'_wpb_vc_js_status','true'),(2759,108,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(2760,108,'mkdf_title_area_height_meta','250'),(2761,108,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(2762,108,'mkdf_title_area_background_image_behavior_meta','parallax'),(2763,108,'mkdf_title_area_vertical_alignment_meta','header_bottom'),(2764,108,'mkdf_title_text_color_meta','#ffffff'),(2765,108,'mkdf_breadcrumbs_color_meta','#ffffff'),(2766,108,'mkdf_page_content_top_padding','100'),(2767,108,'_thumbnail_id','4497'),(2768,108,'_wp_old_slug','kathryn-webb-2'),(2769,108,'_wp_old_slug','jennifer-powell-2'),(2770,108,'_wp_old_slug','dave-robbinson'),(2771,108,'_wp_old_slug','dave-robbins-2'),(2772,108,'_wp_old_slug','keith-taylor-2'),(2773,108,'_dp_original','106'),(2774,108,'_wp_old_slug','jenny-king'),(2775,108,'_wp_old_slug','jennie-king-2'),(2776,108,'mkdf_instructor_social_icon_pack_1_fe_icon','social_googleplus'),(2777,108,'mkdf_instructor_social_icon_pack_2_fe_icon','social_facebook'),(2778,108,'mkdf_instructor_social_icon_pack_3_fe_icon','social_twitter'),(2779,108,'show_footer_custom_widget_areas','no'),(2797,109,'mkdf_page_content_behind_header_meta','no'),(2798,109,'mkdf_boxed_background_image_attachment_meta','fixed'),(2799,109,'mkdf_instructor_title','Giáo viên tiểu học'),(2800,109,'mkdf_instructor_vita','Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a mauris. '),(2801,109,'mkdf_instructor_social_icon_pack_1','font_awesome'),(2802,109,'mkdf_instructor_social_icon_pack_1_fa_icon','fa-google-plus'),(2803,109,'mkdf_instructor_social_icon_1_link','https://plus.google.com'),(2804,109,'mkdf_instructor_social_icon_1_target','_blank'),(2805,109,'mkdf_instructor_social_icon_pack_2','font_elegant'),(2806,109,'mkdf_instructor_social_icon_pack_2_fa_icon','fa-facebook'),(2807,109,'mkdf_instructor_social_icon_2_link','https://www.facebook.com/'),(2808,109,'mkdf_instructor_social_icon_2_target','_blank'),(2809,109,'mkdf_instructor_social_icon_pack_3','font_elegant'),(2810,109,'mkdf_instructor_social_icon_pack_3_fa_icon','fa-twitter'),(2811,109,'mkdf_instructor_social_icon_3_link','https://www.twitter.com/'),(2812,109,'mkdf_instructor_social_icon_3_target','_blank'),(2813,109,'mkdf_disable_header_widget_logo_area_meta','no'),(2814,109,'mkdf_disable_header_widget_menu_area_meta','no'),(2815,109,'mkdf_disable_footer_meta','no'),(2817,109,'_wpb_vc_js_status','true'),(2818,109,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(2819,109,'mkdf_title_area_height_meta','250'),(2820,109,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(2821,109,'mkdf_title_area_background_image_behavior_meta','parallax'),(2822,109,'mkdf_title_area_vertical_alignment_meta','header_bottom'),(2823,109,'mkdf_title_text_color_meta','#ffffff'),(2824,109,'mkdf_breadcrumbs_color_meta','#ffffff'),(2825,109,'mkdf_page_content_top_padding','100'),(2826,109,'_thumbnail_id','4496'),(2827,109,'_wp_old_slug','kathryn-webb-2'),(2828,109,'_wp_old_slug','jennifer-powell-2'),(2829,109,'_wp_old_slug','dave-robbinson'),(2830,109,'_wp_old_slug','dave-robbins-2'),(2831,109,'_wp_old_slug','keith-taylor-2'),(2832,109,'_wp_old_slug','jenny-king'),(2833,109,'_dp_original','108'),(2834,109,'_wp_old_slug','david-sanders-2'),(2835,109,'mkdf_instructor_social_icon_pack_1_fe_icon','social_googleplus'),(2836,109,'mkdf_instructor_social_icon_pack_2_fe_icon','social_facebook'),(2837,109,'mkdf_instructor_social_icon_pack_3_fe_icon','social_twitter'),(2838,109,'show_footer_custom_widget_areas','no'),(2843,110,'mkdf_page_content_behind_header_meta','no'),(2844,110,'mkdf_boxed_background_image_attachment_meta','fixed'),(2845,110,'mkdf_instructor_title','Giáo viên tiểu học'),(2846,110,'mkdf_instructor_vita','Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a mauris. '),(2847,110,'mkdf_instructor_social_icon_pack_1','font_awesome'),(2848,110,'mkdf_instructor_social_icon_pack_1_fa_icon','fa-google-plus'),(2849,110,'mkdf_instructor_social_icon_1_link','https://plus.google.com'),(2850,110,'mkdf_instructor_social_icon_1_target','_blank'),(2851,110,'mkdf_instructor_social_icon_pack_2','font_elegant'),(2852,110,'mkdf_instructor_social_icon_pack_2_fa_icon','fa-facebook'),(2853,110,'mkdf_instructor_social_icon_2_link','https://www.facebook.com/'),(2854,110,'mkdf_instructor_social_icon_2_target','_blank'),(2855,110,'mkdf_instructor_social_icon_pack_3','font_elegant'),(2856,110,'mkdf_instructor_social_icon_pack_3_fa_icon','fa-twitter'),(2857,110,'mkdf_instructor_social_icon_3_link','https://www.twitter.com/'),(2858,110,'mkdf_instructor_social_icon_3_target','_blank'),(2859,110,'mkdf_disable_header_widget_logo_area_meta','no'),(2860,110,'mkdf_disable_header_widget_menu_area_meta','no'),(2861,110,'mkdf_disable_footer_meta','no'),(2863,110,'_wpb_vc_js_status','true'),(2864,110,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(2865,110,'mkdf_title_area_height_meta','250'),(2866,110,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(2867,110,'mkdf_title_area_background_image_behavior_meta','parallax'),(2868,110,'mkdf_title_area_vertical_alignment_meta','header_bottom'),(2869,110,'mkdf_title_text_color_meta','#ffffff'),(2870,110,'mkdf_breadcrumbs_color_meta','#ffffff'),(2871,110,'mkdf_page_content_top_padding','100'),(2873,110,'_thumbnail_id','4496'),(2874,110,'_dp_original','10'),(2875,110,'_wp_old_slug','preston-marshall-2'),(2876,110,'mkdf_instructor_social_icon_pack_1_fe_icon','social_googleplus'),(2877,110,'mkdf_instructor_social_icon_pack_2_fe_icon','social_facebook'),(2878,110,'mkdf_instructor_social_icon_pack_3_fe_icon','social_twitter'),(2879,110,'show_footer_custom_widget_areas','no'),(2880,126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2881,126,'slide_template','default'),(2882,126,'_bbp_last_active_time','2017-06-14 10:25:48'),(2883,126,'_bbp_forum_subforum_count','0'),(2884,126,'_bbp_reply_count','7'),(2885,126,'_bbp_total_reply_count','7'),(2886,126,'_bbp_topic_count','4'),(2887,126,'_bbp_total_topic_count','4'),(2888,126,'_bbp_topic_count_hidden','0'),(2889,126,'_bbp_last_topic_id','3260'),(2890,126,'_bbp_last_reply_id','3260'),(2891,126,'_bbp_last_active_id','3260'),(2993,3011,'mkdf_course_instructor_meta','101'),(2994,3011,'mkdf_course_duration_meta','2'),(2995,3011,'mkdf_course_duration_parameter_meta','weeks'),(2996,3011,'mkdf_course_retake_number_meta','2'),(2997,3011,'mkdf_course_featured_meta','no'),(2998,3011,'mkdf_course_passing_percentage_meta','85'),(2999,3011,'mkdf_course_free_meta','yes'),(3000,3011,'mkdf_course_curriculum','a:2:{i:0;a:4:{s:12:\"section_name\";s:6:\"WEEK 1\";s:13:\"section_title\";s:12:\"Useful Tools\";s:19:\"section_description\";s:234:\"Starting Module: you’ll learn about different types of social software, how to think about physical collaboration and digital collaboration using the same framework, and what the challenges to success for collaborative software are.\";s:16:\"section_elements\";a:4:{i:0;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:3:\"176\";}i:1;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:3:\"195\";}i:2;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:3:\"203\";}i:3;a:2:{s:4:\"type\";s:4:\"quiz\";s:5:\"value\";s:3:\"190\";}}}i:1;a:4:{s:12:\"section_name\";s:6:\"WEEK 2\";s:13:\"section_title\";s:22:\"Programming Principles\";s:19:\"section_description\";s:234:\"Advanced Module: you’ll learn about different types of social software, how to think about physical collaboration and digital collaboration using the same framework, and what the challenges to success for collaborative software are.\";s:16:\"section_elements\";a:4:{i:0;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:3:\"237\";}i:1;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:3:\"203\";}i:2;a:2:{s:4:\"type\";s:6:\"lesson\";s:5:\"value\";s:3:\"176\";}i:3;a:2:{s:4:\"type\";s:4:\"quiz\";s:5:\"value\";s:3:\"190\";}}}}'),(3001,3011,'mkdf_page_content_behind_header_meta','no'),(3002,3011,'mkdf_boxed_background_image_attachment_meta','fixed'),(3003,3011,'mkdf_disable_header_widget_logo_area_meta','no'),(3004,3011,'mkdf_disable_header_widget_menu_area_meta','no'),(3005,3011,'mkdf_disable_footer_meta','no'),(3007,3011,'_wpb_vc_js_status','true'),(3008,3011,'mkdf_course_maximum_students_meta','150'),(3009,3011,'mkdf_course_curriculum_desc_meta','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in. antas aliquam dolores mea no. No eos saepe vidisse ornatus, duo cu oratio sensibus. Erant perfecto mea ex, ei vis dolorem definitiones. Autem euripidis cu eum, sea posse. '),(3010,3011,'_oembed_3bccd48a7c6f571eedd99e115ef8ed9a','{{unknown}}'),(3011,3011,'mkdf_title_text_color_meta','#ffffff'),(3012,3011,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(3013,3011,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(3014,3011,'mkdf_title_area_background_image_behavior_meta','parallax'),(3015,3011,'mkdf_sidebar_layout_meta','sidebar-25-right'),(3016,3011,'mkdf_custom_sidebar_area_meta','sidebar-course'),(3017,3011,'mkdf_menu_area_in_grid_meta','yes'),(3018,3011,'mkdf_page_content_top_padding','64'),(3019,3011,'mkdf_page_content_top_padding_mobile','yes'),(3020,3011,'mkdf_course_users_attended','1'),(3021,3011,'mkdf_course_forum_meta','3267'),(3022,3011,'_thumbnail_id','3008'),(3023,3011,'_dp_original','692'),(3024,3011,'show_footer_custom_widget_areas','no'),(3025,3267,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3026,3267,'slide_template','default'),(3027,3267,'_wpb_vc_js_status','false'),(3028,3267,'_bbp_last_active_time','2017-06-14 11:05:19'),(3029,3267,'_bbp_forum_subforum_count','0'),(3030,3267,'_bbp_reply_count','2'),(3031,3267,'_bbp_total_reply_count','2'),(3032,3267,'_bbp_topic_count','3'),(3033,3267,'_bbp_total_topic_count','3'),(3034,3267,'_bbp_topic_count_hidden','0'),(3035,3267,'_bbp_last_reply_id','3285'),(3036,3267,'_bbp_last_topic_id','3284'),(3037,3267,'_bbp_last_active_id','3285'),(3038,3269,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3039,3269,'slide_template','default'),(3040,3269,'_wpb_vc_js_status','false'),(3041,3269,'_bbp_last_active_time','2017-06-14 11:05:33'),(3042,3269,'_bbp_forum_subforum_count','0'),(3043,3269,'_bbp_reply_count','4'),(3044,3269,'_bbp_total_reply_count','4'),(3045,3269,'_bbp_topic_count','3'),(3046,3269,'_bbp_total_topic_count','3'),(3047,3269,'_bbp_topic_count_hidden','0'),(3048,3269,'_bbp_last_reply_id','3286'),(3049,3269,'_bbp_last_topic_id','3283'),(3050,3269,'_bbp_last_active_id','3286'),(3051,19,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3052,19,'mkdf_lesson_description_meta','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in.'),(3053,19,'mkdf_lesson_duration_meta','2'),(3054,19,'mkdf_lesson_duration_parameter_meta','minutes'),(3055,19,'mkdf_lesson_free_meta','no'),(3056,19,'mkdf_lesson_type_meta','video'),(3057,19,'mkdf_lesson_video_type_meta','social_networks'),(3058,19,'mkdf_lesson_video_link_meta','https://vimeo.com/30909114'),(3059,19,'mkdf_lesson_audio_type_meta','social_networks'),(3060,19,'mkdf_page_content_behind_header_meta','no'),(3061,19,'mkdf_boxed_background_image_attachment_meta','fixed'),(3062,19,'mkdf_disable_header_widget_logo_area_meta','no'),(3063,19,'mkdf_disable_header_widget_menu_area_meta','no'),(3064,19,'mkdf_disable_footer_meta','no'),(3065,19,'slide_template','default'),(3086,27,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3087,27,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3088,27,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3089,27,'mkdf_lesson_description_meta','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in.'),(3090,27,'mkdf_lesson_duration_meta','15'),(3091,27,'mkdf_lesson_duration_parameter_meta','minutes'),(3092,27,'mkdf_lesson_free_meta','yes'),(3093,27,'mkdf_lesson_type_meta','reading'),(3094,27,'mkdf_lesson_video_type_meta','social_networks'),(3095,27,'mkdf_lesson_video_link_meta','https://vimeo.com/53141075'),(3096,27,'mkdf_lesson_audio_type_meta','social_networks'),(3097,27,'mkdf_page_content_behind_header_meta','no'),(3098,27,'mkdf_boxed_background_image_attachment_meta','fixed'),(3099,27,'mkdf_disable_header_widget_logo_area_meta','no'),(3100,27,'mkdf_disable_header_widget_menu_area_meta','no'),(3101,27,'mkdf_disable_footer_meta','no'),(3102,27,'slide_template',''),(3103,27,'_dp_original','20'),(3104,35,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3105,35,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3106,35,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3107,35,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3108,35,'mkdf_lesson_description_meta','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in.'),(3109,35,'mkdf_lesson_duration_meta','10'),(3110,35,'mkdf_lesson_duration_parameter_meta','minutes'),(3111,35,'mkdf_lesson_free_meta','no'),(3112,35,'mkdf_lesson_type_meta','audio'),(3113,35,'mkdf_lesson_video_type_meta','social_networks'),(3114,35,'mkdf_lesson_video_link_meta','https://vimeo.com/53141075'),(3115,35,'mkdf_lesson_audio_type_meta','social_networks'),(3116,35,'mkdf_page_content_behind_header_meta','no'),(3117,35,'mkdf_boxed_background_image_attachment_meta','fixed'),(3118,35,'mkdf_disable_header_widget_logo_area_meta','no'),(3119,35,'mkdf_disable_header_widget_menu_area_meta','no'),(3120,35,'mkdf_disable_footer_meta','no'),(3121,35,'slide_template','default'),(3122,35,'_dp_original','27'),(3123,35,'mkdf_lesson_audio_link_meta','https://www.englishlistening.com/index.php/listen-to-passages/'),(3332,176,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3333,176,'mkdf_lesson_description_meta','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in.'),(3334,176,'mkdf_lesson_duration_meta','20'),(3335,176,'mkdf_lesson_duration_parameter_meta','minutes'),(3336,176,'mkdf_lesson_free_meta','yes'),(3337,176,'mkdf_lesson_type_meta','reading'),(3338,176,'mkdf_lesson_video_type_meta','social_networks'),(3339,176,'mkdf_lesson_audio_type_meta','social_networks'),(3340,176,'mkdf_page_content_behind_header_meta','no'),(3341,176,'mkdf_boxed_background_image_attachment_meta','fixed'),(3342,176,'mkdf_disable_header_widget_logo_area_meta','no'),(3343,176,'mkdf_disable_header_widget_menu_area_meta','no'),(3344,176,'mkdf_disable_footer_meta','no'),(3345,176,'slide_template',''),(3346,176,'_wp_old_slug','connecting-people-through-technology'),(3347,195,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3348,195,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3349,195,'mkdf_lesson_description_meta','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in.'),(3350,195,'mkdf_lesson_duration_meta','3'),(3351,195,'mkdf_lesson_duration_parameter_meta','minutes'),(3352,195,'mkdf_lesson_free_meta','yes'),(3353,195,'mkdf_lesson_type_meta','video'),(3354,195,'mkdf_lesson_video_type_meta','social_networks'),(3355,195,'mkdf_lesson_audio_type_meta','social_networks'),(3356,195,'mkdf_page_content_behind_header_meta','no'),(3357,195,'mkdf_boxed_background_image_attachment_meta','fixed'),(3358,195,'mkdf_disable_header_widget_logo_area_meta','no'),(3359,195,'mkdf_disable_header_widget_menu_area_meta','no'),(3360,195,'mkdf_disable_footer_meta','no'),(3361,195,'slide_template','default'),(3362,195,'_dp_original','176'),(3363,195,'mkdf_lesson_video_link_meta','https://vimeo.com/54889880'),(3364,203,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3365,203,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3366,203,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3367,203,'mkdf_lesson_description_meta','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in.'),(3368,203,'mkdf_lesson_duration_meta','10'),(3369,203,'mkdf_lesson_duration_parameter_meta','minutes'),(3370,203,'mkdf_lesson_free_meta','no'),(3371,203,'mkdf_lesson_type_meta','video'),(3372,203,'mkdf_lesson_video_type_meta','social_networks'),(3373,203,'mkdf_lesson_audio_type_meta','social_networks'),(3374,203,'mkdf_page_content_behind_header_meta','no'),(3375,203,'mkdf_boxed_background_image_attachment_meta','fixed'),(3376,203,'mkdf_disable_header_widget_logo_area_meta','no'),(3377,203,'mkdf_disable_header_widget_menu_area_meta','no'),(3378,203,'mkdf_disable_footer_meta','no'),(3379,203,'slide_template','default'),(3380,203,'mkdf_lesson_video_link_meta','https://vimeo.com/50738950'),(3381,203,'_dp_original','195'),(3382,237,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3383,237,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3384,237,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3385,237,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3386,237,'mkdf_lesson_description_meta','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in.'),(3387,237,'mkdf_lesson_duration_meta','5'),(3388,237,'mkdf_lesson_duration_parameter_meta','minutes'),(3389,237,'mkdf_lesson_free_meta','yes'),(3390,237,'mkdf_lesson_type_meta','audio'),(3391,237,'mkdf_lesson_video_type_meta','social_networks'),(3392,237,'mkdf_lesson_audio_type_meta','social_networks'),(3393,237,'mkdf_page_content_behind_header_meta','no'),(3394,237,'mkdf_boxed_background_image_attachment_meta','fixed'),(3395,237,'mkdf_disable_header_widget_logo_area_meta','no'),(3396,237,'mkdf_disable_header_widget_menu_area_meta','no'),(3397,237,'mkdf_disable_footer_meta','no'),(3398,237,'slide_template','default'),(3399,237,'mkdf_lesson_video_link_meta','https://vimeo.com/50738950'),(3400,237,'_dp_original','203'),(3401,237,'mkdf_lesson_audio_link_meta','http://thewebahead.net/'),(3426,248,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3427,248,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3428,248,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3429,248,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3430,248,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3431,248,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3432,248,'mkdf_lesson_description_meta','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in.'),(3433,248,'mkdf_lesson_duration_meta','15'),(3434,248,'mkdf_lesson_duration_parameter_meta','minutes'),(3435,248,'mkdf_lesson_free_meta','yes'),(3436,248,'mkdf_lesson_type_meta','video'),(3437,248,'mkdf_lesson_video_type_meta','social_networks'),(3438,248,'mkdf_lesson_video_link_meta','https://vimeo.com/53141075'),(3439,248,'mkdf_lesson_audio_type_meta','social_networks'),(3440,248,'mkdf_page_content_behind_header_meta','no'),(3441,248,'mkdf_boxed_background_image_attachment_meta','fixed'),(3442,248,'mkdf_disable_header_widget_logo_area_meta','no'),(3443,248,'mkdf_disable_header_widget_menu_area_meta','no'),(3444,248,'mkdf_disable_footer_meta','no'),(3445,248,'slide_template','default'),(3446,248,'mkdf_lesson_audio_link_meta','https://spanish-resources.com/level/beginners/skill/listening/topic/describing_people/grammar/adjectives/publisher/spanish-resources.com-678/channel/samples-4/worksheet/1803'),(3447,248,'_dp_original','246'),(3474,260,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3475,260,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3476,260,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3477,260,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3478,260,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3479,260,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3480,260,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3481,260,'mkdf_lesson_description_meta','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in.'),(3482,260,'mkdf_lesson_duration_meta','15'),(3483,260,'mkdf_lesson_duration_parameter_meta','minutes'),(3484,260,'mkdf_lesson_free_meta','yes'),(3485,260,'mkdf_lesson_type_meta','video'),(3486,260,'mkdf_lesson_video_type_meta','social_networks'),(3487,260,'mkdf_lesson_video_link_meta','https://vimeo.com/151651883'),(3488,260,'mkdf_lesson_audio_type_meta','social_networks'),(3489,260,'mkdf_page_content_behind_header_meta','no'),(3490,260,'mkdf_boxed_background_image_attachment_meta','fixed'),(3491,260,'mkdf_disable_header_widget_logo_area_meta','no'),(3492,260,'mkdf_disable_header_widget_menu_area_meta','no'),(3493,260,'mkdf_disable_footer_meta','no'),(3494,260,'slide_template','default'),(3495,260,'mkdf_lesson_audio_link_meta','https://spanish-resources.com/level/beginners/skill/listening/topic/describing_people/grammar/adjectives/publisher/spanish-resources.com-678/channel/samples-4/worksheet/1803'),(3496,260,'_dp_original','248'),(3497,262,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3498,262,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3499,262,'mkdf_lesson_description_meta','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in.'),(3500,262,'mkdf_lesson_duration_meta','2'),(3501,262,'mkdf_lesson_duration_parameter_meta','minutes'),(3502,262,'mkdf_lesson_free_meta','no'),(3503,262,'mkdf_lesson_type_meta','video'),(3504,262,'mkdf_lesson_video_type_meta','social_networks'),(3505,262,'mkdf_lesson_video_link_meta','https://vimeo.com/122410481'),(3506,262,'mkdf_lesson_audio_type_meta','social_networks'),(3507,262,'mkdf_page_content_behind_header_meta','no'),(3508,262,'mkdf_boxed_background_image_attachment_meta','fixed'),(3509,262,'mkdf_disable_header_widget_logo_area_meta','no'),(3510,262,'mkdf_disable_header_widget_menu_area_meta','no'),(3511,262,'mkdf_disable_footer_meta','no'),(3512,262,'slide_template','default'),(3513,262,'_dp_original','19'),(3514,263,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3515,263,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3516,263,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3517,263,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3518,263,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3519,263,'mkdf_lesson_description_meta','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in.'),(3520,263,'mkdf_lesson_duration_meta','15'),(3521,263,'mkdf_lesson_duration_parameter_meta','minutes'),(3522,263,'mkdf_lesson_free_meta','no'),(3523,263,'mkdf_lesson_type_meta','audio'),(3524,263,'mkdf_lesson_video_type_meta','social_networks'),(3525,263,'mkdf_lesson_video_link_meta','https://vimeo.com/53141075'),(3526,263,'mkdf_lesson_audio_type_meta','social_networks'),(3527,263,'mkdf_page_content_behind_header_meta','no'),(3528,263,'mkdf_boxed_background_image_attachment_meta','fixed'),(3529,263,'mkdf_disable_header_widget_logo_area_meta','no'),(3530,263,'mkdf_disable_header_widget_menu_area_meta','no'),(3531,263,'mkdf_disable_footer_meta','no'),(3532,263,'slide_template','default'),(3533,263,'mkdf_lesson_audio_link_meta','http://www.wsj.com/podcasts/how-technology-is-revolutionizing-wealth-advice/FA223FB1-2AA9-4416-B544-2BF5F8D1D092.html'),(3534,263,'_dp_original','35'),(3535,265,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3536,265,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3537,265,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3538,265,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3539,265,'mkdf_lesson_description_meta','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in.'),(3540,265,'mkdf_lesson_duration_meta','25'),(3541,265,'mkdf_lesson_duration_parameter_meta','minutes'),(3542,265,'mkdf_lesson_free_meta','no'),(3543,265,'mkdf_lesson_type_meta','reading'),(3544,265,'mkdf_lesson_video_type_meta','social_networks'),(3545,265,'mkdf_lesson_video_link_meta','https://vimeo.com/53141075'),(3546,265,'mkdf_lesson_audio_type_meta','social_networks'),(3547,265,'mkdf_page_content_behind_header_meta','no'),(3548,265,'mkdf_boxed_background_image_attachment_meta','fixed'),(3549,265,'mkdf_disable_header_widget_logo_area_meta','no'),(3550,265,'mkdf_disable_header_widget_menu_area_meta','no'),(3551,265,'mkdf_disable_footer_meta','no'),(3552,265,'slide_template','default'),(3553,265,'_dp_original','27'),(3554,175,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3555,175,'mkdf_masonry_gallery_item_title_tag','h4'),(3556,175,'mkdf_masonry_gallery_item_icon','linear_icons'),(3557,175,'mkdf_masonry_gallery_item_icon_linear_icon','lnr-diamond'),(3558,175,'mkdf_masonry_gallery_item_link','http://iacademy.mikado-themes.com/about/'),(3559,175,'mkdf_masonry_gallery_item_link_target','_self'),(3560,175,'mkdf_masonry_gallery_item_size','square-small'),(3561,175,'mkdf_masonry_gallery_item_type','simple'),(3562,175,'mkdf_masonry_gallery_button_label','Learn more'),(3563,175,'mkdf_masonry_gallery_simple_content_background_skin','default'),(3564,175,'slide_template','default'),(3565,181,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3566,181,'_thumbnail_id','184'),(3567,181,'mkdf_masonry_gallery_item_title_tag','h4'),(3568,181,'mkdf_masonry_gallery_item_icon','font_awesome'),(3569,181,'mkdf_masonry_gallery_item_link','http://iacademy.mikado-themes.com/become-an-instructor/'),(3570,181,'mkdf_masonry_gallery_item_link_target','_self'),(3571,181,'mkdf_masonry_gallery_item_size','square-small'),(3572,181,'mkdf_masonry_gallery_item_type','standard'),(3573,181,'mkdf_masonry_gallery_simple_content_background_skin','default'),(3574,181,'slide_template',''),(3575,189,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3576,189,'mkdf_masonry_gallery_item_title_tag','h2'),(3577,189,'mkdf_masonry_gallery_item_text','Lorem Ipsn gravida nibh vel velit auctor aliquetnean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id eis sed odio sit amet nibh.'),(3578,189,'mkdf_masonry_gallery_item_icon','font_awesome'),(3579,189,'mkdf_masonry_gallery_item_link','http://iacademy.mikado-themes.com/become-an-instructor/'),(3580,189,'mkdf_masonry_gallery_item_link_target','_self'),(3581,189,'mkdf_masonry_gallery_item_size','square-big'),(3582,189,'mkdf_masonry_gallery_item_type','extended'),(3583,189,'mkdf_masonry_gallery_button_label','Register now'),(3584,189,'mkdf_masonry_gallery_subtitle_label','New Courses'),(3585,189,'mkdf_masonry_gallery_simple_content_background_skin','default'),(3586,189,'slide_template',''),(3587,189,'_thumbnail_id','196'),(3588,191,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3589,191,'mkdf_masonry_gallery_item_title_tag','h4'),(3590,191,'mkdf_masonry_gallery_item_icon','linear_icons'),(3591,191,'mkdf_masonry_gallery_item_icon_linear_icon','lnr-license'),(3592,191,'mkdf_masonry_gallery_item_link','http://iacademy.mikado-themes.com/courses/standard-list/'),(3593,191,'mkdf_masonry_gallery_item_link_target','_self'),(3594,191,'mkdf_masonry_gallery_item_size','square-small'),(3595,191,'mkdf_masonry_gallery_item_type','simple'),(3596,191,'mkdf_masonry_gallery_button_label','Explore the college'),(3597,191,'mkdf_masonry_gallery_simple_content_background_skin','light'),(3598,191,'slide_template','default'),(3599,191,'_wp_old_slug','empowering-students-to-become-scholars'),(3600,193,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3601,193,'mkdf_masonry_gallery_item_title_tag','h4'),(3602,193,'mkdf_masonry_gallery_item_icon','linear_icons'),(3603,193,'mkdf_masonry_gallery_item_icon_linear_icon','lnr-earth'),(3604,193,'mkdf_masonry_gallery_item_link','http://iacademy.mikado-themes.com/gallery/'),(3605,193,'mkdf_masonry_gallery_item_link_target','_self'),(3606,193,'mkdf_masonry_gallery_item_size','square-small'),(3607,193,'mkdf_masonry_gallery_item_type','standard'),(3608,193,'mkdf_masonry_gallery_button_label','Learn more'),(3609,193,'mkdf_masonry_gallery_simple_content_background_skin','default'),(3610,193,'slide_template','default'),(3611,193,'_thumbnail_id','197'),(3612,199,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3613,199,'mkdf_masonry_gallery_item_title_tag','h2'),(3614,199,'mkdf_masonry_gallery_item_text','Lorem Ipsn gravida nibh vel velit auctor aliquetnean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id eis sed odio sit amet nibh.'),(3615,199,'mkdf_masonry_gallery_item_icon','font_awesome'),(3616,199,'mkdf_masonry_gallery_item_link','https://vimeo.com/160672711'),(3617,199,'mkdf_masonry_gallery_item_link_target','_blank'),(3618,199,'mkdf_masonry_gallery_item_size','square-big'),(3619,199,'mkdf_masonry_gallery_item_type','extended'),(3620,199,'mkdf_masonry_gallery_button_label','Watch video '),(3621,199,'mkdf_masonry_gallery_subtitle_label',' Closer to Home'),(3622,199,'mkdf_masonry_gallery_simple_content_background_skin','default'),(3623,199,'slide_template','default'),(3624,199,'_thumbnail_id','204'),(3625,199,'mkdf_masonry_gallery_subtitle_color','#ffffff'),(3626,199,'mkdf_masonry_gallery_item_button_icon','linear_icons'),(3627,199,'mkdf_masonry_gallery_item_button_icon_linear_icon','lnr-camera-video'),(3628,201,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3629,201,'_thumbnail_id','188'),(3630,201,'mkdf_masonry_gallery_item_title_tag','h4'),(3631,201,'mkdf_masonry_gallery_item_icon','font_awesome'),(3632,201,'mkdf_masonry_gallery_item_link_target','_self'),(3633,201,'mkdf_masonry_gallery_item_size','square-small'),(3634,201,'mkdf_masonry_gallery_item_type','standard'),(3635,201,'mkdf_masonry_gallery_simple_content_background_skin','default'),(3636,201,'slide_template',''),(3637,201,'mkdf_masonry_gallery_item_link','#'),(3638,205,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3639,205,'mkdf_masonry_gallery_item_title_tag','h4'),(3640,205,'mkdf_masonry_gallery_item_icon','font_awesome'),(3641,205,'mkdf_masonry_gallery_item_link','http://iacademy.mikado-themes.com/contact/'),(3642,205,'mkdf_masonry_gallery_item_link_target','_self'),(3643,205,'mkdf_masonry_gallery_item_size','square-small'),(3644,205,'mkdf_masonry_gallery_item_type','standard'),(3645,205,'mkdf_masonry_gallery_button_label','Learn more'),(3646,205,'mkdf_masonry_gallery_simple_content_background_skin','default'),(3647,205,'slide_template','default'),(3648,205,'_thumbnail_id','182'),(3649,206,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3650,206,'mkdf_masonry_gallery_item_title_tag','h4'),(3651,206,'mkdf_masonry_gallery_item_icon','linear_icons'),(3652,206,'mkdf_masonry_gallery_item_icon_linear_icon','lnr-bubble'),(3653,206,'mkdf_masonry_gallery_item_link','http://iacademy.mikado-themes.com/faq/'),(3654,206,'mkdf_masonry_gallery_item_link_target','_self'),(3655,206,'mkdf_masonry_gallery_item_size','square-small'),(3656,206,'mkdf_masonry_gallery_item_type','simple'),(3657,206,'mkdf_masonry_gallery_button_label','Learn more'),(3658,206,'mkdf_masonry_gallery_simple_content_background_skin','light'),(3659,206,'slide_template','default'),(3660,207,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3661,207,'_thumbnail_id','183'),(3662,207,'mkdf_masonry_gallery_item_title_tag','h4'),(3663,207,'mkdf_masonry_gallery_item_icon','font_awesome'),(3664,207,'mkdf_masonry_gallery_item_link','#'),(3665,207,'mkdf_masonry_gallery_item_link_target','_self'),(3666,207,'mkdf_masonry_gallery_item_size','square-small'),(3667,207,'mkdf_masonry_gallery_item_type','standard'),(3668,207,'mkdf_masonry_gallery_simple_content_background_skin','default'),(3669,207,'slide_template',''),(3670,1063,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3671,1063,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3672,1063,'mkdf_masonry_gallery_item_title_tag','h4'),(3673,1063,'mkdf_masonry_gallery_item_icon','linear_icons'),(3674,1063,'mkdf_masonry_gallery_item_icon_linear_icon','lnr-diamond'),(3675,1063,'mkdf_masonry_gallery_item_link','http://iacademy.mikado-themes.com/contact/'),(3676,1063,'mkdf_masonry_gallery_item_link_target','_self'),(3677,1063,'mkdf_masonry_gallery_item_size','square-small'),(3678,1063,'mkdf_masonry_gallery_item_type','simple'),(3679,1063,'mkdf_masonry_gallery_button_label','Learn more'),(3680,1063,'mkdf_masonry_gallery_simple_content_background_skin','default'),(3681,1063,'slide_template','default'),(3682,1063,'_dp_original','175'),(3683,1063,'_wp_old_slug','motivated-achievers-perform-learn-excel-3'),(3684,1064,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3685,1064,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3686,1064,'_thumbnail_id','184'),(3687,1064,'mkdf_masonry_gallery_item_title_tag','h4'),(3688,1064,'mkdf_masonry_gallery_item_icon','font_awesome'),(3689,1064,'mkdf_masonry_gallery_item_link','http://iacademy.mikado-themes.com/become-an-instructor/'),(3690,1064,'mkdf_masonry_gallery_item_link_target','_self'),(3691,1064,'mkdf_masonry_gallery_item_size','square-small'),(3692,1064,'mkdf_masonry_gallery_item_type','standard'),(3693,1064,'mkdf_masonry_gallery_simple_content_background_skin','default'),(3694,1064,'slide_template','default'),(3695,1064,'_dp_original','181'),(3696,1065,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3697,1065,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3698,1065,'mkdf_masonry_gallery_item_title_tag','h2'),(3699,1065,'mkdf_masonry_gallery_item_text','Lorem Ipsn gravida nibh vel velit auctor aliquetnean sollicitudin.'),(3700,1065,'mkdf_masonry_gallery_item_icon','font_awesome'),(3701,1065,'mkdf_masonry_gallery_item_link','http://iacademy.mikado-themes.com/become-an-instructor/'),(3702,1065,'mkdf_masonry_gallery_item_link_target','_self'),(3703,1065,'mkdf_masonry_gallery_item_size','square-big'),(3704,1065,'mkdf_masonry_gallery_item_type','extended'),(3705,1065,'mkdf_masonry_gallery_button_label','Register now'),(3706,1065,'mkdf_masonry_gallery_subtitle_label','New Courses'),(3707,1065,'mkdf_masonry_gallery_simple_content_background_skin','default'),(3708,1065,'slide_template',''),(3709,1065,'_thumbnail_id','196'),(3710,1065,'_dp_original','189'),(3711,1065,'_wp_old_slug','empowering-children-to-reach-their-potential-2'),(3712,1066,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3713,1066,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3714,1066,'mkdf_masonry_gallery_item_title_tag','h4'),(3715,1066,'mkdf_masonry_gallery_item_icon','linear_icons'),(3716,1066,'mkdf_masonry_gallery_item_icon_linear_icon','lnr-license'),(3717,1066,'mkdf_masonry_gallery_item_link','http://iacademy.mikado-themes.com/courses/standard-list/'),(3718,1066,'mkdf_masonry_gallery_item_link_target','_self'),(3719,1066,'mkdf_masonry_gallery_item_size','square-small'),(3720,1066,'mkdf_masonry_gallery_item_type','simple'),(3721,1066,'mkdf_masonry_gallery_button_label','Explore the college'),(3722,1066,'mkdf_masonry_gallery_simple_content_background_skin','light'),(3723,1066,'slide_template','default'),(3724,1066,'_wp_old_slug','empowering-students-to-become-scholars'),(3725,1066,'_dp_original','191'),(3726,1066,'mkdf_masonry_gallery_item_button_icon','font_awesome'),(3727,1067,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3728,1067,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3729,1067,'mkdf_masonry_gallery_item_title_tag','h4'),(3730,1067,'mkdf_masonry_gallery_item_icon','linear_icons'),(3731,1067,'mkdf_masonry_gallery_item_link','http://iacademy.mikado-themes.com/user-dashboard/'),(3732,1067,'mkdf_masonry_gallery_item_link_target','_self'),(3733,1067,'mkdf_masonry_gallery_item_size','square-small'),(3734,1067,'mkdf_masonry_gallery_item_type','standard'),(3735,1067,'mkdf_masonry_gallery_button_label','Learn more'),(3736,1067,'mkdf_masonry_gallery_simple_content_background_skin','default'),(3737,1067,'slide_template','default'),(3738,1067,'_thumbnail_id','197'),(3739,1067,'_dp_original','193'),(3740,1067,'_wp_old_slug','motivated-achievers-perform-learn-excel-4'),(3741,1068,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3742,1068,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3743,1068,'mkdf_masonry_gallery_item_title_tag','h2'),(3744,1068,'mkdf_masonry_gallery_item_text','Lorem Ipsn gravida nibh vel velit auctor aliquetnean sollicitudin.'),(3745,1068,'mkdf_masonry_gallery_item_icon','font_awesome'),(3746,1068,'mkdf_masonry_gallery_item_link','https://vimeo.com/160672711'),(3747,1068,'mkdf_masonry_gallery_item_link_target','_blank'),(3748,1068,'mkdf_masonry_gallery_item_size','square-big'),(3749,1068,'mkdf_masonry_gallery_item_type','extended'),(3750,1068,'mkdf_masonry_gallery_button_label','Watch video '),(3751,1068,'mkdf_masonry_gallery_subtitle_label',' Closer to Home'),(3752,1068,'mkdf_masonry_gallery_simple_content_background_skin','default'),(3753,1068,'slide_template','default'),(3754,1068,'_thumbnail_id','204'),(3755,1068,'_dp_original','199'),(3756,1068,'_wp_old_slug','personalized-tutoring-2'),(3757,1068,'mkdf_masonry_gallery_item_button_icon','linear_icons'),(3758,1068,'mkdf_masonry_gallery_subtitle_color','#ffffff'),(3759,1069,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3760,1069,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3761,1069,'_thumbnail_id','188'),(3762,1069,'mkdf_masonry_gallery_item_title_tag','h4'),(3763,1069,'mkdf_masonry_gallery_item_icon','font_awesome'),(3764,1069,'mkdf_masonry_gallery_item_link_target','_self'),(3765,1069,'mkdf_masonry_gallery_item_size','square-small'),(3766,1069,'mkdf_masonry_gallery_item_type','standard'),(3767,1069,'mkdf_masonry_gallery_simple_content_background_skin','default'),(3768,1069,'slide_template','default'),(3769,1069,'mkdf_masonry_gallery_item_link','#'),(3770,1069,'_dp_original','201'),(3771,1070,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3772,1070,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3773,1070,'mkdf_masonry_gallery_item_title_tag','h4'),(3774,1070,'mkdf_masonry_gallery_item_icon','font_awesome'),(3775,1070,'mkdf_masonry_gallery_item_link','http://iacademy.mikado-themes.com/events/2017-07/'),(3776,1070,'mkdf_masonry_gallery_item_link_target','_self'),(3777,1070,'mkdf_masonry_gallery_item_size','square-small'),(3778,1070,'mkdf_masonry_gallery_item_type','standard'),(3779,1070,'mkdf_masonry_gallery_button_label','Learn more'),(3780,1070,'mkdf_masonry_gallery_simple_content_background_skin','default'),(3781,1070,'slide_template','default'),(3782,1070,'_thumbnail_id','182'),(3783,1070,'_dp_original','205'),(3784,1071,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3785,1071,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3786,1071,'mkdf_masonry_gallery_item_title_tag','h4'),(3787,1071,'mkdf_masonry_gallery_item_icon','linear_icons'),(3788,1071,'mkdf_masonry_gallery_item_icon_linear_icon','lnr-bubble'),(3789,1071,'mkdf_masonry_gallery_item_link','http://iacademy.mikado-themes.com/about/'),(3790,1071,'mkdf_masonry_gallery_item_link_target','_self'),(3791,1071,'mkdf_masonry_gallery_item_size','square-small'),(3792,1071,'mkdf_masonry_gallery_item_type','simple'),(3793,1071,'mkdf_masonry_gallery_button_label','Learn more'),(3794,1071,'mkdf_masonry_gallery_simple_content_background_skin','light'),(3795,1071,'slide_template','default'),(3796,1071,'_dp_original','206'),(3797,1071,'_wp_old_slug','the-harder-i-work-the-smarter-i-get-2'),(3798,1072,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3799,1072,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3800,1072,'_thumbnail_id','183'),(3801,1072,'mkdf_masonry_gallery_item_title_tag','h4'),(3802,1072,'mkdf_masonry_gallery_item_icon','font_awesome'),(3803,1072,'mkdf_masonry_gallery_item_link','#'),(3804,1072,'mkdf_masonry_gallery_item_link_target','_self'),(3805,1072,'mkdf_masonry_gallery_item_size','square-small'),(3806,1072,'mkdf_masonry_gallery_item_type','standard'),(3807,1072,'mkdf_masonry_gallery_simple_content_background_skin','default'),(3808,1072,'slide_template','default'),(3809,1072,'_dp_original','207'),(3818,4064,'_menu_item_type','custom'),(3819,4064,'_menu_item_menu_item_parent','0'),(3820,4064,'_menu_item_object_id','4064'),(3821,4064,'_menu_item_object','custom'),(3822,4064,'_menu_item_target',''),(3823,4064,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3824,4064,'_menu_item_xfn',''),(3825,4064,'_menu_item_url','#'),(3826,4065,'_menu_item_type','custom'),(3827,4065,'_menu_item_menu_item_parent','4064'),(3828,4065,'_menu_item_object_id','4065'),(3829,4065,'_menu_item_object','custom'),(3830,4065,'_menu_item_target',''),(3831,4065,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3832,4065,'_menu_item_xfn',''),(3833,4065,'_menu_item_url','#'),(3834,4066,'_menu_item_type','custom'),(3835,4066,'_menu_item_menu_item_parent','0'),(3836,4066,'_menu_item_object_id','4066'),(3837,4066,'_menu_item_object','custom'),(3838,4066,'_menu_item_target',''),(3839,4066,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3840,4066,'_menu_item_xfn',''),(3841,4066,'_menu_item_url','#'),(3842,4067,'_menu_item_type','custom'),(3843,4067,'_menu_item_menu_item_parent','0'),(3844,4067,'_menu_item_object_id','4067'),(3845,4067,'_menu_item_object','custom'),(3846,4067,'_menu_item_target',''),(3847,4067,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3848,4067,'_menu_item_xfn',''),(3849,4067,'_menu_item_url','#'),(3850,4068,'_menu_item_type','custom'),(3851,4068,'_menu_item_menu_item_parent','0'),(3852,4068,'_menu_item_object_id','4068'),(3853,4068,'_menu_item_object','custom'),(3854,4068,'_menu_item_target',''),(3855,4068,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3856,4068,'_menu_item_xfn',''),(3857,4068,'_menu_item_url','#'),(3858,4069,'_menu_item_type','custom'),(3859,4069,'_menu_item_menu_item_parent','0'),(3860,4069,'_menu_item_object_id','4069'),(3861,4069,'_menu_item_object','custom'),(3862,4069,'_menu_item_target',''),(3863,4069,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3864,4069,'_menu_item_xfn',''),(3865,4069,'_menu_item_url','#'),(3882,4072,'_menu_item_type','custom'),(3883,4072,'_menu_item_menu_item_parent','4066'),(3884,4072,'_menu_item_object_id','4072'),(3885,4072,'_menu_item_object','custom'),(3886,4072,'_menu_item_target',''),(3887,4072,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3888,4072,'_menu_item_xfn',''),(3889,4072,'_menu_item_url','#'),(3898,4074,'_menu_item_type','custom'),(3899,4074,'_menu_item_menu_item_parent','4069'),(3900,4074,'_menu_item_object_id','4074'),(3901,4074,'_menu_item_object','custom'),(3902,4074,'_menu_item_target',''),(3903,4074,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3904,4074,'_menu_item_xfn',''),(3905,4074,'_menu_item_url','#'),(3906,4075,'_menu_item_type','custom'),(3907,4075,'_menu_item_menu_item_parent','4069'),(3908,4075,'_menu_item_object_id','4075'),(3909,4075,'_menu_item_object','custom'),(3910,4075,'_menu_item_target',''),(3911,4075,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3912,4075,'_menu_item_xfn',''),(3913,4075,'_menu_item_url','#'),(3914,4076,'_menu_item_type','custom'),(3915,4076,'_menu_item_menu_item_parent','4069'),(3916,4076,'_menu_item_object_id','4076'),(3917,4076,'_menu_item_object','custom'),(3918,4076,'_menu_item_target',''),(3919,4076,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3920,4076,'_menu_item_xfn',''),(3921,4076,'_menu_item_url','#'),(3922,4077,'_menu_item_type','custom'),(3923,4077,'_menu_item_menu_item_parent','0'),(3924,4077,'_menu_item_object_id','4077'),(3925,4077,'_menu_item_object','custom'),(3926,4077,'_menu_item_target',''),(3927,4077,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3928,4077,'_menu_item_xfn',''),(3929,4077,'_menu_item_url','#'),(3930,4078,'_menu_item_type','custom'),(3931,4078,'_menu_item_menu_item_parent','0'),(3932,4078,'_menu_item_object_id','4078'),(3933,4078,'_menu_item_object','custom'),(3934,4078,'_menu_item_target',''),(3935,4078,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3936,4078,'_menu_item_xfn',''),(3937,4078,'_menu_item_url','#'),(3938,4079,'_menu_item_type','custom'),(3939,4079,'_menu_item_menu_item_parent','0'),(3940,4079,'_menu_item_object_id','4079'),(3941,4079,'_menu_item_object','custom'),(3942,4079,'_menu_item_target',''),(3943,4079,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3944,4079,'_menu_item_xfn',''),(3945,4079,'_menu_item_url','#'),(3954,4081,'_menu_item_type','custom'),(3955,4081,'_menu_item_menu_item_parent','0'),(3956,4081,'_menu_item_object_id','4081'),(3957,4081,'_menu_item_object','custom'),(3958,4081,'_menu_item_target',''),(3959,4081,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3960,4081,'_menu_item_xfn',''),(3961,4081,'_menu_item_url','#'),(3962,4082,'_menu_item_type','custom'),(3963,4082,'_menu_item_menu_item_parent','4069'),(3964,4082,'_menu_item_object_id','4082'),(3965,4082,'_menu_item_object','custom'),(3966,4082,'_menu_item_target',''),(3967,4082,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3968,4082,'_menu_item_xfn',''),(3969,4082,'_menu_item_url','#'),(3970,4083,'_menu_item_type','custom'),(3971,4083,'_menu_item_menu_item_parent','4066'),(3972,4083,'_menu_item_object_id','4083'),(3973,4083,'_menu_item_object','custom'),(3974,4083,'_menu_item_target',''),(3975,4083,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3976,4083,'_menu_item_xfn',''),(3977,4083,'_menu_item_url','#'),(3978,4084,'_menu_item_type','custom'),(3979,4084,'_menu_item_menu_item_parent','0'),(3980,4084,'_menu_item_object_id','4084'),(3981,4084,'_menu_item_object','custom'),(3982,4084,'_menu_item_target',''),(3983,4084,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3984,4084,'_menu_item_xfn',''),(3985,4084,'_menu_item_url','http://iacademy.mikado-themes.com/events/'),(4002,4087,'_menu_item_type','custom'),(4003,4087,'_menu_item_menu_item_parent','4066'),(4004,4087,'_menu_item_object_id','4087'),(4005,4087,'_menu_item_object','custom'),(4006,4087,'_menu_item_target',''),(4007,4087,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4008,4087,'_menu_item_xfn',''),(4009,4087,'_menu_item_url','http://shop-layouts'),(4010,4088,'_menu_item_type','post_type'),(4011,4088,'_menu_item_menu_item_parent','4089'),(4012,4088,'_menu_item_object_id','126'),(4013,4088,'_menu_item_object','forum'),(4014,4088,'_menu_item_target',''),(4015,4088,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4016,4088,'_menu_item_xfn',''),(4017,4088,'_menu_item_url',''),(4018,4089,'_menu_item_type','custom'),(4019,4089,'_menu_item_menu_item_parent','4064'),(4020,4089,'_menu_item_object_id','4089'),(4021,4089,'_menu_item_object','custom'),(4022,4089,'_menu_item_target',''),(4023,4089,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4024,4089,'_menu_item_xfn',''),(4025,4089,'_menu_item_url','#'),(4026,4090,'_menu_item_type','custom'),(4027,4090,'_menu_item_menu_item_parent','0'),(4028,4090,'_menu_item_object_id','4090'),(4029,4090,'_menu_item_object','custom'),(4030,4090,'_menu_item_target',''),(4031,4090,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4032,4090,'_menu_item_xfn',''),(4033,4090,'_menu_item_url','http://iacademy.mikado-themes.com/error-page'),(4034,4091,'_menu_item_type','custom'),(4035,4091,'_menu_item_menu_item_parent','4089'),(4036,4091,'_menu_item_object_id','4091'),(4037,4091,'_menu_item_object','custom'),(4038,4091,'_menu_item_target',''),(4039,4091,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4040,4091,'_menu_item_xfn',''),(4041,4091,'_menu_item_url','http://iacademy.mikado-themes.com/forums/topic/learning-english-abroad/'),(4066,4095,'_menu_item_type','custom'),(4067,4095,'_menu_item_menu_item_parent','0'),(4068,4095,'_menu_item_object_id','4095'),(4069,4095,'_menu_item_object','custom'),(4070,4095,'_menu_item_target',''),(4071,4095,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4072,4095,'_menu_item_xfn',''),(4073,4095,'_menu_item_url','#'),(4074,4096,'_menu_item_type','custom'),(4075,4096,'_menu_item_menu_item_parent','0'),(4076,4096,'_menu_item_object_id','4096'),(4077,4096,'_menu_item_object','custom'),(4078,4096,'_menu_item_target',''),(4079,4096,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4080,4096,'_menu_item_xfn',''),(4081,4096,'_menu_item_url','#'),(4082,4097,'_menu_item_type','custom'),(4083,4097,'_menu_item_menu_item_parent','4096'),(4084,4097,'_menu_item_object_id','4097'),(4085,4097,'_menu_item_object','custom'),(4086,4097,'_menu_item_target',''),(4087,4097,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4088,4097,'_menu_item_xfn',''),(4089,4097,'_menu_item_url','#'),(4090,4098,'_menu_item_type','post_type'),(4091,4098,'_menu_item_menu_item_parent','4097'),(4092,4098,'_menu_item_object_id','4062'),(4093,4098,'_menu_item_object','course'),(4094,4098,'_menu_item_target',''),(4095,4098,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4096,4098,'_menu_item_xfn',''),(4097,4098,'_menu_item_url',''),(4098,4099,'_menu_item_type','taxonomy'),(4099,4099,'_menu_item_menu_item_parent','4096'),(4100,4099,'_menu_item_object_id','203'),(4101,4099,'_menu_item_object','course-category'),(4102,4099,'_menu_item_target',''),(4103,4099,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4104,4099,'_menu_item_xfn',''),(4105,4099,'_menu_item_url',''),(4122,4102,'_menu_item_type','custom'),(4123,4102,'_menu_item_menu_item_parent','0'),(4124,4102,'_menu_item_object_id','4102'),(4125,4102,'_menu_item_object','custom'),(4126,4102,'_menu_item_target',''),(4127,4102,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4128,4102,'_menu_item_xfn',''),(4129,4102,'_menu_item_url','#'),(4130,4103,'_menu_item_type','post_type'),(4131,4103,'_menu_item_menu_item_parent','4102'),(4132,4103,'_menu_item_object_id','10'),(4133,4103,'_menu_item_object','instructor'),(4134,4103,'_menu_item_target',''),(4135,4103,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4136,4103,'_menu_item_xfn',''),(4137,4103,'_menu_item_url',''),(4138,4104,'_menu_item_type','custom'),(4139,4104,'_menu_item_menu_item_parent','0'),(4140,4104,'_menu_item_object_id','4104'),(4141,4104,'_menu_item_object','custom'),(4142,4104,'_menu_item_target',''),(4143,4104,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4144,4104,'_menu_item_xfn',''),(4145,4104,'_menu_item_url','#'),(4146,4105,'_menu_item_type','custom'),(4147,4105,'_menu_item_menu_item_parent','4104'),(4148,4105,'_menu_item_object_id','4105'),(4149,4105,'_menu_item_object','custom'),(4150,4105,'_menu_item_target',''),(4151,4105,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4152,4105,'_menu_item_xfn',''),(4153,4105,'_menu_item_url','http://iacademy.mikado-themes.com/events/2018-07/'),(4154,4106,'_menu_item_type','custom'),(4155,4106,'_menu_item_menu_item_parent','4104'),(4156,4106,'_menu_item_object_id','4106'),(4157,4106,'_menu_item_object','custom'),(4158,4106,'_menu_item_target',''),(4159,4106,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4160,4106,'_menu_item_xfn',''),(4161,4106,'_menu_item_url','http://iacademy.mikado-themes.com/events/list/'),(4162,4107,'_menu_item_type','custom'),(4163,4107,'_menu_item_menu_item_parent','0'),(4164,4107,'_menu_item_object_id','4107'),(4165,4107,'_menu_item_object','custom'),(4166,4107,'_menu_item_target',''),(4167,4107,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4168,4107,'_menu_item_xfn',''),(4169,4107,'_menu_item_url','#'),(4170,4108,'_menu_item_type','custom'),(4171,4108,'_menu_item_menu_item_parent','4107'),(4172,4108,'_menu_item_object_id','4108'),(4173,4108,'_menu_item_object','custom'),(4174,4108,'_menu_item_target',''),(4175,4108,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4176,4108,'_menu_item_xfn',''),(4177,4108,'_menu_item_url','#'),(4178,4109,'_menu_item_type','custom'),(4179,4109,'_menu_item_menu_item_parent','4107'),(4180,4109,'_menu_item_object_id','4109'),(4181,4109,'_menu_item_object','custom'),(4182,4109,'_menu_item_target',''),(4183,4109,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4184,4109,'_menu_item_xfn',''),(4185,4109,'_menu_item_url','#'),(4186,4110,'_menu_item_type','post_type'),(4187,4110,'_menu_item_menu_item_parent','4109'),(4188,4110,'_menu_item_object_id','126'),(4189,4110,'_menu_item_object','forum'),(4190,4110,'_menu_item_target',''),(4191,4110,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4192,4110,'_menu_item_xfn',''),(4193,4110,'_menu_item_url',''),(4194,4111,'_menu_item_type','custom'),(4195,4111,'_menu_item_menu_item_parent','4109'),(4196,4111,'_menu_item_object_id','4111'),(4197,4111,'_menu_item_object','custom'),(4198,4111,'_menu_item_target',''),(4199,4111,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4200,4111,'_menu_item_xfn',''),(4201,4111,'_menu_item_url','http://iacademy.mikado-themes.com/forums/topic/learning-english-abroad/'),(4202,4112,'_menu_item_type','custom'),(4203,4112,'_menu_item_menu_item_parent','4107'),(4204,4112,'_menu_item_object_id','4112'),(4205,4112,'_menu_item_object','custom'),(4206,4112,'_menu_item_target',''),(4207,4112,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4208,4112,'_menu_item_xfn',''),(4209,4112,'_menu_item_url','http://iacademy.mikado-themes.com/error-page'),(4210,4113,'_menu_item_type','custom'),(4211,4113,'_menu_item_menu_item_parent','0'),(4212,4113,'_menu_item_object_id','4113'),(4213,4113,'_menu_item_object','custom'),(4214,4113,'_menu_item_target',''),(4215,4113,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4216,4113,'_menu_item_xfn',''),(4217,4113,'_menu_item_url','#'),(4218,4114,'_menu_item_type','custom'),(4219,4114,'_menu_item_menu_item_parent','4113'),(4220,4114,'_menu_item_object_id','4114'),(4221,4114,'_menu_item_object','custom'),(4222,4114,'_menu_item_target',''),(4223,4114,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4224,4114,'_menu_item_xfn',''),(4225,4114,'_menu_item_url','#'),(4226,4115,'_menu_item_type','custom'),(4227,4115,'_menu_item_menu_item_parent','4113'),(4228,4115,'_menu_item_object_id','4115'),(4229,4115,'_menu_item_object','custom'),(4230,4115,'_menu_item_target',''),(4231,4115,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4232,4115,'_menu_item_xfn',''),(4233,4115,'_menu_item_url','http://shop-layouts'),(4234,4116,'_menu_item_type','custom'),(4235,4116,'_menu_item_menu_item_parent','4113'),(4236,4116,'_menu_item_object_id','4116'),(4237,4116,'_menu_item_object','custom'),(4238,4116,'_menu_item_target',''),(4239,4116,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4240,4116,'_menu_item_xfn',''),(4241,4116,'_menu_item_url','#'),(4242,4117,'_menu_item_type','custom'),(4243,4117,'_menu_item_menu_item_parent','0'),(4244,4117,'_menu_item_object_id','4117'),(4245,4117,'_menu_item_object','custom'),(4246,4117,'_menu_item_target',''),(4247,4117,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4248,4117,'_menu_item_xfn',''),(4249,4117,'_menu_item_url','#'),(4250,4118,'_menu_item_type','custom'),(4251,4118,'_menu_item_menu_item_parent','4117'),(4252,4118,'_menu_item_object_id','4118'),(4253,4118,'_menu_item_object','custom'),(4254,4118,'_menu_item_target',''),(4255,4118,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4256,4118,'_menu_item_xfn',''),(4257,4118,'_menu_item_url','#'),(4258,4119,'_menu_item_type','custom'),(4259,4119,'_menu_item_menu_item_parent','4117'),(4260,4119,'_menu_item_object_id','4119'),(4261,4119,'_menu_item_object','custom'),(4262,4119,'_menu_item_target',''),(4263,4119,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4264,4119,'_menu_item_xfn',''),(4265,4119,'_menu_item_url','#'),(4266,4120,'_menu_item_type','custom'),(4267,4120,'_menu_item_menu_item_parent','4117'),(4268,4120,'_menu_item_object_id','4120'),(4269,4120,'_menu_item_object','custom'),(4270,4120,'_menu_item_target',''),(4271,4120,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4272,4120,'_menu_item_xfn',''),(4273,4120,'_menu_item_url','#'),(4274,4121,'_menu_item_type','custom'),(4275,4121,'_menu_item_menu_item_parent','4117'),(4276,4121,'_menu_item_object_id','4121'),(4277,4121,'_menu_item_object','custom'),(4278,4121,'_menu_item_target',''),(4279,4121,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4280,4121,'_menu_item_xfn',''),(4281,4121,'_menu_item_url','#'),(4282,4122,'_wp_page_template','default'),(4283,4123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4284,4123,'slide_template','default'),(4285,4123,'_wpb_vc_js_status','false'),(4286,4123,'mkdf_page_content_behind_header_meta','no'),(4287,4123,'mkdf_page_background_color_meta','#ffffff'),(4288,4123,'mkdf_boxed_background_image_attachment_meta','fixed'),(4289,4123,'mkdf_disable_header_widget_logo_area_meta','no'),(4290,4123,'mkdf_disable_header_widget_menu_area_meta','no'),(4291,4123,'mkdf_disable_footer_meta','no'),(4292,4123,'mkdf_sidebar_layout_meta','sidebar-25-right'),(4293,4123,'mkdf_menu_area_in_grid_meta','yes'),(4294,4123,'mkdf_custom_sidebar_area_meta','shop-sidebar'),(4295,6,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4296,7,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4297,8,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4298,4124,'_wpb_shortcodes_custom_css','.vc_custom_1730345417201{padding-top: 40px !important;padding-bottom: 20px !important;}.vc_custom_1730345448501{padding-top: 20px !important;padding-bottom: 10px !important;}.vc_custom_1730345941548{padding-top: 20px !important;padding-bottom: 30px !important;}'),(4300,4124,'_wp_page_template','full-width.php'),(4302,4124,'_wpb_vc_js_status','true'),(4303,4124,'mkdf_page_content_behind_header_meta','yes'),(4304,4124,'mkdf_boxed_background_image_attachment_meta','fixed'),(4305,4124,'mkdf_disable_header_widget_logo_area_meta','no'),(4306,4124,'mkdf_disable_header_widget_menu_area_meta','no'),(4307,4124,'mkdf_disable_footer_meta','no'),(4308,4124,'_wpb_shortcodes_custom_css','.vc_custom_1730345417201{padding-top: 40px !important;padding-bottom: 20px !important;}.vc_custom_1730345448501{padding-top: 20px !important;padding-bottom: 10px !important;}.vc_custom_1730345941548{padding-top: 20px !important;padding-bottom: 30px !important;}'),(4309,4124,'mkdf_menu_area_in_grid_meta','yes'),(4310,4124,'mkdf_page_slider_meta','[rev_slider alias=\"home-1\"]'),(4311,4124,'mkdf_show_title_area_meta','no'),(4312,4124,'mkdf_page_content_top_padding','0px'),(4313,4124,'mkdf_page_content_top_padding_mobile','yes'),(4314,4124,'show_footer_custom_widget_areas','no'),(4315,113,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4316,113,'_wp_page_template','user-dashboard.php'),(4317,113,'slide_template','default'),(4318,113,'_wpb_vc_js_status','false'),(4319,113,'mkdf_page_content_behind_header_meta','no'),(4320,113,'mkdf_boxed_background_image_attachment_meta','fixed'),(4321,113,'mkdf_disable_header_widget_logo_area_meta','no'),(4322,113,'mkdf_disable_header_widget_menu_area_meta','no'),(4323,113,'mkdf_disable_footer_meta','no'),(4324,129,'_wpb_shortcodes_custom_css','.vc_custom_1497440561376{padding-top: 100px !important;padding-bottom: 80px !important;}.vc_custom_1495720773265{padding-bottom: 70px !important;}'),(4326,129,'_wp_page_template','full-width.php'),(4328,129,'_wpb_vc_js_status','true'),(4329,129,'_wpb_shortcodes_custom_css','.vc_custom_1497440561376{padding-top: 100px !important;padding-bottom: 80px !important;}.vc_custom_1495720773265{padding-bottom: 70px !important;}'),(4330,129,'mkdf_page_content_behind_header_meta','no'),(4331,129,'mkdf_boxed_background_image_attachment_meta','fixed'),(4332,129,'mkdf_disable_header_widget_logo_area_meta','no'),(4333,129,'mkdf_disable_header_widget_menu_area_meta','no'),(4334,129,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(4335,129,'mkdf_title_area_height_meta','250'),(4336,129,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(4337,129,'mkdf_title_text_color_meta','#ffffff'),(4338,129,'mkdf_breadcrumbs_color_meta','#ffffff'),(4339,129,'mkdf_disable_footer_meta','no'),(4340,129,'mkdf_menu_area_in_grid_meta','yes'),(4341,129,'mkdf_title_area_background_image_behavior_meta','parallax'),(4342,129,'mkdf_page_content_top_padding','0'),(4343,129,'mkdf_page_content_top_padding_mobile','yes'),(4344,129,'show_footer_custom_widget_areas','no'),(4346,289,'_wp_page_template','default'),(4348,289,'_wpb_vc_js_status','false'),(4349,289,'mkdf_page_content_behind_header_meta','no'),(4350,289,'mkdf_boxed_background_image_attachment_meta','fixed'),(4351,289,'mkdf_disable_header_widget_logo_area_meta','no'),(4352,289,'mkdf_disable_header_widget_menu_area_meta','no'),(4353,289,'mkdf_disable_footer_meta','no'),(4354,291,'_wpb_shortcodes_custom_css','.vc_custom_1495807738968{padding-top: 122px !important;padding-bottom: 68px !important;}'),(4356,291,'_wp_page_template','default'),(4358,291,'_wpb_vc_js_status','true'),(4359,291,'mkdf_page_content_behind_header_meta','no'),(4360,291,'mkdf_boxed_background_image_attachment_meta','fixed'),(4361,291,'mkdf_disable_header_widget_logo_area_meta','no'),(4362,291,'mkdf_disable_header_widget_menu_area_meta','no'),(4363,291,'mkdf_disable_footer_meta','no'),(4364,291,'_wpb_shortcodes_custom_css','.vc_custom_1495807738968{padding-top: 122px !important;padding-bottom: 68px !important;}'),(4365,291,'mkdf_menu_area_in_grid_meta','yes'),(4366,291,'mkdf_menu_area_background_color_meta','#ffffff'),(4367,291,'mkdf_menu_area_background_transparency_meta','0'),(4368,291,'mkdf_show_title_area_meta','no'),(4369,291,'mkdf_menu_area_border_meta','yes'),(4370,291,'mkdf_menu_area_border_color_meta','#ebebeb'),(4371,291,'mkdf_header_type_meta','header-standard'),(4372,291,'mkdf_top_bar_meta','yes'),(4373,291,'mkdf_top_bar_background_color_meta','#ffffff'),(4374,291,'mkdf_top_bar_background_transparency_meta','0'),(4375,291,'show_footer_custom_widget_areas','no'),(4376,300,'_wpb_shortcodes_custom_css','.vc_custom_1496819325736{padding-top: 115px !important;padding-bottom: 125px !important;}.vc_custom_1496132616880{padding-top: 110px !important;padding-bottom: 125px !important;}.vc_custom_1496042092980{padding-top: 110px !important;padding-bottom: 110px !important;}.vc_custom_1496042313476{padding-top: 115px !important;padding-bottom: 100px !important;}.vc_custom_1496132385974{padding-top: 130px !important;padding-bottom: 93px !important;}.vc_custom_1496236353668{padding-top: 110px !important;padding-bottom: 86px !important;}'),(4377,300,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4378,300,'_wp_page_template','full-width.php'),(4379,300,'slide_template','default'),(4380,300,'_wpb_vc_js_status','true'),(4381,300,'_wpb_shortcodes_custom_css','.vc_custom_1496819325736{padding-top: 115px !important;padding-bottom: 125px !important;}.vc_custom_1496132616880{padding-top: 110px !important;padding-bottom: 125px !important;}.vc_custom_1496042092980{padding-top: 110px !important;padding-bottom: 110px !important;}.vc_custom_1496042313476{padding-top: 115px !important;padding-bottom: 100px !important;}.vc_custom_1496132385974{padding-top: 130px !important;padding-bottom: 93px !important;}.vc_custom_1496236353668{padding-top: 110px !important;padding-bottom: 86px !important;}'),(4382,300,'mkdf_page_content_behind_header_meta','no'),(4383,300,'mkdf_boxed_background_image_attachment_meta','fixed'),(4384,300,'mkdf_disable_header_widget_logo_area_meta','no'),(4385,300,'mkdf_disable_header_widget_menu_area_meta','no'),(4386,300,'mkdf_disable_footer_meta','no'),(4387,300,'mkdf_show_title_area_meta','no'),(4388,300,'mkdf_menu_area_in_grid_meta','yes'),(4389,300,'mkdf_header_type_meta','header-standard'),(4390,300,'mkdf_top_bar_meta','no'),(4391,300,'mkdf_page_content_top_padding','0'),(4392,300,'mkdf_page_content_top_padding_mobile','yes'),(4393,300,'show_footer_custom_widget_areas','no'),(4394,306,'_wpb_shortcodes_custom_css','.vc_custom_1495809860309{padding-bottom: 68px !important;}'),(4396,306,'_wp_page_template','default'),(4398,306,'_wpb_vc_js_status','true'),(4399,306,'mkdf_page_content_behind_header_meta','no'),(4400,306,'mkdf_boxed_background_image_attachment_meta','fixed'),(4401,306,'mkdf_disable_header_widget_logo_area_meta','no'),(4402,306,'mkdf_disable_header_widget_menu_area_meta','no'),(4403,306,'mkdf_disable_footer_meta','no'),(4404,306,'mkdf_sidebar_layout_meta','sidebar-25-right'),(4405,306,'_wpb_shortcodes_custom_css','.vc_custom_1495809860309{padding-bottom: 68px !important;}'),(4406,306,'mkdf_page_content_top_padding','100'),(4407,306,'mkdf_page_content_top_padding_mobile','yes'),(4408,306,'mkdf_show_title_area_meta','yes'),(4409,306,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(4410,306,'mkdf_title_area_height_meta','250'),(4411,306,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(4412,306,'mkdf_menu_area_in_grid_meta','yes'),(4413,306,'mkdf_title_area_background_image_behavior_meta','parallax'),(4414,306,'mkdf_custom_sidebar_area_meta','course-list-sidebar'),(4415,349,'_wpb_shortcodes_custom_css','.vc_custom_1496049004993{margin-top: -19px !important;}.vc_custom_1496049004993{margin-top: -19px !important;}.vc_custom_1496049004993{margin-top: -19px !important;}.vc_custom_1496049004993{margin-top: -19px !important;}.vc_custom_1496049004993{margin-top: -19px !important;}.vc_custom_1496049004993{margin-top: -19px !important;}.vc_custom_1496051880757{margin-top: -19px !important;padding-bottom: 100px !important;}.vc_custom_1496050266272{padding-top: 25px !important;padding-bottom: 10px !important;}.vc_custom_1496050719657{padding-top: 30px !important;padding-bottom: 8px !important;}.vc_custom_1496051034729{padding-top: 33px !important;padding-bottom: 17px !important;}.vc_custom_1496051218576{padding-top: 33px !important;padding-bottom: 23px !important;}.vc_custom_1496051539528{padding-top: 39px !important;padding-bottom: 20px !important;}.vc_custom_1496051843399{padding-top: 38px !important;padding-bottom: 30px !important;}.vc_custom_1496051849439{padding-top: 41px !important;}'),(4416,349,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4417,349,'_wp_page_template','default'),(4418,349,'slide_template','default'),(4419,349,'_wpb_vc_js_status','true'),(4420,349,'mkdf_page_content_behind_header_meta','no'),(4421,349,'mkdf_boxed_background_image_attachment_meta','fixed'),(4422,349,'mkdf_disable_header_widget_logo_area_meta','no'),(4423,349,'mkdf_disable_header_widget_menu_area_meta','no'),(4424,349,'mkdf_disable_footer_meta','no'),(4425,349,'mkdf_menu_area_in_grid_meta','yes'),(4426,349,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(4427,349,'mkdf_sidebar_layout_meta','sidebar-25-left'),(4428,349,'mkdf_custom_sidebar_area_meta','elements-sidebar'),(4429,349,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(4430,349,'mkdf_title_area_background_image_behavior_meta','parallax'),(4431,349,'mkdf_page_content_top_padding','87'),(4432,349,'_wpb_shortcodes_custom_css','.vc_custom_1496049004993{margin-top: -19px !important;}.vc_custom_1496049004993{margin-top: -19px !important;}.vc_custom_1496049004993{margin-top: -19px !important;}.vc_custom_1496049004993{margin-top: -19px !important;}.vc_custom_1496049004993{margin-top: -19px !important;}.vc_custom_1496049004993{margin-top: -19px !important;}.vc_custom_1496051880757{margin-top: -19px !important;padding-bottom: 100px !important;}.vc_custom_1496050266272{padding-top: 25px !important;padding-bottom: 10px !important;}.vc_custom_1496050719657{padding-top: 30px !important;padding-bottom: 8px !important;}.vc_custom_1496051034729{padding-top: 33px !important;padding-bottom: 17px !important;}.vc_custom_1496051218576{padding-top: 33px !important;padding-bottom: 23px !important;}.vc_custom_1496051539528{padding-top: 39px !important;padding-bottom: 20px !important;}.vc_custom_1496051843399{padding-top: 38px !important;padding-bottom: 30px !important;}.vc_custom_1496051849439{padding-top: 41px !important;}'),(4433,349,'mkdf_header_type_meta','header-standard'),(4434,349,'mkdf_top_bar_meta','yes'),(4435,349,'mkdf_top_bar_in_grid_meta','yes'),(4436,349,'mkdf_top_bar_border_meta','yes'),(4437,349,'mkdf_top_bar_border_color_meta','#ebebeb'),(4438,349,'mkdf_page_background_color_meta','#ffffff'),(4439,374,'_wpb_shortcodes_custom_css','.vc_custom_1496157454722{padding-top: 110px !important;}.vc_custom_1496059168802{padding-top: 130px !important;padding-bottom: 93px !important;}.vc_custom_1496059221747{padding-top: 110px !important;padding-bottom: 120px !important;}.vc_custom_1496059280123{padding-top: 110px !important;padding-bottom: 100px !important;}.vc_custom_1496059316947{padding-top: 130px !important;padding-bottom: 125px !important;}.vc_custom_1496228442832{padding-top: 123px !important;padding-bottom: 123px !important;}.vc_custom_1497000438109{padding-top: 110px !important;padding-bottom: 90px !important;}.vc_custom_1497518269683{margin-top: -123px !important;padding-bottom: 0px !important;background-color: rgba(26,25,33,0.6) !important;*background-color: rgb(26,25,33) !important;}.vc_custom_1497947715417{margin-top: -7px !important;}'),(4440,374,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4441,374,'_wp_page_template','full-width.php'),(4442,374,'slide_template','default'),(4443,374,'_wpb_vc_js_status','true'),(4444,374,'_wpb_shortcodes_custom_css','.vc_custom_1496157454722{padding-top: 110px !important;}.vc_custom_1496059168802{padding-top: 130px !important;padding-bottom: 93px !important;}.vc_custom_1496059221747{padding-top: 110px !important;padding-bottom: 120px !important;}.vc_custom_1496059280123{padding-top: 110px !important;padding-bottom: 100px !important;}.vc_custom_1496059316947{padding-top: 130px !important;padding-bottom: 125px !important;}.vc_custom_1496228442832{padding-top: 123px !important;padding-bottom: 123px !important;}.vc_custom_1497000438109{padding-top: 110px !important;padding-bottom: 90px !important;}.vc_custom_1497518269683{margin-top: -123px !important;padding-bottom: 0px !important;background-color: rgba(26,25,33,0.6) !important;*background-color: rgb(26,25,33) !important;}.vc_custom_1497947715417{margin-top: -7px !important;}'),(4445,374,'mkdf_page_content_behind_header_meta','yes'),(4446,374,'mkdf_boxed_background_image_attachment_meta','fixed'),(4447,374,'mkdf_disable_header_widget_logo_area_meta','no'),(4448,374,'mkdf_disable_header_widget_menu_area_meta','no'),(4449,374,'mkdf_disable_footer_meta','no'),(4450,374,'mkdf_header_type_meta','header-standard'),(4451,374,'mkdf_top_bar_meta','no'),(4452,374,'mkdf_menu_area_in_grid_meta','yes'),(4453,374,'mkdf_show_title_area_meta','no'),(4454,374,'mkdf_page_content_top_padding','0px'),(4455,374,'mkdf_page_content_top_padding_mobile','yes'),(4456,374,'mkdf_header_style_meta','light-header'),(4457,374,'mkdf_menu_area_background_color_meta','#ffffff'),(4458,374,'mkdf_menu_area_background_transparency_meta','0'),(4459,374,'show_footer_custom_widget_areas','no'),(4460,447,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4461,447,'_wp_page_template','default'),(4462,447,'slide_template','default'),(4463,447,'_wpb_vc_js_status','false'),(4464,447,'mkdf_page_content_behind_header_meta','no'),(4465,447,'mkdf_boxed_background_image_attachment_meta','fixed'),(4466,447,'mkdf_disable_header_widget_logo_area_meta','no'),(4467,447,'mkdf_disable_header_widget_menu_area_meta','no'),(4468,447,'mkdf_disable_footer_meta','no'),(4469,449,'_wpb_shortcodes_custom_css','.vc_custom_1496052655268{margin-top: -10px !important;padding-bottom: 45px !important;}.vc_custom_1496052746065{margin-top: -10px !important;padding-bottom: 45px !important;}.vc_custom_1496052753133{margin-top: -10px !important;padding-bottom: 45px !important;}.vc_custom_1496052753133{margin-top: -10px !important;padding-bottom: 45px !important;}.vc_custom_1496052753133{margin-top: -10px !important;padding-bottom: 45px !important;}.vc_custom_1496052753133{margin-top: -10px !important;padding-bottom: 45px !important;}.vc_custom_1496053048146{padding-bottom: 47px !important;}'),(4470,449,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4471,449,'_wpb_shortcodes_custom_css','.vc_custom_1496052655268{margin-top: -10px !important;padding-bottom: 45px !important;}.vc_custom_1496052746065{margin-top: -10px !important;padding-bottom: 45px !important;}.vc_custom_1496052753133{margin-top: -10px !important;padding-bottom: 45px !important;}.vc_custom_1496052753133{margin-top: -10px !important;padding-bottom: 45px !important;}.vc_custom_1496052753133{margin-top: -10px !important;padding-bottom: 45px !important;}.vc_custom_1496052753133{margin-top: -10px !important;padding-bottom: 45px !important;}.vc_custom_1496053048146{padding-bottom: 47px !important;}'),(4472,449,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4473,449,'_wp_page_template','default'),(4474,449,'slide_template','default'),(4475,449,'_wpb_vc_js_status','true'),(4476,449,'mkdf_page_content_behind_header_meta','no'),(4477,449,'mkdf_boxed_background_image_attachment_meta','fixed'),(4478,449,'mkdf_disable_header_widget_logo_area_meta','no'),(4479,449,'mkdf_disable_header_widget_menu_area_meta','no'),(4480,449,'mkdf_disable_footer_meta','no'),(4481,449,'mkdf_menu_area_in_grid_meta','yes'),(4482,449,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(4483,449,'mkdf_sidebar_layout_meta','sidebar-25-left'),(4484,449,'mkdf_custom_sidebar_area_meta','elements-sidebar'),(4485,449,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(4486,449,'mkdf_title_area_background_image_behavior_meta','parallax'),(4487,449,'mkdf_page_content_top_padding','87'),(4488,449,'_wpb_shortcodes_custom_css','.vc_custom_1496052655268{margin-top: -10px !important;padding-bottom: 45px !important;}.vc_custom_1496052746065{margin-top: -10px !important;padding-bottom: 45px !important;}.vc_custom_1496052753133{margin-top: -10px !important;padding-bottom: 45px !important;}.vc_custom_1496052753133{margin-top: -10px !important;padding-bottom: 45px !important;}.vc_custom_1496052753133{margin-top: -10px !important;padding-bottom: 45px !important;}.vc_custom_1496052753133{margin-top: -10px !important;padding-bottom: 45px !important;}.vc_custom_1496053048146{padding-bottom: 47px !important;}'),(4489,449,'mkdf_header_type_meta','header-standard'),(4490,449,'mkdf_top_bar_meta','yes'),(4491,449,'mkdf_top_bar_in_grid_meta','yes'),(4492,449,'mkdf_top_bar_border_meta','yes'),(4493,449,'mkdf_top_bar_border_color_meta','#ebebeb'),(4494,449,'mkdf_page_background_color_meta','#ffffff'),(4495,449,'_dp_original','349'),(4496,475,'_wpb_shortcodes_custom_css','.vc_custom_1496053939753{margin-top: -4px !important;padding-bottom: 52px !important;}.vc_custom_1496053873950{margin-top: -10px !important;padding-bottom: 52px !important;}.vc_custom_1496053882981{margin-top: -10px !important;padding-bottom: 52px !important;}.vc_custom_1496053913638{margin-top: -10px !important;padding-bottom: 92px !important;}'),(4497,475,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4498,475,'_wpb_shortcodes_custom_css','.vc_custom_1496053939753{margin-top: -4px !important;padding-bottom: 52px !important;}.vc_custom_1496053873950{margin-top: -10px !important;padding-bottom: 52px !important;}.vc_custom_1496053882981{margin-top: -10px !important;padding-bottom: 52px !important;}.vc_custom_1496053913638{margin-top: -10px !important;padding-bottom: 92px !important;}'),(4499,475,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4500,475,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4501,475,'_wpb_shortcodes_custom_css','.vc_custom_1496053939753{margin-top: -4px !important;padding-bottom: 52px !important;}.vc_custom_1496053873950{margin-top: -10px !important;padding-bottom: 52px !important;}.vc_custom_1496053882981{margin-top: -10px !important;padding-bottom: 52px !important;}.vc_custom_1496053913638{margin-top: -10px !important;padding-bottom: 92px !important;}'),(4502,475,'_wpb_shortcodes_custom_css','.vc_custom_1496053939753{margin-top: -4px !important;padding-bottom: 52px !important;}.vc_custom_1496053873950{margin-top: -10px !important;padding-bottom: 52px !important;}.vc_custom_1496053882981{margin-top: -10px !important;padding-bottom: 52px !important;}.vc_custom_1496053913638{margin-top: -10px !important;padding-bottom: 92px !important;}'),(4503,475,'_wp_page_template','default'),(4504,475,'slide_template','default'),(4505,475,'_wpb_vc_js_status','true'),(4506,475,'mkdf_page_content_behind_header_meta','no'),(4507,475,'mkdf_boxed_background_image_attachment_meta','fixed'),(4508,475,'mkdf_disable_header_widget_logo_area_meta','no'),(4509,475,'mkdf_disable_header_widget_menu_area_meta','no'),(4510,475,'mkdf_disable_footer_meta','no'),(4511,475,'mkdf_menu_area_in_grid_meta','yes'),(4512,475,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(4513,475,'mkdf_sidebar_layout_meta','sidebar-25-left'),(4514,475,'mkdf_custom_sidebar_area_meta','elements-sidebar'),(4515,475,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(4516,475,'mkdf_title_area_background_image_behavior_meta','parallax'),(4517,475,'mkdf_page_content_top_padding','87'),(4518,475,'mkdf_header_type_meta','header-standard'),(4519,475,'mkdf_top_bar_meta','yes'),(4520,475,'mkdf_top_bar_in_grid_meta','yes'),(4521,475,'mkdf_top_bar_border_meta','yes'),(4522,475,'mkdf_top_bar_border_color_meta','#ebebeb'),(4523,475,'mkdf_page_background_color_meta','#ffffff'),(4524,475,'_dp_original','449'),(4525,487,'_wpb_shortcodes_custom_css','.vc_custom_1496053939753{margin-top: -4px !important;padding-bottom: 52px !important;}.vc_custom_1496053873950{margin-top: -10px !important;padding-bottom: 52px !important;}.vc_custom_1496053882981{margin-top: -10px !important;padding-bottom: 52px !important;}.vc_custom_1496053913638{margin-top: -10px !important;padding-bottom: 92px !important;}'),(4526,487,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4527,487,'_wpb_shortcodes_custom_css','.vc_custom_1496053939753{margin-top: -4px !important;padding-bottom: 52px !important;}.vc_custom_1496053873950{margin-top: -10px !important;padding-bottom: 52px !important;}.vc_custom_1496053882981{margin-top: -10px !important;padding-bottom: 52px !important;}.vc_custom_1496053913638{margin-top: -10px !important;padding-bottom: 92px !important;}'),(4528,487,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4529,487,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4530,487,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4531,487,'_wpb_shortcodes_custom_css','.vc_custom_1496053939753{margin-top: -4px !important;padding-bottom: 52px !important;}.vc_custom_1496053873950{margin-top: -10px !important;padding-bottom: 52px !important;}.vc_custom_1496053882981{margin-top: -10px !important;padding-bottom: 52px !important;}.vc_custom_1496053913638{margin-top: -10px !important;padding-bottom: 92px !important;}'),(4532,487,'_wpb_shortcodes_custom_css','.vc_custom_1496053939753{margin-top: -4px !important;padding-bottom: 52px !important;}.vc_custom_1496053873950{margin-top: -10px !important;padding-bottom: 52px !important;}.vc_custom_1496053882981{margin-top: -10px !important;padding-bottom: 52px !important;}.vc_custom_1496053913638{margin-top: -10px !important;padding-bottom: 92px !important;}'),(4533,487,'_wpb_shortcodes_custom_css','.vc_custom_1496053939753{margin-top: -4px !important;padding-bottom: 52px !important;}.vc_custom_1496053873950{margin-top: -10px !important;padding-bottom: 52px !important;}.vc_custom_1496053882981{margin-top: -10px !important;padding-bottom: 52px !important;}.vc_custom_1496053913638{margin-top: -10px !important;padding-bottom: 92px !important;}'),(4534,487,'_wp_page_template','default'),(4535,487,'slide_template','default'),(4536,487,'_wpb_vc_js_status','true'),(4537,487,'mkdf_page_content_behind_header_meta','no'),(4538,487,'mkdf_boxed_background_image_attachment_meta','fixed'),(4539,487,'mkdf_disable_header_widget_logo_area_meta','no'),(4540,487,'mkdf_disable_header_widget_menu_area_meta','no'),(4541,487,'mkdf_disable_footer_meta','no'),(4542,487,'mkdf_menu_area_in_grid_meta','yes'),(4543,487,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(4544,487,'mkdf_sidebar_layout_meta','sidebar-25-left'),(4545,487,'mkdf_custom_sidebar_area_meta','elements-sidebar'),(4546,487,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(4547,487,'mkdf_title_area_background_image_behavior_meta','parallax'),(4548,487,'mkdf_page_content_top_padding','87'),(4549,487,'mkdf_header_type_meta','header-standard'),(4550,487,'mkdf_top_bar_meta','yes'),(4551,487,'mkdf_top_bar_in_grid_meta','yes'),(4552,487,'mkdf_top_bar_border_meta','yes'),(4553,487,'mkdf_top_bar_border_color_meta','#ebebeb'),(4554,487,'mkdf_page_background_color_meta','#ffffff'),(4555,487,'_dp_original','475'),(4556,495,'_wpb_shortcodes_custom_css','.vc_custom_1496058243377{margin-top: -33px !important;padding-bottom: 100px !important;}.vc_custom_1496057885455{padding-top: 3px !important;padding-bottom: 3px !important;}.vc_custom_1496058049070{padding-top: 7px !important;}.vc_custom_1496058089543{padding-top: 4px !important;padding-bottom: 7px !important;}.vc_custom_1496058116847{padding-top: 5px !important;padding-bottom: 6px !important;}.vc_custom_1496058154193{padding-top: 5px !important;}'),(4557,495,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4558,495,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4559,495,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4560,495,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4561,495,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4562,495,'_wp_page_template','default'),(4563,495,'slide_template','default'),(4564,495,'_wpb_vc_js_status','true'),(4565,495,'mkdf_page_content_behind_header_meta','no'),(4566,495,'mkdf_boxed_background_image_attachment_meta','fixed'),(4567,495,'mkdf_disable_header_widget_logo_area_meta','no'),(4568,495,'mkdf_disable_header_widget_menu_area_meta','no'),(4569,495,'mkdf_disable_footer_meta','no'),(4570,495,'mkdf_menu_area_in_grid_meta','yes'),(4571,495,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(4572,495,'mkdf_sidebar_layout_meta','sidebar-25-left'),(4573,495,'mkdf_custom_sidebar_area_meta','elements-sidebar'),(4574,495,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(4575,495,'mkdf_title_area_background_image_behavior_meta','parallax'),(4576,495,'mkdf_page_content_top_padding','87'),(4577,495,'mkdf_header_type_meta','header-standard'),(4578,495,'mkdf_top_bar_meta','yes'),(4579,495,'mkdf_top_bar_in_grid_meta','yes'),(4580,495,'mkdf_top_bar_border_meta','yes'),(4581,495,'mkdf_top_bar_border_color_meta','#ebebeb'),(4582,495,'mkdf_page_background_color_meta','#ffffff'),(4583,495,'_dp_original','487'),(4584,495,'_wpb_shortcodes_custom_css','.vc_custom_1496058243377{margin-top: -33px !important;padding-bottom: 100px !important;}.vc_custom_1496057885455{padding-top: 3px !important;padding-bottom: 3px !important;}.vc_custom_1496058049070{padding-top: 7px !important;}.vc_custom_1496058089543{padding-top: 4px !important;padding-bottom: 7px !important;}.vc_custom_1496058116847{padding-top: 5px !important;padding-bottom: 6px !important;}.vc_custom_1496058154193{padding-top: 5px !important;}'),(4585,566,'_wpb_shortcodes_custom_css','.vc_custom_1496058711854{margin-top: -18px !important;padding-bottom: 100px !important;}.vc_custom_1496058779881{padding-top: 40px !important;padding-bottom: 30px !important;}.vc_custom_1496058827327{padding-top: 40px !important;padding-bottom: 35px !important;}.vc_custom_1496058906918{padding-top: 40px !important;padding-bottom: 62px !important;}.vc_custom_1496058981391{padding-top: 40px !important;padding-bottom: 30px !important;}.vc_custom_1496058990023{padding-top: 40px !important;padding-bottom: 30px !important;}.vc_custom_1496058996303{padding-top: 40px !important;}'),(4586,566,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4587,566,'_wpb_shortcodes_custom_css','.vc_custom_1496058711854{margin-top: -18px !important;padding-bottom: 100px !important;}.vc_custom_1496058779881{padding-top: 40px !important;padding-bottom: 30px !important;}.vc_custom_1496058827327{padding-top: 40px !important;padding-bottom: 35px !important;}.vc_custom_1496058906918{padding-top: 40px !important;padding-bottom: 62px !important;}.vc_custom_1496058981391{padding-top: 40px !important;padding-bottom: 30px !important;}.vc_custom_1496058990023{padding-top: 40px !important;padding-bottom: 30px !important;}.vc_custom_1496058996303{padding-top: 40px !important;}'),(4588,566,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4589,566,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4590,566,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4591,566,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4592,566,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4593,566,'_wp_page_template','default'),(4594,566,'slide_template','default'),(4595,566,'_wpb_vc_js_status','true'),(4596,566,'mkdf_page_content_behind_header_meta','no'),(4597,566,'mkdf_boxed_background_image_attachment_meta','fixed'),(4598,566,'mkdf_disable_header_widget_logo_area_meta','no'),(4599,566,'mkdf_disable_header_widget_menu_area_meta','no'),(4600,566,'mkdf_disable_footer_meta','no'),(4601,566,'mkdf_menu_area_in_grid_meta','yes'),(4602,566,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(4603,566,'mkdf_sidebar_layout_meta','sidebar-25-left'),(4604,566,'mkdf_custom_sidebar_area_meta','elements-sidebar'),(4605,566,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(4606,566,'mkdf_title_area_background_image_behavior_meta','parallax'),(4607,566,'mkdf_page_content_top_padding','87'),(4608,566,'mkdf_header_type_meta','header-standard'),(4609,566,'mkdf_top_bar_meta','yes'),(4610,566,'mkdf_top_bar_in_grid_meta','yes'),(4611,566,'mkdf_top_bar_border_meta','yes'),(4612,566,'mkdf_top_bar_border_color_meta','#ebebeb'),(4613,566,'mkdf_page_background_color_meta','#ffffff'),(4614,566,'_wpb_shortcodes_custom_css','.vc_custom_1496058711854{margin-top: -18px !important;padding-bottom: 100px !important;}.vc_custom_1496058779881{padding-top: 40px !important;padding-bottom: 30px !important;}.vc_custom_1496058827327{padding-top: 40px !important;padding-bottom: 35px !important;}.vc_custom_1496058906918{padding-top: 40px !important;padding-bottom: 62px !important;}.vc_custom_1496058981391{padding-top: 40px !important;padding-bottom: 30px !important;}.vc_custom_1496058990023{padding-top: 40px !important;padding-bottom: 30px !important;}.vc_custom_1496058996303{padding-top: 40px !important;}'),(4615,566,'_dp_original','495'),(4616,590,'_wpb_shortcodes_custom_css','.vc_custom_1497015084056{padding-top: 12px !important;padding-bottom: 20px !important;}.vc_custom_1497014937970{padding-bottom: 43px !important;}'),(4617,590,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4618,590,'_wpb_shortcodes_custom_css','.vc_custom_1497015084056{padding-top: 12px !important;padding-bottom: 20px !important;}.vc_custom_1497014937970{padding-bottom: 43px !important;}'),(4619,590,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4620,590,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4621,590,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4622,590,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4623,590,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4624,590,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4625,590,'_wpb_shortcodes_custom_css','.vc_custom_1497015084056{padding-top: 12px !important;padding-bottom: 20px !important;}.vc_custom_1497014937970{padding-bottom: 43px !important;}'),(4626,590,'_wpb_shortcodes_custom_css','.vc_custom_1497015084056{padding-top: 12px !important;padding-bottom: 20px !important;}.vc_custom_1497014937970{padding-bottom: 43px !important;}'),(4627,590,'_wp_page_template','default'),(4628,590,'slide_template','default'),(4629,590,'_wpb_vc_js_status','true'),(4630,590,'mkdf_page_content_behind_header_meta','no'),(4631,590,'mkdf_boxed_background_image_attachment_meta','fixed'),(4632,590,'mkdf_disable_header_widget_logo_area_meta','no'),(4633,590,'mkdf_disable_header_widget_menu_area_meta','no'),(4634,590,'mkdf_disable_footer_meta','no'),(4635,590,'mkdf_menu_area_in_grid_meta','yes'),(4636,590,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(4637,590,'mkdf_sidebar_layout_meta','sidebar-25-left'),(4638,590,'mkdf_custom_sidebar_area_meta','elements-sidebar'),(4639,590,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(4640,590,'mkdf_title_area_background_image_behavior_meta','parallax'),(4641,590,'mkdf_page_content_top_padding','87'),(4642,590,'mkdf_header_type_meta','header-standard'),(4643,590,'mkdf_top_bar_meta','yes'),(4644,590,'mkdf_top_bar_in_grid_meta','yes'),(4645,590,'mkdf_top_bar_border_meta','yes'),(4646,590,'mkdf_top_bar_border_color_meta','#ebebeb'),(4647,590,'mkdf_page_background_color_meta','#ffffff'),(4648,590,'_dp_original','566'),(4649,590,'show_footer_custom_widget_areas','no'),(4650,598,'_wpb_shortcodes_custom_css','.vc_custom_1496129033470{padding-top: 90px !important;padding-bottom: 123px !important;}.vc_custom_1496063057879{margin-top: -12px !important;margin-bottom: -12px !important;}.vc_custom_1497008423910{padding-top: 80px !important;padding-bottom: 60px !important;}.vc_custom_1496063057879{margin-top: -12px !important;margin-bottom: -12px !important;}.vc_custom_1497260202032{padding-top: 110px !important;padding-bottom: 125px !important;}.vc_custom_1496068794871{padding-top: 130px !important;padding-bottom: 125px !important;}.vc_custom_1496395734029{padding-top: 125px !important;padding-bottom: 110px !important;}.vc_custom_1496665288494{padding-bottom: 90px !important;}.vc_custom_1496665541535{padding-top: 50px !important;padding-bottom: 80px !important;}.vc_custom_1496666664739{margin-left: -20% !important;}'),(4651,598,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4652,598,'_wp_page_template','full-width.php'),(4653,598,'slide_template','default'),(4654,598,'_wpb_vc_js_status','true'),(4655,598,'_wpb_shortcodes_custom_css','.vc_custom_1496129033470{padding-top: 90px !important;padding-bottom: 123px !important;}.vc_custom_1496063057879{margin-top: -12px !important;margin-bottom: -12px !important;}.vc_custom_1497008423910{padding-top: 80px !important;padding-bottom: 60px !important;}.vc_custom_1496063057879{margin-top: -12px !important;margin-bottom: -12px !important;}.vc_custom_1497260202032{padding-top: 110px !important;padding-bottom: 125px !important;}.vc_custom_1496068794871{padding-top: 130px !important;padding-bottom: 125px !important;}.vc_custom_1496395734029{padding-top: 125px !important;padding-bottom: 110px !important;}.vc_custom_1496665288494{padding-bottom: 90px !important;}.vc_custom_1496665541535{padding-top: 50px !important;padding-bottom: 80px !important;}.vc_custom_1496666664739{margin-left: -20% !important;}'),(4656,598,'mkdf_page_content_behind_header_meta','no'),(4657,598,'mkdf_boxed_background_image_attachment_meta','fixed'),(4658,598,'mkdf_disable_header_widget_logo_area_meta','no'),(4659,598,'mkdf_disable_header_widget_menu_area_meta','no'),(4660,598,'mkdf_disable_footer_meta','no'),(4661,598,'mkdf_show_title_area_meta','no'),(4662,598,'mkdf_header_type_meta','header-standard'),(4663,598,'mkdf_menu_area_in_grid_meta','yes'),(4664,598,'mkdf_page_content_top_padding','0'),(4665,598,'mkdf_page_content_top_padding_mobile','yes'),(4666,598,'mkdf_menu_area_border_meta','yes'),(4667,598,'mkdf_menu_area_border_color_meta','#ebebeb'),(4668,598,'show_footer_custom_widget_areas','no'),(4669,607,'_wpb_shortcodes_custom_css','.vc_custom_1496928313418{margin-top: -24px !important;padding-bottom: 83px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497016106110{padding-top: 12px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497016194623{background-color: #d8a64e !important;}'),(4670,607,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4671,607,'_wpb_shortcodes_custom_css','.vc_custom_1496928313418{margin-top: -24px !important;padding-bottom: 83px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497016106110{padding-top: 12px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497016194623{background-color: #d8a64e !important;}'),(4672,607,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4673,607,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4674,607,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4675,607,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4676,607,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4677,607,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4678,607,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4679,607,'_wpb_shortcodes_custom_css','.vc_custom_1496928313418{margin-top: -24px !important;padding-bottom: 83px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497016106110{padding-top: 12px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497016194623{background-color: #d8a64e !important;}'),(4680,607,'_wpb_shortcodes_custom_css','.vc_custom_1496928313418{margin-top: -24px !important;padding-bottom: 83px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497016106110{padding-top: 12px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497016194623{background-color: #d8a64e !important;}'),(4681,607,'_wpb_shortcodes_custom_css','.vc_custom_1496928313418{margin-top: -24px !important;padding-bottom: 83px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497016106110{padding-top: 12px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497016194623{background-color: #d8a64e !important;}'),(4682,607,'_wp_page_template','default'),(4683,607,'slide_template','default'),(4684,607,'_wpb_vc_js_status','true'),(4685,607,'mkdf_page_content_behind_header_meta','no'),(4686,607,'mkdf_boxed_background_image_attachment_meta','fixed'),(4687,607,'mkdf_disable_header_widget_logo_area_meta','no'),(4688,607,'mkdf_disable_header_widget_menu_area_meta','no'),(4689,607,'mkdf_disable_footer_meta','no'),(4690,607,'mkdf_menu_area_in_grid_meta','yes'),(4691,607,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(4692,607,'mkdf_sidebar_layout_meta','sidebar-25-left'),(4693,607,'mkdf_custom_sidebar_area_meta','elements-sidebar'),(4694,607,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(4695,607,'mkdf_title_area_background_image_behavior_meta','parallax'),(4696,607,'mkdf_page_content_top_padding','87'),(4697,607,'mkdf_header_type_meta','header-standard'),(4698,607,'mkdf_top_bar_meta','yes'),(4699,607,'mkdf_top_bar_in_grid_meta','yes'),(4700,607,'mkdf_top_bar_border_meta','yes'),(4701,607,'mkdf_top_bar_border_color_meta','#ebebeb'),(4702,607,'mkdf_page_background_color_meta','#ffffff'),(4703,607,'_dp_original','590'),(4704,638,'_wpb_shortcodes_custom_css','.vc_custom_1497433282779{padding-bottom: 80px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497433249099{margin-top: -24px !important;padding-bottom: 16px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497433238498{padding-top: 40px !important;padding-bottom: 16px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497433219347{padding-top: 40px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497433065690{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-bottom: 38px !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}.vc_custom_1497433090564{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-bottom: 38px !important;background-color: #fafafa !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}.vc_custom_1497433155220{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-bottom: 38px !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}.vc_custom_1497433179978{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-bottom: 38px !important;background-color: #fafafa !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}'),(4705,638,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4706,638,'_wpb_shortcodes_custom_css','.vc_custom_1497433282779{padding-bottom: 80px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497433249099{margin-top: -24px !important;padding-bottom: 16px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497433238498{padding-top: 40px !important;padding-bottom: 16px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497433219347{padding-top: 40px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497433065690{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-bottom: 38px !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}.vc_custom_1497433090564{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-bottom: 38px !important;background-color: #fafafa !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}.vc_custom_1497433155220{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-bottom: 38px !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}.vc_custom_1497433179978{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-bottom: 38px !important;background-color: #fafafa !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}'),(4707,638,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4708,638,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4709,638,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4710,638,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4711,638,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4712,638,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4713,638,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4714,638,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4715,638,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4716,638,'_wpb_shortcodes_custom_css','.vc_custom_1497433282779{padding-bottom: 80px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497433249099{margin-top: -24px !important;padding-bottom: 16px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497433238498{padding-top: 40px !important;padding-bottom: 16px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497433219347{padding-top: 40px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497433065690{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-bottom: 38px !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}.vc_custom_1497433090564{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-bottom: 38px !important;background-color: #fafafa !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}.vc_custom_1497433155220{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-bottom: 38px !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}.vc_custom_1497433179978{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-bottom: 38px !important;background-color: #fafafa !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}'),(4717,638,'_wpb_shortcodes_custom_css','.vc_custom_1497433282779{padding-bottom: 80px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497433249099{margin-top: -24px !important;padding-bottom: 16px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497433238498{padding-top: 40px !important;padding-bottom: 16px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497433219347{padding-top: 40px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497433065690{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-bottom: 38px !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}.vc_custom_1497433090564{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-bottom: 38px !important;background-color: #fafafa !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}.vc_custom_1497433155220{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-bottom: 38px !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}.vc_custom_1497433179978{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-bottom: 38px !important;background-color: #fafafa !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}'),(4718,638,'_wpb_shortcodes_custom_css','.vc_custom_1497433282779{padding-bottom: 80px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497433249099{margin-top: -24px !important;padding-bottom: 16px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497433238498{padding-top: 40px !important;padding-bottom: 16px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497433219347{padding-top: 40px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497433065690{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-bottom: 38px !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}.vc_custom_1497433090564{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-bottom: 38px !important;background-color: #fafafa !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}.vc_custom_1497433155220{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-bottom: 38px !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}.vc_custom_1497433179978{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-bottom: 38px !important;background-color: #fafafa !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}'),(4719,638,'_wpb_shortcodes_custom_css','.vc_custom_1497433282779{padding-bottom: 80px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497433249099{margin-top: -24px !important;padding-bottom: 16px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497433238498{padding-top: 40px !important;padding-bottom: 16px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497433219347{padding-top: 40px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497433065690{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-bottom: 38px !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}.vc_custom_1497433090564{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-bottom: 38px !important;background-color: #fafafa !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}.vc_custom_1497433155220{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-bottom: 38px !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}.vc_custom_1497433179978{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-bottom: 38px !important;background-color: #fafafa !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}'),(4720,638,'_wpb_shortcodes_custom_css','.vc_custom_1497433282779{padding-bottom: 80px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497433249099{margin-top: -24px !important;padding-bottom: 16px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497433238498{padding-top: 40px !important;padding-bottom: 16px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497433219347{padding-top: 40px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497433065690{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-bottom: 38px !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}.vc_custom_1497433090564{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-bottom: 38px !important;background-color: #fafafa !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}.vc_custom_1497433155220{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-bottom: 38px !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}.vc_custom_1497433179978{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-bottom: 38px !important;background-color: #fafafa !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}'),(4721,638,'_wp_page_template','default'),(4722,638,'slide_template','default'),(4723,638,'_wpb_vc_js_status','true'),(4724,638,'mkdf_page_content_behind_header_meta','no'),(4725,638,'mkdf_boxed_background_image_attachment_meta','fixed'),(4726,638,'mkdf_disable_header_widget_logo_area_meta','no'),(4727,638,'mkdf_disable_header_widget_menu_area_meta','no'),(4728,638,'mkdf_disable_footer_meta','no'),(4729,638,'mkdf_menu_area_in_grid_meta','yes'),(4730,638,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(4731,638,'mkdf_sidebar_layout_meta','sidebar-25-left'),(4732,638,'mkdf_custom_sidebar_area_meta','elements-sidebar'),(4733,638,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(4734,638,'mkdf_title_area_background_image_behavior_meta','parallax'),(4735,638,'mkdf_page_content_top_padding','87'),(4736,638,'mkdf_header_type_meta','header-standard'),(4737,638,'mkdf_top_bar_meta','yes'),(4738,638,'mkdf_top_bar_in_grid_meta','yes'),(4739,638,'mkdf_top_bar_border_meta','yes'),(4740,638,'mkdf_top_bar_border_color_meta','#ebebeb'),(4741,638,'mkdf_page_background_color_meta','#ffffff'),(4742,638,'_dp_original','629'),(4743,638,'show_footer_custom_widget_areas','no'),(4744,653,'_wpb_shortcodes_custom_css','.vc_custom_1496992472794{margin-top: -24px !important;padding-bottom: 35px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496913386562{margin-top: -24px !important;padding-bottom: 40px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496913406622{margin-top: -24px !important;padding-bottom: 62px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(4745,653,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4746,653,'_wpb_shortcodes_custom_css','.vc_custom_1496992472794{margin-top: -24px !important;padding-bottom: 35px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496913386562{margin-top: -24px !important;padding-bottom: 40px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496913406622{margin-top: -24px !important;padding-bottom: 62px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(4747,653,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4748,653,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4749,653,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4750,653,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4751,653,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4752,653,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4753,653,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4754,653,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4755,653,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4756,653,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4757,653,'_wpb_shortcodes_custom_css','.vc_custom_1496992472794{margin-top: -24px !important;padding-bottom: 35px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496913386562{margin-top: -24px !important;padding-bottom: 40px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496913406622{margin-top: -24px !important;padding-bottom: 62px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(4758,653,'_wpb_shortcodes_custom_css','.vc_custom_1496992472794{margin-top: -24px !important;padding-bottom: 35px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496913386562{margin-top: -24px !important;padding-bottom: 40px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496913406622{margin-top: -24px !important;padding-bottom: 62px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(4759,653,'_wpb_shortcodes_custom_css','.vc_custom_1496992472794{margin-top: -24px !important;padding-bottom: 35px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496913386562{margin-top: -24px !important;padding-bottom: 40px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496913406622{margin-top: -24px !important;padding-bottom: 62px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(4760,653,'_wpb_shortcodes_custom_css','.vc_custom_1496992472794{margin-top: -24px !important;padding-bottom: 35px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496913386562{margin-top: -24px !important;padding-bottom: 40px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496913406622{margin-top: -24px !important;padding-bottom: 62px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(4761,653,'_wpb_shortcodes_custom_css','.vc_custom_1496992472794{margin-top: -24px !important;padding-bottom: 35px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496913386562{margin-top: -24px !important;padding-bottom: 40px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496913406622{margin-top: -24px !important;padding-bottom: 62px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(4762,653,'_wpb_shortcodes_custom_css','.vc_custom_1496992472794{margin-top: -24px !important;padding-bottom: 35px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496913386562{margin-top: -24px !important;padding-bottom: 40px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496913406622{margin-top: -24px !important;padding-bottom: 62px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(4763,653,'_wp_page_template','default'),(4764,653,'slide_template','default'),(4765,653,'_wpb_vc_js_status','true'),(4766,653,'mkdf_page_content_behind_header_meta','no'),(4767,653,'mkdf_boxed_background_image_attachment_meta','fixed'),(4768,653,'mkdf_disable_header_widget_logo_area_meta','no'),(4769,653,'mkdf_disable_header_widget_menu_area_meta','no'),(4770,653,'mkdf_disable_footer_meta','no'),(4771,653,'mkdf_menu_area_in_grid_meta','yes'),(4772,653,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(4773,653,'mkdf_sidebar_layout_meta','sidebar-25-left'),(4774,653,'mkdf_custom_sidebar_area_meta','elements-sidebar'),(4775,653,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(4776,653,'mkdf_title_area_background_image_behavior_meta','parallax'),(4777,653,'mkdf_page_content_top_padding','87'),(4778,653,'mkdf_header_type_meta','header-standard'),(4779,653,'mkdf_top_bar_meta','yes'),(4780,653,'mkdf_top_bar_in_grid_meta','yes'),(4781,653,'mkdf_top_bar_border_meta','yes'),(4782,653,'mkdf_top_bar_border_color_meta','#ebebeb'),(4783,653,'mkdf_page_background_color_meta','#ffffff'),(4784,653,'_dp_original','638'),(4785,658,'_wpb_shortcodes_custom_css','.vc_custom_1496063146137{margin-top: -24px !important;padding-bottom: 88px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(4786,658,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4787,658,'_wpb_shortcodes_custom_css','.vc_custom_1496063146137{margin-top: -24px !important;padding-bottom: 88px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(4788,658,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4789,658,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4790,658,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4791,658,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4792,658,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4793,658,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4794,658,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4795,658,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4796,658,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4797,658,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4798,658,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4799,658,'_wpb_shortcodes_custom_css','.vc_custom_1496063146137{margin-top: -24px !important;padding-bottom: 88px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(4800,658,'_wpb_shortcodes_custom_css','.vc_custom_1496063146137{margin-top: -24px !important;padding-bottom: 88px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(4801,658,'_wpb_shortcodes_custom_css','.vc_custom_1496063146137{margin-top: -24px !important;padding-bottom: 88px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(4802,658,'_wpb_shortcodes_custom_css','.vc_custom_1496063146137{margin-top: -24px !important;padding-bottom: 88px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(4803,658,'_wpb_shortcodes_custom_css','.vc_custom_1496063146137{margin-top: -24px !important;padding-bottom: 88px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(4804,658,'_wpb_shortcodes_custom_css','.vc_custom_1496063146137{margin-top: -24px !important;padding-bottom: 88px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(4805,658,'_wpb_shortcodes_custom_css','.vc_custom_1496063146137{margin-top: -24px !important;padding-bottom: 88px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(4806,658,'_wp_page_template','default'),(4807,658,'slide_template','default'),(4808,658,'_wpb_vc_js_status','true'),(4809,658,'mkdf_page_content_behind_header_meta','no'),(4810,658,'mkdf_boxed_background_image_attachment_meta','fixed'),(4811,658,'mkdf_disable_header_widget_logo_area_meta','no'),(4812,658,'mkdf_disable_header_widget_menu_area_meta','no'),(4813,658,'mkdf_disable_footer_meta','no'),(4814,658,'mkdf_menu_area_in_grid_meta','yes'),(4815,658,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(4816,658,'mkdf_sidebar_layout_meta','sidebar-25-left'),(4817,658,'mkdf_custom_sidebar_area_meta','elements-sidebar'),(4818,658,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(4819,658,'mkdf_title_area_background_image_behavior_meta','parallax'),(4820,658,'mkdf_page_content_top_padding','87'),(4821,658,'mkdf_header_type_meta','header-standard'),(4822,658,'mkdf_top_bar_meta','yes'),(4823,658,'mkdf_top_bar_in_grid_meta','yes'),(4824,658,'mkdf_top_bar_border_meta','yes'),(4825,658,'mkdf_top_bar_border_color_meta','#ebebeb'),(4826,658,'mkdf_page_background_color_meta','#ffffff'),(4827,658,'_dp_original','653'),(4828,670,'_wpb_shortcodes_custom_css','.vc_custom_1497423878566{margin-top: -24px !important;padding-bottom: 10px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497423825226{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497423804637{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497423779150{margin-top: -24px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497433776345{padding-top: 17px !important;padding-bottom: 17px !important;}'),(4829,670,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4830,670,'_wpb_shortcodes_custom_css','.vc_custom_1497423878566{margin-top: -24px !important;padding-bottom: 10px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497423825226{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497423804637{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497423779150{margin-top: -24px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497433776345{padding-top: 17px !important;padding-bottom: 17px !important;}'),(4831,670,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4832,670,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4833,670,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4834,670,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4835,670,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4836,670,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4837,670,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4838,670,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4839,670,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4840,670,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4841,670,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4842,670,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4843,670,'_wpb_shortcodes_custom_css','.vc_custom_1497423878566{margin-top: -24px !important;padding-bottom: 10px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497423825226{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497423804637{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497423779150{margin-top: -24px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497433776345{padding-top: 17px !important;padding-bottom: 17px !important;}'),(4844,670,'_wpb_shortcodes_custom_css','.vc_custom_1497423878566{margin-top: -24px !important;padding-bottom: 10px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497423825226{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497423804637{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497423779150{margin-top: -24px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497433776345{padding-top: 17px !important;padding-bottom: 17px !important;}'),(4845,670,'_wpb_shortcodes_custom_css','.vc_custom_1497423878566{margin-top: -24px !important;padding-bottom: 10px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497423825226{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497423804637{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497423779150{margin-top: -24px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497433776345{padding-top: 17px !important;padding-bottom: 17px !important;}'),(4846,670,'_wpb_shortcodes_custom_css','.vc_custom_1497423878566{margin-top: -24px !important;padding-bottom: 10px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497423825226{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497423804637{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497423779150{margin-top: -24px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497433776345{padding-top: 17px !important;padding-bottom: 17px !important;}'),(4847,670,'_wpb_shortcodes_custom_css','.vc_custom_1497423878566{margin-top: -24px !important;padding-bottom: 10px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497423825226{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497423804637{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497423779150{margin-top: -24px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497433776345{padding-top: 17px !important;padding-bottom: 17px !important;}'),(4848,670,'_wpb_shortcodes_custom_css','.vc_custom_1497423878566{margin-top: -24px !important;padding-bottom: 10px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497423825226{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497423804637{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497423779150{margin-top: -24px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497433776345{padding-top: 17px !important;padding-bottom: 17px !important;}'),(4849,670,'_wpb_shortcodes_custom_css','.vc_custom_1497423878566{margin-top: -24px !important;padding-bottom: 10px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497423825226{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497423804637{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497423779150{margin-top: -24px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497433776345{padding-top: 17px !important;padding-bottom: 17px !important;}'),(4850,670,'_wpb_shortcodes_custom_css','.vc_custom_1497423878566{margin-top: -24px !important;padding-bottom: 10px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497423825226{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497423804637{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497423779150{margin-top: -24px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497433776345{padding-top: 17px !important;padding-bottom: 17px !important;}'),(4851,670,'_wp_page_template','default'),(4852,670,'slide_template','default'),(4853,670,'_wpb_vc_js_status','true'),(4854,670,'mkdf_page_content_behind_header_meta','no'),(4855,670,'mkdf_boxed_background_image_attachment_meta','fixed'),(4856,670,'mkdf_disable_header_widget_logo_area_meta','no'),(4857,670,'mkdf_disable_header_widget_menu_area_meta','no'),(4858,670,'mkdf_disable_footer_meta','no'),(4859,670,'mkdf_menu_area_in_grid_meta','yes'),(4860,670,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(4861,670,'mkdf_sidebar_layout_meta','sidebar-25-left'),(4862,670,'mkdf_custom_sidebar_area_meta','elements-sidebar'),(4863,670,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(4864,670,'mkdf_title_area_background_image_behavior_meta','parallax'),(4865,670,'mkdf_page_content_top_padding','87'),(4866,670,'mkdf_header_type_meta','header-standard'),(4867,670,'mkdf_top_bar_meta','yes'),(4868,670,'mkdf_top_bar_in_grid_meta','yes'),(4869,670,'mkdf_top_bar_border_meta','yes'),(4870,670,'mkdf_top_bar_border_color_meta','#ebebeb'),(4871,670,'mkdf_page_background_color_meta','#ffffff'),(4872,670,'_dp_original','658'),(4873,670,'show_footer_custom_widget_areas','no'),(4874,684,'_wpb_shortcodes_custom_css','.vc_custom_1496926996228{margin-top: -24px !important;padding-bottom: 38px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496927002654{margin-top: -24px !important;padding-bottom: 38px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(4875,684,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4876,684,'_wpb_shortcodes_custom_css','.vc_custom_1496926996228{margin-top: -24px !important;padding-bottom: 38px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496927002654{margin-top: -24px !important;padding-bottom: 38px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(4877,684,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4878,684,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4879,684,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4880,684,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4881,684,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4882,684,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4883,684,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4884,684,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4885,684,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4886,684,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4887,684,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4888,684,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4889,684,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4890,684,'_wpb_shortcodes_custom_css','.vc_custom_1496926996228{margin-top: -24px !important;padding-bottom: 38px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496927002654{margin-top: -24px !important;padding-bottom: 38px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(4891,684,'_wpb_shortcodes_custom_css','.vc_custom_1496926996228{margin-top: -24px !important;padding-bottom: 38px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496927002654{margin-top: -24px !important;padding-bottom: 38px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(4892,684,'_wpb_shortcodes_custom_css','.vc_custom_1496926996228{margin-top: -24px !important;padding-bottom: 38px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496927002654{margin-top: -24px !important;padding-bottom: 38px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(4893,684,'_wpb_shortcodes_custom_css','.vc_custom_1496926996228{margin-top: -24px !important;padding-bottom: 38px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496927002654{margin-top: -24px !important;padding-bottom: 38px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(4894,684,'_wpb_shortcodes_custom_css','.vc_custom_1496926996228{margin-top: -24px !important;padding-bottom: 38px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496927002654{margin-top: -24px !important;padding-bottom: 38px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(4895,684,'_wpb_shortcodes_custom_css','.vc_custom_1496926996228{margin-top: -24px !important;padding-bottom: 38px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496927002654{margin-top: -24px !important;padding-bottom: 38px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(4896,684,'_wpb_shortcodes_custom_css','.vc_custom_1496926996228{margin-top: -24px !important;padding-bottom: 38px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496927002654{margin-top: -24px !important;padding-bottom: 38px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(4897,684,'_wpb_shortcodes_custom_css','.vc_custom_1496926996228{margin-top: -24px !important;padding-bottom: 38px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496927002654{margin-top: -24px !important;padding-bottom: 38px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(4898,684,'_wpb_shortcodes_custom_css','.vc_custom_1496926996228{margin-top: -24px !important;padding-bottom: 38px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496927002654{margin-top: -24px !important;padding-bottom: 38px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(4899,684,'_wp_page_template','default'),(4900,684,'slide_template','default'),(4901,684,'_wpb_vc_js_status','true'),(4902,684,'mkdf_page_content_behind_header_meta','no'),(4903,684,'mkdf_boxed_background_image_attachment_meta','fixed'),(4904,684,'mkdf_disable_header_widget_logo_area_meta','no'),(4905,684,'mkdf_disable_header_widget_menu_area_meta','no'),(4906,684,'mkdf_disable_footer_meta','no'),(4907,684,'mkdf_menu_area_in_grid_meta','yes'),(4908,684,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(4909,684,'mkdf_sidebar_layout_meta','sidebar-25-left'),(4910,684,'mkdf_custom_sidebar_area_meta','elements-sidebar'),(4911,684,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(4912,684,'mkdf_title_area_background_image_behavior_meta','parallax'),(4913,684,'mkdf_page_content_top_padding','87'),(4914,684,'mkdf_header_type_meta','header-standard'),(4915,684,'mkdf_top_bar_meta','yes'),(4916,684,'mkdf_top_bar_in_grid_meta','yes'),(4917,684,'mkdf_top_bar_border_meta','yes'),(4918,684,'mkdf_top_bar_border_color_meta','#ebebeb'),(4919,684,'mkdf_page_background_color_meta','#ffffff'),(4920,684,'_dp_original','670'),(4921,697,'_wpb_shortcodes_custom_css','.vc_custom_1496929424084{padding-top: 11% !important;}.vc_custom_1496222960488{padding-top: 73px !important;padding-bottom: 120px !important;background-color: #fafafa !important;}.vc_custom_1497522060549{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1495784515712{padding-top: 130px !important;padding-bottom: 125px !important;}.vc_custom_1496059316947{padding-top: 130px !important;padding-bottom: 125px !important;}.vc_custom_1496218324852{padding-top: 110px !important;padding-bottom: 100px !important;}.vc_custom_1496222787553{padding-top: 100px !important;}.vc_custom_1496222666527{padding-top: 92px !important;padding-bottom: 94px !important;}.vc_custom_1496222895979{padding-bottom: 120px !important;}'),(4922,697,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4923,697,'_wp_page_template','full-width.php'),(4924,697,'slide_template','default'),(4925,697,'_wpb_vc_js_status','true'),(4926,697,'_wpb_shortcodes_custom_css','.vc_custom_1496929424084{padding-top: 11% !important;}.vc_custom_1496222960488{padding-top: 73px !important;padding-bottom: 120px !important;background-color: #fafafa !important;}.vc_custom_1497522060549{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1495784515712{padding-top: 130px !important;padding-bottom: 125px !important;}.vc_custom_1496059316947{padding-top: 130px !important;padding-bottom: 125px !important;}.vc_custom_1496218324852{padding-top: 110px !important;padding-bottom: 100px !important;}.vc_custom_1496222787553{padding-top: 100px !important;}.vc_custom_1496222666527{padding-top: 92px !important;padding-bottom: 94px !important;}.vc_custom_1496222895979{padding-bottom: 120px !important;}'),(4927,697,'mkdf_page_content_behind_header_meta','no'),(4928,697,'mkdf_boxed_background_image_attachment_meta','fixed'),(4929,697,'mkdf_disable_header_widget_logo_area_meta','no'),(4930,697,'mkdf_disable_header_widget_menu_area_meta','no'),(4931,697,'mkdf_disable_footer_meta','no'),(4932,697,'mkdf_show_title_area_meta','no'),(4933,697,'mkdf_menu_area_background_color_meta','#ffffff'),(4934,697,'mkdf_menu_area_background_transparency_meta','0'),(4935,697,'mkdf_header_style_meta','light-header'),(4936,697,'mkdf_menu_area_in_grid_meta','yes'),(4937,697,'mkdf_page_content_top_padding','0'),(4938,697,'mkdf_page_content_top_padding_mobile','yes'),(4939,697,'mkdf_header_type_meta','header-standard'),(4940,697,'mkdf_top_bar_meta','no'),(4941,697,'show_footer_custom_widget_areas','no'),(4942,727,'_wpb_shortcodes_custom_css','.vc_custom_1496067734798{margin-top: -24px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496067792715{margin-top: -5px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(4943,727,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4944,727,'_wpb_shortcodes_custom_css','.vc_custom_1496067734798{margin-top: -24px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496067792715{margin-top: -5px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(4945,727,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4946,727,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4947,727,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4948,727,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4949,727,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4950,727,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4951,727,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4952,727,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4953,727,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4954,727,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4955,727,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4956,727,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4957,727,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4958,727,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4959,727,'_wpb_shortcodes_custom_css','.vc_custom_1496067734798{margin-top: -24px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496067792715{margin-top: -5px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(4960,727,'_wpb_shortcodes_custom_css','.vc_custom_1496067734798{margin-top: -24px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496067792715{margin-top: -5px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(4961,727,'_wpb_shortcodes_custom_css','.vc_custom_1496067734798{margin-top: -24px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496067792715{margin-top: -5px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(4962,727,'_wpb_shortcodes_custom_css','.vc_custom_1496067734798{margin-top: -24px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496067792715{margin-top: -5px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(4963,727,'_wpb_shortcodes_custom_css','.vc_custom_1496067734798{margin-top: -24px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496067792715{margin-top: -5px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(4964,727,'_wpb_shortcodes_custom_css','.vc_custom_1496067734798{margin-top: -24px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496067792715{margin-top: -5px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(4965,727,'_wpb_shortcodes_custom_css','.vc_custom_1496067734798{margin-top: -24px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496067792715{margin-top: -5px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(4966,727,'_wpb_shortcodes_custom_css','.vc_custom_1496067734798{margin-top: -24px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496067792715{margin-top: -5px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(4967,727,'_wpb_shortcodes_custom_css','.vc_custom_1496067734798{margin-top: -24px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496067792715{margin-top: -5px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(4968,727,'_wpb_shortcodes_custom_css','.vc_custom_1496067734798{margin-top: -24px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496067792715{margin-top: -5px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(4969,727,'_wp_page_template','default'),(4970,727,'slide_template','default'),(4971,727,'_wpb_vc_js_status','true'),(4972,727,'mkdf_page_content_behind_header_meta','no'),(4973,727,'mkdf_boxed_background_image_attachment_meta','fixed'),(4974,727,'mkdf_disable_header_widget_logo_area_meta','no'),(4975,727,'mkdf_disable_header_widget_menu_area_meta','no'),(4976,727,'mkdf_disable_footer_meta','no'),(4977,727,'mkdf_menu_area_in_grid_meta','yes'),(4978,727,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(4979,727,'mkdf_sidebar_layout_meta','sidebar-25-left'),(4980,727,'mkdf_custom_sidebar_area_meta','elements-sidebar'),(4981,727,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(4982,727,'mkdf_title_area_background_image_behavior_meta','parallax'),(4983,727,'mkdf_page_content_top_padding','87'),(4984,727,'mkdf_header_type_meta','header-standard'),(4985,727,'mkdf_top_bar_meta','yes'),(4986,727,'mkdf_top_bar_in_grid_meta','yes'),(4987,727,'mkdf_top_bar_border_meta','yes'),(4988,727,'mkdf_top_bar_border_color_meta','#ebebeb'),(4989,727,'mkdf_page_background_color_meta','#ffffff'),(4990,727,'_dp_original','684'),(4991,776,'_wpb_shortcodes_custom_css','.vc_custom_1496068885573{margin-top: -40px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496068698495{margin-top: -80px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496068918574{margin-top: -80px !important;padding-bottom: 76px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(4992,776,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4993,776,'_wpb_shortcodes_custom_css','.vc_custom_1496068885573{margin-top: -40px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496068698495{margin-top: -80px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496068918574{margin-top: -80px !important;padding-bottom: 76px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(4994,776,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4995,776,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4996,776,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4997,776,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4998,776,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4999,776,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5000,776,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5001,776,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5002,776,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5003,776,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5004,776,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5005,776,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5006,776,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5007,776,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5008,776,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5009,776,'_wpb_shortcodes_custom_css','.vc_custom_1496068885573{margin-top: -40px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496068698495{margin-top: -80px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496068918574{margin-top: -80px !important;padding-bottom: 76px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5010,776,'_wpb_shortcodes_custom_css','.vc_custom_1496068885573{margin-top: -40px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496068698495{margin-top: -80px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496068918574{margin-top: -80px !important;padding-bottom: 76px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5011,776,'_wpb_shortcodes_custom_css','.vc_custom_1496068885573{margin-top: -40px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496068698495{margin-top: -80px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496068918574{margin-top: -80px !important;padding-bottom: 76px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5012,776,'_wpb_shortcodes_custom_css','.vc_custom_1496068885573{margin-top: -40px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496068698495{margin-top: -80px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496068918574{margin-top: -80px !important;padding-bottom: 76px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5013,776,'_wpb_shortcodes_custom_css','.vc_custom_1496068885573{margin-top: -40px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496068698495{margin-top: -80px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496068918574{margin-top: -80px !important;padding-bottom: 76px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5014,776,'_wpb_shortcodes_custom_css','.vc_custom_1496068885573{margin-top: -40px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496068698495{margin-top: -80px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496068918574{margin-top: -80px !important;padding-bottom: 76px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5015,776,'_wpb_shortcodes_custom_css','.vc_custom_1496068885573{margin-top: -40px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496068698495{margin-top: -80px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496068918574{margin-top: -80px !important;padding-bottom: 76px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5016,776,'_wpb_shortcodes_custom_css','.vc_custom_1496068885573{margin-top: -40px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496068698495{margin-top: -80px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496068918574{margin-top: -80px !important;padding-bottom: 76px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5017,776,'_wpb_shortcodes_custom_css','.vc_custom_1496068885573{margin-top: -40px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496068698495{margin-top: -80px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496068918574{margin-top: -80px !important;padding-bottom: 76px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5018,776,'_wpb_shortcodes_custom_css','.vc_custom_1496068885573{margin-top: -40px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496068698495{margin-top: -80px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496068918574{margin-top: -80px !important;padding-bottom: 76px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5019,776,'_wpb_shortcodes_custom_css','.vc_custom_1496068885573{margin-top: -40px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496068698495{margin-top: -80px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496068918574{margin-top: -80px !important;padding-bottom: 76px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5020,776,'_wp_page_template','default'),(5021,776,'slide_template','default'),(5022,776,'_wpb_vc_js_status','true'),(5023,776,'mkdf_page_content_behind_header_meta','no'),(5024,776,'mkdf_boxed_background_image_attachment_meta','fixed'),(5025,776,'mkdf_disable_header_widget_logo_area_meta','no'),(5026,776,'mkdf_disable_header_widget_menu_area_meta','no'),(5027,776,'mkdf_disable_footer_meta','no'),(5028,776,'mkdf_menu_area_in_grid_meta','yes'),(5029,776,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(5030,776,'mkdf_sidebar_layout_meta','sidebar-25-left'),(5031,776,'mkdf_custom_sidebar_area_meta','elements-sidebar'),(5032,776,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(5033,776,'mkdf_title_area_background_image_behavior_meta','parallax'),(5034,776,'mkdf_page_content_top_padding','87'),(5035,776,'mkdf_header_type_meta','header-standard'),(5036,776,'mkdf_top_bar_meta','yes'),(5037,776,'mkdf_top_bar_in_grid_meta','yes'),(5038,776,'mkdf_top_bar_border_meta','yes'),(5039,776,'mkdf_top_bar_border_color_meta','#ebebeb'),(5040,776,'mkdf_page_background_color_meta','#ffffff'),(5041,776,'_dp_original','727'),(5042,881,'_wpb_shortcodes_custom_css','.vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496132755772{padding-bottom: 70px !important;}'),(5043,881,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5044,881,'_wpb_shortcodes_custom_css','.vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496132755772{padding-bottom: 70px !important;}'),(5045,881,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5046,881,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5047,881,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5048,881,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5049,881,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5050,881,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5051,881,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5052,881,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5053,881,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5054,881,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5055,881,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5056,881,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5057,881,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5058,881,'_wpb_shortcodes_custom_css','.vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496132755772{padding-bottom: 70px !important;}'),(5059,881,'_wpb_shortcodes_custom_css','.vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496132755772{padding-bottom: 70px !important;}'),(5060,881,'_wpb_shortcodes_custom_css','.vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496132755772{padding-bottom: 70px !important;}'),(5061,881,'_wpb_shortcodes_custom_css','.vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496132755772{padding-bottom: 70px !important;}'),(5062,881,'_wpb_shortcodes_custom_css','.vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496132755772{padding-bottom: 70px !important;}'),(5063,881,'_wpb_shortcodes_custom_css','.vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496132755772{padding-bottom: 70px !important;}'),(5064,881,'_wpb_shortcodes_custom_css','.vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496132755772{padding-bottom: 70px !important;}'),(5065,881,'_wpb_shortcodes_custom_css','.vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496132755772{padding-bottom: 70px !important;}'),(5066,881,'_wpb_shortcodes_custom_css','.vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496132755772{padding-bottom: 70px !important;}'),(5067,881,'_wp_page_template','default'),(5068,881,'slide_template','default'),(5069,881,'_wpb_vc_js_status','true'),(5070,881,'mkdf_page_content_behind_header_meta','no'),(5071,881,'mkdf_boxed_background_image_attachment_meta','fixed'),(5072,881,'mkdf_disable_header_widget_logo_area_meta','no'),(5073,881,'mkdf_disable_header_widget_menu_area_meta','no'),(5074,881,'mkdf_disable_footer_meta','no'),(5075,881,'mkdf_menu_area_in_grid_meta','yes'),(5076,881,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(5077,881,'mkdf_sidebar_layout_meta','sidebar-25-left'),(5078,881,'mkdf_custom_sidebar_area_meta','elements-sidebar'),(5079,881,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(5080,881,'mkdf_title_area_background_image_behavior_meta','parallax'),(5081,881,'mkdf_page_content_top_padding','87'),(5082,881,'mkdf_header_type_meta','header-standard'),(5083,881,'mkdf_top_bar_meta','yes'),(5084,881,'mkdf_top_bar_in_grid_meta','yes'),(5085,881,'mkdf_top_bar_border_meta','yes'),(5086,881,'mkdf_top_bar_border_color_meta','#ebebeb'),(5087,881,'mkdf_page_background_color_meta','#ffffff'),(5088,881,'_dp_original','670'),(5089,896,'_wpb_shortcodes_custom_css','.vc_custom_1496215582959{padding-top: 60px !important;padding-bottom: 35px !important;}.vc_custom_1496138769068{padding-top: 100px !important;}.vc_custom_1496674302310{padding-top: 130px !important;padding-bottom: 124px !important;}.vc_custom_1495784515712{padding-top: 130px !important;padding-bottom: 125px !important;}.vc_custom_1496134340529{padding-top: 110px !important;padding-bottom: 125px !important;}.vc_custom_1496221442667{padding-top: 110px !important;padding-bottom: 94px !important;}.vc_custom_1496328924185{padding-top: 110px !important;padding-bottom: 130px !important;}.vc_custom_1496139013215{padding-top: 90px !important;padding-bottom: 90px !important;}.vc_custom_1496216729923{margin-left: -23% !important;}'),(5090,896,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5091,896,'_wp_page_template','full-width.php'),(5092,896,'slide_template','default'),(5093,896,'_wpb_vc_js_status','true'),(5094,896,'_wpb_shortcodes_custom_css','.vc_custom_1496215582959{padding-top: 60px !important;padding-bottom: 35px !important;}.vc_custom_1496138769068{padding-top: 100px !important;}.vc_custom_1496674302310{padding-top: 130px !important;padding-bottom: 124px !important;}.vc_custom_1495784515712{padding-top: 130px !important;padding-bottom: 125px !important;}.vc_custom_1496134340529{padding-top: 110px !important;padding-bottom: 125px !important;}.vc_custom_1496221442667{padding-top: 110px !important;padding-bottom: 94px !important;}.vc_custom_1496328924185{padding-top: 110px !important;padding-bottom: 130px !important;}.vc_custom_1496139013215{padding-top: 90px !important;padding-bottom: 90px !important;}.vc_custom_1496216729923{margin-left: -23% !important;}'),(5095,896,'mkdf_page_content_behind_header_meta','yes'),(5096,896,'mkdf_boxed_background_image_attachment_meta','fixed'),(5097,896,'mkdf_disable_header_widget_logo_area_meta','no'),(5098,896,'mkdf_disable_header_widget_menu_area_meta','no'),(5099,896,'mkdf_disable_footer_meta','no'),(5100,896,'mkdf_header_type_meta','header-standard'),(5101,896,'mkdf_top_bar_meta','no'),(5102,896,'mkdf_menu_area_in_grid_meta','yes'),(5103,896,'mkdf_page_slider_meta','[rev_slider alias=\"home-5\"]'),(5104,896,'mkdf_header_style_meta','light-header'),(5105,896,'mkdf_menu_area_background_color_meta','#ffffff'),(5106,896,'mkdf_menu_area_background_transparency_meta','0'),(5107,896,'mkdf_show_title_area_meta','no'),(5108,896,'mkdf_page_content_top_padding','0px'),(5109,896,'mkdf_page_content_top_padding_mobile','yes'),(5110,896,'show_footer_custom_widget_areas','no'),(5111,897,'_wpb_shortcodes_custom_css','.vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497427078791{margin-top: -24px !important;padding-bottom: 98px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5112,897,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5113,897,'_wpb_shortcodes_custom_css','.vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497427078791{margin-top: -24px !important;padding-bottom: 98px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5114,897,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5115,897,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5116,897,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5117,897,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5118,897,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5119,897,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5120,897,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5121,897,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5122,897,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5123,897,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5124,897,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5125,897,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5126,897,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5127,897,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5128,897,'_wpb_shortcodes_custom_css','.vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497427078791{margin-top: -24px !important;padding-bottom: 98px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5129,897,'_wpb_shortcodes_custom_css','.vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497427078791{margin-top: -24px !important;padding-bottom: 98px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5130,897,'_wpb_shortcodes_custom_css','.vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497427078791{margin-top: -24px !important;padding-bottom: 98px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5131,897,'_wpb_shortcodes_custom_css','.vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497427078791{margin-top: -24px !important;padding-bottom: 98px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5132,897,'_wpb_shortcodes_custom_css','.vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497427078791{margin-top: -24px !important;padding-bottom: 98px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5133,897,'_wpb_shortcodes_custom_css','.vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497427078791{margin-top: -24px !important;padding-bottom: 98px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5134,897,'_wpb_shortcodes_custom_css','.vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497427078791{margin-top: -24px !important;padding-bottom: 98px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5135,897,'_wpb_shortcodes_custom_css','.vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497427078791{margin-top: -24px !important;padding-bottom: 98px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5136,897,'_wpb_shortcodes_custom_css','.vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497427078791{margin-top: -24px !important;padding-bottom: 98px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5137,897,'_wpb_shortcodes_custom_css','.vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497427078791{margin-top: -24px !important;padding-bottom: 98px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5138,897,'_wp_page_template','default'),(5139,897,'slide_template','default'),(5140,897,'_wpb_vc_js_status','true'),(5141,897,'mkdf_page_content_behind_header_meta','no'),(5142,897,'mkdf_boxed_background_image_attachment_meta','fixed'),(5143,897,'mkdf_disable_header_widget_logo_area_meta','no'),(5144,897,'mkdf_disable_header_widget_menu_area_meta','no'),(5145,897,'mkdf_disable_footer_meta','no'),(5146,897,'mkdf_menu_area_in_grid_meta','yes'),(5147,897,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(5148,897,'mkdf_sidebar_layout_meta','sidebar-25-left'),(5149,897,'mkdf_custom_sidebar_area_meta','elements-sidebar'),(5150,897,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(5151,897,'mkdf_title_area_background_image_behavior_meta','parallax'),(5152,897,'mkdf_page_content_top_padding','87'),(5153,897,'mkdf_header_type_meta','header-standard'),(5154,897,'mkdf_top_bar_meta','yes'),(5155,897,'mkdf_top_bar_in_grid_meta','yes'),(5156,897,'mkdf_top_bar_border_meta','yes'),(5157,897,'mkdf_top_bar_border_color_meta','#ebebeb'),(5158,897,'mkdf_page_background_color_meta','#ffffff'),(5159,897,'_dp_original','881'),(5160,897,'show_footer_custom_widget_areas','no'),(5161,910,'_wpb_shortcodes_custom_css','.vc_custom_1496133764493{margin-top: -23px !important;padding-bottom: 90px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496133642527{margin-top: -40px !important;padding-bottom: 90px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496133672044{margin-top: -40px !important;padding-bottom: 90px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496133725620{margin-top: -40px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5162,910,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5163,910,'_wpb_shortcodes_custom_css','.vc_custom_1496133764493{margin-top: -23px !important;padding-bottom: 90px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496133642527{margin-top: -40px !important;padding-bottom: 90px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496133672044{margin-top: -40px !important;padding-bottom: 90px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496133725620{margin-top: -40px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5164,910,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5165,910,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5166,910,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5167,910,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5168,910,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5169,910,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5170,910,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5171,910,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5172,910,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5173,910,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5174,910,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5175,910,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5176,910,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5177,910,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5178,910,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5179,910,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5180,910,'_wpb_shortcodes_custom_css','.vc_custom_1496133764493{margin-top: -23px !important;padding-bottom: 90px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496133642527{margin-top: -40px !important;padding-bottom: 90px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496133672044{margin-top: -40px !important;padding-bottom: 90px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496133725620{margin-top: -40px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5181,910,'_wpb_shortcodes_custom_css','.vc_custom_1496133764493{margin-top: -23px !important;padding-bottom: 90px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496133642527{margin-top: -40px !important;padding-bottom: 90px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496133672044{margin-top: -40px !important;padding-bottom: 90px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496133725620{margin-top: -40px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5182,910,'_wpb_shortcodes_custom_css','.vc_custom_1496133764493{margin-top: -23px !important;padding-bottom: 90px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496133642527{margin-top: -40px !important;padding-bottom: 90px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496133672044{margin-top: -40px !important;padding-bottom: 90px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496133725620{margin-top: -40px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5183,910,'_wpb_shortcodes_custom_css','.vc_custom_1496133764493{margin-top: -23px !important;padding-bottom: 90px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496133642527{margin-top: -40px !important;padding-bottom: 90px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496133672044{margin-top: -40px !important;padding-bottom: 90px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496133725620{margin-top: -40px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5184,910,'_wpb_shortcodes_custom_css','.vc_custom_1496133764493{margin-top: -23px !important;padding-bottom: 90px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496133642527{margin-top: -40px !important;padding-bottom: 90px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496133672044{margin-top: -40px !important;padding-bottom: 90px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496133725620{margin-top: -40px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5185,910,'_wpb_shortcodes_custom_css','.vc_custom_1496133764493{margin-top: -23px !important;padding-bottom: 90px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496133642527{margin-top: -40px !important;padding-bottom: 90px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496133672044{margin-top: -40px !important;padding-bottom: 90px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496133725620{margin-top: -40px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5186,910,'_wpb_shortcodes_custom_css','.vc_custom_1496133764493{margin-top: -23px !important;padding-bottom: 90px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496133642527{margin-top: -40px !important;padding-bottom: 90px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496133672044{margin-top: -40px !important;padding-bottom: 90px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496133725620{margin-top: -40px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5187,910,'_wpb_shortcodes_custom_css','.vc_custom_1496133764493{margin-top: -23px !important;padding-bottom: 90px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496133642527{margin-top: -40px !important;padding-bottom: 90px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496133672044{margin-top: -40px !important;padding-bottom: 90px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496133725620{margin-top: -40px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5188,910,'_wpb_shortcodes_custom_css','.vc_custom_1496133764493{margin-top: -23px !important;padding-bottom: 90px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496133642527{margin-top: -40px !important;padding-bottom: 90px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496133672044{margin-top: -40px !important;padding-bottom: 90px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496133725620{margin-top: -40px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5189,910,'_wpb_shortcodes_custom_css','.vc_custom_1496133764493{margin-top: -23px !important;padding-bottom: 90px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496133642527{margin-top: -40px !important;padding-bottom: 90px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496133672044{margin-top: -40px !important;padding-bottom: 90px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496133725620{margin-top: -40px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5190,910,'_wpb_shortcodes_custom_css','.vc_custom_1496133764493{margin-top: -23px !important;padding-bottom: 90px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496133642527{margin-top: -40px !important;padding-bottom: 90px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496133672044{margin-top: -40px !important;padding-bottom: 90px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496133725620{margin-top: -40px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5191,910,'_wpb_shortcodes_custom_css','.vc_custom_1496133764493{margin-top: -23px !important;padding-bottom: 90px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496133642527{margin-top: -40px !important;padding-bottom: 90px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496133672044{margin-top: -40px !important;padding-bottom: 90px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496133725620{margin-top: -40px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5192,910,'_wp_page_template','default'),(5193,910,'slide_template','default'),(5194,910,'_wpb_vc_js_status','true'),(5195,910,'mkdf_page_content_behind_header_meta','no'),(5196,910,'mkdf_boxed_background_image_attachment_meta','fixed'),(5197,910,'mkdf_disable_header_widget_logo_area_meta','no'),(5198,910,'mkdf_disable_header_widget_menu_area_meta','no'),(5199,910,'mkdf_disable_footer_meta','no'),(5200,910,'mkdf_menu_area_in_grid_meta','yes'),(5201,910,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(5202,910,'mkdf_sidebar_layout_meta','sidebar-25-left'),(5203,910,'mkdf_custom_sidebar_area_meta','elements-sidebar'),(5204,910,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(5205,910,'mkdf_title_area_background_image_behavior_meta','parallax'),(5206,910,'mkdf_page_content_top_padding','87'),(5207,910,'mkdf_header_type_meta','header-standard'),(5208,910,'mkdf_top_bar_meta','yes'),(5209,910,'mkdf_top_bar_in_grid_meta','yes'),(5210,910,'mkdf_top_bar_border_meta','yes'),(5211,910,'mkdf_top_bar_border_color_meta','#ebebeb'),(5212,910,'mkdf_page_background_color_meta','#ffffff'),(5213,910,'_dp_original','776'),(5214,927,'_wpb_shortcodes_custom_css','.vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5215,927,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5216,927,'_wpb_shortcodes_custom_css','.vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5217,927,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5218,927,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5219,927,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5220,927,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5221,927,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5222,927,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5223,927,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5224,927,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5225,927,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5226,927,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5227,927,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5228,927,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5229,927,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5230,927,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5231,927,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5232,927,'_wpb_shortcodes_custom_css','.vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5233,927,'_wpb_shortcodes_custom_css','.vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5234,927,'_wpb_shortcodes_custom_css','.vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5235,927,'_wpb_shortcodes_custom_css','.vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5236,927,'_wpb_shortcodes_custom_css','.vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5237,927,'_wpb_shortcodes_custom_css','.vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5238,927,'_wpb_shortcodes_custom_css','.vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5239,927,'_wpb_shortcodes_custom_css','.vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5240,927,'_wpb_shortcodes_custom_css','.vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5241,927,'_wpb_shortcodes_custom_css','.vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5242,927,'_wpb_shortcodes_custom_css','.vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5243,927,'_wp_page_template','default'),(5244,927,'slide_template','default'),(5245,927,'_wpb_vc_js_status','true'),(5246,927,'mkdf_page_content_behind_header_meta','no'),(5247,927,'mkdf_boxed_background_image_attachment_meta','fixed'),(5248,927,'mkdf_disable_header_widget_logo_area_meta','no'),(5249,927,'mkdf_disable_header_widget_menu_area_meta','no'),(5250,927,'mkdf_disable_footer_meta','no'),(5251,927,'mkdf_menu_area_in_grid_meta','yes'),(5252,927,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(5253,927,'mkdf_sidebar_layout_meta','sidebar-25-left'),(5254,927,'mkdf_custom_sidebar_area_meta','elements-sidebar'),(5255,927,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(5256,927,'mkdf_title_area_background_image_behavior_meta','parallax'),(5257,927,'mkdf_page_content_top_padding','87'),(5258,927,'mkdf_header_type_meta','header-standard'),(5259,927,'mkdf_top_bar_meta','yes'),(5260,927,'mkdf_top_bar_in_grid_meta','yes'),(5261,927,'mkdf_top_bar_border_meta','yes'),(5262,927,'mkdf_top_bar_border_color_meta','#ebebeb'),(5263,927,'mkdf_page_background_color_meta','#ffffff'),(5264,927,'_dp_original','897'),(5265,927,'show_footer_custom_widget_areas','no'),(5266,949,'_wpb_shortcodes_custom_css','.vc_custom_1496913710118{margin-top: -42px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496136157330{padding-bottom: 50px !important;}.vc_custom_1496136212650{padding-bottom: 88px !important;}'),(5267,949,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5268,949,'_wpb_shortcodes_custom_css','.vc_custom_1496913710118{margin-top: -42px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496136157330{padding-bottom: 50px !important;}.vc_custom_1496136212650{padding-bottom: 88px !important;}'),(5269,949,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5270,949,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5271,949,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5272,949,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5273,949,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5274,949,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5275,949,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5276,949,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5277,949,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5278,949,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5279,949,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5280,949,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5281,949,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5282,949,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5283,949,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5284,949,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5285,949,'_wpb_shortcodes_custom_css','.vc_custom_1496913710118{margin-top: -42px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496136157330{padding-bottom: 50px !important;}.vc_custom_1496136212650{padding-bottom: 88px !important;}'),(5286,949,'_wpb_shortcodes_custom_css','.vc_custom_1496913710118{margin-top: -42px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496136157330{padding-bottom: 50px !important;}.vc_custom_1496136212650{padding-bottom: 88px !important;}'),(5287,949,'_wpb_shortcodes_custom_css','.vc_custom_1496913710118{margin-top: -42px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496136157330{padding-bottom: 50px !important;}.vc_custom_1496136212650{padding-bottom: 88px !important;}'),(5288,949,'_wpb_shortcodes_custom_css','.vc_custom_1496913710118{margin-top: -42px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496136157330{padding-bottom: 50px !important;}.vc_custom_1496136212650{padding-bottom: 88px !important;}'),(5289,949,'_wpb_shortcodes_custom_css','.vc_custom_1496913710118{margin-top: -42px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496136157330{padding-bottom: 50px !important;}.vc_custom_1496136212650{padding-bottom: 88px !important;}'),(5290,949,'_wpb_shortcodes_custom_css','.vc_custom_1496913710118{margin-top: -42px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496136157330{padding-bottom: 50px !important;}.vc_custom_1496136212650{padding-bottom: 88px !important;}'),(5291,949,'_wpb_shortcodes_custom_css','.vc_custom_1496913710118{margin-top: -42px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496136157330{padding-bottom: 50px !important;}.vc_custom_1496136212650{padding-bottom: 88px !important;}'),(5292,949,'_wpb_shortcodes_custom_css','.vc_custom_1496913710118{margin-top: -42px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496136157330{padding-bottom: 50px !important;}.vc_custom_1496136212650{padding-bottom: 88px !important;}'),(5293,949,'_wpb_shortcodes_custom_css','.vc_custom_1496913710118{margin-top: -42px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496136157330{padding-bottom: 50px !important;}.vc_custom_1496136212650{padding-bottom: 88px !important;}'),(5294,949,'_wpb_shortcodes_custom_css','.vc_custom_1496913710118{margin-top: -42px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496136157330{padding-bottom: 50px !important;}.vc_custom_1496136212650{padding-bottom: 88px !important;}'),(5295,949,'_wpb_shortcodes_custom_css','.vc_custom_1496913710118{margin-top: -42px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496136157330{padding-bottom: 50px !important;}.vc_custom_1496136212650{padding-bottom: 88px !important;}'),(5296,949,'_wpb_shortcodes_custom_css','.vc_custom_1496913710118{margin-top: -42px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496136157330{padding-bottom: 50px !important;}.vc_custom_1496136212650{padding-bottom: 88px !important;}'),(5297,949,'_wp_page_template','default'),(5298,949,'slide_template','default'),(5299,949,'_wpb_vc_js_status','true'),(5300,949,'mkdf_page_content_behind_header_meta','no'),(5301,949,'mkdf_boxed_background_image_attachment_meta','fixed'),(5302,949,'mkdf_disable_header_widget_logo_area_meta','no'),(5303,949,'mkdf_disable_header_widget_menu_area_meta','no'),(5304,949,'mkdf_disable_footer_meta','no'),(5305,949,'mkdf_menu_area_in_grid_meta','yes'),(5306,949,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(5307,949,'mkdf_sidebar_layout_meta','sidebar-25-left'),(5308,949,'mkdf_custom_sidebar_area_meta','elements-sidebar'),(5309,949,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(5310,949,'mkdf_title_area_background_image_behavior_meta','parallax'),(5311,949,'mkdf_page_content_top_padding','87'),(5312,949,'mkdf_header_type_meta','header-standard'),(5313,949,'mkdf_top_bar_meta','yes'),(5314,949,'mkdf_top_bar_in_grid_meta','yes'),(5315,949,'mkdf_top_bar_border_meta','yes'),(5316,949,'mkdf_top_bar_border_color_meta','#ebebeb'),(5317,949,'mkdf_page_background_color_meta','#ffffff'),(5318,949,'_dp_original','927'),(5319,949,'show_footer_custom_widget_areas','no'),(5320,960,'_wpb_shortcodes_custom_css','.vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497351120318{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}.vc_custom_1497351102019{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}.vc_custom_1496914250767{padding-top: 25px !important;padding-right: 22px !important;padding-bottom: 25px !important;padding-left: 30px !important;}.vc_custom_1496914250767{padding-top: 25px !important;padding-right: 22px !important;padding-bottom: 25px !important;padding-left: 30px !important;}.vc_custom_1496914261941{padding-top: 25px !important;padding-right: 22px !important;padding-bottom: 25px !important;padding-left: 30px !important;}.vc_custom_1496914497725{padding-top: 25px !important;padding-right: 22px !important;padding-bottom: 25px !important;padding-left: 30px !important;}'),(5321,960,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5322,960,'_wpb_shortcodes_custom_css','.vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497351120318{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}.vc_custom_1497351102019{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}.vc_custom_1496914250767{padding-top: 25px !important;padding-right: 22px !important;padding-bottom: 25px !important;padding-left: 30px !important;}.vc_custom_1496914250767{padding-top: 25px !important;padding-right: 22px !important;padding-bottom: 25px !important;padding-left: 30px !important;}.vc_custom_1496914261941{padding-top: 25px !important;padding-right: 22px !important;padding-bottom: 25px !important;padding-left: 30px !important;}.vc_custom_1496914497725{padding-top: 25px !important;padding-right: 22px !important;padding-bottom: 25px !important;padding-left: 30px !important;}'),(5323,960,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5324,960,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5325,960,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5326,960,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5327,960,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5328,960,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5329,960,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5330,960,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5331,960,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5332,960,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5333,960,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5334,960,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5335,960,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5336,960,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5337,960,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5338,960,'_wpb_shortcodes_custom_css','.vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497351120318{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}.vc_custom_1497351102019{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}.vc_custom_1496914250767{padding-top: 25px !important;padding-right: 22px !important;padding-bottom: 25px !important;padding-left: 30px !important;}.vc_custom_1496914250767{padding-top: 25px !important;padding-right: 22px !important;padding-bottom: 25px !important;padding-left: 30px !important;}.vc_custom_1496914261941{padding-top: 25px !important;padding-right: 22px !important;padding-bottom: 25px !important;padding-left: 30px !important;}.vc_custom_1496914497725{padding-top: 25px !important;padding-right: 22px !important;padding-bottom: 25px !important;padding-left: 30px !important;}'),(5339,960,'_wpb_shortcodes_custom_css','.vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497351120318{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}.vc_custom_1497351102019{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}.vc_custom_1496914250767{padding-top: 25px !important;padding-right: 22px !important;padding-bottom: 25px !important;padding-left: 30px !important;}.vc_custom_1496914250767{padding-top: 25px !important;padding-right: 22px !important;padding-bottom: 25px !important;padding-left: 30px !important;}.vc_custom_1496914261941{padding-top: 25px !important;padding-right: 22px !important;padding-bottom: 25px !important;padding-left: 30px !important;}.vc_custom_1496914497725{padding-top: 25px !important;padding-right: 22px !important;padding-bottom: 25px !important;padding-left: 30px !important;}');
INSERT INTO `wp_postmeta` VALUES (5340,960,'_wpb_shortcodes_custom_css','.vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497351120318{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}.vc_custom_1497351102019{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}.vc_custom_1496914250767{padding-top: 25px !important;padding-right: 22px !important;padding-bottom: 25px !important;padding-left: 30px !important;}.vc_custom_1496914250767{padding-top: 25px !important;padding-right: 22px !important;padding-bottom: 25px !important;padding-left: 30px !important;}.vc_custom_1496914261941{padding-top: 25px !important;padding-right: 22px !important;padding-bottom: 25px !important;padding-left: 30px !important;}.vc_custom_1496914497725{padding-top: 25px !important;padding-right: 22px !important;padding-bottom: 25px !important;padding-left: 30px !important;}'),(5341,960,'_wpb_shortcodes_custom_css','.vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497351120318{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}.vc_custom_1497351102019{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}.vc_custom_1496914250767{padding-top: 25px !important;padding-right: 22px !important;padding-bottom: 25px !important;padding-left: 30px !important;}.vc_custom_1496914250767{padding-top: 25px !important;padding-right: 22px !important;padding-bottom: 25px !important;padding-left: 30px !important;}.vc_custom_1496914261941{padding-top: 25px !important;padding-right: 22px !important;padding-bottom: 25px !important;padding-left: 30px !important;}.vc_custom_1496914497725{padding-top: 25px !important;padding-right: 22px !important;padding-bottom: 25px !important;padding-left: 30px !important;}'),(5342,960,'_wpb_shortcodes_custom_css','.vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497351120318{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}.vc_custom_1497351102019{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}.vc_custom_1496914250767{padding-top: 25px !important;padding-right: 22px !important;padding-bottom: 25px !important;padding-left: 30px !important;}.vc_custom_1496914250767{padding-top: 25px !important;padding-right: 22px !important;padding-bottom: 25px !important;padding-left: 30px !important;}.vc_custom_1496914261941{padding-top: 25px !important;padding-right: 22px !important;padding-bottom: 25px !important;padding-left: 30px !important;}.vc_custom_1496914497725{padding-top: 25px !important;padding-right: 22px !important;padding-bottom: 25px !important;padding-left: 30px !important;}'),(5343,960,'_wpb_shortcodes_custom_css','.vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497351120318{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}.vc_custom_1497351102019{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}.vc_custom_1496914250767{padding-top: 25px !important;padding-right: 22px !important;padding-bottom: 25px !important;padding-left: 30px !important;}.vc_custom_1496914250767{padding-top: 25px !important;padding-right: 22px !important;padding-bottom: 25px !important;padding-left: 30px !important;}.vc_custom_1496914261941{padding-top: 25px !important;padding-right: 22px !important;padding-bottom: 25px !important;padding-left: 30px !important;}.vc_custom_1496914497725{padding-top: 25px !important;padding-right: 22px !important;padding-bottom: 25px !important;padding-left: 30px !important;}'),(5344,960,'_wpb_shortcodes_custom_css','.vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497351120318{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}.vc_custom_1497351102019{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}.vc_custom_1496914250767{padding-top: 25px !important;padding-right: 22px !important;padding-bottom: 25px !important;padding-left: 30px !important;}.vc_custom_1496914250767{padding-top: 25px !important;padding-right: 22px !important;padding-bottom: 25px !important;padding-left: 30px !important;}.vc_custom_1496914261941{padding-top: 25px !important;padding-right: 22px !important;padding-bottom: 25px !important;padding-left: 30px !important;}.vc_custom_1496914497725{padding-top: 25px !important;padding-right: 22px !important;padding-bottom: 25px !important;padding-left: 30px !important;}'),(5345,960,'_wpb_shortcodes_custom_css','.vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497351120318{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}.vc_custom_1497351102019{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}.vc_custom_1496914250767{padding-top: 25px !important;padding-right: 22px !important;padding-bottom: 25px !important;padding-left: 30px !important;}.vc_custom_1496914250767{padding-top: 25px !important;padding-right: 22px !important;padding-bottom: 25px !important;padding-left: 30px !important;}.vc_custom_1496914261941{padding-top: 25px !important;padding-right: 22px !important;padding-bottom: 25px !important;padding-left: 30px !important;}.vc_custom_1496914497725{padding-top: 25px !important;padding-right: 22px !important;padding-bottom: 25px !important;padding-left: 30px !important;}'),(5346,960,'_wpb_shortcodes_custom_css','.vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497351120318{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}.vc_custom_1497351102019{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}.vc_custom_1496914250767{padding-top: 25px !important;padding-right: 22px !important;padding-bottom: 25px !important;padding-left: 30px !important;}.vc_custom_1496914250767{padding-top: 25px !important;padding-right: 22px !important;padding-bottom: 25px !important;padding-left: 30px !important;}.vc_custom_1496914261941{padding-top: 25px !important;padding-right: 22px !important;padding-bottom: 25px !important;padding-left: 30px !important;}.vc_custom_1496914497725{padding-top: 25px !important;padding-right: 22px !important;padding-bottom: 25px !important;padding-left: 30px !important;}'),(5347,960,'_wpb_shortcodes_custom_css','.vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497351120318{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}.vc_custom_1497351102019{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}.vc_custom_1496914250767{padding-top: 25px !important;padding-right: 22px !important;padding-bottom: 25px !important;padding-left: 30px !important;}.vc_custom_1496914250767{padding-top: 25px !important;padding-right: 22px !important;padding-bottom: 25px !important;padding-left: 30px !important;}.vc_custom_1496914261941{padding-top: 25px !important;padding-right: 22px !important;padding-bottom: 25px !important;padding-left: 30px !important;}.vc_custom_1496914497725{padding-top: 25px !important;padding-right: 22px !important;padding-bottom: 25px !important;padding-left: 30px !important;}'),(5348,960,'_wpb_shortcodes_custom_css','.vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497351120318{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}.vc_custom_1497351102019{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}.vc_custom_1496914250767{padding-top: 25px !important;padding-right: 22px !important;padding-bottom: 25px !important;padding-left: 30px !important;}.vc_custom_1496914250767{padding-top: 25px !important;padding-right: 22px !important;padding-bottom: 25px !important;padding-left: 30px !important;}.vc_custom_1496914261941{padding-top: 25px !important;padding-right: 22px !important;padding-bottom: 25px !important;padding-left: 30px !important;}.vc_custom_1496914497725{padding-top: 25px !important;padding-right: 22px !important;padding-bottom: 25px !important;padding-left: 30px !important;}'),(5349,960,'_wp_page_template','default'),(5350,960,'slide_template','default'),(5351,960,'_wpb_vc_js_status','true'),(5352,960,'mkdf_page_content_behind_header_meta','no'),(5353,960,'mkdf_boxed_background_image_attachment_meta','fixed'),(5354,960,'mkdf_disable_header_widget_logo_area_meta','no'),(5355,960,'mkdf_disable_header_widget_menu_area_meta','no'),(5356,960,'mkdf_disable_footer_meta','no'),(5357,960,'mkdf_menu_area_in_grid_meta','yes'),(5358,960,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(5359,960,'mkdf_sidebar_layout_meta','sidebar-25-left'),(5360,960,'mkdf_custom_sidebar_area_meta','elements-sidebar'),(5361,960,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(5362,960,'mkdf_title_area_background_image_behavior_meta','parallax'),(5363,960,'mkdf_page_content_top_padding','87'),(5364,960,'mkdf_header_type_meta','header-standard'),(5365,960,'mkdf_top_bar_meta','yes'),(5366,960,'mkdf_top_bar_in_grid_meta','yes'),(5367,960,'mkdf_top_bar_border_meta','yes'),(5368,960,'mkdf_top_bar_border_color_meta','#ebebeb'),(5369,960,'mkdf_page_background_color_meta','#ffffff'),(5370,960,'_dp_original','897'),(5371,960,'show_footer_custom_widget_areas','no'),(5372,980,'_wpb_shortcodes_custom_css','.vc_custom_1496068885573{margin-top: -40px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496137910541{padding-top: 32px !important;padding-bottom: 18px !important;}.vc_custom_1496137926988{padding-top: 32px !important;padding-bottom: 18px !important;}.vc_custom_1496137983731{padding-top: 32px !important;padding-bottom: 18px !important;}.vc_custom_1496137995868{padding-top: 32px !important;padding-bottom: 18px !important;}.vc_custom_1496927600125{padding-top: 32px !important;padding-bottom: 18px !important;}.vc_custom_1496138694532{padding-top: 65px !important;padding-bottom: 91px !important;}'),(5373,980,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5374,980,'_wpb_shortcodes_custom_css','.vc_custom_1496068885573{margin-top: -40px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496137910541{padding-top: 32px !important;padding-bottom: 18px !important;}.vc_custom_1496137926988{padding-top: 32px !important;padding-bottom: 18px !important;}.vc_custom_1496137983731{padding-top: 32px !important;padding-bottom: 18px !important;}.vc_custom_1496137995868{padding-top: 32px !important;padding-bottom: 18px !important;}.vc_custom_1496927600125{padding-top: 32px !important;padding-bottom: 18px !important;}.vc_custom_1496138694532{padding-top: 65px !important;padding-bottom: 91px !important;}'),(5375,980,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5376,980,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5377,980,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5378,980,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5379,980,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5380,980,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5381,980,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5382,980,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5383,980,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5384,980,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5385,980,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5386,980,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5387,980,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5388,980,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5389,980,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5390,980,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5391,980,'_wpb_shortcodes_custom_css','.vc_custom_1496068885573{margin-top: -40px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496137910541{padding-top: 32px !important;padding-bottom: 18px !important;}.vc_custom_1496137926988{padding-top: 32px !important;padding-bottom: 18px !important;}.vc_custom_1496137983731{padding-top: 32px !important;padding-bottom: 18px !important;}.vc_custom_1496137995868{padding-top: 32px !important;padding-bottom: 18px !important;}.vc_custom_1496927600125{padding-top: 32px !important;padding-bottom: 18px !important;}.vc_custom_1496138694532{padding-top: 65px !important;padding-bottom: 91px !important;}'),(5392,980,'_wpb_shortcodes_custom_css','.vc_custom_1496068885573{margin-top: -40px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496137910541{padding-top: 32px !important;padding-bottom: 18px !important;}.vc_custom_1496137926988{padding-top: 32px !important;padding-bottom: 18px !important;}.vc_custom_1496137983731{padding-top: 32px !important;padding-bottom: 18px !important;}.vc_custom_1496137995868{padding-top: 32px !important;padding-bottom: 18px !important;}.vc_custom_1496927600125{padding-top: 32px !important;padding-bottom: 18px !important;}.vc_custom_1496138694532{padding-top: 65px !important;padding-bottom: 91px !important;}'),(5393,980,'_wpb_shortcodes_custom_css','.vc_custom_1496068885573{margin-top: -40px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496137910541{padding-top: 32px !important;padding-bottom: 18px !important;}.vc_custom_1496137926988{padding-top: 32px !important;padding-bottom: 18px !important;}.vc_custom_1496137983731{padding-top: 32px !important;padding-bottom: 18px !important;}.vc_custom_1496137995868{padding-top: 32px !important;padding-bottom: 18px !important;}.vc_custom_1496927600125{padding-top: 32px !important;padding-bottom: 18px !important;}.vc_custom_1496138694532{padding-top: 65px !important;padding-bottom: 91px !important;}'),(5394,980,'_wpb_shortcodes_custom_css','.vc_custom_1496068885573{margin-top: -40px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496137910541{padding-top: 32px !important;padding-bottom: 18px !important;}.vc_custom_1496137926988{padding-top: 32px !important;padding-bottom: 18px !important;}.vc_custom_1496137983731{padding-top: 32px !important;padding-bottom: 18px !important;}.vc_custom_1496137995868{padding-top: 32px !important;padding-bottom: 18px !important;}.vc_custom_1496927600125{padding-top: 32px !important;padding-bottom: 18px !important;}.vc_custom_1496138694532{padding-top: 65px !important;padding-bottom: 91px !important;}'),(5395,980,'_wpb_shortcodes_custom_css','.vc_custom_1496068885573{margin-top: -40px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496137910541{padding-top: 32px !important;padding-bottom: 18px !important;}.vc_custom_1496137926988{padding-top: 32px !important;padding-bottom: 18px !important;}.vc_custom_1496137983731{padding-top: 32px !important;padding-bottom: 18px !important;}.vc_custom_1496137995868{padding-top: 32px !important;padding-bottom: 18px !important;}.vc_custom_1496927600125{padding-top: 32px !important;padding-bottom: 18px !important;}.vc_custom_1496138694532{padding-top: 65px !important;padding-bottom: 91px !important;}'),(5396,980,'_wpb_shortcodes_custom_css','.vc_custom_1496068885573{margin-top: -40px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496137910541{padding-top: 32px !important;padding-bottom: 18px !important;}.vc_custom_1496137926988{padding-top: 32px !important;padding-bottom: 18px !important;}.vc_custom_1496137983731{padding-top: 32px !important;padding-bottom: 18px !important;}.vc_custom_1496137995868{padding-top: 32px !important;padding-bottom: 18px !important;}.vc_custom_1496927600125{padding-top: 32px !important;padding-bottom: 18px !important;}.vc_custom_1496138694532{padding-top: 65px !important;padding-bottom: 91px !important;}'),(5397,980,'_wpb_shortcodes_custom_css','.vc_custom_1496068885573{margin-top: -40px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496137910541{padding-top: 32px !important;padding-bottom: 18px !important;}.vc_custom_1496137926988{padding-top: 32px !important;padding-bottom: 18px !important;}.vc_custom_1496137983731{padding-top: 32px !important;padding-bottom: 18px !important;}.vc_custom_1496137995868{padding-top: 32px !important;padding-bottom: 18px !important;}.vc_custom_1496927600125{padding-top: 32px !important;padding-bottom: 18px !important;}.vc_custom_1496138694532{padding-top: 65px !important;padding-bottom: 91px !important;}'),(5398,980,'_wpb_shortcodes_custom_css','.vc_custom_1496068885573{margin-top: -40px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496137910541{padding-top: 32px !important;padding-bottom: 18px !important;}.vc_custom_1496137926988{padding-top: 32px !important;padding-bottom: 18px !important;}.vc_custom_1496137983731{padding-top: 32px !important;padding-bottom: 18px !important;}.vc_custom_1496137995868{padding-top: 32px !important;padding-bottom: 18px !important;}.vc_custom_1496927600125{padding-top: 32px !important;padding-bottom: 18px !important;}.vc_custom_1496138694532{padding-top: 65px !important;padding-bottom: 91px !important;}'),(5399,980,'_wpb_shortcodes_custom_css','.vc_custom_1496068885573{margin-top: -40px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496137910541{padding-top: 32px !important;padding-bottom: 18px !important;}.vc_custom_1496137926988{padding-top: 32px !important;padding-bottom: 18px !important;}.vc_custom_1496137983731{padding-top: 32px !important;padding-bottom: 18px !important;}.vc_custom_1496137995868{padding-top: 32px !important;padding-bottom: 18px !important;}.vc_custom_1496927600125{padding-top: 32px !important;padding-bottom: 18px !important;}.vc_custom_1496138694532{padding-top: 65px !important;padding-bottom: 91px !important;}'),(5400,980,'_wpb_shortcodes_custom_css','.vc_custom_1496068885573{margin-top: -40px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496137910541{padding-top: 32px !important;padding-bottom: 18px !important;}.vc_custom_1496137926988{padding-top: 32px !important;padding-bottom: 18px !important;}.vc_custom_1496137983731{padding-top: 32px !important;padding-bottom: 18px !important;}.vc_custom_1496137995868{padding-top: 32px !important;padding-bottom: 18px !important;}.vc_custom_1496927600125{padding-top: 32px !important;padding-bottom: 18px !important;}.vc_custom_1496138694532{padding-top: 65px !important;padding-bottom: 91px !important;}'),(5401,980,'_wpb_shortcodes_custom_css','.vc_custom_1496068885573{margin-top: -40px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496137910541{padding-top: 32px !important;padding-bottom: 18px !important;}.vc_custom_1496137926988{padding-top: 32px !important;padding-bottom: 18px !important;}.vc_custom_1496137983731{padding-top: 32px !important;padding-bottom: 18px !important;}.vc_custom_1496137995868{padding-top: 32px !important;padding-bottom: 18px !important;}.vc_custom_1496927600125{padding-top: 32px !important;padding-bottom: 18px !important;}.vc_custom_1496138694532{padding-top: 65px !important;padding-bottom: 91px !important;}'),(5402,980,'_wpb_shortcodes_custom_css','.vc_custom_1496068885573{margin-top: -40px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496137910541{padding-top: 32px !important;padding-bottom: 18px !important;}.vc_custom_1496137926988{padding-top: 32px !important;padding-bottom: 18px !important;}.vc_custom_1496137983731{padding-top: 32px !important;padding-bottom: 18px !important;}.vc_custom_1496137995868{padding-top: 32px !important;padding-bottom: 18px !important;}.vc_custom_1496927600125{padding-top: 32px !important;padding-bottom: 18px !important;}.vc_custom_1496138694532{padding-top: 65px !important;padding-bottom: 91px !important;}'),(5403,980,'_wp_page_template','default'),(5404,980,'slide_template','default'),(5405,980,'_wpb_vc_js_status','true'),(5406,980,'mkdf_page_content_behind_header_meta','no'),(5407,980,'mkdf_boxed_background_image_attachment_meta','fixed'),(5408,980,'mkdf_disable_header_widget_logo_area_meta','no'),(5409,980,'mkdf_disable_header_widget_menu_area_meta','no'),(5410,980,'mkdf_disable_footer_meta','no'),(5411,980,'mkdf_menu_area_in_grid_meta','yes'),(5412,980,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(5413,980,'mkdf_sidebar_layout_meta','sidebar-25-left'),(5414,980,'mkdf_custom_sidebar_area_meta','elements-sidebar'),(5415,980,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(5416,980,'mkdf_title_area_background_image_behavior_meta','parallax'),(5417,980,'mkdf_page_content_top_padding','87'),(5418,980,'mkdf_header_type_meta','header-standard'),(5419,980,'mkdf_top_bar_meta','yes'),(5420,980,'mkdf_top_bar_in_grid_meta','yes'),(5421,980,'mkdf_top_bar_border_meta','yes'),(5422,980,'mkdf_top_bar_border_color_meta','#ebebeb'),(5423,980,'mkdf_page_background_color_meta','#ffffff'),(5424,980,'_dp_original','776'),(5425,999,'_wpb_shortcodes_custom_css','.vc_custom_1496912994162{margin-top: -40px !important;padding-bottom: 80px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5426,999,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5427,999,'_wpb_shortcodes_custom_css','.vc_custom_1496912994162{margin-top: -40px !important;padding-bottom: 80px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5428,999,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5429,999,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5430,999,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5431,999,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5432,999,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5433,999,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5434,999,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5435,999,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5436,999,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5437,999,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5438,999,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5439,999,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5440,999,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5441,999,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5442,999,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5443,999,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5444,999,'_wpb_shortcodes_custom_css','.vc_custom_1496912994162{margin-top: -40px !important;padding-bottom: 80px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5445,999,'_wpb_shortcodes_custom_css','.vc_custom_1496912994162{margin-top: -40px !important;padding-bottom: 80px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5446,999,'_wpb_shortcodes_custom_css','.vc_custom_1496912994162{margin-top: -40px !important;padding-bottom: 80px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5447,999,'_wpb_shortcodes_custom_css','.vc_custom_1496912994162{margin-top: -40px !important;padding-bottom: 80px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5448,999,'_wpb_shortcodes_custom_css','.vc_custom_1496912994162{margin-top: -40px !important;padding-bottom: 80px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5449,999,'_wpb_shortcodes_custom_css','.vc_custom_1496912994162{margin-top: -40px !important;padding-bottom: 80px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5450,999,'_wpb_shortcodes_custom_css','.vc_custom_1496912994162{margin-top: -40px !important;padding-bottom: 80px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5451,999,'_wpb_shortcodes_custom_css','.vc_custom_1496912994162{margin-top: -40px !important;padding-bottom: 80px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5452,999,'_wpb_shortcodes_custom_css','.vc_custom_1496912994162{margin-top: -40px !important;padding-bottom: 80px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5453,999,'_wpb_shortcodes_custom_css','.vc_custom_1496912994162{margin-top: -40px !important;padding-bottom: 80px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5454,999,'_wpb_shortcodes_custom_css','.vc_custom_1496912994162{margin-top: -40px !important;padding-bottom: 80px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5455,999,'_wpb_shortcodes_custom_css','.vc_custom_1496912994162{margin-top: -40px !important;padding-bottom: 80px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5456,999,'_wp_page_template','default'),(5457,999,'slide_template','default'),(5458,999,'_wpb_vc_js_status','true'),(5459,999,'mkdf_page_content_behind_header_meta','no'),(5460,999,'mkdf_boxed_background_image_attachment_meta','fixed'),(5461,999,'mkdf_disable_header_widget_logo_area_meta','no'),(5462,999,'mkdf_disable_header_widget_menu_area_meta','no'),(5463,999,'mkdf_disable_footer_meta','no'),(5464,999,'mkdf_menu_area_in_grid_meta','yes'),(5465,999,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(5466,999,'mkdf_sidebar_layout_meta','sidebar-25-left'),(5467,999,'mkdf_custom_sidebar_area_meta','elements-sidebar'),(5468,999,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(5469,999,'mkdf_title_area_background_image_behavior_meta','parallax'),(5470,999,'mkdf_page_content_top_padding','87'),(5471,999,'mkdf_header_type_meta','header-standard'),(5472,999,'mkdf_top_bar_meta','yes'),(5473,999,'mkdf_top_bar_in_grid_meta','yes'),(5474,999,'mkdf_top_bar_border_meta','yes'),(5475,999,'mkdf_top_bar_border_color_meta','#ebebeb'),(5476,999,'mkdf_page_background_color_meta','#ffffff'),(5477,999,'_dp_original','776'),(5478,1024,'_wpb_shortcodes_custom_css','.vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497436204765{padding-bottom: 63px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497436276537{padding-bottom: 33px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497436262933{padding-bottom: 53px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497436196687{padding-bottom: 5px !important;}.vc_custom_1497436196687{padding-bottom: 5px !important;}'),(5479,1024,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5480,1024,'_wpb_shortcodes_custom_css','.vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497436204765{padding-bottom: 63px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497436276537{padding-bottom: 33px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497436262933{padding-bottom: 53px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497436196687{padding-bottom: 5px !important;}.vc_custom_1497436196687{padding-bottom: 5px !important;}'),(5481,1024,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5482,1024,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5483,1024,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5484,1024,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5485,1024,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5486,1024,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5487,1024,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5488,1024,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5489,1024,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5490,1024,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5491,1024,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5492,1024,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5493,1024,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5494,1024,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5495,1024,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5496,1024,'_wpb_shortcodes_custom_css','.vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497436204765{padding-bottom: 63px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497436276537{padding-bottom: 33px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497436262933{padding-bottom: 53px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497436196687{padding-bottom: 5px !important;}.vc_custom_1497436196687{padding-bottom: 5px !important;}'),(5497,1024,'_wpb_shortcodes_custom_css','.vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497436204765{padding-bottom: 63px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497436276537{padding-bottom: 33px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497436262933{padding-bottom: 53px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497436196687{padding-bottom: 5px !important;}.vc_custom_1497436196687{padding-bottom: 5px !important;}'),(5498,1024,'_wpb_shortcodes_custom_css','.vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497436204765{padding-bottom: 63px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497436276537{padding-bottom: 33px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497436262933{padding-bottom: 53px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497436196687{padding-bottom: 5px !important;}.vc_custom_1497436196687{padding-bottom: 5px !important;}'),(5499,1024,'_wpb_shortcodes_custom_css','.vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497436204765{padding-bottom: 63px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497436276537{padding-bottom: 33px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497436262933{padding-bottom: 53px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497436196687{padding-bottom: 5px !important;}.vc_custom_1497436196687{padding-bottom: 5px !important;}'),(5500,1024,'_wpb_shortcodes_custom_css','.vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497436204765{padding-bottom: 63px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497436276537{padding-bottom: 33px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497436262933{padding-bottom: 53px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497436196687{padding-bottom: 5px !important;}.vc_custom_1497436196687{padding-bottom: 5px !important;}'),(5501,1024,'_wpb_shortcodes_custom_css','.vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497436204765{padding-bottom: 63px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497436276537{padding-bottom: 33px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497436262933{padding-bottom: 53px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497436196687{padding-bottom: 5px !important;}.vc_custom_1497436196687{padding-bottom: 5px !important;}'),(5502,1024,'_wpb_shortcodes_custom_css','.vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497436204765{padding-bottom: 63px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497436276537{padding-bottom: 33px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497436262933{padding-bottom: 53px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497436196687{padding-bottom: 5px !important;}.vc_custom_1497436196687{padding-bottom: 5px !important;}'),(5503,1024,'_wpb_shortcodes_custom_css','.vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497436204765{padding-bottom: 63px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497436276537{padding-bottom: 33px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497436262933{padding-bottom: 53px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497436196687{padding-bottom: 5px !important;}.vc_custom_1497436196687{padding-bottom: 5px !important;}'),(5504,1024,'_wpb_shortcodes_custom_css','.vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497436204765{padding-bottom: 63px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497436276537{padding-bottom: 33px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497436262933{padding-bottom: 53px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497436196687{padding-bottom: 5px !important;}.vc_custom_1497436196687{padding-bottom: 5px !important;}'),(5505,1024,'_wpb_shortcodes_custom_css','.vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497436204765{padding-bottom: 63px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497436276537{padding-bottom: 33px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497436262933{padding-bottom: 53px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497436196687{padding-bottom: 5px !important;}.vc_custom_1497436196687{padding-bottom: 5px !important;}'),(5506,1024,'_wpb_shortcodes_custom_css','.vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497436204765{padding-bottom: 63px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497436276537{padding-bottom: 33px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497436262933{padding-bottom: 53px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497436196687{padding-bottom: 5px !important;}.vc_custom_1497436196687{padding-bottom: 5px !important;}'),(5507,1024,'_wp_page_template','default'),(5508,1024,'slide_template','default'),(5509,1024,'_wpb_vc_js_status','true'),(5510,1024,'mkdf_page_content_behind_header_meta','no'),(5511,1024,'mkdf_boxed_background_image_attachment_meta','fixed'),(5512,1024,'mkdf_disable_header_widget_logo_area_meta','no'),(5513,1024,'mkdf_disable_header_widget_menu_area_meta','no'),(5514,1024,'mkdf_disable_footer_meta','no'),(5515,1024,'mkdf_menu_area_in_grid_meta','yes'),(5516,1024,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(5517,1024,'mkdf_sidebar_layout_meta','sidebar-25-left'),(5518,1024,'mkdf_custom_sidebar_area_meta','elements-sidebar'),(5519,1024,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(5520,1024,'mkdf_title_area_background_image_behavior_meta','parallax'),(5521,1024,'mkdf_page_content_top_padding','87'),(5522,1024,'mkdf_header_type_meta','header-standard'),(5523,1024,'mkdf_top_bar_meta','yes'),(5524,1024,'mkdf_top_bar_in_grid_meta','yes'),(5525,1024,'mkdf_top_bar_border_meta','yes'),(5526,1024,'mkdf_top_bar_border_color_meta','#ebebeb'),(5527,1024,'mkdf_page_background_color_meta','#ffffff'),(5528,1024,'_dp_original','897'),(5529,1024,'show_footer_custom_widget_areas','no'),(5530,1059,'_wpb_shortcodes_custom_css','.vc_custom_1496241794235{margin-top: -24px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5531,1059,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5532,1059,'_wpb_shortcodes_custom_css','.vc_custom_1496241794235{margin-top: -24px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5533,1059,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5534,1059,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5535,1059,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5536,1059,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5537,1059,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5538,1059,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5539,1059,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5540,1059,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5541,1059,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5542,1059,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5543,1059,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5544,1059,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5545,1059,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5546,1059,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5547,1059,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5548,1059,'_wpb_shortcodes_custom_css','.vc_custom_1496241794235{margin-top: -24px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5549,1059,'_wpb_shortcodes_custom_css','.vc_custom_1496241794235{margin-top: -24px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5550,1059,'_wpb_shortcodes_custom_css','.vc_custom_1496241794235{margin-top: -24px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5551,1059,'_wpb_shortcodes_custom_css','.vc_custom_1496241794235{margin-top: -24px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5552,1059,'_wpb_shortcodes_custom_css','.vc_custom_1496241794235{margin-top: -24px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5553,1059,'_wpb_shortcodes_custom_css','.vc_custom_1496241794235{margin-top: -24px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5554,1059,'_wpb_shortcodes_custom_css','.vc_custom_1496241794235{margin-top: -24px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5555,1059,'_wpb_shortcodes_custom_css','.vc_custom_1496241794235{margin-top: -24px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5556,1059,'_wpb_shortcodes_custom_css','.vc_custom_1496241794235{margin-top: -24px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5557,1059,'_wpb_shortcodes_custom_css','.vc_custom_1496241794235{margin-top: -24px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5558,1059,'_wpb_shortcodes_custom_css','.vc_custom_1496241794235{margin-top: -24px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5559,1059,'_wp_page_template','default'),(5560,1059,'slide_template','default'),(5561,1059,'_wpb_vc_js_status','true'),(5562,1059,'mkdf_page_content_behind_header_meta','no'),(5563,1059,'mkdf_boxed_background_image_attachment_meta','fixed'),(5564,1059,'mkdf_disable_header_widget_logo_area_meta','no'),(5565,1059,'mkdf_disable_header_widget_menu_area_meta','no'),(5566,1059,'mkdf_disable_footer_meta','no'),(5567,1059,'mkdf_menu_area_in_grid_meta','yes'),(5568,1059,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(5569,1059,'mkdf_sidebar_layout_meta','sidebar-25-left'),(5570,1059,'mkdf_custom_sidebar_area_meta','elements-sidebar'),(5571,1059,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(5572,1059,'mkdf_title_area_background_image_behavior_meta','parallax'),(5573,1059,'mkdf_page_content_top_padding','87'),(5574,1059,'mkdf_header_type_meta','header-standard'),(5575,1059,'mkdf_top_bar_meta','yes'),(5576,1059,'mkdf_top_bar_in_grid_meta','yes'),(5577,1059,'mkdf_top_bar_border_meta','yes'),(5578,1059,'mkdf_top_bar_border_color_meta','#ebebeb'),(5579,1059,'mkdf_page_background_color_meta','#ffffff'),(5580,1059,'_dp_original','897'),(5581,1074,'_wpb_shortcodes_custom_css','.vc_custom_1496148079491{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496148557802{padding-bottom: 30px !important;}'),(5582,1074,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5583,1074,'_wpb_shortcodes_custom_css','.vc_custom_1496148079491{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496148557802{padding-bottom: 30px !important;}'),(5584,1074,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5585,1074,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5586,1074,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5587,1074,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5588,1074,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5589,1074,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5590,1074,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5591,1074,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5592,1074,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5593,1074,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5594,1074,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5595,1074,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5596,1074,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5597,1074,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5598,1074,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5599,1074,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5600,1074,'_wpb_shortcodes_custom_css','.vc_custom_1496148079491{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496148557802{padding-bottom: 30px !important;}'),(5601,1074,'_wpb_shortcodes_custom_css','.vc_custom_1496148079491{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496148557802{padding-bottom: 30px !important;}'),(5602,1074,'_wpb_shortcodes_custom_css','.vc_custom_1496148079491{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496148557802{padding-bottom: 30px !important;}'),(5603,1074,'_wpb_shortcodes_custom_css','.vc_custom_1496148079491{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496148557802{padding-bottom: 30px !important;}'),(5604,1074,'_wpb_shortcodes_custom_css','.vc_custom_1496148079491{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496148557802{padding-bottom: 30px !important;}'),(5605,1074,'_wpb_shortcodes_custom_css','.vc_custom_1496148079491{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496148557802{padding-bottom: 30px !important;}'),(5606,1074,'_wpb_shortcodes_custom_css','.vc_custom_1496148079491{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496148557802{padding-bottom: 30px !important;}'),(5607,1074,'_wpb_shortcodes_custom_css','.vc_custom_1496148079491{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496148557802{padding-bottom: 30px !important;}'),(5608,1074,'_wpb_shortcodes_custom_css','.vc_custom_1496148079491{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496148557802{padding-bottom: 30px !important;}'),(5609,1074,'_wpb_shortcodes_custom_css','.vc_custom_1496148079491{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496148557802{padding-bottom: 30px !important;}'),(5610,1074,'_wpb_shortcodes_custom_css','.vc_custom_1496148079491{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496148557802{padding-bottom: 30px !important;}'),(5611,1074,'_wpb_shortcodes_custom_css','.vc_custom_1496148079491{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496148557802{padding-bottom: 30px !important;}'),(5612,1074,'_wp_page_template','default'),(5613,1074,'slide_template','default'),(5614,1074,'_wpb_vc_js_status','true'),(5615,1074,'mkdf_page_content_behind_header_meta','no'),(5616,1074,'mkdf_boxed_background_image_attachment_meta','fixed'),(5617,1074,'mkdf_disable_header_widget_logo_area_meta','no'),(5618,1074,'mkdf_disable_header_widget_menu_area_meta','no'),(5619,1074,'mkdf_disable_footer_meta','no'),(5620,1074,'mkdf_menu_area_in_grid_meta','yes'),(5621,1074,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(5622,1074,'mkdf_sidebar_layout_meta','sidebar-25-left'),(5623,1074,'mkdf_custom_sidebar_area_meta','elements-sidebar'),(5624,1074,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(5625,1074,'mkdf_title_area_background_image_behavior_meta','parallax'),(5626,1074,'mkdf_page_content_top_padding','87'),(5627,1074,'mkdf_header_type_meta','header-standard'),(5628,1074,'mkdf_top_bar_meta','yes'),(5629,1074,'mkdf_top_bar_in_grid_meta','yes'),(5630,1074,'mkdf_top_bar_border_meta','yes'),(5631,1074,'mkdf_top_bar_border_color_meta','#ebebeb'),(5632,1074,'mkdf_page_background_color_meta','#ffffff'),(5633,1074,'_dp_original','1059'),(5634,1074,'show_footer_custom_widget_areas','no'),(5635,1092,'_wpb_shortcodes_custom_css','.vc_custom_1496932901252{margin-top: -24px !important;padding-bottom: 58px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496932867514{padding-bottom: 93px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5636,1092,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5637,1092,'_wpb_shortcodes_custom_css','.vc_custom_1496932901252{margin-top: -24px !important;padding-bottom: 58px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496932867514{padding-bottom: 93px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5638,1092,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5639,1092,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5640,1092,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5641,1092,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5642,1092,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5643,1092,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5644,1092,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5645,1092,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5646,1092,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5647,1092,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5648,1092,'_wpb_shortcodes_custom_css','.vc_custom_1496932901252{margin-top: -24px !important;padding-bottom: 58px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496932867514{padding-bottom: 93px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5649,1092,'_wpb_shortcodes_custom_css','.vc_custom_1496932901252{margin-top: -24px !important;padding-bottom: 58px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496932867514{padding-bottom: 93px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5650,1092,'_wpb_shortcodes_custom_css','.vc_custom_1496932901252{margin-top: -24px !important;padding-bottom: 58px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496932867514{padding-bottom: 93px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5651,1092,'_wpb_shortcodes_custom_css','.vc_custom_1496932901252{margin-top: -24px !important;padding-bottom: 58px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496932867514{padding-bottom: 93px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5652,1092,'_wpb_shortcodes_custom_css','.vc_custom_1496932901252{margin-top: -24px !important;padding-bottom: 58px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496932867514{padding-bottom: 93px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5653,1092,'_wpb_shortcodes_custom_css','.vc_custom_1496932901252{margin-top: -24px !important;padding-bottom: 58px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496932867514{padding-bottom: 93px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5654,1092,'_wp_page_template','default'),(5655,1092,'slide_template','default'),(5656,1092,'_wpb_vc_js_status','true'),(5657,1092,'mkdf_page_content_behind_header_meta','no'),(5658,1092,'mkdf_boxed_background_image_attachment_meta','fixed'),(5659,1092,'mkdf_disable_header_widget_logo_area_meta','no'),(5660,1092,'mkdf_disable_header_widget_menu_area_meta','no'),(5661,1092,'mkdf_disable_footer_meta','no'),(5662,1092,'mkdf_menu_area_in_grid_meta','yes'),(5663,1092,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(5664,1092,'mkdf_sidebar_layout_meta','sidebar-25-left'),(5665,1092,'mkdf_custom_sidebar_area_meta','elements-sidebar'),(5666,1092,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(5667,1092,'mkdf_title_area_background_image_behavior_meta','parallax'),(5668,1092,'mkdf_page_content_top_padding','87'),(5669,1092,'mkdf_header_type_meta','header-standard'),(5670,1092,'mkdf_top_bar_meta','yes'),(5671,1092,'mkdf_top_bar_in_grid_meta','yes'),(5672,1092,'mkdf_top_bar_border_meta','yes'),(5673,1092,'mkdf_top_bar_border_color_meta','#ebebeb'),(5674,1092,'mkdf_page_background_color_meta','#ffffff'),(5675,1092,'_dp_original','638'),(5676,1103,'_wpb_shortcodes_custom_css','.vc_custom_1497361215669{margin-top: -64px !important;padding-bottom: 11px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497360528455{padding-bottom: 83px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5677,1103,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5678,1103,'_wpb_shortcodes_custom_css','.vc_custom_1497361215669{margin-top: -64px !important;padding-bottom: 11px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497360528455{padding-bottom: 83px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5679,1103,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5680,1103,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5681,1103,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5682,1103,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5683,1103,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5684,1103,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5685,1103,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5686,1103,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5687,1103,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5688,1103,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5689,1103,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5690,1103,'_wpb_shortcodes_custom_css','.vc_custom_1497361215669{margin-top: -64px !important;padding-bottom: 11px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497360528455{padding-bottom: 83px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5691,1103,'_wpb_shortcodes_custom_css','.vc_custom_1497361215669{margin-top: -64px !important;padding-bottom: 11px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497360528455{padding-bottom: 83px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5692,1103,'_wpb_shortcodes_custom_css','.vc_custom_1497361215669{margin-top: -64px !important;padding-bottom: 11px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497360528455{padding-bottom: 83px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5693,1103,'_wpb_shortcodes_custom_css','.vc_custom_1497361215669{margin-top: -64px !important;padding-bottom: 11px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497360528455{padding-bottom: 83px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5694,1103,'_wpb_shortcodes_custom_css','.vc_custom_1497361215669{margin-top: -64px !important;padding-bottom: 11px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497360528455{padding-bottom: 83px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5695,1103,'_wpb_shortcodes_custom_css','.vc_custom_1497361215669{margin-top: -64px !important;padding-bottom: 11px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497360528455{padding-bottom: 83px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5696,1103,'_wpb_shortcodes_custom_css','.vc_custom_1497361215669{margin-top: -64px !important;padding-bottom: 11px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497360528455{padding-bottom: 83px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5697,1103,'_wp_page_template','default'),(5698,1103,'slide_template','default'),(5699,1103,'_wpb_vc_js_status','true'),(5700,1103,'mkdf_page_content_behind_header_meta','no'),(5701,1103,'mkdf_boxed_background_image_attachment_meta','fixed'),(5702,1103,'mkdf_disable_header_widget_logo_area_meta','no'),(5703,1103,'mkdf_disable_header_widget_menu_area_meta','no'),(5704,1103,'mkdf_disable_footer_meta','no'),(5705,1103,'mkdf_menu_area_in_grid_meta','yes'),(5706,1103,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(5707,1103,'mkdf_sidebar_layout_meta','sidebar-25-left'),(5708,1103,'mkdf_custom_sidebar_area_meta','elements-sidebar'),(5709,1103,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(5710,1103,'mkdf_title_area_background_image_behavior_meta','parallax'),(5711,1103,'mkdf_page_content_top_padding','87'),(5712,1103,'mkdf_header_type_meta','header-standard'),(5713,1103,'mkdf_top_bar_meta','yes'),(5714,1103,'mkdf_top_bar_in_grid_meta','yes'),(5715,1103,'mkdf_top_bar_border_meta','yes'),(5716,1103,'mkdf_top_bar_border_color_meta','#ebebeb'),(5717,1103,'mkdf_page_background_color_meta','#ffffff'),(5718,1103,'_dp_original','1092'),(5719,1103,'show_footer_custom_widget_areas','no'),(5720,1106,'_wpb_shortcodes_custom_css','.vc_custom_1496920706715{margin-top: -24px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5721,1106,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5722,1106,'_wpb_shortcodes_custom_css','.vc_custom_1496920706715{margin-top: -24px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5723,1106,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5724,1106,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5725,1106,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5726,1106,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5727,1106,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5728,1106,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5729,1106,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5730,1106,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5731,1106,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5732,1106,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5733,1106,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5734,1106,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5735,1106,'_wpb_shortcodes_custom_css','.vc_custom_1496920706715{margin-top: -24px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5736,1106,'_wpb_shortcodes_custom_css','.vc_custom_1496920706715{margin-top: -24px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5737,1106,'_wpb_shortcodes_custom_css','.vc_custom_1496920706715{margin-top: -24px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5738,1106,'_wpb_shortcodes_custom_css','.vc_custom_1496920706715{margin-top: -24px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5739,1106,'_wpb_shortcodes_custom_css','.vc_custom_1496920706715{margin-top: -24px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5740,1106,'_wpb_shortcodes_custom_css','.vc_custom_1496920706715{margin-top: -24px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5741,1106,'_wpb_shortcodes_custom_css','.vc_custom_1496920706715{margin-top: -24px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5742,1106,'_wpb_shortcodes_custom_css','.vc_custom_1496920706715{margin-top: -24px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5743,1106,'_wp_page_template','default'),(5744,1106,'slide_template','default'),(5745,1106,'_wpb_vc_js_status','true'),(5746,1106,'mkdf_page_content_behind_header_meta','no'),(5747,1106,'mkdf_boxed_background_image_attachment_meta','fixed'),(5748,1106,'mkdf_disable_header_widget_logo_area_meta','no'),(5749,1106,'mkdf_disable_header_widget_menu_area_meta','no'),(5750,1106,'mkdf_disable_footer_meta','no'),(5751,1106,'mkdf_menu_area_in_grid_meta','yes'),(5752,1106,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(5753,1106,'mkdf_sidebar_layout_meta','sidebar-25-left'),(5754,1106,'mkdf_custom_sidebar_area_meta','elements-sidebar'),(5755,1106,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(5756,1106,'mkdf_title_area_background_image_behavior_meta','parallax'),(5757,1106,'mkdf_page_content_top_padding','87'),(5758,1106,'mkdf_header_type_meta','header-standard'),(5759,1106,'mkdf_top_bar_meta','yes'),(5760,1106,'mkdf_top_bar_in_grid_meta','yes'),(5761,1106,'mkdf_top_bar_border_meta','yes'),(5762,1106,'mkdf_top_bar_border_color_meta','#ebebeb'),(5763,1106,'mkdf_page_background_color_meta','#ffffff'),(5764,1106,'_dp_original','1103'),(5765,1111,'_wpb_shortcodes_custom_css','.vc_custom_1497533074463{padding-top: 13px !important;padding-bottom: 60px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497364565778{padding-bottom: 60px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497364637200{padding-bottom: 60px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497364630377{padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497533066920{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-bottom: 7px !important;padding-left: 32px !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}.vc_custom_1497364188375{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-bottom: 7px !important;padding-left: 32px !important;background-color: #fafafa !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}.vc_custom_1497364346129{padding-bottom: 7px !important;padding-left: 32px !important;background-color: #d8a64e !important;}.vc_custom_1497364600472{padding-bottom: 7px !important;padding-left: 32px !important;background-color: #ffd740 !important;}'),(5766,1111,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5767,1111,'_wpb_shortcodes_custom_css','.vc_custom_1497533074463{padding-top: 13px !important;padding-bottom: 60px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497364565778{padding-bottom: 60px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497364637200{padding-bottom: 60px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497364630377{padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497533066920{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-bottom: 7px !important;padding-left: 32px !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}.vc_custom_1497364188375{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-bottom: 7px !important;padding-left: 32px !important;background-color: #fafafa !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}.vc_custom_1497364346129{padding-bottom: 7px !important;padding-left: 32px !important;background-color: #d8a64e !important;}.vc_custom_1497364600472{padding-bottom: 7px !important;padding-left: 32px !important;background-color: #ffd740 !important;}'),(5768,1111,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5769,1111,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5770,1111,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5771,1111,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5772,1111,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5773,1111,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5774,1111,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5775,1111,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5776,1111,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5777,1111,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5778,1111,'_wpb_shortcodes_custom_css','.vc_custom_1497533074463{padding-top: 13px !important;padding-bottom: 60px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497364565778{padding-bottom: 60px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497364637200{padding-bottom: 60px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497364630377{padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497533066920{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-bottom: 7px !important;padding-left: 32px !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}.vc_custom_1497364188375{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-bottom: 7px !important;padding-left: 32px !important;background-color: #fafafa !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}.vc_custom_1497364346129{padding-bottom: 7px !important;padding-left: 32px !important;background-color: #d8a64e !important;}.vc_custom_1497364600472{padding-bottom: 7px !important;padding-left: 32px !important;background-color: #ffd740 !important;}'),(5779,1111,'_wpb_shortcodes_custom_css','.vc_custom_1497533074463{padding-top: 13px !important;padding-bottom: 60px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497364565778{padding-bottom: 60px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497364637200{padding-bottom: 60px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497364630377{padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497533066920{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-bottom: 7px !important;padding-left: 32px !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}.vc_custom_1497364188375{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-bottom: 7px !important;padding-left: 32px !important;background-color: #fafafa !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}.vc_custom_1497364346129{padding-bottom: 7px !important;padding-left: 32px !important;background-color: #d8a64e !important;}.vc_custom_1497364600472{padding-bottom: 7px !important;padding-left: 32px !important;background-color: #ffd740 !important;}'),(5780,1111,'_wpb_shortcodes_custom_css','.vc_custom_1497533074463{padding-top: 13px !important;padding-bottom: 60px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497364565778{padding-bottom: 60px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497364637200{padding-bottom: 60px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497364630377{padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497533066920{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-bottom: 7px !important;padding-left: 32px !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}.vc_custom_1497364188375{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-bottom: 7px !important;padding-left: 32px !important;background-color: #fafafa !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}.vc_custom_1497364346129{padding-bottom: 7px !important;padding-left: 32px !important;background-color: #d8a64e !important;}.vc_custom_1497364600472{padding-bottom: 7px !important;padding-left: 32px !important;background-color: #ffd740 !important;}'),(5781,1111,'_wpb_shortcodes_custom_css','.vc_custom_1497533074463{padding-top: 13px !important;padding-bottom: 60px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497364565778{padding-bottom: 60px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497364637200{padding-bottom: 60px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497364630377{padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497533066920{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-bottom: 7px !important;padding-left: 32px !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}.vc_custom_1497364188375{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-bottom: 7px !important;padding-left: 32px !important;background-color: #fafafa !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}.vc_custom_1497364346129{padding-bottom: 7px !important;padding-left: 32px !important;background-color: #d8a64e !important;}.vc_custom_1497364600472{padding-bottom: 7px !important;padding-left: 32px !important;background-color: #ffd740 !important;}'),(5782,1111,'_wpb_shortcodes_custom_css','.vc_custom_1497533074463{padding-top: 13px !important;padding-bottom: 60px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497364565778{padding-bottom: 60px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497364637200{padding-bottom: 60px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497364630377{padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497533066920{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-bottom: 7px !important;padding-left: 32px !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}.vc_custom_1497364188375{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-bottom: 7px !important;padding-left: 32px !important;background-color: #fafafa !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}.vc_custom_1497364346129{padding-bottom: 7px !important;padding-left: 32px !important;background-color: #d8a64e !important;}.vc_custom_1497364600472{padding-bottom: 7px !important;padding-left: 32px !important;background-color: #ffd740 !important;}'),(5783,1111,'_wpb_shortcodes_custom_css','.vc_custom_1497533074463{padding-top: 13px !important;padding-bottom: 60px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497364565778{padding-bottom: 60px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497364637200{padding-bottom: 60px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497364630377{padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497533066920{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-bottom: 7px !important;padding-left: 32px !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}.vc_custom_1497364188375{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-bottom: 7px !important;padding-left: 32px !important;background-color: #fafafa !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}.vc_custom_1497364346129{padding-bottom: 7px !important;padding-left: 32px !important;background-color: #d8a64e !important;}.vc_custom_1497364600472{padding-bottom: 7px !important;padding-left: 32px !important;background-color: #ffd740 !important;}'),(5784,1111,'_wp_page_template','default'),(5785,1111,'slide_template','default'),(5786,1111,'_wpb_vc_js_status','true'),(5787,1111,'mkdf_page_content_behind_header_meta','no'),(5788,1111,'mkdf_boxed_background_image_attachment_meta','fixed'),(5789,1111,'mkdf_disable_header_widget_logo_area_meta','no'),(5790,1111,'mkdf_disable_header_widget_menu_area_meta','no'),(5791,1111,'mkdf_disable_footer_meta','no'),(5792,1111,'mkdf_menu_area_in_grid_meta','yes'),(5793,1111,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(5794,1111,'mkdf_sidebar_layout_meta','sidebar-25-left'),(5795,1111,'mkdf_custom_sidebar_area_meta','elements-sidebar'),(5796,1111,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(5797,1111,'mkdf_title_area_background_image_behavior_meta','parallax'),(5798,1111,'mkdf_page_content_top_padding','87'),(5799,1111,'mkdf_header_type_meta','header-standard'),(5800,1111,'mkdf_top_bar_meta','yes'),(5801,1111,'mkdf_top_bar_in_grid_meta','yes'),(5802,1111,'mkdf_top_bar_border_meta','yes'),(5803,1111,'mkdf_top_bar_border_color_meta','#ebebeb'),(5804,1111,'mkdf_page_background_color_meta','#ffffff'),(5805,1111,'_dp_original','638'),(5806,1111,'show_footer_custom_widget_areas','no'),(5807,1117,'_wpb_shortcodes_custom_css','.vc_custom_1497427509311{margin-top: -24px !important;padding-bottom: 93px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497427521150{margin-top: -24px !important;padding-bottom: 98px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497427374988{background-color: #d8a64e !important;}'),(5808,1117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5809,1117,'_wpb_shortcodes_custom_css','.vc_custom_1497427509311{margin-top: -24px !important;padding-bottom: 93px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497427521150{margin-top: -24px !important;padding-bottom: 98px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497427374988{background-color: #d8a64e !important;}'),(5810,1117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5811,1117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5812,1117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5813,1117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5814,1117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5815,1117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5816,1117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5817,1117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5818,1117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5819,1117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5820,1117,'_wpb_shortcodes_custom_css','.vc_custom_1497427509311{margin-top: -24px !important;padding-bottom: 93px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497427521150{margin-top: -24px !important;padding-bottom: 98px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497427374988{background-color: #d8a64e !important;}'),(5821,1117,'_wpb_shortcodes_custom_css','.vc_custom_1497427509311{margin-top: -24px !important;padding-bottom: 93px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497427521150{margin-top: -24px !important;padding-bottom: 98px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497427374988{background-color: #d8a64e !important;}'),(5822,1117,'_wpb_shortcodes_custom_css','.vc_custom_1497427509311{margin-top: -24px !important;padding-bottom: 93px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497427521150{margin-top: -24px !important;padding-bottom: 98px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497427374988{background-color: #d8a64e !important;}'),(5823,1117,'_wpb_shortcodes_custom_css','.vc_custom_1497427509311{margin-top: -24px !important;padding-bottom: 93px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497427521150{margin-top: -24px !important;padding-bottom: 98px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497427374988{background-color: #d8a64e !important;}'),(5824,1117,'_wpb_shortcodes_custom_css','.vc_custom_1497427509311{margin-top: -24px !important;padding-bottom: 93px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497427521150{margin-top: -24px !important;padding-bottom: 98px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497427374988{background-color: #d8a64e !important;}'),(5825,1117,'_wpb_shortcodes_custom_css','.vc_custom_1497427509311{margin-top: -24px !important;padding-bottom: 93px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497427521150{margin-top: -24px !important;padding-bottom: 98px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497427374988{background-color: #d8a64e !important;}'),(5826,1117,'_wp_page_template','default'),(5827,1117,'slide_template','default'),(5828,1117,'_wpb_vc_js_status','true'),(5829,1117,'mkdf_page_content_behind_header_meta','no'),(5830,1117,'mkdf_boxed_background_image_attachment_meta','fixed'),(5831,1117,'mkdf_disable_header_widget_logo_area_meta','no'),(5832,1117,'mkdf_disable_header_widget_menu_area_meta','no'),(5833,1117,'mkdf_disable_footer_meta','no'),(5834,1117,'mkdf_menu_area_in_grid_meta','yes'),(5835,1117,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(5836,1117,'mkdf_sidebar_layout_meta','sidebar-25-left'),(5837,1117,'mkdf_custom_sidebar_area_meta','elements-sidebar'),(5838,1117,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(5839,1117,'mkdf_title_area_background_image_behavior_meta','parallax'),(5840,1117,'mkdf_page_content_top_padding','87'),(5841,1117,'mkdf_header_type_meta','header-standard'),(5842,1117,'mkdf_top_bar_meta','yes'),(5843,1117,'mkdf_top_bar_in_grid_meta','yes'),(5844,1117,'mkdf_top_bar_border_meta','yes'),(5845,1117,'mkdf_top_bar_border_color_meta','#ebebeb'),(5846,1117,'mkdf_page_background_color_meta','#ffffff'),(5847,1117,'_dp_original','638'),(5848,1117,'show_footer_custom_widget_areas','no'),(5849,1119,'_wpb_shortcodes_custom_css','.vc_custom_1496929834098{margin-top: -40px !important;padding-bottom: 60px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496929737703{padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5850,1119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5851,1119,'_wpb_shortcodes_custom_css','.vc_custom_1496929834098{margin-top: -40px !important;padding-bottom: 60px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496929737703{padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5852,1119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5853,1119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5854,1119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5855,1119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5856,1119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5857,1119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5858,1119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5859,1119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5860,1119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5861,1119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5862,1119,'_wpb_shortcodes_custom_css','.vc_custom_1496929834098{margin-top: -40px !important;padding-bottom: 60px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496929737703{padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5863,1119,'_wpb_shortcodes_custom_css','.vc_custom_1496929834098{margin-top: -40px !important;padding-bottom: 60px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496929737703{padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5864,1119,'_wpb_shortcodes_custom_css','.vc_custom_1496929834098{margin-top: -40px !important;padding-bottom: 60px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496929737703{padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5865,1119,'_wpb_shortcodes_custom_css','.vc_custom_1496929834098{margin-top: -40px !important;padding-bottom: 60px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496929737703{padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5866,1119,'_wpb_shortcodes_custom_css','.vc_custom_1496929834098{margin-top: -40px !important;padding-bottom: 60px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496929737703{padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5867,1119,'_wpb_shortcodes_custom_css','.vc_custom_1496929834098{margin-top: -40px !important;padding-bottom: 60px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496929737703{padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5868,1119,'_wp_page_template','default'),(5869,1119,'slide_template','default'),(5870,1119,'_wpb_vc_js_status','true'),(5871,1119,'mkdf_page_content_behind_header_meta','no'),(5872,1119,'mkdf_boxed_background_image_attachment_meta','fixed'),(5873,1119,'mkdf_disable_header_widget_logo_area_meta','no'),(5874,1119,'mkdf_disable_header_widget_menu_area_meta','no'),(5875,1119,'mkdf_disable_footer_meta','no'),(5876,1119,'mkdf_menu_area_in_grid_meta','yes'),(5877,1119,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(5878,1119,'mkdf_sidebar_layout_meta','sidebar-25-left'),(5879,1119,'mkdf_custom_sidebar_area_meta','elements-sidebar'),(5880,1119,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(5881,1119,'mkdf_title_area_background_image_behavior_meta','parallax'),(5882,1119,'mkdf_page_content_top_padding','87'),(5883,1119,'mkdf_header_type_meta','header-standard'),(5884,1119,'mkdf_top_bar_meta','yes'),(5885,1119,'mkdf_top_bar_in_grid_meta','yes'),(5886,1119,'mkdf_top_bar_border_meta','yes'),(5887,1119,'mkdf_top_bar_border_color_meta','#ebebeb'),(5888,1119,'mkdf_page_background_color_meta','#ffffff'),(5889,1119,'_dp_original','638'),(5890,1123,'_wpb_shortcodes_custom_css','.vc_custom_1496925543740{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496926079528{margin-top: -24px !important;padding-bottom: 30px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5891,1123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5892,1123,'_wpb_shortcodes_custom_css','.vc_custom_1496925543740{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496926079528{margin-top: -24px !important;padding-bottom: 30px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5893,1123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5894,1123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5895,1123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5896,1123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5897,1123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5898,1123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5899,1123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5900,1123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5901,1123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5902,1123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5903,1123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5904,1123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5905,1123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5906,1123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5907,1123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5908,1123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5909,1123,'_wpb_shortcodes_custom_css','.vc_custom_1496925543740{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496926079528{margin-top: -24px !important;padding-bottom: 30px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5910,1123,'_wpb_shortcodes_custom_css','.vc_custom_1496925543740{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496926079528{margin-top: -24px !important;padding-bottom: 30px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5911,1123,'_wpb_shortcodes_custom_css','.vc_custom_1496925543740{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496926079528{margin-top: -24px !important;padding-bottom: 30px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5912,1123,'_wpb_shortcodes_custom_css','.vc_custom_1496925543740{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496926079528{margin-top: -24px !important;padding-bottom: 30px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5913,1123,'_wpb_shortcodes_custom_css','.vc_custom_1496925543740{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496926079528{margin-top: -24px !important;padding-bottom: 30px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5914,1123,'_wpb_shortcodes_custom_css','.vc_custom_1496925543740{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496926079528{margin-top: -24px !important;padding-bottom: 30px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5915,1123,'_wpb_shortcodes_custom_css','.vc_custom_1496925543740{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496926079528{margin-top: -24px !important;padding-bottom: 30px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5916,1123,'_wpb_shortcodes_custom_css','.vc_custom_1496925543740{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496926079528{margin-top: -24px !important;padding-bottom: 30px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5917,1123,'_wpb_shortcodes_custom_css','.vc_custom_1496925543740{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496926079528{margin-top: -24px !important;padding-bottom: 30px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5918,1123,'_wpb_shortcodes_custom_css','.vc_custom_1496925543740{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496926079528{margin-top: -24px !important;padding-bottom: 30px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5919,1123,'_wpb_shortcodes_custom_css','.vc_custom_1496925543740{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496926079528{margin-top: -24px !important;padding-bottom: 30px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5920,1123,'_wpb_shortcodes_custom_css','.vc_custom_1496925543740{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496926079528{margin-top: -24px !important;padding-bottom: 30px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(5921,1123,'_wp_page_template','default'),(5922,1123,'slide_template','default'),(5923,1123,'_wpb_vc_js_status','true'),(5924,1123,'mkdf_page_content_behind_header_meta','no'),(5925,1123,'mkdf_boxed_background_image_attachment_meta','fixed'),(5926,1123,'mkdf_disable_header_widget_logo_area_meta','no'),(5927,1123,'mkdf_disable_header_widget_menu_area_meta','no'),(5928,1123,'mkdf_disable_footer_meta','no'),(5929,1123,'mkdf_menu_area_in_grid_meta','yes'),(5930,1123,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(5931,1123,'mkdf_sidebar_layout_meta','sidebar-25-left'),(5932,1123,'mkdf_custom_sidebar_area_meta','elements-sidebar'),(5933,1123,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(5934,1123,'mkdf_title_area_background_image_behavior_meta','parallax'),(5935,1123,'mkdf_page_content_top_padding','87'),(5936,1123,'mkdf_header_type_meta','header-standard'),(5937,1123,'mkdf_top_bar_meta','yes'),(5938,1123,'mkdf_top_bar_in_grid_meta','yes'),(5939,1123,'mkdf_top_bar_border_meta','yes'),(5940,1123,'mkdf_top_bar_border_color_meta','#ebebeb'),(5941,1123,'mkdf_page_background_color_meta','#ffffff'),(5942,1123,'_dp_original','960'),(5943,1123,'show_footer_custom_widget_areas','no'),(5944,1144,'_wpb_shortcodes_custom_css','.vc_custom_1496155086361{margin-top: -24px !important;padding-bottom: 45px !important;}.vc_custom_1496052746065{margin-top: -10px !important;padding-bottom: 45px !important;}.vc_custom_1496052753133{margin-top: -10px !important;padding-bottom: 45px !important;}.vc_custom_1496052753133{margin-top: -10px !important;padding-bottom: 45px !important;}.vc_custom_1496052753133{margin-top: -10px !important;padding-bottom: 45px !important;}.vc_custom_1496052753133{margin-top: -10px !important;padding-bottom: 45px !important;}.vc_custom_1496052753133{margin-top: -10px !important;padding-bottom: 45px !important;}.vc_custom_1496155548728{margin-top: -20px !important;padding-bottom: 45px !important;}.vc_custom_1496155675169{padding-top: 17px !important;padding-bottom: 100px !important;}.vc_custom_1496053048146{padding-bottom: 47px !important;}.vc_custom_1496057885455{padding-top: 3px !important;padding-bottom: 3px !important;}.vc_custom_1496058049070{padding-top: 7px !important;}.vc_custom_1496058089543{padding-top: 4px !important;padding-bottom: 7px !important;}.vc_custom_1496058116847{padding-top: 5px !important;padding-bottom: 6px !important;}.vc_custom_1496058154193{padding-top: 5px !important;}.vc_custom_1496058779881{padding-top: 40px !important;padding-bottom: 30px !important;}.vc_custom_1496058827327{padding-top: 40px !important;padding-bottom: 35px !important;}.vc_custom_1496058906918{padding-top: 40px !important;padding-bottom: 62px !important;}.vc_custom_1496058981391{padding-top: 40px !important;padding-bottom: 30px !important;}.vc_custom_1496058990023{padding-top: 40px !important;padding-bottom: 30px !important;}.vc_custom_1496058996303{padding-top: 40px !important;}'),(5945,1144,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5946,1144,'_wpb_shortcodes_custom_css','.vc_custom_1496155086361{margin-top: -24px !important;padding-bottom: 45px !important;}.vc_custom_1496052746065{margin-top: -10px !important;padding-bottom: 45px !important;}.vc_custom_1496052753133{margin-top: -10px !important;padding-bottom: 45px !important;}.vc_custom_1496052753133{margin-top: -10px !important;padding-bottom: 45px !important;}.vc_custom_1496052753133{margin-top: -10px !important;padding-bottom: 45px !important;}.vc_custom_1496052753133{margin-top: -10px !important;padding-bottom: 45px !important;}.vc_custom_1496052753133{margin-top: -10px !important;padding-bottom: 45px !important;}.vc_custom_1496155548728{margin-top: -20px !important;padding-bottom: 45px !important;}.vc_custom_1496155675169{padding-top: 17px !important;padding-bottom: 100px !important;}.vc_custom_1496053048146{padding-bottom: 47px !important;}.vc_custom_1496057885455{padding-top: 3px !important;padding-bottom: 3px !important;}.vc_custom_1496058049070{padding-top: 7px !important;}.vc_custom_1496058089543{padding-top: 4px !important;padding-bottom: 7px !important;}.vc_custom_1496058116847{padding-top: 5px !important;padding-bottom: 6px !important;}.vc_custom_1496058154193{padding-top: 5px !important;}.vc_custom_1496058779881{padding-top: 40px !important;padding-bottom: 30px !important;}.vc_custom_1496058827327{padding-top: 40px !important;padding-bottom: 35px !important;}.vc_custom_1496058906918{padding-top: 40px !important;padding-bottom: 62px !important;}.vc_custom_1496058981391{padding-top: 40px !important;padding-bottom: 30px !important;}.vc_custom_1496058990023{padding-top: 40px !important;padding-bottom: 30px !important;}.vc_custom_1496058996303{padding-top: 40px !important;}'),(5947,1144,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5948,1144,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5949,1144,'_wpb_shortcodes_custom_css','.vc_custom_1496155086361{margin-top: -24px !important;padding-bottom: 45px !important;}.vc_custom_1496052746065{margin-top: -10px !important;padding-bottom: 45px !important;}.vc_custom_1496052753133{margin-top: -10px !important;padding-bottom: 45px !important;}.vc_custom_1496052753133{margin-top: -10px !important;padding-bottom: 45px !important;}.vc_custom_1496052753133{margin-top: -10px !important;padding-bottom: 45px !important;}.vc_custom_1496052753133{margin-top: -10px !important;padding-bottom: 45px !important;}.vc_custom_1496052753133{margin-top: -10px !important;padding-bottom: 45px !important;}.vc_custom_1496155548728{margin-top: -20px !important;padding-bottom: 45px !important;}.vc_custom_1496155675169{padding-top: 17px !important;padding-bottom: 100px !important;}.vc_custom_1496053048146{padding-bottom: 47px !important;}.vc_custom_1496057885455{padding-top: 3px !important;padding-bottom: 3px !important;}.vc_custom_1496058049070{padding-top: 7px !important;}.vc_custom_1496058089543{padding-top: 4px !important;padding-bottom: 7px !important;}.vc_custom_1496058116847{padding-top: 5px !important;padding-bottom: 6px !important;}.vc_custom_1496058154193{padding-top: 5px !important;}.vc_custom_1496058779881{padding-top: 40px !important;padding-bottom: 30px !important;}.vc_custom_1496058827327{padding-top: 40px !important;padding-bottom: 35px !important;}.vc_custom_1496058906918{padding-top: 40px !important;padding-bottom: 62px !important;}.vc_custom_1496058981391{padding-top: 40px !important;padding-bottom: 30px !important;}.vc_custom_1496058990023{padding-top: 40px !important;padding-bottom: 30px !important;}.vc_custom_1496058996303{padding-top: 40px !important;}'),(5950,1144,'_wpb_shortcodes_custom_css','.vc_custom_1496155086361{margin-top: -24px !important;padding-bottom: 45px !important;}.vc_custom_1496052746065{margin-top: -10px !important;padding-bottom: 45px !important;}.vc_custom_1496052753133{margin-top: -10px !important;padding-bottom: 45px !important;}.vc_custom_1496052753133{margin-top: -10px !important;padding-bottom: 45px !important;}.vc_custom_1496052753133{margin-top: -10px !important;padding-bottom: 45px !important;}.vc_custom_1496052753133{margin-top: -10px !important;padding-bottom: 45px !important;}.vc_custom_1496052753133{margin-top: -10px !important;padding-bottom: 45px !important;}.vc_custom_1496155548728{margin-top: -20px !important;padding-bottom: 45px !important;}.vc_custom_1496155675169{padding-top: 17px !important;padding-bottom: 100px !important;}.vc_custom_1496053048146{padding-bottom: 47px !important;}.vc_custom_1496057885455{padding-top: 3px !important;padding-bottom: 3px !important;}.vc_custom_1496058049070{padding-top: 7px !important;}.vc_custom_1496058089543{padding-top: 4px !important;padding-bottom: 7px !important;}.vc_custom_1496058116847{padding-top: 5px !important;padding-bottom: 6px !important;}.vc_custom_1496058154193{padding-top: 5px !important;}.vc_custom_1496058779881{padding-top: 40px !important;padding-bottom: 30px !important;}.vc_custom_1496058827327{padding-top: 40px !important;padding-bottom: 35px !important;}.vc_custom_1496058906918{padding-top: 40px !important;padding-bottom: 62px !important;}.vc_custom_1496058981391{padding-top: 40px !important;padding-bottom: 30px !important;}.vc_custom_1496058990023{padding-top: 40px !important;padding-bottom: 30px !important;}.vc_custom_1496058996303{padding-top: 40px !important;}'),(5951,1144,'_wp_page_template','default'),(5952,1144,'slide_template','default'),(5953,1144,'_wpb_vc_js_status','true'),(5954,1144,'mkdf_page_content_behind_header_meta','no'),(5955,1144,'mkdf_boxed_background_image_attachment_meta','fixed'),(5956,1144,'mkdf_disable_header_widget_logo_area_meta','no'),(5957,1144,'mkdf_disable_header_widget_menu_area_meta','no'),(5958,1144,'mkdf_disable_footer_meta','no'),(5959,1144,'mkdf_menu_area_in_grid_meta','yes'),(5960,1144,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(5961,1144,'mkdf_sidebar_layout_meta','sidebar-25-left'),(5962,1144,'mkdf_custom_sidebar_area_meta','elements-sidebar'),(5963,1144,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(5964,1144,'mkdf_title_area_background_image_behavior_meta','parallax'),(5965,1144,'mkdf_page_content_top_padding','87'),(5966,1144,'mkdf_header_type_meta','header-standard'),(5967,1144,'mkdf_top_bar_meta','yes'),(5968,1144,'mkdf_top_bar_in_grid_meta','yes'),(5969,1144,'mkdf_top_bar_border_meta','yes'),(5970,1144,'mkdf_top_bar_border_color_meta','#ebebeb'),(5971,1144,'mkdf_page_background_color_meta','#ffffff'),(5972,1144,'_dp_original','449'),(5973,1144,'show_footer_custom_widget_areas','no'),(5974,1242,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5975,1242,'_wp_page_template','blog-standard'),(5976,1242,'slide_template','default'),(5977,1242,'_wpb_vc_js_status','false'),(5978,1242,'mkdf_page_content_behind_header_meta','no'),(5979,1242,'mkdf_page_content_top_padding_mobile','yes'),(5980,1242,'mkdf_boxed_background_image_attachment_meta','fixed'),(5981,1242,'mkdf_blog_category_meta','education'),(5982,1242,'mkdf_show_posts_per_page_meta','6'),(5983,1242,'mkdf_sidebar_layout_meta','sidebar-25-right'),(5984,1242,'mkdf_disable_header_widget_logo_area_meta','no'),(5985,1242,'mkdf_disable_header_widget_menu_area_meta','no'),(5986,1242,'mkdf_disable_footer_meta','no'),(5987,1242,'mkdf_page_background_color_meta','#ffffff'),(5988,1242,'mkdf_number_of_chars_meta','75'),(5989,1242,'mkdf_page_content_top_padding','100'),(5990,1242,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(5991,1242,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(5992,1242,'mkdf_menu_area_in_grid_meta','yes'),(5993,1242,'mkdf_title_area_height_meta','250'),(5994,1305,'_wpb_shortcodes_custom_css','.vc_custom_1497342919024{padding-top: 115px !important;padding-bottom: 75px !important;}.vc_custom_1496389458613{padding-top: 110px !important;padding-bottom: 98px !important;}.vc_custom_1496228442832{padding-top: 123px !important;padding-bottom: 123px !important;}.vc_custom_1496228110517{padding-top: 110px !important;padding-bottom: 100px !important;}.vc_custom_1496229853522{padding-top: 110px !important;padding-bottom: 120px !important;}'),(5995,1305,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5996,1305,'_wp_page_template','full-width.php'),(5997,1305,'slide_template','default'),(5998,1305,'_wpb_vc_js_status','true'),(5999,1305,'_wpb_shortcodes_custom_css','.vc_custom_1497342919024{padding-top: 115px !important;padding-bottom: 75px !important;}.vc_custom_1496389458613{padding-top: 110px !important;padding-bottom: 98px !important;}.vc_custom_1496228442832{padding-top: 123px !important;padding-bottom: 123px !important;}.vc_custom_1496228110517{padding-top: 110px !important;padding-bottom: 100px !important;}.vc_custom_1496229853522{padding-top: 110px !important;padding-bottom: 120px !important;}'),(6000,1305,'mkdf_page_content_behind_header_meta','no'),(6001,1305,'mkdf_boxed_background_image_attachment_meta','fixed'),(6002,1305,'mkdf_disable_header_widget_logo_area_meta','no'),(6003,1305,'mkdf_disable_header_widget_menu_area_meta','no'),(6004,1305,'mkdf_disable_footer_meta','no'),(6005,1305,'mkdf_page_slider_meta','[rev_slider alias=\"home-6\"]'),(6006,1305,'mkdf_page_content_top_padding','0px'),(6007,1305,'mkdf_page_content_top_padding_mobile','yes'),(6008,1305,'mkdf_show_title_area_meta','no'),(6009,1305,'mkdf_menu_area_in_grid_meta','yes'),(6010,1305,'mkdf_header_type_meta','header-standard'),(6011,1305,'mkdf_top_bar_meta','yes'),(6012,1305,'mkdf_top_bar_skin_meta','light'),(6013,1305,'mkdf_top_bar_background_color_meta','#d8a64e'),(6014,1305,'show_footer_custom_widget_areas','no'),(6015,1324,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6016,1324,'_wp_page_template','blog-split-column'),(6017,1324,'slide_template','default'),(6018,1324,'_wpb_vc_js_status','false'),(6019,1324,'mkdf_page_content_behind_header_meta','no'),(6020,1324,'mkdf_page_content_top_padding_mobile','yes'),(6021,1324,'mkdf_page_background_color_meta','#ffffff'),(6022,1324,'mkdf_boxed_background_image_attachment_meta','fixed'),(6023,1324,'mkdf_blog_category_meta','business'),(6024,1324,'mkdf_show_posts_per_page_meta','5'),(6025,1324,'mkdf_number_of_chars_meta','33'),(6026,1324,'mkdf_sidebar_layout_meta','no-sidebar'),(6027,1324,'mkdf_disable_header_widget_logo_area_meta','no'),(6028,1324,'mkdf_disable_header_widget_menu_area_meta','no'),(6029,1324,'mkdf_menu_area_in_grid_meta','yes'),(6030,1324,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(6031,1324,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(6032,1324,'mkdf_disable_footer_meta','no'),(6033,1324,'mkdf_page_content_top_padding','100'),(6034,1324,'mkdf_title_area_height_meta','250'),(6035,1328,'_wpb_shortcodes_custom_css','.vc_custom_1496226223859{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496226244722{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496226250310{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496226258626{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496226267346{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496226411344{margin-top: -24px !important;padding-bottom: 92px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(6036,1328,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6037,1328,'_wpb_shortcodes_custom_css','.vc_custom_1496226223859{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496226244722{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496226250310{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496226258626{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496226267346{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496226411344{margin-top: -24px !important;padding-bottom: 92px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(6038,1328,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6039,1328,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6040,1328,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6041,1328,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6042,1328,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6043,1328,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6044,1328,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6045,1328,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6046,1328,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6047,1328,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6048,1328,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6049,1328,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6050,1328,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6051,1328,'_wpb_shortcodes_custom_css','.vc_custom_1496226223859{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496226244722{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496226250310{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496226258626{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496226267346{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496226411344{margin-top: -24px !important;padding-bottom: 92px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(6052,1328,'_wpb_shortcodes_custom_css','.vc_custom_1496226223859{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496226244722{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496226250310{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496226258626{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496226267346{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496226411344{margin-top: -24px !important;padding-bottom: 92px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(6053,1328,'_wpb_shortcodes_custom_css','.vc_custom_1496226223859{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496226244722{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496226250310{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496226258626{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496226267346{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496226411344{margin-top: -24px !important;padding-bottom: 92px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(6054,1328,'_wpb_shortcodes_custom_css','.vc_custom_1496226223859{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496226244722{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496226250310{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496226258626{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496226267346{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496226411344{margin-top: -24px !important;padding-bottom: 92px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(6055,1328,'_wpb_shortcodes_custom_css','.vc_custom_1496226223859{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496226244722{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496226250310{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496226258626{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496226267346{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496226411344{margin-top: -24px !important;padding-bottom: 92px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(6056,1328,'_wpb_shortcodes_custom_css','.vc_custom_1496226223859{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496226244722{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496226250310{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496226258626{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496226267346{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496226411344{margin-top: -24px !important;padding-bottom: 92px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(6057,1328,'_wpb_shortcodes_custom_css','.vc_custom_1496226223859{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496226244722{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496226250310{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496226258626{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496226267346{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496226411344{margin-top: -24px !important;padding-bottom: 92px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(6058,1328,'_wpb_shortcodes_custom_css','.vc_custom_1496226223859{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496226244722{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496226250310{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496226258626{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496226267346{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496226411344{margin-top: -24px !important;padding-bottom: 92px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(6059,1328,'_wpb_shortcodes_custom_css','.vc_custom_1496226223859{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496226244722{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496226250310{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496226258626{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496226267346{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496226411344{margin-top: -24px !important;padding-bottom: 92px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(6060,1328,'_wp_page_template','default'),(6061,1328,'slide_template','default'),(6062,1328,'_wpb_vc_js_status','true'),(6063,1328,'mkdf_page_content_behind_header_meta','no'),(6064,1328,'mkdf_boxed_background_image_attachment_meta','fixed'),(6065,1328,'mkdf_disable_header_widget_logo_area_meta','no'),(6066,1328,'mkdf_disable_header_widget_menu_area_meta','no'),(6067,1328,'mkdf_disable_footer_meta','no'),(6068,1328,'mkdf_menu_area_in_grid_meta','yes'),(6069,1328,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(6070,1328,'mkdf_sidebar_layout_meta','sidebar-25-left'),(6071,1328,'mkdf_custom_sidebar_area_meta','faq-sidebar'),(6072,1328,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(6073,1328,'mkdf_title_area_background_image_behavior_meta','parallax'),(6074,1328,'mkdf_page_content_top_padding','60'),(6075,1328,'mkdf_header_type_meta','header-standard'),(6076,1328,'mkdf_top_bar_meta','yes'),(6077,1328,'mkdf_top_bar_in_grid_meta','yes'),(6078,1328,'mkdf_top_bar_border_meta','yes'),(6079,1328,'mkdf_top_bar_border_color_meta','#ebebeb'),(6080,1328,'_dp_original','670'),(6081,1328,'mkdf_page_content_top_padding_mobile','yes'),(6082,1408,'_wpb_shortcodes_custom_css','.vc_custom_1496236554469{padding-top: 225px !important;padding-bottom: 27px !important;}'),(6083,1408,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6084,1408,'_wpb_shortcodes_custom_css','.vc_custom_1496236554469{padding-top: 225px !important;padding-bottom: 27px !important;}'),(6085,1408,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6086,1408,'_wp_page_template','full-width.php'),(6087,1408,'slide_template','default'),(6088,1408,'_wpb_vc_js_status','true'),(6089,1408,'mkdf_page_content_behind_header_meta','yes'),(6090,1408,'mkdf_boxed_background_image_attachment_meta','fixed'),(6091,1408,'mkdf_disable_header_widget_logo_area_meta','no'),(6092,1408,'mkdf_disable_header_widget_menu_area_meta','no'),(6093,1408,'mkdf_disable_footer_meta','no'),(6094,1408,'_wpb_shortcodes_custom_css','.vc_custom_1496236554469{padding-top: 225px !important;padding-bottom: 27px !important;}'),(6095,1408,'_dp_original','12'),(6096,1408,'mkdf_page_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/h11-background-img.jpg'),(6097,1408,'mkdf_header_style_meta','light-header'),(6098,1408,'mkdf_set_menu_area_position_meta','center'),(6099,1408,'mkdf_menu_area_background_color_meta','#ffffff'),(6100,1408,'mkdf_menu_area_background_transparency_meta','0'),(6101,1408,'mkdf_show_title_area_meta','no'),(6102,1408,'mkdf_footer_transparency_meta','yes'),(6103,1408,'mkdf_footer_bottom_skin_meta','light'),(6104,1408,'mkdf_show_footer_bottom_meta','yes'),(6105,1408,'mkdf_show_footer_top_meta','yes'),(6106,1408,'mkdf_footer_top_skin_meta','light'),(6107,1408,'mkdf_page_content_top_padding','0'),(6108,1408,'mkdf_page_content_top_padding_mobile','yes'),(6109,1408,'mkdf_header_behaviour_meta','no-behavior'),(6110,1408,'show_footer_custom_widget_areas','no'),(6111,1408,'mkdf_header_type_meta','header-standard'),(6112,1408,'mkdf_top_bar_meta','no'),(6113,1408,'mkdf_menu_area_in_grid_meta','no'),(6114,1408,'_wpb_post_custom_css','@media only screen and (min-width: 1024px) and (max-width: 1280px) {\n	.page-id-1408 .mkdf-main-menu>ul>li>a {\n		padding: 0 18px;\n	}\n	.page-id-1408 .mkdf-main-menu>ul {\n		padding-left: 55px;\n	}\n}'),(6115,1440,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6116,1440,'_wp_page_template','blog-masonry'),(6117,1440,'slide_template','default'),(6118,1440,'_wpb_vc_js_status','false'),(6119,1440,'mkdf_page_content_behind_header_meta','no'),(6120,1440,'mkdf_page_content_top_padding_mobile','yes'),(6121,1440,'mkdf_page_background_color_meta','#ffffff'),(6122,1440,'mkdf_boxed_background_image_attachment_meta','fixed'),(6123,1440,'mkdf_blog_category_meta','motivation'),(6124,1440,'mkdf_show_posts_per_page_meta','13'),(6125,1440,'mkdf_number_of_chars_meta','22'),(6126,1440,'mkdf_sidebar_layout_meta','no-sidebar'),(6127,1440,'mkdf_disable_header_widget_logo_area_meta','no'),(6128,1440,'mkdf_disable_header_widget_menu_area_meta','no'),(6129,1440,'mkdf_menu_area_in_grid_meta','yes'),(6130,1440,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(6131,1440,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(6132,1440,'mkdf_disable_footer_meta','no'),(6133,1440,'mkdf_page_content_top_padding','100'),(6134,1440,'mkdf_title_area_height_meta','250'),(6135,1451,'_wpb_shortcodes_custom_css','.vc_custom_1496732982999{padding-top: 70px !important;}.vc_custom_1496228442832{padding-top: 123px !important;padding-bottom: 123px !important;}.vc_custom_1496240722963{padding-top: 120px !important;padding-bottom: 113px !important;}.vc_custom_1496068794871{padding-top: 130px !important;padding-bottom: 125px !important;}.vc_custom_1497857554461{padding-top: 130px !important;padding-bottom: 130px !important;}'),(6136,1451,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6137,1451,'_wp_page_template','full-width.php'),(6138,1451,'slide_template','default'),(6139,1451,'_wpb_vc_js_status','true'),(6140,1451,'_wpb_shortcodes_custom_css','.vc_custom_1496732982999{padding-top: 70px !important;}.vc_custom_1496228442832{padding-top: 123px !important;padding-bottom: 123px !important;}.vc_custom_1496240722963{padding-top: 120px !important;padding-bottom: 113px !important;}.vc_custom_1496068794871{padding-top: 130px !important;padding-bottom: 125px !important;}.vc_custom_1497857554461{padding-top: 130px !important;padding-bottom: 130px !important;}'),(6141,1451,'mkdf_page_content_behind_header_meta','no'),(6142,1451,'mkdf_boxed_background_image_attachment_meta','fixed'),(6143,1451,'mkdf_disable_header_widget_logo_area_meta','no'),(6144,1451,'mkdf_disable_header_widget_menu_area_meta','no'),(6145,1451,'mkdf_disable_footer_meta','no'),(6146,1451,'mkdf_header_type_meta','header-standard'),(6147,1451,'mkdf_top_bar_meta','no'),(6148,1451,'mkdf_menu_area_in_grid_meta','yes'),(6149,1451,'mkdf_page_content_top_padding','0px'),(6150,1451,'mkdf_page_content_top_padding_mobile','yes'),(6151,1451,'mkdf_show_title_area_meta','no'),(6152,1451,'mkdf_header_behaviour_meta','no-behavior'),(6153,1451,'show_footer_custom_widget_areas','no'),(6154,1485,'_wpb_shortcodes_custom_css','.vc_custom_1496309239657{padding-top: 130px !important;padding-bottom: 125px !important;}.vc_custom_1496327066529{padding-top: 110px !important;padding-bottom: 125px !important;}.vc_custom_1496403736716{padding-top: 105px !important;padding-bottom: 120px !important;}.vc_custom_1497528698074{padding-top: 130px !important;padding-bottom: 83px !important;}.vc_custom_1496236353668{padding-top: 110px !important;padding-bottom: 86px !important;}.vc_custom_1496327815156{padding-top: 110px !important;padding-bottom: 30px !important;}.vc_custom_1497252628138{padding-top: 30px !important;padding-bottom: 5px !important;}.vc_custom_1496751666044{margin-left: -17% !important;}.vc_custom_1496415879752{margin-top: -20px !important;}.vc_custom_1496651736932{margin-top: -20px !important;}.vc_custom_1496652527460{margin-top: -20px !important;}'),(6155,1485,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6156,1485,'_wp_page_template','full-width.php'),(6157,1485,'slide_template','default'),(6158,1485,'_wpb_vc_js_status','true'),(6159,1485,'_wpb_shortcodes_custom_css','.vc_custom_1496309239657{padding-top: 130px !important;padding-bottom: 125px !important;}.vc_custom_1496327066529{padding-top: 110px !important;padding-bottom: 125px !important;}.vc_custom_1496403736716{padding-top: 105px !important;padding-bottom: 120px !important;}.vc_custom_1497528698074{padding-top: 130px !important;padding-bottom: 83px !important;}.vc_custom_1496236353668{padding-top: 110px !important;padding-bottom: 86px !important;}.vc_custom_1496327815156{padding-top: 110px !important;padding-bottom: 30px !important;}.vc_custom_1497252628138{padding-top: 30px !important;padding-bottom: 5px !important;}.vc_custom_1496751666044{margin-left: -17% !important;}.vc_custom_1496415879752{margin-top: -20px !important;}.vc_custom_1496651736932{margin-top: -20px !important;}.vc_custom_1496652527460{margin-top: -20px !important;}'),(6160,1485,'mkdf_page_content_behind_header_meta','yes'),(6161,1485,'mkdf_boxed_background_image_attachment_meta','fixed'),(6162,1485,'mkdf_disable_header_widget_logo_area_meta','no'),(6163,1485,'mkdf_disable_header_widget_menu_area_meta','no'),(6164,1485,'mkdf_disable_footer_meta','no'),(6165,1485,'mkdf_header_type_meta','header-standard'),(6166,1485,'mkdf_top_bar_meta','no'),(6167,1485,'mkdf_page_slider_meta','[rev_slider alias=\"home-10\"] '),(6168,1485,'mkdf_show_title_area_meta','no'),(6169,1485,'mkdf_menu_area_border_meta','yes'),(6170,1485,'mkdf_menu_area_border_color_meta','#ebebeb'),(6171,1485,'mkdf_page_content_top_padding','0'),(6172,1485,'mkdf_page_content_top_padding_mobile','yes'),(6173,1485,'show_footer_custom_widget_areas','no'),(6174,1485,'mkdf_menu_area_in_grid_meta','no'),(6175,1485,'mkdf_set_menu_area_position_meta','left'),(6176,1485,'mkdf_custom_menu_area_sidebar_meta','home-10'),(6177,1504,'_wpb_shortcodes_custom_css','.vc_custom_1496306844535{padding-top: 130px !important;padding-bottom: 82px !important;}.vc_custom_1496403805007{padding-top: 105px !important;padding-bottom: 120px !important;}.vc_custom_1496323323385{padding-top: 110px !important;padding-bottom: 100px !important;}.vc_custom_1496389074344{padding-top: 130px !important;padding-bottom: 130px !important;}.vc_custom_1496308636213{padding-top: 110px !important;padding-bottom: 98px !important;}.vc_custom_1496223848531{padding-top: 125px !important;padding-bottom: 75px !important;}'),(6178,1504,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6179,1504,'_wp_page_template','full-width.php'),(6180,1504,'slide_template','default'),(6181,1504,'_wpb_vc_js_status','true'),(6182,1504,'_wpb_shortcodes_custom_css','.vc_custom_1496306844535{padding-top: 130px !important;padding-bottom: 82px !important;}.vc_custom_1496403805007{padding-top: 105px !important;padding-bottom: 120px !important;}.vc_custom_1496323323385{padding-top: 110px !important;padding-bottom: 100px !important;}.vc_custom_1496389074344{padding-top: 130px !important;padding-bottom: 130px !important;}.vc_custom_1496308636213{padding-top: 110px !important;padding-bottom: 98px !important;}.vc_custom_1496223848531{padding-top: 125px !important;padding-bottom: 75px !important;}'),(6183,1504,'mkdf_page_content_behind_header_meta','yes'),(6184,1504,'mkdf_boxed_background_image_attachment_meta','fixed'),(6185,1504,'mkdf_disable_header_widget_logo_area_meta','no'),(6186,1504,'mkdf_disable_header_widget_menu_area_meta','no'),(6187,1504,'mkdf_disable_footer_meta','no'),(6188,1504,'mkdf_header_type_meta','header-standard'),(6189,1504,'mkdf_top_bar_meta','no'),(6190,1504,'mkdf_menu_area_in_grid_meta','yes'),(6191,1504,'mkdf_page_slider_meta','[rev_slider alias=\"home-8\"]'),(6192,1504,'mkdf_show_title_area_meta','no'),(6193,1504,'mkdf_page_content_top_padding','0px'),(6194,1504,'mkdf_page_content_top_padding_mobile','yes'),(6195,1504,'show_footer_custom_widget_areas','no'),(6196,1570,'_wpb_shortcodes_custom_css','.vc_custom_1496309608001{padding-top: 110px !important;padding-bottom: 130px !important;}.vc_custom_1496240722963{padding-top: 120px !important;padding-bottom: 113px !important;}.vc_custom_1496133706947{padding-top: 130px !important;padding-bottom: 110px !important;}.vc_custom_1496316022273{padding-top: 110px !important;padding-bottom: 123px !important;}.vc_custom_1496388356479{padding-top: 110px !important;padding-bottom: 122px !important;}.vc_custom_1496316583391{padding-top: 115px !important;padding-bottom: 100px !important;}.vc_custom_1497002218225{padding-top: 110px !important;padding-bottom: 90px !important;}.vc_custom_1496320160366{padding-top: 110px !important;padding-bottom: 130px !important;}.vc_custom_1496216729923{margin-left: -23% !important;}'),(6197,1570,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6198,1570,'_wp_page_template','full-width.php'),(6199,1570,'slide_template','default'),(6200,1570,'_wpb_vc_js_status','true'),(6201,1570,'_wpb_shortcodes_custom_css','.vc_custom_1496309608001{padding-top: 110px !important;padding-bottom: 130px !important;}.vc_custom_1496240722963{padding-top: 120px !important;padding-bottom: 113px !important;}.vc_custom_1496133706947{padding-top: 130px !important;padding-bottom: 110px !important;}.vc_custom_1496316022273{padding-top: 110px !important;padding-bottom: 123px !important;}.vc_custom_1496388356479{padding-top: 110px !important;padding-bottom: 122px !important;}.vc_custom_1496316583391{padding-top: 115px !important;padding-bottom: 100px !important;}.vc_custom_1497002218225{padding-top: 110px !important;padding-bottom: 90px !important;}.vc_custom_1496320160366{padding-top: 110px !important;padding-bottom: 130px !important;}.vc_custom_1496216729923{margin-left: -23% !important;}'),(6202,1570,'mkdf_page_content_behind_header_meta','yes'),(6203,1570,'mkdf_boxed_background_image_attachment_meta','fixed'),(6204,1570,'mkdf_disable_header_widget_logo_area_meta','no'),(6205,1570,'mkdf_disable_header_widget_menu_area_meta','no'),(6206,1570,'mkdf_disable_footer_meta','no'),(6207,1570,'mkdf_header_type_meta','header-standard'),(6208,1570,'mkdf_top_bar_meta','no'),(6209,1570,'mkdf_menu_area_in_grid_meta','yes'),(6210,1570,'mkdf_show_title_area_meta','no'),(6211,1570,'mkdf_page_slider_meta','[rev_slider alias=\"home-9\"]'),(6212,1570,'mkdf_page_content_top_padding','0'),(6213,1570,'mkdf_page_content_top_padding_mobile','yes'),(6214,1570,'mkdf_footer_transparency_meta','yes'),(6215,1570,'mkdf_page_background_color_meta','#ffffff'),(6216,1570,'mkdf_footer_top_skin_meta','dark'),(6217,1570,'mkdf_footer_bottom_skin_meta','dark'),(6218,1570,'show_footer_custom_widget_areas','yes'),(6219,1570,'mkdf_footer_top_meta_1','footer-col-1-custom'),(6220,1580,'_wpb_shortcodes_custom_css','.vc_custom_1497446239499{padding-top: 63px !important;padding-bottom: 63px !important;}.vc_custom_1496402409845{padding-top: 81px !important;padding-bottom: 70px !important;}.vc_custom_1496402470103{padding-top: 100px !important;padding-bottom: 95px !important;}.vc_custom_1496329986296{padding-bottom: 20px !important;}'),(6222,1580,'_wp_page_template','full-width.php'),(6224,1580,'_wpb_vc_js_status','true'),(6225,1580,'mkdf_page_content_behind_header_meta','no'),(6226,1580,'mkdf_boxed_background_image_attachment_meta','fixed'),(6227,1580,'mkdf_disable_header_widget_logo_area_meta','no'),(6228,1580,'mkdf_disable_header_widget_menu_area_meta','no'),(6229,1580,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(6230,1580,'mkdf_title_area_background_color_meta','#ffffff'),(6231,1580,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(6232,1580,'mkdf_disable_footer_meta','no'),(6233,1580,'_wpb_shortcodes_custom_css','.vc_custom_1497446239499{padding-top: 63px !important;padding-bottom: 63px !important;}.vc_custom_1496402409845{padding-top: 81px !important;padding-bottom: 70px !important;}.vc_custom_1496402470103{padding-top: 100px !important;padding-bottom: 95px !important;}.vc_custom_1496329986296{padding-bottom: 20px !important;}'),(6234,1580,'mkdf_page_content_top_padding_mobile','yes'),(6235,1580,'mkdf_title_area_height_meta','250'),(6236,1580,'mkdf_title_area_background_image_behavior_meta','parallax'),(6237,1580,'mkdf_menu_area_in_grid_meta','yes'),(6238,1580,'mkdf_page_content_top_padding','0'),(6239,1580,'show_footer_custom_widget_areas','no'),(6240,1863,'_wpb_shortcodes_custom_css','.vc_custom_1497251655285{padding-top: 100px !important;padding-bottom: 83px !important;}.vc_custom_1496845447068{margin-top: -10px !important;}.vc_custom_1729939874309{padding-bottom: 20px !important;}'),(6242,1863,'_wp_page_template','full-width.php'),(6244,1863,'_wpb_vc_js_status','true'),(6245,1863,'mkdf_page_content_behind_header_meta','no'),(6246,1863,'mkdf_page_content_top_padding_mobile','yes'),(6247,1863,'mkdf_boxed_background_image_attachment_meta','fixed'),(6248,1863,'mkdf_disable_header_widget_logo_area_meta','no'),(6249,1863,'mkdf_disable_header_widget_menu_area_meta','no'),(6250,1863,'mkdf_menu_area_in_grid_meta','yes'),(6251,1863,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(6252,1863,'mkdf_title_area_height_meta','250'),(6253,1863,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(6254,1863,'mkdf_disable_footer_meta','no'),(6255,1863,'_wpb_shortcodes_custom_css','.vc_custom_1497251655285{padding-top: 100px !important;padding-bottom: 83px !important;}.vc_custom_1496845447068{margin-top: -10px !important;}.vc_custom_1729939874309{padding-bottom: 20px !important;}'),(6256,1863,'mkdf_page_content_top_padding','0'),(6257,1863,'show_footer_custom_widget_areas','no'),(6258,2106,'_wpb_shortcodes_custom_css','.vc_custom_1496659232921{padding-top: 100px !important;padding-bottom: 100px !important;}'),(6259,2106,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6260,2106,'_wpb_shortcodes_custom_css','.vc_custom_1496659232921{padding-top: 100px !important;padding-bottom: 100px !important;}'),(6261,2106,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6262,2106,'_wp_page_template','full-width.php'),(6263,2106,'slide_template','default'),(6264,2106,'_wpb_vc_js_status','true'),(6265,2106,'mkdf_page_content_behind_header_meta','no'),(6266,2106,'mkdf_boxed_background_image_attachment_meta','fixed'),(6267,2106,'mkdf_disable_header_widget_logo_area_meta','no'),(6268,2106,'mkdf_disable_header_widget_menu_area_meta','no'),(6269,2106,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(6270,2106,'mkdf_title_area_background_color_meta','#ffffff'),(6271,2106,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(6272,2106,'mkdf_disable_footer_meta','no'),(6273,2106,'_wpb_shortcodes_custom_css','.vc_custom_1496659232921{padding-top: 100px !important;padding-bottom: 100px !important;}'),(6274,2106,'mkdf_page_content_top_padding_mobile','yes'),(6275,2106,'mkdf_title_area_height_meta','250'),(6276,2106,'mkdf_title_area_background_image_behavior_meta','parallax'),(6277,2106,'mkdf_menu_area_in_grid_meta','yes'),(6278,2106,'_dp_original','1580'),(6279,2106,'mkdf_page_content_top_padding','0'),(6280,2329,'_wpb_shortcodes_custom_css','.vc_custom_1497856003172{padding-top: 100px !important;padding-bottom: 100px !important;}'),(6282,2329,'_wpb_shortcodes_custom_css','.vc_custom_1497856003172{padding-top: 100px !important;padding-bottom: 100px !important;}'),(6284,2329,'_wp_page_template','full-width.php'),(6286,2329,'_wpb_vc_js_status','true'),(6287,2329,'mkdf_page_content_behind_header_meta','no'),(6288,2329,'mkdf_boxed_background_image_attachment_meta','fixed'),(6289,2329,'mkdf_disable_header_widget_logo_area_meta','no'),(6290,2329,'mkdf_disable_header_widget_menu_area_meta','no'),(6291,2329,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(6292,2329,'mkdf_title_area_background_color_meta','#ffffff'),(6293,2329,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(6294,2329,'mkdf_disable_footer_meta','no'),(6295,2329,'_wpb_shortcodes_custom_css','.vc_custom_1497856003172{padding-top: 100px !important;padding-bottom: 100px !important;}'),(6296,2329,'mkdf_page_content_top_padding_mobile','yes'),(6297,2329,'mkdf_title_area_height_meta','250'),(6298,2329,'mkdf_title_area_background_image_behavior_meta','parallax'),(6299,2329,'mkdf_menu_area_in_grid_meta','yes'),(6300,2329,'_dp_original','1580'),(6301,2329,'mkdf_page_content_top_padding','0'),(6302,2329,'show_footer_custom_widget_areas','no'),(6329,2608,'_wpb_shortcodes_custom_css','.vc_custom_1496930187304{padding-bottom: 100px !important;}'),(6330,2608,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6331,2608,'_wpb_shortcodes_custom_css','.vc_custom_1496930187304{padding-bottom: 100px !important;}'),(6332,2608,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6333,2608,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6334,2608,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6335,2608,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6336,2608,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6337,2608,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6338,2608,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6339,2608,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6340,2608,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6341,2608,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6342,2608,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6343,2608,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6344,2608,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6345,2608,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6346,2608,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6347,2608,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6348,2608,'_wpb_shortcodes_custom_css','.vc_custom_1496930187304{padding-bottom: 100px !important;}'),(6349,2608,'_wpb_shortcodes_custom_css','.vc_custom_1496930187304{padding-bottom: 100px !important;}'),(6350,2608,'_wpb_shortcodes_custom_css','.vc_custom_1496930187304{padding-bottom: 100px !important;}'),(6351,2608,'_wpb_shortcodes_custom_css','.vc_custom_1496930187304{padding-bottom: 100px !important;}'),(6352,2608,'_wpb_shortcodes_custom_css','.vc_custom_1496930187304{padding-bottom: 100px !important;}'),(6353,2608,'_wpb_shortcodes_custom_css','.vc_custom_1496930187304{padding-bottom: 100px !important;}'),(6354,2608,'_wpb_shortcodes_custom_css','.vc_custom_1496930187304{padding-bottom: 100px !important;}'),(6355,2608,'_wpb_shortcodes_custom_css','.vc_custom_1496930187304{padding-bottom: 100px !important;}'),(6356,2608,'_wpb_shortcodes_custom_css','.vc_custom_1496930187304{padding-bottom: 100px !important;}'),(6357,2608,'_wpb_shortcodes_custom_css','.vc_custom_1496930187304{padding-bottom: 100px !important;}'),(6358,2608,'_wpb_shortcodes_custom_css','.vc_custom_1496930187304{padding-bottom: 100px !important;}'),(6359,2608,'_wpb_shortcodes_custom_css','.vc_custom_1496930187304{padding-bottom: 100px !important;}'),(6360,2608,'_wp_page_template','default'),(6361,2608,'slide_template','default'),(6362,2608,'_wpb_vc_js_status','true'),(6363,2608,'mkdf_page_content_behind_header_meta','no'),(6364,2608,'mkdf_boxed_background_image_attachment_meta','fixed'),(6365,2608,'mkdf_disable_header_widget_logo_area_meta','no'),(6366,2608,'mkdf_disable_header_widget_menu_area_meta','no'),(6367,2608,'mkdf_disable_footer_meta','no'),(6368,2608,'mkdf_menu_area_in_grid_meta','yes'),(6369,2608,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(6370,2608,'mkdf_sidebar_layout_meta','sidebar-25-left'),(6371,2608,'mkdf_custom_sidebar_area_meta','elements-sidebar'),(6372,2608,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(6373,2608,'mkdf_title_area_background_image_behavior_meta','parallax'),(6374,2608,'mkdf_page_content_top_padding','87'),(6375,2608,'mkdf_header_type_meta','header-standard'),(6376,2608,'mkdf_top_bar_meta','yes'),(6377,2608,'mkdf_top_bar_in_grid_meta','yes'),(6378,2608,'mkdf_top_bar_border_meta','yes'),(6379,2608,'mkdf_top_bar_border_color_meta','#ebebeb'),(6380,2608,'mkdf_page_background_color_meta','#ffffff'),(6381,2608,'_dp_original','927'),(6382,2608,'show_footer_custom_widget_areas','no'),(6383,2621,'_wpb_shortcodes_custom_css','.vc_custom_1496932242511{margin-top: -24px !important;padding-bottom: 35px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496932413550{padding-bottom: 70px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(6384,2621,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6385,2621,'_wpb_shortcodes_custom_css','.vc_custom_1496932242511{margin-top: -24px !important;padding-bottom: 35px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496932413550{padding-bottom: 70px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(6386,2621,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6387,2621,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6388,2621,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6389,2621,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6390,2621,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6391,2621,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6392,2621,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6393,2621,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6394,2621,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6395,2621,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6396,2621,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6397,2621,'_wpb_shortcodes_custom_css','.vc_custom_1496932242511{margin-top: -24px !important;padding-bottom: 35px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496932413550{padding-bottom: 70px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(6398,2621,'_wpb_shortcodes_custom_css','.vc_custom_1496932242511{margin-top: -24px !important;padding-bottom: 35px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496932413550{padding-bottom: 70px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(6399,2621,'_wpb_shortcodes_custom_css','.vc_custom_1496932242511{margin-top: -24px !important;padding-bottom: 35px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496932413550{padding-bottom: 70px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(6400,2621,'_wpb_shortcodes_custom_css','.vc_custom_1496932242511{margin-top: -24px !important;padding-bottom: 35px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496932413550{padding-bottom: 70px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(6401,2621,'_wpb_shortcodes_custom_css','.vc_custom_1496932242511{margin-top: -24px !important;padding-bottom: 35px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496932413550{padding-bottom: 70px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(6402,2621,'_wpb_shortcodes_custom_css','.vc_custom_1496932242511{margin-top: -24px !important;padding-bottom: 35px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496932413550{padding-bottom: 70px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(6403,2621,'_wpb_shortcodes_custom_css','.vc_custom_1496932242511{margin-top: -24px !important;padding-bottom: 35px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496932413550{padding-bottom: 70px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(6404,2621,'_wp_page_template','default'),(6405,2621,'slide_template','default'),(6406,2621,'_wpb_vc_js_status','true'),(6407,2621,'mkdf_page_content_behind_header_meta','no'),(6408,2621,'mkdf_boxed_background_image_attachment_meta','fixed'),(6409,2621,'mkdf_disable_header_widget_logo_area_meta','no'),(6410,2621,'mkdf_disable_header_widget_menu_area_meta','no'),(6411,2621,'mkdf_disable_footer_meta','no'),(6412,2621,'mkdf_menu_area_in_grid_meta','yes'),(6413,2621,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(6414,2621,'mkdf_sidebar_layout_meta','sidebar-25-left'),(6415,2621,'mkdf_custom_sidebar_area_meta','elements-sidebar'),(6416,2621,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(6417,2621,'mkdf_title_area_background_image_behavior_meta','parallax'),(6418,2621,'mkdf_page_content_top_padding','87'),(6419,2621,'mkdf_header_type_meta','header-standard'),(6420,2621,'mkdf_top_bar_meta','yes'),(6421,2621,'mkdf_top_bar_in_grid_meta','yes'),(6422,2621,'mkdf_top_bar_border_meta','yes'),(6423,2621,'mkdf_top_bar_border_color_meta','#ebebeb'),(6424,2621,'mkdf_page_background_color_meta','#ffffff'),(6425,2621,'_dp_original','1092'),(6426,2641,'_wpb_shortcodes_custom_css','.vc_custom_1496933674909{margin-top: -24px !important;padding-bottom: 98px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(6427,2641,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6428,2641,'_wpb_shortcodes_custom_css','.vc_custom_1496933674909{margin-top: -24px !important;padding-bottom: 98px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(6429,2641,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6430,2641,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6431,2641,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6432,2641,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6433,2641,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6434,2641,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6435,2641,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6436,2641,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6437,2641,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6438,2641,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6439,2641,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6440,2641,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6441,2641,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6442,2641,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6443,2641,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6444,2641,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6445,2641,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6446,2641,'_wpb_shortcodes_custom_css','.vc_custom_1496933674909{margin-top: -24px !important;padding-bottom: 98px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(6447,2641,'_wpb_shortcodes_custom_css','.vc_custom_1496933674909{margin-top: -24px !important;padding-bottom: 98px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(6448,2641,'_wpb_shortcodes_custom_css','.vc_custom_1496933674909{margin-top: -24px !important;padding-bottom: 98px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(6449,2641,'_wpb_shortcodes_custom_css','.vc_custom_1496933674909{margin-top: -24px !important;padding-bottom: 98px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(6450,2641,'_wpb_shortcodes_custom_css','.vc_custom_1496933674909{margin-top: -24px !important;padding-bottom: 98px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(6451,2641,'_wpb_shortcodes_custom_css','.vc_custom_1496933674909{margin-top: -24px !important;padding-bottom: 98px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(6452,2641,'_wpb_shortcodes_custom_css','.vc_custom_1496933674909{margin-top: -24px !important;padding-bottom: 98px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(6453,2641,'_wpb_shortcodes_custom_css','.vc_custom_1496933674909{margin-top: -24px !important;padding-bottom: 98px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(6454,2641,'_wpb_shortcodes_custom_css','.vc_custom_1496933674909{margin-top: -24px !important;padding-bottom: 98px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(6455,2641,'_wpb_shortcodes_custom_css','.vc_custom_1496933674909{margin-top: -24px !important;padding-bottom: 98px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(6456,2641,'_wpb_shortcodes_custom_css','.vc_custom_1496933674909{margin-top: -24px !important;padding-bottom: 98px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(6457,2641,'_wpb_shortcodes_custom_css','.vc_custom_1496933674909{margin-top: -24px !important;padding-bottom: 98px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(6458,2641,'_wpb_shortcodes_custom_css','.vc_custom_1496933674909{margin-top: -24px !important;padding-bottom: 98px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(6459,2641,'_wp_page_template','default'),(6460,2641,'slide_template','default'),(6461,2641,'_wpb_vc_js_status','true'),(6462,2641,'mkdf_page_content_behind_header_meta','no'),(6463,2641,'mkdf_boxed_background_image_attachment_meta','fixed'),(6464,2641,'mkdf_disable_header_widget_logo_area_meta','no'),(6465,2641,'mkdf_disable_header_widget_menu_area_meta','no'),(6466,2641,'mkdf_disable_footer_meta','no'),(6467,2641,'mkdf_menu_area_in_grid_meta','yes'),(6468,2641,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(6469,2641,'mkdf_sidebar_layout_meta','sidebar-25-left'),(6470,2641,'mkdf_custom_sidebar_area_meta','elements-sidebar'),(6471,2641,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(6472,2641,'mkdf_title_area_background_image_behavior_meta','parallax'),(6473,2641,'mkdf_page_content_top_padding','87'),(6474,2641,'mkdf_header_type_meta','header-standard'),(6475,2641,'mkdf_top_bar_meta','yes'),(6476,2641,'mkdf_top_bar_in_grid_meta','yes'),(6477,2641,'mkdf_top_bar_border_meta','yes'),(6478,2641,'mkdf_top_bar_border_color_meta','#ebebeb'),(6479,2641,'mkdf_page_background_color_meta','#ffffff'),(6480,2641,'_dp_original','1074'),(6481,2641,'show_footer_custom_widget_areas','no'),(6482,2654,'_wpb_shortcodes_custom_css','.vc_custom_1496934037524{margin-top: -24px !important;padding-bottom: 26px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496934059875{padding-bottom: 62px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(6483,2654,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6484,2654,'_wpb_shortcodes_custom_css','.vc_custom_1496934037524{margin-top: -24px !important;padding-bottom: 26px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496934059875{padding-bottom: 62px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(6485,2654,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6486,2654,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6487,2654,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6488,2654,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6489,2654,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6490,2654,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6491,2654,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6492,2654,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6493,2654,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6494,2654,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6495,2654,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6496,2654,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6497,2654,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6498,2654,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6499,2654,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6500,2654,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6501,2654,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6502,2654,'_wpb_shortcodes_custom_css','.vc_custom_1496934037524{margin-top: -24px !important;padding-bottom: 26px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496934059875{padding-bottom: 62px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(6503,2654,'_wpb_shortcodes_custom_css','.vc_custom_1496934037524{margin-top: -24px !important;padding-bottom: 26px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496934059875{padding-bottom: 62px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(6504,2654,'_wpb_shortcodes_custom_css','.vc_custom_1496934037524{margin-top: -24px !important;padding-bottom: 26px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496934059875{padding-bottom: 62px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(6505,2654,'_wpb_shortcodes_custom_css','.vc_custom_1496934037524{margin-top: -24px !important;padding-bottom: 26px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496934059875{padding-bottom: 62px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(6506,2654,'_wpb_shortcodes_custom_css','.vc_custom_1496934037524{margin-top: -24px !important;padding-bottom: 26px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496934059875{padding-bottom: 62px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(6507,2654,'_wpb_shortcodes_custom_css','.vc_custom_1496934037524{margin-top: -24px !important;padding-bottom: 26px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496934059875{padding-bottom: 62px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(6508,2654,'_wpb_shortcodes_custom_css','.vc_custom_1496934037524{margin-top: -24px !important;padding-bottom: 26px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496934059875{padding-bottom: 62px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(6509,2654,'_wpb_shortcodes_custom_css','.vc_custom_1496934037524{margin-top: -24px !important;padding-bottom: 26px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496934059875{padding-bottom: 62px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(6510,2654,'_wpb_shortcodes_custom_css','.vc_custom_1496934037524{margin-top: -24px !important;padding-bottom: 26px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496934059875{padding-bottom: 62px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(6511,2654,'_wpb_shortcodes_custom_css','.vc_custom_1496934037524{margin-top: -24px !important;padding-bottom: 26px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496934059875{padding-bottom: 62px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(6512,2654,'_wpb_shortcodes_custom_css','.vc_custom_1496934037524{margin-top: -24px !important;padding-bottom: 26px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496934059875{padding-bottom: 62px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(6513,2654,'_wpb_shortcodes_custom_css','.vc_custom_1496934037524{margin-top: -24px !important;padding-bottom: 26px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496934059875{padding-bottom: 62px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(6514,2654,'_wpb_shortcodes_custom_css','.vc_custom_1496934037524{margin-top: -24px !important;padding-bottom: 26px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1496934059875{padding-bottom: 62px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(6515,2654,'_wp_page_template','default'),(6516,2654,'slide_template','default'),(6517,2654,'_wpb_vc_js_status','true'),(6518,2654,'mkdf_page_content_behind_header_meta','no'),(6519,2654,'mkdf_boxed_background_image_attachment_meta','fixed'),(6520,2654,'mkdf_disable_header_widget_logo_area_meta','no'),(6521,2654,'mkdf_disable_header_widget_menu_area_meta','no'),(6522,2654,'mkdf_disable_footer_meta','no'),(6523,2654,'mkdf_menu_area_in_grid_meta','yes'),(6524,2654,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(6525,2654,'mkdf_sidebar_layout_meta','sidebar-25-left'),(6526,2654,'mkdf_custom_sidebar_area_meta','elements-sidebar'),(6527,2654,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(6528,2654,'mkdf_title_area_background_image_behavior_meta','parallax'),(6529,2654,'mkdf_page_content_top_padding','87'),(6530,2654,'mkdf_header_type_meta','header-standard'),(6531,2654,'mkdf_top_bar_meta','yes'),(6532,2654,'mkdf_top_bar_in_grid_meta','yes'),(6533,2654,'mkdf_top_bar_border_meta','yes'),(6534,2654,'mkdf_top_bar_border_color_meta','#ebebeb'),(6535,2654,'mkdf_page_background_color_meta','#ffffff'),(6536,2654,'_dp_original','1074'),(6537,2654,'show_footer_custom_widget_areas','no'),(6540,741,'_wpb_shortcodes_custom_css','.vc_custom_1497863779630{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497863787762{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497863796900{padding-top: 38px !important;}'),(6541,741,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6542,741,'slide_template','default'),(6543,741,'_wpb_vc_js_status','true'),(6544,741,'mkdf_page_content_behind_header_meta','no'),(6545,741,'mkdf_boxed_background_image_attachment_meta','fixed'),(6546,741,'mkdf_blog_single_sidebar_layout_meta','sidebar-25-right'),(6547,741,'mkdf_blog_masonry_gallery_fixed_dimensions_meta','default'),(6548,741,'mkdf_blog_masonry_gallery_original_dimensions_meta','default'),(6549,741,'mkdf_standard_post_full_width_featured_image_meta','yes'),(6550,741,'mkdf_show_title_area_blog_meta','no'),(6551,741,'mkdf_video_type_meta','social_networks'),(6552,741,'mkdf_audio_type_meta','social_networks'),(6553,741,'mkdf_disable_header_widget_logo_area_meta','no'),(6554,741,'mkdf_disable_header_widget_menu_area_meta','no'),(6555,741,'mkdf_disable_footer_meta','no'),(6556,741,'_mkd-like','3'),(6557,741,'mkdf_page_background_color_meta','#ffffff'),(6558,741,'_wpb_shortcodes_custom_css','.vc_custom_1497863779630{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497863787762{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497863796900{padding-top: 38px !important;}'),(6559,741,'mkdf_show_title_area_meta','no'),(6560,741,'mkdf_menu_area_in_grid_meta','yes'),(6561,741,'mkdf_page_content_top_padding_mobile','yes'),(6562,741,'mkdf_page_comments_meta','yes'),(6563,741,'_thumbnail_id','1156'),(6564,741,'mkdf_page_content_top_padding','83'),(6565,741,'show_footer_custom_widget_areas','no'),(6568,1163,'_wpb_shortcodes_custom_css','.vc_custom_1497863664387{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497863671627{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497863681043{padding-top: 38px !important;}'),(6569,1163,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6570,1163,'_thumbnail_id','1157'),(6571,1163,'slide_template','default'),(6572,1163,'_wpb_vc_js_status','true'),(6573,1163,'_wpb_shortcodes_custom_css','.vc_custom_1497863664387{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497863671627{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497863681043{padding-top: 38px !important;}'),(6574,1163,'mkdf_page_content_behind_header_meta','no'),(6575,1163,'mkdf_page_content_top_padding_mobile','yes'),(6576,1163,'mkdf_boxed_background_image_attachment_meta','fixed'),(6577,1163,'mkdf_blog_single_sidebar_layout_meta','sidebar-25-right'),(6578,1163,'mkdf_blog_masonry_gallery_fixed_dimensions_meta','default'),(6579,1163,'mkdf_blog_masonry_gallery_original_dimensions_meta','default'),(6580,1163,'mkdf_standard_post_full_width_featured_image_meta','yes'),(6581,1163,'mkdf_show_title_area_blog_meta','no'),(6582,1163,'mkdf_video_type_meta','social_networks'),(6583,1163,'mkdf_audio_type_meta','social_networks'),(6584,1163,'mkdf_disable_header_widget_logo_area_meta','no'),(6585,1163,'mkdf_disable_header_widget_menu_area_meta','no'),(6586,1163,'mkdf_show_title_area_meta','no'),(6587,1163,'mkdf_disable_footer_meta','no'),(6588,1163,'_mkd-like','0'),(6589,1163,'mkdf_page_background_color_meta','#ffffff'),(6590,1163,'mkdf_page_content_top_padding','83'),(6591,1163,'show_footer_custom_widget_areas','no'),(6594,1189,'_wpb_shortcodes_custom_css','.vc_custom_1496156484829{padding-top: 50px !important;}.vc_custom_1497863619829{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497863627316{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497863634836{padding-top: 38px !important;}'),(6595,1189,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6596,1189,'slide_template','default'),(6597,1189,'_wpb_vc_js_status','true'),(6598,1189,'_wpb_shortcodes_custom_css','.vc_custom_1496156484829{padding-top: 50px !important;}.vc_custom_1497863619829{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497863627316{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497863634836{padding-top: 38px !important;}'),(6599,1189,'mkdf_page_content_behind_header_meta','no'),(6600,1189,'mkdf_page_content_top_padding_mobile','yes'),(6601,1189,'mkdf_page_background_color_meta','#ffffff'),(6602,1189,'mkdf_boxed_background_image_attachment_meta','fixed'),(6603,1189,'mkdf_blog_single_sidebar_layout_meta','sidebar-25-right'),(6604,1189,'mkdf_blog_masonry_gallery_fixed_dimensions_meta','default'),(6605,1189,'mkdf_blog_masonry_gallery_original_dimensions_meta','default'),(6606,1189,'mkdf_standard_post_full_width_featured_image_meta','yes'),(6607,1189,'mkdf_show_title_area_blog_meta','no'),(6608,1189,'mkdf_video_type_meta','social_networks'),(6609,1189,'mkdf_audio_type_meta','social_networks'),(6610,1189,'mkdf_post_link_link_meta','http://themeforest.net/user/mikado-themes'),(6611,1189,'mkdf_disable_header_widget_logo_area_meta','no'),(6612,1189,'mkdf_disable_header_widget_menu_area_meta','no'),(6613,1189,'mkdf_show_title_area_meta','no'),(6614,1189,'mkdf_disable_footer_meta','no'),(6615,1189,'_mkd-like','0'),(6616,1189,'_wp_old_slug','class-that-fit-your-busy-life'),(6617,1189,'mkdf_page_content_top_padding','83'),(6618,1189,'show_footer_custom_widget_areas','no'),(6619,1189,'_thumbnail_id','1345'),(6622,1199,'_wpb_shortcodes_custom_css','.vc_custom_1497863577677{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497863586997{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497863594333{padding-top: 38px !important;}'),(6623,1199,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6624,1199,'_thumbnail_id','1158'),(6625,1199,'slide_template','default'),(6626,1199,'_wpb_vc_js_status','true'),(6627,1199,'_wpb_shortcodes_custom_css','.vc_custom_1497863577677{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497863586997{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497863594333{padding-top: 38px !important;}'),(6628,1199,'mkdf_page_content_behind_header_meta','no'),(6629,1199,'mkdf_page_content_top_padding_mobile','yes'),(6630,1199,'mkdf_page_background_color_meta','#ffffff'),(6631,1199,'mkdf_boxed_background_image_attachment_meta','fixed'),(6632,1199,'mkdf_blog_single_sidebar_layout_meta','sidebar-25-right'),(6633,1199,'mkdf_blog_masonry_gallery_fixed_dimensions_meta','default'),(6634,1199,'mkdf_blog_masonry_gallery_original_dimensions_meta','default'),(6635,1199,'mkdf_standard_post_full_width_featured_image_meta','yes'),(6636,1199,'mkdf_show_title_area_blog_meta','no'),(6637,1199,'mkdf_video_type_meta','social_networks'),(6638,1199,'mkdf_audio_type_meta','social_networks'),(6639,1199,'mkdf_disable_header_widget_logo_area_meta','no'),(6640,1199,'mkdf_disable_header_widget_menu_area_meta','no'),(6641,1199,'mkdf_show_title_area_meta','no'),(6642,1199,'mkdf_disable_footer_meta','no'),(6643,1199,'_mkd-like','0'),(6644,1199,'mkdf_page_content_top_padding','83'),(6645,1199,'show_footer_custom_widget_areas','no'),(6648,1203,'_wpb_shortcodes_custom_css','.vc_custom_1496157120523{padding-top: 50px !important;}.vc_custom_1497863531325{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497863540172{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497863547523{padding-top: 38px !important;}'),(6649,1203,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6650,1203,'slide_template','default'),(6651,1203,'_wpb_vc_js_status','true'),(6652,1203,'_wpb_shortcodes_custom_css','.vc_custom_1496157120523{padding-top: 50px !important;}.vc_custom_1497863531325{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497863540172{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497863547523{padding-top: 38px !important;}'),(6653,1203,'mkdf_page_content_behind_header_meta','no'),(6654,1203,'mkdf_page_content_top_padding_mobile','yes'),(6655,1203,'mkdf_page_background_color_meta','#ffffff'),(6656,1203,'mkdf_boxed_background_image_attachment_meta','fixed'),(6657,1203,'mkdf_blog_single_sidebar_layout_meta','sidebar-25-right'),(6658,1203,'mkdf_blog_masonry_gallery_fixed_dimensions_meta','default'),(6659,1203,'mkdf_blog_masonry_gallery_original_dimensions_meta','default'),(6660,1203,'mkdf_standard_post_full_width_featured_image_meta','yes'),(6661,1203,'mkdf_show_title_area_blog_meta','no'),(6662,1203,'mkdf_video_type_meta','social_networks'),(6663,1203,'mkdf_audio_type_meta','social_networks'),(6664,1203,'mkdf_post_quote_text_meta','Class That Fit Your Busy Life.'),(6665,1203,'mkdf_post_quote_author_meta',' Judith Cooper'),(6666,1203,'mkdf_disable_header_widget_logo_area_meta','no'),(6667,1203,'mkdf_disable_header_widget_menu_area_meta','no'),(6668,1203,'mkdf_show_title_area_meta','no'),(6669,1203,'mkdf_disable_footer_meta','no'),(6670,1203,'_mkd-like','0'),(6671,1203,'mkdf_page_content_top_padding','83'),(6672,1203,'_thumbnail_id','1514'),(6673,1203,'show_footer_custom_widget_areas','no'),(6676,1246,'_wpb_shortcodes_custom_css','.vc_custom_1497863474700{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497863485859{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497863494450{padding-top: 38px !important;}'),(6677,1246,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6678,1246,'_thumbnail_id','1160'),(6679,1246,'slide_template','default'),(6680,1246,'_wpb_vc_js_status','true'),(6681,1246,'_wpb_shortcodes_custom_css','.vc_custom_1497863474700{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497863485859{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497863494450{padding-top: 38px !important;}'),(6682,1246,'mkdf_page_content_behind_header_meta','no'),(6683,1246,'mkdf_page_content_top_padding_mobile','yes'),(6684,1246,'mkdf_page_background_color_meta','#ffffff'),(6685,1246,'mkdf_boxed_background_image_attachment_meta','fixed'),(6686,1246,'mkdf_blog_single_sidebar_layout_meta','sidebar-25-right'),(6687,1246,'mkdf_blog_masonry_gallery_fixed_dimensions_meta','default'),(6688,1246,'mkdf_blog_masonry_gallery_original_dimensions_meta','default'),(6689,1246,'mkdf_standard_post_full_width_featured_image_meta','yes'),(6690,1246,'mkdf_show_title_area_blog_meta','no'),(6691,1246,'mkdf_video_type_meta','social_networks'),(6692,1246,'mkdf_audio_type_meta','social_networks'),(6693,1246,'mkdf_disable_header_widget_logo_area_meta','no'),(6694,1246,'mkdf_disable_header_widget_menu_area_meta','no'),(6695,1246,'mkdf_show_title_area_meta','no'),(6696,1246,'mkdf_disable_footer_meta','no'),(6697,1246,'_mkd-like','0'),(6698,1246,'mkdf_page_content_top_padding','83'),(6699,1246,'show_footer_custom_widget_areas','no'),(6702,1495,'_wpb_shortcodes_custom_css','.vc_custom_1497863370420{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497863385028{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497863394004{padding-top: 38px !important;}'),(6703,1495,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6704,1495,'_thumbnail_id','1490'),(6705,1495,'slide_template','default'),(6706,1495,'_wpb_vc_js_status','true'),(6707,1495,'_wpb_shortcodes_custom_css','.vc_custom_1497863370420{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497863385028{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497863394004{padding-top: 38px !important;}'),(6708,1495,'mkdf_page_content_behind_header_meta','no'),(6709,1495,'mkdf_page_content_top_padding_mobile','yes'),(6710,1495,'mkdf_page_background_color_meta','#ffffff'),(6711,1495,'mkdf_boxed_background_image_attachment_meta','fixed'),(6712,1495,'mkdf_blog_single_sidebar_layout_meta','sidebar-25-right'),(6713,1495,'mkdf_blog_masonry_gallery_fixed_dimensions_meta','default'),(6714,1495,'mkdf_blog_masonry_gallery_original_dimensions_meta','default'),(6715,1495,'mkdf_standard_post_full_width_featured_image_meta','yes'),(6716,1495,'mkdf_show_title_area_blog_meta','no'),(6717,1495,'mkdf_video_type_meta','social_networks'),(6718,1495,'mkdf_audio_type_meta','social_networks'),(6719,1495,'mkdf_disable_header_widget_logo_area_meta','no'),(6720,1495,'mkdf_disable_header_widget_menu_area_meta','no'),(6721,1495,'mkdf_menu_area_in_grid_meta','yes'),(6722,1495,'mkdf_disable_footer_meta','no'),(6723,1495,'_mkd-like','0'),(6724,1495,'mkdf_page_content_top_padding','83'),(6725,1495,'show_footer_custom_widget_areas','no'),(6728,1536,'_wpb_shortcodes_custom_css','.vc_custom_1497863317965{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497863331444{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497863341341{padding-top: 38px !important;}'),(6729,1536,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6730,1536,'_thumbnail_id','1515'),(6731,1536,'slide_template','default'),(6732,1536,'_wpb_vc_js_status','true'),(6733,1536,'_wpb_shortcodes_custom_css','.vc_custom_1497863317965{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497863331444{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497863341341{padding-top: 38px !important;}'),(6734,1536,'mkdf_page_content_behind_header_meta','no'),(6735,1536,'mkdf_page_content_top_padding_mobile','yes'),(6736,1536,'mkdf_page_background_color_meta','#ffffff'),(6737,1536,'mkdf_boxed_background_image_attachment_meta','fixed'),(6738,1536,'mkdf_blog_single_sidebar_layout_meta','sidebar-25-right'),(6739,1536,'mkdf_blog_masonry_gallery_fixed_dimensions_meta','default'),(6740,1536,'mkdf_blog_masonry_gallery_original_dimensions_meta','default'),(6741,1536,'mkdf_standard_post_full_width_featured_image_meta','yes'),(6742,1536,'mkdf_show_title_area_blog_meta','no'),(6743,1536,'mkdf_post_gallery_images_meta','1513,1514'),(6744,1536,'mkdf_video_type_meta','social_networks'),(6745,1536,'mkdf_audio_type_meta','social_networks'),(6746,1536,'mkdf_disable_header_widget_logo_area_meta','no'),(6747,1536,'mkdf_disable_header_widget_menu_area_meta','no'),(6748,1536,'mkdf_menu_area_in_grid_meta','yes'),(6749,1536,'mkdf_disable_footer_meta','no'),(6750,1536,'_mkd-like','0'),(6751,1536,'mkdf_page_content_top_padding','83'),(6752,1536,'show_footer_custom_widget_areas','no'),(6755,1544,'_wpb_shortcodes_custom_css','.vc_custom_1497863263164{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497863273463{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497863283436{padding-top: 38px !important;}'),(6756,1544,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6757,1544,'_thumbnail_id','1530'),(6758,1544,'slide_template','default'),(6759,1544,'_wpb_vc_js_status','true'),(6760,1544,'_wpb_shortcodes_custom_css','.vc_custom_1497863263164{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497863273463{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497863283436{padding-top: 38px !important;}'),(6761,1544,'mkdf_page_content_behind_header_meta','no'),(6762,1544,'mkdf_page_content_top_padding_mobile','yes'),(6763,1544,'mkdf_page_background_color_meta','#ffffff'),(6764,1544,'mkdf_boxed_background_image_attachment_meta','fixed'),(6765,1544,'mkdf_blog_single_sidebar_layout_meta','sidebar-25-right'),(6766,1544,'mkdf_blog_masonry_gallery_fixed_dimensions_meta','default'),(6767,1544,'mkdf_blog_masonry_gallery_original_dimensions_meta','default'),(6768,1544,'mkdf_standard_post_full_width_featured_image_meta','yes'),(6769,1544,'mkdf_show_title_area_blog_meta','no'),(6770,1544,'mkdf_video_type_meta','social_networks'),(6771,1544,'mkdf_audio_type_meta','self'),(6772,1544,'mkdf_post_audio_custom_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/06/b-audio-everytings-nice.mp3'),(6773,1544,'mkdf_disable_header_widget_logo_area_meta','no'),(6774,1544,'mkdf_disable_header_widget_menu_area_meta','no'),(6775,1544,'mkdf_menu_area_in_grid_meta','yes'),(6776,1544,'mkdf_disable_footer_meta','no'),(6777,1544,'_mkd-like','0'),(6778,1544,'mkdf_page_content_top_padding','83'),(6779,1544,'show_footer_custom_widget_areas','no'),(6780,2697,'_wpb_shortcodes_custom_css','.vc_custom_1496998840597{margin-top: -30px !important;padding-bottom: 53px !important;}'),(6781,2697,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6782,2697,'_wpb_shortcodes_custom_css','.vc_custom_1496998840597{margin-top: -30px !important;padding-bottom: 53px !important;}'),(6783,2697,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6784,2697,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6785,2697,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6786,2697,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6787,2697,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6788,2697,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6789,2697,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6790,2697,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6791,2697,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6792,2697,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6793,2697,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6794,2697,'_wpb_shortcodes_custom_css','.vc_custom_1496998840597{margin-top: -30px !important;padding-bottom: 53px !important;}'),(6795,2697,'_wpb_shortcodes_custom_css','.vc_custom_1496998840597{margin-top: -30px !important;padding-bottom: 53px !important;}'),(6796,2697,'_wpb_shortcodes_custom_css','.vc_custom_1496998840597{margin-top: -30px !important;padding-bottom: 53px !important;}'),(6797,2697,'_wpb_shortcodes_custom_css','.vc_custom_1496998840597{margin-top: -30px !important;padding-bottom: 53px !important;}'),(6798,2697,'_wpb_shortcodes_custom_css','.vc_custom_1496998840597{margin-top: -30px !important;padding-bottom: 53px !important;}'),(6799,2697,'_wpb_shortcodes_custom_css','.vc_custom_1496998840597{margin-top: -30px !important;padding-bottom: 53px !important;}'),(6800,2697,'_wpb_shortcodes_custom_css','.vc_custom_1496998840597{margin-top: -30px !important;padding-bottom: 53px !important;}'),(6801,2697,'_wp_page_template','default'),(6802,2697,'slide_template','default'),(6803,2697,'_wpb_vc_js_status','true'),(6804,2697,'mkdf_page_content_behind_header_meta','no'),(6805,2697,'mkdf_boxed_background_image_attachment_meta','fixed'),(6806,2697,'mkdf_disable_header_widget_logo_area_meta','no'),(6807,2697,'mkdf_disable_header_widget_menu_area_meta','no'),(6808,2697,'mkdf_disable_footer_meta','no'),(6809,2697,'mkdf_menu_area_in_grid_meta','yes'),(6810,2697,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(6811,2697,'mkdf_sidebar_layout_meta','sidebar-25-left'),(6812,2697,'mkdf_custom_sidebar_area_meta','elements-sidebar'),(6813,2697,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(6814,2697,'mkdf_title_area_background_image_behavior_meta','parallax'),(6815,2697,'mkdf_page_content_top_padding','100'),(6816,2697,'mkdf_header_type_meta','header-standard'),(6817,2697,'mkdf_top_bar_meta','yes'),(6818,2697,'mkdf_top_bar_in_grid_meta','yes'),(6819,2697,'mkdf_top_bar_border_meta','yes'),(6820,2697,'mkdf_top_bar_border_color_meta','#ebebeb'),(6821,2697,'mkdf_page_background_color_meta','#ffffff'),(6822,2697,'_dp_original','1119'),(6823,2710,'_wpb_shortcodes_custom_css','.vc_custom_1497426690692{margin-top: -30px !important;padding-bottom: 50px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497424865336{padding-bottom: 43px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497424600037{padding-bottom: 55px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497424322625{padding-bottom: 95px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(6824,2710,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6825,2710,'_wpb_shortcodes_custom_css','.vc_custom_1497426690692{margin-top: -30px !important;padding-bottom: 50px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497424865336{padding-bottom: 43px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497424600037{padding-bottom: 55px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497424322625{padding-bottom: 95px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(6826,2710,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6827,2710,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6828,2710,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6829,2710,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6830,2710,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6831,2710,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6832,2710,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6833,2710,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6834,2710,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6835,2710,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6836,2710,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6837,2710,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6838,2710,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6839,2710,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6840,2710,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6841,2710,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6842,2710,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6843,2710,'_wpb_shortcodes_custom_css','.vc_custom_1497426690692{margin-top: -30px !important;padding-bottom: 50px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497424865336{padding-bottom: 43px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497424600037{padding-bottom: 55px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497424322625{padding-bottom: 95px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(6844,2710,'_wpb_shortcodes_custom_css','.vc_custom_1497426690692{margin-top: -30px !important;padding-bottom: 50px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497424865336{padding-bottom: 43px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497424600037{padding-bottom: 55px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497424322625{padding-bottom: 95px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(6845,2710,'_wpb_shortcodes_custom_css','.vc_custom_1497426690692{margin-top: -30px !important;padding-bottom: 50px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497424865336{padding-bottom: 43px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497424600037{padding-bottom: 55px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497424322625{padding-bottom: 95px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(6846,2710,'_wpb_shortcodes_custom_css','.vc_custom_1497426690692{margin-top: -30px !important;padding-bottom: 50px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497424865336{padding-bottom: 43px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497424600037{padding-bottom: 55px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497424322625{padding-bottom: 95px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(6847,2710,'_wpb_shortcodes_custom_css','.vc_custom_1497426690692{margin-top: -30px !important;padding-bottom: 50px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497424865336{padding-bottom: 43px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497424600037{padding-bottom: 55px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497424322625{padding-bottom: 95px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(6848,2710,'_wpb_shortcodes_custom_css','.vc_custom_1497426690692{margin-top: -30px !important;padding-bottom: 50px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497424865336{padding-bottom: 43px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497424600037{padding-bottom: 55px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497424322625{padding-bottom: 95px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(6849,2710,'_wpb_shortcodes_custom_css','.vc_custom_1497426690692{margin-top: -30px !important;padding-bottom: 50px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497424865336{padding-bottom: 43px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497424600037{padding-bottom: 55px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497424322625{padding-bottom: 95px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(6850,2710,'_wpb_shortcodes_custom_css','.vc_custom_1497426690692{margin-top: -30px !important;padding-bottom: 50px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497424865336{padding-bottom: 43px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497424600037{padding-bottom: 55px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497424322625{padding-bottom: 95px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(6851,2710,'_wpb_shortcodes_custom_css','.vc_custom_1497426690692{margin-top: -30px !important;padding-bottom: 50px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497424865336{padding-bottom: 43px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497424600037{padding-bottom: 55px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497424322625{padding-bottom: 95px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(6852,2710,'_wpb_shortcodes_custom_css','.vc_custom_1497426690692{margin-top: -30px !important;padding-bottom: 50px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497424865336{padding-bottom: 43px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497424600037{padding-bottom: 55px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497424322625{padding-bottom: 95px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(6853,2710,'_wpb_shortcodes_custom_css','.vc_custom_1497426690692{margin-top: -30px !important;padding-bottom: 50px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497424865336{padding-bottom: 43px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497424600037{padding-bottom: 55px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497424322625{padding-bottom: 95px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(6854,2710,'_wpb_shortcodes_custom_css','.vc_custom_1497426690692{margin-top: -30px !important;padding-bottom: 50px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497424865336{padding-bottom: 43px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497424600037{padding-bottom: 55px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497424322625{padding-bottom: 95px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(6855,2710,'_wpb_shortcodes_custom_css','.vc_custom_1497426690692{margin-top: -30px !important;padding-bottom: 50px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497424865336{padding-bottom: 43px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497424600037{padding-bottom: 55px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1497424322625{padding-bottom: 95px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(6856,2710,'_wp_page_template','default'),(6857,2710,'slide_template','default'),(6858,2710,'_wpb_vc_js_status','true'),(6859,2710,'mkdf_page_content_behind_header_meta','no'),(6860,2710,'mkdf_boxed_background_image_attachment_meta','fixed'),(6861,2710,'mkdf_disable_header_widget_logo_area_meta','no'),(6862,2710,'mkdf_disable_header_widget_menu_area_meta','no'),(6863,2710,'mkdf_disable_footer_meta','no'),(6864,2710,'mkdf_menu_area_in_grid_meta','yes'),(6865,2710,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(6866,2710,'mkdf_sidebar_layout_meta','sidebar-25-left'),(6867,2710,'mkdf_custom_sidebar_area_meta','elements-sidebar'),(6868,2710,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(6869,2710,'mkdf_title_area_background_image_behavior_meta','parallax'),(6870,2710,'mkdf_page_content_top_padding','87'),(6871,2710,'mkdf_header_type_meta','header-standard'),(6872,2710,'mkdf_top_bar_meta','yes'),(6873,2710,'mkdf_top_bar_in_grid_meta','yes'),(6874,2710,'mkdf_top_bar_border_meta','yes'),(6875,2710,'mkdf_top_bar_border_color_meta','#ebebeb'),(6876,2710,'mkdf_page_background_color_meta','#ffffff'),(6877,2710,'_dp_original','999'),(6878,2710,'show_footer_custom_widget_areas','no'),(6879,2724,'_wpb_shortcodes_custom_css','.vc_custom_1496996541314{margin-top: -40px !important;padding-bottom: 30px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(6880,2724,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6881,2724,'_wpb_shortcodes_custom_css','.vc_custom_1496996541314{margin-top: -40px !important;padding-bottom: 30px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(6882,2724,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6883,2724,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6884,2724,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6885,2724,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6886,2724,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6887,2724,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6888,2724,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6889,2724,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6890,2724,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6891,2724,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6892,2724,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6893,2724,'_wpb_shortcodes_custom_css','.vc_custom_1496996541314{margin-top: -40px !important;padding-bottom: 30px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(6894,2724,'_wpb_shortcodes_custom_css','.vc_custom_1496996541314{margin-top: -40px !important;padding-bottom: 30px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(6895,2724,'_wpb_shortcodes_custom_css','.vc_custom_1496996541314{margin-top: -40px !important;padding-bottom: 30px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(6896,2724,'_wpb_shortcodes_custom_css','.vc_custom_1496996541314{margin-top: -40px !important;padding-bottom: 30px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(6897,2724,'_wpb_shortcodes_custom_css','.vc_custom_1496996541314{margin-top: -40px !important;padding-bottom: 30px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(6898,2724,'_wpb_shortcodes_custom_css','.vc_custom_1496996541314{margin-top: -40px !important;padding-bottom: 30px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(6899,2724,'_wpb_shortcodes_custom_css','.vc_custom_1496996541314{margin-top: -40px !important;padding-bottom: 30px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}'),(6900,2724,'_wp_page_template','default'),(6901,2724,'slide_template','default'),(6902,2724,'_wpb_vc_js_status','true'),(6903,2724,'mkdf_page_content_behind_header_meta','no'),(6904,2724,'mkdf_boxed_background_image_attachment_meta','fixed'),(6905,2724,'mkdf_disable_header_widget_logo_area_meta','no'),(6906,2724,'mkdf_disable_header_widget_menu_area_meta','no'),(6907,2724,'mkdf_disable_footer_meta','no'),(6908,2724,'mkdf_menu_area_in_grid_meta','yes'),(6909,2724,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(6910,2724,'mkdf_sidebar_layout_meta','sidebar-25-left'),(6911,2724,'mkdf_custom_sidebar_area_meta','elements-sidebar'),(6912,2724,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(6913,2724,'mkdf_title_area_background_image_behavior_meta','parallax'),(6914,2724,'mkdf_page_content_top_padding','87'),(6915,2724,'mkdf_header_type_meta','header-standard'),(6916,2724,'mkdf_top_bar_meta','yes'),(6917,2724,'mkdf_top_bar_in_grid_meta','yes'),(6918,2724,'mkdf_top_bar_border_meta','yes'),(6919,2724,'mkdf_top_bar_border_color_meta','#ebebeb'),(6920,2724,'mkdf_page_background_color_meta','#ffffff'),(6921,2724,'_dp_original','1119'),(6922,2928,'_wpb_shortcodes_custom_css','.vc_custom_1497969490738{padding-top: 60px !important;}.vc_custom_1497876832337{padding-top: 140px !important;padding-bottom: 35px !important;}.vc_custom_1497965833448{padding-top: 130px !important;padding-bottom: 30px !important;}.vc_custom_1497533625101{padding-top: 100px !important;padding-bottom: 100px !important;}.vc_custom_1497539007573{padding-top: 30px !important;padding-bottom: 130px !important;}'),(6923,2928,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6924,2928,'_wp_page_template','full-width.php'),(6925,2928,'slide_template','default'),(6926,2928,'_wpb_vc_js_status','true'),(6927,2928,'mkdf_page_content_behind_header_meta','no'),(6928,2928,'mkdf_page_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/06/landing-background-img.jpg'),(6929,2928,'mkdf_boxed_background_image_attachment_meta','fixed'),(6930,2928,'mkdf_disable_header_widget_logo_area_meta','no'),(6931,2928,'mkdf_disable_header_widget_menu_area_meta','no'),(6932,2928,'mkdf_disable_footer_meta','yes'),(6933,2928,'mkdf_menu_area_background_color_meta','#ffffff'),(6934,2928,'mkdf_menu_area_background_transparency_meta','0'),(6935,2928,'mkdf_show_title_area_meta','no'),(6936,2928,'mkdf_top_bar_meta','no'),(6937,2928,'mkdf_menu_area_in_grid_meta','no'),(6938,2928,'show_footer_custom_widget_areas','no'),(6939,2928,'_wpb_shortcodes_custom_css','.vc_custom_1497969490738{padding-top: 60px !important;}.vc_custom_1497876832337{padding-top: 140px !important;padding-bottom: 35px !important;}.vc_custom_1497965833448{padding-top: 130px !important;padding-bottom: 30px !important;}.vc_custom_1497533625101{padding-top: 100px !important;padding-bottom: 100px !important;}.vc_custom_1497539007573{padding-top: 30px !important;padding-bottom: 130px !important;}'),(6940,2928,'_wpb_post_custom_css','.page-id-2928 .custom-class h2.mkdf-custom-font-holder{\n margin: 0;\n}\n\n#mkdf-back-to-top {\n    display: none;\n}\n\n.mkdf-main-menu>ul {\n    display: none;\n}\n\n.mkdf-page-header .mkdf-vertical-align-containers {\n    padding: 0 35px;\n}\n\n\n@media only screen and (max-width: 769px) {\n.page-id-2928 .custom_class_parallax {\ndisplay: none!important;\n}\n}'),(6941,2928,'mkdf_custom_menu_area_sidebar_meta','landing-header'),(6942,2928,'mkdf_header_behaviour_meta','no-behavior'),(6943,2928,'mkdf_smooth_page_transitions_meta','yes'),(6944,2928,'mkdf_page_transition_preloader_meta','yes'),(6945,2928,'mkdf_smooth_pt_bgnd_color_meta','#f8fafc'),(6946,2928,'mkdf_smooth_pt_spinner_type_meta','pulse_circles'),(6947,2928,'mkdf_page_transition_fadeout_meta','yes'),(6948,3298,'_wpb_shortcodes_custom_css','.vc_custom_1497443596817{padding-bottom: 50px !important;}'),(6949,3298,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6950,3298,'_wp_page_template','default'),(6951,3298,'slide_template',''),(6952,3298,'_wpb_vc_js_status','true'),(6953,3298,'mkdf_page_content_behind_header_meta','no'),(6954,3298,'mkdf_boxed_background_image_attachment_meta','fixed'),(6955,3298,'mkdf_disable_header_widget_logo_area_meta','no'),(6956,3298,'mkdf_disable_header_widget_menu_area_meta','no'),(6957,3298,'mkdf_disable_footer_meta','no'),(6958,3298,'show_footer_custom_widget_areas','no'),(6959,3298,'_wpb_shortcodes_custom_css','.vc_custom_1497443596817{padding-bottom: 50px !important;}'),(6960,3305,'_wpb_shortcodes_custom_css','.vc_custom_1497443660488{padding-bottom: 50px !important;}'),(6961,3305,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6962,3305,'_wpb_shortcodes_custom_css','.vc_custom_1497443660488{padding-bottom: 50px !important;}'),(6963,3305,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6964,3305,'_wp_page_template','full-width.php'),(6965,3305,'slide_template',''),(6966,3305,'_wpb_vc_js_status','true'),(6967,3305,'mkdf_page_content_behind_header_meta','no'),(6968,3305,'mkdf_boxed_background_image_attachment_meta','fixed'),(6969,3305,'mkdf_disable_header_widget_logo_area_meta','no'),(6970,3305,'mkdf_disable_header_widget_menu_area_meta','no'),(6971,3305,'mkdf_disable_footer_meta','no'),(6972,3305,'show_footer_custom_widget_areas','no'),(6973,3305,'_wpb_shortcodes_custom_css','.vc_custom_1497443660488{padding-bottom: 50px !important;}'),(6974,3305,'_dp_original','3298'),(6975,3312,'_wpb_shortcodes_custom_css','.vc_custom_1497443596817{padding-bottom: 50px !important;}'),(6976,3312,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6977,3312,'_wpb_shortcodes_custom_css','.vc_custom_1497443596817{padding-bottom: 50px !important;}'),(6978,3312,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6979,3312,'_wp_page_template','default'),(6980,3312,'slide_template','default'),(6981,3312,'_wpb_vc_js_status','true'),(6982,3312,'mkdf_page_content_behind_header_meta','no'),(6983,3312,'mkdf_boxed_background_image_attachment_meta','fixed'),(6984,3312,'mkdf_disable_header_widget_logo_area_meta','no'),(6985,3312,'mkdf_disable_header_widget_menu_area_meta','no'),(6986,3312,'mkdf_disable_footer_meta','no'),(6987,3312,'show_footer_custom_widget_areas','no'),(6988,3312,'_wpb_shortcodes_custom_css','.vc_custom_1497443596817{padding-bottom: 50px !important;}'),(6989,3312,'_dp_original','3298'),(6990,3321,'_wpb_shortcodes_custom_css','.vc_custom_1497443660488{padding-bottom: 50px !important;}'),(6991,3321,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6992,3321,'_wpb_shortcodes_custom_css','.vc_custom_1497443660488{padding-bottom: 50px !important;}'),(6993,3321,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6994,3321,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6995,3321,'_wpb_shortcodes_custom_css','.vc_custom_1497443660488{padding-bottom: 50px !important;}'),(6996,3321,'_wpb_shortcodes_custom_css','.vc_custom_1497443660488{padding-bottom: 50px !important;}'),(6997,3321,'_wp_page_template','full-width.php'),(6998,3321,'slide_template','default'),(6999,3321,'_wpb_vc_js_status','true'),(7000,3321,'mkdf_page_content_behind_header_meta','no'),(7001,3321,'mkdf_boxed_background_image_attachment_meta','fixed'),(7002,3321,'mkdf_disable_header_widget_logo_area_meta','no'),(7003,3321,'mkdf_disable_header_widget_menu_area_meta','no'),(7004,3321,'mkdf_disable_footer_meta','no'),(7005,3321,'show_footer_custom_widget_areas','no'),(7006,3321,'_dp_original','3305'),(7007,3325,'_wpb_shortcodes_custom_css','.vc_custom_1497443596817{padding-bottom: 50px !important;}'),(7008,3325,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7009,3325,'_wpb_shortcodes_custom_css','.vc_custom_1497443596817{padding-bottom: 50px !important;}'),(7010,3325,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7011,3325,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7012,3325,'_wpb_shortcodes_custom_css','.vc_custom_1497443596817{padding-bottom: 50px !important;}'),(7013,3325,'_wpb_shortcodes_custom_css','.vc_custom_1497443596817{padding-bottom: 50px !important;}'),(7014,3325,'_wp_page_template','default'),(7015,3325,'slide_template','default'),(7016,3325,'_wpb_vc_js_status','true'),(7017,3325,'mkdf_page_content_behind_header_meta','no'),(7018,3325,'mkdf_boxed_background_image_attachment_meta','fixed'),(7019,3325,'mkdf_disable_header_widget_logo_area_meta','no'),(7020,3325,'mkdf_disable_header_widget_menu_area_meta','no'),(7021,3325,'mkdf_disable_footer_meta','no'),(7022,3325,'show_footer_custom_widget_areas','no'),(7023,3325,'_dp_original','3312'),(7024,3327,'_wpb_shortcodes_custom_css','.vc_custom_1497443660488{padding-bottom: 50px !important;}'),(7025,3327,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7026,3327,'_wpb_shortcodes_custom_css','.vc_custom_1497443660488{padding-bottom: 50px !important;}'),(7027,3327,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7028,3327,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7029,3327,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7030,3327,'_wpb_shortcodes_custom_css','.vc_custom_1497443660488{padding-bottom: 50px !important;}'),(7031,3327,'_wpb_shortcodes_custom_css','.vc_custom_1497443660488{padding-bottom: 50px !important;}'),(7032,3327,'_wpb_shortcodes_custom_css','.vc_custom_1497443660488{padding-bottom: 50px !important;}'),(7033,3327,'_wp_page_template','full-width.php'),(7034,3327,'slide_template','default'),(7035,3327,'_wpb_vc_js_status','true'),(7036,3327,'mkdf_page_content_behind_header_meta','no'),(7037,3327,'mkdf_boxed_background_image_attachment_meta','fixed'),(7038,3327,'mkdf_disable_header_widget_logo_area_meta','no'),(7039,3327,'mkdf_disable_header_widget_menu_area_meta','no'),(7040,3327,'mkdf_disable_footer_meta','no'),(7041,3327,'show_footer_custom_widget_areas','no'),(7042,3327,'_dp_original','3321'),(7043,4125,'_wpb_shortcodes_custom_css','.vc_custom_1497968790870{padding-top: 13px !important;padding-bottom: 80px !important;}'),(7044,4125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7045,4125,'_wpb_shortcodes_custom_css','.vc_custom_1497968790870{padding-top: 13px !important;padding-bottom: 80px !important;}'),(7046,4125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7047,4125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7048,4125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7049,4125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7050,4125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7051,4125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7052,4125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7053,4125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7054,4125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7055,4125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7056,4125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7057,4125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7058,4125,'_wpb_shortcodes_custom_css','.vc_custom_1497968790870{padding-top: 13px !important;padding-bottom: 80px !important;}'),(7059,4125,'_wpb_shortcodes_custom_css','.vc_custom_1497968790870{padding-top: 13px !important;padding-bottom: 80px !important;}'),(7060,4125,'_wpb_shortcodes_custom_css','.vc_custom_1497968790870{padding-top: 13px !important;padding-bottom: 80px !important;}'),(7061,4125,'_wpb_shortcodes_custom_css','.vc_custom_1497968790870{padding-top: 13px !important;padding-bottom: 80px !important;}'),(7062,4125,'_wpb_shortcodes_custom_css','.vc_custom_1497968790870{padding-top: 13px !important;padding-bottom: 80px !important;}'),(7063,4125,'_wpb_shortcodes_custom_css','.vc_custom_1497968790870{padding-top: 13px !important;padding-bottom: 80px !important;}'),(7064,4125,'_wpb_shortcodes_custom_css','.vc_custom_1497968790870{padding-top: 13px !important;padding-bottom: 80px !important;}'),(7065,4125,'_wpb_shortcodes_custom_css','.vc_custom_1497968790870{padding-top: 13px !important;padding-bottom: 80px !important;}'),(7066,4125,'_wp_page_template','default'),(7067,4125,'slide_template','default'),(7068,4125,'_wpb_vc_js_status','true'),(7069,4125,'mkdf_page_content_behind_header_meta','no'),(7070,4125,'mkdf_boxed_background_image_attachment_meta','fixed'),(7071,4125,'mkdf_disable_header_widget_logo_area_meta','no'),(7072,4125,'mkdf_disable_header_widget_menu_area_meta','no'),(7073,4125,'mkdf_disable_footer_meta','no'),(7074,4125,'mkdf_menu_area_in_grid_meta','yes'),(7075,4125,'mkdf_title_area_type_meta','standard-with-breadcrumbs'),(7076,4125,'mkdf_sidebar_layout_meta','sidebar-25-left'),(7077,4125,'mkdf_custom_sidebar_area_meta','elements-sidebar'),(7078,4125,'mkdf_title_area_background_image_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/05/pages-title-parallax.jpg'),(7079,4125,'mkdf_title_area_background_image_behavior_meta','parallax'),(7080,4125,'mkdf_page_content_top_padding','87'),(7081,4125,'mkdf_header_type_meta','header-standard'),(7082,4125,'mkdf_top_bar_meta','yes'),(7083,4125,'mkdf_top_bar_in_grid_meta','yes'),(7084,4125,'mkdf_top_bar_border_meta','yes'),(7085,4125,'mkdf_top_bar_border_color_meta','#ebebeb'),(7086,4125,'mkdf_page_background_color_meta','#ffffff'),(7087,4125,'_dp_original','2621'),(7088,4125,'show_footer_custom_widget_areas','no'),(7091,1212,'_wpb_shortcodes_custom_css','.vc_custom_1497864453410{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497864462817{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497864473416{padding-top: 38px !important;}'),(7092,1212,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7093,1212,'_thumbnail_id','1156'),(7094,1212,'slide_template','default'),(7095,1212,'_wpb_vc_js_status','true'),(7096,1212,'_wpb_shortcodes_custom_css','.vc_custom_1497864453410{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497864462817{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497864473416{padding-top: 38px !important;}'),(7097,1212,'mkdf_page_content_behind_header_meta','no'),(7098,1212,'mkdf_page_content_top_padding_mobile','yes'),(7099,1212,'mkdf_page_background_color_meta','#ffffff'),(7100,1212,'mkdf_boxed_background_image_attachment_meta','fixed'),(7101,1212,'mkdf_blog_single_sidebar_layout_meta','sidebar-25-right'),(7102,1212,'mkdf_blog_masonry_gallery_fixed_dimensions_meta','default'),(7103,1212,'mkdf_blog_masonry_gallery_original_dimensions_meta','default'),(7104,1212,'mkdf_standard_post_full_width_featured_image_meta','yes'),(7105,1212,'mkdf_show_title_area_blog_meta','no'),(7106,1212,'mkdf_video_type_meta','social_networks'),(7107,1212,'mkdf_audio_type_meta','social_networks'),(7108,1212,'mkdf_disable_header_widget_logo_area_meta','no'),(7109,1212,'mkdf_disable_header_widget_menu_area_meta','no'),(7110,1212,'mkdf_show_title_area_meta','no'),(7111,1212,'mkdf_disable_footer_meta','no'),(7112,1212,'_mkd-like','1'),(7113,1212,'mkdf_page_content_top_padding','83'),(7114,1212,'_wp_old_slug','meeting-all-your-tuition-needs'),(7115,1212,'show_footer_custom_widget_areas','no'),(7118,1214,'_wpb_shortcodes_custom_css','.vc_custom_1497864352234{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497864360833{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497864369259{padding-top: 38px !important;}'),(7119,1214,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7120,1214,'_thumbnail_id','1157'),(7121,1214,'slide_template','default'),(7122,1214,'_wpb_vc_js_status','true'),(7123,1214,'_wpb_shortcodes_custom_css','.vc_custom_1497864352234{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497864360833{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497864369259{padding-top: 38px !important;}'),(7124,1214,'mkdf_page_content_behind_header_meta','no'),(7125,1214,'mkdf_page_content_top_padding_mobile','yes'),(7126,1214,'mkdf_page_background_color_meta','#ffffff'),(7127,1214,'mkdf_boxed_background_image_attachment_meta','fixed'),(7128,1214,'mkdf_blog_single_sidebar_layout_meta','sidebar-25-right'),(7129,1214,'mkdf_blog_masonry_gallery_fixed_dimensions_meta','default'),(7130,1214,'mkdf_blog_masonry_gallery_original_dimensions_meta','default'),(7131,1214,'mkdf_standard_post_full_width_featured_image_meta','yes'),(7132,1214,'mkdf_show_title_area_blog_meta','no'),(7133,1214,'mkdf_video_type_meta','social_networks'),(7134,1214,'mkdf_audio_type_meta','social_networks'),(7135,1214,'mkdf_disable_header_widget_logo_area_meta','no'),(7136,1214,'mkdf_disable_header_widget_menu_area_meta','no'),(7137,1214,'mkdf_show_title_area_meta','no'),(7138,1214,'mkdf_disable_footer_meta','no'),(7139,1214,'_mkd-like','0'),(7140,1214,'mkdf_page_content_top_padding','83'),(7141,1214,'_wp_old_slug','building-on-a-legacy-of-excellence'),(7142,1214,'show_footer_custom_widget_areas','no'),(7145,1216,'_wpb_shortcodes_custom_css','.vc_custom_1497864301067{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497864309507{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497864321385{padding-top: 38px !important;}'),(7146,1216,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7147,1216,'_thumbnail_id','1217'),(7148,1216,'slide_template','default'),(7149,1216,'_wpb_vc_js_status','true'),(7150,1216,'_wpb_shortcodes_custom_css','.vc_custom_1497864301067{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497864309507{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497864321385{padding-top: 38px !important;}'),(7151,1216,'mkdf_page_content_behind_header_meta','no'),(7152,1216,'mkdf_page_content_top_padding_mobile','yes'),(7153,1216,'mkdf_page_background_color_meta','#ffffff'),(7154,1216,'mkdf_boxed_background_image_attachment_meta','fixed'),(7155,1216,'mkdf_blog_single_sidebar_layout_meta','sidebar-25-right'),(7156,1216,'mkdf_blog_masonry_gallery_fixed_dimensions_meta','default'),(7157,1216,'mkdf_blog_masonry_gallery_original_dimensions_meta','default'),(7158,1216,'mkdf_standard_post_full_width_featured_image_meta','yes'),(7159,1216,'mkdf_show_title_area_blog_meta','no'),(7160,1216,'mkdf_video_type_meta','social_networks'),(7161,1216,'mkdf_audio_type_meta','social_networks'),(7162,1216,'mkdf_disable_header_widget_logo_area_meta','no'),(7163,1216,'mkdf_disable_header_widget_menu_area_meta','no'),(7164,1216,'mkdf_show_title_area_meta','no'),(7165,1216,'mkdf_disable_footer_meta','no'),(7166,1216,'_mkd-like','0'),(7167,1216,'mkdf_page_content_top_padding','83'),(7168,1216,'show_footer_custom_widget_areas','no'),(7171,1219,'_wpb_shortcodes_custom_css','.vc_custom_1497864249805{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497864261467{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497864271586{padding-top: 38px !important;}'),(7172,1219,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7173,1219,'_thumbnail_id','1158'),(7174,1219,'slide_template','default'),(7175,1219,'_wpb_vc_js_status','true'),(7176,1219,'_wpb_shortcodes_custom_css','.vc_custom_1497864249805{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497864261467{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497864271586{padding-top: 38px !important;}'),(7177,1219,'mkdf_page_content_behind_header_meta','no'),(7178,1219,'mkdf_page_content_top_padding_mobile','yes'),(7179,1219,'mkdf_page_background_color_meta','#ffffff'),(7180,1219,'mkdf_boxed_background_image_attachment_meta','fixed'),(7181,1219,'mkdf_blog_single_sidebar_layout_meta','sidebar-25-right'),(7182,1219,'mkdf_blog_masonry_gallery_fixed_dimensions_meta','default'),(7183,1219,'mkdf_blog_masonry_gallery_original_dimensions_meta','default'),(7184,1219,'mkdf_standard_post_full_width_featured_image_meta','yes'),(7185,1219,'mkdf_show_title_area_blog_meta','no'),(7186,1219,'mkdf_video_type_meta','social_networks'),(7187,1219,'mkdf_audio_type_meta','social_networks'),(7188,1219,'mkdf_disable_header_widget_logo_area_meta','no'),(7189,1219,'mkdf_disable_header_widget_menu_area_meta','no'),(7190,1219,'mkdf_show_title_area_meta','no'),(7191,1219,'mkdf_disable_footer_meta','no'),(7192,1219,'_mkd-like','0'),(7193,1219,'mkdf_page_content_top_padding','83'),(7194,1219,'show_footer_custom_widget_areas','no'),(7197,1221,'_wpb_shortcodes_custom_css','.vc_custom_1497864151316{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497864161443{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497864171043{padding-top: 38px !important;}'),(7198,1221,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7199,1221,'_thumbnail_id','1160'),(7200,1221,'slide_template','default'),(7201,1221,'_wpb_vc_js_status','true'),(7202,1221,'_wpb_shortcodes_custom_css','.vc_custom_1497864151316{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497864161443{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497864171043{padding-top: 38px !important;}'),(7203,1221,'mkdf_page_content_behind_header_meta','no'),(7204,1221,'mkdf_page_content_top_padding_mobile','yes'),(7205,1221,'mkdf_page_background_color_meta','#ffffff'),(7206,1221,'mkdf_boxed_background_image_attachment_meta','fixed'),(7207,1221,'mkdf_blog_single_sidebar_layout_meta','sidebar-25-right'),(7208,1221,'mkdf_blog_masonry_gallery_fixed_dimensions_meta','default'),(7209,1221,'mkdf_blog_masonry_gallery_original_dimensions_meta','default'),(7210,1221,'mkdf_standard_post_full_width_featured_image_meta','yes'),(7211,1221,'mkdf_show_title_area_blog_meta','no'),(7212,1221,'mkdf_video_type_meta','social_networks'),(7213,1221,'mkdf_audio_type_meta','social_networks'),(7214,1221,'mkdf_disable_header_widget_logo_area_meta','no'),(7215,1221,'mkdf_disable_header_widget_menu_area_meta','no'),(7216,1221,'mkdf_show_title_area_meta','no'),(7217,1221,'mkdf_disable_footer_meta','no'),(7218,1221,'_mkd-like','0'),(7219,1221,'mkdf_page_content_top_padding','83'),(7220,1221,'show_footer_custom_widget_areas','no'),(7223,1410,'_wpb_shortcodes_custom_css','.vc_custom_1496156484829{padding-top: 50px !important;}.vc_custom_1497865445361{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497865454679{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497865463760{padding-top: 38px !important;}'),(7224,1410,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7225,1410,'slide_template','default'),(7226,1410,'_wpb_vc_js_status','true'),(7227,1410,'_wpb_shortcodes_custom_css','.vc_custom_1496156484829{padding-top: 50px !important;}.vc_custom_1497865445361{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497865454679{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497865463760{padding-top: 38px !important;}'),(7228,1410,'mkdf_page_content_behind_header_meta','no'),(7229,1410,'mkdf_page_content_top_padding_mobile','yes'),(7230,1410,'mkdf_page_background_color_meta','#ffffff'),(7231,1410,'mkdf_boxed_background_image_attachment_meta','fixed'),(7232,1410,'mkdf_blog_single_sidebar_layout_meta','sidebar-25-right'),(7233,1410,'mkdf_blog_masonry_gallery_fixed_dimensions_meta','default'),(7234,1410,'mkdf_blog_masonry_gallery_original_dimensions_meta','default'),(7235,1410,'mkdf_standard_post_full_width_featured_image_meta','yes'),(7236,1410,'mkdf_show_title_area_blog_meta','no'),(7237,1410,'mkdf_video_type_meta','social_networks'),(7238,1410,'mkdf_audio_type_meta','social_networks'),(7239,1410,'mkdf_post_quote_text_meta','Things are made to happen. '),(7240,1410,'mkdf_post_quote_author_meta','John F. Kennedy'),(7241,1410,'mkdf_disable_header_widget_logo_area_meta','no'),(7242,1410,'mkdf_disable_header_widget_menu_area_meta','no'),(7243,1410,'mkdf_menu_area_in_grid_meta','yes'),(7244,1410,'mkdf_disable_footer_meta','no'),(7245,1410,'_mkd-like','0'),(7246,1410,'mkdf_page_content_top_padding','83'),(7247,1410,'_thumbnail_id','1358'),(7248,1410,'show_footer_custom_widget_areas','no'),(7251,1415,'_wpb_shortcodes_custom_css','.vc_custom_1496156484829{padding-top: 50px !important;}.vc_custom_1497865390002{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497865399935{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497865410688{padding-top: 38px !important;}'),(7252,1415,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7253,1415,'slide_template','default'),(7254,1415,'_wpb_vc_js_status','true'),(7255,1415,'_wpb_shortcodes_custom_css','.vc_custom_1496156484829{padding-top: 50px !important;}.vc_custom_1497865390002{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497865399935{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497865410688{padding-top: 38px !important;}'),(7256,1415,'mkdf_page_content_behind_header_meta','no'),(7257,1415,'mkdf_page_content_top_padding_mobile','yes'),(7258,1415,'mkdf_page_background_color_meta','#ffffff'),(7259,1415,'mkdf_boxed_background_image_attachment_meta','fixed'),(7260,1415,'mkdf_blog_single_sidebar_layout_meta','sidebar-25-right'),(7261,1415,'mkdf_blog_masonry_gallery_fixed_dimensions_meta','default'),(7262,1415,'mkdf_blog_masonry_gallery_original_dimensions_meta','default'),(7263,1415,'mkdf_standard_post_full_width_featured_image_meta','yes'),(7264,1415,'mkdf_show_title_area_blog_meta','no'),(7265,1415,'mkdf_video_type_meta','social_networks'),(7266,1415,'mkdf_audio_type_meta','social_networks'),(7267,1415,'mkdf_post_link_link_meta','http://themeforest.net/user/mikado-themes'),(7268,1415,'mkdf_disable_header_widget_logo_area_meta','no'),(7269,1415,'mkdf_disable_header_widget_menu_area_meta','no'),(7270,1415,'mkdf_menu_area_in_grid_meta','yes'),(7271,1415,'mkdf_disable_footer_meta','no'),(7272,1415,'_mkd-like','0'),(7273,1415,'mkdf_page_content_top_padding','83'),(7274,1415,'_thumbnail_id','1513'),(7275,1415,'show_footer_custom_widget_areas','no'),(7278,1419,'_wpb_shortcodes_custom_css','.vc_custom_1497865341872{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497865351943{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497865360768{padding-top: 38px !important;}'),(7279,1419,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7280,1419,'slide_template','default'),(7281,1419,'_wpb_vc_js_status','true'),(7282,1419,'_wpb_shortcodes_custom_css','.vc_custom_1497865341872{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497865351943{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497865360768{padding-top: 38px !important;}'),(7283,1419,'mkdf_page_content_behind_header_meta','no'),(7284,1419,'mkdf_page_content_top_padding_mobile','yes'),(7285,1419,'mkdf_page_background_color_meta','#ffffff'),(7286,1419,'mkdf_boxed_background_image_attachment_meta','fixed'),(7287,1419,'mkdf_blog_single_sidebar_layout_meta','sidebar-25-right'),(7288,1419,'mkdf_blog_masonry_gallery_fixed_dimensions_meta','default'),(7289,1419,'mkdf_blog_masonry_gallery_original_dimensions_meta','default'),(7290,1419,'mkdf_standard_post_full_width_featured_image_meta','yes'),(7291,1419,'mkdf_show_title_area_blog_meta','no'),(7292,1419,'mkdf_video_type_meta','social_networks'),(7293,1419,'mkdf_audio_type_meta','social_networks'),(7294,1419,'mkdf_disable_header_widget_logo_area_meta','no'),(7295,1419,'mkdf_disable_header_widget_menu_area_meta','no'),(7296,1419,'mkdf_menu_area_in_grid_meta','yes'),(7297,1419,'mkdf_disable_footer_meta','no'),(7298,1419,'_mkd-like','0'),(7299,1419,'mkdf_page_content_top_padding','83'),(7300,1419,'_wp_old_slug','actively-growing-and-achieving'),(7301,1419,'_thumbnail_id','2324'),(7302,1419,'show_footer_custom_widget_areas','no'),(7305,1421,'_wpb_shortcodes_custom_css','.vc_custom_1497865295536{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497865304943{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497865314431{padding-top: 38px !important;}'),(7306,1421,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7307,1421,'_thumbnail_id','1362'),(7308,1421,'slide_template','default'),(7309,1421,'_wpb_vc_js_status','true'),(7310,1421,'_wpb_shortcodes_custom_css','.vc_custom_1497865295536{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497865304943{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497865314431{padding-top: 38px !important;}'),(7311,1421,'mkdf_page_content_behind_header_meta','no'),(7312,1421,'mkdf_page_content_top_padding_mobile','yes'),(7313,1421,'mkdf_page_background_color_meta','#ffffff'),(7314,1421,'mkdf_boxed_background_image_attachment_meta','fixed'),(7315,1421,'mkdf_blog_single_sidebar_layout_meta','sidebar-25-right'),(7316,1421,'mkdf_blog_masonry_gallery_fixed_dimensions_meta','default'),(7317,1421,'mkdf_blog_masonry_gallery_original_dimensions_meta','default'),(7318,1421,'mkdf_standard_post_full_width_featured_image_meta','yes'),(7319,1421,'mkdf_show_title_area_blog_meta','no'),(7320,1421,'mkdf_video_type_meta','social_networks'),(7321,1421,'mkdf_audio_type_meta','social_networks'),(7322,1421,'mkdf_disable_header_widget_logo_area_meta','no'),(7323,1421,'mkdf_disable_header_widget_menu_area_meta','no'),(7324,1421,'mkdf_menu_area_in_grid_meta','yes'),(7325,1421,'mkdf_disable_footer_meta','no'),(7326,1421,'_mkd-like','0'),(7327,1421,'mkdf_page_content_top_padding','83'),(7328,1421,'show_footer_custom_widget_areas','no'),(7331,1426,'_wpb_shortcodes_custom_css','.vc_custom_1497865244248{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497865253855{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497865263808{padding-top: 38px !important;}'),(7332,1426,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7333,1426,'_thumbnail_id','1363'),(7334,1426,'slide_template','default'),(7335,1426,'_wpb_vc_js_status','true'),(7336,1426,'_wpb_shortcodes_custom_css','.vc_custom_1497865244248{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497865253855{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497865263808{padding-top: 38px !important;}'),(7337,1426,'mkdf_page_content_behind_header_meta','no'),(7338,1426,'mkdf_page_content_top_padding_mobile','yes'),(7339,1426,'mkdf_page_background_color_meta','#ffffff'),(7340,1426,'mkdf_boxed_background_image_attachment_meta','fixed'),(7341,1426,'mkdf_blog_masonry_gallery_fixed_dimensions_meta','default'),(7342,1426,'mkdf_blog_masonry_gallery_original_dimensions_meta','default'),(7343,1426,'mkdf_standard_post_full_width_featured_image_meta','yes'),(7344,1426,'mkdf_show_title_area_blog_meta','no'),(7345,1426,'mkdf_video_type_meta','social_networks'),(7346,1426,'mkdf_audio_type_meta','social_networks'),(7347,1426,'mkdf_disable_header_widget_logo_area_meta','no'),(7348,1426,'mkdf_disable_header_widget_menu_area_meta','no'),(7349,1426,'mkdf_disable_footer_meta','no'),(7350,1426,'_mkd-like','0'),(7351,1426,'mkdf_page_content_top_padding','83'),(7352,1426,'show_footer_custom_widget_areas','no'),(7355,1484,'_wpb_shortcodes_custom_css','.vc_custom_1497865196297{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497865205873{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497865214312{padding-top: 38px !important;}'),(7356,1484,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7357,1484,'_thumbnail_id','1487'),(7358,1484,'slide_template','default'),(7359,1484,'_wpb_vc_js_status','true'),(7360,1484,'_wpb_shortcodes_custom_css','.vc_custom_1497865196297{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497865205873{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497865214312{padding-top: 38px !important;}'),(7361,1484,'mkdf_page_content_behind_header_meta','no'),(7362,1484,'mkdf_page_content_top_padding_mobile','yes'),(7363,1484,'mkdf_page_background_color_meta','#ffffff'),(7364,1484,'mkdf_boxed_background_image_attachment_meta','fixed'),(7365,1484,'mkdf_blog_single_sidebar_layout_meta','sidebar-25-right'),(7366,1484,'mkdf_blog_masonry_gallery_fixed_dimensions_meta','default'),(7367,1484,'mkdf_blog_masonry_gallery_original_dimensions_meta','default'),(7368,1484,'mkdf_standard_post_full_width_featured_image_meta','yes'),(7369,1484,'mkdf_show_title_area_blog_meta','no'),(7370,1484,'mkdf_video_type_meta','social_networks'),(7371,1484,'mkdf_audio_type_meta','social_networks'),(7372,1484,'mkdf_disable_header_widget_logo_area_meta','no'),(7373,1484,'mkdf_disable_header_widget_menu_area_meta','no'),(7374,1484,'mkdf_menu_area_in_grid_meta','yes'),(7375,1484,'mkdf_disable_footer_meta','no'),(7376,1484,'_mkd-like','0'),(7377,1484,'mkdf_page_content_top_padding','83'),(7378,1484,'show_footer_custom_widget_areas','no'),(7381,1497,'_wpb_shortcodes_custom_css','.vc_custom_1497864084130{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497864092217{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497864100364{padding-top: 38px !important;}'),(7382,1497,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7383,1497,'_thumbnail_id','1488'),(7384,1497,'slide_template','default'),(7385,1497,'_wpb_vc_js_status','true'),(7386,1497,'_wpb_shortcodes_custom_css','.vc_custom_1497864084130{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497864092217{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497864100364{padding-top: 38px !important;}'),(7387,1497,'mkdf_page_content_behind_header_meta','no'),(7388,1497,'mkdf_page_content_top_padding_mobile','yes'),(7389,1497,'mkdf_page_background_color_meta','#ffffff'),(7390,1497,'mkdf_boxed_background_image_attachment_meta','fixed'),(7391,1497,'mkdf_blog_single_sidebar_layout_meta','sidebar-25-right'),(7392,1497,'mkdf_blog_masonry_gallery_fixed_dimensions_meta','default'),(7393,1497,'mkdf_blog_masonry_gallery_original_dimensions_meta','default'),(7394,1497,'mkdf_standard_post_full_width_featured_image_meta','yes'),(7395,1497,'mkdf_show_title_area_blog_meta','no'),(7396,1497,'mkdf_video_type_meta','social_networks'),(7397,1497,'mkdf_audio_type_meta','social_networks'),(7398,1497,'mkdf_disable_header_widget_logo_area_meta','no'),(7399,1497,'mkdf_disable_header_widget_menu_area_meta','no'),(7400,1497,'mkdf_menu_area_in_grid_meta','yes'),(7401,1497,'mkdf_disable_footer_meta','no'),(7402,1497,'_mkd-like','0'),(7403,1497,'mkdf_page_content_top_padding','83'),(7404,1497,'show_footer_custom_widget_areas','no'),(7407,1507,'_wpb_shortcodes_custom_css','.vc_custom_1497865132399{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497865140647{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497865148936{padding-top: 38px !important;}'),(7408,1507,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7409,1507,'slide_template','default'),(7410,1507,'_wpb_vc_js_status','true'),(7411,1507,'_wpb_shortcodes_custom_css','.vc_custom_1497865132399{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497865140647{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497865148936{padding-top: 38px !important;}'),(7412,1507,'mkdf_page_content_behind_header_meta','no'),(7413,1507,'mkdf_page_content_top_padding_mobile','yes'),(7414,1507,'mkdf_page_background_color_meta','#ffffff'),(7415,1507,'mkdf_boxed_background_image_attachment_meta','fixed'),(7416,1507,'mkdf_blog_single_sidebar_layout_meta','sidebar-25-right'),(7417,1507,'mkdf_blog_masonry_gallery_fixed_dimensions_meta','default'),(7418,1507,'mkdf_blog_masonry_gallery_original_dimensions_meta','default'),(7419,1507,'mkdf_standard_post_full_width_featured_image_meta','yes'),(7420,1507,'mkdf_show_title_area_blog_meta','no'),(7421,1507,'mkdf_video_type_meta','social_networks'),(7422,1507,'mkdf_audio_type_meta','self'),(7423,1507,'mkdf_post_audio_custom_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/06/b-audio-everytings-nice.mp3'),(7424,1507,'mkdf_disable_header_widget_logo_area_meta','no'),(7425,1507,'mkdf_disable_header_widget_menu_area_meta','no'),(7426,1507,'mkdf_menu_area_in_grid_meta','yes'),(7427,1507,'mkdf_disable_footer_meta','no'),(7428,1507,'_mkd-like','0'),(7429,1507,'mkdf_page_content_top_padding','83'),(7430,1507,'_thumbnail_id','2320'),(7431,1507,'show_footer_custom_widget_areas','no'),(7434,1511,'_wpb_shortcodes_custom_css','.vc_custom_1497864860064{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497864993337{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497865105112{padding-top: 38px !important;}'),(7435,1511,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7436,1511,'_thumbnail_id','1515'),(7437,1511,'slide_template','default'),(7438,1511,'_wpb_vc_js_status','true'),(7439,1511,'_wpb_shortcodes_custom_css','.vc_custom_1497864860064{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497864993337{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497865105112{padding-top: 38px !important;}'),(7440,1511,'mkdf_page_content_behind_header_meta','no'),(7441,1511,'mkdf_page_content_top_padding_mobile','yes'),(7442,1511,'mkdf_page_background_color_meta','#ffffff'),(7443,1511,'mkdf_boxed_background_image_attachment_meta','fixed'),(7444,1511,'mkdf_blog_single_sidebar_layout_meta','sidebar-25-right'),(7445,1511,'mkdf_blog_masonry_gallery_fixed_dimensions_meta','default'),(7446,1511,'mkdf_blog_masonry_gallery_original_dimensions_meta','default'),(7447,1511,'mkdf_standard_post_full_width_featured_image_meta','yes'),(7448,1511,'mkdf_show_title_area_blog_meta','no'),(7449,1511,'mkdf_post_gallery_images_meta','1513,1514'),(7450,1511,'mkdf_video_type_meta','social_networks'),(7451,1511,'mkdf_audio_type_meta','social_networks'),(7452,1511,'mkdf_disable_header_widget_logo_area_meta','no'),(7453,1511,'mkdf_disable_header_widget_menu_area_meta','no'),(7454,1511,'mkdf_menu_area_in_grid_meta','yes'),(7455,1511,'mkdf_disable_footer_meta','no'),(7456,1511,'_mkd-like','0'),(7457,1511,'mkdf_page_content_top_padding','83'),(7458,1511,'show_footer_custom_widget_areas','no'),(7461,1517,'_wpb_shortcodes_custom_css','.vc_custom_1497864571083{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497864581153{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497864590233{padding-top: 38px !important;}'),(7462,1517,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7463,1517,'_thumbnail_id','1518'),(7464,1517,'slide_template','default'),(7465,1517,'_wpb_vc_js_status','true'),(7466,1517,'_wpb_shortcodes_custom_css','.vc_custom_1497864571083{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497864581153{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497864590233{padding-top: 38px !important;}'),(7467,1517,'mkdf_page_content_behind_header_meta','no'),(7468,1517,'mkdf_page_content_top_padding_mobile','yes'),(7469,1517,'mkdf_page_background_color_meta','#ffffff'),(7470,1517,'mkdf_boxed_background_image_attachment_meta','fixed'),(7471,1517,'mkdf_blog_single_sidebar_layout_meta','sidebar-25-right'),(7472,1517,'mkdf_blog_masonry_gallery_fixed_dimensions_meta','default'),(7473,1517,'mkdf_blog_masonry_gallery_original_dimensions_meta','default'),(7474,1517,'mkdf_standard_post_full_width_featured_image_meta','yes'),(7475,1517,'mkdf_show_title_area_blog_meta','no'),(7476,1517,'mkdf_video_type_meta','social_networks'),(7477,1517,'mkdf_audio_type_meta','social_networks'),(7478,1517,'mkdf_disable_header_widget_logo_area_meta','no'),(7479,1517,'mkdf_disable_header_widget_menu_area_meta','no'),(7480,1517,'mkdf_menu_area_in_grid_meta','yes'),(7481,1517,'mkdf_disable_footer_meta','no'),(7482,1517,'_mkd-like','0'),(7483,1517,'mkdf_page_content_top_padding','83'),(7484,1517,'show_footer_custom_widget_areas','no'),(7487,1524,'_wpb_shortcodes_custom_css','.vc_custom_1497864810097{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497864827288{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497864636987{padding-top: 38px !important;}'),(7488,1524,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7489,1524,'_thumbnail_id','1525'),(7490,1524,'slide_template','default'),(7491,1524,'_wpb_vc_js_status','true'),(7492,1524,'_wpb_shortcodes_custom_css','.vc_custom_1497864810097{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497864827288{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497864636987{padding-top: 38px !important;}'),(7493,1524,'mkdf_page_content_behind_header_meta','no'),(7494,1524,'mkdf_page_content_top_padding_mobile','yes'),(7495,1524,'mkdf_page_background_color_meta','#ffffff'),(7496,1524,'mkdf_boxed_background_image_attachment_meta','fixed'),(7497,1524,'mkdf_blog_single_sidebar_layout_meta','sidebar-25-right'),(7498,1524,'mkdf_blog_masonry_gallery_fixed_dimensions_meta','default'),(7499,1524,'mkdf_blog_masonry_gallery_original_dimensions_meta','default'),(7500,1524,'mkdf_standard_post_full_width_featured_image_meta','yes'),(7501,1524,'mkdf_show_title_area_blog_meta','no'),(7502,1524,'mkdf_video_type_meta','social_networks'),(7503,1524,'mkdf_post_video_link_meta','https://vimeo.com/157562616'),(7504,1524,'mkdf_audio_type_meta','social_networks'),(7505,1524,'mkdf_disable_header_widget_logo_area_meta','no'),(7506,1524,'mkdf_disable_header_widget_menu_area_meta','no'),(7507,1524,'mkdf_menu_area_in_grid_meta','yes'),(7508,1524,'mkdf_disable_footer_meta','no'),(7509,1524,'_mkd-like','0'),(7510,1524,'mkdf_page_content_top_padding','83'),(7511,1524,'show_footer_custom_widget_areas','no'),(7514,1528,'_wpb_shortcodes_custom_css','.vc_custom_1497864514650{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1496130925642{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497864530873{padding-top: 38px !important;}'),(7515,1528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7516,1528,'_thumbnail_id','1530'),(7517,1528,'slide_template','default'),(7518,1528,'_wpb_vc_js_status','true'),(7519,1528,'_wpb_shortcodes_custom_css','.vc_custom_1497864514650{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1496130925642{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497864530873{padding-top: 38px !important;}'),(7520,1528,'mkdf_page_content_behind_header_meta','no'),(7521,1528,'mkdf_page_content_top_padding_mobile','yes'),(7522,1528,'mkdf_page_background_color_meta','#ffffff'),(7523,1528,'mkdf_boxed_background_image_attachment_meta','fixed'),(7524,1528,'mkdf_blog_single_sidebar_layout_meta','sidebar-25-right'),(7525,1528,'mkdf_blog_masonry_gallery_fixed_dimensions_meta','default'),(7526,1528,'mkdf_blog_masonry_gallery_original_dimensions_meta','default'),(7527,1528,'mkdf_standard_post_full_width_featured_image_meta','yes'),(7528,1528,'mkdf_show_title_area_blog_meta','no'),(7529,1528,'mkdf_video_type_meta','social_networks'),(7530,1528,'mkdf_audio_type_meta','self'),(7531,1528,'mkdf_post_audio_custom_meta','http://iacademy.mikado-themes.com/wp-content/uploads/2017/06/b-audio-everytings-nice.mp3'),(7532,1528,'mkdf_disable_header_widget_logo_area_meta','no'),(7533,1528,'mkdf_disable_header_widget_menu_area_meta','no'),(7534,1528,'mkdf_menu_area_in_grid_meta','yes'),(7535,1528,'mkdf_disable_footer_meta','no'),(7536,1528,'_mkd-like','0'),(7537,1528,'mkdf_page_content_top_padding','83'),(7538,1528,'show_footer_custom_widget_areas','no'),(7541,1548,'_wpb_shortcodes_custom_css','.vc_custom_1497864040740{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497864049346{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497864057243{padding-top: 38px !important;}'),(7542,1548,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7543,1548,'_thumbnail_id','1530'),(7544,1548,'slide_template','default'),(7545,1548,'_wpb_vc_js_status','true'),(7546,1548,'_wpb_shortcodes_custom_css','.vc_custom_1497864040740{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497864049346{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497864057243{padding-top: 38px !important;}'),(7547,1548,'mkdf_page_content_behind_header_meta','no'),(7548,1548,'mkdf_page_content_top_padding_mobile','yes'),(7549,1548,'mkdf_page_background_color_meta','#ffffff'),(7550,1548,'mkdf_boxed_background_image_attachment_meta','fixed'),(7551,1548,'mkdf_blog_single_sidebar_layout_meta','sidebar-25-right'),(7552,1548,'mkdf_blog_masonry_gallery_fixed_dimensions_meta','default'),(7553,1548,'mkdf_blog_masonry_gallery_original_dimensions_meta','default'),(7554,1548,'mkdf_standard_post_full_width_featured_image_meta','yes'),(7555,1548,'mkdf_show_title_area_blog_meta','no'),(7556,1548,'mkdf_video_type_meta','social_networks'),(7557,1548,'mkdf_audio_type_meta','social_networks'),(7558,1548,'mkdf_disable_header_widget_logo_area_meta','no'),(7559,1548,'mkdf_disable_header_widget_menu_area_meta','no'),(7560,1548,'mkdf_menu_area_in_grid_meta','yes'),(7561,1548,'mkdf_disable_footer_meta','no'),(7562,1548,'_mkd-like','0'),(7563,1548,'mkdf_page_content_top_padding','83'),(7564,1548,'show_footer_custom_widget_areas','no'),(7567,1550,'_wpb_shortcodes_custom_css','.vc_custom_1497863949293{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497863976125{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497863984854{padding-top: 38px !important;}'),(7568,1550,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7569,1550,'slide_template','default'),(7570,1550,'_wpb_vc_js_status','true'),(7571,1550,'_wpb_shortcodes_custom_css','.vc_custom_1497863949293{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497863976125{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497863984854{padding-top: 38px !important;}'),(7572,1550,'mkdf_page_content_behind_header_meta','no'),(7573,1550,'mkdf_page_content_top_padding_mobile','yes'),(7574,1550,'mkdf_page_background_color_meta','#ffffff'),(7575,1550,'mkdf_boxed_background_image_attachment_meta','fixed'),(7576,1550,'mkdf_blog_single_sidebar_layout_meta','sidebar-25-right'),(7577,1550,'mkdf_blog_masonry_gallery_fixed_dimensions_meta','default'),(7578,1550,'mkdf_blog_masonry_gallery_original_dimensions_meta','default'),(7579,1550,'mkdf_standard_post_full_width_featured_image_meta','yes'),(7580,1550,'mkdf_show_title_area_blog_meta','no'),(7581,1550,'mkdf_video_type_meta','social_networks'),(7582,1550,'mkdf_audio_type_meta','social_networks'),(7583,1550,'mkdf_disable_header_widget_logo_area_meta','no'),(7584,1550,'mkdf_disable_header_widget_menu_area_meta','no'),(7585,1550,'mkdf_menu_area_in_grid_meta','yes'),(7586,1550,'mkdf_disable_footer_meta','no'),(7587,1550,'_mkd-like','0'),(7588,1550,'mkdf_page_content_top_padding','83'),(7589,1550,'_thumbnail_id','1347'),(7590,1550,'show_footer_custom_widget_areas','no'),(7593,1553,'_wpb_shortcodes_custom_css','.vc_custom_1497863896923{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497863905258{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497863913784{padding-top: 38px !important;}'),(7594,1553,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7595,1553,'_thumbnail_id','1362'),(7596,1553,'slide_template','default'),(7597,1553,'_wpb_vc_js_status','true'),(7598,1553,'_wpb_shortcodes_custom_css','.vc_custom_1497863896923{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497863905258{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497863913784{padding-top: 38px !important;}'),(7599,1553,'mkdf_page_content_behind_header_meta','no'),(7600,1553,'mkdf_page_content_top_padding_mobile','yes'),(7601,1553,'mkdf_page_background_color_meta','#ffffff'),(7602,1553,'mkdf_boxed_background_image_attachment_meta','fixed'),(7603,1553,'mkdf_blog_single_sidebar_layout_meta','sidebar-25-right'),(7604,1553,'mkdf_blog_masonry_gallery_fixed_dimensions_meta','default'),(7605,1553,'mkdf_blog_masonry_gallery_original_dimensions_meta','default'),(7606,1553,'mkdf_standard_post_full_width_featured_image_meta','yes'),(7607,1553,'mkdf_show_title_area_blog_meta','no'),(7608,1553,'mkdf_video_type_meta','social_networks'),(7609,1553,'mkdf_audio_type_meta','social_networks'),(7610,1553,'mkdf_disable_header_widget_logo_area_meta','no'),(7611,1553,'mkdf_disable_header_widget_menu_area_meta','no'),(7612,1553,'mkdf_menu_area_in_grid_meta','yes'),(7613,1553,'mkdf_disable_footer_meta','no'),(7614,1553,'_mkd-like','0'),(7615,1553,'mkdf_page_content_top_padding','83'),(7616,1553,'show_footer_custom_widget_areas','no'),(7625,1343,'_wpb_shortcodes_custom_css','.vc_custom_1497865961927{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497866016982{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497866025030{padding-top: 38px !important;}'),(7626,1343,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7627,1343,'_thumbnail_id','1345'),(7628,1343,'slide_template','default'),(7629,1343,'_wpb_vc_js_status','true'),(7630,1343,'_wpb_shortcodes_custom_css','.vc_custom_1497865961927{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497866016982{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497866025030{padding-top: 38px !important;}'),(7631,1343,'mkdf_page_content_behind_header_meta','no'),(7632,1343,'mkdf_page_content_top_padding_mobile','yes'),(7633,1343,'mkdf_boxed_background_image_attachment_meta','fixed'),(7634,1343,'mkdf_blog_masonry_gallery_fixed_dimensions_meta','default'),(7635,1343,'mkdf_blog_masonry_gallery_original_dimensions_meta','default'),(7636,1343,'mkdf_standard_post_full_width_featured_image_meta','yes'),(7637,1343,'mkdf_show_title_area_blog_meta','no'),(7638,1343,'mkdf_video_type_meta','social_networks'),(7639,1343,'mkdf_audio_type_meta','social_networks'),(7640,1343,'mkdf_disable_header_widget_logo_area_meta','no'),(7641,1343,'mkdf_disable_header_widget_menu_area_meta','no'),(7642,1343,'mkdf_disable_footer_meta','no'),(7643,1343,'_mkd-like','0'),(7644,1343,'mkdf_menu_area_in_grid_meta','yes'),(7645,1343,'mkdf_page_background_color_meta','#ffffff'),(7646,1343,'mkdf_blog_single_sidebar_layout_meta','sidebar-25-right'),(7647,1343,'mkdf_page_content_top_padding','83'),(7648,1343,'show_footer_custom_widget_areas','no'),(7651,1349,'_wpb_shortcodes_custom_css','.vc_custom_1496156484829{padding-top: 50px !important;}.vc_custom_1497865870015{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497865882464{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497865890470{padding-top: 38px !important;}'),(7652,1349,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7653,1349,'slide_template','default'),(7654,1349,'_wpb_vc_js_status','true'),(7655,1349,'_wpb_shortcodes_custom_css','.vc_custom_1496156484829{padding-top: 50px !important;}.vc_custom_1497865870015{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497865882464{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497865890470{padding-top: 38px !important;}'),(7656,1349,'mkdf_page_content_behind_header_meta','no'),(7657,1349,'mkdf_page_content_top_padding_mobile','yes'),(7658,1349,'mkdf_page_background_color_meta','#ffffff'),(7659,1349,'mkdf_boxed_background_image_attachment_meta','fixed'),(7660,1349,'mkdf_blog_single_sidebar_layout_meta','sidebar-25-right'),(7661,1349,'mkdf_blog_masonry_gallery_fixed_dimensions_meta','default'),(7662,1349,'mkdf_blog_masonry_gallery_original_dimensions_meta','default'),(7663,1349,'mkdf_standard_post_full_width_featured_image_meta','yes'),(7664,1349,'mkdf_show_title_area_blog_meta','no'),(7665,1349,'mkdf_video_type_meta','social_networks'),(7666,1349,'mkdf_audio_type_meta','social_networks'),(7667,1349,'mkdf_post_link_link_meta','http://themeforest.net/user/mikado-themes'),(7668,1349,'mkdf_disable_header_widget_logo_area_meta','no'),(7669,1349,'mkdf_disable_header_widget_menu_area_meta','no'),(7670,1349,'mkdf_menu_area_in_grid_meta','yes'),(7671,1349,'mkdf_disable_footer_meta','no'),(7672,1349,'_mkd-like','0'),(7673,1349,'mkdf_page_content_top_padding','83'),(7674,1349,'_thumbnail_id','1345'),(7675,1349,'show_footer_custom_widget_areas','no'),(7678,1351,'_wpb_shortcodes_custom_css','.vc_custom_1497865822191{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497865831886{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497865841302{padding-top: 38px !important;}'),(7679,1351,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7680,1351,'_thumbnail_id','1346'),(7681,1351,'slide_template','default'),(7682,1351,'_wpb_vc_js_status','true'),(7683,1351,'_wpb_shortcodes_custom_css','.vc_custom_1497865822191{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497865831886{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497865841302{padding-top: 38px !important;}'),(7684,1351,'mkdf_page_content_behind_header_meta','no'),(7685,1351,'mkdf_page_content_top_padding_mobile','yes'),(7686,1351,'mkdf_page_background_color_meta','#ffffff'),(7687,1351,'mkdf_boxed_background_image_attachment_meta','fixed'),(7688,1351,'mkdf_blog_single_sidebar_layout_meta','sidebar-25-right'),(7689,1351,'mkdf_blog_masonry_gallery_fixed_dimensions_meta','default'),(7690,1351,'mkdf_blog_masonry_gallery_original_dimensions_meta','default'),(7691,1351,'mkdf_standard_post_full_width_featured_image_meta','yes'),(7692,1351,'mkdf_show_title_area_blog_meta','no'),(7693,1351,'mkdf_video_type_meta','social_networks'),(7694,1351,'mkdf_audio_type_meta','social_networks'),(7695,1351,'mkdf_disable_header_widget_logo_area_meta','no'),(7696,1351,'mkdf_disable_header_widget_menu_area_meta','no'),(7697,1351,'mkdf_menu_area_in_grid_meta','yes'),(7698,1351,'mkdf_disable_footer_meta','no'),(7699,1351,'_mkd-like','0'),(7700,1351,'mkdf_page_content_top_padding','83'),(7701,1351,'show_footer_custom_widget_areas','no'),(7704,1354,'_wpb_shortcodes_custom_css','.vc_custom_1497865768568{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497865776831{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497865785223{padding-top: 38px !important;}'),(7705,1354,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7706,1354,'_thumbnail_id','1347'),(7707,1354,'slide_template','default'),(7708,1354,'_wpb_vc_js_status','true'),(7709,1354,'_wpb_shortcodes_custom_css','.vc_custom_1497865768568{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497865776831{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497865785223{padding-top: 38px !important;}'),(7710,1354,'mkdf_page_content_behind_header_meta','no'),(7711,1354,'mkdf_page_content_top_padding_mobile','yes'),(7712,1354,'mkdf_page_background_color_meta','#ffffff'),(7713,1354,'mkdf_boxed_background_image_attachment_meta','fixed'),(7714,1354,'mkdf_blog_single_sidebar_layout_meta','sidebar-25-right'),(7715,1354,'mkdf_blog_masonry_gallery_fixed_dimensions_meta','default'),(7716,1354,'mkdf_blog_masonry_gallery_original_dimensions_meta','default'),(7717,1354,'mkdf_standard_post_full_width_featured_image_meta','yes'),(7718,1354,'mkdf_show_title_area_blog_meta','no'),(7719,1354,'mkdf_video_type_meta','social_networks'),(7720,1354,'mkdf_audio_type_meta','social_networks'),(7721,1354,'mkdf_disable_header_widget_logo_area_meta','no'),(7722,1354,'mkdf_disable_header_widget_menu_area_meta','no'),(7723,1354,'mkdf_menu_area_in_grid_meta','yes'),(7724,1354,'mkdf_disable_footer_meta','no'),(7725,1354,'_mkd-like','0'),(7726,1354,'mkdf_page_content_top_padding','83'),(7727,1354,'show_footer_custom_widget_areas','no'),(7730,1357,'_wpb_shortcodes_custom_css','.vc_custom_1497865607182{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497865617278{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497865628455{padding-top: 38px !important;}'),(7731,1357,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7732,1357,'_thumbnail_id','1358'),(7733,1357,'slide_template','default'),(7734,1357,'_wpb_vc_js_status','true'),(7735,1357,'_wpb_shortcodes_custom_css','.vc_custom_1497865607182{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497865617278{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497865628455{padding-top: 38px !important;}'),(7736,1357,'mkdf_page_content_behind_header_meta','no'),(7737,1357,'mkdf_page_content_top_padding_mobile','yes'),(7738,1357,'mkdf_page_background_color_meta','#ffffff'),(7739,1357,'mkdf_boxed_background_image_attachment_meta','fixed'),(7740,1357,'mkdf_blog_single_sidebar_layout_meta','sidebar-25-right'),(7741,1357,'mkdf_blog_masonry_gallery_fixed_dimensions_meta','default'),(7742,1357,'mkdf_blog_masonry_gallery_original_dimensions_meta','default'),(7743,1357,'mkdf_standard_post_full_width_featured_image_meta','yes'),(7744,1357,'mkdf_show_title_area_blog_meta','no'),(7745,1357,'mkdf_video_type_meta','social_networks'),(7746,1357,'mkdf_audio_type_meta','social_networks'),(7747,1357,'mkdf_disable_header_widget_logo_area_meta','no'),(7748,1357,'mkdf_disable_header_widget_menu_area_meta','no'),(7749,1357,'mkdf_menu_area_in_grid_meta','yes'),(7750,1357,'mkdf_disable_footer_meta','no'),(7751,1357,'_mkd-like','0'),(7752,1357,'mkdf_page_content_top_padding','83'),(7753,1357,'show_footer_custom_widget_areas','no'),(7756,1365,'_wpb_shortcodes_custom_css','.vc_custom_1496156484829{padding-top: 50px !important;}.vc_custom_1497865655688{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497865666425{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497865675176{padding-top: 38px !important;}'),(7757,1365,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7758,1365,'slide_template','default'),(7759,1365,'_wpb_vc_js_status','true'),(7760,1365,'_wpb_shortcodes_custom_css','.vc_custom_1496156484829{padding-top: 50px !important;}.vc_custom_1497865655688{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497865666425{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497865675176{padding-top: 38px !important;}'),(7761,1365,'mkdf_page_content_behind_header_meta','no'),(7762,1365,'mkdf_page_content_top_padding_mobile','yes'),(7763,1365,'mkdf_page_background_color_meta','#ffffff'),(7764,1365,'mkdf_boxed_background_image_attachment_meta','fixed'),(7765,1365,'mkdf_blog_single_sidebar_layout_meta','sidebar-25-right'),(7766,1365,'mkdf_blog_masonry_gallery_fixed_dimensions_meta','default'),(7767,1365,'mkdf_blog_masonry_gallery_original_dimensions_meta','default'),(7768,1365,'mkdf_standard_post_full_width_featured_image_meta','yes'),(7769,1365,'mkdf_show_title_area_blog_meta','no'),(7770,1365,'mkdf_video_type_meta','social_networks'),(7771,1365,'mkdf_audio_type_meta','social_networks'),(7772,1365,'mkdf_post_quote_text_meta','Either move or be moved.'),(7773,1365,'mkdf_post_quote_author_meta','Ezra Pound'),(7774,1365,'mkdf_disable_header_widget_logo_area_meta','no'),(7775,1365,'mkdf_disable_header_widget_menu_area_meta','no'),(7776,1365,'mkdf_menu_area_in_grid_meta','yes'),(7777,1365,'mkdf_disable_footer_meta','no'),(7778,1365,'_mkd-like','1'),(7779,1365,'mkdf_page_content_top_padding','83'),(7780,1365,'show_footer_custom_widget_areas','no'),(7781,1365,'_thumbnail_id','1160'),(7784,1400,'_wpb_shortcodes_custom_css','.vc_custom_1497865559368{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497865568351{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497865576950{padding-top: 38px !important;}'),(7785,1400,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7786,1400,'_thumbnail_id','1359'),(7787,1400,'slide_template','default'),(7788,1400,'_wpb_vc_js_status','true'),(7789,1400,'_wpb_shortcodes_custom_css','.vc_custom_1497865559368{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497865568351{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497865576950{padding-top: 38px !important;}'),(7790,1400,'mkdf_page_content_behind_header_meta','no'),(7791,1400,'mkdf_page_content_top_padding_mobile','yes'),(7792,1400,'mkdf_page_background_color_meta','#ffffff'),(7793,1400,'mkdf_boxed_background_image_attachment_meta','fixed'),(7794,1400,'mkdf_blog_single_sidebar_layout_meta','sidebar-25-right'),(7795,1400,'mkdf_blog_masonry_gallery_fixed_dimensions_meta','default'),(7796,1400,'mkdf_blog_masonry_gallery_original_dimensions_meta','default'),(7797,1400,'mkdf_standard_post_full_width_featured_image_meta','yes'),(7798,1400,'mkdf_show_title_area_blog_meta','no'),(7799,1400,'mkdf_video_type_meta','social_networks'),(7800,1400,'mkdf_audio_type_meta','social_networks'),(7801,1400,'mkdf_disable_header_widget_logo_area_meta','no'),(7802,1400,'mkdf_disable_header_widget_menu_area_meta','no'),(7803,1400,'mkdf_menu_area_in_grid_meta','yes'),(7804,1400,'mkdf_disable_footer_meta','no'),(7805,1400,'_mkd-like','0'),(7806,1400,'mkdf_page_content_top_padding','83'),(7807,1400,'show_footer_custom_widget_areas','no'),(7810,1406,'_wpb_shortcodes_custom_css','.vc_custom_1497865511815{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497865520279{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497865530431{padding-top: 38px !important;}'),(7811,1406,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7812,1406,'_thumbnail_id','1360'),(7813,1406,'slide_template','default'),(7814,1406,'_wpb_vc_js_status','true'),(7815,1406,'_wpb_shortcodes_custom_css','.vc_custom_1497865511815{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497865520279{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497865530431{padding-top: 38px !important;}'),(7816,1406,'mkdf_page_content_behind_header_meta','no'),(7817,1406,'mkdf_page_content_top_padding_mobile','yes'),(7818,1406,'mkdf_page_background_color_meta','#ffffff'),(7819,1406,'mkdf_boxed_background_image_attachment_meta','fixed'),(7820,1406,'mkdf_blog_single_sidebar_layout_meta','sidebar-25-right'),(7821,1406,'mkdf_blog_masonry_gallery_fixed_dimensions_meta','default'),(7822,1406,'mkdf_blog_masonry_gallery_original_dimensions_meta','default'),(7823,1406,'mkdf_standard_post_full_width_featured_image_meta','yes'),(7824,1406,'mkdf_show_title_area_blog_meta','no'),(7825,1406,'mkdf_video_type_meta','social_networks'),(7826,1406,'mkdf_audio_type_meta','social_networks'),(7827,1406,'mkdf_disable_header_widget_logo_area_meta','no'),(7828,1406,'mkdf_disable_header_widget_menu_area_meta','no'),(7829,1406,'mkdf_menu_area_in_grid_meta','yes'),(7830,1406,'mkdf_disable_footer_meta','no'),(7831,1406,'_mkd-like','0'),(7832,1406,'mkdf_page_content_top_padding','83'),(7833,1406,'show_footer_custom_widget_areas','no'),(7834,1740,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7835,1740,'_wc_review_count','1'),(7836,1740,'_wc_rating_count','a:1:{i:4;i:1;}'),(7837,1740,'_wc_average_rating','4.00'),(7838,1740,'mkdf_show_title_area_woo_meta','yes'),(7839,1740,'_sku','001'),(7840,1740,'_regular_price','24.99'),(7841,1740,'_sale_price','20'),(7842,1740,'_sale_price_dates_from',''),(7843,1740,'_sale_price_dates_to',''),(7844,1740,'total_sales','0'),(7845,1740,'_tax_status','taxable'),(7846,1740,'_tax_class',''),(7847,1740,'_manage_stock','no'),(7848,1740,'_backorders','no'),(7849,1740,'_sold_individually','no'),(7850,1740,'_weight','2'),(7851,1740,'_length','10'),(7852,1740,'_width','5'),(7853,1740,'_height','15'),(7854,1740,'_upsell_ids','a:0:{}'),(7855,1740,'_crosssell_ids','a:0:{}'),(7856,1740,'_purchase_note',''),(7857,1740,'_default_attributes','a:0:{}'),(7858,1740,'_virtual','no'),(7859,1740,'_downloadable','no'),(7860,1740,'_product_image_gallery','1750,1748,1749'),(7861,1740,'_download_limit','-1'),(7862,1740,'_download_expiry','-1'),(7863,1740,'_stock',''),(7864,1740,'_stock_status','instock'),(7865,1740,'_product_version','9.3.3'),(7866,1740,'_price','20'),(7867,1740,'slide_template','default'),(7868,1740,'_product_attributes','a:2:{s:8:\"pa_color\";a:6:{s:4:\"name\";s:8:\"pa_color\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}s:11:\"pa_material\";a:6:{s:4:\"name\";s:11:\"pa_material\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(7869,1740,'_wp_old_slug','seo-marketing-basic'),(7870,1740,'_wpb_vc_js_status','false'),(7871,1740,'_thumbnail_id','1747'),(7872,1829,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7873,1829,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7874,1829,'_wc_review_count','1'),(7875,1829,'_wc_rating_count','a:1:{i:4;i:1;}'),(7876,1829,'_wc_average_rating','4.00'),(7877,1829,'_thumbnail_id','1816'),(7878,1829,'mkdf_show_title_area_woo_meta','yes'),(7879,1829,'_sku','009'),(7880,1829,'_regular_price','24.99'),(7881,1829,'_sale_price','12'),(7882,1829,'_sale_price_dates_from',''),(7883,1829,'_sale_price_dates_to',''),(7884,1829,'total_sales','0'),(7885,1829,'_tax_status','taxable'),(7886,1829,'_tax_class',''),(7887,1829,'_manage_stock','no'),(7888,1829,'_backorders','no'),(7889,1829,'_sold_individually','no'),(7890,1829,'_weight','2'),(7891,1829,'_length','10'),(7892,1829,'_width','5'),(7893,1829,'_height','15'),(7894,1829,'_upsell_ids','a:0:{}'),(7895,1829,'_crosssell_ids','a:0:{}'),(7896,1829,'_purchase_note',''),(7897,1829,'_default_attributes','a:0:{}'),(7898,1829,'_virtual','no'),(7899,1829,'_downloadable','no'),(7900,1829,'_product_image_gallery','1817,1819,1818'),(7901,1829,'_download_limit','-1'),(7902,1829,'_download_expiry','-1'),(7903,1829,'_stock',''),(7904,1829,'_stock_status','outofstock'),(7905,1829,'_product_version','9.3.3'),(7906,1829,'slide_template','default'),(7907,1829,'_product_attributes','a:2:{s:8:\"pa_color\";a:6:{s:4:\"name\";s:8:\"pa_color\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}s:11:\"pa_material\";a:6:{s:4:\"name\";s:11:\"pa_material\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'),(7908,1829,'_wp_old_slug','seo-marketing-basic'),(7909,1829,'_dp_original','1740'),(7910,1829,'_price','22.99'),(7911,1829,'_price','24.99'),(7912,1829,'_price','25.99'),(7913,1829,'_price','29.99'),(7914,1829,'_wpb_vc_js_status','false'),(7915,1849,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7916,1849,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7917,1849,'_wc_review_count','1'),(7918,1849,'_wc_rating_count','a:1:{i:5;i:1;}'),(7919,1849,'_wc_average_rating','5.00'),(7920,1849,'mkdf_show_title_area_woo_meta','yes'),(7921,1849,'_sku','007'),(7922,1849,'_regular_price','24.99'),(7923,1849,'_sale_price','12'),(7924,1849,'_sale_price_dates_from',''),(7925,1849,'_sale_price_dates_to',''),(7926,1849,'total_sales','0'),(7927,1849,'_tax_status','taxable'),(7928,1849,'_tax_class',''),(7929,1849,'_manage_stock','no'),(7930,1849,'_backorders','no'),(7931,1849,'_sold_individually','no'),(7932,1849,'_weight','2'),(7933,1849,'_length','10'),(7934,1849,'_width','5'),(7935,1849,'_height','15'),(7936,1849,'_upsell_ids','a:0:{}'),(7937,1849,'_crosssell_ids','a:0:{}'),(7938,1849,'_purchase_note',''),(7939,1849,'_default_attributes','a:0:{}'),(7940,1849,'_virtual','no'),(7941,1849,'_downloadable','no'),(7942,1849,'_product_image_gallery','1867,1873,1866'),(7943,1849,'_download_limit','-1'),(7944,1849,'_download_expiry','-1'),(7945,1849,'_stock',''),(7946,1849,'_stock_status','instock'),(7947,1849,'_product_version','9.3.3'),(7948,1849,'slide_template','default'),(7949,1849,'_product_attributes','a:2:{s:8:\"pa_color\";a:6:{s:4:\"name\";s:8:\"pa_color\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}s:11:\"pa_material\";a:6:{s:4:\"name\";s:11:\"pa_material\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(7950,1849,'_wp_old_slug','seo-marketing-basic'),(7951,1849,'_dp_original','1740'),(7952,1849,'_wpb_vc_js_status','false'),(7953,1849,'_thumbnail_id','1871'),(7954,1849,'_wp_old_slug','accelerate-career'),(7955,1849,'_children','a:0:{}'),(7956,1849,'_price','12'),(7957,1880,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7958,1880,'_sku','002'),(7959,1880,'_regular_price','15.99'),(7960,1880,'_sale_price',''),(7961,1880,'_sale_price_dates_from',''),(7962,1880,'_sale_price_dates_to',''),(7963,1880,'total_sales','0'),(7964,1880,'_tax_status','taxable'),(7965,1880,'_tax_class',''),(7966,1880,'_manage_stock','no'),(7967,1880,'_backorders','no'),(7968,1880,'_sold_individually','no'),(7969,1880,'_weight','2'),(7970,1880,'_length','10'),(7971,1880,'_width','5'),(7972,1880,'_height','15'),(7973,1880,'_upsell_ids','a:0:{}'),(7974,1880,'_crosssell_ids','a:0:{}'),(7975,1880,'_purchase_note',''),(7976,1880,'_default_attributes','a:0:{}'),(7977,1880,'_virtual','no'),(7978,1880,'_downloadable','no'),(7979,1880,'_product_image_gallery','1885,1883,1884'),(7980,1880,'_download_limit','-1'),(7981,1880,'_download_expiry','-1'),(7982,1880,'_thumbnail_id','1882'),(7983,1880,'_stock',''),(7984,1880,'_stock_status','instock'),(7985,1880,'_wc_average_rating','4.00'),(7986,1880,'_wc_rating_count','a:1:{i:4;i:1;}'),(7987,1880,'_wc_review_count','1'),(7988,1880,'_downloadable_files','a:0:{}'),(7989,1880,'_product_attributes','a:2:{s:8:\"pa_color\";a:6:{s:4:\"name\";s:8:\"pa_color\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}s:11:\"pa_material\";a:6:{s:4:\"name\";s:11:\"pa_material\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(7990,1880,'_product_version','9.3.3'),(7991,1880,'_price','15.99'),(7992,1880,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7993,1880,'mkdf_show_title_area_woo_meta','yes'),(7994,1880,'slide_template','default'),(7995,1880,'_wpb_vc_js_status','false'),(7996,1880,'_wp_old_slug','accelerate-career-2'),(7997,1880,'_product_url','https://www.amazon.com/Taking-Charge-Your-Career-Direction/dp/0534574262/ref=sr_1_19?ie=UTF8&#038;qid=1496841367&#038;sr=8-19&#038;keywords=career+books'),(7998,1880,'_button_text','Add to cart'),(7999,1897,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8000,1897,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8001,1897,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8002,1897,'_sku','003'),(8003,1897,'_regular_price','18.99'),(8004,1897,'_sale_price',''),(8005,1897,'_sale_price_dates_from',''),(8006,1897,'_sale_price_dates_to',''),(8007,1897,'total_sales','0'),(8008,1897,'_tax_status','taxable'),(8009,1897,'_tax_class',''),(8010,1897,'_manage_stock','no'),(8011,1897,'_backorders','no'),(8012,1897,'_sold_individually','no'),(8013,1897,'_weight','2'),(8014,1897,'_length','10'),(8015,1897,'_width','5'),(8016,1897,'_height','15'),(8017,1897,'_upsell_ids','a:0:{}'),(8018,1897,'_crosssell_ids','a:0:{}'),(8019,1897,'_purchase_note',''),(8020,1897,'_default_attributes','a:0:{}'),(8021,1897,'_virtual','no'),(8022,1897,'_downloadable','no'),(8023,1897,'_product_image_gallery','1898,1900,1899'),(8024,1897,'_download_limit','-1'),(8025,1897,'_download_expiry','-1'),(8026,1897,'_thumbnail_id','1898'),(8027,1897,'_stock',''),(8028,1897,'_stock_status','instock'),(8029,1897,'_wc_average_rating','3.00'),(8030,1897,'_wc_rating_count','a:1:{i:3;i:1;}'),(8031,1897,'_wc_review_count','1'),(8032,1897,'_downloadable_files','a:0:{}'),(8033,1897,'_product_attributes','a:2:{s:8:\"pa_color\";a:6:{s:4:\"name\";s:8:\"pa_color\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}s:11:\"pa_material\";a:6:{s:4:\"name\";s:11:\"pa_material\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(8034,1897,'_product_version','9.3.3'),(8035,1897,'_price','18.99'),(8036,1897,'mkdf_show_title_area_woo_meta','yes'),(8037,1897,'slide_template','default'),(8038,1897,'_wpb_vc_js_status','false'),(8039,1897,'_wp_old_slug','accelerate-career-2'),(8040,1897,'_dp_original','1880'),(8041,1908,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8042,1908,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8043,1908,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8044,1908,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8045,1908,'_sku','004'),(8046,1908,'_regular_price','18.99'),(8047,1908,'_sale_price',''),(8048,1908,'_sale_price_dates_from',''),(8049,1908,'_sale_price_dates_to',''),(8050,1908,'total_sales','0'),(8051,1908,'_tax_status','taxable'),(8052,1908,'_tax_class',''),(8053,1908,'_manage_stock','no'),(8054,1908,'_backorders','no'),(8055,1908,'_sold_individually','no'),(8056,1908,'_weight','2'),(8057,1908,'_length','10'),(8058,1908,'_width','5'),(8059,1908,'_height','15'),(8060,1908,'_upsell_ids','a:0:{}'),(8061,1908,'_crosssell_ids','a:0:{}'),(8062,1908,'_purchase_note',''),(8063,1908,'_default_attributes','a:0:{}'),(8064,1908,'_virtual','no'),(8065,1908,'_downloadable','no'),(8066,1908,'_product_image_gallery','1898,1900,1899'),(8067,1908,'_download_limit','-1'),(8068,1908,'_download_expiry','-1'),(8069,1908,'_thumbnail_id','1910'),(8070,1908,'_stock',''),(8071,1908,'_stock_status','instock'),(8072,1908,'_wc_average_rating','5.00'),(8073,1908,'_wc_rating_count','a:1:{i:5;i:1;}'),(8074,1908,'_wc_review_count','1'),(8075,1908,'_downloadable_files','a:0:{}'),(8076,1908,'_product_attributes','a:2:{s:8:\"pa_color\";a:6:{s:4:\"name\";s:8:\"pa_color\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}s:11:\"pa_material\";a:6:{s:4:\"name\";s:11:\"pa_material\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(8077,1908,'_product_version','9.3.3'),(8078,1908,'mkdf_show_title_area_woo_meta','yes'),(8079,1908,'slide_template','default'),(8080,1908,'_wpb_vc_js_status','false'),(8081,1908,'_wp_old_slug','accelerate-career-2'),(8082,1908,'_dp_original','1897'),(8083,1908,'_children','a:2:{i:0;i:1849;i:1;i:1897;}'),(8084,1908,'_price','12'),(8085,1908,'_price','18.99'),(8086,1917,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8087,1917,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8088,1917,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8089,1917,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8090,1917,'_sku','005'),(8091,1917,'_regular_price','22'),(8092,1917,'_sale_price',''),(8093,1917,'_sale_price_dates_from',''),(8094,1917,'_sale_price_dates_to',''),(8095,1917,'total_sales','0'),(8096,1917,'_tax_status','taxable'),(8097,1917,'_tax_class',''),(8098,1917,'_manage_stock','no'),(8099,1917,'_backorders','no'),(8100,1917,'_sold_individually','no'),(8101,1917,'_weight','2'),(8102,1917,'_length','10'),(8103,1917,'_width','5'),(8104,1917,'_height','15'),(8105,1917,'_upsell_ids','a:0:{}'),(8106,1917,'_crosssell_ids','a:0:{}'),(8107,1917,'_purchase_note',''),(8108,1917,'_default_attributes','a:0:{}'),(8109,1917,'_virtual','no'),(8110,1917,'_downloadable','no'),(8111,1917,'_product_image_gallery','1926,1923,1921'),(8112,1917,'_download_limit','-1'),(8113,1917,'_download_expiry','-1'),(8114,1917,'_thumbnail_id','1925'),(8115,1917,'_stock',''),(8116,1917,'_stock_status','outofstock'),(8117,1917,'_wc_average_rating','5.00'),(8118,1917,'_wc_rating_count','a:1:{i:5;i:1;}'),(8119,1917,'_wc_review_count','1'),(8120,1917,'_downloadable_files','a:0:{}'),(8121,1917,'_product_attributes','a:2:{s:8:\"pa_color\";a:6:{s:4:\"name\";s:8:\"pa_color\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}s:11:\"pa_material\";a:6:{s:4:\"name\";s:11:\"pa_material\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(8122,1917,'_product_version','9.3.3'),(8123,1917,'_price','22'),(8124,1917,'mkdf_show_title_area_woo_meta','yes'),(8125,1917,'slide_template','default'),(8126,1917,'_wpb_vc_js_status','false'),(8127,1917,'_wp_old_slug','accelerate-career-2'),(8128,1917,'_dp_original','1897'),(8129,1929,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8130,1929,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8131,1929,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8132,1929,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8133,1929,'_sku','006'),(8134,1929,'_regular_price','10.99'),(8135,1929,'_sale_price',''),(8136,1929,'_sale_price_dates_from',''),(8137,1929,'_sale_price_dates_to',''),(8138,1929,'total_sales','0'),(8139,1929,'_tax_status','taxable'),(8140,1929,'_tax_class',''),(8141,1929,'_manage_stock','no'),(8142,1929,'_backorders','no'),(8143,1929,'_sold_individually','no'),(8144,1929,'_weight','2'),(8145,1929,'_length','10'),(8146,1929,'_width','5'),(8147,1929,'_height','15'),(8148,1929,'_upsell_ids','a:0:{}'),(8149,1929,'_crosssell_ids','a:0:{}'),(8150,1929,'_purchase_note',''),(8151,1929,'_default_attributes','a:0:{}'),(8152,1929,'_virtual','no'),(8153,1929,'_downloadable','no'),(8154,1929,'_product_image_gallery','1934,1933,1932'),(8155,1929,'_download_limit','-1'),(8156,1929,'_download_expiry','-1'),(8157,1929,'_thumbnail_id','1931'),(8158,1929,'_stock',''),(8159,1929,'_stock_status','instock'),(8160,1929,'_wc_average_rating','5.00'),(8161,1929,'_wc_rating_count','a:1:{i:5;i:1;}'),(8162,1929,'_wc_review_count','1'),(8163,1929,'_downloadable_files','a:0:{}'),(8164,1929,'_product_attributes','a:2:{s:8:\"pa_color\";a:6:{s:4:\"name\";s:8:\"pa_color\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}s:11:\"pa_material\";a:6:{s:4:\"name\";s:11:\"pa_material\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(8165,1929,'_product_version','9.3.3'),(8166,1929,'_price','10.99'),(8167,1929,'mkdf_show_title_area_woo_meta','yes'),(8168,1929,'slide_template','default'),(8169,1929,'_wpb_vc_js_status','false'),(8170,1929,'_wp_old_slug','accelerate-career-2'),(8171,1929,'_dp_original','1897'),(8172,1936,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8173,1936,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8174,1936,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8175,1936,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8176,1936,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8177,1936,'_sku','006'),(8178,1936,'_regular_price','39.99'),(8179,1936,'_sale_price',''),(8180,1936,'_sale_price_dates_from',''),(8181,1936,'_sale_price_dates_to',''),(8182,1936,'total_sales','0'),(8183,1936,'_tax_status','taxable'),(8184,1936,'_tax_class',''),(8185,1936,'_manage_stock','no'),(8186,1936,'_backorders','no'),(8187,1936,'_sold_individually','no'),(8188,1936,'_weight','2'),(8189,1936,'_length','10'),(8190,1936,'_width','5'),(8191,1936,'_height','15'),(8192,1936,'_upsell_ids','a:0:{}'),(8193,1936,'_crosssell_ids','a:0:{}'),(8194,1936,'_purchase_note',''),(8195,1936,'_default_attributes','a:0:{}'),(8196,1936,'_virtual','no'),(8197,1936,'_downloadable','no'),(8198,1936,'_product_image_gallery','1954,1955,1956'),(8199,1936,'_download_limit','-1'),(8200,1936,'_download_expiry','-1'),(8201,1936,'_thumbnail_id','1953'),(8202,1936,'_stock',''),(8203,1936,'_stock_status','instock'),(8204,1936,'_wc_average_rating','4.00'),(8205,1936,'_wc_rating_count','a:1:{i:4;i:1;}'),(8206,1936,'_wc_review_count','1'),(8207,1936,'_downloadable_files','a:0:{}'),(8208,1936,'_product_attributes','a:2:{s:8:\"pa_color\";a:6:{s:4:\"name\";s:8:\"pa_color\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}s:11:\"pa_material\";a:6:{s:4:\"name\";s:11:\"pa_material\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(8209,1936,'_product_version','9.3.3'),(8210,1936,'_price','39.99'),(8211,1936,'mkdf_show_title_area_woo_meta','yes'),(8212,1936,'slide_template','default'),(8213,1936,'_wpb_vc_js_status','false'),(8214,1936,'_wp_old_slug','accelerate-career-2'),(8215,1936,'_dp_original','1929'),(8218,2309,'_wpb_shortcodes_custom_css','.vc_custom_1497866074478{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497868757042{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497868776323{padding-top: 38px !important;}'),(8219,2309,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8220,2309,'_wpb_shortcodes_custom_css','.vc_custom_1497866074478{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497868757042{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497868776323{padding-top: 38px !important;}'),(8221,2309,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8222,2309,'_thumbnail_id','2311'),(8223,2309,'slide_template','default'),(8224,2309,'_wpb_vc_js_status','true'),(8225,2309,'_wpb_shortcodes_custom_css','.vc_custom_1497866074478{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497868757042{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497868776323{padding-top: 38px !important;}'),(8226,2309,'mkdf_page_content_behind_header_meta','no'),(8227,2309,'mkdf_page_content_top_padding_mobile','yes'),(8228,2309,'mkdf_page_background_color_meta','#ffffff'),(8229,2309,'mkdf_boxed_background_image_attachment_meta','fixed'),(8230,2309,'mkdf_blog_single_sidebar_layout_meta','sidebar-25-right'),(8231,2309,'mkdf_blog_masonry_gallery_fixed_dimensions_meta','default'),(8232,2309,'mkdf_blog_masonry_gallery_original_dimensions_meta','default'),(8233,2309,'mkdf_standard_post_full_width_featured_image_meta','yes'),(8234,2309,'mkdf_show_title_area_blog_meta','no'),(8235,2309,'mkdf_video_type_meta','social_networks'),(8236,2309,'mkdf_audio_type_meta','social_networks'),(8237,2309,'mkdf_disable_header_widget_logo_area_meta','no'),(8238,2309,'mkdf_disable_header_widget_menu_area_meta','no'),(8239,2309,'mkdf_menu_area_in_grid_meta','yes'),(8240,2309,'mkdf_disable_footer_meta','no'),(8241,2309,'_mkd-like','0'),(8242,2309,'mkdf_page_content_top_padding','83'),(8243,2309,'_wp_old_slug','actively-growing-and-achieving'),(8244,2309,'_dp_original','1419'),(8245,2309,'show_footer_custom_widget_areas','no'),(8248,2314,'_wpb_shortcodes_custom_css','.vc_custom_1497868947451{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497868956875{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497868967859{padding-top: 38px !important;}'),(8249,2314,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8250,2314,'_wpb_shortcodes_custom_css','.vc_custom_1497868947451{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497868956875{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497868967859{padding-top: 38px !important;}'),(8251,2314,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8252,2314,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8253,2314,'_wpb_shortcodes_custom_css','.vc_custom_1497868947451{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497868956875{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497868967859{padding-top: 38px !important;}'),(8254,2314,'_wpb_shortcodes_custom_css','.vc_custom_1497868947451{margin-top: -12px !important;padding-bottom: 27px !important;}.vc_custom_1497868956875{padding-top: 25px !important;padding-bottom: 53px !important;}.vc_custom_1497868967859{padding-top: 38px !important;}'),(8255,2314,'_thumbnail_id','2315'),(8256,2314,'slide_template','default'),(8257,2314,'_wpb_vc_js_status','true'),(8258,2314,'mkdf_page_content_behind_header_meta','no'),(8259,2314,'mkdf_page_content_top_padding_mobile','yes'),(8260,2314,'mkdf_page_background_color_meta','#ffffff'),(8261,2314,'mkdf_boxed_background_image_attachment_meta','fixed'),(8262,2314,'mkdf_blog_single_sidebar_layout_meta','sidebar-25-right'),(8263,2314,'mkdf_blog_masonry_gallery_fixed_dimensions_meta','default'),(8264,2314,'mkdf_blog_masonry_gallery_original_dimensions_meta','default'),(8265,2314,'mkdf_standard_post_full_width_featured_image_meta','yes'),(8266,2314,'mkdf_show_title_area_blog_meta','no'),(8267,2314,'mkdf_video_type_meta','social_networks'),(8268,2314,'mkdf_audio_type_meta','social_networks'),(8269,2314,'mkdf_disable_header_widget_logo_area_meta','no'),(8270,2314,'mkdf_disable_header_widget_menu_area_meta','no'),(8271,2314,'mkdf_menu_area_in_grid_meta','yes'),(8272,2314,'mkdf_disable_footer_meta','no'),(8273,2314,'_mkd-like','0'),(8274,2314,'mkdf_page_content_top_padding','83'),(8275,2314,'_wp_old_slug','actively-growing-and-achieving'),(8276,2314,'_dp_original','2309'),(8277,2314,'show_footer_custom_widget_areas','no'),(8278,4127,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8279,4127,'mkdf_question_type_meta','single_choice'),(8280,4127,'mkdf_question_answer_title_meta','a:3:{i:0;s:5:\"Field\";i:1;s:6:\"Record\";i:2;s:4:\"File\";}'),(8281,4127,'mkdf_question_answer_true_meta','a:3:{i:0;s:3:\"yes\";i:1;s:0:\"\";i:2;s:0:\"\";}'),(8282,4127,'slide_template',''),(8283,4127,'mkdf_question_mark_meta','5'),(8284,4127,'_wp_old_slug','which-of-the-following-would-most-likely-be-used-in-a-negative-sense'),(8285,38,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8286,38,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8287,38,'mkdf_question_type_meta','single_choice'),(8288,38,'mkdf_question_answer_title_meta','a:3:{i:0;s:23:\"Who is missing? Anyone?\";i:1;s:34:\"Let\'s start by taking a roll call.\";i:2;s:33:\"Everyone here? Let\'s get started!\";}'),(8289,38,'mkdf_question_answer_true_meta','a:3:{i:0;s:2:\"no\";i:1;s:3:\"yes\";i:2;s:2:\"no\";}'),(8290,38,'slide_template','default'),(8291,38,'mkdf_question_mark_meta','5'),(8292,38,'_dp_original','15'),(8293,38,'mkdf_question_hint_meta','There is one correct answer. Notice: The keyword is -introduce-.'),(8294,40,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8295,40,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8296,40,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8297,40,'mkdf_question_type_meta','text'),(8298,40,'mkdf_question_answer_title_meta','a:3:{i:0;s:23:\"Who is missing? Anyone?\";i:1;s:33:\"Everyone here? Let\'s get started!\";i:2;s:34:\"Let\'s start by taking a roll call.\";}'),(8299,40,'mkdf_question_answer_true_meta','a:3:{i:0;s:2:\"no\";i:1;s:2:\"no\";i:2;s:3:\"yes\";}'),(8300,40,'slide_template',''),(8301,40,'mkdf_question_mark_meta','5'),(8302,40,'mkdf_question_hint_meta','When asking a tough question indirectly you should choose your words carefully.'),(8303,40,'_dp_original','38'),(8304,40,'mkdf_answers_text_meta','I wonder if you could explain'),(8305,209,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8306,209,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8307,209,'mkdf_question_type_meta','multi_choice'),(8308,209,'mkdf_question_answer_title_meta','a:3:{i:0;s:7:\"Italian\";i:1;s:6:\"German\";i:2;s:10:\"Portuguese\";}'),(8309,209,'mkdf_question_answer_true_meta','a:3:{i:0;s:3:\"yes\";i:1;s:2:\"no\";i:2;s:3:\"yes\";}'),(8310,209,'slide_template','default'),(8311,209,'mkdf_question_mark_meta','5'),(8312,209,'_dp_original','15'),(8313,209,'mkdf_answers_text_meta','Ella no escribe.'),(8314,209,'mkdf_question_hint_meta','There are 2 correct answers. Notice: One language is from a different language family.'),(8315,209,'_wp_old_slug','translate-this-text-he-drinks-water'),(8316,239,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8317,239,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8318,239,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8319,239,'mkdf_question_type_meta','text'),(8320,239,'mkdf_question_answer_title_meta','a:3:{i:0;s:16:\"Fully appreciate\";i:1;s:21:\"Bitterly disappointed\";i:2;s:14:\"Greatly admire\";}'),(8321,239,'mkdf_question_answer_true_meta','a:3:{i:0;s:2:\"no\";i:1;s:3:\"yes\";i:2;s:2:\"no\";}'),(8322,239,'slide_template',''),(8323,239,'mkdf_question_mark_meta','5'),(8324,239,'mkdf_answers_text_meta','International Business Machines'),(8325,239,'_dp_original','209'),(8326,239,'_wp_old_slug','translate-this-text-he-drinks-water-2'),(8327,240,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8328,240,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8329,240,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8330,240,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8331,240,'mkdf_question_type_meta','single_choice'),(8332,240,'mkdf_question_answer_title_meta','a:3:{i:0;s:13:\"Open Software\";i:1;s:16:\"Operating System\";i:2;s:14:\"Optical Sensor\";}'),(8333,240,'mkdf_question_answer_true_meta','a:3:{i:0;s:2:\"no\";i:1;s:3:\"yes\";i:2;s:0:\"\";}'),(8334,240,'slide_template',''),(8335,240,'mkdf_question_mark_meta','5'),(8336,240,'mkdf_answers_text_meta','Do we drink milk?'),(8337,240,'_dp_original','239'),(8338,240,'_wp_old_slug','translate-this-text-bebemos-leche-nosotras'),(8339,257,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8340,257,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8341,257,'mkdf_question_type_meta','single_choice'),(8342,257,'mkdf_question_answer_title_meta','a:3:{i:0;s:5:\"Field\";i:1;s:6:\"Record\";i:2;s:4:\"File\";}'),(8343,257,'mkdf_question_answer_true_meta','a:3:{i:0;s:3:\"yes\";i:1;s:0:\"\";i:2;s:0:\"\";}'),(8344,257,'slide_template','default'),(8345,257,'mkdf_question_mark_meta','5'),(8346,257,'_dp_original','15'),(8347,258,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8348,258,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8349,258,'mkdf_question_type_meta','single_choice'),(8350,258,'mkdf_question_answer_title_meta','a:3:{i:0;s:5:\"Field\";i:1;s:6:\"Record\";i:2;s:4:\"File\";}'),(8351,258,'mkdf_question_answer_true_meta','a:3:{i:0;s:3:\"yes\";i:1;s:0:\"\";i:2;s:0:\"\";}'),(8352,258,'slide_template','default'),(8353,258,'mkdf_question_mark_meta','5'),(8354,258,'_dp_original','15'),(8396,1831,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8397,1831,'_variation_description',''),(8398,1831,'_sku','010'),(8399,1831,'_regular_price','24.99'),(8400,1831,'_sale_price',''),(8401,1831,'_sale_price_dates_from',''),(8402,1831,'_sale_price_dates_to',''),(8403,1831,'total_sales','0'),(8404,1831,'_tax_status','taxable'),(8405,1831,'_tax_class',''),(8406,1831,'_manage_stock','no'),(8407,1831,'_backorders','no'),(8408,1831,'_sold_individually','no'),(8409,1831,'_weight','2'),(8410,1831,'_length','10'),(8411,1831,'_width','5'),(8412,1831,'_height','15'),(8413,1831,'_upsell_ids','a:0:{}'),(8414,1831,'_crosssell_ids','a:0:{}'),(8415,1831,'_purchase_note',''),(8416,1831,'_default_attributes','a:0:{}'),(8417,1831,'_virtual','no'),(8418,1831,'_downloadable','no'),(8419,1831,'_product_image_gallery',''),(8420,1831,'_download_limit','-1'),(8421,1831,'_download_expiry','-1'),(8422,1831,'_stock',''),(8423,1831,'_stock_status','instock'),(8424,1831,'_wc_average_rating','0'),(8425,1831,'_wc_rating_count','a:0:{}'),(8426,1831,'_wc_review_count','0'),(8427,1831,'_downloadable_files','a:0:{}'),(8428,1831,'attribute_pa_material','paperback'),(8429,1831,'attribute_pa_color','yellow'),(8430,1831,'_price','24.99'),(8431,1831,'_product_version','3.0.7'),(8432,1831,'_thumbnail_id','1819'),(8433,1832,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8434,1832,'_variation_description',''),(8435,1832,'_sku','011'),(8436,1832,'_regular_price','29.99'),(8437,1832,'_sale_price',''),(8438,1832,'_sale_price_dates_from',''),(8439,1832,'_sale_price_dates_to',''),(8440,1832,'total_sales','0'),(8441,1832,'_tax_status','taxable'),(8442,1832,'_tax_class',''),(8443,1832,'_manage_stock','no'),(8444,1832,'_backorders','no'),(8445,1832,'_sold_individually','no'),(8446,1832,'_weight','1'),(8447,1832,'_length','10'),(8448,1832,'_width','5'),(8449,1832,'_height','15'),(8450,1832,'_upsell_ids','a:0:{}'),(8451,1832,'_crosssell_ids','a:0:{}'),(8452,1832,'_purchase_note',''),(8453,1832,'_default_attributes','a:0:{}'),(8454,1832,'_virtual','no'),(8455,1832,'_downloadable','no'),(8456,1832,'_product_image_gallery',''),(8457,1832,'_download_limit','-1'),(8458,1832,'_download_expiry','-1'),(8459,1832,'_stock',''),(8460,1832,'_stock_status','instock'),(8461,1832,'_wc_average_rating','0'),(8462,1832,'_wc_rating_count','a:0:{}'),(8463,1832,'_wc_review_count','0'),(8464,1832,'_downloadable_files','a:0:{}'),(8465,1832,'attribute_pa_material','hardcover'),(8466,1832,'attribute_pa_color','yellow'),(8467,1832,'_price','29.99'),(8468,1832,'_product_version','3.0.7'),(8469,1832,'_thumbnail_id','1819'),(8470,1833,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8471,1833,'_variation_description',''),(8472,1833,'_sku','012'),(8473,1833,'_regular_price','22.99'),(8474,1833,'_sale_price',''),(8475,1833,'_sale_price_dates_from',''),(8476,1833,'_sale_price_dates_to',''),(8477,1833,'total_sales','0'),(8478,1833,'_tax_status','taxable'),(8479,1833,'_tax_class',''),(8480,1833,'_manage_stock','no'),(8481,1833,'_backorders','no'),(8482,1833,'_sold_individually','no'),(8483,1833,'_weight','1'),(8484,1833,'_length','10'),(8485,1833,'_width','5'),(8486,1833,'_height','15'),(8487,1833,'_upsell_ids','a:0:{}'),(8488,1833,'_crosssell_ids','a:0:{}'),(8489,1833,'_purchase_note',''),(8490,1833,'_default_attributes','a:0:{}'),(8491,1833,'_virtual','no'),(8492,1833,'_downloadable','no'),(8493,1833,'_product_image_gallery',''),(8494,1833,'_download_limit','-1'),(8495,1833,'_download_expiry','-1'),(8496,1833,'_stock',''),(8497,1833,'_stock_status','instock'),(8498,1833,'_wc_average_rating','0'),(8499,1833,'_wc_rating_count','a:0:{}'),(8500,1833,'_wc_review_count','0'),(8501,1833,'_downloadable_files','a:0:{}'),(8502,1833,'attribute_pa_material','paperback'),(8503,1833,'attribute_pa_color','gray'),(8504,1833,'_price','22.99'),(8505,1833,'_product_version','3.0.7'),(8506,1833,'_thumbnail_id','1817'),(8507,1834,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8508,1834,'_variation_description',''),(8509,1834,'_sku','013'),(8510,1834,'_regular_price','29.99'),(8511,1834,'_sale_price',''),(8512,1834,'_sale_price_dates_from',''),(8513,1834,'_sale_price_dates_to',''),(8514,1834,'total_sales','0'),(8515,1834,'_tax_status','taxable'),(8516,1834,'_tax_class',''),(8517,1834,'_manage_stock','no'),(8518,1834,'_backorders','no'),(8519,1834,'_sold_individually','no'),(8520,1834,'_weight','2'),(8521,1834,'_length','10'),(8522,1834,'_width','5'),(8523,1834,'_height','15'),(8524,1834,'_upsell_ids','a:0:{}'),(8525,1834,'_crosssell_ids','a:0:{}'),(8526,1834,'_purchase_note',''),(8527,1834,'_default_attributes','a:0:{}'),(8528,1834,'_virtual','no'),(8529,1834,'_downloadable','no'),(8530,1834,'_product_image_gallery',''),(8531,1834,'_download_limit','-1'),(8532,1834,'_download_expiry','-1'),(8533,1834,'_stock',''),(8534,1834,'_stock_status','instock'),(8535,1834,'_wc_average_rating','0'),(8536,1834,'_wc_rating_count','a:0:{}'),(8537,1834,'_wc_review_count','0'),(8538,1834,'_downloadable_files','a:0:{}'),(8539,1834,'attribute_pa_material','hardcover'),(8540,1834,'attribute_pa_color','gray'),(8541,1834,'_price','29.99'),(8542,1834,'_product_version','3.0.7'),(8543,1834,'_thumbnail_id','1817'),(8544,1835,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8545,1835,'_variation_description',''),(8546,1835,'_sku','014'),(8547,1835,'_regular_price','25.99'),(8548,1835,'_sale_price',''),(8549,1835,'_sale_price_dates_from',''),(8550,1835,'_sale_price_dates_to',''),(8551,1835,'total_sales','0'),(8552,1835,'_tax_status','taxable'),(8553,1835,'_tax_class',''),(8554,1835,'_manage_stock','no'),(8555,1835,'_backorders','no'),(8556,1835,'_sold_individually','no'),(8557,1835,'_weight','1'),(8558,1835,'_length','10'),(8559,1835,'_width','5'),(8560,1835,'_height','15'),(8561,1835,'_upsell_ids','a:0:{}'),(8562,1835,'_crosssell_ids','a:0:{}'),(8563,1835,'_purchase_note',''),(8564,1835,'_default_attributes','a:0:{}'),(8565,1835,'_virtual','no'),(8566,1835,'_downloadable','no'),(8567,1835,'_product_image_gallery',''),(8568,1835,'_download_limit','-1'),(8569,1835,'_download_expiry','-1'),(8570,1835,'_stock',''),(8571,1835,'_stock_status','instock'),(8572,1835,'_wc_average_rating','0'),(8573,1835,'_wc_rating_count','a:0:{}'),(8574,1835,'_wc_review_count','0'),(8575,1835,'_downloadable_files','a:0:{}'),(8576,1835,'attribute_pa_material','paperback'),(8577,1835,'attribute_pa_color','blue'),(8578,1835,'_price','25.99'),(8579,1835,'_product_version','3.0.7'),(8580,1835,'_thumbnail_id','1818'),(8581,1836,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8582,1836,'_variation_description',''),(8583,1836,'_sku','015'),(8584,1836,'_regular_price',''),(8585,1836,'_sale_price',''),(8586,1836,'_sale_price_dates_from',''),(8587,1836,'_sale_price_dates_to',''),(8588,1836,'total_sales','0'),(8589,1836,'_tax_status','taxable'),(8590,1836,'_tax_class',''),(8591,1836,'_manage_stock','no'),(8592,1836,'_backorders','no'),(8593,1836,'_sold_individually','no'),(8594,1836,'_weight','2'),(8595,1836,'_length','10'),(8596,1836,'_width','5'),(8597,1836,'_height','15'),(8598,1836,'_upsell_ids','a:0:{}'),(8599,1836,'_crosssell_ids','a:0:{}'),(8600,1836,'_purchase_note',''),(8601,1836,'_default_attributes','a:0:{}'),(8602,1836,'_virtual','no'),(8603,1836,'_downloadable','no'),(8604,1836,'_product_image_gallery',''),(8605,1836,'_download_limit','-1'),(8606,1836,'_download_expiry','-1'),(8607,1836,'_stock',''),(8608,1836,'_stock_status','instock'),(8609,1836,'_wc_average_rating','0'),(8610,1836,'_wc_rating_count','a:0:{}'),(8611,1836,'_wc_review_count','0'),(8612,1836,'_downloadable_files','a:0:{}'),(8613,1836,'attribute_pa_material','hardcover'),(8614,1836,'attribute_pa_color','blue'),(8615,1836,'_price',''),(8616,1836,'_product_version','3.0.7'),(8617,1836,'_thumbnail_id','1818'),(8618,1957,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8619,1957,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8620,1957,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8621,1957,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8622,1957,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8623,1957,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8624,1957,'_sku','008'),(8625,1957,'_regular_price','35'),(8626,1957,'_sale_price',''),(8627,1957,'_sale_price_dates_from',''),(8628,1957,'_sale_price_dates_to',''),(8629,1957,'total_sales','0'),(8630,1957,'_tax_status','taxable'),(8631,1957,'_tax_class',''),(8632,1957,'_manage_stock','no'),(8633,1957,'_backorders','no'),(8634,1957,'_sold_individually','no'),(8635,1957,'_weight','2'),(8636,1957,'_length','10'),(8637,1957,'_width','5'),(8638,1957,'_height','15'),(8639,1957,'_upsell_ids','a:0:{}'),(8640,1957,'_crosssell_ids','a:0:{}'),(8641,1957,'_purchase_note',''),(8642,1957,'_default_attributes','a:0:{}'),(8643,1957,'_virtual','no'),(8644,1957,'_downloadable','no'),(8645,1957,'_product_image_gallery','1959,1961,1960'),(8646,1957,'_download_limit','-1'),(8647,1957,'_download_expiry','-1'),(8648,1957,'_thumbnail_id','1958'),(8649,1957,'_stock',''),(8650,1957,'_stock_status','instock'),(8651,1957,'_wc_average_rating','3.00'),(8652,1957,'_wc_rating_count','a:1:{i:3;i:1;}'),(8653,1957,'_wc_review_count','1'),(8654,1957,'_downloadable_files','a:0:{}'),(8655,1957,'_product_attributes','a:2:{s:8:\"pa_color\";a:6:{s:4:\"name\";s:8:\"pa_color\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}s:11:\"pa_material\";a:6:{s:4:\"name\";s:11:\"pa_material\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(8656,1957,'_product_version','9.3.3'),(8657,1957,'_price','35'),(8658,1957,'mkdf_show_title_area_woo_meta','yes'),(8659,1957,'slide_template','default'),(8660,1957,'_wpb_vc_js_status','false'),(8661,1957,'_wp_old_slug','accelerate-career-2'),(8662,1957,'_dp_original','1936'),(8663,3056,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8664,3056,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8665,3056,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8666,3056,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8667,3056,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8668,3056,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8669,3056,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8670,3056,'_sku','11'),(8671,3056,'_regular_price','59'),(8672,3056,'_sale_price',''),(8673,3056,'_sale_price_dates_from',''),(8674,3056,'_sale_price_dates_to',''),(8675,3056,'total_sales','0'),(8676,3056,'_tax_status','taxable'),(8677,3056,'_tax_class',''),(8678,3056,'_manage_stock','no'),(8679,3056,'_backorders','no'),(8680,3056,'_sold_individually','no'),(8681,3056,'_weight','2'),(8682,3056,'_length','10'),(8683,3056,'_width','5'),(8684,3056,'_height','15'),(8685,3056,'_upsell_ids','a:0:{}'),(8686,3056,'_crosssell_ids','a:0:{}'),(8687,3056,'_purchase_note',''),(8688,3056,'_default_attributes','a:0:{}'),(8689,3056,'_virtual','no'),(8690,3056,'_downloadable','no'),(8691,3056,'_product_image_gallery','3042,3041,3043'),(8692,3056,'_download_limit','-1'),(8693,3056,'_download_expiry','-1'),(8694,3056,'_thumbnail_id','3040'),(8695,3056,'_stock',''),(8696,3056,'_stock_status','outofstock'),(8697,3056,'_wc_average_rating','3.00'),(8698,3056,'_wc_rating_count','a:1:{i:3;i:1;}'),(8699,3056,'_wc_review_count','1'),(8700,3056,'_downloadable_files','a:0:{}'),(8701,3056,'_product_attributes','a:2:{s:8:\"pa_color\";a:6:{s:4:\"name\";s:8:\"pa_color\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}s:11:\"pa_material\";a:6:{s:4:\"name\";s:11:\"pa_material\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(8702,3056,'_product_version','3.0.8'),(8703,3056,'_price','59'),(8704,3056,'mkdf_show_title_area_woo_meta','yes'),(8705,3056,'slide_template','default'),(8706,3056,'_wpb_vc_js_status','false'),(8707,3056,'_wp_old_slug','accelerate-career-2'),(8708,3056,'_dp_original','1957'),(8709,3058,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8710,3058,'_sku','12'),(8711,3058,'_regular_price','24.99'),(8712,3058,'_sale_price',''),(8713,3058,'_sale_price_dates_from',''),(8714,3058,'_sale_price_dates_to',''),(8715,3058,'total_sales','0'),(8716,3058,'_tax_status','taxable'),(8717,3058,'_tax_class',''),(8718,3058,'_manage_stock','no'),(8719,3058,'_backorders','no'),(8720,3058,'_sold_individually','no'),(8721,3058,'_weight','2'),(8722,3058,'_length','10'),(8723,3058,'_width','5'),(8724,3058,'_height','15'),(8725,3058,'_upsell_ids','a:0:{}'),(8726,3058,'_crosssell_ids','a:0:{}'),(8727,3058,'_purchase_note',''),(8728,3058,'_default_attributes','a:0:{}'),(8729,3058,'_virtual','no'),(8730,3058,'_downloadable','no'),(8731,3058,'_product_image_gallery','3045,3047,3046'),(8732,3058,'_download_limit','-1'),(8733,3058,'_download_expiry','-1'),(8734,3058,'_thumbnail_id','3044'),(8735,3058,'_stock',''),(8736,3058,'_stock_status','instock'),(8737,3058,'_wc_average_rating','4.00'),(8738,3058,'_wc_rating_count','a:1:{i:4;i:1;}'),(8739,3058,'_wc_review_count','1'),(8740,3058,'_downloadable_files','a:0:{}'),(8741,3058,'_product_attributes','a:2:{s:8:\"pa_color\";a:6:{s:4:\"name\";s:8:\"pa_color\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}s:11:\"pa_material\";a:6:{s:4:\"name\";s:11:\"pa_material\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(8742,3058,'_product_version','9.3.3'),(8743,3058,'_price','24.99'),(8744,3058,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8745,3058,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8746,3058,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8747,3058,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8748,3058,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8749,3058,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8750,3058,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8751,3058,'mkdf_show_title_area_woo_meta','yes'),(8752,3058,'slide_template','default'),(8753,3058,'_wpb_vc_js_status','false'),(8754,3058,'_dp_original','1957'),(8755,3060,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8756,3060,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8757,3060,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8758,3060,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8759,3060,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8760,3060,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8761,3060,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8762,3060,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8763,3060,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8764,3060,'_sku','13'),(8765,3060,'_regular_price','36'),(8766,3060,'_sale_price',''),(8767,3060,'_sale_price_dates_from',''),(8768,3060,'_sale_price_dates_to',''),(8769,3060,'total_sales','0'),(8770,3060,'_tax_status','taxable'),(8771,3060,'_tax_class',''),(8772,3060,'_manage_stock','no'),(8773,3060,'_backorders','no'),(8774,3060,'_sold_individually','no'),(8775,3060,'_weight','2'),(8776,3060,'_length','10'),(8777,3060,'_width','5'),(8778,3060,'_height','15'),(8779,3060,'_upsell_ids','a:0:{}'),(8780,3060,'_crosssell_ids','a:0:{}'),(8781,3060,'_purchase_note',''),(8782,3060,'_default_attributes','a:0:{}'),(8783,3060,'_virtual','no'),(8784,3060,'_downloadable','no'),(8785,3060,'_product_image_gallery','3049,3051,3050'),(8786,3060,'_download_limit','-1'),(8787,3060,'_download_expiry','-1'),(8788,3060,'_thumbnail_id','3048'),(8789,3060,'_stock',''),(8790,3060,'_stock_status','instock'),(8791,3060,'_wc_average_rating','3.00'),(8792,3060,'_wc_rating_count','a:1:{i:3;i:1;}'),(8793,3060,'_wc_review_count','1'),(8794,3060,'_downloadable_files','a:0:{}'),(8795,3060,'_product_attributes','a:2:{s:8:\"pa_color\";a:6:{s:4:\"name\";s:8:\"pa_color\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}s:11:\"pa_material\";a:6:{s:4:\"name\";s:11:\"pa_material\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(8796,3060,'_product_version','9.3.3'),(8797,3060,'_price','36'),(8798,3060,'mkdf_show_title_area_woo_meta','yes'),(8799,3060,'slide_template','default'),(8800,3060,'_wpb_vc_js_status','false'),(8801,3060,'_dp_original','3058'),(8802,3062,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8803,3062,'_sku','14'),(8804,3062,'_regular_price','55'),(8805,3062,'_sale_price',''),(8806,3062,'_sale_price_dates_from',''),(8807,3062,'_sale_price_dates_to',''),(8808,3062,'total_sales','0'),(8809,3062,'_tax_status','taxable'),(8810,3062,'_tax_class',''),(8811,3062,'_manage_stock','no'),(8812,3062,'_backorders','no'),(8813,3062,'_sold_individually','no'),(8814,3062,'_weight','2'),(8815,3062,'_length','10'),(8816,3062,'_width','5'),(8817,3062,'_height','15'),(8818,3062,'_upsell_ids','a:0:{}'),(8819,3062,'_crosssell_ids','a:0:{}'),(8820,3062,'_purchase_note',''),(8821,3062,'_default_attributes','a:0:{}'),(8822,3062,'_virtual','no'),(8823,3062,'_downloadable','no'),(8824,3062,'_product_image_gallery','3053,3055,3054'),(8825,3062,'_download_limit','-1'),(8826,3062,'_download_expiry','-1'),(8827,3062,'_thumbnail_id','3052'),(8828,3062,'_stock',''),(8829,3062,'_stock_status','instock'),(8830,3062,'_wc_average_rating','4.00'),(8831,3062,'_wc_rating_count','a:1:{i:4;i:1;}'),(8832,3062,'_wc_review_count','1'),(8833,3062,'_downloadable_files','a:0:{}'),(8834,3062,'_product_attributes','a:2:{s:8:\"pa_color\";a:6:{s:4:\"name\";s:8:\"pa_color\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}s:11:\"pa_material\";a:6:{s:4:\"name\";s:11:\"pa_material\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(8835,3062,'_product_version','9.3.3'),(8836,3062,'_price','55'),(8837,3062,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8838,3062,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8839,3062,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8840,3062,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8841,3062,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8842,3062,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8843,3062,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8844,3062,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8845,3062,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8846,3062,'mkdf_show_title_area_woo_meta','yes'),(8847,3062,'slide_template','default'),(8848,3062,'_wpb_vc_js_status','false'),(8849,3062,'_dp_original','3058'),(8850,4128,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8851,4128,'mkdf_quiz_question_meta','a:3:{i:0;s:3:\"270\";i:1;s:3:\"239\";i:2;s:3:\"264\";}'),(8852,4128,'mkdf_quiz_duration_meta','20'),(8853,4128,'mkdf_quiz_duration_parameter_meta','minutes'),(8854,4128,'mkdf_quiz_number_retakes_meta','2'),(8855,4128,'mkdf_quiz_passing_percentage_meta','60'),(8856,4128,'mkdf_quiz_post_message_meta','Result: Congratulations, you passed!'),(8857,4128,'mkdf_page_content_behind_header_meta','no'),(8858,4128,'mkdf_boxed_background_image_attachment_meta','fixed'),(8859,4128,'mkdf_disable_header_widget_logo_area_meta','no'),(8860,4128,'mkdf_disable_header_widget_menu_area_meta','no'),(8861,4128,'mkdf_disable_footer_meta','no'),(8862,4128,'slide_template','default'),(8863,4128,'mkdf_quiz_description_meta','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in.'),(8864,4128,'_wp_old_slug','advanced-business-collocations'),(8865,128,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8866,128,'slide_template','default'),(8867,128,'_bbp_forum_id','126'),(8868,128,'_bbp_topic_id','1'),(8869,128,'_bbp_author_ip','217.24.25.23'),(8870,146,'_bbp_forum_id','126'),(8871,146,'_bbp_topic_id','143'),(8872,146,'_bbp_author_ip','217.24.25.23'),(8873,146,'_bbp_revision_log','a:1:{i:147;a:2:{s:6:\"author\";i:2;s:6:\"reason\";s:0:\"\";}}'),(8874,151,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8875,151,'slide_template','default'),(8876,151,'_bbp_forum_id','126'),(8877,151,'_bbp_topic_id','2'),(8878,151,'_bbp_author_ip','217.24.25.23'),(8879,168,'_bbp_forum_id','126'),(8880,168,'_bbp_topic_id','148'),(8881,168,'_bbp_author_ip','217.24.25.23'),(8882,190,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8883,190,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8884,190,'mkdf_quiz_question_meta','a:3:{i:0;s:2:\"15\";i:1;s:3:\"253\";i:2;s:3:\"240\";}'),(8885,190,'mkdf_quiz_duration_meta','30'),(8886,190,'mkdf_quiz_duration_parameter_meta','minutes'),(8887,190,'mkdf_quiz_number_retakes_meta','2'),(8888,190,'mkdf_quiz_passing_percentage_meta','60'),(8889,190,'mkdf_quiz_post_message_meta','Result: Congratulations, you passed!'),(8890,190,'mkdf_page_content_behind_header_meta','no'),(8891,190,'mkdf_boxed_background_image_attachment_meta','fixed'),(8892,190,'mkdf_disable_header_widget_logo_area_meta','no'),(8893,190,'mkdf_disable_header_widget_menu_area_meta','no'),(8894,190,'mkdf_disable_footer_meta','no'),(8895,190,'slide_template','default'),(8896,190,'mkdf_quiz_description_meta','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in.'),(8897,190,'_dp_original','17'),(8898,190,'_wp_old_slug','coordination-online-irl'),(8914,243,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8915,243,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8916,243,'mkdf_quiz_question_meta','a:3:{i:0;s:2:\"40\";i:1;s:3:\"209\";i:2;s:2:\"38\";}'),(8917,243,'mkdf_quiz_duration_meta','12'),(8918,243,'mkdf_quiz_duration_parameter_meta','minutes'),(8919,243,'mkdf_quiz_number_retakes_meta','3'),(8920,243,'mkdf_quiz_passing_percentage_meta','90'),(8921,243,'mkdf_quiz_post_message_meta','Result: Congratulations, you passed!'),(8922,243,'mkdf_page_content_behind_header_meta','no'),(8923,243,'mkdf_boxed_background_image_attachment_meta','fixed'),(8924,243,'mkdf_disable_header_widget_logo_area_meta','no'),(8925,243,'mkdf_disable_header_widget_menu_area_meta','no'),(8926,243,'mkdf_disable_footer_meta','no'),(8927,243,'slide_template','default'),(8928,243,'mkdf_quiz_description_meta','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in.'),(8929,243,'_dp_original','17'),(8930,243,'_wp_old_slug','cumulative-quiz'),(8931,253,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8932,253,'mkdf_question_type_meta','text'),(8933,253,'mkdf_question_answer_title_meta','a:1:{i:0;s:0:\"\";}'),(8934,253,'mkdf_question_answer_true_meta','a:1:{i:0;s:2:\"no\";}'),(8935,253,'mkdf_answers_text_meta','Animation/movie file'),(8936,253,'mkdf_question_mark_meta','5'),(8937,253,'slide_template','default'),(8938,264,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8939,264,'mkdf_question_type_meta','single_choice'),(8940,264,'mkdf_question_answer_title_meta','a:3:{i:0;s:5:\"Nokia\";i:1;s:7:\"CellOne\";i:2;s:8:\"Erricson\";}'),(8941,264,'mkdf_question_answer_true_meta','a:3:{i:0;s:2:\"no\";i:1;s:2:\"no\";i:2;s:3:\"yes\";}'),(8942,264,'mkdf_question_mark_meta','5'),(8943,264,'slide_template',''),(8944,270,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8945,270,'mkdf_question_type_meta','single_choice'),(8946,270,'mkdf_question_answer_title_meta','a:3:{i:0;s:44:\"Political, Economical, Social, Technological\";i:1;s:45:\"Practical, Educational, Social, Technological\";i:2;s:43:\"Public,  Effective, Societal, Technological\";}'),(8947,270,'mkdf_question_answer_true_meta','a:3:{i:0;s:3:\"yes\";i:1;s:0:\"\";i:2;s:0:\"\";}'),(8948,270,'slide_template','default'),(8949,270,'mkdf_question_mark_meta','5'),(8950,3229,'_bbp_forum_id','126'),(8951,3229,'_bbp_topic_id','143'),(8952,3229,'_bbp_author_ip','217.24.25.23'),(8953,3229,'_bbp_revision_log','a:1:{i:3230;a:2:{s:6:\"author\";i:4;s:6:\"reason\";s:0:\"\";}}'),(8954,3231,'_bbp_forum_id','126'),(8955,3231,'_bbp_topic_id','143'),(8956,3231,'_bbp_author_ip','217.24.25.23'),(8957,3256,'_bbp_forum_id','126'),(8958,3256,'_bbp_topic_id','3255'),(8959,3256,'_bbp_author_ip','217.24.25.23'),(8960,3256,'_bbp_revision_log','a:1:{i:3257;a:2:{s:6:\"author\";i:2;s:6:\"reason\";s:0:\"\";}}'),(8961,3275,'_bbp_forum_id','3267'),(8962,3275,'_bbp_topic_id','3271'),(8963,3275,'_bbp_author_ip','217.24.25.23'),(8964,3276,'_bbp_forum_id','3269'),(8965,3276,'_bbp_topic_id','3273'),(8966,3276,'_bbp_author_ip','217.24.25.23'),(8967,3281,'_bbp_forum_id','3269'),(8968,3281,'_bbp_topic_id','3273'),(8969,3281,'_bbp_author_ip','217.24.25.23'),(8970,3282,'_bbp_forum_id','3269'),(8971,3282,'_bbp_topic_id','3277'),(8972,3282,'_bbp_author_ip','217.24.25.23'),(8973,3285,'_bbp_forum_id','3267'),(8974,3285,'_bbp_topic_id','3284'),(8975,3285,'_bbp_author_ip','217.24.25.23'),(8976,3286,'_bbp_forum_id','3269'),(8977,3286,'_bbp_topic_id','3283'),(8978,3286,'_bbp_author_ip','217.24.25.23'),(8979,112,'_order_key','wc_order_5926c22631c3a'),(8980,112,'_customer_user','0'),(8981,112,'_payment_method','bacs'),(8982,112,'_payment_method_title','Direct bank transfer'),(8983,112,'_transaction_id',''),(8984,112,'_customer_ip_address','217.24.25.23'),(8985,112,'_customer_user_agent','mozilla/5.0 (windows nt 10.0; win64; x64) applewebkit/537.36 (khtml, like gecko) chrome/58.0.3029.110 safari/537.36'),(8986,112,'_created_via','checkout'),(8987,112,'_date_completed','1495712350'),(8988,112,'_completed_date','2017-05-25 11:39:10'),(8989,112,'_date_paid','1495712350'),(8990,112,'_paid_date','2017-05-25 11:39:10'),(8991,112,'_cart_hash','1a675cd7f5604ecf8a1086a4d1e2c2a6'),(8992,112,'_billing_first_name','Nicole'),(8993,112,'_billing_last_name','Burke'),(8994,112,'_billing_company',''),(8995,112,'_billing_address_1','34th Street'),(8996,112,'_billing_address_2',''),(8997,112,'_billing_city','San Francisco'),(8998,112,'_billing_state','CA'),(8999,112,'_billing_postcode','94115'),(9000,112,'_billing_country','US'),(9001,112,'_billing_email','nicoleburke222@gmail.com'),(9002,112,'_billing_phone','555333'),(9003,112,'_shipping_first_name',''),(9004,112,'_shipping_last_name',''),(9005,112,'_shipping_company',''),(9006,112,'_shipping_address_1',''),(9007,112,'_shipping_address_2',''),(9008,112,'_shipping_city',''),(9009,112,'_shipping_state',''),(9010,112,'_shipping_postcode',''),(9011,112,'_shipping_country',''),(9012,112,'_order_currency','USD'),(9013,112,'_cart_discount','0'),(9014,112,'_cart_discount_tax','0'),(9015,112,'_order_shipping','0'),(9016,112,'_order_shipping_tax','0'),(9017,112,'_order_tax','0'),(9018,112,'_order_total','20.00'),(9019,112,'_order_version','3.0.7'),(9020,112,'_prices_include_tax','no'),(9021,112,'_billing_address_index','Nicole Burke  34th Street  San Francisco CA 94115 US nicoleburke222@gmail.com 555333'),(9022,112,'_shipping_address_index','        '),(9023,112,'_shipping_method',''),(9024,112,'_recorded_sales','yes'),(9025,112,'_recorded_coupon_usage_counts','yes'),(9026,112,'_order_stock_reduced','yes'),(9027,112,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(9028,112,'_download_permissions_granted','yes'),(9029,115,'_order_key','wc_order_5926c33938aa5'),(9030,115,'_customer_user','2'),(9031,115,'_payment_method','bacs'),(9032,115,'_payment_method_title','Direct bank transfer'),(9033,115,'_transaction_id',''),(9034,115,'_customer_ip_address','217.24.25.23'),(9035,115,'_customer_user_agent','mozilla/5.0 (windows nt 10.0; win64; x64) applewebkit/537.36 (khtml, like gecko) chrome/58.0.3029.110 safari/537.36'),(9036,115,'_created_via','checkout'),(9037,115,'_date_completed','1495712582'),(9038,115,'_completed_date','2017-05-25 11:43:02'),(9039,115,'_date_paid','1495712582'),(9040,115,'_paid_date','2017-05-25 11:43:02'),(9041,115,'_cart_hash','1a675cd7f5604ecf8a1086a4d1e2c2a6'),(9042,115,'_billing_first_name','Nicole'),(9043,115,'_billing_last_name','Burke'),(9044,115,'_billing_company',''),(9045,115,'_billing_address_1','34th Street'),(9046,115,'_billing_address_2',''),(9047,115,'_billing_city','San Francisco'),(9048,115,'_billing_state','CA'),(9049,115,'_billing_postcode','94115'),(9050,115,'_billing_country','US'),(9051,115,'_billing_email','nicoleburke222@gmail.com'),(9052,115,'_billing_phone','555333'),(9053,115,'_shipping_first_name',''),(9054,115,'_shipping_last_name',''),(9055,115,'_shipping_company',''),(9056,115,'_shipping_address_1',''),(9057,115,'_shipping_address_2',''),(9058,115,'_shipping_city',''),(9059,115,'_shipping_state',''),(9060,115,'_shipping_postcode',''),(9061,115,'_shipping_country',''),(9062,115,'_order_currency','USD'),(9063,115,'_cart_discount','0'),(9064,115,'_cart_discount_tax','0'),(9065,115,'_order_shipping','0'),(9066,115,'_order_shipping_tax','0'),(9067,115,'_order_tax','0'),(9068,115,'_order_total','20.00'),(9069,115,'_order_version','3.0.7'),(9070,115,'_prices_include_tax','no'),(9071,115,'_billing_address_index','Nicole Burke  34th Street  San Francisco CA 94115 US nicoleburke222@gmail.com 555333'),(9072,115,'_shipping_address_index','        '),(9073,115,'_shipping_method',''),(9074,115,'_recorded_sales','yes'),(9075,115,'_recorded_coupon_usage_counts','yes'),(9076,115,'_order_stock_reduced','yes'),(9077,115,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(9078,115,'_download_permissions_granted','yes'),(9086,3355,'_order_key','wc_order_59414484edcf4'),(9087,3355,'_customer_user','2'),(9088,3355,'_payment_method',''),(9089,3355,'_payment_method_title',''),(9090,3355,'_transaction_id',''),(9091,3355,'_customer_ip_address','217.24.25.23'),(9092,3355,'_customer_user_agent','mozilla/5.0 (windows nt 10.0; wow64; rv:53.0) gecko/20100101 firefox/53.0'),(9093,3355,'_created_via','checkout'),(9094,3355,'_date_completed','1497449605'),(9095,3355,'_completed_date','2017-06-14 14:13:25'),(9096,3355,'_date_paid','1497449605'),(9097,3355,'_paid_date','2017-06-14 14:13:25'),(9098,3355,'_cart_hash','b8e268e085469063aa41e1c48c534aac'),(9099,3355,'_billing_first_name','Nicole'),(9100,3355,'_billing_last_name','Burke'),(9101,3355,'_billing_company',''),(9102,3355,'_billing_address_1','34th Street'),(9103,3355,'_billing_address_2',''),(9104,3355,'_billing_city','San Francisco'),(9105,3355,'_billing_state','CA'),(9106,3355,'_billing_postcode','94115'),(9107,3355,'_billing_country','US'),(9108,3355,'_billing_email','nicoleburke222@gmail.com'),(9109,3355,'_billing_phone','555333'),(9110,3355,'_shipping_first_name',''),(9111,3355,'_shipping_last_name',''),(9112,3355,'_shipping_company',''),(9113,3355,'_shipping_address_1',''),(9114,3355,'_shipping_address_2',''),(9115,3355,'_shipping_city',''),(9116,3355,'_shipping_state',''),(9117,3355,'_shipping_postcode',''),(9118,3355,'_shipping_country',''),(9119,3355,'_order_currency','USD'),(9120,3355,'_cart_discount','0'),(9121,3355,'_cart_discount_tax','0'),(9122,3355,'_order_shipping','0'),(9123,3355,'_order_shipping_tax','0'),(9124,3355,'_order_tax','0'),(9125,3355,'_order_total','0.00'),(9126,3355,'_order_version','3.0.7'),(9127,3355,'_prices_include_tax','no'),(9128,3355,'_billing_address_index','Nicole Burke  34th Street  San Francisco CA 94115 US nicoleburke222@gmail.com 555333'),(9129,3355,'_shipping_address_index','        '),(9130,3355,'_shipping_method',''),(9131,3355,'_download_permissions_granted','yes'),(9132,3355,'_recorded_sales','yes'),(9133,3355,'_recorded_coupon_usage_counts','yes'),(9134,3355,'_order_stock_reduced','yes'),(9135,3356,'_order_key','wc_order_59414833754af'),(9136,3356,'_customer_user','3'),(9137,3356,'_payment_method','bacs'),(9138,3356,'_payment_method_title','Direct bank transfer'),(9139,3356,'_transaction_id',''),(9140,3356,'_customer_ip_address','217.24.25.23'),(9141,3356,'_customer_user_agent','mozilla/5.0 (windows nt 10.0; wow64; rv:53.0) gecko/20100101 firefox/53.0'),(9142,3356,'_created_via','checkout'),(9143,3356,'_date_completed','1497452837'),(9144,3356,'_completed_date','2017-06-14 15:07:17'),(9145,3356,'_date_paid','1497452837'),(9146,3356,'_paid_date','2017-06-14 15:07:17'),(9147,3356,'_cart_hash','6f9e843743d53f340c57cad1aab03a51'),(9148,3356,'_billing_first_name','Ralph'),(9149,3356,'_billing_last_name','Jackson'),(9150,3356,'_billing_company',''),(9151,3356,'_billing_address_1','36th Street'),(9152,3356,'_billing_address_2',''),(9153,3356,'_billing_city','San Francisco'),(9154,3356,'_billing_state','CA'),(9155,3356,'_billing_postcode','94116'),(9156,3356,'_billing_country','US'),(9157,3356,'_billing_email','ralphjackson001@gmail.com'),(9158,3356,'_billing_phone','555333'),(9159,3356,'_shipping_first_name',''),(9160,3356,'_shipping_last_name',''),(9161,3356,'_shipping_company',''),(9162,3356,'_shipping_address_1',''),(9163,3356,'_shipping_address_2',''),(9164,3356,'_shipping_city',''),(9165,3356,'_shipping_state',''),(9166,3356,'_shipping_postcode',''),(9167,3356,'_shipping_country',''),(9168,3356,'_order_currency','USD'),(9169,3356,'_cart_discount','0'),(9170,3356,'_cart_discount_tax','0'),(9171,3356,'_order_shipping','0'),(9172,3356,'_order_shipping_tax','0'),(9173,3356,'_order_tax','0'),(9174,3356,'_order_total','20.00'),(9175,3356,'_order_version','3.0.7'),(9176,3356,'_prices_include_tax','no'),(9177,3356,'_billing_address_index','Ralph Jackson  36th Street  San Francisco CA 94116 US ralphjackson001@gmail.com 555333'),(9178,3356,'_shipping_address_index','        '),(9179,3356,'_shipping_method',''),(9180,3356,'_recorded_sales','yes'),(9181,3356,'_recorded_coupon_usage_counts','yes'),(9182,3356,'_order_stock_reduced','yes'),(9183,3356,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(9184,3356,'_download_permissions_granted','yes'),(9185,3357,'_order_key','wc_order_594148dfc7b45'),(9186,3357,'_customer_user','3'),(9187,3357,'_payment_method',''),(9188,3357,'_payment_method_title',''),(9189,3357,'_transaction_id',''),(9190,3357,'_customer_ip_address','217.24.25.23'),(9191,3357,'_customer_user_agent','mozilla/5.0 (windows nt 10.0; wow64; rv:53.0) gecko/20100101 firefox/53.0'),(9192,3357,'_created_via','checkout'),(9193,3357,'_date_completed','1497450720'),(9194,3357,'_completed_date','2017-06-14 14:32:00'),(9195,3357,'_date_paid','1497450720'),(9196,3357,'_paid_date','2017-06-14 14:32:00'),(9197,3357,'_cart_hash','b8e268e085469063aa41e1c48c534aac'),(9198,3357,'_billing_first_name','Ralph'),(9199,3357,'_billing_last_name','Jackson'),(9200,3357,'_billing_company',''),(9201,3357,'_billing_address_1','36th Street'),(9202,3357,'_billing_address_2',''),(9203,3357,'_billing_city','San Francisco'),(9204,3357,'_billing_state','CA'),(9205,3357,'_billing_postcode','94116'),(9206,3357,'_billing_country','US'),(9207,3357,'_billing_email','ralphjackson001@gmail.com'),(9208,3357,'_billing_phone','555333'),(9209,3357,'_shipping_first_name',''),(9210,3357,'_shipping_last_name',''),(9211,3357,'_shipping_company',''),(9212,3357,'_shipping_address_1',''),(9213,3357,'_shipping_address_2',''),(9214,3357,'_shipping_city',''),(9215,3357,'_shipping_state',''),(9216,3357,'_shipping_postcode',''),(9217,3357,'_shipping_country',''),(9218,3357,'_order_currency','USD'),(9219,3357,'_cart_discount','0'),(9220,3357,'_cart_discount_tax','0'),(9221,3357,'_order_shipping','0'),(9222,3357,'_order_shipping_tax','0'),(9223,3357,'_order_tax','0'),(9224,3357,'_order_total','0.00'),(9225,3357,'_order_version','3.0.7'),(9226,3357,'_prices_include_tax','no'),(9227,3357,'_billing_address_index','Ralph Jackson  36th Street  San Francisco CA 94116 US ralphjackson001@gmail.com 555333'),(9228,3357,'_shipping_address_index','        '),(9229,3357,'_shipping_method',''),(9230,3357,'_download_permissions_granted','yes'),(9231,3357,'_recorded_sales','yes'),(9232,3357,'_recorded_coupon_usage_counts','yes'),(9233,3357,'_order_stock_reduced','yes'),(9234,3360,'_order_key','wc_order_59414b44d675b'),(9235,3360,'_customer_user','4'),(9236,3360,'_payment_method',''),(9237,3360,'_payment_method_title',''),(9238,3360,'_transaction_id',''),(9239,3360,'_customer_ip_address','217.24.25.23'),(9240,3360,'_customer_user_agent','mozilla/5.0 (windows nt 10.0; wow64; rv:53.0) gecko/20100101 firefox/53.0'),(9241,3360,'_created_via','checkout'),(9242,3360,'_date_completed','1497451333'),(9243,3360,'_completed_date','2017-06-14 14:42:13'),(9244,3360,'_date_paid','1497451333'),(9245,3360,'_paid_date','2017-06-14 14:42:13'),(9246,3360,'_cart_hash','b8e268e085469063aa41e1c48c534aac'),(9247,3360,'_billing_first_name','Cynthia'),(9248,3360,'_billing_last_name','Fowler'),(9249,3360,'_billing_company',''),(9250,3360,'_billing_address_1','38th Street'),(9251,3360,'_billing_address_2',''),(9252,3360,'_billing_city','San Francisco'),(9253,3360,'_billing_state','CA'),(9254,3360,'_billing_postcode','94117'),(9255,3360,'_billing_country','US'),(9256,3360,'_billing_email','cynthiafowler002@gmail.com'),(9257,3360,'_billing_phone','555333'),(9258,3360,'_shipping_first_name',''),(9259,3360,'_shipping_last_name',''),(9260,3360,'_shipping_company',''),(9261,3360,'_shipping_address_1',''),(9262,3360,'_shipping_address_2',''),(9263,3360,'_shipping_city',''),(9264,3360,'_shipping_state',''),(9265,3360,'_shipping_postcode',''),(9266,3360,'_shipping_country',''),(9267,3360,'_order_currency','USD'),(9268,3360,'_cart_discount','0'),(9269,3360,'_cart_discount_tax','0'),(9270,3360,'_order_shipping','0'),(9271,3360,'_order_shipping_tax','0'),(9272,3360,'_order_tax','0'),(9273,3360,'_order_total','0.00'),(9274,3360,'_order_version','3.0.7'),(9275,3360,'_prices_include_tax','no'),(9276,3360,'_billing_address_index','Cynthia Fowler  38th Street  San Francisco CA 94117 US cynthiafowler002@gmail.com 555333'),(9277,3360,'_shipping_address_index','        '),(9278,3360,'_shipping_method',''),(9279,3360,'_download_permissions_granted','yes'),(9280,3360,'_recorded_sales','yes'),(9281,3360,'_recorded_coupon_usage_counts','yes'),(9282,3360,'_order_stock_reduced','yes'),(9283,3361,'_order_key','wc_order_59414c72996e0'),(9284,3361,'_customer_user','4'),(9285,3361,'_payment_method','bacs'),(9286,3361,'_payment_method_title','Direct bank transfer'),(9287,3361,'_transaction_id',''),(9288,3361,'_customer_ip_address','217.24.25.23'),(9289,3361,'_customer_user_agent','mozilla/5.0 (windows nt 10.0; wow64; rv:53.0) gecko/20100101 firefox/53.0'),(9290,3361,'_created_via','checkout'),(9291,3361,'_date_completed','1497452831'),(9292,3361,'_completed_date','2017-06-14 15:07:11'),(9293,3361,'_date_paid','1497452831'),(9294,3361,'_paid_date','2017-06-14 15:07:11'),(9295,3361,'_cart_hash','50b4c67b27e4fd41e4069adf0f10134a'),(9296,3361,'_billing_first_name','Cynthia'),(9297,3361,'_billing_last_name','Fowler'),(9298,3361,'_billing_company',''),(9299,3361,'_billing_address_1','38th Street'),(9300,3361,'_billing_address_2',''),(9301,3361,'_billing_city','San Francisco'),(9302,3361,'_billing_state','CA'),(9303,3361,'_billing_postcode','94117'),(9304,3361,'_billing_country','US'),(9305,3361,'_billing_email','cynthiafowler002@gmail.com'),(9306,3361,'_billing_phone','555333'),(9307,3361,'_shipping_first_name',''),(9308,3361,'_shipping_last_name',''),(9309,3361,'_shipping_company',''),(9310,3361,'_shipping_address_1',''),(9311,3361,'_shipping_address_2',''),(9312,3361,'_shipping_city',''),(9313,3361,'_shipping_state',''),(9314,3361,'_shipping_postcode',''),(9315,3361,'_shipping_country',''),(9316,3361,'_order_currency','USD'),(9317,3361,'_cart_discount','0'),(9318,3361,'_cart_discount_tax','0'),(9319,3361,'_order_shipping','0'),(9320,3361,'_order_shipping_tax','0'),(9321,3361,'_order_tax','0'),(9322,3361,'_order_total','20.00'),(9323,3361,'_order_version','3.0.7'),(9324,3361,'_prices_include_tax','no'),(9325,3361,'_billing_address_index','Cynthia Fowler  38th Street  San Francisco CA 94117 US cynthiafowler002@gmail.com 555333'),(9326,3361,'_shipping_address_index','        '),(9327,3361,'_shipping_method',''),(9328,3361,'_recorded_sales','yes'),(9329,3361,'_recorded_coupon_usage_counts','yes'),(9330,3361,'_order_stock_reduced','yes'),(9331,3361,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(9332,3361,'_download_permissions_granted','yes'),(9333,3362,'_order_key','wc_order_59414cab4d2f1'),(9334,3362,'_customer_user','4'),(9335,3362,'_payment_method','bacs'),(9336,3362,'_payment_method_title','Direct bank transfer'),(9337,3362,'_transaction_id',''),(9338,3362,'_customer_ip_address','217.24.25.23'),(9339,3362,'_customer_user_agent','mozilla/5.0 (windows nt 10.0; wow64; rv:53.0) gecko/20100101 firefox/53.0'),(9340,3362,'_created_via','checkout'),(9341,3362,'_date_completed','1497452830'),(9342,3362,'_completed_date','2017-06-14 15:07:10'),(9343,3362,'_date_paid','1497452830'),(9344,3362,'_paid_date','2017-06-14 15:07:10'),(9345,3362,'_cart_hash','50b4c67b27e4fd41e4069adf0f10134a'),(9346,3362,'_billing_first_name','Cynthia'),(9347,3362,'_billing_last_name','Fowler'),(9348,3362,'_billing_company',''),(9349,3362,'_billing_address_1','38th Street'),(9350,3362,'_billing_address_2',''),(9351,3362,'_billing_city','San Francisco'),(9352,3362,'_billing_state','CA'),(9353,3362,'_billing_postcode','94117'),(9354,3362,'_billing_country','US'),(9355,3362,'_billing_email','cynthiafowler002@gmail.com'),(9356,3362,'_billing_phone','555333'),(9357,3362,'_shipping_first_name',''),(9358,3362,'_shipping_last_name',''),(9359,3362,'_shipping_company',''),(9360,3362,'_shipping_address_1',''),(9361,3362,'_shipping_address_2',''),(9362,3362,'_shipping_city',''),(9363,3362,'_shipping_state',''),(9364,3362,'_shipping_postcode',''),(9365,3362,'_shipping_country',''),(9366,3362,'_order_currency','USD'),(9367,3362,'_cart_discount','0'),(9368,3362,'_cart_discount_tax','0'),(9369,3362,'_order_shipping','0'),(9370,3362,'_order_shipping_tax','0'),(9371,3362,'_order_tax','0'),(9372,3362,'_order_total','20.00'),(9373,3362,'_order_version','3.0.7'),(9374,3362,'_prices_include_tax','no'),(9375,3362,'_billing_address_index','Cynthia Fowler  38th Street  San Francisco CA 94117 US cynthiafowler002@gmail.com 555333'),(9376,3362,'_shipping_address_index','        '),(9377,3362,'_shipping_method',''),(9378,3362,'_recorded_sales','yes'),(9379,3362,'_recorded_coupon_usage_counts','yes'),(9380,3362,'_order_stock_reduced','yes'),(9381,3362,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(9382,3362,'_download_permissions_granted','yes'),(9383,3363,'_order_key','wc_order_59414cdee778e'),(9384,3363,'_customer_user','4'),(9385,3363,'_payment_method','cod'),(9386,3363,'_payment_method_title','Cash on delivery'),(9387,3363,'_transaction_id',''),(9388,3363,'_customer_ip_address','217.24.25.23'),(9389,3363,'_customer_user_agent','mozilla/5.0 (windows nt 10.0; wow64; rv:53.0) gecko/20100101 firefox/53.0'),(9390,3363,'_created_via','checkout'),(9391,3363,'_date_completed','1497452833'),(9392,3363,'_completed_date','2017-06-14 15:07:13'),(9393,3363,'_date_paid','1497452833'),(9394,3363,'_paid_date','2017-06-14 15:07:13'),(9395,3363,'_cart_hash','50b4c67b27e4fd41e4069adf0f10134a'),(9396,3363,'_billing_first_name','Cynthia'),(9397,3363,'_billing_last_name','Fowler'),(9398,3363,'_billing_company',''),(9399,3363,'_billing_address_1','38th Street'),(9400,3363,'_billing_address_2',''),(9401,3363,'_billing_city','San Francisco'),(9402,3363,'_billing_state','CA'),(9403,3363,'_billing_postcode','94117'),(9404,3363,'_billing_country','US'),(9405,3363,'_billing_email','cynthiafowler002@gmail.com'),(9406,3363,'_billing_phone','555333'),(9407,3363,'_shipping_first_name',''),(9408,3363,'_shipping_last_name',''),(9409,3363,'_shipping_company',''),(9410,3363,'_shipping_address_1',''),(9411,3363,'_shipping_address_2',''),(9412,3363,'_shipping_city',''),(9413,3363,'_shipping_state',''),(9414,3363,'_shipping_postcode',''),(9415,3363,'_shipping_country',''),(9416,3363,'_order_currency','USD'),(9417,3363,'_cart_discount','0'),(9418,3363,'_cart_discount_tax','0'),(9419,3363,'_order_shipping','0'),(9420,3363,'_order_shipping_tax','0'),(9421,3363,'_order_tax','0'),(9422,3363,'_order_total','20.00'),(9423,3363,'_order_version','3.0.7'),(9424,3363,'_prices_include_tax','no'),(9425,3363,'_billing_address_index','Cynthia Fowler  38th Street  San Francisco CA 94117 US cynthiafowler002@gmail.com 555333'),(9426,3363,'_shipping_address_index','        '),(9427,3363,'_shipping_method',''),(9428,3363,'_download_permissions_granted','yes'),(9429,3363,'_recorded_sales','yes'),(9430,3363,'_recorded_coupon_usage_counts','yes'),(9431,3363,'_order_stock_reduced','yes'),(9432,3363,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(9433,3364,'_order_key','wc_order_59414d547321e'),(9434,3364,'_customer_user','4'),(9435,3364,'_payment_method','bacs'),(9436,3364,'_payment_method_title','Direct bank transfer'),(9437,3364,'_transaction_id',''),(9438,3364,'_customer_ip_address','217.24.25.23'),(9439,3364,'_customer_user_agent','mozilla/5.0 (windows nt 10.0; wow64; rv:53.0) gecko/20100101 firefox/53.0'),(9440,3364,'_created_via','checkout'),(9441,3364,'_date_completed','1497452827'),(9442,3364,'_completed_date','2017-06-14 15:07:07'),(9443,3364,'_date_paid','1497452827'),(9444,3364,'_paid_date','2017-06-14 15:07:07'),(9445,3364,'_cart_hash','50b4c67b27e4fd41e4069adf0f10134a'),(9446,3364,'_billing_first_name','Cynthia'),(9447,3364,'_billing_last_name','Fowler'),(9448,3364,'_billing_company',''),(9449,3364,'_billing_address_1','38th Street'),(9450,3364,'_billing_address_2',''),(9451,3364,'_billing_city','San Francisco'),(9452,3364,'_billing_state','CA'),(9453,3364,'_billing_postcode','94117'),(9454,3364,'_billing_country','US'),(9455,3364,'_billing_email','cynthiafowler002@gmail.com'),(9456,3364,'_billing_phone','555333'),(9457,3364,'_shipping_first_name',''),(9458,3364,'_shipping_last_name',''),(9459,3364,'_shipping_company',''),(9460,3364,'_shipping_address_1',''),(9461,3364,'_shipping_address_2',''),(9462,3364,'_shipping_city',''),(9463,3364,'_shipping_state',''),(9464,3364,'_shipping_postcode',''),(9465,3364,'_shipping_country',''),(9466,3364,'_order_currency','USD'),(9467,3364,'_cart_discount','0'),(9468,3364,'_cart_discount_tax','0'),(9469,3364,'_order_shipping','0'),(9470,3364,'_order_shipping_tax','0'),(9471,3364,'_order_tax','0'),(9472,3364,'_order_total','20.00'),(9473,3364,'_order_version','3.0.7'),(9474,3364,'_prices_include_tax','no'),(9475,3364,'_billing_address_index','Cynthia Fowler  38th Street  San Francisco CA 94117 US cynthiafowler002@gmail.com 555333'),(9476,3364,'_shipping_address_index','        '),(9477,3364,'_shipping_method',''),(9478,3364,'_recorded_sales','yes'),(9479,3364,'_recorded_coupon_usage_counts','yes'),(9480,3364,'_order_stock_reduced','yes'),(9481,3364,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(9482,3364,'_download_permissions_granted','yes'),(9483,3365,'_order_key','wc_order_59414dcfe26e4'),(9484,3365,'_customer_user','4'),(9485,3365,'_payment_method','bacs'),(9486,3365,'_payment_method_title','Direct bank transfer'),(9487,3365,'_transaction_id',''),(9488,3365,'_customer_ip_address','217.24.25.23'),(9489,3365,'_customer_user_agent','mozilla/5.0 (windows nt 10.0; wow64; rv:53.0) gecko/20100101 firefox/53.0'),(9490,3365,'_created_via','checkout'),(9491,3365,'_date_completed','1497452824'),(9492,3365,'_completed_date','2017-06-14 15:07:04'),(9493,3365,'_date_paid','1497452824'),(9494,3365,'_paid_date','2017-06-14 15:07:04'),(9495,3365,'_cart_hash','50b4c67b27e4fd41e4069adf0f10134a'),(9496,3365,'_billing_first_name','Cynthia'),(9497,3365,'_billing_last_name','Fowler'),(9498,3365,'_billing_company',''),(9499,3365,'_billing_address_1','38th Street'),(9500,3365,'_billing_address_2',''),(9501,3365,'_billing_city','San Francisco'),(9502,3365,'_billing_state','CA'),(9503,3365,'_billing_postcode','94117'),(9504,3365,'_billing_country','US'),(9505,3365,'_billing_email','cynthiafowler002@gmail.com'),(9506,3365,'_billing_phone','555333'),(9507,3365,'_shipping_first_name',''),(9508,3365,'_shipping_last_name',''),(9509,3365,'_shipping_company',''),(9510,3365,'_shipping_address_1',''),(9511,3365,'_shipping_address_2',''),(9512,3365,'_shipping_city',''),(9513,3365,'_shipping_state',''),(9514,3365,'_shipping_postcode',''),(9515,3365,'_shipping_country',''),(9516,3365,'_order_currency','USD'),(9517,3365,'_cart_discount','0'),(9518,3365,'_cart_discount_tax','0'),(9519,3365,'_order_shipping','0'),(9520,3365,'_order_shipping_tax','0'),(9521,3365,'_order_tax','0'),(9522,3365,'_order_total','20.00'),(9523,3365,'_order_version','3.0.7'),(9524,3365,'_prices_include_tax','no'),(9525,3365,'_billing_address_index','Cynthia Fowler  38th Street  San Francisco CA 94117 US cynthiafowler002@gmail.com 555333'),(9526,3365,'_shipping_address_index','        '),(9527,3365,'_shipping_method',''),(9528,3365,'_recorded_sales','yes'),(9529,3365,'_recorded_coupon_usage_counts','yes'),(9530,3365,'_order_stock_reduced','yes'),(9531,3365,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(9532,3365,'_download_permissions_granted','yes'),(9533,3366,'_order_key','wc_order_59414e77dd7c4'),(9534,3366,'_customer_user','3'),(9535,3366,'_payment_method','bacs'),(9536,3366,'_payment_method_title','Direct bank transfer'),(9537,3366,'_transaction_id',''),(9538,3366,'_customer_ip_address','217.24.25.23'),(9539,3366,'_customer_user_agent','mozilla/5.0 (windows nt 10.0; wow64; rv:53.0) gecko/20100101 firefox/53.0'),(9540,3366,'_created_via','checkout'),(9541,3366,'_date_completed','1497452808'),(9542,3366,'_completed_date','2017-06-14 15:06:48'),(9543,3366,'_date_paid','1497452808'),(9544,3366,'_paid_date','2017-06-14 15:06:48'),(9545,3366,'_cart_hash','4eb3c485b647942b5c9d6cd578257605'),(9546,3366,'_billing_first_name','Ralph'),(9547,3366,'_billing_last_name','Jackson'),(9548,3366,'_billing_company',''),(9549,3366,'_billing_address_1','36th Street'),(9550,3366,'_billing_address_2',''),(9551,3366,'_billing_city','San Francisco'),(9552,3366,'_billing_state','CA'),(9553,3366,'_billing_postcode','94116'),(9554,3366,'_billing_country','US'),(9555,3366,'_billing_email','ralphjackson001@gmail.com'),(9556,3366,'_billing_phone','555333'),(9557,3366,'_shipping_first_name',''),(9558,3366,'_shipping_last_name',''),(9559,3366,'_shipping_company',''),(9560,3366,'_shipping_address_1',''),(9561,3366,'_shipping_address_2',''),(9562,3366,'_shipping_city',''),(9563,3366,'_shipping_state',''),(9564,3366,'_shipping_postcode',''),(9565,3366,'_shipping_country',''),(9566,3366,'_order_currency','USD'),(9567,3366,'_cart_discount','0'),(9568,3366,'_cart_discount_tax','0'),(9569,3366,'_order_shipping','0'),(9570,3366,'_order_shipping_tax','0'),(9571,3366,'_order_tax','0'),(9572,3366,'_order_total','40.00'),(9573,3366,'_order_version','3.0.7'),(9574,3366,'_prices_include_tax','no'),(9575,3366,'_billing_address_index','Ralph Jackson  36th Street  San Francisco CA 94116 US ralphjackson001@gmail.com 555333'),(9576,3366,'_shipping_address_index','        '),(9577,3366,'_shipping_method',''),(9578,3366,'_recorded_sales','yes'),(9579,3366,'_recorded_coupon_usage_counts','yes'),(9580,3366,'_order_stock_reduced','yes'),(9581,3366,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(9582,3366,'_download_permissions_granted','yes'),(9583,3367,'_order_key','wc_order_59414f7224890'),(9584,3367,'_customer_user','4'),(9585,3367,'_payment_method',''),(9586,3367,'_payment_method_title',''),(9587,3367,'_transaction_id',''),(9588,3367,'_customer_ip_address','217.24.25.23'),(9589,3367,'_customer_user_agent','mozilla/5.0 (windows nt 10.0; wow64; rv:53.0) gecko/20100101 firefox/53.0'),(9590,3367,'_created_via','checkout'),(9591,3367,'_date_completed','1497452402'),(9592,3367,'_completed_date','2017-06-14 15:00:02'),(9593,3367,'_date_paid','1497452402'),(9594,3367,'_paid_date','2017-06-14 15:00:02'),(9595,3367,'_cart_hash','a036d999a5755845ffe3226630d18b03'),(9596,3367,'_billing_first_name','Cynthia'),(9597,3367,'_billing_last_name','Fowler'),(9598,3367,'_billing_company',''),(9599,3367,'_billing_address_1','38th Street'),(9600,3367,'_billing_address_2',''),(9601,3367,'_billing_city','San Francisco'),(9602,3367,'_billing_state','CA'),(9603,3367,'_billing_postcode','94117'),(9604,3367,'_billing_country','US'),(9605,3367,'_billing_email','cynthiafowler002@gmail.com'),(9606,3367,'_billing_phone','555333'),(9607,3367,'_shipping_first_name',''),(9608,3367,'_shipping_last_name',''),(9609,3367,'_shipping_company',''),(9610,3367,'_shipping_address_1',''),(9611,3367,'_shipping_address_2',''),(9612,3367,'_shipping_city',''),(9613,3367,'_shipping_state',''),(9614,3367,'_shipping_postcode',''),(9615,3367,'_shipping_country',''),(9616,3367,'_order_currency','USD'),(9617,3367,'_cart_discount','0'),(9618,3367,'_cart_discount_tax','0'),(9619,3367,'_order_shipping','0'),(9620,3367,'_order_shipping_tax','0'),(9621,3367,'_order_tax','0'),(9622,3367,'_order_total','0.00'),(9623,3367,'_order_version','3.0.7'),(9624,3367,'_prices_include_tax','no'),(9625,3367,'_billing_address_index','Cynthia Fowler  38th Street  San Francisco CA 94117 US cynthiafowler002@gmail.com 555333'),(9626,3367,'_shipping_address_index','        '),(9627,3367,'_shipping_method',''),(9628,3367,'_download_permissions_granted','yes'),(9629,3367,'_recorded_sales','yes'),(9630,3367,'_recorded_coupon_usage_counts','yes'),(9631,3367,'_order_stock_reduced','yes'),(9632,3368,'_order_key','wc_order_59414fde2c1f6'),(9633,3368,'_customer_user','4'),(9634,3368,'_payment_method','bacs'),(9635,3368,'_payment_method_title','Direct bank transfer'),(9636,3368,'_transaction_id',''),(9637,3368,'_customer_ip_address','217.24.25.23'),(9638,3368,'_customer_user_agent','mozilla/5.0 (windows nt 10.0; wow64; rv:53.0) gecko/20100101 firefox/53.0'),(9639,3368,'_created_via','checkout'),(9640,3368,'_date_completed','1497452810'),(9641,3368,'_completed_date','2017-06-14 15:06:50'),(9642,3368,'_date_paid','1497452810'),(9643,3368,'_paid_date','2017-06-14 15:06:50'),(9644,3368,'_cart_hash','4eb3c485b647942b5c9d6cd578257605'),(9645,3368,'_billing_first_name','Cynthia'),(9646,3368,'_billing_last_name','Fowler'),(9647,3368,'_billing_company',''),(9648,3368,'_billing_address_1','38th Street'),(9649,3368,'_billing_address_2',''),(9650,3368,'_billing_city','San Francisco'),(9651,3368,'_billing_state','CA'),(9652,3368,'_billing_postcode','94115'),(9653,3368,'_billing_country','US'),(9654,3368,'_billing_email','cynthiafowler002@gmail.com'),(9655,3368,'_billing_phone','555333'),(9656,3368,'_shipping_first_name',''),(9657,3368,'_shipping_last_name',''),(9658,3368,'_shipping_company',''),(9659,3368,'_shipping_address_1',''),(9660,3368,'_shipping_address_2',''),(9661,3368,'_shipping_city',''),(9662,3368,'_shipping_state',''),(9663,3368,'_shipping_postcode',''),(9664,3368,'_shipping_country',''),(9665,3368,'_order_currency','USD'),(9666,3368,'_cart_discount','0'),(9667,3368,'_cart_discount_tax','0'),(9668,3368,'_order_shipping','0'),(9669,3368,'_order_shipping_tax','0'),(9670,3368,'_order_tax','0'),(9671,3368,'_order_total','40.00'),(9672,3368,'_order_version','3.0.7'),(9673,3368,'_prices_include_tax','no'),(9674,3368,'_billing_address_index','Cynthia Fowler  38th Street  San Francisco CA 94115 US cynthiafowler002@gmail.com 555333'),(9675,3368,'_shipping_address_index','        '),(9676,3368,'_shipping_method',''),(9677,3368,'_recorded_sales','yes'),(9678,3368,'_recorded_coupon_usage_counts','yes'),(9679,3368,'_order_stock_reduced','yes'),(9680,3368,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(9681,3368,'_download_permissions_granted','yes'),(9682,3369,'_order_key','wc_order_59415034337dc'),(9683,3369,'_customer_user','4'),(9684,3369,'_payment_method','cheque'),(9685,3369,'_payment_method_title','Check payments'),(9686,3369,'_transaction_id',''),(9687,3369,'_customer_ip_address','217.24.25.23'),(9688,3369,'_customer_user_agent','mozilla/5.0 (windows nt 10.0; wow64; rv:53.0) gecko/20100101 firefox/53.0'),(9689,3369,'_created_via','checkout'),(9690,3369,'_date_completed','1497452810'),(9691,3369,'_completed_date','2017-06-14 15:06:50'),(9692,3369,'_date_paid','1497452810'),(9693,3369,'_paid_date','2017-06-14 15:06:50'),(9694,3369,'_cart_hash','4eb3c485b647942b5c9d6cd578257605'),(9695,3369,'_billing_first_name','Cynthia'),(9696,3369,'_billing_last_name','Fowler'),(9697,3369,'_billing_company',''),(9698,3369,'_billing_address_1','38th Street'),(9699,3369,'_billing_address_2',''),(9700,3369,'_billing_city','San Francisco'),(9701,3369,'_billing_state','CA'),(9702,3369,'_billing_postcode','94115'),(9703,3369,'_billing_country','US'),(9704,3369,'_billing_email','cynthiafowler002@gmail.com'),(9705,3369,'_billing_phone','555333'),(9706,3369,'_shipping_first_name',''),(9707,3369,'_shipping_last_name',''),(9708,3369,'_shipping_company',''),(9709,3369,'_shipping_address_1',''),(9710,3369,'_shipping_address_2',''),(9711,3369,'_shipping_city',''),(9712,3369,'_shipping_state',''),(9713,3369,'_shipping_postcode',''),(9714,3369,'_shipping_country',''),(9715,3369,'_order_currency','USD'),(9716,3369,'_cart_discount','0'),(9717,3369,'_cart_discount_tax','0'),(9718,3369,'_order_shipping','0'),(9719,3369,'_order_shipping_tax','0'),(9720,3369,'_order_tax','0'),(9721,3369,'_order_total','40.00'),(9722,3369,'_order_version','3.0.7'),(9723,3369,'_prices_include_tax','no'),(9724,3369,'_billing_address_index','Cynthia Fowler  38th Street  San Francisco CA 94115 US cynthiafowler002@gmail.com 555333'),(9725,3369,'_shipping_address_index','        '),(9726,3369,'_shipping_method',''),(9727,3369,'_recorded_sales','yes'),(9728,3369,'_recorded_coupon_usage_counts','yes'),(9729,3369,'_order_stock_reduced','yes'),(9730,3369,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(9731,3369,'_download_permissions_granted','yes'),(9732,3372,'_order_key','wc_order_5942365463e1c'),(9733,3372,'_customer_user','2'),(9734,3372,'_payment_method','bacs'),(9735,3372,'_payment_method_title','Direct bank transfer'),(9736,3372,'_transaction_id',''),(9737,3372,'_customer_ip_address','217.24.25.23'),(9738,3372,'_customer_user_agent','mozilla/5.0 (windows nt 10.0; wow64; rv:53.0) gecko/20100101 firefox/53.0'),(9739,3372,'_created_via','checkout'),(9740,3372,'_date_completed','1497511571'),(9741,3372,'_completed_date','2017-06-15 07:26:11'),(9742,3372,'_date_paid','1497511571'),(9743,3372,'_paid_date','2017-06-15 07:26:11'),(9744,3372,'_cart_hash','50b4c67b27e4fd41e4069adf0f10134a'),(9745,3372,'_billing_first_name','Nicole'),(9746,3372,'_billing_last_name','Burke'),(9747,3372,'_billing_company',''),(9748,3372,'_billing_address_1','34th Street'),(9749,3372,'_billing_address_2',''),(9750,3372,'_billing_city','San Francisco'),(9751,3372,'_billing_state','CA'),(9752,3372,'_billing_postcode','94115'),(9753,3372,'_billing_country','US'),(9754,3372,'_billing_email','nicoleburke222@gmail.com'),(9755,3372,'_billing_phone','555333'),(9756,3372,'_shipping_first_name',''),(9757,3372,'_shipping_last_name',''),(9758,3372,'_shipping_company',''),(9759,3372,'_shipping_address_1',''),(9760,3372,'_shipping_address_2',''),(9761,3372,'_shipping_city',''),(9762,3372,'_shipping_state',''),(9763,3372,'_shipping_postcode',''),(9764,3372,'_shipping_country',''),(9765,3372,'_order_currency','USD'),(9766,3372,'_cart_discount','0'),(9767,3372,'_cart_discount_tax','0'),(9768,3372,'_order_shipping','0'),(9769,3372,'_order_shipping_tax','0'),(9770,3372,'_order_tax','0'),(9771,3372,'_order_total','20.00'),(9772,3372,'_order_version','3.0.7'),(9773,3372,'_prices_include_tax','no'),(9774,3372,'_billing_address_index','Nicole Burke  34th Street  San Francisco CA 94115 US nicoleburke222@gmail.com 555333'),(9775,3372,'_shipping_address_index','        '),(9776,3372,'_shipping_method',''),(9777,3372,'_recorded_sales','yes'),(9778,3372,'_recorded_coupon_usage_counts','yes'),(9779,3372,'_order_stock_reduced','yes'),(9780,3372,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(9781,3372,'_download_permissions_granted','yes'),(9782,3373,'_order_key','wc_order_5942374d8608d'),(9783,3373,'_customer_user','2'),(9784,3373,'_payment_method','bacs'),(9785,3373,'_payment_method_title','Direct bank transfer'),(9786,3373,'_transaction_id',''),(9787,3373,'_customer_ip_address','217.24.25.23'),(9788,3373,'_customer_user_agent','mozilla/5.0 (windows nt 10.0; wow64; rv:53.0) gecko/20100101 firefox/53.0'),(9789,3373,'_created_via','checkout'),(9790,3373,'_date_completed','1497511778'),(9791,3373,'_completed_date','2017-06-15 07:29:38'),(9792,3373,'_date_paid','1497511778'),(9793,3373,'_paid_date','2017-06-15 07:29:38'),(9794,3373,'_cart_hash','4eb3c485b647942b5c9d6cd578257605'),(9795,3373,'_billing_first_name','Nicole'),(9796,3373,'_billing_last_name','Burke'),(9797,3373,'_billing_company',''),(9798,3373,'_billing_address_1','34th Street'),(9799,3373,'_billing_address_2',''),(9800,3373,'_billing_city','San Francisco'),(9801,3373,'_billing_state','CA'),(9802,3373,'_billing_postcode','94115'),(9803,3373,'_billing_country','US'),(9804,3373,'_billing_email','nicoleburke222@gmail.com'),(9805,3373,'_billing_phone','555333'),(9806,3373,'_shipping_first_name',''),(9807,3373,'_shipping_last_name',''),(9808,3373,'_shipping_company',''),(9809,3373,'_shipping_address_1',''),(9810,3373,'_shipping_address_2',''),(9811,3373,'_shipping_city',''),(9812,3373,'_shipping_state',''),(9813,3373,'_shipping_postcode',''),(9814,3373,'_shipping_country',''),(9815,3373,'_order_currency','USD'),(9816,3373,'_cart_discount','0'),(9817,3373,'_cart_discount_tax','0'),(9818,3373,'_order_shipping','0'),(9819,3373,'_order_shipping_tax','0'),(9820,3373,'_order_tax','0'),(9821,3373,'_order_total','40.00'),(9822,3373,'_order_version','3.0.7'),(9823,3373,'_prices_include_tax','no'),(9824,3373,'_billing_address_index','Nicole Burke  34th Street  San Francisco CA 94115 US nicoleburke222@gmail.com 555333'),(9825,3373,'_shipping_address_index','        '),(9826,3373,'_shipping_method',''),(9827,3373,'_recorded_sales','yes'),(9828,3373,'_recorded_coupon_usage_counts','yes'),(9829,3373,'_order_stock_reduced','yes'),(9830,3373,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(9831,3373,'_download_permissions_granted','yes'),(9832,3374,'_order_key','wc_order_5942386fd178e'),(9833,3374,'_customer_user','2'),(9834,3374,'_payment_method',''),(9835,3374,'_payment_method_title',''),(9836,3374,'_transaction_id',''),(9837,3374,'_customer_ip_address','217.24.25.23'),(9838,3374,'_customer_user_agent','mozilla/5.0 (windows nt 10.0; wow64; rv:53.0) gecko/20100101 firefox/53.0'),(9839,3374,'_created_via','checkout'),(9840,3374,'_date_completed','1497512048'),(9841,3374,'_completed_date','2017-06-15 07:34:08'),(9842,3374,'_date_paid','1497512048'),(9843,3374,'_paid_date','2017-06-15 07:34:08'),(9844,3374,'_cart_hash','ec2e04e06e0ff6e2434a14dd1221fd48'),(9845,3374,'_billing_first_name','Nicole'),(9846,3374,'_billing_last_name','Burke'),(9847,3374,'_billing_company',''),(9848,3374,'_billing_address_1','34th Street'),(9849,3374,'_billing_address_2',''),(9850,3374,'_billing_city','San Francisco'),(9851,3374,'_billing_state','CA'),(9852,3374,'_billing_postcode','94115'),(9853,3374,'_billing_country','US'),(9854,3374,'_billing_email','nicoleburke222@gmail.com'),(9855,3374,'_billing_phone','555333'),(9856,3374,'_shipping_first_name',''),(9857,3374,'_shipping_last_name',''),(9858,3374,'_shipping_company',''),(9859,3374,'_shipping_address_1',''),(9860,3374,'_shipping_address_2',''),(9861,3374,'_shipping_city',''),(9862,3374,'_shipping_state',''),(9863,3374,'_shipping_postcode',''),(9864,3374,'_shipping_country',''),(9865,3374,'_order_currency','USD'),(9866,3374,'_cart_discount','0'),(9867,3374,'_cart_discount_tax','0'),(9868,3374,'_order_shipping','0'),(9869,3374,'_order_shipping_tax','0'),(9870,3374,'_order_tax','0'),(9871,3374,'_order_total','0.00'),(9872,3374,'_order_version','3.0.7'),(9873,3374,'_prices_include_tax','no'),(9874,3374,'_billing_address_index','Nicole Burke  34th Street  San Francisco CA 94115 US nicoleburke222@gmail.com 555333'),(9875,3374,'_shipping_address_index','        '),(9876,3374,'_shipping_method',''),(9877,3374,'_download_permissions_granted','yes'),(9878,3374,'_recorded_sales','yes'),(9879,3374,'_recorded_coupon_usage_counts','yes'),(9880,3374,'_order_stock_reduced','yes'),(9881,3375,'_order_key','wc_order_59423a48cf222'),(9882,3375,'_customer_user','3'),(9883,3375,'_payment_method',''),(9884,3375,'_payment_method_title',''),(9885,3375,'_transaction_id',''),(9886,3375,'_customer_ip_address','217.24.25.23'),(9887,3375,'_customer_user_agent','mozilla/5.0 (windows nt 10.0; wow64; rv:53.0) gecko/20100101 firefox/53.0'),(9888,3375,'_created_via','checkout'),(9889,3375,'_date_completed','1497512521'),(9890,3375,'_completed_date','2017-06-15 07:42:01'),(9891,3375,'_date_paid','1497512521'),(9892,3375,'_paid_date','2017-06-15 07:42:01'),(9893,3375,'_cart_hash','a036d999a5755845ffe3226630d18b03'),(9894,3375,'_billing_first_name','Ralph'),(9895,3375,'_billing_last_name','Jackson'),(9896,3375,'_billing_company',''),(9897,3375,'_billing_address_1','36th Street'),(9898,3375,'_billing_address_2',''),(9899,3375,'_billing_city','San Francisco'),(9900,3375,'_billing_state','CA'),(9901,3375,'_billing_postcode','94116'),(9902,3375,'_billing_country','US'),(9903,3375,'_billing_email','ralphjackson001@gmail.com'),(9904,3375,'_billing_phone','555333'),(9905,3375,'_shipping_first_name',''),(9906,3375,'_shipping_last_name',''),(9907,3375,'_shipping_company',''),(9908,3375,'_shipping_address_1',''),(9909,3375,'_shipping_address_2',''),(9910,3375,'_shipping_city',''),(9911,3375,'_shipping_state',''),(9912,3375,'_shipping_postcode',''),(9913,3375,'_shipping_country',''),(9914,3375,'_order_currency','USD'),(9915,3375,'_cart_discount','0'),(9916,3375,'_cart_discount_tax','0'),(9917,3375,'_order_shipping','0'),(9918,3375,'_order_shipping_tax','0'),(9919,3375,'_order_tax','0'),(9920,3375,'_order_total','0.00'),(9921,3375,'_order_version','3.0.7'),(9922,3375,'_prices_include_tax','no'),(9923,3375,'_billing_address_index','Ralph Jackson  36th Street  San Francisco CA 94116 US ralphjackson001@gmail.com 555333'),(9924,3375,'_shipping_address_index','        '),(9925,3375,'_shipping_method',''),(9926,3375,'_download_permissions_granted','yes'),(9927,3375,'_recorded_sales','yes'),(9928,3375,'_recorded_coupon_usage_counts','yes'),(9929,3375,'_order_stock_reduced','yes'),(9930,3376,'_order_key','wc_order_59423ad1f3df8'),(9931,3376,'_customer_user','3'),(9932,3376,'_payment_method',''),(9933,3376,'_payment_method_title',''),(9934,3376,'_transaction_id',''),(9935,3376,'_customer_ip_address','217.24.25.23'),(9936,3376,'_customer_user_agent','mozilla/5.0 (windows nt 10.0; wow64; rv:53.0) gecko/20100101 firefox/53.0'),(9937,3376,'_created_via','checkout'),(9938,3376,'_date_completed','1497512658'),(9939,3376,'_completed_date','2017-06-15 07:44:18'),(9940,3376,'_date_paid','1497512658'),(9941,3376,'_paid_date','2017-06-15 07:44:18'),(9942,3376,'_cart_hash','7f728b3c22c06165541f3ca8ff94ad0b'),(9943,3376,'_billing_first_name','Ralph'),(9944,3376,'_billing_last_name','Jackson'),(9945,3376,'_billing_company',''),(9946,3376,'_billing_address_1','36th Street'),(9947,3376,'_billing_address_2',''),(9948,3376,'_billing_city','San Francisco'),(9949,3376,'_billing_state','CA'),(9950,3376,'_billing_postcode','94116'),(9951,3376,'_billing_country','US'),(9952,3376,'_billing_email','ralphjackson001@gmail.com'),(9953,3376,'_billing_phone','555333'),(9954,3376,'_shipping_first_name',''),(9955,3376,'_shipping_last_name',''),(9956,3376,'_shipping_company',''),(9957,3376,'_shipping_address_1',''),(9958,3376,'_shipping_address_2',''),(9959,3376,'_shipping_city',''),(9960,3376,'_shipping_state',''),(9961,3376,'_shipping_postcode',''),(9962,3376,'_shipping_country',''),(9963,3376,'_order_currency','USD'),(9964,3376,'_cart_discount','0'),(9965,3376,'_cart_discount_tax','0'),(9966,3376,'_order_shipping','0'),(9967,3376,'_order_shipping_tax','0'),(9968,3376,'_order_tax','0'),(9969,3376,'_order_total','0.00'),(9970,3376,'_order_version','3.0.7'),(9971,3376,'_prices_include_tax','no'),(9972,3376,'_billing_address_index','Ralph Jackson  36th Street  San Francisco CA 94116 US ralphjackson001@gmail.com 555333'),(9973,3376,'_shipping_address_index','        '),(9974,3376,'_shipping_method',''),(9975,3376,'_download_permissions_granted','yes'),(9976,3376,'_recorded_sales','yes'),(9977,3376,'_recorded_coupon_usage_counts','yes'),(9978,3376,'_order_stock_reduced','yes'),(9979,3377,'_order_key','wc_order_59423b25b0f82'),(9980,3377,'_customer_user','3'),(9981,3377,'_payment_method','bacs'),(9982,3377,'_payment_method_title','Direct bank transfer'),(9983,3377,'_transaction_id',''),(9984,3377,'_customer_ip_address','217.24.25.23'),(9985,3377,'_customer_user_agent','mozilla/5.0 (windows nt 10.0; wow64; rv:53.0) gecko/20100101 firefox/53.0'),(9986,3377,'_created_via','checkout'),(9987,3377,'_date_completed','1497512750'),(9988,3377,'_completed_date','2017-06-15 07:45:50'),(9989,3377,'_date_paid','1497512750'),(9990,3377,'_paid_date','2017-06-15 07:45:50'),(9991,3377,'_cart_hash','d3f3e60191415665fb0e31d587750994'),(9992,3377,'_billing_first_name','Ralph'),(9993,3377,'_billing_last_name','Jackson'),(9994,3377,'_billing_company',''),(9995,3377,'_billing_address_1','36th Street'),(9996,3377,'_billing_address_2',''),(9997,3377,'_billing_city','San Francisco'),(9998,3377,'_billing_state','CA'),(9999,3377,'_billing_postcode','94116'),(10000,3377,'_billing_country','US'),(10001,3377,'_billing_email','ralphjackson001@gmail.com'),(10002,3377,'_billing_phone','555333'),(10003,3377,'_shipping_first_name',''),(10004,3377,'_shipping_last_name',''),(10005,3377,'_shipping_company',''),(10006,3377,'_shipping_address_1',''),(10007,3377,'_shipping_address_2',''),(10008,3377,'_shipping_city',''),(10009,3377,'_shipping_state',''),(10010,3377,'_shipping_postcode',''),(10011,3377,'_shipping_country',''),(10012,3377,'_order_currency','USD'),(10013,3377,'_cart_discount','0'),(10014,3377,'_cart_discount_tax','0'),(10015,3377,'_order_shipping','0'),(10016,3377,'_order_shipping_tax','0'),(10017,3377,'_order_tax','0'),(10018,3377,'_order_total','40.00'),(10019,3377,'_order_version','3.0.7'),(10020,3377,'_prices_include_tax','no'),(10021,3377,'_billing_address_index','Ralph Jackson  36th Street  San Francisco CA 94116 US ralphjackson001@gmail.com 555333'),(10022,3377,'_shipping_address_index','        '),(10023,3377,'_shipping_method',''),(10024,3377,'_recorded_sales','yes'),(10025,3377,'_recorded_coupon_usage_counts','yes'),(10026,3377,'_order_stock_reduced','yes'),(10027,3377,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(10028,3377,'_download_permissions_granted','yes'),(10029,3378,'_order_key','wc_order_59423bc6b188c'),(10030,3378,'_customer_user','3'),(10031,3378,'_payment_method','bacs'),(10032,3378,'_payment_method_title','Direct bank transfer'),(10033,3378,'_transaction_id',''),(10034,3378,'_customer_ip_address','217.24.25.23'),(10035,3378,'_customer_user_agent','mozilla/5.0 (windows nt 10.0; wow64; rv:53.0) gecko/20100101 firefox/53.0'),(10036,3378,'_created_via','checkout'),(10037,3378,'_date_completed','1497512913'),(10038,3378,'_completed_date','2017-06-15 07:48:33'),(10039,3378,'_date_paid','1497512913'),(10040,3378,'_paid_date','2017-06-15 07:48:33'),(10041,3378,'_cart_hash','50b4c67b27e4fd41e4069adf0f10134a'),(10042,3378,'_billing_first_name','Ralph'),(10043,3378,'_billing_last_name','Jackson'),(10044,3378,'_billing_company',''),(10045,3378,'_billing_address_1','36th Street'),(10046,3378,'_billing_address_2',''),(10047,3378,'_billing_city','San Francisco'),(10048,3378,'_billing_state','CA'),(10049,3378,'_billing_postcode','94116'),(10050,3378,'_billing_country','US'),(10051,3378,'_billing_email','ralphjackson001@gmail.com'),(10052,3378,'_billing_phone','555333'),(10053,3378,'_shipping_first_name',''),(10054,3378,'_shipping_last_name',''),(10055,3378,'_shipping_company',''),(10056,3378,'_shipping_address_1',''),(10057,3378,'_shipping_address_2',''),(10058,3378,'_shipping_city',''),(10059,3378,'_shipping_state',''),(10060,3378,'_shipping_postcode',''),(10061,3378,'_shipping_country',''),(10062,3378,'_order_currency','USD'),(10063,3378,'_cart_discount','0'),(10064,3378,'_cart_discount_tax','0'),(10065,3378,'_order_shipping','0'),(10066,3378,'_order_shipping_tax','0'),(10067,3378,'_order_tax','0'),(10068,3378,'_order_total','20.00'),(10069,3378,'_order_version','3.0.7'),(10070,3378,'_prices_include_tax','no'),(10071,3378,'_billing_address_index','Ralph Jackson  36th Street  San Francisco CA 94116 US ralphjackson001@gmail.com 555333'),(10072,3378,'_shipping_address_index','        '),(10073,3378,'_shipping_method',''),(10074,3378,'_recorded_sales','yes'),(10075,3378,'_recorded_coupon_usage_counts','yes'),(10076,3378,'_order_stock_reduced','yes'),(10077,3378,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(10078,3378,'_download_permissions_granted','yes'),(10079,3379,'_order_key','wc_order_59423d0177de9'),(10080,3379,'_customer_user','4'),(10081,3379,'_payment_method',''),(10082,3379,'_payment_method_title',''),(10083,3379,'_transaction_id',''),(10084,3379,'_customer_ip_address','217.24.25.23'),(10085,3379,'_customer_user_agent','mozilla/5.0 (windows nt 10.0; wow64; rv:53.0) gecko/20100101 firefox/53.0'),(10086,3379,'_created_via','checkout'),(10087,3379,'_date_completed','1497513217'),(10088,3379,'_completed_date','2017-06-15 07:53:37'),(10089,3379,'_date_paid','1497513217'),(10090,3379,'_paid_date','2017-06-15 07:53:37'),(10091,3379,'_cart_hash','7f728b3c22c06165541f3ca8ff94ad0b'),(10092,3379,'_billing_first_name','Cynthia'),(10093,3379,'_billing_last_name','Fowler'),(10094,3379,'_billing_company',''),(10095,3379,'_billing_address_1','38th Street'),(10096,3379,'_billing_address_2',''),(10097,3379,'_billing_city','San Francisco'),(10098,3379,'_billing_state','CA'),(10099,3379,'_billing_postcode','94115'),(10100,3379,'_billing_country','US'),(10101,3379,'_billing_email','cynthiafowler002@gmail.com'),(10102,3379,'_billing_phone','555333'),(10103,3379,'_shipping_first_name',''),(10104,3379,'_shipping_last_name',''),(10105,3379,'_shipping_company',''),(10106,3379,'_shipping_address_1',''),(10107,3379,'_shipping_address_2',''),(10108,3379,'_shipping_city',''),(10109,3379,'_shipping_state',''),(10110,3379,'_shipping_postcode',''),(10111,3379,'_shipping_country',''),(10112,3379,'_order_currency','USD'),(10113,3379,'_cart_discount','0'),(10114,3379,'_cart_discount_tax','0'),(10115,3379,'_order_shipping','0'),(10116,3379,'_order_shipping_tax','0'),(10117,3379,'_order_tax','0'),(10118,3379,'_order_total','0.00'),(10119,3379,'_order_version','3.0.7'),(10120,3379,'_prices_include_tax','no'),(10121,3379,'_billing_address_index','Cynthia Fowler  38th Street  San Francisco CA 94115 US cynthiafowler002@gmail.com 555333'),(10122,3379,'_shipping_address_index','        '),(10123,3379,'_shipping_method',''),(10124,3379,'_download_permissions_granted','yes'),(10125,3379,'_recorded_sales','yes'),(10126,3379,'_recorded_coupon_usage_counts','yes'),(10127,3379,'_order_stock_reduced','yes'),(10128,3380,'_order_key','wc_order_59423d73bea79'),(10129,3380,'_customer_user','4'),(10130,3380,'_payment_method','bacs'),(10131,3380,'_payment_method_title','Direct bank transfer'),(10132,3380,'_transaction_id',''),(10133,3380,'_customer_ip_address','217.24.25.23'),(10134,3380,'_customer_user_agent','mozilla/5.0 (windows nt 10.0; wow64; rv:53.0) gecko/20100101 firefox/53.0'),(10135,3380,'_created_via','checkout'),(10136,3380,'_date_completed','1497513340'),(10137,3380,'_completed_date','2017-06-15 07:55:40'),(10138,3380,'_date_paid','1497513340'),(10139,3380,'_paid_date','2017-06-15 07:55:40'),(10140,3380,'_cart_hash','d9548aad4956ce4ad18e884bc2171a6b'),(10141,3380,'_billing_first_name','Cynthia'),(10142,3380,'_billing_last_name','Fowler'),(10143,3380,'_billing_company',''),(10144,3380,'_billing_address_1','38th Street'),(10145,3380,'_billing_address_2',''),(10146,3380,'_billing_city','San Francisco'),(10147,3380,'_billing_state','CA'),(10148,3380,'_billing_postcode','94115'),(10149,3380,'_billing_country','US'),(10150,3380,'_billing_email','cynthiafowler002@gmail.com'),(10151,3380,'_billing_phone','555333'),(10152,3380,'_shipping_first_name',''),(10153,3380,'_shipping_last_name',''),(10154,3380,'_shipping_company',''),(10155,3380,'_shipping_address_1',''),(10156,3380,'_shipping_address_2',''),(10157,3380,'_shipping_city',''),(10158,3380,'_shipping_state',''),(10159,3380,'_shipping_postcode',''),(10160,3380,'_shipping_country',''),(10161,3380,'_order_currency','USD'),(10162,3380,'_cart_discount','0'),(10163,3380,'_cart_discount_tax','0'),(10164,3380,'_order_shipping','0'),(10165,3380,'_order_shipping_tax','0'),(10166,3380,'_order_tax','0'),(10167,3380,'_order_total','20.00'),(10168,3380,'_order_version','3.0.7'),(10169,3380,'_prices_include_tax','no'),(10170,3380,'_billing_address_index','Cynthia Fowler  38th Street  San Francisco CA 94115 US cynthiafowler002@gmail.com 555333'),(10171,3380,'_shipping_address_index','        '),(10172,3380,'_shipping_method',''),(10173,3380,'_recorded_sales','yes'),(10174,3380,'_recorded_coupon_usage_counts','yes'),(10175,3380,'_order_stock_reduced','yes'),(10176,3380,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(10177,3380,'_download_permissions_granted','yes'),(10178,3381,'_order_key','wc_order_59423dfdcee93'),(10179,3381,'_customer_user','4'),(10180,3381,'_payment_method',''),(10181,3381,'_payment_method_title',''),(10182,3381,'_transaction_id',''),(10183,3381,'_customer_ip_address','217.24.25.23'),(10184,3381,'_customer_user_agent','mozilla/5.0 (windows nt 10.0; wow64; rv:53.0) gecko/20100101 firefox/53.0'),(10185,3381,'_created_via','checkout'),(10186,3381,'_date_completed','1497513470'),(10187,3381,'_completed_date','2017-06-15 07:57:50'),(10188,3381,'_date_paid','1497513470'),(10189,3381,'_paid_date','2017-06-15 07:57:50'),(10190,3381,'_cart_hash','ec2e04e06e0ff6e2434a14dd1221fd48'),(10191,3381,'_billing_first_name','Cynthia'),(10192,3381,'_billing_last_name','Fowler'),(10193,3381,'_billing_company',''),(10194,3381,'_billing_address_1','38th Street'),(10195,3381,'_billing_address_2',''),(10196,3381,'_billing_city','San Francisco'),(10197,3381,'_billing_state','CA'),(10198,3381,'_billing_postcode','94115'),(10199,3381,'_billing_country','US'),(10200,3381,'_billing_email','cynthiafowler002@gmail.com'),(10201,3381,'_billing_phone','555333'),(10202,3381,'_shipping_first_name',''),(10203,3381,'_shipping_last_name',''),(10204,3381,'_shipping_company',''),(10205,3381,'_shipping_address_1',''),(10206,3381,'_shipping_address_2',''),(10207,3381,'_shipping_city',''),(10208,3381,'_shipping_state',''),(10209,3381,'_shipping_postcode',''),(10210,3381,'_shipping_country',''),(10211,3381,'_order_currency','USD'),(10212,3381,'_cart_discount','0'),(10213,3381,'_cart_discount_tax','0'),(10214,3381,'_order_shipping','0'),(10215,3381,'_order_shipping_tax','0'),(10216,3381,'_order_tax','0'),(10217,3381,'_order_total','0.00'),(10218,3381,'_order_version','3.0.7'),(10219,3381,'_prices_include_tax','no'),(10220,3381,'_billing_address_index','Cynthia Fowler  38th Street  San Francisco CA 94115 US cynthiafowler002@gmail.com 555333'),(10221,3381,'_shipping_address_index','        '),(10222,3381,'_shipping_method',''),(10223,3381,'_download_permissions_granted','yes'),(10224,3381,'_recorded_sales','yes'),(10225,3381,'_recorded_coupon_usage_counts','yes'),(10226,3381,'_order_stock_reduced','yes'),(10227,3382,'_order_key','wc_order_59423e646d9d3'),(10228,3382,'_customer_user','4'),(10229,3382,'_payment_method','bacs'),(10230,3382,'_payment_method_title','Direct bank transfer'),(10231,3382,'_transaction_id',''),(10232,3382,'_customer_ip_address','217.24.25.23'),(10233,3382,'_customer_user_agent','mozilla/5.0 (windows nt 10.0; wow64; rv:53.0) gecko/20100101 firefox/53.0'),(10234,3382,'_created_via','checkout'),(10235,3382,'_date_completed','1497513612'),(10236,3382,'_completed_date','2017-06-15 08:00:12'),(10237,3382,'_date_paid','1497513612'),(10238,3382,'_paid_date','2017-06-15 08:00:12'),(10239,3382,'_cart_hash','d3f3e60191415665fb0e31d587750994'),(10240,3382,'_billing_first_name','Cynthia'),(10241,3382,'_billing_last_name','Fowler'),(10242,3382,'_billing_company',''),(10243,3382,'_billing_address_1','38th Street'),(10244,3382,'_billing_address_2',''),(10245,3382,'_billing_city','San Francisco'),(10246,3382,'_billing_state','CA'),(10247,3382,'_billing_postcode','94115'),(10248,3382,'_billing_country','US'),(10249,3382,'_billing_email','cynthiafowler002@gmail.com'),(10250,3382,'_billing_phone','555333'),(10251,3382,'_shipping_first_name',''),(10252,3382,'_shipping_last_name',''),(10253,3382,'_shipping_company',''),(10254,3382,'_shipping_address_1',''),(10255,3382,'_shipping_address_2',''),(10256,3382,'_shipping_city',''),(10257,3382,'_shipping_state',''),(10258,3382,'_shipping_postcode',''),(10259,3382,'_shipping_country',''),(10260,3382,'_order_currency','USD'),(10261,3382,'_cart_discount','0'),(10262,3382,'_cart_discount_tax','0'),(10263,3382,'_order_shipping','0'),(10264,3382,'_order_shipping_tax','0'),(10265,3382,'_order_tax','0'),(10266,3382,'_order_total','40.00'),(10267,3382,'_order_version','3.0.7'),(10268,3382,'_prices_include_tax','no'),(10269,3382,'_billing_address_index','Cynthia Fowler  38th Street  San Francisco CA 94115 US cynthiafowler002@gmail.com 555333'),(10270,3382,'_shipping_address_index','        '),(10271,3382,'_shipping_method',''),(10272,3382,'_recorded_sales','yes'),(10273,3382,'_recorded_coupon_usage_counts','yes'),(10274,3382,'_order_stock_reduced','yes'),(10275,3382,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(10276,3382,'_download_permissions_granted','yes'),(10277,3383,'_order_key','wc_order_59423fa18bb90'),(10278,3383,'_customer_user','2'),(10279,3383,'_payment_method',''),(10280,3383,'_payment_method_title',''),(10281,3383,'_transaction_id',''),(10282,3383,'_customer_ip_address','217.24.25.23'),(10283,3383,'_customer_user_agent','mozilla/5.0 (windows nt 10.0; wow64; rv:53.0) gecko/20100101 firefox/53.0'),(10284,3383,'_created_via','checkout'),(10285,3383,'_date_completed','1497513890'),(10286,3383,'_completed_date','2017-06-15 08:04:50'),(10287,3383,'_date_paid','1497513890'),(10288,3383,'_paid_date','2017-06-15 08:04:50'),(10289,3383,'_cart_hash','a036d999a5755845ffe3226630d18b03'),(10290,3383,'_billing_first_name','Nicole'),(10291,3383,'_billing_last_name','Burke'),(10292,3383,'_billing_company',''),(10293,3383,'_billing_address_1','34th Street'),(10294,3383,'_billing_address_2',''),(10295,3383,'_billing_city','San Francisco'),(10296,3383,'_billing_state','CA'),(10297,3383,'_billing_postcode','94115'),(10298,3383,'_billing_country','US'),(10299,3383,'_billing_email','nicoleburke222@gmail.com'),(10300,3383,'_billing_phone','555333'),(10301,3383,'_shipping_first_name',''),(10302,3383,'_shipping_last_name',''),(10303,3383,'_shipping_company',''),(10304,3383,'_shipping_address_1',''),(10305,3383,'_shipping_address_2',''),(10306,3383,'_shipping_city',''),(10307,3383,'_shipping_state',''),(10308,3383,'_shipping_postcode',''),(10309,3383,'_shipping_country',''),(10310,3383,'_order_currency','USD'),(10311,3383,'_cart_discount','0'),(10312,3383,'_cart_discount_tax','0'),(10313,3383,'_order_shipping','0'),(10314,3383,'_order_shipping_tax','0'),(10315,3383,'_order_tax','0'),(10316,3383,'_order_total','0.00'),(10317,3383,'_order_version','3.0.7'),(10318,3383,'_prices_include_tax','no'),(10319,3383,'_billing_address_index','Nicole Burke  34th Street  San Francisco CA 94115 US nicoleburke222@gmail.com 555333'),(10320,3383,'_shipping_address_index','        '),(10321,3383,'_shipping_method',''),(10322,3383,'_download_permissions_granted','yes'),(10323,3383,'_recorded_sales','yes'),(10324,3383,'_recorded_coupon_usage_counts','yes'),(10325,3383,'_order_stock_reduced','yes'),(10326,3384,'_order_key','wc_order_594240251e527'),(10327,3384,'_customer_user','2'),(10328,3384,'_payment_method',''),(10329,3384,'_payment_method_title',''),(10330,3384,'_transaction_id',''),(10331,3384,'_customer_ip_address','217.24.25.23'),(10332,3384,'_customer_user_agent','mozilla/5.0 (windows nt 10.0; wow64; rv:53.0) gecko/20100101 firefox/53.0'),(10333,3384,'_created_via','checkout'),(10334,3384,'_date_completed','1497514022'),(10335,3384,'_completed_date','2017-06-15 08:07:02'),(10336,3384,'_date_paid','1497514022'),(10337,3384,'_paid_date','2017-06-15 08:07:02'),(10338,3384,'_cart_hash','7f728b3c22c06165541f3ca8ff94ad0b'),(10339,3384,'_billing_first_name','Nicole'),(10340,3384,'_billing_last_name','Burke'),(10341,3384,'_billing_company',''),(10342,3384,'_billing_address_1','34th Street'),(10343,3384,'_billing_address_2',''),(10344,3384,'_billing_city','San Francisco'),(10345,3384,'_billing_state','CA'),(10346,3384,'_billing_postcode','94115'),(10347,3384,'_billing_country','US'),(10348,3384,'_billing_email','nicoleburke222@gmail.com'),(10349,3384,'_billing_phone','555333'),(10350,3384,'_shipping_first_name',''),(10351,3384,'_shipping_last_name',''),(10352,3384,'_shipping_company',''),(10353,3384,'_shipping_address_1',''),(10354,3384,'_shipping_address_2',''),(10355,3384,'_shipping_city',''),(10356,3384,'_shipping_state',''),(10357,3384,'_shipping_postcode',''),(10358,3384,'_shipping_country',''),(10359,3384,'_order_currency','USD'),(10360,3384,'_cart_discount','0'),(10361,3384,'_cart_discount_tax','0'),(10362,3384,'_order_shipping','0'),(10363,3384,'_order_shipping_tax','0'),(10364,3384,'_order_tax','0'),(10365,3384,'_order_total','0.00'),(10366,3384,'_order_version','3.0.7'),(10367,3384,'_prices_include_tax','no'),(10368,3384,'_billing_address_index','Nicole Burke  34th Street  San Francisco CA 94115 US nicoleburke222@gmail.com 555333'),(10369,3384,'_shipping_address_index','        '),(10370,3384,'_shipping_method',''),(10371,3384,'_download_permissions_granted','yes'),(10372,3384,'_recorded_sales','yes'),(10373,3384,'_recorded_coupon_usage_counts','yes'),(10374,3384,'_order_stock_reduced','yes'),(10375,3385,'_order_key','wc_order_594240a4eeae1'),(10376,3385,'_customer_user','2'),(10377,3385,'_payment_method','bacs'),(10378,3385,'_payment_method_title','Direct bank transfer'),(10379,3385,'_transaction_id',''),(10380,3385,'_customer_ip_address','217.24.25.23'),(10381,3385,'_customer_user_agent','mozilla/5.0 (windows nt 10.0; wow64; rv:53.0) gecko/20100101 firefox/53.0'),(10382,3385,'_created_via','checkout'),(10383,3385,'_date_completed','1497514192'),(10384,3385,'_completed_date','2017-06-15 08:09:52'),(10385,3385,'_date_paid','1497514192'),(10386,3385,'_paid_date','2017-06-15 08:09:52'),(10387,3385,'_cart_hash','d9548aad4956ce4ad18e884bc2171a6b'),(10388,3385,'_billing_first_name','Nicole'),(10389,3385,'_billing_last_name','Burke'),(10390,3385,'_billing_company',''),(10391,3385,'_billing_address_1','34th Street'),(10392,3385,'_billing_address_2',''),(10393,3385,'_billing_city','San Francisco'),(10394,3385,'_billing_state','CA'),(10395,3385,'_billing_postcode','94115'),(10396,3385,'_billing_country','US'),(10397,3385,'_billing_email','nicoleburke222@gmail.com'),(10398,3385,'_billing_phone','555333'),(10399,3385,'_shipping_first_name',''),(10400,3385,'_shipping_last_name',''),(10401,3385,'_shipping_company',''),(10402,3385,'_shipping_address_1',''),(10403,3385,'_shipping_address_2',''),(10404,3385,'_shipping_city',''),(10405,3385,'_shipping_state',''),(10406,3385,'_shipping_postcode',''),(10407,3385,'_shipping_country',''),(10408,3385,'_order_currency','USD'),(10409,3385,'_cart_discount','0'),(10410,3385,'_cart_discount_tax','0'),(10411,3385,'_order_shipping','0'),(10412,3385,'_order_shipping_tax','0'),(10413,3385,'_order_tax','0'),(10414,3385,'_order_total','20.00'),(10415,3385,'_order_version','3.0.7'),(10416,3385,'_prices_include_tax','no'),(10417,3385,'_billing_address_index','Nicole Burke  34th Street  San Francisco CA 94115 US nicoleburke222@gmail.com 555333'),(10418,3385,'_shipping_address_index','        '),(10419,3385,'_shipping_method',''),(10420,3385,'_recorded_sales','yes'),(10421,3385,'_recorded_coupon_usage_counts','yes'),(10422,3385,'_order_stock_reduced','yes'),(10423,3385,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(10424,3385,'_download_permissions_granted','yes'),(10425,3386,'_order_key','wc_order_5942412fbbb1e'),(10426,3386,'_customer_user','2'),(10427,3386,'_payment_method',''),(10428,3386,'_payment_method_title',''),(10429,3386,'_transaction_id',''),(10430,3386,'_customer_ip_address','217.24.25.23'),(10431,3386,'_customer_user_agent','mozilla/5.0 (windows nt 10.0; wow64; rv:53.0) gecko/20100101 firefox/53.0'),(10432,3386,'_created_via','checkout'),(10433,3386,'_date_completed','1497514288'),(10434,3386,'_completed_date','2017-06-15 08:11:28'),(10435,3386,'_date_paid','1497514288'),(10436,3386,'_paid_date','2017-06-15 08:11:28'),(10437,3386,'_cart_hash','f97e30ff7fe086a9a33aca803b8f4827'),(10438,3386,'_billing_first_name','Nicole'),(10439,3386,'_billing_last_name','Burke'),(10440,3386,'_billing_company',''),(10441,3386,'_billing_address_1','34th Street'),(10442,3386,'_billing_address_2',''),(10443,3386,'_billing_city','San Francisco'),(10444,3386,'_billing_state','CA'),(10445,3386,'_billing_postcode','94115'),(10446,3386,'_billing_country','US'),(10447,3386,'_billing_email','nicoleburke222@gmail.com'),(10448,3386,'_billing_phone','555333'),(10449,3386,'_shipping_first_name',''),(10450,3386,'_shipping_last_name',''),(10451,3386,'_shipping_company',''),(10452,3386,'_shipping_address_1',''),(10453,3386,'_shipping_address_2',''),(10454,3386,'_shipping_city',''),(10455,3386,'_shipping_state',''),(10456,3386,'_shipping_postcode',''),(10457,3386,'_shipping_country',''),(10458,3386,'_order_currency','USD'),(10459,3386,'_cart_discount','0'),(10460,3386,'_cart_discount_tax','0'),(10461,3386,'_order_shipping','0'),(10462,3386,'_order_shipping_tax','0'),(10463,3386,'_order_tax','0'),(10464,3386,'_order_total','0.00'),(10465,3386,'_order_version','3.0.7'),(10466,3386,'_prices_include_tax','no'),(10467,3386,'_billing_address_index','Nicole Burke  34th Street  San Francisco CA 94115 US nicoleburke222@gmail.com 555333'),(10468,3386,'_shipping_address_index','        '),(10469,3386,'_shipping_method',''),(10470,3386,'_download_permissions_granted','yes'),(10471,3386,'_recorded_sales','yes'),(10472,3386,'_recorded_coupon_usage_counts','yes'),(10473,3386,'_order_stock_reduced','yes'),(10474,3387,'_order_key','wc_order_594241d3953ab'),(10475,3387,'_customer_user','2'),(10476,3387,'_payment_method','bacs'),(10477,3387,'_payment_method_title','Direct bank transfer'),(10478,3387,'_transaction_id',''),(10479,3387,'_customer_ip_address','217.24.25.23'),(10480,3387,'_customer_user_agent','mozilla/5.0 (windows nt 10.0; wow64; rv:53.0) gecko/20100101 firefox/53.0'),(10481,3387,'_created_via','checkout'),(10482,3387,'_date_completed','1497514468'),(10483,3387,'_completed_date','2017-06-15 08:14:28'),(10484,3387,'_date_paid','1497514468'),(10485,3387,'_paid_date','2017-06-15 08:14:28'),(10486,3387,'_cart_hash','c58d257a5955d3de4ec6738dc8f28e48'),(10487,3387,'_billing_first_name','Nicole'),(10488,3387,'_billing_last_name','Burke'),(10489,3387,'_billing_company',''),(10490,3387,'_billing_address_1','34th Street'),(10491,3387,'_billing_address_2',''),(10492,3387,'_billing_city','San Francisco'),(10493,3387,'_billing_state','CA'),(10494,3387,'_billing_postcode','94115'),(10495,3387,'_billing_country','US'),(10496,3387,'_billing_email','nicoleburke222@gmail.com'),(10497,3387,'_billing_phone','555333'),(10498,3387,'_shipping_first_name',''),(10499,3387,'_shipping_last_name',''),(10500,3387,'_shipping_company',''),(10501,3387,'_shipping_address_1',''),(10502,3387,'_shipping_address_2',''),(10503,3387,'_shipping_city',''),(10504,3387,'_shipping_state',''),(10505,3387,'_shipping_postcode',''),(10506,3387,'_shipping_country',''),(10507,3387,'_order_currency','USD'),(10508,3387,'_cart_discount','0'),(10509,3387,'_cart_discount_tax','0'),(10510,3387,'_order_shipping','0'),(10511,3387,'_order_shipping_tax','0'),(10512,3387,'_order_tax','0'),(10513,3387,'_order_total','20.00'),(10514,3387,'_order_version','3.0.7'),(10515,3387,'_prices_include_tax','no'),(10516,3387,'_billing_address_index','Nicole Burke  34th Street  San Francisco CA 94115 US nicoleburke222@gmail.com 555333'),(10517,3387,'_shipping_address_index','        '),(10518,3387,'_shipping_method',''),(10519,3387,'_recorded_sales','yes'),(10520,3387,'_recorded_coupon_usage_counts','yes'),(10521,3387,'_order_stock_reduced','yes'),(10522,3387,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(10523,3387,'_download_permissions_granted','yes'),(10524,3388,'_order_key','wc_order_594243cae2024'),(10525,3388,'_customer_user','2'),(10526,3388,'_payment_method',''),(10527,3388,'_payment_method_title',''),(10528,3388,'_transaction_id',''),(10529,3388,'_customer_ip_address','217.24.25.23'),(10530,3388,'_customer_user_agent','mozilla/5.0 (windows nt 10.0; wow64; rv:53.0) gecko/20100101 firefox/53.0'),(10531,3388,'_created_via','checkout'),(10532,3388,'_date_completed','1497514955'),(10533,3388,'_completed_date','2017-06-15 08:22:35'),(10534,3388,'_date_paid','1497514955'),(10535,3388,'_paid_date','2017-06-15 08:22:35'),(10536,3388,'_cart_hash','226663681b1ff8ee3d60f174895d10b0'),(10537,3388,'_billing_first_name','Nicole'),(10538,3388,'_billing_last_name','Burke'),(10539,3388,'_billing_company',''),(10540,3388,'_billing_address_1','34th Street'),(10541,3388,'_billing_address_2',''),(10542,3388,'_billing_city','San Francisco'),(10543,3388,'_billing_state','CA'),(10544,3388,'_billing_postcode','94115'),(10545,3388,'_billing_country','US'),(10546,3388,'_billing_email','nicoleburke222@gmail.com'),(10547,3388,'_billing_phone','555333'),(10548,3388,'_shipping_first_name',''),(10549,3388,'_shipping_last_name',''),(10550,3388,'_shipping_company',''),(10551,3388,'_shipping_address_1',''),(10552,3388,'_shipping_address_2',''),(10553,3388,'_shipping_city',''),(10554,3388,'_shipping_state',''),(10555,3388,'_shipping_postcode',''),(10556,3388,'_shipping_country',''),(10557,3388,'_order_currency','USD'),(10558,3388,'_cart_discount','0'),(10559,3388,'_cart_discount_tax','0'),(10560,3388,'_order_shipping','0'),(10561,3388,'_order_shipping_tax','0'),(10562,3388,'_order_tax','0'),(10563,3388,'_order_total','0.00'),(10564,3388,'_order_version','3.0.7'),(10565,3388,'_prices_include_tax','no'),(10566,3388,'_billing_address_index','Nicole Burke  34th Street  San Francisco CA 94115 US nicoleburke222@gmail.com 555333'),(10567,3388,'_shipping_address_index','        '),(10568,3388,'_shipping_method',''),(10569,3388,'_download_permissions_granted','yes'),(10570,3388,'_recorded_sales','yes'),(10571,3388,'_recorded_coupon_usage_counts','yes'),(10572,3388,'_order_stock_reduced','yes'),(10573,3389,'_order_key','wc_order_5942446b8b9ea'),(10574,3389,'_customer_user','2'),(10575,3389,'_payment_method',''),(10576,3389,'_payment_method_title',''),(10577,3389,'_transaction_id',''),(10578,3389,'_customer_ip_address','217.24.25.23'),(10579,3389,'_customer_user_agent','mozilla/5.0 (windows nt 10.0; wow64; rv:53.0) gecko/20100101 firefox/53.0'),(10580,3389,'_created_via','checkout'),(10581,3389,'_date_completed','1497515115'),(10582,3389,'_completed_date','2017-06-15 08:25:15'),(10583,3389,'_date_paid','1497515115'),(10584,3389,'_paid_date','2017-06-15 08:25:15'),(10585,3389,'_cart_hash','fe07742d0ced563088656fb800d4b66d'),(10586,3389,'_billing_first_name','Nicole'),(10587,3389,'_billing_last_name','Burke'),(10588,3389,'_billing_company',''),(10589,3389,'_billing_address_1','34th Street'),(10590,3389,'_billing_address_2',''),(10591,3389,'_billing_city','San Francisco'),(10592,3389,'_billing_state','CA'),(10593,3389,'_billing_postcode','94115'),(10594,3389,'_billing_country','US'),(10595,3389,'_billing_email','nicoleburke222@gmail.com'),(10596,3389,'_billing_phone','555333'),(10597,3389,'_shipping_first_name',''),(10598,3389,'_shipping_last_name',''),(10599,3389,'_shipping_company',''),(10600,3389,'_shipping_address_1',''),(10601,3389,'_shipping_address_2',''),(10602,3389,'_shipping_city',''),(10603,3389,'_shipping_state',''),(10604,3389,'_shipping_postcode',''),(10605,3389,'_shipping_country',''),(10606,3389,'_order_currency','USD'),(10607,3389,'_cart_discount','0'),(10608,3389,'_cart_discount_tax','0'),(10609,3389,'_order_shipping','0'),(10610,3389,'_order_shipping_tax','0'),(10611,3389,'_order_tax','0'),(10612,3389,'_order_total','0.00'),(10613,3389,'_order_version','3.0.7'),(10614,3389,'_prices_include_tax','no'),(10615,3389,'_billing_address_index','Nicole Burke  34th Street  San Francisco CA 94115 US nicoleburke222@gmail.com 555333'),(10616,3389,'_shipping_address_index','        '),(10617,3389,'_shipping_method',''),(10618,3389,'_download_permissions_granted','yes'),(10619,3389,'_recorded_sales','yes'),(10620,3389,'_recorded_coupon_usage_counts','yes'),(10621,3389,'_order_stock_reduced','yes'),(10622,3390,'_order_key','wc_order_594246399e23c'),(10623,3390,'_customer_user','2'),(10624,3390,'_payment_method','bacs'),(10625,3390,'_payment_method_title','Direct bank transfer'),(10626,3390,'_transaction_id',''),(10627,3390,'_customer_ip_address','217.24.25.23'),(10628,3390,'_customer_user_agent','mozilla/5.0 (windows nt 10.0; wow64; rv:53.0) gecko/20100101 firefox/53.0'),(10629,3390,'_created_via','checkout'),(10630,3390,'_date_completed','1497515587'),(10631,3390,'_completed_date','2017-06-15 08:33:07'),(10632,3390,'_date_paid','1497515587'),(10633,3390,'_paid_date','2017-06-15 08:33:07'),(10634,3390,'_cart_hash','2da157d728b44b61c142c48c290ada72'),(10635,3390,'_billing_first_name','Nicole'),(10636,3390,'_billing_last_name','Burke'),(10637,3390,'_billing_company',''),(10638,3390,'_billing_address_1','34th Street'),(10639,3390,'_billing_address_2',''),(10640,3390,'_billing_city','San Francisco'),(10641,3390,'_billing_state','CA'),(10642,3390,'_billing_postcode','94115'),(10643,3390,'_billing_country','US'),(10644,3390,'_billing_email','nicoleburke222@gmail.com'),(10645,3390,'_billing_phone','555333'),(10646,3390,'_shipping_first_name',''),(10647,3390,'_shipping_last_name',''),(10648,3390,'_shipping_company',''),(10649,3390,'_shipping_address_1',''),(10650,3390,'_shipping_address_2',''),(10651,3390,'_shipping_city',''),(10652,3390,'_shipping_state',''),(10653,3390,'_shipping_postcode',''),(10654,3390,'_shipping_country',''),(10655,3390,'_order_currency','USD'),(10656,3390,'_cart_discount','0'),(10657,3390,'_cart_discount_tax','0'),(10658,3390,'_order_shipping','0'),(10659,3390,'_order_shipping_tax','0'),(10660,3390,'_order_tax','0'),(10661,3390,'_order_total','20.00'),(10662,3390,'_order_version','3.0.7'),(10663,3390,'_prices_include_tax','no'),(10664,3390,'_billing_address_index','Nicole Burke  34th Street  San Francisco CA 94115 US nicoleburke222@gmail.com 555333'),(10665,3390,'_shipping_address_index','        '),(10666,3390,'_shipping_method',''),(10667,3390,'_recorded_sales','yes'),(10668,3390,'_recorded_coupon_usage_counts','yes'),(10669,3390,'_order_stock_reduced','yes'),(10670,3390,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(10671,3390,'_download_permissions_granted','yes'),(10672,3391,'_order_key','wc_order_594246dfa7e0b'),(10673,3391,'_customer_user','2'),(10674,3391,'_payment_method',''),(10675,3391,'_payment_method_title',''),(10676,3391,'_transaction_id',''),(10677,3391,'_customer_ip_address','217.24.25.23'),(10678,3391,'_customer_user_agent','mozilla/5.0 (windows nt 10.0; wow64; rv:53.0) gecko/20100101 firefox/53.0'),(10679,3391,'_created_via','checkout'),(10680,3391,'_date_completed','1497515744'),(10681,3391,'_completed_date','2017-06-15 08:35:44'),(10682,3391,'_date_paid','1497515744'),(10683,3391,'_paid_date','2017-06-15 08:35:44'),(10684,3391,'_cart_hash','5d34fc11ed394559ffa9c627b38340cf'),(10685,3391,'_billing_first_name','Nicole'),(10686,3391,'_billing_last_name','Burke'),(10687,3391,'_billing_company',''),(10688,3391,'_billing_address_1','34th Street'),(10689,3391,'_billing_address_2',''),(10690,3391,'_billing_city','San Francisco'),(10691,3391,'_billing_state','CA'),(10692,3391,'_billing_postcode','94115'),(10693,3391,'_billing_country','US'),(10694,3391,'_billing_email','nicoleburke222@gmail.com'),(10695,3391,'_billing_phone','555333'),(10696,3391,'_shipping_first_name',''),(10697,3391,'_shipping_last_name',''),(10698,3391,'_shipping_company',''),(10699,3391,'_shipping_address_1',''),(10700,3391,'_shipping_address_2',''),(10701,3391,'_shipping_city',''),(10702,3391,'_shipping_state',''),(10703,3391,'_shipping_postcode',''),(10704,3391,'_shipping_country',''),(10705,3391,'_order_currency','USD'),(10706,3391,'_cart_discount','0'),(10707,3391,'_cart_discount_tax','0'),(10708,3391,'_order_shipping','0'),(10709,3391,'_order_shipping_tax','0'),(10710,3391,'_order_tax','0'),(10711,3391,'_order_total','0.00'),(10712,3391,'_order_version','3.0.7'),(10713,3391,'_prices_include_tax','no'),(10714,3391,'_billing_address_index','Nicole Burke  34th Street  San Francisco CA 94115 US nicoleburke222@gmail.com 555333'),(10715,3391,'_shipping_address_index','        '),(10716,3391,'_shipping_method',''),(10717,3391,'_download_permissions_granted','yes'),(10718,3391,'_recorded_sales','yes'),(10719,3391,'_recorded_coupon_usage_counts','yes'),(10720,3391,'_order_stock_reduced','yes'),(10721,3392,'_order_key','wc_order_59424794b0b87'),(10722,3392,'_customer_user','3'),(10723,3392,'_payment_method',''),(10724,3392,'_payment_method_title',''),(10725,3392,'_transaction_id',''),(10726,3392,'_customer_ip_address','217.24.25.23'),(10727,3392,'_customer_user_agent','mozilla/5.0 (windows nt 10.0; wow64; rv:53.0) gecko/20100101 firefox/53.0'),(10728,3392,'_created_via','checkout'),(10729,3392,'_date_completed','1497515924'),(10730,3392,'_completed_date','2017-06-15 08:38:44'),(10731,3392,'_date_paid','1497515924'),(10732,3392,'_paid_date','2017-06-15 08:38:44'),(10733,3392,'_cart_hash','226663681b1ff8ee3d60f174895d10b0'),(10734,3392,'_billing_first_name','Ralph'),(10735,3392,'_billing_last_name','Jackson'),(10736,3392,'_billing_company',''),(10737,3392,'_billing_address_1','36th Street'),(10738,3392,'_billing_address_2',''),(10739,3392,'_billing_city','San Francisco'),(10740,3392,'_billing_state','CA'),(10741,3392,'_billing_postcode','94116'),(10742,3392,'_billing_country','US'),(10743,3392,'_billing_email','ralphjackson001@gmail.com'),(10744,3392,'_billing_phone','555333'),(10745,3392,'_shipping_first_name',''),(10746,3392,'_shipping_last_name',''),(10747,3392,'_shipping_company',''),(10748,3392,'_shipping_address_1',''),(10749,3392,'_shipping_address_2',''),(10750,3392,'_shipping_city',''),(10751,3392,'_shipping_state',''),(10752,3392,'_shipping_postcode',''),(10753,3392,'_shipping_country',''),(10754,3392,'_order_currency','USD'),(10755,3392,'_cart_discount','0'),(10756,3392,'_cart_discount_tax','0'),(10757,3392,'_order_shipping','0'),(10758,3392,'_order_shipping_tax','0'),(10759,3392,'_order_tax','0'),(10760,3392,'_order_total','0.00'),(10761,3392,'_order_version','3.0.7'),(10762,3392,'_prices_include_tax','no'),(10763,3392,'_billing_address_index','Ralph Jackson  36th Street  San Francisco CA 94116 US ralphjackson001@gmail.com 555333'),(10764,3392,'_shipping_address_index','        '),(10765,3392,'_shipping_method',''),(10766,3392,'_download_permissions_granted','yes'),(10767,3392,'_recorded_sales','yes'),(10768,3392,'_recorded_coupon_usage_counts','yes'),(10769,3392,'_order_stock_reduced','yes'),(10770,3393,'_order_key','wc_order_59424807e7bf0'),(10771,3393,'_customer_user','3'),(10772,3393,'_payment_method',''),(10773,3393,'_payment_method_title',''),(10774,3393,'_transaction_id',''),(10775,3393,'_customer_ip_address','217.24.25.23'),(10776,3393,'_customer_user_agent','mozilla/5.0 (windows nt 10.0; wow64; rv:53.0) gecko/20100101 firefox/53.0'),(10777,3393,'_created_via','checkout'),(10778,3393,'_date_completed','1497516040'),(10779,3393,'_completed_date','2017-06-15 08:40:40'),(10780,3393,'_date_paid','1497516040'),(10781,3393,'_paid_date','2017-06-15 08:40:40'),(10782,3393,'_cart_hash','53ea9687e681639bcce11fb3707209b5'),(10783,3393,'_billing_first_name','Ralph'),(10784,3393,'_billing_last_name','Jackson'),(10785,3393,'_billing_company',''),(10786,3393,'_billing_address_1','36th Street'),(10787,3393,'_billing_address_2',''),(10788,3393,'_billing_city','San Francisco'),(10789,3393,'_billing_state','CA'),(10790,3393,'_billing_postcode','94116'),(10791,3393,'_billing_country','US'),(10792,3393,'_billing_email','ralphjackson001@gmail.com'),(10793,3393,'_billing_phone','555333'),(10794,3393,'_shipping_first_name',''),(10795,3393,'_shipping_last_name',''),(10796,3393,'_shipping_company',''),(10797,3393,'_shipping_address_1',''),(10798,3393,'_shipping_address_2',''),(10799,3393,'_shipping_city',''),(10800,3393,'_shipping_state',''),(10801,3393,'_shipping_postcode',''),(10802,3393,'_shipping_country',''),(10803,3393,'_order_currency','USD'),(10804,3393,'_cart_discount','0'),(10805,3393,'_cart_discount_tax','0'),(10806,3393,'_order_shipping','0'),(10807,3393,'_order_shipping_tax','0'),(10808,3393,'_order_tax','0'),(10809,3393,'_order_total','0.00'),(10810,3393,'_order_version','3.0.7'),(10811,3393,'_prices_include_tax','no'),(10812,3393,'_billing_address_index','Ralph Jackson  36th Street  San Francisco CA 94116 US ralphjackson001@gmail.com 555333'),(10813,3393,'_shipping_address_index','        '),(10814,3393,'_shipping_method',''),(10815,3393,'_download_permissions_granted','yes'),(10816,3393,'_recorded_sales','yes'),(10817,3393,'_recorded_coupon_usage_counts','yes'),(10818,3393,'_order_stock_reduced','yes'),(10819,3394,'_order_key','wc_order_5942485b7d1a4'),(10820,3394,'_customer_user','3'),(10821,3394,'_payment_method','bacs'),(10822,3394,'_payment_method_title','Direct bank transfer'),(10823,3394,'_transaction_id',''),(10824,3394,'_customer_ip_address','217.24.25.23'),(10825,3394,'_customer_user_agent','mozilla/5.0 (windows nt 10.0; wow64; rv:53.0) gecko/20100101 firefox/53.0'),(10826,3394,'_created_via','checkout'),(10827,3394,'_date_completed','1497516133'),(10828,3394,'_completed_date','2017-06-15 08:42:13'),(10829,3394,'_date_paid','1497516133'),(10830,3394,'_paid_date','2017-06-15 08:42:13'),(10831,3394,'_cart_hash','b9abd972deddb6608a8bdcb78c552f5c'),(10832,3394,'_billing_first_name','Ralph'),(10833,3394,'_billing_last_name','Jackson'),(10834,3394,'_billing_company',''),(10835,3394,'_billing_address_1','36th Street'),(10836,3394,'_billing_address_2',''),(10837,3394,'_billing_city','San Francisco'),(10838,3394,'_billing_state','CA'),(10839,3394,'_billing_postcode','94116'),(10840,3394,'_billing_country','US'),(10841,3394,'_billing_email','ralphjackson001@gmail.com'),(10842,3394,'_billing_phone','555333'),(10843,3394,'_shipping_first_name',''),(10844,3394,'_shipping_last_name',''),(10845,3394,'_shipping_company',''),(10846,3394,'_shipping_address_1',''),(10847,3394,'_shipping_address_2',''),(10848,3394,'_shipping_city',''),(10849,3394,'_shipping_state',''),(10850,3394,'_shipping_postcode',''),(10851,3394,'_shipping_country',''),(10852,3394,'_order_currency','USD'),(10853,3394,'_cart_discount','0'),(10854,3394,'_cart_discount_tax','0'),(10855,3394,'_order_shipping','0'),(10856,3394,'_order_shipping_tax','0'),(10857,3394,'_order_tax','0'),(10858,3394,'_order_total','20.00'),(10859,3394,'_order_version','3.0.7'),(10860,3394,'_prices_include_tax','no'),(10861,3394,'_billing_address_index','Ralph Jackson  36th Street  San Francisco CA 94116 US ralphjackson001@gmail.com 555333'),(10862,3394,'_shipping_address_index','        '),(10863,3394,'_shipping_method',''),(10864,3394,'_recorded_sales','yes'),(10865,3394,'_recorded_coupon_usage_counts','yes'),(10866,3394,'_order_stock_reduced','yes'),(10867,3394,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(10868,3394,'_download_permissions_granted','yes'),(10869,3395,'_order_key','wc_order_59424a0068c3b'),(10870,3395,'_customer_user','3'),(10871,3395,'_payment_method',''),(10872,3395,'_payment_method_title',''),(10873,3395,'_transaction_id',''),(10874,3395,'_customer_ip_address','217.24.25.23'),(10875,3395,'_customer_user_agent','mozilla/5.0 (windows nt 10.0; wow64; rv:53.0) gecko/20100101 firefox/53.0'),(10876,3395,'_created_via','checkout'),(10877,3395,'_date_completed','1497516545'),(10878,3395,'_completed_date','2017-06-15 08:49:05'),(10879,3395,'_date_paid','1497516545'),(10880,3395,'_paid_date','2017-06-15 08:49:05'),(10881,3395,'_cart_hash','3cc1be99231cb2b6c3170ba9d41c6398'),(10882,3395,'_billing_first_name','Ralph'),(10883,3395,'_billing_last_name','Jackson'),(10884,3395,'_billing_company',''),(10885,3395,'_billing_address_1','36th Street'),(10886,3395,'_billing_address_2',''),(10887,3395,'_billing_city','San Francisco'),(10888,3395,'_billing_state','CA'),(10889,3395,'_billing_postcode','94116'),(10890,3395,'_billing_country','US'),(10891,3395,'_billing_email','ralphjackson001@gmail.com'),(10892,3395,'_billing_phone','555333'),(10893,3395,'_shipping_first_name',''),(10894,3395,'_shipping_last_name',''),(10895,3395,'_shipping_company',''),(10896,3395,'_shipping_address_1',''),(10897,3395,'_shipping_address_2',''),(10898,3395,'_shipping_city',''),(10899,3395,'_shipping_state',''),(10900,3395,'_shipping_postcode',''),(10901,3395,'_shipping_country',''),(10902,3395,'_order_currency','USD'),(10903,3395,'_cart_discount','0'),(10904,3395,'_cart_discount_tax','0'),(10905,3395,'_order_shipping','0'),(10906,3395,'_order_shipping_tax','0'),(10907,3395,'_order_tax','0'),(10908,3395,'_order_total','0.00'),(10909,3395,'_order_version','3.0.7'),(10910,3395,'_prices_include_tax','no'),(10911,3395,'_billing_address_index','Ralph Jackson  36th Street  San Francisco CA 94116 US ralphjackson001@gmail.com 555333'),(10912,3395,'_shipping_address_index','        '),(10913,3395,'_shipping_method',''),(10914,3395,'_download_permissions_granted','yes'),(10915,3395,'_recorded_sales','yes'),(10916,3395,'_recorded_coupon_usage_counts','yes'),(10917,3395,'_order_stock_reduced','yes'),(10918,143,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(10919,143,'slide_template','default'),(10920,143,'_bbp_forum_id','126'),(10921,143,'_bbp_topic_id','143'),(10922,143,'_bbp_author_ip','217.24.25.23'),(10923,143,'_bbp_last_active_time','2017-06-14 09:40:45'),(10924,143,'_bbp_reply_count','3'),(10925,143,'_bbp_reply_count_hidden','0'),(10926,143,'_bbp_last_active_id','3231'),(10927,143,'_bbp_voice_count','3'),(10928,143,'_bbp_last_reply_id','3231'),(10929,148,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(10930,148,'slide_template','default'),(10931,148,'_bbp_forum_id','126'),(10932,148,'_bbp_topic_id','148'),(10933,148,'_bbp_author_ip','217.24.25.23'),(10934,148,'_bbp_last_active_time','2017-05-25 15:03:16'),(10935,148,'_bbp_reply_count','1'),(10936,148,'_bbp_reply_count_hidden','0'),(10937,148,'_bbp_last_active_id','168'),(10938,148,'_bbp_voice_count','2'),(10939,148,'_bbp_last_reply_id','168'),(10940,320,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(10941,320,'_thumbnail_id','321'),(10942,320,'mkdf_testimonial_text','“Mroin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh “'),(10943,320,'mkdf_testimonial_author','Virginia Foster'),(10944,320,'mkdf_testimonial_author_position','Student'),(10945,320,'slide_template','default'),(10946,325,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(10947,325,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(10948,325,'_thumbnail_id','323'),(10949,325,'mkdf_testimonial_text','“Mroin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh “'),(10950,325,'mkdf_testimonial_author','Jonathan Gibson'),(10951,325,'mkdf_testimonial_author_position','Teaching Assistant'),(10952,325,'slide_template','default'),(10953,325,'_dp_original','320'),(10954,326,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(10955,326,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(10956,326,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(10957,326,'_thumbnail_id','322'),(10958,326,'mkdf_testimonial_text','“Mroin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh “'),(10959,326,'mkdf_testimonial_author','Joan Collins'),(10960,326,'mkdf_testimonial_author_position','Student'),(10961,326,'slide_template','default'),(10962,326,'_dp_original','325'),(10963,413,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(10964,413,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(10965,413,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(10966,413,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(10967,413,'_thumbnail_id','415'),(10968,413,'mkdf_testimonial_text','“Mroin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nivulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus”'),(10969,413,'mkdf_testimonial_author','Rachel  Collins'),(10970,413,'mkdf_testimonial_author_position','Student'),(10971,413,'slide_template','default'),(10972,413,'_dp_original','326'),(10973,417,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(10974,417,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(10975,417,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(10976,417,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(10977,417,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(10978,417,'_thumbnail_id','416'),(10979,417,'mkdf_testimonial_text','“Mroin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nivulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus”'),(10980,417,'mkdf_testimonial_author','Brooke Austin'),(10981,417,'mkdf_testimonial_author_position','Teaching Assistant'),(10982,417,'slide_template','default'),(10983,417,'_dp_original','413'),(10984,2303,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(10985,2303,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(10986,2303,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(10987,2303,'_thumbnail_id','323'),(10988,2303,'mkdf_testimonial_text','“Mroin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nivulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus”'),(10989,2303,'mkdf_testimonial_author','Jonathan Gibson'),(10990,2303,'mkdf_testimonial_author_position','Teaching Assistant'),(10991,2303,'slide_template','default'),(10992,2303,'_dp_original','325'),(10993,2420,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(10994,2420,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(10995,2420,'_thumbnail_id','321'),(10996,2420,'mkdf_testimonial_text','“Mroin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nivulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus”'),(10997,2420,'mkdf_testimonial_author','Virginia Foster'),(10998,2420,'mkdf_testimonial_author_position','Student'),(10999,2420,'slide_template','default'),(11000,2420,'_dp_original','320'),(11001,2421,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11002,2421,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11003,2421,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11004,2421,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11005,2421,'_thumbnail_id','322'),(11006,2421,'mkdf_testimonial_text','“Mroin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nivulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus”'),(11007,2421,'mkdf_testimonial_author','Joan Collins'),(11008,2421,'mkdf_testimonial_author_position','Student'),(11009,2421,'slide_template','default'),(11010,2421,'_dp_original','326'),(11011,2422,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11012,2422,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11013,2422,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11014,2422,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11015,2422,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11016,2422,'_thumbnail_id','2423'),(11017,2422,'mkdf_testimonial_text','“Mroin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nivulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus”'),(11018,2422,'mkdf_testimonial_author','Molly Simon'),(11019,2422,'mkdf_testimonial_author_position','Teacher'),(11020,2422,'slide_template','default'),(11021,2422,'_dp_original','2421'),(11022,3255,'_bbp_forum_id','126'),(11023,3255,'_bbp_topic_id','3255'),(11024,3255,'_bbp_author_ip','217.24.25.23'),(11025,3255,'_bbp_last_reply_id','3256'),(11026,3255,'_bbp_last_active_id','3256'),(11027,3255,'_bbp_last_active_time','2017-06-14 10:09:02'),(11028,3255,'_bbp_reply_count','1'),(11029,3255,'_bbp_reply_count_hidden','0'),(11030,3255,'_bbp_voice_count','2'),(11031,3260,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11032,3260,'slide_template','default'),(11033,3260,'_wpb_vc_js_status','false'),(11034,3260,'_bbp_forum_id','126'),(11035,3260,'_bbp_topic_id','3260'),(11036,3260,'_bbp_author_ip','217.24.25.23'),(11037,3260,'_bbp_last_active_time','2017-06-14 10:25:48'),(11038,3260,'_bbp_reply_count','0'),(11039,3260,'_bbp_reply_count_hidden','0'),(11040,3260,'_bbp_last_active_id','3260'),(11041,3260,'_bbp_voice_count','1'),(11042,3260,'_wp_old_slug','free-language-learning-softwares'),(11043,3271,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11044,3271,'slide_template','default'),(11045,3271,'_wpb_vc_js_status','false'),(11046,3271,'_bbp_forum_id','3267'),(11047,3271,'_bbp_topic_id','3271'),(11048,3271,'_bbp_author_ip','217.24.25.23'),(11049,3271,'_bbp_last_active_time','2017-06-14 10:49:48'),(11050,3271,'_bbp_reply_count','1'),(11051,3271,'_bbp_reply_count_hidden','0'),(11052,3271,'_bbp_last_active_id','3275'),(11053,3271,'_bbp_voice_count','2'),(11054,3271,'_bbp_last_reply_id','3275'),(11055,3273,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11056,3273,'slide_template','default'),(11057,3273,'_wpb_vc_js_status','false'),(11058,3273,'_bbp_forum_id','3269'),(11059,3273,'_bbp_topic_id','3273'),(11060,3273,'_bbp_author_ip','217.24.25.23'),(11061,3273,'_bbp_last_active_time','2017-06-14 11:01:33'),(11062,3273,'_bbp_reply_count','2'),(11063,3273,'_bbp_reply_count_hidden','0'),(11064,3273,'_bbp_last_active_id','3281'),(11065,3273,'_bbp_voice_count','3'),(11066,3273,'_bbp_last_reply_id','3281'),(11067,3273,'_bbp_revision_log','a:1:{i:3279;a:2:{s:6:\"author\";i:1;s:6:\"reason\";s:0:\"\";}}'),(11068,3358,'_order_key','wc_order_59414a9f4c160'),(11069,3358,'_customer_user','4'),(11070,3358,'_payment_method','bacs'),(11071,3358,'_payment_method_title','Direct bank transfer'),(11072,3358,'_transaction_id',''),(11073,3358,'_customer_ip_address','217.24.25.23'),(11074,3358,'_customer_user_agent','mozilla/5.0 (windows nt 10.0; wow64; rv:53.0) gecko/20100101 firefox/53.0'),(11075,3358,'_created_via','checkout'),(11076,3358,'_date_completed',''),(11077,3358,'_completed_date',''),(11078,3358,'_date_paid',''),(11079,3358,'_paid_date',''),(11080,3358,'_cart_hash','72bd11ef7d787611675c013ea5b32c97'),(11081,3358,'_billing_first_name','Cynthia'),(11082,3358,'_billing_last_name','Fowler'),(11083,3358,'_billing_company',''),(11084,3358,'_billing_address_1','38th Street'),(11085,3358,'_billing_address_2',''),(11086,3358,'_billing_city','San Francisco'),(11087,3358,'_billing_state','CA'),(11088,3358,'_billing_postcode','94117'),(11089,3358,'_billing_country','US'),(11090,3358,'_billing_email','cynthiafowler002@gmail.com'),(11091,3358,'_billing_phone','555333'),(11092,3358,'_shipping_first_name',''),(11093,3358,'_shipping_last_name',''),(11094,3358,'_shipping_company',''),(11095,3358,'_shipping_address_1',''),(11096,3358,'_shipping_address_2',''),(11097,3358,'_shipping_city',''),(11098,3358,'_shipping_state',''),(11099,3358,'_shipping_postcode',''),(11100,3358,'_shipping_country',''),(11101,3358,'_order_currency','USD'),(11102,3358,'_cart_discount','0'),(11103,3358,'_cart_discount_tax','0'),(11104,3358,'_order_shipping','0'),(11105,3358,'_order_shipping_tax','0'),(11106,3358,'_order_tax','0'),(11107,3358,'_order_total','40.00'),(11108,3358,'_order_version','3.0.7'),(11109,3358,'_prices_include_tax','no'),(11110,3358,'_billing_address_index','Cynthia Fowler  38th Street  San Francisco CA 94117 US cynthiafowler002@gmail.com 555333'),(11111,3358,'_shipping_address_index','        '),(11112,3358,'_shipping_method',''),(11113,3358,'_recorded_sales','yes'),(11114,3358,'_recorded_coupon_usage_counts','yes'),(11115,3358,'_order_stock_reduced','yes'),(11116,3359,'_order_key','wc_order_59414b0417986'),(11117,3359,'_customer_user','4'),(11118,3359,'_payment_method','bacs'),(11119,3359,'_payment_method_title','Direct bank transfer'),(11120,3359,'_transaction_id',''),(11121,3359,'_customer_ip_address','217.24.25.23'),(11122,3359,'_customer_user_agent','mozilla/5.0 (windows nt 10.0; wow64; rv:53.0) gecko/20100101 firefox/53.0'),(11123,3359,'_created_via','checkout'),(11124,3359,'_date_completed',''),(11125,3359,'_completed_date',''),(11126,3359,'_date_paid',''),(11127,3359,'_paid_date',''),(11128,3359,'_cart_hash','50b4c67b27e4fd41e4069adf0f10134a'),(11129,3359,'_billing_first_name','Cynthia'),(11130,3359,'_billing_last_name','Fowler'),(11131,3359,'_billing_company',''),(11132,3359,'_billing_address_1','38th Street'),(11133,3359,'_billing_address_2',''),(11134,3359,'_billing_city','San Francisco'),(11135,3359,'_billing_state','CA'),(11136,3359,'_billing_postcode','94117'),(11137,3359,'_billing_country','US'),(11138,3359,'_billing_email','cynthiafowler002@gmail.com'),(11139,3359,'_billing_phone','555333'),(11140,3359,'_shipping_first_name',''),(11141,3359,'_shipping_last_name',''),(11142,3359,'_shipping_company',''),(11143,3359,'_shipping_address_1',''),(11144,3359,'_shipping_address_2',''),(11145,3359,'_shipping_city',''),(11146,3359,'_shipping_state',''),(11147,3359,'_shipping_postcode',''),(11148,3359,'_shipping_country',''),(11149,3359,'_order_currency','USD'),(11150,3359,'_cart_discount','0'),(11151,3359,'_cart_discount_tax','0'),(11152,3359,'_order_shipping','0'),(11153,3359,'_order_shipping_tax','0'),(11154,3359,'_order_tax','0'),(11155,3359,'_order_total','20.00'),(11156,3359,'_order_version','3.0.7'),(11157,3359,'_prices_include_tax','no'),(11158,3359,'_billing_address_index','Cynthia Fowler  38th Street  San Francisco CA 94117 US cynthiafowler002@gmail.com 555333'),(11159,3359,'_shipping_address_index','        '),(11160,3359,'_shipping_method',''),(11161,3359,'_recorded_sales','yes'),(11162,3359,'_recorded_coupon_usage_counts','yes'),(11163,3359,'_order_stock_reduced','yes'),(11164,3370,'_order_key','wc_order_594150ce3bfc0'),(11165,3370,'_customer_user','4'),(11166,3370,'_payment_method','bacs'),(11167,3370,'_payment_method_title','Direct bank transfer'),(11168,3370,'_transaction_id',''),(11169,3370,'_customer_ip_address','217.24.25.23'),(11170,3370,'_customer_user_agent','mozilla/5.0 (windows nt 10.0; wow64; rv:53.0) gecko/20100101 firefox/53.0'),(11171,3370,'_created_via','checkout'),(11172,3370,'_date_completed','1497452811'),(11173,3370,'_completed_date','2017-06-14 15:06:51'),(11174,3370,'_date_paid','1497452811'),(11175,3370,'_paid_date','2017-06-14 15:06:51'),(11176,3370,'_cart_hash','4eb3c485b647942b5c9d6cd578257605'),(11177,3370,'_billing_first_name','Cynthia'),(11178,3370,'_billing_last_name','Fowler'),(11179,3370,'_billing_company',''),(11180,3370,'_billing_address_1','38th Street'),(11181,3370,'_billing_address_2',''),(11182,3370,'_billing_city','San Francisco'),(11183,3370,'_billing_state','CA'),(11184,3370,'_billing_postcode','94115'),(11185,3370,'_billing_country','US'),(11186,3370,'_billing_email','cynthiafowler002@gmail.com'),(11187,3370,'_billing_phone','555333'),(11188,3370,'_shipping_first_name',''),(11189,3370,'_shipping_last_name',''),(11190,3370,'_shipping_company',''),(11191,3370,'_shipping_address_1',''),(11192,3370,'_shipping_address_2',''),(11193,3370,'_shipping_city',''),(11194,3370,'_shipping_state',''),(11195,3370,'_shipping_postcode',''),(11196,3370,'_shipping_country',''),(11197,3370,'_order_currency','USD'),(11198,3370,'_cart_discount','0'),(11199,3370,'_cart_discount_tax','0'),(11200,3370,'_order_shipping','0'),(11201,3370,'_order_shipping_tax','0'),(11202,3370,'_order_tax','0'),(11203,3370,'_order_total','40.00'),(11204,3370,'_order_version','3.0.7'),(11205,3370,'_prices_include_tax','no'),(11206,3370,'_billing_address_index','Cynthia Fowler  38th Street  San Francisco CA 94115 US cynthiafowler002@gmail.com 555333'),(11207,3370,'_shipping_address_index','        '),(11208,3370,'_shipping_method',''),(11209,3370,'_recorded_sales','yes'),(11210,3370,'_recorded_coupon_usage_counts','yes'),(11211,3370,'_order_stock_reduced','yes'),(11212,3370,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11213,3370,'_download_permissions_granted','yes'),(11214,3396,'_order_key','wc_order_59424a708f22b'),(11215,3396,'_customer_user','3'),(11216,3396,'_payment_method',''),(11217,3396,'_payment_method_title',''),(11218,3396,'_transaction_id',''),(11219,3396,'_customer_ip_address','217.24.25.23'),(11220,3396,'_customer_user_agent','mozilla/5.0 (windows nt 10.0; wow64; rv:53.0) gecko/20100101 firefox/53.0'),(11221,3396,'_created_via','checkout'),(11222,3396,'_date_completed','1497516656'),(11223,3396,'_completed_date','2017-06-15 08:50:56'),(11224,3396,'_date_paid','1497516656'),(11225,3396,'_paid_date','2017-06-15 08:50:56'),(11226,3396,'_cart_hash','6968b0e64ae515ee1bc4d609c31caf59'),(11227,3396,'_billing_first_name','Ralph'),(11228,3396,'_billing_last_name','Jackson'),(11229,3396,'_billing_company',''),(11230,3396,'_billing_address_1','36th Street'),(11231,3396,'_billing_address_2',''),(11232,3396,'_billing_city','San Francisco'),(11233,3396,'_billing_state','CA'),(11234,3396,'_billing_postcode','94116'),(11235,3396,'_billing_country','US'),(11236,3396,'_billing_email','ralphjackson001@gmail.com'),(11237,3396,'_billing_phone','555333'),(11238,3396,'_shipping_first_name',''),(11239,3396,'_shipping_last_name',''),(11240,3396,'_shipping_company',''),(11241,3396,'_shipping_address_1',''),(11242,3396,'_shipping_address_2',''),(11243,3396,'_shipping_city',''),(11244,3396,'_shipping_state',''),(11245,3396,'_shipping_postcode',''),(11246,3396,'_shipping_country',''),(11247,3396,'_order_currency','USD'),(11248,3396,'_cart_discount','0'),(11249,3396,'_cart_discount_tax','0'),(11250,3396,'_order_shipping','0'),(11251,3396,'_order_shipping_tax','0'),(11252,3396,'_order_tax','0'),(11253,3396,'_order_total','0.00'),(11254,3396,'_order_version','3.0.7'),(11255,3396,'_prices_include_tax','no'),(11256,3396,'_billing_address_index','Ralph Jackson  36th Street  San Francisco CA 94116 US ralphjackson001@gmail.com 555333'),(11257,3396,'_shipping_address_index','        '),(11258,3396,'_shipping_method',''),(11259,3396,'_download_permissions_granted','yes'),(11260,3396,'_recorded_sales','yes'),(11261,3396,'_recorded_coupon_usage_counts','yes'),(11262,3396,'_order_stock_reduced','yes'),(11263,3398,'_order_key','wc_order_59424b5a44a3f'),(11264,3398,'_customer_user','3'),(11265,3398,'_payment_method','bacs'),(11266,3398,'_payment_method_title','Direct bank transfer'),(11267,3398,'_transaction_id',''),(11268,3398,'_customer_ip_address','217.24.25.23'),(11269,3398,'_customer_user_agent','mozilla/5.0 (windows nt 10.0; wow64; rv:53.0) gecko/20100101 firefox/53.0'),(11270,3398,'_created_via','checkout'),(11271,3398,'_date_completed','1497516903'),(11272,3398,'_completed_date','2017-06-15 08:55:03'),(11273,3398,'_date_paid','1497516903'),(11274,3398,'_paid_date','2017-06-15 08:55:03'),(11275,3398,'_cart_hash','c58d257a5955d3de4ec6738dc8f28e48'),(11276,3398,'_billing_first_name','Ralph'),(11277,3398,'_billing_last_name','Jackson'),(11278,3398,'_billing_company',''),(11279,3398,'_billing_address_1','36th Street'),(11280,3398,'_billing_address_2',''),(11281,3398,'_billing_city','San Francisco'),(11282,3398,'_billing_state','CA'),(11283,3398,'_billing_postcode','94116'),(11284,3398,'_billing_country','US'),(11285,3398,'_billing_email','ralphjackson001@gmail.com'),(11286,3398,'_billing_phone','555333'),(11287,3398,'_shipping_first_name',''),(11288,3398,'_shipping_last_name',''),(11289,3398,'_shipping_company',''),(11290,3398,'_shipping_address_1',''),(11291,3398,'_shipping_address_2',''),(11292,3398,'_shipping_city',''),(11293,3398,'_shipping_state',''),(11294,3398,'_shipping_postcode',''),(11295,3398,'_shipping_country',''),(11296,3398,'_order_currency','USD'),(11297,3398,'_cart_discount','0'),(11298,3398,'_cart_discount_tax','0'),(11299,3398,'_order_shipping','0'),(11300,3398,'_order_shipping_tax','0'),(11301,3398,'_order_tax','0'),(11302,3398,'_order_total','20.00'),(11303,3398,'_order_version','3.0.7'),(11304,3398,'_prices_include_tax','no'),(11305,3398,'_billing_address_index','Ralph Jackson  36th Street  San Francisco CA 94116 US ralphjackson001@gmail.com 555333'),(11306,3398,'_shipping_address_index','        '),(11307,3398,'_shipping_method',''),(11308,3398,'_recorded_sales','yes'),(11309,3398,'_recorded_coupon_usage_counts','yes'),(11310,3398,'_order_stock_reduced','yes'),(11311,3398,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11312,3398,'_download_permissions_granted','yes'),(11313,1830,'_EventOrigin','events-calendar'),(11314,1830,'_tribe_modified_fields','a:21:{s:12:\"_EventOrigin\";i:1729435338;s:16:\"tribe_events_cat\";i:1729435338;s:17:\"_vc_post_settings\";i:1729435338;s:14:\"slide_template\";i:1729435338;s:17:\"_EventShowMapLink\";i:1729435338;s:13:\"_EventShowMap\";i:1729435338;s:13:\"_EventVenueID\";i:1729435338;s:17:\"_EventOrganizerID\";i:1729435338;s:15:\"_EventStartDate\";i:1729435338;s:13:\"_EventEndDate\";i:1729435338;s:18:\"_EventStartDateUTC\";i:1729435338;s:16:\"_EventEndDateUTC\";i:1729435338;s:14:\"_EventDuration\";i:1729435338;s:20:\"_EventCurrencySymbol\";i:1729435338;s:22:\"_EventCurrencyPosition\";i:1729435338;s:10:\"_EventCost\";i:1729435338;s:9:\"_EventURL\";i:1729435338;s:14:\"_EventTimezone\";i:1729435338;s:18:\"_EventTimezoneAbbr\";i:1729435338;s:17:\"_wpb_vc_js_status\";i:1729435338;s:13:\"_thumbnail_id\";i:1729435338;}'),(11315,1830,'_tribe_modified_fields','a:21:{s:12:\"_EventOrigin\";i:1729435338;s:16:\"tribe_events_cat\";i:1729435338;s:17:\"_vc_post_settings\";i:1729435338;s:14:\"slide_template\";i:1729435338;s:17:\"_EventShowMapLink\";i:1729435338;s:13:\"_EventShowMap\";i:1729435338;s:13:\"_EventVenueID\";i:1729435338;s:17:\"_EventOrganizerID\";i:1729435338;s:15:\"_EventStartDate\";i:1729435338;s:13:\"_EventEndDate\";i:1729435338;s:18:\"_EventStartDateUTC\";i:1729435338;s:16:\"_EventEndDateUTC\";i:1729435338;s:14:\"_EventDuration\";i:1729435338;s:20:\"_EventCurrencySymbol\";i:1729435338;s:22:\"_EventCurrencyPosition\";i:1729435338;s:10:\"_EventCost\";i:1729435338;s:9:\"_EventURL\";i:1729435338;s:14:\"_EventTimezone\";i:1729435338;s:18:\"_EventTimezoneAbbr\";i:1729435338;s:17:\"_wpb_vc_js_status\";i:1729435338;s:13:\"_thumbnail_id\";i:1729435338;}'),(11316,1830,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11317,1830,'_EventOrigin','events-calendar'),(11318,1830,'slide_template','default'),(11319,1830,'_EventShowMapLink','1'),(11320,1830,'_EventShowMap','1'),(11321,1830,'_EventVenueID','1841'),(11322,1830,'_EventOrganizerID','1842'),(11323,1830,'_EventStartDate','2018-06-16 08:00:00'),(11324,1830,'_EventEndDate','2018-06-16 17:00:00'),(11325,1830,'_EventStartDateUTC','2018-06-16 08:00:00'),(11326,1830,'_EventEndDateUTC','2018-06-16 17:00:00'),(11327,1830,'_EventDuration','32400'),(11328,1830,'_EventCurrencySymbol',''),(11329,1830,'_EventCurrencyPosition','prefix'),(11330,1830,'_EventCost','0'),(11331,1830,'_EventURL','http://iacademy.mikado-themes.com'),(11332,1830,'_EventTimezone','UTC+0'),(11333,1830,'_EventTimezoneAbbr',''),(11334,1830,'_wpb_vc_js_status','true'),(11335,1830,'_thumbnail_id','3023'),(11336,1842,'_OrganizerOrigin','events-calendar'),(11337,1842,'_tribe_modified_fields','a:8:{s:16:\"_OrganizerOrigin\";i:1729435338;s:17:\"_vc_post_settings\";i:1729435338;s:21:\"_OrganizerOrganizerID\";i:1729435338;s:15:\"_OrganizerPhone\";i:1729435338;s:17:\"_OrganizerWebsite\";i:1729435338;s:15:\"_OrganizerEmail\";i:1729435338;s:14:\"slide_template\";i:1729435338;s:12:\"_wp_old_slug\";i:1729435338;}'),(11338,1842,'_tribe_modified_fields','a:8:{s:16:\"_OrganizerOrigin\";i:1729435338;s:17:\"_vc_post_settings\";i:1729435338;s:21:\"_OrganizerOrganizerID\";i:1729435338;s:15:\"_OrganizerPhone\";i:1729435338;s:17:\"_OrganizerWebsite\";i:1729435338;s:15:\"_OrganizerEmail\";i:1729435338;s:14:\"slide_template\";i:1729435338;s:12:\"_wp_old_slug\";i:1729435338;}'),(11339,1842,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11340,1842,'_OrganizerOrigin','events-calendar'),(11341,1842,'_OrganizerOrganizerID','0'),(11342,1842,'_OrganizerPhone','1-677-124-44227'),(11343,1842,'_OrganizerWebsite','http://iacademy.mikado-themes.com/'),(11344,1842,'_OrganizerEmail','info@example.com '),(11345,1842,'slide_template','default'),(11346,1842,'_wp_old_slug','harvard-education'),(11347,1888,'_tribe_modified_fields','a:23:{s:26:\"_wpb_shortcodes_custom_css\";i:1729435338;s:12:\"_EventOrigin\";i:1729435338;s:16:\"tribe_events_cat\";i:1729435338;s:17:\"_vc_post_settings\";i:1729435338;s:14:\"slide_template\";i:1729435338;s:17:\"_EventShowMapLink\";i:1729435338;s:13:\"_EventShowMap\";i:1729435338;s:15:\"_EventStartDate\";i:1729435338;s:13:\"_EventEndDate\";i:1729435338;s:18:\"_EventStartDateUTC\";i:1729435338;s:16:\"_EventEndDateUTC\";i:1729435338;s:14:\"_EventDuration\";i:1729435338;s:20:\"_EventCurrencySymbol\";i:1729435338;s:22:\"_EventCurrencyPosition\";i:1729435338;s:10:\"_EventCost\";i:1729435338;s:9:\"_EventURL\";i:1729435338;s:14:\"_EventTimezone\";i:1729435338;s:18:\"_EventTimezoneAbbr\";i:1729435338;s:17:\"_wpb_vc_js_status\";i:1729435338;s:12:\"_dp_original\";i:1729435338;s:13:\"_EventVenueID\";i:1729435338;s:17:\"_EventOrganizerID\";i:1729435338;s:13:\"_thumbnail_id\";i:1729435338;}'),(11348,1888,'_wpb_shortcodes_custom_css','.vc_custom_1497009582533{margin-top: -30px !important;}'),(11349,1888,'_EventOrigin','events-calendar'),(11350,1888,'_tribe_modified_fields','a:23:{s:26:\"_wpb_shortcodes_custom_css\";i:1729435338;s:12:\"_EventOrigin\";i:1729435338;s:16:\"tribe_events_cat\";i:1729435338;s:17:\"_vc_post_settings\";i:1729435338;s:14:\"slide_template\";i:1729435338;s:17:\"_EventShowMapLink\";i:1729435338;s:13:\"_EventShowMap\";i:1729435338;s:15:\"_EventStartDate\";i:1729435338;s:13:\"_EventEndDate\";i:1729435338;s:18:\"_EventStartDateUTC\";i:1729435338;s:16:\"_EventEndDateUTC\";i:1729435338;s:14:\"_EventDuration\";i:1729435338;s:20:\"_EventCurrencySymbol\";i:1729435338;s:22:\"_EventCurrencyPosition\";i:1729435338;s:10:\"_EventCost\";i:1729435338;s:9:\"_EventURL\";i:1729435338;s:14:\"_EventTimezone\";i:1729435338;s:18:\"_EventTimezoneAbbr\";i:1729435338;s:17:\"_wpb_vc_js_status\";i:1729435338;s:12:\"_dp_original\";i:1729435338;s:13:\"_EventVenueID\";i:1729435338;s:17:\"_EventOrganizerID\";i:1729435338;s:13:\"_thumbnail_id\";i:1729435338;}'),(11351,1888,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11352,1888,'_EventOrigin','events-calendar'),(11353,1888,'_tribe_modified_fields','a:23:{s:26:\"_wpb_shortcodes_custom_css\";i:1729435338;s:12:\"_EventOrigin\";i:1729435338;s:16:\"tribe_events_cat\";i:1729435338;s:17:\"_vc_post_settings\";i:1729435338;s:14:\"slide_template\";i:1729435338;s:17:\"_EventShowMapLink\";i:1729435338;s:13:\"_EventShowMap\";i:1729435338;s:15:\"_EventStartDate\";i:1729435338;s:13:\"_EventEndDate\";i:1729435338;s:18:\"_EventStartDateUTC\";i:1729435338;s:16:\"_EventEndDateUTC\";i:1729435338;s:14:\"_EventDuration\";i:1729435338;s:20:\"_EventCurrencySymbol\";i:1729435338;s:22:\"_EventCurrencyPosition\";i:1729435338;s:10:\"_EventCost\";i:1729435338;s:9:\"_EventURL\";i:1729435338;s:14:\"_EventTimezone\";i:1729435338;s:18:\"_EventTimezoneAbbr\";i:1729435338;s:17:\"_wpb_vc_js_status\";i:1729435338;s:12:\"_dp_original\";i:1729435338;s:13:\"_EventVenueID\";i:1729435338;s:17:\"_EventOrganizerID\";i:1729435338;s:13:\"_thumbnail_id\";i:1729435338;}'),(11354,1888,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11355,1888,'_EventOrigin','events-calendar'),(11356,1888,'slide_template','default'),(11357,1888,'_EventShowMapLink','1'),(11358,1888,'_EventShowMap','1'),(11359,1888,'_EventStartDate','2018-06-28 08:00:00'),(11360,1888,'_EventEndDate','2018-06-28 20:00:00'),(11361,1888,'_EventStartDateUTC','2018-06-28 08:00:00'),(11362,1888,'_EventEndDateUTC','2018-06-28 20:00:00'),(11363,1888,'_EventDuration','43200'),(11364,1888,'_EventCurrencySymbol','$'),(11365,1888,'_EventCurrencyPosition','prefix'),(11366,1888,'_EventCost','30'),(11367,1888,'_EventURL','http://iacademy.mikado-themes.com'),(11368,1888,'_EventTimezone','UTC+0'),(11369,1888,'_EventTimezoneAbbr',''),(11370,1888,'_wpb_vc_js_status','true'),(11371,1888,'_dp_original','1830'),(11372,1888,'_wpb_shortcodes_custom_css','.vc_custom_1497009582533{margin-top: -30px !important;}'),(11373,1888,'_EventVenueID','2997'),(11374,1888,'_EventOrganizerID','2996'),(11375,1888,'_thumbnail_id','3024'),(11376,1890,'_EventOrigin','events-calendar'),(11377,1890,'_tribe_modified_fields','a:22:{s:12:\"_EventOrigin\";i:1729435338;s:16:\"tribe_events_cat\";i:1729435338;s:17:\"_vc_post_settings\";i:1729435338;s:14:\"slide_template\";i:1729435338;s:17:\"_EventShowMapLink\";i:1729435338;s:13:\"_EventShowMap\";i:1729435338;s:15:\"_EventStartDate\";i:1729435338;s:13:\"_EventEndDate\";i:1729435338;s:18:\"_EventStartDateUTC\";i:1729435338;s:16:\"_EventEndDateUTC\";i:1729435338;s:14:\"_EventDuration\";i:1729435338;s:20:\"_EventCurrencySymbol\";i:1729435338;s:22:\"_EventCurrencyPosition\";i:1729435338;s:10:\"_EventCost\";i:1729435338;s:9:\"_EventURL\";i:1729435338;s:14:\"_EventTimezone\";i:1729435338;s:18:\"_EventTimezoneAbbr\";i:1729435338;s:17:\"_wpb_vc_js_status\";i:1729435338;s:12:\"_dp_original\";i:1729435338;s:13:\"_EventVenueID\";i:1729435338;s:17:\"_EventOrganizerID\";i:1729435338;s:13:\"_thumbnail_id\";i:1729435338;}'),(11378,1890,'_tribe_modified_fields','a:22:{s:12:\"_EventOrigin\";i:1729435338;s:16:\"tribe_events_cat\";i:1729435338;s:17:\"_vc_post_settings\";i:1729435338;s:14:\"slide_template\";i:1729435338;s:17:\"_EventShowMapLink\";i:1729435338;s:13:\"_EventShowMap\";i:1729435338;s:15:\"_EventStartDate\";i:1729435338;s:13:\"_EventEndDate\";i:1729435338;s:18:\"_EventStartDateUTC\";i:1729435338;s:16:\"_EventEndDateUTC\";i:1729435338;s:14:\"_EventDuration\";i:1729435338;s:20:\"_EventCurrencySymbol\";i:1729435338;s:22:\"_EventCurrencyPosition\";i:1729435338;s:10:\"_EventCost\";i:1729435338;s:9:\"_EventURL\";i:1729435338;s:14:\"_EventTimezone\";i:1729435338;s:18:\"_EventTimezoneAbbr\";i:1729435338;s:17:\"_wpb_vc_js_status\";i:1729435338;s:12:\"_dp_original\";i:1729435338;s:13:\"_EventVenueID\";i:1729435338;s:17:\"_EventOrganizerID\";i:1729435338;s:13:\"_thumbnail_id\";i:1729435338;}'),(11379,1890,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11380,1890,'_EventOrigin','events-calendar'),(11381,1890,'_tribe_modified_fields','a:22:{s:12:\"_EventOrigin\";i:1729435338;s:16:\"tribe_events_cat\";i:1729435338;s:17:\"_vc_post_settings\";i:1729435338;s:14:\"slide_template\";i:1729435338;s:17:\"_EventShowMapLink\";i:1729435338;s:13:\"_EventShowMap\";i:1729435338;s:15:\"_EventStartDate\";i:1729435338;s:13:\"_EventEndDate\";i:1729435338;s:18:\"_EventStartDateUTC\";i:1729435338;s:16:\"_EventEndDateUTC\";i:1729435338;s:14:\"_EventDuration\";i:1729435338;s:20:\"_EventCurrencySymbol\";i:1729435338;s:22:\"_EventCurrencyPosition\";i:1729435338;s:10:\"_EventCost\";i:1729435338;s:9:\"_EventURL\";i:1729435338;s:14:\"_EventTimezone\";i:1729435338;s:18:\"_EventTimezoneAbbr\";i:1729435338;s:17:\"_wpb_vc_js_status\";i:1729435338;s:12:\"_dp_original\";i:1729435338;s:13:\"_EventVenueID\";i:1729435338;s:17:\"_EventOrganizerID\";i:1729435338;s:13:\"_thumbnail_id\";i:1729435338;}'),(11382,1890,'_tribe_modified_fields','a:22:{s:12:\"_EventOrigin\";i:1729435338;s:16:\"tribe_events_cat\";i:1729435338;s:17:\"_vc_post_settings\";i:1729435338;s:14:\"slide_template\";i:1729435338;s:17:\"_EventShowMapLink\";i:1729435338;s:13:\"_EventShowMap\";i:1729435338;s:15:\"_EventStartDate\";i:1729435338;s:13:\"_EventEndDate\";i:1729435338;s:18:\"_EventStartDateUTC\";i:1729435338;s:16:\"_EventEndDateUTC\";i:1729435338;s:14:\"_EventDuration\";i:1729435338;s:20:\"_EventCurrencySymbol\";i:1729435338;s:22:\"_EventCurrencyPosition\";i:1729435338;s:10:\"_EventCost\";i:1729435338;s:9:\"_EventURL\";i:1729435338;s:14:\"_EventTimezone\";i:1729435338;s:18:\"_EventTimezoneAbbr\";i:1729435338;s:17:\"_wpb_vc_js_status\";i:1729435338;s:12:\"_dp_original\";i:1729435338;s:13:\"_EventVenueID\";i:1729435338;s:17:\"_EventOrganizerID\";i:1729435338;s:13:\"_thumbnail_id\";i:1729435338;}'),(11383,1890,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11384,1890,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11385,1890,'_EventOrigin','events-calendar'),(11386,1890,'_EventOrigin','events-calendar'),(11387,1890,'slide_template','default'),(11388,1890,'_EventShowMapLink','1'),(11389,1890,'_EventShowMap','1'),(11390,1890,'_EventStartDate','2018-07-11 07:00:00'),(11391,1890,'_EventEndDate','2018-07-11 18:00:00'),(11392,1890,'_EventStartDateUTC','2018-07-11 07:00:00'),(11393,1890,'_EventEndDateUTC','2018-07-11 18:00:00'),(11394,1890,'_EventDuration','39600'),(11395,1890,'_EventCurrencySymbol','$'),(11396,1890,'_EventCurrencyPosition','prefix'),(11397,1890,'_EventCost','0'),(11398,1890,'_EventURL','http://iacademy.mikado-themes.com'),(11399,1890,'_EventTimezone','UTC+0'),(11400,1890,'_EventTimezoneAbbr',''),(11401,1890,'_wpb_vc_js_status','true'),(11402,1890,'_dp_original','1888'),(11403,1890,'_EventVenueID','2999'),(11404,1890,'_EventOrganizerID','2998'),(11405,1890,'_thumbnail_id','3021'),(11441,2777,'_EventOrigin','events-calendar'),(11442,2777,'_tribe_modified_fields','a:23:{s:12:\"_EventOrigin\";i:1729435338;s:16:\"tribe_events_cat\";i:1729435338;s:17:\"_vc_post_settings\";i:1729435338;s:14:\"slide_template\";i:1729435338;s:17:\"_EventShowMapLink\";i:1729435338;s:13:\"_EventShowMap\";i:1729435338;s:13:\"_EventVenueID\";i:1729435338;s:17:\"_EventOrganizerID\";i:1729435338;s:15:\"_EventStartDate\";i:1729435338;s:13:\"_EventEndDate\";i:1729435338;s:18:\"_EventStartDateUTC\";i:1729435338;s:16:\"_EventEndDateUTC\";i:1729435338;s:14:\"_EventDuration\";i:1729435338;s:20:\"_EventCurrencySymbol\";i:1729435338;s:22:\"_EventCurrencyPosition\";i:1729435338;s:10:\"_EventCost\";i:1729435338;s:9:\"_EventURL\";i:1729435338;s:14:\"_EventTimezone\";i:1729435338;s:18:\"_EventTimezoneAbbr\";i:1729435338;s:17:\"_wpb_vc_js_status\";i:1729435338;s:12:\"_dp_original\";i:1729435338;s:12:\"_wp_old_slug\";i:1729435338;s:13:\"_thumbnail_id\";i:1729435338;}'),(11443,2777,'_tribe_modified_fields','a:23:{s:12:\"_EventOrigin\";i:1729435338;s:16:\"tribe_events_cat\";i:1729435338;s:17:\"_vc_post_settings\";i:1729435338;s:14:\"slide_template\";i:1729435338;s:17:\"_EventShowMapLink\";i:1729435338;s:13:\"_EventShowMap\";i:1729435338;s:13:\"_EventVenueID\";i:1729435338;s:17:\"_EventOrganizerID\";i:1729435338;s:15:\"_EventStartDate\";i:1729435338;s:13:\"_EventEndDate\";i:1729435338;s:18:\"_EventStartDateUTC\";i:1729435338;s:16:\"_EventEndDateUTC\";i:1729435338;s:14:\"_EventDuration\";i:1729435338;s:20:\"_EventCurrencySymbol\";i:1729435338;s:22:\"_EventCurrencyPosition\";i:1729435338;s:10:\"_EventCost\";i:1729435338;s:9:\"_EventURL\";i:1729435338;s:14:\"_EventTimezone\";i:1729435338;s:18:\"_EventTimezoneAbbr\";i:1729435338;s:17:\"_wpb_vc_js_status\";i:1729435338;s:12:\"_dp_original\";i:1729435338;s:12:\"_wp_old_slug\";i:1729435338;s:13:\"_thumbnail_id\";i:1729435338;}'),(11444,2777,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11445,2777,'_EventOrigin','events-calendar'),(11446,2777,'_tribe_modified_fields','a:23:{s:12:\"_EventOrigin\";i:1729435338;s:16:\"tribe_events_cat\";i:1729435338;s:17:\"_vc_post_settings\";i:1729435338;s:14:\"slide_template\";i:1729435338;s:17:\"_EventShowMapLink\";i:1729435338;s:13:\"_EventShowMap\";i:1729435338;s:13:\"_EventVenueID\";i:1729435338;s:17:\"_EventOrganizerID\";i:1729435338;s:15:\"_EventStartDate\";i:1729435338;s:13:\"_EventEndDate\";i:1729435338;s:18:\"_EventStartDateUTC\";i:1729435338;s:16:\"_EventEndDateUTC\";i:1729435338;s:14:\"_EventDuration\";i:1729435338;s:20:\"_EventCurrencySymbol\";i:1729435338;s:22:\"_EventCurrencyPosition\";i:1729435338;s:10:\"_EventCost\";i:1729435338;s:9:\"_EventURL\";i:1729435338;s:14:\"_EventTimezone\";i:1729435338;s:18:\"_EventTimezoneAbbr\";i:1729435338;s:17:\"_wpb_vc_js_status\";i:1729435338;s:12:\"_dp_original\";i:1729435338;s:12:\"_wp_old_slug\";i:1729435338;s:13:\"_thumbnail_id\";i:1729435338;}'),(11447,2777,'_tribe_modified_fields','a:23:{s:12:\"_EventOrigin\";i:1729435338;s:16:\"tribe_events_cat\";i:1729435338;s:17:\"_vc_post_settings\";i:1729435338;s:14:\"slide_template\";i:1729435338;s:17:\"_EventShowMapLink\";i:1729435338;s:13:\"_EventShowMap\";i:1729435338;s:13:\"_EventVenueID\";i:1729435338;s:17:\"_EventOrganizerID\";i:1729435338;s:15:\"_EventStartDate\";i:1729435338;s:13:\"_EventEndDate\";i:1729435338;s:18:\"_EventStartDateUTC\";i:1729435338;s:16:\"_EventEndDateUTC\";i:1729435338;s:14:\"_EventDuration\";i:1729435338;s:20:\"_EventCurrencySymbol\";i:1729435338;s:22:\"_EventCurrencyPosition\";i:1729435338;s:10:\"_EventCost\";i:1729435338;s:9:\"_EventURL\";i:1729435338;s:14:\"_EventTimezone\";i:1729435338;s:18:\"_EventTimezoneAbbr\";i:1729435338;s:17:\"_wpb_vc_js_status\";i:1729435338;s:12:\"_dp_original\";i:1729435338;s:12:\"_wp_old_slug\";i:1729435338;s:13:\"_thumbnail_id\";i:1729435338;}'),(11448,2777,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11449,2777,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11450,2777,'_EventOrigin','events-calendar'),(11451,2777,'_EventOrigin','events-calendar'),(11452,2777,'slide_template','default'),(11453,2777,'_EventShowMapLink','1'),(11454,2777,'_EventShowMap','1'),(11455,2777,'_EventVenueID','1841'),(11456,2777,'_EventOrganizerID','1842'),(11457,2777,'_EventStartDate','2018-06-16 09:00:00'),(11458,2777,'_EventEndDate','2018-06-16 09:00:00'),(11459,2777,'_EventStartDateUTC','2018-06-16 09:00:00'),(11460,2777,'_EventEndDateUTC','2018-06-16 09:00:00'),(11461,2777,'_EventDuration','0'),(11462,2777,'_EventCurrencySymbol',''),(11463,2777,'_EventCurrencyPosition','prefix'),(11464,2777,'_EventCost','0'),(11465,2777,'_EventURL','http://iacademy.mikado-themes.com'),(11466,2777,'_EventTimezone','UTC+0'),(11467,2777,'_EventTimezoneAbbr',''),(11468,2777,'_wpb_vc_js_status','true'),(11469,2777,'_dp_original','1888'),(11470,2777,'_wp_old_slug','leave-to-achieve'),(11471,2777,'_wp_old_slug','where-learning-begins'),(11472,2777,'_thumbnail_id','3024'),(11473,2779,'_EventOrigin','events-calendar'),(11474,2779,'_tribe_modified_fields','a:22:{s:12:\"_EventOrigin\";i:1729435338;s:16:\"tribe_events_cat\";i:1729435338;s:17:\"_vc_post_settings\";i:1729435338;s:14:\"slide_template\";i:1729435338;s:17:\"_EventShowMapLink\";i:1729435338;s:13:\"_EventShowMap\";i:1729435338;s:15:\"_EventStartDate\";i:1729435338;s:13:\"_EventEndDate\";i:1729435338;s:18:\"_EventStartDateUTC\";i:1729435338;s:16:\"_EventEndDateUTC\";i:1729435338;s:14:\"_EventDuration\";i:1729435338;s:20:\"_EventCurrencySymbol\";i:1729435338;s:22:\"_EventCurrencyPosition\";i:1729435338;s:10:\"_EventCost\";i:1729435338;s:9:\"_EventURL\";i:1729435338;s:14:\"_EventTimezone\";i:1729435338;s:18:\"_EventTimezoneAbbr\";i:1729435338;s:17:\"_wpb_vc_js_status\";i:1729435338;s:12:\"_dp_original\";i:1729435338;s:13:\"_EventVenueID\";i:1729435338;s:17:\"_EventOrganizerID\";i:1729435338;s:13:\"_thumbnail_id\";i:1729435338;}'),(11475,2779,'_tribe_modified_fields','a:22:{s:12:\"_EventOrigin\";i:1729435338;s:16:\"tribe_events_cat\";i:1729435338;s:17:\"_vc_post_settings\";i:1729435338;s:14:\"slide_template\";i:1729435338;s:17:\"_EventShowMapLink\";i:1729435338;s:13:\"_EventShowMap\";i:1729435338;s:15:\"_EventStartDate\";i:1729435338;s:13:\"_EventEndDate\";i:1729435338;s:18:\"_EventStartDateUTC\";i:1729435338;s:16:\"_EventEndDateUTC\";i:1729435338;s:14:\"_EventDuration\";i:1729435338;s:20:\"_EventCurrencySymbol\";i:1729435338;s:22:\"_EventCurrencyPosition\";i:1729435338;s:10:\"_EventCost\";i:1729435338;s:9:\"_EventURL\";i:1729435338;s:14:\"_EventTimezone\";i:1729435338;s:18:\"_EventTimezoneAbbr\";i:1729435338;s:17:\"_wpb_vc_js_status\";i:1729435338;s:12:\"_dp_original\";i:1729435338;s:13:\"_EventVenueID\";i:1729435338;s:17:\"_EventOrganizerID\";i:1729435338;s:13:\"_thumbnail_id\";i:1729435338;}'),(11476,2779,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11477,2779,'_EventOrigin','events-calendar'),(11478,2779,'_tribe_modified_fields','a:22:{s:12:\"_EventOrigin\";i:1729435338;s:16:\"tribe_events_cat\";i:1729435338;s:17:\"_vc_post_settings\";i:1729435338;s:14:\"slide_template\";i:1729435338;s:17:\"_EventShowMapLink\";i:1729435338;s:13:\"_EventShowMap\";i:1729435338;s:15:\"_EventStartDate\";i:1729435338;s:13:\"_EventEndDate\";i:1729435338;s:18:\"_EventStartDateUTC\";i:1729435338;s:16:\"_EventEndDateUTC\";i:1729435338;s:14:\"_EventDuration\";i:1729435338;s:20:\"_EventCurrencySymbol\";i:1729435338;s:22:\"_EventCurrencyPosition\";i:1729435338;s:10:\"_EventCost\";i:1729435338;s:9:\"_EventURL\";i:1729435338;s:14:\"_EventTimezone\";i:1729435338;s:18:\"_EventTimezoneAbbr\";i:1729435338;s:17:\"_wpb_vc_js_status\";i:1729435338;s:12:\"_dp_original\";i:1729435338;s:13:\"_EventVenueID\";i:1729435338;s:17:\"_EventOrganizerID\";i:1729435338;s:13:\"_thumbnail_id\";i:1729435338;}'),(11479,2779,'_tribe_modified_fields','a:22:{s:12:\"_EventOrigin\";i:1729435338;s:16:\"tribe_events_cat\";i:1729435338;s:17:\"_vc_post_settings\";i:1729435338;s:14:\"slide_template\";i:1729435338;s:17:\"_EventShowMapLink\";i:1729435338;s:13:\"_EventShowMap\";i:1729435338;s:15:\"_EventStartDate\";i:1729435338;s:13:\"_EventEndDate\";i:1729435338;s:18:\"_EventStartDateUTC\";i:1729435338;s:16:\"_EventEndDateUTC\";i:1729435338;s:14:\"_EventDuration\";i:1729435338;s:20:\"_EventCurrencySymbol\";i:1729435338;s:22:\"_EventCurrencyPosition\";i:1729435338;s:10:\"_EventCost\";i:1729435338;s:9:\"_EventURL\";i:1729435338;s:14:\"_EventTimezone\";i:1729435338;s:18:\"_EventTimezoneAbbr\";i:1729435338;s:17:\"_wpb_vc_js_status\";i:1729435338;s:12:\"_dp_original\";i:1729435338;s:13:\"_EventVenueID\";i:1729435338;s:17:\"_EventOrganizerID\";i:1729435338;s:13:\"_thumbnail_id\";i:1729435338;}'),(11480,2779,'_tribe_modified_fields','a:22:{s:12:\"_EventOrigin\";i:1729435338;s:16:\"tribe_events_cat\";i:1729435338;s:17:\"_vc_post_settings\";i:1729435338;s:14:\"slide_template\";i:1729435338;s:17:\"_EventShowMapLink\";i:1729435338;s:13:\"_EventShowMap\";i:1729435338;s:15:\"_EventStartDate\";i:1729435338;s:13:\"_EventEndDate\";i:1729435338;s:18:\"_EventStartDateUTC\";i:1729435338;s:16:\"_EventEndDateUTC\";i:1729435338;s:14:\"_EventDuration\";i:1729435338;s:20:\"_EventCurrencySymbol\";i:1729435338;s:22:\"_EventCurrencyPosition\";i:1729435338;s:10:\"_EventCost\";i:1729435338;s:9:\"_EventURL\";i:1729435338;s:14:\"_EventTimezone\";i:1729435338;s:18:\"_EventTimezoneAbbr\";i:1729435338;s:17:\"_wpb_vc_js_status\";i:1729435338;s:12:\"_dp_original\";i:1729435338;s:13:\"_EventVenueID\";i:1729435338;s:17:\"_EventOrganizerID\";i:1729435338;s:13:\"_thumbnail_id\";i:1729435338;}'),(11481,2779,'_tribe_modified_fields','a:22:{s:12:\"_EventOrigin\";i:1729435338;s:16:\"tribe_events_cat\";i:1729435338;s:17:\"_vc_post_settings\";i:1729435338;s:14:\"slide_template\";i:1729435338;s:17:\"_EventShowMapLink\";i:1729435338;s:13:\"_EventShowMap\";i:1729435338;s:15:\"_EventStartDate\";i:1729435338;s:13:\"_EventEndDate\";i:1729435338;s:18:\"_EventStartDateUTC\";i:1729435338;s:16:\"_EventEndDateUTC\";i:1729435338;s:14:\"_EventDuration\";i:1729435338;s:20:\"_EventCurrencySymbol\";i:1729435338;s:22:\"_EventCurrencyPosition\";i:1729435338;s:10:\"_EventCost\";i:1729435338;s:9:\"_EventURL\";i:1729435338;s:14:\"_EventTimezone\";i:1729435338;s:18:\"_EventTimezoneAbbr\";i:1729435338;s:17:\"_wpb_vc_js_status\";i:1729435338;s:12:\"_dp_original\";i:1729435338;s:13:\"_EventVenueID\";i:1729435338;s:17:\"_EventOrganizerID\";i:1729435338;s:13:\"_thumbnail_id\";i:1729435338;}'),(11482,2779,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11483,2779,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11484,2779,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11485,2779,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11486,2779,'_EventOrigin','events-calendar'),(11487,2779,'_EventOrigin','events-calendar'),(11488,2779,'_EventOrigin','events-calendar'),(11489,2779,'_EventOrigin','events-calendar'),(11490,2779,'slide_template','default'),(11491,2779,'_EventShowMapLink','1'),(11492,2779,'_EventShowMap','1'),(11493,2779,'_EventStartDate','2018-08-15 07:00:00'),(11494,2779,'_EventEndDate','2018-08-15 16:00:00'),(11495,2779,'_EventStartDateUTC','2018-08-15 07:00:00'),(11496,2779,'_EventEndDateUTC','2018-08-15 16:00:00'),(11497,2779,'_EventDuration','32400'),(11498,2779,'_EventCurrencySymbol','$'),(11499,2779,'_EventCurrencyPosition','prefix'),(11500,2779,'_EventCost','20'),(11501,2779,'_EventURL','http://iacademy.mikado-themes.com'),(11502,2779,'_EventTimezone','UTC+0'),(11503,2779,'_EventTimezoneAbbr',''),(11504,2779,'_wpb_vc_js_status','true'),(11505,2779,'_dp_original','1942'),(11506,2779,'_EventVenueID','2997'),(11507,2779,'_EventOrganizerID','2996'),(11508,2779,'_thumbnail_id','3025'),(11509,2781,'_EventOrigin','events-calendar'),(11510,2781,'_tribe_modified_fields','a:22:{s:12:\"_EventOrigin\";i:1729435338;s:16:\"tribe_events_cat\";i:1729435338;s:17:\"_vc_post_settings\";i:1729435338;s:14:\"slide_template\";i:1729435338;s:17:\"_EventShowMapLink\";i:1729435338;s:13:\"_EventShowMap\";i:1729435338;s:15:\"_EventStartDate\";i:1729435338;s:13:\"_EventEndDate\";i:1729435338;s:18:\"_EventStartDateUTC\";i:1729435338;s:16:\"_EventEndDateUTC\";i:1729435338;s:14:\"_EventDuration\";i:1729435338;s:20:\"_EventCurrencySymbol\";i:1729435338;s:22:\"_EventCurrencyPosition\";i:1729435338;s:10:\"_EventCost\";i:1729435338;s:9:\"_EventURL\";i:1729435338;s:14:\"_EventTimezone\";i:1729435338;s:18:\"_EventTimezoneAbbr\";i:1729435338;s:17:\"_wpb_vc_js_status\";i:1729435338;s:12:\"_dp_original\";i:1729435338;s:13:\"_EventVenueID\";i:1729435338;s:17:\"_EventOrganizerID\";i:1729435338;s:13:\"_thumbnail_id\";i:1729435338;}'),(11511,2781,'_tribe_modified_fields','a:22:{s:12:\"_EventOrigin\";i:1729435338;s:16:\"tribe_events_cat\";i:1729435338;s:17:\"_vc_post_settings\";i:1729435338;s:14:\"slide_template\";i:1729435338;s:17:\"_EventShowMapLink\";i:1729435338;s:13:\"_EventShowMap\";i:1729435338;s:15:\"_EventStartDate\";i:1729435338;s:13:\"_EventEndDate\";i:1729435338;s:18:\"_EventStartDateUTC\";i:1729435338;s:16:\"_EventEndDateUTC\";i:1729435338;s:14:\"_EventDuration\";i:1729435338;s:20:\"_EventCurrencySymbol\";i:1729435338;s:22:\"_EventCurrencyPosition\";i:1729435338;s:10:\"_EventCost\";i:1729435338;s:9:\"_EventURL\";i:1729435338;s:14:\"_EventTimezone\";i:1729435338;s:18:\"_EventTimezoneAbbr\";i:1729435338;s:17:\"_wpb_vc_js_status\";i:1729435338;s:12:\"_dp_original\";i:1729435338;s:13:\"_EventVenueID\";i:1729435338;s:17:\"_EventOrganizerID\";i:1729435338;s:13:\"_thumbnail_id\";i:1729435338;}'),(11512,2781,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11513,2781,'_EventOrigin','events-calendar'),(11514,2781,'_tribe_modified_fields','a:22:{s:12:\"_EventOrigin\";i:1729435338;s:16:\"tribe_events_cat\";i:1729435338;s:17:\"_vc_post_settings\";i:1729435338;s:14:\"slide_template\";i:1729435338;s:17:\"_EventShowMapLink\";i:1729435338;s:13:\"_EventShowMap\";i:1729435338;s:15:\"_EventStartDate\";i:1729435338;s:13:\"_EventEndDate\";i:1729435338;s:18:\"_EventStartDateUTC\";i:1729435338;s:16:\"_EventEndDateUTC\";i:1729435338;s:14:\"_EventDuration\";i:1729435338;s:20:\"_EventCurrencySymbol\";i:1729435338;s:22:\"_EventCurrencyPosition\";i:1729435338;s:10:\"_EventCost\";i:1729435338;s:9:\"_EventURL\";i:1729435338;s:14:\"_EventTimezone\";i:1729435338;s:18:\"_EventTimezoneAbbr\";i:1729435338;s:17:\"_wpb_vc_js_status\";i:1729435338;s:12:\"_dp_original\";i:1729435338;s:13:\"_EventVenueID\";i:1729435338;s:17:\"_EventOrganizerID\";i:1729435338;s:13:\"_thumbnail_id\";i:1729435338;}'),(11515,2781,'_tribe_modified_fields','a:22:{s:12:\"_EventOrigin\";i:1729435338;s:16:\"tribe_events_cat\";i:1729435338;s:17:\"_vc_post_settings\";i:1729435338;s:14:\"slide_template\";i:1729435338;s:17:\"_EventShowMapLink\";i:1729435338;s:13:\"_EventShowMap\";i:1729435338;s:15:\"_EventStartDate\";i:1729435338;s:13:\"_EventEndDate\";i:1729435338;s:18:\"_EventStartDateUTC\";i:1729435338;s:16:\"_EventEndDateUTC\";i:1729435338;s:14:\"_EventDuration\";i:1729435338;s:20:\"_EventCurrencySymbol\";i:1729435338;s:22:\"_EventCurrencyPosition\";i:1729435338;s:10:\"_EventCost\";i:1729435338;s:9:\"_EventURL\";i:1729435338;s:14:\"_EventTimezone\";i:1729435338;s:18:\"_EventTimezoneAbbr\";i:1729435338;s:17:\"_wpb_vc_js_status\";i:1729435338;s:12:\"_dp_original\";i:1729435338;s:13:\"_EventVenueID\";i:1729435338;s:17:\"_EventOrganizerID\";i:1729435338;s:13:\"_thumbnail_id\";i:1729435338;}'),(11516,2781,'_tribe_modified_fields','a:22:{s:12:\"_EventOrigin\";i:1729435338;s:16:\"tribe_events_cat\";i:1729435338;s:17:\"_vc_post_settings\";i:1729435338;s:14:\"slide_template\";i:1729435338;s:17:\"_EventShowMapLink\";i:1729435338;s:13:\"_EventShowMap\";i:1729435338;s:15:\"_EventStartDate\";i:1729435338;s:13:\"_EventEndDate\";i:1729435338;s:18:\"_EventStartDateUTC\";i:1729435338;s:16:\"_EventEndDateUTC\";i:1729435338;s:14:\"_EventDuration\";i:1729435338;s:20:\"_EventCurrencySymbol\";i:1729435338;s:22:\"_EventCurrencyPosition\";i:1729435338;s:10:\"_EventCost\";i:1729435338;s:9:\"_EventURL\";i:1729435338;s:14:\"_EventTimezone\";i:1729435338;s:18:\"_EventTimezoneAbbr\";i:1729435338;s:17:\"_wpb_vc_js_status\";i:1729435338;s:12:\"_dp_original\";i:1729435338;s:13:\"_EventVenueID\";i:1729435338;s:17:\"_EventOrganizerID\";i:1729435338;s:13:\"_thumbnail_id\";i:1729435338;}'),(11517,2781,'_tribe_modified_fields','a:22:{s:12:\"_EventOrigin\";i:1729435338;s:16:\"tribe_events_cat\";i:1729435338;s:17:\"_vc_post_settings\";i:1729435338;s:14:\"slide_template\";i:1729435338;s:17:\"_EventShowMapLink\";i:1729435338;s:13:\"_EventShowMap\";i:1729435338;s:15:\"_EventStartDate\";i:1729435338;s:13:\"_EventEndDate\";i:1729435338;s:18:\"_EventStartDateUTC\";i:1729435338;s:16:\"_EventEndDateUTC\";i:1729435338;s:14:\"_EventDuration\";i:1729435338;s:20:\"_EventCurrencySymbol\";i:1729435338;s:22:\"_EventCurrencyPosition\";i:1729435338;s:10:\"_EventCost\";i:1729435338;s:9:\"_EventURL\";i:1729435338;s:14:\"_EventTimezone\";i:1729435338;s:18:\"_EventTimezoneAbbr\";i:1729435338;s:17:\"_wpb_vc_js_status\";i:1729435338;s:12:\"_dp_original\";i:1729435338;s:13:\"_EventVenueID\";i:1729435338;s:17:\"_EventOrganizerID\";i:1729435338;s:13:\"_thumbnail_id\";i:1729435338;}'),(11518,2781,'_tribe_modified_fields','a:22:{s:12:\"_EventOrigin\";i:1729435338;s:16:\"tribe_events_cat\";i:1729435338;s:17:\"_vc_post_settings\";i:1729435338;s:14:\"slide_template\";i:1729435338;s:17:\"_EventShowMapLink\";i:1729435338;s:13:\"_EventShowMap\";i:1729435338;s:15:\"_EventStartDate\";i:1729435338;s:13:\"_EventEndDate\";i:1729435338;s:18:\"_EventStartDateUTC\";i:1729435338;s:16:\"_EventEndDateUTC\";i:1729435338;s:14:\"_EventDuration\";i:1729435338;s:20:\"_EventCurrencySymbol\";i:1729435338;s:22:\"_EventCurrencyPosition\";i:1729435338;s:10:\"_EventCost\";i:1729435338;s:9:\"_EventURL\";i:1729435338;s:14:\"_EventTimezone\";i:1729435338;s:18:\"_EventTimezoneAbbr\";i:1729435338;s:17:\"_wpb_vc_js_status\";i:1729435338;s:12:\"_dp_original\";i:1729435338;s:13:\"_EventVenueID\";i:1729435338;s:17:\"_EventOrganizerID\";i:1729435338;s:13:\"_thumbnail_id\";i:1729435338;}'),(11519,2781,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11520,2781,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11521,2781,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11522,2781,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11523,2781,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11524,2781,'_EventOrigin','events-calendar'),(11525,2781,'_EventOrigin','events-calendar'),(11526,2781,'_EventOrigin','events-calendar'),(11527,2781,'_EventOrigin','events-calendar'),(11528,2781,'_EventOrigin','events-calendar'),(11529,2781,'slide_template','default'),(11530,2781,'_EventShowMapLink','1'),(11531,2781,'_EventShowMap','1'),(11532,2781,'_EventStartDate','2018-08-30 08:00:00'),(11533,2781,'_EventEndDate','2018-08-30 21:00:00'),(11534,2781,'_EventStartDateUTC','2018-08-30 08:00:00'),(11535,2781,'_EventEndDateUTC','2018-08-30 21:00:00'),(11536,2781,'_EventDuration','46800'),(11537,2781,'_EventCurrencySymbol',''),(11538,2781,'_EventCurrencyPosition','prefix'),(11539,2781,'_EventCost','0'),(11540,2781,'_EventURL','http://iacademy.mikado-themes.com'),(11541,2781,'_EventTimezone','UTC+0'),(11542,2781,'_EventTimezoneAbbr',''),(11543,2781,'_wpb_vc_js_status','true'),(11544,2781,'_dp_original','2779'),(11545,2781,'_EventVenueID','2999'),(11546,2781,'_EventOrganizerID','2998'),(11547,2781,'_thumbnail_id','3021'),(11548,2980,'_EventOrigin','events-calendar'),(11549,2980,'_tribe_modified_fields','a:22:{s:12:\"_EventOrigin\";i:1729435338;s:16:\"tribe_events_cat\";i:1729435338;s:17:\"_vc_post_settings\";i:1729435338;s:14:\"slide_template\";i:1729435338;s:17:\"_EventShowMapLink\";i:1729435338;s:13:\"_EventShowMap\";i:1729435338;s:13:\"_EventVenueID\";i:1729435338;s:17:\"_EventOrganizerID\";i:1729435338;s:15:\"_EventStartDate\";i:1729435338;s:13:\"_EventEndDate\";i:1729435338;s:18:\"_EventStartDateUTC\";i:1729435338;s:16:\"_EventEndDateUTC\";i:1729435338;s:14:\"_EventDuration\";i:1729435338;s:20:\"_EventCurrencySymbol\";i:1729435338;s:22:\"_EventCurrencyPosition\";i:1729435338;s:10:\"_EventCost\";i:1729435338;s:9:\"_EventURL\";i:1729435338;s:14:\"_EventTimezone\";i:1729435338;s:18:\"_EventTimezoneAbbr\";i:1729435338;s:17:\"_wpb_vc_js_status\";i:1729435338;s:12:\"_dp_original\";i:1729435338;s:13:\"_thumbnail_id\";i:1729435338;}'),(11550,2980,'_tribe_modified_fields','a:22:{s:12:\"_EventOrigin\";i:1729435338;s:16:\"tribe_events_cat\";i:1729435338;s:17:\"_vc_post_settings\";i:1729435338;s:14:\"slide_template\";i:1729435338;s:17:\"_EventShowMapLink\";i:1729435338;s:13:\"_EventShowMap\";i:1729435338;s:13:\"_EventVenueID\";i:1729435338;s:17:\"_EventOrganizerID\";i:1729435338;s:15:\"_EventStartDate\";i:1729435338;s:13:\"_EventEndDate\";i:1729435338;s:18:\"_EventStartDateUTC\";i:1729435338;s:16:\"_EventEndDateUTC\";i:1729435338;s:14:\"_EventDuration\";i:1729435338;s:20:\"_EventCurrencySymbol\";i:1729435338;s:22:\"_EventCurrencyPosition\";i:1729435338;s:10:\"_EventCost\";i:1729435338;s:9:\"_EventURL\";i:1729435338;s:14:\"_EventTimezone\";i:1729435338;s:18:\"_EventTimezoneAbbr\";i:1729435338;s:17:\"_wpb_vc_js_status\";i:1729435338;s:12:\"_dp_original\";i:1729435338;s:13:\"_thumbnail_id\";i:1729435338;}'),(11551,2980,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11552,2980,'_EventOrigin','events-calendar'),(11553,2980,'_tribe_modified_fields','a:22:{s:12:\"_EventOrigin\";i:1729435338;s:16:\"tribe_events_cat\";i:1729435338;s:17:\"_vc_post_settings\";i:1729435338;s:14:\"slide_template\";i:1729435338;s:17:\"_EventShowMapLink\";i:1729435338;s:13:\"_EventShowMap\";i:1729435338;s:13:\"_EventVenueID\";i:1729435338;s:17:\"_EventOrganizerID\";i:1729435338;s:15:\"_EventStartDate\";i:1729435338;s:13:\"_EventEndDate\";i:1729435338;s:18:\"_EventStartDateUTC\";i:1729435338;s:16:\"_EventEndDateUTC\";i:1729435338;s:14:\"_EventDuration\";i:1729435338;s:20:\"_EventCurrencySymbol\";i:1729435338;s:22:\"_EventCurrencyPosition\";i:1729435338;s:10:\"_EventCost\";i:1729435338;s:9:\"_EventURL\";i:1729435338;s:14:\"_EventTimezone\";i:1729435338;s:18:\"_EventTimezoneAbbr\";i:1729435338;s:17:\"_wpb_vc_js_status\";i:1729435338;s:12:\"_dp_original\";i:1729435338;s:13:\"_thumbnail_id\";i:1729435338;}'),(11554,2980,'_tribe_modified_fields','a:22:{s:12:\"_EventOrigin\";i:1729435338;s:16:\"tribe_events_cat\";i:1729435338;s:17:\"_vc_post_settings\";i:1729435338;s:14:\"slide_template\";i:1729435338;s:17:\"_EventShowMapLink\";i:1729435338;s:13:\"_EventShowMap\";i:1729435338;s:13:\"_EventVenueID\";i:1729435338;s:17:\"_EventOrganizerID\";i:1729435338;s:15:\"_EventStartDate\";i:1729435338;s:13:\"_EventEndDate\";i:1729435338;s:18:\"_EventStartDateUTC\";i:1729435338;s:16:\"_EventEndDateUTC\";i:1729435338;s:14:\"_EventDuration\";i:1729435338;s:20:\"_EventCurrencySymbol\";i:1729435338;s:22:\"_EventCurrencyPosition\";i:1729435338;s:10:\"_EventCost\";i:1729435338;s:9:\"_EventURL\";i:1729435338;s:14:\"_EventTimezone\";i:1729435338;s:18:\"_EventTimezoneAbbr\";i:1729435338;s:17:\"_wpb_vc_js_status\";i:1729435338;s:12:\"_dp_original\";i:1729435338;s:13:\"_thumbnail_id\";i:1729435338;}'),(11555,2980,'_tribe_modified_fields','a:22:{s:12:\"_EventOrigin\";i:1729435338;s:16:\"tribe_events_cat\";i:1729435338;s:17:\"_vc_post_settings\";i:1729435338;s:14:\"slide_template\";i:1729435338;s:17:\"_EventShowMapLink\";i:1729435338;s:13:\"_EventShowMap\";i:1729435338;s:13:\"_EventVenueID\";i:1729435338;s:17:\"_EventOrganizerID\";i:1729435338;s:15:\"_EventStartDate\";i:1729435338;s:13:\"_EventEndDate\";i:1729435338;s:18:\"_EventStartDateUTC\";i:1729435338;s:16:\"_EventEndDateUTC\";i:1729435338;s:14:\"_EventDuration\";i:1729435338;s:20:\"_EventCurrencySymbol\";i:1729435338;s:22:\"_EventCurrencyPosition\";i:1729435338;s:10:\"_EventCost\";i:1729435338;s:9:\"_EventURL\";i:1729435338;s:14:\"_EventTimezone\";i:1729435338;s:18:\"_EventTimezoneAbbr\";i:1729435338;s:17:\"_wpb_vc_js_status\";i:1729435338;s:12:\"_dp_original\";i:1729435338;s:13:\"_thumbnail_id\";i:1729435338;}'),(11556,2980,'_tribe_modified_fields','a:22:{s:12:\"_EventOrigin\";i:1729435338;s:16:\"tribe_events_cat\";i:1729435338;s:17:\"_vc_post_settings\";i:1729435338;s:14:\"slide_template\";i:1729435338;s:17:\"_EventShowMapLink\";i:1729435338;s:13:\"_EventShowMap\";i:1729435338;s:13:\"_EventVenueID\";i:1729435338;s:17:\"_EventOrganizerID\";i:1729435338;s:15:\"_EventStartDate\";i:1729435338;s:13:\"_EventEndDate\";i:1729435338;s:18:\"_EventStartDateUTC\";i:1729435338;s:16:\"_EventEndDateUTC\";i:1729435338;s:14:\"_EventDuration\";i:1729435338;s:20:\"_EventCurrencySymbol\";i:1729435338;s:22:\"_EventCurrencyPosition\";i:1729435338;s:10:\"_EventCost\";i:1729435338;s:9:\"_EventURL\";i:1729435338;s:14:\"_EventTimezone\";i:1729435338;s:18:\"_EventTimezoneAbbr\";i:1729435338;s:17:\"_wpb_vc_js_status\";i:1729435338;s:12:\"_dp_original\";i:1729435338;s:13:\"_thumbnail_id\";i:1729435338;}'),(11557,2980,'_tribe_modified_fields','a:22:{s:12:\"_EventOrigin\";i:1729435338;s:16:\"tribe_events_cat\";i:1729435338;s:17:\"_vc_post_settings\";i:1729435338;s:14:\"slide_template\";i:1729435338;s:17:\"_EventShowMapLink\";i:1729435338;s:13:\"_EventShowMap\";i:1729435338;s:13:\"_EventVenueID\";i:1729435338;s:17:\"_EventOrganizerID\";i:1729435338;s:15:\"_EventStartDate\";i:1729435338;s:13:\"_EventEndDate\";i:1729435338;s:18:\"_EventStartDateUTC\";i:1729435338;s:16:\"_EventEndDateUTC\";i:1729435338;s:14:\"_EventDuration\";i:1729435338;s:20:\"_EventCurrencySymbol\";i:1729435338;s:22:\"_EventCurrencyPosition\";i:1729435338;s:10:\"_EventCost\";i:1729435338;s:9:\"_EventURL\";i:1729435338;s:14:\"_EventTimezone\";i:1729435338;s:18:\"_EventTimezoneAbbr\";i:1729435338;s:17:\"_wpb_vc_js_status\";i:1729435338;s:12:\"_dp_original\";i:1729435338;s:13:\"_thumbnail_id\";i:1729435338;}'),(11558,2980,'_tribe_modified_fields','a:22:{s:12:\"_EventOrigin\";i:1729435338;s:16:\"tribe_events_cat\";i:1729435338;s:17:\"_vc_post_settings\";i:1729435338;s:14:\"slide_template\";i:1729435338;s:17:\"_EventShowMapLink\";i:1729435338;s:13:\"_EventShowMap\";i:1729435338;s:13:\"_EventVenueID\";i:1729435338;s:17:\"_EventOrganizerID\";i:1729435338;s:15:\"_EventStartDate\";i:1729435338;s:13:\"_EventEndDate\";i:1729435338;s:18:\"_EventStartDateUTC\";i:1729435338;s:16:\"_EventEndDateUTC\";i:1729435338;s:14:\"_EventDuration\";i:1729435338;s:20:\"_EventCurrencySymbol\";i:1729435338;s:22:\"_EventCurrencyPosition\";i:1729435338;s:10:\"_EventCost\";i:1729435338;s:9:\"_EventURL\";i:1729435338;s:14:\"_EventTimezone\";i:1729435338;s:18:\"_EventTimezoneAbbr\";i:1729435338;s:17:\"_wpb_vc_js_status\";i:1729435338;s:12:\"_dp_original\";i:1729435338;s:13:\"_thumbnail_id\";i:1729435338;}'),(11559,2980,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11560,2980,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11561,2980,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11562,2980,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11563,2980,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11564,2980,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11565,2980,'_EventOrigin','events-calendar'),(11566,2980,'_EventOrigin','events-calendar'),(11567,2980,'_EventOrigin','events-calendar'),(11568,2980,'_EventOrigin','events-calendar'),(11569,2980,'_EventOrigin','events-calendar'),(11570,2980,'_EventOrigin','events-calendar'),(11571,2980,'slide_template','default'),(11572,2980,'_EventShowMapLink','1'),(11573,2980,'_EventShowMap','1'),(11574,2980,'_EventVenueID','1841'),(11575,2980,'_EventOrganizerID','1842'),(11576,2980,'_EventStartDate','2018-06-13 10:00:00'),(11577,2980,'_EventEndDate','2018-06-13 18:00:00'),(11578,2980,'_EventStartDateUTC','2018-06-13 10:00:00'),(11579,2980,'_EventEndDateUTC','2018-06-13 18:00:00'),(11580,2980,'_EventDuration','28800'),(11581,2980,'_EventCurrencySymbol',''),(11582,2980,'_EventCurrencyPosition','prefix'),(11583,2980,'_EventCost','0'),(11584,2980,'_EventURL','http://iacademy.mikado-themes.com'),(11585,2980,'_EventTimezone','UTC+0'),(11586,2980,'_EventTimezoneAbbr',''),(11587,2980,'_wpb_vc_js_status','true'),(11588,2980,'_dp_original','2781'),(11589,2980,'_thumbnail_id','3026'),(11590,2983,'_EventOrigin','events-calendar'),(11591,2983,'_tribe_modified_fields','a:23:{s:12:\"_EventOrigin\";i:1729435338;s:16:\"tribe_events_cat\";i:1729435338;s:17:\"_vc_post_settings\";i:1729435338;s:14:\"slide_template\";i:1729435338;s:17:\"_EventShowMapLink\";i:1729435338;s:13:\"_EventShowMap\";i:1729435338;s:13:\"_EventVenueID\";i:1729435338;s:17:\"_EventOrganizerID\";i:1729435338;s:15:\"_EventStartDate\";i:1729435338;s:13:\"_EventEndDate\";i:1729435338;s:18:\"_EventStartDateUTC\";i:1729435338;s:16:\"_EventEndDateUTC\";i:1729435338;s:14:\"_EventDuration\";i:1729435338;s:20:\"_EventCurrencySymbol\";i:1729435338;s:22:\"_EventCurrencyPosition\";i:1729435338;s:10:\"_EventCost\";i:1729435338;s:9:\"_EventURL\";i:1729435338;s:14:\"_EventTimezone\";i:1729435338;s:18:\"_EventTimezoneAbbr\";i:1729435338;s:17:\"_wpb_vc_js_status\";i:1729435338;s:12:\"_dp_original\";i:1729435338;s:13:\"_thumbnail_id\";i:1729435338;s:12:\"_wp_old_slug\";i:1729435338;}'),(11592,2983,'_tribe_modified_fields','a:23:{s:12:\"_EventOrigin\";i:1729435338;s:16:\"tribe_events_cat\";i:1729435338;s:17:\"_vc_post_settings\";i:1729435338;s:14:\"slide_template\";i:1729435338;s:17:\"_EventShowMapLink\";i:1729435338;s:13:\"_EventShowMap\";i:1729435338;s:13:\"_EventVenueID\";i:1729435338;s:17:\"_EventOrganizerID\";i:1729435338;s:15:\"_EventStartDate\";i:1729435338;s:13:\"_EventEndDate\";i:1729435338;s:18:\"_EventStartDateUTC\";i:1729435338;s:16:\"_EventEndDateUTC\";i:1729435338;s:14:\"_EventDuration\";i:1729435338;s:20:\"_EventCurrencySymbol\";i:1729435338;s:22:\"_EventCurrencyPosition\";i:1729435338;s:10:\"_EventCost\";i:1729435338;s:9:\"_EventURL\";i:1729435338;s:14:\"_EventTimezone\";i:1729435338;s:18:\"_EventTimezoneAbbr\";i:1729435338;s:17:\"_wpb_vc_js_status\";i:1729435338;s:12:\"_dp_original\";i:1729435338;s:13:\"_thumbnail_id\";i:1729435338;s:12:\"_wp_old_slug\";i:1729435338;}'),(11593,2983,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11594,2983,'_EventOrigin','events-calendar'),(11595,2983,'_tribe_modified_fields','a:23:{s:12:\"_EventOrigin\";i:1729435338;s:16:\"tribe_events_cat\";i:1729435338;s:17:\"_vc_post_settings\";i:1729435338;s:14:\"slide_template\";i:1729435338;s:17:\"_EventShowMapLink\";i:1729435338;s:13:\"_EventShowMap\";i:1729435338;s:13:\"_EventVenueID\";i:1729435338;s:17:\"_EventOrganizerID\";i:1729435338;s:15:\"_EventStartDate\";i:1729435338;s:13:\"_EventEndDate\";i:1729435338;s:18:\"_EventStartDateUTC\";i:1729435338;s:16:\"_EventEndDateUTC\";i:1729435338;s:14:\"_EventDuration\";i:1729435338;s:20:\"_EventCurrencySymbol\";i:1729435338;s:22:\"_EventCurrencyPosition\";i:1729435338;s:10:\"_EventCost\";i:1729435338;s:9:\"_EventURL\";i:1729435338;s:14:\"_EventTimezone\";i:1729435338;s:18:\"_EventTimezoneAbbr\";i:1729435338;s:17:\"_wpb_vc_js_status\";i:1729435338;s:12:\"_dp_original\";i:1729435338;s:13:\"_thumbnail_id\";i:1729435338;s:12:\"_wp_old_slug\";i:1729435338;}'),(11596,2983,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11597,2983,'_EventOrigin','events-calendar'),(11598,2983,'slide_template','default'),(11599,2983,'_EventShowMapLink','1'),(11600,2983,'_EventShowMap','1'),(11601,2983,'_EventVenueID','1841'),(11602,2983,'_EventOrganizerID','1842'),(11603,2983,'_EventStartDate','2018-07-14 08:00:00'),(11604,2983,'_EventEndDate','2018-07-14 17:00:00'),(11605,2983,'_EventStartDateUTC','2018-07-14 08:00:00'),(11606,2983,'_EventEndDateUTC','2018-07-14 17:00:00'),(11607,2983,'_EventDuration','32400'),(11608,2983,'_EventCurrencySymbol',''),(11609,2983,'_EventCurrencyPosition','prefix'),(11610,2983,'_EventCost','0'),(11611,2983,'_EventURL','http://iacademy.mikado-themes.com'),(11612,2983,'_EventTimezone','UTC+0'),(11613,2983,'_EventTimezoneAbbr',''),(11614,2983,'_wpb_vc_js_status','true'),(11615,2983,'_dp_original','1830'),(11616,2983,'_thumbnail_id','3031'),(11617,2983,'_wp_old_slug','leaders-in-learning-2'),(11618,2983,'_wp_old_slug','lifelong-learning'),(11619,2985,'_EventOrigin','events-calendar'),(11620,2985,'_tribe_modified_fields','a:23:{s:12:\"_EventOrigin\";i:1729435338;s:16:\"tribe_events_cat\";i:1729435338;s:17:\"_vc_post_settings\";i:1729435338;s:14:\"slide_template\";i:1729435338;s:17:\"_EventShowMapLink\";i:1729435338;s:13:\"_EventShowMap\";i:1729435338;s:15:\"_EventStartDate\";i:1729435338;s:13:\"_EventEndDate\";i:1729435338;s:18:\"_EventStartDateUTC\";i:1729435338;s:16:\"_EventEndDateUTC\";i:1729435338;s:14:\"_EventDuration\";i:1729435338;s:20:\"_EventCurrencySymbol\";i:1729435338;s:22:\"_EventCurrencyPosition\";i:1729435338;s:10:\"_EventCost\";i:1729435338;s:9:\"_EventURL\";i:1729435338;s:14:\"_EventTimezone\";i:1729435338;s:18:\"_EventTimezoneAbbr\";i:1729435338;s:17:\"_wpb_vc_js_status\";i:1729435338;s:12:\"_wp_old_slug\";i:1729435338;s:12:\"_dp_original\";i:1729435338;s:13:\"_EventVenueID\";i:1729435338;s:17:\"_EventOrganizerID\";i:1729435338;s:13:\"_thumbnail_id\";i:1729435338;}'),(11621,2985,'_tribe_modified_fields','a:23:{s:12:\"_EventOrigin\";i:1729435338;s:16:\"tribe_events_cat\";i:1729435338;s:17:\"_vc_post_settings\";i:1729435338;s:14:\"slide_template\";i:1729435338;s:17:\"_EventShowMapLink\";i:1729435338;s:13:\"_EventShowMap\";i:1729435338;s:15:\"_EventStartDate\";i:1729435338;s:13:\"_EventEndDate\";i:1729435338;s:18:\"_EventStartDateUTC\";i:1729435338;s:16:\"_EventEndDateUTC\";i:1729435338;s:14:\"_EventDuration\";i:1729435338;s:20:\"_EventCurrencySymbol\";i:1729435338;s:22:\"_EventCurrencyPosition\";i:1729435338;s:10:\"_EventCost\";i:1729435338;s:9:\"_EventURL\";i:1729435338;s:14:\"_EventTimezone\";i:1729435338;s:18:\"_EventTimezoneAbbr\";i:1729435338;s:17:\"_wpb_vc_js_status\";i:1729435338;s:12:\"_wp_old_slug\";i:1729435338;s:12:\"_dp_original\";i:1729435338;s:13:\"_EventVenueID\";i:1729435338;s:17:\"_EventOrganizerID\";i:1729435338;s:13:\"_thumbnail_id\";i:1729435338;}'),(11622,2985,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11623,2985,'_EventOrigin','events-calendar'),(11624,2985,'_tribe_modified_fields','a:23:{s:12:\"_EventOrigin\";i:1729435338;s:16:\"tribe_events_cat\";i:1729435338;s:17:\"_vc_post_settings\";i:1729435338;s:14:\"slide_template\";i:1729435338;s:17:\"_EventShowMapLink\";i:1729435338;s:13:\"_EventShowMap\";i:1729435338;s:15:\"_EventStartDate\";i:1729435338;s:13:\"_EventEndDate\";i:1729435338;s:18:\"_EventStartDateUTC\";i:1729435338;s:16:\"_EventEndDateUTC\";i:1729435338;s:14:\"_EventDuration\";i:1729435338;s:20:\"_EventCurrencySymbol\";i:1729435338;s:22:\"_EventCurrencyPosition\";i:1729435338;s:10:\"_EventCost\";i:1729435338;s:9:\"_EventURL\";i:1729435338;s:14:\"_EventTimezone\";i:1729435338;s:18:\"_EventTimezoneAbbr\";i:1729435338;s:17:\"_wpb_vc_js_status\";i:1729435338;s:12:\"_wp_old_slug\";i:1729435338;s:12:\"_dp_original\";i:1729435338;s:13:\"_EventVenueID\";i:1729435338;s:17:\"_EventOrganizerID\";i:1729435338;s:13:\"_thumbnail_id\";i:1729435338;}'),(11625,2985,'_tribe_modified_fields','a:23:{s:12:\"_EventOrigin\";i:1729435338;s:16:\"tribe_events_cat\";i:1729435338;s:17:\"_vc_post_settings\";i:1729435338;s:14:\"slide_template\";i:1729435338;s:17:\"_EventShowMapLink\";i:1729435338;s:13:\"_EventShowMap\";i:1729435338;s:15:\"_EventStartDate\";i:1729435338;s:13:\"_EventEndDate\";i:1729435338;s:18:\"_EventStartDateUTC\";i:1729435338;s:16:\"_EventEndDateUTC\";i:1729435338;s:14:\"_EventDuration\";i:1729435338;s:20:\"_EventCurrencySymbol\";i:1729435338;s:22:\"_EventCurrencyPosition\";i:1729435338;s:10:\"_EventCost\";i:1729435338;s:9:\"_EventURL\";i:1729435338;s:14:\"_EventTimezone\";i:1729435338;s:18:\"_EventTimezoneAbbr\";i:1729435338;s:17:\"_wpb_vc_js_status\";i:1729435338;s:12:\"_wp_old_slug\";i:1729435338;s:12:\"_dp_original\";i:1729435338;s:13:\"_EventVenueID\";i:1729435338;s:17:\"_EventOrganizerID\";i:1729435338;s:13:\"_thumbnail_id\";i:1729435338;}'),(11626,2985,'_tribe_modified_fields','a:23:{s:12:\"_EventOrigin\";i:1729435338;s:16:\"tribe_events_cat\";i:1729435338;s:17:\"_vc_post_settings\";i:1729435338;s:14:\"slide_template\";i:1729435338;s:17:\"_EventShowMapLink\";i:1729435338;s:13:\"_EventShowMap\";i:1729435338;s:15:\"_EventStartDate\";i:1729435338;s:13:\"_EventEndDate\";i:1729435338;s:18:\"_EventStartDateUTC\";i:1729435338;s:16:\"_EventEndDateUTC\";i:1729435338;s:14:\"_EventDuration\";i:1729435338;s:20:\"_EventCurrencySymbol\";i:1729435338;s:22:\"_EventCurrencyPosition\";i:1729435338;s:10:\"_EventCost\";i:1729435338;s:9:\"_EventURL\";i:1729435338;s:14:\"_EventTimezone\";i:1729435338;s:18:\"_EventTimezoneAbbr\";i:1729435338;s:17:\"_wpb_vc_js_status\";i:1729435338;s:12:\"_wp_old_slug\";i:1729435338;s:12:\"_dp_original\";i:1729435338;s:13:\"_EventVenueID\";i:1729435338;s:17:\"_EventOrganizerID\";i:1729435338;s:13:\"_thumbnail_id\";i:1729435338;}'),(11627,2985,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11628,2985,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11629,2985,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11630,2985,'_EventOrigin','events-calendar'),(11631,2985,'_EventOrigin','events-calendar'),(11632,2985,'_EventOrigin','events-calendar'),(11633,2985,'slide_template','default'),(11634,2985,'_EventShowMapLink','1'),(11635,2985,'_EventShowMap','1'),(11636,2985,'_EventStartDate','2018-07-14 07:00:00'),(11637,2985,'_EventEndDate','2018-07-14 07:00:00'),(11638,2985,'_EventStartDateUTC','2018-07-14 07:00:00'),(11639,2985,'_EventEndDateUTC','2018-07-14 07:00:00'),(11640,2985,'_EventDuration','0'),(11641,2985,'_EventCurrencySymbol',''),(11642,2985,'_EventCurrencyPosition','prefix'),(11643,2985,'_EventCost','0'),(11644,2985,'_EventURL','http://iacademy.mikado-themes.com'),(11645,2985,'_EventTimezone','UTC+0'),(11646,2985,'_EventTimezoneAbbr',''),(11647,2985,'_wpb_vc_js_status','true'),(11648,2985,'_wp_old_slug','leave-to-achieve'),(11649,2985,'_wp_old_slug','where-learning-begins'),(11650,2985,'_dp_original','2777'),(11651,2985,'_EventVenueID','2999'),(11652,2985,'_EventOrganizerID','2998'),(11653,2985,'_thumbnail_id','3030'),(11654,2985,'_wp_old_slug','inspiring-innovation-2'),(11655,2985,'_wp_old_slug','creating-futures'),(11656,2987,'_EventOrigin','events-calendar'),(11657,2987,'_tribe_modified_fields','a:23:{s:12:\"_EventOrigin\";i:1729435339;s:16:\"tribe_events_cat\";i:1729435338;s:17:\"_vc_post_settings\";i:1729435339;s:14:\"slide_template\";i:1729435339;s:17:\"_EventShowMapLink\";i:1729435339;s:13:\"_EventShowMap\";i:1729435339;s:15:\"_EventStartDate\";i:1729435339;s:13:\"_EventEndDate\";i:1729435339;s:18:\"_EventStartDateUTC\";i:1729435339;s:16:\"_EventEndDateUTC\";i:1729435339;s:14:\"_EventDuration\";i:1729435339;s:20:\"_EventCurrencySymbol\";i:1729435339;s:22:\"_EventCurrencyPosition\";i:1729435339;s:10:\"_EventCost\";i:1729435339;s:9:\"_EventURL\";i:1729435339;s:14:\"_EventTimezone\";i:1729435339;s:18:\"_EventTimezoneAbbr\";i:1729435339;s:17:\"_wpb_vc_js_status\";i:1729435339;s:12:\"_dp_original\";i:1729435339;s:13:\"_EventVenueID\";i:1729435339;s:17:\"_EventOrganizerID\";i:1729435339;s:13:\"_thumbnail_id\";i:1729435339;s:12:\"_wp_old_slug\";i:1729435339;}'),(11658,2987,'_tribe_modified_fields','a:23:{s:12:\"_EventOrigin\";i:1729435339;s:16:\"tribe_events_cat\";i:1729435338;s:17:\"_vc_post_settings\";i:1729435339;s:14:\"slide_template\";i:1729435339;s:17:\"_EventShowMapLink\";i:1729435339;s:13:\"_EventShowMap\";i:1729435339;s:15:\"_EventStartDate\";i:1729435339;s:13:\"_EventEndDate\";i:1729435339;s:18:\"_EventStartDateUTC\";i:1729435339;s:16:\"_EventEndDateUTC\";i:1729435339;s:14:\"_EventDuration\";i:1729435339;s:20:\"_EventCurrencySymbol\";i:1729435339;s:22:\"_EventCurrencyPosition\";i:1729435339;s:10:\"_EventCost\";i:1729435339;s:9:\"_EventURL\";i:1729435339;s:14:\"_EventTimezone\";i:1729435339;s:18:\"_EventTimezoneAbbr\";i:1729435339;s:17:\"_wpb_vc_js_status\";i:1729435339;s:12:\"_dp_original\";i:1729435339;s:13:\"_EventVenueID\";i:1729435339;s:17:\"_EventOrganizerID\";i:1729435339;s:13:\"_thumbnail_id\";i:1729435339;s:12:\"_wp_old_slug\";i:1729435339;}'),(11659,2987,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11660,2987,'_EventOrigin','events-calendar'),(11661,2987,'_tribe_modified_fields','a:23:{s:12:\"_EventOrigin\";i:1729435339;s:16:\"tribe_events_cat\";i:1729435338;s:17:\"_vc_post_settings\";i:1729435339;s:14:\"slide_template\";i:1729435339;s:17:\"_EventShowMapLink\";i:1729435339;s:13:\"_EventShowMap\";i:1729435339;s:15:\"_EventStartDate\";i:1729435339;s:13:\"_EventEndDate\";i:1729435339;s:18:\"_EventStartDateUTC\";i:1729435339;s:16:\"_EventEndDateUTC\";i:1729435339;s:14:\"_EventDuration\";i:1729435339;s:20:\"_EventCurrencySymbol\";i:1729435339;s:22:\"_EventCurrencyPosition\";i:1729435339;s:10:\"_EventCost\";i:1729435339;s:9:\"_EventURL\";i:1729435339;s:14:\"_EventTimezone\";i:1729435339;s:18:\"_EventTimezoneAbbr\";i:1729435339;s:17:\"_wpb_vc_js_status\";i:1729435339;s:12:\"_dp_original\";i:1729435339;s:13:\"_EventVenueID\";i:1729435339;s:17:\"_EventOrganizerID\";i:1729435339;s:13:\"_thumbnail_id\";i:1729435339;s:12:\"_wp_old_slug\";i:1729435339;}'),(11662,2987,'_tribe_modified_fields','a:23:{s:12:\"_EventOrigin\";i:1729435339;s:16:\"tribe_events_cat\";i:1729435338;s:17:\"_vc_post_settings\";i:1729435339;s:14:\"slide_template\";i:1729435339;s:17:\"_EventShowMapLink\";i:1729435339;s:13:\"_EventShowMap\";i:1729435339;s:15:\"_EventStartDate\";i:1729435339;s:13:\"_EventEndDate\";i:1729435339;s:18:\"_EventStartDateUTC\";i:1729435339;s:16:\"_EventEndDateUTC\";i:1729435339;s:14:\"_EventDuration\";i:1729435339;s:20:\"_EventCurrencySymbol\";i:1729435339;s:22:\"_EventCurrencyPosition\";i:1729435339;s:10:\"_EventCost\";i:1729435339;s:9:\"_EventURL\";i:1729435339;s:14:\"_EventTimezone\";i:1729435339;s:18:\"_EventTimezoneAbbr\";i:1729435339;s:17:\"_wpb_vc_js_status\";i:1729435339;s:12:\"_dp_original\";i:1729435339;s:13:\"_EventVenueID\";i:1729435339;s:17:\"_EventOrganizerID\";i:1729435339;s:13:\"_thumbnail_id\";i:1729435339;s:12:\"_wp_old_slug\";i:1729435339;}'),(11663,2987,'_tribe_modified_fields','a:23:{s:12:\"_EventOrigin\";i:1729435339;s:16:\"tribe_events_cat\";i:1729435338;s:17:\"_vc_post_settings\";i:1729435339;s:14:\"slide_template\";i:1729435339;s:17:\"_EventShowMapLink\";i:1729435339;s:13:\"_EventShowMap\";i:1729435339;s:15:\"_EventStartDate\";i:1729435339;s:13:\"_EventEndDate\";i:1729435339;s:18:\"_EventStartDateUTC\";i:1729435339;s:16:\"_EventEndDateUTC\";i:1729435339;s:14:\"_EventDuration\";i:1729435339;s:20:\"_EventCurrencySymbol\";i:1729435339;s:22:\"_EventCurrencyPosition\";i:1729435339;s:10:\"_EventCost\";i:1729435339;s:9:\"_EventURL\";i:1729435339;s:14:\"_EventTimezone\";i:1729435339;s:18:\"_EventTimezoneAbbr\";i:1729435339;s:17:\"_wpb_vc_js_status\";i:1729435339;s:12:\"_dp_original\";i:1729435339;s:13:\"_EventVenueID\";i:1729435339;s:17:\"_EventOrganizerID\";i:1729435339;s:13:\"_thumbnail_id\";i:1729435339;s:12:\"_wp_old_slug\";i:1729435339;}'),(11664,2987,'_tribe_modified_fields','a:23:{s:12:\"_EventOrigin\";i:1729435339;s:16:\"tribe_events_cat\";i:1729435338;s:17:\"_vc_post_settings\";i:1729435339;s:14:\"slide_template\";i:1729435339;s:17:\"_EventShowMapLink\";i:1729435339;s:13:\"_EventShowMap\";i:1729435339;s:15:\"_EventStartDate\";i:1729435339;s:13:\"_EventEndDate\";i:1729435339;s:18:\"_EventStartDateUTC\";i:1729435339;s:16:\"_EventEndDateUTC\";i:1729435339;s:14:\"_EventDuration\";i:1729435339;s:20:\"_EventCurrencySymbol\";i:1729435339;s:22:\"_EventCurrencyPosition\";i:1729435339;s:10:\"_EventCost\";i:1729435339;s:9:\"_EventURL\";i:1729435339;s:14:\"_EventTimezone\";i:1729435339;s:18:\"_EventTimezoneAbbr\";i:1729435339;s:17:\"_wpb_vc_js_status\";i:1729435339;s:12:\"_dp_original\";i:1729435339;s:13:\"_EventVenueID\";i:1729435339;s:17:\"_EventOrganizerID\";i:1729435339;s:13:\"_thumbnail_id\";i:1729435339;s:12:\"_wp_old_slug\";i:1729435339;}'),(11665,2987,'_tribe_modified_fields','a:23:{s:12:\"_EventOrigin\";i:1729435339;s:16:\"tribe_events_cat\";i:1729435338;s:17:\"_vc_post_settings\";i:1729435339;s:14:\"slide_template\";i:1729435339;s:17:\"_EventShowMapLink\";i:1729435339;s:13:\"_EventShowMap\";i:1729435339;s:15:\"_EventStartDate\";i:1729435339;s:13:\"_EventEndDate\";i:1729435339;s:18:\"_EventStartDateUTC\";i:1729435339;s:16:\"_EventEndDateUTC\";i:1729435339;s:14:\"_EventDuration\";i:1729435339;s:20:\"_EventCurrencySymbol\";i:1729435339;s:22:\"_EventCurrencyPosition\";i:1729435339;s:10:\"_EventCost\";i:1729435339;s:9:\"_EventURL\";i:1729435339;s:14:\"_EventTimezone\";i:1729435339;s:18:\"_EventTimezoneAbbr\";i:1729435339;s:17:\"_wpb_vc_js_status\";i:1729435339;s:12:\"_dp_original\";i:1729435339;s:13:\"_EventVenueID\";i:1729435339;s:17:\"_EventOrganizerID\";i:1729435339;s:13:\"_thumbnail_id\";i:1729435339;s:12:\"_wp_old_slug\";i:1729435339;}'),(11666,2987,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11667,2987,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11668,2987,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11669,2987,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11670,2987,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11671,2987,'_EventOrigin','events-calendar'),(11672,2987,'_EventOrigin','events-calendar'),(11673,2987,'_EventOrigin','events-calendar'),(11674,2987,'_EventOrigin','events-calendar'),(11675,2987,'_EventOrigin','events-calendar'),(11676,2987,'slide_template','default'),(11677,2987,'_EventShowMapLink','1'),(11678,2987,'_EventShowMap','1'),(11679,2987,'_EventStartDate','2018-07-03 08:00:00'),(11680,2987,'_EventEndDate','2018-07-03 09:30:00'),(11681,2987,'_EventStartDateUTC','2018-07-03 08:00:00'),(11682,2987,'_EventEndDateUTC','2018-07-03 09:30:00'),(11683,2987,'_EventDuration','5400'),(11684,2987,'_EventCurrencySymbol','$'),(11685,2987,'_EventCurrencyPosition','prefix'),(11686,2987,'_EventCost','20'),(11687,2987,'_EventURL','http://iacademy.mikado-themes.com'),(11688,2987,'_EventTimezone','UTC+0'),(11689,2987,'_EventTimezoneAbbr',''),(11690,2987,'_wpb_vc_js_status','true'),(11691,2987,'_dp_original','2779'),(11692,2987,'_EventVenueID','2997'),(11693,2987,'_EventOrganizerID','2996'),(11694,2987,'_thumbnail_id','3027'),(11695,2987,'_wp_old_slug','education-for-service-2'),(11696,2989,'_EventOrigin','events-calendar'),(11697,2989,'_tribe_modified_fields','a:23:{s:12:\"_EventOrigin\";i:1729435339;s:16:\"tribe_events_cat\";i:1729435339;s:17:\"_vc_post_settings\";i:1729435339;s:14:\"slide_template\";i:1729435339;s:17:\"_EventShowMapLink\";i:1729435339;s:13:\"_EventShowMap\";i:1729435339;s:15:\"_EventStartDate\";i:1729435339;s:13:\"_EventEndDate\";i:1729435339;s:18:\"_EventStartDateUTC\";i:1729435339;s:16:\"_EventEndDateUTC\";i:1729435339;s:14:\"_EventDuration\";i:1729435339;s:20:\"_EventCurrencySymbol\";i:1729435339;s:22:\"_EventCurrencyPosition\";i:1729435339;s:10:\"_EventCost\";i:1729435339;s:9:\"_EventURL\";i:1729435339;s:14:\"_EventTimezone\";i:1729435339;s:18:\"_EventTimezoneAbbr\";i:1729435339;s:17:\"_wpb_vc_js_status\";i:1729435339;s:12:\"_dp_original\";i:1729435339;s:13:\"_EventVenueID\";i:1729435339;s:17:\"_EventOrganizerID\";i:1729435339;s:13:\"_thumbnail_id\";i:1729435339;s:12:\"_wp_old_slug\";i:1729435339;}'),(11698,2989,'_tribe_modified_fields','a:23:{s:12:\"_EventOrigin\";i:1729435339;s:16:\"tribe_events_cat\";i:1729435339;s:17:\"_vc_post_settings\";i:1729435339;s:14:\"slide_template\";i:1729435339;s:17:\"_EventShowMapLink\";i:1729435339;s:13:\"_EventShowMap\";i:1729435339;s:15:\"_EventStartDate\";i:1729435339;s:13:\"_EventEndDate\";i:1729435339;s:18:\"_EventStartDateUTC\";i:1729435339;s:16:\"_EventEndDateUTC\";i:1729435339;s:14:\"_EventDuration\";i:1729435339;s:20:\"_EventCurrencySymbol\";i:1729435339;s:22:\"_EventCurrencyPosition\";i:1729435339;s:10:\"_EventCost\";i:1729435339;s:9:\"_EventURL\";i:1729435339;s:14:\"_EventTimezone\";i:1729435339;s:18:\"_EventTimezoneAbbr\";i:1729435339;s:17:\"_wpb_vc_js_status\";i:1729435339;s:12:\"_dp_original\";i:1729435339;s:13:\"_EventVenueID\";i:1729435339;s:17:\"_EventOrganizerID\";i:1729435339;s:13:\"_thumbnail_id\";i:1729435339;s:12:\"_wp_old_slug\";i:1729435339;}'),(11699,2989,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11700,2989,'_EventOrigin','events-calendar'),(11701,2989,'_tribe_modified_fields','a:23:{s:12:\"_EventOrigin\";i:1729435339;s:16:\"tribe_events_cat\";i:1729435339;s:17:\"_vc_post_settings\";i:1729435339;s:14:\"slide_template\";i:1729435339;s:17:\"_EventShowMapLink\";i:1729435339;s:13:\"_EventShowMap\";i:1729435339;s:15:\"_EventStartDate\";i:1729435339;s:13:\"_EventEndDate\";i:1729435339;s:18:\"_EventStartDateUTC\";i:1729435339;s:16:\"_EventEndDateUTC\";i:1729435339;s:14:\"_EventDuration\";i:1729435339;s:20:\"_EventCurrencySymbol\";i:1729435339;s:22:\"_EventCurrencyPosition\";i:1729435339;s:10:\"_EventCost\";i:1729435339;s:9:\"_EventURL\";i:1729435339;s:14:\"_EventTimezone\";i:1729435339;s:18:\"_EventTimezoneAbbr\";i:1729435339;s:17:\"_wpb_vc_js_status\";i:1729435339;s:12:\"_dp_original\";i:1729435339;s:13:\"_EventVenueID\";i:1729435339;s:17:\"_EventOrganizerID\";i:1729435339;s:13:\"_thumbnail_id\";i:1729435339;s:12:\"_wp_old_slug\";i:1729435339;}'),(11702,2989,'_tribe_modified_fields','a:23:{s:12:\"_EventOrigin\";i:1729435339;s:16:\"tribe_events_cat\";i:1729435339;s:17:\"_vc_post_settings\";i:1729435339;s:14:\"slide_template\";i:1729435339;s:17:\"_EventShowMapLink\";i:1729435339;s:13:\"_EventShowMap\";i:1729435339;s:15:\"_EventStartDate\";i:1729435339;s:13:\"_EventEndDate\";i:1729435339;s:18:\"_EventStartDateUTC\";i:1729435339;s:16:\"_EventEndDateUTC\";i:1729435339;s:14:\"_EventDuration\";i:1729435339;s:20:\"_EventCurrencySymbol\";i:1729435339;s:22:\"_EventCurrencyPosition\";i:1729435339;s:10:\"_EventCost\";i:1729435339;s:9:\"_EventURL\";i:1729435339;s:14:\"_EventTimezone\";i:1729435339;s:18:\"_EventTimezoneAbbr\";i:1729435339;s:17:\"_wpb_vc_js_status\";i:1729435339;s:12:\"_dp_original\";i:1729435339;s:13:\"_EventVenueID\";i:1729435339;s:17:\"_EventOrganizerID\";i:1729435339;s:13:\"_thumbnail_id\";i:1729435339;s:12:\"_wp_old_slug\";i:1729435339;}'),(11703,2989,'_tribe_modified_fields','a:23:{s:12:\"_EventOrigin\";i:1729435339;s:16:\"tribe_events_cat\";i:1729435339;s:17:\"_vc_post_settings\";i:1729435339;s:14:\"slide_template\";i:1729435339;s:17:\"_EventShowMapLink\";i:1729435339;s:13:\"_EventShowMap\";i:1729435339;s:15:\"_EventStartDate\";i:1729435339;s:13:\"_EventEndDate\";i:1729435339;s:18:\"_EventStartDateUTC\";i:1729435339;s:16:\"_EventEndDateUTC\";i:1729435339;s:14:\"_EventDuration\";i:1729435339;s:20:\"_EventCurrencySymbol\";i:1729435339;s:22:\"_EventCurrencyPosition\";i:1729435339;s:10:\"_EventCost\";i:1729435339;s:9:\"_EventURL\";i:1729435339;s:14:\"_EventTimezone\";i:1729435339;s:18:\"_EventTimezoneAbbr\";i:1729435339;s:17:\"_wpb_vc_js_status\";i:1729435339;s:12:\"_dp_original\";i:1729435339;s:13:\"_EventVenueID\";i:1729435339;s:17:\"_EventOrganizerID\";i:1729435339;s:13:\"_thumbnail_id\";i:1729435339;s:12:\"_wp_old_slug\";i:1729435339;}'),(11704,2989,'_tribe_modified_fields','a:23:{s:12:\"_EventOrigin\";i:1729435339;s:16:\"tribe_events_cat\";i:1729435339;s:17:\"_vc_post_settings\";i:1729435339;s:14:\"slide_template\";i:1729435339;s:17:\"_EventShowMapLink\";i:1729435339;s:13:\"_EventShowMap\";i:1729435339;s:15:\"_EventStartDate\";i:1729435339;s:13:\"_EventEndDate\";i:1729435339;s:18:\"_EventStartDateUTC\";i:1729435339;s:16:\"_EventEndDateUTC\";i:1729435339;s:14:\"_EventDuration\";i:1729435339;s:20:\"_EventCurrencySymbol\";i:1729435339;s:22:\"_EventCurrencyPosition\";i:1729435339;s:10:\"_EventCost\";i:1729435339;s:9:\"_EventURL\";i:1729435339;s:14:\"_EventTimezone\";i:1729435339;s:18:\"_EventTimezoneAbbr\";i:1729435339;s:17:\"_wpb_vc_js_status\";i:1729435339;s:12:\"_dp_original\";i:1729435339;s:13:\"_EventVenueID\";i:1729435339;s:17:\"_EventOrganizerID\";i:1729435339;s:13:\"_thumbnail_id\";i:1729435339;s:12:\"_wp_old_slug\";i:1729435339;}'),(11705,2989,'_tribe_modified_fields','a:23:{s:12:\"_EventOrigin\";i:1729435339;s:16:\"tribe_events_cat\";i:1729435339;s:17:\"_vc_post_settings\";i:1729435339;s:14:\"slide_template\";i:1729435339;s:17:\"_EventShowMapLink\";i:1729435339;s:13:\"_EventShowMap\";i:1729435339;s:15:\"_EventStartDate\";i:1729435339;s:13:\"_EventEndDate\";i:1729435339;s:18:\"_EventStartDateUTC\";i:1729435339;s:16:\"_EventEndDateUTC\";i:1729435339;s:14:\"_EventDuration\";i:1729435339;s:20:\"_EventCurrencySymbol\";i:1729435339;s:22:\"_EventCurrencyPosition\";i:1729435339;s:10:\"_EventCost\";i:1729435339;s:9:\"_EventURL\";i:1729435339;s:14:\"_EventTimezone\";i:1729435339;s:18:\"_EventTimezoneAbbr\";i:1729435339;s:17:\"_wpb_vc_js_status\";i:1729435339;s:12:\"_dp_original\";i:1729435339;s:13:\"_EventVenueID\";i:1729435339;s:17:\"_EventOrganizerID\";i:1729435339;s:13:\"_thumbnail_id\";i:1729435339;s:12:\"_wp_old_slug\";i:1729435339;}'),(11706,2989,'_tribe_modified_fields','a:23:{s:12:\"_EventOrigin\";i:1729435339;s:16:\"tribe_events_cat\";i:1729435339;s:17:\"_vc_post_settings\";i:1729435339;s:14:\"slide_template\";i:1729435339;s:17:\"_EventShowMapLink\";i:1729435339;s:13:\"_EventShowMap\";i:1729435339;s:15:\"_EventStartDate\";i:1729435339;s:13:\"_EventEndDate\";i:1729435339;s:18:\"_EventStartDateUTC\";i:1729435339;s:16:\"_EventEndDateUTC\";i:1729435339;s:14:\"_EventDuration\";i:1729435339;s:20:\"_EventCurrencySymbol\";i:1729435339;s:22:\"_EventCurrencyPosition\";i:1729435339;s:10:\"_EventCost\";i:1729435339;s:9:\"_EventURL\";i:1729435339;s:14:\"_EventTimezone\";i:1729435339;s:18:\"_EventTimezoneAbbr\";i:1729435339;s:17:\"_wpb_vc_js_status\";i:1729435339;s:12:\"_dp_original\";i:1729435339;s:13:\"_EventVenueID\";i:1729435339;s:17:\"_EventOrganizerID\";i:1729435339;s:13:\"_thumbnail_id\";i:1729435339;s:12:\"_wp_old_slug\";i:1729435339;}'),(11707,2989,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11708,2989,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11709,2989,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11710,2989,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11711,2989,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11712,2989,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11713,2989,'_EventOrigin','events-calendar'),(11714,2989,'_EventOrigin','events-calendar'),(11715,2989,'_EventOrigin','events-calendar'),(11716,2989,'_EventOrigin','events-calendar'),(11717,2989,'_EventOrigin','events-calendar'),(11718,2989,'_EventOrigin','events-calendar'),(11719,2989,'slide_template','default'),(11720,2989,'_EventShowMapLink','1'),(11721,2989,'_EventShowMap','1'),(11722,2989,'_EventStartDate','2018-07-11 07:00:00'),(11723,2989,'_EventEndDate','2018-07-11 19:00:00'),(11724,2989,'_EventStartDateUTC','2018-07-11 07:00:00'),(11725,2989,'_EventEndDateUTC','2018-07-11 19:00:00'),(11726,2989,'_EventDuration','43200'),(11727,2989,'_EventCurrencySymbol',''),(11728,2989,'_EventCurrencyPosition','prefix'),(11729,2989,'_EventCost','0'),(11730,2989,'_EventURL','http://iacademy.mikado-themes.com'),(11731,2989,'_EventTimezone','UTC+0'),(11732,2989,'_EventTimezoneAbbr',''),(11733,2989,'_wpb_vc_js_status','true'),(11734,2989,'_dp_original','2781'),(11735,2989,'_EventVenueID','2999'),(11736,2989,'_EventOrganizerID','2998'),(11737,2989,'_thumbnail_id','3029'),(11738,2989,'_wp_old_slug','knowledge-is-power-2'),(11739,2992,'_EventOrigin','events-calendar'),(11740,2992,'_tribe_modified_fields','a:23:{s:12:\"_EventOrigin\";i:1729435339;s:16:\"tribe_events_cat\";i:1729435339;s:17:\"_vc_post_settings\";i:1729435339;s:14:\"slide_template\";i:1729435339;s:17:\"_EventShowMapLink\";i:1729435339;s:13:\"_EventShowMap\";i:1729435339;s:15:\"_EventStartDate\";i:1729435339;s:13:\"_EventEndDate\";i:1729435339;s:18:\"_EventStartDateUTC\";i:1729435339;s:16:\"_EventEndDateUTC\";i:1729435339;s:14:\"_EventDuration\";i:1729435339;s:20:\"_EventCurrencySymbol\";i:1729435339;s:22:\"_EventCurrencyPosition\";i:1729435339;s:10:\"_EventCost\";i:1729435339;s:9:\"_EventURL\";i:1729435339;s:14:\"_EventTimezone\";i:1729435339;s:18:\"_EventTimezoneAbbr\";i:1729435339;s:17:\"_wpb_vc_js_status\";i:1729435339;s:12:\"_dp_original\";i:1729435339;s:13:\"_EventVenueID\";i:1729435339;s:17:\"_EventOrganizerID\";i:1729435339;s:13:\"_thumbnail_id\";i:1729435339;s:12:\"_wp_old_slug\";i:1729435339;}'),(11741,2992,'_tribe_modified_fields','a:23:{s:12:\"_EventOrigin\";i:1729435339;s:16:\"tribe_events_cat\";i:1729435339;s:17:\"_vc_post_settings\";i:1729435339;s:14:\"slide_template\";i:1729435339;s:17:\"_EventShowMapLink\";i:1729435339;s:13:\"_EventShowMap\";i:1729435339;s:15:\"_EventStartDate\";i:1729435339;s:13:\"_EventEndDate\";i:1729435339;s:18:\"_EventStartDateUTC\";i:1729435339;s:16:\"_EventEndDateUTC\";i:1729435339;s:14:\"_EventDuration\";i:1729435339;s:20:\"_EventCurrencySymbol\";i:1729435339;s:22:\"_EventCurrencyPosition\";i:1729435339;s:10:\"_EventCost\";i:1729435339;s:9:\"_EventURL\";i:1729435339;s:14:\"_EventTimezone\";i:1729435339;s:18:\"_EventTimezoneAbbr\";i:1729435339;s:17:\"_wpb_vc_js_status\";i:1729435339;s:12:\"_dp_original\";i:1729435339;s:13:\"_EventVenueID\";i:1729435339;s:17:\"_EventOrganizerID\";i:1729435339;s:13:\"_thumbnail_id\";i:1729435339;s:12:\"_wp_old_slug\";i:1729435339;}'),(11742,2992,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11743,2992,'_EventOrigin','events-calendar'),(11744,2992,'_tribe_modified_fields','a:23:{s:12:\"_EventOrigin\";i:1729435339;s:16:\"tribe_events_cat\";i:1729435339;s:17:\"_vc_post_settings\";i:1729435339;s:14:\"slide_template\";i:1729435339;s:17:\"_EventShowMapLink\";i:1729435339;s:13:\"_EventShowMap\";i:1729435339;s:15:\"_EventStartDate\";i:1729435339;s:13:\"_EventEndDate\";i:1729435339;s:18:\"_EventStartDateUTC\";i:1729435339;s:16:\"_EventEndDateUTC\";i:1729435339;s:14:\"_EventDuration\";i:1729435339;s:20:\"_EventCurrencySymbol\";i:1729435339;s:22:\"_EventCurrencyPosition\";i:1729435339;s:10:\"_EventCost\";i:1729435339;s:9:\"_EventURL\";i:1729435339;s:14:\"_EventTimezone\";i:1729435339;s:18:\"_EventTimezoneAbbr\";i:1729435339;s:17:\"_wpb_vc_js_status\";i:1729435339;s:12:\"_dp_original\";i:1729435339;s:13:\"_EventVenueID\";i:1729435339;s:17:\"_EventOrganizerID\";i:1729435339;s:13:\"_thumbnail_id\";i:1729435339;s:12:\"_wp_old_slug\";i:1729435339;}'),(11745,2992,'_tribe_modified_fields','a:23:{s:12:\"_EventOrigin\";i:1729435339;s:16:\"tribe_events_cat\";i:1729435339;s:17:\"_vc_post_settings\";i:1729435339;s:14:\"slide_template\";i:1729435339;s:17:\"_EventShowMapLink\";i:1729435339;s:13:\"_EventShowMap\";i:1729435339;s:15:\"_EventStartDate\";i:1729435339;s:13:\"_EventEndDate\";i:1729435339;s:18:\"_EventStartDateUTC\";i:1729435339;s:16:\"_EventEndDateUTC\";i:1729435339;s:14:\"_EventDuration\";i:1729435339;s:20:\"_EventCurrencySymbol\";i:1729435339;s:22:\"_EventCurrencyPosition\";i:1729435339;s:10:\"_EventCost\";i:1729435339;s:9:\"_EventURL\";i:1729435339;s:14:\"_EventTimezone\";i:1729435339;s:18:\"_EventTimezoneAbbr\";i:1729435339;s:17:\"_wpb_vc_js_status\";i:1729435339;s:12:\"_dp_original\";i:1729435339;s:13:\"_EventVenueID\";i:1729435339;s:17:\"_EventOrganizerID\";i:1729435339;s:13:\"_thumbnail_id\";i:1729435339;s:12:\"_wp_old_slug\";i:1729435339;}'),(11746,2992,'_tribe_modified_fields','a:23:{s:12:\"_EventOrigin\";i:1729435339;s:16:\"tribe_events_cat\";i:1729435339;s:17:\"_vc_post_settings\";i:1729435339;s:14:\"slide_template\";i:1729435339;s:17:\"_EventShowMapLink\";i:1729435339;s:13:\"_EventShowMap\";i:1729435339;s:15:\"_EventStartDate\";i:1729435339;s:13:\"_EventEndDate\";i:1729435339;s:18:\"_EventStartDateUTC\";i:1729435339;s:16:\"_EventEndDateUTC\";i:1729435339;s:14:\"_EventDuration\";i:1729435339;s:20:\"_EventCurrencySymbol\";i:1729435339;s:22:\"_EventCurrencyPosition\";i:1729435339;s:10:\"_EventCost\";i:1729435339;s:9:\"_EventURL\";i:1729435339;s:14:\"_EventTimezone\";i:1729435339;s:18:\"_EventTimezoneAbbr\";i:1729435339;s:17:\"_wpb_vc_js_status\";i:1729435339;s:12:\"_dp_original\";i:1729435339;s:13:\"_EventVenueID\";i:1729435339;s:17:\"_EventOrganizerID\";i:1729435339;s:13:\"_thumbnail_id\";i:1729435339;s:12:\"_wp_old_slug\";i:1729435339;}'),(11747,2992,'_tribe_modified_fields','a:23:{s:12:\"_EventOrigin\";i:1729435339;s:16:\"tribe_events_cat\";i:1729435339;s:17:\"_vc_post_settings\";i:1729435339;s:14:\"slide_template\";i:1729435339;s:17:\"_EventShowMapLink\";i:1729435339;s:13:\"_EventShowMap\";i:1729435339;s:15:\"_EventStartDate\";i:1729435339;s:13:\"_EventEndDate\";i:1729435339;s:18:\"_EventStartDateUTC\";i:1729435339;s:16:\"_EventEndDateUTC\";i:1729435339;s:14:\"_EventDuration\";i:1729435339;s:20:\"_EventCurrencySymbol\";i:1729435339;s:22:\"_EventCurrencyPosition\";i:1729435339;s:10:\"_EventCost\";i:1729435339;s:9:\"_EventURL\";i:1729435339;s:14:\"_EventTimezone\";i:1729435339;s:18:\"_EventTimezoneAbbr\";i:1729435339;s:17:\"_wpb_vc_js_status\";i:1729435339;s:12:\"_dp_original\";i:1729435339;s:13:\"_EventVenueID\";i:1729435339;s:17:\"_EventOrganizerID\";i:1729435339;s:13:\"_thumbnail_id\";i:1729435339;s:12:\"_wp_old_slug\";i:1729435339;}'),(11748,2992,'_tribe_modified_fields','a:23:{s:12:\"_EventOrigin\";i:1729435339;s:16:\"tribe_events_cat\";i:1729435339;s:17:\"_vc_post_settings\";i:1729435339;s:14:\"slide_template\";i:1729435339;s:17:\"_EventShowMapLink\";i:1729435339;s:13:\"_EventShowMap\";i:1729435339;s:15:\"_EventStartDate\";i:1729435339;s:13:\"_EventEndDate\";i:1729435339;s:18:\"_EventStartDateUTC\";i:1729435339;s:16:\"_EventEndDateUTC\";i:1729435339;s:14:\"_EventDuration\";i:1729435339;s:20:\"_EventCurrencySymbol\";i:1729435339;s:22:\"_EventCurrencyPosition\";i:1729435339;s:10:\"_EventCost\";i:1729435339;s:9:\"_EventURL\";i:1729435339;s:14:\"_EventTimezone\";i:1729435339;s:18:\"_EventTimezoneAbbr\";i:1729435339;s:17:\"_wpb_vc_js_status\";i:1729435339;s:12:\"_dp_original\";i:1729435339;s:13:\"_EventVenueID\";i:1729435339;s:17:\"_EventOrganizerID\";i:1729435339;s:13:\"_thumbnail_id\";i:1729435339;s:12:\"_wp_old_slug\";i:1729435339;}'),(11749,2992,'_tribe_modified_fields','a:23:{s:12:\"_EventOrigin\";i:1729435339;s:16:\"tribe_events_cat\";i:1729435339;s:17:\"_vc_post_settings\";i:1729435339;s:14:\"slide_template\";i:1729435339;s:17:\"_EventShowMapLink\";i:1729435339;s:13:\"_EventShowMap\";i:1729435339;s:15:\"_EventStartDate\";i:1729435339;s:13:\"_EventEndDate\";i:1729435339;s:18:\"_EventStartDateUTC\";i:1729435339;s:16:\"_EventEndDateUTC\";i:1729435339;s:14:\"_EventDuration\";i:1729435339;s:20:\"_EventCurrencySymbol\";i:1729435339;s:22:\"_EventCurrencyPosition\";i:1729435339;s:10:\"_EventCost\";i:1729435339;s:9:\"_EventURL\";i:1729435339;s:14:\"_EventTimezone\";i:1729435339;s:18:\"_EventTimezoneAbbr\";i:1729435339;s:17:\"_wpb_vc_js_status\";i:1729435339;s:12:\"_dp_original\";i:1729435339;s:13:\"_EventVenueID\";i:1729435339;s:17:\"_EventOrganizerID\";i:1729435339;s:13:\"_thumbnail_id\";i:1729435339;s:12:\"_wp_old_slug\";i:1729435339;}'),(11750,2992,'_tribe_modified_fields','a:23:{s:12:\"_EventOrigin\";i:1729435339;s:16:\"tribe_events_cat\";i:1729435339;s:17:\"_vc_post_settings\";i:1729435339;s:14:\"slide_template\";i:1729435339;s:17:\"_EventShowMapLink\";i:1729435339;s:13:\"_EventShowMap\";i:1729435339;s:15:\"_EventStartDate\";i:1729435339;s:13:\"_EventEndDate\";i:1729435339;s:18:\"_EventStartDateUTC\";i:1729435339;s:16:\"_EventEndDateUTC\";i:1729435339;s:14:\"_EventDuration\";i:1729435339;s:20:\"_EventCurrencySymbol\";i:1729435339;s:22:\"_EventCurrencyPosition\";i:1729435339;s:10:\"_EventCost\";i:1729435339;s:9:\"_EventURL\";i:1729435339;s:14:\"_EventTimezone\";i:1729435339;s:18:\"_EventTimezoneAbbr\";i:1729435339;s:17:\"_wpb_vc_js_status\";i:1729435339;s:12:\"_dp_original\";i:1729435339;s:13:\"_EventVenueID\";i:1729435339;s:17:\"_EventOrganizerID\";i:1729435339;s:13:\"_thumbnail_id\";i:1729435339;s:12:\"_wp_old_slug\";i:1729435339;}'),(11751,2992,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11752,2992,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11753,2992,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11754,2992,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11755,2992,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11756,2992,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11757,2992,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11758,2992,'_EventOrigin','events-calendar'),(11759,2992,'_EventOrigin','events-calendar'),(11760,2992,'_EventOrigin','events-calendar'),(11761,2992,'_EventOrigin','events-calendar'),(11762,2992,'_EventOrigin','events-calendar'),(11763,2992,'_EventOrigin','events-calendar'),(11764,2992,'_EventOrigin','events-calendar'),(11765,2992,'slide_template','default'),(11766,2992,'_EventShowMapLink','1'),(11767,2992,'_EventShowMap','1'),(11768,2992,'_EventStartDate','2018-07-19 10:00:00'),(11769,2992,'_EventEndDate','2018-07-20 20:00:00'),(11770,2992,'_EventStartDateUTC','2018-07-19 10:00:00'),(11771,2992,'_EventEndDateUTC','2018-07-20 20:00:00'),(11772,2992,'_EventDuration','122400'),(11773,2992,'_EventCurrencySymbol',''),(11774,2992,'_EventCurrencyPosition','prefix'),(11775,2992,'_EventCost','0'),(11776,2992,'_EventURL','http://iacademy.mikado-themes.com'),(11777,2992,'_EventTimezone','UTC+0'),(11778,2992,'_EventTimezoneAbbr',''),(11779,2992,'_wpb_vc_js_status','true'),(11780,2992,'_dp_original','2980'),(11781,2992,'_EventVenueID','2999'),(11782,2992,'_EventOrganizerID','2998'),(11783,2992,'_thumbnail_id','3025'),(11784,2992,'_wp_old_slug','advancing-knowledge-2'),(11785,2994,'_EventOrigin','events-calendar'),(11786,2994,'_tribe_modified_fields','a:22:{s:12:\"_EventOrigin\";i:1729435339;s:16:\"tribe_events_cat\";i:1729435339;s:17:\"_vc_post_settings\";i:1729435339;s:14:\"slide_template\";i:1729435339;s:17:\"_EventShowMapLink\";i:1729435339;s:13:\"_EventShowMap\";i:1729435339;s:15:\"_EventStartDate\";i:1729435339;s:13:\"_EventEndDate\";i:1729435339;s:18:\"_EventStartDateUTC\";i:1729435339;s:16:\"_EventEndDateUTC\";i:1729435339;s:14:\"_EventDuration\";i:1729435339;s:20:\"_EventCurrencySymbol\";i:1729435339;s:22:\"_EventCurrencyPosition\";i:1729435339;s:10:\"_EventCost\";i:1729435339;s:9:\"_EventURL\";i:1729435339;s:14:\"_EventTimezone\";i:1729435339;s:18:\"_EventTimezoneAbbr\";i:1729435339;s:17:\"_wpb_vc_js_status\";i:1729435339;s:12:\"_dp_original\";i:1729435339;s:13:\"_EventVenueID\";i:1729435339;s:17:\"_EventOrganizerID\";i:1729435339;s:13:\"_thumbnail_id\";i:1729435339;}'),(11787,2994,'_tribe_modified_fields','a:22:{s:12:\"_EventOrigin\";i:1729435339;s:16:\"tribe_events_cat\";i:1729435339;s:17:\"_vc_post_settings\";i:1729435339;s:14:\"slide_template\";i:1729435339;s:17:\"_EventShowMapLink\";i:1729435339;s:13:\"_EventShowMap\";i:1729435339;s:15:\"_EventStartDate\";i:1729435339;s:13:\"_EventEndDate\";i:1729435339;s:18:\"_EventStartDateUTC\";i:1729435339;s:16:\"_EventEndDateUTC\";i:1729435339;s:14:\"_EventDuration\";i:1729435339;s:20:\"_EventCurrencySymbol\";i:1729435339;s:22:\"_EventCurrencyPosition\";i:1729435339;s:10:\"_EventCost\";i:1729435339;s:9:\"_EventURL\";i:1729435339;s:14:\"_EventTimezone\";i:1729435339;s:18:\"_EventTimezoneAbbr\";i:1729435339;s:17:\"_wpb_vc_js_status\";i:1729435339;s:12:\"_dp_original\";i:1729435339;s:13:\"_EventVenueID\";i:1729435339;s:17:\"_EventOrganizerID\";i:1729435339;s:13:\"_thumbnail_id\";i:1729435339;}'),(11788,2994,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11789,2994,'_EventOrigin','events-calendar'),(11790,2994,'_tribe_modified_fields','a:22:{s:12:\"_EventOrigin\";i:1729435339;s:16:\"tribe_events_cat\";i:1729435339;s:17:\"_vc_post_settings\";i:1729435339;s:14:\"slide_template\";i:1729435339;s:17:\"_EventShowMapLink\";i:1729435339;s:13:\"_EventShowMap\";i:1729435339;s:15:\"_EventStartDate\";i:1729435339;s:13:\"_EventEndDate\";i:1729435339;s:18:\"_EventStartDateUTC\";i:1729435339;s:16:\"_EventEndDateUTC\";i:1729435339;s:14:\"_EventDuration\";i:1729435339;s:20:\"_EventCurrencySymbol\";i:1729435339;s:22:\"_EventCurrencyPosition\";i:1729435339;s:10:\"_EventCost\";i:1729435339;s:9:\"_EventURL\";i:1729435339;s:14:\"_EventTimezone\";i:1729435339;s:18:\"_EventTimezoneAbbr\";i:1729435339;s:17:\"_wpb_vc_js_status\";i:1729435339;s:12:\"_dp_original\";i:1729435339;s:13:\"_EventVenueID\";i:1729435339;s:17:\"_EventOrganizerID\";i:1729435339;s:13:\"_thumbnail_id\";i:1729435339;}'),(11791,2994,'_tribe_modified_fields','a:22:{s:12:\"_EventOrigin\";i:1729435339;s:16:\"tribe_events_cat\";i:1729435339;s:17:\"_vc_post_settings\";i:1729435339;s:14:\"slide_template\";i:1729435339;s:17:\"_EventShowMapLink\";i:1729435339;s:13:\"_EventShowMap\";i:1729435339;s:15:\"_EventStartDate\";i:1729435339;s:13:\"_EventEndDate\";i:1729435339;s:18:\"_EventStartDateUTC\";i:1729435339;s:16:\"_EventEndDateUTC\";i:1729435339;s:14:\"_EventDuration\";i:1729435339;s:20:\"_EventCurrencySymbol\";i:1729435339;s:22:\"_EventCurrencyPosition\";i:1729435339;s:10:\"_EventCost\";i:1729435339;s:9:\"_EventURL\";i:1729435339;s:14:\"_EventTimezone\";i:1729435339;s:18:\"_EventTimezoneAbbr\";i:1729435339;s:17:\"_wpb_vc_js_status\";i:1729435339;s:12:\"_dp_original\";i:1729435339;s:13:\"_EventVenueID\";i:1729435339;s:17:\"_EventOrganizerID\";i:1729435339;s:13:\"_thumbnail_id\";i:1729435339;}'),(11792,2994,'_tribe_modified_fields','a:22:{s:12:\"_EventOrigin\";i:1729435339;s:16:\"tribe_events_cat\";i:1729435339;s:17:\"_vc_post_settings\";i:1729435339;s:14:\"slide_template\";i:1729435339;s:17:\"_EventShowMapLink\";i:1729435339;s:13:\"_EventShowMap\";i:1729435339;s:15:\"_EventStartDate\";i:1729435339;s:13:\"_EventEndDate\";i:1729435339;s:18:\"_EventStartDateUTC\";i:1729435339;s:16:\"_EventEndDateUTC\";i:1729435339;s:14:\"_EventDuration\";i:1729435339;s:20:\"_EventCurrencySymbol\";i:1729435339;s:22:\"_EventCurrencyPosition\";i:1729435339;s:10:\"_EventCost\";i:1729435339;s:9:\"_EventURL\";i:1729435339;s:14:\"_EventTimezone\";i:1729435339;s:18:\"_EventTimezoneAbbr\";i:1729435339;s:17:\"_wpb_vc_js_status\";i:1729435339;s:12:\"_dp_original\";i:1729435339;s:13:\"_EventVenueID\";i:1729435339;s:17:\"_EventOrganizerID\";i:1729435339;s:13:\"_thumbnail_id\";i:1729435339;}'),(11793,2994,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11794,2994,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11795,2994,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11796,2994,'_EventOrigin','events-calendar'),(11797,2994,'_EventOrigin','events-calendar'),(11798,2994,'_EventOrigin','events-calendar'),(11799,2994,'slide_template','default'),(11800,2994,'_EventShowMapLink','1'),(11801,2994,'_EventShowMap','1'),(11802,2994,'_EventStartDate','2018-07-28 08:00:00'),(11803,2994,'_EventEndDate','2018-07-30 21:30:00'),(11804,2994,'_EventStartDateUTC','2018-07-28 08:00:00'),(11805,2994,'_EventEndDateUTC','2018-07-30 21:30:00'),(11806,2994,'_EventDuration','221400'),(11807,2994,'_EventCurrencySymbol','$'),(11808,2994,'_EventCurrencyPosition','prefix'),(11809,2994,'_EventCost','0'),(11810,2994,'_EventURL','http://iacademy.mikado-themes.com'),(11811,2994,'_EventTimezone','UTC+0'),(11812,2994,'_EventTimezoneAbbr',''),(11813,2994,'_wpb_vc_js_status','true'),(11814,2994,'_dp_original','1890'),(11815,2994,'_EventVenueID','2997'),(11816,2994,'_EventOrganizerID','2996'),(11817,2994,'_thumbnail_id','3023'),(11834,3277,'_bbp_forum_id','3269'),(11835,3277,'_bbp_topic_id','3277'),(11836,3277,'_bbp_author_ip','217.24.25.23'),(11837,3277,'_bbp_last_reply_id','3282'),(11838,3277,'_bbp_last_active_id','3282'),(11839,3277,'_bbp_last_active_time','2017-06-14 11:01:36'),(11840,3277,'_bbp_reply_count','1'),(11841,3277,'_bbp_reply_count_hidden','0'),(11842,3277,'_bbp_voice_count','2'),(11843,3278,'_bbp_forum_id','3267'),(11844,3278,'_bbp_topic_id','3278'),(11845,3278,'_bbp_author_ip','217.24.25.23'),(11846,3278,'_bbp_last_reply_id','0'),(11847,3278,'_bbp_last_active_id','3278'),(11848,3278,'_bbp_last_active_time','2017-06-14 10:52:43'),(11849,3278,'_bbp_reply_count','0'),(11850,3278,'_bbp_reply_count_hidden','0'),(11851,3278,'_bbp_voice_count','1'),(11852,3283,'_bbp_forum_id','3269'),(11853,3283,'_bbp_topic_id','3283'),(11854,3283,'_bbp_author_ip','217.24.25.23'),(11855,3283,'_bbp_last_reply_id','3286'),(11856,3283,'_bbp_last_active_id','3286'),(11857,3283,'_bbp_last_active_time','2017-06-14 11:05:33'),(11858,3283,'_bbp_reply_count','1'),(11859,3283,'_bbp_reply_count_hidden','0'),(11860,3283,'_bbp_voice_count','2'),(11861,3284,'_bbp_forum_id','3267'),(11862,3284,'_bbp_topic_id','3284'),(11863,3284,'_bbp_author_ip','217.24.25.23'),(11864,3284,'_bbp_last_reply_id','3285'),(11865,3284,'_bbp_last_active_id','3285'),(11866,3284,'_bbp_last_active_time','2017-06-14 11:05:19'),(11867,3284,'_bbp_reply_count','1'),(11868,3284,'_bbp_reply_count_hidden','0'),(11869,3284,'_bbp_voice_count','2'),(11870,4129,'_form','<label> Name* </label>\n    [text* your-name]\n\n<label> Email* </label>\n    [email* your-email] \n\n<label> Phone </label>\n    [text your-subject] \n\n[submit \"APPLY TODAY\"]'),(11871,4129,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:25:\"iAcademy \"[your-subject]\"\";s:6:\"sender\";s:50:\"[your-name] <wordpress@iacademy.mikado-themes.com>\";s:9:\"recipient\";s:25:\"support@mikado-themes.com\";s:4:\"body\";s:180:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on iAcademy (http://iacademy.mikado-themes.com)\";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;}'),(11872,4129,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:25:\"iAcademy \"[your-subject]\"\";s:6:\"sender\";s:47:\"iAcademy <wordpress@iacademy.mikado-themes.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:122:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on iAcademy (http://iacademy.mikado-themes.com)\";s:18:\"additional_headers\";s:35:\"Reply-To: support@mikado-themes.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(11873,4129,'_messages','a:23:{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:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";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:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(11874,4129,'_additional_settings',''),(11875,4129,'_locale','en_US'),(11876,4129,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11877,170,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11878,170,'_form','<div class=\"mkdf-cf7-contact-wrapper mkdf-button-small\">\n<div class=\"mkdf-cf7-title\">GET IN TOUCH</div>\n<div class=\"mkdf-cf7-inputs clearfix\">\n<div class=\"mkdf-grid-col-6\"><label>Name<span style=\"color: #ffd740;\">*</span></label>[text* your-name]</div>\n<div class=\"mkdf-grid-col-6\"><label>Email<span style=\"color: #ffd740;\">*</span></label>[text* your-email]</div>\n<div class=\"mkdf-grid-col-12\"><label>Website</label>[text* your-website]</div>\n<div class=\"mkdf-grid-col-12\"><label>Message<span style=\"color: #ffd740;\">*</span></label>[textarea* your-message 40x4 ]\n[submit \"Submit\"]\n</div>\n\n</div>\n</div>'),(11879,170,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:25:\"iAcademy \"[your-subject]\"\";s:6:\"sender\";s:50:\"[your-name] <wordpress@iacademy.mikado-themes.com>\";s:9:\"recipient\";s:25:\"support@mikado-themes.com\";s:4:\"body\";s:180:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on iAcademy (http://iacademy.mikado-themes.com)\";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;}'),(11880,170,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:25:\"iAcademy \"[your-subject]\"\";s:6:\"sender\";s:47:\"iAcademy <wordpress@iacademy.mikado-themes.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:122:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on iAcademy (http://iacademy.mikado-themes.com)\";s:18:\"additional_headers\";s:35:\"Reply-To: support@mikado-themes.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(11881,170,'_messages','a:23:{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:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";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:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(11882,170,'_additional_settings',''),(11883,170,'_locale','en_US'),(11884,170,'_config_errors','a:1:{s:23:\"mail.additional_headers\";a:1:{i:0;a:2:{s:4:\"code\";i:102;s:4:\"args\";a:3:{s:7:\"message\";s:51:\"Invalid mailbox syntax is used in the %name% field.\";s:6:\"params\";a:1:{s:4:\"name\";s:8:\"Reply-To\";}s:4:\"link\";s:68:\"https://contactform7.com/configuration-errors/invalid-mailbox-syntax\";}}}}'),(11885,171,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11886,171,'_form','<div class=\"mkdf-cf7-contact-wrapper mkdf-smaller-padding\"> \n<div class=\"mkdf-cf7-title\">FILL THIS FORM TO APPLY</div>\n<div class=\"mkdf-cf7-inputs clearfix\">\n<div class=\"mkdf-grid-col-12\"><label>Name<span style=\"color: #ffd740;\">*</span></label>[text* your-name]</div>\n<div class=\"mkdf-grid-col-12\"><label>Email<span style=\"color: #ffd740;\">*</span></label>[text* your-email]</div>\n<div class=\"mkdf-grid-col-12\"><label>Contact<span style=\"color: #ffd740;\">*</span></label>[text* your-website]</div>\n<div class=\"mkdf-grid-col-12\"><label>Comment<span style=\"color: #ffd740;\">*</span></label>[textarea* your-message 40x2]\n[submit \"Submit\"]\n</div>\n\n</div>\n</div>'),(11887,171,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:25:\"iAcademy \"[your-subject]\"\";s:6:\"sender\";s:50:\"[your-name] <wordpress@iacademy.mikado-themes.com>\";s:9:\"recipient\";s:25:\"support@mikado-themes.com\";s:4:\"body\";s:180:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on iAcademy (http://iacademy.mikado-themes.com)\";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;}'),(11888,171,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:25:\"iAcademy \"[your-subject]\"\";s:6:\"sender\";s:47:\"iAcademy <wordpress@iacademy.mikado-themes.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:122:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on iAcademy (http://iacademy.mikado-themes.com)\";s:18:\"additional_headers\";s:35:\"Reply-To: support@mikado-themes.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(11889,171,'_messages','a:23:{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:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";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:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(11890,171,'_additional_settings',''),(11891,171,'_locale','en_US'),(11892,171,'_config_errors','a:1:{s:23:\"mail.additional_headers\";a:1:{i:0;a:2:{s:4:\"code\";i:102;s:4:\"args\";a:3:{s:7:\"message\";s:51:\"Invalid mailbox syntax is used in the %name% field.\";s:6:\"params\";a:1:{s:4:\"name\";s:8:\"Reply-To\";}s:4:\"link\";s:68:\"https://contactform7.com/configuration-errors/invalid-mailbox-syntax\";}}}}'),(11893,1841,'_VenueOrigin','events-calendar'),(11894,1841,'_tribe_modified_fields','a:17:{s:12:\"_VenueOrigin\";i:1729435339;s:17:\"_vc_post_settings\";i:1729435339;s:17:\"_EventShowMapLink\";i:1729435339;s:13:\"_EventShowMap\";i:1729435339;s:13:\"_VenueAddress\";i:1729435339;s:10:\"_VenueCity\";i:1729435339;s:13:\"_VenueCountry\";i:1729435339;s:14:\"_VenueProvince\";i:1729435339;s:11:\"_VenueState\";i:1729435339;s:9:\"_VenueZip\";i:1729435339;s:11:\"_VenuePhone\";i:1729435339;s:9:\"_VenueURL\";i:1729435339;s:13:\"_VenueShowMap\";i:1729435339;s:17:\"_VenueShowMapLink\";i:1729435339;s:19:\"_VenueStateProvince\";i:1729435339;s:14:\"slide_template\";i:1729435339;s:12:\"_wp_old_slug\";i:1729435339;}'),(11895,1841,'_tribe_modified_fields','a:17:{s:12:\"_VenueOrigin\";i:1729435339;s:17:\"_vc_post_settings\";i:1729435339;s:17:\"_EventShowMapLink\";i:1729435339;s:13:\"_EventShowMap\";i:1729435339;s:13:\"_VenueAddress\";i:1729435339;s:10:\"_VenueCity\";i:1729435339;s:13:\"_VenueCountry\";i:1729435339;s:14:\"_VenueProvince\";i:1729435339;s:11:\"_VenueState\";i:1729435339;s:9:\"_VenueZip\";i:1729435339;s:11:\"_VenuePhone\";i:1729435339;s:9:\"_VenueURL\";i:1729435339;s:13:\"_VenueShowMap\";i:1729435339;s:17:\"_VenueShowMapLink\";i:1729435339;s:19:\"_VenueStateProvince\";i:1729435339;s:14:\"slide_template\";i:1729435339;s:12:\"_wp_old_slug\";i:1729435339;}'),(11896,1841,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11897,1841,'_VenueOrigin','events-calendar'),(11898,1841,'_EventShowMapLink',''),(11899,1841,'_EventShowMap',''),(11900,1841,'_VenueAddress','437 S Olive Street'),(11901,1841,'_VenueCity',''),(11902,1841,'_VenueCountry',''),(11903,1841,'_VenueProvince',''),(11904,1841,'_VenueState',''),(11905,1841,'_VenueZip',''),(11906,1841,'_VenuePhone',''),(11907,1841,'_VenueURL','http://iacademy.mikado-themes.com'),(11908,1841,'_VenueShowMap','true'),(11909,1841,'_VenueShowMapLink','true'),(11910,1841,'_VenueStateProvince',''),(11911,1841,'slide_template','default'),(11912,1841,'_wp_old_slug','harvard-education'),(11913,2102,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11914,2102,'_form','<div class=\"mkdf-cf7-newsletter\">\n[email email-402 placeholder \"Enter your email\"]\n[submit \"&#xe876;\"]\n</div>'),(11915,2102,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:25:\"iAcademy \"[your-subject]\"\";s:6:\"sender\";s:50:\"[your-name] <wordpress@iacademy.mikado-themes.com>\";s:9:\"recipient\";s:25:\"support@mikado-themes.com\";s:4:\"body\";s:180:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on iAcademy (http://iacademy.mikado-themes.com)\";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;}'),(11916,2102,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:25:\"iAcademy \"[your-subject]\"\";s:6:\"sender\";s:47:\"iAcademy <wordpress@iacademy.mikado-themes.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:122:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on iAcademy (http://iacademy.mikado-themes.com)\";s:18:\"additional_headers\";s:35:\"Reply-To: support@mikado-themes.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(11917,2102,'_messages','a:23:{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:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";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:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(11918,2102,'_additional_settings',''),(11919,2102,'_locale','en_US'),(11920,2102,'_config_errors','a:1:{s:23:\"mail.additional_headers\";a:1:{i:0;a:2:{s:4:\"code\";i:102;s:4:\"args\";a:3:{s:7:\"message\";s:51:\"Invalid mailbox syntax is used in the %name% field.\";s:6:\"params\";a:1:{s:4:\"name\";s:8:\"Reply-To\";}s:4:\"link\";s:68:\"https://contactform7.com/configuration-errors/invalid-mailbox-syntax\";}}}}'),(11921,2796,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11922,2796,'_form','<div class=\"mkdf-cf7-coming-soon\">\n<div class=\"mkdf-cf7-input\">[text text-842 placeholder \"Name\"]</div>\n<div class=\"mkdf-cf7-input\">[email email-659 placeholder \"Email\"]</div>\n<div class=\"mkdf-cf7-submit\">[submit \"Submit\"]</div>\n</div>'),(11923,2796,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:25:\"iAcademy \"[your-subject]\"\";s:6:\"sender\";s:50:\"[your-name] <wordpress@iacademy.mikado-themes.com>\";s:9:\"recipient\";s:25:\"support@mikado-themes.com\";s:4:\"body\";s:180:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on iAcademy (http://iacademy.mikado-themes.com)\";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;}'),(11924,2796,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:25:\"iAcademy \"[your-subject]\"\";s:6:\"sender\";s:47:\"iAcademy <wordpress@iacademy.mikado-themes.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:122:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on iAcademy (http://iacademy.mikado-themes.com)\";s:18:\"additional_headers\";s:35:\"Reply-To: support@mikado-themes.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(11925,2796,'_messages','a:23:{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:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";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:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(11926,2796,'_additional_settings',''),(11927,2796,'_locale','en_US'),(11928,2796,'_config_errors','a:1:{s:23:\"mail.additional_headers\";a:1:{i:0;a:2:{s:4:\"code\";i:102;s:4:\"args\";a:3:{s:7:\"message\";s:51:\"Invalid mailbox syntax is used in the %name% field.\";s:6:\"params\";a:1:{s:4:\"name\";s:8:\"Reply-To\";}s:4:\"link\";s:68:\"https://contactform7.com/configuration-errors/invalid-mailbox-syntax\";}}}}'),(11929,2996,'_OrganizerOrigin','events-calendar'),(11930,2996,'_tribe_modified_fields','a:8:{s:16:\"_OrganizerOrigin\";i:1729435339;s:17:\"_vc_post_settings\";i:1729435339;s:21:\"_OrganizerOrganizerID\";i:1729435339;s:15:\"_OrganizerPhone\";i:1729435339;s:17:\"_OrganizerWebsite\";i:1729435339;s:15:\"_OrganizerEmail\";i:1729435339;s:14:\"slide_template\";i:1729435339;s:12:\"_dp_original\";i:1729435339;}'),(11931,2996,'_tribe_modified_fields','a:8:{s:16:\"_OrganizerOrigin\";i:1729435339;s:17:\"_vc_post_settings\";i:1729435339;s:21:\"_OrganizerOrganizerID\";i:1729435339;s:15:\"_OrganizerPhone\";i:1729435339;s:17:\"_OrganizerWebsite\";i:1729435339;s:15:\"_OrganizerEmail\";i:1729435339;s:14:\"slide_template\";i:1729435339;s:12:\"_dp_original\";i:1729435339;}'),(11932,2996,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11933,2996,'_OrganizerOrigin','events-calendar'),(11934,2996,'_tribe_modified_fields','a:8:{s:16:\"_OrganizerOrigin\";i:1729435339;s:17:\"_vc_post_settings\";i:1729435339;s:21:\"_OrganizerOrganizerID\";i:1729435339;s:15:\"_OrganizerPhone\";i:1729435339;s:17:\"_OrganizerWebsite\";i:1729435339;s:15:\"_OrganizerEmail\";i:1729435339;s:14:\"slide_template\";i:1729435339;s:12:\"_dp_original\";i:1729435339;}'),(11935,2996,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11936,2996,'_OrganizerOrigin','events-calendar'),(11937,2996,'_OrganizerOrganizerID','0'),(11938,2996,'_OrganizerPhone','2-688-124-44228'),(11939,2996,'_OrganizerWebsite','http://iacademy.mikado-themes.com/'),(11940,2996,'_OrganizerEmail','info@example.com '),(11941,2996,'slide_template','default'),(11942,2996,'_dp_original','1842'),(11943,2997,'_VenueOrigin','events-calendar'),(11944,2997,'_tribe_modified_fields','a:17:{s:12:\"_VenueOrigin\";i:1729435339;s:17:\"_vc_post_settings\";i:1729435339;s:17:\"_EventShowMapLink\";i:1729435339;s:13:\"_EventShowMap\";i:1729435339;s:13:\"_VenueAddress\";i:1729435339;s:10:\"_VenueCity\";i:1729435339;s:13:\"_VenueCountry\";i:1729435339;s:14:\"_VenueProvince\";i:1729435339;s:11:\"_VenueState\";i:1729435339;s:9:\"_VenueZip\";i:1729435339;s:11:\"_VenuePhone\";i:1729435339;s:9:\"_VenueURL\";i:1729435339;s:13:\"_VenueShowMap\";i:1729435339;s:17:\"_VenueShowMapLink\";i:1729435339;s:19:\"_VenueStateProvince\";i:1729435339;s:14:\"slide_template\";i:1729435339;s:12:\"_dp_original\";i:1729435339;}'),(11945,2997,'_tribe_modified_fields','a:17:{s:12:\"_VenueOrigin\";i:1729435339;s:17:\"_vc_post_settings\";i:1729435339;s:17:\"_EventShowMapLink\";i:1729435339;s:13:\"_EventShowMap\";i:1729435339;s:13:\"_VenueAddress\";i:1729435339;s:10:\"_VenueCity\";i:1729435339;s:13:\"_VenueCountry\";i:1729435339;s:14:\"_VenueProvince\";i:1729435339;s:11:\"_VenueState\";i:1729435339;s:9:\"_VenueZip\";i:1729435339;s:11:\"_VenuePhone\";i:1729435339;s:9:\"_VenueURL\";i:1729435339;s:13:\"_VenueShowMap\";i:1729435339;s:17:\"_VenueShowMapLink\";i:1729435339;s:19:\"_VenueStateProvince\";i:1729435339;s:14:\"slide_template\";i:1729435339;s:12:\"_dp_original\";i:1729435339;}'),(11946,2997,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11947,2997,'_VenueOrigin','events-calendar'),(11948,2997,'_tribe_modified_fields','a:17:{s:12:\"_VenueOrigin\";i:1729435339;s:17:\"_vc_post_settings\";i:1729435339;s:17:\"_EventShowMapLink\";i:1729435339;s:13:\"_EventShowMap\";i:1729435339;s:13:\"_VenueAddress\";i:1729435339;s:10:\"_VenueCity\";i:1729435339;s:13:\"_VenueCountry\";i:1729435339;s:14:\"_VenueProvince\";i:1729435339;s:11:\"_VenueState\";i:1729435339;s:9:\"_VenueZip\";i:1729435339;s:11:\"_VenuePhone\";i:1729435339;s:9:\"_VenueURL\";i:1729435339;s:13:\"_VenueShowMap\";i:1729435339;s:17:\"_VenueShowMapLink\";i:1729435339;s:19:\"_VenueStateProvince\";i:1729435339;s:14:\"slide_template\";i:1729435339;s:12:\"_dp_original\";i:1729435339;}'),(11949,2997,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11950,2997,'_VenueOrigin','events-calendar'),(11951,2997,'_EventShowMapLink',''),(11952,2997,'_EventShowMap',''),(11953,2997,'_VenueAddress','184 Main Collins Street'),(11954,2997,'_VenueCity',''),(11955,2997,'_VenueCountry',''),(11956,2997,'_VenueProvince',''),(11957,2997,'_VenueState',''),(11958,2997,'_VenueZip',''),(11959,2997,'_VenuePhone',''),(11960,2997,'_VenueURL','http://iacademy.mikado-themes.com'),(11961,2997,'_VenueShowMap','true'),(11962,2997,'_VenueShowMapLink','true'),(11963,2997,'_VenueStateProvince',''),(11964,2997,'slide_template','default'),(11965,2997,'_dp_original','1841'),(11966,2998,'_OrganizerOrigin','events-calendar'),(11967,2998,'_tribe_modified_fields','a:8:{s:16:\"_OrganizerOrigin\";i:1729435339;s:17:\"_vc_post_settings\";i:1729435339;s:21:\"_OrganizerOrganizerID\";i:1729435339;s:15:\"_OrganizerPhone\";i:1729435339;s:17:\"_OrganizerWebsite\";i:1729435339;s:15:\"_OrganizerEmail\";i:1729435339;s:14:\"slide_template\";i:1729435339;s:12:\"_dp_original\";i:1729435339;}'),(11968,2998,'_tribe_modified_fields','a:8:{s:16:\"_OrganizerOrigin\";i:1729435339;s:17:\"_vc_post_settings\";i:1729435339;s:21:\"_OrganizerOrganizerID\";i:1729435339;s:15:\"_OrganizerPhone\";i:1729435339;s:17:\"_OrganizerWebsite\";i:1729435339;s:15:\"_OrganizerEmail\";i:1729435339;s:14:\"slide_template\";i:1729435339;s:12:\"_dp_original\";i:1729435339;}'),(11969,2998,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11970,2998,'_OrganizerOrigin','events-calendar'),(11971,2998,'_tribe_modified_fields','a:8:{s:16:\"_OrganizerOrigin\";i:1729435339;s:17:\"_vc_post_settings\";i:1729435339;s:21:\"_OrganizerOrganizerID\";i:1729435339;s:15:\"_OrganizerPhone\";i:1729435339;s:17:\"_OrganizerWebsite\";i:1729435339;s:15:\"_OrganizerEmail\";i:1729435339;s:14:\"slide_template\";i:1729435339;s:12:\"_dp_original\";i:1729435339;}'),(11972,2998,'_tribe_modified_fields','a:8:{s:16:\"_OrganizerOrigin\";i:1729435339;s:17:\"_vc_post_settings\";i:1729435339;s:21:\"_OrganizerOrganizerID\";i:1729435339;s:15:\"_OrganizerPhone\";i:1729435339;s:17:\"_OrganizerWebsite\";i:1729435339;s:15:\"_OrganizerEmail\";i:1729435339;s:14:\"slide_template\";i:1729435339;s:12:\"_dp_original\";i:1729435339;}'),(11973,2998,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11974,2998,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11975,2998,'_OrganizerOrigin','events-calendar'),(11976,2998,'_OrganizerOrigin','events-calendar'),(11977,2998,'_OrganizerOrganizerID','0'),(11978,2998,'_OrganizerPhone','1-655-124-44225'),(11979,2998,'_OrganizerWebsite','http://iacademy.mikado-themes.com/'),(11980,2998,'_OrganizerEmail','info@example.com '),(11981,2998,'slide_template','default'),(11982,2998,'_dp_original','2996'),(11983,2999,'_VenueOrigin','events-calendar'),(11984,2999,'_tribe_modified_fields','a:17:{s:12:\"_VenueOrigin\";i:1729435339;s:17:\"_vc_post_settings\";i:1729435339;s:17:\"_EventShowMapLink\";i:1729435339;s:13:\"_EventShowMap\";i:1729435339;s:13:\"_VenueAddress\";i:1729435339;s:10:\"_VenueCity\";i:1729435339;s:13:\"_VenueCountry\";i:1729435339;s:14:\"_VenueProvince\";i:1729435339;s:11:\"_VenueState\";i:1729435339;s:9:\"_VenueZip\";i:1729435339;s:11:\"_VenuePhone\";i:1729435339;s:9:\"_VenueURL\";i:1729435339;s:13:\"_VenueShowMap\";i:1729435339;s:17:\"_VenueShowMapLink\";i:1729435339;s:19:\"_VenueStateProvince\";i:1729435339;s:14:\"slide_template\";i:1729435339;s:12:\"_dp_original\";i:1729435339;}'),(11985,2999,'_tribe_modified_fields','a:17:{s:12:\"_VenueOrigin\";i:1729435339;s:17:\"_vc_post_settings\";i:1729435339;s:17:\"_EventShowMapLink\";i:1729435339;s:13:\"_EventShowMap\";i:1729435339;s:13:\"_VenueAddress\";i:1729435339;s:10:\"_VenueCity\";i:1729435339;s:13:\"_VenueCountry\";i:1729435339;s:14:\"_VenueProvince\";i:1729435339;s:11:\"_VenueState\";i:1729435339;s:9:\"_VenueZip\";i:1729435339;s:11:\"_VenuePhone\";i:1729435339;s:9:\"_VenueURL\";i:1729435339;s:13:\"_VenueShowMap\";i:1729435339;s:17:\"_VenueShowMapLink\";i:1729435339;s:19:\"_VenueStateProvince\";i:1729435339;s:14:\"slide_template\";i:1729435339;s:12:\"_dp_original\";i:1729435339;}'),(11986,2999,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11987,2999,'_VenueOrigin','events-calendar'),(11988,2999,'_tribe_modified_fields','a:17:{s:12:\"_VenueOrigin\";i:1729435339;s:17:\"_vc_post_settings\";i:1729435339;s:17:\"_EventShowMapLink\";i:1729435339;s:13:\"_EventShowMap\";i:1729435339;s:13:\"_VenueAddress\";i:1729435339;s:10:\"_VenueCity\";i:1729435339;s:13:\"_VenueCountry\";i:1729435339;s:14:\"_VenueProvince\";i:1729435339;s:11:\"_VenueState\";i:1729435339;s:9:\"_VenueZip\";i:1729435339;s:11:\"_VenuePhone\";i:1729435339;s:9:\"_VenueURL\";i:1729435339;s:13:\"_VenueShowMap\";i:1729435339;s:17:\"_VenueShowMapLink\";i:1729435339;s:19:\"_VenueStateProvince\";i:1729435339;s:14:\"slide_template\";i:1729435339;s:12:\"_dp_original\";i:1729435339;}'),(11989,2999,'_tribe_modified_fields','a:17:{s:12:\"_VenueOrigin\";i:1729435339;s:17:\"_vc_post_settings\";i:1729435339;s:17:\"_EventShowMapLink\";i:1729435339;s:13:\"_EventShowMap\";i:1729435339;s:13:\"_VenueAddress\";i:1729435339;s:10:\"_VenueCity\";i:1729435339;s:13:\"_VenueCountry\";i:1729435339;s:14:\"_VenueProvince\";i:1729435339;s:11:\"_VenueState\";i:1729435339;s:9:\"_VenueZip\";i:1729435339;s:11:\"_VenuePhone\";i:1729435339;s:9:\"_VenueURL\";i:1729435339;s:13:\"_VenueShowMap\";i:1729435339;s:17:\"_VenueShowMapLink\";i:1729435339;s:19:\"_VenueStateProvince\";i:1729435339;s:14:\"slide_template\";i:1729435339;s:12:\"_dp_original\";i:1729435339;}'),(11990,2999,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11991,2999,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11992,2999,'_VenueOrigin','events-calendar'),(11993,2999,'_VenueOrigin','events-calendar'),(11994,2999,'_EventShowMapLink',''),(11995,2999,'_EventShowMap',''),(11996,2999,'_VenueAddress','Houghton Street 721'),(11997,2999,'_VenueCity',''),(11998,2999,'_VenueCountry',''),(11999,2999,'_VenueProvince',''),(12000,2999,'_VenueState',''),(12001,2999,'_VenueZip',''),(12002,2999,'_VenuePhone',''),(12003,2999,'_VenueURL','http://iacademy.mikado-themes.com'),(12004,2999,'_VenueShowMap','true'),(12005,2999,'_VenueShowMapLink','true'),(12006,2999,'_VenueStateProvince',''),(12007,2999,'slide_template','default'),(12008,2999,'_dp_original','2997'),(12009,4130,'_menu_item_type','post_type'),(12010,4130,'_menu_item_menu_item_parent','0'),(12011,4130,'_menu_item_object_id','4124'),(12012,4130,'_menu_item_object','page'),(12013,4130,'_menu_item_target',''),(12014,4130,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12015,4130,'_menu_item_xfn',''),(12016,4130,'_menu_item_url',''),(12017,4131,'_menu_item_type','post_type'),(12018,4131,'_menu_item_menu_item_parent','4072'),(12019,4131,'_menu_item_object_id','8'),(12020,4131,'_menu_item_object','page'),(12021,4131,'_menu_item_target',''),(12022,4131,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12023,4131,'_menu_item_xfn',''),(12024,4131,'_menu_item_url',''),(12025,4132,'_menu_item_type','post_type'),(12026,4132,'_menu_item_menu_item_parent','4072'),(12027,4132,'_menu_item_object_id','7'),(12028,4132,'_menu_item_object','page'),(12029,4132,'_menu_item_target',''),(12030,4132,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12031,4132,'_menu_item_xfn',''),(12032,4132,'_menu_item_url',''),(12033,4133,'_menu_item_type','post_type'),(12034,4133,'_menu_item_menu_item_parent','4072'),(12035,4133,'_menu_item_object_id','6'),(12036,4133,'_menu_item_object','page'),(12037,4133,'_menu_item_target',''),(12038,4133,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12039,4133,'_menu_item_xfn',''),(12040,4133,'_menu_item_url',''),(12041,4134,'_menu_item_type','post_type'),(12042,4134,'_menu_item_menu_item_parent','4066'),(12043,4134,'_menu_item_object_id','4123'),(12044,4134,'_menu_item_object','page'),(12045,4134,'_menu_item_target',''),(12046,4134,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12047,4134,'_menu_item_xfn',''),(12048,4134,'_menu_item_url',''),(12057,4136,'_menu_item_type','post_type'),(12058,4136,'_menu_item_menu_item_parent','4068'),(12059,4136,'_menu_item_object_id','129'),(12060,4136,'_menu_item_object','page'),(12061,4136,'_menu_item_target',''),(12062,4136,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12063,4136,'_menu_item_xfn',''),(12064,4136,'_menu_item_url',''),(12073,4138,'_menu_item_type','post_type'),(12074,4138,'_menu_item_menu_item_parent','0'),(12075,4138,'_menu_item_object_id','300'),(12076,4138,'_menu_item_object','page'),(12077,4138,'_menu_item_target',''),(12078,4138,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12079,4138,'_menu_item_xfn',''),(12080,4138,'_menu_item_url',''),(12081,4139,'_menu_item_type','post_type'),(12082,4139,'_menu_item_menu_item_parent','4067'),(12083,4139,'_menu_item_object_id','306'),(12084,4139,'_menu_item_object','page'),(12085,4139,'_menu_item_target',''),(12086,4139,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12087,4139,'_menu_item_xfn',''),(12088,4139,'_menu_item_url',''),(12089,4140,'_menu_item_type','post_type'),(12090,4140,'_menu_item_menu_item_parent','0'),(12091,4140,'_menu_item_object_id','374'),(12092,4140,'_menu_item_object','page'),(12093,4140,'_menu_item_target',''),(12094,4140,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12095,4140,'_menu_item_xfn',''),(12096,4140,'_menu_item_url',''),(12097,4141,'_menu_item_type','post_type'),(12098,4141,'_menu_item_menu_item_parent','4075'),(12099,4141,'_menu_item_object_id','607'),(12100,4141,'_menu_item_object','page'),(12101,4141,'_menu_item_target',''),(12102,4141,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12103,4141,'_menu_item_xfn',''),(12104,4141,'_menu_item_url',''),(12105,4142,'_menu_item_type','post_type'),(12106,4142,'_menu_item_menu_item_parent','4075'),(12107,4142,'_menu_item_object_id','590'),(12108,4142,'_menu_item_object','page'),(12109,4142,'_menu_item_target',''),(12110,4142,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12111,4142,'_menu_item_xfn',''),(12112,4142,'_menu_item_url',''),(12113,4143,'_menu_item_type','post_type'),(12114,4143,'_menu_item_menu_item_parent','4079'),(12115,4143,'_menu_item_object_id','607'),(12116,4143,'_menu_item_object','page'),(12117,4143,'_menu_item_target',''),(12118,4143,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12119,4143,'_menu_item_xfn',''),(12120,4143,'_menu_item_url',''),(12121,4144,'_menu_item_type','post_type'),(12122,4144,'_menu_item_menu_item_parent','4079'),(12123,4144,'_menu_item_object_id','590'),(12124,4144,'_menu_item_object','page'),(12125,4144,'_menu_item_target',''),(12126,4144,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12127,4144,'_menu_item_xfn',''),(12128,4144,'_menu_item_url',''),(12129,4145,'_menu_item_type','post_type'),(12130,4145,'_menu_item_menu_item_parent','4075'),(12131,4145,'_menu_item_object_id','658'),(12132,4145,'_menu_item_object','page'),(12133,4145,'_menu_item_target',''),(12134,4145,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12135,4145,'_menu_item_xfn',''),(12136,4145,'_menu_item_url',''),(12137,4146,'_menu_item_type','post_type'),(12138,4146,'_menu_item_menu_item_parent','4075'),(12139,4146,'_menu_item_object_id','653'),(12140,4146,'_menu_item_object','page'),(12141,4146,'_menu_item_target',''),(12142,4146,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12143,4146,'_menu_item_xfn',''),(12144,4146,'_menu_item_url',''),(12145,4147,'_menu_item_type','post_type'),(12146,4147,'_menu_item_menu_item_parent','4075'),(12147,4147,'_menu_item_object_id','638'),(12148,4147,'_menu_item_object','page'),(12149,4147,'_menu_item_target',''),(12150,4147,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12151,4147,'_menu_item_xfn',''),(12152,4147,'_menu_item_url',''),(12153,4148,'_menu_item_type','post_type'),(12154,4148,'_menu_item_menu_item_parent','4076'),(12155,4148,'_menu_item_object_id','776'),(12156,4148,'_menu_item_object','page'),(12157,4148,'_menu_item_target',''),(12158,4148,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12159,4148,'_menu_item_xfn',''),(12160,4148,'_menu_item_url',''),(12161,4149,'_menu_item_type','post_type'),(12162,4149,'_menu_item_menu_item_parent','4076'),(12163,4149,'_menu_item_object_id','727'),(12164,4149,'_menu_item_object','page'),(12165,4149,'_menu_item_target',''),(12166,4149,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12167,4149,'_menu_item_xfn',''),(12168,4149,'_menu_item_url',''),(12169,4150,'_menu_item_type','post_type'),(12170,4150,'_menu_item_menu_item_parent','4076'),(12171,4150,'_menu_item_object_id','684'),(12172,4150,'_menu_item_object','page'),(12173,4150,'_menu_item_target',''),(12174,4150,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12175,4150,'_menu_item_xfn',''),(12176,4150,'_menu_item_url',''),(12177,4151,'_menu_item_type','post_type'),(12178,4151,'_menu_item_menu_item_parent','4076'),(12179,4151,'_menu_item_object_id','670'),(12180,4151,'_menu_item_object','page'),(12181,4151,'_menu_item_target',''),(12182,4151,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12183,4151,'_menu_item_xfn',''),(12184,4151,'_menu_item_url',''),(12185,4152,'_menu_item_type','post_type'),(12186,4152,'_menu_item_menu_item_parent','4079'),(12187,4152,'_menu_item_object_id','638'),(12188,4152,'_menu_item_object','page'),(12189,4152,'_menu_item_target',''),(12190,4152,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12191,4152,'_menu_item_xfn',''),(12192,4152,'_menu_item_url',''),(12193,4153,'_menu_item_type','post_type'),(12194,4153,'_menu_item_menu_item_parent','4079'),(12195,4153,'_menu_item_object_id','653'),(12196,4153,'_menu_item_object','page'),(12197,4153,'_menu_item_target',''),(12198,4153,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12199,4153,'_menu_item_xfn',''),(12200,4153,'_menu_item_url',''),(12201,4154,'_menu_item_type','post_type'),(12202,4154,'_menu_item_menu_item_parent','4079'),(12203,4154,'_menu_item_object_id','658'),(12204,4154,'_menu_item_object','page'),(12205,4154,'_menu_item_target',''),(12206,4154,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12207,4154,'_menu_item_xfn',''),(12208,4154,'_menu_item_url',''),(12209,4155,'_menu_item_type','post_type'),(12210,4155,'_menu_item_menu_item_parent','4078'),(12211,4155,'_menu_item_object_id','670'),(12212,4155,'_menu_item_object','page'),(12213,4155,'_menu_item_target',''),(12214,4155,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12215,4155,'_menu_item_xfn',''),(12216,4155,'_menu_item_url',''),(12217,4156,'_menu_item_type','post_type'),(12218,4156,'_menu_item_menu_item_parent','4078'),(12219,4156,'_menu_item_object_id','684'),(12220,4156,'_menu_item_object','page'),(12221,4156,'_menu_item_target',''),(12222,4156,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12223,4156,'_menu_item_xfn',''),(12224,4156,'_menu_item_url',''),(12225,4157,'_menu_item_type','post_type'),(12226,4157,'_menu_item_menu_item_parent','4078'),(12227,4157,'_menu_item_object_id','727'),(12228,4157,'_menu_item_object','page'),(12229,4157,'_menu_item_target',''),(12230,4157,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12231,4157,'_menu_item_xfn',''),(12232,4157,'_menu_item_url',''),(12233,4158,'_menu_item_type','post_type'),(12234,4158,'_menu_item_menu_item_parent','4078'),(12235,4158,'_menu_item_object_id','776'),(12236,4158,'_menu_item_object','page'),(12237,4158,'_menu_item_target',''),(12238,4158,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12239,4158,'_menu_item_xfn',''),(12240,4158,'_menu_item_url',''),(12241,4159,'_menu_item_type','post_type'),(12242,4159,'_menu_item_menu_item_parent','0'),(12243,4159,'_menu_item_object_id','598'),(12244,4159,'_menu_item_object','page'),(12245,4159,'_menu_item_target',''),(12246,4159,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12247,4159,'_menu_item_xfn',''),(12248,4159,'_menu_item_url',''),(12249,4160,'_menu_item_type','post_type'),(12250,4160,'_menu_item_menu_item_parent','4074'),(12251,4160,'_menu_item_object_id','910'),(12252,4160,'_menu_item_object','page'),(12253,4160,'_menu_item_target',''),(12254,4160,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12255,4160,'_menu_item_xfn',''),(12256,4160,'_menu_item_url',''),(12257,4161,'_menu_item_type','post_type'),(12258,4161,'_menu_item_menu_item_parent','4074'),(12259,4161,'_menu_item_object_id','927'),(12260,4161,'_menu_item_object','page'),(12261,4161,'_menu_item_target',''),(12262,4161,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12263,4161,'_menu_item_xfn',''),(12264,4161,'_menu_item_url',''),(12265,4162,'_menu_item_type','post_type'),(12266,4162,'_menu_item_menu_item_parent','4074'),(12267,4162,'_menu_item_object_id','949'),(12268,4162,'_menu_item_object','page'),(12269,4162,'_menu_item_target',''),(12270,4162,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12271,4162,'_menu_item_xfn',''),(12272,4162,'_menu_item_url',''),(12273,4163,'_menu_item_type','post_type'),(12274,4163,'_menu_item_menu_item_parent','4074'),(12275,4163,'_menu_item_object_id','960'),(12276,4163,'_menu_item_object','page'),(12277,4163,'_menu_item_target',''),(12278,4163,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12279,4163,'_menu_item_xfn',''),(12280,4163,'_menu_item_url',''),(12281,4164,'_menu_item_type','post_type'),(12282,4164,'_menu_item_menu_item_parent','4076'),(12283,4164,'_menu_item_object_id','881'),(12284,4164,'_menu_item_object','page'),(12285,4164,'_menu_item_target',''),(12286,4164,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12287,4164,'_menu_item_xfn',''),(12288,4164,'_menu_item_url',''),(12289,4165,'_menu_item_type','post_type'),(12290,4165,'_menu_item_menu_item_parent','4076'),(12291,4165,'_menu_item_object_id','897'),(12292,4165,'_menu_item_object','page'),(12293,4165,'_menu_item_target',''),(12294,4165,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12295,4165,'_menu_item_xfn',''),(12296,4165,'_menu_item_url',''),(12297,4166,'_menu_item_type','post_type'),(12298,4166,'_menu_item_menu_item_parent','4074'),(12299,4166,'_menu_item_object_id','980'),(12300,4166,'_menu_item_object','page'),(12301,4166,'_menu_item_target',''),(12302,4166,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12303,4166,'_menu_item_xfn',''),(12304,4166,'_menu_item_url',''),(12305,4167,'_menu_item_type','post_type'),(12306,4167,'_menu_item_menu_item_parent','4074'),(12307,4167,'_menu_item_object_id','999'),(12308,4167,'_menu_item_object','page'),(12309,4167,'_menu_item_target',''),(12310,4167,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12311,4167,'_menu_item_xfn',''),(12312,4167,'_menu_item_url',''),(12313,4168,'_menu_item_type','post_type'),(12314,4168,'_menu_item_menu_item_parent','4078'),(12315,4168,'_menu_item_object_id','881'),(12316,4168,'_menu_item_object','page'),(12317,4168,'_menu_item_target',''),(12318,4168,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12319,4168,'_menu_item_xfn',''),(12320,4168,'_menu_item_url',''),(12321,4169,'_menu_item_type','post_type'),(12322,4169,'_menu_item_menu_item_parent','4078'),(12323,4169,'_menu_item_object_id','897'),(12324,4169,'_menu_item_object','page'),(12325,4169,'_menu_item_target',''),(12326,4169,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12327,4169,'_menu_item_xfn',''),(12328,4169,'_menu_item_url',''),(12329,4170,'_menu_item_type','post_type'),(12330,4170,'_menu_item_menu_item_parent','4077'),(12331,4170,'_menu_item_object_id','910'),(12332,4170,'_menu_item_object','page'),(12333,4170,'_menu_item_target',''),(12334,4170,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12335,4170,'_menu_item_xfn',''),(12336,4170,'_menu_item_url',''),(12337,4171,'_menu_item_type','post_type'),(12338,4171,'_menu_item_menu_item_parent','4077'),(12339,4171,'_menu_item_object_id','927'),(12340,4171,'_menu_item_object','page'),(12341,4171,'_menu_item_target',''),(12342,4171,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12343,4171,'_menu_item_xfn',''),(12344,4171,'_menu_item_url',''),(12345,4172,'_menu_item_type','post_type'),(12346,4172,'_menu_item_menu_item_parent','4077'),(12347,4172,'_menu_item_object_id','949'),(12348,4172,'_menu_item_object','page'),(12349,4172,'_menu_item_target',''),(12350,4172,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12351,4172,'_menu_item_xfn',''),(12352,4172,'_menu_item_url',''),(12353,4173,'_menu_item_type','post_type'),(12354,4173,'_menu_item_menu_item_parent','4077'),(12355,4173,'_menu_item_object_id','960'),(12356,4173,'_menu_item_object','page'),(12357,4173,'_menu_item_target',''),(12358,4173,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12359,4173,'_menu_item_xfn',''),(12360,4173,'_menu_item_url',''),(12361,4174,'_menu_item_type','post_type'),(12362,4174,'_menu_item_menu_item_parent','4077'),(12363,4174,'_menu_item_object_id','980'),(12364,4174,'_menu_item_object','page'),(12365,4174,'_menu_item_target',''),(12366,4174,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12367,4174,'_menu_item_xfn',''),(12368,4174,'_menu_item_url',''),(12369,4175,'_menu_item_type','post_type'),(12370,4175,'_menu_item_menu_item_parent','4077'),(12371,4175,'_menu_item_object_id','999'),(12372,4175,'_menu_item_object','page'),(12373,4175,'_menu_item_target',''),(12374,4175,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12375,4175,'_menu_item_xfn',''),(12376,4175,'_menu_item_url',''),(12377,4176,'_menu_item_type','post_type'),(12378,4176,'_menu_item_menu_item_parent','0'),(12379,4176,'_menu_item_object_id','896'),(12380,4176,'_menu_item_object','page'),(12381,4176,'_menu_item_target',''),(12382,4176,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12383,4176,'_menu_item_xfn',''),(12384,4176,'_menu_item_url',''),(12385,4177,'_menu_item_type','post_type'),(12386,4177,'_menu_item_menu_item_parent','4074'),(12387,4177,'_menu_item_object_id','1024'),(12388,4177,'_menu_item_object','page'),(12389,4177,'_menu_item_target',''),(12390,4177,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12391,4177,'_menu_item_xfn',''),(12392,4177,'_menu_item_url',''),(12393,4178,'_menu_item_type','post_type'),(12394,4178,'_menu_item_menu_item_parent','4077'),(12395,4178,'_menu_item_object_id','1024'),(12396,4178,'_menu_item_object','page'),(12397,4178,'_menu_item_target',''),(12398,4178,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12399,4178,'_menu_item_xfn',''),(12400,4178,'_menu_item_url',''),(12401,4179,'_menu_item_type','post_type'),(12402,4179,'_menu_item_menu_item_parent','4079'),(12403,4179,'_menu_item_object_id','1117'),(12404,4179,'_menu_item_object','page'),(12405,4179,'_menu_item_target',''),(12406,4179,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12407,4179,'_menu_item_xfn',''),(12408,4179,'_menu_item_url',''),(12409,4180,'_menu_item_type','post_type'),(12410,4180,'_menu_item_menu_item_parent','4081'),(12411,4180,'_menu_item_object_id','1111'),(12412,4180,'_menu_item_object','page'),(12413,4180,'_menu_item_target',''),(12414,4180,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12415,4180,'_menu_item_xfn',''),(12416,4180,'_menu_item_url',''),(12417,4181,'_menu_item_type','post_type'),(12418,4181,'_menu_item_menu_item_parent','4081'),(12419,4181,'_menu_item_object_id','1106'),(12420,4181,'_menu_item_object','page'),(12421,4181,'_menu_item_target',''),(12422,4181,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12423,4181,'_menu_item_xfn',''),(12424,4181,'_menu_item_url',''),(12425,4182,'_menu_item_type','post_type'),(12426,4182,'_menu_item_menu_item_parent','4081'),(12427,4182,'_menu_item_object_id','1103'),(12428,4182,'_menu_item_object','page'),(12429,4182,'_menu_item_target',''),(12430,4182,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12431,4182,'_menu_item_xfn',''),(12432,4182,'_menu_item_url',''),(12433,4183,'_menu_item_type','post_type'),(12434,4183,'_menu_item_menu_item_parent','4077'),(12435,4183,'_menu_item_object_id','1144'),(12436,4183,'_menu_item_object','page'),(12437,4183,'_menu_item_target',''),(12438,4183,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12439,4183,'_menu_item_xfn',''),(12440,4183,'_menu_item_url',''),(12441,4184,'_menu_item_type','post_type'),(12442,4184,'_menu_item_menu_item_parent','4081'),(12443,4184,'_menu_item_object_id','1092'),(12444,4184,'_menu_item_object','page'),(12445,4184,'_menu_item_target',''),(12446,4184,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12447,4184,'_menu_item_xfn',''),(12448,4184,'_menu_item_url',''),(12449,4185,'_menu_item_type','post_type'),(12450,4185,'_menu_item_menu_item_parent','4081'),(12451,4185,'_menu_item_object_id','1074'),(12452,4185,'_menu_item_object','page'),(12453,4185,'_menu_item_target',''),(12454,4185,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12455,4185,'_menu_item_xfn',''),(12456,4185,'_menu_item_url',''),(12457,4186,'_menu_item_type','post_type'),(12458,4186,'_menu_item_menu_item_parent','4077'),(12459,4186,'_menu_item_object_id','1123'),(12460,4186,'_menu_item_object','page'),(12461,4186,'_menu_item_target',''),(12462,4186,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12463,4186,'_menu_item_xfn',''),(12464,4186,'_menu_item_url',''),(12465,4187,'_menu_item_type','post_type'),(12466,4187,'_menu_item_menu_item_parent','4079'),(12467,4187,'_menu_item_object_id','1119'),(12468,4187,'_menu_item_object','page'),(12469,4187,'_menu_item_target',''),(12470,4187,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12471,4187,'_menu_item_xfn',''),(12472,4187,'_menu_item_url',''),(12473,4188,'_menu_item_type','post_type'),(12474,4188,'_menu_item_menu_item_parent','4079'),(12475,4188,'_menu_item_object_id','1059'),(12476,4188,'_menu_item_object','page'),(12477,4188,'_menu_item_target',''),(12478,4188,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12479,4188,'_menu_item_xfn',''),(12480,4188,'_menu_item_url',''),(12481,4189,'_menu_item_type','post_type'),(12482,4189,'_menu_item_menu_item_parent','4074'),(12483,4189,'_menu_item_object_id','1144'),(12484,4189,'_menu_item_object','page'),(12485,4189,'_menu_item_target',''),(12486,4189,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12487,4189,'_menu_item_xfn',''),(12488,4189,'_menu_item_url',''),(12489,4190,'_menu_item_type','post_type'),(12490,4190,'_menu_item_menu_item_parent','4082'),(12491,4190,'_menu_item_object_id','1092'),(12492,4190,'_menu_item_object','page'),(12493,4190,'_menu_item_target',''),(12494,4190,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12495,4190,'_menu_item_xfn',''),(12496,4190,'_menu_item_url',''),(12497,4191,'_menu_item_type','post_type'),(12498,4191,'_menu_item_menu_item_parent','4082'),(12499,4191,'_menu_item_object_id','1103'),(12500,4191,'_menu_item_object','page'),(12501,4191,'_menu_item_target',''),(12502,4191,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12503,4191,'_menu_item_xfn',''),(12504,4191,'_menu_item_url',''),(12505,4192,'_menu_item_type','post_type'),(12506,4192,'_menu_item_menu_item_parent','4082'),(12507,4192,'_menu_item_object_id','1106'),(12508,4192,'_menu_item_object','page'),(12509,4192,'_menu_item_target',''),(12510,4192,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12511,4192,'_menu_item_xfn',''),(12512,4192,'_menu_item_url',''),(12513,4193,'_menu_item_type','post_type'),(12514,4193,'_menu_item_menu_item_parent','4082'),(12515,4193,'_menu_item_object_id','1074'),(12516,4193,'_menu_item_object','page'),(12517,4193,'_menu_item_target',''),(12518,4193,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12519,4193,'_menu_item_xfn',''),(12520,4193,'_menu_item_url',''),(12521,4194,'_menu_item_type','post_type'),(12522,4194,'_menu_item_menu_item_parent','4082'),(12523,4194,'_menu_item_object_id','1111'),(12524,4194,'_menu_item_object','page'),(12525,4194,'_menu_item_target',''),(12526,4194,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12527,4194,'_menu_item_xfn',''),(12528,4194,'_menu_item_url',''),(12529,4195,'_menu_item_type','post_type'),(12530,4195,'_menu_item_menu_item_parent','4075'),(12531,4195,'_menu_item_object_id','1117'),(12532,4195,'_menu_item_object','page'),(12533,4195,'_menu_item_target',''),(12534,4195,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12535,4195,'_menu_item_xfn',''),(12536,4195,'_menu_item_url',''),(12537,4196,'_menu_item_type','post_type'),(12538,4196,'_menu_item_menu_item_parent','4074'),(12539,4196,'_menu_item_object_id','1123'),(12540,4196,'_menu_item_object','page'),(12541,4196,'_menu_item_target',''),(12542,4196,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12543,4196,'_menu_item_xfn',''),(12544,4196,'_menu_item_url',''),(12545,4197,'_menu_item_type','post_type'),(12546,4197,'_menu_item_menu_item_parent','4075'),(12547,4197,'_menu_item_object_id','1119'),(12548,4197,'_menu_item_object','page'),(12549,4197,'_menu_item_target',''),(12550,4197,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12551,4197,'_menu_item_xfn',''),(12552,4197,'_menu_item_url',''),(12553,4198,'_menu_item_type','post_type'),(12554,4198,'_menu_item_menu_item_parent','4075'),(12555,4198,'_menu_item_object_id','1059'),(12556,4198,'_menu_item_object','page'),(12557,4198,'_menu_item_target',''),(12558,4198,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12559,4198,'_menu_item_xfn',''),(12560,4198,'_menu_item_url',''),(12561,4199,'_menu_item_type','post_type'),(12562,4199,'_menu_item_menu_item_parent','0'),(12563,4199,'_menu_item_object_id','1305'),(12564,4199,'_menu_item_object','page'),(12565,4199,'_menu_item_target',''),(12566,4199,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12567,4199,'_menu_item_xfn',''),(12568,4199,'_menu_item_url',''),(12569,4200,'_menu_item_type','post_type'),(12570,4200,'_menu_item_menu_item_parent','0'),(12571,4200,'_menu_item_object_id','1408'),(12572,4200,'_menu_item_object','page'),(12573,4200,'_menu_item_target',''),(12574,4200,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12575,4200,'_menu_item_xfn',''),(12576,4200,'_menu_item_url',''),(12577,4201,'_menu_item_type','post_type'),(12578,4201,'_menu_item_menu_item_parent','0'),(12579,4201,'_menu_item_object_id','697'),(12580,4201,'_menu_item_object','page'),(12581,4201,'_menu_item_target',''),(12582,4201,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12583,4201,'_menu_item_xfn',''),(12584,4201,'_menu_item_url',''),(12585,4202,'_menu_item_type','post_type'),(12586,4202,'_menu_item_menu_item_parent','0'),(12587,4202,'_menu_item_object_id','1451'),(12588,4202,'_menu_item_object','page'),(12589,4202,'_menu_item_target',''),(12590,4202,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12591,4202,'_menu_item_xfn',''),(12592,4202,'_menu_item_url',''),(12593,4203,'_menu_item_type','post_type'),(12594,4203,'_menu_item_menu_item_parent','4064'),(12595,4203,'_menu_item_object_id','1328'),(12596,4203,'_menu_item_object','page'),(12597,4203,'_menu_item_target',''),(12598,4203,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12599,4203,'_menu_item_xfn',''),(12600,4203,'_menu_item_url',''),(12601,4204,'_menu_item_type','post_type'),(12602,4204,'_menu_item_menu_item_parent','4065'),(12603,4204,'_menu_item_object_id','1440'),(12604,4204,'_menu_item_object','page'),(12605,4204,'_menu_item_target',''),(12606,4204,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12607,4204,'_menu_item_xfn',''),(12608,4204,'_menu_item_url',''),(12609,4205,'_menu_item_type','post_type'),(12610,4205,'_menu_item_menu_item_parent','4065'),(12611,4205,'_menu_item_object_id','1324'),(12612,4205,'_menu_item_object','page'),(12613,4205,'_menu_item_target',''),(12614,4205,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12615,4205,'_menu_item_xfn',''),(12616,4205,'_menu_item_url',''),(12617,4206,'_menu_item_type','post_type'),(12618,4206,'_menu_item_menu_item_parent','4065'),(12619,4206,'_menu_item_object_id','1242'),(12620,4206,'_menu_item_object','page'),(12621,4206,'_menu_item_target',''),(12622,4206,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12623,4206,'_menu_item_xfn',''),(12624,4206,'_menu_item_url',''),(12625,4207,'_menu_item_type','post_type'),(12626,4207,'_menu_item_menu_item_parent','0'),(12627,4207,'_menu_item_object_id','1570'),(12628,4207,'_menu_item_object','page'),(12629,4207,'_menu_item_target',''),(12630,4207,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12631,4207,'_menu_item_xfn',''),(12632,4207,'_menu_item_url',''),(12633,4208,'_menu_item_type','post_type'),(12634,4208,'_menu_item_menu_item_parent','0'),(12635,4208,'_menu_item_object_id','1504'),(12636,4208,'_menu_item_object','page'),(12637,4208,'_menu_item_target',''),(12638,4208,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12639,4208,'_menu_item_xfn',''),(12640,4208,'_menu_item_url',''),(12641,4209,'_menu_item_type','post_type'),(12642,4209,'_menu_item_menu_item_parent','0'),(12643,4209,'_menu_item_object_id','1485'),(12644,4209,'_menu_item_object','page'),(12645,4209,'_menu_item_target',''),(12646,4209,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12647,4209,'_menu_item_xfn',''),(12648,4209,'_menu_item_url',''),(12649,4210,'_menu_item_type','post_type'),(12650,4210,'_menu_item_menu_item_parent','4064'),(12651,4210,'_menu_item_object_id','2106'),(12652,4210,'_menu_item_object','page'),(12653,4210,'_menu_item_target',''),(12654,4210,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12655,4210,'_menu_item_xfn',''),(12656,4210,'_menu_item_url',''),(12657,4211,'_menu_item_type','post_type'),(12658,4211,'_menu_item_menu_item_parent','0'),(12659,4211,'_menu_item_object_id','1863'),(12660,4211,'_menu_item_object','page'),(12661,4211,'_menu_item_target',''),(12662,4211,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12663,4211,'_menu_item_xfn',''),(12664,4211,'_menu_item_url',''),(12665,4212,'_menu_item_type','post_type'),(12666,4212,'_menu_item_menu_item_parent','0'),(12667,4212,'_menu_item_object_id','1580'),(12668,4212,'_menu_item_object','page'),(12669,4212,'_menu_item_target',''),(12670,4212,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12671,4212,'_menu_item_xfn',''),(12672,4212,'_menu_item_url',''),(12681,4214,'_menu_item_type','post_type'),(12682,4214,'_menu_item_menu_item_parent','0'),(12683,4214,'_menu_item_object_id','2329'),(12684,4214,'_menu_item_object','page'),(12685,4214,'_menu_item_target',''),(12686,4214,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12687,4214,'_menu_item_xfn',''),(12688,4214,'_menu_item_url',''),(12697,4216,'_menu_item_type','post_type'),(12698,4216,'_menu_item_menu_item_parent','4083'),(12699,4216,'_menu_item_object_id','1908'),(12700,4216,'_menu_item_object','product'),(12701,4216,'_menu_item_target',''),(12702,4216,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12703,4216,'_menu_item_xfn',''),(12704,4216,'_menu_item_url',''),(12705,4217,'_menu_item_type','post_type'),(12706,4217,'_menu_item_menu_item_parent','4083'),(12707,4217,'_menu_item_object_id','1880'),(12708,4217,'_menu_item_object','product'),(12709,4217,'_menu_item_target',''),(12710,4217,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12711,4217,'_menu_item_xfn',''),(12712,4217,'_menu_item_url',''),(12713,4218,'_menu_item_type','post_type'),(12714,4218,'_menu_item_menu_item_parent','4083'),(12715,4218,'_menu_item_object_id','1829'),(12716,4218,'_menu_item_object','product'),(12717,4218,'_menu_item_target',''),(12718,4218,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12719,4218,'_menu_item_xfn',''),(12720,4218,'_menu_item_url',''),(12721,4219,'_menu_item_type','post_type'),(12722,4219,'_menu_item_menu_item_parent','4083'),(12723,4219,'_menu_item_object_id','1740'),(12724,4219,'_menu_item_object','product'),(12725,4219,'_menu_item_target',''),(12726,4219,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12727,4219,'_menu_item_xfn',''),(12728,4219,'_menu_item_url',''),(12729,4220,'_menu_item_type','post_type'),(12730,4220,'_menu_item_menu_item_parent','4065'),(12731,4220,'_menu_item_object_id','741'),(12732,4220,'_menu_item_object','post'),(12733,4220,'_menu_item_target',''),(12734,4220,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12735,4220,'_menu_item_xfn',''),(12736,4220,'_menu_item_url',''),(12737,4221,'_menu_item_type','post_type'),(12738,4221,'_menu_item_menu_item_parent','4065'),(12739,4221,'_menu_item_object_id','1189'),(12740,4221,'_menu_item_object','post'),(12741,4221,'_menu_item_target',''),(12742,4221,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12743,4221,'_menu_item_xfn',''),(12744,4221,'_menu_item_url',''),(12745,4222,'_menu_item_type','post_type'),(12746,4222,'_menu_item_menu_item_parent','4065'),(12747,4222,'_menu_item_object_id','1544'),(12748,4222,'_menu_item_object','post'),(12749,4222,'_menu_item_target',''),(12750,4222,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12751,4222,'_menu_item_xfn',''),(12752,4222,'_menu_item_url',''),(12753,4223,'_menu_item_type','post_type'),(12754,4223,'_menu_item_menu_item_parent','4065'),(12755,4223,'_menu_item_object_id','1365'),(12756,4223,'_menu_item_object','post'),(12757,4223,'_menu_item_target',''),(12758,4223,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12759,4223,'_menu_item_xfn',''),(12760,4223,'_menu_item_url',''),(12761,4224,'_menu_item_type','post_type'),(12762,4224,'_menu_item_menu_item_parent','4065'),(12763,4224,'_menu_item_object_id','1524'),(12764,4224,'_menu_item_object','post'),(12765,4224,'_menu_item_target',''),(12766,4224,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12767,4224,'_menu_item_xfn',''),(12768,4224,'_menu_item_url',''),(12769,4225,'_menu_item_type','post_type'),(12770,4225,'_menu_item_menu_item_parent','0'),(12771,4225,'_menu_item_object_id','1863'),(12772,4225,'_menu_item_object','page'),(12773,4225,'_menu_item_target',''),(12774,4225,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12775,4225,'_menu_item_xfn',''),(12776,4225,'_menu_item_url',''),(12777,4226,'_menu_item_type','post_type'),(12778,4226,'_menu_item_menu_item_parent','0'),(12779,4226,'_menu_item_object_id','1328'),(12780,4226,'_menu_item_object','page'),(12781,4226,'_menu_item_target',''),(12782,4226,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12783,4226,'_menu_item_xfn',''),(12784,4226,'_menu_item_url',''),(12785,4227,'_menu_item_type','post_type'),(12786,4227,'_menu_item_menu_item_parent','0'),(12787,4227,'_menu_item_object_id','306'),(12788,4227,'_menu_item_object','page'),(12789,4227,'_menu_item_target',''),(12790,4227,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12791,4227,'_menu_item_xfn',''),(12792,4227,'_menu_item_url',''),(12793,4228,'_menu_item_type','post_type'),(12794,4228,'_menu_item_menu_item_parent','0'),(12795,4228,'_menu_item_object_id','113'),(12796,4228,'_menu_item_object','page'),(12797,4228,'_menu_item_target',''),(12798,4228,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12799,4228,'_menu_item_xfn',''),(12800,4228,'_menu_item_url',''),(12801,4229,'_menu_item_type','post_type'),(12802,4229,'_menu_item_menu_item_parent','4082'),(12803,4229,'_menu_item_object_id','2697'),(12804,4229,'_menu_item_object','page'),(12805,4229,'_menu_item_target',''),(12806,4229,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12807,4229,'_menu_item_xfn',''),(12808,4229,'_menu_item_url',''),(12809,4230,'_menu_item_type','post_type'),(12810,4230,'_menu_item_menu_item_parent','4076'),(12811,4230,'_menu_item_object_id','2654'),(12812,4230,'_menu_item_object','page'),(12813,4230,'_menu_item_target',''),(12814,4230,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12815,4230,'_menu_item_xfn',''),(12816,4230,'_menu_item_url',''),(12817,4231,'_menu_item_type','post_type'),(12818,4231,'_menu_item_menu_item_parent','4082'),(12819,4231,'_menu_item_object_id','2641'),(12820,4231,'_menu_item_object','page'),(12821,4231,'_menu_item_target',''),(12822,4231,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12823,4231,'_menu_item_xfn',''),(12824,4231,'_menu_item_url',''),(12825,4232,'_menu_item_type','post_type'),(12826,4232,'_menu_item_menu_item_parent','4082'),(12827,4232,'_menu_item_object_id','2621'),(12828,4232,'_menu_item_object','page'),(12829,4232,'_menu_item_target',''),(12830,4232,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12831,4232,'_menu_item_xfn',''),(12832,4232,'_menu_item_url',''),(12833,4233,'_menu_item_type','post_type'),(12834,4233,'_menu_item_menu_item_parent','4076'),(12835,4233,'_menu_item_object_id','2608'),(12836,4233,'_menu_item_object','page'),(12837,4233,'_menu_item_target',''),(12838,4233,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12839,4233,'_menu_item_xfn',''),(12840,4233,'_menu_item_url',''),(12841,4234,'_menu_item_type','post_type'),(12842,4234,'_menu_item_menu_item_parent','4076'),(12843,4234,'_menu_item_object_id','2710'),(12844,4234,'_menu_item_object','page'),(12845,4234,'_menu_item_target',''),(12846,4234,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12847,4234,'_menu_item_xfn',''),(12848,4234,'_menu_item_url',''),(12849,4235,'_menu_item_type','post_type'),(12850,4235,'_menu_item_menu_item_parent','4075'),(12851,4235,'_menu_item_object_id','2724'),(12852,4235,'_menu_item_object','page'),(12853,4235,'_menu_item_target',''),(12854,4235,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12855,4235,'_menu_item_xfn',''),(12856,4235,'_menu_item_url',''),(12857,4236,'_menu_item_type','post_type'),(12858,4236,'_menu_item_menu_item_parent','4079'),(12859,4236,'_menu_item_object_id','2724'),(12860,4236,'_menu_item_object','page'),(12861,4236,'_menu_item_target',''),(12862,4236,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12863,4236,'_menu_item_xfn',''),(12864,4236,'_menu_item_url',''),(12865,4237,'_menu_item_type','post_type'),(12866,4237,'_menu_item_menu_item_parent','4078'),(12867,4237,'_menu_item_object_id','2710'),(12868,4237,'_menu_item_object','page'),(12869,4237,'_menu_item_target',''),(12870,4237,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12871,4237,'_menu_item_xfn',''),(12872,4237,'_menu_item_url',''),(12873,4238,'_menu_item_type','post_type'),(12874,4238,'_menu_item_menu_item_parent','4081'),(12875,4238,'_menu_item_object_id','2697'),(12876,4238,'_menu_item_object','page'),(12877,4238,'_menu_item_target',''),(12878,4238,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12879,4238,'_menu_item_xfn',''),(12880,4238,'_menu_item_url',''),(12881,4239,'_menu_item_type','post_type'),(12882,4239,'_menu_item_menu_item_parent','4081'),(12883,4239,'_menu_item_object_id','2621'),(12884,4239,'_menu_item_object','page'),(12885,4239,'_menu_item_target',''),(12886,4239,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12887,4239,'_menu_item_xfn',''),(12888,4239,'_menu_item_url',''),(12889,4240,'_menu_item_type','post_type'),(12890,4240,'_menu_item_menu_item_parent','4078'),(12891,4240,'_menu_item_object_id','2654'),(12892,4240,'_menu_item_object','page'),(12893,4240,'_menu_item_target',''),(12894,4240,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12895,4240,'_menu_item_xfn',''),(12896,4240,'_menu_item_url',''),(12897,4241,'_menu_item_type','post_type'),(12898,4241,'_menu_item_menu_item_parent','4081'),(12899,4241,'_menu_item_object_id','2641'),(12900,4241,'_menu_item_object','page'),(12901,4241,'_menu_item_target',''),(12902,4241,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12903,4241,'_menu_item_xfn',''),(12904,4241,'_menu_item_url',''),(12905,4242,'_menu_item_type','post_type'),(12906,4242,'_menu_item_menu_item_parent','4078'),(12907,4242,'_menu_item_object_id','2608'),(12908,4242,'_menu_item_object','page'),(12909,4242,'_menu_item_target',''),(12910,4242,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12911,4242,'_menu_item_xfn',''),(12912,4242,'_menu_item_url',''),(12913,4243,'_menu_item_type','post_type'),(12914,4243,'_menu_item_menu_item_parent','4087'),(12915,4243,'_menu_item_object_id','3327'),(12916,4243,'_menu_item_object','page'),(12917,4243,'_menu_item_target',''),(12918,4243,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12919,4243,'_menu_item_xfn',''),(12920,4243,'_menu_item_url',''),(12921,4244,'_menu_item_type','post_type'),(12922,4244,'_menu_item_menu_item_parent','4087'),(12923,4244,'_menu_item_object_id','3325'),(12924,4244,'_menu_item_object','page'),(12925,4244,'_menu_item_target',''),(12926,4244,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12927,4244,'_menu_item_xfn',''),(12928,4244,'_menu_item_url',''),(12929,4245,'_menu_item_type','post_type'),(12930,4245,'_menu_item_menu_item_parent','4087'),(12931,4245,'_menu_item_object_id','3321'),(12932,4245,'_menu_item_object','page'),(12933,4245,'_menu_item_target',''),(12934,4245,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12935,4245,'_menu_item_xfn',''),(12936,4245,'_menu_item_url',''),(12937,4246,'_menu_item_type','post_type'),(12938,4246,'_menu_item_menu_item_parent','4087'),(12939,4246,'_menu_item_object_id','3312'),(12940,4246,'_menu_item_object','page'),(12941,4246,'_menu_item_target',''),(12942,4246,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12943,4246,'_menu_item_xfn',''),(12944,4246,'_menu_item_url',''),(12945,4247,'_menu_item_type','post_type'),(12946,4247,'_menu_item_menu_item_parent','4087'),(12947,4247,'_menu_item_object_id','3305'),(12948,4247,'_menu_item_object','page'),(12949,4247,'_menu_item_target',''),(12950,4247,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12951,4247,'_menu_item_xfn',''),(12952,4247,'_menu_item_url',''),(12953,4248,'_menu_item_type','post_type'),(12954,4248,'_menu_item_menu_item_parent','4087'),(12955,4248,'_menu_item_object_id','3298'),(12956,4248,'_menu_item_object','page'),(12957,4248,'_menu_item_target',''),(12958,4248,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12959,4248,'_menu_item_xfn',''),(12960,4248,'_menu_item_url',''),(12961,4249,'_menu_item_type','post_type'),(12962,4249,'_menu_item_menu_item_parent','0'),(12963,4249,'_menu_item_object_id','2928'),(12964,4249,'_menu_item_object','page'),(12965,4249,'_menu_item_target','_blank'),(12966,4249,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12967,4249,'_menu_item_xfn',''),(12968,4249,'_menu_item_url',''),(12969,4250,'_menu_item_type','post_type'),(12970,4250,'_menu_item_menu_item_parent','4095'),(12971,4250,'_menu_item_object_id','4124'),(12972,4250,'_menu_item_object','page'),(12973,4250,'_menu_item_target',''),(12974,4250,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12975,4250,'_menu_item_xfn',''),(12976,4250,'_menu_item_url',''),(12977,4251,'_menu_item_type','post_type'),(12978,4251,'_menu_item_menu_item_parent','4095'),(12979,4251,'_menu_item_object_id','300'),(12980,4251,'_menu_item_object','page'),(12981,4251,'_menu_item_target',''),(12982,4251,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12983,4251,'_menu_item_xfn',''),(12984,4251,'_menu_item_url',''),(12985,4252,'_menu_item_type','post_type'),(12986,4252,'_menu_item_menu_item_parent','4095'),(12987,4252,'_menu_item_object_id','1305'),(12988,4252,'_menu_item_object','page'),(12989,4252,'_menu_item_target',''),(12990,4252,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12991,4252,'_menu_item_xfn',''),(12992,4252,'_menu_item_url',''),(12993,4253,'_menu_item_type','post_type'),(12994,4253,'_menu_item_menu_item_parent','4095'),(12995,4253,'_menu_item_object_id','598'),(12996,4253,'_menu_item_object','page'),(12997,4253,'_menu_item_target',''),(12998,4253,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12999,4253,'_menu_item_xfn',''),(13000,4253,'_menu_item_url',''),(13001,4254,'_menu_item_type','post_type'),(13002,4254,'_menu_item_menu_item_parent','4095'),(13003,4254,'_menu_item_object_id','697'),(13004,4254,'_menu_item_object','page'),(13005,4254,'_menu_item_target',''),(13006,4254,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13007,4254,'_menu_item_xfn',''),(13008,4254,'_menu_item_url',''),(13009,4255,'_menu_item_type','post_type'),(13010,4255,'_menu_item_menu_item_parent','4095'),(13011,4255,'_menu_item_object_id','1504'),(13012,4255,'_menu_item_object','page'),(13013,4255,'_menu_item_target',''),(13014,4255,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13015,4255,'_menu_item_xfn',''),(13016,4255,'_menu_item_url',''),(13017,4256,'_menu_item_type','post_type'),(13018,4256,'_menu_item_menu_item_parent','4095'),(13019,4256,'_menu_item_object_id','1570'),(13020,4256,'_menu_item_object','page'),(13021,4256,'_menu_item_target',''),(13022,4256,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13023,4256,'_menu_item_xfn',''),(13024,4256,'_menu_item_url',''),(13025,4257,'_menu_item_type','post_type'),(13026,4257,'_menu_item_menu_item_parent','4095'),(13027,4257,'_menu_item_object_id','1451'),(13028,4257,'_menu_item_object','page'),(13029,4257,'_menu_item_target',''),(13030,4257,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13031,4257,'_menu_item_xfn',''),(13032,4257,'_menu_item_url',''),(13033,4258,'_menu_item_type','post_type'),(13034,4258,'_menu_item_menu_item_parent','4095'),(13035,4258,'_menu_item_object_id','374'),(13036,4258,'_menu_item_object','page'),(13037,4258,'_menu_item_target',''),(13038,4258,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13039,4258,'_menu_item_xfn',''),(13040,4258,'_menu_item_url',''),(13041,4259,'_menu_item_type','post_type'),(13042,4259,'_menu_item_menu_item_parent','4095'),(13043,4259,'_menu_item_object_id','896'),(13044,4259,'_menu_item_object','page'),(13045,4259,'_menu_item_target',''),(13046,4259,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13047,4259,'_menu_item_xfn',''),(13048,4259,'_menu_item_url',''),(13049,4260,'_menu_item_type','post_type'),(13050,4260,'_menu_item_menu_item_parent','4095'),(13051,4260,'_menu_item_object_id','1408'),(13052,4260,'_menu_item_object','page'),(13053,4260,'_menu_item_target',''),(13054,4260,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13055,4260,'_menu_item_xfn',''),(13056,4260,'_menu_item_url',''),(13057,4261,'_menu_item_type','post_type'),(13058,4261,'_menu_item_menu_item_parent','4095'),(13059,4261,'_menu_item_object_id','1485'),(13060,4261,'_menu_item_object','page'),(13061,4261,'_menu_item_target',''),(13062,4261,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13063,4261,'_menu_item_xfn',''),(13064,4261,'_menu_item_url',''),(13065,4262,'_menu_item_type','post_type'),(13066,4262,'_menu_item_menu_item_parent','4095'),(13067,4262,'_menu_item_object_id','2928'),(13068,4262,'_menu_item_object','page'),(13069,4262,'_menu_item_target','_blank'),(13070,4262,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13071,4262,'_menu_item_xfn',''),(13072,4262,'_menu_item_url',''),(13073,4263,'_menu_item_type','post_type'),(13074,4263,'_menu_item_menu_item_parent','4097'),(13075,4263,'_menu_item_object_id','306'),(13076,4263,'_menu_item_object','page'),(13077,4263,'_menu_item_target',''),(13078,4263,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13079,4263,'_menu_item_xfn',''),(13080,4263,'_menu_item_url',''),(13081,4264,'_menu_item_type','post_type'),(13082,4264,'_menu_item_menu_item_parent','4097'),(13083,4264,'_menu_item_object_id','291'),(13084,4264,'_menu_item_object','page'),(13085,4264,'_menu_item_target',''),(13086,4264,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13087,4264,'_menu_item_xfn',''),(13088,4264,'_menu_item_url',''),(13089,4265,'_menu_item_type','post_type'),(13090,4265,'_menu_item_menu_item_parent','4097'),(13091,4265,'_menu_item_object_id','113'),(13092,4265,'_menu_item_object','page'),(13093,4265,'_menu_item_target',''),(13094,4265,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13095,4265,'_menu_item_xfn',''),(13096,4265,'_menu_item_url',''),(13097,4266,'_menu_item_type','post_type'),(13098,4266,'_menu_item_menu_item_parent','4102'),(13099,4266,'_menu_item_object_id','129'),(13100,4266,'_menu_item_object','page'),(13101,4266,'_menu_item_target',''),(13102,4266,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13103,4266,'_menu_item_xfn',''),(13104,4266,'_menu_item_url',''),(13105,4267,'_menu_item_type','post_type'),(13106,4267,'_menu_item_menu_item_parent','4104'),(13107,4267,'_menu_item_object_id','1890'),(13108,4267,'_menu_item_object','tribe_events'),(13109,4267,'_menu_item_target',''),(13110,4267,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13111,4267,'_menu_item_xfn',''),(13112,4267,'_menu_item_url',''),(13113,4268,'_menu_item_type','post_type'),(13114,4268,'_menu_item_menu_item_parent','4107'),(13115,4268,'_menu_item_object_id','1580'),(13116,4268,'_menu_item_object','page'),(13117,4268,'_menu_item_target',''),(13118,4268,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13119,4268,'_menu_item_xfn',''),(13120,4268,'_menu_item_url',''),(13121,4269,'_menu_item_type','post_type'),(13122,4269,'_menu_item_menu_item_parent','4107'),(13123,4269,'_menu_item_object_id','2329'),(13124,4269,'_menu_item_object','page'),(13125,4269,'_menu_item_target',''),(13126,4269,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13127,4269,'_menu_item_xfn',''),(13128,4269,'_menu_item_url',''),(13129,4270,'_menu_item_type','post_type'),(13130,4270,'_menu_item_menu_item_parent','4107'),(13131,4270,'_menu_item_object_id','2106'),(13132,4270,'_menu_item_object','page'),(13133,4270,'_menu_item_target',''),(13134,4270,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13135,4270,'_menu_item_xfn',''),(13136,4270,'_menu_item_url',''),(13137,4271,'_menu_item_type','post_type'),(13138,4271,'_menu_item_menu_item_parent','4108'),(13139,4271,'_menu_item_object_id','1242'),(13140,4271,'_menu_item_object','page'),(13141,4271,'_menu_item_target',''),(13142,4271,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13143,4271,'_menu_item_xfn',''),(13144,4271,'_menu_item_url',''),(13145,4272,'_menu_item_type','post_type'),(13146,4272,'_menu_item_menu_item_parent','4108'),(13147,4272,'_menu_item_object_id','1440'),(13148,4272,'_menu_item_object','page'),(13149,4272,'_menu_item_target',''),(13150,4272,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13151,4272,'_menu_item_xfn',''),(13152,4272,'_menu_item_url',''),(13153,4273,'_menu_item_type','post_type'),(13154,4273,'_menu_item_menu_item_parent','4108'),(13155,4273,'_menu_item_object_id','1324'),(13156,4273,'_menu_item_object','page'),(13157,4273,'_menu_item_target',''),(13158,4273,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13159,4273,'_menu_item_xfn',''),(13160,4273,'_menu_item_url',''),(13161,4274,'_menu_item_type','post_type'),(13162,4274,'_menu_item_menu_item_parent','4108'),(13163,4274,'_menu_item_object_id','741'),(13164,4274,'_menu_item_object','post'),(13165,4274,'_menu_item_target',''),(13166,4274,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13167,4274,'_menu_item_xfn',''),(13168,4274,'_menu_item_url',''),(13169,4275,'_menu_item_type','post_type'),(13170,4275,'_menu_item_menu_item_parent','4108'),(13171,4275,'_menu_item_object_id','1365'),(13172,4275,'_menu_item_object','post'),(13173,4275,'_menu_item_target',''),(13174,4275,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13175,4275,'_menu_item_xfn',''),(13176,4275,'_menu_item_url',''),(13177,4276,'_menu_item_type','post_type'),(13178,4276,'_menu_item_menu_item_parent','4108'),(13179,4276,'_menu_item_object_id','1189'),(13180,4276,'_menu_item_object','post'),(13181,4276,'_menu_item_target',''),(13182,4276,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13183,4276,'_menu_item_xfn',''),(13184,4276,'_menu_item_url',''),(13185,4277,'_menu_item_type','post_type'),(13186,4277,'_menu_item_menu_item_parent','4108'),(13187,4277,'_menu_item_object_id','1544'),(13188,4277,'_menu_item_object','post'),(13189,4277,'_menu_item_target',''),(13190,4277,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13191,4277,'_menu_item_xfn',''),(13192,4277,'_menu_item_url',''),(13193,4278,'_menu_item_type','post_type'),(13194,4278,'_menu_item_menu_item_parent','4108'),(13195,4278,'_menu_item_object_id','1524'),(13196,4278,'_menu_item_object','post'),(13197,4278,'_menu_item_target',''),(13198,4278,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13199,4278,'_menu_item_xfn',''),(13200,4278,'_menu_item_url',''),(13201,4279,'_menu_item_type','post_type'),(13202,4279,'_menu_item_menu_item_parent','4107'),(13203,4279,'_menu_item_object_id','1863'),(13204,4279,'_menu_item_object','page'),(13205,4279,'_menu_item_target',''),(13206,4279,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13207,4279,'_menu_item_xfn',''),(13208,4279,'_menu_item_url',''),(13209,4280,'_menu_item_type','post_type'),(13210,4280,'_menu_item_menu_item_parent','4107'),(13211,4280,'_menu_item_object_id','1328'),(13212,4280,'_menu_item_object','page'),(13213,4280,'_menu_item_target',''),(13214,4280,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13215,4280,'_menu_item_xfn',''),(13216,4280,'_menu_item_url',''),(13225,4282,'_menu_item_type','post_type'),(13226,4282,'_menu_item_menu_item_parent','4113'),(13227,4282,'_menu_item_object_id','4123'),(13228,4282,'_menu_item_object','page'),(13229,4282,'_menu_item_target',''),(13230,4282,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13231,4282,'_menu_item_xfn',''),(13232,4282,'_menu_item_url',''),(13233,4283,'_menu_item_type','post_type'),(13234,4283,'_menu_item_menu_item_parent','4114'),(13235,4283,'_menu_item_object_id','1740'),(13236,4283,'_menu_item_object','product'),(13237,4283,'_menu_item_target',''),(13238,4283,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13239,4283,'_menu_item_xfn',''),(13240,4283,'_menu_item_url',''),(13241,4284,'_menu_item_type','post_type'),(13242,4284,'_menu_item_menu_item_parent','4114'),(13243,4284,'_menu_item_object_id','1908'),(13244,4284,'_menu_item_object','product'),(13245,4284,'_menu_item_target',''),(13246,4284,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13247,4284,'_menu_item_xfn',''),(13248,4284,'_menu_item_url',''),(13249,4285,'_menu_item_type','post_type'),(13250,4285,'_menu_item_menu_item_parent','4114'),(13251,4285,'_menu_item_object_id','1880'),(13252,4285,'_menu_item_object','product'),(13253,4285,'_menu_item_target',''),(13254,4285,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13255,4285,'_menu_item_xfn',''),(13256,4285,'_menu_item_url',''),(13257,4286,'_menu_item_type','post_type'),(13258,4286,'_menu_item_menu_item_parent','4114'),(13259,4286,'_menu_item_object_id','1829'),(13260,4286,'_menu_item_object','product'),(13261,4286,'_menu_item_target',''),(13262,4286,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13263,4286,'_menu_item_xfn',''),(13264,4286,'_menu_item_url',''),(13265,4287,'_menu_item_type','post_type'),(13266,4287,'_menu_item_menu_item_parent','4115'),(13267,4287,'_menu_item_object_id','3298'),(13268,4287,'_menu_item_object','page'),(13269,4287,'_menu_item_target',''),(13270,4287,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13271,4287,'_menu_item_xfn',''),(13272,4287,'_menu_item_url',''),(13273,4288,'_menu_item_type','post_type'),(13274,4288,'_menu_item_menu_item_parent','4115'),(13275,4288,'_menu_item_object_id','3305'),(13276,4288,'_menu_item_object','page'),(13277,4288,'_menu_item_target',''),(13278,4288,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13279,4288,'_menu_item_xfn',''),(13280,4288,'_menu_item_url',''),(13281,4289,'_menu_item_type','post_type'),(13282,4289,'_menu_item_menu_item_parent','4115'),(13283,4289,'_menu_item_object_id','3312'),(13284,4289,'_menu_item_object','page'),(13285,4289,'_menu_item_target',''),(13286,4289,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13287,4289,'_menu_item_xfn',''),(13288,4289,'_menu_item_url',''),(13289,4290,'_menu_item_type','post_type'),(13290,4290,'_menu_item_menu_item_parent','4115'),(13291,4290,'_menu_item_object_id','3321'),(13292,4290,'_menu_item_object','page'),(13293,4290,'_menu_item_target',''),(13294,4290,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13295,4290,'_menu_item_xfn',''),(13296,4290,'_menu_item_url',''),(13297,4291,'_menu_item_type','post_type'),(13298,4291,'_menu_item_menu_item_parent','4115'),(13299,4291,'_menu_item_object_id','3325'),(13300,4291,'_menu_item_object','page'),(13301,4291,'_menu_item_target',''),(13302,4291,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13303,4291,'_menu_item_xfn',''),(13304,4291,'_menu_item_url',''),(13305,4292,'_menu_item_type','post_type'),(13306,4292,'_menu_item_menu_item_parent','4115'),(13307,4292,'_menu_item_object_id','3327'),(13308,4292,'_menu_item_object','page'),(13309,4292,'_menu_item_target',''),(13310,4292,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13311,4292,'_menu_item_xfn',''),(13312,4292,'_menu_item_url',''),(13313,4293,'_menu_item_type','post_type'),(13314,4293,'_menu_item_menu_item_parent','4116'),(13315,4293,'_menu_item_object_id','8'),(13316,4293,'_menu_item_object','page'),(13317,4293,'_menu_item_target',''),(13318,4293,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13319,4293,'_menu_item_xfn',''),(13320,4293,'_menu_item_url',''),(13321,4294,'_menu_item_type','post_type'),(13322,4294,'_menu_item_menu_item_parent','4116'),(13323,4294,'_menu_item_object_id','6'),(13324,4294,'_menu_item_object','page'),(13325,4294,'_menu_item_target',''),(13326,4294,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13327,4294,'_menu_item_xfn',''),(13328,4294,'_menu_item_url',''),(13329,4295,'_menu_item_type','post_type'),(13330,4295,'_menu_item_menu_item_parent','4116'),(13331,4295,'_menu_item_object_id','7'),(13332,4295,'_menu_item_object','page'),(13333,4295,'_menu_item_target',''),(13334,4295,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13335,4295,'_menu_item_xfn',''),(13336,4295,'_menu_item_url',''),(13337,4296,'_menu_item_type','post_type'),(13338,4296,'_menu_item_menu_item_parent','4118'),(13339,4296,'_menu_item_object_id','2621'),(13340,4296,'_menu_item_object','page'),(13341,4296,'_menu_item_target',''),(13342,4296,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13343,4296,'_menu_item_xfn',''),(13344,4296,'_menu_item_url',''),(13345,4297,'_menu_item_type','post_type'),(13346,4297,'_menu_item_menu_item_parent','4118'),(13347,4297,'_menu_item_object_id','1092'),(13348,4297,'_menu_item_object','page'),(13349,4297,'_menu_item_target',''),(13350,4297,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13351,4297,'_menu_item_xfn',''),(13352,4297,'_menu_item_url',''),(13353,4298,'_menu_item_type','post_type'),(13354,4298,'_menu_item_menu_item_parent','4118'),(13355,4298,'_menu_item_object_id','1106'),(13356,4298,'_menu_item_object','page'),(13357,4298,'_menu_item_target',''),(13358,4298,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13359,4298,'_menu_item_xfn',''),(13360,4298,'_menu_item_url',''),(13361,4299,'_menu_item_type','post_type'),(13362,4299,'_menu_item_menu_item_parent','4118'),(13363,4299,'_menu_item_object_id','1103'),(13364,4299,'_menu_item_object','page'),(13365,4299,'_menu_item_target',''),(13366,4299,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13367,4299,'_menu_item_xfn',''),(13368,4299,'_menu_item_url',''),(13369,4300,'_menu_item_type','post_type'),(13370,4300,'_menu_item_menu_item_parent','4118'),(13371,4300,'_menu_item_object_id','1074'),(13372,4300,'_menu_item_object','page'),(13373,4300,'_menu_item_target',''),(13374,4300,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13375,4300,'_menu_item_xfn',''),(13376,4300,'_menu_item_url',''),(13377,4301,'_menu_item_type','post_type'),(13378,4301,'_menu_item_menu_item_parent','4118'),(13379,4301,'_menu_item_object_id','2641'),(13380,4301,'_menu_item_object','page'),(13381,4301,'_menu_item_target',''),(13382,4301,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13383,4301,'_menu_item_xfn',''),(13384,4301,'_menu_item_url',''),(13385,4302,'_menu_item_type','post_type'),(13386,4302,'_menu_item_menu_item_parent','4118'),(13387,4302,'_menu_item_object_id','2697'),(13388,4302,'_menu_item_object','page'),(13389,4302,'_menu_item_target',''),(13390,4302,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13391,4302,'_menu_item_xfn',''),(13392,4302,'_menu_item_url',''),(13393,4303,'_menu_item_type','post_type'),(13394,4303,'_menu_item_menu_item_parent','4118'),(13395,4303,'_menu_item_object_id','1111'),(13396,4303,'_menu_item_object','page'),(13397,4303,'_menu_item_target',''),(13398,4303,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13399,4303,'_menu_item_xfn',''),(13400,4303,'_menu_item_url',''),(13401,4304,'_menu_item_type','post_type'),(13402,4304,'_menu_item_menu_item_parent','4119'),(13403,4304,'_menu_item_object_id','910'),(13404,4304,'_menu_item_object','page'),(13405,4304,'_menu_item_target',''),(13406,4304,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13407,4304,'_menu_item_xfn',''),(13408,4304,'_menu_item_url',''),(13409,4305,'_menu_item_type','post_type'),(13410,4305,'_menu_item_menu_item_parent','4119'),(13411,4305,'_menu_item_object_id','927'),(13412,4305,'_menu_item_object','page'),(13413,4305,'_menu_item_target',''),(13414,4305,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13415,4305,'_menu_item_xfn',''),(13416,4305,'_menu_item_url',''),(13417,4306,'_menu_item_type','post_type'),(13418,4306,'_menu_item_menu_item_parent','4119'),(13419,4306,'_menu_item_object_id','949'),(13420,4306,'_menu_item_object','page'),(13421,4306,'_menu_item_target',''),(13422,4306,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13423,4306,'_menu_item_xfn',''),(13424,4306,'_menu_item_url',''),(13425,4307,'_menu_item_type','post_type'),(13426,4307,'_menu_item_menu_item_parent','4119'),(13427,4307,'_menu_item_object_id','960'),(13428,4307,'_menu_item_object','page'),(13429,4307,'_menu_item_target',''),(13430,4307,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13431,4307,'_menu_item_xfn',''),(13432,4307,'_menu_item_url',''),(13433,4308,'_menu_item_type','post_type'),(13434,4308,'_menu_item_menu_item_parent','4119'),(13435,4308,'_menu_item_object_id','1024'),(13436,4308,'_menu_item_object','page'),(13437,4308,'_menu_item_target',''),(13438,4308,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13439,4308,'_menu_item_xfn',''),(13440,4308,'_menu_item_url',''),(13441,4309,'_menu_item_type','post_type'),(13442,4309,'_menu_item_menu_item_parent','4119'),(13443,4309,'_menu_item_object_id','980'),(13444,4309,'_menu_item_object','page'),(13445,4309,'_menu_item_target',''),(13446,4309,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13447,4309,'_menu_item_xfn',''),(13448,4309,'_menu_item_url',''),(13449,4310,'_menu_item_type','post_type'),(13450,4310,'_menu_item_menu_item_parent','4119'),(13451,4310,'_menu_item_object_id','1123'),(13452,4310,'_menu_item_object','page'),(13453,4310,'_menu_item_target',''),(13454,4310,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13455,4310,'_menu_item_xfn',''),(13456,4310,'_menu_item_url',''),(13457,4311,'_menu_item_type','post_type'),(13458,4311,'_menu_item_menu_item_parent','4119'),(13459,4311,'_menu_item_object_id','999'),(13460,4311,'_menu_item_object','page'),(13461,4311,'_menu_item_target',''),(13462,4311,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13463,4311,'_menu_item_xfn',''),(13464,4311,'_menu_item_url',''),(13465,4312,'_menu_item_type','post_type'),(13466,4312,'_menu_item_menu_item_parent','4119'),(13467,4312,'_menu_item_object_id','1144'),(13468,4312,'_menu_item_object','page'),(13469,4312,'_menu_item_target',''),(13470,4312,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13471,4312,'_menu_item_xfn',''),(13472,4312,'_menu_item_url',''),(13473,4313,'_menu_item_type','post_type'),(13474,4313,'_menu_item_menu_item_parent','4120'),(13475,4313,'_menu_item_object_id','670'),(13476,4313,'_menu_item_object','page'),(13477,4313,'_menu_item_target',''),(13478,4313,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13479,4313,'_menu_item_xfn',''),(13480,4313,'_menu_item_url',''),(13481,4314,'_menu_item_type','post_type'),(13482,4314,'_menu_item_menu_item_parent','4120'),(13483,4314,'_menu_item_object_id','2710'),(13484,4314,'_menu_item_object','page'),(13485,4314,'_menu_item_target',''),(13486,4314,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13487,4314,'_menu_item_xfn',''),(13488,4314,'_menu_item_url',''),(13489,4315,'_menu_item_type','post_type'),(13490,4315,'_menu_item_menu_item_parent','4120'),(13491,4315,'_menu_item_object_id','684'),(13492,4315,'_menu_item_object','page'),(13493,4315,'_menu_item_target',''),(13494,4315,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13495,4315,'_menu_item_xfn',''),(13496,4315,'_menu_item_url',''),(13497,4316,'_menu_item_type','post_type'),(13498,4316,'_menu_item_menu_item_parent','4120'),(13499,4316,'_menu_item_object_id','727'),(13500,4316,'_menu_item_object','page'),(13501,4316,'_menu_item_target',''),(13502,4316,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13503,4316,'_menu_item_xfn',''),(13504,4316,'_menu_item_url',''),(13505,4317,'_menu_item_type','post_type'),(13506,4317,'_menu_item_menu_item_parent','4120'),(13507,4317,'_menu_item_object_id','776'),(13508,4317,'_menu_item_object','page'),(13509,4317,'_menu_item_target',''),(13510,4317,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13511,4317,'_menu_item_xfn',''),(13512,4317,'_menu_item_url',''),(13513,4318,'_menu_item_type','post_type'),(13514,4318,'_menu_item_menu_item_parent','4120'),(13515,4318,'_menu_item_object_id','897'),(13516,4318,'_menu_item_object','page'),(13517,4318,'_menu_item_target',''),(13518,4318,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13519,4318,'_menu_item_xfn',''),(13520,4318,'_menu_item_url',''),(13521,4319,'_menu_item_type','post_type'),(13522,4319,'_menu_item_menu_item_parent','4120'),(13523,4319,'_menu_item_object_id','2654'),(13524,4319,'_menu_item_object','page'),(13525,4319,'_menu_item_target',''),(13526,4319,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13527,4319,'_menu_item_xfn',''),(13528,4319,'_menu_item_url',''),(13529,4320,'_menu_item_type','post_type'),(13530,4320,'_menu_item_menu_item_parent','4120'),(13531,4320,'_menu_item_object_id','881'),(13532,4320,'_menu_item_object','page'),(13533,4320,'_menu_item_target',''),(13534,4320,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13535,4320,'_menu_item_xfn',''),(13536,4320,'_menu_item_url',''),(13537,4321,'_menu_item_type','post_type'),(13538,4321,'_menu_item_menu_item_parent','4120'),(13539,4321,'_menu_item_object_id','2608'),(13540,4321,'_menu_item_object','page'),(13541,4321,'_menu_item_target',''),(13542,4321,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13543,4321,'_menu_item_xfn',''),(13544,4321,'_menu_item_url',''),(13545,4322,'_menu_item_type','post_type'),(13546,4322,'_menu_item_menu_item_parent','4121'),(13547,4322,'_menu_item_object_id','590'),(13548,4322,'_menu_item_object','page'),(13549,4322,'_menu_item_target',''),(13550,4322,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13551,4322,'_menu_item_xfn',''),(13552,4322,'_menu_item_url',''),(13553,4323,'_menu_item_type','post_type'),(13554,4323,'_menu_item_menu_item_parent','4121'),(13555,4323,'_menu_item_object_id','607'),(13556,4323,'_menu_item_object','page'),(13557,4323,'_menu_item_target',''),(13558,4323,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13559,4323,'_menu_item_xfn',''),(13560,4323,'_menu_item_url',''),(13561,4324,'_menu_item_type','post_type'),(13562,4324,'_menu_item_menu_item_parent','4121'),(13563,4324,'_menu_item_object_id','638'),(13564,4324,'_menu_item_object','page'),(13565,4324,'_menu_item_target',''),(13566,4324,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13567,4324,'_menu_item_xfn',''),(13568,4324,'_menu_item_url',''),(13569,4325,'_menu_item_type','post_type'),(13570,4325,'_menu_item_menu_item_parent','4121'),(13571,4325,'_menu_item_object_id','653'),(13572,4325,'_menu_item_object','page'),(13573,4325,'_menu_item_target',''),(13574,4325,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13575,4325,'_menu_item_xfn',''),(13576,4325,'_menu_item_url',''),(13577,4326,'_menu_item_type','post_type'),(13578,4326,'_menu_item_menu_item_parent','4121'),(13579,4326,'_menu_item_object_id','1117'),(13580,4326,'_menu_item_object','page'),(13581,4326,'_menu_item_target',''),(13582,4326,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13583,4326,'_menu_item_xfn',''),(13584,4326,'_menu_item_url',''),(13585,4327,'_menu_item_type','post_type'),(13586,4327,'_menu_item_menu_item_parent','4121'),(13587,4327,'_menu_item_object_id','2724'),(13588,4327,'_menu_item_object','page'),(13589,4327,'_menu_item_target',''),(13590,4327,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13591,4327,'_menu_item_xfn',''),(13592,4327,'_menu_item_url',''),(13593,4328,'_menu_item_type','post_type'),(13594,4328,'_menu_item_menu_item_parent','4121'),(13595,4328,'_menu_item_object_id','658'),(13596,4328,'_menu_item_object','page'),(13597,4328,'_menu_item_target',''),(13598,4328,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13599,4328,'_menu_item_xfn',''),(13600,4328,'_menu_item_url',''),(13601,4329,'_menu_item_type','post_type'),(13602,4329,'_menu_item_menu_item_parent','4121'),(13603,4329,'_menu_item_object_id','1059'),(13604,4329,'_menu_item_object','page'),(13605,4329,'_menu_item_target',''),(13606,4329,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13607,4329,'_menu_item_xfn',''),(13608,4329,'_menu_item_url',''),(13609,4330,'_menu_item_type','post_type'),(13610,4330,'_menu_item_menu_item_parent','4121'),(13611,4330,'_menu_item_object_id','1119'),(13612,4330,'_menu_item_object','page'),(13613,4330,'_menu_item_target',''),(13614,4330,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13615,4330,'_menu_item_xfn',''),(13616,4330,'_menu_item_url',''),(13617,4331,'_menu_item_type','post_type'),(13618,4331,'_menu_item_menu_item_parent','4118'),(13619,4331,'_menu_item_object_id','4125'),(13620,4331,'_menu_item_object','page'),(13621,4331,'_menu_item_target',''),(13622,4331,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13623,4331,'_menu_item_xfn',''),(13624,4331,'_menu_item_url',''),(13625,4332,'_menu_item_type','post_type'),(13626,4332,'_menu_item_menu_item_parent','4082'),(13627,4332,'_menu_item_object_id','4125'),(13628,4332,'_menu_item_object','page'),(13629,4332,'_menu_item_target',''),(13630,4332,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13631,4332,'_menu_item_xfn',''),(13632,4332,'_menu_item_url',''),(13633,4333,'_wp_attached_file','revslider/h7-slide-1-background.jpg'),(13634,4333,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1297;s:6:\"height\";i:696;s:4:\"file\";s:35:\"revslider/h7-slide-1-background.jpg\";s:8:\"filesize\";i:83044;s:5:\"sizes\";a:4:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:33:\"h7-slide-1-background-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20553;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:33:\"h7-slide-1-background-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4191;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:33:\"h7-slide-1-background-600x322.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:322;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32781;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"h7-slide-1-background-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7395;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13636,126,'_bbp_reply_count_hidden','0'),(13637,126,'_bbp_total_reply_count_hidden','0'),(13639,126,'_bbp_total_topic_count_hidden','-1'),(13640,126,'_bbp_forum_id','0'),(13641,3236,'_bbp_voice_count','0'),(13642,129,'_edit_lock','1730215025:1'),(13643,129,'_edit_last','1'),(13644,4335,'_wpb_shortcodes_custom_css','.vc_custom_1497440561376{padding-top: 100px !important;padding-bottom: 80px !important;}.vc_custom_1495720773265{padding-bottom: 70px !important;}'),(13645,289,'_edit_lock','1730371601:1'),(13646,289,'_edit_last','1'),(13648,306,'_edit_lock','1730371417:1'),(13649,306,'_edit_last','1'),(13650,306,'show_footer_custom_widget_areas','no'),(13651,4337,'_wpb_shortcodes_custom_css','.vc_custom_1495809860309{padding-bottom: 68px !important;}'),(13652,1074,'_edit_lock','1729960101:1'),(13663,4130,'_wp_old_date','2024-10-20'),(13664,4130,'_menu_item_anchor',''),(13665,4130,'_menu_item_nolink',''),(13666,4130,'_menu_item_hide',''),(13667,4130,'_menu_item_type_menu',''),(13668,4130,'_menu_item_icon','null'),(13669,4130,'_menu_item_icon_pack',''),(13670,4130,'_menu_item_sidebar',''),(13671,4130,'_menu_item_wide_position',''),(13672,4130,'_menu_item_featured_icon',''),(13673,4138,'_wp_old_date','2024-10-20'),(13674,4138,'_menu_item_anchor',''),(13675,4138,'_menu_item_nolink',''),(13676,4138,'_menu_item_hide','hide'),(13677,4138,'_menu_item_type_menu',''),(13678,4138,'_menu_item_icon','null'),(13679,4138,'_menu_item_icon_pack',''),(13680,4138,'_menu_item_sidebar',''),(13681,4138,'_menu_item_wide_position',''),(13682,4138,'_menu_item_featured_icon',''),(13683,4199,'_wp_old_date','2024-10-20'),(13684,4199,'_menu_item_anchor',''),(13685,4199,'_menu_item_nolink',''),(13686,4199,'_menu_item_hide','hide'),(13687,4199,'_menu_item_type_menu',''),(13688,4199,'_menu_item_icon','null'),(13689,4199,'_menu_item_icon_pack',''),(13690,4199,'_menu_item_sidebar',''),(13691,4199,'_menu_item_wide_position',''),(13692,4199,'_menu_item_featured_icon',''),(13693,4159,'_wp_old_date','2024-10-20'),(13694,4159,'_menu_item_anchor',''),(13695,4159,'_menu_item_nolink',''),(13696,4159,'_menu_item_hide','hide'),(13697,4159,'_menu_item_type_menu',''),(13698,4159,'_menu_item_icon','null'),(13699,4159,'_menu_item_icon_pack',''),(13700,4159,'_menu_item_sidebar',''),(13701,4159,'_menu_item_wide_position',''),(13702,4159,'_menu_item_featured_icon',''),(13703,4201,'_wp_old_date','2024-10-20'),(13704,4201,'_menu_item_anchor',''),(13705,4201,'_menu_item_nolink',''),(13706,4201,'_menu_item_hide','hide'),(13707,4201,'_menu_item_type_menu',''),(13708,4201,'_menu_item_icon','null'),(13709,4201,'_menu_item_icon_pack',''),(13710,4201,'_menu_item_sidebar',''),(13711,4201,'_menu_item_wide_position',''),(13712,4201,'_menu_item_featured_icon',''),(13713,4208,'_wp_old_date','2024-10-20'),(13714,4208,'_menu_item_anchor',''),(13715,4208,'_menu_item_nolink',''),(13716,4208,'_menu_item_hide','hide'),(13717,4208,'_menu_item_type_menu',''),(13718,4208,'_menu_item_icon','null'),(13719,4208,'_menu_item_icon_pack',''),(13720,4208,'_menu_item_sidebar',''),(13721,4208,'_menu_item_wide_position',''),(13722,4208,'_menu_item_featured_icon',''),(13723,4207,'_wp_old_date','2024-10-20'),(13724,4207,'_menu_item_anchor',''),(13725,4207,'_menu_item_nolink',''),(13726,4207,'_menu_item_hide','hide'),(13727,4207,'_menu_item_type_menu',''),(13728,4207,'_menu_item_icon','null'),(13729,4207,'_menu_item_icon_pack',''),(13730,4207,'_menu_item_sidebar',''),(13731,4207,'_menu_item_wide_position',''),(13732,4207,'_menu_item_featured_icon',''),(13733,4202,'_wp_old_date','2024-10-20'),(13734,4202,'_menu_item_anchor',''),(13735,4202,'_menu_item_nolink',''),(13736,4202,'_menu_item_hide','hide'),(13737,4202,'_menu_item_type_menu',''),(13738,4202,'_menu_item_icon','null'),(13739,4202,'_menu_item_icon_pack',''),(13740,4202,'_menu_item_sidebar',''),(13741,4202,'_menu_item_wide_position',''),(13742,4202,'_menu_item_featured_icon',''),(13743,4140,'_wp_old_date','2024-10-20'),(13744,4140,'_menu_item_anchor',''),(13745,4140,'_menu_item_nolink',''),(13746,4140,'_menu_item_hide','hide'),(13747,4140,'_menu_item_type_menu',''),(13748,4140,'_menu_item_icon','null'),(13749,4140,'_menu_item_icon_pack',''),(13750,4140,'_menu_item_sidebar',''),(13751,4140,'_menu_item_wide_position',''),(13752,4140,'_menu_item_featured_icon',''),(13753,4176,'_wp_old_date','2024-10-20'),(13754,4176,'_menu_item_anchor',''),(13755,4176,'_menu_item_nolink',''),(13756,4176,'_menu_item_hide','hide'),(13757,4176,'_menu_item_type_menu',''),(13758,4176,'_menu_item_icon','null'),(13759,4176,'_menu_item_icon_pack',''),(13760,4176,'_menu_item_sidebar',''),(13761,4176,'_menu_item_wide_position',''),(13762,4176,'_menu_item_featured_icon',''),(13763,4200,'_wp_old_date','2024-10-20'),(13764,4200,'_menu_item_anchor',''),(13765,4200,'_menu_item_nolink',''),(13766,4200,'_menu_item_hide','hide'),(13767,4200,'_menu_item_type_menu',''),(13768,4200,'_menu_item_icon','null'),(13769,4200,'_menu_item_icon_pack',''),(13770,4200,'_menu_item_sidebar',''),(13771,4200,'_menu_item_wide_position',''),(13772,4200,'_menu_item_featured_icon',''),(13773,4209,'_wp_old_date','2024-10-20'),(13774,4209,'_menu_item_anchor',''),(13775,4209,'_menu_item_nolink',''),(13776,4209,'_menu_item_hide','hide'),(13777,4209,'_menu_item_type_menu',''),(13778,4209,'_menu_item_icon','null'),(13779,4209,'_menu_item_icon_pack',''),(13780,4209,'_menu_item_sidebar',''),(13781,4209,'_menu_item_wide_position',''),(13782,4209,'_menu_item_featured_icon',''),(13783,4249,'_wp_old_date','2024-10-20'),(13784,4249,'_menu_item_anchor',''),(13785,4249,'_menu_item_nolink',''),(13786,4249,'_menu_item_hide','hide'),(13787,4249,'_menu_item_type_menu',''),(13788,4249,'_menu_item_icon','null'),(13789,4249,'_menu_item_icon_pack',''),(13790,4249,'_menu_item_sidebar',''),(13791,4249,'_menu_item_wide_position',''),(13792,4249,'_menu_item_featured_icon',''),(13793,4067,'_wp_old_date','2024-10-20'),(13794,4067,'_menu_item_anchor',''),(13795,4067,'_menu_item_nolink',''),(13796,4067,'_menu_item_hide',''),(13797,4067,'_menu_item_type_menu',''),(13798,4067,'_menu_item_icon','null'),(13799,4067,'_menu_item_icon_pack',''),(13800,4067,'_menu_item_sidebar',''),(13801,4067,'_menu_item_wide_position',''),(13802,4067,'_menu_item_featured_icon',''),(13803,4139,'_wp_old_date','2024-10-20'),(13804,4139,'_menu_item_anchor',''),(13805,4139,'_menu_item_nolink',''),(13806,4139,'_menu_item_hide',''),(13807,4139,'_menu_item_type_menu',''),(13808,4139,'_menu_item_icon','null'),(13809,4139,'_menu_item_icon_pack',''),(13810,4139,'_menu_item_sidebar',''),(13811,4139,'_menu_item_wide_position',''),(13812,4139,'_menu_item_featured_icon',''),(13813,4068,'_wp_old_date','2024-10-20'),(13814,4068,'_menu_item_anchor',''),(13815,4068,'_menu_item_nolink',''),(13816,4068,'_menu_item_hide',''),(13817,4068,'_menu_item_type_menu',''),(13818,4068,'_menu_item_icon','null'),(13819,4068,'_menu_item_icon_pack',''),(13820,4068,'_menu_item_sidebar',''),(13821,4068,'_menu_item_wide_position',''),(13822,4068,'_menu_item_featured_icon',''),(13823,4136,'_wp_old_date','2024-10-20'),(13824,4136,'_menu_item_anchor',''),(13825,4136,'_menu_item_nolink',''),(13826,4136,'_menu_item_hide',''),(13827,4136,'_menu_item_type_menu',''),(13828,4136,'_menu_item_icon','null'),(13829,4136,'_menu_item_icon_pack',''),(13830,4136,'_menu_item_sidebar',''),(13831,4136,'_menu_item_wide_position',''),(13832,4136,'_menu_item_featured_icon',''),(13833,4064,'_wp_old_date','2024-10-20'),(13834,4064,'_menu_item_anchor',''),(13835,4064,'_menu_item_nolink',''),(13836,4064,'_menu_item_hide','hide'),(13837,4064,'_menu_item_type_menu',''),(13838,4064,'_menu_item_icon','null'),(13839,4064,'_menu_item_icon_pack',''),(13840,4064,'_menu_item_sidebar',''),(13841,4064,'_menu_item_wide_position',''),(13842,4064,'_menu_item_featured_icon',''),(13843,4212,'_wp_old_date','2024-10-20'),(13844,4212,'_menu_item_anchor',''),(13845,4212,'_menu_item_nolink',''),(13846,4212,'_menu_item_hide',''),(13847,4212,'_menu_item_type_menu',''),(13848,4212,'_menu_item_icon','null'),(13849,4212,'_menu_item_icon_pack',''),(13850,4212,'_menu_item_sidebar',''),(13851,4212,'_menu_item_wide_position',''),(13852,4212,'_menu_item_featured_icon',''),(13853,4214,'_wp_old_date','2024-10-20'),(13854,4214,'_menu_item_anchor',''),(13855,4214,'_menu_item_nolink',''),(13856,4214,'_menu_item_hide',''),(13857,4214,'_menu_item_type_menu',''),(13858,4214,'_menu_item_icon','null'),(13859,4214,'_menu_item_icon_pack',''),(13860,4214,'_menu_item_sidebar',''),(13861,4214,'_menu_item_wide_position',''),(13862,4214,'_menu_item_featured_icon',''),(13863,4210,'_wp_old_date','2024-10-20'),(13864,4210,'_menu_item_anchor',''),(13865,4210,'_menu_item_nolink',''),(13866,4210,'_menu_item_hide','hide'),(13867,4210,'_menu_item_type_menu',''),(13868,4210,'_menu_item_icon','null'),(13869,4210,'_menu_item_icon_pack',''),(13870,4210,'_menu_item_sidebar',''),(13871,4210,'_menu_item_wide_position',''),(13872,4210,'_menu_item_featured_icon',''),(13873,4065,'_wp_old_date','2024-10-20'),(13874,4065,'_menu_item_anchor',''),(13875,4065,'_menu_item_nolink',''),(13876,4065,'_menu_item_hide','hide'),(13877,4065,'_menu_item_type_menu',''),(13878,4065,'_menu_item_icon','null'),(13879,4065,'_menu_item_icon_pack',''),(13880,4065,'_menu_item_sidebar',''),(13881,4065,'_menu_item_wide_position',''),(13882,4065,'_menu_item_featured_icon',''),(13883,4206,'_wp_old_date','2024-10-20'),(13884,4206,'_menu_item_anchor',''),(13885,4206,'_menu_item_nolink',''),(13886,4206,'_menu_item_hide',''),(13887,4206,'_menu_item_type_menu',''),(13888,4206,'_menu_item_icon','null'),(13889,4206,'_menu_item_icon_pack',''),(13890,4206,'_menu_item_sidebar',''),(13891,4206,'_menu_item_wide_position',''),(13892,4206,'_menu_item_featured_icon',''),(13893,4204,'_wp_old_date','2024-10-20'),(13894,4204,'_menu_item_anchor',''),(13895,4204,'_menu_item_nolink',''),(13896,4204,'_menu_item_hide',''),(13897,4204,'_menu_item_type_menu',''),(13898,4204,'_menu_item_icon','null'),(13899,4204,'_menu_item_icon_pack',''),(13900,4204,'_menu_item_sidebar',''),(13901,4204,'_menu_item_wide_position',''),(13902,4204,'_menu_item_featured_icon',''),(13903,4205,'_wp_old_date','2024-10-20'),(13904,4205,'_menu_item_anchor',''),(13905,4205,'_menu_item_nolink',''),(13906,4205,'_menu_item_hide',''),(13907,4205,'_menu_item_type_menu',''),(13908,4205,'_menu_item_icon','null'),(13909,4205,'_menu_item_icon_pack',''),(13910,4205,'_menu_item_sidebar',''),(13911,4205,'_menu_item_wide_position',''),(13912,4205,'_menu_item_featured_icon',''),(13913,4220,'_wp_old_date','2024-10-20'),(13914,4220,'_menu_item_anchor',''),(13915,4220,'_menu_item_nolink',''),(13916,4220,'_menu_item_hide',''),(13917,4220,'_menu_item_type_menu',''),(13918,4220,'_menu_item_icon','null'),(13919,4220,'_menu_item_icon_pack',''),(13920,4220,'_menu_item_sidebar',''),(13921,4220,'_menu_item_wide_position',''),(13922,4220,'_menu_item_featured_icon',''),(13923,4223,'_wp_old_date','2024-10-20'),(13924,4223,'_menu_item_anchor',''),(13925,4223,'_menu_item_nolink',''),(13926,4223,'_menu_item_hide',''),(13927,4223,'_menu_item_type_menu',''),(13928,4223,'_menu_item_icon','null'),(13929,4223,'_menu_item_icon_pack',''),(13930,4223,'_menu_item_sidebar',''),(13931,4223,'_menu_item_wide_position',''),(13932,4223,'_menu_item_featured_icon',''),(13933,4221,'_wp_old_date','2024-10-20'),(13934,4221,'_menu_item_anchor',''),(13935,4221,'_menu_item_nolink',''),(13936,4221,'_menu_item_hide',''),(13937,4221,'_menu_item_type_menu',''),(13938,4221,'_menu_item_icon','null'),(13939,4221,'_menu_item_icon_pack',''),(13940,4221,'_menu_item_sidebar',''),(13941,4221,'_menu_item_wide_position',''),(13942,4221,'_menu_item_featured_icon',''),(13943,4222,'_wp_old_date','2024-10-20'),(13944,4222,'_menu_item_anchor',''),(13945,4222,'_menu_item_nolink',''),(13946,4222,'_menu_item_hide',''),(13947,4222,'_menu_item_type_menu',''),(13948,4222,'_menu_item_icon','null'),(13949,4222,'_menu_item_icon_pack',''),(13950,4222,'_menu_item_sidebar',''),(13951,4222,'_menu_item_wide_position',''),(13952,4222,'_menu_item_featured_icon',''),(13953,4224,'_wp_old_date','2024-10-20'),(13954,4224,'_menu_item_anchor',''),(13955,4224,'_menu_item_nolink',''),(13956,4224,'_menu_item_hide',''),(13957,4224,'_menu_item_type_menu',''),(13958,4224,'_menu_item_icon','null'),(13959,4224,'_menu_item_icon_pack',''),(13960,4224,'_menu_item_sidebar',''),(13961,4224,'_menu_item_wide_position',''),(13962,4224,'_menu_item_featured_icon',''),(13963,4089,'_wp_old_date','2024-10-20'),(13964,4089,'_menu_item_anchor',''),(13965,4089,'_menu_item_nolink',''),(13966,4089,'_menu_item_hide','hide'),(13967,4089,'_menu_item_type_menu',''),(13968,4089,'_menu_item_icon','null'),(13969,4089,'_menu_item_icon_pack',''),(13970,4089,'_menu_item_sidebar',''),(13971,4089,'_menu_item_wide_position',''),(13972,4089,'_menu_item_featured_icon',''),(13973,4088,'_wp_old_date','2024-10-20'),(13974,4088,'_menu_item_anchor',''),(13975,4088,'_menu_item_nolink',''),(13976,4088,'_menu_item_hide',''),(13977,4088,'_menu_item_type_menu',''),(13978,4088,'_menu_item_icon','null'),(13979,4088,'_menu_item_icon_pack',''),(13980,4088,'_menu_item_sidebar',''),(13981,4088,'_menu_item_wide_position',''),(13982,4088,'_menu_item_featured_icon',''),(13983,4091,'_wp_old_date','2024-10-20'),(13984,4091,'_menu_item_anchor',''),(13985,4091,'_menu_item_nolink',''),(13986,4091,'_menu_item_hide',''),(13987,4091,'_menu_item_type_menu',''),(13988,4091,'_menu_item_icon','null'),(13989,4091,'_menu_item_icon_pack',''),(13990,4091,'_menu_item_sidebar',''),(13991,4091,'_menu_item_wide_position',''),(13992,4091,'_menu_item_featured_icon',''),(13993,4211,'_wp_old_date','2024-10-20'),(13994,4211,'_menu_item_anchor',''),(13995,4211,'_menu_item_nolink',''),(13996,4211,'_menu_item_hide',''),(13997,4211,'_menu_item_type_menu',''),(13998,4211,'_menu_item_icon','null'),(13999,4211,'_menu_item_icon_pack',''),(14000,4211,'_menu_item_sidebar',''),(14001,4211,'_menu_item_wide_position',''),(14002,4211,'_menu_item_featured_icon',''),(14003,4203,'_wp_old_date','2024-10-20'),(14004,4203,'_menu_item_anchor',''),(14005,4203,'_menu_item_nolink',''),(14006,4203,'_menu_item_hide','hide'),(14007,4203,'_menu_item_type_menu',''),(14008,4203,'_menu_item_icon','null'),(14009,4203,'_menu_item_icon_pack',''),(14010,4203,'_menu_item_sidebar',''),(14011,4203,'_menu_item_wide_position',''),(14012,4203,'_menu_item_featured_icon',''),(14023,4090,'_wp_old_date','2024-10-20'),(14024,4090,'_menu_item_anchor',''),(14025,4090,'_menu_item_nolink',''),(14026,4090,'_menu_item_hide','hide'),(14027,4090,'_menu_item_type_menu',''),(14028,4090,'_menu_item_icon','null'),(14029,4090,'_menu_item_icon_pack',''),(14030,4090,'_menu_item_sidebar',''),(14031,4090,'_menu_item_wide_position',''),(14032,4090,'_menu_item_featured_icon',''),(14033,4066,'_wp_old_date','2024-10-20'),(14034,4066,'_menu_item_anchor',''),(14035,4066,'_menu_item_nolink',''),(14036,4066,'_menu_item_hide','hide'),(14037,4066,'_menu_item_type_menu',''),(14038,4066,'_menu_item_icon','null'),(14039,4066,'_menu_item_icon_pack',''),(14040,4066,'_menu_item_sidebar',''),(14041,4066,'_menu_item_wide_position',''),(14042,4066,'_menu_item_featured_icon',''),(14043,4134,'_wp_old_date','2024-10-20'),(14044,4134,'_menu_item_anchor',''),(14045,4134,'_menu_item_nolink',''),(14046,4134,'_menu_item_hide',''),(14047,4134,'_menu_item_type_menu',''),(14048,4134,'_menu_item_icon','null'),(14049,4134,'_menu_item_icon_pack',''),(14050,4134,'_menu_item_sidebar',''),(14051,4134,'_menu_item_wide_position',''),(14052,4134,'_menu_item_featured_icon',''),(14053,4083,'_wp_old_date','2024-10-20'),(14054,4083,'_menu_item_anchor',''),(14055,4083,'_menu_item_nolink',''),(14056,4083,'_menu_item_hide',''),(14057,4083,'_menu_item_type_menu',''),(14058,4083,'_menu_item_icon','null'),(14059,4083,'_menu_item_icon_pack',''),(14060,4083,'_menu_item_sidebar',''),(14061,4083,'_menu_item_wide_position',''),(14062,4083,'_menu_item_featured_icon',''),(14063,4219,'_wp_old_date','2024-10-20'),(14064,4219,'_menu_item_anchor',''),(14065,4219,'_menu_item_nolink',''),(14066,4219,'_menu_item_hide',''),(14067,4219,'_menu_item_type_menu',''),(14068,4219,'_menu_item_icon','null'),(14069,4219,'_menu_item_icon_pack',''),(14070,4219,'_menu_item_sidebar',''),(14071,4219,'_menu_item_wide_position',''),(14072,4219,'_menu_item_featured_icon',''),(14073,4216,'_wp_old_date','2024-10-20'),(14074,4216,'_menu_item_anchor',''),(14075,4216,'_menu_item_nolink',''),(14076,4216,'_menu_item_hide',''),(14077,4216,'_menu_item_type_menu',''),(14078,4216,'_menu_item_icon','null'),(14079,4216,'_menu_item_icon_pack',''),(14080,4216,'_menu_item_sidebar',''),(14081,4216,'_menu_item_wide_position',''),(14082,4216,'_menu_item_featured_icon',''),(14083,4217,'_wp_old_date','2024-10-20'),(14084,4217,'_menu_item_anchor',''),(14085,4217,'_menu_item_nolink',''),(14086,4217,'_menu_item_hide',''),(14087,4217,'_menu_item_type_menu',''),(14088,4217,'_menu_item_icon','null'),(14089,4217,'_menu_item_icon_pack',''),(14090,4217,'_menu_item_sidebar',''),(14091,4217,'_menu_item_wide_position',''),(14092,4217,'_menu_item_featured_icon',''),(14093,4218,'_wp_old_date','2024-10-20'),(14094,4218,'_menu_item_anchor',''),(14095,4218,'_menu_item_nolink',''),(14096,4218,'_menu_item_hide',''),(14097,4218,'_menu_item_type_menu',''),(14098,4218,'_menu_item_icon','null'),(14099,4218,'_menu_item_icon_pack',''),(14100,4218,'_menu_item_sidebar',''),(14101,4218,'_menu_item_wide_position',''),(14102,4218,'_menu_item_featured_icon',''),(14103,4087,'_wp_old_date','2024-10-20'),(14104,4087,'_menu_item_anchor',''),(14105,4087,'_menu_item_nolink',''),(14106,4087,'_menu_item_hide',''),(14107,4087,'_menu_item_type_menu',''),(14108,4087,'_menu_item_icon','null'),(14109,4087,'_menu_item_icon_pack',''),(14110,4087,'_menu_item_sidebar',''),(14111,4087,'_menu_item_wide_position',''),(14112,4087,'_menu_item_featured_icon',''),(14113,4248,'_wp_old_date','2024-10-20'),(14114,4248,'_menu_item_anchor',''),(14115,4248,'_menu_item_nolink',''),(14116,4248,'_menu_item_hide',''),(14117,4248,'_menu_item_type_menu',''),(14118,4248,'_menu_item_icon','null'),(14119,4248,'_menu_item_icon_pack',''),(14120,4248,'_menu_item_sidebar',''),(14121,4248,'_menu_item_wide_position',''),(14122,4248,'_menu_item_featured_icon',''),(14123,4247,'_wp_old_date','2024-10-20'),(14124,4247,'_menu_item_anchor',''),(14125,4247,'_menu_item_nolink',''),(14126,4247,'_menu_item_hide',''),(14127,4247,'_menu_item_type_menu',''),(14128,4247,'_menu_item_icon','null'),(14129,4247,'_menu_item_icon_pack',''),(14130,4247,'_menu_item_sidebar',''),(14131,4247,'_menu_item_wide_position',''),(14132,4247,'_menu_item_featured_icon',''),(14133,4246,'_wp_old_date','2024-10-20'),(14134,4246,'_menu_item_anchor',''),(14135,4246,'_menu_item_nolink',''),(14136,4246,'_menu_item_hide',''),(14137,4246,'_menu_item_type_menu',''),(14138,4246,'_menu_item_icon','null'),(14139,4246,'_menu_item_icon_pack',''),(14140,4246,'_menu_item_sidebar',''),(14141,4246,'_menu_item_wide_position',''),(14142,4246,'_menu_item_featured_icon',''),(14143,4245,'_wp_old_date','2024-10-20'),(14144,4245,'_menu_item_anchor',''),(14145,4245,'_menu_item_nolink',''),(14146,4245,'_menu_item_hide',''),(14147,4245,'_menu_item_type_menu',''),(14148,4245,'_menu_item_icon','null'),(14149,4245,'_menu_item_icon_pack',''),(14150,4245,'_menu_item_sidebar',''),(14151,4245,'_menu_item_wide_position',''),(14152,4245,'_menu_item_featured_icon',''),(14153,4244,'_wp_old_date','2024-10-20'),(14154,4244,'_menu_item_anchor',''),(14155,4244,'_menu_item_nolink',''),(14156,4244,'_menu_item_hide',''),(14157,4244,'_menu_item_type_menu',''),(14158,4244,'_menu_item_icon','null'),(14159,4244,'_menu_item_icon_pack',''),(14160,4244,'_menu_item_sidebar',''),(14161,4244,'_menu_item_wide_position',''),(14162,4244,'_menu_item_featured_icon',''),(14163,4243,'_wp_old_date','2024-10-20'),(14164,4243,'_menu_item_anchor',''),(14165,4243,'_menu_item_nolink',''),(14166,4243,'_menu_item_hide',''),(14167,4243,'_menu_item_type_menu',''),(14168,4243,'_menu_item_icon','null'),(14169,4243,'_menu_item_icon_pack',''),(14170,4243,'_menu_item_sidebar',''),(14171,4243,'_menu_item_wide_position',''),(14172,4243,'_menu_item_featured_icon',''),(14173,4072,'_wp_old_date','2024-10-20'),(14174,4072,'_menu_item_anchor',''),(14175,4072,'_menu_item_nolink',''),(14176,4072,'_menu_item_hide',''),(14177,4072,'_menu_item_type_menu',''),(14178,4072,'_menu_item_icon','null'),(14179,4072,'_menu_item_icon_pack',''),(14180,4072,'_menu_item_sidebar',''),(14181,4072,'_menu_item_wide_position',''),(14182,4072,'_menu_item_featured_icon',''),(14183,4131,'_wp_old_date','2024-10-20'),(14184,4131,'_menu_item_anchor',''),(14185,4131,'_menu_item_nolink',''),(14186,4131,'_menu_item_hide',''),(14187,4131,'_menu_item_type_menu',''),(14188,4131,'_menu_item_icon','null'),(14189,4131,'_menu_item_icon_pack',''),(14190,4131,'_menu_item_sidebar',''),(14191,4131,'_menu_item_wide_position',''),(14192,4131,'_menu_item_featured_icon',''),(14193,4133,'_wp_old_date','2024-10-20'),(14194,4133,'_menu_item_anchor',''),(14195,4133,'_menu_item_nolink',''),(14196,4133,'_menu_item_hide',''),(14197,4133,'_menu_item_type_menu',''),(14198,4133,'_menu_item_icon','null'),(14199,4133,'_menu_item_icon_pack',''),(14200,4133,'_menu_item_sidebar',''),(14201,4133,'_menu_item_wide_position',''),(14202,4133,'_menu_item_featured_icon',''),(14203,4132,'_wp_old_date','2024-10-20'),(14204,4132,'_menu_item_anchor',''),(14205,4132,'_menu_item_nolink',''),(14206,4132,'_menu_item_hide',''),(14207,4132,'_menu_item_type_menu',''),(14208,4132,'_menu_item_icon','null'),(14209,4132,'_menu_item_icon_pack',''),(14210,4132,'_menu_item_sidebar',''),(14211,4132,'_menu_item_wide_position',''),(14212,4132,'_menu_item_featured_icon',''),(14213,4069,'_wp_old_date','2024-10-20'),(14214,4069,'_menu_item_anchor',''),(14215,4069,'_menu_item_nolink',''),(14216,4069,'_menu_item_hide','hide'),(14217,4069,'_menu_item_type_menu',''),(14218,4069,'_menu_item_icon','null'),(14219,4069,'_menu_item_icon_pack',''),(14220,4069,'_menu_item_sidebar',''),(14221,4069,'_menu_item_wide_position',''),(14222,4069,'_menu_item_featured_icon',''),(14223,4082,'_wp_old_date','2024-10-20'),(14224,4082,'_menu_item_anchor',''),(14225,4082,'_menu_item_nolink',''),(14226,4082,'_menu_item_hide',''),(14227,4082,'_menu_item_type_menu',''),(14228,4082,'_menu_item_icon','null'),(14229,4082,'_menu_item_icon_pack',''),(14230,4082,'_menu_item_sidebar',''),(14231,4082,'_menu_item_wide_position',''),(14232,4082,'_menu_item_featured_icon',''),(14233,4232,'_wp_old_date','2024-10-20'),(14234,4232,'_menu_item_anchor',''),(14235,4232,'_menu_item_nolink',''),(14236,4232,'_menu_item_hide',''),(14237,4232,'_menu_item_type_menu',''),(14238,4232,'_menu_item_icon','null'),(14239,4232,'_menu_item_icon_pack',''),(14240,4232,'_menu_item_sidebar',''),(14241,4232,'_menu_item_wide_position',''),(14242,4232,'_menu_item_featured_icon',''),(14243,4190,'_wp_old_date','2024-10-20'),(14244,4190,'_menu_item_anchor',''),(14245,4190,'_menu_item_nolink',''),(14246,4190,'_menu_item_hide',''),(14247,4190,'_menu_item_type_menu',''),(14248,4190,'_menu_item_icon','null'),(14249,4190,'_menu_item_icon_pack',''),(14250,4190,'_menu_item_sidebar',''),(14251,4190,'_menu_item_wide_position',''),(14252,4190,'_menu_item_featured_icon',''),(14253,4192,'_wp_old_date','2024-10-20'),(14254,4192,'_menu_item_anchor',''),(14255,4192,'_menu_item_nolink',''),(14256,4192,'_menu_item_hide',''),(14257,4192,'_menu_item_type_menu',''),(14258,4192,'_menu_item_icon','null'),(14259,4192,'_menu_item_icon_pack',''),(14260,4192,'_menu_item_sidebar',''),(14261,4192,'_menu_item_wide_position',''),(14262,4192,'_menu_item_featured_icon',''),(14263,4191,'_wp_old_date','2024-10-20'),(14264,4191,'_menu_item_anchor',''),(14265,4191,'_menu_item_nolink',''),(14266,4191,'_menu_item_hide',''),(14267,4191,'_menu_item_type_menu',''),(14268,4191,'_menu_item_icon','null'),(14269,4191,'_menu_item_icon_pack',''),(14270,4191,'_menu_item_sidebar',''),(14271,4191,'_menu_item_wide_position',''),(14272,4191,'_menu_item_featured_icon',''),(14273,4193,'_wp_old_date','2024-10-20'),(14274,4193,'_menu_item_anchor',''),(14275,4193,'_menu_item_nolink',''),(14276,4193,'_menu_item_hide',''),(14277,4193,'_menu_item_type_menu',''),(14278,4193,'_menu_item_icon','null'),(14279,4193,'_menu_item_icon_pack',''),(14280,4193,'_menu_item_sidebar',''),(14281,4193,'_menu_item_wide_position',''),(14282,4193,'_menu_item_featured_icon',''),(14283,4231,'_wp_old_date','2024-10-20'),(14284,4231,'_menu_item_anchor',''),(14285,4231,'_menu_item_nolink',''),(14286,4231,'_menu_item_hide',''),(14287,4231,'_menu_item_type_menu',''),(14288,4231,'_menu_item_icon','null'),(14289,4231,'_menu_item_icon_pack',''),(14290,4231,'_menu_item_sidebar',''),(14291,4231,'_menu_item_wide_position',''),(14292,4231,'_menu_item_featured_icon',''),(14293,4229,'_wp_old_date','2024-10-20'),(14294,4229,'_menu_item_anchor',''),(14295,4229,'_menu_item_nolink',''),(14296,4229,'_menu_item_hide',''),(14297,4229,'_menu_item_type_menu',''),(14298,4229,'_menu_item_icon','null'),(14299,4229,'_menu_item_icon_pack',''),(14300,4229,'_menu_item_sidebar',''),(14301,4229,'_menu_item_wide_position',''),(14302,4229,'_menu_item_featured_icon',''),(14303,4194,'_wp_old_date','2024-10-20'),(14304,4194,'_menu_item_anchor',''),(14305,4194,'_menu_item_nolink',''),(14306,4194,'_menu_item_hide',''),(14307,4194,'_menu_item_type_menu',''),(14308,4194,'_menu_item_icon','null'),(14309,4194,'_menu_item_icon_pack',''),(14310,4194,'_menu_item_sidebar',''),(14311,4194,'_menu_item_wide_position',''),(14312,4194,'_menu_item_featured_icon',''),(14313,4332,'_wp_old_date','2024-10-20'),(14314,4332,'_menu_item_anchor',''),(14315,4332,'_menu_item_nolink',''),(14316,4332,'_menu_item_hide',''),(14317,4332,'_menu_item_type_menu',''),(14318,4332,'_menu_item_icon','null'),(14319,4332,'_menu_item_icon_pack',''),(14320,4332,'_menu_item_sidebar',''),(14321,4332,'_menu_item_wide_position',''),(14322,4332,'_menu_item_featured_icon',''),(14323,4074,'_wp_old_date','2024-10-20'),(14324,4074,'_menu_item_anchor',''),(14325,4074,'_menu_item_nolink',''),(14326,4074,'_menu_item_hide',''),(14327,4074,'_menu_item_type_menu',''),(14328,4074,'_menu_item_icon','null'),(14329,4074,'_menu_item_icon_pack',''),(14330,4074,'_menu_item_sidebar',''),(14331,4074,'_menu_item_wide_position',''),(14332,4074,'_menu_item_featured_icon',''),(14333,4160,'_wp_old_date','2024-10-20'),(14334,4160,'_menu_item_anchor',''),(14335,4160,'_menu_item_nolink',''),(14336,4160,'_menu_item_hide',''),(14337,4160,'_menu_item_type_menu',''),(14338,4160,'_menu_item_icon','null'),(14339,4160,'_menu_item_icon_pack',''),(14340,4160,'_menu_item_sidebar',''),(14341,4160,'_menu_item_wide_position',''),(14342,4160,'_menu_item_featured_icon',''),(14343,4161,'_wp_old_date','2024-10-20'),(14344,4161,'_menu_item_anchor',''),(14345,4161,'_menu_item_nolink',''),(14346,4161,'_menu_item_hide',''),(14347,4161,'_menu_item_type_menu',''),(14348,4161,'_menu_item_icon','null'),(14349,4161,'_menu_item_icon_pack',''),(14350,4161,'_menu_item_sidebar',''),(14351,4161,'_menu_item_wide_position',''),(14352,4161,'_menu_item_featured_icon',''),(14353,4162,'_wp_old_date','2024-10-20'),(14354,4162,'_menu_item_anchor',''),(14355,4162,'_menu_item_nolink',''),(14356,4162,'_menu_item_hide',''),(14357,4162,'_menu_item_type_menu',''),(14358,4162,'_menu_item_icon','null'),(14359,4162,'_menu_item_icon_pack',''),(14360,4162,'_menu_item_sidebar',''),(14361,4162,'_menu_item_wide_position',''),(14362,4162,'_menu_item_featured_icon',''),(14363,4163,'_wp_old_date','2024-10-20'),(14364,4163,'_menu_item_anchor',''),(14365,4163,'_menu_item_nolink',''),(14366,4163,'_menu_item_hide',''),(14367,4163,'_menu_item_type_menu',''),(14368,4163,'_menu_item_icon','null'),(14369,4163,'_menu_item_icon_pack',''),(14370,4163,'_menu_item_sidebar',''),(14371,4163,'_menu_item_wide_position',''),(14372,4163,'_menu_item_featured_icon',''),(14373,4177,'_wp_old_date','2024-10-20'),(14374,4177,'_menu_item_anchor',''),(14375,4177,'_menu_item_nolink',''),(14376,4177,'_menu_item_hide',''),(14377,4177,'_menu_item_type_menu',''),(14378,4177,'_menu_item_icon','null'),(14379,4177,'_menu_item_icon_pack',''),(14380,4177,'_menu_item_sidebar',''),(14381,4177,'_menu_item_wide_position',''),(14382,4177,'_menu_item_featured_icon',''),(14383,4166,'_wp_old_date','2024-10-20'),(14384,4166,'_menu_item_anchor',''),(14385,4166,'_menu_item_nolink',''),(14386,4166,'_menu_item_hide',''),(14387,4166,'_menu_item_type_menu',''),(14388,4166,'_menu_item_icon','null'),(14389,4166,'_menu_item_icon_pack',''),(14390,4166,'_menu_item_sidebar',''),(14391,4166,'_menu_item_wide_position',''),(14392,4166,'_menu_item_featured_icon',''),(14393,4196,'_wp_old_date','2024-10-20'),(14394,4196,'_menu_item_anchor',''),(14395,4196,'_menu_item_nolink',''),(14396,4196,'_menu_item_hide',''),(14397,4196,'_menu_item_type_menu',''),(14398,4196,'_menu_item_icon','null'),(14399,4196,'_menu_item_icon_pack',''),(14400,4196,'_menu_item_sidebar',''),(14401,4196,'_menu_item_wide_position',''),(14402,4196,'_menu_item_featured_icon',''),(14403,4167,'_wp_old_date','2024-10-20'),(14404,4167,'_menu_item_anchor',''),(14405,4167,'_menu_item_nolink',''),(14406,4167,'_menu_item_hide',''),(14407,4167,'_menu_item_type_menu',''),(14408,4167,'_menu_item_icon','null'),(14409,4167,'_menu_item_icon_pack',''),(14410,4167,'_menu_item_sidebar',''),(14411,4167,'_menu_item_wide_position',''),(14412,4167,'_menu_item_featured_icon',''),(14413,4189,'_wp_old_date','2024-10-20'),(14414,4189,'_menu_item_anchor',''),(14415,4189,'_menu_item_nolink',''),(14416,4189,'_menu_item_hide',''),(14417,4189,'_menu_item_type_menu',''),(14418,4189,'_menu_item_icon','null'),(14419,4189,'_menu_item_icon_pack',''),(14420,4189,'_menu_item_sidebar',''),(14421,4189,'_menu_item_wide_position',''),(14422,4189,'_menu_item_featured_icon',''),(14423,4076,'_wp_old_date','2024-10-20'),(14424,4076,'_menu_item_anchor',''),(14425,4076,'_menu_item_nolink',''),(14426,4076,'_menu_item_hide',''),(14427,4076,'_menu_item_type_menu',''),(14428,4076,'_menu_item_icon','null'),(14429,4076,'_menu_item_icon_pack',''),(14430,4076,'_menu_item_sidebar',''),(14431,4076,'_menu_item_wide_position',''),(14432,4076,'_menu_item_featured_icon',''),(14433,4151,'_wp_old_date','2024-10-20'),(14434,4151,'_menu_item_anchor',''),(14435,4151,'_menu_item_nolink',''),(14436,4151,'_menu_item_hide',''),(14437,4151,'_menu_item_type_menu',''),(14438,4151,'_menu_item_icon','null'),(14439,4151,'_menu_item_icon_pack',''),(14440,4151,'_menu_item_sidebar',''),(14441,4151,'_menu_item_wide_position',''),(14442,4151,'_menu_item_featured_icon',''),(14443,4234,'_wp_old_date','2024-10-20'),(14444,4234,'_menu_item_anchor',''),(14445,4234,'_menu_item_nolink',''),(14446,4234,'_menu_item_hide',''),(14447,4234,'_menu_item_type_menu',''),(14448,4234,'_menu_item_icon','null'),(14449,4234,'_menu_item_icon_pack',''),(14450,4234,'_menu_item_sidebar',''),(14451,4234,'_menu_item_wide_position',''),(14452,4234,'_menu_item_featured_icon',''),(14453,4150,'_wp_old_date','2024-10-20'),(14454,4150,'_menu_item_anchor',''),(14455,4150,'_menu_item_nolink',''),(14456,4150,'_menu_item_hide',''),(14457,4150,'_menu_item_type_menu',''),(14458,4150,'_menu_item_icon','null'),(14459,4150,'_menu_item_icon_pack',''),(14460,4150,'_menu_item_sidebar',''),(14461,4150,'_menu_item_wide_position',''),(14462,4150,'_menu_item_featured_icon',''),(14463,4149,'_wp_old_date','2024-10-20'),(14464,4149,'_menu_item_anchor',''),(14465,4149,'_menu_item_nolink',''),(14466,4149,'_menu_item_hide',''),(14467,4149,'_menu_item_type_menu',''),(14468,4149,'_menu_item_icon','null'),(14469,4149,'_menu_item_icon_pack',''),(14470,4149,'_menu_item_sidebar',''),(14471,4149,'_menu_item_wide_position',''),(14472,4149,'_menu_item_featured_icon',''),(14473,4148,'_wp_old_date','2024-10-20'),(14474,4148,'_menu_item_anchor',''),(14475,4148,'_menu_item_nolink',''),(14476,4148,'_menu_item_hide',''),(14477,4148,'_menu_item_type_menu',''),(14478,4148,'_menu_item_icon','null'),(14479,4148,'_menu_item_icon_pack',''),(14480,4148,'_menu_item_sidebar',''),(14481,4148,'_menu_item_wide_position',''),(14482,4148,'_menu_item_featured_icon',''),(14483,4165,'_wp_old_date','2024-10-20'),(14484,4165,'_menu_item_anchor',''),(14485,4165,'_menu_item_nolink',''),(14486,4165,'_menu_item_hide',''),(14487,4165,'_menu_item_type_menu',''),(14488,4165,'_menu_item_icon','null'),(14489,4165,'_menu_item_icon_pack',''),(14490,4165,'_menu_item_sidebar',''),(14491,4165,'_menu_item_wide_position',''),(14492,4165,'_menu_item_featured_icon',''),(14493,4230,'_wp_old_date','2024-10-20'),(14494,4230,'_menu_item_anchor',''),(14495,4230,'_menu_item_nolink',''),(14496,4230,'_menu_item_hide',''),(14497,4230,'_menu_item_type_menu',''),(14498,4230,'_menu_item_icon','null'),(14499,4230,'_menu_item_icon_pack',''),(14500,4230,'_menu_item_sidebar',''),(14501,4230,'_menu_item_wide_position',''),(14502,4230,'_menu_item_featured_icon',''),(14503,4164,'_wp_old_date','2024-10-20'),(14504,4164,'_menu_item_anchor',''),(14505,4164,'_menu_item_nolink',''),(14506,4164,'_menu_item_hide',''),(14507,4164,'_menu_item_type_menu',''),(14508,4164,'_menu_item_icon','null'),(14509,4164,'_menu_item_icon_pack',''),(14510,4164,'_menu_item_sidebar',''),(14511,4164,'_menu_item_wide_position',''),(14512,4164,'_menu_item_featured_icon',''),(14513,4233,'_wp_old_date','2024-10-20'),(14514,4233,'_menu_item_anchor',''),(14515,4233,'_menu_item_nolink',''),(14516,4233,'_menu_item_hide',''),(14517,4233,'_menu_item_type_menu',''),(14518,4233,'_menu_item_icon','null'),(14519,4233,'_menu_item_icon_pack',''),(14520,4233,'_menu_item_sidebar',''),(14521,4233,'_menu_item_wide_position',''),(14522,4233,'_menu_item_featured_icon',''),(14523,4075,'_wp_old_date','2024-10-20'),(14524,4075,'_menu_item_anchor',''),(14525,4075,'_menu_item_nolink',''),(14526,4075,'_menu_item_hide',''),(14527,4075,'_menu_item_type_menu',''),(14528,4075,'_menu_item_icon','null'),(14529,4075,'_menu_item_icon_pack',''),(14530,4075,'_menu_item_sidebar',''),(14531,4075,'_menu_item_wide_position',''),(14532,4075,'_menu_item_featured_icon',''),(14533,4142,'_wp_old_date','2024-10-20'),(14534,4142,'_menu_item_anchor',''),(14535,4142,'_menu_item_nolink',''),(14536,4142,'_menu_item_hide',''),(14537,4142,'_menu_item_type_menu',''),(14538,4142,'_menu_item_icon','null'),(14539,4142,'_menu_item_icon_pack',''),(14540,4142,'_menu_item_sidebar',''),(14541,4142,'_menu_item_wide_position',''),(14542,4142,'_menu_item_featured_icon',''),(14543,4141,'_wp_old_date','2024-10-20'),(14544,4141,'_menu_item_anchor',''),(14545,4141,'_menu_item_nolink',''),(14546,4141,'_menu_item_hide',''),(14547,4141,'_menu_item_type_menu',''),(14548,4141,'_menu_item_icon','null'),(14549,4141,'_menu_item_icon_pack',''),(14550,4141,'_menu_item_sidebar',''),(14551,4141,'_menu_item_wide_position',''),(14552,4141,'_menu_item_featured_icon',''),(14553,4147,'_wp_old_date','2024-10-20'),(14554,4147,'_menu_item_anchor',''),(14555,4147,'_menu_item_nolink',''),(14556,4147,'_menu_item_hide',''),(14557,4147,'_menu_item_type_menu',''),(14558,4147,'_menu_item_icon','null'),(14559,4147,'_menu_item_icon_pack',''),(14560,4147,'_menu_item_sidebar',''),(14561,4147,'_menu_item_wide_position',''),(14562,4147,'_menu_item_featured_icon',''),(14563,4146,'_wp_old_date','2024-10-20'),(14564,4146,'_menu_item_anchor',''),(14565,4146,'_menu_item_nolink',''),(14566,4146,'_menu_item_hide',''),(14567,4146,'_menu_item_type_menu',''),(14568,4146,'_menu_item_icon','null'),(14569,4146,'_menu_item_icon_pack',''),(14570,4146,'_menu_item_sidebar',''),(14571,4146,'_menu_item_wide_position',''),(14572,4146,'_menu_item_featured_icon',''),(14573,4195,'_wp_old_date','2024-10-20'),(14574,4195,'_menu_item_anchor',''),(14575,4195,'_menu_item_nolink',''),(14576,4195,'_menu_item_hide',''),(14577,4195,'_menu_item_type_menu',''),(14578,4195,'_menu_item_icon','null'),(14579,4195,'_menu_item_icon_pack',''),(14580,4195,'_menu_item_sidebar',''),(14581,4195,'_menu_item_wide_position',''),(14582,4195,'_menu_item_featured_icon',''),(14583,4235,'_wp_old_date','2024-10-20'),(14584,4235,'_menu_item_anchor',''),(14585,4235,'_menu_item_nolink',''),(14586,4235,'_menu_item_hide',''),(14587,4235,'_menu_item_type_menu',''),(14588,4235,'_menu_item_icon','null'),(14589,4235,'_menu_item_icon_pack',''),(14590,4235,'_menu_item_sidebar',''),(14591,4235,'_menu_item_wide_position',''),(14592,4235,'_menu_item_featured_icon',''),(14593,4145,'_wp_old_date','2024-10-20'),(14594,4145,'_menu_item_anchor',''),(14595,4145,'_menu_item_nolink',''),(14596,4145,'_menu_item_hide',''),(14597,4145,'_menu_item_type_menu',''),(14598,4145,'_menu_item_icon','null'),(14599,4145,'_menu_item_icon_pack',''),(14600,4145,'_menu_item_sidebar',''),(14601,4145,'_menu_item_wide_position',''),(14602,4145,'_menu_item_featured_icon',''),(14603,4198,'_wp_old_date','2024-10-20'),(14604,4198,'_menu_item_anchor',''),(14605,4198,'_menu_item_nolink',''),(14606,4198,'_menu_item_hide',''),(14607,4198,'_menu_item_type_menu',''),(14608,4198,'_menu_item_icon','null'),(14609,4198,'_menu_item_icon_pack',''),(14610,4198,'_menu_item_sidebar',''),(14611,4198,'_menu_item_wide_position',''),(14612,4198,'_menu_item_featured_icon',''),(14613,4197,'_wp_old_date','2024-10-20'),(14614,4197,'_menu_item_anchor',''),(14615,4197,'_menu_item_nolink',''),(14616,4197,'_menu_item_hide',''),(14617,4197,'_menu_item_type_menu',''),(14618,4197,'_menu_item_icon','null'),(14619,4197,'_menu_item_icon_pack',''),(14620,4197,'_menu_item_sidebar',''),(14621,4197,'_menu_item_wide_position',''),(14622,4197,'_menu_item_featured_icon',''),(14623,4124,'_edit_last','1'),(14625,4338,'_wpb_shortcodes_custom_css','.vc_custom_1496068058529{padding-top: 130px !important;padding-bottom: 93px !important;}.vc_custom_1496068196330{padding-top: 110px !important;padding-bottom: 125px !important;}.vc_custom_1496309239657{padding-top: 130px !important;padding-bottom: 125px !important;}.vc_custom_1496232771552{padding-top: 100px !important;padding-bottom: 130px !important;}.vc_custom_1496232790191{padding-top: 115px !important;padding-bottom: 100px !important;}.vc_custom_1496231789253{padding-top: 100px !important;padding-bottom: 100px !important;}.vc_custom_1496309608001{padding-top: 110px !important;padding-bottom: 130px !important;}.vc_custom_1496388030860{padding-top: 60px !important;}.vc_custom_1495791458309{padding-top: 90px !important;padding-bottom: 90px !important;}.vc_custom_1496740160993{margin-top: 0px !important;padding-top: 0px !important;}.vc_custom_1496234862459{padding-top: 30px !important;}'),(14626,4124,'_edit_lock','1731287906:1'),(14627,4130,'_wp_old_date','2024-10-24'),(14628,4138,'_wp_old_date','2024-10-24'),(14629,4199,'_wp_old_date','2024-10-24'),(14630,4159,'_wp_old_date','2024-10-24'),(14631,4201,'_wp_old_date','2024-10-24'),(14632,4208,'_wp_old_date','2024-10-24'),(14633,4207,'_wp_old_date','2024-10-24'),(14634,4202,'_wp_old_date','2024-10-24'),(14635,4140,'_wp_old_date','2024-10-24'),(14636,4176,'_wp_old_date','2024-10-24'),(14637,4200,'_wp_old_date','2024-10-24'),(14638,4209,'_wp_old_date','2024-10-24'),(14639,4249,'_wp_old_date','2024-10-24'),(14640,4067,'_wp_old_date','2024-10-24'),(14641,4139,'_wp_old_date','2024-10-24'),(14642,4068,'_wp_old_date','2024-10-24'),(14643,4136,'_wp_old_date','2024-10-24'),(14644,4064,'_wp_old_date','2024-10-24'),(14645,4212,'_wp_old_date','2024-10-24'),(14646,4214,'_wp_old_date','2024-10-24'),(14647,4210,'_wp_old_date','2024-10-24'),(14648,4065,'_wp_old_date','2024-10-24'),(14649,4206,'_wp_old_date','2024-10-24'),(14650,4204,'_wp_old_date','2024-10-24'),(14651,4205,'_wp_old_date','2024-10-24'),(14652,4220,'_wp_old_date','2024-10-24'),(14653,4223,'_wp_old_date','2024-10-24'),(14654,4221,'_wp_old_date','2024-10-24'),(14655,4222,'_wp_old_date','2024-10-24'),(14656,4224,'_wp_old_date','2024-10-24'),(14657,4089,'_wp_old_date','2024-10-24'),(14658,4088,'_wp_old_date','2024-10-24'),(14659,4091,'_wp_old_date','2024-10-24'),(14660,4211,'_wp_old_date','2024-10-24'),(14661,4203,'_wp_old_date','2024-10-24'),(14663,4090,'_wp_old_date','2024-10-24'),(14664,4066,'_wp_old_date','2024-10-24'),(14665,4134,'_wp_old_date','2024-10-24'),(14666,4083,'_wp_old_date','2024-10-24'),(14667,4219,'_wp_old_date','2024-10-24'),(14668,4216,'_wp_old_date','2024-10-24'),(14669,4217,'_wp_old_date','2024-10-24'),(14670,4218,'_wp_old_date','2024-10-24'),(14671,4087,'_wp_old_date','2024-10-24'),(14672,4248,'_wp_old_date','2024-10-24'),(14673,4247,'_wp_old_date','2024-10-24'),(14674,4246,'_wp_old_date','2024-10-24'),(14675,4245,'_wp_old_date','2024-10-24'),(14676,4244,'_wp_old_date','2024-10-24'),(14677,4243,'_wp_old_date','2024-10-24'),(14678,4072,'_wp_old_date','2024-10-24'),(14679,4131,'_wp_old_date','2024-10-24'),(14680,4133,'_wp_old_date','2024-10-24'),(14681,4132,'_wp_old_date','2024-10-24'),(14682,4069,'_wp_old_date','2024-10-24'),(14683,4082,'_wp_old_date','2024-10-24'),(14684,4232,'_wp_old_date','2024-10-24'),(14685,4190,'_wp_old_date','2024-10-24'),(14686,4192,'_wp_old_date','2024-10-24'),(14687,4191,'_wp_old_date','2024-10-24'),(14688,4193,'_wp_old_date','2024-10-24'),(14689,4231,'_wp_old_date','2024-10-24'),(14690,4229,'_wp_old_date','2024-10-24'),(14691,4194,'_wp_old_date','2024-10-24'),(14692,4332,'_wp_old_date','2024-10-24'),(14693,4074,'_wp_old_date','2024-10-24'),(14694,4160,'_wp_old_date','2024-10-24'),(14695,4161,'_wp_old_date','2024-10-24'),(14696,4162,'_wp_old_date','2024-10-24'),(14697,4163,'_wp_old_date','2024-10-24'),(14698,4177,'_wp_old_date','2024-10-24'),(14699,4166,'_wp_old_date','2024-10-24'),(14700,4196,'_wp_old_date','2024-10-24'),(14701,4167,'_wp_old_date','2024-10-24'),(14702,4189,'_wp_old_date','2024-10-24'),(14703,4076,'_wp_old_date','2024-10-24'),(14704,4151,'_wp_old_date','2024-10-24'),(14705,4234,'_wp_old_date','2024-10-24'),(14706,4150,'_wp_old_date','2024-10-24'),(14707,4149,'_wp_old_date','2024-10-24'),(14708,4148,'_wp_old_date','2024-10-24'),(14709,4165,'_wp_old_date','2024-10-24'),(14710,4230,'_wp_old_date','2024-10-24'),(14711,4164,'_wp_old_date','2024-10-24'),(14712,4233,'_wp_old_date','2024-10-24'),(14713,4075,'_wp_old_date','2024-10-24'),(14714,4142,'_wp_old_date','2024-10-24'),(14715,4141,'_wp_old_date','2024-10-24'),(14716,4147,'_wp_old_date','2024-10-24'),(14717,4146,'_wp_old_date','2024-10-24'),(14718,4195,'_wp_old_date','2024-10-24'),(14719,4235,'_wp_old_date','2024-10-24'),(14720,4145,'_wp_old_date','2024-10-24'),(14721,4198,'_wp_old_date','2024-10-24'),(14722,4197,'_wp_old_date','2024-10-24'),(14724,1863,'_edit_lock','1730214478:1'),(14725,1863,'_edit_last','1'),(14726,4340,'_wpb_shortcodes_custom_css','.vc_custom_1497251655285{padding-top: 100px !important;padding-bottom: 83px !important;}.vc_custom_1496845447068{margin-top: -10px !important;}.vc_custom_1496414004648{padding-bottom: 20px !important;}'),(14727,4342,'_wpb_shortcodes_custom_css','.vc_custom_1497251655285{padding-top: 100px !important;padding-bottom: 83px !important;}.vc_custom_1496845447068{margin-top: -10px !important;}.vc_custom_1729939874309{padding-bottom: 20px !important;}'),(14728,4343,'_wpb_shortcodes_custom_css','.vc_custom_1497251655285{padding-top: 100px !important;padding-bottom: 83px !important;}.vc_custom_1496845447068{margin-top: -10px !important;}.vc_custom_1729939874309{padding-bottom: 20px !important;}'),(14729,4228,'_wp_old_date','2024-10-20'),(14730,4228,'_menu_item_anchor',''),(14731,4228,'_menu_item_nolink',''),(14732,4228,'_menu_item_hide',''),(14733,4228,'_menu_item_type_menu',''),(14734,4228,'_menu_item_icon','null'),(14735,4228,'_menu_item_icon_pack',''),(14736,4228,'_menu_item_sidebar',''),(14737,4228,'_menu_item_wide_position',''),(14738,4228,'_menu_item_featured_icon',''),(14739,4225,'_wp_old_date','2024-10-20'),(14740,4225,'_menu_item_anchor',''),(14741,4225,'_menu_item_nolink',''),(14742,4225,'_menu_item_hide',''),(14743,4225,'_menu_item_type_menu',''),(14744,4225,'_menu_item_icon','null'),(14745,4225,'_menu_item_icon_pack',''),(14746,4225,'_menu_item_sidebar',''),(14747,4225,'_menu_item_wide_position',''),(14748,4225,'_menu_item_featured_icon',''),(14749,4226,'_wp_old_date','2024-10-20'),(14750,4226,'_menu_item_anchor',''),(14751,4226,'_menu_item_nolink',''),(14752,4226,'_menu_item_hide',''),(14753,4226,'_menu_item_type_menu',''),(14754,4226,'_menu_item_icon','null'),(14755,4226,'_menu_item_icon_pack',''),(14756,4226,'_menu_item_sidebar',''),(14757,4226,'_menu_item_wide_position',''),(14758,4226,'_menu_item_featured_icon',''),(14759,4227,'_wp_old_date','2024-10-20'),(14760,4227,'_menu_item_anchor',''),(14761,4227,'_menu_item_nolink',''),(14762,4227,'_menu_item_hide',''),(14763,4227,'_menu_item_type_menu',''),(14764,4227,'_menu_item_icon','null'),(14765,4227,'_menu_item_icon_pack',''),(14766,4227,'_menu_item_sidebar',''),(14767,4227,'_menu_item_wide_position',''),(14768,4227,'_menu_item_featured_icon',''),(14769,4084,'_wp_old_date','2024-10-20'),(14770,4084,'_menu_item_anchor',''),(14771,4084,'_menu_item_nolink',''),(14772,4084,'_menu_item_hide',''),(14773,4084,'_menu_item_type_menu',''),(14774,4084,'_menu_item_icon','null'),(14775,4084,'_menu_item_icon_pack',''),(14776,4084,'_menu_item_sidebar',''),(14777,4084,'_menu_item_wide_position',''),(14778,4084,'_menu_item_featured_icon',''),(14779,1580,'_edit_lock','1730214970:1'),(14780,1580,'_edit_last','1'),(14781,4345,'_wpb_shortcodes_custom_css','.vc_custom_1497446239499{padding-top: 63px !important;padding-bottom: 63px !important;}.vc_custom_1496402409845{padding-top: 81px !important;padding-bottom: 70px !important;}.vc_custom_1496402470103{padding-top: 100px !important;padding-bottom: 95px !important;}.vc_custom_1496329986296{padding-bottom: 20px !important;}'),(14806,4355,'_edit_last','1'),(14807,4355,'rs_page_bg_color',''),(14808,4355,'_edit_lock','1730017063:1'),(14809,110,'_edit_lock','1730371531:1'),(14810,110,'_edit_last','1'),(14811,110,'tinh-thanh','TP HCM'),(14812,110,'_tinh-thanh','field_671d014bdb03b'),(14813,110,'ho_ten','Ngô Tuấn Khải'),(14814,110,'_ho_ten','field_671d0278db03c'),(14815,110,'gioi_tinh','Nam'),(14816,110,'_gioi_tinh','field_671d02c9db03d'),(14817,110,'giong_noi','Miền Nam'),(14818,110,'_giong_noi','field_671d0316db03e'),(14819,110,'ngay_sinh','20031008'),(14820,110,'_ngay_sinh','field_671d0463db03f'),(14821,110,'cccd','052200006555'),(14822,110,'_cccd','field_671d04a0db040'),(14823,110,'noi_cap_cccd','Bình Dương'),(14824,110,'_noi_cap_cccd','field_671d04b4db041'),(14825,110,'dia_chi','Dĩ An, Bình Dương'),(14826,110,'_dia_chi','field_671d04ccdb042'),(14827,110,'emailAddress','tuankhai@gmail.com'),(14828,110,'_emailAddress','field_671d04f7db043'),(14829,110,'dien_thoai','0987654321'),(14830,110,'_dien_thoai','field_671d0541db044'),(14831,110,'truong_học',' Đại học Quốc Tế - ĐHQG TPHCM'),(14832,110,'_truong_học','field_671d09e51ada8'),(14833,110,'nganh_hoc','Toán học ứng dụng: Kỹ thuật tài chính và quản lý rủi ro'),(14834,110,'_nganh_hoc','field_671d0581db045'),(14835,110,'nam_tot_nghiep','2024'),(14836,110,'_nam_tot_nghiep','field_671d05b1db046'),(14837,110,'nghe_nghiep','Đã tốt nghiệp'),(14838,110,'_nghe_nghiep','field_671d09451ada6'),(14839,110,'trinh_do','Đại học'),(14840,110,'_trinh_do','field_671d09971ada7'),(14841,110,'uu_diem',''),(14842,110,'_uu_diem','field_671d05cadb047'),(14843,110,'so_buoi_day','3'),(14844,110,'_so_buoi_day','field_671d05f8db048'),(14845,110,'muc_luong_yeu_cau','3000000'),(14846,110,'_muc_luong_yeu_cau','field_671d0634db049'),(14847,110,'rs_page_bg_color',''),(14848,110,'yeu_cau_khac',''),(14849,110,'_yeu_cau_khac','field_671d05cadb047'),(14850,110,'mon_day','a:2:{i:0;s:5:\"Toán\";i:1;s:3:\"Lý\";}'),(14851,110,'_mon_day','field_671d0c5dd2877'),(14852,110,'_wp_old_slug','preston-marshall'),(14853,110,'_wp_old_date','2024-11-25'),(14858,447,'_edit_lock','1729958738:1'),(14859,3,'_edit_lock','1729960786:1'),(14860,3,'_edit_last','1'),(14861,3,'mkdf_page_content_behind_header_meta','no'),(14862,3,'mkdf_boxed_background_image_attachment_meta','fixed'),(14863,3,'mkdf_disable_header_widget_logo_area_meta','no'),(14864,3,'mkdf_disable_header_widget_menu_area_meta','no'),(14865,3,'mkdf_disable_footer_meta','no'),(14866,3,'show_footer_custom_widget_areas','no'),(14867,3,'_wpb_vc_js_status','false'),(14868,4122,'_edit_lock','1729959295:1'),(14872,4381,'_menu_item_type','post_type'),(14873,4381,'_menu_item_menu_item_parent','0'),(14874,4381,'_menu_item_object_id','291'),(14875,4381,'_menu_item_object','page'),(14876,4381,'_menu_item_target',''),(14877,4381,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14878,4381,'_menu_item_xfn',''),(14879,4381,'_menu_item_url',''),(14880,4381,'_menu_item_orphaned','1729962073'),(14881,4130,'_wp_old_date','2024-10-26'),(14882,4138,'_wp_old_date','2024-10-26'),(14883,4199,'_wp_old_date','2024-10-26'),(14884,4159,'_wp_old_date','2024-10-26'),(14885,4201,'_wp_old_date','2024-10-26'),(14886,4208,'_wp_old_date','2024-10-26'),(14887,4207,'_wp_old_date','2024-10-26'),(14888,4202,'_wp_old_date','2024-10-26'),(14889,4140,'_wp_old_date','2024-10-26'),(14890,4176,'_wp_old_date','2024-10-26'),(14891,4200,'_wp_old_date','2024-10-26'),(14892,4209,'_wp_old_date','2024-10-26'),(14893,4249,'_wp_old_date','2024-10-26'),(14894,4067,'_wp_old_date','2024-10-26'),(14895,4139,'_wp_old_date','2024-10-26'),(14896,4068,'_wp_old_date','2024-10-26'),(14897,4136,'_wp_old_date','2024-10-26'),(14898,4212,'_wp_old_date','2024-10-26'),(14899,4214,'_wp_old_date','2024-10-26'),(14900,4211,'_wp_old_date','2024-10-26'),(14901,4064,'_wp_old_date','2024-10-26'),(14902,4210,'_wp_old_date','2024-10-26'),(14903,4065,'_wp_old_date','2024-10-26'),(14904,4206,'_wp_old_date','2024-10-26'),(14905,4204,'_wp_old_date','2024-10-26'),(14906,4205,'_wp_old_date','2024-10-26'),(14907,4220,'_wp_old_date','2024-10-26'),(14908,4223,'_wp_old_date','2024-10-26'),(14909,4221,'_wp_old_date','2024-10-26'),(14910,4222,'_wp_old_date','2024-10-26'),(14911,4224,'_wp_old_date','2024-10-26'),(14912,4089,'_wp_old_date','2024-10-26'),(14913,4088,'_wp_old_date','2024-10-26'),(14914,4091,'_wp_old_date','2024-10-26'),(14915,4203,'_wp_old_date','2024-10-26'),(14916,4090,'_wp_old_date','2024-10-26'),(14917,4066,'_wp_old_date','2024-10-26'),(14918,4134,'_wp_old_date','2024-10-26'),(14919,4083,'_wp_old_date','2024-10-26'),(14920,4219,'_wp_old_date','2024-10-26'),(14921,4216,'_wp_old_date','2024-10-26'),(14922,4217,'_wp_old_date','2024-10-26'),(14923,4218,'_wp_old_date','2024-10-26'),(14924,4087,'_wp_old_date','2024-10-26'),(14925,4248,'_wp_old_date','2024-10-26'),(14926,4247,'_wp_old_date','2024-10-26'),(14927,4246,'_wp_old_date','2024-10-26'),(14928,4245,'_wp_old_date','2024-10-26'),(14929,4244,'_wp_old_date','2024-10-26'),(14930,4243,'_wp_old_date','2024-10-26'),(14931,4072,'_wp_old_date','2024-10-26'),(14932,4131,'_wp_old_date','2024-10-26'),(14933,4133,'_wp_old_date','2024-10-26'),(14934,4132,'_wp_old_date','2024-10-26'),(14935,4069,'_wp_old_date','2024-10-26'),(14936,4082,'_wp_old_date','2024-10-26'),(14937,4232,'_wp_old_date','2024-10-26'),(14938,4190,'_wp_old_date','2024-10-26'),(14939,4192,'_wp_old_date','2024-10-26'),(14940,4191,'_wp_old_date','2024-10-26'),(14941,4193,'_wp_old_date','2024-10-26'),(14942,4231,'_wp_old_date','2024-10-26'),(14943,4229,'_wp_old_date','2024-10-26'),(14944,4194,'_wp_old_date','2024-10-26'),(14945,4332,'_wp_old_date','2024-10-26'),(14946,4074,'_wp_old_date','2024-10-26'),(14947,4160,'_wp_old_date','2024-10-26'),(14948,4161,'_wp_old_date','2024-10-26'),(14949,4162,'_wp_old_date','2024-10-26'),(14950,4163,'_wp_old_date','2024-10-26'),(14951,4177,'_wp_old_date','2024-10-26'),(14952,4166,'_wp_old_date','2024-10-26'),(14953,4196,'_wp_old_date','2024-10-26'),(14954,4167,'_wp_old_date','2024-10-26'),(14955,4189,'_wp_old_date','2024-10-26'),(14956,4076,'_wp_old_date','2024-10-26'),(14957,4151,'_wp_old_date','2024-10-26'),(14958,4234,'_wp_old_date','2024-10-26'),(14959,4150,'_wp_old_date','2024-10-26'),(14960,4149,'_wp_old_date','2024-10-26'),(14961,4148,'_wp_old_date','2024-10-26'),(14962,4165,'_wp_old_date','2024-10-26'),(14963,4230,'_wp_old_date','2024-10-26'),(14964,4164,'_wp_old_date','2024-10-26'),(14965,4233,'_wp_old_date','2024-10-26'),(14966,4075,'_wp_old_date','2024-10-26'),(14967,4142,'_wp_old_date','2024-10-26'),(14968,4141,'_wp_old_date','2024-10-26'),(14969,4147,'_wp_old_date','2024-10-26'),(14970,4146,'_wp_old_date','2024-10-26'),(14971,4195,'_wp_old_date','2024-10-26'),(14972,4235,'_wp_old_date','2024-10-26'),(14973,4145,'_wp_old_date','2024-10-26'),(14974,4198,'_wp_old_date','2024-10-26'),(14975,4197,'_wp_old_date','2024-10-26'),(14979,109,'_edit_lock','1730371553:1'),(14980,3011,'_edit_lock','1730342054:1'),(14981,109,'_edit_last','1'),(14982,109,'_wp_old_slug','david-sanders'),(14983,109,'tinh-thanh','TP Hà Nội'),(14984,109,'_tinh-thanh','field_671d014bdb03b'),(14985,109,'gioi_tinh','Nam'),(14986,109,'_gioi_tinh','field_671d02c9db03d'),(14987,109,'giong_noi','Miền Nam'),(14988,109,'_giong_noi','field_671d0316db03e'),(14989,109,'ngay_sinh','20061002'),(14990,109,'_ngay_sinh','field_671d0463db03f'),(14991,109,'cccd','052200006666'),(14992,109,'_cccd','field_671d04a0db040'),(14993,109,'noi_cap_cccd','Hà Nội'),(14994,109,'_noi_cap_cccd','field_671d04b4db041'),(14995,109,'dia_chi','Ba Đình, Hà Nội'),(14996,109,'_dia_chi','field_671d04ccdb042'),(14997,109,'emailAddress','tunglam@gmail.com'),(14998,109,'_emailAddress','field_671d04f7db043'),(14999,109,'dien_thoai','0987654322'),(15000,109,'_dien_thoai','field_671d0541db044'),(15001,109,'truong_học','Đại học Bách Khoa Hà Nội'),(15002,109,'_truong_học','field_671d09e51ada8'),(15003,109,'nganh_hoc','Kỹ thuật điều khiển và Tự động hóa'),(15004,109,'_nganh_hoc','field_671d0581db045'),(15005,109,'nam_tot_nghiep','2024'),(15006,109,'_nam_tot_nghiep','field_671d05b1db046'),(15007,109,'nghe_nghiep','Đã tốt nghiệp'),(15008,109,'_nghe_nghiep','field_671d09451ada6'),(15009,109,'trinh_do','Đại học'),(15010,109,'_trinh_do','field_671d09971ada7'),(15011,109,'yeu_cau_khac',''),(15012,109,'_yeu_cau_khac','field_671d05cadb047'),(15013,109,'so_buoi_day','3'),(15014,109,'_so_buoi_day','field_671d05f8db048'),(15015,109,'muc_luong_yeu_cau','2000000'),(15016,109,'_muc_luong_yeu_cau','field_671d0634db049'),(15017,109,'mon_day','a:1:{i:0;s:5:\"Toán\";}'),(15018,109,'_mon_day','field_671d0c5dd2877'),(15019,109,'rs_page_bg_color',''),(15020,108,'_edit_lock','1730371716:1'),(15021,108,'_edit_last','1'),(15022,108,'_wp_old_slug','jennie-king'),(15023,108,'tinh-thanh','Hà Nội'),(15024,108,'_tinh-thanh','field_671d014bdb03b'),(15025,108,'gioi_tinh','Nữ'),(15026,108,'_gioi_tinh','field_671d02c9db03d'),(15027,108,'giong_noi','Miền Bắc'),(15028,108,'_giong_noi','field_671d0316db03e'),(15029,108,'ngay_sinh','20051012'),(15030,108,'_ngay_sinh','field_671d0463db03f'),(15031,108,'cccd','052200006888'),(15032,108,'_cccd','field_671d04a0db040'),(15033,108,'noi_cap_cccd','Hà Nội'),(15034,108,'_noi_cap_cccd','field_671d04b4db041'),(15035,108,'dia_chi','Hoàn Kiếm, Hà Nội'),(15036,108,'_dia_chi','field_671d04ccdb042'),(15037,108,'emailAddress','minhanh@gmail.com'),(15038,108,'_emailAddress','field_671d04f7db043'),(15039,108,'dien_thoai','0987654323'),(15040,108,'_dien_thoai','field_671d0541db044'),(15041,108,'truong_học','Học viện Ngân hàng'),(15042,108,'_truong_học','field_671d09e51ada8'),(15043,108,'nganh_hoc','Quản trị kinh doanh'),(15044,108,'_nganh_hoc','field_671d0581db045'),(15045,108,'nam_tot_nghiep','2027'),(15046,108,'_nam_tot_nghiep','field_671d05b1db046'),(15047,108,'nghe_nghiep','Đã tốt nghiệp'),(15048,108,'_nghe_nghiep','field_671d09451ada6'),(15049,108,'trinh_do','Đại học'),(15050,108,'_trinh_do','field_671d09971ada7'),(15051,108,'yeu_cau_khac',''),(15052,108,'_yeu_cau_khac','field_671d05cadb047'),(15053,108,'so_buoi_day','4'),(15054,108,'_so_buoi_day','field_671d05f8db048'),(15055,108,'muc_luong_yeu_cau','3000000'),(15056,108,'_muc_luong_yeu_cau','field_671d0634db049'),(15057,108,'mon_day','a:2:{i:0;s:5:\"Toán\";i:1;s:4:\"Hóa\";}'),(15058,108,'_mon_day','field_671d0c5dd2877'),(15059,108,'rs_page_bg_color',''),(15060,110,'_wp_old_slug','ngo_tuan_khai'),(15061,106,'_edit_lock','1730371827:1'),(15062,106,'_edit_last','1'),(15063,106,'_wp_old_slug','keith-taylor'),(15064,106,'tinh-thanh','TP HCM'),(15065,106,'_tinh-thanh','field_671d014bdb03b'),(15066,106,'gioi_tinh','Nam'),(15067,106,'_gioi_tinh','field_671d02c9db03d'),(15068,106,'giong_noi','Miền Nam'),(15069,106,'_giong_noi','field_671d0316db03e'),(15070,106,'ngay_sinh','20021010'),(15071,106,'_ngay_sinh','field_671d0463db03f'),(15072,106,'cccd','052200007463'),(15073,106,'_cccd','field_671d04a0db040'),(15074,106,'noi_cap_cccd','HCM'),(15075,106,'_noi_cap_cccd','field_671d04b4db041'),(15076,106,'dia_chi','Bình Thanh, HCM'),(15077,106,'_dia_chi','field_671d04ccdb042'),(15078,106,'emailAddress','phungloan@gmail.com'),(15079,106,'_emailAddress','field_671d04f7db043'),(15080,106,'dien_thoai','0987423727'),(15081,106,'_dien_thoai','field_671d0541db044'),(15082,106,'truong_học',' THCS - THPT Nguyễn Bỉnh Khiêm'),(15083,106,'_truong_học','field_671d09e51ada8'),(15084,106,'nganh_hoc',' Sư phạm Sinh học'),(15085,106,'_nganh_hoc','field_671d0581db045'),(15086,106,'nam_tot_nghiep','2024'),(15087,106,'_nam_tot_nghiep','field_671d05b1db046'),(15088,106,'nghe_nghiep','Đã tốt nghiệp'),(15089,106,'_nghe_nghiep','field_671d09451ada6'),(15090,106,'trinh_do','Đại học'),(15091,106,'_trinh_do','field_671d09971ada7'),(15092,106,'yeu_cau_khac',''),(15093,106,'_yeu_cau_khac','field_671d05cadb047'),(15094,106,'so_buoi_day','4'),(15095,106,'_so_buoi_day','field_671d05f8db048'),(15096,106,'muc_luong_yeu_cau','3500000'),(15097,106,'_muc_luong_yeu_cau','field_671d0634db049'),(15098,106,'mon_day','a:4:{i:0;s:5:\"Toán\";i:1;s:3:\"Lý\";i:2;s:4:\"Hóa\";i:3;s:4:\"Sinh\";}'),(15099,106,'_mon_day','field_671d0c5dd2877'),(15100,106,'rs_page_bg_color',''),(15101,105,'_edit_lock','1730371620:1'),(15102,105,'_edit_last','1'),(15103,105,'_wp_old_slug','dave-robbins'),(15104,105,'tinh-thanh','TP HCM'),(15105,105,'_tinh-thanh','field_671d014bdb03b'),(15106,105,'gioi_tinh','Nam'),(15107,105,'_gioi_tinh','field_671d02c9db03d'),(15108,105,'giong_noi','Miền Nam'),(15109,105,'_giong_noi','field_671d0316db03e'),(15110,105,'ngay_sinh','19981007'),(15111,105,'_ngay_sinh','field_671d0463db03f'),(15112,105,'cccd','052200006532'),(15113,105,'_cccd','field_671d04a0db040'),(15114,105,'noi_cap_cccd','TP HCM'),(15115,105,'_noi_cap_cccd','field_671d04b4db041'),(15116,105,'dia_chi','Quận 1, TP HCM'),(15117,105,'_dia_chi','field_671d04ccdb042'),(15118,105,'emailAddress','thanhdat@gmail.com'),(15119,105,'_emailAddress','field_671d04f7db043'),(15120,105,'dien_thoai','0987654329'),(15121,105,'_dien_thoai','field_671d0541db044'),(15122,105,'truong_học',' Đại Học HUFLIT'),(15123,105,'_truong_học','field_671d09e51ada8'),(15124,105,'nganh_hoc',' Ngôn Ngữ Anh'),(15125,105,'_nganh_hoc','field_671d0581db045'),(15126,105,'nam_tot_nghiep','2020'),(15127,105,'_nam_tot_nghiep','field_671d05b1db046'),(15128,105,'nghe_nghiep','Đã tốt nghiệp'),(15129,105,'_nghe_nghiep','field_671d09451ada6'),(15130,105,'trinh_do','Đại học'),(15131,105,'_trinh_do','field_671d09971ada7'),(15132,105,'yeu_cau_khac',''),(15133,105,'_yeu_cau_khac','field_671d05cadb047'),(15134,105,'so_buoi_day','4'),(15135,105,'_so_buoi_day','field_671d05f8db048'),(15136,105,'muc_luong_yeu_cau','3000000'),(15137,105,'_muc_luong_yeu_cau','field_671d0634db049'),(15138,105,'mon_day','a:1:{i:0;s:11:\"Tiếng Anh\";}'),(15139,105,'_mon_day','field_671d0c5dd2877'),(15140,105,'rs_page_bg_color',''),(15141,104,'_edit_lock','1730371640:1'),(15142,104,'_edit_last','1'),(15143,104,'_wp_old_slug','jennifer-powell'),(15144,104,'tinh-thanh','TP HCM'),(15145,104,'_tinh-thanh','field_671d014bdb03b'),(15146,104,'gioi_tinh','Nữ'),(15147,104,'_gioi_tinh','field_671d02c9db03d'),(15148,104,'giong_noi','Miền Nam'),(15149,104,'_giong_noi','field_671d0316db03e'),(15150,104,'ngay_sinh','19961009'),(15151,104,'_ngay_sinh','field_671d0463db03f'),(15152,104,'cccd','052200006788'),(15153,104,'_cccd','field_671d04a0db040'),(15154,104,'noi_cap_cccd','HCM'),(15155,104,'_noi_cap_cccd','field_671d04b4db041'),(15156,104,'dia_chi','Quận 10, HCM'),(15157,104,'_dia_chi','field_671d04ccdb042'),(15158,104,'emailAddress','bichnhung@gmail.com'),(15159,104,'_emailAddress','field_671d04f7db043'),(15160,104,'dien_thoai','0987654456'),(15161,104,'_dien_thoai','field_671d0541db044'),(15162,104,'truong_học',' VB1: Đại học Sư Phạm TPHCM/ VB2: Đại học Kinh tế TPHCM'),(15163,104,'_truong_học','field_671d09e51ada8'),(15164,104,'nganh_hoc',' VB1: Giáo dục Chính trị/ VB2: Ngôn ngữ Anh'),(15165,104,'_nganh_hoc','field_671d0581db045'),(15166,104,'nam_tot_nghiep','2018'),(15167,104,'_nam_tot_nghiep','field_671d05b1db046'),(15168,104,'nghe_nghiep','Đã tốt nghiệp'),(15169,104,'_nghe_nghiep','field_671d09451ada6'),(15170,104,'trinh_do','Đại học'),(15171,104,'_trinh_do','field_671d09971ada7'),(15172,104,'yeu_cau_khac',''),(15173,104,'_yeu_cau_khac','field_671d05cadb047'),(15174,104,'so_buoi_day','6'),(15175,104,'_so_buoi_day','field_671d05f8db048'),(15176,104,'muc_luong_yeu_cau','4000000'),(15177,104,'_muc_luong_yeu_cau','field_671d0634db049'),(15178,104,'mon_day','a:1:{i:0;s:11:\"Tiếng Anh\";}'),(15179,104,'_mon_day','field_671d0c5dd2877'),(15180,104,'rs_page_bg_color',''),(15181,103,'_edit_lock','1730371662:1'),(15182,103,'_edit_last','1'),(15183,103,'_wp_old_slug','kathryn-webb'),(15184,103,'tinh-thanh','TP HCM'),(15185,103,'_tinh-thanh','field_671d014bdb03b'),(15186,103,'gioi_tinh','Nữ'),(15187,103,'_gioi_tinh','field_671d02c9db03d'),(15188,103,'giong_noi','Miền Nam'),(15189,103,'_giong_noi','field_671d0316db03e'),(15190,103,'ngay_sinh','20021009'),(15191,103,'_ngay_sinh','field_671d0463db03f'),(15192,103,'cccd','052200006811'),(15193,103,'_cccd','field_671d04a0db040'),(15194,103,'noi_cap_cccd','HCM'),(15195,103,'_noi_cap_cccd','field_671d04b4db041'),(15196,103,'dia_chi','HCM'),(15197,103,'_dia_chi','field_671d04ccdb042'),(15198,103,'emailAddress','gialinh@gmail.com'),(15199,103,'_emailAddress','field_671d04f7db043'),(15200,103,'dien_thoai','0986747333'),(15201,103,'_dien_thoai','field_671d0541db044'),(15202,103,'truong_học',' Đại học Kinh tế - Tài chính ( UEF)'),(15203,103,'_truong_học','field_671d09e51ada8'),(15204,103,'nganh_hoc',' Kinh doanh quốc tế'),(15205,103,'_nganh_hoc','field_671d0581db045'),(15206,103,'nam_tot_nghiep','2026'),(15207,103,'_nam_tot_nghiep','field_671d05b1db046'),(15208,103,'nghe_nghiep','Đã tốt nghiệp'),(15209,103,'_nghe_nghiep','field_671d09451ada6'),(15210,103,'trinh_do','Đại học'),(15211,103,'_trinh_do','field_671d09971ada7'),(15212,103,'yeu_cau_khac',''),(15213,103,'_yeu_cau_khac','field_671d05cadb047'),(15214,103,'so_buoi_day','4'),(15215,103,'_so_buoi_day','field_671d05f8db048'),(15216,103,'muc_luong_yeu_cau','3000000'),(15217,103,'_muc_luong_yeu_cau','field_671d0634db049'),(15218,103,'mon_day','a:1:{i:0;s:14:\"Tiếng Việt\";}'),(15219,103,'_mon_day','field_671d0c5dd2877'),(15220,103,'rs_page_bg_color',''),(15221,101,'_edit_lock','1730371682:1'),(15222,101,'_edit_last','1'),(15223,101,'_wp_old_slug','denise-wood'),(15224,101,'tinh-thanh','HCM'),(15225,101,'_tinh-thanh','field_671d014bdb03b'),(15226,101,'gioi_tinh','Nữ'),(15227,101,'_gioi_tinh','field_671d02c9db03d'),(15228,101,'giong_noi','Miền Nam'),(15229,101,'_giong_noi','field_671d0316db03e'),(15230,101,'ngay_sinh','19971030'),(15231,101,'_ngay_sinh','field_671d0463db03f'),(15232,101,'cccd','052200005678'),(15233,101,'_cccd','field_671d04a0db040'),(15234,101,'noi_cap_cccd','HCM'),(15235,101,'_noi_cap_cccd','field_671d04b4db041'),(15236,101,'dia_chi','HCM'),(15237,101,'_dia_chi','field_671d04ccdb042'),(15238,101,'emailAddress','thutrang@gmail.com'),(15239,101,'_emailAddress','field_671d04f7db043'),(15240,101,'dien_thoai','0987656765'),(15241,101,'_dien_thoai','field_671d0541db044'),(15242,101,'truong_học',' Đại học Sư phạm thành phố Hồ Chí Minh'),(15243,101,'_truong_học','field_671d09e51ada8'),(15244,101,'nganh_hoc',' Sư phạm Ngữ Văn'),(15245,101,'_nganh_hoc','field_671d0581db045'),(15246,101,'nam_tot_nghiep','2021'),(15247,101,'_nam_tot_nghiep','field_671d05b1db046'),(15248,101,'nghe_nghiep','Đã tốt nghiệp'),(15249,101,'_nghe_nghiep','field_671d09451ada6'),(15250,101,'trinh_do','Đại học'),(15251,101,'_trinh_do','field_671d09971ada7'),(15252,101,'yeu_cau_khac',''),(15253,101,'_yeu_cau_khac','field_671d05cadb047'),(15254,101,'so_buoi_day','6'),(15255,101,'_so_buoi_day','field_671d05f8db048'),(15256,101,'muc_luong_yeu_cau','4000000'),(15257,101,'_muc_luong_yeu_cau','field_671d0634db049'),(15258,101,'mon_day','a:2:{i:0;s:4:\"Văn\";i:1;s:14:\"Tiếng Việt\";}'),(15259,101,'_mon_day','field_671d0c5dd2877'),(15260,101,'rs_page_bg_color',''),(15261,10,'_edit_lock','1730371706:1'),(15262,10,'_edit_last','1'),(15263,10,'_wp_old_slug','edward-bowman'),(15264,10,'tinh-thanh','HCM'),(15265,10,'_tinh-thanh','field_671d014bdb03b'),(15266,10,'gioi_tinh','Nam'),(15267,10,'_gioi_tinh','field_671d02c9db03d'),(15268,10,'giong_noi','Miền Nam'),(15269,10,'_giong_noi','field_671d0316db03e'),(15270,10,'ngay_sinh','19951011'),(15271,10,'_ngay_sinh','field_671d0463db03f'),(15272,10,'cccd','052200004545'),(15273,10,'_cccd','field_671d04a0db040'),(15274,10,'noi_cap_cccd','HCM'),(15275,10,'_noi_cap_cccd','field_671d04b4db041'),(15276,10,'dia_chi','HCM'),(15277,10,'_dia_chi','field_671d04ccdb042'),(15278,10,'emailAddress','vanminh@gmail.com'),(15279,10,'_emailAddress','field_671d04f7db043'),(15280,10,'dien_thoai','0987654444'),(15281,10,'_dien_thoai','field_671d0541db044'),(15282,10,'truong_học',' Đại học Khoa học Tự nhiên TPHCM'),(15283,10,'_truong_học','field_671d09e51ada8'),(15284,10,'nganh_hoc',' Sinh học'),(15285,10,'_nganh_hoc','field_671d0581db045'),(15286,10,'nam_tot_nghiep','2017'),(15287,10,'_nam_tot_nghiep','field_671d05b1db046'),(15288,10,'nghe_nghiep','Giáo viên'),(15289,10,'_nghe_nghiep','field_671d09451ada6'),(15290,10,'trinh_do','Đại học'),(15291,10,'_trinh_do','field_671d09971ada7'),(15292,10,'yeu_cau_khac',''),(15293,10,'_yeu_cau_khac','field_671d05cadb047'),(15294,10,'so_buoi_day','1'),(15295,10,'_so_buoi_day','field_671d05f8db048'),(15296,10,'muc_luong_yeu_cau','4000000'),(15297,10,'_muc_luong_yeu_cau','field_671d0634db049'),(15298,10,'mon_day','a:1:{i:0;s:4:\"Sinh\";}'),(15299,10,'_mon_day','field_671d0c5dd2877'),(15300,10,'rs_page_bg_color',''),(15301,694,'_edit_lock','1730216966:1'),(15302,269,'_edit_lock','1730285845:1'),(15303,269,'_edit_last','1'),(15304,269,'_wp_old_slug','basic-marketing'),(15305,269,'rs_page_bg_color',''),(15306,4391,'_edit_last','1'),(15307,4391,'rs_page_bg_color',''),(15308,4391,'_edit_lock','1730024055:1'),(15309,269,'mon_day','a:1:{i:0;s:5:\"Toán\";}'),(15310,269,'_mon_day','field_671debb6407ac'),(15311,269,'dia_chi','Lê Thị Riêng, Thới An, Quận 12, TP.HCM'),(15312,269,'_dia_chi','field_671df5af407ad'),(15313,269,'tinh_thanh','TP.HCM'),(15314,269,'_tinh_thanh','field_671df5c8407ae'),(15315,269,'quan_huyen','Quận 12'),(15316,269,'_quan_huyen','field_671df5e2407af'),(15317,269,'muc_luong','0'),(15318,269,'_muc_luong','field_671df633407b0'),(15319,269,'so_buoi','3'),(15320,269,'_so_buoi','field_671df659407b1'),(15321,269,'thoi_gian_day','90 phút/buổi'),(15322,269,'_thoi_gian_day','field_671df67a407b2'),(15323,4403,'_wpb_shortcodes_custom_css','.vc_custom_1495809860309{padding-bottom: 68px !important;}'),(15324,4405,'_wpb_shortcodes_custom_css','.vc_custom_1495809860309{padding-bottom: 68px !important;}'),(15326,4407,'_menu_item_type','post_type'),(15327,4407,'_menu_item_menu_item_parent','4067'),(15328,4407,'_menu_item_object_id','291'),(15329,4407,'_menu_item_object','page'),(15330,4407,'_menu_item_target',''),(15331,4407,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(15332,4407,'_menu_item_xfn',''),(15333,4407,'_menu_item_url',''),(15335,291,'_edit_lock','1730683629:1'),(15336,291,'_edit_last','1'),(15337,4409,'_wpb_shortcodes_custom_css','.vc_custom_1495807738968{padding-top: 122px !important;padding-bottom: 68px !important;}'),(15338,4410,'_wpb_shortcodes_custom_css','.vc_custom_1495807738968{padding-top: 122px !important;padding-bottom: 68px !important;}'),(15339,4411,'_wpb_shortcodes_custom_css','.vc_custom_1495807738968{padding-top: 122px !important;padding-bottom: 68px !important;}'),(15340,4412,'_edit_lock','1730214163:1'),(15341,4412,'_edit_last','1'),(15342,4412,'_wp_page_template','default'),(15343,4412,'mkdf_page_content_behind_header_meta','no'),(15344,4412,'mkdf_boxed_background_image_attachment_meta','fixed'),(15345,4412,'mkdf_disable_header_widget_logo_area_meta','no'),(15346,4412,'mkdf_disable_header_widget_menu_area_meta','no'),(15347,4412,'mkdf_disable_footer_meta','no'),(15348,4412,'show_footer_custom_widget_areas','no'),(15349,4412,'_wpb_vc_js_status','true'),(15350,4416,'_edit_lock','1730027648:1'),(15351,4416,'_edit_last','1'),(15352,4416,'mkdf_page_content_behind_header_meta','no'),(15353,4416,'mkdf_boxed_background_image_attachment_meta','fixed'),(15354,4416,'mkdf_disable_header_widget_logo_area_meta','no'),(15355,4416,'mkdf_disable_header_widget_menu_area_meta','no'),(15356,4416,'mkdf_disable_footer_meta','no'),(15357,4416,'show_footer_custom_widget_areas','no'),(15358,4416,'_wpb_vc_js_status','false'),(15359,4418,'_menu_item_type','post_type'),(15360,4418,'_menu_item_menu_item_parent','4068'),(15361,4418,'_menu_item_object_id','4412'),(15362,4418,'_menu_item_object','page'),(15363,4418,'_menu_item_target',''),(15364,4418,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(15365,4418,'_menu_item_xfn',''),(15366,4418,'_menu_item_url',''),(15368,4419,'_wpb_shortcodes_custom_css','.vc_custom_1495809860309{padding-bottom: 68px !important;}'),(15369,4420,'_wpb_shortcodes_custom_css','.vc_custom_1495809860309{padding-bottom: 68px !important;}'),(15370,229,'_edit_lock','1730215853:1'),(15371,286,'_edit_lock','1730216457:1'),(15372,3011,'_edit_last','1'),(15373,3011,'_wp_old_slug','megamarketing'),(15374,3011,'mon_day','a:1:{i:0;s:4:\"Hóa\";}'),(15375,3011,'_mon_day','field_671debb6407ac'),(15376,3011,'dia_chi','Phạm Thế Hiển, P6, Quận 8, TPHCM'),(15377,3011,'_dia_chi','field_671df5af407ad'),(15378,3011,'tinh_thanh','TP HCM'),(15379,3011,'_tinh_thanh','field_671df5c8407ae'),(15380,3011,'quan_huyen','Quận 8'),(15381,3011,'_quan_huyen','field_671df5e2407af'),(15382,3011,'muc_luong','3000000'),(15383,3011,'_muc_luong','field_671df633407b0'),(15384,3011,'so_buoi','3'),(15385,3011,'_so_buoi','field_671df659407b1'),(15386,3011,'thoi_gian_day','Dạy 120 phút/buổi, T6, 7 Tối 6h30 hoặc 7h'),(15387,3011,'_thoi_gian_day','field_671df67a407b2'),(15388,3011,'rs_page_bg_color',''),(15389,3010,'_edit_lock','1730216913:1'),(15390,3010,'_edit_last','1'),(15391,3010,'_wp_old_slug','ios-developer'),(15392,3010,'mon_day','a:1:{i:0;s:5:\"Toán\";}'),(15393,3010,'_mon_day','field_671debb6407ac'),(15394,3010,'dia_chi','Chung Cư Đông Hưng 1, Tân Hưng Thuận, Quận 12, TP.HCM'),(15395,3010,'_dia_chi','field_671df5af407ad'),(15396,3010,'tinh_thanh','TP HCM'),(15397,3010,'_tinh_thanh','field_671df5c8407ae'),(15398,3010,'quan_huyen','Quận 12'),(15399,3010,'_quan_huyen','field_671df5e2407af'),(15400,3010,'muc_luong','4000000'),(15401,3010,'_muc_luong','field_671df633407b0'),(15402,3010,'so_buoi','4'),(15403,3010,'_so_buoi','field_671df659407b1'),(15404,3010,'thoi_gian_day','Dạy 90 phút/buổi, T6 Tối 6h - 7h30, T7 Chiều 4h - 5h30'),(15405,3010,'_thoi_gian_day','field_671df67a407b2'),(15406,3010,'rs_page_bg_color',''),(15409,3005,'_edit_lock','1730216938:1'),(15410,3005,'_edit_last','1'),(15411,3005,'mon_day','a:1:{i:0;s:5:\"Toán\";}'),(15412,3005,'_mon_day','field_671debb6407ac'),(15413,3005,'dia_chi','Liên Khu 5-6, Bình Hưng Hòa B, Bình Tân, TP.HCM'),(15414,3005,'_dia_chi','field_671df5af407ad'),(15415,3005,'tinh_thanh','TP.HCM'),(15416,3005,'_tinh_thanh','field_671df5c8407ae'),(15417,3005,'quan_huyen','Bình Tân'),(15418,3005,'_quan_huyen','field_671df5e2407af'),(15419,3005,'muc_luong','3500000'),(15420,3005,'_muc_luong','field_671df633407b0'),(15421,3005,'so_buoi','2'),(15422,3005,'_so_buoi','field_671df659407b1'),(15423,3005,'thoi_gian_day','Dạy 120 phút/buổi, T2, 4, 6 Tối 6h - 8h(chọn 2b)'),(15424,3005,'_thoi_gian_day','field_671df67a407b2'),(15425,3005,'rs_page_bg_color',''),(15426,694,'_edit_last','1'),(15427,694,'_wp_old_slug','business-accounting'),(15428,694,'mon_day','a:1:{i:0;s:11:\"Tiếng Anh\";}'),(15429,694,'_mon_day','field_671debb6407ac'),(15430,694,'dia_chi','104 XVNT, Bình Thạnh, TP HCM'),(15431,694,'_dia_chi','field_671df5af407ad'),(15432,694,'tinh_thanh','TP HCM'),(15433,694,'_tinh_thanh','field_671df5c8407ae'),(15434,694,'quan_huyen','Bình Thạnh'),(15435,694,'_quan_huyen','field_671df5e2407af'),(15436,694,'muc_luong','3000000'),(15437,694,'_muc_luong','field_671df633407b0'),(15438,694,'so_buoi','3'),(15439,694,'_so_buoi','field_671df659407b1'),(15440,694,'thoi_gian_day','Dạy 120 phút/buổi, T2, 4, 6 Tối 6h - 8h(chọn 3b)'),(15441,694,'_thoi_gian_day','field_671df67a407b2'),(15442,694,'rs_page_bg_color',''),(15443,3005,'_wp_old_slug','startup-strategy'),(15444,692,'_edit_lock','1730215639:1'),(15445,692,'_edit_last','1'),(15446,692,'_wp_old_slug','hr-marketing'),(15447,692,'mon_day','a:1:{i:0;s:4:\"Văn\";}'),(15448,692,'_mon_day','field_671debb6407ac'),(15449,692,'dia_chi','KDC Hiệp Thành-Nguyễn Thị Búp, Hiệp Thành, Quận 12, TP.HCM'),(15450,692,'_dia_chi','field_671df5af407ad'),(15451,692,'tinh_thanh','TP.HCM'),(15452,692,'_tinh_thanh','field_671df5c8407ae'),(15453,692,'quan_huyen','Quận 12'),(15454,692,'_quan_huyen','field_671df5e2407af'),(15455,692,'muc_luong','3000000'),(15456,692,'_muc_luong','field_671df633407b0'),(15457,692,'so_buoi','2'),(15458,692,'_so_buoi','field_671df659407b1'),(15459,692,'thoi_gian_day','Dạy 90 phút/buổi, T3, 5 Tối'),(15460,692,'_thoi_gian_day','field_671df67a407b2'),(15461,692,'rs_page_bg_color',''),(15462,4062,'_edit_lock','1730049527:1'),(15463,4062,'_edit_last','1'),(15464,4062,'mon_day','a:1:{i:0;s:14:\"Tiếng Việt\";}'),(15465,4062,'_mon_day','field_671debb6407ac'),(15466,4062,'dia_chi','Phố Bồ Đề, Long Biên, Hà Nội'),(15467,4062,'_dia_chi','field_671df5af407ad'),(15468,4062,'tinh_thanh','Hà Nội'),(15469,4062,'_tinh_thanh','field_671df5c8407ae'),(15470,4062,'quan_huyen','Long Biên'),(15471,4062,'_quan_huyen','field_671df5e2407af'),(15472,4062,'muc_luong','1500000'),(15473,4062,'_muc_luong','field_671df633407b0'),(15474,4062,'so_buoi','3'),(15475,4062,'_so_buoi','field_671df659407b1'),(15476,4062,'thoi_gian_day','Dạy 120 phút/buổi, T2, 4, 6 Chiều 5h - 7h hoặc Tối 7h - 9h'),(15477,4062,'_thoi_gian_day','field_671df67a407b2'),(15478,4062,'rs_page_bg_color',''),(15479,4062,'_wp_old_slug','business-english'),(15480,174,'_edit_lock','1730049037:1'),(15481,174,'_edit_last','1'),(15482,174,'_wp_old_slug','social-computing'),(15483,174,'mon_day','a:1:{i:0;s:11:\"Tiếng Anh\";}'),(15484,174,'_mon_day','field_671debb6407ac'),(15485,174,'dia_chi','Đường 160, Tăng Nhơn Phú A, Quận 9, TP.HCM'),(15486,174,'_dia_chi','field_671df5af407ad'),(15487,174,'tinh_thanh','TP.HCM'),(15488,174,'_tinh_thanh','field_671df5c8407ae'),(15489,174,'quan_huyen','Quận 9'),(15490,174,'_quan_huyen','field_671df5e2407af'),(15491,174,'muc_luong','2000000'),(15492,174,'_muc_luong','field_671df633407b0'),(15493,174,'so_buoi','2'),(15494,174,'_so_buoi','field_671df659407b1'),(15495,174,'thoi_gian_day','Dạy 90 phút/buổi, T5, 6 Tối 5h30 trở đi'),(15496,174,'_thoi_gian_day','field_671df67a407b2'),(15497,174,'rs_page_bg_color',''),(15498,272,'_edit_lock','1730218091:1'),(15499,272,'_edit_last','1'),(15500,272,'_wp_old_slug','android-developer'),(15501,272,'mon_day','a:1:{i:0;s:3:\"Lý\";}'),(15502,272,'_mon_day','field_671debb6407ac'),(15503,272,'dia_chi','Chung Cư Đức Khải, Phú Mỹ, Quận 7, TP.HCM'),(15504,272,'_dia_chi','field_671df5af407ad'),(15505,272,'tinh_thanh','TP.HCM'),(15506,272,'_tinh_thanh','field_671df5c8407ae'),(15507,272,'quan_huyen','Quận 7'),(15508,272,'_quan_huyen','field_671df5e2407af'),(15509,272,'muc_luong','800000'),(15510,272,'_muc_luong','field_671df633407b0'),(15511,272,'so_buoi','1'),(15512,272,'_so_buoi','field_671df659407b1'),(15513,272,'thoi_gian_day','Dạy 120 phút/buổi, T3, 5  Tối 6h - 8h chọn 1b'),(15514,272,'_thoi_gian_day','field_671df67a407b2'),(15515,272,'rs_page_bg_color',''),(15516,4431,'_wp_attached_file','2024/10/logo_olympia_ko.png'),(15517,4431,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:7000;s:6:\"height\";i:7000;s:4:\"file\";s:27:\"2024/10/logo_olympia_ko.png\";s:8:\"filesize\";i:2227159;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"logo_olympia_ko-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:54929;}s:5:\"large\";a:5:{s:4:\"file\";s:29:\"logo_olympia_ko-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:244096;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"logo_olympia_ko-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22518;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"logo_olympia_ko-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:173042;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:29:\"logo_olympia_ko-1536x1536.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:396373;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:27:\"logo_olympia_ko-550x550.png\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:115872;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:27:\"logo_olympia_ko-350x282.png\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:61522;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:28:\"logo_olympia_ko-1100x550.png\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:181693;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:28:\"logo_olympia_ko-550x1100.png\";s:5:\"width\";i:550;s:6:\"height\";i:1100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:132358;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:29:\"logo_olympia_ko-1100x1100.png\";s:5:\"width\";i:1100;s:6:\"height\";i:1100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:264613;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:27:\"logo_olympia_ko-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:54929;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:27:\"logo_olympia_ko-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:129403;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:27:\"logo_olympia_ko-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12900;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15518,4431,'_wp_attachment_image_alt','logo'),(15520,4402,'_wpb_shortcodes_custom_css','.vc_custom_1730345417201{padding-top: 40px !important;padding-bottom: 20px !important;}.vc_custom_1730345448501{padding-top: 20px !important;padding-bottom: 10px !important;}.vc_custom_1730345460738{padding-top: 20px !important;padding-bottom: 20px !important;}'),(15521,4433,'_wpb_shortcodes_custom_css','.vc_custom_1496068196330{padding-top: 110px !important;padding-bottom: 125px !important;}.vc_custom_1496232790191{padding-top: 115px !important;padding-bottom: 100px !important;}.vc_custom_1496309608001{padding-top: 110px !important;padding-bottom: 130px !important;}'),(15528,4436,'_wpb_shortcodes_custom_css','.vc_custom_1496068196330{padding-top: 110px !important;padding-bottom: 125px !important;}.vc_custom_1496232790191{padding-top: 115px !important;padding-bottom: 100px !important;}.vc_custom_1496309608001{padding-top: 110px !important;padding-bottom: 130px !important;}'),(15569,4468,'_wpb_shortcodes_custom_css','.vc_custom_1497440561376{padding-top: 100px !important;padding-bottom: 80px !important;}.vc_custom_1495720773265{padding-bottom: 70px !important;}'),(15570,4469,'_wpb_shortcodes_custom_css','.vc_custom_1497440561376{padding-top: 100px !important;padding-bottom: 80px !important;}.vc_custom_1495720773265{padding-bottom: 70px !important;}'),(15571,4470,'_wpb_shortcodes_custom_css','.vc_custom_1495807738968{padding-top: 122px !important;padding-bottom: 68px !important;}'),(15572,4471,'_wpb_shortcodes_custom_css','.vc_custom_1495807738968{padding-top: 122px !important;padding-bottom: 68px !important;}'),(15573,4472,'_wpb_shortcodes_custom_css','.vc_custom_1496068196330{padding-top: 110px !important;padding-bottom: 125px !important;}.vc_custom_1496232790191{padding-top: 115px !important;padding-bottom: 100px !important;}.vc_custom_1496309608001{padding-top: 110px !important;padding-bottom: 130px !important;}'),(15574,4473,'_wpb_shortcodes_custom_css','.vc_custom_1497446239499{padding-top: 63px !important;padding-bottom: 63px !important;}.vc_custom_1496402409845{padding-top: 81px !important;padding-bottom: 70px !important;}.vc_custom_1496402470103{padding-top: 100px !important;padding-bottom: 95px !important;}.vc_custom_1496329986296{padding-bottom: 20px !important;}'),(15575,4474,'_wpb_shortcodes_custom_css','.vc_custom_1497440561376{padding-top: 100px !important;padding-bottom: 80px !important;}.vc_custom_1495720773265{padding-bottom: 70px !important;}'),(15576,677,'_edit_lock','1730217010:1'),(15577,677,'_edit_last','1'),(15578,677,'_wp_old_slug','app-developer'),(15579,677,'mon_day','a:1:{i:0;s:4:\"Sinh\";}'),(15580,677,'_mon_day','field_671debb6407ac'),(15581,677,'dia_chi','10 XVNT, Bình Thạnh, TP HCM'),(15582,677,'_dia_chi','field_671df5af407ad'),(15583,677,'tinh_thanh','TP HCM'),(15584,677,'_tinh_thanh','field_671df5c8407ae'),(15585,677,'quan_huyen','TP HCM'),(15586,677,'_quan_huyen','field_671df5e2407af'),(15587,677,'muc_luong','3000000'),(15588,677,'_muc_luong','field_671df633407b0'),(15589,677,'so_buoi','3'),(15590,677,'_so_buoi','field_671df659407b1'),(15591,677,'thoi_gian_day','Dạy 120 phút/buổi, T2, 4, 6 Tối 6h - 8h'),(15592,677,'_thoi_gian_day','field_671df67a407b2'),(15593,677,'rs_page_bg_color',''),(15594,274,'_edit_lock','1730216493:1'),(15595,274,'_edit_last','1'),(15596,274,'mon_day','a:1:{i:0;s:4:\"Hóa\";}'),(15597,274,'_mon_day','field_671debb6407ac'),(15598,274,'dia_chi','02, Nguyễn Oanh, Quận Gò Vấp, TP. HCM'),(15599,274,'_dia_chi','field_671df5af407ad'),(15600,274,'tinh_thanh','TP. HCM'),(15601,274,'_tinh_thanh','field_671df5c8407ae'),(15602,274,'quan_huyen',' Gò Vấp'),(15603,274,'_quan_huyen','field_671df5e2407af'),(15604,274,'muc_luong','2000000'),(15605,274,'_muc_luong','field_671df633407b0'),(15606,274,'so_buoi','2'),(15607,274,'_so_buoi','field_671df659407b1'),(15608,274,'thoi_gian_day','Dạy 120 phút/buổi, T2, 6 Tối 6h - 8h'),(15609,274,'_thoi_gian_day','field_671df67a407b2'),(15610,274,'rs_page_bg_color',''),(15611,229,'_edit_last','1'),(15612,229,'mon_day','a:1:{i:0;s:14:\"Tiếng Việt\";}'),(15613,229,'_mon_day','field_671debb6407ac'),(15614,229,'dia_chi','10 Trần Não, P. Bình An, Q. 2, TP. HCM'),(15615,229,'_dia_chi','field_671df5af407ad'),(15616,229,'tinh_thanh','TP. HCM'),(15617,229,'_tinh_thanh','field_671df5c8407ae'),(15618,229,'quan_huyen','Quận 2'),(15619,229,'_quan_huyen','field_671df5e2407af'),(15620,229,'muc_luong','2400000'),(15621,229,'_muc_luong','field_671df633407b0'),(15622,229,'so_buoi','2'),(15623,229,'_so_buoi','field_671df659407b1'),(15624,229,'thoi_gian_day','Dạy 120 phút/buổi, T2, 6 Tối 6h - 8h'),(15625,229,'_thoi_gian_day','field_671df67a407b2'),(15626,229,'rs_page_bg_color',''),(15627,229,'_wp_old_slug','learn-spanish'),(15628,279,'_edit_lock','1730216076:1'),(15629,279,'_edit_last','1'),(15630,279,'_wp_old_slug','academic-english'),(15631,279,'mon_day','a:1:{i:0;s:11:\"Tiếng Anh\";}'),(15632,279,'_mon_day','field_671debb6407ac'),(15633,279,'dia_chi','70 Tô Ký, Quận 12, TP HCM'),(15634,279,'_dia_chi','field_671df5af407ad'),(15635,279,'tinh_thanh','TP HCM'),(15636,279,'_tinh_thanh','field_671df5c8407ae'),(15637,279,'quan_huyen','Quận 12'),(15638,279,'_quan_huyen','field_671df5e2407af'),(15639,279,'muc_luong','2300000'),(15640,279,'_muc_luong','field_671df633407b0'),(15641,279,'so_buoi','1'),(15642,279,'_so_buoi','field_671df659407b1'),(15643,279,'thoi_gian_day','Dạy 120 phút/buổi, T2, 4 Tối 6h - 8h'),(15644,279,'_thoi_gian_day','field_671df67a407b2'),(15645,279,'rs_page_bg_color',''),(15646,277,'_edit_lock','1730216213:1'),(15647,277,'_edit_last','1'),(15648,277,'_wp_old_slug','financial-modeling'),(15649,277,'mon_day','a:1:{i:0;s:5:\"Toán\";}'),(15650,277,'_mon_day','field_671debb6407ac'),(15651,277,'dia_chi','20, đường 3/2, Quận 10, TP HCM'),(15652,277,'_dia_chi','field_671df5af407ad'),(15653,277,'tinh_thanh','TP HCM'),(15654,277,'_tinh_thanh','field_671df5c8407ae'),(15655,277,'quan_huyen','Quận 10'),(15656,277,'_quan_huyen','field_671df5e2407af'),(15657,277,'muc_luong','1500000'),(15658,277,'_muc_luong','field_671df633407b0'),(15659,277,'so_buoi','2'),(15660,277,'_so_buoi','field_671df659407b1'),(15661,277,'thoi_gian_day','Dạy 120 phút/buổi, T4, 6 Tối 6h - 8h'),(15662,277,'_thoi_gian_day','field_671df67a407b2'),(15663,277,'rs_page_bg_color',''),(15664,276,'_edit_lock','1730216293:1'),(15665,276,'_edit_last','1'),(15666,276,'mon_day','a:1:{i:0;s:3:\"Lý\";}'),(15667,276,'_mon_day','field_671debb6407ac'),(15668,276,'dia_chi','14 XVNT, Bình Thạnh, TP HCM'),(15669,276,'_dia_chi','field_671df5af407ad'),(15670,276,'tinh_thanh','TP HCM'),(15671,276,'_tinh_thanh','field_671df5c8407ae'),(15672,276,'quan_huyen','Bình Thạnh'),(15673,276,'_quan_huyen','field_671df5e2407af'),(15674,276,'muc_luong','1300000'),(15675,276,'_muc_luong','field_671df633407b0'),(15676,276,'so_buoi','2'),(15677,276,'_so_buoi','field_671df659407b1'),(15678,276,'thoi_gian_day','Dạy 120 phút/buổi, T2, 4, 6 Tối 6h - 8h'),(15679,276,'_thoi_gian_day','field_671df67a407b2'),(15680,276,'rs_page_bg_color',''),(15681,286,'_edit_last','1'),(15682,286,'_wp_old_slug','world-cultures'),(15683,286,'mon_day','a:1:{i:0;s:3:\"Lý\";}'),(15684,286,'_mon_day','field_671debb6407ac'),(15685,286,'dia_chi','04 XVNT, Bình Thạnh, TP HCM'),(15686,286,'_dia_chi','field_671df5af407ad'),(15687,286,'tinh_thanh','TP HCM'),(15688,286,'_tinh_thanh','field_671df5c8407ae'),(15689,286,'quan_huyen','Bình Thạnh'),(15690,286,'_quan_huyen','field_671df5e2407af'),(15691,286,'muc_luong','1400000'),(15692,286,'_muc_luong','field_671df633407b0'),(15693,286,'so_buoi','2'),(15694,286,'_so_buoi','field_671df659407b1'),(15695,286,'thoi_gian_day','Dạy 120 phút/buổi, T2, 4, 6 Tối 6h - 8h'),(15696,286,'_thoi_gian_day','field_671df67a407b2'),(15697,286,'rs_page_bg_color',''),(15698,274,'_wp_old_slug','web-designing'),(15699,284,'_edit_lock','1730216643:1'),(15700,284,'_edit_last','1'),(15701,284,'mon_day','a:1:{i:0;s:11:\"Tiếng Anh\";}'),(15702,284,'_mon_day','field_671debb6407ac'),(15703,284,'dia_chi','10 Phạm Văn Đồng, Quận Gò Vấp, TP HCM'),(15704,284,'_dia_chi','field_671df5af407ad'),(15705,284,'tinh_thanh','TP HCM'),(15706,284,'_tinh_thanh','field_671df5c8407ae'),(15707,284,'quan_huyen','Gò Vấp'),(15708,284,'_quan_huyen','field_671df5e2407af'),(15709,284,'muc_luong','1400000'),(15710,284,'_muc_luong','field_671df633407b0'),(15711,284,'so_buoi','2'),(15712,284,'_so_buoi','field_671df659407b1'),(15713,284,'thoi_gian_day','Dạy 120 phút/buổi, T2, 6 Tối 6h - 8h'),(15714,284,'_thoi_gian_day','field_671df67a407b2'),(15715,284,'rs_page_bg_color',''),(15716,284,'_wp_old_slug','digital-leadership'),(15717,281,'_edit_lock','1730216868:1'),(15718,281,'_edit_last','1'),(15719,281,'_wp_old_slug','hr-management'),(15720,281,'mon_day','a:1:{i:0;s:4:\"Văn\";}'),(15721,281,'_mon_day','field_671debb6407ac'),(15722,281,'dia_chi','41 XVNT, Bình Thạnh, TP HCM'),(15723,281,'_dia_chi','field_671df5af407ad'),(15724,281,'tinh_thanh','TP HCM'),(15725,281,'_tinh_thanh','field_671df5c8407ae'),(15726,281,'quan_huyen','Bình Thạnh'),(15727,281,'_quan_huyen','field_671df5e2407af'),(15728,281,'muc_luong','3000000'),(15729,281,'_muc_luong','field_671df633407b0'),(15730,281,'so_buoi','3'),(15731,281,'_so_buoi','field_671df659407b1'),(15732,281,'thoi_gian_day','Dạy 120 phút/buổi, T2, 4, 6 Tối 6h - 8h'),(15733,281,'_thoi_gian_day','field_671df67a407b2'),(15734,281,'rs_page_bg_color',''),(15735,4484,'_wp_attached_file','2024/10/logo_olympia_ko.png'),(15736,4484,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:7000;s:6:\"height\";i:7000;s:4:\"file\";s:27:\"2024/10/logo_olympia_ko.png\";s:8:\"filesize\";i:2227159;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"logo_olympia_ko-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:54929;}s:5:\"large\";a:5:{s:4:\"file\";s:29:\"logo_olympia_ko-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:244096;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"logo_olympia_ko-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22518;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"logo_olympia_ko-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:173042;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:29:\"logo_olympia_ko-1536x1536.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:396373;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:27:\"logo_olympia_ko-550x550.png\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:115872;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:27:\"logo_olympia_ko-350x282.png\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:61522;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:28:\"logo_olympia_ko-1100x550.png\";s:5:\"width\";i:1100;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:181693;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:28:\"logo_olympia_ko-550x1100.png\";s:5:\"width\";i:550;s:6:\"height\";i:1100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:132358;}s:20:\"iacademy_mikado_huge\";a:5:{s:4:\"file\";s:29:\"logo_olympia_ko-1100x1100.png\";s:5:\"width\";i:1100;s:6:\"height\";i:1100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:264613;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:27:\"logo_olympia_ko-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:54929;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:27:\"logo_olympia_ko-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:129403;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:27:\"logo_olympia_ko-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12900;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15740,4486,'_wpb_shortcodes_custom_css','.vc_custom_1496068196330{padding-top: 110px !important;padding-bottom: 125px !important;}.vc_custom_1496232790191{padding-top: 115px !important;padding-bottom: 100px !important;}.vc_custom_1496309608001{padding-top: 110px !important;padding-bottom: 130px !important;}'),(15741,269,'mkdf_course_instructor_meta','108'),(15747,4490,'_wpb_shortcodes_custom_css','.vc_custom_1496068196330{padding-top: 110px !important;padding-bottom: 125px !important;}.vc_custom_1496232790191{padding-top: 115px !important;padding-bottom: 100px !important;}.vc_custom_1496309608001{padding-top: 110px !important;padding-bottom: 130px !important;}.vc_custom_1730342373849{padding-top: 30px !important;padding-bottom: 30px !important;}'),(15748,4491,'_wpb_shortcodes_custom_css','.vc_custom_1496068196330{padding-top: 110px !important;padding-bottom: 125px !important;}.vc_custom_1730342483385{padding-top: 45px !important;padding-bottom: 30px !important;}.vc_custom_1496309608001{padding-top: 110px !important;padding-bottom: 130px !important;}'),(15749,4492,'_wpb_shortcodes_custom_css','.vc_custom_1730343221541{padding-top: 40px !important;padding-bottom: 30px !important;}.vc_custom_1730343190361{padding-top: 40px !important;padding-bottom: 30px !important;}.vc_custom_1730343179893{padding-top: 40px !important;padding-bottom: 30px !important;}'),(15750,4493,'_wpb_shortcodes_custom_css','.vc_custom_1730343221541{padding-top: 40px !important;padding-bottom: 30px !important;}.vc_custom_1730343190361{padding-top: 40px !important;padding-bottom: 30px !important;}.vc_custom_1730343179893{padding-top: 40px !important;padding-bottom: 30px !important;}'),(15751,4494,'_wpb_shortcodes_custom_css','.vc_custom_1730345417201{padding-top: 40px !important;padding-bottom: 20px !important;}.vc_custom_1730345448501{padding-top: 20px !important;padding-bottom: 10px !important;}.vc_custom_1730345941548{padding-top: 20px !important;padding-bottom: 30px !important;}'),(15753,4496,'_wp_attached_file','2024/10/thay-giao_600x600.jpg'),(15754,4496,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:29:\"2024/10/thay-giao_600x600.jpg\";s:8:\"filesize\";i:67734;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"thay-giao_600x600-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16427;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"thay-giao_600x600-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6018;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:29:\"thay-giao_600x600-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40468;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:29:\"thay-giao_600x600-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17252;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:29:\"thay-giao_600x600-600x550.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45600;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:29:\"thay-giao_600x600-550x600.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46067;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:29:\"thay-giao_600x600-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16427;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:29:\"thay-giao_600x600-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3378;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15755,4496,'_wp_attachment_image_alt','thầy giáo'),(15766,4497,'_wp_attached_file','2017/05/co-giao_600x600.jpg'),(15767,4497,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:27:\"2017/05/co-giao_600x600.jpg\";s:8:\"filesize\";i:41483;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"co-giao_600x600-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10643;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"co-giao_600x600-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4175;}s:22:\"iacademy_mikado_square\";a:5:{s:4:\"file\";s:27:\"co-giao_600x600-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25218;}s:31:\"iacademy_mikado_small_landscape\";a:5:{s:4:\"file\";s:27:\"co-giao_600x600-350x282.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11168;}s:25:\"iacademy_mikado_landscape\";a:5:{s:4:\"file\";s:27:\"co-giao_600x600-600x550.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28373;}s:24:\"iacademy_mikado_portrait\";a:5:{s:4:\"file\";s:27:\"co-giao_600x600-550x600.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28936;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:27:\"co-giao_600x600-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10643;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:27:\"co-giao_600x600-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2510;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15768,4497,'_wp_attachment_image_alt','cô giáo'),(15805,2329,'_edit_lock','1730371343:1'),(15806,2329,'_edit_last','1'),(15807,4498,'_wpb_shortcodes_custom_css','.vc_custom_1497856003172{padding-top: 100px !important;padding-bottom: 100px !important;}'),(15808,4500,'_wpb_shortcodes_custom_css','.vc_custom_1497856003172{padding-top: 100px !important;padding-bottom: 100px !important;}'),(15809,4501,'_wpb_shortcodes_custom_css','.vc_custom_1497856003172{padding-top: 100px !important;padding-bottom: 100px !important;}'),(15811,4502,'_wpb_shortcodes_custom_css','.vc_custom_1495807738968{padding-top: 122px !important;padding-bottom: 68px !important;}'),(15812,4503,'_wpb_shortcodes_custom_css','.vc_custom_1495809860309{padding-bottom: 68px !important;}'),(15813,289,'show_footer_custom_widget_areas','no'),(15817,4507,'_wpb_shortcodes_custom_css','.vc_custom_1730345417201{padding-top: 40px !important;padding-bottom: 20px !important;}.vc_custom_1730345448501{padding-top: 20px !important;padding-bottom: 10px !important;}.vc_custom_1730345941548{padding-top: 20px !important;padding-bottom: 30px !important;}'),(15818,4508,'_wpb_shortcodes_custom_css','.vc_custom_1495807738968{padding-top: 122px !important;padding-bottom: 68px !important;}'),(15822,1408,'_edit_lock','1731288234:1');
/*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_posts`
--

DROP TABLE IF EXISTS `wp_posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_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=4513 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_posts`
--

LOCK TABLES `wp_posts` WRITE;
/*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */;
INSERT INTO `wp_posts` VALUES (1,1,'2024-10-20 12:18:04','2024-10-20 12:18:04','<!-- wp:paragraph -->\n<p>Cảm ơn vì đã sử dụng WordPress. Đây là bài viết đầu tiên của bạn. Sửa hoặc xóa nó, và bắt đầu bài viết của bạn nhé!</p>\n<!-- /wp:paragraph -->','Chào tất cả mọi người!','','publish','open','open','','chao-moi-nguoi','','','2024-10-20 12:18:04','2024-10-20 12:18:04','',0,'http://giasuolympia.com/?p=1',0,'post','',1),(2,1,'2024-10-20 12:18:04','2024-10-20 12:18:04','<!-- wp:paragraph -->\n<p>Đây là trang mẫu. Nó khác với bài viết bởi vì nó thường cố định và hiển thị trong menu của bạn. Nhiều người bắt đầu với trang Giới thiệu nơi bạn chia sẻ thông tin cho những ai ghé thăm. Nó có thể bắt đầu như thế này:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Chào bạn! Tôi là một người bán hàng, và đây là website của tôi. Tôi sống ở Hà Nội, có một gia đình nhỏ, và tôi thấy cách sử dụng WordPress rất thú vị.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>... hoặc cái gì đó như thế này:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Công ty chúng tôi được thành lập năm 2010, và cung cấp dịch vụ chất lượng cho rất nhiều sự kiện tại khắp Việt Nam. Với văn phòng đặt tại Hà Nội, TP. Hồ Chí Minh cùng hơn 40 nhân sự, chúng tôi là nơi nhiều đối tác tin tưởng giao cho tổ chức các sự kiện lớn.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>Là một người dùng WordPress mới, bạn nên ghé thăm <a href=\"http://giasuolympia.com/wp-admin/\">bảng tin</a> để xóa trang này và tạo trang mới cho nội dung của chính bạn. Chúc bạn vui vẻ!</p>\n<!-- /wp:paragraph -->','Trang Mẫu','','publish','closed','open','','Trang mẫu','','','2024-10-20 12:18:04','2024-10-20 12:18:04','',0,'http://giasuolympia.com/?page_id=2',0,'page','',0),(3,1,'2024-10-20 12:18:04','2024-10-20 12:18:04','','Chính sách bảo mật','','publish','closed','closed','','chinh-sach-bao-mat','','','2024-10-26 23:32:54','2024-10-26 16:32:54','',0,'http://giasuolympia.com/?page_id=3',0,'page','',0),(4,0,'2024-10-20 12:18:07','2024-10-20 12:18:07','<!-- wp:page-list /-->','Điều hướng','','publish','closed','closed','','navigation','','','2024-10-20 12:18:07','2024-10-20 12:18:07','',0,'http://giasuolympia.com/2024/10/20/navigation/',0,'wp_navigation','',0),(6,1,'2017-05-24 10:30:23','2017-05-24 10:30:23','[woocommerce_cart]','Cart','','publish','closed','closed','','cart-2','','','2017-05-24 10:30:23','2017-05-24 10:30:23','',0,'http://iacademy.mikado-themes.com/cart/',0,'page','',0),(7,1,'2017-05-24 10:30:23','2017-05-24 10:30:23','[woocommerce_checkout]','Checkout','','publish','closed','closed','','checkout-2','','','2017-05-24 10:30:23','2017-05-24 10:30:23','',0,'http://iacademy.mikado-themes.com/checkout/',0,'page','',0),(8,1,'2017-05-24 10:30:23','2017-05-24 10:30:23','[woocommerce_my_account]','My account','','publish','closed','closed','','my-account-2','','','2017-05-24 10:30:23','2017-05-24 10:30:23','',0,'http://iacademy.mikado-themes.com/my-account/',0,'page','',0),(10,1,'2017-05-24 10:54:32','2017-05-24 10:54:32','Có 5 năm kinh nghiệm giảng dạy.','Trần Văn Minh','','publish','open','closed','','tran-van-minh','','','2024-10-31 17:50:47','2024-10-31 10:50:47','',0,'http://iacademy.mikado-themes.com/?post_type=instructor&#038;p=10',0,'instructor','',0),(12,1,'2024-10-20 12:40:30','2024-10-20 12:40:30','<label> Your name\n    [text* your-name autocomplete:name] </label>\n\n<label> Your email\n    [email* your-email autocomplete:email] </label>\n\n<label> Subject\n    [text* your-subject] </label>\n\n<label> Your message (optional)\n    [textarea your-message] </label>\n\n[submit \"Submit\"]\n[_site_title] \"[your-subject]\"\n[_site_title] <ductai2982@gmail.com>\nFrom: [your-name] [your-email]\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis is a notification that a contact form was submitted on your website ([_site_title] [_site_url]).\n[_site_admin_email]\nReply-To: [your-email]\n\n0\n0\n\n[_site_title] \"[your-subject]\"\n[_site_title] <ductai2982@gmail.com>\nMessage Body:\n[your-message]\n\n-- \nThis email is a receipt for your contact form submission on our website ([_site_title] [_site_url]) in which your email address was used. If that was not you, please ignore this message.\n[your-email]\nReply-To: [_site_admin_email]\n\n0\n0\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.','Contact form 1','','publish','closed','closed','','contact-form-1','','','2024-10-20 12:40:30','2024-10-20 12:40:30','',0,'http://giasuolympia.com/?post_type=wpcf7_contact_form&p=12',0,'wpcf7_contact_form','',0),(13,1,'2024-10-20 12:40:32','2024-10-20 12:40:32','','woocommerce-placeholder','','inherit','open','closed','','woocommerce-placeholder','','','2024-10-20 12:40:32','2024-10-20 12:40:32','',0,'http://giasuolympia.com/wp-content/uploads/2024/10/woocommerce-placeholder.png',0,'attachment','image/png',0),(14,1,'2024-10-20 12:40:34','2024-10-20 12:40:34','','Shop','','publish','closed','closed','','shop','','','2024-10-20 12:40:34','2024-10-20 12:40:34','',0,'http://giasuolympia.com/shop/',0,'page','',0),(15,1,'2024-10-20 12:40:34','2024-10-20 12:40:34','<!-- wp:woocommerce/cart -->\n<div class=\"wp-block-woocommerce-cart alignwide is-loading\"><!-- wp:woocommerce/filled-cart-block -->\n<div class=\"wp-block-woocommerce-filled-cart-block\"><!-- wp:woocommerce/cart-items-block -->\n<div class=\"wp-block-woocommerce-cart-items-block\"><!-- wp:woocommerce/cart-line-items-block -->\n<div class=\"wp-block-woocommerce-cart-line-items-block\"></div>\n<!-- /wp:woocommerce/cart-line-items-block -->\n\n<!-- wp:woocommerce/cart-cross-sells-block -->\n<div class=\"wp-block-woocommerce-cart-cross-sells-block\"><!-- wp:heading {\"fontSize\":\"large\"} -->\n<h2 class=\"wp-block-heading has-large-font-size\">You may be interested in…</h2>\n<!-- /wp:heading -->\n\n<!-- wp:woocommerce/cart-cross-sells-products-block -->\n<div class=\"wp-block-woocommerce-cart-cross-sells-products-block\"></div>\n<!-- /wp:woocommerce/cart-cross-sells-products-block --></div>\n<!-- /wp:woocommerce/cart-cross-sells-block --></div>\n<!-- /wp:woocommerce/cart-items-block -->\n\n<!-- wp:woocommerce/cart-totals-block -->\n<div class=\"wp-block-woocommerce-cart-totals-block\"><!-- wp:woocommerce/cart-order-summary-block -->\n<div class=\"wp-block-woocommerce-cart-order-summary-block\"><!-- wp:woocommerce/cart-order-summary-heading-block -->\n<div class=\"wp-block-woocommerce-cart-order-summary-heading-block\"></div>\n<!-- /wp:woocommerce/cart-order-summary-heading-block -->\n\n<!-- wp:woocommerce/cart-order-summary-coupon-form-block -->\n<div class=\"wp-block-woocommerce-cart-order-summary-coupon-form-block\"></div>\n<!-- /wp:woocommerce/cart-order-summary-coupon-form-block -->\n\n<!-- wp:woocommerce/cart-order-summary-subtotal-block -->\n<div class=\"wp-block-woocommerce-cart-order-summary-subtotal-block\"></div>\n<!-- /wp:woocommerce/cart-order-summary-subtotal-block -->\n\n<!-- wp:woocommerce/cart-order-summary-fee-block -->\n<div class=\"wp-block-woocommerce-cart-order-summary-fee-block\"></div>\n<!-- /wp:woocommerce/cart-order-summary-fee-block -->\n\n<!-- wp:woocommerce/cart-order-summary-discount-block -->\n<div class=\"wp-block-woocommerce-cart-order-summary-discount-block\"></div>\n<!-- /wp:woocommerce/cart-order-summary-discount-block -->\n\n<!-- wp:woocommerce/cart-order-summary-shipping-block -->\n<div class=\"wp-block-woocommerce-cart-order-summary-shipping-block\"></div>\n<!-- /wp:woocommerce/cart-order-summary-shipping-block -->\n\n<!-- wp:woocommerce/cart-order-summary-taxes-block -->\n<div class=\"wp-block-woocommerce-cart-order-summary-taxes-block\"></div>\n<!-- /wp:woocommerce/cart-order-summary-taxes-block --></div>\n<!-- /wp:woocommerce/cart-order-summary-block -->\n\n<!-- wp:woocommerce/cart-express-payment-block -->\n<div class=\"wp-block-woocommerce-cart-express-payment-block\"></div>\n<!-- /wp:woocommerce/cart-express-payment-block -->\n\n<!-- wp:woocommerce/proceed-to-checkout-block -->\n<div class=\"wp-block-woocommerce-proceed-to-checkout-block\"></div>\n<!-- /wp:woocommerce/proceed-to-checkout-block -->\n\n<!-- wp:woocommerce/cart-accepted-payment-methods-block -->\n<div class=\"wp-block-woocommerce-cart-accepted-payment-methods-block\"></div>\n<!-- /wp:woocommerce/cart-accepted-payment-methods-block --></div>\n<!-- /wp:woocommerce/cart-totals-block --></div>\n<!-- /wp:woocommerce/filled-cart-block -->\n\n<!-- wp:woocommerce/empty-cart-block -->\n<div class=\"wp-block-woocommerce-empty-cart-block\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"with-empty-cart-icon wc-block-cart__empty-cart__title\"} -->\n<h2 class=\"wp-block-heading has-text-align-center with-empty-cart-icon wc-block-cart__empty-cart__title\">Your cart is currently empty!</h2>\n<!-- /wp:heading -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"textAlign\":\"center\"} -->\n<h2 class=\"wp-block-heading has-text-align-center\">New in store</h2>\n<!-- /wp:heading -->\n\n<!-- wp:woocommerce/product-new {\"columns\":4,\"rows\":1} /--></div>\n<!-- /wp:woocommerce/empty-cart-block --></div>\n<!-- /wp:woocommerce/cart -->','Cart','','publish','closed','closed','','cart','','','2024-10-31 17:36:06','2024-10-31 10:36:06','',0,'http://giasuolympia.com/cart/',0,'page','',0),(16,1,'2024-10-20 12:40:34','2024-10-20 12:40:34','<!-- wp:woocommerce/checkout -->\n<div class=\"wp-block-woocommerce-checkout alignwide wc-block-checkout is-loading\"><!-- wp:woocommerce/checkout-fields-block -->\n<div class=\"wp-block-woocommerce-checkout-fields-block\"><!-- wp:woocommerce/checkout-express-payment-block -->\n<div class=\"wp-block-woocommerce-checkout-express-payment-block\"></div>\n<!-- /wp:woocommerce/checkout-express-payment-block -->\n\n<!-- wp:woocommerce/checkout-contact-information-block -->\n<div class=\"wp-block-woocommerce-checkout-contact-information-block\"></div>\n<!-- /wp:woocommerce/checkout-contact-information-block -->\n\n<!-- wp:woocommerce/checkout-shipping-method-block -->\n<div class=\"wp-block-woocommerce-checkout-shipping-method-block\"></div>\n<!-- /wp:woocommerce/checkout-shipping-method-block -->\n\n<!-- wp:woocommerce/checkout-pickup-options-block -->\n<div class=\"wp-block-woocommerce-checkout-pickup-options-block\"></div>\n<!-- /wp:woocommerce/checkout-pickup-options-block -->\n\n<!-- wp:woocommerce/checkout-shipping-address-block -->\n<div class=\"wp-block-woocommerce-checkout-shipping-address-block\"></div>\n<!-- /wp:woocommerce/checkout-shipping-address-block -->\n\n<!-- wp:woocommerce/checkout-billing-address-block -->\n<div class=\"wp-block-woocommerce-checkout-billing-address-block\"></div>\n<!-- /wp:woocommerce/checkout-billing-address-block -->\n\n<!-- wp:woocommerce/checkout-shipping-methods-block -->\n<div class=\"wp-block-woocommerce-checkout-shipping-methods-block\"></div>\n<!-- /wp:woocommerce/checkout-shipping-methods-block -->\n\n<!-- wp:woocommerce/checkout-payment-block -->\n<div class=\"wp-block-woocommerce-checkout-payment-block\"></div>\n<!-- /wp:woocommerce/checkout-payment-block -->\n\n<!-- wp:woocommerce/checkout-additional-information-block -->\n<div class=\"wp-block-woocommerce-checkout-additional-information-block\"></div>\n<!-- /wp:woocommerce/checkout-additional-information-block -->\n\n<!-- wp:woocommerce/checkout-order-note-block -->\n<div class=\"wp-block-woocommerce-checkout-order-note-block\"></div>\n<!-- /wp:woocommerce/checkout-order-note-block -->\n\n<!-- wp:woocommerce/checkout-terms-block -->\n<div class=\"wp-block-woocommerce-checkout-terms-block\"></div>\n<!-- /wp:woocommerce/checkout-terms-block -->\n\n<!-- wp:woocommerce/checkout-actions-block -->\n<div class=\"wp-block-woocommerce-checkout-actions-block\"></div>\n<!-- /wp:woocommerce/checkout-actions-block --></div>\n<!-- /wp:woocommerce/checkout-fields-block -->\n\n<!-- wp:woocommerce/checkout-totals-block -->\n<div class=\"wp-block-woocommerce-checkout-totals-block\"><!-- wp:woocommerce/checkout-order-summary-block -->\n<div class=\"wp-block-woocommerce-checkout-order-summary-block\"><!-- wp:woocommerce/checkout-order-summary-cart-items-block -->\n<div class=\"wp-block-woocommerce-checkout-order-summary-cart-items-block\"></div>\n<!-- /wp:woocommerce/checkout-order-summary-cart-items-block -->\n\n<!-- wp:woocommerce/checkout-order-summary-coupon-form-block -->\n<div class=\"wp-block-woocommerce-checkout-order-summary-coupon-form-block\"></div>\n<!-- /wp:woocommerce/checkout-order-summary-coupon-form-block -->\n\n<!-- wp:woocommerce/checkout-order-summary-subtotal-block -->\n<div class=\"wp-block-woocommerce-checkout-order-summary-subtotal-block\"></div>\n<!-- /wp:woocommerce/checkout-order-summary-subtotal-block -->\n\n<!-- wp:woocommerce/checkout-order-summary-fee-block -->\n<div class=\"wp-block-woocommerce-checkout-order-summary-fee-block\"></div>\n<!-- /wp:woocommerce/checkout-order-summary-fee-block -->\n\n<!-- wp:woocommerce/checkout-order-summary-discount-block -->\n<div class=\"wp-block-woocommerce-checkout-order-summary-discount-block\"></div>\n<!-- /wp:woocommerce/checkout-order-summary-discount-block -->\n\n<!-- wp:woocommerce/checkout-order-summary-shipping-block -->\n<div class=\"wp-block-woocommerce-checkout-order-summary-shipping-block\"></div>\n<!-- /wp:woocommerce/checkout-order-summary-shipping-block -->\n\n<!-- wp:woocommerce/checkout-order-summary-taxes-block -->\n<div class=\"wp-block-woocommerce-checkout-order-summary-taxes-block\"></div>\n<!-- /wp:woocommerce/checkout-order-summary-taxes-block --></div>\n<!-- /wp:woocommerce/checkout-order-summary-block --></div>\n<!-- /wp:woocommerce/checkout-totals-block --></div>\n<!-- /wp:woocommerce/checkout -->','Checkout','','publish','closed','closed','','checkout','','','2024-10-20 12:40:34','2024-10-20 12:40:34','',0,'http://giasuolympia.com/checkout/',0,'page','',0),(17,1,'2024-10-20 12:40:34','2024-10-20 12:40:34','<!-- wp:shortcode -->[woocommerce_my_account]<!-- /wp:shortcode -->','My account','','publish','closed','closed','','my-account','','','2024-10-20 12:40:34','2024-10-20 12:40:34','',0,'http://giasuolympia.com/my-account/',0,'page','',0),(18,1,'2024-10-20 12:40:34','0000-00-00 00:00:00','<!-- wp:paragraph -->\n<p><b>This is a sample page.</b></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Overview</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Our refund and returns policy lasts 30 days. If 30 days have passed since your purchase, we can’t offer you a full refund or exchange.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To be eligible for a return, your item must be unused and in the same condition that you received it. It must also be in the original packaging.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Several types of goods are exempt from being returned. Perishable goods such as food, flowers, newspapers or magazines cannot be returned. We also do not accept products that are intimate or sanitary goods, hazardous materials, or flammable liquids or gases.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Additional non-returnable items:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul>\n<li>Gift cards</li>\n<li>Downloadable software products</li>\n<li>Some health and personal care items</li>\n</ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>To complete your return, we require a receipt or proof of purchase.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Please do not send your purchase back to the manufacturer.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>There are certain situations where only partial refunds are granted:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul>\n<li>Book with obvious signs of use</li>\n<li>CD, DVD, VHS tape, software, video game, cassette tape, or vinyl record that has been opened.</li>\n<li>Any item not in its original condition, is damaged or missing parts for reasons not due to our error.</li>\n<li>Any item that is returned more than 30 days after delivery</li>\n</ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<h2>Refunds</h2>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Once your return is received and inspected, we will send you an email to notify you that we have received your returned item. We will also notify you of the approval or rejection of your refund.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you are approved, then your refund will be processed, and a credit will automatically be applied to your credit card or original method of payment, within a certain amount of days.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h3 class=\"wp-block-heading\">Late or missing refunds</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>If you haven’t received a refund yet, first check your bank account again.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then contact your credit card company, it may take some time before your refund is officially posted.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Next contact your bank. There is often some processing time before a refund is posted.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you’ve done all of this and you still have not received your refund yet, please contact us at {email address}.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h3 class=\"wp-block-heading\">Sale items</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Only regular priced items may be refunded. Sale items cannot be refunded.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<h2>Exchanges</h2>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We only replace items if they are defective or damaged. If you need to exchange it for the same item, send us an email at {email address} and send your item to: {physical address}.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<h2>Gifts</h2>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If the item was marked as a gift when purchased and shipped directly to you, you’ll receive a gift credit for the value of your return. Once the returned item is received, a gift certificate will be mailed to you.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If the item wasn’t marked as a gift when purchased, or the gift giver had the order shipped to themselves to give to you later, we will send a refund to the gift giver and they will find out about your return.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<h2>Shipping returns</h2>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To return your product, you should mail your product to: {physical address}.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You will be responsible for paying for your own shipping costs for returning your item. Shipping costs are non-refundable. If you receive a refund, the cost of return shipping will be deducted from your refund.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Depending on where you live, the time it may take for your exchanged product to reach you may vary.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you are returning more expensive items, you may consider using a trackable shipping service or purchasing shipping insurance. We don’t guarantee that we will receive your returned item.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<h2>Need help?</h2>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Contact us at {email} for questions related to refunds and returns.</p>\n<!-- /wp:paragraph -->','Refund and Returns Policy','','draft','closed','closed','','refund_returns','','','2024-10-20 12:40:34','0000-00-00 00:00:00','',0,'http://giasuolympia.com/?page_id=18',0,'page','',0),(19,1,'2017-05-24 12:20:12','2017-05-24 12:20:12','Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit.\n\nSed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa','Collocations for Job Interview','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in.','publish','open','closed','','collocations-for-job-interview','','','2017-05-24 12:20:12','2017-05-24 12:20:12','',0,'http://iacademy.mikado-themes.com/?post_type=lesson&amp;p=19',2,'lesson','',0),(27,1,'2017-05-25 13:13:11','2017-05-25 13:13:11','Lexicology is a branch of linguistics, the science of language. The term Lexicology is composed of two Greek morphemes: lexis meaning ‘word, phrase’ and logos which denotes ‘learning, a department of knowledge’. Thus, the literal meaning of the term Lexicology is ‘the science of the word’. The literal meaning, however, gives only a general notion of the aims and the subject-matter of this branch of linguistic science, since all its other branches also take account of words in one way or another approaching them from different angles. Phonetics, for instance, investigating the phonetic structure of language, i.e. its system of phonemes and intonation patterns, is concerned with the study of the outer sound form of the word. Grammar, which is inseparably bound up with Lexicology, is the study of the grammatical structure of language. It is concerned with the various means of expressing grammatical relations between words and with the patterns after which words are combined into word-groups and sentences.\n\nLexicology as a branch of linguistics has its own aims and methods of scientific research, its basic task being a study and systematic description of vocabulary in respect to its origin, development and current use. Lexicology is concerned with words, variable word-groups, phraseological units, and with morphemes which make up words. There are two principal approaches in linguistic science to the study of language material, namely the synchronic (Gr. syn — ‘together, with’ and chronos — ‘time’) and the diachronic (Gr. dia — ‘through’) approach. With regard to Special Lexicology the synchronic approach is concerned with the vocabulary of a language as it exists at a given time, for instance, at the present time. It is special Descriptive Lexicology that deals with the vocabulary and vocabulary units of a particular language at a certain time. A Course in Modern English Lexicology is therefore a course in Special Descriptive Lexicology, its object of study being the English vocabulary as it exists at the present time. The diachronic approach in terms of Special Lexicology deals with the changes and the development of vocabulary in the course of time. It is special Historical Lexicology that deals with the evolution of the vocabulary units of a language as time goes by. An English Historical Lexicology would be concerned, therefore, with the origin of English vocabulary units, their change and development, the linguistic and extralinguistic factors modifying their structure, meaning and usage within the history of the English language.\n\nLexicology studies various lexical units: morphemes, words, variable wordgroups and phraseological units. We proceed from the assumption that the word is the basic unit of language system, the largest on the morphologic and the smallest on the syntactic plane of linguistic analysis. The word is a structural and semantic entity within the language system. Etymologically the vocabulary of the English language is far from being homogeneous. It consists of two layers - the native stock of words and the borrowed stock of words. Numerically the borrowed stock of words is considerably larger than the native stock of words. In fact native words comprise only 30 % of the total number of words in the English vocabulary but the native words form the bulk of the most frequent words actually used in speech and writing. Besides the native words have a wider range of lexical and grammatical valency, they are highly polysemantic and productive in forming word clusters and set expressions','Word Types','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in.','publish','open','closed','','word-types','','','2017-05-25 13:13:11','2017-05-25 13:13:11','',0,'http://iacademy.mikado-themes.com/?post_type=lesson&amp;p=27',3,'lesson','',0),(35,1,'2017-05-24 13:50:35','2017-05-24 13:50:35','4','Listening Exercise','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in.','publish','open','closed','','listening-exercise','','','2017-05-24 13:50:35','2017-05-24 13:50:35','',0,'http://iacademy.mikado-themes.com/?post_type=lesson&amp;p=35',3,'lesson','',0),(37,1,'2017-05-24 13:56:39','2017-05-24 13:56:39','','page-background-img','','inherit','open','closed','','page-background-img','','','2017-05-24 13:56:39','2017-05-24 13:56:39','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/page-background-img.png',0,'attachment','image/png',0),(38,1,'2017-05-24 14:24:11','2017-05-24 14:24:11','','What language can you use to introduce people at the start of a teleconference?','','publish','open','closed','','what-language-can-you-use-to-introduce-people-at-the-start-of-a-teleconference','','','2017-05-24 14:24:11','2017-05-24 14:24:11','',0,'http://iacademy.mikado-themes.com/?post_type=question&amp;p=38',4,'question','',0),(40,1,'2017-05-24 14:38:11','2017-05-24 14:38:11','','Rearrange this to reveal a good lead-in to a tough question: you I if wonder explain could','','publish','open','closed','','rearrange-this-to-reveal-a-good-lead-in-to-a-tough-question-you-i-if-wonder-explain-could','','','2017-05-24 14:38:11','2017-05-24 14:38:11','',0,'http://iacademy.mikado-themes.com/?post_type=question&amp;p=40',5,'question','',0),(42,1,'2017-05-24 14:38:26','2017-05-24 14:38:26','','instructor-img-1','','inherit','open','closed','','instructor-img-1','','','2017-05-24 14:38:26','2017-05-24 14:38:26','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/instructor-img-1.jpg',0,'attachment','image/jpeg',0),(43,1,'2017-05-24 14:38:28','2017-05-24 14:38:28','','instructor-img-2','','inherit','open','closed','','instructor-img-2','','','2017-05-24 14:38:28','2017-05-24 14:38:28','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/instructor-img-2.jpg',0,'attachment','image/jpeg',0),(44,1,'2017-05-24 14:38:30','2017-05-24 14:38:30','','instructor-img-3','','inherit','open','closed','','instructor-img-3','','','2017-05-24 14:38:30','2017-05-24 14:38:30','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/instructor-img-3.jpg',0,'attachment','image/jpeg',0),(45,1,'2017-05-24 14:38:32','2017-05-24 14:38:32','','instructor-img-4','','inherit','open','closed','','instructor-img-4','','','2017-05-24 14:38:32','2017-05-24 14:38:32','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/instructor-img-4.jpg',0,'attachment','image/jpeg',0),(46,1,'2017-05-24 14:38:34','2017-05-24 14:38:34','','instructor-img-5','','inherit','open','closed','','instructor-img-5','','','2017-05-24 14:38:34','2017-05-24 14:38:34','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/instructor-img-5-2.jpg',0,'attachment','image/jpeg',0),(47,1,'2017-05-24 14:38:36','2017-05-24 14:38:36','','instructor-img-6','','inherit','open','closed','','instructor-img-6','','','2017-05-24 14:38:36','2017-05-24 14:38:36','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/instructor-img-6.jpg',0,'attachment','image/jpeg',0),(52,1,'2017-05-24 14:54:28','2017-05-24 14:54:28','','Favicon','','inherit','open','closed','','favicon','','','2017-05-24 14:54:28','2017-05-24 14:54:28','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/Favicon.png',0,'attachment','image/png',0),(53,1,'2017-05-24 14:54:33','2017-05-24 14:54:33','http://giasuolympia.com/wp-content/uploads/2017/05/cropped-Favicon.png','cropped-Favicon.png','','inherit','open','closed','','cropped-favicon-png','','','2017-05-24 14:54:33','2017-05-24 14:54:33','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/cropped-Favicon.png',0,'attachment','image/png',0),(56,1,'2017-05-24 14:58:15','2017-05-24 14:58:15','','pages-title-parallax','','inherit','open','closed','','pages-title-parallax','','','2017-05-24 14:58:15','2017-05-24 14:58:15','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/pages-title-parallax.jpg',0,'attachment','image/jpeg',0),(58,1,'2017-05-24 15:08:39','2017-05-24 15:08:39','','instructor-img-7','','inherit','open','closed','','instructor-img-7','','','2017-05-24 15:08:39','2017-05-24 15:08:39','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/instructor-img-7.jpg',0,'attachment','image/jpeg',0),(60,1,'2017-05-24 15:12:45','2017-05-24 15:12:45','','instructor-img-8','','inherit','open','closed','','instructor-img-8','','','2017-05-24 15:12:45','2017-05-24 15:12:45','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/instructor-img-8.jpg',0,'attachment','image/jpeg',0),(68,1,'2017-05-25 07:35:56','2017-05-25 07:35:56','','instructor-img-9','','inherit','open','closed','','instructor-img-9','','','2017-05-25 07:35:56','2017-05-25 07:35:56','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/instructor-img-9.jpg',0,'attachment','image/jpeg',0),(70,1,'2017-05-25 07:43:30','2017-05-25 07:43:30','','course-1-f-img','','inherit','open','closed','','course-1-f-img','','','2017-05-25 07:43:30','2017-05-25 07:43:30','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/course-1-f-img.jpg',0,'attachment','image/jpeg',0),(76,1,'2017-05-25 08:37:28','2017-05-25 08:37:28','','logo-default','','inherit','open','closed','','logo-default','','','2017-05-25 08:37:28','2017-05-25 08:37:28','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/logo-default.png',0,'attachment','image/png',0),(95,1,'2017-05-25 09:31:23','2017-05-25 09:31:23','','h7-img-2','','inherit','open','closed','','h7-img-2','','','2017-05-25 09:31:23','2017-05-25 09:31:23','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h7-img-2.jpg',0,'attachment','image/jpeg',0),(96,1,'2017-05-25 09:31:25','2017-05-25 09:31:25','','h7-img-3','','inherit','open','closed','','h7-img-3','','','2017-05-25 09:31:25','2017-05-25 09:31:25','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h7-img-3.jpg',0,'attachment','image/jpeg',0),(97,1,'2017-05-25 09:31:27','2017-05-25 09:31:27','','h7-img-4','','inherit','open','closed','','h7-img-4','','','2017-05-25 09:31:27','2017-05-25 09:31:27','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h7-img-4.jpg',0,'attachment','image/jpeg',0),(98,1,'2017-05-25 09:31:29','2017-05-25 09:31:29','','h7-img-5','','inherit','open','closed','','h7-img-5','','','2017-05-25 09:31:29','2017-05-25 09:31:29','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h7-img-5.jpg',0,'attachment','image/jpeg',0),(100,1,'2017-05-25 09:38:40','2017-05-25 09:38:40','','course-sidebar-certificate-img','','inherit','open','closed','','course-sidebar-certificate-img','','','2017-05-25 09:38:40','2017-05-25 09:38:40','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/course-sidebar-certificate-img.jpg',0,'attachment','image/jpeg',0),(101,1,'2017-05-25 10:38:00','2017-05-25 10:38:00','- Có kinh nghiệm 3 năm đứng lớp tại trường THPT Trương Vĩnh Ký (tp.HCM)\r\n- Có kinh nghiệm giảng dạy, cải thiện kết quả học tập cho HS, đặc biệt là HS có học lực trung bình-khá, chậm trong Đọc-hiểu và Làm văn.\r\n- Có tính kỷ luật cao trong công việc,','Nguyễn Thu Trang','','publish','open','closed','','nguyen-thu-trang','','','2024-10-31 17:50:22','2024-10-31 10:50:22','',0,'http://iacademy.mikado-themes.com/?post_type=instructor&#038;p=101',0,'instructor','',0),(103,1,'2017-05-25 10:42:23','2017-05-25 10:42:23','Giọng dễ nghe, kiên nhẫn, trung thực, không nóng giận','Nguyễn Hoàng Gia Linh','','publish','open','closed','','nguyen-hoang-gia-linh','','','2024-10-31 17:50:02','2024-10-31 10:50:02','',0,'http://iacademy.mikado-themes.com/?post_type=instructor&#038;p=103',0,'instructor','',0),(104,1,'2017-05-25 10:46:01','2017-05-25 10:46:01','Gia sư đã có 8 năm kinh nghiệm dạy tiếng Anh cho các bé từ lớp 4 đến lớp 10.','Bùi Thị Bích Nhung','','publish','open','closed','','bui-thi-bich-nhung','','','2024-10-31 17:49:41','2024-10-31 10:49:41','',0,'http://iacademy.mikado-themes.com/?post_type=instructor&#038;p=104',0,'instructor','',0),(105,1,'2017-05-25 11:18:18','2017-05-25 11:18:18','Có 2 năm kinh nghiệm dạy kèm, đang có quỹ thời gian thoải mái','Trần Thành Đạt','','publish','open','closed','','tran-thanh-dat','','','2024-10-31 17:49:20','2024-10-31 10:49:20','',0,'http://iacademy.mikado-themes.com/?post_type=instructor&#038;p=105',0,'instructor','',0),(106,1,'2017-05-25 11:22:29','2017-05-25 11:22:29','Có 3 năm kinh nghiệm giá sư dạy toán và KHTN cấp 2. Hiện đang học thêm chứng chỉ KHTN nên phụ huynh cứ yên tâm về trình độ và chất lượng dạy học của giáo viên','Nguyễn Thị Phương Loan','','publish','open','closed','','nguyen-thi-phuong-loan','','','2024-10-31 17:48:56','2024-10-31 10:48:56','',0,'http://iacademy.mikado-themes.com/?post_type=instructor&#038;p=106',0,'instructor','',0),(108,1,'2017-05-25 11:25:38','2017-05-25 11:25:38','Sinh viên chuyên chuyên Toán và Hóa','Trần Thị Minh Anh','','publish','open','closed','','tran-thi-minh-anh','','','2024-10-31 17:48:35','2024-10-31 10:48:35','',0,'http://iacademy.mikado-themes.com/?post_type=instructor&#038;p=108',0,'instructor','',0),(109,1,'2017-05-25 11:29:08','2017-05-25 11:29:08','Học sinh chuyên toán','Vũ Tùng Lâm','','publish','open','closed','','vu-tung-lam','','','2024-10-31 17:48:12','2024-10-31 10:48:12','',0,'http://iacademy.mikado-themes.com/?post_type=instructor&#038;p=109',0,'instructor','',0),(110,1,'2024-10-25 11:31:13','2024-10-25 04:31:13','Có 2 năm kinh nghiệp làm teaching assistant trên ĐH, là nghiên cứu sinh','Ngô Tuấn Khải','','publish','open','closed','','ngo-tuan-khai','','','2024-10-31 17:47:28','2024-10-31 10:47:28','',0,'http://iacademy.mikado-themes.com/?post_type=instructor&#038;p=110',0,'instructor','',0),(112,1,'2017-05-25 11:38:14','2017-05-25 11:38:14','','Order &ndash; Tháng năm 25, 2017 @ 11:38 Sáng','','wc-completed','open','closed','order_5926c226326e5','order-may-25-2017-1138-am','','','2017-05-25 11:38:14','2017-05-25 11:38:14','',0,'http://iacademy.mikado-themes.com/?post_type=shop_order&amp;p=112',0,'shop_order','',2),(113,1,'2017-05-25 11:40:54','2017-05-25 11:40:54','','User dashboard','','publish','closed','closed','','user-dashboard','','','2017-05-25 11:40:54','2017-05-25 11:40:54','',0,'http://iacademy.mikado-themes.com/?page_id=113',0,'page','',0),(115,1,'2017-05-25 11:42:49','2017-05-25 11:42:49','','Order &ndash; Tháng năm 25, 2017 @ 11:42 Sáng','','wc-completed','open','closed','order_5926c33939d0a','order-may-25-2017-1142-am','','','2017-05-25 11:42:49','2017-05-25 11:42:49','',0,'http://iacademy.mikado-themes.com/?post_type=shop_order&amp;p=115',0,'shop_order','',2),(121,1,'2017-05-25 12:02:13','2017-05-25 12:02:13','','footer-img-1','','inherit','open','closed','','footer-img-1','','','2017-05-25 12:02:13','2017-05-25 12:02:13','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/footer-img-1.png',0,'attachment','image/png',0),(125,1,'2017-05-25 13:06:45','2017-05-25 13:06:45','','footer-logo-1','','inherit','open','closed','','footer-logo-1','','','2017-05-25 13:06:45','2017-05-25 13:06:45','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/footer-logo-1.png',0,'attachment','image/png',0),(126,1,'2017-05-25 13:18:31','2017-05-25 13:18:31','Post all your questions here!','Language Learning','','publish','closed','open','','language-learning','','','2017-05-25 13:18:31','2017-05-25 13:18:31','',0,'http://iacademy.mikado-themes.com/?post_type=forum&amp;p=126',1,'forum','',0),(128,1,'2017-05-25 14:18:38','2017-05-25 14:18:38','Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis Theme natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.','','','publish','closed','open','','128','','','2017-05-25 14:18:38','2017-05-25 14:18:38','',4126,'http://iacademy.mikado-themes.com/?post_type=reply&amp;p=128',0,'reply','',0),(129,1,'2017-05-25 13:57:56','2017-05-25 13:57:56','[vc_row row_content_width=\"grid\" css=\".vc_custom_1497440561376{padding-top: 100px !important;padding-bottom: 80px !important;}\"][vc_column offset=\"vc_col-lg-8\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" background_image=\"2820\" item_padding=\"251px 45%\" item_padding_1024_1280=\"251px 45%\" item_padding_768_1024=\"230px 45%\" item_padding_680_768=\"180px 45%\" item_padding_680=\"130px 35%\"][mkdf_video_button video_link=\"https://vimeo.com/157562616\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column offset=\"vc_col-lg-4\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding_768_1024=\"100px 0 0\" item_padding_680_768=\"100px 0 0\" item_padding_680=\"100px 0 0\"][contact-form-7 id=\"171\" html_class=\"cf7_custom_style_2\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1495720773265{padding-bottom: 70px !important;}\"][vc_column][mkdf_section_title type=\"standard\" position=\"center\" title_tag=\"\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"400\" title=\"Gia sư hàng đầu\" title_color=\"#d8a64e\" text=\"Lorem Ipsn gravida nibh vel velit auctor aliquetnean sollicitudin,lorem quis bibendum\" text_font_size=\"17\"][vc_empty_space height=\"30px\"][mkdf_instructor_list number_of_columns=\"3\" space_between_items=\"normal\" number_of_items=\"9\" order_by=\"date\" order=\"ASC\" instructor_layout=\"simple\" enable_shadow=\"yes\" instructor_background=\"#ffffff\"][/vc_column][/vc_row]','Đăng ký làm gia sư','','publish','closed','closed','','dang-ky-lam-gia-su','','','2024-10-29 22:19:19','2024-10-29 15:19:19','',4416,'http://iacademy.mikado-themes.com/?page_id=129',0,'page','',0),(143,1,'2017-05-25 14:15:43','2017-05-25 14:15:43','Risus netus vitae nulla sed ut id nascetur morbi. Nullam mollis id eget enim risus nec nam lectus. Eu sit amet sed interdum pellentesque arcu amet sed vulputate vel arcu. Eros massa maecenas. Maiores felis orci. Urna ut in consectetuer proin pharetra. Non nulla suspendisse donec massa iure.','Learning English Abroad','','publish','closed','open','','learning-english-abroad','','','2017-05-25 14:15:43','2017-05-25 14:15:43','',126,'http://iacademy.mikado-themes.com/?post_type=topic&amp;p=143',0,'topic','',0),(146,1,'2017-05-25 14:19:54','2017-05-25 14:19:54','Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis Theme natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.Cum atqui epicuri facilisis ad. Ad has choro eloquentiam, ubique everti erroribus duo no, in numquam commune vel. Vis at eligendi deterruisset, no tota vocibus alienum nec. Eu aperiam appellantur pro, vocent corpora reprehendunt eam te. Sit nisl possim audire an. Pri ferri lorem ea, ei feugiat democritum mei. Vide veri nec cu.','','','publish','closed','closed','','146','','','2017-05-25 14:19:54','2017-05-25 14:19:54','',143,'http://iacademy.mikado-themes.com/forums/reply/146/',1,'reply','',0),(148,1,'2017-05-25 14:27:21','2017-05-25 14:27:21','Cum atqui epicuri facilisis ad. Ad has choro eloquentiam, ubique everti erroribus duo no, in numquam commune vel. Vis at eligendi deterruisset, no tota vocibus alienum nec. Eu aperiam appellantur pro, vocent corpora reprehendunt eam te. Sit nisl possim audire an. Pri ferri lorem ea, ei feugiat democritum mei. Vide veri nec cu.','Online Courses','','publish','closed','open','','online-courses','','','2017-05-25 14:27:21','2017-05-25 14:27:21','',126,'http://iacademy.mikado-themes.com/?post_type=topic&amp;p=148',0,'topic','',0),(151,1,'2017-05-25 14:28:09','2017-05-25 14:28:09','Graeco delectus sea et, sed no nullam ubique abhorreant, movet mollis fabulas et mea. Duo te eius nostrum. Ne detracto electram suavitate nec, est ridens imperdiet no, cum ea propriae comprehensam.','','','publish','closed','open','','151','','','2017-05-25 14:28:09','2017-05-25 14:28:09','',4122,'http://iacademy.mikado-themes.com/?post_type=reply&amp;p=151',0,'reply','',0),(161,1,'2017-05-25 14:46:23','2017-05-25 14:46:23','','h1-parallax-img-1','','inherit','open','closed','','h1-parallax-img-1','','','2017-05-25 14:46:23','2017-05-25 14:46:23','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h1-parallax-img-1.jpg',0,'attachment','image/jpeg',0),(168,1,'2017-05-25 15:03:16','2017-05-25 15:03:16','Ne enim scribentur sed, ius denique probatus ex. Aeque propriae vis et, in magna iudico viderer per, scripserit accommodare definitionem ea per. Ne latine tamquam delicata duo, nulla suavitate eam no. Graeco delectus sea et, sed no nullam ubique abhorreant, movet mollis fabulas et mea. Duo te eius nostrum. Ne detracto electram suavitate nec, est ridens imperdiet no, cum ea propriae comprehensam.','','','publish','closed','closed','','168','','','2017-05-25 15:03:16','2017-05-25 15:03:16','',148,'http://iacademy.mikado-themes.com/forums/reply/168/',1,'reply','',0),(170,1,'2017-05-26 07:04:23','2017-05-26 07:04:23','<div class=\"mkdf-cf7-contact-wrapper mkdf-button-small\">\n<div class=\"mkdf-cf7-title\">GET IN TOUCH</div>\n<div class=\"mkdf-cf7-inputs clearfix\">\n<div class=\"mkdf-grid-col-6\"><label>Name<span style=\"color: #ffd740;\">*</span></label>[text* your-name]</div>\n<div class=\"mkdf-grid-col-6\"><label>Email<span style=\"color: #ffd740;\">*</span></label>[text* your-email]</div>\n<div class=\"mkdf-grid-col-12\"><label>Website</label>[text* your-website]</div>\n<div class=\"mkdf-grid-col-12\"><label>Message<span style=\"color: #ffd740;\">*</span></label>[textarea* your-message 40x4 ]\n[submit \"Submit\"]\n</div>\n\n</div>\n</div>\n1\niAcademy \"[your-subject]\"\n[your-name] <wordpress@iacademy.mikado-themes.com>\nsupport@mikado-themes.com\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on iAcademy (http://iacademy.mikado-themes.com)\nReply-To: [your-email]\n\n\n\n\niAcademy \"[your-subject]\"\niAcademy <wordpress@iacademy.mikado-themes.com>\n[your-email]\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on iAcademy (http://iacademy.mikado-themes.com)\nReply-To: support@mikado-themes.com\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.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nYour entered code is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','Contact Form 2','','publish','closed','closed','','contact-form-2','','','2017-05-26 07:04:23','2017-05-26 07:04:23','',0,'http://iacademy.mikado-themes.com/?post_type=wpcf7_contact_form&amp;p=170',0,'wpcf7_contact_form','',0),(171,1,'2017-05-26 07:05:10','2017-05-26 07:05:10','<div class=\"mkdf-cf7-contact-wrapper mkdf-smaller-padding\"> \n<div class=\"mkdf-cf7-title\">FILL THIS FORM TO APPLY</div>\n<div class=\"mkdf-cf7-inputs clearfix\">\n<div class=\"mkdf-grid-col-12\"><label>Name<span style=\"color: #ffd740;\">*</span></label>[text* your-name]</div>\n<div class=\"mkdf-grid-col-12\"><label>Email<span style=\"color: #ffd740;\">*</span></label>[text* your-email]</div>\n<div class=\"mkdf-grid-col-12\"><label>Contact<span style=\"color: #ffd740;\">*</span></label>[text* your-website]</div>\n<div class=\"mkdf-grid-col-12\"><label>Comment<span style=\"color: #ffd740;\">*</span></label>[textarea* your-message 40x2]\n[submit \"Submit\"]\n</div>\n\n</div>\n</div>\n1\niAcademy \"[your-subject]\"\n[your-name] <wordpress@iacademy.mikado-themes.com>\nsupport@mikado-themes.com\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on iAcademy (http://iacademy.mikado-themes.com)\nReply-To: [your-email]\n\n\n\n\niAcademy \"[your-subject]\"\niAcademy <wordpress@iacademy.mikado-themes.com>\n[your-email]\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on iAcademy (http://iacademy.mikado-themes.com)\nReply-To: support@mikado-themes.com\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.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nYour entered code is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','Contact Form 3','','publish','closed','closed','','contact-form-3','','','2017-05-26 07:05:10','2017-05-26 07:05:10','',0,'http://iacademy.mikado-themes.com/?post_type=wpcf7_contact_form&amp;p=171',0,'wpcf7_contact_form','',0),(174,1,'2017-05-26 07:30:40','2017-05-26 07:30:40','Giáo viên Nữ','Lớp 6: Tiếng Anh','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in.','publish','open','closed','','lop-6-tieng-anh','','','2024-10-28 00:12:55','2024-10-27 17:12:55','',0,'http://iacademy.mikado-themes.com/?post_type=course&#038;p=174',2,'course','',3),(175,1,'2017-05-26 07:39:41','2017-05-26 07:39:41','','Motivated achievers perform, learn, excel.','','publish','closed','closed','','motivated-achievers-perform-learn-excel','','','2017-05-26 07:39:41','2017-05-26 07:39:41','',0,'http://iacademy.mikado-themes.com/?post_type=masonry-gallery&amp;p=175',0,'masonry-gallery','',0),(176,1,'2017-05-26 07:50:20','2017-05-26 07:50:20','This is a research-oriented course designed for graduate students and senior undergraduate students interested in social computing research. For the first part of the course, the instructor will give lectures on certain foundational topics of social computing. There will be weekly reading assignments focusing on basic concepts of social computing for students to read and discuss in the class. Students will respond to reading assignments in forms of posting written responses to the course forum and in-class discussion. Students need to read the readings before the class. Posting responses are due by the first course meeting of each week. Starting the second part of the course (week 10), students will take turns to present papers and lead class discussions. Readings for the second part will focus on specific design instances and user studies, so that students may better understand how general ideas of social computing can be applied to specific research and design contexts. There will also be four mini assignments on various aspects of social computing. Students will submit a short paper (1 to 2 pages) for each assignment.\n\n&nbsp;\n\nThe course requires students to propose and complete a course project. Students can choose to do the project individually or in groups of two to three students. The instructor will facilitate the formation of project groups and make necessary adjustments to ensure that the composition of each group is ideal for the proposed project. In the fifth week of the class, students need to first submit a one-page project proposal, outlining the key idea of the project. In the twelfth week, students will submit a three-page progress report, providing greater detail of the work-in-progress, reporting problems found and projecting work to be done by the end of the semester. In the last week, students will make a poster presentation and submit a final report. The instructor will arrange a poster session open for faculty and students of related departments to visit. Also, there will be a “peer-review” mechanism for involving students of the class to choose a number of best projects to receive awards. Students are highly encouraged to use the course project as an opportunity to experiment with new research ideas or to advance components of a larger research project (e.g., thesis work) that they may be working on outside of the class. The course project can be either technical or non-technical depending on students’ interests and skills.','Connecting through Technology','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in.','publish','open','closed','','connecting-through-technology','','','2017-05-26 07:50:20','2017-05-26 07:50:20','',0,'http://iacademy.mikado-themes.com/?post_type=lesson&amp;p=176',5,'lesson','',0),(181,1,'2017-05-26 07:47:02','2017-05-26 07:47:02','','','','publish','closed','closed','','181','','','2017-05-26 07:47:02','2017-05-26 07:47:02','',0,'http://iacademy.mikado-themes.com/?post_type=masonry-gallery&amp;p=181',0,'masonry-gallery','',0),(182,1,'2017-05-26 07:45:57','2017-05-26 07:45:57','','h1-img-6','','inherit','open','closed','','h1-img-6','','','2017-05-26 07:45:57','2017-05-26 07:45:57','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h1-img-6.png',0,'attachment','image/png',0),(183,1,'2017-05-26 07:45:59','2017-05-26 07:45:59','','h1-img-7','','inherit','open','closed','','h1-img-7','','','2017-05-26 07:45:59','2017-05-26 07:45:59','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h1-img-7.jpg',0,'attachment','image/jpeg',0),(184,1,'2017-05-26 07:46:01','2017-05-26 07:46:01','','h1-img-1','','inherit','open','closed','','h1-img-1','','','2017-05-26 07:46:01','2017-05-26 07:46:01','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h1-img-1.jpg',0,'attachment','image/jpeg',0),(188,1,'2017-05-26 07:46:09','2017-05-26 07:46:09','','h1-img-5','','inherit','open','closed','','h1-img-5','','','2017-05-26 07:46:09','2017-05-26 07:46:09','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h1-img-5.jpg',0,'attachment','image/jpeg',0),(189,1,'2017-05-26 07:51:03','2017-05-26 07:51:03','','Empowering children to reach their potential.','','publish','closed','closed','','empowering-children-to-reach-their-potential','','','2017-05-26 07:51:03','2017-05-26 07:51:03','',0,'http://iacademy.mikado-themes.com/?post_type=masonry-gallery&amp;p=189',0,'masonry-gallery','',0),(190,1,'2017-05-26 07:59:34','2017-05-26 07:59:34','','Information Technology Terms','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in','publish','open','closed','','information-technology-terms','','','2017-05-26 07:59:34','2017-05-26 07:59:34','',0,'http://iacademy.mikado-themes.com/?post_type=quiz&amp;p=190',2,'quiz','',0),(191,1,'2017-05-26 08:00:56','2017-05-26 08:00:56','','Education is your door to the future.','','publish','closed','closed','','education-is-your-door-to-the-future','','','2017-05-26 08:00:56','2017-05-26 08:00:56','',0,'http://iacademy.mikado-themes.com/?post_type=masonry-gallery&amp;p=191',0,'masonry-gallery','',0),(193,1,'2017-05-26 08:03:10','2017-05-26 08:03:10','','Motivated achievers perform, learn, excel.','','publish','closed','closed','','motivated-achievers-perform-learn-excel-2','','','2017-05-26 08:03:10','2017-05-26 08:03:10','',0,'http://iacademy.mikado-themes.com/?post_type=masonry-gallery&amp;p=193',0,'masonry-gallery','',0),(195,1,'2017-05-26 08:49:11','2017-05-26 08:49:11','6','Web Coding Bacisc','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in.','publish','open','closed','','opportunities-of-collaboration-online','','','2017-05-26 08:49:11','2017-05-26 08:49:11','',0,'http://iacademy.mikado-themes.com/?post_type=lesson&amp;p=195',6,'lesson','',0),(196,1,'2017-05-26 08:39:13','2017-05-26 08:39:13','','h1-img-2','','inherit','open','closed','','h1-img-2','','','2017-05-26 08:39:13','2017-05-26 08:39:13','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h1-img-2.jpg',0,'attachment','image/jpeg',0),(197,1,'2017-05-26 08:39:16','2017-05-26 08:39:16','','h1-img-3','','inherit','open','closed','','h1-img-3','','','2017-05-26 08:39:16','2017-05-26 08:39:16','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h1-img-3.jpg',0,'attachment','image/jpeg',0),(199,1,'2017-05-26 08:50:22','2017-05-26 08:50:22','','Personalized tutoring','','publish','closed','closed','','personalized-tutoring','','','2017-05-26 08:50:22','2017-05-26 08:50:22','',0,'http://iacademy.mikado-themes.com/?post_type=masonry-gallery&amp;p=199',0,'masonry-gallery','',0),(200,1,'2017-05-26 08:46:21','2017-05-26 08:46:21','','course-2-f-img','','inherit','open','closed','','course-2-f-img','','','2017-05-26 08:46:21','2017-05-26 08:46:21','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/course-2-f-img.jpg',0,'attachment','image/jpeg',0),(201,1,'2017-05-26 08:55:26','2017-05-26 08:55:26','','','','publish','closed','closed','','201','','','2017-05-26 08:55:26','2017-05-26 08:55:26','',0,'http://iacademy.mikado-themes.com/?post_type=masonry-gallery&amp;p=201',0,'masonry-gallery','',0),(203,1,'2017-05-26 09:02:16','2017-05-26 09:02:16','7','Crowdsourcing','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in.','publish','open','closed','','crowdsourcing','','','2017-05-26 09:02:16','2017-05-26 09:02:16','',0,'http://iacademy.mikado-themes.com/?post_type=lesson&amp;p=203',7,'lesson','',0),(204,1,'2017-05-26 08:57:07','2017-05-26 08:57:07','','h1-img-4','','inherit','open','closed','','h1-img-4','','','2017-05-26 08:57:07','2017-05-26 08:57:07','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h1-img-4.jpg',0,'attachment','image/jpeg',0),(205,1,'2017-05-26 08:58:35','2017-05-26 08:58:35','','Together we create a loving community','','publish','closed','closed','','together-we-create-a-loving-community','','','2017-05-26 08:58:35','2017-05-26 08:58:35','',0,'http://iacademy.mikado-themes.com/?post_type=masonry-gallery&amp;p=205',0,'masonry-gallery','',0),(206,1,'2017-05-26 09:00:35','2017-05-26 09:00:35','','The harder I work, the smarter I get.','','publish','closed','closed','','the-harder-i-work-the-smarter-i-get','','','2017-05-26 09:00:35','2017-05-26 09:00:35','',0,'http://iacademy.mikado-themes.com/?post_type=masonry-gallery&amp;p=206',0,'masonry-gallery','',0),(207,1,'2017-05-26 09:01:12','2017-05-26 09:01:12','','','','publish','closed','closed','','207','','','2017-05-26 09:01:12','2017-05-26 09:01:12','',0,'http://iacademy.mikado-themes.com/?post_type=masonry-gallery&amp;p=207',0,'masonry-gallery','',0),(209,1,'2017-05-26 10:19:01','2017-05-26 10:19:01','8','Which of these languages are more similar to Spanish?','','publish','open','closed','','which-of-these-languages-are-more-similar-to-spanish','','','2017-05-26 10:19:01','2017-05-26 10:19:01','',0,'http://iacademy.mikado-themes.com/?post_type=question&amp;p=209',6,'question','',0),(211,1,'2017-05-26 09:15:40','2017-05-26 09:15:40','','h1-parallax-img-2','','inherit','open','closed','','h1-parallax-img-2','','','2017-05-26 09:15:40','2017-05-26 09:15:40','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h1-parallax-img-2.jpg',0,'attachment','image/jpeg',0),(216,1,'2017-05-26 09:31:44','2017-05-26 09:31:44','','h5-client-1','','inherit','open','closed','','h5-client-1','','','2017-05-26 09:31:44','2017-05-26 09:31:44','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h5-client-1.png',0,'attachment','image/png',0),(217,1,'2017-05-26 09:31:46','2017-05-26 09:31:46','','h5-client-2','','inherit','open','closed','','h5-client-2','','','2017-05-26 09:31:46','2017-05-26 09:31:46','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h5-client-2.png',0,'attachment','image/png',0),(218,1,'2017-05-26 09:31:47','2017-05-26 09:31:47','','h5-client-3','','inherit','open','closed','','h5-client-3','','','2017-05-26 09:31:47','2017-05-26 09:31:47','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h5-client-3.png',0,'attachment','image/png',0),(219,1,'2017-05-26 09:31:49','2017-05-26 09:31:49','','h5-client-4','','inherit','open','closed','','h5-client-4','','','2017-05-26 09:31:49','2017-05-26 09:31:49','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h5-client-4.png',0,'attachment','image/png',0),(220,1,'2017-05-26 09:31:50','2017-05-26 09:31:50','','h5-client-5','','inherit','open','closed','','h5-client-5','','','2017-05-26 09:31:50','2017-05-26 09:31:50','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h5-client-5.png',0,'attachment','image/png',0),(229,1,'2017-05-26 09:54:53','2017-05-26 09:54:53','Sinh viên Nam, Nữ','Lớp 1: Tiếng Việt','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in.','publish','open','closed','','lop-1-tieng-viet','','','2024-10-29 22:33:10','2024-10-29 15:33:10','',0,'http://iacademy.mikado-themes.com/?post_type=course&#038;p=229',3,'course','',0),(232,1,'2017-05-26 09:52:50','2017-05-26 09:52:50','','course-3-f-img','','inherit','open','closed','','course-3-f-img','','','2017-05-26 09:52:50','2017-05-26 09:52:50','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/course-3-f-img.jpg',0,'attachment','image/jpeg',0),(237,1,'2017-05-26 12:13:42','2017-05-26 12:13:42','8','Web Development','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in.','publish','open','closed','','crowdsourcing-2','','','2017-05-26 12:13:42','2017-05-26 12:13:42','',0,'http://iacademy.mikado-themes.com/?post_type=lesson&amp;p=237',8,'lesson','',0),(239,1,'2017-05-26 10:21:57','2017-05-26 10:21:57','','What is the full form of IBM?','','publish','open','closed','','what-is-the-full-form-of-ibm','','','2017-05-26 10:21:57','2017-05-26 10:21:57','',0,'http://iacademy.mikado-themes.com/?post_type=question&amp;p=239',7,'question','',0),(240,1,'2017-05-26 10:22:47','2017-05-26 10:22:47','3','\'OS\' computer abbreviation usually means?','','publish','open','closed','','os-computer-abbreviation-usually-means','','','2017-05-26 10:22:47','2017-05-26 10:22:47','',0,'http://iacademy.mikado-themes.com/?post_type=question&amp;p=240',3,'question','',0),(243,1,'2017-05-26 10:29:55','2017-05-26 10:29:55','','Cumulative Language Quiz','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in','publish','open','closed','','cumulative-language-quiz','','','2017-05-26 10:29:55','2017-05-26 10:29:55','',0,'http://iacademy.mikado-themes.com/?post_type=quiz&amp;p=243',3,'quiz','',0),(248,1,'2017-05-24 10:43:42','2017-05-24 10:43:42','1','Greetings and Introductions','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in.','publish','open','closed','','greetings-and-introductions','','','2017-05-24 10:43:42','2017-05-24 10:43:42','',0,'http://iacademy.mikado-themes.com/?post_type=lesson&amp;p=248',1,'lesson','',0),(253,1,'2017-05-26 12:15:43','2017-05-26 12:15:43','','\'.MOV\' extension refers usually to what kind of file?','','publish','open','closed','','mov-extension-refers-usually-to-what-kind-of-file','','','2017-05-26 12:15:43','2017-05-26 12:15:43','',0,'http://iacademy.mikado-themes.com/?post_type=question&amp;p=253',2,'question','',0),(257,1,'2017-05-26 12:23:08','0000-00-00 00:00:00','','What is part of a database that holds only one type of information?','','draft','open','closed','','','','','2017-05-26 12:23:08','0000-00-00 00:00:00','',0,'http://iacademy.mikado-themes.com/?post_type=question&amp;p=257',1,'question','',0),(258,1,'2017-05-26 12:23:26','0000-00-00 00:00:00','','What is part of a database that holds only one type of information?','','draft','open','closed','','','','','2017-05-26 12:23:26','0000-00-00 00:00:00','',0,'http://iacademy.mikado-themes.com/?post_type=question&amp;p=258',1,'question','',0),(260,1,'2017-05-26 12:31:16','2017-05-26 12:31:16','Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit.\n\nSed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa','Strategic Leadership','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in.','publish','open','closed','','organisational-leadership','','','2017-05-26 12:31:16','2017-05-26 12:31:16','',0,'http://iacademy.mikado-themes.com/?post_type=lesson&amp;p=260',9,'lesson','',0),(262,1,'2017-05-26 12:36:27','2017-05-26 12:36:27','Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit.\n\nSed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa','Corporate Enterpreneurship','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in.','publish','open','closed','','corporate-enterpreneurship','','','2017-05-26 12:36:27','2017-05-26 12:36:27','',0,'http://iacademy.mikado-themes.com/?post_type=lesson&amp;p=262',10,'lesson','',0),(263,1,'2017-05-26 12:39:42','2017-05-26 12:39:42','11','Financial Management','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in.','publish','open','closed','','financial-management','','','2017-05-26 12:39:42','2017-05-26 12:39:42','',0,'http://iacademy.mikado-themes.com/?post_type=lesson&amp;p=263',11,'lesson','',0),(264,1,'2017-05-26 12:40:56','2017-05-26 12:40:56','','What is the name of mobile company which was acquired by Sony?','','publish','open','closed','','what-is-the-name-of-mobile-company-which-was-acquired-by-sony','','','2017-05-26 12:40:56','2017-05-26 12:40:56','',0,'http://iacademy.mikado-themes.com/?post_type=question&amp;p=264',8,'question','',0),(265,1,'2017-05-26 12:42:52','2017-05-26 12:42:52','New unproven ventures are risky and spend more cash than they generate. For that reason alone a new venture will likely not initially be able to raise the total investment amount required to become cash-flow positive. Since the risks at the start of a business are daunting and the end point may be far out in the future, potential investors in your business will want to see its progression broken down into steps. These logical and achievable steps should include the cash requirement for each stage and take your company to the end goal. These steps have a better chance of attracting the appropriate financing at the appropriate valuation. The company becomes less risky as you progress and the economic value increases as you meet each step. These steps, the cash required at each step, along with your financial plan, are the backbone of your financing strategy. If you’re thinking of raising capital from outside investors, the following articles provides some great insights.\n\n&nbsp;\n\nA good execution plan communicates the complexity associated with all the milestones while still providing potential investors with a sense of the opportunity for venture capital reward. As your company achieves each milestone, you’ll be able to articulate in a concrete fashion the successes you’ve had and demonstrate the building momentum. The exact time required to complete these goals varies on a case-by-case basis. For example, it might take more time for a life-sciences company to achieve product validation than it would a software-as-a-service (SaaS) company. However, generally a large proportion of your organization’s efforts (70% to 90%) should be focused on accomplishing these key milestones. Your product development plan will provide specific product milestones. Your sales plan and go-to-market plan will give you detailed customer and marketing milestones. Your human resources plan will generate your human resources milestones.','Competition in Pricing Strategy','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in.','publish','open','closed','','word-types-2','','','2017-05-26 12:42:52','2017-05-26 12:42:52','',0,'http://iacademy.mikado-themes.com/?post_type=lesson&amp;p=265',12,'lesson','',0),(269,1,'2017-05-26 13:06:03','2017-05-26 13:06:03','Sinh viên Nam, Nữ','Lớp 11: Toán','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in.','publish','open','closed','','lop-11','','','2024-10-30 17:44:57','2024-10-30 10:44:57','',0,'http://iacademy.mikado-themes.com/?post_type=course&#038;p=269',4,'course','',0),(270,1,'2017-05-26 13:09:51','2017-05-26 13:09:51','','What does the PEST stand for in PEST analysis?','','publish','open','closed','','what-does-the-pest-stand-for-in-pest-analysis','','','2017-05-26 13:09:51','2017-05-26 13:09:51','',0,'http://iacademy.mikado-themes.com/?post_type=question&amp;p=270',9,'question','',0),(271,1,'2017-05-26 13:07:01','2017-05-26 13:07:01','','course-4-f-img','','inherit','open','closed','','course-4-f-img','','','2017-05-26 13:07:01','2017-05-26 13:07:01','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/course-4-f-img.jpg',0,'attachment','image/jpeg',0),(272,1,'2017-05-26 13:19:42','2017-05-26 13:19:42','Sinh viên Nam, Nữ','Lớp 11: Lý','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in.','publish','open','closed','','lop-11-ly','','','2024-10-29 22:52:52','2024-10-29 15:52:52','',0,'http://iacademy.mikado-themes.com/?post_type=course&#038;p=272',5,'course','',0),(273,1,'2017-05-26 13:17:48','2017-05-26 13:17:48','','course-5-f-img','','inherit','open','closed','','course-5-f-img','','','2017-05-26 13:17:48','2017-05-26 13:17:48','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/course-5-f-img.jpg',0,'attachment','image/jpeg',0),(274,1,'2017-05-26 13:24:11','2017-05-26 13:24:11','Sinh viên Nam, Nữ','Lớp 9: Hóa','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in.','publish','open','closed','','lop-9-hoa','','','2024-10-29 22:43:51','2024-10-29 15:43:51','',0,'http://iacademy.mikado-themes.com/?post_type=course&#038;p=274',6,'course','',0),(275,1,'2017-05-26 13:22:29','2017-05-26 13:22:29','','course-6-f-img','','inherit','open','closed','','course-6-f-img','','','2017-05-26 13:22:29','2017-05-26 13:22:29','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/course-6-f-img.jpg',0,'attachment','image/jpeg',0),(276,1,'2017-05-26 13:36:33','2017-05-26 13:36:33','Sinh viên Nam, Nữ','Lớp 7: Lý','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in.','publish','open','closed','','modern-psychology','','','2024-10-29 22:40:32','2024-10-29 15:40:32','',0,'http://iacademy.mikado-themes.com/?post_type=course&#038;p=276',7,'course','',0),(277,1,'2017-05-26 13:33:16','2017-05-26 13:33:16','Sinh viên Nam, Nữ','Lớp 4: Toán','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in.','publish','open','closed','','lop-4-toan','','','2024-10-29 22:39:09','2024-10-29 15:39:09','',0,'http://iacademy.mikado-themes.com/?post_type=course&#038;p=277',12,'course','',0),(278,1,'2017-05-26 13:32:15','2017-05-26 13:32:15','','course-12-f-img','','inherit','open','closed','','course-12-f-img','','','2017-05-26 13:32:15','2017-05-26 13:32:15','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/course-12-f-img.jpg',0,'attachment','image/jpeg',0),(279,1,'2017-05-26 13:35:49','2017-05-26 13:35:49','Sinh viên Nam, Nữ','Lớp 3: Tiếng Anh','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in.','publish','open','closed','','lop-3-tieng-anh','','','2024-10-29 22:36:49','2024-10-29 15:36:49','',0,'http://iacademy.mikado-themes.com/?post_type=course&#038;p=279',11,'course','',0),(280,1,'2017-05-26 13:35:19','2017-05-26 13:35:19','','course-11-f-img','','inherit','open','closed','','course-11-f-img','','','2017-05-26 13:35:19','2017-05-26 13:35:19','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/course-11-f-img.jpg',0,'attachment','image/jpeg',0),(281,1,'2017-05-26 13:39:00','2017-05-26 13:39:00','Dạy 120 phút/buổi, T2, 4, 6 Tối 6h - 8h(chọn 3b)','Lớp 11: Văn','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in.','publish','open','closed','','lop-11-van','','','2024-10-29 22:49:55','2024-10-29 15:49:55','',0,'http://iacademy.mikado-themes.com/?post_type=course&#038;p=281',10,'course','',0),(282,1,'2017-05-26 13:36:57','2017-05-26 13:36:57','','course-7-f-img','','inherit','open','closed','','course-7-f-img','','','2017-05-26 13:36:57','2017-05-26 13:36:57','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/course-7-f-img.jpg',0,'attachment','image/jpeg',0),(283,1,'2017-05-26 13:38:34','2017-05-26 13:38:34','','course-10-f-img','','inherit','open','closed','','course-10-f-img','','','2017-05-26 13:38:34','2017-05-26 13:38:34','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/course-10-f-img.jpg',0,'attachment','image/jpeg',0),(284,1,'2017-05-26 13:44:17','2017-05-26 13:44:17','Sinh viên Nam, Nữ','Lớp 2: Tiếng Anh','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in.','publish','open','closed','','lop-2-tieng-anh','','','2024-10-29 22:46:06','2024-10-29 15:46:06','',0,'http://iacademy.mikado-themes.com/?post_type=course&#038;p=284',6,'course','',0),(285,1,'2017-05-26 13:43:48','2017-05-26 13:43:48','','course-9-f-img','','inherit','open','closed','','course-9-f-img','','','2017-05-26 13:43:48','2017-05-26 13:43:48','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/course-9-f-img.jpg',0,'attachment','image/jpeg',0),(286,1,'2017-05-26 13:47:04','2017-05-26 13:47:04','Sinh viên Nam, Nữ','Lớp 6: Lý','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in.','publish','open','closed','','lop-6-ly','','','2024-10-29 22:43:11','2024-10-29 15:43:11','',0,'http://iacademy.mikado-themes.com/?post_type=course&#038;p=286',8,'course','',0),(287,1,'2017-05-26 13:48:32','2017-05-26 13:48:32','','course-8-f-img','','inherit','open','closed','','course-8-f-img','','','2017-05-26 13:48:32','2017-05-26 13:48:32','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/course-8-f-img.jpg',0,'attachment','image/jpeg',0),(289,1,'2017-05-26 13:57:39','2017-05-26 13:57:39','','Lớp học','','publish','closed','closed','','lop-hoc','','','2024-10-31 17:46:39','2024-10-31 10:46:39','',0,'http://iacademy.mikado-themes.com/?page_id=289',0,'page','',0),(291,1,'2017-05-26 13:58:17','2017-05-26 13:58:17','[vc_row content_text_aligment=\"center\" css=\".vc_custom_1495807738968{padding-top: 122px !important;padding-bottom: 68px !important;}\"][vc_column][vc_column_text]\r\n<h2><span style=\"color: #000000;\">Khóa học mới</span></h2>\r\n[/vc_column_text][vc_empty_space height=\"30px\"][mkdf_course_list number_of_columns=\"4\" space_between_items=\"normal\" number_of_items=\"12\" order_by=\"date\" order=\"ASC\"][/vc_column][/vc_row]','Lớp học đang mở','','publish','closed','closed','','lop-hoc-dang-mo','','','2024-11-04 08:29:26','2024-11-04 01:29:26','',289,'http://iacademy.mikado-themes.com/?page_id=291',0,'page','',0),(300,1,'2017-05-26 14:37:39','2017-05-26 14:37:39','[vc_row row_content_width=\"grid\" content_text_aligment=\"center\" parallax_background_image=\"304\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"188px 24% 230px\" item_padding_1024_1280=\"147px 19% 191px\" item_padding_768_1024=\"155px 7% 205px\" item_padding_680_768=\"158px 0% 200px\" item_padding_680=\"60px 0% 80px\"][mkdf_custom_font title_tag=\"\" font_weight=\"700\" font_style=\"\" text_transform=\"\" text_decoration=\"\" text_align=\"center\" title=\"Specialized Training\" font_family=\"Merriweather\" font_size=\"63px\" line_height=\"73px\" color=\"#ffffff\" font_size_1280=\"63px\" line_height_1280=\"73px\" font_size_768=\"53px\" line_height_768=\"63px\" font_size_680=\"36px\" line_height_680=\"46px\"][mkdf_custom_font title_tag=\"\" font_weight=\"600\" font_style=\"\" text_transform=\"\" text_decoration=\"\" text_align=\"center\" title=\"Enhance the Learning Potential. \" font_family=\"Open Sans\" font_size=\"24px\" line_height=\"34px\" color=\"#ffffff\" font_size_680=\"16px\" line_height_680=\"26px\"][vc_empty_space height=\"20px\"][vc_widget_sidebar sidebar_id=\"custom-widget-home-2\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row row_content_width=\"grid\" content_text_aligment=\"center\" css=\".vc_custom_1496819325736{padding-top: 115px !important;padding-bottom: 125px !important;}\" simple_background_color=\"#ffffff\"][vc_column][mkdf_section_title type=\"standard\" title_tag=\"h2\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" title=\"Our Instructors\" title_color=\"#d8a64e\" text=\"Lorem ipsum gravida nibh vel velit auctor aliquetnean sollicitudin, lorem quis bibendum \" text_font_size=\"17\"][vc_empty_space height=\"40px\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" horizontal_alignment=\"center\" item_padding=\"0 20%\" item_padding_768_1024=\"0 10%\" item_padding_1280_1600=\"0 20%\" item_padding_1024_1280=\"0 20%\" item_padding_680_768=\"0 5%\"][mkdf_instructor_slider number_of_columns=\"6\" space_between_items=\"normal\" order_by=\"date\" order=\"ASC\" instructor_layout=\"minimal\" slider_navigation=\"yes\" slider_pagination=\"no\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row][vc_column][mkdf_separator type=\"full-width\" border_style=\"\" color=\"#ebebeb\" thickness=\"1\" top_margin=\"0px\" bottom_margin=\"0px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1496132616880{padding-top: 110px !important;padding-bottom: 125px !important;}\" simple_background_color=\"#fdfdfd\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0px 20% 90px\" item_padding_768_1024=\"0px 0px 90px\" item_padding_680_768=\"0px 0px 90px\" item_padding_680=\"0px 0px 90px\"][mkdf_section_title type=\"standard\" position=\"center\" title_tag=\"h1\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" title=\"Popular Online Courses\" text=\"Lorem ipsum gravida nibh vel velit auctor aliquetnean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit\" text_font_size=\"17\"][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_course_slider number_of_columns=\"3\" space_between_items=\"normal\" image_proportions=\"full\" order_by=\"date\" order=\"ASC\" title_tag=\"h4\" enable_excerpt=\"yes\" enable_loop=\"yes\" enable_autoplay=\"yes\" enable_navigation=\"no\" enable_pagination=\"yes\" pagination_position=\"below-slider\" excerpt_length=\"72\"][/vc_column][/vc_row][vc_row][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"two-columns\" switch_to_one_column=\"1024\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" horizontal_alignment=\"center\"][mkdf_video_button video_link=\"https://vimeo.com/157562616\" play_label=\"WATCH VIDEO\" video_image=\"2394\"][/mkdf_elements_holder_item][mkdf_elements_holder_item item_width=\"1-1\" background_image=\"315\" item_padding_768_1024=\"100px 0px\" item_padding_680_768=\"100px 0px\" item_padding_1024_1280=\"39px 0 \" item_padding_680=\"100px 0px\"][mkdf_testimonials type=\"standard\" skin=\"light\" slider_loop=\"yes\" slider_autoplay=\"yes\" slider_navigation=\"no\" slider_pagination=\"yes\" slider_padding=\"yes\" category=\"standard\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row row_content_width=\"grid\" content_text_aligment=\"center\" css=\".vc_custom_1496042092980{padding-top: 110px !important;padding-bottom: 110px !important;}\" simple_background_color=\"#fdfdfd\"][vc_column][mkdf_section_title type=\"standard\" position=\"center\" title_tag=\"h1\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" title=\"Online Courses\" text=\"Lorem ipsum gravida nibh vel velit auctor aliquetnean sollicitudin, lorem quis bibendum \" text_font_size=\"17\"][vc_empty_space height=\"90px\"][mkdf_course_table order_by=\"date\" order=\"ASC\" enable_students=\"no\" selected_courses=\"18, 174, 229, 269, 274\"][/vc_column][/vc_row][vc_row simple_background_color=\"#fdfdfd\"][vc_column][mkdf_section_title type=\"standard\" title_tag=\"h2\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" title=\"Our Offices Around the World\" title_color=\"#d8a64e\" text=\"Lorem ipsum gravida nibh vel velit auctor aliquetnean sollicitudin,lorem quis bibendum\n\" text_font_size=\"17\"][vc_empty_space height=\"93px\"][rev_slider_vc alias=\"interactive-map-slider\" enable_paspartu=\"no\"][/vc_column][/vc_row][vc_row simple_background_color=\"#fdfdfd\"][vc_column][vc_row_inner row_content_width=\"grid\"][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1496042313476{padding-top: 115px !important;padding-bottom: 100px !important;}\" simple_background_color=\"#fdfdfd\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 15% 80px\" item_padding_680_768=\"0 3% 85px\" item_padding_768_1024=\"0 0 85px\" item_padding_680=\"0 3% 85px\"][mkdf_section_title type=\"standard\" title_tag=\"h1\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" title=\"Latest Tweets\" text=\"Lorem Isn gravida nibh vel velit auctor aliquetnean sollicitudin,lorem quis bibendum auci elit consequat psutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus\" text_font_size=\"17\"][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_twitter_list number_of_columns=\"3\" number_of_tweets=\"6\" user_id=\"3346513492\" transient_time=\"86400\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" content_text_aligment=\"center\" css=\".vc_custom_1496132385974{padding-top: 130px !important;padding-bottom: 93px !important;}\" simple_background_color=\"#3baee2\"][vc_column width=\"1/2\" offset=\"vc_col-md-3\"][mkdf_counter type=\"mkdf-zero-counter\" icon_pack=\"linear_icons\" linear_icon=\"lnr-apartment\" title_tag=\"h4\" title_font_weight=\"\" custom_icon_size=\"48\" digit=\"168\" digit_font_size=\"48\" title=\"Success Stories\" icon_color=\"#ffffff\" digit_color=\"#ffffff\" title_color=\"#ffffff\" icon_margin=\"0 0 22px\"][vc_empty_space height=\"30px\"][/vc_column][vc_column width=\"1/2\" offset=\"vc_col-md-3\"][mkdf_counter type=\"mkdf-zero-counter\" icon_pack=\"linear_icons\" linear_icon=\"lnr-user\" title_tag=\"h4\" title_font_weight=\"\" custom_icon_size=\"48\" digit=\"678\" digit_font_size=\"48\" title=\"Trusted Tutors\" icon_color=\"#ffffff\" digit_color=\"#ffffff\" title_color=\"#ffffff\" icon_margin=\"0 0 22px\"][vc_empty_space height=\"30px\"][/vc_column][vc_column width=\"1/2\" offset=\"vc_col-md-3\"][mkdf_counter type=\"mkdf-zero-counter\" icon_pack=\"linear_icons\" linear_icon=\"lnr-calendar-full\" title_tag=\"h4\" title_font_weight=\"\" custom_icon_size=\"48\" digit=\"347\" digit_font_size=\"48\" title=\"Scheduled Events\" icon_color=\"#ffffff\" digit_color=\"#ffffff\" title_color=\"#ffffff\" icon_margin=\"0 0 22px\"][vc_empty_space height=\"30px\"][/vc_column][vc_column width=\"1/2\" offset=\"vc_col-md-3\"][mkdf_counter type=\"mkdf-zero-counter\" icon_pack=\"linear_icons\" linear_icon=\"lnr-laptop-phone\" title_tag=\"h4\" title_font_weight=\"\" custom_icon_size=\"50\" digit=\"1912\" digit_font_size=\"49\" title=\"Available Courses\" icon_color=\"#ffffff\" digit_color=\"#ffffff\" title_color=\"#ffffff\" icon_margin=\"0 0 20px\"][vc_empty_space height=\"30px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1496236353668{padding-top: 110px !important;padding-bottom: 86px !important;}\" simple_background_color=\"#ffffff\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0px 18% 90px\" item_padding_768_1024=\"0px 0% 85px\" item_padding_680_768=\"0px 3% 85px\" item_padding_680=\"0px 3% 85px\"][mkdf_section_title type=\"standard\" title_tag=\"h1\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" title=\"Latest News\" text=\"Lorem Isn gravida nibh vel velit auctor aliquetnean sollicitudin,lorem quis bibendum auci elit consequat psutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus\" text_font_size=\"17\"][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_blog_list type=\"standard\" number_of_columns=\"3\" order_by=\"date\" order=\"DESC\" post_info_category=\"no\" number_of_posts=\"3\" excerpt_length=\"27\" category=\"business\"][/vc_column][/vc_row]','Home 2','','publish','closed','closed','','home-2','','','2017-05-26 14:37:39','2017-05-26 14:37:39','',0,'http://iacademy.mikado-themes.com/?page_id=300',0,'page','',0),(304,1,'2017-05-26 14:24:15','2017-05-26 14:24:15','','h2-parallax-1','','inherit','open','closed','','h2-parallax-1','','','2017-05-26 14:24:15','2017-05-26 14:24:15','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h2-parallax-1.jpg',0,'attachment','image/jpeg',0),(306,1,'2017-05-26 14:27:40','2017-05-26 14:27:40','[vc_row css=\".vc_custom_1495809860309{padding-bottom: 68px !important;}\"][vc_column][mkdf_course_list number_of_columns=\"3\" space_between_items=\"normal\" number_of_items=\"9\" order_by=\"date\" order=\"ASC\" enable_instructor=\"no\" enable_students=\"no\" enable_category=\"no\" pagination_type=\"infinite-scroll\" filter=\"yes\"][/vc_column][/vc_row]','Tất cả lớp học','','publish','closed','closed','','tat-ca-lop-hoc','','','2024-10-31 17:45:44','2024-10-31 10:45:44','',289,'http://iacademy.mikado-themes.com/?page_id=306',0,'page','',0),(315,1,'2017-05-26 14:35:15','2017-05-26 14:35:15','','h2-background-img-2','','inherit','open','closed','','h2-background-img-2','','','2017-05-26 14:35:15','2017-05-26 14:35:15','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h2-background-img-2.png',0,'attachment','image/png',0),(320,1,'2017-05-26 14:47:27','2017-05-26 14:47:27','','testimonials-standard-1','','publish','closed','closed','','testimonials-standard-1','','','2017-05-26 14:47:27','2017-05-26 14:47:27','',0,'http://iacademy.mikado-themes.com/?post_type=testimonials&amp;p=320',0,'testimonials','',0),(321,1,'2017-05-26 14:46:36','2017-05-26 14:46:36','','testimonials-standard-1','','inherit','open','closed','','testimonials-standard-1','','','2017-05-26 14:46:36','2017-05-26 14:46:36','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/testimonials-standard-1.png',0,'attachment','image/png',0),(322,1,'2017-05-26 14:46:38','2017-05-26 14:46:38','','testimonials-standard-2','','inherit','open','closed','','testimonials-standard-2','','','2017-05-26 14:46:38','2017-05-26 14:46:38','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/testimonials-standard-2.png',0,'attachment','image/png',0),(323,1,'2017-05-26 14:46:39','2017-05-26 14:46:39','','testimonials-standard-3','','inherit','open','closed','','testimonials-standard-3','','','2017-05-26 14:46:39','2017-05-26 14:46:39','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/testimonials-standard-3.png',0,'attachment','image/png',0),(325,1,'2017-05-26 14:49:17','2017-05-26 14:49:17','','testimonials-standard-2','','publish','closed','closed','','testimonials-standard-1-2','','','2017-05-26 14:49:17','2017-05-26 14:49:17','',0,'http://iacademy.mikado-themes.com/?post_type=testimonials&amp;p=325',0,'testimonials','',0),(326,1,'2017-05-26 14:50:12','2017-05-26 14:50:12','','testimonials-standard-3','','publish','closed','closed','','testimonials-standard-3','','','2017-05-26 14:50:12','2017-05-26 14:50:12','',0,'http://iacademy.mikado-themes.com/?post_type=testimonials&amp;p=326',0,'testimonials','',0),(333,1,'2017-05-29 07:04:46','2017-05-29 07:04:46','','h2-img-1','','inherit','open','closed','','h2-img-1','','','2017-05-29 07:04:46','2017-05-29 07:04:46','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h2-img-1.png',0,'attachment','image/png',0),(349,1,'2017-05-29 08:33:30','2017-05-29 08:33:30','[vc_row css=\".vc_custom_1496049004993{margin-top: -19px !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][vc_row_inner][vc_column_inner width=\"5/12\"][vc_column_text]\n<h1>Heading 1</h1>\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_empty_space height=\"27px\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0px 0% 0px 91%\"][vc_column_text]45px[/vc_column_text][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][vc_column_inner width=\"6/12\"][vc_empty_space height=\"27px\"][vc_column_text]\n<p style=\"text-align: right;\">Merriweather, Bold, Lineheight 60px</p>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator css=\".vc_custom_1496050266272{padding-top: 25px !important;padding-bottom: 10px !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1496049004993{margin-top: -19px !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text]\n<h2>Heading 2</h2>\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_empty_space height=\"21px\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0px 0% 0px 91%\"][vc_column_text]37px[/vc_column_text][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_empty_space height=\"21px\"][vc_column_text]\n<p style=\"text-align: right;\">Merriweather, Bold, Lineheight 50px</p>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator css=\".vc_custom_1496050719657{padding-top: 30px !important;padding-bottom: 8px !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1496049004993{margin-top: -19px !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text]\n<h3>Heading 3</h3>\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_empty_space height=\"21px\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0px 0% 0px 91%\"][vc_column_text]30px[/vc_column_text][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_empty_space height=\"21px\"][vc_column_text]\n<p style=\"text-align: right;\">Merriweather, Bold, Lineheight 45px</p>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator css=\".vc_custom_1496051034729{padding-top: 33px !important;padding-bottom: 17px !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1496049004993{margin-top: -19px !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text]\n<h4>Heading 4</h4>\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_empty_space height=\"11px\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0px 0% 0px 91%\"][vc_column_text]22px[/vc_column_text][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_empty_space height=\"11px\"][vc_column_text]\n<p style=\"text-align: right;\">Merriweather, Bold, Lineheight 33px</p>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator css=\".vc_custom_1496051218576{padding-top: 33px !important;padding-bottom: 23px !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1496049004993{margin-top: -19px !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text]\n<h5>Heading 5</h5>\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_empty_space height=\"6px\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0px 0% 0px 91%\"][vc_column_text]16px[/vc_column_text][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_empty_space height=\"6px\"][vc_column_text]\n<p style=\"text-align: right;\">Merriweather, Bold, Lineheight 24px</p>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator css=\".vc_custom_1496051539528{padding-top: 39px !important;padding-bottom: 20px !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1496049004993{margin-top: -19px !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text]\n<h6>Heading 6</h6>\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_empty_space height=\"9px\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0px 0% 0px 91%\"][vc_column_text]14px[/vc_column_text][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_empty_space height=\"9px\"][vc_column_text]\n<p style=\"text-align: right;\">Open Sans, SemiBold, Lineheight 21px</p>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator css=\".vc_custom_1496051843399{padding-top: 38px !important;padding-bottom: 30px !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1496051880757{margin-top: -19px !important;padding-bottom: 100px !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text]Paragraph lorem ipsum[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0px 0% 0px 91%\"][vc_column_text]15px[/vc_column_text][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text]\n<p style=\"text-align: right;\">Open Sans, Regular, Lineheight 26px</p>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator css=\".vc_custom_1496051849439{padding-top: 41px !important;}\"][/vc_column][/vc_row]','Headings','','publish','closed','closed','','headings','','','2017-05-29 08:33:30','2017-05-29 08:33:30','',447,'http://iacademy.mikado-themes.com/?page_id=349',0,'page','',0),(374,1,'2017-05-29 09:56:46','2017-05-29 09:56:46','[vc_row][vc_column][rev_slider alias=\"home-3\"][/vc_column][/vc_row][vc_row simple_background_color=\"rgba(26,25,33,0.6)\"][vc_column css=\".vc_custom_1497518269683{margin-top: -123px !important;padding-bottom: 0px !important;background-color: rgba(26,25,33,0.6) !important;*background-color: rgb(26,25,33) !important;}\"][vc_row_inner row_content_width=\"grid\" content_text_aligment=\"center\"][vc_column_inner][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0px 0px 5px\"][mkdf_course_search button_text=\"Search\" button_type=\"solid\" button_size=\"large\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row row_content_width=\"grid\" disable_background_image=\"\" css=\".vc_custom_1496157454722{padding-top: 110px !important;}\" simple_background_color=\"#ffffff\" simple_background_image=\"1209\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0px 20% 90px\" item_padding_1024_1280=\"0px 18% 90px\" item_padding_768_1024=\"0px 10% 90px\" item_padding_680_768=\"0px 0% 90px\" item_padding_680=\"0px 0% 90px\"][mkdf_section_title type=\"standard\" position=\"center\" title_tag=\"h1\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" title=\"Popular Online Courses\" text=\"Lorem ipsum gravida nibh vel velit auctor aliquetnean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit\" text_font_size=\"17\"][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_course_list number_of_columns=\"4\" space_between_items=\"normal\" number_of_items=\"8\" order_by=\"date\" order=\"ASC\" title_tag=\"h5\" excerpt_length=\"80\"][vc_row_inner][vc_column_inner offset=\"vc_col-lg-5\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"102px 0 0 \" item_padding_1024_1280=\"50px 0 0 \"][vc_column_text]\n<h2>From Our Blog</h2>\n[/vc_column_text][vc_empty_space height=\"45px\"][mkdf_blog_list type=\"simple\" order_by=\"title\" order=\"ASC\" post_info_image=\"no\" number_of_posts=\"2\" excerpt_length=\"23\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][vc_column_inner css=\".vc_custom_1497947715417{margin-top: -7px !important;}\" offset=\"vc_col-lg-7\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" vertical_alignment=\"bottom\" item_padding_1024_1280=\"125px 0 0 \" animation_delay=\"150\" item_padding=\"75px 0 0 \"][mkdf_single_image enable_image_shadow=\"no\" image=\"4000\" image_size=\"full\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row row_content_width=\"grid\" content_text_aligment=\"center\" css=\".vc_custom_1496059168802{padding-top: 130px !important;padding-bottom: 93px !important;}\" simple_background_color=\"#3baee2\"][vc_column width=\"1/2\" offset=\"vc_col-md-3\"][mkdf_counter type=\"mkdf-zero-counter\" icon_pack=\"linear_icons\" linear_icon=\"lnr-apartment\" title_tag=\"h4\" title_font_weight=\"\" custom_icon_size=\"48\" digit=\"168\" digit_font_size=\"48\" title=\"Success Stories\" icon_color=\"#ffffff\" digit_color=\"#ffffff\" title_color=\"#ffffff\" icon_margin=\"0 0 22px\"][vc_empty_space height=\"30px\"][/vc_column][vc_column width=\"1/2\" offset=\"vc_col-md-3\"][mkdf_counter type=\"mkdf-zero-counter\" icon_pack=\"linear_icons\" linear_icon=\"lnr-user\" title_tag=\"h4\" title_font_weight=\"\" custom_icon_size=\"48\" digit=\"678\" digit_font_size=\"48\" title=\"Trusted Tutors\" icon_color=\"#ffffff\" digit_color=\"#ffffff\" title_color=\"#ffffff\" icon_margin=\"0 0 22px\"][vc_empty_space height=\"30px\"][/vc_column][vc_column width=\"1/2\" offset=\"vc_col-md-3\"][mkdf_counter type=\"mkdf-zero-counter\" icon_pack=\"linear_icons\" linear_icon=\"lnr-calendar-full\" title_tag=\"h4\" title_font_weight=\"\" custom_icon_size=\"48\" digit=\"347\" digit_font_size=\"48\" title=\"Scheduled Events\" icon_color=\"#ffffff\" digit_color=\"#ffffff\" title_color=\"#ffffff\" icon_margin=\"0 0 22px\"][vc_empty_space height=\"30px\"][/vc_column][vc_column width=\"1/2\" offset=\"vc_col-md-3\"][mkdf_counter type=\"mkdf-zero-counter\" icon_pack=\"linear_icons\" linear_icon=\"lnr-laptop-phone\" title_tag=\"h4\" title_font_weight=\"\" custom_icon_size=\"50\" digit=\"1912\" digit_font_size=\"49\" title=\"Available Courses\" icon_color=\"#ffffff\" digit_color=\"#ffffff\" title_color=\"#ffffff\" icon_margin=\"0 0 20px\"][vc_empty_space height=\"30px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1496059221747{padding-top: 110px !important;padding-bottom: 120px !important;}\" simple_background_color=\"#ffffff\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 21%\" item_padding_1280_1600=\"0 21%\" item_padding_1024_1280=\"0 17%\" item_padding_768_1024=\"0 4%\" item_padding_680_768=\"0 0 \" item_padding_680=\"0 0 \"][mkdf_section_title type=\"standard\" position=\"center\" title_tag=\"h1\" disable_break_words=\"yes\" text_tag=\"\" text_font_weight=\"\" title=\"Motivation &amp; Inspiration\" text=\"Lorem ipsum gravida nibh vel velit auctor aliquetnean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit\" text_font_size=\"17\"][/mkdf_elements_holder_item][/mkdf_elements_holder][vc_empty_space height=\"65px\"][mkdf_process number_of_items=\"four\"][mkdf_process_item highlighted=\"no\" image=\"571\" title=\"Sketch\" text=\"Lorem Ipsum proin gravida nibh vel veliauctor \"][mkdf_process_item highlighted=\"no\" image=\"572\" title=\"Creative Process\" text=\"Lorem Ipsum proin gravida nibh vel veliauctor \"][mkdf_process_item highlighted=\"yes\" image=\"573\" title=\"Learning Stage\" text=\"Lorem Ipsum proin gravida nibh vel veliauctor aliquenean sollicit\"][mkdf_process_item highlighted=\"no\" image=\"575\" title=\"Final Product\" text=\"Lorem Ipsum proin gravida nibh vel veliauctor \"][/mkdf_process][/vc_column][/vc_row][vc_row][vc_column][mkdf_separator type=\"full-width\" border_style=\"\" color=\"#ebebeb\" thickness=\"1\" top_margin=\"0px\" bottom_margin=\"0px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1496059280123{padding-top: 110px !important;padding-bottom: 100px !important;}\"][vc_column][mkdf_section_title type=\"standard\" title_tag=\"h2\" disable_break_words=\"yes\" text_tag=\"\" text_font_weight=\"\" title=\"Top Tutors in Every Subject\" title_color=\"#d8a64e\" text=\"Lorem ipsum gravida nibh vel velit auctor aliquetnean sollicitudin,lorem quis bibendum \" text_font_size=\"17\"][vc_empty_space height=\"80px\"][mkdf_instructor_list number_of_columns=\"3\" space_between_items=\"normal\" number_of_items=\"9\" order_by=\"date\" order=\"ASC\" instructor_layout=\"simple\" enable_shadow=\"yes\" instructor_background=\"#ffffff\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" content_text_aligment=\"center\" css=\".vc_custom_1496059316947{padding-top: 130px !important;padding-bottom: 125px !important;}\" parallax_background_image=\"422\"][vc_column][mkdf_testimonials type=\"standard\" skin=\"light\" slider_loop=\"yes\" slider_autoplay=\"yes\" slider_navigation=\"no\" slider_pagination=\"yes\" slider_padding=\"no\" number=\"3\" category=\"standard-2\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1496228442832{padding-top: 123px !important;padding-bottom: 123px !important;}\" simple_background_color=\"#ffffff\"][vc_column offset=\"vc_col-md-4\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 10% 87px\" item_padding_1280_1600=\"0 10% 87px\" item_padding_1024_1280=\"0 4% 87px\" item_padding_768_1024=\"0 0 87px\" item_padding_680_768=\"0 7% 70px\" item_padding_680=\"0 0 70px\"][mkdf_icon_with_text type=\"icon-top\" icon_pack=\"font_awesome\" fa_icon=\"\" title_tag=\"\" custom_icon=\"425\" title=\"Notification \" text=\"Lorem ipsum oin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis bibendum auctor, nisi elit consequa\"][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 10%\" item_padding_1280_1600=\"0 10%\" item_padding_1024_1280=\"0 4%\" item_padding_768_1024=\"0 0 \" item_padding_680_768=\"0 7% 70px\" item_padding_680=\"0 0 70px\"][mkdf_icon_with_text type=\"icon-top\" icon_pack=\"font_awesome\" fa_icon=\"\" title_tag=\"\" custom_icon=\"428\" title=\"Knowledge \" text=\"Lorem ipsum oin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis bibendum auctor, nisi elit consequa\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column offset=\"vc_col-md-4\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 10% 87px\" item_padding_1280_1600=\"0 10% 87px\" item_padding_1024_1280=\"0 4% 87px\" item_padding_768_1024=\"0 0 87px\" item_padding_680_768=\"0 7% 70px\" item_padding_680=\"0 0 70px\"][mkdf_icon_with_text type=\"icon-top\" icon_pack=\"font_awesome\" fa_icon=\"\" title_tag=\"\" custom_icon=\"426\" title=\"Certification\" text=\"Lorem ipsum oin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis bibendum auctor, nisi elit consequa\"][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 10% \" item_padding_1280_1600=\"0 10%\" item_padding_1024_1280=\"0 4%\" item_padding_768_1024=\"0 0 \" item_padding_680_768=\"0 7% 70px\" item_padding_680=\"0 0 70px\"][mkdf_icon_with_text type=\"icon-top\" icon_pack=\"font_awesome\" fa_icon=\"\" title_tag=\"\" custom_icon=\"429\" title=\"Success\" text=\"Lorem ipsum oin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis bibendum auctor, nisi elit consequa\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column offset=\"vc_col-md-4\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 10% 87px\" item_padding_1280_1600=\"0 10% 87px\" item_padding_1024_1280=\"0 4% 87px\" item_padding_768_1024=\"0 0 87px\" item_padding_680_768=\"0 7% 70px\" item_padding_680=\"0 0 70px\"][mkdf_icon_with_text type=\"icon-top\" icon_pack=\"font_awesome\" fa_icon=\"\" title_tag=\"\" custom_icon=\"427\" title=\"Campus\" text=\"Lorem ipsum oin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis bibendum auctor, nisi elit consequa\"][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 10%\" item_padding_1280_1600=\"0 10%\" item_padding_1024_1280=\"0 4% \" item_padding_768_1024=\"0 0 \" item_padding_680_768=\"0 7% 0\" item_padding_680=\"0 0 70px\"][mkdf_icon_with_text type=\"icon-top\" icon_pack=\"font_awesome\" fa_icon=\"\" title_tag=\"\" custom_icon=\"430\" title=\"Open Minds\" text=\"Lorem ipsum oin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis bibendum auctor, nisi elit consequa\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row][vc_column][mkdf_separator type=\"full-width\" border_style=\"\" color=\"#ebebeb\" thickness=\"1\" top_margin=\"0px\" bottom_margin=\"0px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1497000438109{padding-top: 110px !important;padding-bottom: 90px !important;}\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 23% 90px\" item_padding_1280_1600=\"0 23% 90px\" item_padding_1024_1280=\"0 19% 90px\" item_padding_768_1024=\"0 10% 90px\" item_padding_680_768=\"0 0% 90px\" item_padding_680=\"0 0% 90px\"][mkdf_section_title type=\"standard\" position=\"center\" title_tag=\"h1\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" title=\"Upcoming Events\" text=\"Lorem ipsum gravida nibh vel velit auctor aliquetnean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit\" text_font_size=\"17\"][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_events_list columns=\"three\" image_size=\"full\" order_by=\"date\" order=\"ASC\" category=\"tutoring\" number=\"3\"][/vc_column][/vc_row]','Home 9','','publish','closed','closed','','home-9','','','2017-05-29 09:56:46','2017-05-29 09:56:46','',0,'http://iacademy.mikado-themes.com/?page_id=374',0,'page','',0),(413,1,'2017-05-29 09:47:52','2017-05-29 09:47:52','','testimonials-standard-4','','publish','closed','closed','','testimonials-standard-4','','','2017-05-29 09:47:52','2017-05-29 09:47:52','',0,'http://iacademy.mikado-themes.com/?post_type=testimonials&amp;p=413',0,'testimonials','',0),(415,1,'2017-05-29 09:46:57','2017-05-29 09:46:57','','testimonials-standard-4','','inherit','open','closed','','testimonials-standard-4','','','2017-05-29 09:46:57','2017-05-29 09:46:57','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/testimonials-standard-4.png',0,'attachment','image/png',0),(416,1,'2017-05-29 09:46:59','2017-05-29 09:46:59','','testimonials-standard-5','','inherit','open','closed','','testimonials-standard-5','','','2017-05-29 09:46:59','2017-05-29 09:46:59','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/testimonials-standard-5.png',0,'attachment','image/png',0),(417,1,'2017-05-29 09:48:52','2017-05-29 09:48:52','','testimonials-standard-5','','publish','closed','closed','','testimonials-standard-5','','','2017-05-29 09:48:52','2017-05-29 09:48:52','',0,'http://iacademy.mikado-themes.com/?post_type=testimonials&amp;p=417',0,'testimonials','',0),(422,1,'2017-05-29 09:51:30','2017-05-29 09:51:30','','h3-parallax-img-1','','inherit','open','closed','','h3-parallax-img-1','','','2017-05-29 09:51:30','2017-05-29 09:51:30','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h3-parallax-img-1.png',0,'attachment','image/png',0),(425,1,'2017-05-29 09:53:04','2017-05-29 09:53:04','','h3-custom-icon-1','','inherit','open','closed','','h3-custom-icon-1','','','2017-05-29 09:53:04','2017-05-29 09:53:04','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h3-custom-icon-1.png',0,'attachment','image/png',0),(426,1,'2017-05-29 09:53:06','2017-05-29 09:53:06','','h3-custom-icon-2','','inherit','open','closed','','h3-custom-icon-2','','','2017-05-29 09:53:06','2017-05-29 09:53:06','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h3-custom-icon-2.png',0,'attachment','image/png',0),(427,1,'2017-05-29 09:53:08','2017-05-29 09:53:08','','h3-custom-icon-3','','inherit','open','closed','','h3-custom-icon-3','','','2017-05-29 09:53:08','2017-05-29 09:53:08','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h3-custom-icon-3.png',0,'attachment','image/png',0),(428,1,'2017-05-29 09:53:10','2017-05-29 09:53:10','','h3-custom-icon-4','','inherit','open','closed','','h3-custom-icon-4','','','2017-05-29 09:53:10','2017-05-29 09:53:10','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h3-custom-icon-4.png',0,'attachment','image/png',0),(429,1,'2017-05-29 09:53:11','2017-05-29 09:53:11','','h3-custom-icon-5','','inherit','open','closed','','h3-custom-icon-5','','','2017-05-29 09:53:11','2017-05-29 09:53:11','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h3-custom-icon-5.png',0,'attachment','image/png',0),(430,1,'2017-05-29 09:53:13','2017-05-29 09:53:13','','h3-custom-icon-6','','inherit','open','closed','','h3-custom-icon-6','','','2017-05-29 09:53:13','2017-05-29 09:53:13','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h3-custom-icon-6.png',0,'attachment','image/png',0),(447,1,'2017-05-29 10:04:32','2017-05-29 10:04:32','','Elements','','publish','closed','closed','','elements','','','2017-05-29 10:04:32','2017-05-29 10:04:32','',0,'http://iacademy.mikado-themes.com/?page_id=447',0,'page','',0),(449,1,'2017-05-29 10:05:50','2017-05-29 10:05:50','[vc_row css=\".vc_custom_1496052655268{margin-top: -10px !important;padding-bottom: 45px !important;}\"][vc_column width=\"11/12\" offset=\"vc_col-lg-offset-1\"][mkdf_section_title type=\"standard\" position=\"left\" text_tag=\"\" text_font_weight=\"\" text=\"IV Columns Layout\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/4\"][vc_column_text]Lorem ipsum dolor sit amet, congue porttitor sed duis curae a et. Eleifend non dictum.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text]Lorem ipsum dolor sit amet, congue porttitor sed duis curae a et. Eleifend non dictum.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text]Lorem ipsum dolor sit amet, congue porttitor sed duis curae a et. Eleifend non dictum.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text]Lorem ipsum dolor sit amet, congue porttitor sed duis curae a et. Eleifend non dictum.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1496052746065{margin-top: -10px !important;padding-bottom: 45px !important;}\"][vc_column width=\"11/12\" offset=\"vc_col-lg-offset-1\"][mkdf_section_title type=\"standard\" position=\"left\" text_tag=\"\" text_font_weight=\"\" text=\"III Columns Layout\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text]Lorem ipsum dolor sit amet, congue porttitor sed duis curae a et. Eleifend non dictum dolor.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]Lorem ipsum dolor sit amet, congue porttitor sed duis curae a et. Eleifend non dictum dolor.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]Lorem ipsum dolor sit amet, congue porttitor sed duis curae a et. Eleifend non dictum dolor.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1496052753133{margin-top: -10px !important;padding-bottom: 45px !important;}\"][vc_column width=\"11/12\" offset=\"vc_col-lg-offset-1\"][mkdf_section_title type=\"standard\" position=\"left\" text_tag=\"\" text_font_weight=\"\" text=\"II Columns Layout\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text]Lorem ipsum dolor sit amet, congue porttitor sed duis curae a et. Eleifend non dictum dolor, lacus diam sapien. Tellus metus magnis faucibus faucibus suspendisse etiam, mi non, neque pretium saepe, suspendisse vel mattis.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text]Lorem ipsum dolor sit amet, congue porttitor sed duis curae a et. Eleifend non dictum dolor, lacus diam sapien. Tellus metus magnis faucibus faucibus suspendisse etiam, mi non, neque pretium saepe, suspendisse vel mattis.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1496052753133{margin-top: -10px !important;padding-bottom: 45px !important;}\"][vc_column width=\"11/12\" offset=\"vc_col-lg-offset-1\"][mkdf_section_title type=\"standard\" position=\"left\" text_tag=\"\" text_font_weight=\"\" text=\"I Third / II Thirds Layout\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text]Lorem ipsum dolor sit amet, congue porttitor sed duis curae a et. Eleifend non dictum dolor, lacus diam sapien.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]Lorem ipsum dolor sit amet, congue porttitor sed duis curae a et. Eleifend non dictum dolor, lacus diam sapien. Tellus metus magnis faucibus faucibus suspendisse etiam, mi non, neque pretium saepe, suspendisse vel mattis.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1496052753133{margin-top: -10px !important;padding-bottom: 45px !important;}\"][vc_column width=\"11/12\" offset=\"vc_col-lg-offset-1\"][mkdf_section_title type=\"standard\" position=\"left\" text_tag=\"\" text_font_weight=\"\" text=\"I Fourth / III Fourths Layout\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/4\"][vc_column_text]Lorem ipsum dolor sit amet, congue porttitor sed duis curae.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"3/4\"][vc_column_text]Lorem ipsum dolor sit amet, congue porttitor sed duis curae a et. Eleifend non dictum dolor, lacus diam sapien. Tellus metus magnis faucibus faucibus suspendisse etiam, mi non, neque pretium saepe, suspendisse vel mattis.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1496052753133{margin-top: -10px !important;padding-bottom: 45px !important;}\"][vc_column width=\"11/12\" offset=\"vc_col-lg-offset-1\"][mkdf_section_title type=\"standard\" position=\"left\" text_tag=\"\" text_font_weight=\"\" text=\"III Fourths / I Fourth Layout\"][vc_empty_space height=\"20px\"][vc_row_inner css=\".vc_custom_1496053048146{padding-bottom: 47px !important;}\"][vc_column_inner width=\"3/4\"][vc_column_text]Lorem ipsum dolor sit amet, congue porttitor sed duis curae a et. Eleifend non dictum dolor, lacus diam sapien. Tellus metus magnis faucibus faucibus suspendisse etiam, mi non, neque pretium saepe, suspendisse vel mattis.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text]Lorem ipsum dolor sit amet, congue porttitor sed duis curae.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Columns','','publish','closed','closed','','columns','','','2017-05-29 10:05:50','2017-05-29 10:05:50','',447,'http://iacademy.mikado-themes.com/?page_id=449',0,'page','',0),(475,1,'2017-05-29 10:25:26','2017-05-29 10:25:26','[vc_row css=\".vc_custom_1496053939753{margin-top: -4px !important;padding-bottom: 52px !important;}\"][vc_column width=\"11/12\" offset=\"vc_col-lg-offset-1\"][vc_column_text][mkdf_dropcaps type=\"square\" color=\"#ffffff\" background_color=\"#282727\"]L[/mkdf_dropcaps]orem ipsum dolor. Sit amet non. Libero varius ligula a id nec libero amet non metus ligula risus egestas senectus euismod. In vel tristique. Nulla risus aliquam venenatis ut feugiat. Suspendisse nec ultricies. Pulvinar fusce varius consequat quis ornare. Tellus ridiculus quisque. Ullamcorper pulvinar pede. Sem porta sit nibh vivamus et. Aenean sollicitudin in elit sed id. Justo et netus tempus cras quam. Ac urna pellentesque vitae posuere libero. Con sed suspendisse tristique nisl magna nulla felis placerat quis lacus assumenda auctor id sagittis.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1496053873950{margin-top: -10px !important;padding-bottom: 52px !important;}\"][vc_column width=\"11/12\" offset=\"vc_col-lg-offset-1\"][vc_column_text][mkdf_dropcaps type=\"square\" color=\"#ffffff\" background_color=\"#d8a64e\"]L[/mkdf_dropcaps]orem ipsum dolor. Sit amet non. Libero varius ligula a id nec libero amet non metus ligula risus egestas senectus euismod. In vel tristique. Nulla risus aliquam venenatis ut feugiat. Suspendisse nec ultricies. Pulvinar fusce varius consequat quis ornare. Tellus ridiculus quisque. Ullamcorper pulvinar pede. Sem porta sit nibh vivamus et. Aenean sollicitudin in elit sed id. Justo et netus tempus cras quam. Ac urna pellentesque vitae posuere libero. Con sed suspendisse tristique nisl magna nulla felis placerat quis lacus assumenda auctor id sagittis.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1496053882981{margin-top: -10px !important;padding-bottom: 52px !important;}\"][vc_column width=\"11/12\" offset=\"vc_col-lg-offset-1\"][vc_column_text][mkdf_dropcaps type=\"normal\" color=\"#282727\" background_color=\"\"]L[/mkdf_dropcaps]orem ipsum dolor. Sit amet non. Libero varius ligula a id nec libero amet non metus ligula risus egestas senectus euismod. In vel tristique. Nulla risus aliquam venenatis ut feugiat. Suspendisse nec ultricies. Pulvinar fusce varius consequat quis ornare. Tellus ridiculus quisque. Ullamcorper pulvinar pede. Sem porta sit nibh vivamus et. Aenean sollicitudin in elit sed id. Justo et netus tempus cras quam. Ac urna pellentesque vitae posuere libero. Con sed suspendisse tristique nisl magna nulla felis placerat quis lacus assumenda auctor id sagittis.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1496053913638{margin-top: -10px !important;padding-bottom: 92px !important;}\"][vc_column width=\"11/12\" offset=\"vc_col-lg-offset-1\"][vc_column_text][mkdf_dropcaps type=\"normal\" color=\"#d8a64e\" background_color=\"\"]L[/mkdf_dropcaps]orem ipsum dolor. Sit amet non. Libero varius ligula a id nec libero amet non metus ligula risus egestas senectus euismod. In vel tristique. Nulla risus aliquam venenatis ut feugiat. Suspendisse nec ultricies. Pulvinar fusce varius consequat quis ornare. Tellus ridiculus quisque. Ullamcorper pulvinar pede. Sem porta sit nibh vivamus et. Aenean sollicitudin in elit sed id. Justo et netus tempus cras quam. Ac urna pellentesque vitae posuere libero. Con sed suspendisse tristique nisl magna nulla felis placerat quis lacus assumenda auctor id sagittis.[/vc_column_text][/vc_column][/vc_row]','Dropcaps','','publish','closed','closed','','dropcaps','','','2017-05-29 10:25:26','2017-05-29 10:25:26','',447,'http://iacademy.mikado-themes.com/?page_id=475',0,'page','',0),(487,1,'2017-05-29 10:33:18','2017-05-29 10:33:18','[vc_row css=\".vc_custom_1496053939753{margin-top: -4px !important;padding-bottom: 52px !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][vc_column_text]Lorem ipsum dolor. Sit amet non. Libero varius ligula a id nec libero amet non metus ligula risus egestas senectus euismod. In vel tristique. Nulla risus aliquam venenatis ut feugiat. Suspendisse nec ultricies. Pulvinar fusce varius consequat quis ornare. [mkdf_highlight background_color=\"#282727\" color=\"#ffffff\"]Tellus ridiculus quisque. Ullamcorper pulvinar pede.[/mkdf_highlight] Sem porta sit nibh vivamus et. Aenean sollicitudin in elit sed id. Justo et netus tempus cras quam. Ac urna pellentesque vitae posuere libero. Con sed suspendisse tristique nisl magna nulla felis placerat quis lacus assumenda auctor id sagittis.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1496053873950{margin-top: -10px !important;padding-bottom: 52px !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][vc_column_text]Lorem ipsum dolor. Sit amet non. Libero varius ligula a id nec libero amet non metus ligula risus egestas senectus euismod. In vel tristique. Nulla risus aliquam venenatis ut feugiat. Suspendisse nec ultricies. Pulvinar fusce varius consequat quis ornare. Tellus ridiculus quisque. Ullamcorper pulvinar pede. Sem porta sit nibh vivamus et. [mkdf_highlight background_color=\"#d8a64e\" color=\"#ffffff\"]Aenean sollicitudin in elit sed id. Justo et netus tempus cras quam. Ac urna pellentesque vitae posuere libero.[/mkdf_highlight] Con sed suspendisse tristique nisl magna nulla felis placerat quis lacus assumenda auctor id sagittis.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1496053882981{margin-top: -10px !important;padding-bottom: 52px !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][vc_column_text]Lorem ipsum dolor. Sit amet non. Libero varius ligula a id nec libero amet non metus ligula risus egestas senectus euismod. In vel tristique. Nulla risus aliquam venenatis ut feugiat. Suspendisse nec ultricies. Pulvinar fusce varius consequat quis ornare. Tellus ridiculus quisque. Ullamcorper pulvinar pede. Sem porta sit nibh vivamus et. Aenean sollicitudin in elit sed id. Justo et netus tempus cras quam. [mkdf_highlight background_color=\"#ffd740\" color=\"#ffffff\"]Ac urna pellentesque vitae uere liberopos.[/mkdf_highlight] Con sed suspendisse tristique nisl magna nulla felis placerat quis lacus assumenda auctor id sagittis.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1496053913638{margin-top: -10px !important;padding-bottom: 92px !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][vc_column_text]Lorem ipsum dolor. Sit amet non. Libero varius ligula a id nec libero amet non metus ligula risus egestas senectus euismod. In vel tristique. Nulla risus aliquam venenatis ut feugiat. Suspendisse nec ultricies. [mkdf_highlight background_color=\"#ebebeb\" color=\"#d8a64e\"]Pulvinar fusce varius consequat quis ornare.[/mkdf_highlight] Tellus ridiculus quisque. Ullamcorper pulvinar pede. Sem porta sit nibh vivamus et. Aenean sollicitudin in elit sed id. Justo et netus tempus cras quam. Ac urna pellentesque vitae posuere libero. Con sed suspendisse tristique nisl magna nulla felis placerat quis lacus assumenda auctor id sagittis.[/vc_column_text][/vc_column][/vc_row]','Highlights','','publish','closed','closed','','highlights','','','2017-05-29 10:33:18','2017-05-29 10:33:18','',447,'http://iacademy.mikado-themes.com/?page_id=487',0,'page','',0),(495,1,'2017-05-29 10:42:36','2017-05-29 10:42:36','[vc_row css=\".vc_custom_1496058243377{margin-top: -33px !important;padding-bottom: 100px !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][vc_custom_heading text=\"600+\" font_container=\"tag:h2|font_size:80px|text_align:left|line_height:96px\" google_fonts=\"font_family:Source%20Sans%20Pro%3A200%2C200italic%2C300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_custom_heading text=\"GOOGLE FONTS TO CHOOSE FROM\" font_container=\"tag:h2|font_size:42px|text_align:left|line_height:50px\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:400%20regular%3A400%3Anormal\"][vc_separator css=\".vc_custom_1496057885455{padding-top: 3px !important;padding-bottom: 3px !important;}\"][vc_custom_heading text=\"Choose your font from the Google collection\" font_container=\"tag:h2|font_size:26px|text_align:left|color:%2340c4ff|line_height:30px\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:400%20regular%3A400%3Anormal\"][vc_separator css=\".vc_custom_1496058049070{padding-top: 7px !important;}\"][vc_custom_heading text=\"Choose your font from the Google collection\" font_container=\"tag:h2|font_size:32px|text_align:left|color:%23afafaf|line_height:40px\" google_fonts=\"font_family:Habibi%3Aregular|font_style:400%20regular%3A400%3Anormal\"][vc_separator css=\".vc_custom_1496058089543{padding-top: 4px !important;padding-bottom: 7px !important;}\"][vc_custom_heading text=\"CHOOSE YOUR FONT FROM THE GOOGLE COLLECTION\" font_container=\"tag:h2|font_size:24px|text_align:left|color:%23222328|line_height:30px\" google_fonts=\"font_family:Source%20Sans%20Pro%3A200%2C200italic%2C300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C900%2C900italic|font_style:600%20bold%20regular%3A600%3Anormal\"][vc_separator css=\".vc_custom_1496058116847{padding-top: 5px !important;padding-bottom: 6px !important;}\"][vc_custom_heading text=\"CHOOSE YOUR FONT FROM THE GOOGLE COLLECTION\" font_container=\"tag:h2|font_size:18px|text_align:left|color:%23222328|line_height:28px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:400%20regular%3A400%3Anormal\"][vc_separator css=\".vc_custom_1496058154193{padding-top: 5px !important;}\"][/vc_column][/vc_row]','Custom Font','','publish','closed','closed','','custom-font','','','2017-05-29 10:42:36','2017-05-29 10:42:36','',447,'http://iacademy.mikado-themes.com/?page_id=495',0,'page','',0),(503,1,'2017-05-29 11:29:39','2017-05-29 11:29:39','','sidearea-logo','','inherit','open','closed','','sidearea-logo','','','2017-05-29 11:29:39','2017-05-29 11:29:39','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/sidearea-logo.png',0,'attachment','image/png',0),(566,1,'2017-05-29 11:46:43','2017-05-29 11:46:43','[vc_row css=\".vc_custom_1496058711854{margin-top: -18px !important;padding-bottom: 100px !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][vc_custom_heading text=\"Large Title\" font_container=\"tag:h1|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris.[/vc_column_text][vc_separator css=\".vc_custom_1496058779881{padding-top: 40px !important;padding-bottom: 30px !important;}\"][vc_custom_heading text=\"Medium Title\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris.[/vc_column_text][vc_separator css=\".vc_custom_1496058827327{padding-top: 40px !important;padding-bottom: 35px !important;}\"][vc_custom_heading text=\"Small Title\" font_container=\"tag:h5|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris.[/vc_column_text][vc_separator css=\".vc_custom_1496058906918{padding-top: 40px !important;padding-bottom: 62px !important;}\"][vc_custom_heading text=\"Subtitles\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0px 40% 0px 0%\"][vc_column_text]\n<div class=\"mkd-section-subtitle-holder mkd-section-subtitle-left\">\n<p class=\"mkd-section-subtitle\">Lorem ipsum dolor sit amet, nunc mi eget, augue nec integer amet et, luctus eu cras curabitur, ut orci eget.</p>\n\n</div>\n<div class=\"mkd-separator-holder clearfix mkd-separator-center mkd-separator-full-width\"></div>\n[/vc_column_text][/mkdf_elements_holder_item][/mkdf_elements_holder][vc_separator css=\".vc_custom_1496058981391{padding-top: 40px !important;padding-bottom: 30px !important;}\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0px 23% 0px 0%\"][vc_column_text]\n<div class=\"mkd-section-subtitle-holder mkd-section-subtitle-left\">\n<p class=\"mkd-section-subtitle\">Lorem ipsum dolor sit amet, nunc mi eget, augue nec integer amet et, luctus eu cras curabitur, ut orci eget, orci suspendisse autem sem rutrum libero.</p>\n\n</div>\n[/vc_column_text][/mkdf_elements_holder_item][/mkdf_elements_holder][vc_separator css=\".vc_custom_1496058990023{padding-top: 40px !important;padding-bottom: 30px !important;}\"][vc_column_text]\n<div class=\"mkd-section-subtitle-holder mkd-section-subtitle-left\">\n<p class=\"mkd-section-subtitle\">Lorem ipsum dolor sit amet, nunc mi eget, augue nec integer amet et, luctus eu cras curabitur, ut orci eget, orci suspendisse autem sem rutrum libero. Ullamcorper suspendisse suspendisse.</p>\n\n</div>\n[/vc_column_text][vc_separator css=\".vc_custom_1496058996303{padding-top: 40px !important;}\"][/vc_column][/vc_row]','Title & Subtitle','','publish','closed','closed','','title-subtitle','','','2017-05-29 11:46:43','2017-05-29 11:46:43','',447,'http://iacademy.mikado-themes.com/?page_id=566',0,'page','',0),(571,1,'2017-05-29 11:51:19','2017-05-29 11:51:19','','h3-process-img-1','','inherit','open','closed','','h3-process-img-1','','','2017-05-29 11:51:19','2017-05-29 11:51:19','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h3-process-img-1.png',0,'attachment','image/png',0),(572,1,'2017-05-29 11:51:21','2017-05-29 11:51:21','','h3-process-img-2','','inherit','open','closed','','h3-process-img-2','','','2017-05-29 11:51:21','2017-05-29 11:51:21','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h3-process-img-2.png',0,'attachment','image/png',0),(573,1,'2017-05-29 11:51:23','2017-05-29 11:51:23','','h3-process-img-3','','inherit','open','closed','','h3-process-img-3','','','2017-05-29 11:51:23','2017-05-29 11:51:23','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h3-process-img-3.png',0,'attachment','image/png',0),(575,1,'2017-05-29 11:51:25','2017-05-29 11:51:25','','h3-process-img-4','','inherit','open','closed','','h3-process-img-4','','','2017-05-29 11:51:25','2017-05-29 11:51:25','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h3-process-img-4.png',0,'attachment','image/png',0),(590,1,'2017-05-29 12:16:12','2017-05-29 12:16:12','[vc_row css=\".vc_custom_1497015084056{padding-top: 12px !important;padding-bottom: 20px !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][vc_row_inner content_text_aligment=\"center\" css=\".vc_custom_1497014937970{padding-bottom: 43px !important;}\"][vc_column_inner offset=\"vc_col-md-4\"][mkdf_team team_name_tag=\"h4\" team_social_icon_pack=\"font_awesome\" team_social_icon_type=\"normal\" team_social_fa_icon_1=\"fa-twitter\" team_social_icon_1_target=\"_blank\" team_social_fa_icon_2=\"fa-instagram\" team_social_icon_2_target=\"_blank\" team_social_fa_icon_3=\"fa-facebook\" team_social_icon_3_target=\"_blank\" team_image=\"934\" team_name=\"Brenda Harris\" team_position=\"Professor\" team_description=\"Lorem ipsum oin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis \" team_social_icon_1_link=\"http://www.twitter.com\" team_social_icon_2_link=\"http://www.instagram.com\" team_social_icon_3_link=\"http://www.facebook.com\"][vc_empty_space height=\"50px\"][/vc_column_inner][vc_column_inner offset=\"vc_col-md-4\"][mkdf_team team_name_tag=\"h4\" team_social_icon_pack=\"font_awesome\" team_social_icon_type=\"normal\" team_social_fa_icon_1=\"fa-twitter\" team_social_icon_1_target=\"_blank\" team_social_fa_icon_2=\"fa-instagram\" team_social_icon_2_target=\"_blank\" team_social_fa_icon_3=\"fa-facebook\" team_social_icon_3_target=\"_blank\" team_image=\"935\" team_name=\"Shirley Anderson\" team_position=\"Student\" team_description=\"Lorem ipsum oin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis \" team_social_icon_1_link=\"http://www.twitter.com\" team_social_icon_2_link=\"http://www.instagram.com\" team_social_icon_3_link=\"http://www.facebook.com\"][vc_empty_space height=\"50px\"][/vc_column_inner][vc_column_inner offset=\"vc_col-md-4\"][mkdf_team team_name_tag=\"h4\" team_social_icon_pack=\"font_awesome\" team_social_icon_type=\"normal\" team_social_fa_icon_1=\"fa-twitter\" team_social_icon_1_target=\"_blank\" team_social_fa_icon_2=\"fa-instagram\" team_social_icon_2_target=\"_blank\" team_social_fa_icon_3=\"fa-facebook\" team_social_icon_3_target=\"_blank\" team_image=\"936\" team_name=\"Victor Green\" team_position=\"Teacher\" team_description=\"Lorem ipsum oin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis \" team_social_icon_1_link=\"http://www.twitter.com\" team_social_icon_2_link=\"http://www.instagram.com\" team_social_icon_3_link=\"http://www.facebook.com\"][vc_empty_space height=\"50px\"][/vc_column_inner][/vc_row_inner][vc_row_inner content_text_aligment=\"center\"][vc_column_inner offset=\"vc_col-md-4\"][mkdf_team team_name_tag=\"h4\" team_social_icon_pack=\"\" team_image=\"935\" team_name=\"Shirley Anderson\" team_position=\"Student\"][vc_empty_space height=\"50px\"][/vc_column_inner][vc_column_inner offset=\"vc_col-md-4\"][mkdf_team team_name_tag=\"h4\" team_social_icon_pack=\"\" team_image=\"936\" team_name=\"Victor Green\" team_position=\"Teacher\"][vc_empty_space height=\"50px\"][/vc_column_inner][vc_column_inner offset=\"vc_col-md-4\"][mkdf_team team_name_tag=\"h4\" team_social_icon_pack=\"\" team_image=\"934\" team_name=\"Brenda Harris\" team_position=\"Professor\"][vc_empty_space height=\"50px\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Team Shortcode','','publish','closed','closed','','team-shortcode','','','2017-05-29 12:16:12','2017-05-29 12:16:12','',447,'http://iacademy.mikado-themes.com/?page_id=590',0,'page','',0),(598,1,'2017-05-29 12:51:35','2017-05-29 12:51:35','[vc_row content_text_aligment=\"left\" simple_background_color=\"#ffffff\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"8% 0 17%\" background_image=\"619\" item_padding_768_1024=\"2% 0 17%\" item_padding_680_768=\"4% 0 25%\" item_padding_680=\"0% 0 30%\" item_padding_1024_1280=\"5% 0 14%\"][vc_row_inner row_content_width=\"grid\"][vc_column_inner css=\".vc_custom_1496665541535{padding-top: 50px !important;padding-bottom: 80px !important;}\" offset=\"vc_col-lg-6\"][mkdf_section_title type=\"standard\" position=\"left\" title_tag=\"\" disable_break_words=\"yes\" text_tag=\"\" text_font_weight=\"\" title=\"Bring Tutoring Right to Your Home. \" title_break_words=\"3\" text=\" Lorem ipsum gravida nibh vel velit auctor aliquetnean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id eis sed odio sit amet nibh vulputate cursus mauris\" text_font_size=\"17\"][vc_empty_space height=\"30px\"][mkdf_button text=\"Register now\" target=\"_self\" icon_pack=\"\" font_weight=\"\" link=\"http://iacademy.mikado-themes.com/courses/all-courses/\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-6\"][vc_single_image image=\"606\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeIn\"][/vc_column_inner][/vc_row_inner][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1496129033470{padding-top: 90px !important;padding-bottom: 123px !important;}\" simple_background_color=\"#ffffff\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 20% 85px\" item_padding_768_1024=\"0 11% 85px\" item_padding_680_768=\"0 0 85px\" item_padding_680=\"0 0 85px\"][mkdf_section_title type=\"standard\" title_tag=\"h1\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" title=\"Our Services\" text=\"Lorem ipsum gravida nibh vel velit auctor aliquetnean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit\" text_font_size=\"17\"][/mkdf_elements_holder_item][/mkdf_elements_holder][vc_row_inner][vc_column_inner offset=\"vc_col-md-4\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 10%\" item_padding_768_1024=\"0 0\" item_padding_680_768=\"0 0 40px\" item_padding_680=\"0 0 40px\"][mkdf_icon_with_text type=\"icon-top\" icon_pack=\"font_awesome\" fa_icon=\"\" title_tag=\"\" custom_icon=\"428\" title=\"Notification \" text=\"Lorem ipsum oin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis bibendum auctor, nisi elit consequa culis.\" text_padding=\"0 50\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][vc_column_inner offset=\"vc_col-md-4\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 10%\" item_padding_768_1024=\"0 0 \" item_padding_680_768=\" 0 0 40px\" item_padding_680=\"0 0 40px\"][mkdf_icon_with_text type=\"icon-top\" icon_pack=\"font_awesome\" fa_icon=\"\" title_tag=\"\" custom_icon=\"426\" title=\"Certification\" text=\"Lorem ipsum oin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis bibendum auctor, nisi elit consequa culis.\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][vc_column_inner offset=\"vc_col-md-4\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 10%\" item_padding_768_1024=\"0 0 \" item_padding_680_768=\"0 0 40px\" item_padding_680=\"0 0 40px\"][mkdf_icon_with_text type=\"icon-top\" icon_pack=\"font_awesome\" fa_icon=\"\" title_tag=\"\" custom_icon=\"427\" title=\"Campus\" text=\"Lorem ipsum oin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis bibendum auctor, nisi elit consequa culis.\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1496063057879{margin-top: -12px !important;margin-bottom: -12px !important;}\"][vc_column][mkdf_separator type=\"full-width\" border_style=\"\" color=\"#ebebeb\" thickness=\"1\" top_margin=\"0px\" bottom_margin=\"0px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1497008423910{padding-top: 80px !important;padding-bottom: 60px !important;}\" simple_background_color=\"#ffffff\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"two-columns\" switch_to_one_column=\"1024\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 19% 55px 0\" item_padding_768_1024=\"0 0 50px\" item_padding_680_768=\"0 0 40px\" item_padding_680=\"0 0 40px\" item_padding_1024_1280=\"0 6% 55px 0\"][mkdf_section_title type=\"standard\" position=\"left\" title_tag=\"h2\" disable_break_words=\"yes\" text_tag=\"\" text_font_weight=\"\" title=\"The Trusted Name for In-Home Tutoring.\" title_break_words=\"3\" text=\"Lorem ipsum gravida nibh vel velit auctor aliquetnean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id eis sed odio sit amet nibh vulputate cursus a sit amet \" text_font_size=\"17\"][vc_empty_space height=\"20px\"][mkdf_button type=\"simple\" text=\"Learn more\" target=\"_self\" icon_pack=\"font_awesome\" fa_icon=\"fa-angle-right\" font_weight=\"\" link=\"http://iacademy.mikado-themes.com/about/\"][/mkdf_elements_holder_item][mkdf_elements_holder_item item_width=\"1-1\" horizontal_alignment=\"center\" background_image=\"639\" item_padding=\"36% 0 \"][/mkdf_elements_holder_item][/mkdf_elements_holder][vc_empty_space height=\"70px\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"two-columns\" switch_to_one_column=\"1024\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" horizontal_alignment=\"center\" background_image=\"640\" item_padding=\"37% 0\"][/mkdf_elements_holder_item][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 0 0 15% \" item_padding_768_1024=\"0 0 47px\" item_padding_680_768=\"0 0 47px\" item_padding_680=\"60px 0 47px\" item_padding_1024_1280=\"0 0 30px 7% \"][mkdf_section_title type=\"standard\" position=\"left\" title_tag=\"h2\" disable_break_words=\"yes\" text_tag=\"\" text_font_weight=\"\" title=\"Education Through Motivation &amp; Inspiration.\" title_break_words=\"2\" text=\"Lorem ipsum gravida nibh vel velit auctor aliquetnean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id eis sed odio sit amet nibh vulputate cursus a sit amet \" text_font_size=\"17\"][vc_empty_space height=\"20px\"][mkdf_button type=\"simple\" text=\"Learn more\" target=\"_self\" icon_pack=\"font_awesome\" fa_icon=\"fa-angle-right\" font_weight=\"\" link=\"http://iacademy.mikado-themes.com/about/\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row css=\".vc_custom_1496063057879{margin-top: -12px !important;margin-bottom: -12px !important;}\"][vc_column][mkdf_separator type=\"full-width\" border_style=\"\" color=\"#ebebeb\" thickness=\"1\" top_margin=\"0px\" bottom_margin=\"0px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" disable_background_image=\"\" css=\".vc_custom_1497260202032{padding-top: 110px !important;padding-bottom: 125px !important;}\" simple_background_color=\"#ffffff\" simple_background_image=\"676\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 23% 91px\" item_padding_768_1024=\"0 13% 91px\" item_padding_1280_1600=\"0 23% 91px\" item_padding_1024_1280=\"0 18% 91px\" item_padding_680_768=\"0 0 91px\" item_padding_680=\"0 0 91px\"][mkdf_section_title type=\"standard\" title_tag=\"h1\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" title=\"Popular Online Courses\" text=\"Lorem Ipsn gravida nibh vel velit auctor aliquetnean sollicitudin, lorem quis bibendum auci elit consequa ipsutis sem nibh id elit\" text_font_size=\"17\"][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_course_slider number_of_columns=\"3\" space_between_items=\"normal\" image_proportions=\"full\" order_by=\"date\" order=\"ASC\" title_tag=\"h4\" enable_excerpt=\"yes\" enable_loop=\"yes\" enable_autoplay=\"yes\" enable_navigation=\"no\" enable_pagination=\"yes\" pagination_position=\"below-slider\" category=\"tutoring\" excerpt_length=\"74\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" content_text_aligment=\"center\" css=\".vc_custom_1496068794871{padding-top: 130px !important;padding-bottom: 125px !important;}\" parallax_background_image=\"734\"][vc_column][mkdf_testimonials type=\"standard\" skin=\"\" slider_loop=\"yes\" slider_autoplay=\"yes\" slider_navigation=\"no\" slider_pagination=\"yes\" slider_padding=\"no\" number=\"3\" category=\"standard-3\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" disable_background_image=\"\" css=\".vc_custom_1496395734029{padding-top: 125px !important;padding-bottom: 110px !important;}\" simple_background_image=\"1541\"][vc_column offset=\"vc_col-lg-6\"][mkdf_video_button video_link=\"https://vimeo.com/157562616\" video_image=\"828\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-6\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 7% 0 \" item_padding_1024_1280=\"0 5% 0\" item_padding_768_1024=\"0 0 \" item_padding_680_768=\"0 0\" item_padding_680=\"0 0\"][mkdf_section_title type=\"standard\" position=\"left\" title_tag=\"h2\" disable_break_words=\"yes\" text_tag=\"\" text_font_weight=\"\" title=\"Empowering Children to Reach Their Potential.\" title_break_words=\"2\" text=\"Lorem ipsum gravida nibh vel velit auctor aliquetnean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id eis sed odio sit amet nibh vulputate cursus \" text_font_size=\"17\"][vc_row_inner][vc_column_inner width=\"1/2\"][mkdf_counter type=\"mkdf-zero-counter\" icon_pack=\"font_awesome\" fa_icon=\"\" title_tag=\"h4\" title_font_weight=\"\" digit=\"168\" title=\"User Stories\"][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1496666664739{margin-left: -20% !important;}\"][mkdf_counter type=\"mkdf-zero-counter\" icon_pack=\"font_awesome\" fa_icon=\"\" title_tag=\"h4\" title_font_weight=\"\" digit=\"347\" title=\"Scheduled Events\"][/vc_column_inner][/vc_row_inner][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1496665288494{padding-bottom: 90px !important;}\" simple_background_color=\"#ffffff\"][vc_column offset=\"vc_col-lg-6\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 0 30px\" item_padding_1024_1280=\"0 0 \"][mkdf_section_title type=\"standard\" position=\"left\" title_tag=\"h2\" disable_break_words=\"no\" title=\"From Our Blog\"][vc_empty_space height=\"45px\"][mkdf_blog_list type=\"simple\" order_by=\"title\" order=\"ASC\" post_info_image=\"no\" number_of_posts=\"2\" excerpt_length=\"23\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column offset=\"vc_col-lg-6\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"36%\" background_image=\"641\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row]','Home 4','','publish','closed','closed','','home-4','','','2017-05-29 12:51:35','2017-05-29 12:51:35','',0,'http://iacademy.mikado-themes.com/?page_id=598',0,'page','',0),(606,1,'2017-05-29 12:26:48','2017-05-29 12:26:48','','h4-img-1','','inherit','open','closed','','h4-img-1','','','2017-05-29 12:26:48','2017-05-29 12:26:48','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h4-img-1.png',0,'attachment','image/png',0),(607,1,'2017-05-29 12:29:12','2017-05-29 12:29:12','[vc_row css=\".vc_custom_1496928313418{margin-top: -24px !important;padding-bottom: 83px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][mkdf_testimonials type=\"standard\" skin=\"\" slider_loop=\"yes\" slider_autoplay=\"yes\" slider_navigation=\"no\" slider_pagination=\"yes\" slider_padding=\"no\" category=\"standard\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497016106110{padding-top: 12px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\" css=\".vc_custom_1497016194623{background-color: #d8a64e !important;}\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"10px 0 40px\"][mkdf_testimonials type=\"standard\" skin=\"light\" slider_loop=\"yes\" slider_autoplay=\"yes\" slider_navigation=\"no\" slider_pagination=\"yes\" slider_padding=\"no\" category=\"standard\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row]','Testimonials','','publish','closed','closed','','testimonials','','','2017-05-29 12:29:12','2017-05-29 12:29:12','',447,'http://iacademy.mikado-themes.com/?page_id=607',0,'page','',0),(619,1,'2017-05-29 12:35:24','2017-05-29 12:35:24','','h4-background-img-1','','inherit','open','closed','','h4-background-img-1','','','2017-05-29 12:35:24','2017-05-29 12:35:24','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h4-background-img-1.png',0,'attachment','image/png',0),(638,1,'2017-05-29 12:52:28','2017-05-29 12:52:28','[vc_row content_text_aligment=\"left\" css=\".vc_custom_1497433282779{padding-bottom: 80px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\" css=\".vc_custom_1497433065690{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-bottom: 38px !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}\"][mkdf_clients_carousel number_of_visible_items=\"4\" slider_loop=\"yes\" slider_autoplay=\"yes\" slider_navigation=\"no\" slider_pagination=\"no\" items_hover_animation=\"switch-images\"][mkdf_clients_carousel_item target=\"_self\" image=\"216\" image_size=\"full\" link=\"#\" hover_image=\"1555\"][/mkdf_clients_carousel_item][mkdf_clients_carousel_item target=\"_self\" image=\"217\" image_size=\"full\" link=\"#\" hover_image=\"1563\"][/mkdf_clients_carousel_item][mkdf_clients_carousel_item target=\"_self\" image=\"218\" image_size=\"full\" link=\"#\" hover_image=\"1564\"][/mkdf_clients_carousel_item][mkdf_clients_carousel_item target=\"_self\" image=\"219\" image_size=\"full\" link=\"#\" hover_image=\"1560\"][/mkdf_clients_carousel_item][mkdf_clients_carousel_item target=\"_self\" image=\"220\" image_size=\"full\" link=\"#\" hover_image=\"1561\"][/mkdf_clients_carousel_item][/mkdf_clients_carousel][/vc_column][/vc_row][vc_row content_text_aligment=\"left\" css=\".vc_custom_1497433249099{margin-top: -24px !important;padding-bottom: 16px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\" css=\".vc_custom_1497433090564{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-bottom: 38px !important;background-color: #fafafa !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}\"][mkdf_clients_carousel number_of_visible_items=\"4\" slider_loop=\"yes\" slider_autoplay=\"yes\" slider_navigation=\"no\" slider_pagination=\"no\" items_hover_animation=\"switch-images\"][mkdf_clients_carousel_item target=\"_self\" image=\"216\" image_size=\"full\" link=\"#\" hover_image=\"1555\"][/mkdf_clients_carousel_item][mkdf_clients_carousel_item target=\"_self\" image=\"217\" image_size=\"full\" link=\"#\" hover_image=\"1563\"][/mkdf_clients_carousel_item][mkdf_clients_carousel_item target=\"_self\" image=\"218\" image_size=\"full\" link=\"#\" hover_image=\"1564\"][/mkdf_clients_carousel_item][mkdf_clients_carousel_item target=\"_self\" image=\"219\" image_size=\"full\" link=\"#\" hover_image=\"1560\"][/mkdf_clients_carousel_item][mkdf_clients_carousel_item target=\"_self\" image=\"220\" image_size=\"full\" link=\"#\" hover_image=\"1561\"][/mkdf_clients_carousel_item][/mkdf_clients_carousel][/vc_column][/vc_row][vc_row content_text_aligment=\"left\" css=\".vc_custom_1497433238498{padding-top: 40px !important;padding-bottom: 16px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\" css=\".vc_custom_1497433155220{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-bottom: 38px !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}\"][mkdf_clients_carousel number_of_visible_items=\"3\" slider_loop=\"yes\" slider_autoplay=\"yes\" slider_navigation=\"no\" slider_pagination=\"no\" items_hover_animation=\"switch-images\"][mkdf_clients_carousel_item target=\"_self\" image=\"216\" image_size=\"full\" link=\"#\" hover_image=\"1555\"][/mkdf_clients_carousel_item][mkdf_clients_carousel_item target=\"_self\" image=\"217\" image_size=\"full\" link=\"#\" hover_image=\"1563\"][/mkdf_clients_carousel_item][mkdf_clients_carousel_item target=\"_self\" image=\"218\" image_size=\"full\" link=\"#\" hover_image=\"1564\"][/mkdf_clients_carousel_item][mkdf_clients_carousel_item target=\"_self\" image=\"219\" image_size=\"full\" link=\"#\" hover_image=\"1560\"][/mkdf_clients_carousel_item][mkdf_clients_carousel_item target=\"_self\" image=\"220\" image_size=\"full\" link=\"#\" hover_image=\"1561\"][/mkdf_clients_carousel_item][/mkdf_clients_carousel][/vc_column][/vc_row][vc_row content_text_aligment=\"left\" css=\".vc_custom_1497433219347{padding-top: 40px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\" css=\".vc_custom_1497433179978{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-bottom: 38px !important;background-color: #fafafa !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}\"][mkdf_clients_carousel number_of_visible_items=\"3\" slider_loop=\"yes\" slider_autoplay=\"yes\" slider_navigation=\"no\" slider_pagination=\"no\" items_hover_animation=\"switch-images\"][mkdf_clients_carousel_item target=\"_self\" image=\"216\" image_size=\"full\" link=\"#\" hover_image=\"1555\"][/mkdf_clients_carousel_item][mkdf_clients_carousel_item target=\"_self\" image=\"217\" image_size=\"full\" link=\"#\" hover_image=\"1563\"][/mkdf_clients_carousel_item][mkdf_clients_carousel_item target=\"_self\" image=\"218\" image_size=\"full\" link=\"#\" hover_image=\"1564\"][/mkdf_clients_carousel_item][mkdf_clients_carousel_item target=\"_self\" image=\"219\" image_size=\"full\" link=\"#\" hover_image=\"1560\"][/mkdf_clients_carousel_item][mkdf_clients_carousel_item target=\"_self\" image=\"220\" image_size=\"full\" link=\"#\" hover_image=\"1561\"][/mkdf_clients_carousel_item][/mkdf_clients_carousel][/vc_column][/vc_row]','Clients','','publish','closed','closed','','clients','','','2017-05-29 12:52:28','2017-05-29 12:52:28','',447,'http://iacademy.mikado-themes.com/?page_id=638',0,'page','',0),(639,1,'2017-05-29 12:51:00','2017-05-29 12:51:00','','h4-img-2','','inherit','open','closed','','h4-img-2','','','2017-05-29 12:51:00','2017-05-29 12:51:00','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h4-img-2.png',0,'attachment','image/png',0),(640,1,'2017-05-29 12:51:04','2017-05-29 12:51:04','','h4-img-3','','inherit','open','closed','','h4-img-3','','','2017-05-29 12:51:04','2017-05-29 12:51:04','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h4-img-3.png',0,'attachment','image/png',0),(641,1,'2017-05-29 12:51:07','2017-05-29 12:51:07','','h4-img-4','','inherit','open','closed','','h4-img-4','','','2017-05-29 12:51:07','2017-05-29 12:51:07','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h4-img-4.png',0,'attachment','image/png',0),(642,1,'2017-05-29 12:51:10','2017-05-29 12:51:10','','h4-img-5','','inherit','open','closed','','h4-img-5','','','2017-05-29 12:51:10','2017-05-29 12:51:10','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h4-img-5.png',0,'attachment','image/png',0),(653,1,'2017-05-29 12:56:25','2017-05-29 12:56:25','[vc_row content_text_aligment=\"left\" css=\".vc_custom_1496992472794{margin-top: -24px !important;padding-bottom: 35px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][mkdf_blog_list type=\"standard\" number_of_columns=\"2\" order_by=\"date\" order=\"DESC\" post_info_category=\"no\" excerpt_length=\"15\" category=\"business\" number_of_posts=\"2\"][/vc_column][/vc_row][vc_row content_text_aligment=\"left\" css=\".vc_custom_1496913386562{margin-top: -24px !important;padding-bottom: 40px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][mkdf_blog_list type=\"simple\" order_by=\"date\" order=\"ASC\" image_size=\"square\" excerpt_length=\"23\" number_of_posts=\"2\"][/vc_column][/vc_row][vc_row content_text_aligment=\"left\" css=\".vc_custom_1496913406622{margin-top: -24px !important;padding-bottom: 62px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][mkdf_blog_list type=\"simple\" order_by=\"name\" order=\"ASC\" post_info_image=\"no\" number_of_posts=\"2\"][/vc_column][/vc_row]','Blog List Shortcode','','publish','closed','closed','','blog-list-shortcode','','','2017-05-29 12:56:25','2017-05-29 12:56:25','',447,'http://iacademy.mikado-themes.com/?page_id=653',0,'page','',0),(658,1,'2017-05-29 13:02:41','2017-05-29 13:02:41','[vc_row content_text_aligment=\"left\" css=\".vc_custom_1496063146137{margin-top: -24px !important;padding-bottom: 88px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][mkdf_image_gallery type=\"grid\" enable_image_shadow=\"no\" number_of_columns=\"four\" space_between_columns=\"tiny\" images=\"275,273,271,280\" image_size=\"full\"][mkdf_image_gallery type=\"grid\" enable_image_shadow=\"no\" number_of_columns=\"three\" space_between_columns=\"tiny\" images=\"275,273,271\" image_size=\"full\"][mkdf_image_gallery type=\"grid\" enable_image_shadow=\"no\" number_of_columns=\"two\" space_between_columns=\"tiny\" images=\"275,273\" image_size=\"full\"][/vc_column][/vc_row]','Image Gallery','','publish','closed','closed','','image-gallery','','','2017-05-29 13:02:41','2017-05-29 13:02:41','',447,'http://iacademy.mikado-themes.com/?page_id=658',0,'page','',0),(670,1,'2017-05-29 13:07:10','2017-05-29 13:07:10','[vc_row content_text_aligment=\"left\" css=\".vc_custom_1497423878566{margin-top: -24px !important;padding-bottom: 10px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][vc_row_inner content_text_aligment=\"center\"][vc_column_inner width=\"1/4\"][mkdf_counter type=\"mkdf-zero-counter\" icon_pack=\"linear_icons\" linear_icon=\"lnr-apartment\" title_tag=\"h4\" title_font_weight=\"\" custom_icon_size=\"48\" icon_color=\"#b0aec0\" digit=\"168\" digit_font_size=\"48\" title=\"Success Stories\" icon_margin=\"0px 0px 30px 0px\"][vc_empty_space height=\"40px\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mkdf_counter type=\"mkdf-zero-counter\" icon_pack=\"linear_icons\" linear_icon=\"lnr-user\" title_tag=\"h4\" title_font_weight=\"\" custom_icon_size=\"48\" icon_color=\"#b0aec0\" digit=\"275\" digit_font_size=\"48\" title=\"Trusted Tutors\" icon_margin=\"0px 0px 30px 0px\"][vc_empty_space height=\"40px\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mkdf_counter type=\"mkdf-zero-counter\" icon_pack=\"linear_icons\" linear_icon=\"lnr-calendar-full\" title_tag=\"h4\" title_font_weight=\"\" custom_icon_size=\"48\" icon_color=\"#b0aec0\" digit=\"347\" digit_font_size=\"48\" title=\"Events\" icon_margin=\"0px 0px 30px 0px\"][vc_empty_space height=\"40px\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mkdf_counter type=\"mkdf-zero-counter\" icon_pack=\"linear_icons\" linear_icon=\"lnr-laptop-phone\" title_tag=\"h4\" title_font_weight=\"\" custom_icon_size=\"48\" icon_color=\"#b0aec0\" digit=\"1912\" digit_font_size=\"48\" title=\"Courses\" icon_margin=\"0px 0px 30px 0px\"][vc_empty_space height=\"40px\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row content_text_aligment=\"left\" css=\".vc_custom_1497423825226{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][vc_row_inner content_text_aligment=\"center\" simple_background_color=\"#3baee2\"][vc_column_inner width=\"1/4\"][vc_empty_space height=\"30px\"][mkdf_counter type=\"mkdf-zero-counter\" icon_pack=\"linear_icons\" linear_icon=\"lnr-apartment\" title_tag=\"h4\" title_font_weight=\"\" custom_icon_size=\"48\" icon_color=\"#ffffff\" digit=\"168\" digit_font_size=\"48\" title=\"Success Stories\" digit_color=\"#ffffff\" title_color=\"#ffffff\" icon_margin=\"0px 0px 30px 0px\"][vc_empty_space height=\"30px\"][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_empty_space height=\"30px\"][mkdf_counter type=\"mkdf-zero-counter\" icon_pack=\"linear_icons\" linear_icon=\"lnr-user\" title_tag=\"h4\" title_font_weight=\"\" custom_icon_size=\"48\" icon_color=\"#ffffff\" digit=\"275\" digit_font_size=\"48\" title=\"Trusted Tutors\" digit_color=\"#ffffff\" title_color=\"#ffffff\" icon_margin=\"0px 0px 30px 0px\"][vc_empty_space height=\"30px\"][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_empty_space height=\"30px\"][mkdf_counter type=\"mkdf-zero-counter\" icon_pack=\"linear_icons\" linear_icon=\"lnr-calendar-full\" title_tag=\"h4\" title_font_weight=\"\" custom_icon_size=\"48\" icon_color=\"#ffffff\" digit=\"347\" digit_font_size=\"48\" title=\"Events\" digit_color=\"#ffffff\" title_color=\"#ffffff\" icon_margin=\"0px 0px 30px 0px\"][vc_empty_space height=\"30px\"][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_empty_space height=\"30px\"][mkdf_counter type=\"mkdf-zero-counter\" icon_pack=\"linear_icons\" linear_icon=\"lnr-laptop-phone\" title_tag=\"h4\" title_font_weight=\"\" custom_icon_size=\"48\" icon_color=\"#ffffff\" digit=\"1912\" digit_font_size=\"48\" title=\"Courses\" digit_color=\"#ffffff\" title_color=\"#ffffff\" icon_margin=\"0px 0px 30px 0px\"][vc_empty_space height=\"30px\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row content_text_aligment=\"left\" css=\".vc_custom_1497423804637{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][vc_row_inner content_text_aligment=\"center\"][vc_column_inner width=\"1/4\"][mkdf_counter type=\"mkdf-zero-counter\" icon_pack=\"linear_icons\" linear_icon=\"\" title_tag=\"h4\" title_font_weight=\"\" custom_icon_size=\"48\" icon_color=\"#b0aec0\" digit=\"168\" digit_font_size=\"48\" title=\"Success Stories\" icon_margin=\"0px 0px 30px 0px\"][vc_empty_space height=\"40px\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mkdf_counter type=\"mkdf-zero-counter\" icon_pack=\"linear_icons\" linear_icon=\"\" title_tag=\"h4\" title_font_weight=\"\" custom_icon_size=\"48\" icon_color=\"#b0aec0\" digit=\"275\" digit_font_size=\"48\" title=\"Trusted Tutors\" icon_margin=\"0px 0px 30px 0px\"][vc_empty_space height=\"40px\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mkdf_counter type=\"mkdf-zero-counter\" icon_pack=\"linear_icons\" linear_icon=\"\" title_tag=\"h4\" title_font_weight=\"\" custom_icon_size=\"48\" icon_color=\"#b0aec0\" digit=\"347\" digit_font_size=\"48\" title=\"Events\" icon_margin=\"0px 0px 30px 0px\"][vc_empty_space height=\"40px\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mkdf_counter type=\"mkdf-zero-counter\" icon_pack=\"linear_icons\" linear_icon=\"\" title_tag=\"h4\" title_font_weight=\"\" custom_icon_size=\"48\" icon_color=\"#b0aec0\" digit=\"1912\" digit_font_size=\"48\" title=\"Courses\" icon_margin=\"0px 0px 30px 0px\"][vc_empty_space height=\"40px\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row content_text_aligment=\"left\" css=\".vc_custom_1497423779150{margin-top: -24px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\" css=\".vc_custom_1497433776345{padding-top: 17px !important;padding-bottom: 17px !important;}\"][vc_row_inner content_text_aligment=\"center\" simple_background_color=\"#3baee2\"][vc_column_inner width=\"1/4\"][vc_empty_space height=\"35px\"][mkdf_counter type=\"mkdf-zero-counter\" icon_pack=\"linear_icons\" linear_icon=\"\" title_tag=\"h4\" title_font_weight=\"\" custom_icon_size=\"48\" icon_color=\"#ffffff\" digit=\"168\" digit_font_size=\"48\" title=\"Success Stories\" digit_color=\"#ffffff\" title_color=\"#ffffff\" icon_margin=\"0px 0px 30px 0px\"][vc_empty_space height=\"60px\"][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_empty_space height=\"35px\"][mkdf_counter type=\"mkdf-zero-counter\" icon_pack=\"linear_icons\" linear_icon=\"\" title_tag=\"h4\" title_font_weight=\"\" custom_icon_size=\"48\" icon_color=\"#ffffff\" digit=\"275\" digit_font_size=\"48\" title=\"Trusted Tutors\" digit_color=\"#ffffff\" title_color=\"#ffffff\" icon_margin=\"0px 0px 30px 0px\"][vc_empty_space height=\"60px\"][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_empty_space height=\"35px\"][mkdf_counter type=\"mkdf-zero-counter\" icon_pack=\"linear_icons\" linear_icon=\"\" title_tag=\"h4\" title_font_weight=\"\" custom_icon_size=\"48\" icon_color=\"#ffffff\" digit=\"347\" digit_font_size=\"48\" title=\"Events\" digit_color=\"#ffffff\" title_color=\"#ffffff\" icon_margin=\"0px 0px 30px 0px\"][vc_empty_space height=\"60px\"][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_empty_space height=\"35px\"][mkdf_counter type=\"mkdf-zero-counter\" icon_pack=\"linear_icons\" linear_icon=\"\" title_tag=\"h4\" title_font_weight=\"\" custom_icon_size=\"48\" icon_color=\"#ffffff\" digit=\"1912\" digit_font_size=\"48\" title=\"Courses\" digit_color=\"#ffffff\" title_color=\"#ffffff\" icon_margin=\"0px 0px 30px 0px\"][vc_empty_space height=\"60px\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Counters','','publish','closed','closed','','counters','','','2017-05-29 13:07:10','2017-05-29 13:07:10','',447,'http://iacademy.mikado-themes.com/?page_id=670',0,'page','',0),(676,1,'2017-05-29 13:18:23','2017-05-29 13:18:23','','h4-background-img-2','','inherit','open','closed','','h4-background-img-2','','','2017-05-29 13:18:23','2017-05-29 13:18:23','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h4-background-img-2.jpg',0,'attachment','image/jpeg',0),(677,1,'2017-05-29 13:26:04','2017-05-29 13:26:04','Sinh viên Nam, Nữ','Lớp 8: Sinh','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in.','publish','open','closed','','lop-8-sinh','','','2024-10-29 22:52:29','2024-10-29 15:52:29','',0,'http://iacademy.mikado-themes.com/?post_type=course&#038;p=677',13,'course','',0),(681,1,'2017-05-29 13:23:23','2017-05-29 13:23:23','','h4-course-img-1','','inherit','open','closed','','h4-course-img-1','','','2017-05-29 13:23:23','2017-05-29 13:23:23','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h4-course-img-1.png',0,'attachment','image/png',0),(682,1,'2017-05-29 13:23:27','2017-05-29 13:23:27','','h4-course-img-2','','inherit','open','closed','','h4-course-img-2','','','2017-05-29 13:23:27','2017-05-29 13:23:27','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h4-course-img-2.png',0,'attachment','image/png',0),(683,1,'2017-05-29 13:23:29','2017-05-29 13:23:29','','h4-course-img-3','','inherit','open','closed','','h4-course-img-3','','','2017-05-29 13:23:29','2017-05-29 13:23:29','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h4-course-img-3.png',0,'attachment','image/png',0),(684,1,'2017-05-29 13:35:00','2017-05-29 13:35:00','[vc_row content_text_aligment=\"left\" css=\".vc_custom_1496926996228{margin-top: -24px !important;padding-bottom: 38px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][vc_row_inner][vc_column_inner offset=\"vc_col-md-4\"][mkdf_pie_chart title_tag=\"\" percent=\"52\" title=\"Creative Process\"][vc_empty_space height=\"50px\"][/vc_column_inner][vc_column_inner offset=\"vc_col-md-4\"][mkdf_pie_chart title_tag=\"\" percent=\"73\" title=\"Success Stories\"][vc_empty_space height=\"50px\"][/vc_column_inner][vc_column_inner offset=\"vc_col-md-4\"][mkdf_pie_chart title_tag=\"\" percent=\"24\" title=\"Available Courses\"][vc_empty_space height=\"50px\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row content_text_aligment=\"left\" css=\".vc_custom_1496927002654{margin-top: -24px !important;padding-bottom: 38px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][vc_row_inner][vc_column_inner offset=\"vc_col-md-4\"][mkdf_pie_chart title_tag=\"\" title=\"Available Courses\" text=\"Lorem ipsum dolor sit amet, et turpis fermentum\" percent=\"49\" active_color=\"#ffd740\"][vc_empty_space height=\"50px\"][/vc_column_inner][vc_column_inner offset=\"vc_col-md-4\"][mkdf_pie_chart title_tag=\"\" title=\"Creative Process\" text=\"Lorem ipsum dolor sit amet, et turpis fermentum\" percent=\"37\" active_color=\"#ffd740\"][vc_empty_space height=\"50px\"][/vc_column_inner][vc_column_inner offset=\"vc_col-md-4\"][mkdf_pie_chart title_tag=\"\" title=\"Success Stories\" text=\"Lorem ipsum dolor sit amet, et turpis fermentum\" percent=\"77\" active_color=\"#ffd740\"][vc_empty_space height=\"50px\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Pie Charts','','publish','closed','closed','','pie-charts','','','2017-05-29 13:35:00','2017-05-29 13:35:00','',447,'http://iacademy.mikado-themes.com/?page_id=684',0,'page','',0),(692,1,'2017-05-29 13:40:22','2017-05-29 13:40:22','Giáo viên Nam, Nữ , khoa Văn','Lớp 9 Văn','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in.','publish','open','closed','','lop-9-van','','','2024-10-29 22:29:34','2024-10-29 15:29:34','',0,'http://iacademy.mikado-themes.com/?post_type=course&#038;p=692',14,'course','',1),(694,1,'2017-05-29 13:44:59','2017-05-29 13:44:59','Sinh viên Nam, Nữ','Lớp 5: Anh','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in.','publish','open','closed','','lop-5-anh','','','2024-10-29 22:51:35','2024-10-29 15:51:35','',0,'http://iacademy.mikado-themes.com/?post_type=course&#038;p=694',15,'course','',1),(697,1,'2017-05-29 13:57:19','2017-05-29 13:57:19','[vc_row full_height=\"yes\" columns_placement=\"bottom\" content_placement=\"bottom\" row_content_width=\"grid\" parallax_background_image=\"726\" css=\".vc_custom_1496929424084{padding-top: 11% !important;}\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"1024\" alignment_one_column=\"left\"][mkdf_elements_holder_item item_width=\"3-4\" item_padding=\"0 16% 0 0\" item_padding_1280_1600=\"40 10% 0 0\" item_padding_1024_1280=\"40px 0 0px\" item_padding_768_1024=\"0px 19% 0 0 \" item_padding_680_768=\"0px \" item_padding_680=\"0px\"][vc_column_text]\n<h1><span style=\"color: #ffffff; font-size: 52px; line-height: 62px;\">Meeting all your tuition needs.</span></h1>\n[/vc_column_text][vc_column_text]\n\n<span style=\"color: #ffffff; font-size: 17px; line-height: 27px;\">Lorem Ipsn gravida nibh vel velit auctor aliquetnean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id eis sed odio sit amet nibh</span>\n\n[/vc_column_text][/mkdf_elements_holder_item][mkdf_elements_holder_item item_width=\"1-4\" horizontal_alignment=\"right\" item_padding_768_1024=\"28px 0 0\" item_padding_680_768=\"28px 0 0\" item_padding_680=\"28px 0 0\" item_padding_1280_1600=\"15px 0 0\" item_padding_1024_1280=\"15px 0 0\"][mkdf_button text=\"Register Now\" target=\"_self\" icon_pack=\"\" font_weight=\"\" link=\"#\" color=\"#2b2e45\" hover_color=\"#ffffff\" background_color=\"#ffffff\" hover_background_color=\"#d8a64e\" border_color=\"#ffffff\" hover_border_color=\"#d8a64e\"][/mkdf_elements_holder_item][/mkdf_elements_holder][vc_empty_space height=\"95px\"][mkdf_course_table order_by=\"date\" order=\"ASC\" enable_students=\"no\" selected_courses=\"18, 174, 229, 269, 274\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1496222960488{padding-top: 73px !important;padding-bottom: 120px !important;background-color: #fafafa !important;}\" simple_background_color=\"#ffffff\"][vc_column][vc_row_inner row_content_width=\"grid\"][vc_column_inner][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 21%\" item_padding_768_1024=\"0 10%\" item_padding_680_768=\"0px\" item_padding_680=\"0px\"][mkdf_section_title type=\"standard\" position=\"center\" title_tag=\"h1\" disable_break_words=\"yes\" text_tag=\"\" text_font_weight=\"\" title=\"Motivation &amp; Inspiration\" text=\"Lorem ipsum gravida nibh vel velit auctor aliquetnean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit\" text_font_size=\"17\"][/mkdf_elements_holder_item][/mkdf_elements_holder][vc_empty_space height=\"65px\"][mkdf_process number_of_items=\"four\"][mkdf_process_item highlighted=\"no\" image=\"703\" title=\"Sketch\" text=\"Lorem Ipsum proin gravida nibh vel veliauctor \"][mkdf_process_item highlighted=\"no\" image=\"704\" title=\"Creative Process\" text=\"Lorem Ipsum proin gravida nibh vel veliauctor \"][mkdf_process_item highlighted=\"yes\" image=\"705\" title=\"Learning Stage\" text=\"Lorem Ipsum proin gravida nibh vel veliauctor aliquenean sollicitudin\"][mkdf_process_item highlighted=\"no\" image=\"706\" title=\"Final Product\" text=\"Lorem Ipsum proin gravida nibh vel veliauctor \"][/mkdf_process][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1497522060549{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column][mkdf_separator type=\"full-width\" border_style=\"solid\" color=\"#ebebeb\" thickness=\"1\" top_margin=\"0px\" bottom_margin=\"0px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" simple_background_color=\"#ffffff\" css=\".vc_custom_1495784515712{padding-top: 130px !important;padding-bottom: 125px !important;}\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0px 15% 0px 0px\" item_padding_1280_1600=\"0px 15% 0px 0px\" item_padding_1024_1280=\"0px 7% 0px 0px\" item_padding_768_1024=\"0px \" item_padding_680_768=\"0px\" item_padding_680=\"0px\"][mkdf_tabs type=\"vertical\"][mkdf_tabs_item content_title_tag=\"h2\" tab_title=\"What We Do\" tab_image=\"865\" tab_content_title=\"Learning Possibilities\" tab_content_description=\"Lorem Ipsn gravida nibh vel velit auctor aliquetn sollicitudirem quibibendum auci elit cons equat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"We enrich lives through learning.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"Maximizing potential through individual attention.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"The trusted name for specialized training.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"People teach. People learn. This is where they connect.\" title_size=\"17\"][/mkdf_tabs_item][mkdf_tabs_item content_title_tag=\"h2\" tab_title=\"Degree Programme\" tab_image=\"911\" tab_content_title=\"Inspiring\" tab_content_description=\"Lorem Ipsn gravida nibh vel velit auctor aliquetn sollicitudirem quibibendum auci elit cons equat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"Maximizing potential through individual attention.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"We enrich lives through learning.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"People teach. People learn. This is where they connect.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"The trusted name for specialized training.\" title_size=\"17\"][/mkdf_tabs_item][mkdf_tabs_item content_title_tag=\"h2\" tab_title=\"Career Achievements\" tab_image=\"914\" tab_content_title=\"Investing in Knowledge\" tab_content_description=\"Lorem Ipsn gravida nibh vel velit auctor aliquetn sollicitudirem quibibendum auci elit cons equat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"We enrich lives through learning.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"Maximizing potential through individual attention.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"The trusted name for specialized training.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"People teach. People learn. This is where they connect.\" title_size=\"17\"][/mkdf_tabs_item][mkdf_tabs_item content_title_tag=\"h2\" tab_title=\"Personal Managment\" tab_image=\"918\" tab_content_title=\"Secure Your Future\" tab_content_description=\"Lorem Ipsn gravida nibh vel velit auctor aliquetn sollicitudirem quibibendum auci elit cons equat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"Maximizing potential through individual attention.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"We enrich lives through learning.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"People teach. People learn. This is where they connect.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"The trusted name for specialized training.\" title_size=\"17\"][/mkdf_tabs_item][mkdf_tabs_item content_title_tag=\"h2\" tab_title=\"Steps To Success\" tab_image=\"925\" tab_content_title=\"Where Learning Begins\" tab_content_description=\"Lorem Ipsn gravida nibh vel velit auctor aliquetn sollicitudirem quibibendum auci elit cons equat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"We enrich lives through learning.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"Maximizing potential through individual attention.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"The trusted name for specialized training.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"People teach. People learn. This is where they connect.\" title_size=\"17\"][/mkdf_tabs_item][mkdf_tabs_item content_title_tag=\"h2\" tab_title=\"Knowledge Transfer\" tab_image=\"928\" tab_content_title=\"Knowledge is Power\" tab_content_description=\"Lorem Ipsn gravida nibh vel velit auctor aliquetn sollicitudirem quibibendum auci elit cons equat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"Maximizing potential through individual attention.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"We enrich lives through learning.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"People teach. People learn. This is where they connect.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"The trusted name for specialized training.\" title_size=\"17\"][/mkdf_tabs_item][/mkdf_tabs][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row row_content_width=\"grid\" content_text_aligment=\"center\" css=\".vc_custom_1496059316947{padding-top: 130px !important;padding-bottom: 125px !important;}\" parallax_background_image=\"422\"][vc_column][mkdf_testimonials type=\"standard\" skin=\"light\" slider_loop=\"yes\" slider_autoplay=\"yes\" slider_navigation=\"no\" slider_pagination=\"yes\" slider_padding=\"no\" number=\"3\" category=\"standard-2\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" row_content_width=\"grid\" content_text_aligment=\"center\" css=\".vc_custom_1496218324852{padding-top: 110px !important;padding-bottom: 100px !important;}\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" horizontal_alignment=\"center\" item_padding=\"0 25%\" item_padding_1024_1280=\"0 20%\" item_padding_768_1024=\"0 7%\" item_padding_680_768=\"0px\" item_padding_680=\"0px\"][mkdf_section_title type=\"standard\" title_tag=\"h2\" disable_break_words=\"yes\" text_tag=\"\" text_font_weight=\"\" title=\"Empowering children to reach their potential.\" text=\"Lorem Ipsn gravida nibh vel velit auctor aliquetnean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id eis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit\" text_font_size=\"17\"][vc_empty_space height=\"65px\"][vc_row_inner content_text_aligment=\"center\" css=\".vc_custom_1496222895979{padding-bottom: 120px !important;}\"][vc_column_inner width=\"1/3\"][mkdf_counter type=\"mkdf-zero-counter\" icon_pack=\"font_awesome\" fa_icon=\"\" title_tag=\"\" title_font_weight=\"\" digit=\"136\" title=\"Trusted Tutors\"][/vc_column_inner][vc_column_inner width=\"1/3\"][mkdf_counter type=\"mkdf-zero-counter\" icon_pack=\"font_awesome\" fa_icon=\"\" title_tag=\"\" title_font_weight=\"\" digit=\"347\" title=\"Scheduled Events\"][/vc_column_inner][vc_column_inner width=\"1/3\"][mkdf_counter type=\"mkdf-zero-counter\" icon_pack=\"font_awesome\" fa_icon=\"\" title_tag=\"\" title_font_weight=\"\" digit=\"562\" title=\"Success Stories\"][/vc_column_inner][/vc_row_inner][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_course_list number_of_columns=\"\" space_between_items=\"normal\" number_of_items=\"6\" order_by=\"date\" order=\"ASC\" title_tag=\"h4\"][/vc_column][/vc_row][vc_row simple_background_color=\"#ffffff\"][vc_column][mkdf_separator type=\"full-width\" border_style=\"solid\" color=\"#ebebeb\" thickness=\"1\" top_margin=\"0px\" bottom_margin=\"0px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" simple_background_color=\"#ffffff\" css=\".vc_custom_1496222787553{padding-top: 100px !important;}\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" horizontal_alignment=\"center\" item_padding=\"0 21%\" item_padding_1024_1280=\"0 19%\" item_padding_768_1024=\"0 4%\" item_padding_680_768=\"0px\" item_padding_680=\"0px\"][mkdf_section_title type=\"standard\" position=\"center\" title_tag=\"h1\" disable_break_words=\"yes\" text_tag=\"\" text_font_weight=\"\" title=\"The best tutors in town\" text=\"Lorem Ipsn gravida nibh vel velit auctor aliquetnean sollicitudin, lorem quis bibendum auci elit consequat psutis sem nibh id eis sed odio sit amet nibh.\" text_font_size=\"17\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row row_content_width=\"grid\" content_text_aligment=\"center\" css=\".vc_custom_1496222666527{padding-top: 92px !important;padding-bottom: 94px !important;}\" simple_background_color=\"#ffffff\"][vc_column offset=\"vc_col-md-4\"][mkdf_team team_name_tag=\"h4\" team_social_icon_pack=\"font_awesome\" team_social_icon_type=\"normal\" team_social_fa_icon_1=\"fa-twitter\" team_social_icon_1_target=\"_blank\" team_social_fa_icon_2=\"fa-instagram\" team_social_icon_2_target=\"_blank\" team_social_fa_icon_3=\"fa-facebook\" team_social_icon_3_target=\"_blank\" team_image=\"934\" team_name=\"Brenda Harris\" team_position=\"Teacher\" team_description=\"Lorem ipsum oin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis bibendum auctor, nisi elit consequa\" team_social_icon_1_link=\"http://www.twitter.com\" team_social_icon_2_link=\"http://www.instagram.com\" team_social_icon_3_link=\"http://www.facebook.com\"][vc_empty_space height=\"30px\"][/vc_column][vc_column offset=\"vc_col-md-4\"][mkdf_team team_name_tag=\"h4\" team_social_icon_pack=\"font_awesome\" team_social_icon_type=\"normal\" team_social_fa_icon_1=\"fa-twitter\" team_social_icon_1_target=\"_blank\" team_social_fa_icon_2=\"fa-instagram\" team_social_icon_2_target=\"_blank\" team_social_fa_icon_3=\"fa-facebook\" team_social_icon_3_target=\"_blank\" team_image=\"935\" team_name=\"Shirley Anderson\" team_position=\"Teacher\" team_description=\"Lorem ipsum oin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis bibendum auctor, nisi elit consequa\" team_social_icon_1_link=\"http://www.twitter.com\" team_social_icon_2_link=\"http://www.instagram.com\" team_social_icon_3_link=\"http://www.facebook.com\"][vc_empty_space height=\"30px\"][/vc_column][vc_column offset=\"vc_col-md-4\"][mkdf_team team_name_tag=\"h4\" team_social_icon_pack=\"font_awesome\" team_social_icon_type=\"normal\" team_social_fa_icon_1=\"fa-twitter\" team_social_icon_1_target=\"_blank\" team_social_fa_icon_2=\"fa-instagram\" team_social_icon_2_target=\"_blank\" team_social_fa_icon_3=\"fa-facebook\" team_social_icon_3_target=\"_blank\" team_image=\"936\" team_name=\"Victor Green\" team_position=\"Teacher\" team_description=\"Lorem ipsum oin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis bibendum auctor, nisi elit consequa\" team_social_icon_1_link=\"http://www.twitter.com\" team_social_icon_2_link=\"http://www.instagram.com\" team_social_icon_3_link=\"http://www.facebook.com\"][vc_empty_space height=\"30px\"][/vc_column][/vc_row]','Home 5','','publish','closed','closed','','home-5','','','2017-05-29 13:57:19','2017-05-29 13:57:19','',0,'http://iacademy.mikado-themes.com/?page_id=697',0,'page','',0),(703,1,'2017-05-29 13:50:49','2017-05-29 13:50:49','','h12-process-img-1','','inherit','open','closed','','h12-process-img-1','','','2017-05-29 13:50:49','2017-05-29 13:50:49','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h12-process-img-1.png',0,'attachment','image/png',0),(704,1,'2017-05-29 13:50:51','2017-05-29 13:50:51','','h12-process-img-2','','inherit','open','closed','','h12-process-img-2','','','2017-05-29 13:50:51','2017-05-29 13:50:51','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h12-process-img-2.png',0,'attachment','image/png',0),(705,1,'2017-05-29 13:50:53','2017-05-29 13:50:53','','h12-process-img-3','','inherit','open','closed','','h12-process-img-3','','','2017-05-29 13:50:53','2017-05-29 13:50:53','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h12-process-img-3.png',0,'attachment','image/png',0),(706,1,'2017-05-29 13:50:55','2017-05-29 13:50:55','','h12-process-img-4','','inherit','open','closed','','h12-process-img-4','','','2017-05-29 13:50:55','2017-05-29 13:50:55','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h12-process-img-4.png',0,'attachment','image/png',0),(726,1,'2017-05-29 14:03:44','2017-05-29 14:03:44','','h12-parallax-1','','inherit','open','closed','','h12-parallax-1','','','2017-05-29 14:03:44','2017-05-29 14:03:44','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h12-parallax-1.jpg',0,'attachment','image/jpeg',0),(727,1,'2017-05-29 14:06:06','2017-05-29 14:06:06','[vc_row content_text_aligment=\"left\" css=\".vc_custom_1496067734798{margin-top: -24px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][mkdf_google_map address1=\"3 South Sherman Street Astoria, NY 11106\" pin=\"731\" map_height=\"400px\"][/vc_column][/vc_row][vc_row content_text_aligment=\"left\" css=\".vc_custom_1496067792715{margin-top: -5px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][vc_row_inner][vc_column_inner width=\"1/2\"][mkdf_google_map address1=\"15 St Margarets Lane New York, NY 10033\" pin=\"731\" map_height=\"400px\"][/vc_column_inner][vc_column_inner width=\"1/2\"][mkdf_google_map address1=\"812 Thatcher Court Yonkers, NY 10701\" pin=\"731\" map_height=\"400px\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Google Maps','','publish','closed','closed','','google-maps','','','2017-05-29 14:06:06','2017-05-29 14:06:06','',447,'http://iacademy.mikado-themes.com/?page_id=727',0,'page','',0),(731,1,'2017-05-29 14:07:56','2017-05-29 14:07:56','','pin-img','','inherit','open','closed','','pin-img','','','2017-05-29 14:07:56','2017-05-29 14:07:56','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/pin-img.png',0,'attachment','image/png',0),(734,1,'2017-05-29 14:09:51','2017-05-29 14:09:51','','h4-parallax-img-1','','inherit','open','closed','','h4-parallax-img-1','','','2017-05-29 14:09:51','2017-05-29 14:09:51','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h4-parallax-img-1.png',0,'attachment','image/png',0),(741,1,'2017-05-29 14:25:21','2017-05-29 14:25:21','[vc_row][vc_column][vc_column_text css=\".vc_custom_1497863779630{margin-top: -12px !important;padding-bottom: 27px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_column_text]\n<blockquote>We teach, and encourage a love of learning, collaboration, and compassion. Everyone a learner everyday.</blockquote>\n[/vc_column_text][vc_column_text css=\".vc_custom_1497863787762{padding-top: 25px !important;padding-bottom: 53px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_single_image image=\"770\" img_size=\"full\"][vc_column_text css=\".vc_custom_1497863796900{padding-top: 38px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][/vc_column][/vc_row]','Learning, friendship and fun for everyone.','Donec vitae sapien ut libero venenatis faucibus. Nullam quis ante. Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh. Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus. Phasellus viverra nulla ut metus varius laoreet. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.','publish','open','open','','learning-friendship-and-fun-for-everyone','','','2017-05-29 14:25:21','2017-05-29 14:25:21','',0,'http://iacademy.mikado-themes.com/?p=741',0,'post','',3),(770,1,'2017-05-29 14:28:54','2017-05-29 14:28:54','','blog-single-content-img','','inherit','open','closed','','blog-single-content-img','','','2017-05-29 14:28:54','2017-05-29 14:28:54','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/blog-single-content-img.jpg',0,'attachment','image/jpeg',0),(776,1,'2017-05-29 14:35:44','2017-05-29 14:35:44','[vc_row content_text_aligment=\"left\" css=\".vc_custom_1496068885573{margin-top: -40px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][mkdf_process number_of_items=\"three\"][mkdf_process_item highlighted=\"yes\" image=\"778\" title=\"Scetch\" text=\"\"][mkdf_process_item highlighted=\"no\" image=\"779\" title=\"Process\" text=\"\"][mkdf_process_item highlighted=\"no\" image=\"781\" title=\"Learning\" text=\"\"][/mkdf_process][/vc_column][/vc_row][vc_row content_text_aligment=\"left\" css=\".vc_custom_1496068698495{margin-top: -80px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][mkdf_process number_of_items=\"three\"][mkdf_process_item highlighted=\"no\" image=\"778\" title=\"Scetch\" text=\"\"][mkdf_process_item highlighted=\"yes\" image=\"779\" title=\"Process\" text=\"\"][mkdf_process_item highlighted=\"no\" image=\"781\" title=\"Learning\" text=\"\"][/mkdf_process][/vc_column][/vc_row][vc_row content_text_aligment=\"left\" css=\".vc_custom_1496068918574{margin-top: -80px !important;padding-bottom: 76px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][mkdf_process number_of_items=\"three\"][mkdf_process_item highlighted=\"no\" image=\"778\" title=\"Scetch\" text=\"\"][mkdf_process_item highlighted=\"no\" image=\"779\" title=\"Process\" text=\"\"][mkdf_process_item highlighted=\"yes\" image=\"781\" title=\"Learning\" text=\"\"][/mkdf_process][/vc_column][/vc_row]','Process','','publish','closed','closed','','process','','','2017-05-29 14:35:44','2017-05-29 14:35:44','',447,'http://iacademy.mikado-themes.com/?page_id=776',0,'page','',0),(778,1,'2017-05-29 14:33:46','2017-05-29 14:33:46','','process-img-1','','inherit','open','closed','','process-img-1','','','2017-05-29 14:33:46','2017-05-29 14:33:46','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/process-img-1.png',0,'attachment','image/png',0),(779,1,'2017-05-29 14:34:12','2017-05-29 14:34:12','','process-img-2','','inherit','open','closed','','process-img-2','','','2017-05-29 14:34:12','2017-05-29 14:34:12','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/process-img-2.png',0,'attachment','image/png',0),(781,1,'2017-05-29 14:34:49','2017-05-29 14:34:49','','process-img-3','','inherit','open','closed','','process-img-3','','','2017-05-29 14:34:49','2017-05-29 14:34:49','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/process-img-3.png',0,'attachment','image/png',0),(783,1,'2017-05-29 14:35:32','2017-05-29 14:35:32','','process-img-4','','inherit','open','closed','','process-img-4','','','2017-05-29 14:35:32','2017-05-29 14:35:32','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/process-img-4.png',0,'attachment','image/png',0),(828,1,'2017-05-29 14:48:15','2017-05-29 14:48:15','','h4-video-background-img-1','','inherit','open','closed','','h4-video-background-img-1','','','2017-05-29 14:48:15','2017-05-29 14:48:15','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h4-video-background-img-1.png',0,'attachment','image/png',0),(865,1,'2017-05-30 07:51:50','2017-05-30 07:51:50','','h12-tabs-icon-1','','inherit','open','closed','','h12-tabs-icon-1','','','2017-05-30 07:51:50','2017-05-30 07:51:50','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h12-tabs-icon-1.png',0,'attachment','image/png',0),(881,1,'2017-05-30 08:16:53','2017-05-30 08:16:53','[vc_row content_text_aligment=\"left\" css=\".vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][vc_row_inner css=\".vc_custom_1496132755772{padding-bottom: 70px !important;}\"][vc_column_inner][mkdf_pricing_table columns=\"mkdf-three-columns\" space_between_columns=\"normal\"][mkdf_pricing_table_item active=\"no\" title=\"Basic Plan\" button_text=\"Purchase\" button_type=\"solid\" price=\"33\" price_period=\"Per Month\" link=\"#\"]\n<ul>\n 	<li>Marketing Course</li>\n 	<li>Web Design</li>\n 	<li>Basic Photography</li>\n</ul>\n[/mkdf_pricing_table_item][mkdf_pricing_table_item active=\"yes\" title=\"Professional\" button_text=\"Purchase\" button_type=\"solid\" price=\"59\" price_period=\"Per Month\" link=\"#\"]\n<ul>\n 	<li>Basic Marketing</li>\n 	<li>Business English</li>\n 	<li>Financial Modeling</li>\n</ul>\n[/mkdf_pricing_table_item][mkdf_pricing_table_item active=\"no\" title=\"Exclusive\" button_text=\"Purchase\" button_type=\"solid\" price=\"33\" price_period=\"Per Month\" link=\"#\"]\n<ul>\n 	<li>Programming</li>\n 	<li>Web Design</li>\n 	<li>Basic Marketing</li>\n</ul>\n[/mkdf_pricing_table_item][/mkdf_pricing_table][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][mkdf_pricing_table columns=\"mkdf-two-columns\" space_between_columns=\"normal\"][mkdf_pricing_table_item active=\"no\" title=\"Basic Plan\" button_text=\"Purchase\" button_type=\"solid\" price=\"33\" price_period=\"Per Month\" link=\"#\"]\n<ul>\n 	<li>Basic Marketing Course</li>\n 	<li>Business English</li>\n 	<li>Learn Design Principles</li>\n 	<li>Financial Modeling</li>\n</ul>\n[/mkdf_pricing_table_item][mkdf_pricing_table_item active=\"yes\" title=\"Professional\" button_text=\"Purchase\" button_type=\"solid\" price=\"70\" price_period=\"Per Month\" link=\"#\"]\n<ul>\n 	<li>Basic Marketing Course</li>\n 	<li>Learn Design Principles</li>\n 	<li>Financial Modeling</li>\n 	<li>Basic Photography Course</li>\n</ul>\n[/mkdf_pricing_table_item][/mkdf_pricing_table][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Pricing Tables','','publish','closed','closed','','pricing-tables','','','2017-05-30 08:16:53','2017-05-30 08:16:53','',447,'http://iacademy.mikado-themes.com/?page_id=881',0,'page','',0),(896,1,'2017-05-30 09:34:27','2017-05-30 09:34:27','[vc_row row_content_width=\"grid\" simple_background_color=\"#ffffff\" css=\".vc_custom_1496215582959{padding-top: 60px !important;padding-bottom: 35px !important;}\"][vc_column][mkdf_course_category_list number_of_columns=\"six-columns\" target=\"_self\" category_items=\"%5B%7B%22title%22%3A%22%20Languages%22%2C%22link%22%3A%22http%3A%2F%2Fiacademy.mikado-themes.com%2Fcourse-category%2Flanguages%2F%22%2C%22image%22%3A%22898%22%7D%2C%7B%22title%22%3A%22%20Software%22%2C%22link%22%3A%22http%3A%2F%2Fiacademy.mikado-themes.com%2Fcourse-category%2Fprogramming%2F%22%2C%22image%22%3A%22899%22%7D%2C%7B%22title%22%3A%22%20Business%22%2C%22link%22%3A%22http%3A%2F%2Fiacademy.mikado-themes.com%2Fcourse-category%2Fbusiness%2F%22%2C%22image%22%3A%22900%22%7D%2C%7B%22title%22%3A%22%20Chemistry%22%2C%22link%22%3A%22http%3A%2F%2Fiacademy.mikado-themes.com%2Fcourses%2Fstandard-list%2F%22%2C%22image%22%3A%22901%22%7D%2C%7B%22title%22%3A%22Science%22%2C%22link%22%3A%22http%3A%2F%2Fiacademy.mikado-themes.com%2Fcourses%2Fall-courses%2F%22%2C%22image%22%3A%22902%22%7D%2C%7B%22title%22%3A%22DIY%26Craft%22%2C%22link%22%3A%22http%3A%2F%2Fiacademy.mikado-themes.com%2Fcourse-category%2Ftutoring%2F%22%2C%22image%22%3A%22903%22%7D%5D\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" simple_background_color=\"#ffffff\"][vc_column offset=\"vc_col-lg-5\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"112px 0 50px\" item_padding_1024_1280=\"46px 0 50px\" item_padding_768_1024=\"75px 0 50px\" item_padding_680_768=\"75px 0 50px\" item_padding_680=\"75px 0 50px\"][mkdf_section_title type=\"standard\" position=\"left\" title_tag=\"h2\" disable_break_words=\"yes\" text_tag=\"\" text_font_weight=\"\" title=\"The Trusted Name for In-Home Tutoring.\" title_break_words=\"3\" text=\"Lorem ipsum gravida nibh vel velit auctor aliquetnean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id eis sed odio sit amet nibh vulputate cursus mauris.\" text_font_size=\"17\"][vc_empty_space height=\"20px\"][mkdf_button type=\"simple\" text=\"LEARN MORE\" target=\"_self\" icon_pack=\"font_awesome\" fa_icon=\"fa-angle-right\" font_weight=\"\" link=\"http://iacademy.mikado-themes.com/about/\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column offset=\"vc_col-lg-7\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" vertical_alignment=\"bottom\" item_padding_1024_1280=\"0 0 \"][vc_single_image image=\"1225\" img_size=\"full\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row simple_background_color=\"#ffffff\"][vc_column][mkdf_separator type=\"full-width\" border_style=\"solid\" color=\"#ebebeb\" thickness=\"1\" top_margin=\"0px\" bottom_margin=\"0px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" simple_background_color=\"#ffffff\" css=\".vc_custom_1496138769068{padding-top: 100px !important;}\"][vc_column offset=\"vc_col-lg-6\"][vc_single_image image=\"1235\" img_size=\"full\" alignment=\"center\"][/vc_column][vc_column offset=\"vc_col-lg-6\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"40px 7% 0 \" item_padding_1024_1280=\"0px 3% 0\" item_padding_768_1024=\"90px 7% 86px\" item_padding_680_768=\"90px 7% 86px\" item_padding_680=\"90px 7% 86px\"][mkdf_section_title type=\"standard\" position=\"left\" title_tag=\"h2\" disable_break_words=\"yes\" text_tag=\"\" text_font_weight=\"\" title=\"Empowering Children to Reach Their Potential.\" title_break_words=\"2\" text=\"Lorem ipsum gravida nibh vel velit auctor aliquetnean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id eis sed odio sit amet nibh vulputate cursus mauris.\" text_font_size=\"17\"][vc_empty_space height=\"10px\"][vc_row_inner][vc_column_inner width=\"1/2\"][mkdf_counter type=\"mkdf-zero-counter\" icon_pack=\"font_awesome\" fa_icon=\"\" title_tag=\"h4\" title_font_weight=\"\" digit=\"168\" digit_font_size=\"48\" title=\"User Stories\"][vc_empty_space height=\"30px\"][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1496216729923{margin-left: -23% !important;}\"][mkdf_counter type=\"mkdf-zero-counter\" icon_pack=\"font_awesome\" fa_icon=\"\" title_tag=\"h4\" title_font_weight=\"\" digit=\"347\" digit_font_size=\"48\" title=\"Events\"][vc_empty_space height=\"30px\"][/vc_column_inner][/vc_row_inner][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1496674302310{padding-top: 130px !important;padding-bottom: 124px !important;}\" parallax_background_image=\"921\"][vc_column][mkdf_testimonials type=\"standard\" skin=\"light\" slider_loop=\"yes\" slider_autoplay=\"yes\" slider_navigation=\"no\" slider_pagination=\"yes\" slider_padding=\"no\" number=\"3\" category=\"standard-3\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" simple_background_color=\"#ffffff\" css=\".vc_custom_1495784515712{padding-top: 130px !important;padding-bottom: 125px !important;}\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0px 15% 0px 0px \" item_padding_1280_1600=\"0px 15% 0px 0px \" item_padding_1024_1280=\"0px 7% 0px 0px \" item_padding_768_1024=\"0px\" item_padding_680_768=\"0px\" item_padding_680=\"0px\"][mkdf_tabs type=\"vertical\"][mkdf_tabs_item content_title_tag=\"h2\" tab_title=\"What We Do\" tab_image=\"865\" tab_content_title=\"Learning Possibilities\" tab_content_description=\"Lorem ipsum gravida nibh vel velit auctor aliquetn sollicitudirem quibibendum auci elit cons equat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"We enrich lives through learning.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"Maximizing potential through individual attention.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"The trusted name for specialized training.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"People teach. People learn. This is where they connect.\" title_size=\"17\"][/mkdf_tabs_item][mkdf_tabs_item content_title_tag=\"h2\" tab_title=\"Degree Programme\" tab_image=\"911\" tab_content_title=\"Inspiring Minds\" tab_content_description=\"Lorem Ipsn gravida nibh vel velit auctor aliquetn sollicitudirem quibibendum auci elit cons equat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"Maximizing potential through individual attention.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"We enrich lives through learning.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"People teach. People learn. This is where they connect.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"The trusted name for specialized training.\" title_size=\"17\"][/mkdf_tabs_item][mkdf_tabs_item content_title_tag=\"h2\" tab_title=\"Career Achievements\" tab_image=\"914\" tab_content_title=\"Investing in Knowledge\" tab_content_description=\"Lorem Ipsn gravida nibh vel velit auctor aliquetn sollicitudirem quibibendum auci elit cons equat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"We enrich lives through learning.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"Maximizing potential through individual attention.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"The trusted name for specialized training.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"People teach. People learn. This is where they connect.\" title_size=\"17\"][/mkdf_tabs_item][mkdf_tabs_item content_title_tag=\"h2\" tab_title=\"Personal Managment\" tab_image=\"918\" tab_content_title=\"Secure Your Future\" tab_content_description=\"Lorem Ipsn gravida nibh vel velit auctor aliquetn sollicitudirem quibibendum auci elit cons equat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"Maximizing potential through individual attention.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"We enrich lives through learning.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"People teach. People learn. This is where they connect.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"The trusted name for specialized training.\" title_size=\"17\"][/mkdf_tabs_item][mkdf_tabs_item content_title_tag=\"h2\" tab_title=\"Steps To Success\" tab_image=\"925\" tab_content_title=\"Where Learning Begins \" tab_content_description=\"Lorem Ipsn gravida nibh vel velit auctor aliquetn sollicitudirem quibibendum auci elit cons equat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"We enrich lives through learning.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"Maximizing potential through individual attention.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"The trusted name for specialized training.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"People teach. People learn. This is where they connect.\" title_size=\"17\"][/mkdf_tabs_item][mkdf_tabs_item content_title_tag=\"h2\" tab_title=\"Knowledge Transfer\" tab_image=\"928\" tab_content_title=\"Knowledge is Power\" tab_content_description=\"Lorem Ipsn gravida nibh vel velit auctor aliquetn sollicitudirem quibibendum auci elit cons equat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"Maximizing potential through individual attention.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"We enrich lives through learning.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"People teach. People learn. This is where they connect.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"The trusted name for specialized training.\" title_size=\"17\"][/mkdf_tabs_item][/mkdf_tabs][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row simple_background_color=\"#ffffff\"][vc_column][mkdf_separator type=\"full-width\" border_style=\"solid\" color=\"#ebebeb\" thickness=\"1\" top_margin=\"0px\" bottom_margin=\"0px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1496134340529{padding-top: 110px !important;padding-bottom: 125px !important;}\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 20% 92px\" item_padding_680_768=\"0 0 92px\" item_padding_680=\"0 0 92px\" item_padding_768_1024=\"0 10% 92px\"][mkdf_section_title type=\"standard\" title_tag=\"h1\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" title=\"Popular Online Courses\" text=\"Lorem ipsum gravida nibh vel velit auctor aliquetnean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit\" text_font_size=\"17\"][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_course_slider number_of_columns=\"3\" space_between_items=\"normal\" image_proportions=\"full\" order_by=\"date\" order=\"ASC\" title_tag=\"h4\" enable_excerpt=\"yes\" enable_loop=\"yes\" enable_autoplay=\"yes\" enable_navigation=\"no\" enable_pagination=\"yes\" pagination_position=\"below-slider\" excerpt_length=\"113\"][/vc_column][/vc_row][vc_row simple_background_color=\"#ffffff\"][vc_column][mkdf_separator type=\"full-width\" border_style=\"solid\" color=\"#ebebeb\" thickness=\"1\" top_margin=\"0px\" bottom_margin=\"0px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" content_text_aligment=\"center\" css=\".vc_custom_1496221442667{padding-top: 110px !important;padding-bottom: 94px !important;}\" simple_background_color=\"#ffffff\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 20% 90px\" item_padding_680_768=\"0 0 90px\" item_padding_680=\"0 0 90px\" item_padding_768_1024=\"0 10% 90px\"][mkdf_section_title type=\"standard\" title_tag=\"h1\" disable_break_words=\"yes\" text_tag=\"\" text_font_weight=\"\" title=\"The Best Tutors in Town\" text=\"Lorem ipsum gravida nibh vel velit auctor aliquetnean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit\" text_font_size=\"17\"][/mkdf_elements_holder_item][/mkdf_elements_holder][vc_row_inner][vc_column_inner offset=\"vc_col-md-4\"][mkdf_team team_name_tag=\"h4\" team_social_icon_pack=\"font_awesome\" team_social_icon_type=\"normal\" team_social_fa_icon_1=\"fa-twitter\" team_social_icon_1_target=\"_blank\" team_social_fa_icon_2=\"fa-instagram\" team_social_icon_2_target=\"_blank\" team_social_fa_icon_3=\"fa-facebook\" team_social_icon_3_target=\"_blank\" team_image=\"934\" team_name=\"Brenda Harris\" team_position=\"Teacher\" team_description=\"Lorem ipsum oin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis bibendum auctor, nisi elit consequa\" team_social_icon_1_link=\"http://www.twitter.com\" team_social_icon_2_link=\"http://www.instagram.com\" team_social_icon_3_link=\"http://www.facebook.com\"][vc_empty_space height=\"30px\"][/vc_column_inner][vc_column_inner offset=\"vc_col-md-4\"][mkdf_team team_name_tag=\"h4\" team_social_icon_pack=\"font_awesome\" team_social_icon_type=\"normal\" team_social_fa_icon_1=\"fa-twitter\" team_social_icon_1_target=\"_blank\" team_social_fa_icon_2=\"fa-instagram\" team_social_icon_2_target=\"_blank\" team_social_fa_icon_3=\"fa-facebook\" team_social_icon_3_target=\"_blank\" team_image=\"935\" team_name=\"Lisa Griffin\" team_position=\"Teacher\" team_description=\"Lorem ipsum oin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis bibendum auctor, nisi elit consequa\" team_social_icon_1_link=\"http://www.twitter.com\" team_social_icon_2_link=\"http://www.instagram.com\" team_social_icon_3_link=\"http://www.facebook.com\"][vc_empty_space height=\"30px\"][/vc_column_inner][vc_column_inner offset=\"vc_col-md-4\"][mkdf_team team_name_tag=\"h4\" team_social_icon_pack=\"font_awesome\" team_social_icon_type=\"normal\" team_social_fa_icon_1=\"fa-twitter\" team_social_icon_1_target=\"_blank\" team_social_fa_icon_2=\"fa-instagram\" team_social_icon_2_target=\"_blank\" team_social_fa_icon_3=\"fa-facebook\" team_social_icon_3_target=\"_blank\" team_image=\"936\" team_name=\"Victor Green\" team_position=\"Teacher\" team_description=\"Lorem ipsum oin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis bibendum auctor, nisi elit consequa\" team_social_icon_1_link=\"http://www.twitter.com\" team_social_icon_2_link=\"http://www.instagram.com\" team_social_icon_3_link=\"http://www.facebook.com\"][vc_empty_space height=\"30px\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row simple_background_color=\"#ffffff\"][vc_column][mkdf_separator type=\"full-width\" border_style=\"solid\" color=\"#ebebeb\" thickness=\"1\" top_margin=\"0px\" bottom_margin=\"0px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1496328924185{padding-top: 110px !important;padding-bottom: 130px !important;}\"][vc_column][mkdf_section_title type=\"standard\" title_tag=\"h1\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" title=\"Pricing Plans\" text=\"Lorem ipsum gravida nibh vel velit auctor aliquetnean sollicitudin, lorem quis bibendum auci \" text_font_size=\"17\"][vc_empty_space height=\"90px\"][mkdf_comparison_pricing_table columns=\"mkdf-three-columns\" title=\"Save up to 40%\nby paying weekly\" features=\"Number of Courses,Time,Web Designing ,Human-Centered Design,Basic Marketing,Python for Everybody,Android Developer,Business English\" border_top_color=\"\"][mkdf_comparison_pricing_table_item title=\"Standard\" show_button=\"yes\" border_top_color=\"\" btn_background_color=\"\" btn_border_color=\"\" btn_text_color=\"\" price=\"12\" button_text=\"GET IT NOW\" link=\"#\" image=\"1027\" currency=\"$\"]\n<ul>\n 	<li>2</li>\n 	<li>15 Days</li>\n 	<li>[mkdf_icon icon_pack=\"font_elegant\" fe_icon=\"icon_check\" size=\"mkdf-icon-tiny\" custom_size=\"20\" type=\"normal\" icon_animation=\"\" icon_color=\"#d8a64e\" margin=\"0 0 0 0\"]</li>\n 	<li>[mkdf_icon icon_pack=\"font_elegant\" fe_icon=\"icon_check\" size=\"mkdf-icon-tiny\" custom_size=\"20\" type=\"normal\" icon_animation=\"\" icon_color=\"#d8a64e\" margin=\"0 0 0 0\"]</li>\n 	<li>[mkdf_icon icon_pack=\"font_elegant\" fe_icon=\"icon_close\" size=\"mkdf-icon-tiny\" custom_size=\"20\" type=\"normal\" icon_animation=\"\" icon_color=\"#898989\" margin=\"0 0 0 0\"]</li>\n 	<li>[mkdf_icon icon_pack=\"font_elegant\" fe_icon=\"icon_close\" size=\"mkdf-icon-tiny\" custom_size=\"20\" type=\"normal\" icon_animation=\"\" icon_color=\"#898989\" margin=\"0 0 0 0\"]</li>\n 	<li>[mkdf_icon icon_pack=\"font_elegant\" fe_icon=\"icon_close\" size=\"mkdf-icon-tiny\" custom_size=\"20\" type=\"normal\" icon_animation=\"\" icon_color=\"#898989\" margin=\"0 0 0 0\"]</li>\n 	<li>[mkdf_icon icon_pack=\"font_elegant\" fe_icon=\"icon_close\" size=\"mkdf-icon-tiny\" custom_size=\"20\" type=\"normal\" icon_animation=\"\" icon_color=\"#898989\" margin=\"0 0 0 0\"]</li>\n</ul>\n[/mkdf_comparison_pricing_table_item][mkdf_comparison_pricing_table_item title=\"Professional \" featured_item=\"yes\" show_button=\"yes\" border_top_color=\"\" btn_background_color=\"\" btn_border_color=\"\" btn_text_color=\"\" price=\"59\" button_text=\"GET IT NOW\" link=\"#\" image=\"1028\" currency=\"$\"]\n<ul>\n 	<li>4</li>\n 	<li>30 Days</li>\n 	<li>[mkdf_icon icon_pack=\"font_elegant\" fe_icon=\"icon_check\" size=\"mkdf-icon-tiny\" custom_size=\"20\" type=\"normal\" icon_animation=\"\" icon_color=\"#d8a64e\" margin=\"0 0 0 0\"]</li>\n 	<li>[mkdf_icon icon_pack=\"font_elegant\" fe_icon=\"icon_check\" size=\"mkdf-icon-tiny\" custom_size=\"20\" type=\"normal\" icon_animation=\"\" icon_color=\"#d8a64e\" margin=\"0 0 0 0\"]</li>\n 	<li>[mkdf_icon icon_pack=\"font_elegant\" fe_icon=\"icon_check\" size=\"mkdf-icon-tiny\" custom_size=\"20\" type=\"normal\" icon_animation=\"\" icon_color=\"#d8a64e\" margin=\"0 0 0 0\"]</li>\n 	<li>[mkdf_icon icon_pack=\"font_elegant\" fe_icon=\"icon_check\" size=\"mkdf-icon-tiny\" custom_size=\"20\" type=\"normal\" icon_animation=\"\" icon_color=\"#d8a64e\" margin=\"0 0 0 0\"]</li>\n 	<li>[mkdf_icon icon_pack=\"font_elegant\" fe_icon=\"icon_close\" size=\"mkdf-icon-tiny\" custom_size=\"20\" type=\"normal\" icon_animation=\"\" icon_color=\"#898989\" margin=\"0 0 0 0\"]</li>\n 	<li>[mkdf_icon icon_pack=\"font_elegant\" fe_icon=\"icon_close\" size=\"mkdf-icon-tiny\" custom_size=\"20\" type=\"normal\" icon_animation=\"\" icon_color=\"#898989\" margin=\"0 0 0 0\"]</li>\n</ul>\n[/mkdf_comparison_pricing_table_item][mkdf_comparison_pricing_table_item title=\"Advanced\" show_button=\"yes\" border_top_color=\"\" btn_background_color=\"\" btn_border_color=\"\" btn_text_color=\"\" price=\"88\" button_text=\"GET IT NOW\" link=\"#\" image=\"1029\" currency=\"$\"]\n<ul>\n 	<li>6</li>\n 	<li>30 Days</li>\n 	<li>[mkdf_icon icon_pack=\"font_elegant\" fe_icon=\"icon_check\" size=\"mkdf-icon-tiny\" custom_size=\"20\" type=\"normal\" icon_animation=\"\" icon_color=\"#d8a64e\" margin=\"0 0 0 0\"]</li>\n 	<li>[mkdf_icon icon_pack=\"font_elegant\" fe_icon=\"icon_check\" size=\"mkdf-icon-tiny\" custom_size=\"20\" type=\"normal\" icon_animation=\"\" icon_color=\"#d8a64e\" margin=\"0 0 0 0\"]</li>\n 	<li>[mkdf_icon icon_pack=\"font_elegant\" fe_icon=\"icon_check\" size=\"mkdf-icon-tiny\" custom_size=\"20\" type=\"normal\" icon_animation=\"\" icon_color=\"#d8a64e\" margin=\"0 0 0 0\"]</li>\n 	<li>[mkdf_icon icon_pack=\"font_elegant\" fe_icon=\"icon_check\" size=\"mkdf-icon-tiny\" custom_size=\"20\" type=\"normal\" icon_animation=\"\" icon_color=\"#d8a64e\" margin=\"0 0 0 0\"]</li>\n 	<li>[mkdf_icon icon_pack=\"font_elegant\" fe_icon=\"icon_check\" size=\"mkdf-icon-tiny\" custom_size=\"20\" type=\"normal\" icon_animation=\"\" icon_color=\"#d8a64e\" margin=\"0 0 0 0\"]</li>\n 	<li>[mkdf_icon icon_pack=\"font_elegant\" fe_icon=\"icon_check\" size=\"mkdf-icon-tiny\" custom_size=\"20\" type=\"normal\" icon_animation=\"\" icon_color=\"#d8a64e\" margin=\"0 0 0 0\"]</li>\n</ul>\n[/mkdf_comparison_pricing_table_item][/mkdf_comparison_pricing_table][/vc_column][/vc_row][vc_row simple_background_color=\"#ffffff\"][vc_column][mkdf_separator type=\"full-width\" border_style=\"solid\" color=\"#ebebeb\" thickness=\"1\" top_margin=\"0px\" bottom_margin=\"0px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" simple_background_color=\"#ffffff\" css=\".vc_custom_1496139013215{padding-top: 90px !important;padding-bottom: 90px !important;}\"][vc_column][mkdf_clients_carousel number_of_visible_items=\"5\" slider_loop=\"yes\" slider_autoplay=\"yes\" slider_navigation=\"no\" slider_pagination=\"no\" items_hover_animation=\"switch-images\"][mkdf_clients_carousel_item target=\"_self\" image=\"216\" image_size=\"full\" link=\"#\" hover_image=\"1555\"][/mkdf_clients_carousel_item][mkdf_clients_carousel_item target=\"_self\" image=\"217\" image_size=\"full\" link=\"#\" hover_image=\"1563\"][/mkdf_clients_carousel_item][mkdf_clients_carousel_item target=\"_self\" image_size=\"full\" link=\"#\" image=\"218\" hover_image=\"1564\"][/mkdf_clients_carousel_item][mkdf_clients_carousel_item target=\"_self\" image=\"219\" image_size=\"full \" link=\"#\" hover_image=\"1560\"][/mkdf_clients_carousel_item][mkdf_clients_carousel_item target=\"_self\" image=\"220\" image_size=\"full\" link=\"#\" hover_image=\"1561\"][/mkdf_clients_carousel_item][mkdf_clients_carousel_item target=\"_self\" image=\"216\" image_size=\"full\" link=\"#\" hover_image=\"1555\"][/mkdf_clients_carousel_item][mkdf_clients_carousel_item target=\"_self\" image=\"217\" image_size=\"full\" link=\"#\" hover_image=\"1563\"][/mkdf_clients_carousel_item][/mkdf_clients_carousel][/vc_column][/vc_row]','Home 10','','publish','closed','closed','','home-10','','','2017-05-30 09:34:27','2017-05-30 09:34:27','',0,'http://iacademy.mikado-themes.com/?page_id=896',0,'page','',0),(897,1,'2017-05-30 08:28:55','2017-05-30 08:28:55','[vc_row content_text_aligment=\"left\" css=\".vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][mkdf_progress_bar title_tag=\"\" percent=\"87\" title=\"Motivation\"][mkdf_progress_bar title_tag=\"\" percent=\"90\" title=\"Education Skills\"][mkdf_progress_bar title_tag=\"\" percent=\"69\" title=\"Learning\"][mkdf_progress_bar title_tag=\"\" percent=\"50\" title=\"Tutoring\"][/vc_column][/vc_row][vc_row content_text_aligment=\"left\" css=\".vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][mkdf_progress_bar title_tag=\"\" percent=\"90\" title=\"Education Skills\" color_active=\"#ffd740\"][mkdf_progress_bar title_tag=\"\" percent=\"50\" title=\"Tutoring\" color_active=\"#ffd740\"][mkdf_progress_bar title_tag=\"\" percent=\"69\" title=\"Learning\" color_active=\"#ffd740\"][mkdf_progress_bar title_tag=\"\" percent=\"87\" title=\"Motivation\" color_active=\"#ffd740\"][/vc_column][/vc_row][vc_row content_text_aligment=\"left\" css=\".vc_custom_1497427078791{margin-top: -24px !important;padding-bottom: 98px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][vc_row_inner][vc_column_inner width=\"1/2\"][mkdf_progress_bar title_tag=\"\" percent=\"50\" title=\"Tutoring\" color_active=\"#222222\"][mkdf_progress_bar title_tag=\"\" percent=\"90\" title=\"Education Skills\" color_active=\"#222222\"][mkdf_progress_bar title_tag=\"\" percent=\"69\" title=\"Learning\" color_active=\"#222222\"][mkdf_progress_bar title_tag=\"\" percent=\"87\" title=\"Motivation\" color_active=\"#222222\"][/vc_column_inner][vc_column_inner width=\"1/2\"][mkdf_progress_bar title_tag=\"\" percent=\"90\" title=\"Education Skills\"][mkdf_progress_bar title_tag=\"\" percent=\"50\" title=\"Tutoring\"][mkdf_progress_bar title_tag=\"\" percent=\"87\" title=\"Motivation\"][mkdf_progress_bar title_tag=\"\" percent=\"69\" title=\"Learning\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Progress Bar','','publish','closed','closed','','progress-bar','','','2017-05-30 08:28:55','2017-05-30 08:28:55','',447,'http://iacademy.mikado-themes.com/?page_id=897',0,'page','',0),(898,1,'2017-05-30 08:28:20','2017-05-30 08:28:20','','h5-custom-icon-1','','inherit','open','closed','','h5-custom-icon-1','','','2017-05-30 08:28:20','2017-05-30 08:28:20','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h5-custom-icon-1.png',0,'attachment','image/png',0),(899,1,'2017-05-30 08:28:22','2017-05-30 08:28:22','','h5-custom-icon-2','','inherit','open','closed','','h5-custom-icon-2','','','2017-05-30 08:28:22','2017-05-30 08:28:22','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h5-custom-icon-2.png',0,'attachment','image/png',0),(900,1,'2017-05-30 08:28:23','2017-05-30 08:28:23','','h5-custom-icon-3','','inherit','open','closed','','h5-custom-icon-3','','','2017-05-30 08:28:23','2017-05-30 08:28:23','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h5-custom-icon-3.png',0,'attachment','image/png',0),(901,1,'2017-05-30 08:28:24','2017-05-30 08:28:24','','h5-custom-icon-4','','inherit','open','closed','','h5-custom-icon-4','','','2017-05-30 08:28:24','2017-05-30 08:28:24','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h5-custom-icon-4.png',0,'attachment','image/png',0),(902,1,'2017-05-30 08:28:26','2017-05-30 08:28:26','','h5-custom-icon-5','','inherit','open','closed','','h5-custom-icon-5','','','2017-05-30 08:28:26','2017-05-30 08:28:26','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h5-custom-icon-5.png',0,'attachment','image/png',0),(903,1,'2017-05-30 08:28:27','2017-05-30 08:28:27','','h5-custom-icon-6','','inherit','open','closed','','h5-custom-icon-6','','','2017-05-30 08:28:27','2017-05-30 08:28:27','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h5-custom-icon-6.png',0,'attachment','image/png',0),(910,1,'2017-05-30 08:38:14','2017-05-30 08:38:14','[vc_row content_text_aligment=\"left\" css=\".vc_custom_1496133764493{margin-top: -23px !important;padding-bottom: 90px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][mkdf_accordion][mkdf_accordion_tab title=\"Can I just enroll in a single course? I\'m not interested in the entire Specialization.\"][vc_column_text]Lorem ipsum gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus.[/vc_column_text][/mkdf_accordion_tab][mkdf_accordion_tab title=\"What is the refund policy?\"][vc_column_text]Lorem ipsum gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus.[/vc_column_text][/mkdf_accordion_tab][mkdf_accordion_tab title=\"What background knowledge is necessary?\"][vc_column_text]Lorem ipsum gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus.[/vc_column_text][/mkdf_accordion_tab][mkdf_accordion_tab title=\"Do I need to take the courses in a specific order?\"][vc_column_text]Lorem ipsum gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus.[/vc_column_text][/mkdf_accordion_tab][/mkdf_accordion][/vc_column][/vc_row][vc_row content_text_aligment=\"left\" css=\".vc_custom_1496133642527{margin-top: -40px !important;padding-bottom: 90px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][mkdf_accordion layout=\"simple\"][mkdf_accordion_tab title=\"Can I just enroll in a single course? I\'m not interested in the entire Specialization.\"][vc_column_text]Lorem ispum gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.[/vc_column_text][/mkdf_accordion_tab][mkdf_accordion_tab title=\"What is the refund policy?\"][vc_column_text]Lorem ipsum gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.[/vc_column_text][/mkdf_accordion_tab][mkdf_accordion_tab title=\"What background knowledge is necessary?\"][vc_column_text]Lorem ipsum gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.[/vc_column_text][/mkdf_accordion_tab][mkdf_accordion_tab title=\"Do I need to take the courses in a specific order?\"][vc_column_text]Lorem ipsum gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.[/vc_column_text][/mkdf_accordion_tab][/mkdf_accordion][/vc_column][/vc_row][vc_row content_text_aligment=\"left\" css=\".vc_custom_1496133672044{margin-top: -40px !important;padding-bottom: 90px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][mkdf_accordion style=\"toggle\"][mkdf_accordion_tab title=\"Can I just enroll in a single course? I\'m not interested in the entire Specialization.\"][vc_column_text]Lorem ipsum gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus.[/vc_column_text][/mkdf_accordion_tab][mkdf_accordion_tab title=\"What is the refund policy?\"][vc_column_text]Lorem ipsum gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus.[/vc_column_text][/mkdf_accordion_tab][mkdf_accordion_tab title=\"What background knowledge is necessary?\"][vc_column_text]Lorem ipsum gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus.[/vc_column_text][/mkdf_accordion_tab][mkdf_accordion_tab title=\"Do I need to take the courses in a specific order?\"][vc_column_text]Lorem ipsum gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus.[/vc_column_text][/mkdf_accordion_tab][/mkdf_accordion][/vc_column][/vc_row][vc_row content_text_aligment=\"left\" css=\".vc_custom_1496133725620{margin-top: -40px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][mkdf_accordion style=\"toggle\" layout=\"simple\"][mkdf_accordion_tab title=\"Can I just enroll in a single course? I\'m not interested in the entire Specialization.\"][vc_column_text]Lorem ipsum gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.[/vc_column_text][/mkdf_accordion_tab][mkdf_accordion_tab title=\"What is the refund policy?\"][vc_column_text]Lorem ipsum gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.[/vc_column_text][/mkdf_accordion_tab][mkdf_accordion_tab title=\"What background knowledge is necessary?\"][vc_column_text]Lorem ipsum gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.[/vc_column_text][/mkdf_accordion_tab][mkdf_accordion_tab title=\"Do I need to take the courses in a specific order?\"][vc_column_text]Lorem ipsum gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.[/vc_column_text][/mkdf_accordion_tab][/mkdf_accordion][/vc_column][/vc_row]','Accordions & Toggles','','publish','closed','closed','','accordions-toggles','','','2017-05-30 08:38:14','2017-05-30 08:38:14','',447,'http://iacademy.mikado-themes.com/?page_id=910',0,'page','',0),(911,1,'2017-05-30 08:36:07','2017-05-30 08:36:07','','h12-tabs-icon-2','','inherit','open','closed','','h12-tabs-icon-2','','','2017-05-30 08:36:07','2017-05-30 08:36:07','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h12-tabs-icon-2.png',0,'attachment','image/png',0),(914,1,'2017-05-30 08:38:50','2017-05-30 08:38:50','','h12-tabs-icon-3','','inherit','open','closed','','h12-tabs-icon-3','','','2017-05-30 08:38:50','2017-05-30 08:38:50','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h12-tabs-icon-3.png',0,'attachment','image/png',0),(918,1,'2017-05-30 08:40:48','2017-05-30 08:40:48','','h12-tabs-icon-4','','inherit','open','closed','','h12-tabs-icon-4','','','2017-05-30 08:40:48','2017-05-30 08:40:48','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h12-tabs-icon-4.png',0,'attachment','image/png',0),(921,1,'2017-05-30 08:41:18','2017-05-30 08:41:18','','h5-parallax-img-1','','inherit','open','closed','','h5-parallax-img-1','','','2017-05-30 08:41:18','2017-05-30 08:41:18','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h5-parallax-img-1.png',0,'attachment','image/png',0),(925,1,'2017-05-30 08:48:32','2017-05-30 08:48:32','','h12-tabs-icon-5','','inherit','open','closed','','h12-tabs-icon-5','','','2017-05-30 08:48:32','2017-05-30 08:48:32','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h12-tabs-icon-5.png',0,'attachment','image/png',0),(927,1,'2017-05-30 08:55:25','2017-05-30 08:55:25','[vc_row content_text_aligment=\"left\" css=\".vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][mkdf_tabs type=\"vertical\"][mkdf_tabs_item tab_title=\"What We Do\" tab_image=\"865\"][mkdf_section_title type=\"standard\" position=\"left\" title_tag=\"h2\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" title=\"Inspiring Minds\" text=\"Lorem Ipsn gravida nibh vel velit auctor aliquetn sollicitudirem quibibendum auci elit cons equat ipsutis sem nibh vulputate.\" text_color=\"#808080\" text_margin=\"23\"][vc_empty_space height=\"50px\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"We enrich lives through learning.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"Maximizing potential through individual.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"The trusted name for specialized training.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"People teach. People learn. They connect.\" title_size=\"17\"][/mkdf_tabs_item][mkdf_tabs_item tab_title=\"Degree Programme\" tab_image=\"911\"][mkdf_section_title type=\"standard\" position=\"left\" title_tag=\"h2\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" title=\"Inspiring Minds\" text=\"Lorem Ipsn gravida nibh vel velit auctor aliquetn sollicitudirem quibibendum auci elit cons equat ipsutis sem nibh vulputate.\" text_color=\"#808080\" text_margin=\"23\"][vc_empty_space height=\"50px\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"Maximizing potential through individual.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"We enrich lives through learning.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"People teach. People learn. They connect.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"The trusted name for specialized training.\" title_size=\"17\"][/mkdf_tabs_item][mkdf_tabs_item tab_title=\"Career Achievements\" tab_image=\"914\"][mkdf_section_title type=\"standard\" position=\"left\" title_tag=\"h2\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" title=\"Secure Your Future\" text=\"Lorem Ipsn gravida nibh vel velit auctor aliquetn sollicitudirem quibibendum auci elit cons equat ipsutis sem nibh vulputate.\" text_color=\"#808080\" text_margin=\"23\"][vc_empty_space height=\"50px\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"The trusted name for specialized training.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"Maximizing potential through individual.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"People teach. People learn. They connect.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"We enrich lives through learning.\" title_size=\"17\"][/mkdf_tabs_item][mkdf_tabs_item tab_title=\"Personal Managment\" tab_image=\"918\"][mkdf_section_title type=\"standard\" position=\"left\" title_tag=\"h2\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" title=\"Knowledge\" text=\"Lorem Ipsn gravida nibh vel velit auctor aliquetn sollicitudirem quibibendum auci elit cons equat ipsutis sem nibh vulputate.\" text_color=\"#808080\" text_margin=\"23\"][vc_empty_space height=\"50px\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"Maximizing potential through individual.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"We enrich lives through learning.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"People teach. People learn. They connect.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"The trusted name for specialized training.\" title_size=\"17\"][/mkdf_tabs_item][mkdf_tabs_item tab_title=\"Steps To Success\" tab_image=\"925\"][mkdf_section_title type=\"standard\" position=\"left\" title_tag=\"h2\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" title=\"Learning Begins\" text=\"Lorem Ipsn gravida nibh vel velit auctor aliquetn sollicitudirem quibibendum auci elit cons equat ipsutis sem nibh vulputate.\" text_color=\"#808080\" text_margin=\"23\"][vc_empty_space height=\"50px\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"The trusted name for specialized training.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"We enrich lives through learning.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"Maximizing potential through individual.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"People teach. People learn. They connect.\" title_size=\"17\"][/mkdf_tabs_item][/mkdf_tabs][/vc_column][/vc_row]','Tabs','','publish','closed','closed','','tabs','','','2017-05-30 08:55:25','2017-05-30 08:55:25','',447,'http://iacademy.mikado-themes.com/?page_id=927',0,'page','',0),(928,1,'2017-05-30 08:51:53','2017-05-30 08:51:53','','h12-tabs-icon-6','','inherit','open','closed','','h12-tabs-icon-6','','','2017-05-30 08:51:53','2017-05-30 08:51:53','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h12-tabs-icon-6.png',0,'attachment','image/png',0),(934,1,'2017-05-30 08:57:12','2017-05-30 08:57:12','','h5-team-member-1','','inherit','open','closed','','h5-team-member-1','','','2017-05-30 08:57:12','2017-05-30 08:57:12','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h5-team-member-1.jpg',0,'attachment','image/jpeg',0),(935,1,'2017-05-30 08:57:14','2017-05-30 08:57:14','','h5-team-member-2','','inherit','open','closed','','h5-team-member-2','','','2017-05-30 08:57:14','2017-05-30 08:57:14','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h5-team-member-2.jpg',0,'attachment','image/jpeg',0),(936,1,'2017-05-30 08:57:16','2017-05-30 08:57:16','','h5-team-member-3','','inherit','open','closed','','h5-team-member-3','','','2017-05-30 08:57:16','2017-05-30 08:57:16','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h5-team-member-3.jpg',0,'attachment','image/jpeg',0),(949,1,'2017-05-30 09:17:38','2017-05-30 09:17:38','[vc_row content_text_aligment=\"left\" css=\".vc_custom_1496913710118{margin-top: -42px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][vc_row_inner css=\".vc_custom_1496136157330{padding-bottom: 50px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text]\n<h3>Simple</h3>\n[/vc_column_text][vc_column_text]Lorem ipsum dolor sit amet, rutrum aliquet taciti vel, nunc sed nec neque eleifend sed tellus, sociis consectetuer donec vulputate suspendisse.[/vc_column_text][vc_empty_space height=\"45px\"][mkdf_button type=\"simple\" text=\"Read More\" target=\"_self\" icon_pack=\"font_awesome\" fa_icon=\"fa-angle-right\" font_weight=\"\" link=\"#\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]\n<h3>Outline</h3>\n[/vc_column_text][vc_column_text]Lorem ipsum dolor sit amet, rutrum aliquet taciti vel, nunc sed nec neque eleifend sed tellus, sociis consectetuer donec vulputate suspendisse.[/vc_column_text][vc_empty_space][mkdf_button type=\"outline\" text=\"Read More\" target=\"_self\" icon_pack=\"\" font_weight=\"\" link=\"#\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]\n<h3>Solid</h3>\n[/vc_column_text][vc_column_text]Lorem ipsum dolor sit amet, rutrum aliquet taciti vel, nunc sed nec neque eleifend sed tellus, sociis consectetuer donec vulputate suspendisse.[/vc_column_text][vc_empty_space][mkdf_button text=\"Read More\" target=\"_self\" icon_pack=\"\" font_weight=\"\" link=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1496136212650{padding-bottom: 88px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text]\n<h3>Small</h3>\n[/vc_column_text][vc_column_text]Lorem ipsum dolor sit amet, rutrum aliquet taciti vel, nunc sed nec neque eleifend sed tellus, sociis consectetuer donec vulputate suspendisse.[/vc_column_text][vc_empty_space][mkdf_button size=\"small\" text=\"Read More\" target=\"_self\" icon_pack=\"\" font_weight=\"\" link=\"#\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]\n<h3>Medium</h3>\n[/vc_column_text][vc_column_text]Lorem ipsum dolor sit amet, rutrum aliquet taciti vel, nunc sed nec neque eleifend sed tellus, sociis consectetuer donec vulputate suspendisse.[/vc_column_text][vc_empty_space][mkdf_button size=\"medium\" text=\"Read More\" target=\"_self\" icon_pack=\"\" font_weight=\"\" link=\"#\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]\n<h3>Large</h3>\n[/vc_column_text][vc_column_text]Lorem ipsum dolor sit amet, rutrum aliquet taciti vel, nunc sed nec neque eleifend sed tellus, sociis consectetuer donec vulputate suspendisse.[/vc_column_text][vc_empty_space][mkdf_button size=\"large\" text=\"Read More\" target=\"_self\" icon_pack=\"\" font_weight=\"\" link=\"#\"][/vc_column_inner][/vc_row_inner][mkdf_button size=\"huge\" text=\"Read More\" target=\"_self\" icon_pack=\"\" font_weight=\"\" link=\"#\"][/vc_column][/vc_row]','Buttons','','publish','closed','closed','','buttons','','','2017-05-30 09:17:38','2017-05-30 09:17:38','',447,'http://iacademy.mikado-themes.com/?page_id=949',0,'page','',0),(960,1,'2017-05-30 09:31:03','2017-05-30 09:31:03','[vc_row content_text_aligment=\"left\" css=\".vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][vc_row_inner simple_background_color=\"#f7fafc\" css=\".vc_custom_1497351120318{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}\"][vc_column_inner css=\".vc_custom_1496914250767{padding-top: 25px !important;padding-right: 22px !important;padding-bottom: 25px !important;padding-left: 30px !important;}\"][mkdf_call_to_action layout=\"normal\" button_text=\"Read More\" button_type=\"solid\" button_size=\"\" button_border_color=\"rgba(0,0,0,0.01)\" button_hover_border_color=\"rgba(0,0,0,0.01)\" button_link=\"http://iacademy.mikado-themes.com/contact/\"]\n<div class=\"mkd-call-to-action-row-75-25 clearfix\">\n<div class=\"mkd-text-wrapper mkd-call-to-action-column1 mkd-call-to-action-cell\">\n<div class=\"mkd-call-to-action-text\">\n<div class=\"mkdf-call-to-action-row-75-25 clearfix\">\n<div class=\"mkdf-text-wrapper mkdf-call-to-action-column1 mkdf-call-to-action-cell\">\n<div class=\"mkdf-call-to-action-text\">\n<h5>The “Secrets of Success” will not work unless you do!</h5>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n[/mkdf_call_to_action][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"50px\"][vc_row_inner simple_background_color=\"#ffffff\" css=\".vc_custom_1497351102019{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}\"][vc_column_inner css=\".vc_custom_1496914250767{padding-top: 25px !important;padding-right: 22px !important;padding-bottom: 25px !important;padding-left: 30px !important;}\"][mkdf_call_to_action layout=\"normal\" button_text=\"Read More\" button_type=\"solid\" button_size=\"\" button_border_color=\"rgba(0,0,0,0.01)\" button_hover_border_color=\"rgba(0,0,0,0.01)\" button_link=\"http://iacademy.mikado-themes.com/contact/\"]\n<div class=\"mkd-call-to-action-row-75-25 clearfix\">\n<div class=\"mkd-text-wrapper mkd-call-to-action-column1 mkd-call-to-action-cell\">\n<div class=\"mkd-call-to-action-text\">\n<div class=\"mkdf-call-to-action-row-75-25 clearfix\">\n<div class=\"mkdf-text-wrapper mkdf-call-to-action-column1 mkdf-call-to-action-cell\">\n<div class=\"mkdf-call-to-action-text\">\n<h5>Much good work is lost for the lack of a little more.</h5>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n[/mkdf_call_to_action][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"50px\"][vc_row_inner simple_background_color=\"#ffd740\"][vc_column_inner css=\".vc_custom_1496914261941{padding-top: 25px !important;padding-right: 22px !important;padding-bottom: 25px !important;padding-left: 30px !important;}\"][mkdf_call_to_action layout=\"normal\" button_text=\"Read More\" button_type=\"solid\" button_size=\"\" button_border_color=\"rgba(0,0,0,0.01)\" button_hover_border_color=\"rgba(0,0,0,0.01)\" button_color=\"#8a8a8a\" button_link=\"http://iacademy.mikado-themes.com/contact/\" button_hover_color=\"#d8a64e\" button_background_color=\"#ffffff\" button_hover_background_color=\"#fafafa\"]\n<div class=\"mkd-call-to-action-row-75-25 clearfix\">\n<div class=\"mkd-text-wrapper mkd-call-to-action-column1 mkd-call-to-action-cell\">\n<div class=\"mkd-call-to-action-text\">\n<div class=\"mkdf-call-to-action-row-75-25 clearfix\">\n<div class=\"mkdf-text-wrapper mkdf-call-to-action-column1 mkdf-call-to-action-cell\">\n<div class=\"mkdf-call-to-action-text\">\n<h5><span style=\"color: #ffffff;\">Get Connected. Follow Latest News. Don’t Wait Longer.</span></h5>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n[/mkdf_call_to_action][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"50px\"][vc_row_inner simple_background_color=\"#d8a64e\"][vc_column_inner css=\".vc_custom_1496914497725{padding-top: 25px !important;padding-right: 22px !important;padding-bottom: 25px !important;padding-left: 30px !important;}\"][mkdf_call_to_action layout=\"normal\" button_text=\"Read More\" button_type=\"solid\" button_size=\"\" button_border_color=\"rgba(0,0,0,0.01)\" button_hover_border_color=\"rgba(0,0,0,0.01)\" button_background_color=\"#ffffff\" button_color=\"#8a8a8a\" button_hover_color=\"#d8a64e\" button_hover_background_color=\"#fafafa\" button_link=\"http://iacademy.mikado-themes.com/contact/\"]\n<div class=\"mkd-call-to-action-row-75-25 clearfix\">\n<div class=\"mkd-text-wrapper mkd-call-to-action-column1 mkd-call-to-action-cell\">\n<div class=\"mkd-call-to-action-text\">\n<div class=\"mkdf-call-to-action-row-75-25 clearfix\">\n<div class=\"mkdf-text-wrapper mkdf-call-to-action-column1 mkdf-call-to-action-cell\">\n<div class=\"mkdf-call-to-action-text\">\n<h5><span style=\"color: #ffffff;\">Teachers Call it Copying. We Call it Teamwork.</span></h5>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n[/mkdf_call_to_action][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Call To Action','','publish','closed','closed','','call-to-action','','','2017-05-30 09:31:03','2017-05-30 09:31:03','',447,'http://iacademy.mikado-themes.com/?page_id=960',0,'page','',0),(980,1,'2017-05-30 09:50:49','2017-05-30 09:50:49','[vc_row content_text_aligment=\"left\" css=\".vc_custom_1496068885573{margin-top: -40px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris.[/vc_column_text][vc_separator css=\".vc_custom_1496137910541{padding-top: 32px !important;padding-bottom: 18px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris.[/vc_column_text][vc_separator style=\"dotted\" css=\".vc_custom_1496137926988{padding-top: 32px !important;padding-bottom: 18px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris.[/vc_column_text][vc_separator style=\"dashed\" css=\".vc_custom_1496137983731{padding-top: 32px !important;padding-bottom: 18px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris.[/vc_column_text][vc_separator border_width=\"2\" css=\".vc_custom_1496137995868{padding-top: 32px !important;padding-bottom: 18px !important;}\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris.[/vc_column_text][vc_separator color=\"custom\" border_width=\"4\" css=\".vc_custom_1496927600125{padding-top: 32px !important;padding-bottom: 18px !important;}\" accent_color=\"#d8a64e\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris.[/vc_column_text][vc_empty_space height=\"90px\"][vc_text_separator title=\"Separator With Text\" el_width=\"50\"][vc_empty_space height=\"45px\"][vc_text_separator title=\"Separator With Text\" style=\"shadow\" el_width=\"70\"][vc_empty_space height=\"45px\"][vc_text_separator title=\"Separator With Text\"][vc_row_inner css=\".vc_custom_1496138694532{padding-top: 65px !important;padding-bottom: 91px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text]\n<h4>Left Align</h4>\n[/vc_column_text][vc_empty_space height=\"23px\"][vc_separator color=\"custom\" align=\"align_left\" border_width=\"3\" el_width=\"30\" accent_color=\"#d8a64e\"][vc_empty_space height=\"7px\"][vc_column_text]\n<p style=\"text-align: left;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt.</p>\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]\n<h4 style=\"text-align: center;\">Centered</h4>\n[/vc_column_text][vc_empty_space height=\"23px\"][vc_separator color=\"custom\" border_width=\"3\" el_width=\"30\" accent_color=\"#d8a64e\"][vc_empty_space height=\"7px\"][vc_column_text]\n<p style=\"text-align: center;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt.</p>\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]\n<h4 style=\"text-align: right;\">Right Align</h4>\n[/vc_column_text][vc_empty_space height=\"23px\"][vc_separator color=\"custom\" align=\"align_right\" border_width=\"3\" el_width=\"30\" accent_color=\"#d8a64e\"][vc_empty_space height=\"7px\"][vc_column_text]\n<p style=\"text-align: right;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt.</p>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Separators','','publish','closed','closed','','separators','','','2017-05-30 09:50:49','2017-05-30 09:50:49','',447,'http://iacademy.mikado-themes.com/?page_id=980',0,'page','',0),(999,1,'2017-05-30 10:08:53','2017-05-30 10:08:53','[vc_row content_text_aligment=\"left\" css=\".vc_custom_1496912994162{margin-top: -40px !important;padding-bottom: 80px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][vc_column_text]Lorem ipsum dolor sit amet, nec in adipiscing purus luctus, urna pellentesque fringilla vel, non sed arcu integer, mauris ullamcorper ante ut non torquent. Justo praesent, vivamus eleifend torquent, suspendisse etiam lorem vestibulum, vestibulum in lorem nec vel, sit curabitur dui ligula vehicula quam. Nec in neque mauris, enim hac risus in lorem. Mi risus, feugiat egestas nunc vehicula vehicula libero. Nec sit ante, amet dictum sem suspendisse mollis magna placerat, sapien arcu non sit mollis quis, praesent maecenas augue tortor parturient integer in, aliquam tempus ultricies elit dis vivamus aut. Ipsum non ut egestas in, suspendisse ut. Sodales sed cras. Et consequat viverra. Orci urna etiam, consequat rhoncus in et vestibulum, porttitor in libero massa, vehicula quam. Sociis ornare ultricies arcu.[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]\n<blockquote>Nullam ac justo efficitur, tristique ligula a, pellentesque ipsum. Quisque augue ipsum, vehicula et tellus nec.</blockquote>\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Lorem ipsum dolor sit amet, nec in adipiscing purus luctus, urna pellentesque fringilla vel, non sed arcu integer, mauris ullamcorper ante ut non torquent. Justo praesent, vivamus eleifend torquent, suspendisse etiam lorem vestibulum, vestibulum in lorem nec vel, sit curabitur dui ligula vehicula quam. Nec in neque mauris, enim hac risus in lorem. Mi risus, feugiat egestas nunc vehicula vehicula libero. Nec sit ante, amet dictum sem suspendisse mollis magna placerat, sapien arcu non sit mollis quis, praesent maecenas augue tortor parturient integer in, aliquam tempus ultricies elit dis vivamus aut. Ipsum non ut egestas in, suspendisse ut. Sodales sed cras. Et consequat viverra. Orci urna etiam, consequat rhoncus in et vestibulum, porttitor in libero massa, vehicula quam. Sociis ornare ultricies arcu, in quis consectetuer sed, massa maecenas, sed accumsan faucibus laoreet sed proin.[/vc_column_text][/vc_column][/vc_row]','Blockquote','','publish','closed','closed','','blockquote','','','2017-05-30 10:08:53','2017-05-30 10:08:53','',447,'http://iacademy.mikado-themes.com/?page_id=999',0,'page','',0),(1024,1,'2017-05-30 10:24:17','2017-05-30 10:24:17','[vc_row content_text_aligment=\"left\" css=\".vc_custom_1496132789152{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][contact-form-7 id=\"171\" html_class=\"cf7_custom_style_2\"][/vc_column][/vc_row][vc_row content_text_aligment=\"left\" css=\".vc_custom_1497436204765{padding-bottom: 63px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][contact-form-7 id=\"170\" html_class=\"cf7_custom_style_2\"][/vc_column][/vc_row][vc_row content_text_aligment=\"left\" css=\".vc_custom_1497436276537{padding-bottom: 33px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\" css=\".vc_custom_1497436196687{padding-bottom: 5px !important;}\"][contact-form-7 id=\"2796\"][/vc_column][/vc_row][vc_row content_text_aligment=\"left\" css=\".vc_custom_1497436262933{padding-bottom: 53px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\" css=\".vc_custom_1497436196687{padding-bottom: 5px !important;}\"][contact-form-7 id=\"2102\"][/vc_column][/vc_row]','Contact Form','','publish','closed','closed','','contact-form','','','2017-05-30 10:24:17','2017-05-30 10:24:17','',447,'http://iacademy.mikado-themes.com/?page_id=1024',0,'page','',0),(1027,1,'2017-05-30 10:29:22','2017-05-30 10:29:22','','h5-custom-icon-7','','inherit','open','closed','','h5-custom-icon-7','','','2017-05-30 10:29:22','2017-05-30 10:29:22','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h5-custom-icon-7.png',0,'attachment','image/png',0),(1028,1,'2017-05-30 10:29:23','2017-05-30 10:29:23','','h5-custom-icon-8','','inherit','open','closed','','h5-custom-icon-8','','','2017-05-30 10:29:23','2017-05-30 10:29:23','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h5-custom-icon-8.png',0,'attachment','image/png',0),(1029,1,'2017-05-30 10:29:24','2017-05-30 10:29:24','','h5-custom-icon-9','','inherit','open','closed','','h5-custom-icon-9','','','2017-05-30 10:29:24','2017-05-30 10:29:24','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h5-custom-icon-9.png',0,'attachment','image/png',0),(1059,1,'2017-05-30 12:18:34','2017-05-30 12:18:34','[vc_row content_text_aligment=\"left\" css=\".vc_custom_1496241794235{margin-top: -24px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][mkdf_masonry_gallery space_between_items=\"no\" order_by=\"date\" order=\"ASC\" category=\"elements\"][/vc_column][/vc_row]','Masonry Gallery','','publish','closed','closed','','masonry-gallery','','','2017-05-30 12:18:34','2017-05-30 12:18:34','',447,'http://iacademy.mikado-themes.com/?page_id=1059',0,'page','',0),(1063,1,'2017-05-30 12:26:52','2017-05-30 12:26:52','','Achievers perform.','','publish','closed','closed','','achievers-perform','','','2017-05-30 12:26:52','2017-05-30 12:26:52','',0,'http://iacademy.mikado-themes.com/?post_type=masonry-gallery&amp;p=1063',0,'masonry-gallery','',0),(1064,1,'2017-05-30 12:27:08','2017-05-30 12:27:08','','','','publish','closed','closed','','untitled','','','2017-05-30 12:27:08','2017-05-30 12:27:08','',0,'http://iacademy.mikado-themes.com/?post_type=masonry-gallery&amp;p=1064',0,'masonry-gallery','',0),(1065,1,'2017-05-30 12:27:46','2017-05-30 12:27:46','','Empowering children.','','publish','closed','closed','','empowering-children','','','2017-05-30 12:27:46','2017-05-30 12:27:46','',0,'http://iacademy.mikado-themes.com/?post_type=masonry-gallery&amp;p=1065',0,'masonry-gallery','',0),(1066,1,'2017-05-30 12:28:02','2017-05-30 12:28:02','','Education.','','publish','closed','closed','','education-is-your-door-to-the-future-2','','','2017-05-30 12:28:02','2017-05-30 12:28:02','',0,'http://iacademy.mikado-themes.com/?post_type=masonry-gallery&amp;p=1066',0,'masonry-gallery','',0),(1067,1,'2017-05-30 12:28:20','2017-05-30 12:28:20','','Motivated to perform, learn, excel.','','publish','closed','closed','','motivated-to-perform-learn-excel-4','','','2017-05-30 12:28:20','2017-05-30 12:28:20','',0,'http://iacademy.mikado-themes.com/?post_type=masonry-gallery&amp;p=1067',0,'masonry-gallery','',0),(1068,1,'2017-05-30 12:28:35','2017-05-30 12:28:35','','Tutoring','','publish','closed','closed','','tutoring','','','2017-05-30 12:28:35','2017-05-30 12:28:35','',0,'http://iacademy.mikado-themes.com/?post_type=masonry-gallery&amp;p=1068',0,'masonry-gallery','',0),(1069,1,'2017-05-30 12:28:53','2017-05-30 12:28:53','','','','publish','closed','closed','','1069','','','2017-05-30 12:28:53','2017-05-30 12:28:53','',0,'http://iacademy.mikado-themes.com/?post_type=masonry-gallery&amp;p=1069',0,'masonry-gallery','',0),(1070,1,'2017-05-30 12:29:15','2017-05-30 12:29:15','','Together we create a loving community','','publish','closed','closed','','together-we-create-a-loving-community-2','','','2017-05-30 12:29:15','2017-05-30 12:29:15','',0,'http://iacademy.mikado-themes.com/?post_type=masonry-gallery&amp;p=1070',0,'masonry-gallery','',0),(1071,1,'2017-05-30 12:29:33','2017-05-30 12:29:33','','We work hard.','','publish','closed','closed','','we-work-hard','','','2017-05-30 12:29:33','2017-05-30 12:29:33','',0,'http://iacademy.mikado-themes.com/?post_type=masonry-gallery&amp;p=1071',0,'masonry-gallery','',0),(1072,1,'2017-05-30 12:29:51','2017-05-30 12:29:51','','','','publish','closed','closed','','1072','','','2017-05-30 12:29:51','2017-05-30 12:29:51','',0,'http://iacademy.mikado-themes.com/?post_type=masonry-gallery&amp;p=1072',0,'masonry-gallery','',0),(1074,1,'2017-05-30 12:36:38','2017-05-30 12:36:38','[vc_row content_text_aligment=\"center\" css=\".vc_custom_1496148079491{margin-top: -24px !important;padding-bottom: 68px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][mkdf_instructor_list number_of_columns=\"2\" space_between_items=\"normal\" number_of_items=\"4\" order_by=\"date\" order=\"ASC\" instructor_layout=\"simple\" enable_shadow=\"yes\" selected_instructors=\"104, 105, 106, 108\"][vc_empty_space height=\"70px\"][vc_row_inner css=\".vc_custom_1496148557802{padding-bottom: 30px !important;}\"][vc_column_inner width=\"1/2\"][mkdf_instructor instructor_id=\"10\"][/vc_column_inner][vc_column_inner width=\"1/2\"][mkdf_instructor instructor_id=\"106\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Instructor List','','publish','closed','closed','','instructor-list','','','2017-05-30 12:36:38','2017-05-30 12:36:38','',447,'http://iacademy.mikado-themes.com/?page_id=1074',0,'page','',0),(1092,1,'2017-05-30 12:52:44','2017-05-30 12:52:44','[vc_row content_text_aligment=\"left\" css=\".vc_custom_1496932901252{margin-top: -24px !important;padding-bottom: 58px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][mkdf_course_slider number_of_columns=\"3\" space_between_items=\"normal\" image_proportions=\"full\" order_by=\"date\" order=\"ASC\" enable_excerpt=\"yes\" enable_loop=\"yes\" enable_autoplay=\"yes\" enable_navigation=\"no\" enable_pagination=\"yes\" pagination_position=\"below-slider\" excerpt_length=\"46\" number_of_items=\"4\" selected_courses=\"274, 18, 229\"][/vc_column][/vc_row][vc_row content_text_aligment=\"left\" css=\".vc_custom_1496932867514{padding-bottom: 93px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][mkdf_course_slider number_of_columns=\"2\" space_between_items=\"normal\" image_proportions=\"full\" order_by=\"name\" order=\"ASC\" enable_excerpt=\"yes\" enable_loop=\"yes\" enable_autoplay=\"yes\" enable_navigation=\"no\" enable_pagination=\"yes\" pagination_position=\"below-slider\" excerpt_length=\"77\" number_of_items=\"6\" selected_courses=\"272, 279\"][/vc_column][/vc_row]','Course Slider','','publish','closed','closed','','course-slider','','','2017-05-30 12:52:44','2017-05-30 12:52:44','',447,'http://iacademy.mikado-themes.com/?page_id=1092',0,'page','',0),(1103,1,'2017-05-30 13:04:02','2017-05-30 13:04:02','[vc_row content_text_aligment=\"left\" css=\".vc_custom_1497361215669{margin-top: -64px !important;padding-bottom: 11px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][mkdf_course_features course_id=\"18\"][/vc_column][/vc_row][vc_row content_text_aligment=\"left\" css=\".vc_custom_1497360528455{padding-bottom: 83px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 10% 0 0 \" item_padding_680_768=\"0 0 65px\" item_padding_680=\"0 0 65px\"][mkdf_course_features course_id=\"272\"][/mkdf_elements_holder_item][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 0 0 10%\" item_padding_680_768=\"0 0 \" item_padding_680=\"0 0 \"][mkdf_course_features course_id=\"274\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row]','Course Features','','publish','closed','closed','','course-features','','','2017-05-30 13:04:02','2017-05-30 13:04:02','',447,'http://iacademy.mikado-themes.com/?page_id=1103',0,'page','',0),(1106,1,'2017-05-30 13:10:49','2017-05-30 13:10:49','[vc_row content_text_aligment=\"left\" css=\".vc_custom_1496920706715{margin-top: -24px !important;padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][mkdf_course_table order_by=\"date\" order=\"ASC\" enable_instructor=\"no\" enable_students=\"no\" selected_courses=\"174, 229, 274, 279, 276\"][/vc_column][/vc_row]','Course Table','','publish','closed','closed','','course-table','','','2017-05-30 13:10:49','2017-05-30 13:10:49','',447,'http://iacademy.mikado-themes.com/?page_id=1106',0,'page','',0),(1111,1,'2017-05-30 13:17:43','2017-05-30 13:17:43','[vc_row content_text_aligment=\"left\" css=\".vc_custom_1497533074463{padding-top: 13px !important;padding-bottom: 60px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\" css=\".vc_custom_1497533066920{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-bottom: 7px !important;padding-left: 32px !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}\"][mkdf_course_search button_text=\"Search\" button_type=\"solid\" button_size=\"\" button_border_color=\"rgba(0,0,0,0.01)\" button_hover_border_color=\"rgba(0,0,0,0.01)\"][/vc_column][/vc_row][vc_row content_text_aligment=\"left\" css=\".vc_custom_1497364565778{padding-bottom: 60px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\" css=\".vc_custom_1497364188375{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-bottom: 7px !important;padding-left: 32px !important;background-color: #fafafa !important;border-left-color: #ebebeb !important;border-left-style: solid !important;border-right-color: #ebebeb !important;border-right-style: solid !important;border-top-color: #ebebeb !important;border-top-style: solid !important;border-bottom-color: #ebebeb !important;border-bottom-style: solid !important;}\"][mkdf_course_search button_text=\"Search\" button_type=\"solid\" button_size=\"\" button_border_color=\"rgba(0,0,0,0.01)\" button_hover_border_color=\"rgba(0,0,0,0.01)\"][/vc_column][/vc_row][vc_row content_text_aligment=\"left\" css=\".vc_custom_1497364637200{padding-bottom: 60px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\" css=\".vc_custom_1497364346129{padding-bottom: 7px !important;padding-left: 32px !important;background-color: #d8a64e !important;}\"][mkdf_course_search button_text=\"Search\" button_type=\"solid\" button_size=\"\" button_border_color=\"rgba(0,0,0,0.01)\" button_hover_border_color=\"rgba(0,0,0,0.01)\" button_color=\"#8a8a8a\" button_hover_color=\"#d8a64e\" button_background_color=\"#ffffff\" button_hover_background_color=\"#fafafa\"][/vc_column][/vc_row][vc_row content_text_aligment=\"left\" css=\".vc_custom_1497364630377{padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\" css=\".vc_custom_1497364600472{padding-bottom: 7px !important;padding-left: 32px !important;background-color: #ffd740 !important;}\"][mkdf_course_search button_text=\"Search\" button_type=\"solid\" button_size=\"\" button_border_color=\"rgba(0,0,0,0.01)\" button_hover_border_color=\"rgba(0,0,0,0.01)\" button_color=\"#8a8a8a\" button_hover_color=\"#d8a64e\" button_background_color=\"#ffffff\" button_hover_background_color=\"#fafafa\"][/vc_column][/vc_row]','Advanced Course Search','','publish','closed','closed','','advanced-course-search','','','2017-05-30 13:17:43','2017-05-30 13:17:43','',447,'http://iacademy.mikado-themes.com/?page_id=1111',0,'page','',0),(1117,1,'2017-05-30 13:27:32','2017-05-30 13:27:32','[vc_row content_text_aligment=\"left\" css=\".vc_custom_1497427509311{margin-top: -24px !important;padding-bottom: 93px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][mkdf_twitter_list number_of_columns=\"2\" user_id=\"3346513492\" number_of_tweets=\"4\"][/vc_column][/vc_row][vc_row content_text_aligment=\"left\" css=\".vc_custom_1497427521150{margin-top: -24px !important;padding-bottom: 98px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\" css=\".vc_custom_1497427374988{background-color: #d8a64e !important;}\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 20px\"][mkdf_twitter_list number_of_columns=\"2\" user_id=\"3346513492\" number_of_tweets=\"4\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row]','Twitter List','','publish','closed','closed','','twitter-list','','','2017-05-30 13:27:32','2017-05-30 13:27:32','',447,'http://iacademy.mikado-themes.com/?page_id=1117',0,'page','',0),(1119,1,'2017-05-30 13:40:36','2017-05-30 13:40:36','[vc_row content_text_aligment=\"left\" css=\".vc_custom_1496929834098{margin-top: -40px !important;padding-bottom: 60px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][mkdf_video_button video_link=\"https://vimeo.com/157562616\" video_image=\"70\" play_label=\"WATCH VIDEO\"][/vc_column][/vc_row][vc_row content_text_aligment=\"left\" css=\".vc_custom_1496929737703{padding-bottom: 100px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][mkdf_video_button video_link=\"https://vimeo.com/157562616\" video_image=\"232\"][/vc_column][/vc_row]','Video Button','','publish','closed','closed','','video-button','','','2017-05-30 13:40:36','2017-05-30 13:40:36','',447,'http://iacademy.mikado-themes.com/?page_id=1119',0,'page','',0),(1123,1,'2017-05-30 13:50:06','2017-05-30 13:50:06','[vc_row content_text_aligment=\"left\" css=\".vc_custom_1496925543740{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][vc_row_inner][vc_column_inner offset=\"vc_col-md-4\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0px 1% 45px\" item_padding_768_1024=\"0px 0% 60px\" item_padding_680_768=\"0px 10% 60px\" item_padding_680=\"0px 1% 60px\"][mkdf_icon_with_text type=\"icon-top\" icon_pack=\"font_awesome\" fa_icon=\"\" title_tag=\"h5\" custom_icon=\"425\" title=\"Notification \" text=\"Lorem ipsum oin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis\"][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0px 1%\" item_padding_768_1024=\"0px 0%\" item_padding_680=\"0px 1% 60px\" item_padding_680_768=\"0px 10% 60px\"][mkdf_icon_with_text type=\"icon-top\" icon_pack=\"font_awesome\" fa_icon=\"\" title_tag=\"h5\" custom_icon=\"428\" title=\"Knowledge\" text=\"Lorem ipsum oin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][vc_column_inner offset=\"vc_col-md-4\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0px 1% 45px\" item_padding_768_1024=\"0px 0% 60px\" item_padding_680_768=\"0px 10% 60px\" item_padding_680=\"0px 1% 60px\"][mkdf_icon_with_text type=\"icon-top\" icon_pack=\"font_awesome\" fa_icon=\"\" title_tag=\"h5\" custom_icon=\"426\" title=\"Certification\" text=\"Lorem ipsum oin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis\"][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0px 1% 60px\" item_padding_768_1024=\"0px 0% 60px\" item_padding_680=\"0px 1% 60px\" item_padding_680_768=\"0px 10% 60px\"][mkdf_icon_with_text type=\"icon-top\" icon_pack=\"font_awesome\" fa_icon=\"\" title_tag=\"h5\" custom_icon=\"429\" title=\"Success\" text=\"Lorem ipsum oin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][vc_column_inner offset=\"vc_col-md-4\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0px 1% 45px\" item_padding_768_1024=\"0px 0% 60px\" item_padding_680_768=\"0px 10% 60px\" item_padding_680=\"0px 1% 60px\"][mkdf_icon_with_text type=\"icon-top\" icon_pack=\"font_awesome\" fa_icon=\"\" title_tag=\"h5\" custom_icon=\"427\" title=\"Campus\" text=\"Lorem ipsum oin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis\"][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0px 1% 60px\" item_padding_768_1024=\"0px 0% 60px\" item_padding_680_768=\"0px 10% 60px\" item_padding_680=\"0px 1% 60px\"][mkdf_icon_with_text type=\"icon-top\" icon_pack=\"font_awesome\" fa_icon=\"\" title_tag=\"h5\" custom_icon=\"430\" title=\"Open Minds\" text=\"Lorem ipsum oin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row content_text_aligment=\"left\" css=\".vc_custom_1496926079528{margin-top: -24px !important;padding-bottom: 30px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][vc_row_inner][vc_column_inner offset=\"vc_col-md-4\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 10% 50px 0\" item_padding_768_1024=\"0 0 60px\" item_padding_680_768=\"0 0 60px\" item_padding_680=\"0 0 60px\" item_padding_1024_1280=\"0 3% 60px \"][mkdf_icon_with_text type=\"icon-left-from-title\" icon_pack=\"linear_icons\" linear_icon=\"lnr-history\" title_tag=\"h5\" custom_icon_size=\"30\" title=\"Notification \" text=\"Lorem ipsum proin gravida nibh vel veliauctor aliquenean sollicitudin bibendum auctor\" icon_color=\"#d8a64e\"][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 10% 60px 0 \" item_padding_768_1024=\"0 0 60px\" item_padding_680_768=\"0 0 60px\" item_padding_680=\"0 0 60px\" item_padding_1024_1280=\"0 3% 60px \"][mkdf_icon_with_text type=\"icon-left-from-title\" icon_pack=\"linear_icons\" linear_icon=\"lnr-license\" title_tag=\"h5\" custom_icon_size=\"30\" title=\"Certification \" text=\"Lorem ipsum proin gravida nibh vel veliauctor aliquenean sollicitudin bibendum auctor\" icon_color=\"#d8a64e\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][vc_column_inner offset=\"vc_col-md-4\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 10% 50px 0\" item_padding_768_1024=\"0 0 60px\" item_padding_680_768=\"0 0 60px\" item_padding_680=\"0 0 60px\" item_padding_1024_1280=\"0 3% 60px \"][mkdf_icon_with_text type=\"icon-left-from-title\" icon_pack=\"linear_icons\" linear_icon=\"lnr-bus\" title_tag=\"h5\" custom_icon_size=\"30\" title=\"Campus\" text=\"Lorem ipsum proin gravida nibh vel veliauctor aliquenean sollicitudin bibendum auctor\" icon_color=\"#d8a64e\"][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 10% 60px 0\" item_padding_768_1024=\"0 0 60px\" item_padding_680_768=\"0 0 60px\" item_padding_680=\"0 0 60px\" item_padding_1024_1280=\"0 3% 60px \"][mkdf_icon_with_text type=\"icon-left-from-title\" icon_pack=\"linear_icons\" linear_icon=\"lnr-apartment\" title_tag=\"h5\" custom_icon_size=\"30\" title=\"Success\" text=\"Lorem ipsum proin gravida nibh vel veliauctor aliquenean sollicitudin bibendum auctor\" icon_color=\"#d8a64e\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][vc_column_inner offset=\"vc_col-md-4\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 10% 50px 0\" item_padding_768_1024=\"0 0 60px\" item_padding_680_768=\"0 0 60px \" item_padding_680=\"0 0 60px\" item_padding_1024_1280=\"0 3% 60px \"][mkdf_icon_with_text type=\"icon-left-from-title\" icon_pack=\"linear_icons\" linear_icon=\"lnr-calendar-full\" title_tag=\"h5\" custom_icon_size=\"30\" title=\"Knowledge\" text=\"Lorem ipsum proin gravida nibh vel veliauctor aliquenean sollicitudin bibendum auctor\" icon_color=\"#d8a64e\"][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 10% 60px 0\" item_padding_768_1024=\"0 0 60px\" item_padding_680_768=\"0 0 60px \" item_padding_680=\"0 0 60px\" item_padding_1024_1280=\"0 3% 60px \"][mkdf_icon_with_text type=\"icon-left-from-title\" icon_pack=\"linear_icons\" linear_icon=\"lnr-camera\" title_tag=\"h5\" custom_icon_size=\"30\" title=\"Open Minds\" text=\"Lorem ipsum proin gravida nibh vel veliauctor aliquenean sollicitudin bibendum auctor\" icon_color=\"#d8a64e\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Icon With Text','','publish','closed','closed','','icon-with-text','','','2017-05-30 13:50:06','2017-05-30 13:50:06','',447,'http://iacademy.mikado-themes.com/?page_id=1123',0,'page','',0),(1144,1,'2017-05-30 14:30:02','2017-05-30 14:30:02','[vc_row css=\".vc_custom_1496155086361{margin-top: -24px !important;padding-bottom: 45px !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][vc_column_text]\n<h1>Heading 1</h1>\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/4\"][vc_column_text]Lorem ipsum dolor sit amet, congue porttitor sed duis curae a et. Eleifend dictum dolor.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text]Lorem ipsum dolor sit amet, congue porttitor sed duis curae a et. Eleifend dictum dolor.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text]Lorem ipsum dolor sit amet, congue porttitor sed duis curae a et. Eleifend dictum dolor.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text]Lorem ipsum dolor sit amet, congue porttitor sed duis curae a et. Eleifend dictum dolor.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1496052746065{margin-top: -10px !important;padding-bottom: 45px !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][vc_column_text]\n<h2>Heading 2</h2>\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text][mkdf_dropcaps type=\"square\" color=\"#ffffff\" background_color=\"#282727\"]L[/mkdf_dropcaps]orem ipsum dolor sit amet, congue porttitor sed duis curae a et. Eleifend non dictum dolor lacus.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]Lorem ipsum dolor sit amet, congue [mkdf_highlight background_color=\"#282727\" color=\"#ffffff\"]porttitor sed duis curae[/mkdf_highlight] a et. Eleifend non dictum dolor, faucibus lacus diam.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]Lorem ipsum dolor sit amet, congue porttitor sed duis curae a et. Eleifend non dictum dolor, faucibus lacus diam.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1496052753133{margin-top: -10px !important;padding-bottom: 45px !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][vc_column_text]\n<h3>Heading 3</h3>\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text][mkdf_dropcaps type=\"square\" color=\"#ffffff\" background_color=\"#d8a64e\"]L[/mkdf_dropcaps]orem ipsum dolor sit amet, congue porttitor sed duis curae a et. Eleifend non dictum dolor, lacus diam sapien. Tellus metus magnis faucibus faucibus suspendisse etiam, mi non, neque pretium saepe, suspendisse vel.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text]Lorem ipsum dolor sit amet, congue porttitor sed duis curae a et. [mkdf_highlight background_color=\"#d8a64e\" color=\"#ffffff\"]Eleifend non dictum dolor[/mkdf_highlight], lacus diam sapien. Tellus metus magnis faucibus faucibus suspendisse etiam, mi non, neque pretium saepe, suspendisse vel mattis.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1496052753133{margin-top: -10px !important;padding-bottom: 45px !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][vc_column_text]\n<h4>Heading 4</h4>\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text]Lorem ipsum dolor sit amet, congue porttitor sed duis curae a et. Eleifend non dictum dolor, lacus diam.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]Lorem ipsum dolor sit amet, congue porttitor sed duis curae a et. Eleifend non dictum dolor, lacus diam sapien. Tellus metus magnis faucibus faucibus suspendisse etiam, mi non, neque pretium saepe, suspendisse vel mattis.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1496052753133{margin-top: -10px !important;padding-bottom: 45px !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][vc_column_text]\n<h5>Heading 5</h5>\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/4\"][vc_column_text]Lorem ipsum dolor sit amet, congue porttitor sed duis curae a et.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"3/4\"][vc_column_text]Lorem ipsum dolor sit amet, congue porttitor sed duis curae a et. Eleifend non dictum dolor, lacus diam sapien. Tellus metus magnis faucibus faucibus suspendisse etiam, mi non, neque pretium saepe, suspendisse vel mattis.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1496052753133{margin-top: -10px !important;padding-bottom: 45px !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][vc_column_text]\n<h6>Heading 6</h6>\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_row_inner css=\".vc_custom_1496053048146{padding-bottom: 47px !important;}\"][vc_column_inner width=\"3/4\"][vc_column_text]Lorem ipsum dolor sit amet, congue porttitor sed duis curae a et. Eleifend non dictum dolor, lacus diam sapien. Tellus metus magnis faucibus faucibus suspendisse etiam, mi non, neque pretium saepe, suspendisse vel mattis.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text]Lorem ipsum dolor sit amet, congue porttitor sed duis curae a et.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1496052753133{margin-top: -10px !important;padding-bottom: 45px !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][vc_row_inner][vc_column_inner width=\"1/3\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" title=\"Lorem ipsum dolor sit\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" title=\"Theme natoque\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" title=\"Aliquam lorem ante\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" title=\"Phasellus viverra nulla ut\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" title=\"Aenean commodo ligula\"][/vc_column_inner][vc_column_inner width=\"1/3\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" title=\"Lorem ipsum dolor sit\" icon_color=\"#8a8a8a\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" title=\"Theme natoque\" icon_color=\"#8a8a8a\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" title=\"Aliquam lorem ante\" icon_color=\"#8a8a8a\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" title=\"Phasellus viverra nulla ut\" icon_color=\"#8a8a8a\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" title=\"Aenean commodo ligula\" icon_color=\"#8a8a8a\"][/vc_column_inner][vc_column_inner width=\"1/3\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" title=\"Lorem ipsum dolor sit\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" title=\"Theme natoque\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" title=\"Aliquam lorem ante\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" title=\"Phasellus viverra nulla ut\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" title=\"Aenean commodo ligula\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1496155548728{margin-top: -20px !important;padding-bottom: 45px !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][vc_custom_heading text=\"600+\" font_container=\"tag:h2|font_size:80px|text_align:left|line_height:96px\" google_fonts=\"font_family:Source%20Sans%20Pro%3A200%2C200italic%2C300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_custom_heading text=\"GOOGLE FONTS TO CHOOSE FROM\" font_container=\"tag:h2|font_size:42px|text_align:left|line_height:50px\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:400%20regular%3A400%3Anormal\"][vc_separator css=\".vc_custom_1496057885455{padding-top: 3px !important;padding-bottom: 3px !important;}\"][vc_custom_heading text=\"Choose your font from the Google collection\" font_container=\"tag:h2|font_size:26px|text_align:left|color:%2340c4ff|line_height:30px\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:400%20regular%3A400%3Anormal\"][vc_separator css=\".vc_custom_1496058049070{padding-top: 7px !important;}\"][vc_custom_heading text=\"Choose your font from the Google collection\" font_container=\"tag:h2|font_size:32px|text_align:left|color:%23afafaf|line_height:40px\" google_fonts=\"font_family:Habibi%3Aregular|font_style:400%20regular%3A400%3Anormal\"][vc_separator css=\".vc_custom_1496058089543{padding-top: 4px !important;padding-bottom: 7px !important;}\"][vc_custom_heading text=\"CHOOSE YOUR FONT FROM THE GOOGLE COLLECTION\" font_container=\"tag:h2|font_size:24px|text_align:left|color:%23222328|line_height:30px\" google_fonts=\"font_family:Source%20Sans%20Pro%3A200%2C200italic%2C300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C900%2C900italic|font_style:600%20bold%20regular%3A600%3Anormal\"][vc_separator css=\".vc_custom_1496058116847{padding-top: 5px !important;padding-bottom: 6px !important;}\"][vc_custom_heading text=\"CHOOSE YOUR FONT FROM THE GOOGLE COLLECTION\" font_container=\"tag:h2|font_size:18px|text_align:left|color:%23222328|line_height:28px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:400%20regular%3A400%3Anormal\"][vc_separator css=\".vc_custom_1496058154193{padding-top: 5px !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1496155675169{padding-top: 17px !important;padding-bottom: 100px !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][vc_custom_heading text=\"Large Title\" font_container=\"tag:h1|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris.[/vc_column_text][vc_separator css=\".vc_custom_1496058779881{padding-top: 40px !important;padding-bottom: 30px !important;}\"][vc_custom_heading text=\"Medium Title\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris.[/vc_column_text][vc_separator css=\".vc_custom_1496058827327{padding-top: 40px !important;padding-bottom: 35px !important;}\"][vc_custom_heading text=\"Small Title\" font_container=\"tag:h5|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris.[/vc_column_text][vc_separator css=\".vc_custom_1496058906918{padding-top: 40px !important;padding-bottom: 62px !important;}\"][vc_custom_heading text=\"Subtitles\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0px 40% 0px 0%\"][vc_column_text]\n<div class=\"mkd-section-subtitle-holder mkd-section-subtitle-left\">\n<p class=\"mkd-section-subtitle\">Lorem ipsum dolor sit amet, nunc mi eget, augue nec integer amet et, luctus eu cras curabitur, ut orci eget.</p>\n\n</div>\n<div class=\"mkd-separator-holder clearfix mkd-separator-center mkd-separator-full-width\"></div>\n[/vc_column_text][/mkdf_elements_holder_item][/mkdf_elements_holder][vc_separator css=\".vc_custom_1496058981391{padding-top: 40px !important;padding-bottom: 30px !important;}\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0px 23% 0px 0%\"][vc_column_text]\n<div class=\"mkd-section-subtitle-holder mkd-section-subtitle-left\">\n<p class=\"mkd-section-subtitle\">Lorem ipsum dolor sit amet, nunc mi eget, augue nec integer amet et, luctus eu cras curabitur, ut orci eget, orci suspendisse autem sem rutrum libero.</p>\n\n</div>\n[/vc_column_text][/mkdf_elements_holder_item][/mkdf_elements_holder][vc_separator css=\".vc_custom_1496058990023{padding-top: 40px !important;padding-bottom: 30px !important;}\"][vc_column_text]\n<div class=\"mkd-section-subtitle-holder mkd-section-subtitle-left\">\n<p class=\"mkd-section-subtitle\">Lorem ipsum dolor sit amet, nunc mi eget, augue nec integer amet et, luctus eu cras curabitur, ut orci eget, orci suspendisse autem sem rutrum libero. Ullamcorper suspendisse suspendisse.</p>\n\n</div>\n[/vc_column_text][vc_separator css=\".vc_custom_1496058996303{padding-top: 40px !important;}\"][/vc_column][/vc_row]','Typography','','publish','closed','closed','','typography','','','2017-05-30 14:30:02','2017-05-30 14:30:02','',447,'http://iacademy.mikado-themes.com/?page_id=1144',0,'page','',0),(1156,1,'2017-05-30 14:40:27','2017-05-30 14:40:27','','blog-post-1','','inherit','open','closed','','blog-post-1','','','2017-05-30 14:40:27','2017-05-30 14:40:27','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/blog-post-1.jpg',0,'attachment','image/jpeg',0),(1157,1,'2017-05-30 14:40:29','2017-05-30 14:40:29','','blog-post-2','','inherit','open','closed','','blog-post-2','','','2017-05-30 14:40:29','2017-05-30 14:40:29','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/blog-post-2.jpg',0,'attachment','image/jpeg',0),(1158,1,'2017-05-30 14:40:31','2017-05-30 14:40:31','','blog-post-3','','inherit','open','closed','','blog-post-3','','','2017-05-30 14:40:31','2017-05-30 14:40:31','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/blog-post-3.jpg',0,'attachment','image/jpeg',0),(1160,1,'2017-05-30 14:40:33','2017-05-30 14:40:33','','blog-post-4','','inherit','open','closed','','blog-post-4','','','2017-05-30 14:40:33','2017-05-30 14:40:33','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/blog-post-4.jpg',0,'attachment','image/jpeg',0),(1163,1,'2017-05-29 14:20:07','2017-05-29 14:20:07','[vc_row][vc_column][vc_column_text css=\".vc_custom_1497863664387{margin-top: -12px !important;padding-bottom: 27px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_column_text]\n<blockquote>We teach, and encourage a love of learning, collaboration, and compassion. Everyone a learner everyday.</blockquote>\n[/vc_column_text][vc_column_text css=\".vc_custom_1497863671627{padding-top: 25px !important;padding-bottom: 53px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_single_image image=\"770\" img_size=\"full\"][vc_column_text css=\".vc_custom_1497863681043{padding-top: 38px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][/vc_column][/vc_row]','Opening doors through literacy.','Donec vitae sapien ut libero venenatis faucibus. Nullam quis ante. Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh. Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus. Phasellus viverra nulla ut metus varius laoreet. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.','publish','open','open','','opening-doors-through-literacy','','','2017-05-29 14:20:07','2017-05-29 14:20:07','',0,'http://iacademy.mikado-themes.com/?p=1163',0,'post','',0),(1189,1,'2017-05-29 14:15:24','2017-05-29 14:15:24','[vc_row css=\".vc_custom_1496156484829{padding-top: 50px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1497863619829{margin-top: -12px !important;padding-bottom: 27px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_column_text]\n<blockquote>We teach, and encourage a love of learning, collaboration, and compassion. Everyone a learner everyday.</blockquote>\n[/vc_column_text][vc_column_text css=\".vc_custom_1497863627316{padding-top: 25px !important;padding-bottom: 53px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_single_image image=\"770\" img_size=\"full\"][vc_column_text css=\".vc_custom_1497863634836{padding-top: 38px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][/vc_column][/vc_row]','Fit Your Busy Life.','Donec vitae sapien ut libero venenatis faucibus. Nullam quis ante. Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh. Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus. Phasellus viverra nulla ut metus varius laoreet. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.','publish','open','open','','fit-your-busy-life','','','2017-05-29 14:15:24','2017-05-29 14:15:24','',0,'http://iacademy.mikado-themes.com/?p=1189',0,'post','',2),(1199,1,'2017-05-29 14:10:00','2017-05-29 14:10:00','[vc_row][vc_column][vc_column_text css=\".vc_custom_1497863577677{margin-top: -12px !important;padding-bottom: 27px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_column_text]\n<blockquote>We teach, and encourage a love of learning, collaboration, and compassion. Everyone a learner everyday.</blockquote>\n[/vc_column_text][vc_column_text css=\".vc_custom_1497863586997{padding-top: 25px !important;padding-bottom: 53px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_single_image image=\"770\" img_size=\"full\"][vc_column_text css=\".vc_custom_1497863594333{padding-top: 38px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][/vc_column][/vc_row]','Motivated achievers perform, learn, excel.','Donec vitae sapien ut libero venenatis faucibus. Nullam quis ante. Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh. Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus. Phasellus viverra nulla ut metus varius laoreet. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.','publish','open','open','','motivated-achievers-perform-learn-excel','','','2017-05-29 14:10:00','2017-05-29 14:10:00','',0,'http://iacademy.mikado-themes.com/?p=1199',0,'post','',0),(1203,1,'2017-05-29 14:05:04','2017-05-29 14:05:04','[vc_row css=\".vc_custom_1496157120523{padding-top: 50px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1497863531325{margin-top: -12px !important;padding-bottom: 27px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_column_text]\n<blockquote>We teach, and encourage a love of learning, collaboration, and compassion. Everyone a learner everyday.</blockquote>\n[/vc_column_text][vc_column_text css=\".vc_custom_1497863540172{padding-top: 25px !important;padding-bottom: 53px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_single_image image=\"770\" img_size=\"full\"][vc_column_text css=\".vc_custom_1497863547523{padding-top: 38px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][/vc_column][/vc_row]','Class That Fit Your Busy Life.','Donec vitae sapien ut libero venenatis faucibus. Nullam quis ante. Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh. Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus. Phasellus viverra nulla ut metus varius laoreet. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.','publish','open','open','','class-that-fit-your-busy-life-2','','','2017-05-29 14:05:04','2017-05-29 14:05:04','',0,'http://iacademy.mikado-themes.com/?p=1203',0,'post','',0),(1209,1,'2017-05-30 15:14:56','2017-05-30 15:14:56','','h3-background-img-1','','inherit','open','closed','','h3-background-img-1','','','2017-05-30 15:14:56','2017-05-30 15:14:56','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h3-background-img-1.jpg',0,'attachment','image/jpeg',0),(1212,1,'2017-05-30 15:30:24','2017-05-30 15:30:24','[vc_row][vc_column][vc_column_text css=\".vc_custom_1497864453410{margin-top: -12px !important;padding-bottom: 27px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_column_text]\n<blockquote>We teach, and encourage a love of learning, collaboration, and compassion. Everyone a learner everyday.</blockquote>\n[/vc_column_text][vc_column_text css=\".vc_custom_1497864462817{padding-top: 25px !important;padding-bottom: 53px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_single_image image=\"770\" img_size=\"full\"][vc_column_text css=\".vc_custom_1497864473416{padding-top: 38px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][/vc_column][/vc_row]','Meeting your tuition needs.','Donec vitae sapien ut libero venenatis faucibus. Nullam quis ante. Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh. Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus. Phasellus viverra nulla ut metus varius laoreet. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.','publish','open','open','','meeting-your-tuition-needs','','','2017-05-30 15:30:24','2017-05-30 15:30:24','',0,'http://iacademy.mikado-themes.com/?p=1212',0,'post','',0),(1214,1,'2017-05-30 15:25:51','2017-05-30 15:25:51','[vc_row][vc_column][vc_column_text css=\".vc_custom_1497864352234{margin-top: -12px !important;padding-bottom: 27px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_column_text]\n<blockquote>We teach, and encourage a love of learning, collaboration, and compassion. Everyone a learner everyday.</blockquote>\n[/vc_column_text][vc_column_text css=\".vc_custom_1497864360833{padding-top: 25px !important;padding-bottom: 53px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_single_image image=\"770\" img_size=\"full\"][vc_column_text css=\".vc_custom_1497864369259{padding-top: 38px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][/vc_column][/vc_row]','Building an Excellence.','Donec vitae sapien ut libero venenatis faucibus. Nullam quis ante. Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh. Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus. Phasellus viverra nulla ut metus varius laoreet. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.','publish','open','open','','building-an-excellence','','','2017-05-30 15:25:51','2017-05-30 15:25:51','',0,'http://iacademy.mikado-themes.com/?p=1214',0,'post','',0),(1216,1,'2017-05-30 15:20:21','2017-05-30 15:20:21','[vc_row][vc_column][vc_column_text css=\".vc_custom_1497864301067{margin-top: -12px !important;padding-bottom: 27px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_column_text]\n<blockquote>We teach, and encourage a love of learning, collaboration, and compassion. Everyone a learner everyday.</blockquote>\n[/vc_column_text][vc_column_text css=\".vc_custom_1497864309507{padding-top: 25px !important;padding-bottom: 53px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_single_image image=\"770\" img_size=\"full\"][vc_column_text css=\".vc_custom_1497864321385{padding-top: 38px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][/vc_column][/vc_row]','Going Anywhere Starts Here.','Donec vitae sapien ut libero venenatis faucibus. Nullam quis ante. Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh. Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus. Phasellus viverra nulla ut metus varius laoreet. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.','publish','open','open','','going-anywhere-starts-here','','','2017-05-30 15:20:21','2017-05-30 15:20:21','',0,'http://iacademy.mikado-themes.com/?p=1216',0,'post','',0),(1217,1,'2017-05-30 15:34:32','2017-05-30 15:34:32','','blog-post-5','','inherit','open','closed','','blog-post-5','','','2017-05-30 15:34:32','2017-05-30 15:34:32','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/blog-post-5.jpg',0,'attachment','image/jpeg',0),(1219,1,'2017-05-30 15:15:02','2017-05-30 15:15:02','[vc_row][vc_column][vc_column_text css=\".vc_custom_1497864249805{margin-top: -12px !important;padding-bottom: 27px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_column_text]\n<blockquote>We teach, and encourage a love of learning, collaboration, and compassion. Everyone a learner everyday.</blockquote>\n[/vc_column_text][vc_column_text css=\".vc_custom_1497864261467{padding-top: 25px !important;padding-bottom: 53px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_single_image image=\"770\" img_size=\"full\"][vc_column_text css=\".vc_custom_1497864271586{padding-top: 38px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][/vc_column][/vc_row]','Helping students reach their potential.','Donec vitae sapien ut libero venenatis faucibus. Nullam quis ante. Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh. Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus. Phasellus viverra nulla ut metus varius laoreet. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.','publish','open','open','','helping-students-reach-their-potential','','','2017-05-30 15:15:02','2017-05-30 15:15:02','',0,'http://iacademy.mikado-themes.com/?p=1219',0,'post','',0),(1221,1,'2017-05-30 15:10:38','2017-05-30 15:10:38','[vc_row][vc_column][vc_column_text css=\".vc_custom_1497864151316{margin-top: -12px !important;padding-bottom: 27px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_column_text]\n<blockquote>We teach, and encourage a love of learning, collaboration, and compassion. Everyone a learner everyday.</blockquote>\n[/vc_column_text][vc_column_text css=\".vc_custom_1497864161443{padding-top: 25px !important;padding-bottom: 53px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_single_image image=\"770\" img_size=\"full\"][vc_column_text css=\".vc_custom_1497864171043{padding-top: 38px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][/vc_column][/vc_row]','We Enrich Lives Through Learning.','Donec vitae sapien ut libero venenatis faucibus. Nullam quis ante. Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh. Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus. Phasellus viverra nulla ut metus varius laoreet. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.','publish','open','open','','we-enrich-lives-through-learning','','','2017-05-30 15:10:38','2017-05-30 15:10:38','',0,'http://iacademy.mikado-themes.com/?p=1221',0,'post','',0),(1225,1,'2017-05-31 07:19:15','2017-05-31 07:19:15','','h5-img-1','','inherit','open','closed','','h5-img-1','','','2017-05-31 07:19:15','2017-05-31 07:19:15','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h5-img-1.jpg',0,'attachment','image/jpeg',0),(1235,1,'2017-05-31 07:30:07','2017-05-31 07:30:07','','h5-img-2','','inherit','open','closed','','h5-img-2','','','2017-05-31 07:30:07','2017-05-31 07:30:07','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h5-img-2.jpg',0,'attachment','image/jpeg',0),(1242,1,'2017-05-31 08:00:01','2017-05-31 08:00:01','','Blog Standard','','publish','closed','closed','','blog-standard','','','2017-05-31 08:00:01','2017-05-31 08:00:01','',0,'http://iacademy.mikado-themes.com/?page_id=1242',0,'page','',0),(1246,1,'2017-05-29 14:00:28','2017-05-29 14:00:28','[vc_row][vc_column][vc_column_text css=\".vc_custom_1497863474700{margin-top: -12px !important;padding-bottom: 27px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_column_text]\n<blockquote>We teach, and encourage a love of learning, collaboration, and compassion. Everyone a learner everyday.</blockquote>\n[/vc_column_text][vc_column_text css=\".vc_custom_1497863485859{padding-top: 25px !important;padding-bottom: 53px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_single_image image=\"770\" img_size=\"full\"][vc_column_text css=\".vc_custom_1497863494450{padding-top: 38px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][/vc_column][/vc_row]','Helping students help themselves.','Donec vitae sapien ut libero venenatis faucibus. Nullam quis ante. Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh. Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus. Phasellus viverra nulla ut metus varius laoreet. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.','publish','open','open','','helping-students-help-themselves','','','2017-05-29 14:00:28','2017-05-29 14:00:28','',0,'http://iacademy.mikado-themes.com/?p=1246',0,'post','',0),(1305,1,'2017-05-31 09:21:29','2017-05-31 09:21:29','[vc_row row_content_width=\"grid\" css=\".vc_custom_1497342919024{padding-top: 115px !important;padding-bottom: 75px !important;}\" simple_background_color=\"#ffffff\"][vc_column][mkdf_blog_list type=\"standard\" number_of_columns=\"3\" order_by=\"title\" order=\"ASC\" post_info_image=\"no\" post_info_category=\"no\" number_of_posts=\"3\" excerpt_length=\"30\"][/vc_column][/vc_row][vc_row][vc_column][mkdf_separator type=\"full-width\" border_style=\"\" color=\"#ebebeb\" thickness=\"1\" top_margin=\"0px\" bottom_margin=\"0px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1496389458613{padding-top: 110px !important;padding-bottom: 98px !important;}\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 20% 92px\" item_padding_768_1024=\"0 10% 92px\" item_padding_680_768=\"0 0 92px\" item_padding_680=\"0 0 92px\"][mkdf_section_title type=\"standard\" title_tag=\"h1\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" title=\"Popular Online Courses\" text=\"Lorem ipsum gravida nibh vel velit auctor aliquetnean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit \" text_font_size=\"17\"][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_course_list number_of_columns=\"4\" space_between_items=\"normal\" number_of_items=\"8\" order_by=\"date\" order=\"ASC\" title_tag=\"h5\" excerpt_length=\"82\"][/vc_column][/vc_row][vc_row][vc_column][mkdf_separator type=\"full-width\" border_style=\"\" color=\"#ebebeb\" thickness=\"1\" top_margin=\"0px\" bottom_margin=\"0px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1496228442832{padding-top: 123px !important;padding-bottom: 123px !important;}\" simple_background_color=\"#ffffff\"][vc_column offset=\"vc_col-md-4\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 10% 87px\" item_padding_1280_1600=\"0 10% 87px\" item_padding_1024_1280=\"0 4% 87px\" item_padding_768_1024=\"0 0 87px\" item_padding_680_768=\"0 7% 70px\" item_padding_680=\"0 0 70px\"][mkdf_icon_with_text type=\"icon-top\" icon_pack=\"font_awesome\" fa_icon=\"\" title_tag=\"\" custom_icon=\"425\" title=\"Notification \" text=\"Lorem ipsum oin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis bibendum auctor, nisi elit consequa\"][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 10%\" item_padding_1280_1600=\"0 10%\" item_padding_1024_1280=\"0 4%\" item_padding_768_1024=\"0 0 \" item_padding_680_768=\"0 7% 70px\" item_padding_680=\"0 0 70px\"][mkdf_icon_with_text type=\"icon-top\" icon_pack=\"font_awesome\" fa_icon=\"\" title_tag=\"\" custom_icon=\"428\" title=\"Knowledge \" text=\"Lorem ipsum oin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis bibendum auctor, nisi elit consequa\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column offset=\"vc_col-md-4\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 10% 87px\" item_padding_1280_1600=\"0 10% 87px\" item_padding_1024_1280=\"0 4% 87px\" item_padding_768_1024=\"0 0 87px\" item_padding_680_768=\"0 7% 70px\" item_padding_680=\"0 0 70px\"][mkdf_icon_with_text type=\"icon-top\" icon_pack=\"font_awesome\" fa_icon=\"\" title_tag=\"\" custom_icon=\"426\" title=\"Certification\" text=\"Lorem ipsum oin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis bibendum auctor, nisi elit consequa\"][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 10% \" item_padding_1280_1600=\"0 10%\" item_padding_1024_1280=\"0 4%\" item_padding_768_1024=\"0 0 \" item_padding_680_768=\"0 7% 70px\" item_padding_680=\"0 0 70px\"][mkdf_icon_with_text type=\"icon-top\" icon_pack=\"font_awesome\" fa_icon=\"\" title_tag=\"\" custom_icon=\"429\" title=\"Success\" text=\"Lorem ipsum oin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis bibendum auctor, nisi elit consequa\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column offset=\"vc_col-md-4\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 10% 87px\" item_padding_1280_1600=\"0 10% 87px\" item_padding_1024_1280=\"0 4% 87px\" item_padding_768_1024=\"0 0 87px\" item_padding_680_768=\"0 7% 70px\" item_padding_680=\"0 0 70px\"][mkdf_icon_with_text type=\"icon-top\" icon_pack=\"font_awesome\" fa_icon=\"\" title_tag=\"\" custom_icon=\"427\" title=\"Campus\" text=\"Lorem ipsum oin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis bibendum auctor, nisi elit consequa\"][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 10%\" item_padding_1280_1600=\"0 10%\" item_padding_1024_1280=\"0 4% \" item_padding_768_1024=\"0 0 \" item_padding_680_768=\"0 7% 0\" item_padding_680=\"0 0 70px\"][mkdf_icon_with_text type=\"icon-top\" icon_pack=\"font_awesome\" fa_icon=\"\" title_tag=\"\" custom_icon=\"430\" title=\"Open Minds\" text=\"Lorem ipsum oin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis bibendum auctor, nisi elit consequa\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row][vc_column][mkdf_separator type=\"full-width\" border_style=\"\" color=\"#ebebeb\" thickness=\"1\" top_margin=\"0px\" bottom_margin=\"0px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" content_text_aligment=\"center\" css=\".vc_custom_1496228110517{padding-top: 110px !important;padding-bottom: 100px !important;}\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 20% 92px\" item_padding_768_1024=\"0 10% 92px\" item_padding_680_768=\"0 0 92px\" item_padding_680=\"0 0 92px\"][mkdf_section_title type=\"standard\" title_tag=\"h1\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" title=\"Pricing Plans\" text=\"Lorem ipsum gravida nibh vel velit auctor aliquetnean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit \" text_font_size=\"17\"][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_pricing_table columns=\"mkdf-three-columns\" space_between_columns=\"normal\"][mkdf_pricing_table_item active=\"no\" title=\"Basic Plan\" button_text=\"PURCHASE\" button_type=\"solid\" content_background_color=\"#ffffff\" price=\"33\" currency=\"$\" price_period=\"per month\" link=\"http://iacademy.mikado-themes.com/course-category/business/\"]\n<ul>\n 	<li>Basic Marketing Course</li>\n 	<li>Business English</li>\n 	<li>Learn Design Principles</li>\n 	<li>Financial Modeling</li>\n</ul>\n[/mkdf_pricing_table_item][mkdf_pricing_table_item active=\"yes\" title=\"Professional\" button_text=\"PURCHASE\" button_type=\"solid\" content_background_color=\"#ffffff\" price=\"59\" currency=\"$\" price_period=\"PER MONTH\" link=\"http://iacademy.mikado-themes.com/course-category/languages/\"]\n<ul>\n 	<li>Basic Marketing Course</li>\n 	<li>Learn Design Principles</li>\n 	<li>Financial Modeling</li>\n 	<li>Basic Photography Course</li>\n</ul>\n[/mkdf_pricing_table_item][mkdf_pricing_table_item active=\"no\" title=\"Exclusive\" button_text=\"PURCHASE\" button_type=\"solid\" content_background_color=\"#ffffff\" price=\"99\" currency=\"$\" price_period=\"PER MONTH\" link=\"http://iacademy.mikado-themes.com/course-category/programming/\"]\n<ul>\n 	<li>Basic Marketing Course</li>\n 	<li>Business English</li>\n 	<li>Financial Modeling</li>\n 	<li>Learn Design Principles</li>\n</ul>\n[/mkdf_pricing_table_item][/mkdf_pricing_table][/vc_column][/vc_row][vc_row][vc_column][mkdf_separator type=\"full-width\" border_style=\"\" color=\"#ebebeb\" thickness=\"1\" top_margin=\"0px\" bottom_margin=\"0px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1496229853522{padding-top: 110px !important;padding-bottom: 120px !important;}\" simple_background_color=\"#ffffff\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 20% 62px\" item_padding_768_1024=\"0 10% 62px\" item_padding_680_768=\"0 0 62px\" item_padding_680=\"0 0 62px\"][mkdf_section_title type=\"standard\" title_tag=\"h1\" disable_break_words=\"yes\" text_tag=\"\" text_font_weight=\"\" title=\"Motivation &amp; Inspiration\" text=\"Lorem ipsum gravida nibh vel velit auctor aliquetnean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit \" text_font_size=\"17\"][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_process number_of_items=\"four\"][mkdf_process_item highlighted=\"no\" image=\"778\" title=\"Sketch\" text=\"Lorem ipsum proin gravida nibh vel veliauctor\"][mkdf_process_item highlighted=\"no\" image=\"779\" title=\"Creative Process\" text=\"Lorem ipsum proin gravida nibh vel veliauctor\"][mkdf_process_item highlighted=\"yes\" image=\"781\" title=\"Learning Stage\" text=\"Lorem ipsum proin gravida nibh vel veliauctor aliquenean sollicitu\"][mkdf_process_item highlighted=\"no\" image=\"783\" title=\"Final Product\" text=\"Lorem ipsum proin gravida nibh vel veliauctor\"][/mkdf_process][/vc_column][/vc_row]','Home 3','','publish','closed','closed','','home-3','','','2017-05-31 09:21:29','2017-05-31 09:21:29','',0,'http://iacademy.mikado-themes.com/?page_id=1305',0,'page','',0),(1324,1,'2017-05-31 09:44:55','2017-05-31 09:44:55','','Blog Split','','publish','closed','closed','','blog-split','','','2017-05-31 09:44:55','2017-05-31 09:44:55','',0,'http://iacademy.mikado-themes.com/?page_id=1324',0,'page','',0),(1328,1,'2017-05-31 10:05:20','2017-05-31 10:05:20','[vc_row content_text_aligment=\"left\" css=\".vc_custom_1496226223859{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" anchor=\"branding\"][vc_column width=\"11/12\" offset=\"vc_col-lg-offset-1\"][vc_column_text]\n<div class=\"mkd-elements-holder mkd-responsive-mode-768\">\n<div class=\"mkd-eh-item \" data-item-class=\"mkd-eh-custom-403523\" data-768-1024=\"50px 0 0 0\" data-600-768=\"50px 0 0 0\" data-480-600=\"50px 0 0 0\" data-480=\"50px 0 0 0\">\n<div class=\"mkd-eh-item-inner\">\n<div class=\"mkd-eh-item-content mkd-eh-custom-403523\">\n<div class=\"wpb_text_column wpb_content_element \">\n<div class=\"wpb_wrapper\">\n<h5>1. Branding is simply a more efficient way to sell things?</h5>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n[/vc_column_text][vc_column_text]\n<div class=\"mkd-elements-holder mkd-responsive-mode-768\">\n<div class=\"mkd-eh-item \" data-item-class=\"mkd-eh-custom-403523\" data-768-1024=\"50px 0 0 0\" data-600-768=\"50px 0 0 0\" data-480-600=\"50px 0 0 0\" data-480=\"50px 0 0 0\">\n<div class=\"mkd-eh-item-inner\">\n<div class=\"mkd-eh-item-content mkd-eh-custom-403523\">\n<div class=\"wpb_text_column wpb_content_element \">\n<div class=\"wpb_wrapper\">\n\nLorem ipsum dolor sit amet, consectetur a elit. In ut ullamcorper leo, eget euismod orci. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus musbulum ultricies aliquam convallis. Maecenas ut tellus mi. Proin tincidunt, lectus eu volutpat mattis, ante metus lacinia tellus, vitae condimentum nulla enim bibendum nibh. Praesent turpis risus, interdum nec venenatis id, pretium sit amet purus. Interdum et malesuada fames ac ante ipsum primis in faucibus. Aliquam eu lorem nibh. Mauris ex dolor, rutrum in odio vel, suscipit ultrices nunc. Cras ipsum dolor, eleifend et nisl vel, tempor molestie nibh. In hac habitasse platea dictumst. Proin nec blandit ligula.\n\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n[/vc_column_text][/vc_column][/vc_row][vc_row content_text_aligment=\"left\" css=\".vc_custom_1496226244722{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" anchor=\"marketing\"][vc_column width=\"11/12\" offset=\"vc_col-lg-offset-1\"][vc_column_text]\n<div class=\"mkd-elements-holder mkd-responsive-mode-768\">\n<div class=\"mkd-eh-item \" data-item-class=\"mkd-eh-custom-403523\" data-768-1024=\"50px 0 0 0\" data-600-768=\"50px 0 0 0\" data-480-600=\"50px 0 0 0\" data-480=\"50px 0 0 0\">\n<div class=\"mkd-eh-item-inner\">\n<div class=\"mkd-eh-item-content mkd-eh-custom-403523\">\n<div class=\"wpb_text_column wpb_content_element \">\n<div class=\"wpb_wrapper\">\n<h5 class=\"vc_row wpb_row vc_row-fluid vc_custom_1486721143332\" data-mkd-anchor=\"branding\"> 2. It’s better to be first in the mind than to be first in the marketplace?</h5>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n[/vc_column_text][vc_column_text]\n<div class=\"mkd-elements-holder mkd-responsive-mode-768\">\n<div class=\"mkd-eh-item \" data-item-class=\"mkd-eh-custom-403523\" data-768-1024=\"50px 0 0 0\" data-600-768=\"50px 0 0 0\" data-480-600=\"50px 0 0 0\" data-480=\"50px 0 0 0\">\n<div class=\"mkd-eh-item-inner\">\n<div class=\"mkd-eh-item-content mkd-eh-custom-403523\">\n<div class=\"wpb_text_column wpb_content_element \">\n<div class=\"wpb_wrapper\">\n<div class=\"wpb_text_column wpb_content_element \">\n<div class=\"wpb_wrapper\">\n\nLorem ipsum dolor sit amet, consectetur a elit. In ut ullamcorper leo, eget euismod orci. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus musbulum ultricies aliquam convallis. Maecenas ut tellus mi. Proin tincidunt, lectus eu volutpat mattis, ante metus lacini.\n\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n[/vc_column_text][/vc_column][/vc_row][vc_row content_text_aligment=\"left\" css=\".vc_custom_1496226250310{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" anchor=\"positioning\"][vc_column width=\"11/12\" offset=\"vc_col-lg-offset-1\"][vc_column_text]\n<div class=\"mkd-elements-holder mkd-responsive-mode-768\">\n<div class=\"mkd-eh-item \" data-item-class=\"mkd-eh-custom-403523\" data-768-1024=\"50px 0 0 0\" data-600-768=\"50px 0 0 0\" data-480-600=\"50px 0 0 0\" data-480=\"50px 0 0 0\">\n<div class=\"mkd-eh-item-inner\">\n<div class=\"mkd-eh-item-content mkd-eh-custom-403523\">\n<div class=\"wpb_text_column wpb_content_element \">\n<div class=\"wpb_wrapper\">\n<div class=\"mkd-elements-holder mkd-responsive-mode-768\">\n<div class=\"mkd-eh-item \" data-item-class=\"mkd-eh-custom-404722\" data-768-1024=\"50px 0 0 0\" data-600-768=\"50px 0 0 0\" data-480-600=\"50px 0 0 0\" data-480=\"50px 0 0 0\">\n<div class=\"mkd-eh-item-inner\">\n<div class=\"mkd-eh-item-content mkd-eh-custom-404722\">\n<div class=\"wpb_text_column wpb_content_element \">\n<div class=\"wpb_wrapper\">\n<h5>3. Marketing is a company’s ultimate objective?</h5>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n[/vc_column_text][vc_column_text]\n<div class=\"mkd-elements-holder mkd-responsive-mode-768\">\n<div class=\"mkd-eh-item \" data-item-class=\"mkd-eh-custom-403523\" data-768-1024=\"50px 0 0 0\" data-600-768=\"50px 0 0 0\" data-480-600=\"50px 0 0 0\" data-480=\"50px 0 0 0\">\n<div class=\"mkd-eh-item-inner\">\n<div class=\"mkd-eh-item-content mkd-eh-custom-403523\">\n<div class=\"wpb_text_column wpb_content_element \">\n<div class=\"wpb_wrapper\">\n<div class=\"wpb_text_column wpb_content_element \">\n<div class=\"wpb_wrapper\">\n\nLorem ipsum dolor sit amet, consectetur a elit. In ut ullamcorper leo, eget euismod orci. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus musbulum ultricies aliquam convallis. Maecenas ut tellus mi. Proin tincidunt, lectus eu volutpat mattis, ante metus lacinia tellus, vitae condimentum nulla enim bibendum nibh. Praesent turpis risus, interdum nec venenatis id, pretium sit amet purus. Interdum et malesuada fames ac ante ipsum primis in faucibus. Aliquam eu lorem nibh. Mauris ex dolor, rutrum in odio vel, suscipit ultrices nunc. Cras ipsum dolor, eleifend et nisl vel, tempor molestie nibh. In hac habitasse platea dictumst. Proin nec blandit ligula.\n\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n[/vc_column_text][/vc_column][/vc_row][vc_row content_text_aligment=\"left\" css=\".vc_custom_1496226258626{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" anchor=\"company\"][vc_column width=\"11/12\" offset=\"vc_col-lg-offset-1\"][vc_column_text]\n<div class=\"mkd-elements-holder mkd-responsive-mode-768\">\n<div class=\"mkd-eh-item \" data-item-class=\"mkd-eh-custom-403523\" data-768-1024=\"50px 0 0 0\" data-600-768=\"50px 0 0 0\" data-480-600=\"50px 0 0 0\" data-480=\"50px 0 0 0\">\n<div class=\"mkd-eh-item-inner\">\n<div class=\"mkd-eh-item-content mkd-eh-custom-403523\">\n<div class=\"wpb_text_column wpb_content_element \">\n<div class=\"wpb_wrapper\">\n<div class=\"mkd-elements-holder mkd-responsive-mode-768\">\n<div class=\"mkd-eh-item \" data-item-class=\"mkd-eh-custom-404722\" data-768-1024=\"50px 0 0 0\" data-600-768=\"50px 0 0 0\" data-480-600=\"50px 0 0 0\" data-480=\"50px 0 0 0\">\n<div class=\"mkd-eh-item-inner\">\n<div class=\"mkd-eh-item-content mkd-eh-custom-404722\">\n<div class=\"wpb_text_column wpb_content_element \">\n<div class=\"wpb_wrapper\">\n<h5>4. Positioning is what you do to the mind of the prospect?</h5>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n[/vc_column_text][vc_column_text]\n<div class=\"mkd-elements-holder mkd-responsive-mode-768\">\n<div class=\"mkd-eh-item \" data-item-class=\"mkd-eh-custom-403523\" data-768-1024=\"50px 0 0 0\" data-600-768=\"50px 0 0 0\" data-480-600=\"50px 0 0 0\" data-480=\"50px 0 0 0\">\n<div class=\"mkd-eh-item-inner\">\n<div class=\"mkd-eh-item-content mkd-eh-custom-403523\">\n<div class=\"wpb_text_column wpb_content_element \">\n<div class=\"wpb_wrapper\">\n<div class=\"wpb_text_column wpb_content_element \">\n<div class=\"wpb_wrapper\">\n\nLorem ipsum dolor sit amet, consectetur a elit. In ut ullamcorper leo, eget euismod orci. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus musbulum ultricies aliquam convallis. Maecenas ut tellus mi. Proin tincidunt, lectus eu volutpat mattis, ante metus lacinia tellus, vitae condimentum nulla enim bibendum nibh. Praesent turpis risus, interdum nec venenatis id, pretium sit amet purus. Interdum et malesuada fames ac ante.\n\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n[/vc_column_text][/vc_column][/vc_row][vc_row content_text_aligment=\"left\" css=\".vc_custom_1496226267346{margin-top: -24px !important;padding-bottom: 20px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" anchor=\"better\"][vc_column width=\"11/12\" offset=\"vc_col-lg-offset-1\"][vc_column_text]\n<div class=\"mkd-elements-holder mkd-responsive-mode-768\">\n<div class=\"mkd-eh-item \" data-item-class=\"mkd-eh-custom-403523\" data-768-1024=\"50px 0 0 0\" data-600-768=\"50px 0 0 0\" data-480-600=\"50px 0 0 0\" data-480=\"50px 0 0 0\">\n<div class=\"mkd-eh-item-inner\">\n<div class=\"mkd-eh-item-content mkd-eh-custom-403523\">\n<div class=\"wpb_text_column wpb_content_element \">\n<div class=\"wpb_wrapper\">\n<div class=\"mkd-elements-holder mkd-responsive-mode-768\">\n<div class=\"mkd-eh-item \" data-item-class=\"mkd-eh-custom-404722\" data-768-1024=\"50px 0 0 0\" data-600-768=\"50px 0 0 0\" data-480-600=\"50px 0 0 0\" data-480=\"50px 0 0 0\">\n<div class=\"mkd-eh-item-inner\">\n<div class=\"mkd-eh-item-content mkd-eh-custom-404722\">\n<div class=\"wpb_text_column wpb_content_element \">\n<div class=\"wpb_wrapper\">\n<h5>5. Branding is simply a more efficient way to sell things?</h5>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n[/vc_column_text][vc_column_text]\n<div class=\"mkd-elements-holder mkd-responsive-mode-768\">\n<div class=\"mkd-eh-item \" data-item-class=\"mkd-eh-custom-403523\" data-768-1024=\"50px 0 0 0\" data-600-768=\"50px 0 0 0\" data-480-600=\"50px 0 0 0\" data-480=\"50px 0 0 0\">\n<div class=\"mkd-eh-item-inner\">\n<div class=\"mkd-eh-item-content mkd-eh-custom-403523\">\n<div class=\"wpb_text_column wpb_content_element \">\n<div class=\"wpb_wrapper\">\n<div class=\"wpb_text_column wpb_content_element \">\n<div class=\"wpb_wrapper\">\n\nLorem ipsum dolor sit amet, consectetur a elit. In ut ullamcorper leo, eget euismod orci. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus musbulum ultricies aliquam convallis. Maecenas ut tellus mi. Proin tincidunt, lectus eu volutpat mattis, ante metus lacinia tellus, vitae condimentum nulla enim bibendum nibh. Praesent turpis risus, interdum nec venenatis id, pretium sit amet purus. Interdum et malesuada fames ac ante ipsum primis in faucibus. Aliquam eu lorem nibh. Mauris ex dolor, rutrum in odio vel, suscipit ultrices nunc. Cras ipsum dolor, eleifend et nisl vel, tempor molestie nibh. In hac habitasse platea dictumst. Proin nec blandit ligula.\n\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n[/vc_column_text][/vc_column][/vc_row][vc_row content_text_aligment=\"left\" css=\".vc_custom_1496226411344{margin-top: -24px !important;padding-bottom: 92px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" anchor=\"efficient\"][vc_column width=\"11/12\" offset=\"vc_col-lg-offset-1\"][vc_column_text]\n<div class=\"mkd-elements-holder mkd-responsive-mode-768\">\n<div class=\"mkd-eh-item \" data-item-class=\"mkd-eh-custom-403523\" data-768-1024=\"50px 0 0 0\" data-600-768=\"50px 0 0 0\" data-480-600=\"50px 0 0 0\" data-480=\"50px 0 0 0\">\n<div class=\"mkd-eh-item-inner\">\n<div class=\"mkd-eh-item-content mkd-eh-custom-403523\">\n<div class=\"wpb_text_column wpb_content_element \">\n<div class=\"wpb_wrapper\">\n<div class=\"mkd-elements-holder mkd-responsive-mode-768\">\n<div class=\"mkd-eh-item \" data-item-class=\"mkd-eh-custom-404722\" data-768-1024=\"50px 0 0 0\" data-600-768=\"50px 0 0 0\" data-480-600=\"50px 0 0 0\" data-480=\"50px 0 0 0\">\n<div class=\"mkd-eh-item-inner\">\n<div class=\"mkd-eh-item-content mkd-eh-custom-404722\">\n<div class=\"wpb_text_column wpb_content_element \">\n<div class=\"wpb_wrapper\">\n<div class=\"mkd-elements-holder mkd-responsive-mode-768\">\n<div class=\"mkd-eh-item \" data-item-class=\"mkd-eh-custom-693643\" data-768-1024=\"50px 0 0 0\" data-600-768=\"50px 0 0 0\" data-480-600=\"50px 0 0 0\" data-480=\"50px 0 0 0\">\n<div class=\"mkd-eh-item-inner\">\n<div class=\"mkd-eh-item-content mkd-eh-custom-693643\">\n<div class=\"wpb_text_column wpb_content_element \">\n<div class=\"wpb_wrapper\">\n<h5>6. It’s better to be first in the mind than to be first in the marketplace?</h5>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n[/vc_column_text][vc_column_text]\n<div class=\"mkd-elements-holder mkd-responsive-mode-768\">\n<div class=\"mkd-eh-item \" data-item-class=\"mkd-eh-custom-403523\" data-768-1024=\"50px 0 0 0\" data-600-768=\"50px 0 0 0\" data-480-600=\"50px 0 0 0\" data-480=\"50px 0 0 0\">\n<div class=\"mkd-eh-item-inner\">\n<div class=\"mkd-eh-item-content mkd-eh-custom-403523\">\n<div class=\"wpb_text_column wpb_content_element \">\n<div class=\"wpb_wrapper\">\n<div class=\"wpb_text_column wpb_content_element \">\n<div class=\"wpb_wrapper\">\n\nLorem ipsum dolor sit amet, consectetur a elit. In ut ullamcorper leo, eget euismod orci. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus musbulum ultricies aliquam convallis. Maecenas ut tellus mi. Proin tincidunt, lectus eu volutpat mattis, ante metus lacini\n\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n[/vc_column_text][/vc_column][/vc_row]','FAQ','','publish','closed','closed','','faq','','','2017-05-31 10:05:20','2017-05-31 10:05:20','',0,'http://iacademy.mikado-themes.com/?page_id=1328',0,'page','',0),(1338,1,'2017-05-31 10:24:50','2017-05-31 10:24:50','','logo-light','','inherit','open','closed','','logo-light','','','2017-05-31 10:24:50','2017-05-31 10:24:50','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/logo-light-1.png',0,'attachment','image/png',0),(1343,1,'2017-05-31 10:45:10','2017-05-31 10:45:10','[vc_row][vc_column][vc_column_text css=\".vc_custom_1497865961927{margin-top: -12px !important;padding-bottom: 27px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_column_text]\n<blockquote>We teach, and encourage a love of learning, collaboration, and compassion. Everyone a learner everyday.</blockquote>\n[/vc_column_text][vc_column_text css=\".vc_custom_1497866016982{padding-top: 25px !important;padding-bottom: 53px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_single_image image=\"770\" img_size=\"full\"][vc_column_text css=\".vc_custom_1497866025030{padding-top: 38px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][/vc_column][/vc_row]','Success Needs a Plan.','Donec vitae sapien ut libero venenatis faucibus. Nullam quis ante. Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh. Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus. Phasellus viverra nulla ut metus varius laoreet. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.','publish','open','open','','success-needs-a-plan','','','2017-05-31 10:45:10','2017-05-31 10:45:10','',0,'http://iacademy.mikado-themes.com/?p=1343',0,'post','',0),(1345,1,'2017-05-31 10:43:42','2017-05-31 10:43:42','','blog-post-6','','inherit','open','closed','','blog-post-6','','','2017-05-31 10:43:42','2017-05-31 10:43:42','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/blog-post-6.jpg',0,'attachment','image/jpeg',0),(1346,1,'2017-05-31 10:43:45','2017-05-31 10:43:45','','blog-post-7','','inherit','open','closed','','blog-post-7','','','2017-05-31 10:43:45','2017-05-31 10:43:45','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/blog-post-7.jpg',0,'attachment','image/jpeg',0),(1347,1,'2017-05-31 10:43:47','2017-05-31 10:43:47','','blog-post-8','','inherit','open','closed','','blog-post-8','','','2017-05-31 10:43:47','2017-05-31 10:43:47','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/blog-post-8.jpg',0,'attachment','image/jpeg',0),(1349,1,'2017-05-31 10:44:51','2017-05-31 10:44:51','[vc_row css=\".vc_custom_1496156484829{padding-top: 50px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1497865870015{margin-top: -12px !important;padding-bottom: 27px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_column_text]\n<blockquote>We teach, and encourage a love of learning, collaboration, and compassion. Everyone a learner everyday.</blockquote>\n[/vc_column_text][vc_column_text css=\".vc_custom_1497865882464{padding-top: 25px !important;padding-bottom: 53px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_single_image image=\"770\" img_size=\"full\"][vc_column_text css=\".vc_custom_1497865890470{padding-top: 38px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][/vc_column][/vc_row]','Choose Your Direction.','Donec vitae sapien ut libero venenatis faucibus. Nullam quis ante. Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh. Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus. Phasellus viverra nulla ut metus varius laoreet. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.','publish','open','open','','choose-your-direction','','','2017-05-31 10:44:51','2017-05-31 10:44:51','',0,'http://iacademy.mikado-themes.com/?p=1349',0,'post','',0),(1351,1,'2017-05-31 10:43:51','2017-05-31 10:43:51','[vc_row][vc_column][vc_column_text css=\".vc_custom_1497865822191{margin-top: -12px !important;padding-bottom: 27px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_column_text]\n<blockquote>We teach, and encourage a love of learning, collaboration, and compassion. Everyone a learner everyday.</blockquote>\n[/vc_column_text][vc_column_text css=\".vc_custom_1497865831886{padding-top: 25px !important;padding-bottom: 53px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_single_image image=\"770\" img_size=\"full\"][vc_column_text css=\".vc_custom_1497865841302{padding-top: 38px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][/vc_column][/vc_row]','The best tutors in town.','Donec vitae sapien ut libero venenatis faucibus. Nullam quis ante. Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh. Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus. Phasellus viverra nulla ut metus varius laoreet. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.','publish','open','open','','the-best-tutors-in-town','','','2017-05-31 10:43:51','2017-05-31 10:43:51','',0,'http://iacademy.mikado-themes.com/?p=1351',0,'post','',0),(1354,1,'2017-05-31 10:42:18','2017-05-31 10:42:18','[vc_row][vc_column][vc_column_text css=\".vc_custom_1497865768568{margin-top: -12px !important;padding-bottom: 27px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_column_text]\n<blockquote>We teach, and encourage a love of learning, collaboration, and compassion. Everyone a learner everyday.</blockquote>\n[/vc_column_text][vc_column_text css=\".vc_custom_1497865776831{padding-top: 25px !important;padding-bottom: 53px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_single_image image=\"770\" img_size=\"full\"][vc_column_text css=\".vc_custom_1497865785223{padding-top: 38px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][/vc_column][/vc_row]','Our students come first.','Donec vitae sapien ut libero venenatis faucibus. Nullam quis ante. Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh. Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus. Phasellus viverra nulla ut metus varius laoreet. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.','publish','open','open','','our-students-come-first','','','2017-05-31 10:42:18','2017-05-31 10:42:18','',0,'http://iacademy.mikado-themes.com/?p=1354',0,'post','',0),(1357,1,'2017-05-31 10:40:23','2017-05-31 10:40:23','[vc_row][vc_column][vc_column_text css=\".vc_custom_1497865607182{margin-top: -12px !important;padding-bottom: 27px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_column_text]\n<blockquote>We teach, and encourage a love of learning, collaboration, and compassion. Everyone a learner everyday.</blockquote>\n[/vc_column_text][vc_column_text css=\".vc_custom_1497865617278{padding-top: 25px !important;padding-bottom: 53px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_single_image image=\"770\" img_size=\"full\"][vc_column_text css=\".vc_custom_1497865628455{padding-top: 38px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][/vc_column][/vc_row]','Educating for human greatness.','Donec vitae sapien ut libero venenatis faucibus. Nullam quis ante. Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh. Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus. Phasellus viverra nulla ut metus varius laoreet. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.','publish','open','open','','educating-for-human-greatness','','','2017-05-31 10:40:23','2017-05-31 10:40:23','',0,'http://iacademy.mikado-themes.com/?p=1357',0,'post','',0),(1358,1,'2017-05-31 11:14:39','2017-05-31 11:14:39','','blog-post-9','','inherit','open','closed','','blog-post-9','','','2017-05-31 11:14:39','2017-05-31 11:14:39','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/blog-post-9.jpg',0,'attachment','image/jpeg',0),(1359,1,'2017-05-31 11:14:41','2017-05-31 11:14:41','','blog-post-10','','inherit','open','closed','','blog-post-10','','','2017-05-31 11:14:41','2017-05-31 11:14:41','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/blog-post-10.jpg',0,'attachment','image/jpeg',0),(1360,1,'2017-05-31 11:14:44','2017-05-31 11:14:44','','blog-post-11','','inherit','open','closed','','blog-post-11','','','2017-05-31 11:14:44','2017-05-31 11:14:44','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/blog-post-11.jpg',0,'attachment','image/jpeg',0),(1362,1,'2017-05-31 11:14:49','2017-05-31 11:14:49','','blog-post-13','','inherit','open','closed','','blog-post-13','','','2017-05-31 11:14:49','2017-05-31 11:14:49','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/blog-post-13.jpg',0,'attachment','image/jpeg',0),(1363,1,'2017-05-31 11:14:51','2017-05-31 11:14:51','','blog-post-14','','inherit','open','closed','','blog-post-14','','','2017-05-31 11:14:51','2017-05-31 11:14:51','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/blog-post-14.jpg',0,'attachment','image/jpeg',0),(1365,1,'2017-05-31 10:41:02','2017-05-31 10:41:02','[vc_row css=\".vc_custom_1496156484829{padding-top: 50px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1497865655688{margin-top: -12px !important;padding-bottom: 27px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_column_text]\n<blockquote>We teach, and encourage a love of learning, collaboration, and compassion. Everyone a learner everyday.</blockquote>\n[/vc_column_text][vc_column_text css=\".vc_custom_1497865666425{padding-top: 25px !important;padding-bottom: 53px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_single_image image=\"770\" img_size=\"full\"][vc_column_text css=\".vc_custom_1497865675176{padding-top: 38px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][/vc_column][/vc_row]','Either move or be moved.','Donec vitae sapien ut libero venenatis faucibus. Nullam quis ante. Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh. Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus. Phasellus viverra nulla ut metus varius laoreet. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.','publish','open','open','','either-move-or-be-moved','','','2017-05-31 10:41:02','2017-05-31 10:41:02','',0,'http://iacademy.mikado-themes.com/?p=1365',0,'post','',2),(1400,1,'2017-05-31 10:39:55','2017-05-31 10:39:55','[vc_row][vc_column][vc_column_text css=\".vc_custom_1497865559368{margin-top: -12px !important;padding-bottom: 27px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_column_text]\n<blockquote>We teach, and encourage a love of learning, collaboration, and compassion. Everyone a learner everyday.</blockquote>\n[/vc_column_text][vc_column_text css=\".vc_custom_1497865568351{padding-top: 25px !important;padding-bottom: 53px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_single_image image=\"770\" img_size=\"full\"][vc_column_text css=\".vc_custom_1497865576950{padding-top: 38px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][/vc_column][/vc_row]','New learning possibilities.','Donec vitae sapien ut libero venenatis faucibus. Nullam quis ante. Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh. Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus. Phasellus viverra nulla ut metus varius laoreet. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.','publish','open','open','','new-learning-possibilities','','','2017-05-31 10:39:55','2017-05-31 10:39:55','',0,'http://iacademy.mikado-themes.com/?p=1400',0,'post','',0),(1406,1,'2017-05-31 10:38:49','2017-05-31 10:38:49','[vc_row][vc_column][vc_column_text css=\".vc_custom_1497865511815{margin-top: -12px !important;padding-bottom: 27px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_column_text]\n<blockquote>We teach, and encourage a love of learning, collaboration, and compassion. Everyone a learner everyday.</blockquote>\n[/vc_column_text][vc_column_text css=\".vc_custom_1497865520279{padding-top: 25px !important;padding-bottom: 53px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_single_image image=\"770\" img_size=\"full\"][vc_column_text css=\".vc_custom_1497865530431{padding-top: 38px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][/vc_column][/vc_row]','New business possibilities.','Donec vitae sapien ut libero venenatis faucibus. Nullam quis ante. Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh. Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus. Phasellus viverra nulla ut metus varius laoreet. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.','publish','open','open','','new-business-possibilities','','','2017-05-31 10:38:49','2017-05-31 10:38:49','',0,'http://iacademy.mikado-themes.com/?p=1406',0,'post','',0),(1408,1,'2017-05-31 12:55:22','2017-05-31 12:55:22','[vc_row row_content_width=\"grid\" content_text_aligment=\"center\" css=\".vc_custom_1496236554469{padding-top: 225px !important;padding-bottom: 27px !important;}\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0px 23% 155px\" item_padding_1024_1280=\"10px 18% 200px\" item_padding_768_1024=\"0px 3% 155px\" item_padding_680_768=\"0px 0% 155px\" item_padding_680=\"0px 0% 155px\"][mkdf_section_title type=\"standard\" position=\"center\" title_tag=\"h1\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" title=\"Find the Right Courses for You\" text=\"Lorem Ipsn gravida nibh vel velit auctor aliquetnean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit\" text_font_size=\"17\" title_color=\"#ffffff\" text_color=\"#ffffff\"][vc_empty_space height=\"35px\"][vc_widget_sidebar sidebar_id=\"custom-widget-home-2\"][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_masonry_gallery space_between_items=\"no\" order_by=\"date\" order=\"ASC\" category=\"home-1\"][/vc_column][/vc_row]','Home 11','','publish','closed','closed','','home-11','','','2017-05-31 12:55:22','2017-05-31 12:55:22','',0,'http://iacademy.mikado-themes.com/?page_id=1408',0,'page','',0),(1410,1,'2017-05-31 10:37:56','2017-05-31 10:37:56','[vc_row css=\".vc_custom_1496156484829{padding-top: 50px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1497865445361{margin-top: -12px !important;padding-bottom: 27px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_column_text]\n<blockquote>We teach, and encourage a love of learning, collaboration, and compassion. Everyone a learner everyday.</blockquote>\n[/vc_column_text][vc_column_text css=\".vc_custom_1497865454679{padding-top: 25px !important;padding-bottom: 53px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_single_image image=\"770\" img_size=\"full\"][vc_column_text css=\".vc_custom_1497865463760{padding-top: 38px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][/vc_column][/vc_row]','Things are made to happen.','Donec vitae sapien ut libero venenatis faucibus. Nullam quis ante. Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh. Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus. Phasellus viverra nulla ut metus varius laoreet. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.','publish','open','open','','things-are-made-to-happen','','','2017-05-31 10:37:56','2017-05-31 10:37:56','',0,'http://iacademy.mikado-themes.com/?p=1410',0,'post','',0),(1412,1,'2017-05-31 12:57:29','2017-05-31 12:57:29','','h11-background-img','','inherit','open','closed','','h11-background-img','','','2017-05-31 12:57:29','2017-05-31 12:57:29','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h11-background-img.jpg',0,'attachment','image/jpeg',0),(1415,1,'2017-05-31 10:35:40','2017-05-31 10:35:40','[vc_row css=\".vc_custom_1496156484829{padding-top: 50px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1497865390002{margin-top: -12px !important;padding-bottom: 27px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_column_text]\n<blockquote>We teach, and encourage a love of learning, collaboration, and compassion. Everyone a learner everyday.</blockquote>\n[/vc_column_text][vc_column_text css=\".vc_custom_1497865399935{padding-top: 25px !important;padding-bottom: 53px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_single_image image=\"770\" img_size=\"full\"][vc_column_text css=\".vc_custom_1497865410688{padding-top: 38px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][/vc_column][/vc_row]','Step by step and the thing is done.','Donec vitae sapien ut libero venenatis faucibus. Nullam quis ante. Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh. Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus. Phasellus viverra nulla ut metus varius laoreet. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.','publish','open','open','','step-by-step-and-the-thing-is-done','','','2017-05-31 10:35:40','2017-05-31 10:35:40','',0,'http://iacademy.mikado-themes.com/?p=1415',0,'post','',0),(1419,1,'2017-05-31 10:34:33','2017-05-31 10:34:33','[vc_row][vc_column][vc_column_text css=\".vc_custom_1497865341872{margin-top: -12px !important;padding-bottom: 27px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_column_text]\n<blockquote>We teach, and encourage a love of learning, collaboration, and compassion. Everyone a learner everyday.</blockquote>\n[/vc_column_text][vc_column_text css=\".vc_custom_1497865351943{padding-top: 25px !important;padding-bottom: 53px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_single_image image=\"770\" img_size=\"full\"][vc_column_text css=\".vc_custom_1497865360768{padding-top: 38px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][/vc_column][/vc_row]','Growing and achieving.','Donec vitae sapien ut libero venenatis faucibus. Nullam quis ante. Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh. Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus. Phasellus viverra nulla ut metus varius laoreet. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.','publish','open','open','','growing-and-achieving','','','2017-05-31 10:34:33','2017-05-31 10:34:33','',0,'http://iacademy.mikado-themes.com/?p=1419',0,'post','',0),(1421,1,'2017-05-31 10:33:09','2017-05-31 10:33:09','[vc_row][vc_column][vc_column_text css=\".vc_custom_1497865295536{margin-top: -12px !important;padding-bottom: 27px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_column_text]\n<blockquote>We teach, and encourage a love of learning, collaboration, and compassion. Everyone a learner everyday.</blockquote>\n[/vc_column_text][vc_column_text css=\".vc_custom_1497865304943{padding-top: 25px !important;padding-bottom: 53px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_single_image image=\"770\" img_size=\"full\"][vc_column_text css=\".vc_custom_1497865314431{padding-top: 38px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][/vc_column][/vc_row]','First for your tuition needs.','Donec vitae sapien ut libero venenatis faucibus. Nullam quis ante. Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh. Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus. Phasellus viverra nulla ut metus varius laoreet. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.','publish','open','open','','first-for-your-tuition-needs','','','2017-05-31 10:33:09','2017-05-31 10:33:09','',0,'http://iacademy.mikado-themes.com/?p=1421',0,'post','',0),(1426,1,'2017-05-31 10:31:25','2017-05-31 10:31:25','[vc_row][vc_column][vc_column_text css=\".vc_custom_1497865244248{margin-top: -12px !important;padding-bottom: 27px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_column_text]\n<blockquote>We teach, and encourage a love of learning, collaboration, and compassion. Everyone a learner everyday.</blockquote>\n[/vc_column_text][vc_column_text css=\".vc_custom_1497865253855{padding-top: 25px !important;padding-bottom: 53px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_single_image image=\"770\" img_size=\"full\"][vc_column_text css=\".vc_custom_1497865263808{padding-top: 38px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][/vc_column][/vc_row]','Top tutors in every subject.','Donec vitae sapien ut libero venenatis faucibus. Nullam quis ante. Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh. Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus. Phasellus viverra nulla ut metus varius laoreet. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.','publish','open','open','','top-tutors-in-every-subject','','','2017-05-31 10:31:25','2017-05-31 10:31:25','',0,'http://iacademy.mikado-themes.com/?p=1426',0,'post','',0),(1440,1,'2017-05-31 13:28:50','2017-05-31 13:28:50','','Blog Masonry','','publish','closed','closed','','blog-masonry','','','2017-05-31 13:28:50','2017-05-31 13:28:50','',0,'http://iacademy.mikado-themes.com/?page_id=1440',0,'page','',0),(1451,1,'2017-05-31 14:16:08','2017-05-31 14:16:08','[vc_row row_content_width=\"grid\" simple_background_color=\"#ffffff\"][vc_column][rev_slider alias=\"home-7\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" simple_background_color=\"#ffffff\" css=\".vc_custom_1496732982999{padding-top: 70px !important;}\"][vc_column offset=\"vc_col-lg-6\"][mkdf_blog_list type=\"simple\" order_by=\"title\" order=\"ASC\" image_size=\"square\" number_of_posts=\"1\" excerpt_length=\"16\" category=\"economy\"][vc_empty_space height=\"30px\"][/vc_column][vc_column offset=\"vc_col-lg-6\"][mkdf_blog_list type=\"simple\" order_by=\"title\" order=\"DESC\" image_size=\"square\" number_of_posts=\"1\" excerpt_length=\"16\" category=\"economy\"][vc_empty_space height=\"30px\"][/vc_column][/vc_row][vc_row][vc_column][mkdf_separator type=\"full-width\" border_style=\"\" color=\"#ebebeb\" thickness=\"1\" top_margin=\"0px\" bottom_margin=\"0px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1496228442832{padding-top: 123px !important;padding-bottom: 123px !important;}\" simple_background_color=\"#ffffff\"][vc_column offset=\"vc_col-md-4\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 10% 87px\" item_padding_1280_1600=\"0 10% 87px\" item_padding_1024_1280=\"0 4% 87px\" item_padding_768_1024=\"0 0 87px\" item_padding_680_768=\"0 7% 70px\" item_padding_680=\"0 0 70px\"][mkdf_icon_with_text type=\"icon-top\" icon_pack=\"font_awesome\" fa_icon=\"\" title_tag=\"\" custom_icon=\"425\" title=\"Notification \" text=\"Lorem ipsum oin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis bibendum auctor, nisi elit consequa\"][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 10%\" item_padding_1280_1600=\"0 10%\" item_padding_1024_1280=\"0 4%\" item_padding_768_1024=\"0 0 \" item_padding_680_768=\"0 7% 70px\" item_padding_680=\"0 0 70px\"][mkdf_icon_with_text type=\"icon-top\" icon_pack=\"font_awesome\" fa_icon=\"\" title_tag=\"\" custom_icon=\"428\" title=\"Knowledge \" text=\"Lorem ipsum oin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis bibendum auctor, nisi elit consequa\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column offset=\"vc_col-md-4\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 10% 87px\" item_padding_1280_1600=\"0 10% 87px\" item_padding_1024_1280=\"0 4% 87px\" item_padding_768_1024=\"0 0 87px\" item_padding_680_768=\"0 7% 70px\" item_padding_680=\"0 0 70px\"][mkdf_icon_with_text type=\"icon-top\" icon_pack=\"font_awesome\" fa_icon=\"\" title_tag=\"\" custom_icon=\"426\" title=\"Certification\" text=\"Lorem ipsum oin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis bibendum auctor, nisi elit consequa\"][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 10% \" item_padding_1280_1600=\"0 10%\" item_padding_1024_1280=\"0 4%\" item_padding_768_1024=\"0 0 \" item_padding_680_768=\"0 7% 70px\" item_padding_680=\"0 0 70px\"][mkdf_icon_with_text type=\"icon-top\" icon_pack=\"font_awesome\" fa_icon=\"\" title_tag=\"\" custom_icon=\"429\" title=\"Success\" text=\"Lorem ipsum oin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis bibendum auctor, nisi elit consequa\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column offset=\"vc_col-md-4\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 10% 87px\" item_padding_1280_1600=\"0 10% 87px\" item_padding_1024_1280=\"0 4% 87px\" item_padding_768_1024=\"0 0 87px\" item_padding_680_768=\"0 7% 70px\" item_padding_680=\"0 0 70px\"][mkdf_icon_with_text type=\"icon-top\" icon_pack=\"font_awesome\" fa_icon=\"\" title_tag=\"\" custom_icon=\"427\" title=\"Campus\" text=\"Lorem ipsum oin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis bibendum auctor, nisi elit consequa\"][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 10%\" item_padding_1280_1600=\"0 10%\" item_padding_1024_1280=\"0 4% \" item_padding_768_1024=\"0 0 \" item_padding_680_768=\"0 7% 0\" item_padding_680=\"0 0 0px\"][mkdf_icon_with_text type=\"icon-top\" icon_pack=\"font_awesome\" fa_icon=\"\" title_tag=\"\" custom_icon=\"430\" title=\"Open Minds\" text=\"Lorem ipsum oin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis bibendum auctor, nisi elit consequa\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row][vc_column][mkdf_separator type=\"full-width\" border_style=\"\" color=\"#ebebeb\" thickness=\"1\" top_margin=\"0px\" bottom_margin=\"0px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" simple_background_color=\"#ffffff\" css=\".vc_custom_1496240722963{padding-top: 120px !important;padding-bottom: 113px !important;}\"][vc_column offset=\"vc_col-lg-6\"][mkdf_video_button video_link=\"https://vimeo.com/160672711\" video_image=\"1459\"][/vc_column][vc_column offset=\"vc_col-lg-6\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"50px 7% 0 \" item_padding_768_1024=\"50px 0 0 \" item_padding_680_768=\"50px 0 0 \" item_padding_680=\"50px 0 0 \" item_padding_1024_1280=\"15px 7% 0 \"][mkdf_section_title type=\"standard\" position=\"left\" title_tag=\"h2\" disable_break_words=\"yes\" text_tag=\"\" text_font_weight=\"\" title=\"Empowering Children to Upgrade Skills.\" title_break_words=\"2\" text=\"Lorem ipsum gravida nibh vel velit auctor aliquetnean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id eis sed odio sit amet nibh vulputate.\" text_font_size=\"17\"][vc_empty_space height=\"10px\"][vc_row_inner][vc_column_inner width=\"1/4\"][mkdf_counter type=\"mkdf-zero-counter\" icon_pack=\"font_awesome\" fa_icon=\"\" title_tag=\"h4\" title_font_weight=\"\" digit=\"168\" digit_font_size=\"48\" title=\"Stories\"][vc_empty_space height=\"30px\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mkdf_counter type=\"mkdf-zero-counter\" icon_pack=\"font_awesome\" fa_icon=\"\" title_tag=\"h4\" title_font_weight=\"\" digit=\"347\" digit_font_size=\"48\" title=\"Events\"][vc_empty_space height=\"30px\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row][vc_column][mkdf_separator type=\"full-width\" border_style=\"\" color=\"#ebebeb\" thickness=\"1\" top_margin=\"0px\" bottom_margin=\"0px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" content_text_aligment=\"center\" css=\".vc_custom_1496068794871{padding-top: 130px !important;padding-bottom: 125px !important;}\" parallax_background_image=\"734\"][vc_column][mkdf_testimonials type=\"standard\" skin=\"\" slider_loop=\"yes\" slider_autoplay=\"yes\" slider_navigation=\"no\" slider_pagination=\"yes\" slider_padding=\"no\" number=\"3\" category=\"standard-3\"][/vc_column][/vc_row][vc_row][vc_column][mkdf_separator type=\"full-width\" border_style=\"\" color=\"#ebebeb\" thickness=\"1\" top_margin=\"0px\" bottom_margin=\"0px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1497857554461{padding-top: 130px !important;padding-bottom: 130px !important;}\" simple_background_color=\"#ffffff\"][vc_column][mkdf_image_gallery type=\"grid\" enable_image_shadow=\"no\" number_of_columns=\"four\" space_between_columns=\"normal\" images=\"1465,1466,1467,1468\" image_size=\"medium\"][/vc_column][/vc_row]','Home 8','','publish','closed','closed','','home-8','','','2017-05-31 14:16:08','2017-05-31 14:16:08','',0,'http://iacademy.mikado-themes.com/?page_id=1451',0,'page','',0),(1459,1,'2017-05-31 14:05:25','2017-05-31 14:05:25','','h7-video-background-img','','inherit','open','closed','','h7-video-background-img','','','2017-05-31 14:05:25','2017-05-31 14:05:25','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h7-video-background-img.jpg',0,'attachment','image/jpeg',0),(1465,1,'2017-05-31 14:22:09','2017-05-31 14:22:09','','h7-img-5','','inherit','open','closed','','h7-img-5-2','','','2017-05-31 14:22:09','2017-05-31 14:22:09','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h7-img-5-1.jpg',0,'attachment','image/jpeg',0),(1466,1,'2017-05-31 14:22:12','2017-05-31 14:22:12','','h7-img-2','','inherit','open','closed','','h7-img-2-2','','','2017-05-31 14:22:12','2017-05-31 14:22:12','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h7-img-2-1.jpg',0,'attachment','image/jpeg',0),(1467,1,'2017-05-31 14:22:14','2017-05-31 14:22:14','','h7-img-3','','inherit','open','closed','','h7-img-3-2','','','2017-05-31 14:22:14','2017-05-31 14:22:14','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h7-img-3-1.jpg',0,'attachment','image/jpeg',0),(1468,1,'2017-05-31 14:22:16','2017-05-31 14:22:16','','h7-img-4','','inherit','open','closed','','h7-img-4-2','','','2017-05-31 14:22:16','2017-05-31 14:22:16','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h7-img-4-1.jpg',0,'attachment','image/jpeg',0),(1484,1,'2017-05-31 10:30:13','2017-05-31 10:30:13','[vc_row][vc_column][vc_column_text css=\".vc_custom_1497865196297{margin-top: -12px !important;padding-bottom: 27px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_column_text]\n<blockquote>We teach, and encourage a love of learning, collaboration, and compassion. Everyone a learner everyday.</blockquote>\n[/vc_column_text][vc_column_text css=\".vc_custom_1497865205873{padding-top: 25px !important;padding-bottom: 53px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_single_image image=\"770\" img_size=\"full\"][vc_column_text css=\".vc_custom_1497865214312{padding-top: 38px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][/vc_column][/vc_row]','Your library is your paradise.','Donec vitae sapien ut libero venenatis faucibus. Nullam quis ante. Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh. Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus. Phasellus viverra nulla ut metus varius laoreet. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.','publish','open','open','','your-library-is-your-paradise','','','2017-05-31 10:30:13','2017-05-31 10:30:13','',0,'http://iacademy.mikado-themes.com/?p=1484',0,'post','',0),(1485,1,'2017-05-31 15:16:01','2017-05-31 15:16:01','[vc_row row_content_width=\"grid\" simple_background_color=\"#ffffff\" css=\".vc_custom_1496309239657{padding-top: 130px !important;padding-bottom: 125px !important;}\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0px 15% 0px 0\" item_padding_1280_1600=\"0px 15% 0px 0\" item_padding_1024_1280=\"0px 7% 0px 0\" item_padding_768_1024=\"0px\" item_padding_680_768=\"0px\" item_padding_680=\"0px\"][mkdf_tabs type=\"vertical\"][mkdf_tabs_item content_title_tag=\"h2\" tab_title=\"What We Do\" tab_image=\"865\" tab_content_title=\"Learning Possibilities\" tab_content_description=\"Lorem Ipsn gravida nibh vel velit auctor aliquetn sollicitudirem quibibendum auci elit cons equat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"We enrich lives through learning.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"Maximizing potential through individual attention.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"The trusted name for specialized training.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"People teach. People learn. This is where they connect.\" title_size=\"17\"][/mkdf_tabs_item][mkdf_tabs_item content_title_tag=\"h2\" tab_title=\"Degree Programme\" tab_image=\"911\" tab_content_title=\"Inspiring Minds\" tab_content_description=\"Lorem Ipsn gravida nibh vel velit auctor aliquetn sollicitudirem quibibendum auci elit cons equat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"Maximizing potential through individual attention.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"We enrich lives through learning.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"People teach. People learn. This is where they connect.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"The trusted name for specialized training.\" title_size=\"17\"][/mkdf_tabs_item][mkdf_tabs_item content_title_tag=\"h2\" tab_title=\"Career Achievements\" tab_image=\"914\" tab_content_title=\"Investing in Knowledge\" tab_content_description=\"Lorem Ipsn gravida nibh vel velit auctor aliquetn sollicitudirem quibibendum auci elit cons equat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"We enrich lives through learning.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"Maximizing potential through individual attention.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"The trusted name for specialized training.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"People teach. People learn. This is where they connect.\" title_size=\"17\"][/mkdf_tabs_item][mkdf_tabs_item content_title_tag=\"h2\" tab_title=\"Personal Managment\" tab_image=\"918\" tab_content_title=\"Secure Your Future\" tab_content_description=\"Lorem Ipsn gravida nibh vel velit auctor aliquetn sollicitudirem quibibendum auci elit cons equat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"Maximizing potential through individual attention.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"We enrich lives through learning.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"People teach. People learn. This is where they connect.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"The trusted name for specialized training.\" title_size=\"17\"][/mkdf_tabs_item][mkdf_tabs_item content_title_tag=\"h2\" tab_title=\"Steps To Success\" tab_image=\"925\" tab_content_title=\"Where Learning Begins\" tab_content_description=\"Lorem Ipsn gravida nibh vel velit auctor aliquetn sollicitudirem quibibendum auci elit cons equat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"We enrich lives through learning.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"Maximizing potential through individual attention.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"The trusted name for specialized training.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"People teach. People learn. This is where they connect.\" title_size=\"17\"][/mkdf_tabs_item][mkdf_tabs_item content_title_tag=\"h2\" tab_title=\"Knowledge Transfer\" tab_image=\"928\" tab_content_title=\"Knowledge is Power\" tab_content_description=\"Lorem Ipsn gravida nibh vel velit auctor aliquetn sollicitudirem quibibendum auci elit cons equat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"Maximizing potential through individual attention.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"We enrich lives through learning.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"People teach. People learn. This is where they connect.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"The trusted name for specialized training.\" title_size=\"17\"][/mkdf_tabs_item][/mkdf_tabs][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"two-columns\" switch_to_one_column=\"1024\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" background_color=\"#222222\" item_padding=\"0 20% 0 10%\" item_padding_1024_1280=\"0 15% 0 10%\" item_padding_768_1024=\"100px 27% 100px 10%\" item_padding_680_768=\"100px 13% 100px 10%\" item_padding_680=\"100px 6% 100px 7%\"][mkdf_section_title type=\"standard\" position=\"left\" title_tag=\"h2\" disable_break_words=\"yes\" text_tag=\"\" text_font_weight=\"\" title=\"Committed to Educating and Nurturing Students\" title_color=\"#ffffff\" title_break_words=\"3\" text=\"Lorem ipsum gravida nibh vel velit auctor aliquetnean sollicitudin, lorem quis bibendum auci elit consequatipsutis sem nibh id eis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.\" text_color=\"#ffffff\" text_font_size=\"17\"][vc_empty_space height=\"20px\"][mkdf_button type=\"simple\" text=\"Learn more\" target=\"_self\" icon_pack=\"\" font_weight=\"\" link=\"http://iacademy.mikado-themes.com/courses/all-courses/\"][/mkdf_elements_holder_item][mkdf_elements_holder_item item_width=\"1-1\" background_image=\"315\" item_padding_768_1024=\"60px 0px\" item_padding_680_768=\"60px 0px\" item_padding=\"130px 0 125px\" item_padding_1280_1600=\"0 0 \" item_padding_1024_1280=\"100px 0 \"][mkdf_testimonials type=\"standard\" skin=\"light\" slider_loop=\"yes\" slider_autoplay=\"yes\" slider_navigation=\"no\" slider_pagination=\"yes\" slider_padding=\"yes\" category=\"standard\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1496327066529{padding-top: 110px !important;padding-bottom: 125px !important;}\" simple_background_color=\"#fafafa\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0px 23% 90px\" item_padding_1024_1280=\"0px 19% 90px\" item_padding_768_1024=\"0px 10% 90px\" item_padding_680_768=\"0px 0% 90px\" item_padding_680=\"0px 0% 90px\"][mkdf_section_title type=\"standard\" position=\"center\" title_tag=\"h1\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" title=\"Popular Online Courses\" text=\"Lorem ipsum gravida nibh vel velit auctor aliquetnean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit\" text_font_size=\"17\"][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_course_slider number_of_columns=\"4\" space_between_items=\"normal\" image_proportions=\"full\" order_by=\"date\" order=\"ASC\" title_tag=\"h5\" enable_excerpt=\"yes\" enable_loop=\"yes\" enable_autoplay=\"yes\" enable_navigation=\"no\" enable_pagination=\"yes\" pagination_position=\"below-slider\" excerpt_length=\"80\"][/vc_column][/vc_row][vc_row][vc_column][mkdf_separator type=\"full-width\" border_style=\"\" color=\"#ebebeb\" thickness=\"1\" top_margin=\"0px\" bottom_margin=\"0px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" simple_background_color=\"#ffffff\" css=\".vc_custom_1496403736716{padding-top: 105px !important;padding-bottom: 120px !important;}\"][vc_column offset=\"vc_col-lg-6\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"13px 10% 0 0\" item_padding_768_1024=\"0 0 50px\" item_padding_680_768=\"0 0 50px\" item_padding_680=\"0 0 50px\" item_padding_1024_1280=\"6px 10% 0 0\"][mkdf_section_title type=\"standard\" position=\"left\" title_tag=\"h2\" disable_break_words=\"yes\" text_tag=\"\" text_font_weight=\"\" title=\"The Trusted Name for In-Home Tutoring.\" text=\"Lorem ipsum gravida nibh vel velit auctor aliquetnean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id eis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum vec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae\" text_font_size=\"17\" title_break_words=\"3\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column offset=\"vc_col-lg-6\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding_1024_1280=\"19px 0 0 \"][mkdf_progress_bar title_tag=\"\" percent=\"77\" title=\"Motivation\"][mkdf_progress_bar title_tag=\"\" percent=\"94\" title=\"Education Skills\"][mkdf_progress_bar title_tag=\"\" percent=\"86\" title=\"Learning\"][mkdf_progress_bar title_tag=\"\" percent=\"62\" title=\"Tutoring\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row row_content_width=\"grid\" content_text_aligment=\"center\" css=\".vc_custom_1497528698074{padding-top: 130px !important;padding-bottom: 83px !important;}\" simple_background_color=\"#3baee2\"][vc_column width=\"1/2\" offset=\"vc_col-md-3\"][mkdf_counter type=\"mkdf-zero-counter\" icon_pack=\"linear_icons\" linear_icon=\"lnr-apartment\" title_tag=\"h4\" title_font_weight=\"\" custom_icon_size=\"48\" digit=\"168\" digit_font_size=\"48\" title=\"Success Stories\" icon_color=\"#ffffff\" digit_color=\"#ffffff\" title_color=\"#ffffff\" icon_margin=\"0 0 22px\"][vc_empty_space height=\"40px\"][/vc_column][vc_column width=\"1/2\" offset=\"vc_col-md-3\"][mkdf_counter type=\"mkdf-zero-counter\" icon_pack=\"linear_icons\" linear_icon=\"lnr-user\" title_tag=\"h4\" title_font_weight=\"\" custom_icon_size=\"48\" digit=\"678\" digit_font_size=\"48\" title=\"Trusted Tutors\" icon_color=\"#ffffff\" digit_color=\"#ffffff\" title_color=\"#ffffff\" icon_margin=\"0 0 22px\"][vc_empty_space height=\"40px\"][/vc_column][vc_column width=\"1/2\" offset=\"vc_col-md-3\"][mkdf_counter type=\"mkdf-zero-counter\" icon_pack=\"linear_icons\" linear_icon=\"lnr-calendar-full\" title_tag=\"h4\" title_font_weight=\"\" custom_icon_size=\"48\" digit=\"347\" digit_font_size=\"48\" title=\"Scheduled Events\" icon_color=\"#ffffff\" digit_color=\"#ffffff\" title_color=\"#ffffff\" icon_margin=\"0 0 22px\"][vc_empty_space height=\"40px\"][/vc_column][vc_column width=\"1/2\" offset=\"vc_col-md-3\"][mkdf_counter type=\"mkdf-zero-counter\" icon_pack=\"linear_icons\" linear_icon=\"lnr-laptop-phone\" title_tag=\"h4\" title_font_weight=\"\" custom_icon_size=\"50\" digit=\"1912\" digit_font_size=\"49\" title=\"Available Courses\" icon_color=\"#ffffff\" digit_color=\"#ffffff\" title_color=\"#ffffff\" icon_margin=\"0 0 20px\"][vc_empty_space height=\"40px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1496236353668{padding-top: 110px !important;padding-bottom: 86px !important;}\" simple_background_color=\"#ffffff\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0px 23% 90px\" item_padding_768_1024=\"0px 10% 90px\" item_padding_1024_1280=\"0px 18% 90px\" item_padding_680_768=\"0px 0% 90px\" item_padding_680=\"0px 0% 90px\"][mkdf_section_title type=\"standard\" title_tag=\"h1\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" title=\"Latest News\" text=\"Lorem Isn gravida nibh vel velit auctor aliquetnean sollicitudin,lorem quis bibendum auci elit consequat psutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus\" text_font_size=\"17\"][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_blog_list type=\"standard\" number_of_columns=\"3\" order_by=\"date\" order=\"DESC\" post_info_category=\"no\" number_of_posts=\"3\" excerpt_length=\"26\" category=\"business\"][/vc_column][/vc_row][vc_row][vc_column][mkdf_separator type=\"full-width\" border_style=\"\" color=\"#ebebeb\" thickness=\"1\" top_margin=\"0px\" bottom_margin=\"0px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1496327815156{padding-top: 110px !important;padding-bottom: 30px !important;}\" simple_background_color=\"#ffffff\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0px 23% 90px\" item_padding_768_1024=\"0px 10% 90px\" item_padding_1024_1280=\"0px 18% 90px\" item_padding_680_768=\"0px 0% 90px\" item_padding_680=\"0px 0% 90px\"][mkdf_section_title type=\"standard\" title_tag=\"h1\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" title=\"Get in Touch!\" text=\"Lorem Isn gravida nibh vel velit auctor aliquetnean sollicitudin,lorem quis bibendum auci elit consequat psutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus\" text_font_size=\"17\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row][vc_column][mkdf_google_map address1=\"Christopher Columbus Dr, Jersey City, NJ 07302, USA\" pin=\"731\" map_height=\"600px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" content_text_aligment=\"left\" simple_background_color=\"#fafafa\" css=\".vc_custom_1497252628138{padding-top: 30px !important;padding-bottom: 5px !important;}\"][vc_column width=\"1/2\" offset=\"vc_col-lg-offset-0 vc_col-lg-3 vc_col-md-offset-0 vc_col-md-6 vc_col-sm-offset-0 vc_col-xs-12\"][vc_column_text]\n<h5>Subscribe to Newsletter</h5>\n[/vc_column_text][vc_column_text css=\".vc_custom_1496415879752{margin-top: -20px !important;}\"]\n<h6><span style=\"color: #666666; font-size: 13px; font-weight: 400;\">Get updates for new Classes</span></h6>\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" offset=\"vc_col-lg-offset-0 vc_col-lg-3 vc_col-md-offset-0 vc_col-md-6 vc_col-sm-offset-0 vc_col-xs-12\" css=\".vc_custom_1496751666044{margin-left: -17% !important;}\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"16px 0 0 \"][contact-form-7 id=\"2102\" html_class=\"cf7_custom_style_1\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column width=\"1/2\" offset=\"vc_col-lg-offset-0 vc_col-lg-3 vc_col-md-offset-0 vc_col-md-6 vc_col-sm-offset-0 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding_768_1024=\"0 0 40px\" item_padding_680_768=\"0 0 40px\" item_padding_680=\"0 0 40px\"][vc_column_text]\n<h5>Follow Us: [mkdf_icon icon_pack=\"font_elegant\" fe_icon=\"social_twitter\" type=\"mkdf-normal\" target=\"_blank\" custom_size=\"12\" icon_color=\"#1a1921\" hover_icon_color=\"#d8a64e\" link=\"https://twitter.com/\" margin=\"1px 15px 0 15px\"][mkdf_icon icon_pack=\"font_awesome\" fa_icon=\"fa-instagram\" type=\"mkdf-normal\" target=\"_blank\" custom_size=\"15\" icon_color=\"#1a1921\" hover_icon_color=\"#d8a64e\" link=\"https://www.instagram.com\" margin=\"2px 13px 0 0\"][mkdf_icon icon_pack=\"font_elegant\" fe_icon=\"social_facebook\" type=\"mkdf-normal\" target=\"_blank\" custom_size=\"12\" icon_color=\"#1a1921\" hover_icon_color=\"#d8a64e\" link=\"https://www.facebook.com/\"]</h5>\n[/vc_column_text][vc_column_text css=\".vc_custom_1496651736932{margin-top: -20px !important;}\"]\n<h6><span style=\"color: #666666; font-size: 13px; font-weight: 400;\">We want to hear from you!</span></h6>\n[/vc_column_text][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column width=\"1/2\" offset=\"vc_col-lg-offset-0 vc_col-lg-3 vc_col-md-offset-0 vc_col-md-6 vc_col-sm-offset-0 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding_768_1024=\"0 0 40px\" item_padding_680_768=\"0 0 40px\" item_padding_680=\"0 0 40px\"][vc_column_text]\n<h5>Call Us: <span style=\"color: #25b3e9;\">060 777 9999</span></h5>\n[/vc_column_text][vc_column_text css=\".vc_custom_1496652527460{margin-top: -20px !important;}\"]\n<h6><span style=\"color: #666666; font-size: 13px; font-weight: 400;\">Do not hesitate to contact us</span></h6>\n[/vc_column_text][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row]','Home 12','','publish','closed','closed','','home-12','','','2017-05-31 15:16:01','2017-05-31 15:16:01','',0,'http://iacademy.mikado-themes.com/?page_id=1485',0,'page','',0),(1487,1,'2017-05-31 15:18:16','2017-05-31 15:18:16','','blog-post-15','','inherit','open','closed','','blog-post-15','','','2017-05-31 15:18:16','2017-05-31 15:18:16','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/blog-post-15.jpg',0,'attachment','image/jpeg',0),(1488,1,'2017-05-31 15:18:19','2017-05-31 15:18:19','','blog-post-16','','inherit','open','closed','','blog-post-16','','','2017-05-31 15:18:19','2017-05-31 15:18:19','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/blog-post-16.jpg',0,'attachment','image/jpeg',0),(1490,1,'2017-05-31 15:18:23','2017-05-31 15:18:23','','blog-post-18','','inherit','open','closed','','blog-post-18','','','2017-05-31 15:18:23','2017-05-31 15:18:23','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/blog-post-18.jpg',0,'attachment','image/jpeg',0),(1495,1,'2017-05-29 13:55:21','2017-05-29 13:55:21','[vc_row][vc_column][vc_column_text css=\".vc_custom_1497863370420{margin-top: -12px !important;padding-bottom: 27px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_column_text]\n<blockquote>We teach, and encourage a love of learning, collaboration, and compassion. Everyone a learner everyday.</blockquote>\n[/vc_column_text][vc_column_text css=\".vc_custom_1497863385028{padding-top: 25px !important;padding-bottom: 53px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_single_image image=\"770\" img_size=\"full\"][vc_column_text css=\".vc_custom_1497863394004{padding-top: 38px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][/vc_column][/vc_row]','The love of learning.','Donec vitae sapien ut libero venenatis faucibus. Nullam quis ante. Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh. Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus. Phasellus viverra nulla ut metus varius laoreet. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.','publish','open','open','','the-love-of-learning','','','2017-05-29 13:55:21','2017-05-29 13:55:21','',0,'http://iacademy.mikado-themes.com/?p=1495',0,'post','',0),(1497,1,'2017-05-30 15:05:03','2017-05-30 15:05:03','[vc_row][vc_column][vc_column_text css=\".vc_custom_1497864084130{margin-top: -12px !important;padding-bottom: 27px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_column_text]\n<blockquote>We teach, and encourage a love of learning, collaboration, and compassion. Everyone a learner everyday.</blockquote>\n[/vc_column_text][vc_column_text css=\".vc_custom_1497864092217{padding-top: 25px !important;padding-bottom: 53px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_single_image image=\"770\" img_size=\"full\"][vc_column_text css=\".vc_custom_1497864100364{padding-top: 38px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][/vc_column][/vc_row]','Communication! The human connection.','Donec vitae sapien ut libero venenatis faucibus. Nullam quis ante. Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh. Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus. Phasellus viverra nulla ut metus varius laoreet. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.','publish','open','open','','communication-the-human-connection','','','2017-05-30 15:05:03','2017-05-30 15:05:03','',0,'http://iacademy.mikado-themes.com/?p=1497',0,'post','',0),(1504,1,'2017-06-01 08:36:04','2017-06-01 08:36:04','[vc_row][vc_column][mkdf_separator type=\"full-width\" border_style=\"\" color=\"#ebebeb\" thickness=\"1\" top_margin=\"0px\" bottom_margin=\"0px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1496306844535{padding-top: 130px !important;padding-bottom: 82px !important;}\" simple_background_color=\"#ffffff\"][vc_column offset=\"vc_col-md-4\"][mkdf_single_image enable_image_shadow=\"no\" image=\"1505\" image_size=\"full\"][vc_empty_space height=\"28px\"][mkdf_section_title type=\"standard\" position=\"left\" title_tag=\"h4\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" title=\"Success Needs a Plan\" text=\"Lorem ipsum gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit vulputate\" text_font_size=\"15\"][vc_empty_space height=\"40px\"][/vc_column][vc_column offset=\"vc_col-md-4\"][mkdf_single_image enable_image_shadow=\"no\" image=\"1506\" image_size=\"full\"][vc_empty_space height=\"28px\"][mkdf_section_title type=\"standard\" position=\"left\" title_tag=\"h4\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" title=\"Students Come First\" text=\"Lorem ipsum gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit vulputate\" text_font_size=\"15\"][vc_empty_space height=\"40px\"][/vc_column][vc_column offset=\"vc_col-md-4\"][mkdf_single_image enable_image_shadow=\"no\" image=\"1508\" image_size=\"full\"][vc_empty_space height=\"28px\"][mkdf_section_title type=\"standard\" position=\"left\" title_tag=\"h4\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" title=\"The Best Tutors \" text=\"Lorem ipsum gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit vulputate\" text_font_size=\"15\"][vc_empty_space height=\"40px\"][/vc_column][/vc_row][vc_row][vc_column][mkdf_separator type=\"full-width\" border_style=\"\" color=\"#ebebeb\" thickness=\"1\" top_margin=\"0px\" bottom_margin=\"0px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" simple_background_color=\"#ffffff\" css=\".vc_custom_1496403805007{padding-top: 105px !important;padding-bottom: 120px !important;}\"][vc_column offset=\"vc_col-lg-6\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"13px 10% 0 0 \" item_padding_768_1024=\"0 0 50px\" item_padding_680_768=\"0 0 50px\" item_padding_680=\"0 0 50px\" item_padding_1024_1280=\"6px 10% 0 0 \"][mkdf_section_title type=\"standard\" position=\"left\" title_tag=\"h2\" disable_break_words=\"yes\" text_tag=\"\" text_font_weight=\"\" title=\"The Trusted Name for In-Home Tutoring.\" text=\"Lorem ipsum gravida nibh vel velit auctor aliquetnean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id eis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum vec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae\" text_font_size=\"17\" title_break_words=\"3\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column offset=\"vc_col-lg-6\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding_1024_1280=\"19px 0 0 \"][mkdf_progress_bar title_tag=\"\" percent=\"77\" title=\"Motivation\"][mkdf_progress_bar title_tag=\"\" percent=\"94\" title=\"Education Skills\"][mkdf_progress_bar title_tag=\"\" percent=\"86\" title=\"Learning\"][mkdf_progress_bar title_tag=\"\" percent=\"62\" title=\"Tutoring\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row][vc_column][mkdf_separator type=\"full-width\" border_style=\"\" color=\"#ebebeb\" thickness=\"1\" top_margin=\"0px\" bottom_margin=\"0px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" disable_background_image=\"\" css=\".vc_custom_1496323323385{padding-top: 110px !important;padding-bottom: 100px !important;}\" simple_background_image=\"1541\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 23% 92px\" item_padding_768_1024=\"0 10% 92px\" item_padding_680_768=\"0 0 92px\" item_padding_680=\"0 0 92px\" item_padding_1280_1600=\"0 23% 92px\" item_padding_1024_1280=\"0 18% 92px\"][mkdf_section_title type=\"standard\" title_tag=\"h1\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" title=\"Our Gallery\" text=\"Lorem ipsum gravida nibh vel velit auctor aliquetnean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. \" text_font_size=\"17\"][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_image_gallery type=\"grid\" enable_image_shadow=\"no\" image_behavior=\"lightbox\" number_of_columns=\"four\" space_between_columns=\"normal\" images=\"1631,1632,1633,1634,1635,1636,1637,1630\" image_size=\"full\"][/vc_column][/vc_row][vc_row][vc_column][mkdf_separator type=\"full-width\" border_style=\"\" color=\"#ebebeb\" thickness=\"1\" top_margin=\"0px\" bottom_margin=\"0px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" simple_background_color=\"#ffffff\" css=\".vc_custom_1496389074344{padding-top: 130px !important;padding-bottom: 130px !important;}\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0px 15% 0px 0\" item_padding_1280_1600=\"0px 15% 0px 0\" item_padding_1024_1280=\"0px 7% 0px 0\" item_padding_768_1024=\"0px\" item_padding_680_768=\"0px\" item_padding_680=\"0px\"][mkdf_tabs type=\"vertical\"][mkdf_tabs_item content_title_tag=\"h2\" tab_title=\"What We Do\" tab_image=\"865\" tab_content_title=\"Learning Possibilities\" tab_content_description=\"Lorem Ipsn gravida nibh vel velit auctor aliquetn sollicitudirem quibibendum auci elit cons equat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"We enrich lives through learning.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"Maximizing potential through individual attention.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"The trusted name for specialized training.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"People teach. People learn. This is where they connect.\" title_size=\"17\"][/mkdf_tabs_item][mkdf_tabs_item content_title_tag=\"h2\" tab_title=\"Degree Programme\" tab_image=\"911\" tab_content_title=\"Inspiring Minds\" tab_content_description=\"Lorem Ipsn gravida nibh vel velit auctor aliquetn sollicitudirem quibibendum auci elit cons equat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"Maximizing potential through individual attention.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"We enrich lives through learning.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"People teach. People learn. This is where they connect.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"The trusted name for specialized training.\" title_size=\"17\"][/mkdf_tabs_item][mkdf_tabs_item content_title_tag=\"h2\" tab_title=\"Career Achievements\" tab_image=\"914\" tab_content_title=\"Investing in Knowledge\" tab_content_description=\"Lorem Ipsn gravida nibh vel velit auctor aliquetn sollicitudirem quibibendum auci elit cons equat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"We enrich lives through learning.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"Maximizing potential through individual attention.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"The trusted name for specialized training.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"People teach. People learn. This is where they connect.\" title_size=\"17\"][/mkdf_tabs_item][mkdf_tabs_item content_title_tag=\"h2\" tab_title=\"Personal Managment\" tab_image=\"918\" tab_content_title=\"Secure Your Future\" tab_content_description=\"Lorem Ipsn gravida nibh vel velit auctor aliquetn sollicitudirem quibibendum auci elit cons equat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"Maximizing potential through individual attention.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"We enrich lives through learning.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"People teach. People learn. This is where they connect.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"The trusted name for specialized training.\" title_size=\"17\"][/mkdf_tabs_item][mkdf_tabs_item content_title_tag=\"h2\" tab_title=\"Steps To Success\" tab_image=\"925\" tab_content_title=\"Where Learning Begins\" tab_content_description=\"Lorem Ipsn gravida nibh vel velit auctor aliquetn sollicitudirem quibibendum auci elit cons equat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"We enrich lives through learning.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"Maximizing potential through individual attention.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"The trusted name for specialized training.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"People teach. People learn. This is where they connect.\" title_size=\"17\"][/mkdf_tabs_item][mkdf_tabs_item content_title_tag=\"h2\" tab_title=\"Knowledge Transfer\" tab_image=\"928\" tab_content_title=\"Knowledge is Power\" tab_content_description=\"Lorem Ipsn gravida nibh vel velit auctor aliquetn sollicitudirem quibibendum auci elit cons equat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"Maximizing potential through individual attention.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"We enrich lives through learning.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"People teach. People learn. This is where they connect.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"The trusted name for specialized training.\" title_size=\"17\"][/mkdf_tabs_item][/mkdf_tabs][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row][vc_column][mkdf_separator type=\"full-width\" border_style=\"\" color=\"#ebebeb\" thickness=\"1\" top_margin=\"0px\" bottom_margin=\"0px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" disable_background_image=\"\" css=\".vc_custom_1496308636213{padding-top: 110px !important;padding-bottom: 98px !important;}\" simple_background_image=\"1541\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 23% 92px\" item_padding_768_1024=\"0 10% 92px\" item_padding_680_768=\"0 0 92px\" item_padding_680=\"0 0 92px\" item_padding_1280_1600=\"0 23% 92px\" item_padding_1024_1280=\"0 18% 92px\"][mkdf_section_title type=\"standard\" title_tag=\"h1\" disable_break_words=\"yes\" text_tag=\"\" text_font_weight=\"\" title=\"Popular Online Courses\" text=\"Lorem ipsum gravida nibh vel velit auctor aliquetnean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit \" text_font_size=\"17\"][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_course_list number_of_columns=\"4\" space_between_items=\"normal\" number_of_items=\"4\" order_by=\"date\" order=\"ASC\" title_tag=\"h5\" excerpt_length=\"73\"][/vc_column][/vc_row][vc_row][vc_column][mkdf_separator type=\"full-width\" border_style=\"\" color=\"#ebebeb\" thickness=\"1\" top_margin=\"0px\" bottom_margin=\"0px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1496223848531{padding-top: 125px !important;padding-bottom: 75px !important;}\" simple_background_color=\"#ffffff\"][vc_column][mkdf_blog_list type=\"standard\" number_of_columns=\"3\" order_by=\"title\" order=\"ASC\" post_info_image=\"no\" post_info_category=\"no\" number_of_posts=\"3\" excerpt_length=\"33\"][/vc_column][/vc_row]','Home 6','','publish','closed','closed','','home-6','','','2017-06-01 08:36:04','2017-06-01 08:36:04','',0,'http://iacademy.mikado-themes.com/?page_id=1504',0,'page','',0),(1505,1,'2017-06-01 08:08:34','2017-06-01 08:08:34','','h8-img-1','','inherit','open','closed','','h8-img-1','','','2017-06-01 08:08:34','2017-06-01 08:08:34','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/h8-img-1.jpg',0,'attachment','image/jpeg',0),(1506,1,'2017-06-01 08:08:37','2017-06-01 08:08:37','','h8-img-2','','inherit','open','closed','','h8-img-2','','','2017-06-01 08:08:37','2017-06-01 08:08:37','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/h8-img-2.jpg',0,'attachment','image/jpeg',0),(1507,1,'2017-05-31 10:25:26','2017-05-31 10:25:26','[vc_row][vc_column][vc_column_text css=\".vc_custom_1497865132399{margin-top: -12px !important;padding-bottom: 27px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_column_text]\n<blockquote>We teach, and encourage a love of learning, collaboration, and compassion. Everyone a learner everyday.</blockquote>\n[/vc_column_text][vc_column_text css=\".vc_custom_1497865140647{padding-top: 25px !important;padding-bottom: 53px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_single_image image=\"770\" img_size=\"full\"][vc_column_text css=\".vc_custom_1497865148936{padding-top: 38px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][/vc_column][/vc_row]','Follow your passion!','Donec vitae sapien ut libero venenatis faucibus. Nullam quis ante. Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh. Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus. Phasellus viverra nulla ut metus varius laoreet. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.','publish','open','open','','follow-your-passion','','','2017-05-31 10:25:26','2017-05-31 10:25:26','',0,'http://iacademy.mikado-themes.com/?p=1507',0,'post','',0),(1508,1,'2017-06-01 08:08:39','2017-06-01 08:08:39','','h8-img-3','','inherit','open','closed','','h8-img-3','','','2017-06-01 08:08:39','2017-06-01 08:08:39','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/h8-img-3.jpg',0,'attachment','image/jpeg',0),(1509,1,'2017-06-01 08:10:45','2017-06-01 08:10:45','\"Everythings Nice\" from YouTube Audio Library by Jingle Punks. Genre: R&amp;B &amp; Soul.','Everythings Nice','','inherit','open','closed','','everythings-nice','','','2017-06-01 08:10:45','2017-06-01 08:10:45','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/b-audio-everytings-nice.mp3',0,'attachment','audio/mpeg',0),(1511,1,'2017-05-31 10:20:41','2017-05-31 10:20:41','[vc_row][vc_column][vc_column_text css=\".vc_custom_1497864860064{margin-top: -12px !important;padding-bottom: 27px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_column_text]\n<blockquote>We teach, and encourage a love of learning, collaboration, and compassion. Everyone a learner everyday.</blockquote>\n[/vc_column_text][vc_column_text css=\".vc_custom_1497864993337{padding-top: 25px !important;padding-bottom: 53px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_single_image image=\"770\" img_size=\"full\"][vc_column_text css=\".vc_custom_1497865105112{padding-top: 38px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][/vc_column][/vc_row]','Success is no accident.','Donec vitae sapien ut libero venenatis faucibus. Nullam quis ante. Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh. Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus. Phasellus viverra nulla ut metus varius laoreet. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.','publish','open','open','','success-is-no-accident','','','2017-05-31 10:20:41','2017-05-31 10:20:41','',0,'http://iacademy.mikado-themes.com/?p=1511',0,'post','',0),(1513,1,'2017-06-01 08:20:38','2017-06-01 08:20:38','','blog-post-19','','inherit','open','closed','','blog-post-19','','','2017-06-01 08:20:38','2017-06-01 08:20:38','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/blog-post-19.jpg',0,'attachment','image/jpeg',0),(1514,1,'2017-06-01 08:20:41','2017-06-01 08:20:41','','blog-post-20','','inherit','open','closed','','blog-post-20','','','2017-06-01 08:20:41','2017-06-01 08:20:41','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/blog-post-20.jpg',0,'attachment','image/jpeg',0),(1515,1,'2017-06-01 08:20:43','2017-06-01 08:20:43','','blog-post-21','','inherit','open','closed','','blog-post-21','','','2017-06-01 08:20:43','2017-06-01 08:20:43','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/blog-post-21.jpg',0,'attachment','image/jpeg',0),(1517,1,'2017-05-31 10:10:37','2017-05-31 10:10:37','[vc_row][vc_column][vc_column_text css=\".vc_custom_1497864571083{margin-top: -12px !important;padding-bottom: 27px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_column_text]\n<blockquote>We teach, and encourage a love of learning, collaboration, and compassion. Everyone a learner everyday.</blockquote>\n[/vc_column_text][vc_column_text css=\".vc_custom_1497864581153{padding-top: 25px !important;padding-bottom: 53px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_single_image image=\"770\" img_size=\"full\"][vc_column_text css=\".vc_custom_1497864590233{padding-top: 38px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][/vc_column][/vc_row]','There are no secrets to success.','Donec vitae sapien ut libero venenatis faucibus. Nullam quis ante. Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh. Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus. Phasellus viverra nulla ut metus varius laoreet. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.','publish','open','open','','there-are-no-secrets-to-success','','','2017-05-31 10:10:37','2017-05-31 10:10:37','',0,'http://iacademy.mikado-themes.com/?p=1517',0,'post','',0),(1518,1,'2017-06-01 08:31:31','2017-06-01 08:31:31','','blog-post-22','','inherit','open','closed','','blog-post-22','','','2017-06-01 08:31:31','2017-06-01 08:31:31','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/blog-post-22.jpg',0,'attachment','image/jpeg',0),(1524,1,'2017-05-31 10:15:47','2017-05-31 10:15:47','[vc_row][vc_column][vc_column_text css=\".vc_custom_1497864810097{margin-top: -12px !important;padding-bottom: 27px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_column_text]\n<blockquote>We teach, and encourage a love of learning, collaboration, and compassion. Everyone a learner everyday.</blockquote>\n[/vc_column_text][vc_column_text css=\".vc_custom_1497864827288{padding-top: 25px !important;padding-bottom: 53px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_single_image image=\"770\" img_size=\"full\"][vc_column_text css=\".vc_custom_1497864636987{padding-top: 38px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][/vc_column][/vc_row]','Greatness will come.','Donec vitae sapien ut libero venenatis faucibus. Nullam quis ante. Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh. Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus. Phasellus viverra nulla ut metus varius laoreet. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.','publish','open','open','','greatness-will-come','','','2017-05-31 10:15:47','2017-05-31 10:15:47','',0,'http://iacademy.mikado-themes.com/?p=1524',0,'post','',3),(1525,1,'2017-06-01 08:41:25','2017-06-01 08:41:25','','blog-post-23','','inherit','open','closed','','blog-post-23','','','2017-06-01 08:41:25','2017-06-01 08:41:25','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/blog-post-23.jpg',0,'attachment','image/jpeg',0),(1528,1,'2017-05-31 10:05:53','2017-05-31 10:05:53','[vc_row][vc_column][vc_column_text css=\".vc_custom_1497864514650{margin-top: -12px !important;padding-bottom: 27px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_column_text]\n<blockquote>We teach, and encourage a love of learning, collaboration, and compassion. Everyone a learner everyday.</blockquote>\n[/vc_column_text][vc_column_text css=\".vc_custom_1496130925642{padding-top: 25px !important;padding-bottom: 53px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor aliquet.[/vc_column_text][vc_single_image image=\"770\" img_size=\"full\"][vc_column_text css=\".vc_custom_1497864530873{padding-top: 38px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][/vc_column][/vc_row]','Believe in yourself! Have faith!','Donec vitae sapien ut libero venenatis faucibus. Nullam quis ante. Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh. Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus. Phasellus viverra nulla ut metus varius laoreet. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.','publish','open','open','','believe-in-yourself-have-faith','','','2017-05-31 10:05:53','2017-05-31 10:05:53','',0,'http://iacademy.mikado-themes.com/?p=1528',0,'post','',0),(1530,1,'2017-06-01 08:49:49','2017-06-01 08:49:49','','blog-post-24','','inherit','open','closed','','blog-post-24','','','2017-06-01 08:49:49','2017-06-01 08:49:49','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/blog-post-24.jpg',0,'attachment','image/jpeg',0),(1536,1,'2017-05-29 13:50:28','2017-05-29 13:50:28','[vc_row][vc_column][vc_column_text css=\".vc_custom_1497863317965{margin-top: -12px !important;padding-bottom: 27px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_column_text]\n<blockquote>We teach, and encourage a love of learning, collaboration, and compassion. Everyone a learner everyday.</blockquote>\n[/vc_column_text][vc_column_text css=\".vc_custom_1497863331444{padding-top: 25px !important;padding-bottom: 53px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_single_image image=\"770\" img_size=\"full\"][vc_column_text css=\".vc_custom_1497863341341{padding-top: 38px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][/vc_column][/vc_row]','Talent is cheaper than table salt.','Donec vitae sapien ut libero venenatis faucibus. Nullam quis ante. Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh. Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus. Phasellus viverra nulla ut metus varius laoreet. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.','publish','open','open','','talent-is-cheaper-than-table-salt','','','2017-05-29 13:50:28','2017-05-29 13:50:28','',0,'http://iacademy.mikado-themes.com/?p=1536',0,'post','',0),(1541,1,'2017-06-01 09:17:00','2017-06-01 09:17:00','','h8-backgroung-img-1','','inherit','open','closed','','h8-backgroung-img-1','','','2017-06-01 09:17:00','2017-06-01 09:17:00','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/h8-backgroung-img-1.jpg',0,'attachment','image/jpeg',0),(1544,1,'2017-05-29 13:45:01','2017-05-29 13:45:01','[vc_row][vc_column][vc_column_text css=\".vc_custom_1497863263164{margin-top: -12px !important;padding-bottom: 27px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_column_text]\n<blockquote>We teach, and encourage a love of learning, collaboration, and compassion. Everyone a learner everyday.</blockquote>\n[/vc_column_text][vc_column_text css=\".vc_custom_1497863273463{padding-top: 25px !important;padding-bottom: 53px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_single_image image=\"770\" img_size=\"full\"][vc_column_text css=\".vc_custom_1497863283436{padding-top: 38px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][/vc_column][/vc_row]','We all want to become successful...','Donec vitae sapien ut libero venenatis faucibus. Nullam quis ante. Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh. Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus. Phasellus viverra nulla ut metus varius laoreet. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.','publish','open','open','','we-all-want-to-become-successful','','','2017-05-29 13:45:01','2017-05-29 13:45:01','',0,'http://iacademy.mikado-themes.com/?p=1544',0,'post','',2),(1548,1,'2017-05-30 15:00:12','2017-05-30 15:00:12','[vc_row][vc_column][vc_column_text css=\".vc_custom_1497864040740{margin-top: -12px !important;padding-bottom: 27px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_column_text]\n<blockquote>We teach, and encourage a love of learning, collaboration, and compassion. Everyone a learner everyday.</blockquote>\n[/vc_column_text][vc_column_text css=\".vc_custom_1497864049346{padding-top: 25px !important;padding-bottom: 53px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_single_image image=\"770\" img_size=\"full\"][vc_column_text css=\".vc_custom_1497864057243{padding-top: 38px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][/vc_column][/vc_row]','What we think, we become.','Donec vitae sapien ut libero venenatis faucibus. Nullam quis ante. Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh. Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus. Phasellus viverra nulla ut metus varius laoreet. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.','publish','open','open','','what-we-think-we-become','','','2017-05-30 15:00:12','2017-05-30 15:00:12','',0,'http://iacademy.mikado-themes.com/?p=1548',0,'post','',0),(1550,1,'2017-05-30 14:55:14','2017-05-30 14:55:14','[vc_row][vc_column][vc_column_text css=\".vc_custom_1497863949293{margin-top: -12px !important;padding-bottom: 27px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_column_text]\n<blockquote>We teach, and encourage a love of learning, collaboration, and compassion. Everyone a learner everyday.</blockquote>\n[/vc_column_text][vc_column_text css=\".vc_custom_1497863976125{padding-top: 25px !important;padding-bottom: 53px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_single_image image=\"770\" img_size=\"full\"][vc_column_text css=\".vc_custom_1497863984854{padding-top: 38px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][/vc_column][/vc_row]','Out of difficulties grow miracles.','Donec vitae sapien ut libero venenatis faucibus. Nullam quis ante. Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh. Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus. Phasellus viverra nulla ut metus varius laoreet. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.','publish','open','open','','out-of-difficulties-grow-miracles','','','2017-05-30 14:55:14','2017-05-30 14:55:14','',0,'http://iacademy.mikado-themes.com/?p=1550',0,'post','',0),(1551,1,'2017-06-01 10:06:10','2017-06-01 10:06:10','','h1-slide-1-background','','inherit','open','closed','','h1-slide-1-background','','','2017-06-01 10:06:10','2017-06-01 10:06:10','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/h1-slide-1-background.jpg',0,'attachment','image/jpeg',0),(1553,1,'2017-05-30 14:50:17','2017-05-30 14:50:17','[vc_row][vc_column][vc_column_text css=\".vc_custom_1497863896923{margin-top: -12px !important;padding-bottom: 27px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_column_text]\n<blockquote>We teach, and encourage a love of learning, collaboration, and compassion. Everyone a learner everyday.</blockquote>\n[/vc_column_text][vc_column_text css=\".vc_custom_1497863905258{padding-top: 25px !important;padding-bottom: 53px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_single_image image=\"770\" img_size=\"full\"][vc_column_text css=\".vc_custom_1497863913784{padding-top: 38px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][/vc_column][/vc_row]','Enthusiasm moves the world.','Donec vitae sapien ut libero venenatis faucibus. Nullam quis ante. Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh. Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus. Phasellus viverra nulla ut metus varius laoreet. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.','publish','open','open','','enthusiasm-moves-the-world','','','2017-05-30 14:50:17','2017-05-30 14:50:17','',0,'http://iacademy.mikado-themes.com/?p=1553',0,'post','',0),(1555,1,'2017-06-01 10:12:17','2017-06-01 10:12:17','','h5-client-1-h','','inherit','open','closed','','h5-client-1-h','','','2017-06-01 10:12:17','2017-06-01 10:12:17','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h5-client-1-h.png',0,'attachment','image/png',0),(1559,1,'2017-06-01 10:15:46','2017-06-01 10:15:46','','h1-slide-3-background','','inherit','open','closed','','h1-slide-3-background','','','2017-06-01 10:15:46','2017-06-01 10:15:46','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/h1-slide-3-background.jpg',0,'attachment','image/jpeg',0),(1560,1,'2017-06-01 10:17:30','2017-06-01 10:17:30','','h5-client-4-h','','inherit','open','closed','','h5-client-4-h','','','2017-06-01 10:17:30','2017-06-01 10:17:30','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h5-client-4-h.png',0,'attachment','image/png',0),(1561,1,'2017-06-01 10:17:31','2017-06-01 10:17:31','','h5-client-5-h','','inherit','open','closed','','h5-client-5-h','','','2017-06-01 10:17:31','2017-06-01 10:17:31','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h5-client-5-h.png',0,'attachment','image/png',0),(1563,1,'2017-06-01 10:17:35','2017-06-01 10:17:35','','h5-client-2-h','','inherit','open','closed','','h5-client-2-h','','','2017-06-01 10:17:35','2017-06-01 10:17:35','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h5-client-2-h.png',0,'attachment','image/png',0),(1564,1,'2017-06-01 10:17:36','2017-06-01 10:17:36','','h5-client-3-h','','inherit','open','closed','','h5-client-3-h','','','2017-06-01 10:17:36','2017-06-01 10:17:36','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h5-client-3-h.png',0,'attachment','image/png',0),(1566,1,'2017-06-01 10:20:19','2017-06-01 10:20:19','','h1-slide-2-background','','inherit','open','closed','','h1-slide-2-background','','','2017-06-01 10:20:19','2017-06-01 10:20:19','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/h1-slide-2-background.jpg',0,'attachment','image/jpeg',0),(1570,1,'2017-06-01 10:58:23','2017-06-01 10:58:23','[vc_row row_content_width=\"grid\" content_text_aligment=\"center\" css=\".vc_custom_1496309608001{padding-top: 110px !important;padding-bottom: 130px !important;}\"][vc_column][mkdf_section_title type=\"standard\" position=\"center\" title_tag=\"h1\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" title=\"Online Courses\" text=\"Lorem ipsum gravida nibh vel velit auctor aliquetnean sollicitudin, lorem quis bibendum \" text_font_size=\"17\"][vc_empty_space height=\"90px\"][mkdf_course_table order_by=\"date\" order=\"ASC\" enable_students=\"no\" selected_courses=\"18, 174, 229, 269, 274\"][/vc_column][/vc_row][vc_row][vc_column][mkdf_separator type=\"full-width\" border_style=\"\" color=\"#ebebeb\" thickness=\"1\" top_margin=\"0px\" bottom_margin=\"0px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" simple_background_color=\"#ffffff\" css=\".vc_custom_1496240722963{padding-top: 120px !important;padding-bottom: 113px !important;}\"][vc_column offset=\"vc_col-lg-6\"][mkdf_video_button video_link=\"https://vimeo.com/160672711\" video_image=\"1459\"][/vc_column][vc_column offset=\"vc_col-lg-6\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"50px 7% 0 \" item_padding_768_1024=\"50px 0 0 \" item_padding_680_768=\"50px 0 0 \" item_padding_680=\"50px 0 0 \" item_padding_1024_1280=\"0px 3% 0\" item_padding_1280_1600=\"0px 7% 0\"][mkdf_section_title type=\"standard\" position=\"left\" title_tag=\"h2\" disable_break_words=\"yes\" text_tag=\"\" text_font_weight=\"\" title=\"Empowering Children to Reach Their Potential.\" title_break_words=\"2\" text=\"Lorem ipsum gravida nibh vel velit auctor aliquetnean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id eis sed odio sit amet nibh vulputate cursus mauris.\" text_font_size=\"17\"][vc_empty_space height=\"10px\"][vc_row_inner][vc_column_inner width=\"1/2\"][mkdf_counter type=\"mkdf-zero-counter\" icon_pack=\"font_awesome\" fa_icon=\"\" title_tag=\"h4\" title_font_weight=\"\" digit=\"168\" digit_font_size=\"48\" title=\"User Stories\"][vc_empty_space height=\"30px\"][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1496216729923{margin-left: -23% !important;}\"][mkdf_counter type=\"mkdf-zero-counter\" icon_pack=\"font_awesome\" fa_icon=\"\" title_tag=\"h4\" title_font_weight=\"\" digit=\"347\" digit_font_size=\"48\" title=\"Scheduled Events\"][vc_empty_space height=\"30px\"][/vc_column_inner][/vc_row_inner][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1496133706947{padding-top: 130px !important;padding-bottom: 110px !important;}\" parallax_background_image=\"921\"][vc_column][mkdf_testimonials type=\"standard\" skin=\"light\" slider_loop=\"yes\" slider_autoplay=\"yes\" slider_navigation=\"no\" slider_pagination=\"yes\" slider_padding=\"no\" number=\"3\" category=\"standard-3\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1496316022273{padding-top: 110px !important;padding-bottom: 123px !important;}\" simple_background_color=\"#ffffff\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 20% 90px\" item_padding_768_1024=\"0 10% 90px\" item_padding_680_768=\"0 0 90px\" item_padding_680=\"0 0 90px\"][mkdf_section_title type=\"standard\" title_tag=\"h1\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" title=\"Our Services\" text=\"Lorem ipsum gravida nibh vel velit auctor aliquetnean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit\" text_font_size=\"17\"][/mkdf_elements_holder_item][/mkdf_elements_holder][vc_row_inner][vc_column_inner offset=\"vc_col-md-4\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 15% 80px 0\" item_padding_768_1024=\"0 0 80px\" item_padding_680_768=\"0 0 80px\" item_padding_680=\"0 0 80px\"][mkdf_icon_with_text type=\"icon-left-from-title\" icon_pack=\"linear_icons\" linear_icon=\"lnr-history\" title_tag=\"\" custom_icon_size=\"30\" title=\"Notification \" text=\"Lorem ipsum proin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis bibendum auctor, nisi elit consequa\" icon_color=\"#d8a64e\" link=\"http://iacademy.mikado-themes.com/contact/\"][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 15% 0 0\" item_padding_768_1024=\"0 0 80px\" item_padding_680_768=\"0 0 80px\" item_padding_680=\"0 0 80px\"][mkdf_icon_with_text type=\"icon-left-from-title\" icon_pack=\"linear_icons\" linear_icon=\"lnr-license\" title_tag=\"\" custom_icon_size=\"30\" title=\"Certification \" text=\"Lorem ipsum proin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis bibendum auctor, nisi elit consequa\" icon_color=\"#d8a64e\" link=\"http://iacademy.mikado-themes.com/become-an-instructor/\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][vc_column_inner offset=\"vc_col-md-4\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 15% 80px 0\" item_padding_768_1024=\"0 0 80px\" item_padding_680_768=\"0 0 80px\" item_padding_680=\"0 0 80px\"][mkdf_icon_with_text type=\"icon-left-from-title\" icon_pack=\"linear_icons\" linear_icon=\"lnr-bus\" title_tag=\"\" custom_icon_size=\"30\" title=\"Campus\" text=\"Lorem ipsum proin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis bibendum auctor, nisi elit consequa\" icon_color=\"#d8a64e\" link=\"http://iacademy.mikado-themes.com/about/\"][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 15% 0 0\" item_padding_768_1024=\"0 0 80px\" item_padding_680_768=\"0 0 80px\" item_padding_680=\"0 0 80px\"][mkdf_icon_with_text type=\"icon-left-from-title\" icon_pack=\"linear_icons\" linear_icon=\"lnr-apartment\" title_tag=\"\" custom_icon_size=\"30\" title=\"Success\" text=\"Lorem ipsum proin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis bibendum auctor, nisi elit consequa\" icon_color=\"#d8a64e\" link=\"http://iacademy.mikado-themes.com/pricing-plan/\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][vc_column_inner offset=\"vc_col-md-4\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 15% 80px 0\" item_padding_768_1024=\"0 0 80px\" item_padding_680_768=\"0 0 80px \" item_padding_680=\"0 0 80px\"][mkdf_icon_with_text type=\"icon-left-from-title\" icon_pack=\"linear_icons\" linear_icon=\"lnr-calendar-full\" title_tag=\"\" custom_icon_size=\"30\" title=\"Knowledge\" text=\"Lorem ipsum proin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis bibendum auctor, nisi elit consequa\" icon_color=\"#d8a64e\" link=\"http://iacademy.mikado-themes.com/courses/all-courses/\"][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 15% 0 0\" item_padding_768_1024=\"0 0 80px\" item_padding_680_768=\"0 0 80px \" item_padding_680=\"0 0 80px\"][mkdf_icon_with_text type=\"icon-left-from-title\" icon_pack=\"linear_icons\" linear_icon=\"lnr-camera\" title_tag=\"\" custom_icon_size=\"30\" title=\"Open Minds\" text=\"Lorem ipsum proin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis bibendum auctor, nisi elit consequa\" icon_color=\"#d8a64e\" link=\"http://iacademy.mikado-themes.com/faq/\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][mkdf_separator type=\"full-width\" border_style=\"\" color=\"#ebebeb\" thickness=\"1\" top_margin=\"0px\" bottom_margin=\"0px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1496388356479{padding-top: 110px !important;padding-bottom: 122px !important;}\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 20% 90px\" item_padding_768_1024=\"0 10% 90px\" item_padding_680_768=\"0 0 90px\" item_padding_680=\"0 0 90px\"][mkdf_section_title type=\"standard\" title_tag=\"h1\" disable_break_words=\"yes\" text_tag=\"\" text_font_weight=\"\" title=\"Popular Online Courses\" text=\"Lorem ipsum gravida nibh vel velit auctor aliquetnean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit\" text_font_size=\"17\"][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_course_slider number_of_columns=\"3\" space_between_items=\"normal\" image_proportions=\"full\" order_by=\"date\" order=\"ASC\" title_tag=\"h4\" enable_excerpt=\"yes\" enable_loop=\"yes\" enable_autoplay=\"yes\" enable_navigation=\"no\" enable_pagination=\"yes\" pagination_position=\"below-slider\" excerpt_length=\"73\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1496316583391{padding-top: 115px !important;padding-bottom: 100px !important;}\" simple_background_color=\"#fdfdfd\" parallax_background_image=\"1577\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 15% 92px\" item_padding_680_768=\"0 3% 92px\" item_padding_768_1024=\"0 0 92px\" item_padding_680=\"0 0% 92px\"][mkdf_section_title type=\"standard\" title_tag=\"h1\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" title=\"Latest Tweets\" text=\"Lorem Isn gravida nibh vel velit auctor aliquetnean sollicitudin,lorem quis bibendum auci elit consequat psutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus\" text_font_size=\"17\" title_color=\"#ffffff\" text_color=\"#ffffff\"][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_twitter_list number_of_columns=\"3\" number_of_tweets=\"6\" user_id=\"3346513492\" transient_time=\"86400\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1497002218225{padding-top: 110px !important;padding-bottom: 90px !important;}\" simple_background_color=\"#ffffff\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 23% 90px\" item_padding_680_768=\"0 3% 90px\" item_padding_768_1024=\"0 10% 90px\" item_padding_1280_1600=\"0 23% 90px\" item_padding_1024_1280=\"0 15% 90px\" item_padding_680=\"0 0% 90px\"][mkdf_section_title type=\"standard\" title_tag=\"h1\" disable_break_words=\"yes\" text_tag=\"\" text_font_weight=\"\" title=\"Upcoming Events\" text=\"Lorem Isn gravida nibh vel velit auctor aliquetnean sollicitudin,lorem quis bibendum auci elit consequat psutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus\" text_font_size=\"17\"][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_events_list columns=\"three\" image_size=\"full\" order_by=\"menu_order\" order=\"ASC\" category=\"business\" number=\"3\"][/vc_column][/vc_row][vc_row][vc_column][mkdf_separator type=\"full-width\" border_style=\"\" color=\"#ebebeb\" thickness=\"1\" top_margin=\"0px\" bottom_margin=\"0px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" content_text_aligment=\"center\" css=\".vc_custom_1496320160366{padding-top: 110px !important;padding-bottom: 130px !important;}\" simple_background_color=\"#fafafa\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 15% 31px\" item_padding_680_768=\"0 3% 31px\" item_padding_768_1024=\"0 5% 31px\" item_padding_680=\"0 0 31px\"][mkdf_section_title type=\"standard\" title_tag=\"h1\" disable_break_words=\"yes\" text_tag=\"\" text_font_weight=\"\" title=\"Get in Touch!\" text=\"Lorem Isn gravida nibh vel velit auctor aliquetnean sollicitudin,lorem quis bibendum auci elit consequat psutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus\" text_font_size=\"17\"][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_button text=\"Contact us\" target=\"_self\" icon_pack=\"\" font_weight=\"\" link=\"http://iacademy.mikado-themes.com/contact/\"][/vc_column][/vc_row][vc_row][vc_column][mkdf_separator type=\"full-width\" border_style=\"\" color=\"#ebebeb\" thickness=\"1\" top_margin=\"0px\" bottom_margin=\"0px\"][/vc_column][/vc_row]','Home 7','','publish','closed','closed','','home-7','','','2017-06-01 10:58:23','2017-06-01 10:58:23','',0,'http://iacademy.mikado-themes.com/?page_id=1570',0,'page','',0),(1577,1,'2017-06-01 11:29:32','2017-06-01 11:29:32','','h9-parallax-img-1','','inherit','open','closed','','h9-parallax-img-1','','','2017-06-01 11:29:32','2017-06-01 11:29:32','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/h9-parallax-img-1.png',0,'attachment','image/png',0),(1580,1,'2017-06-01 11:43:29','2017-06-01 11:43:29','[vc_row row_content_width=\"grid\" content_text_aligment=\"left\" simple_background_color=\"#ffffff\" css=\".vc_custom_1497446239499{padding-top: 63px !important;padding-bottom: 63px !important;}\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"two-columns\" switch_to_one_column=\"1024\" alignment_one_column=\"left\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 30% 0 0\" item_padding_1024_1280=\"30px 18% 0 0\" item_padding_1280_1600=\"0 18% 0 0\" item_padding_768_1024=\"0 18% 0 0\" item_padding_680_768=\"0 18% 0 0\" item_padding_680=\"0 0% 0 0\"][mkdf_section_title type=\"standard\" position=\"left\" title_tag=\"\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" title=\"Empowering children to reach their potential.\" text=\"Lorem ipsum dolor sit amet, consectetuer adipiscing elit neani commodo ligula eget dolor. Aenean massa. Cum sociis Theme natoque penatibus et magnis dis.\"][vc_empty_space height=\"30px\"][vc_row_inner][vc_column_inner width=\"1/2\"][mkdf_counter type=\"mkdf-zero-counter\" icon_pack=\"font_awesome\" fa_icon=\"\" title_tag=\"\" title_font_weight=\"\" digit=\"168\" title=\"User Stories\"][/vc_column_inner][vc_column_inner width=\"1/2\"][mkdf_counter type=\"mkdf-zero-counter\" icon_pack=\"font_awesome\" fa_icon=\"\" title_tag=\"\" title_font_weight=\"\" digit=\"347\" title=\"Scheduled Events\"][vc_empty_space height=\"58px\"][/vc_column_inner][/vc_row_inner][/mkdf_elements_holder_item][mkdf_elements_holder_item item_width=\"1-1\" horizontal_alignment=\"center\" item_padding_1024_1280=\"0\" item_padding_768_1024=\"0\" item_padding_680_768=\"0\" item_padding_680=\"0\" item_padding=\"37px 0\" item_padding_1280_1600=\"37px 0\"][mkdf_video_button video_link=\"https://vimeo.com/157562616\" video_image=\"1586\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row][vc_column][mkdf_separator type=\"full-width\" border_style=\"\" color=\"#ebebeb\" thickness=\"1\" top_margin=\"-10px\" bottom_margin=\"-10px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1496402409845{padding-top: 81px !important;padding-bottom: 70px !important;}\"][vc_column][mkdf_section_title type=\"standard\" title_tag=\"\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" title=\"Gia sư hàng đầu\" title_color=\"#d8a64e\" text=\"Lorem Ipsn gravida nibh vel velit auctor aliquetnean sollicitudin,lorem quis bibendum\"][vc_empty_space height=\"85px\"][mkdf_instructor_list number_of_columns=\"3\" space_between_items=\"normal\" number_of_items=\"9\" order_by=\"date\" order=\"ASC\" instructor_layout=\"simple\" enable_shadow=\"yes\" instructor_background=\"#ffffff\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" content_text_aligment=\"center\" parallax_background_image=\"422\" css=\".vc_custom_1496402470103{padding-top: 100px !important;padding-bottom: 95px !important;}\"][vc_column][mkdf_testimonials type=\"standard\" skin=\"light\" slider_loop=\"yes\" slider_autoplay=\"yes\" slider_navigation=\"no\" slider_pagination=\"yes\" slider_padding=\"no\" number=\"3\" category=\"standard-2\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\"][vc_column offset=\"vc_col-lg-6\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding_1024_1280=\"192px 0 0\" item_padding=\"72px 0 0\" item_padding_1280_1600=\"72px 0 0\" item_padding_768_1024=\"0 0\" item_padding_680_768=\"0 0\" item_padding_680=\"0 0\"][mkdf_single_image enable_image_shadow=\"no\" image=\"1827\" image_size=\"full\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column offset=\"vc_col-lg-6\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding_768_1024=\"70px 0 100px\" item_padding_680_768=\"70px 0 100px\" item_padding_680=\"70px 0 100px\" item_padding=\"72px 0 0\" item_padding_1280_1600=\"72px 0 0\" item_padding_1024_1280=\"72px 0 0\"][vc_column_text css=\".vc_custom_1496329986296{padding-bottom: 20px !important;}\"]\r\n<h4>FAQs</h4>\r\n[/vc_column_text][mkdf_accordion][mkdf_accordion_tab title=\"Can I just enroll in a single course?\"][vc_column_text]Lorem ipsum proin gravida velit auctor aliquet. Aenean sollicitu din, lorem auci elit consequat ipsutissem niuis sed odio sit amet a sit amet.[/vc_column_text][/mkdf_accordion_tab][mkdf_accordion_tab title=\"What is the refund policy?\"][vc_column_text]Lorem ipsum proin gravida velit auctor aliquet. Aenean sollicitu din, lorem auci elit consequat ipsutissem niuis sed odio sit amet a sit amet.[/vc_column_text][/mkdf_accordion_tab][mkdf_accordion_tab title=\"What background knowledge is necessary?\"][vc_column_text]Lorem ipsum proin gravida velit auctor aliquet. Aenean sollicitu din, lorem auci elit consequat ipsutissem niuis sed odio sit amet a sit amet.[/vc_column_text][/mkdf_accordion_tab][mkdf_accordion_tab title=\"Do I need to take the courses in a specific order?\"][vc_column_text]Lorem ipsum proin gravida velit auctor aliquet. Aenean sollicitu din, lorem auci elit consequat ipsutissem niuis sed odio sit amet a sit amet.[/vc_column_text][/mkdf_accordion_tab][/mkdf_accordion][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row][vc_column][mkdf_instructor_list space_between_items=\"normal\" order_by=\"date\" order=\"ASC\" instructor_layout=\"info-bellow\"][/vc_column][/vc_row][vc_row][vc_column][mkdf_instructor_slider number_of_columns=\"3\" space_between_items=\"normal\" order_by=\"date\" order=\"ASC\" instructor_layout=\"info-bellow\" slider_navigation=\"yes\" slider_pagination=\"yes\"][/vc_column][/vc_row][vc_row][vc_column][mkdf_instructor_list space_between_items=\"normal\" order_by=\"date\" order=\"ASC\" instructor_layout=\"info-bellow\"][/vc_column][/vc_row]','Về chúng tôi','','publish','closed','closed','','about','','','2024-10-29 22:18:25','2024-10-29 15:18:25','',0,'http://iacademy.mikado-themes.com/?page_id=1580',0,'page','',0),(1583,1,'2017-06-01 11:47:42','2017-06-01 11:47:42','','h3-slide-1-background','','inherit','open','closed','','h3-slide-1-background','','','2017-06-01 11:47:42','2017-06-01 11:47:42','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/h3-slide-1-background.jpg',0,'attachment','image/jpeg',0),(1584,1,'2017-06-01 11:47:45','2017-06-01 11:47:45','','h3-slide-2-background','','inherit','open','closed','','h3-slide-2-background','','','2017-06-01 11:47:45','2017-06-01 11:47:45','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/h3-slide-2-background.jpg',0,'attachment','image/jpeg',0),(1585,1,'2017-06-01 11:47:47','2017-06-01 11:47:47','','h3-slide-3-background','','inherit','open','closed','','h3-slide-3-background','','','2017-06-01 11:47:47','2017-06-01 11:47:47','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/h3-slide-3-background.jpg',0,'attachment','image/jpeg',0),(1586,1,'2017-06-01 11:52:09','2017-06-01 11:52:09','','about-video-button','','inherit','open','closed','','about-video-button','','','2017-06-01 11:52:09','2017-06-01 11:52:09','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/about-video-button.jpg',0,'attachment','image/jpeg',0),(1630,1,'2017-06-01 13:19:59','2017-06-01 13:19:59','','h8-gallery-img-8','','inherit','open','closed','','h8-gallery-img-8','','','2017-06-01 13:19:59','2017-06-01 13:19:59','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/h8-gallery-img-8.jpg',0,'attachment','image/jpeg',0),(1631,1,'2017-06-01 13:20:01','2017-06-01 13:20:01','','h8-gallery-img-1','','inherit','open','closed','','h8-gallery-img-1','','','2017-06-01 13:20:01','2017-06-01 13:20:01','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/h8-gallery-img-1.jpg',0,'attachment','image/jpeg',0),(1632,1,'2017-06-01 13:20:04','2017-06-01 13:20:04','','h8-gallery-img-2','','inherit','open','closed','','h8-gallery-img-2','','','2017-06-01 13:20:04','2017-06-01 13:20:04','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/h8-gallery-img-2.jpg',0,'attachment','image/jpeg',0),(1633,1,'2017-06-01 13:20:07','2017-06-01 13:20:07','','h8-gallery-img-3','','inherit','open','closed','','h8-gallery-img-3','','','2017-06-01 13:20:07','2017-06-01 13:20:07','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/h8-gallery-img-3.jpg',0,'attachment','image/jpeg',0),(1634,1,'2017-06-01 13:20:09','2017-06-01 13:20:09','','h8-gallery-img-4','','inherit','open','closed','','h8-gallery-img-4','','','2017-06-01 13:20:09','2017-06-01 13:20:09','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/h8-gallery-img-4.jpg',0,'attachment','image/jpeg',0),(1635,1,'2017-06-01 13:20:11','2017-06-01 13:20:11','','h8-gallery-img-5','','inherit','open','closed','','h8-gallery-img-5','','','2017-06-01 13:20:11','2017-06-01 13:20:11','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/h8-gallery-img-5.jpg',0,'attachment','image/jpeg',0),(1636,1,'2017-06-01 13:20:13','2017-06-01 13:20:13','','h8-gallery-img-6','','inherit','open','closed','','h8-gallery-img-6','','','2017-06-01 13:20:13','2017-06-01 13:20:13','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/h8-gallery-img-6.jpg',0,'attachment','image/jpeg',0),(1637,1,'2017-06-01 13:20:15','2017-06-01 13:20:15','','h8-gallery-img-7','','inherit','open','closed','','h8-gallery-img-7','','','2017-06-01 13:20:15','2017-06-01 13:20:15','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/h8-gallery-img-7.jpg',0,'attachment','image/jpeg',0),(1659,1,'2017-06-01 14:35:10','2017-06-01 14:35:10','','h5-slide-1-background','','inherit','open','closed','','h5-slide-1-background','','','2017-06-01 14:35:10','2017-06-01 14:35:10','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/h5-slide-1-background.jpg',0,'attachment','image/jpeg',0),(1660,1,'2017-06-01 14:35:13','2017-06-01 14:35:13','','h5-slide-2-background','','inherit','open','closed','','h5-slide-2-background','','','2017-06-01 14:35:13','2017-06-01 14:35:13','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/h5-slide-2-background.jpg',0,'attachment','image/jpeg',0),(1661,1,'2017-06-01 14:35:16','2017-06-01 14:35:16','','h5-slide-3-background','','inherit','open','closed','','h5-slide-3-background','','','2017-06-01 14:35:16','2017-06-01 14:35:16','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/h5-slide-3-background.jpg',0,'attachment','image/jpeg',0),(1693,1,'2017-06-02 07:20:13','2017-06-02 07:20:13','','h1-img-8','','inherit','open','closed','','h1-img-8','','','2017-06-02 07:20:13','2017-06-02 07:20:13','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h1-img-8.jpg',0,'attachment','image/jpeg',0),(1710,1,'2017-06-02 08:13:59','2017-06-02 08:13:59','','blog-sidebar-contact-form-backround','','inherit','open','closed','','blog-sidebar-contact-form-backround','','','2017-06-02 08:13:59','2017-06-02 08:13:59','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/blog-sidebar-contact-form-backround.jpg',0,'attachment','image/jpeg',0),(1719,1,'2017-06-02 08:50:16','2017-06-02 08:50:16','','h6-slide-2-background','','inherit','open','closed','','h6-slide-2-background','','','2017-06-02 08:50:16','2017-06-02 08:50:16','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/h6-slide-2-background.jpg',0,'attachment','image/jpeg',0),(1722,1,'2017-06-02 09:19:42','2017-06-02 09:19:42','','h6-slide-3-background','','inherit','open','closed','','h6-slide-3-background','','','2017-06-02 09:19:42','2017-06-02 09:19:42','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/h6-slide-3-background.jpg',0,'attachment','image/jpeg',0),(1740,1,'2017-06-02 10:08:49','2017-06-02 10:08:49','Lorem Ipsn gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit namec.','SEO Professional','Lorem Ipsn gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit.','publish','open','closed','','seo-professional','','','2025-05-02 19:08:06','2025-05-02 12:08:06','',0,'http://iacademy.mikado-themes.com/?post_type=product&amp;p=1740',1,'product','',1),(1747,1,'2017-06-02 10:07:13','2017-06-02 10:07:13','','product-1','','inherit','open','closed','','product-1','','','2017-06-02 10:07:13','2017-06-02 10:07:13','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/product-1.jpg',0,'attachment','image/jpeg',0),(1748,1,'2017-06-02 10:07:40','2017-06-02 10:07:40','','product-1-gallery-1','','inherit','open','closed','','product-1-gallery-1','','','2017-06-02 10:07:40','2017-06-02 10:07:40','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/product-1-gallery-1.jpg',0,'attachment','image/jpeg',0),(1749,1,'2017-06-02 10:07:42','2017-06-02 10:07:42','','product-1-gallery-2','','inherit','open','closed','','product-1-gallery-2','','','2017-06-02 10:07:42','2017-06-02 10:07:42','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/product-1-gallery-2-1.jpg',0,'attachment','image/jpeg',0),(1750,1,'2017-06-02 10:07:45','2017-06-02 10:07:45','','product-1-gallery-3','','inherit','open','closed','','product-1-gallery-3','','','2017-06-02 10:07:45','2017-06-02 10:07:45','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/product-1-gallery-3.jpg',0,'attachment','image/jpeg',0),(1797,1,'2017-06-02 10:22:46','2017-06-02 10:22:46','','h7-slide-1-background','','inherit','open','closed','','h7-slide-1-background','','','2017-06-02 10:22:46','2017-06-02 10:22:46','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/h7-slide-1-background-1.jpg',0,'attachment','image/jpeg',0),(1798,1,'2017-06-02 10:22:48','2017-06-02 10:22:48','','h7-slide-2-background','','inherit','open','closed','','h7-slide-2-background','','','2017-06-02 10:22:48','2017-06-02 10:22:48','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/h7-slide-2-background.jpg',0,'attachment','image/jpeg',0),(1799,1,'2017-06-02 10:22:51','2017-06-02 10:22:51','','h7-slide-3-background','','inherit','open','closed','','h7-slide-3-background','','','2017-06-02 10:22:51','2017-06-02 10:22:51','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/h7-slide-3-background.jpg',0,'attachment','image/jpeg',0),(1803,1,'2017-06-02 10:50:32','2017-06-02 10:50:32','','blog-sidebar-contact-form-backround-horizontal','','inherit','open','closed','','blog-sidebar-contact-form-backround-horizontal','','','2017-06-02 10:50:32','2017-06-02 10:50:32','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/blog-sidebar-contact-form-backround-horizontal.jpg',0,'attachment','image/jpeg',0),(1816,1,'2017-06-02 12:08:12','2017-06-02 12:08:12','','product-9','','inherit','open','closed','','product-9','','','2017-06-02 12:08:12','2017-06-02 12:08:12','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/product-9.jpg',0,'attachment','image/jpeg',0),(1817,1,'2017-06-02 12:08:14','2017-06-02 12:08:14','','product-9-gallery-1','','inherit','open','closed','','product-9-gallery-1','','','2017-06-02 12:08:14','2017-06-02 12:08:14','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/product-9-gallery-1.jpg',0,'attachment','image/jpeg',0),(1818,1,'2017-06-02 12:08:18','2017-06-02 12:08:18','','product-9-gallery-2','','inherit','open','closed','','product-9-gallery-2','','','2017-06-02 12:08:18','2017-06-02 12:08:18','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/product-9-gallery-2.jpg',0,'attachment','image/jpeg',0),(1819,1,'2017-06-02 12:08:20','2017-06-02 12:08:20','','product-9-gallery-3','','inherit','open','closed','','product-9-gallery-3','','','2017-06-02 12:08:20','2017-06-02 12:08:20','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/product-9-gallery-3.jpg',0,'attachment','image/jpeg',0),(1827,1,'2017-06-02 12:23:28','2017-06-02 12:23:28','','about-us-img','','inherit','open','closed','','about-us-img','','','2017-06-02 12:23:28','2017-06-02 12:23:28','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/about-us-img.png',0,'attachment','image/png',0),(1829,1,'2017-06-02 12:40:03','2017-06-02 12:40:03','Lorem Ipsn gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit namec.','The Diamond Age','Lorem Ipsn gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit.','publish','open','closed','','the-diamond-age','','','2025-03-22 02:33:34','2025-03-21 19:33:34','',0,'http://iacademy.mikado-themes.com/?post_type=product&amp;p=1829',10,'product','',1),(1830,1,'2017-06-02 12:40:16','2017-06-02 12:40:16','[vc_row][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding_768_1024=\"38px 0 0 \" item_padding_680_768=\"38px 0 0 \" item_padding_680=\"38px 0 0 \"][vc_column_text]Lorem ipsum proin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. Sed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc.[/vc_column_text][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row]','Leaders in Learning','Lorem ipsum proin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis bibendum auctor.','publish','open','closed','','leaders-in-learning','','','2017-06-02 12:40:16','2017-06-02 12:40:16','',0,'http://iacademy.mikado-themes.com/?post_type=tribe_events&amp;p=1830',0,'tribe_events','',0),(1831,1,'2017-06-02 12:35:10','2017-06-02 12:35:10','','The Diamond Age - yellow, paperback','pa_color: yellow, pa_material: paperback','publish','closed','closed','','the-diamond-age-paperback-yellow','','','2017-06-02 12:35:10','2017-06-02 12:35:10','',1829,'http://iacademy.mikado-themes.com/?post_type=product&amp;p=1829',0,'product_variation','',0),(1832,1,'2017-06-02 12:35:10','2017-06-02 12:35:10','','The Diamond Age - yellow, hardcover','pa_color: yellow, pa_material: hardcover','publish','closed','closed','','the-diamond-age-hardcover-yellow','','','2017-06-02 12:35:10','2017-06-02 12:35:10','',1829,'http://iacademy.mikado-themes.com/?post_type=product&amp;p=1829',1,'product_variation','',0),(1833,1,'2017-06-02 12:35:10','2017-06-02 12:35:10','','The Diamond Age - gray, paperback','pa_color: gray, pa_material: paperback','publish','closed','closed','','the-diamond-age-paperback-gray','','','2017-06-02 12:35:10','2017-06-02 12:35:10','',1829,'http://iacademy.mikado-themes.com/?post_type=product&amp;p=1829',2,'product_variation','',0),(1834,1,'2017-06-02 12:35:10','2017-06-02 12:35:10','','The Diamond Age - gray, hardcover','pa_color: gray, pa_material: hardcover','publish','closed','closed','','the-diamond-age-hardcover-gray','','','2017-06-02 12:35:10','2017-06-02 12:35:10','',1829,'http://iacademy.mikado-themes.com/?post_type=product&amp;p=1829',3,'product_variation','',0),(1835,1,'2017-06-02 12:35:11','2017-06-02 12:35:11','','The Diamond Age - blue, paperback','pa_color: blue, pa_material: paperback','publish','closed','closed','','the-diamond-age-paperback-blue','','','2017-06-02 12:35:11','2017-06-02 12:35:11','',1829,'http://iacademy.mikado-themes.com/?post_type=product&amp;p=1829',4,'product_variation','',0),(1836,1,'2017-06-02 12:35:11','2017-06-02 12:35:11','','The Diamond Age - blue, hardcover','pa_color: blue, pa_material: hardcover','publish','closed','closed','','the-diamond-age-hardcover-blue','','','2017-06-02 12:35:11','2017-06-02 12:35:11','',1829,'http://iacademy.mikado-themes.com/?post_type=product&amp;p=1829',5,'product_variation','',0),(1841,1,'2017-06-02 12:40:16','2017-06-02 12:40:16','','TeachHub','','publish','closed','closed','','teachhub','','','2017-06-02 12:40:16','2017-06-02 12:40:16','',0,'http://iacademy.mikado-themes.com/venue/harvard-education/',0,'tribe_venue','',0),(1842,1,'2017-06-02 12:40:16','2017-06-02 12:40:16','','TeachHub','','publish','closed','closed','','teachhub','','','2017-06-02 12:40:16','2017-06-02 12:40:16','',0,'http://iacademy.mikado-themes.com/organizer/harvard-education/',0,'tribe_organizer','',0),(1849,1,'2017-06-02 13:35:02','2017-06-02 13:35:02','Lorem Ipsn gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit namec.','Leadership Skills','Lorem Ipsn gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit.','publish','open','closed','','leadership-skills','','','2024-10-20 14:42:24','2024-10-20 14:42:24','',0,'http://iacademy.mikado-themes.com/?post_type=product&amp;p=1849',8,'product','',1),(1863,1,'2017-06-02 13:24:07','2017-06-02 13:24:07','[vc_row row_content_width=\"grid\" content_text_aligment=\"left\" css=\".vc_custom_1497251655285{padding-top: 100px !important;padding-bottom: 83px !important;}\"][vc_column width=\"5/12\" css=\".vc_custom_1496845447068{margin-top: -10px !important;}\"][mkdf_section_title type=\"standard\" position=\"left\" title_tag=\"\" disable_break_words=\"no\" title=\"Chi tiết liên hệ\"][vc_empty_space height=\"10px\"][vc_column_text css=\".vc_custom_1729939874309{padding-bottom: 20px !important;}\"]\r\n<h5>Văn phòng</h5>\r\n[/vc_column_text][mkdf_icon_list_item icon_pack=\"linear_icons\" linear_icon=\"lnr-phone-handset\" icon_size=\"17\" icon_color=\"#545454\" title=\"0932010363\" title_size=\"12\" title_color=\"#999999\" title_padding=\"25\" item_margin=\"8\"][mkdf_icon_list_item icon_pack=\"simple_line_icons\" simple_line_icon=\"icon-social-facebook\" icon_size=\"17\" icon_color=\"#545454\" title=\"Giasuolympia\" title_size=\"12\" title_color=\"#999999\" title_padding=\"25\" item_margin=\"8\"][mkdf_icon_list_item icon_pack=\"linear_icons\" linear_icon=\"lnr-apartment\" icon_size=\"17\" icon_color=\"#545454\" title=\"277/47 Xô Viết Nghệ Tĩnh, Phường 15, Quận Bình Thạnh\" title_size=\"12\" title_color=\"#999999\" title_padding=\"25\" item_margin=\"8\"][/vc_column][vc_column width=\"7/12\"][contact-form-7 id=\"170\" html_class=\"cf7_custom_style_2\"][/vc_column][/vc_row]','Liên hệ','','publish','closed','closed','','lien-he','','','2024-10-26 11:58:42','2024-10-26 11:58:42','',0,'http://iacademy.mikado-themes.com/?page_id=1863',0,'page','',0),(1866,1,'2017-06-02 13:33:48','2017-06-02 13:33:48','','product-7-gallery-1','','inherit','open','closed','','product-7-gallery-1','','','2017-06-02 13:33:48','2017-06-02 13:33:48','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/product-7-gallery-1.jpg',0,'attachment','image/jpeg',0),(1867,1,'2017-06-02 13:33:50','2017-06-02 13:33:50','','product-7-gallery-2','','inherit','open','closed','','product-7-gallery-2','','','2017-06-02 13:33:50','2017-06-02 13:33:50','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/product-7-gallery-2.jpg',0,'attachment','image/jpeg',0),(1871,1,'2017-06-02 13:38:12','2017-06-02 13:38:12','','product-7','','inherit','open','closed','','product-7','','','2017-06-02 13:38:12','2017-06-02 13:38:12','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/product-7.jpg',0,'attachment','image/jpeg',0),(1873,1,'2017-06-02 13:41:27','2017-06-02 13:41:27','','product-7-gallery-3','','inherit','open','closed','','product-7-gallery-3','','','2017-06-02 13:41:27','2017-06-02 13:41:27','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/product-7-gallery-3.jpg',0,'attachment','image/jpeg',0),(1880,1,'2017-06-02 13:52:15','2017-06-02 13:52:15','Lorem Ipsn gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit namec.','Accelerate Career','Lorem Ipsn gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit.','publish','open','closed','','accelerate-career','','','2025-05-02 19:07:50','2025-05-02 12:07:50','',0,'http://iacademy.mikado-themes.com/?post_type=product&amp;p=1880',2,'product','',1),(1882,1,'2017-06-02 13:59:48','2017-06-02 13:59:48','','product-2','','inherit','open','closed','','product-2','','','2017-06-02 13:59:48','2017-06-02 13:59:48','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/product-2.jpg',0,'attachment','image/jpeg',0),(1883,1,'2017-06-02 13:59:50','2017-06-02 13:59:50','','product-2-gallery-1','','inherit','open','closed','','product-2-gallery-1','','','2017-06-02 13:59:50','2017-06-02 13:59:50','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/product-2-gallery-1.jpg',0,'attachment','image/jpeg',0),(1884,1,'2017-06-02 13:59:53','2017-06-02 13:59:53','','product-2-gallery-2','','inherit','open','closed','','product-2-gallery-2','','','2017-06-02 13:59:53','2017-06-02 13:59:53','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/product-2-gallery-2.jpg',0,'attachment','image/jpeg',0),(1885,1,'2017-06-02 13:59:55','2017-06-02 13:59:55','','product-2-gallery-3','','inherit','open','closed','','product-2-gallery-3','','','2017-06-02 13:59:55','2017-06-02 13:59:55','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/product-2-gallery-3.jpg',0,'attachment','image/jpeg',0),(1888,1,'2017-06-02 14:08:30','2017-06-02 14:08:30','[vc_row][vc_column css=\".vc_custom_1497009582533{margin-top: -30px !important;}\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding_768_1024=\"38px 0 0 \" item_padding_680_768=\"38px 0 0 \" item_padding_680=\"38px 0 0 \"][vc_column_text]Lorem ipsum proin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. Sed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc.[/vc_column_text][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row]','Choose Your Direction','Lorem ipsum proin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis bibendum auctor.','publish','open','closed','','choose-your-direction','','','2017-06-02 14:08:30','2017-06-02 14:08:30','',0,'http://iacademy.mikado-themes.com/?post_type=tribe_events&amp;p=1888',0,'tribe_events','',0),(1890,1,'2017-06-02 14:12:10','2017-06-02 14:12:10','[vc_row][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding_768_1024=\"38px 0 0 \" item_padding_680_768=\"38px 0 0 \" item_padding_680=\"38px 0 0 \"][vc_column_text]Lorem ipsum proin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. Sed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc.[/vc_column_text][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row]','Quality Instruction','Lorem ipsum proin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis bibendum auctor.','publish','open','closed','','quality-instruction','','','2017-06-02 14:12:10','2017-06-02 14:12:10','',0,'http://iacademy.mikado-themes.com/?post_type=tribe_events&amp;p=1890',0,'tribe_events','',0),(1897,1,'2017-06-02 14:19:35','2017-06-02 14:19:35','Lorem Ipsn gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit namec.','Calculate Success','Lorem Ipsn gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit.','publish','open','closed','','calculate-success','','','2024-10-20 14:42:24','2024-10-20 14:42:24','',0,'http://iacademy.mikado-themes.com/?post_type=product&amp;p=1897',3,'product','',1),(1898,1,'2017-06-02 14:16:49','2017-06-02 14:16:49','','product-3','','inherit','open','closed','','product-3','','','2017-06-02 14:16:49','2017-06-02 14:16:49','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/product-3.jpg',0,'attachment','image/jpeg',0),(1899,1,'2017-06-02 14:16:51','2017-06-02 14:16:51','','product-3-gallery-1','','inherit','open','closed','','product-3-gallery-1','','','2017-06-02 14:16:51','2017-06-02 14:16:51','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/product-3-gallery-1.jpg',0,'attachment','image/jpeg',0),(1900,1,'2017-06-02 14:16:53','2017-06-02 14:16:53','','product-3-gallery-2','','inherit','open','closed','','product-3-gallery-2','','','2017-06-02 14:16:53','2017-06-02 14:16:53','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/product-3-gallery-2.jpg',0,'attachment','image/jpeg',0),(1901,1,'2017-06-02 14:16:55','2017-06-02 14:16:55','','product-3-gallery-3','','inherit','open','closed','','product-3-gallery-3','','','2017-06-02 14:16:55','2017-06-02 14:16:55','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/product-3-gallery-3.jpg',0,'attachment','image/jpeg',0),(1904,1,'2017-06-02 14:28:44','2017-06-02 14:28:44','','h8-slide-1-img','','inherit','open','closed','','h8-slide-1-img','','','2017-06-02 14:28:44','2017-06-02 14:28:44','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/h8-slide-1-img.png',0,'attachment','image/png',0),(1908,1,'2017-06-02 14:36:07','2017-06-02 14:36:07','Lorem ipsum gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit namec.','Guide to Success','Lorem Ipsn gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit.','publish','open','closed','','guide-to-success','','','2025-03-22 02:32:58','2025-03-21 19:32:58','',0,'http://iacademy.mikado-themes.com/?post_type=product&amp;p=1908',4,'product','',1),(1910,1,'2017-06-02 14:35:15','2017-06-02 14:35:15','','grouped-product','','inherit','open','closed','','grouped-product','','','2017-06-02 14:35:15','2017-06-02 14:35:15','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/grouped-product.jpg',0,'attachment','image/jpeg',0),(1917,1,'2017-06-02 14:53:11','2017-06-02 14:53:11','Lorem Ipsn gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit namec.','Quality Instructions','Lorem Ipsn gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit.','publish','open','closed','','quality-instructions','','','2024-10-20 14:42:24','2024-10-20 14:42:24','',0,'http://iacademy.mikado-themes.com/?post_type=product&amp;p=1917',5,'product','',1),(1921,1,'2017-06-02 14:50:34','2017-06-02 14:50:34','','product-4-gallery-1','','inherit','open','closed','','product-4-gallery-1','','','2017-06-02 14:50:34','2017-06-02 14:50:34','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/product-4-gallery-1.jpg',0,'attachment','image/jpeg',0),(1923,1,'2017-06-02 14:50:38','2017-06-02 14:50:38','','product-4-gallery-3','','inherit','open','closed','','product-4-gallery-3','','','2017-06-02 14:50:38','2017-06-02 14:50:38','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/product-4-gallery-3.jpg',0,'attachment','image/jpeg',0),(1925,1,'2017-06-02 14:52:15','2017-06-02 14:52:15','','product-4','','inherit','open','closed','','product-4','','','2017-06-02 14:52:15','2017-06-02 14:52:15','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/product-4.jpg',0,'attachment','image/jpeg',0),(1926,1,'2017-06-02 14:52:17','2017-06-02 14:52:17','','product-4-gallery-2','','inherit','open','closed','','product-4-gallery-2','','','2017-06-02 14:52:17','2017-06-02 14:52:17','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/product-4-gallery-2.jpg',0,'attachment','image/jpeg',0),(1929,1,'2017-06-02 15:00:00','2017-06-02 15:00:00','Lorem Ipsn gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit namec.','Networking Basics','Lorem Ipsn gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit.','publish','open','closed','','networking-basics','','','2024-10-20 14:42:24','2024-10-20 14:42:24','',0,'http://iacademy.mikado-themes.com/?post_type=product&amp;p=1929',6,'product','',1),(1931,1,'2017-06-02 14:57:58','2017-06-02 14:57:58','','product-5','','inherit','open','closed','','product-5','','','2017-06-02 14:57:58','2017-06-02 14:57:58','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/product-5.jpg',0,'attachment','image/jpeg',0),(1932,1,'2017-06-02 14:58:00','2017-06-02 14:58:00','','product-5-gallery-1','','inherit','open','closed','','product-5-gallery-1','','','2017-06-02 14:58:00','2017-06-02 14:58:00','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/product-5-gallery-1.jpg',0,'attachment','image/jpeg',0),(1933,1,'2017-06-02 14:58:02','2017-06-02 14:58:02','','product-5-gallery-2','','inherit','open','closed','','product-5-gallery-2','','','2017-06-02 14:58:02','2017-06-02 14:58:02','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/product-5-gallery-2.jpg',0,'attachment','image/jpeg',0),(1934,1,'2017-06-02 14:58:04','2017-06-02 14:58:04','','product-5-gallery-3','','inherit','open','closed','','product-5-gallery-3','','','2017-06-02 14:58:04','2017-06-02 14:58:04','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/product-5-gallery-3.jpg',0,'attachment','image/jpeg',0),(1936,1,'2017-06-02 15:15:06','2017-06-02 15:15:06','Lorem Ipsn gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit namec.','Building Community','Lorem Ipsn gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit.','publish','open','closed','','building-community','','','2024-10-20 14:42:24','2024-10-20 14:42:24','',0,'http://iacademy.mikado-themes.com/?post_type=product&amp;p=1936',7,'product','',1),(1947,1,'2017-06-02 15:09:00','2017-06-02 15:09:00','','product-6','','inherit','open','closed','','product-6','','','2017-06-02 15:09:00','2017-06-02 15:09:00','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/product-6.jpg',0,'attachment','image/jpeg',0),(1948,1,'2017-06-02 15:09:02','2017-06-02 15:09:02','','product-6-gallery-1','','inherit','open','closed','','product-6-gallery-1','','','2017-06-02 15:09:02','2017-06-02 15:09:02','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/product-6-gallery-1.jpg',0,'attachment','image/jpeg',0),(1950,1,'2017-06-02 15:09:06','2017-06-02 15:09:06','','product-6-gallery-2','','inherit','open','closed','','product-6-gallery-2','','','2017-06-02 15:09:06','2017-06-02 15:09:06','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/product-6-gallery-2.jpg',0,'attachment','image/jpeg',0),(1951,1,'2017-06-02 15:09:09','2017-06-02 15:09:09','','product-6-gallery-3','','inherit','open','closed','','product-6-gallery-3','','','2017-06-02 15:09:09','2017-06-02 15:09:09','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/product-6-gallery-3.jpg',0,'attachment','image/jpeg',0),(1953,1,'2017-06-02 15:14:04','2017-06-02 15:14:04','','product-6','','inherit','open','closed','','product-6-2','','','2017-06-02 15:14:04','2017-06-02 15:14:04','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/product-6-1.jpg',0,'attachment','image/jpeg',0),(1954,1,'2017-06-02 15:14:06','2017-06-02 15:14:06','','product-6-gallery-1','','inherit','open','closed','','product-6-gallery-1-2','','','2017-06-02 15:14:06','2017-06-02 15:14:06','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/product-6-gallery-1-1.jpg',0,'attachment','image/jpeg',0),(1955,1,'2017-06-02 15:14:08','2017-06-02 15:14:08','','product-6-gallery-2','','inherit','open','closed','','product-6-gallery-2-2','','','2017-06-02 15:14:08','2017-06-02 15:14:08','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/product-6-gallery-2-1.jpg',0,'attachment','image/jpeg',0),(1956,1,'2017-06-02 15:14:10','2017-06-02 15:14:10','','product-6-gallery-3','','inherit','open','closed','','product-6-gallery-3-2','','','2017-06-02 15:14:10','2017-06-02 15:14:10','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/product-6-gallery-3-1.jpg',0,'attachment','image/jpeg',0),(1957,1,'2017-06-02 15:21:48','2017-06-02 15:21:48','Lorem Ipsn gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit namec.','Social Media','Lorem Ipsn gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit.','publish','open','closed','','social-media','','','2024-10-20 14:42:24','2024-10-20 14:42:24','',0,'http://iacademy.mikado-themes.com/?post_type=product&amp;p=1957',9,'product','',1),(1958,1,'2017-06-02 15:21:22','2017-06-02 15:21:22','','product-8','','inherit','open','closed','','product-8','','','2017-06-02 15:21:22','2017-06-02 15:21:22','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/product-8.jpg',0,'attachment','image/jpeg',0),(1959,1,'2017-06-02 15:21:26','2017-06-02 15:21:26','','product-8-gallery-1','','inherit','open','closed','','product-8-gallery-1','','','2017-06-02 15:21:26','2017-06-02 15:21:26','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/product-8-gallery-1.jpg',0,'attachment','image/jpeg',0),(1960,1,'2017-06-02 15:21:28','2017-06-02 15:21:28','','product-8-gallery-2','','inherit','open','closed','','product-8-gallery-2','','','2017-06-02 15:21:28','2017-06-02 15:21:28','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/product-8-gallery-2.jpg',0,'attachment','image/jpeg',0),(1961,1,'2017-06-02 15:21:30','2017-06-02 15:21:30','','product-8-gallery-3','','inherit','open','closed','','product-8-gallery-3','','','2017-06-02 15:21:30','2017-06-02 15:21:30','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/product-8-gallery-3.jpg',0,'attachment','image/jpeg',0),(1964,1,'2017-06-02 15:29:03','2017-06-02 15:29:03','','h8-slide-2-background','','inherit','open','closed','','h8-slide-2-background','','','2017-06-02 15:29:03','2017-06-02 15:29:03','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/h8-slide-2-background.jpg',0,'attachment','image/jpeg',0),(2063,1,'2017-06-05 08:43:56','2017-06-05 08:43:56','','map-pin-blue','','inherit','open','closed','','map-pin-blue','','','2017-06-05 08:43:56','2017-06-05 08:43:56','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/map-pin-blue.png',0,'attachment','image/png',0),(2102,1,'2017-06-05 10:27:40','2017-06-05 10:27:40','<div class=\"mkdf-cf7-newsletter\">\n[email email-402 placeholder \"Enter your email\"]\n[submit \"&#xe876;\"]\n</div>\n1\niAcademy \"[your-subject]\"\n[your-name] <wordpress@iacademy.mikado-themes.com>\nsupport@mikado-themes.com\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on iAcademy (http://iacademy.mikado-themes.com)\nReply-To: [your-email]\n\n\n\n\niAcademy \"[your-subject]\"\niAcademy <wordpress@iacademy.mikado-themes.com>\n[your-email]\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on iAcademy (http://iacademy.mikado-themes.com)\nReply-To: support@mikado-themes.com\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.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nYour entered code is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','Newsletter','','publish','closed','closed','','newsletter','','','2017-06-05 10:27:40','2017-06-05 10:27:40','',0,'http://iacademy.mikado-themes.com/?post_type=wpcf7_contact_form&amp;p=2102',0,'wpcf7_contact_form','',0),(2106,1,'2017-06-05 10:38:48','2017-06-05 10:38:48','[vc_row row_content_width=\"grid\" css=\".vc_custom_1496659232921{padding-top: 100px !important;padding-bottom: 100px !important;}\"][vc_column][mkdf_comparison_pricing_table columns=\"mkdf-three-columns\" title=\"Save up to 40%\nby paying weekly\" features=\"Number of Courses,Time,Web Designing ,Human-Centered Design,Basic Marketing,Python for Everybody,Android Developer,Business English\" border_top_color=\"\"][mkdf_comparison_pricing_table_item title=\"Standard\" show_button=\"yes\" border_top_color=\"\" btn_background_color=\"\" btn_border_color=\"\" btn_text_color=\"\" price=\"12\" button_text=\"GET IT NOW\" link=\"#\" image=\"1027\" currency=\"$\"]\n<ul>\n 	<li>2</li>\n 	<li>15 Days</li>\n 	<li>[mkdf_icon icon_pack=\"font_elegant\" fe_icon=\"icon_check\" size=\"mkdf-icon-tiny\" custom_size=\"20\" type=\"normal\" icon_animation=\"\" icon_color=\"#d8a64e\" margin=\"0 0 0 0\"]</li>\n 	<li>[mkdf_icon icon_pack=\"font_elegant\" fe_icon=\"icon_check\" size=\"mkdf-icon-tiny\" custom_size=\"20\" type=\"normal\" icon_animation=\"\" icon_color=\"#d8a64e\" margin=\"0 0 0 0\"]</li>\n 	<li>[mkdf_icon icon_pack=\"font_elegant\" fe_icon=\"icon_close\" size=\"mkdf-icon-tiny\" custom_size=\"20\" type=\"normal\" icon_animation=\"\" icon_color=\"#898989\" margin=\"0 0 0 0\"]</li>\n 	<li>[mkdf_icon icon_pack=\"font_elegant\" fe_icon=\"icon_close\" size=\"mkdf-icon-tiny\" custom_size=\"20\" type=\"normal\" icon_animation=\"\" icon_color=\"#898989\" margin=\"0 0 0 0\"]</li>\n 	<li>[mkdf_icon icon_pack=\"font_elegant\" fe_icon=\"icon_close\" size=\"mkdf-icon-tiny\" custom_size=\"20\" type=\"normal\" icon_animation=\"\" icon_color=\"#898989\" margin=\"0 0 0 0\"]</li>\n 	<li>[mkdf_icon icon_pack=\"font_elegant\" fe_icon=\"icon_close\" size=\"mkdf-icon-tiny\" custom_size=\"20\" type=\"normal\" icon_animation=\"\" icon_color=\"#898989\" margin=\"0 0 0 0\"]</li>\n</ul>\n[/mkdf_comparison_pricing_table_item][mkdf_comparison_pricing_table_item title=\"Professional \" featured_item=\"yes\" show_button=\"yes\" border_top_color=\"\" btn_background_color=\"\" btn_border_color=\"\" btn_text_color=\"\" price=\"59\" button_text=\"GET IT NOW\" link=\"#\" image=\"1028\" currency=\"$\"]\n<ul>\n 	<li>4</li>\n 	<li>30 Days</li>\n 	<li>[mkdf_icon icon_pack=\"font_elegant\" fe_icon=\"icon_check\" size=\"mkdf-icon-tiny\" custom_size=\"20\" type=\"normal\" icon_animation=\"\" icon_color=\"#d8a64e\" margin=\"0 0 0 0\"]</li>\n 	<li>[mkdf_icon icon_pack=\"font_elegant\" fe_icon=\"icon_check\" size=\"mkdf-icon-tiny\" custom_size=\"20\" type=\"normal\" icon_animation=\"\" icon_color=\"#d8a64e\" margin=\"0 0 0 0\"]</li>\n 	<li>[mkdf_icon icon_pack=\"font_elegant\" fe_icon=\"icon_check\" size=\"mkdf-icon-tiny\" custom_size=\"20\" type=\"normal\" icon_animation=\"\" icon_color=\"#d8a64e\" margin=\"0 0 0 0\"]</li>\n 	<li>[mkdf_icon icon_pack=\"font_elegant\" fe_icon=\"icon_check\" size=\"mkdf-icon-tiny\" custom_size=\"20\" type=\"normal\" icon_animation=\"\" icon_color=\"#d8a64e\" margin=\"0 0 0 0\"]</li>\n 	<li>[mkdf_icon icon_pack=\"font_elegant\" fe_icon=\"icon_close\" size=\"mkdf-icon-tiny\" custom_size=\"20\" type=\"normal\" icon_animation=\"\" icon_color=\"#898989\" margin=\"0 0 0 0\"]</li>\n 	<li>[mkdf_icon icon_pack=\"font_elegant\" fe_icon=\"icon_close\" size=\"mkdf-icon-tiny\" custom_size=\"20\" type=\"normal\" icon_animation=\"\" icon_color=\"#898989\" margin=\"0 0 0 0\"]</li>\n</ul>\n[/mkdf_comparison_pricing_table_item][mkdf_comparison_pricing_table_item title=\"Advanced\" show_button=\"yes\" border_top_color=\"\" btn_background_color=\"\" btn_border_color=\"\" btn_text_color=\"\" price=\"88\" button_text=\"GET IT NOW\" link=\"#\" image=\"1029\" currency=\"$\"]\n<ul>\n 	<li>6</li>\n 	<li>30 Days</li>\n 	<li>[mkdf_icon icon_pack=\"font_elegant\" fe_icon=\"icon_check\" size=\"mkdf-icon-tiny\" custom_size=\"20\" type=\"normal\" icon_animation=\"\" icon_color=\"#d8a64e\" margin=\"0 0 0 0\"]</li>\n 	<li>[mkdf_icon icon_pack=\"font_elegant\" fe_icon=\"icon_check\" size=\"mkdf-icon-tiny\" custom_size=\"20\" type=\"normal\" icon_animation=\"\" icon_color=\"#d8a64e\" margin=\"0 0 0 0\"]</li>\n 	<li>[mkdf_icon icon_pack=\"font_elegant\" fe_icon=\"icon_check\" size=\"mkdf-icon-tiny\" custom_size=\"20\" type=\"normal\" icon_animation=\"\" icon_color=\"#d8a64e\" margin=\"0 0 0 0\"]</li>\n 	<li>[mkdf_icon icon_pack=\"font_elegant\" fe_icon=\"icon_check\" size=\"mkdf-icon-tiny\" custom_size=\"20\" type=\"normal\" icon_animation=\"\" icon_color=\"#d8a64e\" margin=\"0 0 0 0\"]</li>\n 	<li>[mkdf_icon icon_pack=\"font_elegant\" fe_icon=\"icon_check\" size=\"mkdf-icon-tiny\" custom_size=\"20\" type=\"normal\" icon_animation=\"\" icon_color=\"#d8a64e\" margin=\"0 0 0 0\"]</li>\n 	<li>[mkdf_icon icon_pack=\"font_elegant\" fe_icon=\"icon_check\" size=\"mkdf-icon-tiny\" custom_size=\"20\" type=\"normal\" icon_animation=\"\" icon_color=\"#d8a64e\" margin=\"0 0 0 0\"]</li>\n</ul>\n[/mkdf_comparison_pricing_table_item][/mkdf_comparison_pricing_table][/vc_column][/vc_row]','Pricing Plan','','publish','closed','closed','','pricing-plan','','','2017-06-05 10:38:48','2017-06-05 10:38:48','',0,'http://iacademy.mikado-themes.com/?page_id=2106',0,'page','',0),(2213,1,'2017-06-05 13:22:10','2017-06-05 13:22:10','','h9-slider-background-img-1','','inherit','open','closed','','h9-slider-background-img-1','','','2017-06-05 13:22:10','2017-06-05 13:22:10','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/h9-slider-background-img-1.jpg',0,'attachment','image/jpeg',0),(2246,1,'2017-06-05 14:17:39','2017-06-05 14:17:39','','h9-slide-img-1','','inherit','open','closed','','h9-slide-img-1','','','2017-06-05 14:17:39','2017-06-05 14:17:39','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/h9-slide-img-1.png',0,'attachment','image/png',0),(2276,1,'2017-06-06 07:46:28','2017-06-06 07:46:28','','h9-slide-img-2','','inherit','open','closed','','h9-slide-img-2','','','2017-06-06 07:46:28','2017-06-06 07:46:28','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/h9-slide-img-2.png',0,'attachment','image/png',0),(2303,1,'2017-06-06 09:54:26','2017-06-06 09:54:26','','testimonials-standard-6','','publish','closed','closed','','testimonials-standard-6','','','2017-06-06 09:54:26','2017-06-06 09:54:26','',0,'http://iacademy.mikado-themes.com/?post_type=testimonials&amp;p=2303',0,'testimonials','',0),(2309,1,'2017-06-06 10:17:37','2017-06-06 10:17:37','[vc_row][vc_column][vc_column_text css=\".vc_custom_1497866074478{margin-top: -12px !important;padding-bottom: 27px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_column_text]\n<blockquote>We teach, and encourage a love of learning, collaboration, and compassion. Everyone a learner everyday.</blockquote>\n[/vc_column_text][vc_column_text css=\".vc_custom_1497868757042{padding-top: 25px !important;padding-bottom: 53px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_single_image image=\"770\" img_size=\"full\"][vc_column_text css=\".vc_custom_1497868776323{padding-top: 38px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][/vc_column][/vc_row]','Intercultural communication','Donec vitae sapien ut libero venenatis faucibus. Nullam quis ante. Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh. Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus. Phasellus viverra nulla ut metus varius laoreet. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.','publish','open','open','','intercultural-communication','','','2017-06-06 10:17:37','2017-06-06 10:17:37','',0,'http://iacademy.mikado-themes.com/?p=2309',0,'post','',0),(2311,1,'2017-06-06 10:16:59','2017-06-06 10:16:59','','blog-post-25','','inherit','open','closed','','blog-post-25','','','2017-06-06 10:16:59','2017-06-06 10:16:59','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/blog-post-25.jpg',0,'attachment','image/jpeg',0),(2314,1,'2017-06-06 10:26:25','2017-06-06 10:26:25','[vc_row][vc_column][vc_column_text css=\".vc_custom_1497868947451{margin-top: -12px !important;padding-bottom: 27px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_column_text]\n<blockquote>We teach, and encourage a love of learning, collaboration, and compassion. Everyone a learner everyday.</blockquote>\n[/vc_column_text][vc_column_text css=\".vc_custom_1497868956875{padding-top: 25px !important;padding-bottom: 53px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][vc_single_image image=\"770\" img_size=\"full\"][vc_column_text css=\".vc_custom_1497868967859{padding-top: 38px !important;}\"]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. ed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor.[/vc_column_text][/vc_column][/vc_row]','Learning principles','Donec vitae sapien ut libero venenatis faucibus. Nullam quis ante. Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh. Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus. Phasellus viverra nulla ut metus varius laoreet. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.','publish','open','open','','learning-principles','','','2017-06-06 10:26:25','2017-06-06 10:26:25','',0,'http://iacademy.mikado-themes.com/?p=2314',0,'post','',0),(2315,1,'2017-06-06 10:26:14','2017-06-06 10:26:14','','blog-post-26','','inherit','open','closed','','blog-post-26','','','2017-06-06 10:26:14','2017-06-06 10:26:14','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/blog-post-26.jpg',0,'attachment','image/jpeg',0),(2320,1,'2017-06-06 10:35:52','2017-06-06 10:35:52','','blog-post-17','','inherit','open','closed','','blog-post-17','','','2017-06-06 10:35:52','2017-06-06 10:35:52','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/blog-post-17.jpg',0,'attachment','image/jpeg',0),(2324,1,'2017-06-06 10:37:17','2017-06-06 10:37:17','','blog-post-12','','inherit','open','closed','','blog-post-12','','','2017-06-06 10:37:17','2017-06-06 10:37:17','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/blog-post-12.jpg',0,'attachment','image/jpeg',0),(2329,1,'2017-06-06 10:47:21','2017-06-06 10:47:21','[vc_row row_content_width=\"grid\" css=\".vc_custom_1497856003172{padding-top: 100px !important;padding-bottom: 100px !important;}\" simple_background_color=\"#ffffff\"][vc_column][mkdf_image_gallery type=\"grid\" enable_image_shadow=\"no\" image_behavior=\"lightbox\" number_of_columns=\"four\" space_between_columns=\"normal\" images=\"2330,2331,1633,1634,1635,1636,1637,1630,2332,1632,2333,2334\" image_size=\"full\"][/vc_column][/vc_row]','Hình ảnh lớp học','','publish','closed','closed','','gallery','','','2024-10-31 17:44:40','2024-10-31 10:44:40','',0,'http://iacademy.mikado-themes.com/?page_id=2329',0,'page','',0),(2330,1,'2017-06-06 10:45:01','2017-06-06 10:45:01','','gallery-img-1','','inherit','open','closed','','gallery-img-1','','','2017-06-06 10:45:01','2017-06-06 10:45:01','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/gallery-img-1.jpg',0,'attachment','image/jpeg',0),(2331,1,'2017-06-06 10:45:04','2017-06-06 10:45:04','','gallery-img-2','','inherit','open','closed','','gallery-img-2','','','2017-06-06 10:45:04','2017-06-06 10:45:04','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/gallery-img-2.jpg',0,'attachment','image/jpeg',0),(2332,1,'2017-06-06 10:45:07','2017-06-06 10:45:07','','gallery-img-3','','inherit','open','closed','','gallery-img-3','','','2017-06-06 10:45:07','2017-06-06 10:45:07','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/gallery-img-3.jpg',0,'attachment','image/jpeg',0),(2333,1,'2017-06-06 10:45:10','2017-06-06 10:45:10','','gallery-img-4','','inherit','open','closed','','gallery-img-4','','','2017-06-06 10:45:10','2017-06-06 10:45:10','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/gallery-img-4.jpg',0,'attachment','image/jpeg',0),(2334,1,'2017-06-06 10:45:13','2017-06-06 10:45:13','','gallery-img-5','','inherit','open','closed','','gallery-img-5','','','2017-06-06 10:45:13','2017-06-06 10:45:13','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/gallery-img-5.jpg',0,'attachment','image/jpeg',0),(2361,1,'2017-06-06 12:57:21','2017-06-06 12:57:21','','h10-slide-background-img','','inherit','open','closed','','h10-slide-background-img','','','2017-06-06 12:57:21','2017-06-06 12:57:21','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/h10-slide-background-img.jpg',0,'attachment','image/jpeg',0),(2363,1,'2017-06-06 13:12:44','2017-06-06 13:12:44','','h10-slide-img-1','','inherit','open','closed','','h10-slide-img-1','','','2017-06-06 13:12:44','2017-06-06 13:12:44','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/h10-slide-img-1.png',0,'attachment','image/png',0),(2364,1,'2017-06-06 13:12:49','2017-06-06 13:12:49','','h10-slide-img-2','','inherit','open','closed','','h10-slide-img-2','','','2017-06-06 13:12:49','2017-06-06 13:12:49','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/h10-slide-img-2.png',0,'attachment','image/png',0),(2365,1,'2017-06-06 13:21:05','2017-06-06 13:21:05','','h1-slide-img-3','','inherit','open','closed','','h1-slide-img-3','','','2017-06-06 13:21:05','2017-06-06 13:21:05','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/h1-slide-img-3.png',0,'attachment','image/png',0),(2366,1,'2017-06-06 13:21:07','2017-06-06 13:21:07','','h1-slide-img-4','','inherit','open','closed','','h1-slide-img-4','','','2017-06-06 13:21:07','2017-06-06 13:21:07','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/h1-slide-img-4.png',0,'attachment','image/png',0),(2367,1,'2017-06-06 13:21:09','2017-06-06 13:21:09','','h1-slide-img-5','','inherit','open','closed','','h1-slide-img-5','','','2017-06-06 13:21:09','2017-06-06 13:21:09','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/h1-slide-img-5.png',0,'attachment','image/png',0),(2368,1,'2017-06-06 13:21:11','2017-06-06 13:21:11','','h1-slide-img-6','','inherit','open','closed','','h1-slide-img-6','','','2017-06-06 13:21:11','2017-06-06 13:21:11','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/h1-slide-img-6.png',0,'attachment','image/png',0),(2369,1,'2017-06-06 13:21:12','2017-06-06 13:21:12','','h1-slide-img-7','','inherit','open','closed','','h1-slide-img-7','','','2017-06-06 13:21:12','2017-06-06 13:21:12','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/h1-slide-img-7.png',0,'attachment','image/png',0),(2394,1,'2017-06-07 07:44:30','2017-06-07 07:44:30','','h2-video-background-img','','inherit','open','closed','','h2-video-background-img','','','2017-06-07 07:44:30','2017-06-07 07:44:30','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h2-video-background-img.jpg',0,'attachment','image/jpeg',0),(2411,1,'2017-06-07 11:58:03','2017-06-07 11:58:03','','coming-soon-background-img','','inherit','open','closed','','coming-soon-background-img','','','2017-06-07 11:58:03','2017-06-07 11:58:03','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/coming-soon-background-img.jpg',0,'attachment','image/jpeg',0),(2412,1,'2017-06-07 12:03:26','2017-06-07 12:03:26','','coming-soon-img-1','','inherit','open','closed','','coming-soon-img-1','','','2017-06-07 12:03:26','2017-06-07 12:03:26','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/coming-soon-img-1.png',0,'attachment','image/png',0),(2420,1,'2017-06-07 12:52:22','2017-06-07 12:52:22','','testimonials-standard-7','','publish','closed','closed','','testimonials-standard-7','','','2017-06-07 12:52:22','2017-06-07 12:52:22','',0,'http://iacademy.mikado-themes.com/?post_type=testimonials&amp;p=2420',0,'testimonials','',0),(2421,1,'2017-06-07 12:53:20','2017-06-07 12:53:20','','testimonials-standard-8','','publish','closed','closed','','testimonials-standard-8','','','2017-06-07 12:53:20','2017-06-07 12:53:20','',0,'http://iacademy.mikado-themes.com/?post_type=testimonials&amp;p=2421',0,'testimonials','',0),(2422,1,'2017-06-07 12:54:40','2017-06-07 12:54:40','','testimonials-standard-9','','publish','closed','closed','','testimonials-standard-9','','','2017-06-07 12:54:40','2017-06-07 12:54:40','',0,'http://iacademy.mikado-themes.com/?post_type=testimonials&amp;p=2422',0,'testimonials','',0),(2423,1,'2017-06-07 12:54:31','2017-06-07 12:54:31','','testimonials-standard-6','','inherit','open','closed','','testimonials-standard-6-2','','','2017-06-07 12:54:31','2017-06-07 12:54:31','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/testimonials-standard-6.png',0,'attachment','image/png',0),(2441,1,'2017-06-07 13:48:08','2017-06-07 13:48:08','','shop-sidebar-banner','','inherit','open','closed','','shop-sidebar-banner','','','2017-06-07 13:48:08','2017-06-07 13:48:08','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/shop-sidebar-banner.jpg',0,'attachment','image/jpeg',0),(2608,1,'2017-06-08 13:55:25','2017-06-08 13:55:25','[vc_row css=\".vc_custom_1496930187304{padding-bottom: 100px !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][mkdf_comparison_pricing_table columns=\"mkdf-two-columns\" title=\"Save up to 40%\nannually\" features=\"Courses,Time,Web Designing ,Basic Marketing,Developer,Business English\" border_top_color=\"\"][mkdf_comparison_pricing_table_item title=\"Standard\" show_button=\"yes\" border_top_color=\"\" btn_background_color=\"\" btn_border_color=\"\" btn_text_color=\"\" price=\"12\" button_text=\"GET IT NOW\" link=\"#\" image=\"1027\" currency=\"$\"]\n<ul>\n 	<li>2</li>\n 	<li>15 Days</li>\n 	<li>[mkdf_icon icon_pack=\"font_elegant\" fe_icon=\"icon_check\" size=\"mkdf-icon-tiny\" custom_size=\"20\" type=\"normal\" icon_animation=\"\" icon_color=\"#d8a64e\" margin=\"0 0 0 0\"]</li>\n 	<li>[mkdf_icon icon_pack=\"font_elegant\" fe_icon=\"icon_check\" size=\"mkdf-icon-tiny\" custom_size=\"20\" type=\"normal\" icon_animation=\"\" icon_color=\"#d8a64e\" margin=\"0 0 0 0\"]</li>\n 	<li>[mkdf_icon icon_pack=\"font_elegant\" fe_icon=\"icon_close\" size=\"mkdf-icon-tiny\" custom_size=\"20\" type=\"normal\" icon_animation=\"\" icon_color=\"#898989\" margin=\"0 0 0 0\"]</li>\n 	<li>[mkdf_icon icon_pack=\"font_elegant\" fe_icon=\"icon_close\" size=\"mkdf-icon-tiny\" custom_size=\"20\" type=\"normal\" icon_animation=\"\" icon_color=\"#898989\" margin=\"0 0 0 0\"]</li>\n</ul>\n[/mkdf_comparison_pricing_table_item][mkdf_comparison_pricing_table_item title=\"Professional \" featured_item=\"yes\" show_button=\"yes\" border_top_color=\"\" btn_background_color=\"\" btn_border_color=\"\" btn_text_color=\"\" price=\"59\" button_text=\"GET IT NOW\" link=\"#\" image=\"1028\" currency=\"$\"]\n<ul>\n 	<li>4</li>\n 	<li>30 Days</li>\n 	<li>[mkdf_icon icon_pack=\"font_elegant\" fe_icon=\"icon_check\" size=\"mkdf-icon-tiny\" custom_size=\"20\" type=\"normal\" icon_animation=\"\" icon_color=\"#d8a64e\" margin=\"0 0 0 0\"]</li>\n 	<li>[mkdf_icon icon_pack=\"font_elegant\" fe_icon=\"icon_check\" size=\"mkdf-icon-tiny\" custom_size=\"20\" type=\"normal\" icon_animation=\"\" icon_color=\"#d8a64e\" margin=\"0 0 0 0\"]</li>\n 	<li>[mkdf_icon icon_pack=\"font_elegant\" fe_icon=\"icon_check\" size=\"mkdf-icon-tiny\" custom_size=\"20\" type=\"normal\" icon_animation=\"\" icon_color=\"#d8a64e\" margin=\"0 0 0 0\"]</li>\n 	<li>[mkdf_icon icon_pack=\"font_elegant\" fe_icon=\"icon_check\" size=\"mkdf-icon-tiny\" custom_size=\"20\" type=\"normal\" icon_animation=\"\" icon_color=\"#d8a64e\" margin=\"0 0 0 0\"]</li>\n</ul>\n[/mkdf_comparison_pricing_table_item][/mkdf_comparison_pricing_table][/vc_column][/vc_row]','Comparison Pricing Tables','','publish','closed','closed','','comparison-pricing-tables','','','2017-06-08 13:55:25','2017-06-08 13:55:25','',447,'http://iacademy.mikado-themes.com/?page_id=2608',0,'page','',0),(2621,1,'2017-06-08 14:28:09','2017-06-08 14:28:09','[vc_row content_text_aligment=\"left\" css=\".vc_custom_1496932242511{margin-top: -24px !important;padding-bottom: 35px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][mkdf_course_list number_of_columns=\"3\" space_between_items=\"normal\" number_of_items=\"\" order_by=\"date\" order=\"ASC\" selected_courses=\"229, 274, 18\" excerpt_length=\"46\"][/vc_column][/vc_row][vc_row content_text_aligment=\"left\" css=\".vc_custom_1496932413550{padding-bottom: 70px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][mkdf_course_list number_of_columns=\"2\" space_between_items=\"normal\" number_of_items=\"2\" order_by=\"date\" order=\"ASC\" selected_courses=\"269, 279\" excerpt_length=\"77\"][/vc_column][/vc_row]','Course List','','publish','closed','closed','','course-list','','','2017-06-08 14:28:09','2017-06-08 14:28:09','',447,'http://iacademy.mikado-themes.com/?page_id=2621',0,'page','',0),(2641,1,'2017-06-08 14:48:48','2017-06-08 14:48:48','[vc_row content_text_aligment=\"center\" css=\".vc_custom_1496933674909{margin-top: -24px !important;padding-bottom: 98px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" horizontal_alignment=\"center\" item_padding=\"0px 0% 0px 3%\"][mkdf_instructor_slider number_of_columns=\"4\" space_between_items=\"normal\" number_of_items=\"6\" order_by=\"date\" order=\"DESC\" instructor_layout=\"minimal\" slider_navigation=\"yes\" slider_pagination=\"no\"][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" horizontal_alignment=\"center\" item_padding=\"90px 0% 96px 3%\"][mkdf_instructor_slider number_of_columns=\"3\" space_between_items=\"normal\" number_of_items=\"6\" order_by=\"date\" order=\"ASC\" instructor_layout=\"minimal\" slider_navigation=\"yes\" slider_pagination=\"no\"][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" horizontal_alignment=\"center\" item_padding=\"0px 0% 0px 3%\"][mkdf_instructor_slider number_of_columns=\"3\" space_between_items=\"normal\" number_of_items=\"6\" order_by=\"date\" order=\"ASC\" instructor_layout=\"info-bellow\" slider_navigation=\"yes\" slider_pagination=\"no\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row]','Instructor Slider','','publish','closed','closed','','instructor-slider','','','2017-06-08 14:48:48','2017-06-08 14:48:48','',447,'http://iacademy.mikado-themes.com/?page_id=2641',0,'page','',0),(2654,1,'2017-06-08 14:58:24','2017-06-08 14:58:24','[vc_row content_text_aligment=\"center\" css=\".vc_custom_1496934037524{margin-top: -24px !important;padding-bottom: 26px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][mkdf_events_list columns=\"one\" image_size=\"full\" order_by=\"menu_order\" order=\"DESC\" number=\"1\"][/vc_column][/vc_row][vc_row content_text_aligment=\"center\" css=\".vc_custom_1496934059875{padding-bottom: 62px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][mkdf_events_list columns=\"two\" image_size=\"full\" order_by=\"menu_order\" order=\"ASC\" number=\"2\"][/vc_column][/vc_row]','Events List','','publish','closed','closed','','events-list','','','2017-06-08 14:58:24','2017-06-08 14:58:24','',447,'http://iacademy.mikado-themes.com/?page_id=2654',0,'page','',0),(2697,1,'2017-06-09 07:43:51','2017-06-09 07:43:51','[vc_row css=\".vc_custom_1496998840597{margin-top: -30px !important;padding-bottom: 53px !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"680\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\"][mkdf_education_timeline_holder title=\"My Education\"][mkdf_education_timeline_item title=\"Westminster High School\" subtitle=\"Graduated (2001)\"][mkdf_education_timeline_item title=\"Harvard University\" subtitle=\"Harvard Business School (2004)\"][mkdf_education_timeline_item title=\"University of Michigan\" subtitle=\"BBA (2006)\"][mkdf_education_timeline_item title=\"Harvard University\" subtitle=\"Section UX &amp; UI design (2008)\"][mkdf_education_timeline_item title=\"Yale University\" subtitle=\"Business Marketing (2011)\"][mkdf_education_timeline_item title=\"Yale University\" subtitle=\"UX &amp; UI design (2014)\"][/mkdf_education_timeline_holder][/mkdf_elements_holder_item][mkdf_elements_holder_item item_width=\"1-1\" item_padding_1024_1280=\"0 0 0 10%\" item_padding=\"0\" item_padding_1280_1600=\"0\" item_padding_768_1024=\"0 0 0 10%\" item_padding_680_768=\"0 0 0 10%\" item_padding_680=\"0\"][mkdf_education_timeline_holder title=\"My Education\"][mkdf_education_timeline_item title=\"Harvard University\" subtitle=\"Harvard Business School (2004)\"][mkdf_education_timeline_item title=\"University of Michigan\" subtitle=\"BBA (2006)\"][mkdf_education_timeline_item title=\"Harvard University\" subtitle=\"Section UX &amp; UI design (2008)\"][/mkdf_education_timeline_holder][vc_empty_space height=\"11px\"][mkdf_education_timeline_holder title=\"My Experience\"][mkdf_education_timeline_item title=\"Google \" subtitle=\"Head of Industry\"][mkdf_education_timeline_item title=\"Self - employed\" subtitle=\"Professor and Consultant\"][/mkdf_education_timeline_holder][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row]','Education Timeline','','publish','closed','closed','','education-timeline','','','2017-06-09 07:43:51','2017-06-09 07:43:51','',447,'http://iacademy.mikado-themes.com/?page_id=2697',0,'page','',0),(2710,1,'2017-06-09 07:58:57','2017-06-09 07:58:57','[vc_row content_text_aligment=\"left\" css=\".vc_custom_1497426690692{margin-top: -30px !important;padding-bottom: 50px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][mkdf_countdown month=\"10\" hour=\"8\" minute=\"8\"][/vc_column][/vc_row][vc_row content_text_aligment=\"left\" css=\".vc_custom_1497424865336{padding-bottom: 43px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][mkdf_countdown skin=\"mkdf-dark-skin\" month=\"12\" day=\"12\" hour=\"8\" minute=\"8\"][/vc_column][/vc_row][vc_row content_text_aligment=\"left\" css=\".vc_custom_1497424600037{padding-bottom: 55px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][mkdf_countdown type=\"mkdf-inline\" month=\"11\" day=\"12\" hour=\"8\" minute=\"8\" digit_font_size=\"40\" label_font_size=\"16\"][/vc_column][/vc_row][vc_row content_text_aligment=\"left\" css=\".vc_custom_1497424322625{padding-bottom: 95px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][mkdf_countdown type=\"mkdf-inline\" skin=\"mkdf-dark-skin\" year=\"2018\" day=\"12\" hour=\"8\" minute=\"8\" digit_font_size=\"40\" label_font_size=\"16\"][/vc_column][/vc_row]','Countdown','','publish','closed','closed','','countdown','','','2017-06-09 07:58:57','2017-06-09 07:58:57','',447,'http://iacademy.mikado-themes.com/?page_id=2710',0,'page','',0),(2724,1,'2017-06-09 08:18:57','2017-06-09 08:18:57','[vc_row content_text_aligment=\"left\" css=\".vc_custom_1496996541314{margin-top: -40px !important;padding-bottom: 30px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-11\"][products columns=\"3\" orderby=\"title\" order=\"\" ids=\"1829, 1957, 1740, 1917, 1929, 1849\"][/vc_column][/vc_row]','Product List','','publish','closed','closed','','product-list','','','2017-06-09 08:18:57','2017-06-09 08:18:57','',447,'http://iacademy.mikado-themes.com/?page_id=2724',0,'page','',0),(2777,1,'2017-06-09 09:49:00','2017-06-09 09:49:00','[vc_row][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding_768_1024=\"38px 0 0 \" item_padding_680_768=\"38px 0 0 \" item_padding_680=\"38px 0 0 \"][vc_column_text]Lorem ipsum proin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. Sed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc.[/vc_column_text][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row]','Inspiring Innovation','Lorem ipsum proin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis bibendum auctor.','publish','open','closed','','inspiring-innovation','','','2017-06-09 09:49:00','2017-06-09 09:49:00','',0,'http://iacademy.mikado-themes.com/?post_type=tribe_events&amp;p=2777',0,'tribe_events','',0),(2779,1,'2017-06-09 09:50:07','2017-06-09 09:50:07','[vc_row][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding_768_1024=\"38px 0 0 \" item_padding_680_768=\"38px 0 0 \" item_padding_680=\"38px 0 0 \"][vc_column_text]Lorem ipsum proin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. Sed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc.[/vc_column_text][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row]','Education for Service','Lorem ipsum proin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis bibendum auctor.','publish','open','closed','','education-for-service','','','2017-06-09 09:50:07','2017-06-09 09:50:07','',0,'http://iacademy.mikado-themes.com/?post_type=tribe_events&amp;p=2779',0,'tribe_events','',0),(2781,1,'2017-06-09 09:51:40','2017-06-09 09:51:40','[vc_row][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding_768_1024=\"38px 0 0 \" item_padding_680_768=\"38px 0 0 \" item_padding_680=\"38px 0 0 \"][vc_column_text]Lorem ipsum proin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. Sed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc.[/vc_column_text][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row]','Knowledge is Power','Lorem ipsum proin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis bibendum auctor.','publish','open','closed','','knowledge-is-power','','','2017-06-09 09:51:40','2017-06-09 09:51:40','',0,'http://iacademy.mikado-themes.com/?post_type=tribe_events&amp;p=2781',0,'tribe_events','',0),(2796,1,'2017-06-09 10:20:08','2017-06-09 10:20:08','<div class=\"mkdf-cf7-coming-soon\">\n<div class=\"mkdf-cf7-input\">[text text-842 placeholder \"Name\"]</div>\n<div class=\"mkdf-cf7-input\">[email email-659 placeholder \"Email\"]</div>\n<div class=\"mkdf-cf7-submit\">[submit \"Submit\"]</div>\n</div>\n1\niAcademy \"[your-subject]\"\n[your-name] <wordpress@iacademy.mikado-themes.com>\nsupport@mikado-themes.com\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on iAcademy (http://iacademy.mikado-themes.com)\nReply-To: [your-email]\n\n\n\n\niAcademy \"[your-subject]\"\niAcademy <wordpress@iacademy.mikado-themes.com>\n[your-email]\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on iAcademy (http://iacademy.mikado-themes.com)\nReply-To: support@mikado-themes.com\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.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nYour entered code is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','Newsletter 2','','publish','closed','closed','','newsletter-2','','','2017-06-09 10:20:08','2017-06-09 10:20:08','',0,'http://iacademy.mikado-themes.com/?post_type=wpcf7_contact_form&amp;p=2796',0,'wpcf7_contact_form','',0),(2820,1,'2017-06-09 12:33:51','2017-06-09 12:33:51','','become-instructor-img-1','','inherit','open','closed','','become-instructor-img-1','','','2017-06-09 12:33:51','2017-06-09 12:33:51','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/become-instructor-img-1.jpg',0,'attachment','image/jpeg',0),(2928,1,'2017-06-09 14:55:31','2017-06-09 14:55:31','[vc_row][vc_column][rev_slider_vc alias=\"landing-1\" enable_paspartu=\"no\"][/vc_column][/vc_row][vc_row][vc_column][vc_row_inner][vc_column_inner offset=\"vc_col-md-4\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 1% 65px 13%\" item_padding_680_768=\"0 10% 65px\" item_padding_680=\"0 10% 40px\" item_padding_1024_1280=\"0 0px 65px 60px\"][mkdf_image_with_text enable_image_shadow=\"yes\" image_behavior=\"custom-link\" custom_link_target=\"_blank\" title_tag=\"\" image=\"2955\" image_size=\"full\" title=\"Home 1\" custom_link=\"http://iacademy.mikado-themes.com/\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][vc_column_inner offset=\"vc_col-md-4\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 7% 65px\" item_padding_680_768=\"0 10% 65px\" item_padding_680=\"0 10% 40px\" item_padding_1024_1280=\"0 30px 65px\"][mkdf_image_with_text enable_image_shadow=\"yes\" image_behavior=\"custom-link\" custom_link_target=\"_blank\" title_tag=\"\" image=\"3417\" image_size=\"full\" title=\"Home 2\" custom_link=\"http://iacademy.mikado-themes.com/home-2/\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][vc_column_inner offset=\"vc_col-md-4\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 13% 65px 1%\" item_padding_680_768=\"0 10% 65px\" item_padding_680=\"0 10% 40px\" item_padding_1024_1280=\"0 60px 65px 0px\"][mkdf_image_with_text enable_image_shadow=\"yes\" image_behavior=\"custom-link\" custom_link_target=\"_blank\" title_tag=\"\" image=\"3429\" image_size=\"full\" title=\"Home 3\" custom_link=\"http://iacademy.mikado-themes.com/home-3/\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-md-4\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 1% 65px 13%\" item_padding_680_768=\"0 10% 65px\" item_padding_680=\"0 10% 40px\" item_padding_1024_1280=\"0 0px 65px 60px\"][mkdf_image_with_text enable_image_shadow=\"yes\" image_behavior=\"custom-link\" custom_link_target=\"_blank\" title_tag=\"\" image=\"3425\" image_size=\"full\" title=\"Home 4\" custom_link=\"http://iacademy.mikado-themes.com/home-4/\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][vc_column_inner offset=\"vc_col-md-4\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 7% 65px\" item_padding_680_768=\"0 10% 65px\" item_padding_680=\"0 10% 40px\" item_padding_1024_1280=\"0 30px 65px\"][mkdf_image_with_text enable_image_shadow=\"yes\" image_behavior=\"custom-link\" custom_link_target=\"_blank\" title_tag=\"\" image=\"3554\" image_size=\"full\" title=\"Home 5\" custom_link=\"http://iacademy.mikado-themes.com/home-5/\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][vc_column_inner offset=\"vc_col-md-4\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 13% 65px 1%\" item_padding_680_768=\"0 10% 65px\" item_padding_680=\"0 10% 40px\" item_padding_1024_1280=\"0 60px 65px 0px\"][mkdf_image_with_text enable_image_shadow=\"yes\" image_behavior=\"custom-link\" custom_link_target=\"_blank\" title_tag=\"\" image=\"3575\" image_size=\"full\" title=\"Home 6\" custom_link=\"http://iacademy.mikado-themes.com/home-6/\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-md-4\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 1% 65px 13%\" item_padding_680_768=\"0 10% 65px\" item_padding_680=\"0 10% 40px\" item_padding_1024_1280=\"0 0px 65px 60px\"][mkdf_image_with_text enable_image_shadow=\"yes\" image_behavior=\"custom-link\" custom_link_target=\"_blank\" title_tag=\"\" image=\"3550\" image_size=\"full\" title=\"Home 7\" custom_link=\"http://iacademy.mikado-themes.com/home-7/\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][vc_column_inner offset=\"vc_col-md-4\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 7% 65px\" item_padding_680_768=\"0 10% 65px\" item_padding_680=\"0 10% 40px\" item_padding_1024_1280=\"0 30px 65px\"][mkdf_image_with_text enable_image_shadow=\"yes\" image_behavior=\"custom-link\" custom_link_target=\"_blank\" title_tag=\"\" image=\"3572\" image_size=\"full\" title=\"Home 8\" custom_link=\"http://iacademy.mikado-themes.com/home-8/\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][vc_column_inner offset=\"vc_col-md-4\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 13% 65px 1%\" item_padding_680_768=\"0 10% 65px\" item_padding_680=\"0 10% 40px\" item_padding_1024_1280=\"0 60px 65px 0px\"][mkdf_image_with_text enable_image_shadow=\"yes\" image_behavior=\"custom-link\" custom_link_target=\"_blank\" title_tag=\"\" image=\"3418\" image_size=\"full\" title=\"Home 9\" custom_link=\"http://iacademy.mikado-themes.com/home-9/\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-md-4\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 1% 65px 13%\" item_padding_680_768=\"0 10% 65px\" item_padding_680=\"0 10% 40px\" item_padding_1024_1280=\"0 0px 65px 60px\"][mkdf_image_with_text enable_image_shadow=\"yes\" image_behavior=\"custom-link\" custom_link_target=\"_blank\" title_tag=\"\" image=\"3428\" image_size=\"full\" title=\"Home 10\" custom_link=\"http://iacademy.mikado-themes.com/home-10/\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][vc_column_inner offset=\"vc_col-md-4\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 7% 65px\" item_padding_680_768=\"0 10% 65px\" item_padding_680=\"0 10% 40px\" item_padding_1024_1280=\"0 30px 65px\"][mkdf_image_with_text enable_image_shadow=\"yes\" image_behavior=\"custom-link\" custom_link_target=\"_blank\" title_tag=\"\" image=\"3552\" image_size=\"full\" title=\"Home 11\" custom_link=\"http://iacademy.mikado-themes.com/home-11/\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][vc_column_inner offset=\"vc_col-md-4\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 13% 65px 1%\" item_padding_680_768=\"0 10% 65px\" item_padding_680=\"0 10% 40px\" item_padding_1024_1280=\"0 60px 65px 0px\"][mkdf_image_with_text enable_image_shadow=\"yes\" image_behavior=\"custom-link\" custom_link_target=\"_blank\" title_tag=\"\" image=\"3551\" image_size=\"full\" title=\"Home 12\" custom_link=\"http://iacademy.mikado-themes.com/home-12/\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row row_content_width=\"grid\" content_text_aligment=\"right\"][vc_column offset=\"vc_col-lg-5\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"49% 0 0 \" item_padding_1024_1280=\"22% 0 0 \" item_padding_768_1024=\"8% 0 0 \" item_padding_680_768=\"10% 0 0\" item_padding_680=\"0px\" item_padding_1280_1600=\"30% 0 0 \"][mkdf_custom_font title_tag=\"h2\" font_weight=\"700\" font_style=\"\" text_transform=\"\" text_decoration=\"\" text_align=\"left\" title=\"Present Tutors Using Amazing Elements\" font_family=\"Merriweather\" font_size=\"37\" line_height=\"50\" font_size_1024=\"27px\" line_height_1024=\"40px\" font_size_768=\"37px\" line_height_768=\"50px\" font_size_680=\"32px\" line_height_680=\"45px\"][mkdf_custom_font title_tag=\"\" font_weight=\"400\" font_style=\"\" text_transform=\"\" text_decoration=\"\" text_align=\"left\" title=\"iAcademy comes with a collection of useful elements and beautiful predesigned layouts which let you showcase your tutors and other members of your staff in a captivating manner.\" font_family=\"Open Sans\" font_size=\"17\" line_height=\"27\" font_size_1024=\"14px\" line_height_1024=\"24px\" color=\"#595959\" font_size_768=\"17px\" line_height_768=\"27px\" font_size_680=\"14px\" line_height_680=\"24px\" margin=\"10px 0 0 \"][vc_row_inner content_text_aligment=\"left\"][vc_column_inner width=\"1/3\"][mkdf_counter type=\"mkdf-zero-counter\" icon_pack=\"font_awesome\" fa_icon=\"\" title_tag=\"\" title_font_weight=\"\" digit=\"168\" title=\"User Stories\"][/vc_column_inner][vc_column_inner width=\"1/3\"][mkdf_counter type=\"mkdf-zero-counter\" icon_pack=\"font_awesome\" fa_icon=\"\" title_tag=\"\" title_font_weight=\"\" digit=\"347\" title=\"Events\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column offset=\"vc_col-lg-7\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" horizontal_alignment=\"right\" item_padding_680=\"60px 0 60px\" item_padding=\"100px 0\" item_padding_680_768=\"0px\" item_padding_1024_1280=\"60px 0 100px\" item_padding_768_1024=\"60px 0 80px\"][rev_slider_vc alias=\"landing-2\" enable_paspartu=\"no\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row el_class=\"custom-class\"][vc_column offset=\"vc_col-md-6\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding_768_1024=\"0 5% 0 0\" item_padding_680_768=\"0 20% 0 0\" item_padding_680=\"0 20% 100px 0\" item_padding_1024_1280=\"10% 5% 10% 0\"][mkdf_cards_gallery layout=\"shuffled-left\" appear_effect=\"yes\" images=\"3527,3528,3529\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column offset=\"vc_col-md-6\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"5% 40% 0 0\" item_padding_1024_1280=\"20% 8% 0 18%\" item_padding_768_1024=\"40px 17% 0\" item_padding_680_768=\"15% 15% 0\" item_padding_680=\"0 12% 0\"][mkdf_custom_font title_tag=\"h2\" font_weight=\"700\" font_style=\"\" text_transform=\"\" text_decoration=\"\" text_align=\"left\" title=\"Beautiful Layouts\" font_family=\"Merriweather\" font_size=\"37\" line_height=\"50\" font_size_1024=\"27px\" line_height_1024=\"40px\" font_size_768=\"37px\" line_height_768=\"50px\" font_size_680=\"32px\" line_height_680=\"45px\"][mkdf_custom_font title_tag=\"h2\" font_weight=\"700\" font_style=\"\" text_transform=\"\" text_decoration=\"\" text_align=\"left\" title=\"for Showcasing Courses\" font_family=\"Merriweather\" font_size=\"37\" line_height=\"50\" font_size_1024=\"27px\" line_height_1024=\"40px\" font_size_768=\"37px\" line_height_768=\"50px\" font_size_680=\"32px\" line_height_680=\"45px\"][mkdf_custom_font title_tag=\"\" font_weight=\"400\" font_style=\"\" text_transform=\"\" text_decoration=\"\" text_align=\"left\" title=\"You can present all of your courses in a number of appealing ways using iAcademy’s stunning layouts and practical elements, all while providing in-depth descriptions for each course.\" font_family=\"Open Sans\" font_size=\"17\" line_height=\"27\" font_size_1024=\"14px\" line_height_1024=\"24px\" color=\"#595959\" font_size_768=\"17px\" line_height_768=\"27px\" font_size_680=\"14px\" line_height_680=\"24px\" margin=\"20px 0 0 \"][vc_empty_space height=\"12px\"][mkdf_education_timeline_holder][mkdf_education_timeline_item title=\"Four Practical Course Shortcodes\" subtitle=\"User-friendly\"][mkdf_education_timeline_item title=\"Single Course Layouts\" subtitle=\"Detailed Showcases\"][mkdf_education_timeline_item title=\"Create Quizzes &amp; Lectures \" subtitle=\"Quick &amp; Easy\"][/mkdf_education_timeline_holder][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row disable_background_image=\"\" simple_background_image=\"3592\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" horizontal_alignment=\"center\" item_padding=\"230px 45px 240px\" item_padding_1280_1600=\"200px 45px 210px\" item_padding_1024_1280=\"130px 0 210px\" item_padding_768_1024=\"100px 30px 110px\" item_padding_680_768=\"100px 80px 110px\" item_padding_680=\"30px 25px 110px\"][mkdf_image_gallery type=\"carousel\" enable_image_shadow=\"yes\" space_between_columns=\"normal\" number_of_visible_items=\"5\" slider_loop=\"yes\" slider_autoplay=\"yes\" enable-active-item=\"yes\" enable-center=\"yes\" enable-auto-width=\"no\" slider_padding=\"no\" slider_navigation=\"no\" slider_pagination=\"no\" images=\"3981,3980,3582,3982,3983,4061\" image_size=\"full\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row row_content_width=\"grid\" parallax_background_image=\"3604\" css=\".vc_custom_1497969490738{padding-top: 60px !important;}\"][vc_column offset=\"vc_col-md-6\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"39% 0 0 10%\" item_padding_1280_1600=\"33% 10% 0 7%\" item_padding_1024_1280=\"32% 0 0 5%\" item_padding_768_1024=\"40px 0 0 \" item_padding_680_768=\"60px 0 70px \" item_padding_680=\"0 0 100px \"][mkdf_single_image enable_image_shadow=\"no\" image=\"3597\" image_size=\"full\"][vc_column_text]\n<h4><span style=\"color: #ffffff;\">Verified by Google Mobile-Friendly Test</span></h4>\n[/vc_column_text][vc_empty_space height=\"30px\"][vc_column_text]<span style=\"color: #ffffff;\">iAcademy is fully responsive and retina ready. This means that your online presentation is sure to look sharp and pixel-perfect regardless of the screen size or even the device type it is being accessed from. Creating a captivating and gorgeous looking cross-platform website has been made easier than ever.\n</span>[/vc_column_text][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column offset=\"vc_col-md-6\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" vertical_alignment=\"bottom\" animation=\"mkdf-element-from-bottom\" animation_delay=\"300\" item_padding=\"50px 0 0 \" item_padding_1280_1600=\"50px 0 0 \" item_padding_1024_1280=\"50px 0 0 \" item_padding_768_1024=\"0\" item_padding_680_768=\"0\" item_padding_680=\"0\"][mkdf_single_image enable_image_shadow=\"no\" image=\"3609\" image_size=\"full\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row simple_background_color=\"#f7fcff\" css=\".vc_custom_1497876832337{padding-top: 140px !important;padding-bottom: 35px !important;}\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 31% 70px \" item_padding_1280_1600=\"0 26% 70px \" item_padding_1024_1280=\"0 23% 70px \" item_padding_768_1024=\"0 17% 70px \" item_padding_680_768=\"0 5% 70px \" item_padding_680=\"0 4% 70px \"][mkdf_custom_font title_tag=\"\" font_weight=\"700\" font_style=\"\" text_transform=\"\" text_decoration=\"\" text_align=\"center\" title=\"A Large Set of\" font_family=\"Merriweather\" font_size=\"20\" color=\"#d8a64e\"][mkdf_section_title type=\"standard\" title_tag=\"h1\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" title=\"Predesigned Inner Pages\" text=\"Packed with iAcademy is a collection of astounding predesigned inner page layouts which can be used for a considerable variety of purposes.\" text_font_size=\"17\"][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_image_gallery type=\"carousel\" enable_image_shadow=\"yes\" image_behavior=\"custom-link\" custom_link_target=\"_blank\" space_between_columns=\"normal\" number_of_visible_items=\"3\" slider_loop=\"yes\" slider_autoplay=\"yes\" enable-active-item=\"no\" enable-center=\"yes\" enable-auto-width=\"yes\" slider_padding=\"yes\" slider_navigation=\"yes\" slider_pagination=\"yes\" images=\"3773,3771,3772,3774\" image_size=\"full\" custom_links=\"http://iacademy.mikado-themes.com/,http://iacademy.mikado-themes.com/,http://iacademy.mikado-themes.com/,http://iacademy.mikado-themes.com/\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" disable_background_image=\"\" css=\".vc_custom_1497965833448{padding-top: 130px !important;padding-bottom: 30px !important;}\" simple_background_image=\"3487\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"two-columns\" switch_to_one_column=\"1024\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 0 130px\" item_padding_768_1024=\"0 0 40px\" item_padding_680_768=\"0 0 40px\" item_padding_680=\"0 0 40px\"][mkdf_single_image enable_image_shadow=\"yes\" image_behavior=\"custom-link\" custom_link_target=\"_blank\" image=\"3570\" image_size=\"full\" custom_link=\"http://iacademy.mikado-themes.com/forums/forum/language-learning/\"][/mkdf_elements_holder_item][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 0 121px 15%\" item_padding_768_1024=\"0 0 113px 0%\" item_padding_680_768=\"0 0 113px 0%\" item_padding_680=\"0 0 113px 0%\"][mkdf_single_image enable_image_shadow=\"no\" image=\"3497\" image_size=\"full\"][vc_empty_space height=\"20px\"][vc_column_text]Setting up discussion forums &amp; bulletin boards on your own website is simply a breeze. iAcademy is fully compatible with the astounding and free bbPress plugin which provides a great way for you to let your students as well as teachers share their thoughts on matters relevant to your school.[/vc_column_text][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"1024\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 15% 0 0 \" item_padding_768_1024=\"0 0 53px\" item_padding_680_768=\"0 0 53px\" item_padding_680=\"0 0 53px\"][mkdf_single_image enable_image_shadow=\"no\" image=\"3517\" image_size=\"full\"][vc_empty_space height=\"20px\"][vc_column_text]Full compatibility with free The Events Calendar plugin ensures that you can display your classes and events in organized calendar layout with a search functionality which makes locating specific classes easier. Users can also hover over each event or class to receive some additional information.[/vc_column_text][/mkdf_elements_holder_item][mkdf_elements_holder_item item_width=\"1-1\"][mkdf_single_image enable_image_shadow=\"yes\" image_behavior=\"custom-link\" custom_link_target=\"_blank\" image=\"3564\" image_size=\"full\" custom_link=\"http://iacademy.mikado-themes.com/events/2018-07/\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row row_content_width=\"grid\" disable_background_image=\"\" css=\".vc_custom_1497533625101{padding-top: 100px !important;padding-bottom: 100px !important;}\" simple_background_image=\"3515\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"two-columns\" switch_to_one_column=\"1024\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 0 130px\" item_padding_768_1024=\"0 0 53px\" item_padding_680_768=\"0 0 53px\" item_padding_680=\"0 0 53px\"][mkdf_single_image enable_image_shadow=\"yes\" image_behavior=\"custom-link\" custom_link_target=\"_blank\" image=\"3567\" image_size=\"full\" custom_link=\"http://iacademy.mikado-themes.com/shop/\"][/mkdf_elements_holder_item][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 0 121px 15%\" item_padding_768_1024=\"0 0 113px 0%\" item_padding_680_768=\"0 0 113px 0%\" item_padding_680=\"0 0 113px 0%\"][mkdf_single_image enable_image_shadow=\"no\" image=\"3513\" image_size=\"full\"][vc_empty_space height=\"20px\"][vc_column_text]You can launch an outstanding online store without any effort at all. iAcademy’s full compatibility with the most popular free eCommerce plugin, WooCommerce, and a collection of beautifully designed shop templates are everything you will ever need to create your own eCommerce platform.[/vc_column_text][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"1024\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 15% 0 0 \" item_padding_768_1024=\"0 0 40px 0%\" item_padding_680_768=\"0 0 40px 0%\" item_padding_680=\"0 0 40px 0%\"][mkdf_single_image enable_image_shadow=\"no\" image=\"3518\" image_size=\"full\"][vc_empty_space height=\"20px\"][vc_column_text]The powerful and user-friendly Visual Composer page builder plugin is bundled for free with iAcademy. Thanks to its drag-and-drop user interface, you don’t need to know a single line of code in order to create a beautiful and professional website. Set up and manage your website the easy way.[/vc_column_text][/mkdf_elements_holder_item][mkdf_elements_holder_item item_width=\"1-1\"][mkdf_single_image enable_image_shadow=\"yes\" image_behavior=\"custom-link\" custom_link_target=\"_blank\" image=\"3494\" image_size=\"full\" custom_link=\"http://iacademy.mikado-themes.com/\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row row_content_width=\"grid\" disable_background_image=\"\" css=\".vc_custom_1497539007573{padding-top: 30px !important;padding-bottom: 130px !important;}\" simple_background_image=\"3538\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"two-columns\" switch_to_one_column=\"1024\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 0 130px\" item_padding_768_1024=\"0 0 40px\" item_padding_680_768=\"0 0 40px\" item_padding_680=\"0 0 40px\"][mkdf_single_image enable_image_shadow=\"yes\" image_behavior=\"custom-link\" custom_link_target=\"_blank\" image=\"3495\" image_size=\"full\" custom_link=\"http://iacademy.mikado-themes.com/\"][/mkdf_elements_holder_item][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 0 121px 15%\" item_padding_768_1024=\"0 0 113px 0%\" item_padding_680_768=\"0 0 113px 0%\" item_padding_680=\"0 0 113px 0%\"][mkdf_single_image enable_image_shadow=\"no\" image=\"3519\" image_size=\"full\"][vc_empty_space height=\"20px\"][vc_column_text]It’s always imperative to present your business in an eye-catching manner. You can do so by creating gorgeous informative sliders for your educational organization with the help of the easy-to-use Slider Revolution plugin, which is included for free with the theme. With iAcademy, you always get more.[/vc_column_text][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"1024\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 15% 67px 0 \" item_padding_768_1024=\"0 0 53px\" item_padding_680_768=\"0 0 53px\" item_padding_680=\"0 0 53px\" item_padding_1024_1280=\" \"][mkdf_single_image enable_image_shadow=\"no\" image=\"3516\" image_size=\"full\"][vc_empty_space height=\"20px\"][vc_column_text]Translating your website to any of the languages of the world is not a demanding task. iAcademy is fully compatible with WPML plugin which enables you to create a multilingual online presentation without any effort at all. Having your words understood across the globe has never been this easy.[/vc_column_text][/mkdf_elements_holder_item][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 0 50px\"][mkdf_single_image enable_image_shadow=\"yes\" image_behavior=\"custom-link\" custom_link_target=\"_blank\" image=\"3496\" image_size=\"full\" custom_link=\"http://iacademy.mikado-themes.com/\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row][vc_column][rev_slider_vc alias=\"landing-3\" enable_paspartu=\"no\"][/vc_column][/vc_row]','Landing','','publish','closed','closed','','landing','','','2017-06-09 14:55:31','2017-06-09 14:55:31','',0,'http://iacademy.mikado-themes.com/?page_id=2928',0,'page','',0),(2931,1,'2017-06-09 14:04:40','2017-06-09 14:04:40','','landing-slider-1-logo','','inherit','open','closed','','landing-slider-1-logo','','','2017-06-09 14:04:40','2017-06-09 14:04:40','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/landing-slider-1-logo.png',0,'attachment','image/png',0),(2947,1,'2017-06-09 14:55:22','2017-06-09 14:55:22','','landing-background-img','','inherit','open','closed','','landing-background-img','','','2017-06-09 14:55:22','2017-06-09 14:55:22','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/landing-background-img.jpg',0,'attachment','image/jpeg',0),(2955,1,'2017-06-09 15:18:02','2017-06-09 15:18:02','','landing-home-1','','inherit','open','closed','','landing-home-1','','','2017-06-09 15:18:02','2017-06-09 15:18:02','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/landing-home-1.jpg',0,'attachment','image/jpeg',0),(2980,1,'2017-06-12 07:46:38','2017-06-12 07:46:38','[vc_row][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding_768_1024=\"38px 0 0 \" item_padding_680_768=\"38px 0 0 \" item_padding_680=\"38px 0 0 \"][vc_column_text]Lorem ipsum proin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. Sed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc.[/vc_column_text][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row]','Advancing Knowledge','Lorem ipsum proin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis bibendum auctor.','publish','open','closed','','advancing-knowledge','','','2017-06-12 07:46:38','2017-06-12 07:46:38','',0,'http://iacademy.mikado-themes.com/?post_type=tribe_events&amp;p=2980',0,'tribe_events','',0),(2983,1,'2017-06-12 07:49:57','2017-06-12 07:49:57','[vc_row][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding_768_1024=\"38px 0 0 \" item_padding_680_768=\"38px 0 0 \" item_padding_680=\"38px 0 0 \"][vc_column_text]Lorem ipsum proin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. Sed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc.[/vc_column_text][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row]','Students Are Achievers','Lorem ipsum proin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis bibendum auctor.','publish','open','closed','','students-are-achievers','','','2017-06-12 07:49:57','2017-06-12 07:49:57','',0,'http://iacademy.mikado-themes.com/?post_type=tribe_events&amp;p=2983',0,'tribe_events','',0),(2985,1,'2017-06-12 07:51:20','2017-06-12 07:51:20','[vc_row][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding_768_1024=\"38px 0 0 \" item_padding_680_768=\"38px 0 0 \" item_padding_680=\"38px 0 0 \"][vc_column_text]Lorem ipsum proin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. Sed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc.[/vc_column_text][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row]','Creating Future Together','Lorem ipsum proin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis bibendum auctor.','publish','open','closed','','creating-future-together','','','2017-06-12 07:51:20','2017-06-12 07:51:20','',0,'http://iacademy.mikado-themes.com/?post_type=tribe_events&amp;p=2985',0,'tribe_events','',0),(2987,1,'2017-06-12 07:53:22','2017-06-12 07:53:22','[vc_row][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding_768_1024=\"38px 0 0 \" item_padding_680_768=\"38px 0 0 \" item_padding_680=\"38px 0 0 \"][vc_column_text]Lorem ipsum proin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. Sed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc.[/vc_column_text][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row]','Education is Power','Lorem ipsum proin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis bibendum auctor.','publish','open','closed','','education-is-power','','','2017-06-12 07:53:22','2017-06-12 07:53:22','',0,'http://iacademy.mikado-themes.com/?post_type=tribe_events&amp;p=2987',0,'tribe_events','',0),(2989,1,'2017-06-12 07:54:37','2017-06-12 07:54:37','[vc_row][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding_768_1024=\"38px 0 0\" item_padding_680_768=\"38px 0 0\" item_padding_680=\"38px 0 0\"][vc_column_text]Lorem ipsum proin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. Sed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc.[/vc_column_text][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row]','Soaring To Excellence','Lorem ipsum proin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis bibendum auctor.','publish','open','closed','','soaring-to-excellence','','','2017-06-12 07:54:37','2017-06-12 07:54:37','',0,'http://iacademy.mikado-themes.com/?post_type=tribe_events&amp;p=2989',0,'tribe_events','',0),(2992,1,'2017-06-12 07:56:45','2017-06-12 07:56:45','[vc_row][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding_768_1024=\"38px 0 0 \" item_padding_680_768=\"38px 0 0 \" item_padding_680=\"38px 0 0 \"][vc_column_text]Lorem ipsum proin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. Sed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc.[/vc_column_text][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row]','Pride In Excellence','Lorem ipsum proin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis bibendum auctor.','publish','open','closed','','pride-in-excellence','','','2017-06-12 07:56:45','2017-06-12 07:56:45','',0,'http://iacademy.mikado-themes.com/?post_type=tribe_events&amp;p=2992',0,'tribe_events','',0),(2994,1,'2017-06-12 07:58:46','2017-06-12 07:58:46','[vc_row][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding_768_1024=\"38px 0 0 \" item_padding_680_768=\"38px 0 0 \" item_padding_680=\"38px 0 0 \"][vc_column_text]Lorem ipsum proin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. Sed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc.[/vc_column_text][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row]','Inspiring Discovery','Lorem ipsum proin gravida nibh vel veliauctor aliquenean sollicitudin, lorem quis bibendum auctor.','publish','open','closed','','inspiring-discovery','','','2017-06-12 07:58:46','2017-06-12 07:58:46','',0,'http://iacademy.mikado-themes.com/?post_type=tribe_events&amp;p=2994',0,'tribe_events','',0),(2996,1,'2017-06-12 08:13:15','2017-06-12 08:13:15','','iAcademy Education','','publish','closed','closed','','iacademy-education','','','2017-06-12 08:13:15','2017-06-12 08:13:15','',0,'http://iacademy.mikado-themes.com/?post_type=tribe_organizer&amp;p=2996',0,'tribe_organizer','',0),(2997,1,'2017-06-12 08:15:10','2017-06-12 08:15:10','','iAcademy','','publish','closed','closed','','iacademy','','','2017-06-12 08:15:10','2017-06-12 08:15:10','',0,'http://iacademy.mikado-themes.com/?post_type=tribe_venue&amp;p=2997',0,'tribe_venue','',0),(2998,1,'2017-06-12 08:28:26','2017-06-12 08:28:26','','Scholar Education','','publish','closed','closed','','scholar-education','','','2017-06-12 08:28:26','2017-06-12 08:28:26','',0,'http://iacademy.mikado-themes.com/?post_type=tribe_organizer&amp;p=2998',0,'tribe_organizer','',0),(2999,1,'2017-06-12 08:29:05','2017-06-12 08:29:05','','Scholar University','','publish','closed','closed','','scholar-university','','','2017-06-12 08:29:05','2017-06-12 08:29:05','',0,'http://iacademy.mikado-themes.com/?post_type=tribe_venue&amp;p=2999',0,'tribe_venue','',0),(3005,1,'2017-06-12 09:32:00','2017-06-12 09:32:00','Sinh viên Nam, Nữ','Lớp 12: Toán','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in.','publish','open','closed','','lop-12-toan','','','2024-10-29 22:51:15','2024-10-29 15:51:15','',0,'http://iacademy.mikado-themes.com/?post_type=course&#038;p=3005',16,'course','',0),(3006,1,'2017-06-12 09:31:09','2017-06-12 09:31:09','','h4-course-img-4','','inherit','open','closed','','h4-course-img-4','','','2017-06-12 09:31:09','2017-06-12 09:31:09','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/h4-course-img-4.png',0,'attachment','image/png',0),(3007,1,'2017-06-12 09:31:12','2017-06-12 09:31:12','','h4-course-img-5','','inherit','open','closed','','h4-course-img-5','','','2017-06-12 09:31:12','2017-06-12 09:31:12','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/h4-course-img-5.png',0,'attachment','image/png',0),(3008,1,'2017-06-12 09:31:16','2017-06-12 09:31:16','','h4-course-img-6','','inherit','open','closed','','h4-course-img-6','','','2017-06-12 09:31:16','2017-06-12 09:31:16','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/h4-course-img-6.png',0,'attachment','image/png',0),(3010,1,'2017-06-12 09:33:57','2017-06-12 09:33:57','Giáo viên Nam, Nữ dạy trường THPT','Lớp 8: Toán','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in.','publish','open','closed','','lop-8','','','2024-10-29 22:50:49','2024-10-29 15:50:49','',0,'http://iacademy.mikado-themes.com/?post_type=course&#038;p=3010',17,'course','',1),(3011,1,'2017-06-12 09:38:07','2017-06-12 09:38:07','(Sinh viên Nam, Nữ)','Lớp 10: Hóa','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in.','publish','open','closed','','lop-10','','','2024-10-29 22:50:32','2024-10-29 15:50:32','',0,'http://iacademy.mikado-themes.com/?post_type=course&#038;p=3011',18,'course','',1),(3021,1,'2017-06-12 10:21:19','2017-06-12 10:21:19','','h3-event-img-3','','inherit','open','closed','','h3-event-img-3','','','2017-06-12 10:21:19','2017-06-12 10:21:19','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/h3-event-img-3.jpg',0,'attachment','image/jpeg',0),(3023,1,'2017-06-12 11:26:52','2017-06-12 11:26:52','','h3-event-img-1','','inherit','open','closed','','h3-event-img-1','','','2017-06-12 11:26:52','2017-06-12 11:26:52','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/h3-event-img-1.jpg',0,'attachment','image/jpeg',0),(3024,1,'2017-06-12 11:28:28','2017-06-12 11:28:28','','h3-event-img-2','','inherit','open','closed','','h3-event-img-2','','','2017-06-12 11:28:28','2017-06-12 11:28:28','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/h3-event-img-2.jpg',0,'attachment','image/jpeg',0),(3025,1,'2017-06-12 11:29:56','2017-06-12 11:29:56','','h9-event-img-1','','inherit','open','closed','','h9-event-img-1','','','2017-06-12 11:29:56','2017-06-12 11:29:56','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/h9-event-img-1.jpg',0,'attachment','image/jpeg',0),(3026,1,'2017-06-12 11:31:53','2017-06-12 11:31:53','','event-img-2','','inherit','open','closed','','event-img-2','','','2017-06-12 11:31:53','2017-06-12 11:31:53','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/event-img-2.jpg',0,'attachment','image/jpeg',0),(3027,1,'2017-06-12 11:32:47','2017-06-12 11:32:47','','event-img-1','','inherit','open','closed','','event-img-1-2','','','2017-06-12 11:32:47','2017-06-12 11:32:47','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/event-img-1-1.jpg',0,'attachment','image/jpeg',0),(3029,1,'2017-06-12 11:33:57','2017-06-12 11:33:57','','event-img-3','','inherit','open','closed','','event-img-3','','','2017-06-12 11:33:57','2017-06-12 11:33:57','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/event-img-3.jpg',0,'attachment','image/jpeg',0),(3030,1,'2017-06-12 11:34:00','2017-06-12 11:34:00','','event-img-4','','inherit','open','closed','','event-img-4','','','2017-06-12 11:34:00','2017-06-12 11:34:00','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/event-img-4.jpg',0,'attachment','image/jpeg',0),(3031,1,'2017-06-12 11:34:03','2017-06-12 11:34:03','','event-img-5','','inherit','open','closed','','event-img-5','','','2017-06-12 11:34:03','2017-06-12 11:34:03','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/event-img-5.jpg',0,'attachment','image/jpeg',0),(3040,1,'2017-06-12 11:58:07','2017-06-12 11:58:07','','product-10','','inherit','open','closed','','product-10','','','2017-06-12 11:58:07','2017-06-12 11:58:07','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/product-10.jpg',0,'attachment','image/jpeg',0),(3041,1,'2017-06-12 11:58:11','2017-06-12 11:58:11','','product-10-gallery-1','','inherit','open','closed','','product-10-gallery-1','','','2017-06-12 11:58:11','2017-06-12 11:58:11','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/product-10-gallery-1.jpg',0,'attachment','image/jpeg',0),(3042,1,'2017-06-12 11:58:13','2017-06-12 11:58:13','','product-10-gallery-2','','inherit','open','closed','','product-10-gallery-2','','','2017-06-12 11:58:13','2017-06-12 11:58:13','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/product-10-gallery-2.jpg',0,'attachment','image/jpeg',0),(3043,1,'2017-06-12 11:58:15','2017-06-12 11:58:15','','product-10-gallery-3','','inherit','open','closed','','product-10-gallery-3','','','2017-06-12 11:58:15','2017-06-12 11:58:15','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/product-10-gallery-3.jpg',0,'attachment','image/jpeg',0),(3044,1,'2017-06-12 11:58:18','2017-06-12 11:58:18','','product-11','','inherit','open','closed','','product-11','','','2017-06-12 11:58:18','2017-06-12 11:58:18','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/product-11.jpg',0,'attachment','image/jpeg',0),(3045,1,'2017-06-12 11:58:21','2017-06-12 11:58:21','','product-11-gallery-1','','inherit','open','closed','','product-11-gallery-1','','','2017-06-12 11:58:21','2017-06-12 11:58:21','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/product-11-gallery-1.jpg',0,'attachment','image/jpeg',0),(3046,1,'2017-06-12 11:58:24','2017-06-12 11:58:24','','product-11-gallery-2','','inherit','open','closed','','product-11-gallery-2','','','2017-06-12 11:58:24','2017-06-12 11:58:24','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/product-11-gallery-2.jpg',0,'attachment','image/jpeg',0),(3047,1,'2017-06-12 11:58:26','2017-06-12 11:58:26','','product-11-gallery-3','','inherit','open','closed','','product-11-gallery-3','','','2017-06-12 11:58:26','2017-06-12 11:58:26','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/product-11-gallery-3.jpg',0,'attachment','image/jpeg',0),(3048,1,'2017-06-12 11:58:29','2017-06-12 11:58:29','','product-12','','inherit','open','closed','','product-12','','','2017-06-12 11:58:29','2017-06-12 11:58:29','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/product-12.jpg',0,'attachment','image/jpeg',0),(3049,1,'2017-06-12 11:58:31','2017-06-12 11:58:31','','product-12-gallery-1','','inherit','open','closed','','product-12-gallery-1','','','2017-06-12 11:58:31','2017-06-12 11:58:31','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/product-12-gallery-1.jpg',0,'attachment','image/jpeg',0),(3050,1,'2017-06-12 11:58:33','2017-06-12 11:58:33','','product-12-gallery-2','','inherit','open','closed','','product-12-gallery-2','','','2017-06-12 11:58:33','2017-06-12 11:58:33','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/product-12-gallery-2.jpg',0,'attachment','image/jpeg',0),(3051,1,'2017-06-12 11:58:35','2017-06-12 11:58:35','','product-12-gallery-3','','inherit','open','closed','','product-12-gallery-3','','','2017-06-12 11:58:35','2017-06-12 11:58:35','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/product-12-gallery-3.jpg',0,'attachment','image/jpeg',0),(3052,1,'2017-06-12 11:58:38','2017-06-12 11:58:38','','product-13','','inherit','open','closed','','product-13','','','2017-06-12 11:58:38','2017-06-12 11:58:38','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/product-13.jpg',0,'attachment','image/jpeg',0),(3053,1,'2017-06-12 11:58:40','2017-06-12 11:58:40','','product-13-gallery-1','','inherit','open','closed','','product-13-gallery-1','','','2017-06-12 11:58:40','2017-06-12 11:58:40','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/product-13-gallery-1.jpg',0,'attachment','image/jpeg',0),(3054,1,'2017-06-12 11:58:42','2017-06-12 11:58:42','','product-13-gallery-2','','inherit','open','closed','','product-13-gallery-2','','','2017-06-12 11:58:42','2017-06-12 11:58:42','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/product-13-gallery-2.jpg',0,'attachment','image/jpeg',0),(3055,1,'2017-06-12 11:58:44','2017-06-12 11:58:44','','product-13-gallery-3','','inherit','open','closed','','product-13-gallery-3','','','2017-06-12 11:58:44','2017-06-12 11:58:44','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/product-13-gallery-3.jpg',0,'attachment','image/jpeg',0),(3056,1,'2017-06-12 12:02:49','2017-06-12 12:02:49','Lorem Ipsn gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit namec.','iAcademy','Lorem Ipsn gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit.','publish','open','closed','','iacademy','','','2017-06-12 12:02:49','2017-06-12 12:02:49','',0,'http://iacademy.mikado-themes.com/?post_type=product&amp;p=3056',11,'product','',0),(3058,1,'2017-06-12 12:03:08','2017-06-12 12:03:08','Lorem Ipsn gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit namec.','Home Education','Lorem Ipsn gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit.','publish','open','closed','','home-education','','','2024-10-20 14:42:24','2024-10-20 14:42:24','',0,'http://iacademy.mikado-themes.com/?post_type=product&amp;p=3058',12,'product','',1),(3060,1,'2017-06-12 12:07:33','2017-06-12 12:07:33','Lorem Ipsn gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit namec.','DO More','Lorem Ipsn gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit.','publish','open','closed','','do-more','','','2024-10-20 14:42:24','2024-10-20 14:42:24','',0,'http://iacademy.mikado-themes.com/?post_type=product&amp;p=3060',13,'product','',1),(3062,1,'2017-06-12 12:09:07','2017-06-12 12:09:07','Lorem Ipsn gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit namec.','Quality Instruction','Lorem Ipsn gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit.','publish','open','closed','','quality-instruction','','','2024-10-20 14:42:24','2024-10-20 14:42:24','',0,'http://iacademy.mikado-themes.com/?post_type=product&amp;p=3062',14,'product','',1),(3082,1,'2017-06-12 14:14:16','2017-06-12 14:14:16','','logo-footer-dark','','inherit','open','closed','','logo-footer-dark','','','2017-06-12 14:14:16','2017-06-12 14:14:16','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/logo-footer-dark.png',0,'attachment','image/png',0),(3229,1,'2017-06-14 09:39:30','2017-06-14 09:39:30','Omnesque menandri consectetuer te duo. Vix illum rationibus consetetur te, tota accusamus cu eam, no regione docendi qui. Ad assum scripta quo, eu quas offendit principes vis. Vim at odio verear docendi.Et eam partiendo necessitatibus, omnes nostro partiendo eu eum. \nTe modo oratio nonumy eos. Suas tation assueverit vis no. Eu omnes diceret hendrerit sed, vel solet oblique ei. ','','','publish','closed','closed','','3229','','','2017-06-14 09:39:30','2017-06-14 09:39:30','',143,'http://iacademy.mikado-themes.com/forums/reply/3229/',2,'reply','',0),(3231,1,'2017-06-14 09:40:45','2017-06-14 09:40:45','Everti vidisse elaboraret est ad, ignota dictas commodo ius ex, nam eius soleat no. Mea altera sadipscing no, an his vero minim. At porro dicam ius, vim zril gubergren suscipiantur.','','','publish','closed','closed','','3231','','','2017-06-14 09:40:45','2017-06-14 09:40:45','',143,'http://iacademy.mikado-themes.com/forums/reply/3231/',3,'reply','',0),(3255,1,'2017-06-14 10:03:41','2017-06-14 10:03:41','Lorem ipsum dolor sit amet, cu sea nibh solet laboramus, perpetua definiebas eu nec. Vocent scripta qualisque et mea, persius delicata cu his. Iisque moderatius eloquentiam id sed, ut lucilius mandamus vix, no quo omnis clita propriae. Mel id ponderum sententiae, tritani accumsan cu ius. Eu saepe labitur has, eum reprimique scribentur theophrastus in, ut sit ferri choro.\n','Learning  Techniques & Methods','','publish','closed','closed','','learning-techniques-methods','','','2017-06-14 10:03:41','2017-06-14 10:03:41','',126,'http://iacademy.mikado-themes.com/forums/topic/learning-techniques-methods/',0,'topic','',0),(3256,1,'2017-06-14 10:09:02','2017-06-14 10:09:02','At fastidii facilisis dissentiunt usu. In vix verterem concludaturque. Eum eu zril vocibus, ex vel facer maiorum, iuvaret labores sensibus ei quo. \nQui ea delenit omnesque.\n\nEa dicat cotidieque his, purto causae vel id. Euismod appareat recusabo an sit. Natum similique adolescens ad his, dicit paulo theophrastus cu est, putent habemus minimum no mel. Est ludus menandri ex, ut nemore vituperata usu, sed te choro corpora tincidunt.','','','publish','closed','closed','','3256','','','2017-06-14 10:09:02','2017-06-14 10:09:02','',3255,'http://iacademy.mikado-themes.com/forums/reply/3256/',1,'reply','',0),(3260,1,'2017-06-14 10:25:48','2017-06-14 10:25:48','Lorem ipsum dolor sit amet, ne aliquip salutandi pro, at pri meis omnis. Ex sed epicuri democritum. Nostrud intellegat concludaturque per cu, te iusto suavitate nec, sit illud delectus ne. Vix at fabulas fastidii praesent, ea laoreet vocibus accusam cum, has movet affert in. Cum alii gloriatur ut, sit lorem accusamus te. Dolore pertinacia vim at.','Language Learning Softwares','','publish','closed','open','','language-learning-softwares','','','2017-06-14 10:25:48','2017-06-14 10:25:48','',126,'http://iacademy.mikado-themes.com/?post_type=topic&amp;p=3260',0,'topic','',0),(3267,1,'2017-06-14 10:44:51','2017-06-14 10:44:51','','Finance Marketing','','publish','closed','open','','finance-marketing','','','2017-06-14 10:44:51','2017-06-14 10:44:51','',0,'http://iacademy.mikado-themes.com/?post_type=forum&amp;p=3267',2,'forum','',0),(3269,1,'2017-06-14 10:45:15','2017-06-14 10:45:15','','Information Technology','','publish','closed','open','','information-technology','','','2017-06-14 10:45:15','2017-06-14 10:45:15','',0,'http://iacademy.mikado-themes.com/?post_type=forum&amp;p=3269',3,'forum','',0),(3271,1,'2017-06-14 10:45:56','2017-06-14 10:45:56','At eirmod imperdiet complectitur usu, deserunt pertinacia at est. Ex mundi iudicabit intellegat eam. Sea tale dignissim te, est summo ponderum necessitatibus ei. Cum tale omnium no, consetetur ullamcorper sed ex. Ne tantas impedit dissentiet est, usu ad doctus ornatus perfecto, cu audire numquam has. Usu error iisque quaeque et, ex sea natum error insolens. Id vix illud rationibus, ea meliore fabellas vel, per verear menandri splendide no. Eu mea augue sapientem, congue blandit accusata ut ius, eam vitae viderer ne.\n\n&nbsp;','Basic Marketing','','publish','closed','open','','basic-marketing','','','2017-06-14 10:45:56','2017-06-14 10:45:56','',3267,'http://iacademy.mikado-themes.com/?post_type=topic&amp;p=3271',0,'topic','',0),(3273,1,'2017-06-14 10:47:06','2017-06-14 10:47:06','Ne tantas impedit dissentiet est, usu ad doctus ornatus perfecto, cu audire numquam has. Usu error iisque quaeque et, ex sea natum error insolens. Id vix illud rationibus, ea meliore fabellas vel, per verear menandri splendide no. Eu mea augue sapientem, congue blandit accusata ut ius, eam vitae viderer ne.At eirmod imperdiet complectitur usu, deserunt pertinacia at est. Ex mundi iudicabit intellegat eam. Sea tale dignissim te, est summo ponderum necessitatibus ei. Cum tale omnium no, consetetur ullamcorper sed ex.','Software Development','','publish','closed','open','','software-development','','','2017-06-14 10:47:06','2017-06-14 10:47:06','',3269,'http://iacademy.mikado-themes.com/?post_type=topic&amp;p=3273',0,'topic','',0),(3275,1,'2017-06-14 10:49:48','2017-06-14 10:49:48','At fastidii facilisis dissentiunt usu. In vix verterem concludaturque. Eum eu zril vocibus, ex vel facer maiorum, iuvaret labores sensibus ei quo. Qui ea delenit omnesque.Ea dicat cotidieque his, purto causae vel id. Euismod appareat recusabo an sit. Natum similique adolescens ad his, dicit paulo theophrastus cu est, putent habemus minimum no mel. Est ludus menandri ex, ut nemore vituperata usu, sed te choro corpora tincidunt.','','','publish','closed','closed','','3275','','','2017-06-14 10:49:48','2017-06-14 10:49:48','',3271,'http://iacademy.mikado-themes.com/forums/reply/3275/',1,'reply','',0),(3276,1,'2017-06-14 10:50:16','2017-06-14 10:50:16','At fastidii facilisis dissentiunt usu. In vix verterem concludaturque. Eum eu zril vocibus, ex vel facer maiorum, iuvaret labores sensibus ei quo. Qui ea delenit omnesque.Ea dicat cotidieque his, purto causae vel id. Euismod appareat recusabo an sit. Natum similique adolescens ad his, dicit paulo theophrastus cu est, putent habemus minimum no mel. Est ludus menandri ex, ut nemore vituperata usu, sed te choro corpora tincidunt.','','','publish','closed','closed','','3276','','','2017-06-14 10:50:16','2017-06-14 10:50:16','',3273,'http://iacademy.mikado-themes.com/forums/reply/3276/',1,'reply','',0),(3277,1,'2017-06-14 10:52:00','2017-06-14 10:52:00','Te sit ferri debet, autem interesset sed ne. Et sea meis iusto. Mea esse blandit ea, cum dico voluptua abhorreant ad, eu soluta appareat mei. Novum concludaturque sed ut, ut cum veniam verear. An error quodsi mollis vis, per lorem dissentiet in.\nAt fastidii facilisis dissentiunt usu. In vix verterem concludaturque. Eum eu zril vocibus, ex vel facer maiorum, iuvaret labores sensibus ei quo. Qui ea delenit omnesque.Ea dicat cotidieque his, purto causae vel id. Euismod appareat recusabo an sit. Natum similique adolescens ad his, dicit paulo cu est, putent habemus minimum no mel. Est ludus menandri ex, ut nemore vituperata usu, sed te choro corpora tincidunt.','UX/UI Design','','publish','closed','closed','','uxui-design','','','2017-06-14 10:52:00','2017-06-14 10:52:00','',3269,'http://iacademy.mikado-themes.com/forums/topic/uxui-design/',0,'topic','',0),(3278,1,'2017-06-14 10:52:43','2017-06-14 10:52:43','Te sit ferri debet, autem interesset sed ne. Et sea meis iusto. Mea esse blandit ea, cum dico voluptua abhorreant ad, eu soluta appareat mei. Novum concludaturque sed ut, ut cum veniam verear. An error quodsi mollis vis, per lorem dissentiet in.\n','Personal Finance','','publish','closed','closed','','personal-finance','','','2017-06-14 10:52:43','2017-06-14 10:52:43','',3267,'http://iacademy.mikado-themes.com/forums/topic/personal-finance/',0,'topic','',0),(3281,1,'2017-06-14 11:01:33','2017-06-14 11:01:33','Varius quam quisque id diam. Laoreet sit amet cursus sit amet dictum sit. Sed augue lacus viverra vitae congue. Et netus et malesuada fames. Vitae suscipit tellus mauris a diam maecenas. Nunc congue nisi vitae suscipit tellus. Et malesuada fames ac turpis egestas sed tempus. Elementum tempus egestas sed sed risus. Lectus arcu bibendum at varius vel. Cursus metus aliquam eleifend mi in nulla posuere sollicitudin aliquam.','','','publish','closed','closed','','3281','','','2017-06-14 11:01:33','2017-06-14 11:01:33','',3273,'http://iacademy.mikado-themes.com/forums/reply/3281/',2,'reply','',0),(3282,1,'2017-06-14 11:01:36','2017-06-14 11:01:36','Varius quam quisque id diam. Laoreet sit amet cursus sit amet dictum sit. Sed augue lacus viverra vitae congue. Et netus et malesuada fames. Vitae suscipit tellus mauris a diam maecenas. Nunc congue nisi vitae suscipit tellus. Et malesuada fames ac turpis egestas sed tempus. Elementum tempus egestas sed sed risus. Lectus arcu bibendum at varius vel. Cursus metus aliquam eleifend mi in nulla posuere sollicitudin aliquam.','','','publish','closed','closed','','3282','','','2017-06-14 11:01:36','2017-06-14 11:01:36','',3277,'http://iacademy.mikado-themes.com/forums/reply/3282/',1,'reply','',0),(3283,1,'2017-06-14 11:02:22','2017-06-14 11:02:22','Varius quam quisque id diam. Laoreet sit amet cursus sit amet dictum sit. Sed augue lacus viverra vitae congue. Et netus et malesuada fames. Vitae suscipit tellus mauris a diam maecenas. Nunc congue nisi vitae suscipit tellus. Et malesuada fames ac turpis egestas sed tempus. Elementum tempus egestas sed sed risus. Lectus arcu bibendum at varius vel. Cursus metus aliquam eleifend mi in nulla posuere sollicitudin aliquam.','Mobile Development','','publish','closed','closed','','mobile-development','','','2017-06-14 11:02:22','2017-06-14 11:02:22','',3269,'http://iacademy.mikado-themes.com/forums/topic/mobile-development/',0,'topic','',0),(3284,1,'2017-06-14 11:03:30','2017-06-14 11:03:30','Amet cursus sit amet dictum sit. Praesent semper feugiat nibh sed pulvinar proin. Viverra justo nec ultrices dui. Arcu odio ut sem nulla pharetra diam sit amet. Viverra orci sagittis eu volutpat odio facilisis mauris sit amet. Ut etiam sit amet nisl purus. Morbi tincidunt ornare massa eget egestas. Nec dui nunc mattis enim ut tellus elementum sagittis vitae. Euismod lacinia at quis risus sed vulputate. Amet risus nullam eget felis eget nunc. Ultricies integer quis auctor elit sed. Tempor orci eu lobortis elementum. Justo laoreet sit amet cursus sit amet dictum. Varius duis at consectetur lorem donec massa sapien.','Professional Networking','','publish','closed','closed','','professional-networking','','','2017-06-14 11:03:30','2017-06-14 11:03:30','',3267,'http://iacademy.mikado-themes.com/forums/topic/professional-networking/',0,'topic','',0),(3285,1,'2017-06-14 11:05:19','2017-06-14 11:05:19','Ad vel iudico tantas, habeo labitur feugiat eu vel. Ius te errem tamquam, te iuvaret noluisse tincidunt pro. Latine prompta ad qui. Usu ei debet deleniti scaevola, tantas posidonium ut sea. Quaeque legendos ut eum, accusam mnesarchum id cum. Soluta quidam pertinax vis cu, quidam sadipscing voluptatibus ex has.\n\nModus adolescens has te. Intellegat inciderint quo at, ea alia nominati dissentiet his. Nusquam singulis ea sea. Ex novum reformidans vix, ei tincidunt quaerendum pro.\n','','','publish','closed','closed','','3285','','','2017-06-14 11:05:19','2017-06-14 11:05:19','',3284,'http://iacademy.mikado-themes.com/forums/reply/3285/',1,'reply','',0),(3286,1,'2017-06-14 11:05:33','2017-06-14 11:05:33','Ad vel iudico tantas, habeo labitur feugiat eu vel. Ius te errem tamquam, te iuvaret noluisse tincidunt pro. Latine prompta ad qui. Usu ei debet deleniti scaevola, tantas posidonium ut sea. Quaeque legendos ut eum, accusam mnesarchum id cum. Soluta quidam pertinax vis cu, quidam sadipscing voluptatibus ex has.\n\nModus adolescens has te. Intellegat inciderint quo at, ea alia nominati dissentiet his. Nusquam singulis ea sea. Ex novum reformidans vix, ei tincidunt quaerendum pro.\n','','','publish','closed','closed','','3286','','','2017-06-14 11:05:33','2017-06-14 11:05:33','',3283,'http://iacademy.mikado-themes.com/forums/reply/3286/',1,'reply','',0),(3298,1,'2017-06-14 12:26:15','2017-06-14 12:26:15','[vc_row row_content_width=\"grid\" css=\".vc_custom_1497443596817{padding-bottom: 50px !important;}\"][vc_column][products columns=\"3\" orderby=\"date\" order=\"\" ids=\"1740, 1829, 1936, 1957, 3056, 3058, 1917, 1929, 3060\"][/vc_column][/vc_row]','Three Columns Grid','','publish','closed','closed','','three-columns-grid','','','2017-06-14 12:26:15','2017-06-14 12:26:15','',4123,'http://iacademy.mikado-themes.com/?page_id=3298',0,'page','',0),(3305,1,'2017-06-14 12:34:25','2017-06-14 12:34:25','[vc_row css=\".vc_custom_1497443660488{padding-bottom: 50px !important;}\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 100px\" item_padding_1280_1600=\"0 30px\" item_padding_1024_1280=\"0 30px\" item_padding_768_1024=\"0 30px\" item_padding_680_768=\"0 30px\" item_padding_680=\"0 35px\"][products columns=\"3\" orderby=\"date\" order=\"ASC\" ids=\"1740, 1829, 1936, 1957, 3056, 3058, 1917, 1929, 3060\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row]','Three Columns Wide','','publish','closed','closed','','three-columns-wide','','','2017-06-14 12:34:25','2017-06-14 12:34:25','',4123,'http://iacademy.mikado-themes.com/?page_id=3305',0,'page','',0),(3312,1,'2017-06-14 12:51:05','2017-06-14 12:51:05','[vc_row row_content_width=\"grid\" css=\".vc_custom_1497443596817{padding-bottom: 50px !important;}\"][vc_column][products columns=\"4\" orderby=\"date\" order=\"\" ids=\"1740, 1829, 1936, 1957, 3056, 3058, 1917, 1929, 3060, 1908, 1880, 1849\"][/vc_column][/vc_row]','Four Columns Grid','','publish','closed','closed','','four-columns-grid','','','2017-06-14 12:51:05','2017-06-14 12:51:05','',4123,'http://iacademy.mikado-themes.com/?page_id=3312',0,'page','',0),(3316,1,'2017-06-14 12:53:47','2017-06-14 12:53:47','','interactive-map-slider-cloud','','inherit','open','closed','','interactive-map-slider-cloud','','','2017-06-14 12:53:47','2017-06-14 12:53:47','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/interactive-map-slider-cloud.png',0,'attachment','image/png',0),(3317,1,'2017-06-14 12:53:49','2017-06-14 12:53:49','','interactive-map-slider-icon-close','','inherit','open','closed','','interactive-map-slider-icon-close','','','2017-06-14 12:53:49','2017-06-14 12:53:49','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/interactive-map-slider-icon-close.png',0,'attachment','image/png',0),(3318,1,'2017-06-14 12:53:51','2017-06-14 12:53:51','','interactive-map-slider-icon-open','','inherit','open','closed','','interactive-map-slider-icon-open','','','2017-06-14 12:53:51','2017-06-14 12:53:51','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/interactive-map-slider-icon-open.png',0,'attachment','image/png',0),(3320,1,'2017-06-14 12:53:53','2017-06-14 12:53:53','','interactive-map-slider-img-1','','inherit','open','closed','','interactive-map-slider-img-1','','','2017-06-14 12:53:53','2017-06-14 12:53:53','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/interactive-map-slider-img-1.png',0,'attachment','image/png',0),(3321,1,'2017-06-14 12:55:12','2017-06-14 12:55:12','[vc_row css=\".vc_custom_1497443660488{padding-bottom: 50px !important;}\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 100px\" item_padding_1280_1600=\"0 30px\" item_padding_1024_1280=\"0 30px\" item_padding_768_1024=\"0 30px\" item_padding_680_768=\"0 30px\" item_padding_680=\"0 35px\"][products columns=\"4\" orderby=\"date\" order=\"ASC\" ids=\"1740, 1829, 1936, 1957, 3056, 3058, 1917, 1929, 3060, 1849, 1880, 1908\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row]','Four Columns Wide','','publish','closed','closed','','four-columns-wide','','','2017-06-14 12:55:12','2017-06-14 12:55:12','',4123,'http://iacademy.mikado-themes.com/?page_id=3321',0,'page','',0),(3325,1,'2017-06-14 12:57:38','2017-06-14 12:57:38','[vc_row row_content_width=\"grid\" css=\".vc_custom_1497443596817{padding-bottom: 50px !important;}\"][vc_column][products columns=\"5\" orderby=\"date\" order=\"\" ids=\"1740, 1829, 1936, 1957, 3056, 3058, 1917, 1929, 3060, 1908\"][/vc_column][/vc_row]','Five Columns Grid','','publish','closed','closed','','five-columns-grid','','','2017-06-14 12:57:38','2017-06-14 12:57:38','',4123,'http://iacademy.mikado-themes.com/?page_id=3325',0,'page','',0),(3327,1,'2017-06-14 12:58:47','2017-06-14 12:58:47','[vc_row css=\".vc_custom_1497443660488{padding-bottom: 50px !important;}\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 100px\" item_padding_1280_1600=\"0 30px\" item_padding_1024_1280=\"0 30px\" item_padding_768_1024=\"0 30px\" item_padding_680_768=\"0 30px\" item_padding_680=\"0 35px\"][products columns=\"5\" orderby=\"date\" order=\"ASC\" ids=\"1740, 1829, 1936, 1957, 3056, 3058, 1917, 1929, 3060, 1849\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row]','Five Columns Wide','','publish','closed','closed','','five-columns-wide','','','2017-06-14 12:58:47','2017-06-14 12:58:47','',4123,'http://iacademy.mikado-themes.com/?page_id=3327',0,'page','',0),(3330,1,'2017-06-14 13:00:47','2017-06-14 13:00:47','','interactive-map-slider-img-11','','inherit','open','closed','','interactive-map-slider-img-11','','','2017-06-14 13:00:47','2017-06-14 13:00:47','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/interactive-map-slider-img-11.png',0,'attachment','image/png',0),(3355,1,'2017-06-14 14:13:24','2017-06-14 14:13:24','','Order &ndash; Tháng sáu 14, 2017 @ 02:13 Chiều','','wc-completed','open','closed','order_59414484ee807','order-jun-14-2017-0213-pm','','','2017-06-14 14:13:24','2017-06-14 14:13:24','',0,'http://iacademy.mikado-themes.com/?post_type=shop_order&amp;p=3355',0,'shop_order','',1),(3356,1,'2017-06-14 14:29:07','2017-06-14 14:29:07','','Order &ndash; Tháng sáu 14, 2017 @ 02:29 Chiều','','wc-completed','open','closed','order_5941483375f4e','order-jun-14-2017-0229-pm','','','2017-06-14 14:29:07','2017-06-14 14:29:07','',0,'http://iacademy.mikado-themes.com/?post_type=shop_order&amp;p=3356',0,'shop_order','',2),(3357,1,'2017-06-14 14:31:59','2017-06-14 14:31:59','','Order &ndash; Tháng sáu 14, 2017 @ 02:31 Chiều','','wc-completed','open','closed','order_594148dfc8703','order-jun-14-2017-0231-pm','','','2017-06-14 14:31:59','2017-06-14 14:31:59','',0,'http://iacademy.mikado-themes.com/?post_type=shop_order&amp;p=3357',0,'shop_order','',1),(3358,1,'2017-06-14 14:39:27','2017-06-14 14:39:27','','Order &ndash; Tháng sáu 14, 2017 @ 02:39 Chiều','','wc-on-hold','open','closed','order_59414a9f4cce6','order-jun-14-2017-0239-pm','','','2017-06-14 14:39:27','2017-06-14 14:39:27','',0,'http://iacademy.mikado-themes.com/?post_type=shop_order&amp;p=3358',0,'shop_order','',1),(3359,1,'2017-06-14 14:41:08','2017-06-14 14:41:08','','Order &ndash; Tháng sáu 14, 2017 @ 02:41 Chiều','','wc-on-hold','open','closed','order_59414b04184bb','order-jun-14-2017-0241-pm','','','2017-06-14 14:41:08','2017-06-14 14:41:08','',0,'http://iacademy.mikado-themes.com/?post_type=shop_order&amp;p=3359',0,'shop_order','',1),(3360,1,'2017-06-14 14:42:12','2017-06-14 14:42:12','','Order &ndash; Tháng sáu 14, 2017 @ 02:42 Chiều','','wc-completed','open','closed','order_59414b44d7268','order-jun-14-2017-0242-pm','','','2017-06-14 14:42:12','2017-06-14 14:42:12','',0,'http://iacademy.mikado-themes.com/?post_type=shop_order&amp;p=3360',0,'shop_order','',1),(3361,1,'2017-06-14 14:47:14','2017-06-14 14:47:14','','Order &ndash; Tháng sáu 14, 2017 @ 02:47 Chiều','','wc-completed','open','closed','order_59414c729a15d','order-jun-14-2017-0247-pm','','','2017-06-14 14:47:14','2017-06-14 14:47:14','',0,'http://iacademy.mikado-themes.com/?post_type=shop_order&amp;p=3361',0,'shop_order','',2),(3362,1,'2017-06-14 14:48:11','2017-06-14 14:48:11','','Order &ndash; Tháng sáu 14, 2017 @ 02:48 Chiều','','wc-completed','open','closed','order_59414cab4df9f','order-jun-14-2017-0248-pm','','','2017-06-14 14:48:11','2017-06-14 14:48:11','',0,'http://iacademy.mikado-themes.com/?post_type=shop_order&amp;p=3362',0,'shop_order','',2),(3363,1,'2017-06-14 14:49:02','2017-06-14 14:49:02','','Order &ndash; Tháng sáu 14, 2017 @ 02:49 Chiều','','wc-completed','open','closed','order_59414cdee824e','order-jun-14-2017-0249-pm','','','2017-06-14 14:49:02','2017-06-14 14:49:02','',0,'http://iacademy.mikado-themes.com/?post_type=shop_order&amp;p=3363',0,'shop_order','',2),(3364,1,'2017-06-14 14:51:00','2017-06-14 14:51:00','','Order &ndash; Tháng sáu 14, 2017 @ 02:51 Chiều','','wc-completed','open','closed','order_59414d5473d1c','order-jun-14-2017-0251-pm','','','2017-06-14 14:51:00','2017-06-14 14:51:00','',0,'http://iacademy.mikado-themes.com/?post_type=shop_order&amp;p=3364',0,'shop_order','',2),(3365,1,'2017-06-14 14:53:03','2017-06-14 14:53:03','','Order &ndash; Tháng sáu 14, 2017 @ 02:53 Chiều','','wc-completed','open','closed','order_59414dcfe320a','order-jun-14-2017-0253-pm','','','2017-06-14 14:53:03','2017-06-14 14:53:03','',0,'http://iacademy.mikado-themes.com/?post_type=shop_order&amp;p=3365',0,'shop_order','',2),(3366,1,'2017-06-14 14:55:51','2017-06-14 14:55:51','','Order &ndash; Tháng sáu 14, 2017 @ 02:55 Chiều','','wc-completed','open','closed','order_59414e77de2fa','order-jun-14-2017-0255-pm','','','2017-06-14 14:55:51','2017-06-14 14:55:51','',0,'http://iacademy.mikado-themes.com/?post_type=shop_order&amp;p=3366',0,'shop_order','',2),(3367,1,'2017-06-14 15:00:02','2017-06-14 15:00:02','','Order &ndash; Tháng sáu 14, 2017 @ 03:00 Chiều','','wc-completed','open','closed','order_59414f72253cf','order-jun-14-2017-0300-pm','','','2017-06-14 15:00:02','2017-06-14 15:00:02','',0,'http://iacademy.mikado-themes.com/?post_type=shop_order&amp;p=3367',0,'shop_order','',1),(3368,1,'2017-06-14 15:01:50','2017-06-14 15:01:50','','Order &ndash; Tháng sáu 14, 2017 @ 03:01 Chiều','','wc-completed','open','closed','order_59414fde2cd96','order-jun-14-2017-0301-pm','','','2017-06-14 15:01:50','2017-06-14 15:01:50','',0,'http://iacademy.mikado-themes.com/?post_type=shop_order&amp;p=3368',0,'shop_order','',2),(3369,1,'2017-06-14 15:03:16','2017-06-14 15:03:16','','Order &ndash; Tháng sáu 14, 2017 @ 03:03 Chiều','','wc-completed','open','closed','order_59415034342fb','order-jun-14-2017-0303-pm','','','2017-06-14 15:03:16','2017-06-14 15:03:16','',0,'http://iacademy.mikado-themes.com/?post_type=shop_order&amp;p=3369',0,'shop_order','',2),(3370,1,'2017-06-14 15:05:50','2017-06-14 15:05:50','','Order &ndash; Tháng sáu 14, 2017 @ 03:05 Chiều','','wc-processing','open','closed','order_594150ce3cb41','order-jun-14-2017-0305-pm','','','2017-06-14 15:05:50','2017-06-14 15:05:50','',0,'http://iacademy.mikado-themes.com/?post_type=shop_order&amp;p=3370',0,'shop_order','',3),(3372,1,'2017-06-15 07:25:08','2017-06-15 07:25:08','','Order &ndash; Tháng sáu 15, 2017 @ 07:25 Sáng','','wc-completed','open','closed','order_5942365464936','order-jun-15-2017-0725-am','','','2017-06-15 07:25:08','2017-06-15 07:25:08','',0,'http://iacademy.mikado-themes.com/?post_type=shop_order&amp;p=3372',0,'shop_order','',2),(3373,1,'2017-06-15 07:29:17','2017-06-15 07:29:17','','Order &ndash; Tháng sáu 15, 2017 @ 07:29 Sáng','','wc-completed','open','closed','order_5942374d86ac1','order-jun-15-2017-0729-am','','','2017-06-15 07:29:17','2017-06-15 07:29:17','',0,'http://iacademy.mikado-themes.com/?post_type=shop_order&amp;p=3373',0,'shop_order','',2),(3374,1,'2017-06-15 07:34:07','2017-06-15 07:34:07','','Order &ndash; Tháng sáu 15, 2017 @ 07:34 Sáng','','wc-completed','open','closed','order_5942386fd21ed','order-jun-15-2017-0734-am','','','2017-06-15 07:34:07','2017-06-15 07:34:07','',0,'http://iacademy.mikado-themes.com/?post_type=shop_order&amp;p=3374',0,'shop_order','',1),(3375,1,'2017-06-15 07:42:00','2017-06-15 07:42:00','','Order &ndash; Tháng sáu 15, 2017 @ 07:42 Sáng','','wc-completed','open','closed','order_59423a48cfc66','order-jun-15-2017-0742-am','','','2017-06-15 07:42:00','2017-06-15 07:42:00','',0,'http://iacademy.mikado-themes.com/?post_type=shop_order&amp;p=3375',0,'shop_order','',1),(3376,1,'2017-06-15 07:44:17','2017-06-15 07:44:17','','Order &ndash; Tháng sáu 15, 2017 @ 07:44 Sáng','','wc-completed','open','closed','order_59423ad2006df','order-jun-15-2017-0744-am','','','2017-06-15 07:44:17','2017-06-15 07:44:17','',0,'http://iacademy.mikado-themes.com/?post_type=shop_order&amp;p=3376',0,'shop_order','',1),(3377,1,'2017-06-15 07:45:41','2017-06-15 07:45:41','','Order &ndash; Tháng sáu 15, 2017 @ 07:45 Sáng','','wc-completed','open','closed','order_59423b25b1ae7','order-jun-15-2017-0745-am','','','2017-06-15 07:45:41','2017-06-15 07:45:41','',0,'http://iacademy.mikado-themes.com/?post_type=shop_order&amp;p=3377',0,'shop_order','',2),(3378,1,'2017-06-15 07:48:22','2017-06-15 07:48:22','','Order &ndash; Tháng sáu 15, 2017 @ 07:48 Sáng','','wc-completed','open','closed','order_59423bc6b233b','order-jun-15-2017-0748-am','','','2017-06-15 07:48:22','2017-06-15 07:48:22','',0,'http://iacademy.mikado-themes.com/?post_type=shop_order&amp;p=3378',0,'shop_order','',2),(3379,1,'2017-06-15 07:53:37','2017-06-15 07:53:37','','Order &ndash; Tháng sáu 15, 2017 @ 07:53 Sáng','','wc-completed','open','closed','order_59423d0178885','order-jun-15-2017-0753-am','','','2017-06-15 07:53:37','2017-06-15 07:53:37','',0,'http://iacademy.mikado-themes.com/?post_type=shop_order&amp;p=3379',0,'shop_order','',1),(3380,1,'2017-06-15 07:55:31','2017-06-15 07:55:31','','Order &ndash; Tháng sáu 15, 2017 @ 07:55 Sáng','','wc-completed','open','closed','order_59423d73bf5aa','order-jun-15-2017-0755-am','','','2017-06-15 07:55:31','2017-06-15 07:55:31','',0,'http://iacademy.mikado-themes.com/?post_type=shop_order&amp;p=3380',0,'shop_order','',2),(3381,1,'2017-06-15 07:57:49','2017-06-15 07:57:49','','Order &ndash; Tháng sáu 15, 2017 @ 07:57 Sáng','','wc-completed','open','closed','order_59423dfdcf95e','order-jun-15-2017-0757-am','','','2017-06-15 07:57:49','2017-06-15 07:57:49','',0,'http://iacademy.mikado-themes.com/?post_type=shop_order&amp;p=3381',0,'shop_order','',1),(3382,1,'2017-06-15 07:59:32','2017-06-15 07:59:32','','Order &ndash; Tháng sáu 15, 2017 @ 07:59 Sáng','','wc-completed','open','closed','order_59423e646e4df','order-jun-15-2017-0759-am','','','2017-06-15 07:59:32','2017-06-15 07:59:32','',0,'http://iacademy.mikado-themes.com/?post_type=shop_order&amp;p=3382',0,'shop_order','',2),(3383,1,'2017-06-15 08:04:49','2017-06-15 08:04:49','','Order &ndash; Tháng sáu 15, 2017 @ 08:04 Sáng','','wc-completed','open','closed','order_59423fa18c623','order-jun-15-2017-0804-am','','','2017-06-15 08:04:49','2017-06-15 08:04:49','',0,'http://iacademy.mikado-themes.com/?post_type=shop_order&amp;p=3383',0,'shop_order','',1),(3384,1,'2017-06-15 08:07:01','2017-06-15 08:07:01','','Order &ndash; Tháng sáu 15, 2017 @ 08:07 Sáng','','wc-completed','open','closed','order_594240251f055','order-jun-15-2017-0807-am','','','2017-06-15 08:07:01','2017-06-15 08:07:01','',0,'http://iacademy.mikado-themes.com/?post_type=shop_order&amp;p=3384',0,'shop_order','',1),(3385,1,'2017-06-15 08:09:08','2017-06-15 08:09:08','','Order &ndash; Tháng sáu 15, 2017 @ 08:09 Sáng','','wc-completed','open','closed','order_594240a4ef597','order-jun-15-2017-0809-am','','','2017-06-15 08:09:08','2017-06-15 08:09:08','',0,'http://iacademy.mikado-themes.com/?post_type=shop_order&amp;p=3385',0,'shop_order','',2),(3386,1,'2017-06-15 08:11:27','2017-06-15 08:11:27','','Order &ndash; Tháng sáu 15, 2017 @ 08:11 Sáng','','wc-completed','open','closed','order_5942412fbcc82','order-jun-15-2017-0811-am','','','2017-06-15 08:11:27','2017-06-15 08:11:27','',0,'http://iacademy.mikado-themes.com/?post_type=shop_order&amp;p=3386',0,'shop_order','',1),(3387,1,'2017-06-15 08:14:11','2017-06-15 08:14:11','','Order &ndash; Tháng sáu 15, 2017 @ 08:14 Sáng','','wc-completed','open','closed','order_594241d395dc6','order-jun-15-2017-0814-am','','','2017-06-15 08:14:11','2017-06-15 08:14:11','',0,'http://iacademy.mikado-themes.com/?post_type=shop_order&amp;p=3387',0,'shop_order','',2),(3388,1,'2017-06-15 08:22:34','2017-06-15 08:22:34','','Order &ndash; Tháng sáu 15, 2017 @ 08:22 Sáng','','wc-completed','open','closed','order_594243cae2b40','order-jun-15-2017-0822-am','','','2017-06-15 08:22:34','2017-06-15 08:22:34','',0,'http://iacademy.mikado-themes.com/?post_type=shop_order&amp;p=3388',0,'shop_order','',1),(3389,1,'2017-06-15 08:25:15','2017-06-15 08:25:15','','Order &ndash; Tháng sáu 15, 2017 @ 08:25 Sáng','','wc-completed','open','closed','order_5942446b8c4fa','order-jun-15-2017-0825-am','','','2017-06-15 08:25:15','2017-06-15 08:25:15','',0,'http://iacademy.mikado-themes.com/?post_type=shop_order&amp;p=3389',0,'shop_order','',1),(3390,1,'2017-06-15 08:32:57','2017-06-15 08:32:57','','Order &ndash; Tháng sáu 15, 2017 @ 08:32 Sáng','','wc-completed','open','closed','order_594246399ece3','order-jun-15-2017-0832-am','','','2017-06-15 08:32:57','2017-06-15 08:32:57','',0,'http://iacademy.mikado-themes.com/?post_type=shop_order&amp;p=3390',0,'shop_order','',2),(3391,1,'2017-06-15 08:35:43','2017-06-15 08:35:43','','Order &ndash; Tháng sáu 15, 2017 @ 08:35 Sáng','','wc-completed','open','closed','order_594246dfa88be','order-jun-15-2017-0835-am','','','2017-06-15 08:35:43','2017-06-15 08:35:43','',0,'http://iacademy.mikado-themes.com/?post_type=shop_order&amp;p=3391',0,'shop_order','',1),(3392,1,'2017-06-15 08:38:44','2017-06-15 08:38:44','','Order &ndash; Tháng sáu 15, 2017 @ 08:38 Sáng','','wc-completed','open','closed','order_59424794b1633','order-jun-15-2017-0838-am','','','2017-06-15 08:38:44','2017-06-15 08:38:44','',0,'http://iacademy.mikado-themes.com/?post_type=shop_order&amp;p=3392',0,'shop_order','',1),(3393,1,'2017-06-15 08:40:39','2017-06-15 08:40:39','','Order &ndash; Tháng sáu 15, 2017 @ 08:40 Sáng','','wc-completed','open','closed','order_59424807e8657','order-jun-15-2017-0840-am','','','2017-06-15 08:40:39','2017-06-15 08:40:39','',0,'http://iacademy.mikado-themes.com/?post_type=shop_order&amp;p=3393',0,'shop_order','',1),(3394,1,'2017-06-15 08:42:03','2017-06-15 08:42:03','','Order &ndash; Tháng sáu 15, 2017 @ 08:42 Sáng','','wc-completed','open','closed','order_5942485b7dcf5','order-jun-15-2017-0842-am','','','2017-06-15 08:42:03','2017-06-15 08:42:03','',0,'http://iacademy.mikado-themes.com/?post_type=shop_order&amp;p=3394',0,'shop_order','',2),(3395,1,'2017-06-15 08:49:04','2017-06-15 08:49:04','','Order &ndash; Tháng sáu 15, 2017 @ 08:49 Sáng','','wc-completed','open','closed','order_59424a00696f4','order-jun-15-2017-0849-am','','','2017-06-15 08:49:04','2017-06-15 08:49:04','',0,'http://iacademy.mikado-themes.com/?post_type=shop_order&amp;p=3395',0,'shop_order','',1),(3396,1,'2017-06-15 08:50:56','2017-06-15 08:50:56','','Order &ndash; Tháng sáu 15, 2017 @ 08:50 Sáng','','wc-completed','open','closed','order_59424a708fd36','order-jun-15-2017-0850-am','','','2017-06-15 08:50:56','2017-06-15 08:50:56','',0,'http://iacademy.mikado-themes.com/?post_type=shop_order&amp;p=3396',0,'shop_order','',1),(3398,1,'2017-06-15 08:54:50','2017-06-15 08:54:50','','Order &ndash; Tháng sáu 15, 2017 @ 08:54 Sáng','','wc-completed','open','closed','order_59424b5a45578','order-jun-15-2017-0854-am','','','2017-06-15 08:54:50','2017-06-15 08:54:50','',0,'http://iacademy.mikado-themes.com/?post_type=shop_order&amp;p=3398',0,'shop_order','',2),(3417,1,'2017-06-15 09:53:39','2017-06-15 09:53:39','','landing-home-2','','inherit','open','closed','','landing-home-2','','','2017-06-15 09:53:39','2017-06-15 09:53:39','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/landing-home-2.jpg',0,'attachment','image/jpeg',0),(3418,1,'2017-06-15 09:53:43','2017-06-15 09:53:43','','landing-home-3','','inherit','open','closed','','landing-home-3','','','2017-06-15 09:53:43','2017-06-15 09:53:43','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/landing-home-3.jpg',0,'attachment','image/jpeg',0),(3425,1,'2017-06-15 10:13:05','2017-06-15 10:13:05','','landing-home-4','','inherit','open','closed','','landing-home-4','','','2017-06-15 10:13:05','2017-06-15 10:13:05','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/landing-home-4.jpg',0,'attachment','image/jpeg',0),(3428,1,'2017-06-15 10:16:12','2017-06-15 10:16:12','','landing-home-5','','inherit','open','closed','','landing-home-5','','','2017-06-15 10:16:12','2017-06-15 10:16:12','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/landing-home-5.jpg',0,'attachment','image/jpeg',0),(3429,1,'2017-06-15 10:16:17','2017-06-15 10:16:17','','landing-home-6','','inherit','open','closed','','landing-home-6','','','2017-06-15 10:16:17','2017-06-15 10:16:17','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/landing-home-6.jpg',0,'attachment','image/jpeg',0),(3439,1,'2017-06-15 10:21:43','2017-06-15 10:21:43','','landing-slider-2-img-1','','inherit','open','closed','','landing-slider-2-img-1','','','2017-06-15 10:21:43','2017-06-15 10:21:43','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/landing-slider-2-img-1.png',0,'attachment','image/png',0),(3440,1,'2017-06-15 10:21:46','2017-06-15 10:21:46','','landing-slider-2-img-2','','inherit','open','closed','','landing-slider-2-img-2','','','2017-06-15 10:21:46','2017-06-15 10:21:46','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/landing-slider-2-img-2.png',0,'attachment','image/png',0),(3441,1,'2017-06-15 10:21:48','2017-06-15 10:21:48','','landing-slider-2-img-3','','inherit','open','closed','','landing-slider-2-img-3','','','2017-06-15 10:21:48','2017-06-15 10:21:48','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/landing-slider-2-img-3.png',0,'attachment','image/png',0),(3442,1,'2017-06-15 10:21:50','2017-06-15 10:21:50','','landing-slider-2-img-4','','inherit','open','closed','','landing-slider-2-img-4','','','2017-06-15 10:21:50','2017-06-15 10:21:50','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/landing-slider-2-img-4.png',0,'attachment','image/png',0),(3443,1,'2017-06-15 10:21:52','2017-06-15 10:21:52','','landing-slider-2-img-5','','inherit','open','closed','','landing-slider-2-img-5','','','2017-06-15 10:21:52','2017-06-15 10:21:52','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/landing-slider-2-img-5.png',0,'attachment','image/png',0),(3444,1,'2017-06-15 10:21:55','2017-06-15 10:21:55','','landing-slider-2-img-6','','inherit','open','closed','','landing-slider-2-img-6','','','2017-06-15 10:21:55','2017-06-15 10:21:55','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/landing-slider-2-img-6.png',0,'attachment','image/png',0),(3445,1,'2017-06-15 10:21:57','2017-06-15 10:21:57','','landing-slider-2-img-7','','inherit','open','closed','','landing-slider-2-img-7','','','2017-06-15 10:21:57','2017-06-15 10:21:57','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/landing-slider-2-img-7.png',0,'attachment','image/png',0),(3446,1,'2017-06-15 10:21:58','2017-06-15 10:21:58','','landing-slider-2-img-8','','inherit','open','closed','','landing-slider-2-img-8','','','2017-06-15 10:21:58','2017-06-15 10:21:58','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/landing-slider-2-img-8.png',0,'attachment','image/png',0),(3487,1,'2017-06-15 13:13:47','2017-06-15 13:13:47','','landing-background-img-1','','inherit','open','closed','','landing-background-img-1','','','2017-06-15 13:13:47','2017-06-15 13:13:47','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/landing-background-img-1.jpg',0,'attachment','image/jpeg',0),(3494,1,'2017-06-15 13:16:40','2017-06-15 13:16:40','','landing-img-4','','inherit','open','closed','','landing-img-4','','','2017-06-15 13:16:40','2017-06-15 13:16:40','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/landing-img-4.jpg',0,'attachment','image/jpeg',0),(3495,1,'2017-06-15 13:16:43','2017-06-15 13:16:43','','landing-img-5','','inherit','open','closed','','landing-img-5','','','2017-06-15 13:16:43','2017-06-15 13:16:43','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/landing-img-5.jpg',0,'attachment','image/jpeg',0),(3496,1,'2017-06-15 13:16:46','2017-06-15 13:16:46','','landing-img-6','','inherit','open','closed','','landing-img-6','','','2017-06-15 13:16:46','2017-06-15 13:16:46','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/landing-img-6.jpg',0,'attachment','image/jpeg',0),(3497,1,'2017-06-15 13:17:33','2017-06-15 13:17:33','','landing-custom-logo-1','','inherit','open','closed','','landing-custom-logo-1','','','2017-06-15 13:17:33','2017-06-15 13:17:33','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/landing-custom-logo-1.png',0,'attachment','image/png',0),(3513,1,'2017-06-15 13:30:48','2017-06-15 13:30:48','','landing-custom-logo-3','','inherit','open','closed','','landing-custom-logo-3','','','2017-06-15 13:30:48','2017-06-15 13:30:48','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/landing-custom-logo-3.png',0,'attachment','image/png',0),(3515,1,'2017-06-15 13:33:35','2017-06-15 13:33:35','','landing-background-img-2','','inherit','open','closed','','landing-background-img-2','','','2017-06-15 13:33:35','2017-06-15 13:33:35','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/landing-background-img-2.jpg',0,'attachment','image/jpeg',0),(3516,1,'2017-06-15 13:40:39','2017-06-15 13:40:39','','landing-custom-logo-6','','inherit','open','closed','','landing-custom-logo-6','','','2017-06-15 13:40:39','2017-06-15 13:40:39','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/landing-custom-logo-6.png',0,'attachment','image/png',0),(3517,1,'2017-06-15 13:40:41','2017-06-15 13:40:41','','landing-custom-logo-2','','inherit','open','closed','','landing-custom-logo-2','','','2017-06-15 13:40:41','2017-06-15 13:40:41','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/landing-custom-logo-2.png',0,'attachment','image/png',0),(3518,1,'2017-06-15 13:40:43','2017-06-15 13:40:43','','landing-custom-logo-4','','inherit','open','closed','','landing-custom-logo-4','','','2017-06-15 13:40:43','2017-06-15 13:40:43','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/landing-custom-logo-4.png',0,'attachment','image/png',0),(3519,1,'2017-06-15 13:40:46','2017-06-15 13:40:46','','landing-custom-logo-5','','inherit','open','closed','','landing-custom-logo-5','','','2017-06-15 13:40:46','2017-06-15 13:40:46','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/landing-custom-logo-5.png',0,'attachment','image/png',0),(3527,1,'2017-06-15 14:02:42','2017-06-15 14:02:42','','landing-cards-gallery-img-1','','inherit','open','closed','','landing-cards-gallery-img-1','','','2017-06-15 14:02:42','2017-06-15 14:02:42','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/landing-cards-gallery-img-1.jpg',0,'attachment','image/jpeg',0),(3529,1,'2017-06-15 14:02:47','2017-06-15 14:02:47','','landing-cards-gallery-img-3','','inherit','open','closed','','landing-cards-gallery-img-3','','','2017-06-15 14:02:47','2017-06-15 14:02:47','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/landing-cards-gallery-img-3.jpg',0,'attachment','image/jpeg',0),(3538,1,'2017-06-15 14:34:09','2017-06-15 14:34:09','','landing-background-img-3','','inherit','open','closed','','landing-background-img-3','','','2017-06-15 14:34:09','2017-06-15 14:34:09','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/landing-background-img-3.jpg',0,'attachment','image/jpeg',0),(3550,1,'2017-06-15 15:01:46','2017-06-15 15:01:46','','landing-home-9','','inherit','open','closed','','landing-home-9','','','2017-06-15 15:01:46','2017-06-15 15:01:46','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/landing-home-9.jpg',0,'attachment','image/jpeg',0),(3551,1,'2017-06-15 15:01:51','2017-06-15 15:01:51','','landing-home-10','','inherit','open','closed','','landing-home-10','','','2017-06-15 15:01:51','2017-06-15 15:01:51','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/landing-home-10.jpg',0,'attachment','image/jpeg',0),(3552,1,'2017-06-15 15:01:55','2017-06-15 15:01:55','','landing-home-11','','inherit','open','closed','','landing-home-11','','','2017-06-15 15:01:55','2017-06-15 15:01:55','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/landing-home-11.jpg',0,'attachment','image/jpeg',0),(3554,1,'2017-06-15 15:01:58','2017-06-15 15:01:58','','landing-home-12','','inherit','open','closed','','landing-home-12','','','2017-06-15 15:01:58','2017-06-15 15:01:58','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/landing-home-12.jpg',0,'attachment','image/jpeg',0),(3564,1,'2017-06-16 07:08:24','2017-06-16 07:08:24','','landing-img-2','','inherit','open','closed','','landing-img-2','','','2017-06-16 07:08:24','2017-06-16 07:08:24','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/landing-img-2.jpg',0,'attachment','image/jpeg',0),(3567,1,'2017-06-16 07:36:55','2017-06-16 07:36:55','','landing-img-3','','inherit','open','closed','','landing-img-3-2','','','2017-06-16 07:36:55','2017-06-16 07:36:55','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/landing-img-3-1.jpg',0,'attachment','image/jpeg',0),(3570,1,'2017-06-16 07:39:49','2017-06-16 07:39:49','','landing-img-1','','inherit','open','closed','','landing-img-1','','','2017-06-16 07:39:49','2017-06-16 07:39:49','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/landing-img-1.jpg',0,'attachment','image/jpeg',0),(3572,1,'2017-06-16 07:45:57','2017-06-16 07:45:57','','landing-home-7','','inherit','open','closed','','landing-home-7','','','2017-06-16 07:45:57','2017-06-16 07:45:57','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/landing-home-7.jpg',0,'attachment','image/jpeg',0),(3575,1,'2017-06-16 07:49:46','2017-06-16 07:49:46','','landing-home-8','','inherit','open','closed','','landing-home-8','','','2017-06-16 07:49:46','2017-06-16 07:49:46','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/landing-home-8.jpg',0,'attachment','image/jpeg',0),(3582,1,'2017-06-16 08:33:54','2017-06-16 08:33:54','','landing-carousel-gallery-img-1','','inherit','open','closed','','landing-carousel-gallery-img-1','','','2017-06-16 08:33:54','2017-06-16 08:33:54','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/landing-carousel-gallery-img-1.jpg',0,'attachment','image/jpeg',0),(3590,1,'2017-06-16 08:50:03','2017-06-16 08:50:03','','landing-background-img-5','','inherit','open','closed','','landing-background-img-5','','','2017-06-16 08:50:03','2017-06-16 08:50:03','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/landing-background-img-5.jpg',0,'attachment','image/jpeg',0),(3592,1,'2017-06-16 08:53:50','2017-06-16 08:53:50','','landing-background-img-6','','inherit','open','closed','','landing-background-img-6','','','2017-06-16 08:53:50','2017-06-16 08:53:50','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/landing-background-img-6.png',0,'attachment','image/png',0),(3597,1,'2017-06-16 09:05:22','2017-06-16 09:05:22','','landing-google-logo','','inherit','open','closed','','landing-google-logo','','','2017-06-16 09:05:22','2017-06-16 09:05:22','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/landing-google-logo.png',0,'attachment','image/png',0),(3604,1,'2017-06-16 09:14:23','2017-06-16 09:14:23','','landing-parallax-1','','inherit','open','closed','','landing-parallax-1','','','2017-06-16 09:14:23','2017-06-16 09:14:23','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/landing-parallax-1.jpg',0,'attachment','image/jpeg',0),(3609,1,'2017-06-16 09:26:19','2017-06-16 09:26:19','','landing-img-device','','inherit','open','closed','','landing-img-device','','','2017-06-16 09:26:19','2017-06-16 09:26:19','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/landing-img-device.png',0,'attachment','image/png',0),(3771,1,'2017-06-16 15:07:02','2017-06-16 15:07:02','','landing-img-gallery-1','','inherit','open','closed','','landing-img-gallery-1','','','2017-06-16 15:07:02','2017-06-16 15:07:02','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/landing-img-gallery-1.jpg',0,'attachment','image/jpeg',0),(3772,1,'2017-06-16 15:07:05','2017-06-16 15:07:05','','landing-img-gallery-2','','inherit','open','closed','','landing-img-gallery-2','','','2017-06-16 15:07:05','2017-06-16 15:07:05','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/landing-img-gallery-2.jpg',0,'attachment','image/jpeg',0),(3773,1,'2017-06-16 15:07:08','2017-06-16 15:07:08','','landing-img-gallery-3','','inherit','open','closed','','landing-img-gallery-3','','','2017-06-16 15:07:08','2017-06-16 15:07:08','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/landing-img-gallery-3.jpg',0,'attachment','image/jpeg',0),(3774,1,'2017-06-16 15:07:11','2017-06-16 15:07:11','','landing-img-gallery-4','','inherit','open','closed','','landing-img-gallery-4','','','2017-06-16 15:07:11','2017-06-16 15:07:11','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/landing-img-gallery-4.jpg',0,'attachment','image/jpeg',0),(3792,1,'2017-06-19 08:28:35','2017-06-19 08:28:35','','404-img-1','','inherit','open','closed','','404-img-1','','','2017-06-19 08:28:35','2017-06-19 08:28:35','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/404-img-1.png',0,'attachment','image/png',0),(3980,1,'2017-06-20 07:13:14','2017-06-20 07:13:14','','landing-carousel-gallery-img-2','','inherit','open','closed','','landing-carousel-gallery-img-2','','','2017-06-20 07:13:14','2017-06-20 07:13:14','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/landing-carousel-gallery-img-2.jpg',0,'attachment','image/jpeg',0),(3981,1,'2017-06-20 07:13:16','2017-06-20 07:13:16','','landing-carousel-gallery-img-3','','inherit','open','closed','','landing-carousel-gallery-img-3','','','2017-06-20 07:13:16','2017-06-20 07:13:16','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/landing-carousel-gallery-img-3.jpg',0,'attachment','image/jpeg',0),(3982,1,'2017-06-20 07:13:17','2017-06-20 07:13:17','','landing-carousel-gallery-img-4','','inherit','open','closed','','landing-carousel-gallery-img-4','','','2017-06-20 07:13:17','2017-06-20 07:13:17','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/landing-carousel-gallery-img-4.jpg',0,'attachment','image/jpeg',0),(3983,1,'2017-06-20 07:13:19','2017-06-20 07:13:19','','landing-carousel-gallery-img-5','','inherit','open','closed','','landing-carousel-gallery-img-5','','','2017-06-20 07:13:19','2017-06-20 07:13:19','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/landing-carousel-gallery-img-5.jpg',0,'attachment','image/jpeg',0),(3985,1,'2017-06-20 07:22:22','2017-06-20 07:22:22','','landing-carousel-gallery-img-6','','inherit','open','closed','','landing-carousel-gallery-img-6','','','2017-06-20 07:22:22','2017-06-20 07:22:22','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/landing-carousel-gallery-img-6.jpg',0,'attachment','image/jpeg',0),(3989,1,'2017-06-20 08:08:14','2017-06-20 08:08:14','','h6-slide-1-background','','inherit','open','closed','','h6-slide-1-background','','','2017-06-20 08:08:14','2017-06-20 08:08:14','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/h6-slide-1-background.jpg',0,'attachment','image/jpeg',0),(4000,1,'2017-06-20 08:35:49','2017-06-20 08:35:49','','h3-img-1','','inherit','open','closed','','h3-img-1','','','2017-06-20 08:35:49','2017-06-20 08:35:49','',0,'http://giasuolympia.com/wp-content/uploads/2017/05/h3-img-1.jpg',0,'attachment','image/jpeg',0),(4061,1,'2017-06-20 13:52:35','2017-06-20 13:52:35','','landing-carousel-gallery-img-7','','inherit','open','closed','','landing-carousel-gallery-img-7','','','2017-06-20 13:52:35','2017-06-20 13:52:35','',0,'http://giasuolympia.com/wp-content/uploads/2017/06/landing-carousel-gallery-img-7.jpg',0,'attachment','image/jpeg',0),(4062,1,'2017-05-24 11:55:11','2017-05-24 11:55:11','Sinh viên Nữ','Lớp 1 Toán + Tiếng Việt','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in.','publish','open','closed','','lop-1-toan-tieng-viet','','','2024-10-28 00:17:25','2024-10-27 17:17:25','',0,'http://iacademy.mikado-themes.com/?post_type=course&#038;p=18',1,'course','',2),(4064,1,'2024-10-27 18:20:39','2024-10-20 14:42:02','','Pages','','publish','closed','closed','','pages','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',0,'http://giasuolympia.com/2024/10/20/pages/',23,'nav_menu_item','',0),(4065,1,'2024-10-27 18:20:39','2024-10-20 14:42:02','','Blog','','publish','closed','closed','','blog','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',0,'http://giasuolympia.com/2024/10/20/blog/',25,'nav_menu_item','',0),(4066,1,'2024-10-27 18:20:39','2024-10-20 14:42:03','','Shop','','publish','closed','closed','','shop','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',0,'http://giasuolympia.com/2024/10/20/shop/',39,'nav_menu_item','',0),(4067,1,'2024-10-27 18:20:39','2024-10-20 14:42:03','','Khóa học','','publish','closed','closed','','courses','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',0,'http://giasuolympia.com/2024/10/20/courses/',14,'nav_menu_item','',0),(4068,1,'2024-10-27 18:20:39','2024-10-20 14:42:03','','Gia sư','','publish','closed','closed','','instructors','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',0,'http://giasuolympia.com/2024/10/20/instructors/',17,'nav_menu_item','',0),(4069,1,'2024-10-27 18:20:39','2024-10-20 14:42:03','','Elements','','publish','closed','closed','','elements','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',0,'http://giasuolympia.com/2024/10/20/elements/',57,'nav_menu_item','',0),(4072,1,'2024-10-27 18:20:39','2024-10-20 14:42:03','','Shop Pages','','publish','closed','closed','','shop-pages','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',0,'http://giasuolympia.com/2024/10/20/shop-pages/',53,'nav_menu_item','',0),(4074,1,'2024-10-27 18:20:39','2024-10-20 14:42:03','','CLASSIC','','publish','closed','closed','','classic','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',0,'http://giasuolympia.com/2024/10/20/classic/',68,'nav_menu_item','',0),(4075,1,'2024-10-27 18:20:39','2024-10-20 14:42:03','','PRESENTATION','','publish','closed','closed','','presentation','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',0,'http://giasuolympia.com/2024/10/20/presentation/',88,'nav_menu_item','',0),(4076,1,'2024-10-27 18:20:39','2024-10-20 14:42:03','','INFOGRAPHIC','','publish','closed','closed','','infographic','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',0,'http://giasuolympia.com/2024/10/20/infographic/',78,'nav_menu_item','',0),(4077,1,'2024-10-20 14:42:03','2024-10-20 14:42:03','','Classic','','publish','closed','closed','','classic-2','','','2024-10-20 14:42:03','2024-10-20 14:42:03','',0,'http://giasuolympia.com/2024/10/20/classic-2/',10,'nav_menu_item','',0),(4078,1,'2024-10-20 14:42:03','2024-10-20 14:42:03','','Infographic','','publish','closed','closed','','infographic-2','','','2024-10-20 14:42:03','2024-10-20 14:42:03','',0,'http://giasuolympia.com/2024/10/20/infographic-2/',20,'nav_menu_item','',0),(4079,1,'2024-10-20 14:42:03','2024-10-20 14:42:03','','Presentation','','publish','closed','closed','','presentation-2','','','2024-10-20 14:42:03','2024-10-20 14:42:03','',0,'http://giasuolympia.com/2024/10/20/presentation-2/',30,'nav_menu_item','',0),(4081,1,'2024-10-20 14:42:03','2024-10-20 14:42:03','','Course Shortcodes','','publish','closed','closed','','course-shortcodes','','','2024-10-20 14:42:03','2024-10-20 14:42:03','',0,'http://giasuolympia.com/2024/10/20/course-shortcodes/',1,'nav_menu_item','',0),(4082,1,'2024-10-27 18:20:39','2024-10-20 14:42:03','','COURSE SHORTCODES','','publish','closed','closed','','course-shortcodes-2','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',0,'http://giasuolympia.com/2024/10/20/course-shortcodes-2/',58,'nav_menu_item','',0),(4083,1,'2024-10-27 18:20:39','2024-10-20 14:42:03','','Product Types','','publish','closed','closed','','product-types','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',0,'http://giasuolympia.com/2024/10/20/product-types/',41,'nav_menu_item','',0),(4084,1,'2024-10-26 12:06:25','2024-10-20 14:42:03','','Events','','publish','closed','closed','','events-2','','','2024-10-26 12:06:25','2024-10-26 12:06:25','',0,'http://giasuolympia.com/2024/10/20/events-2/',5,'nav_menu_item','',0),(4087,1,'2024-10-27 18:20:39','2024-10-20 14:42:03','','Shop Layouts','','publish','closed','closed','','shop-layouts','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',0,'http://giasuolympia.com/2024/10/20/shop-layouts/',46,'nav_menu_item','',0),(4088,1,'2024-10-27 18:20:39','2024-10-20 14:42:03','','All Forums','','publish','closed','closed','','all-forums','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',0,'http://giasuolympia.com/2024/10/20/all-forums/',35,'nav_menu_item','',0),(4089,1,'2024-10-27 18:20:39','2024-10-20 14:42:03','','Forums','','publish','closed','closed','','forums','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',0,'http://giasuolympia.com/2024/10/20/forums/',34,'nav_menu_item','',0),(4090,1,'2024-10-27 18:20:39','2024-10-20 14:42:03','','Error Page','','publish','closed','closed','','error-page','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',0,'http://giasuolympia.com/2024/10/20/error-page/',38,'nav_menu_item','',0),(4091,1,'2024-10-27 18:20:39','2024-10-20 14:42:03','','Forum Topic','','publish','closed','closed','','forum-topic','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',0,'http://giasuolympia.com/2024/10/20/forum-topic/',36,'nav_menu_item','',0),(4095,1,'2024-10-20 14:42:03','2024-10-20 14:42:03','','Home','','publish','closed','closed','','home-2','','','2024-10-20 14:42:03','2024-10-20 14:42:03','',0,'http://giasuolympia.com/2024/10/20/home-2/',1,'nav_menu_item','',0),(4096,1,'2024-10-20 14:42:03','2024-10-20 14:42:03','','Courses','','publish','closed','closed','','courses-2','','','2024-10-20 14:42:03','2024-10-20 14:42:03','',0,'http://giasuolympia.com/2024/10/20/courses-2/',15,'nav_menu_item','',0),(4097,1,'2024-10-20 14:42:03','2024-10-20 14:42:03','','FEATURES','','publish','closed','closed','','features-2','','','2024-10-20 14:42:03','2024-10-20 14:42:03','',0,'http://giasuolympia.com/2024/10/20/features-2/',16,'nav_menu_item','',0),(4098,1,'2024-10-20 14:42:03','2024-10-20 14:42:03','','Course Single','','publish','closed','closed','','course-single-2','','','2024-10-20 14:42:03','2024-10-20 14:42:03','',0,'http://giasuolympia.com/2024/10/20/course-single-2/',19,'nav_menu_item','',0),(4099,1,'2024-10-20 14:42:03','2024-10-20 14:42:03','','BUSINESS','','publish','closed','closed','','business-2','','','2024-10-20 14:42:03','2024-10-20 14:42:03','',60,'http://giasuolympia.com/2024/10/20/business-2/',21,'nav_menu_item','',0),(4102,1,'2024-10-20 14:42:03','2024-10-20 14:42:03','','Instructors','','publish','closed','closed','','instructors-2','','','2024-10-20 14:42:03','2024-10-20 14:42:03','',0,'http://giasuolympia.com/2024/10/20/instructors-2/',24,'nav_menu_item','',0),(4103,1,'2024-10-20 14:42:03','2024-10-20 14:42:03','','Instructor Single','','publish','closed','closed','','instructor-single-2','','','2024-10-20 14:42:03','2024-10-20 14:42:03','',0,'http://giasuolympia.com/2024/10/20/instructor-single-2/',26,'nav_menu_item','',0),(4104,1,'2024-10-20 14:42:03','2024-10-20 14:42:03','','Events','','publish','closed','closed','','events-3','','','2024-10-20 14:42:03','2024-10-20 14:42:03','',0,'http://giasuolympia.com/2024/10/20/events-3/',27,'nav_menu_item','',0),(4105,1,'2024-10-20 14:42:03','2024-10-20 14:42:03','','Events Calendar','','publish','closed','closed','','events-calendar-2','','','2024-10-20 14:42:03','2024-10-20 14:42:03','',0,'http://giasuolympia.com/2024/10/20/events-calendar-2/',28,'nav_menu_item','',0),(4106,1,'2024-10-20 14:42:03','2024-10-20 14:42:03','','Events List','','publish','closed','closed','','events-list-2','','','2024-10-20 14:42:03','2024-10-20 14:42:03','',0,'http://giasuolympia.com/2024/10/20/events-list-2/',29,'nav_menu_item','',0),(4107,1,'2024-10-20 14:42:04','2024-10-20 14:42:04','','Pages','','publish','closed','closed','','pages-2','','','2024-10-20 14:42:04','2024-10-20 14:42:04','',0,'http://giasuolympia.com/2024/10/20/pages-2/',31,'nav_menu_item','',0),(4108,1,'2024-10-20 14:42:04','2024-10-20 14:42:04','','Blog','','publish','closed','closed','','blog-2','','','2024-10-20 14:42:04','2024-10-20 14:42:04','',0,'http://giasuolympia.com/2024/10/20/blog-2/',35,'nav_menu_item','',0),(4109,1,'2024-10-20 14:42:04','2024-10-20 14:42:04','','Forums','','publish','closed','closed','','forums-2','','','2024-10-20 14:42:04','2024-10-20 14:42:04','',0,'http://giasuolympia.com/2024/10/20/forums-2/',44,'nav_menu_item','',0),(4110,1,'2024-10-20 14:42:04','2024-10-20 14:42:04','','All Forums','','publish','closed','closed','','all-forums-2','','','2024-10-20 14:42:04','2024-10-20 14:42:04','',0,'http://giasuolympia.com/2024/10/20/all-forums-2/',45,'nav_menu_item','',0),(4111,1,'2024-10-20 14:42:04','2024-10-20 14:42:04','','Forum Topic','','publish','closed','closed','','forum-topic-2','','','2024-10-20 14:42:04','2024-10-20 14:42:04','',0,'http://giasuolympia.com/2024/10/20/forum-topic-2/',46,'nav_menu_item','',0),(4112,1,'2024-10-20 14:42:04','2024-10-20 14:42:04','','Error Page','','publish','closed','closed','','error-page-2','','','2024-10-20 14:42:04','2024-10-20 14:42:04','',0,'http://giasuolympia.com/2024/10/20/error-page-2/',50,'nav_menu_item','',0),(4113,1,'2024-10-20 14:42:04','2024-10-20 14:42:04','','Shop','','publish','closed','closed','','shop-2','','','2024-10-20 14:42:04','2024-10-20 14:42:04','',0,'http://giasuolympia.com/2024/10/20/shop-2/',51,'nav_menu_item','',0),(4114,1,'2024-10-20 14:42:04','2024-10-20 14:42:04','','Product Types','','publish','closed','closed','','product-types-2','','','2024-10-20 14:42:04','2024-10-20 14:42:04','',0,'http://giasuolympia.com/2024/10/20/product-types-2/',53,'nav_menu_item','',0),(4115,1,'2024-10-20 14:42:04','2024-10-20 14:42:04','','Shop Layouts','','publish','closed','closed','','shop-layouts-2','','','2024-10-20 14:42:04','2024-10-20 14:42:04','',0,'http://giasuolympia.com/2024/10/20/shop-layouts-2/',58,'nav_menu_item','',0),(4116,1,'2024-10-20 14:42:04','2024-10-20 14:42:04','','Shop Pages','','publish','closed','closed','','shop-pages-2','','','2024-10-20 14:42:04','2024-10-20 14:42:04','',0,'http://giasuolympia.com/2024/10/20/shop-pages-2/',65,'nav_menu_item','',0),(4117,1,'2024-10-20 14:42:04','2024-10-20 14:42:04','','Elements','','publish','closed','closed','','elements-2','','','2024-10-20 14:42:04','2024-10-20 14:42:04','',0,'http://giasuolympia.com/2024/10/20/elements-2/',69,'nav_menu_item','',0),(4118,1,'2024-10-20 14:42:04','2024-10-20 14:42:04','','COURSE SHORTCODES','','publish','closed','closed','','course-shortcodes-3','','','2024-10-20 14:42:04','2024-10-20 14:42:04','',0,'http://giasuolympia.com/2024/10/20/course-shortcodes-3/',70,'nav_menu_item','',0),(4119,1,'2024-10-20 14:42:04','2024-10-20 14:42:04','','CLASSIC','','publish','closed','closed','','classic-3','','','2024-10-20 14:42:04','2024-10-20 14:42:04','',0,'http://giasuolympia.com/2024/10/20/classic-3/',80,'nav_menu_item','',0),(4120,1,'2024-10-20 14:42:04','2024-10-20 14:42:04','','INFOGRAPHIC','','publish','closed','closed','','infographic-3','','','2024-10-20 14:42:04','2024-10-20 14:42:04','',0,'http://giasuolympia.com/2024/10/20/infographic-3/',90,'nav_menu_item','',0),(4121,1,'2024-10-20 14:42:04','2024-10-20 14:42:04','','PRESENTATION','','publish','closed','closed','','presentation-3','','','2024-10-20 14:42:04','2024-10-20 14:42:04','',0,'http://giasuolympia.com/2024/10/20/presentation-3/',100,'nav_menu_item','',0),(4122,1,'2017-05-23 14:26:14','2017-05-23 14:26:14','This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:\n\n<blockquote>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like pi&#241;a coladas. (And gettin\' caught in the rain.)</blockquote>\n\n...or something like this:\n\n<blockquote>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</blockquote>\n\nAs a new WordPress user, you should go to <a href=\"http://iacademy.mikado-themes.com/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!','Sample Page','','publish','closed','open','','sample-page','','','2017-05-23 14:26:14','2017-05-23 14:26:14','',0,'http://iacademy.mikado-themes.com/?page_id=2',0,'page','',0),(4123,1,'2017-05-24 10:30:23','2017-05-24 10:30:23','','Shop','','publish','closed','closed','','shop-2','','','2017-05-24 10:30:23','2017-05-24 10:30:23','',0,'http://iacademy.mikado-themes.com/shop/',0,'page','',0),(4124,1,'2017-05-24 10:58:51','2017-05-24 10:58:51','[vc_row row_content_width=\"grid\" css=\".vc_custom_1730345417201{padding-top: 40px !important;padding-bottom: 20px !important;}\" simple_background_color=\"#ffffff\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0px 20% 0px\" item_padding_768_1024=\"0px 10% 0px\" item_padding_680_768=\"0px 0% 0px\" item_padding_680=\"0px 0% 0px\"][mkdf_section_title type=\"standard\" position=\"center\" title_tag=\"h1\" disable_break_words=\"no\" title=\"Các lớp học trực tuyến phổ biến\" title_color=\"#000000\"][vc_empty_space height=\"30px\"][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_course_slider number_of_columns=\"4\" space_between_items=\"normal\" image_proportions=\"full\" order_by=\"date\" order=\"ASC\" title_tag=\"h5\" enable_price=\"no\" enable_excerpt=\"yes\" enable_students=\"no\" enable_loop=\"yes\" enable_autoplay=\"yes\" enable_navigation=\"no\" enable_pagination=\"yes\" pagination_skin=\"light\" pagination_position=\"below-slider\" excerpt_length=\"56\" number_of_items=\"12\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" content_text_aligment=\"center\" css=\".vc_custom_1730345448501{padding-top: 20px !important;padding-bottom: 10px !important;}\" simple_background_color=\"#ffffff\"][vc_column][mkdf_section_title type=\"standard\" position=\"center\" title_tag=\"h2\" disable_break_words=\"yes\" title=\"Gia sư hàng đầu\"][vc_empty_space height=\"30px\"][mkdf_instructor_list number_of_columns=\"3\" space_between_items=\"normal\" number_of_items=\"9\" order_by=\"date\" order=\"ASC\" instructor_layout=\"simple\" enable_shadow=\"no\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" content_text_aligment=\"center\" css=\".vc_custom_1730345941548{padding-top: 20px !important;padding-bottom: 30px !important;}\"][vc_column][mkdf_section_title type=\"standard\" position=\"center\" title_tag=\"h1\" disable_break_words=\"no\" title=\"Các lớp học trực tuyến\"][vc_empty_space height=\"30px\"][mkdf_course_table order_by=\"date\" order=\"ASC\" enable_students=\"no\" selected_courses=\"18, 174, 229, 269, 274\"][/vc_column][/vc_row]','Trang chủ','','publish','closed','closed','','trang-chu','','','2024-10-31 22:20:04','2024-10-31 15:20:04','',0,'http://iacademy.mikado-themes.com/?page_id=12',0,'page','',0),(4125,1,'2017-06-20 14:25:45','2017-06-20 14:25:45','[vc_row simple_background_color=\"#ffffff\" css=\".vc_custom_1497968790870{padding-top: 13px !important;padding-bottom: 80px !important;}\"][vc_column][mkdf_course_category_list number_of_columns=\"three-columns\" target=\"_self\" category_items=\"%5B%7B%22title%22%3A%22%20Languages%22%2C%22link%22%3A%22http%3A%2F%2Fiacademy.mikado-themes.com%2Fcourse-category%2Flanguages%2F%22%2C%22image%22%3A%22898%22%7D%2C%7B%22title%22%3A%22%20Software%22%2C%22link%22%3A%22http%3A%2F%2Fiacademy.mikado-themes.com%2Fcourse-category%2Fprogramming%2F%22%2C%22image%22%3A%22899%22%7D%2C%7B%22title%22%3A%22%20Business%22%2C%22link%22%3A%22http%3A%2F%2Fiacademy.mikado-themes.com%2Fcourse-category%2Fbusiness%2F%22%2C%22image%22%3A%22900%22%7D%5D\"][mkdf_course_category_list number_of_columns=\"three-columns\" target=\"_self\" category_items=\"%5B%7B%22title%22%3A%22%20Chemistry%22%2C%22link%22%3A%22http%3A%2F%2Fiacademy.mikado-themes.com%2Fcourses%2Fstandard-list%2F%22%2C%22image%22%3A%22901%22%7D%2C%7B%22title%22%3A%22Science%22%2C%22link%22%3A%22http%3A%2F%2Fiacademy.mikado-themes.com%2Fcourses%2Fall-courses%2F%22%2C%22image%22%3A%22902%22%7D%2C%7B%22title%22%3A%22DIY%26Craft%22%2C%22link%22%3A%22http%3A%2F%2Fiacademy.mikado-themes.com%2Fcourse-category%2Ftutoring%2F%22%2C%22image%22%3A%22903%22%7D%5D\"][/vc_column][/vc_row]','Linked Image List','','publish','closed','closed','','linked-image-list','','','2017-06-20 14:25:45','2017-06-20 14:25:45','',447,'http://iacademy.mikado-themes.com/?page_id=4080',0,'page','',0),(4127,1,'2017-05-24 11:44:14','2017-05-24 11:44:14','','What is part of a database that holds only one type of information?','','publish','open','closed','','what-is-part-of-a-database-that-holds-only-one-type-of-information','','','2017-05-24 11:44:14','2017-05-24 11:44:14','',0,'http://iacademy.mikado-themes.com/?post_type=question&amp;p=15',1,'question','',0),(4128,1,'2017-05-24 11:53:20','2017-05-24 11:53:20','','Advanced Business Principles','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in','publish','open','closed','','advanced-business-principles','','','2017-05-24 11:53:20','2017-05-24 11:53:20','',0,'http://iacademy.mikado-themes.com/?post_type=quiz&amp;p=17',0,'quiz','',0),(4129,1,'2017-05-24 10:30:00','2017-05-24 10:30:00','<label> Name* </label>\n    [text* your-name]\n\n<label> Email* </label>\n    [email* your-email] \n\n<label> Phone </label>\n    [text your-subject] \n\n[submit \"APPLY TODAY\"]\n1\niAcademy \"[your-subject]\"\n[your-name] <wordpress@iacademy.mikado-themes.com>\nsupport@mikado-themes.com\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on iAcademy (http://iacademy.mikado-themes.com)\nReply-To: [your-email]\n\n\n\n\niAcademy \"[your-subject]\"\niAcademy <wordpress@iacademy.mikado-themes.com>\n[your-email]\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on iAcademy (http://iacademy.mikado-themes.com)\nReply-To: support@mikado-themes.com\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.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nYour entered code is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','Contact form 1','','publish','closed','closed','','contact-form-1-2','','','2017-05-24 10:30:00','2017-05-24 10:30:00','',0,'http://iacademy.mikado-themes.com/?post_type=wpcf7_contact_form&amp;p=4',0,'wpcf7_contact_form','',0),(4130,1,'2024-10-27 18:20:38','2024-10-20 14:42:19',' ','','','publish','closed','closed','','4130','','','2024-10-27 18:20:38','2024-10-27 11:20:38','',0,'http://giasuolympia.com/2024/10/20/4130/',1,'nav_menu_item','',0),(4131,1,'2024-10-27 18:20:39','2024-10-20 14:42:20',' ','','','publish','closed','closed','','4131','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',0,'http://giasuolympia.com/2024/10/20/4131/',54,'nav_menu_item','',0),(4132,1,'2024-10-27 18:20:39','2024-10-20 14:42:20',' ','','','publish','closed','closed','','4132','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',0,'http://giasuolympia.com/2024/10/20/4132/',56,'nav_menu_item','',0),(4133,1,'2024-10-27 18:20:39','2024-10-20 14:42:20',' ','','','publish','closed','closed','','4133','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',0,'http://giasuolympia.com/2024/10/20/4133/',55,'nav_menu_item','',0),(4134,1,'2024-10-27 18:20:39','2024-10-20 14:42:20','','Shop List','','publish','closed','closed','','shop-list','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',0,'http://giasuolympia.com/2024/10/20/shop-list/',40,'nav_menu_item','',0),(4136,1,'2024-10-27 18:20:39','2024-10-20 14:42:20',' ','','','publish','closed','closed','','4136','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',4416,'http://giasuolympia.com/2024/10/20/4136/',19,'nav_menu_item','',0),(4138,1,'2024-10-27 18:20:38','2024-10-20 14:42:20',' ','','','publish','closed','closed','','4138','','','2024-10-27 18:20:38','2024-10-27 11:20:38','',0,'http://giasuolympia.com/2024/10/20/4138/',2,'nav_menu_item','',0),(4139,1,'2024-10-27 18:20:39','2024-10-20 14:42:20',' ','','','publish','closed','closed','','4139','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',289,'http://giasuolympia.com/2024/10/20/4139/',15,'nav_menu_item','',0),(4140,1,'2024-10-27 18:20:38','2024-10-20 14:42:20',' ','','','publish','closed','closed','','4140','','','2024-10-27 18:20:38','2024-10-27 11:20:38','',0,'http://giasuolympia.com/2024/10/20/4140/',9,'nav_menu_item','',0),(4141,1,'2024-10-27 18:20:39','2024-10-20 14:42:20',' ','','','publish','closed','closed','','4141','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',447,'http://giasuolympia.com/2024/10/20/4141/',90,'nav_menu_item','',0),(4142,1,'2024-10-27 18:20:39','2024-10-20 14:42:20',' ','','','publish','closed','closed','','4142','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',447,'http://giasuolympia.com/2024/10/20/4142/',89,'nav_menu_item','',0),(4143,1,'2024-10-20 14:42:20','2024-10-20 14:42:20',' ','','','publish','closed','closed','','4143','','','2024-10-20 14:42:20','2024-10-20 14:42:20','',447,'http://giasuolympia.com/2024/10/20/4143/',32,'nav_menu_item','',0),(4144,1,'2024-10-20 14:42:20','2024-10-20 14:42:20',' ','','','publish','closed','closed','','4144','','','2024-10-20 14:42:20','2024-10-20 14:42:20','',447,'http://giasuolympia.com/2024/10/20/4144/',31,'nav_menu_item','',0),(4145,1,'2024-10-27 18:20:40','2024-10-20 14:42:20',' ','','','publish','closed','closed','','4145','','','2024-10-27 18:20:40','2024-10-27 11:20:40','',447,'http://giasuolympia.com/2024/10/20/4145/',95,'nav_menu_item','',0),(4146,1,'2024-10-27 18:20:39','2024-10-20 14:42:20',' ','','','publish','closed','closed','','4146','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',447,'http://giasuolympia.com/2024/10/20/4146/',92,'nav_menu_item','',0),(4147,1,'2024-10-27 18:20:39','2024-10-20 14:42:20',' ','','','publish','closed','closed','','4147','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',447,'http://giasuolympia.com/2024/10/20/4147/',91,'nav_menu_item','',0),(4148,1,'2024-10-27 18:20:39','2024-10-20 14:42:20',' ','','','publish','closed','closed','','4148','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',447,'http://giasuolympia.com/2024/10/20/4148/',83,'nav_menu_item','',0),(4149,1,'2024-10-27 18:20:39','2024-10-20 14:42:20',' ','','','publish','closed','closed','','4149','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',447,'http://giasuolympia.com/2024/10/20/4149/',82,'nav_menu_item','',0),(4150,1,'2024-10-27 18:20:39','2024-10-20 14:42:20',' ','','','publish','closed','closed','','4150','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',447,'http://giasuolympia.com/2024/10/20/4150/',81,'nav_menu_item','',0),(4151,1,'2024-10-27 18:20:39','2024-10-20 14:42:20',' ','','','publish','closed','closed','','4151','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',447,'http://giasuolympia.com/2024/10/20/4151/',79,'nav_menu_item','',0),(4152,1,'2024-10-20 14:42:20','2024-10-20 14:42:20',' ','','','publish','closed','closed','','4152','','','2024-10-20 14:42:20','2024-10-20 14:42:20','',447,'http://giasuolympia.com/2024/10/20/4152/',33,'nav_menu_item','',0),(4153,1,'2024-10-20 14:42:20','2024-10-20 14:42:20',' ','','','publish','closed','closed','','4153','','','2024-10-20 14:42:20','2024-10-20 14:42:20','',447,'http://giasuolympia.com/2024/10/20/4153/',34,'nav_menu_item','',0),(4154,1,'2024-10-20 14:42:20','2024-10-20 14:42:20',' ','','','publish','closed','closed','','4154','','','2024-10-20 14:42:20','2024-10-20 14:42:20','',447,'http://giasuolympia.com/2024/10/20/4154/',37,'nav_menu_item','',0),(4155,1,'2024-10-20 14:42:20','2024-10-20 14:42:20',' ','','','publish','closed','closed','','4155','','','2024-10-20 14:42:20','2024-10-20 14:42:20','',447,'http://giasuolympia.com/2024/10/20/4155/',21,'nav_menu_item','',0),(4156,1,'2024-10-20 14:42:20','2024-10-20 14:42:20',' ','','','publish','closed','closed','','4156','','','2024-10-20 14:42:20','2024-10-20 14:42:20','',447,'http://giasuolympia.com/2024/10/20/4156/',23,'nav_menu_item','',0),(4157,1,'2024-10-20 14:42:20','2024-10-20 14:42:20',' ','','','publish','closed','closed','','4157','','','2024-10-20 14:42:20','2024-10-20 14:42:20','',447,'http://giasuolympia.com/2024/10/20/4157/',24,'nav_menu_item','',0),(4158,1,'2024-10-20 14:42:20','2024-10-20 14:42:20',' ','','','publish','closed','closed','','4158','','','2024-10-20 14:42:20','2024-10-20 14:42:20','',447,'http://giasuolympia.com/2024/10/20/4158/',25,'nav_menu_item','',0),(4159,1,'2024-10-27 18:20:38','2024-10-20 14:42:20',' ','','','publish','closed','closed','','4159','','','2024-10-27 18:20:38','2024-10-27 11:20:38','',0,'http://giasuolympia.com/2024/10/20/4159/',4,'nav_menu_item','',0),(4160,1,'2024-10-27 18:20:39','2024-10-20 14:42:20',' ','','','publish','closed','closed','','4160','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',447,'http://giasuolympia.com/2024/10/20/4160/',69,'nav_menu_item','',0),(4161,1,'2024-10-27 18:20:39','2024-10-20 14:42:20',' ','','','publish','closed','closed','','4161','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',447,'http://giasuolympia.com/2024/10/20/4161/',70,'nav_menu_item','',0),(4162,1,'2024-10-27 18:20:39','2024-10-20 14:42:20',' ','','','publish','closed','closed','','4162','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',447,'http://giasuolympia.com/2024/10/20/4162/',71,'nav_menu_item','',0),(4163,1,'2024-10-27 18:20:39','2024-10-20 14:42:20',' ','','','publish','closed','closed','','4163','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',447,'http://giasuolympia.com/2024/10/20/4163/',72,'nav_menu_item','',0),(4164,1,'2024-10-27 18:20:39','2024-10-20 14:42:20',' ','','','publish','closed','closed','','4164','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',447,'http://giasuolympia.com/2024/10/20/4164/',86,'nav_menu_item','',0),(4165,1,'2024-10-27 18:20:39','2024-10-20 14:42:20',' ','','','publish','closed','closed','','4165','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',447,'http://giasuolympia.com/2024/10/20/4165/',84,'nav_menu_item','',0),(4166,1,'2024-10-27 18:20:39','2024-10-20 14:42:20',' ','','','publish','closed','closed','','4166','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',447,'http://giasuolympia.com/2024/10/20/4166/',74,'nav_menu_item','',0),(4167,1,'2024-10-27 18:20:39','2024-10-20 14:42:20',' ','','','publish','closed','closed','','4167','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',447,'http://giasuolympia.com/2024/10/20/4167/',76,'nav_menu_item','',0),(4168,1,'2024-10-20 14:42:20','2024-10-20 14:42:20',' ','','','publish','closed','closed','','4168','','','2024-10-20 14:42:20','2024-10-20 14:42:20','',447,'http://giasuolympia.com/2024/10/20/4168/',28,'nav_menu_item','',0),(4169,1,'2024-10-20 14:42:20','2024-10-20 14:42:20',' ','','','publish','closed','closed','','4169','','','2024-10-20 14:42:20','2024-10-20 14:42:20','',447,'http://giasuolympia.com/2024/10/20/4169/',26,'nav_menu_item','',0),(4170,1,'2024-10-20 14:42:20','2024-10-20 14:42:20',' ','','','publish','closed','closed','','4170','','','2024-10-20 14:42:20','2024-10-20 14:42:20','',447,'http://giasuolympia.com/2024/10/20/4170/',11,'nav_menu_item','',0),(4171,1,'2024-10-20 14:42:20','2024-10-20 14:42:20',' ','','','publish','closed','closed','','4171','','','2024-10-20 14:42:20','2024-10-20 14:42:20','',447,'http://giasuolympia.com/2024/10/20/4171/',12,'nav_menu_item','',0),(4172,1,'2024-10-20 14:42:20','2024-10-20 14:42:20',' ','','','publish','closed','closed','','4172','','','2024-10-20 14:42:20','2024-10-20 14:42:20','',447,'http://giasuolympia.com/2024/10/20/4172/',13,'nav_menu_item','',0),(4173,1,'2024-10-20 14:42:20','2024-10-20 14:42:20',' ','','','publish','closed','closed','','4173','','','2024-10-20 14:42:20','2024-10-20 14:42:20','',447,'http://giasuolympia.com/2024/10/20/4173/',14,'nav_menu_item','',0),(4174,1,'2024-10-20 14:42:20','2024-10-20 14:42:20',' ','','','publish','closed','closed','','4174','','','2024-10-20 14:42:20','2024-10-20 14:42:20','',447,'http://giasuolympia.com/2024/10/20/4174/',16,'nav_menu_item','',0),(4175,1,'2024-10-20 14:42:21','2024-10-20 14:42:21',' ','','','publish','closed','closed','','4175','','','2024-10-20 14:42:21','2024-10-20 14:42:21','',447,'http://giasuolympia.com/2024/10/20/4175/',18,'nav_menu_item','',0),(4176,1,'2024-10-27 18:20:38','2024-10-20 14:42:21',' ','','','publish','closed','closed','','4176','','','2024-10-27 18:20:38','2024-10-27 11:20:38','',0,'http://giasuolympia.com/2024/10/20/4176/',10,'nav_menu_item','',0),(4177,1,'2024-10-27 18:20:39','2024-10-20 14:42:21',' ','','','publish','closed','closed','','4177','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',447,'http://giasuolympia.com/2024/10/20/4177/',73,'nav_menu_item','',0),(4178,1,'2024-10-20 14:42:21','2024-10-20 14:42:21',' ','','','publish','closed','closed','','4178','','','2024-10-20 14:42:21','2024-10-20 14:42:21','',447,'http://giasuolympia.com/2024/10/20/4178/',15,'nav_menu_item','',0),(4179,1,'2024-10-20 14:42:21','2024-10-20 14:42:21',' ','','','publish','closed','closed','','4179','','','2024-10-20 14:42:21','2024-10-20 14:42:21','',447,'http://giasuolympia.com/2024/10/20/4179/',35,'nav_menu_item','',0),(4180,1,'2024-10-20 14:42:21','2024-10-20 14:42:21',' ','','','publish','closed','closed','','4180','','','2024-10-20 14:42:21','2024-10-20 14:42:21','',447,'http://giasuolympia.com/2024/10/20/4180/',9,'nav_menu_item','',0),(4181,1,'2024-10-20 14:42:21','2024-10-20 14:42:21',' ','','','publish','closed','closed','','4181','','','2024-10-20 14:42:21','2024-10-20 14:42:21','',447,'http://giasuolympia.com/2024/10/20/4181/',4,'nav_menu_item','',0),(4182,1,'2024-10-20 14:42:21','2024-10-20 14:42:21',' ','','','publish','closed','closed','','4182','','','2024-10-20 14:42:21','2024-10-20 14:42:21','',447,'http://giasuolympia.com/2024/10/20/4182/',5,'nav_menu_item','',0),(4183,1,'2024-10-20 14:42:21','2024-10-20 14:42:21',' ','','','publish','closed','closed','','4183','','','2024-10-20 14:42:21','2024-10-20 14:42:21','',447,'http://giasuolympia.com/2024/10/20/4183/',19,'nav_menu_item','',0),(4184,1,'2024-10-20 14:42:21','2024-10-20 14:42:21',' ','','','publish','closed','closed','','4184','','','2024-10-20 14:42:21','2024-10-20 14:42:21','',447,'http://giasuolympia.com/2024/10/20/4184/',3,'nav_menu_item','',0),(4185,1,'2024-10-20 14:42:21','2024-10-20 14:42:21',' ','','','publish','closed','closed','','4185','','','2024-10-20 14:42:21','2024-10-20 14:42:21','',447,'http://giasuolympia.com/2024/10/20/4185/',6,'nav_menu_item','',0),(4186,1,'2024-10-20 14:42:21','2024-10-20 14:42:21',' ','','','publish','closed','closed','','4186','','','2024-10-20 14:42:21','2024-10-20 14:42:21','',447,'http://giasuolympia.com/2024/10/20/4186/',17,'nav_menu_item','',0),(4187,1,'2024-10-20 14:42:21','2024-10-20 14:42:21',' ','','','publish','closed','closed','','4187','','','2024-10-20 14:42:21','2024-10-20 14:42:21','',447,'http://giasuolympia.com/2024/10/20/4187/',39,'nav_menu_item','',0),(4188,1,'2024-10-20 14:42:21','2024-10-20 14:42:21',' ','','','publish','closed','closed','','4188','','','2024-10-20 14:42:21','2024-10-20 14:42:21','',447,'http://giasuolympia.com/2024/10/20/4188/',38,'nav_menu_item','',0),(4189,1,'2024-10-27 18:20:39','2024-10-20 14:42:21',' ','','','publish','closed','closed','','4189','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',447,'http://giasuolympia.com/2024/10/20/4189/',77,'nav_menu_item','',0),(4190,1,'2024-10-27 18:20:39','2024-10-20 14:42:21',' ','','','publish','closed','closed','','4190','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',447,'http://giasuolympia.com/2024/10/20/4190/',60,'nav_menu_item','',0),(4191,1,'2024-10-27 18:20:39','2024-10-20 14:42:21',' ','','','publish','closed','closed','','4191','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',447,'http://giasuolympia.com/2024/10/20/4191/',62,'nav_menu_item','',0),(4192,1,'2024-10-27 18:20:39','2024-10-20 14:42:21',' ','','','publish','closed','closed','','4192','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',447,'http://giasuolympia.com/2024/10/20/4192/',61,'nav_menu_item','',0),(4193,1,'2024-10-27 18:20:39','2024-10-20 14:42:21',' ','','','publish','closed','closed','','4193','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',447,'http://giasuolympia.com/2024/10/20/4193/',63,'nav_menu_item','',0),(4194,1,'2024-10-27 18:20:39','2024-10-20 14:42:21',' ','','','publish','closed','closed','','4194','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',447,'http://giasuolympia.com/2024/10/20/4194/',66,'nav_menu_item','',0),(4195,1,'2024-10-27 18:20:39','2024-10-20 14:42:21',' ','','','publish','closed','closed','','4195','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',447,'http://giasuolympia.com/2024/10/20/4195/',93,'nav_menu_item','',0),(4196,1,'2024-10-27 18:20:39','2024-10-20 14:42:21',' ','','','publish','closed','closed','','4196','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',447,'http://giasuolympia.com/2024/10/20/4196/',75,'nav_menu_item','',0),(4197,1,'2024-10-27 18:20:40','2024-10-20 14:42:21',' ','','','publish','closed','closed','','4197','','','2024-10-27 18:20:40','2024-10-27 11:20:40','',447,'http://giasuolympia.com/2024/10/20/4197/',97,'nav_menu_item','',0),(4198,1,'2024-10-27 18:20:40','2024-10-20 14:42:21',' ','','','publish','closed','closed','','4198','','','2024-10-27 18:20:40','2024-10-27 11:20:40','',447,'http://giasuolympia.com/2024/10/20/4198/',96,'nav_menu_item','',0),(4199,1,'2024-10-27 18:20:38','2024-10-20 14:42:21',' ','','','publish','closed','closed','','4199','','','2024-10-27 18:20:38','2024-10-27 11:20:38','',0,'http://giasuolympia.com/2024/10/20/4199/',3,'nav_menu_item','',0),(4200,1,'2024-10-27 18:20:39','2024-10-20 14:42:21',' ','','','publish','closed','closed','','4200','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',0,'http://giasuolympia.com/2024/10/20/4200/',11,'nav_menu_item','',0),(4201,1,'2024-10-27 18:20:38','2024-10-20 14:42:21',' ','','','publish','closed','closed','','4201','','','2024-10-27 18:20:38','2024-10-27 11:20:38','',0,'http://giasuolympia.com/2024/10/20/4201/',5,'nav_menu_item','',0),(4202,1,'2024-10-27 18:20:38','2024-10-20 14:42:21',' ','','','publish','closed','closed','','4202','','','2024-10-27 18:20:38','2024-10-27 11:20:38','',0,'http://giasuolympia.com/2024/10/20/4202/',8,'nav_menu_item','',0),(4203,1,'2024-10-27 18:20:39','2024-10-20 14:42:21',' ','','','publish','closed','closed','','4203','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',0,'http://giasuolympia.com/2024/10/20/4203/',37,'nav_menu_item','',0),(4204,1,'2024-10-27 18:20:39','2024-10-20 14:42:21','','Masonry List','','publish','closed','closed','','masonry-list','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',0,'http://giasuolympia.com/2024/10/20/masonry-list/',27,'nav_menu_item','',0),(4205,1,'2024-10-27 18:20:39','2024-10-20 14:42:21',' ','','','publish','closed','closed','','4205','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',0,'http://giasuolympia.com/2024/10/20/4205/',28,'nav_menu_item','',0),(4206,1,'2024-10-27 18:20:39','2024-10-20 14:42:21','','Standard List','','publish','closed','closed','','standard-list','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',0,'http://giasuolympia.com/2024/10/20/standard-list/',26,'nav_menu_item','',0),(4207,1,'2024-10-27 18:20:38','2024-10-20 14:42:21',' ','','','publish','closed','closed','','4207','','','2024-10-27 18:20:38','2024-10-27 11:20:38','',0,'http://giasuolympia.com/2024/10/20/4207/',7,'nav_menu_item','',0),(4208,1,'2024-10-27 18:20:38','2024-10-20 14:42:21',' ','','','publish','closed','closed','','4208','','','2024-10-27 18:20:38','2024-10-27 11:20:38','',0,'http://giasuolympia.com/2024/10/20/4208/',6,'nav_menu_item','',0),(4209,1,'2024-10-27 18:20:39','2024-10-20 14:42:21',' ','','','publish','closed','closed','','4209','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',0,'http://giasuolympia.com/2024/10/20/4209/',12,'nav_menu_item','',0),(4210,1,'2024-10-27 18:20:39','2024-10-20 14:42:21',' ','','','publish','closed','closed','','4210','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',0,'http://giasuolympia.com/2024/10/20/4210/',24,'nav_menu_item','',0),(4211,1,'2024-10-27 18:20:39','2024-10-20 14:42:21',' ','','','publish','closed','closed','','4211','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',0,'http://giasuolympia.com/2024/10/20/4211/',22,'nav_menu_item','',0),(4212,1,'2024-10-27 18:20:39','2024-10-20 14:42:21',' ','','','publish','closed','closed','','4212','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',0,'http://giasuolympia.com/2024/10/20/4212/',20,'nav_menu_item','',0),(4214,1,'2024-10-27 18:20:39','2024-10-20 14:42:21',' ','','','publish','closed','closed','','4214','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',0,'http://giasuolympia.com/2024/10/20/4214/',21,'nav_menu_item','',0),(4216,1,'2024-10-27 18:20:39','2024-10-20 14:42:21','','Grouped','','publish','closed','closed','','grouped','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',0,'http://giasuolympia.com/2024/10/20/grouped/',43,'nav_menu_item','',0),(4217,1,'2024-10-27 18:20:39','2024-10-20 14:42:21','','External','','publish','closed','closed','','external','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',0,'http://giasuolympia.com/2024/10/20/external/',44,'nav_menu_item','',0),(4218,1,'2024-10-27 18:20:39','2024-10-20 14:42:21','','Variable','','publish','closed','closed','','variable','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',0,'http://giasuolympia.com/2024/10/20/variable/',45,'nav_menu_item','',0),(4219,1,'2024-10-27 18:20:39','2024-10-20 14:42:21','','Standard','','publish','closed','closed','','standard','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',0,'http://giasuolympia.com/2024/10/20/standard/',42,'nav_menu_item','',0),(4220,1,'2024-10-27 18:20:39','2024-10-20 14:42:21','','Standard Post','','publish','closed','closed','','standard-post','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',0,'http://giasuolympia.com/2024/10/20/standard-post/',29,'nav_menu_item','',0),(4221,1,'2024-10-27 18:20:39','2024-10-20 14:42:21','','Link Post','','publish','closed','closed','','link-post','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',0,'http://giasuolympia.com/2024/10/20/link-post/',31,'nav_menu_item','',0),(4222,1,'2024-10-27 18:20:39','2024-10-20 14:42:21','','Audio Post','','publish','closed','closed','','audio-post','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',0,'http://giasuolympia.com/2024/10/20/audio-post/',32,'nav_menu_item','',0),(4223,1,'2024-10-27 18:20:39','2024-10-20 14:42:21','','Quote Post','','publish','closed','closed','','quote-post','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',0,'http://giasuolympia.com/2024/10/20/quote-post/',30,'nav_menu_item','',0),(4224,1,'2024-10-27 18:20:39','2024-10-20 14:42:21','','Video Post','','publish','closed','closed','','video-post','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',0,'http://giasuolympia.com/2024/10/20/video-post/',33,'nav_menu_item','',0),(4225,1,'2024-10-26 12:06:25','2024-10-20 14:42:21','','Contact Us','','publish','closed','closed','','contact-us','','','2024-10-26 12:06:25','2024-10-26 12:06:25','',0,'http://giasuolympia.com/2024/10/20/contact-us/',2,'nav_menu_item','',0),(4226,1,'2024-10-26 12:06:25','2024-10-20 14:42:22',' ','','','publish','closed','closed','','4226','','','2024-10-26 12:06:25','2024-10-26 12:06:25','',0,'http://giasuolympia.com/2024/10/20/4226/',3,'nav_menu_item','',0),(4227,1,'2024-10-26 12:06:25','2024-10-20 14:42:22','','Course Offer','','publish','closed','closed','','course-offer','','','2024-10-26 12:06:25','2024-10-26 12:06:25','',289,'http://giasuolympia.com/2024/10/20/course-offer/',4,'nav_menu_item','',0),(4228,1,'2024-10-26 12:06:25','2024-10-20 14:42:22',' ','','','publish','closed','closed','','4228','','','2024-10-26 12:06:25','2024-10-26 12:06:25','',0,'http://giasuolympia.com/2024/10/20/4228/',1,'nav_menu_item','',0),(4229,1,'2024-10-27 18:20:39','2024-10-20 14:42:22',' ','','','publish','closed','closed','','4229','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',447,'http://giasuolympia.com/2024/10/20/4229/',65,'nav_menu_item','',0),(4230,1,'2024-10-27 18:20:39','2024-10-20 14:42:22',' ','','','publish','closed','closed','','4230','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',447,'http://giasuolympia.com/2024/10/20/4230/',85,'nav_menu_item','',0),(4231,1,'2024-10-27 18:20:39','2024-10-20 14:42:22',' ','','','publish','closed','closed','','4231','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',447,'http://giasuolympia.com/2024/10/20/4231/',64,'nav_menu_item','',0),(4232,1,'2024-10-27 18:20:39','2024-10-20 14:42:22',' ','','','publish','closed','closed','','4232','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',447,'http://giasuolympia.com/2024/10/20/4232/',59,'nav_menu_item','',0),(4233,1,'2024-10-27 18:20:39','2024-10-20 14:42:22',' ','','','publish','closed','closed','','4233','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',447,'http://giasuolympia.com/2024/10/20/4233/',87,'nav_menu_item','',0),(4234,1,'2024-10-27 18:20:39','2024-10-20 14:42:22',' ','','','publish','closed','closed','','4234','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',447,'http://giasuolympia.com/2024/10/20/4234/',80,'nav_menu_item','',0),(4235,1,'2024-10-27 18:20:40','2024-10-20 14:42:22',' ','','','publish','closed','closed','','4235','','','2024-10-27 18:20:40','2024-10-27 11:20:40','',447,'http://giasuolympia.com/2024/10/20/4235/',94,'nav_menu_item','',0),(4236,1,'2024-10-20 14:42:22','2024-10-20 14:42:22',' ','','','publish','closed','closed','','4236','','','2024-10-20 14:42:22','2024-10-20 14:42:22','',447,'http://giasuolympia.com/2024/10/20/4236/',36,'nav_menu_item','',0),(4237,1,'2024-10-20 14:42:22','2024-10-20 14:42:22',' ','','','publish','closed','closed','','4237','','','2024-10-20 14:42:22','2024-10-20 14:42:22','',447,'http://giasuolympia.com/2024/10/20/4237/',22,'nav_menu_item','',0),(4238,1,'2024-10-20 14:42:22','2024-10-20 14:42:22',' ','','','publish','closed','closed','','4238','','','2024-10-20 14:42:22','2024-10-20 14:42:22','',447,'http://giasuolympia.com/2024/10/20/4238/',8,'nav_menu_item','',0),(4239,1,'2024-10-20 14:42:22','2024-10-20 14:42:22',' ','','','publish','closed','closed','','4239','','','2024-10-20 14:42:22','2024-10-20 14:42:22','',447,'http://giasuolympia.com/2024/10/20/4239/',2,'nav_menu_item','',0),(4240,1,'2024-10-20 14:42:22','2024-10-20 14:42:22',' ','','','publish','closed','closed','','4240','','','2024-10-20 14:42:22','2024-10-20 14:42:22','',447,'http://giasuolympia.com/2024/10/20/4240/',27,'nav_menu_item','',0),(4241,1,'2024-10-20 14:42:22','2024-10-20 14:42:22',' ','','','publish','closed','closed','','4241','','','2024-10-20 14:42:22','2024-10-20 14:42:22','',447,'http://giasuolympia.com/2024/10/20/4241/',7,'nav_menu_item','',0),(4242,1,'2024-10-20 14:42:22','2024-10-20 14:42:22',' ','','','publish','closed','closed','','4242','','','2024-10-20 14:42:22','2024-10-20 14:42:22','',447,'http://giasuolympia.com/2024/10/20/4242/',29,'nav_menu_item','',0),(4243,1,'2024-10-27 18:20:39','2024-10-20 14:42:22',' ','','','publish','closed','closed','','4243','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',4123,'http://giasuolympia.com/2024/10/20/4243/',52,'nav_menu_item','',0),(4244,1,'2024-10-27 18:20:39','2024-10-20 14:42:22',' ','','','publish','closed','closed','','4244','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',4123,'http://giasuolympia.com/2024/10/20/4244/',51,'nav_menu_item','',0),(4245,1,'2024-10-27 18:20:39','2024-10-20 14:42:22',' ','','','publish','closed','closed','','4245','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',4123,'http://giasuolympia.com/2024/10/20/4245/',50,'nav_menu_item','',0),(4246,1,'2024-10-27 18:20:39','2024-10-20 14:42:22',' ','','','publish','closed','closed','','4246','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',4123,'http://giasuolympia.com/2024/10/20/4246/',49,'nav_menu_item','',0),(4247,1,'2024-10-27 18:20:39','2024-10-20 14:42:22',' ','','','publish','closed','closed','','4247','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',4123,'http://giasuolympia.com/2024/10/20/4247/',48,'nav_menu_item','',0),(4248,1,'2024-10-27 18:20:39','2024-10-20 14:42:22',' ','','','publish','closed','closed','','4248','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',4123,'http://giasuolympia.com/2024/10/20/4248/',47,'nav_menu_item','',0),(4249,1,'2024-10-27 18:20:39','2024-10-20 14:42:22',' ','','','publish','closed','closed','','4249','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',0,'http://giasuolympia.com/2024/10/20/4249/',13,'nav_menu_item','',0),(4250,1,'2024-10-20 14:42:22','2024-10-20 14:42:22',' ','','','publish','closed','closed','','4250','','','2024-10-20 14:42:22','2024-10-20 14:42:22','',0,'http://giasuolympia.com/2024/10/20/4250/',2,'nav_menu_item','',0),(4251,1,'2024-10-20 14:42:22','2024-10-20 14:42:22',' ','','','publish','closed','closed','','4251','','','2024-10-20 14:42:22','2024-10-20 14:42:22','',0,'http://giasuolympia.com/2024/10/20/4251/',3,'nav_menu_item','',0),(4252,1,'2024-10-20 14:42:22','2024-10-20 14:42:22',' ','','','publish','closed','closed','','4252','','','2024-10-20 14:42:22','2024-10-20 14:42:22','',0,'http://giasuolympia.com/2024/10/20/4252/',4,'nav_menu_item','',0),(4253,1,'2024-10-20 14:42:22','2024-10-20 14:42:22',' ','','','publish','closed','closed','','4253','','','2024-10-20 14:42:22','2024-10-20 14:42:22','',0,'http://giasuolympia.com/2024/10/20/4253/',5,'nav_menu_item','',0),(4254,1,'2024-10-20 14:42:22','2024-10-20 14:42:22',' ','','','publish','closed','closed','','4254','','','2024-10-20 14:42:22','2024-10-20 14:42:22','',0,'http://giasuolympia.com/2024/10/20/4254/',6,'nav_menu_item','',0),(4255,1,'2024-10-20 14:42:22','2024-10-20 14:42:22',' ','','','publish','closed','closed','','4255','','','2024-10-20 14:42:22','2024-10-20 14:42:22','',0,'http://giasuolympia.com/2024/10/20/4255/',7,'nav_menu_item','',0),(4256,1,'2024-10-20 14:42:22','2024-10-20 14:42:22',' ','','','publish','closed','closed','','4256','','','2024-10-20 14:42:22','2024-10-20 14:42:22','',0,'http://giasuolympia.com/2024/10/20/4256/',8,'nav_menu_item','',0),(4257,1,'2024-10-20 14:42:22','2024-10-20 14:42:22',' ','','','publish','closed','closed','','4257','','','2024-10-20 14:42:22','2024-10-20 14:42:22','',0,'http://giasuolympia.com/2024/10/20/4257/',9,'nav_menu_item','',0),(4258,1,'2024-10-20 14:42:22','2024-10-20 14:42:22',' ','','','publish','closed','closed','','4258','','','2024-10-20 14:42:22','2024-10-20 14:42:22','',0,'http://giasuolympia.com/2024/10/20/4258/',10,'nav_menu_item','',0),(4259,1,'2024-10-20 14:42:22','2024-10-20 14:42:22',' ','','','publish','closed','closed','','4259','','','2024-10-20 14:42:22','2024-10-20 14:42:22','',0,'http://giasuolympia.com/2024/10/20/4259/',11,'nav_menu_item','',0),(4260,1,'2024-10-20 14:42:22','2024-10-20 14:42:22',' ','','','publish','closed','closed','','4260','','','2024-10-20 14:42:22','2024-10-20 14:42:22','',0,'http://giasuolympia.com/2024/10/20/4260/',12,'nav_menu_item','',0),(4261,1,'2024-10-20 14:42:22','2024-10-20 14:42:22',' ','','','publish','closed','closed','','4261','','','2024-10-20 14:42:22','2024-10-20 14:42:22','',0,'http://giasuolympia.com/2024/10/20/4261/',13,'nav_menu_item','',0),(4262,1,'2024-10-20 14:42:22','2024-10-20 14:42:22',' ','','','publish','closed','closed','','4262','','','2024-10-20 14:42:22','2024-10-20 14:42:22','',0,'http://giasuolympia.com/2024/10/20/4262/',14,'nav_menu_item','',0),(4263,1,'2024-10-20 14:42:22','2024-10-20 14:42:22',' ','','','publish','closed','closed','','4263','','','2024-10-20 14:42:22','2024-10-20 14:42:22','',289,'http://giasuolympia.com/2024/10/20/4263/',17,'nav_menu_item','',0),(4264,1,'2024-10-20 14:42:22','2024-10-20 14:42:22',' ','','','publish','closed','closed','','4264','','','2024-10-20 14:42:22','2024-10-20 14:42:22','',289,'http://giasuolympia.com/2024/10/20/4264/',18,'nav_menu_item','',0),(4265,1,'2024-10-20 14:42:22','2024-10-20 14:42:22',' ','','','publish','closed','closed','','4265','','','2024-10-20 14:42:22','2024-10-20 14:42:22','',0,'http://giasuolympia.com/2024/10/20/4265/',20,'nav_menu_item','',0),(4266,1,'2024-10-20 14:42:22','2024-10-20 14:42:22',' ','','','publish','closed','closed','','4266','','','2024-10-20 14:42:22','2024-10-20 14:42:22','',0,'http://giasuolympia.com/2024/10/20/4266/',25,'nav_menu_item','',0),(4267,1,'2024-10-20 14:42:22','2024-10-20 14:42:22','','Event Single','','publish','closed','closed','','event-single-2','','','2024-10-20 14:42:22','2024-10-20 14:42:22','',0,'http://giasuolympia.com/2024/10/20/event-single-2/',30,'nav_menu_item','',0),(4268,1,'2024-10-20 14:42:22','2024-10-20 14:42:22',' ','','','publish','closed','closed','','4268','','','2024-10-20 14:42:22','2024-10-20 14:42:22','',0,'http://giasuolympia.com/2024/10/20/4268/',32,'nav_menu_item','',0),(4269,1,'2024-10-20 14:42:22','2024-10-20 14:42:22',' ','','','publish','closed','closed','','4269','','','2024-10-20 14:42:22','2024-10-20 14:42:22','',0,'http://giasuolympia.com/2024/10/20/4269/',33,'nav_menu_item','',0),(4270,1,'2024-10-20 14:42:22','2024-10-20 14:42:22',' ','','','publish','closed','closed','','4270','','','2024-10-20 14:42:22','2024-10-20 14:42:22','',0,'http://giasuolympia.com/2024/10/20/4270/',34,'nav_menu_item','',0),(4271,1,'2024-10-20 14:42:22','2024-10-20 14:42:22','','Standard List','','publish','closed','closed','','standard-list-2','','','2024-10-20 14:42:22','2024-10-20 14:42:22','',0,'http://giasuolympia.com/2024/10/20/standard-list-2/',36,'nav_menu_item','',0),(4272,1,'2024-10-20 14:42:22','2024-10-20 14:42:22','','Masonry List','','publish','closed','closed','','masonry-list-2','','','2024-10-20 14:42:22','2024-10-20 14:42:22','',0,'http://giasuolympia.com/2024/10/20/masonry-list-2/',37,'nav_menu_item','',0),(4273,1,'2024-10-20 14:42:22','2024-10-20 14:42:22',' ','','','publish','closed','closed','','4273','','','2024-10-20 14:42:22','2024-10-20 14:42:22','',0,'http://giasuolympia.com/2024/10/20/4273/',38,'nav_menu_item','',0),(4274,1,'2024-10-20 14:42:22','2024-10-20 14:42:22','','Standard Post','','publish','closed','closed','','standard-post-2','','','2024-10-20 14:42:22','2024-10-20 14:42:22','',0,'http://giasuolympia.com/2024/10/20/standard-post-2/',39,'nav_menu_item','',0),(4275,1,'2024-10-20 14:42:22','2024-10-20 14:42:22','','Quote Post','','publish','closed','closed','','quote-post-2','','','2024-10-20 14:42:22','2024-10-20 14:42:22','',0,'http://giasuolympia.com/2024/10/20/quote-post-2/',40,'nav_menu_item','',0),(4276,1,'2024-10-20 14:42:22','2024-10-20 14:42:22','','Link Post','','publish','closed','closed','','link-post-2','','','2024-10-20 14:42:22','2024-10-20 14:42:22','',0,'http://giasuolympia.com/2024/10/20/link-post-2/',41,'nav_menu_item','',0),(4277,1,'2024-10-20 14:42:22','2024-10-20 14:42:22','','Audio Post','','publish','closed','closed','','audio-post-2','','','2024-10-20 14:42:22','2024-10-20 14:42:22','',0,'http://giasuolympia.com/2024/10/20/audio-post-2/',42,'nav_menu_item','',0),(4278,1,'2024-10-20 14:42:23','2024-10-20 14:42:23','','Video Post','','publish','closed','closed','','video-post-2','','','2024-10-20 14:42:23','2024-10-20 14:42:23','',0,'http://giasuolympia.com/2024/10/20/video-post-2/',43,'nav_menu_item','',0),(4279,1,'2024-10-20 14:42:23','2024-10-20 14:42:23',' ','','','publish','closed','closed','','4279','','','2024-10-20 14:42:23','2024-10-20 14:42:23','',0,'http://giasuolympia.com/2024/10/20/4279/',47,'nav_menu_item','',0),(4280,1,'2024-10-20 14:42:23','2024-10-20 14:42:23',' ','','','publish','closed','closed','','4280','','','2024-10-20 14:42:23','2024-10-20 14:42:23','',0,'http://giasuolympia.com/2024/10/20/4280/',48,'nav_menu_item','',0),(4282,1,'2024-10-20 14:42:23','2024-10-20 14:42:23','','Shop List','','publish','closed','closed','','shop-list-2','','','2024-10-20 14:42:23','2024-10-20 14:42:23','',0,'http://giasuolympia.com/2024/10/20/shop-list-2/',52,'nav_menu_item','',0),(4283,1,'2024-10-20 14:42:23','2024-10-20 14:42:23','','Standard','','publish','closed','closed','','standard-2','','','2024-10-20 14:42:23','2024-10-20 14:42:23','',0,'http://giasuolympia.com/2024/10/20/standard-2/',54,'nav_menu_item','',0),(4284,1,'2024-10-20 14:42:23','2024-10-20 14:42:23','','Grouped','','publish','closed','closed','','grouped-2','','','2024-10-20 14:42:23','2024-10-20 14:42:23','',0,'http://giasuolympia.com/2024/10/20/grouped-2/',55,'nav_menu_item','',0),(4285,1,'2024-10-20 14:42:23','2024-10-20 14:42:23','','External','','publish','closed','closed','','external-2','','','2024-10-20 14:42:23','2024-10-20 14:42:23','',0,'http://giasuolympia.com/2024/10/20/external-2/',56,'nav_menu_item','',0),(4286,1,'2024-10-20 14:42:23','2024-10-20 14:42:23','','Variable','','publish','closed','closed','','variable-2','','','2024-10-20 14:42:23','2024-10-20 14:42:23','',0,'http://giasuolympia.com/2024/10/20/variable-2/',57,'nav_menu_item','',0),(4287,1,'2024-10-20 14:42:23','2024-10-20 14:42:23',' ','','','publish','closed','closed','','4287','','','2024-10-20 14:42:23','2024-10-20 14:42:23','',4123,'http://giasuolympia.com/2024/10/20/4287/',59,'nav_menu_item','',0),(4288,1,'2024-10-20 14:42:23','2024-10-20 14:42:23',' ','','','publish','closed','closed','','4288','','','2024-10-20 14:42:23','2024-10-20 14:42:23','',4123,'http://giasuolympia.com/2024/10/20/4288/',60,'nav_menu_item','',0),(4289,1,'2024-10-20 14:42:23','2024-10-20 14:42:23',' ','','','publish','closed','closed','','4289','','','2024-10-20 14:42:23','2024-10-20 14:42:23','',4123,'http://giasuolympia.com/2024/10/20/4289/',61,'nav_menu_item','',0),(4290,1,'2024-10-20 14:42:23','2024-10-20 14:42:23',' ','','','publish','closed','closed','','4290','','','2024-10-20 14:42:23','2024-10-20 14:42:23','',4123,'http://giasuolympia.com/2024/10/20/4290/',62,'nav_menu_item','',0),(4291,1,'2024-10-20 14:42:23','2024-10-20 14:42:23',' ','','','publish','closed','closed','','4291','','','2024-10-20 14:42:23','2024-10-20 14:42:23','',4123,'http://giasuolympia.com/2024/10/20/4291/',63,'nav_menu_item','',0),(4292,1,'2024-10-20 14:42:23','2024-10-20 14:42:23',' ','','','publish','closed','closed','','4292','','','2024-10-20 14:42:23','2024-10-20 14:42:23','',4123,'http://giasuolympia.com/2024/10/20/4292/',64,'nav_menu_item','',0),(4293,1,'2024-10-20 14:42:23','2024-10-20 14:42:23',' ','','','publish','closed','closed','','4293','','','2024-10-20 14:42:23','2024-10-20 14:42:23','',0,'http://giasuolympia.com/2024/10/20/4293/',66,'nav_menu_item','',0),(4294,1,'2024-10-20 14:42:23','2024-10-20 14:42:23',' ','','','publish','closed','closed','','4294','','','2024-10-20 14:42:23','2024-10-20 14:42:23','',0,'http://giasuolympia.com/2024/10/20/4294/',67,'nav_menu_item','',0),(4295,1,'2024-10-20 14:42:23','2024-10-20 14:42:23',' ','','','publish','closed','closed','','4295','','','2024-10-20 14:42:23','2024-10-20 14:42:23','',0,'http://giasuolympia.com/2024/10/20/4295/',68,'nav_menu_item','',0),(4296,1,'2024-10-20 14:42:23','2024-10-20 14:42:23',' ','','','publish','closed','closed','','4296','','','2024-10-20 14:42:23','2024-10-20 14:42:23','',447,'http://giasuolympia.com/2024/10/20/4296/',71,'nav_menu_item','',0),(4297,1,'2024-10-20 14:42:23','2024-10-20 14:42:23',' ','','','publish','closed','closed','','4297','','','2024-10-20 14:42:23','2024-10-20 14:42:23','',447,'http://giasuolympia.com/2024/10/20/4297/',72,'nav_menu_item','',0),(4298,1,'2024-10-20 14:42:23','2024-10-20 14:42:23',' ','','','publish','closed','closed','','4298','','','2024-10-20 14:42:23','2024-10-20 14:42:23','',447,'http://giasuolympia.com/2024/10/20/4298/',73,'nav_menu_item','',0),(4299,1,'2024-10-20 14:42:23','2024-10-20 14:42:23',' ','','','publish','closed','closed','','4299','','','2024-10-20 14:42:23','2024-10-20 14:42:23','',447,'http://giasuolympia.com/2024/10/20/4299/',74,'nav_menu_item','',0),(4300,1,'2024-10-20 14:42:23','2024-10-20 14:42:23',' ','','','publish','closed','closed','','4300','','','2024-10-20 14:42:23','2024-10-20 14:42:23','',447,'http://giasuolympia.com/2024/10/20/4300/',75,'nav_menu_item','',0),(4301,1,'2024-10-20 14:42:23','2024-10-20 14:42:23',' ','','','publish','closed','closed','','4301','','','2024-10-20 14:42:23','2024-10-20 14:42:23','',447,'http://giasuolympia.com/2024/10/20/4301/',76,'nav_menu_item','',0),(4302,1,'2024-10-20 14:42:23','2024-10-20 14:42:23',' ','','','publish','closed','closed','','4302','','','2024-10-20 14:42:23','2024-10-20 14:42:23','',447,'http://giasuolympia.com/2024/10/20/4302/',77,'nav_menu_item','',0),(4303,1,'2024-10-20 14:42:23','2024-10-20 14:42:23',' ','','','publish','closed','closed','','4303','','','2024-10-20 14:42:23','2024-10-20 14:42:23','',447,'http://giasuolympia.com/2024/10/20/4303/',78,'nav_menu_item','',0),(4304,1,'2024-10-20 14:42:23','2024-10-20 14:42:23',' ','','','publish','closed','closed','','4304','','','2024-10-20 14:42:23','2024-10-20 14:42:23','',447,'http://giasuolympia.com/2024/10/20/4304/',81,'nav_menu_item','',0),(4305,1,'2024-10-20 14:42:23','2024-10-20 14:42:23',' ','','','publish','closed','closed','','4305','','','2024-10-20 14:42:23','2024-10-20 14:42:23','',447,'http://giasuolympia.com/2024/10/20/4305/',82,'nav_menu_item','',0),(4306,1,'2024-10-20 14:42:23','2024-10-20 14:42:23',' ','','','publish','closed','closed','','4306','','','2024-10-20 14:42:23','2024-10-20 14:42:23','',447,'http://giasuolympia.com/2024/10/20/4306/',83,'nav_menu_item','',0),(4307,1,'2024-10-20 14:42:23','2024-10-20 14:42:23',' ','','','publish','closed','closed','','4307','','','2024-10-20 14:42:23','2024-10-20 14:42:23','',447,'http://giasuolympia.com/2024/10/20/4307/',84,'nav_menu_item','',0),(4308,1,'2024-10-20 14:42:23','2024-10-20 14:42:23',' ','','','publish','closed','closed','','4308','','','2024-10-20 14:42:23','2024-10-20 14:42:23','',447,'http://giasuolympia.com/2024/10/20/4308/',85,'nav_menu_item','',0),(4309,1,'2024-10-20 14:42:23','2024-10-20 14:42:23',' ','','','publish','closed','closed','','4309','','','2024-10-20 14:42:23','2024-10-20 14:42:23','',447,'http://giasuolympia.com/2024/10/20/4309/',86,'nav_menu_item','',0),(4310,1,'2024-10-20 14:42:23','2024-10-20 14:42:23',' ','','','publish','closed','closed','','4310','','','2024-10-20 14:42:23','2024-10-20 14:42:23','',447,'http://giasuolympia.com/2024/10/20/4310/',87,'nav_menu_item','',0),(4311,1,'2024-10-20 14:42:23','2024-10-20 14:42:23',' ','','','publish','closed','closed','','4311','','','2024-10-20 14:42:23','2024-10-20 14:42:23','',447,'http://giasuolympia.com/2024/10/20/4311/',88,'nav_menu_item','',0),(4312,1,'2024-10-20 14:42:23','2024-10-20 14:42:23',' ','','','publish','closed','closed','','4312','','','2024-10-20 14:42:23','2024-10-20 14:42:23','',447,'http://giasuolympia.com/2024/10/20/4312/',89,'nav_menu_item','',0),(4313,1,'2024-10-20 14:42:23','2024-10-20 14:42:23',' ','','','publish','closed','closed','','4313','','','2024-10-20 14:42:23','2024-10-20 14:42:23','',447,'http://giasuolympia.com/2024/10/20/4313/',91,'nav_menu_item','',0),(4314,1,'2024-10-20 14:42:23','2024-10-20 14:42:23',' ','','','publish','closed','closed','','4314','','','2024-10-20 14:42:23','2024-10-20 14:42:23','',447,'http://giasuolympia.com/2024/10/20/4314/',92,'nav_menu_item','',0),(4315,1,'2024-10-20 14:42:23','2024-10-20 14:42:23',' ','','','publish','closed','closed','','4315','','','2024-10-20 14:42:23','2024-10-20 14:42:23','',447,'http://giasuolympia.com/2024/10/20/4315/',93,'nav_menu_item','',0),(4316,1,'2024-10-20 14:42:23','2024-10-20 14:42:23',' ','','','publish','closed','closed','','4316','','','2024-10-20 14:42:23','2024-10-20 14:42:23','',447,'http://giasuolympia.com/2024/10/20/4316/',94,'nav_menu_item','',0),(4317,1,'2024-10-20 14:42:23','2024-10-20 14:42:23',' ','','','publish','closed','closed','','4317','','','2024-10-20 14:42:23','2024-10-20 14:42:23','',447,'http://giasuolympia.com/2024/10/20/4317/',95,'nav_menu_item','',0),(4318,1,'2024-10-20 14:42:23','2024-10-20 14:42:23',' ','','','publish','closed','closed','','4318','','','2024-10-20 14:42:23','2024-10-20 14:42:23','',447,'http://giasuolympia.com/2024/10/20/4318/',96,'nav_menu_item','',0),(4319,1,'2024-10-20 14:42:23','2024-10-20 14:42:23',' ','','','publish','closed','closed','','4319','','','2024-10-20 14:42:23','2024-10-20 14:42:23','',447,'http://giasuolympia.com/2024/10/20/4319/',97,'nav_menu_item','',0),(4320,1,'2024-10-20 14:42:23','2024-10-20 14:42:23',' ','','','publish','closed','closed','','4320','','','2024-10-20 14:42:23','2024-10-20 14:42:23','',447,'http://giasuolympia.com/2024/10/20/4320/',98,'nav_menu_item','',0),(4321,1,'2024-10-20 14:42:23','2024-10-20 14:42:23',' ','','','publish','closed','closed','','4321','','','2024-10-20 14:42:23','2024-10-20 14:42:23','',447,'http://giasuolympia.com/2024/10/20/4321/',99,'nav_menu_item','',0),(4322,1,'2024-10-20 14:42:23','2024-10-20 14:42:23',' ','','','publish','closed','closed','','4322','','','2024-10-20 14:42:23','2024-10-20 14:42:23','',447,'http://giasuolympia.com/2024/10/20/4322/',101,'nav_menu_item','',0),(4323,1,'2024-10-20 14:42:23','2024-10-20 14:42:23',' ','','','publish','closed','closed','','4323','','','2024-10-20 14:42:23','2024-10-20 14:42:23','',447,'http://giasuolympia.com/2024/10/20/4323/',102,'nav_menu_item','',0),(4324,1,'2024-10-20 14:42:23','2024-10-20 14:42:23',' ','','','publish','closed','closed','','4324','','','2024-10-20 14:42:23','2024-10-20 14:42:23','',447,'http://giasuolympia.com/2024/10/20/4324/',103,'nav_menu_item','',0),(4325,1,'2024-10-20 14:42:23','2024-10-20 14:42:23',' ','','','publish','closed','closed','','4325','','','2024-10-20 14:42:23','2024-10-20 14:42:23','',447,'http://giasuolympia.com/2024/10/20/4325/',104,'nav_menu_item','',0),(4326,1,'2024-10-20 14:42:23','2024-10-20 14:42:23',' ','','','publish','closed','closed','','4326','','','2024-10-20 14:42:23','2024-10-20 14:42:23','',447,'http://giasuolympia.com/2024/10/20/4326/',105,'nav_menu_item','',0),(4327,1,'2024-10-20 14:42:23','2024-10-20 14:42:23',' ','','','publish','closed','closed','','4327','','','2024-10-20 14:42:23','2024-10-20 14:42:23','',447,'http://giasuolympia.com/2024/10/20/4327/',106,'nav_menu_item','',0),(4328,1,'2024-10-20 14:42:24','2024-10-20 14:42:24',' ','','','publish','closed','closed','','4328','','','2024-10-20 14:42:24','2024-10-20 14:42:24','',447,'http://giasuolympia.com/2024/10/20/4328/',107,'nav_menu_item','',0),(4329,1,'2024-10-20 14:42:24','2024-10-20 14:42:24',' ','','','publish','closed','closed','','4329','','','2024-10-20 14:42:24','2024-10-20 14:42:24','',447,'http://giasuolympia.com/2024/10/20/4329/',108,'nav_menu_item','',0),(4330,1,'2024-10-20 14:42:24','2024-10-20 14:42:24',' ','','','publish','closed','closed','','4330','','','2024-10-20 14:42:24','2024-10-20 14:42:24','',447,'http://giasuolympia.com/2024/10/20/4330/',109,'nav_menu_item','',0),(4331,1,'2024-10-20 14:42:24','2024-10-20 14:42:24',' ','','','publish','closed','closed','','4331','','','2024-10-20 14:42:24','2024-10-20 14:42:24','',447,'http://giasuolympia.com/2024/10/20/4331/',79,'nav_menu_item','',0),(4332,1,'2024-10-27 18:20:39','2024-10-20 14:42:24',' ','','','publish','closed','closed','','4332','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',447,'http://giasuolympia.com/2024/10/20/4332/',67,'nav_menu_item','',0),(4333,1,'2024-10-20 14:42:46','2024-10-20 14:42:46','','h7-slide-1-background.jpg','','inherit','closed','closed','','h7-slide-1-background-jpg','','','2024-10-20 14:42:46','2024-10-20 14:42:46','',0,'http://giasuolympia.com/wp-content/uploads/revslider/h7-slide-1-background.jpg',0,'attachment','image/jpeg',0),(4335,1,'2024-10-24 09:20:07','2024-10-24 09:20:07','[vc_row row_content_width=\"grid\" css=\".vc_custom_1497440561376{padding-top: 100px !important;padding-bottom: 80px !important;}\"][vc_column offset=\"vc_col-lg-8\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" background_image=\"2820\" item_padding=\"251px 45%\" item_padding_1024_1280=\"251px 45%\" item_padding_768_1024=\"230px 45%\" item_padding_680_768=\"180px 45%\" item_padding_680=\"130px 35%\"][mkdf_video_button video_link=\"https://vimeo.com/157562616\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column offset=\"vc_col-lg-4\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding_768_1024=\"100px 0 0 \" item_padding_680_768=\"100px 0 0 \" item_padding_680=\"100px 0 0 \"][contact-form-7 id=\"171\" html_class=\"cf7_custom_style_2\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1495720773265{padding-bottom: 70px !important;}\"][vc_column][mkdf_section_title type=\"standard\" position=\"center\" title_tag=\"\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"400\" title=\"Top Tutors in Every Subject.\" title_color=\"#d8a64e\" text=\"Lorem Ipsn gravida nibh vel velit auctor aliquetnean sollicitudin,lorem quis bibendum \" text_font_size=\"17\"][vc_empty_space height=\"80px\"][mkdf_instructor_list number_of_columns=\"3\" space_between_items=\"normal\" number_of_items=\"9\" order_by=\"date\" order=\"ASC\" instructor_layout=\"simple\" enable_shadow=\"yes\" instructor_background=\"#ffffff\"][/vc_column][/vc_row]','Đăng ký làm gia sư','','inherit','closed','closed','','129-revision-v1','','','2024-10-24 09:20:07','2024-10-24 09:20:07','',129,'http://giasuolympia.com/?p=4335',0,'revision','',0),(4336,1,'2024-10-24 09:22:06','2024-10-24 09:22:06','','Khóa học','','inherit','closed','closed','','289-revision-v1','','','2024-10-24 09:22:06','2024-10-24 09:22:06','',289,'http://giasuolympia.com/?p=4336',0,'revision','',0),(4337,1,'2024-10-24 09:23:52','2024-10-24 09:23:52','[vc_row css=\".vc_custom_1495809860309{padding-bottom: 68px !important;}\"][vc_column][mkdf_course_list number_of_columns=\"3\" space_between_items=\"normal\" number_of_items=\"9\" order_by=\"date\" order=\"ASC\" filter=\"yes\" category=\"education\"][/vc_column][/vc_row]','Tất cả khóa học','','inherit','closed','closed','','306-revision-v1','','','2024-10-24 09:23:52','2024-10-24 09:23:52','',306,'http://giasuolympia.com/?p=4337',0,'revision','',0),(4338,1,'2024-10-24 10:17:15','2024-10-24 10:17:15','[vc_row row_content_width=\"grid\" content_text_aligment=\"center\" css=\".vc_custom_1496068058529{padding-top: 130px !important;padding-bottom: 93px !important;}\" simple_background_color=\"#ffffff\"][vc_column width=\"1/2\" offset=\"vc_col-md-3\"][mkdf_counter type=\"mkdf-zero-counter\" icon_pack=\"linear_icons\" linear_icon=\"lnr-apartment\" title_tag=\"h4\" title_font_weight=\"\" custom_icon_size=\"48\" digit=\"168\" digit_font_size=\"48\" title=\"Success Stories\" icon_color=\"#b0aec0\" icon_margin=\"0 0 22px\"][vc_empty_space height=\"30px\"][/vc_column][vc_column width=\"1/2\" offset=\"vc_col-md-3\"][mkdf_counter type=\"mkdf-zero-counter\" icon_pack=\"linear_icons\" linear_icon=\"lnr-user\" title_tag=\"h4\" title_font_weight=\"\" custom_icon_size=\"48\" digit=\"678\" digit_font_size=\"48\" title=\"Trusted Tutors\" icon_color=\"#b0aec0\" icon_margin=\"0 0 22px\"][vc_empty_space height=\"30px\"][/vc_column][vc_column width=\"1/2\" offset=\"vc_col-md-3\"][mkdf_counter type=\"mkdf-zero-counter\" icon_pack=\"linear_icons\" linear_icon=\"lnr-calendar-full\" title_tag=\"h4\" title_font_weight=\"\" custom_icon_size=\"48\" digit=\"347\" digit_font_size=\"48\" title=\"Scheduled Events\" icon_color=\"#b0aec0\" icon_margin=\"0 0 22px\"][vc_empty_space height=\"30px\"][/vc_column][vc_column width=\"1/2\" offset=\"vc_col-md-3\"][mkdf_counter type=\"mkdf-zero-counter\" icon_pack=\"linear_icons\" linear_icon=\"lnr-laptop-phone\" title_tag=\"h4\" title_font_weight=\"\" custom_icon_size=\"50\" digit=\"1912\" digit_font_size=\"49\" title=\"Available Courses\" icon_color=\"#b0aec0\" icon_margin=\"0 0 20px\"][vc_empty_space height=\"30px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" parallax_background_image=\"161\" css=\".vc_custom_1496068196330{padding-top: 110px !important;padding-bottom: 125px !important;}\" simple_background_color=\"#ffffff\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0px 20% 92px\" item_padding_768_1024=\"0px 10% 92px\" item_padding_680_768=\"0px 0% 92px\" item_padding_680=\"0px 0% 92px\"][mkdf_section_title type=\"standard\" position=\"center\" title_tag=\"h1\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" title=\"Popular Online Courses\" title_color=\"#ffffff\" text=\"Lorem ipsum gravida nibh vel velit auctor aliquetnean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit\" text_color=\"#ffffff\" text_font_size=\"17\"][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_course_slider number_of_columns=\"4\" space_between_items=\"normal\" image_proportions=\"full\" order_by=\"date\" order=\"ASC\" title_tag=\"h5\" enable_excerpt=\"yes\" enable_loop=\"yes\" enable_autoplay=\"yes\" enable_navigation=\"no\" enable_pagination=\"yes\" pagination_skin=\"light\" pagination_position=\"below-slider\" excerpt_length=\"56\" number_of_items=\"12\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" simple_background_color=\"#ffffff\" css=\".vc_custom_1496309239657{padding-top: 130px !important;padding-bottom: 125px !important;}\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0px 15% 0px 0px\" item_padding_1280_1600=\"0px 15% 0px 0px\" item_padding_1024_1280=\"0px 7% 0px 0px\" item_padding_768_1024=\"0px\" item_padding_680_768=\"0px\" item_padding_680=\"0px\"][mkdf_tabs type=\"vertical\"][mkdf_tabs_item content_title_tag=\"h2\" tab_title=\"What We Do\" tab_image=\"865\" tab_content_title=\"Learning Possibilities\" tab_content_description=\"Lorem Ipsn gravida nibh vel velit auctor aliquetn sollicitudirem quibibendum auci elit cons equat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"We enrich lives through learning.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"Maximizing potential through individual attention.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"The trusted name for specialized training.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"People teach. People learn. This is where they connect.\" title_size=\"17\"][/mkdf_tabs_item][mkdf_tabs_item content_title_tag=\"h2\" tab_title=\"Degree Programme\" tab_image=\"911\" tab_content_title=\"Inspiring Minds\" tab_content_description=\"Lorem Ipsn gravida nibh vel velit auctor aliquetn sollicitudirem quibibendum auci elit cons equat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"Maximizing potential through individual attention.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"We enrich lives through learning.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"People teach. People learn. This is where they connect.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"The trusted name for specialized training.\" title_size=\"17\"][/mkdf_tabs_item][mkdf_tabs_item content_title_tag=\"h2\" tab_title=\"Career Achievements\" tab_image=\"914\" tab_content_title=\"Investing in Knowledge\" tab_content_description=\"Lorem Ipsn gravida nibh vel velit auctor aliquetn sollicitudirem quibibendum auci elit cons equat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"We enrich lives through learning.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"Maximizing potential through individual attention.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"The trusted name for specialized training.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"People teach. People learn. This is where they connect.\" title_size=\"17\"][/mkdf_tabs_item][mkdf_tabs_item content_title_tag=\"h2\" tab_title=\"Personal Managment\" tab_image=\"918\" tab_content_title=\"Secure Your Future\" tab_content_description=\"Lorem Ipsn gravida nibh vel velit auctor aliquetn sollicitudirem quibibendum auci elit cons equat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"Maximizing potential through individual attention.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"We enrich lives through learning.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"People teach. People learn. This is where they connect.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"The trusted name for specialized training.\" title_size=\"17\"][/mkdf_tabs_item][mkdf_tabs_item content_title_tag=\"h2\" tab_title=\"Steps To Success\" tab_image=\"925\" tab_content_title=\"Where Learning Begins\" tab_content_description=\"Lorem Ipsn gravida nibh vel velit auctor aliquetn sollicitudirem quibibendum auci elit cons equat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"We enrich lives through learning.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"Maximizing potential through individual attention.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"The trusted name for specialized training.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"People teach. People learn. This is where they connect.\" title_size=\"17\"][/mkdf_tabs_item][mkdf_tabs_item content_title_tag=\"h2\" tab_title=\"Knowledge Transfer\" tab_image=\"928\" tab_content_title=\"Knowledge is Power\" tab_content_description=\"Lorem Ipsn gravida nibh vel velit auctor aliquetn sollicitudirem quibibendum auci elit cons equat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"Maximizing potential through individual attention.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"We enrich lives through learning.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"People teach. People learn. This is where they connect.\" title_size=\"17\"][mkdf_icon_list_item icon_pack=\"font_elegant\" fe_icon=\"icon_check\" icon_size=\"18\" icon_color=\"#d8a64e\" title=\"The trusted name for specialized training.\" title_size=\"17\"][/mkdf_tabs_item][/mkdf_tabs][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row][vc_column][mkdf_separator type=\"full-width\" border_style=\"\" color=\"#ebebeb\" thickness=\"1\" top_margin=\"0px\" bottom_margin=\"0px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" content_text_aligment=\"center\" css=\".vc_custom_1496232771552{padding-top: 100px !important;padding-bottom: 130px !important;}\"][vc_column][mkdf_custom_font title_tag=\"\" font_weight=\"700\" font_style=\"\" text_transform=\"\" text_decoration=\"\" text_align=\"\" title=\" Advising Success.\" font_family=\"Merriweather\" font_size=\"20px\" color=\"#d8a64e\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0px 22% 90px\" item_padding_1024_1280=\"0px 19% 90px\" item_padding_768_1024=\"0px 10% 90px\" item_padding_680_768=\"0px 1% 90px\" item_padding_680=\"0px 0px 90px\"][mkdf_section_title type=\"standard\" position=\"center\" title_tag=\"h1\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" title=\"Community of Learners\" text=\"Lorem Ipsn gravida nibh vel velit auctor aliquetnean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit\" text_font_size=\"17\"][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_masonry_gallery space_between_items=\"no\" order_by=\"date\" order=\"ASC\" category=\"home-1\"][/vc_column][/vc_row][vc_row simple_background_color=\"#ffffff\"][vc_column][mkdf_separator type=\"full-width\" border_style=\"\" color=\"#ebebeb\" thickness=\"1\" top_margin=\"0px\" bottom_margin=\"0px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" content_text_aligment=\"center\" css=\".vc_custom_1496232790191{padding-top: 115px !important;padding-bottom: 100px !important;}\" simple_background_color=\"#ffffff\"][vc_column][mkdf_section_title type=\"standard\" position=\"center\" title_tag=\"h2\" disable_break_words=\"yes\" text_tag=\"\" text_font_weight=\"\" title=\"Top Tutors in Every Subject.\" text=\"Lorem ipsum gravida nibh vel velit auctor aliquetnean sollicitudin,lorem quis bibendum \" text_font_size=\"17\"][vc_empty_space height=\"90px\"][mkdf_instructor_list number_of_columns=\"3\" space_between_items=\"normal\" number_of_items=\"9\" order_by=\"date\" order=\"ASC\" instructor_layout=\"simple\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" content_text_aligment=\"left\" parallax_background_image=\"211\" css=\".vc_custom_1496231789253{padding-top: 100px !important;padding-bottom: 100px !important;}\"][vc_column offset=\"vc_col-md-4\" css=\".vc_custom_1496740160993{margin-top: 0px !important;padding-top: 0px !important;}\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"20px 8% 23px\" background_color=\"#ffffff\" item_padding_768_1024=\"20px 6% 23px\"][vc_column_text]\n<h4 style=\"text-align: center;\">Online Courses for <span style=\"color: #ffd52b;\">Free</span></h4>\n[/vc_column_text][vc_column_text]\n<p style=\"text-align: center;\"><span style=\"color: #b9b9b9;\">The best tutors in town.</span></p>\n[/vc_column_text][vc_empty_space height=\"6px\"][contact-form-7 id=\"4\" html_class=\"cf7_custom_style_2\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column offset=\"vc_col-md-8\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"124px 0 0 7%\" item_padding_768_1024=\"121px 0 0 7% \" item_padding_680_768=\"50px 0 0\" item_padding_680=\"50px 0 0\" item_padding_1024_1280=\"131px 0 0 7%\"][mkdf_section_title type=\"standard\" position=\"left\" title_tag=\"h1\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" title=\"Register Now!\" title_color=\"#ffffff\" text=\"Lorem ipsum gravida nibh vel velit auctor aliquetnean sollicitudin, lorem quis bibendum auci elit consequatipsutis sem nibh id eis sed odio sit amet.\" text_color=\"#ffffff\" text_font_size=\"17\"][vc_empty_space height=\"30px\"][mkdf_countdown type=\"mkdf-inline\" skin=\"mkdf-light-skin\" month=\"7\" day=\"5\" hour=\"9\" minute=\"45\" digit_font_size=\"48\" label_font_size=\"18\" minute_label=\"min\" second_label=\"sec\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row row_content_width=\"grid\" content_text_aligment=\"center\" css=\".vc_custom_1496309608001{padding-top: 110px !important;padding-bottom: 130px !important;}\"][vc_column][mkdf_section_title type=\"standard\" position=\"center\" title_tag=\"h1\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" title=\"Online Courses\" text=\"Lorem ipsum gravida nibh vel velit auctor aliquetnean sollicitudin, lorem quis bibendum \" text_font_size=\"17\"][vc_empty_space height=\"90px\"][mkdf_course_table order_by=\"date\" order=\"ASC\" enable_students=\"no\" selected_courses=\"18, 174, 229, 269, 274\"][/vc_column][/vc_row][vc_row][vc_column][mkdf_separator type=\"full-width\" border_style=\"\" color=\"#ebebeb\" thickness=\"1\" top_margin=\"0px\" bottom_margin=\"0px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" simple_background_color=\"#ffffff\" css=\".vc_custom_1496388030860{padding-top: 60px !important;}\"][vc_column offset=\"vc_col-lg-6\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"51px 0 0\" item_padding_1024_1280=\"51px 0 95px\" item_padding_768_1024=\"51px 15% 0 0\"][mkdf_section_title type=\"standard\" position=\"left\" title_tag=\"h2\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" title=\"From Our Blog\" text=\"Lorem Ipsn gravida nibh vel velit auctor aliquet. Aenean sollicitudinlorem quis bibendum auci elit consequat ipsutis sem\" text_font_size=\"17\"][vc_empty_space height=\"60px\"][mkdf_blog_list type=\"simple\" order_by=\"title\" order=\"ASC\" image_size=\"square\" number_of_posts=\"2\" excerpt_length=\"16\" category=\"culture\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column css=\".vc_custom_1496234862459{padding-top: 30px !important;}\" offset=\"vc_col-lg-6\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" vertical_alignment=\"bottom\" item_padding_1024_1280=\"35px 0 0\"][vc_single_image image=\"1693\" img_size=\"full\" alignment=\"center\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row row_content_width=\"grid\" simple_background_color=\"#fafafa\" css=\".vc_custom_1495791458309{padding-top: 90px !important;padding-bottom: 90px !important;}\"][vc_column][mkdf_clients_carousel number_of_visible_items=\"5\" slider_loop=\"yes\" slider_autoplay=\"yes\" slider_navigation=\"no\" slider_pagination=\"no\" items_hover_animation=\"switch-images\"][mkdf_clients_carousel_item target=\"_self\" image=\"216\" image_size=\"full\" link=\"#\" hover_image=\"1555\"][/mkdf_clients_carousel_item][mkdf_clients_carousel_item target=\"_self\" image=\"217\" image_size=\"full\" link=\"#\" hover_image=\"1563\"][/mkdf_clients_carousel_item][mkdf_clients_carousel_item target=\"_self\" image_size=\"full\" link=\"#\" image=\"218\" hover_image=\"1564\"][/mkdf_clients_carousel_item][mkdf_clients_carousel_item target=\"_self\" image=\"219\" image_size=\"full \" link=\"#\" hover_image=\"1560\"][/mkdf_clients_carousel_item][mkdf_clients_carousel_item target=\"_self\" image=\"220\" image_size=\"full\" link=\"#\" hover_image=\"1561\"][/mkdf_clients_carousel_item][mkdf_clients_carousel_item target=\"_self\" image=\"216\" image_size=\"full\" link=\"#\" hover_image=\"1555\"][/mkdf_clients_carousel_item][mkdf_clients_carousel_item target=\"_self\" image=\"217\" image_size=\"full\" link=\"#\" hover_image=\"1563\"][/mkdf_clients_carousel_item][/mkdf_clients_carousel][/vc_column][/vc_row]','Trang chủ','','inherit','closed','closed','','4124-revision-v1','','','2024-10-24 10:17:15','2024-10-24 10:17:15','',4124,'http://giasuolympia.com/?p=4338',0,'revision','',0),(4340,1,'2024-10-26 10:49:51','2024-10-26 10:49:51','[vc_row row_content_width=\"grid\" content_text_aligment=\"left\" css=\".vc_custom_1497251655285{padding-top: 100px !important;padding-bottom: 83px !important;}\"][vc_column width=\"5/12\" css=\".vc_custom_1496845447068{margin-top: -10px !important;}\"][mkdf_section_title type=\"standard\" position=\"left\" title_tag=\"\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" title=\"Contact Details\" text=\"Lorem Ipsn gravida nibh vel velit auctor aliquetnean sollicitudin, quis bibendum auci elit consequat.\"][vc_empty_space height=\"10px\"][vc_column_text css=\".vc_custom_1496414004648{padding-bottom: 20px !important;}\"]\r\n<h5>New York Office</h5>\r\n[/vc_column_text][mkdf_icon_list_item icon_pack=\"linear_icons\" linear_icon=\"lnr-phone-handset\" icon_size=\"17\" icon_color=\"#545454\" title=\"1-677-124-44227\" title_size=\"12\" title_color=\"#999999\" title_padding=\"25\" item_margin=\"8\"][mkdf_icon_list_item icon_pack=\"linear_icons\" linear_icon=\"lnr-bubble\" icon_size=\"17\" icon_color=\"#545454\" title=\"office@example.com\" title_size=\"12\" title_color=\"#999999\" title_padding=\"25\" item_margin=\"8\"][mkdf_icon_list_item icon_pack=\"linear_icons\" linear_icon=\"lnr-apartment\" icon_size=\"17\" icon_color=\"#545454\" title=\"184 Main Collins Street\" title_size=\"12\" title_color=\"#999999\" title_padding=\"25\" item_margin=\"8\"][mkdf_separator position=\"left\" border_style=\"\" color=\"#eaeaea\" width=\"80%\" thickness=\"1\" top_margin=\"25px\" bottom_margin=\"15px\"][/vc_column][vc_column width=\"7/12\"][contact-form-7 id=\"170\" html_class=\"cf7_custom_style_2\"][/vc_column][/vc_row]','Liên hệ','','inherit','closed','closed','','1863-revision-v1','','','2024-10-26 10:49:51','2024-10-26 10:49:51','',1863,'http://giasuolympia.com/?p=4340',0,'revision','',0),(4341,1,'2024-10-26 11:57:42','2024-10-26 11:57:42','<p>[vc_row row_content_width=\"grid\" content_text_aligment=\"left\" css=\".vc_custom_1497251655285{padding-top: 100px !important;padding-bottom: 83px !important;}\"][vc_column width=\"5/12\" css=\".vc_custom_1496845447068{margin-top: -10px !important;}\"][mkdf_section_title type=\"standard\" position=\"left\" title_tag=\"\" disable_break_words=\"no\" title=\"Chi tiết liên hệ\"][vc_empty_space height=\"10px\"][vc_column_text css=\".vc_custom_1729939874309{padding-bottom: 20px !important;}\"]</p>\n<h5>Văn phòng</h5>\n<p>[/vc_column_text][mkdf_icon_list_item icon_pack=\"linear_icons\" linear_icon=\"lnr-phone-handset\" icon_size=\"17\" icon_color=\"#545454\" title=\"0932010363\" title_size=\"12\" title_color=\"#999999\" title_padding=\"25\" item_margin=\"8\"][mkdf_icon_list_item icon_pack=\"linear_icons\" linear_icon=\"lnr-bubble\" icon_size=\"17\" icon_color=\"#545454\" title=\"office@example.com\" title_size=\"12\" title_color=\"#999999\" title_padding=\"25\" item_margin=\"8\"][mkdf_icon_list_item icon_pack=\"linear_icons\" linear_icon=\"lnr-apartment\" icon_size=\"17\" icon_color=\"#545454\" title=\"277/47 Xô Viết Nghệ Tĩnh, Phường 15, Quận Bình Thạnh\" title_size=\"12\" title_color=\"#999999\" title_padding=\"25\" item_margin=\"8\"][/vc_column][vc_column width=\"7/12\"][contact-form-7 id=\"170\" html_class=\"cf7_custom_style_2\"][/vc_column][/vc_row]</p>\n','Liên hệ','','inherit','closed','closed','','1863-autosave-v1','','','2024-10-26 11:57:42','2024-10-26 11:57:42','',1863,'http://giasuolympia.com/?p=4341',0,'revision','',0),(4342,1,'2024-10-26 10:52:12','2024-10-26 10:52:12','[vc_row row_content_width=\"grid\" content_text_aligment=\"left\" css=\".vc_custom_1497251655285{padding-top: 100px !important;padding-bottom: 83px !important;}\"][vc_column width=\"5/12\" css=\".vc_custom_1496845447068{margin-top: -10px !important;}\"][mkdf_section_title type=\"standard\" position=\"left\" title_tag=\"\" disable_break_words=\"no\" title=\"Chi tiết liên hệ\"][vc_empty_space height=\"10px\"][vc_column_text css=\".vc_custom_1729939874309{padding-bottom: 20px !important;}\"]\r\n<h5>Văn phòng</h5>\r\n[/vc_column_text][mkdf_icon_list_item icon_pack=\"linear_icons\" linear_icon=\"lnr-phone-handset\" icon_size=\"17\" icon_color=\"#545454\" title=\"1-677-124-44227\" title_size=\"12\" title_color=\"#999999\" title_padding=\"25\" item_margin=\"8\"][mkdf_icon_list_item icon_pack=\"linear_icons\" linear_icon=\"lnr-bubble\" icon_size=\"17\" icon_color=\"#545454\" title=\"office@example.com\" title_size=\"12\" title_color=\"#999999\" title_padding=\"25\" item_margin=\"8\"][mkdf_icon_list_item icon_pack=\"linear_icons\" linear_icon=\"lnr-apartment\" icon_size=\"17\" icon_color=\"#545454\" title=\"184 Main Collins Street\" title_size=\"12\" title_color=\"#999999\" title_padding=\"25\" item_margin=\"8\"][/vc_column][vc_column width=\"7/12\"][contact-form-7 id=\"170\" html_class=\"cf7_custom_style_2\"][/vc_column][/vc_row]','Liên hệ','','inherit','closed','closed','','1863-revision-v1','','','2024-10-26 10:52:12','2024-10-26 10:52:12','',1863,'http://giasuolympia.com/?p=4342',0,'revision','',0),(4343,1,'2024-10-26 11:58:42','2024-10-26 11:58:42','[vc_row row_content_width=\"grid\" content_text_aligment=\"left\" css=\".vc_custom_1497251655285{padding-top: 100px !important;padding-bottom: 83px !important;}\"][vc_column width=\"5/12\" css=\".vc_custom_1496845447068{margin-top: -10px !important;}\"][mkdf_section_title type=\"standard\" position=\"left\" title_tag=\"\" disable_break_words=\"no\" title=\"Chi tiết liên hệ\"][vc_empty_space height=\"10px\"][vc_column_text css=\".vc_custom_1729939874309{padding-bottom: 20px !important;}\"]\r\n<h5>Văn phòng</h5>\r\n[/vc_column_text][mkdf_icon_list_item icon_pack=\"linear_icons\" linear_icon=\"lnr-phone-handset\" icon_size=\"17\" icon_color=\"#545454\" title=\"0932010363\" title_size=\"12\" title_color=\"#999999\" title_padding=\"25\" item_margin=\"8\"][mkdf_icon_list_item icon_pack=\"simple_line_icons\" simple_line_icon=\"icon-social-facebook\" icon_size=\"17\" icon_color=\"#545454\" title=\"Giasuolympia\" title_size=\"12\" title_color=\"#999999\" title_padding=\"25\" item_margin=\"8\"][mkdf_icon_list_item icon_pack=\"linear_icons\" linear_icon=\"lnr-apartment\" icon_size=\"17\" icon_color=\"#545454\" title=\"277/47 Xô Viết Nghệ Tĩnh, Phường 15, Quận Bình Thạnh\" title_size=\"12\" title_color=\"#999999\" title_padding=\"25\" item_margin=\"8\"][/vc_column][vc_column width=\"7/12\"][contact-form-7 id=\"170\" html_class=\"cf7_custom_style_2\"][/vc_column][/vc_row]','Liên hệ','','inherit','closed','closed','','1863-revision-v1','','','2024-10-26 11:58:42','2024-10-26 11:58:42','',1863,'http://giasuolympia.com/?p=4343',0,'revision','',0),(4344,1,'2024-10-29 22:17:22','2024-10-29 15:17:22','<p>[vc_row row_content_width=\"grid\" content_text_aligment=\"left\" simple_background_color=\"#ffffff\" css=\".vc_custom_1497446239499{padding-top: 63px !important;padding-bottom: 63px !important;}\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"two-columns\" switch_to_one_column=\"1024\" alignment_one_column=\"left\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 30% 0 0\" item_padding_1024_1280=\"30px 18% 0 0\" item_padding_1280_1600=\"0 18% 0 0\" item_padding_768_1024=\"0 18% 0 0\" item_padding_680_768=\"0 18% 0 0\" item_padding_680=\"0 0% 0 0\"][mkdf_section_title type=\"standard\" position=\"left\" title_tag=\"\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" title=\"Empowering children to reach their potential.\" text=\"Lorem ipsum dolor sit amet, consectetuer adipiscing elit neani commodo ligula eget dolor. Aenean massa. Cum sociis Theme natoque penatibus et magnis dis.\"][vc_empty_space height=\"30px\"][vc_row_inner][vc_column_inner width=\"1/2\"][mkdf_counter type=\"mkdf-zero-counter\" icon_pack=\"font_awesome\" fa_icon=\"\" title_tag=\"\" title_font_weight=\"\" digit=\"168\" title=\"User Stories\"][/vc_column_inner][vc_column_inner width=\"1/2\"][mkdf_counter type=\"mkdf-zero-counter\" icon_pack=\"font_awesome\" fa_icon=\"\" title_tag=\"\" title_font_weight=\"\" digit=\"347\" title=\"Scheduled Events\"][vc_empty_space height=\"58px\"][/vc_column_inner][/vc_row_inner][/mkdf_elements_holder_item][mkdf_elements_holder_item item_width=\"1-1\" horizontal_alignment=\"center\" item_padding_1024_1280=\"0\" item_padding_768_1024=\"0\" item_padding_680_768=\"0\" item_padding_680=\"0\" item_padding=\"37px 0\" item_padding_1280_1600=\"37px 0\"][mkdf_video_button video_link=\"https://vimeo.com/157562616\" video_image=\"1586\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row][vc_column][mkdf_separator type=\"full-width\" border_style=\"\" color=\"#ebebeb\" thickness=\"1\" top_margin=\"-10px\" bottom_margin=\"-10px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1496402409845{padding-top: 81px !important;padding-bottom: 70px !important;}\"][vc_column][mkdf_section_title type=\"standard\" title_tag=\"\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" title=\"Top tutors in every subject.\" title_color=\"#d8a64e\" text=\"Lorem Ipsn gravida nibh vel velit auctor aliquetnean sollicitudin,lorem quis bibendum\"][vc_empty_space height=\"85px\"][mkdf_instructor_list number_of_columns=\"3\" space_between_items=\"normal\" number_of_items=\"9\" order_by=\"date\" order=\"ASC\" instructor_layout=\"simple\" enable_shadow=\"yes\" instructor_background=\"#ffffff\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" content_text_aligment=\"center\" parallax_background_image=\"422\" css=\".vc_custom_1496402470103{padding-top: 100px !important;padding-bottom: 95px !important;}\"][vc_column][mkdf_testimonials type=\"standard\" skin=\"light\" slider_loop=\"yes\" slider_autoplay=\"yes\" slider_navigation=\"no\" slider_pagination=\"yes\" slider_padding=\"no\" number=\"3\" category=\"standard-2\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\"][vc_column offset=\"vc_col-lg-6\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding_1024_1280=\"192px 0 0\" item_padding=\"72px 0 0\" item_padding_1280_1600=\"72px 0 0\" item_padding_768_1024=\"0 0\" item_padding_680_768=\"0 0\" item_padding_680=\"0 0\"][mkdf_single_image enable_image_shadow=\"no\" image=\"1827\" image_size=\"full\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column offset=\"vc_col-lg-6\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding_768_1024=\"70px 0 100px\" item_padding_680_768=\"70px 0 100px\" item_padding_680=\"70px 0 100px\" item_padding=\"72px 0 0\" item_padding_1280_1600=\"72px 0 0\" item_padding_1024_1280=\"72px 0 0\"][vc_column_text css=\".vc_custom_1496329986296{padding-bottom: 20px !important;}\"]</p>\n<h4>FAQs</h4>\n<p>[/vc_column_text][mkdf_accordion][mkdf_accordion_tab title=\"Can I just enroll in a single course?\"][vc_column_text]Lorem ipsum proin gravida velit auctor aliquet. Aenean sollicitu din, lorem auci elit consequat ipsutissem niuis sed odio sit amet a sit amet.[/vc_column_text][/mkdf_accordion_tab][mkdf_accordion_tab title=\"What is the refund policy?\"][vc_column_text]Lorem ipsum proin gravida velit auctor aliquet. Aenean sollicitu din, lorem auci elit consequat ipsutissem niuis sed odio sit amet a sit amet.[/vc_column_text][/mkdf_accordion_tab][mkdf_accordion_tab title=\"What background knowledge is necessary?\"][vc_column_text]Lorem ipsum proin gravida velit auctor aliquet. Aenean sollicitu din, lorem auci elit consequat ipsutissem niuis sed odio sit amet a sit amet.[/vc_column_text][/mkdf_accordion_tab][mkdf_accordion_tab title=\"Do I need to take the courses in a specific order?\"][vc_column_text]Lorem ipsum proin gravida velit auctor aliquet. Aenean sollicitu din, lorem auci elit consequat ipsutissem niuis sed odio sit amet a sit amet.[/vc_column_text][/mkdf_accordion_tab][/mkdf_accordion][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row][vc_column][mkdf_instructor_list space_between_items=\"normal\" order_by=\"date\" order=\"ASC\" instructor_layout=\"info-bellow\"][/vc_column][/vc_row][vc_row][vc_column][mkdf_instructor_slider number_of_columns=\"3\" space_between_items=\"normal\" order_by=\"date\" order=\"ASC\" instructor_layout=\"info-bellow\" slider_navigation=\"yes\" slider_pagination=\"yes\"][/vc_column][/vc_row][vc_row][vc_column][mkdf_instructor_list space_between_items=\"normal\" order_by=\"date\" order=\"ASC\" instructor_layout=\"info-bellow\"][/vc_column][/vc_row]</p>\n','Về chúng tôi','','inherit','closed','closed','','1580-autosave-v1','','','2024-10-29 22:17:22','2024-10-29 15:17:22','',1580,'http://giasuolympia.com/?p=4344',0,'revision','',0),(4345,1,'2024-10-26 13:29:24','2024-10-26 13:29:24','[vc_row row_content_width=\"grid\" content_text_aligment=\"left\" simple_background_color=\"#ffffff\" css=\".vc_custom_1497446239499{padding-top: 63px !important;padding-bottom: 63px !important;}\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"two-columns\" switch_to_one_column=\"1024\" alignment_one_column=\"left\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 30% 0 0\" item_padding_1024_1280=\"30px 18% 0 0\" item_padding_1280_1600=\"0 18% 0 0\" item_padding_768_1024=\"0 18% 0 0\" item_padding_680_768=\"0 18% 0 0\" item_padding_680=\"0 0% 0 0\"][mkdf_section_title type=\"standard\" position=\"left\" title_tag=\"\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" title=\"Empowering children to reach their potential.\" text=\"Lorem ipsum dolor sit amet, consectetuer adipiscing elit neani commodo ligula eget dolor. Aenean massa. Cum sociis Theme natoque penatibus et magnis dis.\"][vc_empty_space height=\"35px\"][vc_row_inner][vc_column_inner width=\"1/2\"][mkdf_counter type=\"mkdf-zero-counter\" icon_pack=\"font_awesome\" fa_icon=\"\" title_tag=\"\" title_font_weight=\"\" digit=\"168\" title=\"User Stories\"][/vc_column_inner][vc_column_inner width=\"1/2\"][mkdf_counter type=\"mkdf-zero-counter\" icon_pack=\"font_awesome\" fa_icon=\"\" title_tag=\"\" title_font_weight=\"\" digit=\"347\" title=\"Scheduled Events\"][vc_empty_space height=\"58px\"][/vc_column_inner][/vc_row_inner][/mkdf_elements_holder_item][mkdf_elements_holder_item item_width=\"1-1\" horizontal_alignment=\"center\" item_padding_1024_1280=\"0\" item_padding_768_1024=\"0\" item_padding_680_768=\"0\" item_padding_680=\"0\" item_padding=\"37px 0\" item_padding_1280_1600=\"37px 0\"][mkdf_video_button video_link=\"https://vimeo.com/157562616\" video_image=\"1586\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row][vc_column][mkdf_separator type=\"full-width\" border_style=\"\" color=\"#ebebeb\" thickness=\"1\" top_margin=\"-10px\" bottom_margin=\"-10px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1496402409845{padding-top: 81px !important;padding-bottom: 70px !important;}\"][vc_column][mkdf_section_title type=\"standard\" title_tag=\"\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" title=\"Top tutors in every subject.\" title_color=\"#d8a64e\" text=\"Lorem Ipsn gravida nibh vel velit auctor aliquetnean sollicitudin,lorem quis bibendum\"][vc_empty_space height=\"85px\"][mkdf_instructor_list number_of_columns=\"3\" space_between_items=\"normal\" number_of_items=\"9\" order_by=\"date\" order=\"ASC\" instructor_layout=\"simple\" enable_shadow=\"yes\" instructor_background=\"#ffffff\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" content_text_aligment=\"center\" parallax_background_image=\"422\" css=\".vc_custom_1496402470103{padding-top: 100px !important;padding-bottom: 95px !important;}\"][vc_column][mkdf_testimonials type=\"standard\" skin=\"light\" slider_loop=\"yes\" slider_autoplay=\"yes\" slider_navigation=\"no\" slider_pagination=\"yes\" slider_padding=\"no\" number=\"3\" category=\"standard-2\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\"][vc_column offset=\"vc_col-lg-6\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding_1024_1280=\"192px 0 0\" item_padding=\"72px 0 0\" item_padding_1280_1600=\"72px 0 0\" item_padding_768_1024=\"0 0\" item_padding_680_768=\"0 0\" item_padding_680=\"0 0\"][mkdf_single_image enable_image_shadow=\"no\" image=\"1827\" image_size=\"full\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column offset=\"vc_col-lg-6\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding_768_1024=\"70px 0 100px\" item_padding_680_768=\"70px 0 100px\" item_padding_680=\"70px 0 100px\" item_padding=\"72px 0 0\" item_padding_1280_1600=\"72px 0 0\" item_padding_1024_1280=\"72px 0 0\"][vc_column_text css=\".vc_custom_1496329986296{padding-bottom: 20px !important;}\"]\r\n<h4>FAQs</h4>\r\n[/vc_column_text][mkdf_accordion][mkdf_accordion_tab title=\"Can I just enroll in a single course?\"][vc_column_text]Lorem ipsum proin gravida velit auctor aliquet. Aenean sollicitu din, lorem auci elit consequat ipsutissem niuis sed odio sit amet a sit amet.[/vc_column_text][/mkdf_accordion_tab][mkdf_accordion_tab title=\"What is the refund policy?\"][vc_column_text]Lorem ipsum proin gravida velit auctor aliquet. Aenean sollicitu din, lorem auci elit consequat ipsutissem niuis sed odio sit amet a sit amet.[/vc_column_text][/mkdf_accordion_tab][mkdf_accordion_tab title=\"What background knowledge is necessary?\"][vc_column_text]Lorem ipsum proin gravida velit auctor aliquet. Aenean sollicitu din, lorem auci elit consequat ipsutissem niuis sed odio sit amet a sit amet.[/vc_column_text][/mkdf_accordion_tab][mkdf_accordion_tab title=\"Do I need to take the courses in a specific order?\"][vc_column_text]Lorem ipsum proin gravida velit auctor aliquet. Aenean sollicitu din, lorem auci elit consequat ipsutissem niuis sed odio sit amet a sit amet.[/vc_column_text][/mkdf_accordion_tab][/mkdf_accordion][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row][vc_column][mkdf_instructor_list space_between_items=\"normal\" order_by=\"date\" order=\"ASC\" instructor_layout=\"info-bellow\"][/vc_column][/vc_row][vc_row][vc_column][mkdf_instructor_slider number_of_columns=\"3\" space_between_items=\"normal\" order_by=\"date\" order=\"ASC\" instructor_layout=\"info-bellow\" slider_navigation=\"yes\" slider_pagination=\"yes\"][/vc_column][/vc_row][vc_row][vc_column][mkdf_instructor_list space_between_items=\"normal\" order_by=\"date\" order=\"ASC\" instructor_layout=\"info-bellow\"][/vc_column][/vc_row]','Về chúng tôi','','inherit','closed','closed','','1580-revision-v1','','','2024-10-26 13:29:24','2024-10-26 13:29:24','',1580,'http://giasuolympia.com/?p=4345',0,'revision','',0),(4355,1,'2024-10-26 22:10:46','2024-10-26 15:10:46','a:8:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:9:\"post_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:10:\"instructor\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";s:12:\"show_in_rest\";i:0;}','Thông tin gia sư','thong-tin-gia-su','publish','closed','closed','','group_671d014aac69d','','','2024-10-27 15:19:59','2024-10-27 08:19:59','',0,'http://giasuolympia.com/?post_type=acf-field-group&#038;p=4355',0,'acf-field-group','',0),(4356,1,'2024-10-26 22:10:46','2024-10-26 15:10:46','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:1;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Tỉnh/Thành dạy','tinh-thanh','publish','closed','closed','','field_671d014bdb03b','','','2024-10-26 22:13:42','2024-10-26 15:13:42','',4355,'http://giasuolympia.com/?post_type=acf-field&#038;p=4356',0,'acf-field','',0),(4358,1,'2024-10-26 22:10:46','2024-10-26 15:10:46','a:15:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:6:\"select\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"choices\";a:2:{s:3:\"Nam\";s:3:\"Nam\";s:4:\"Nữ\";s:4:\"Nữ\";}s:13:\"default_value\";s:3:\"Nam\";s:13:\"return_format\";s:5:\"value\";s:8:\"multiple\";i:0;s:10:\"allow_null\";i:0;s:17:\"allow_in_bindings\";i:0;s:2:\"ui\";i:0;s:4:\"ajax\";i:0;s:11:\"placeholder\";s:0:\"\";}','Giới tính','gioi_tinh','publish','closed','closed','','field_671d02c9db03d','','','2024-10-26 22:34:17','2024-10-26 15:34:17','',4355,'http://giasuolympia.com/?post_type=acf-field&#038;p=4358',1,'acf-field','',0),(4359,1,'2024-10-26 22:10:46','2024-10-26 15:10:46','a:15:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:6:\"select\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"choices\";a:3:{s:10:\"Miền Nam\";s:10:\"Miền Nam\";s:12:\"Miền Trung\";s:12:\"Miền Trung\";s:12:\"Miền Bắc\";s:12:\"Miền Bắc\";}s:13:\"default_value\";s:10:\"Miền Nam\";s:13:\"return_format\";s:5:\"value\";s:8:\"multiple\";i:0;s:10:\"allow_null\";i:0;s:17:\"allow_in_bindings\";i:0;s:2:\"ui\";i:0;s:4:\"ajax\";i:0;s:11:\"placeholder\";s:0:\"\";}','Giọng nói','giong_noi','publish','closed','closed','','field_671d0316db03e','','','2024-10-26 22:34:17','2024-10-26 15:34:17','',4355,'http://giasuolympia.com/?post_type=acf-field&#038;p=4359',2,'acf-field','',0),(4360,1,'2024-10-26 22:10:46','2024-10-26 15:10:46','a:10:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:11:\"date_picker\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:14:\"display_format\";s:5:\"d/m/Y\";s:13:\"return_format\";s:5:\"d/m/Y\";s:9:\"first_day\";i:1;s:17:\"allow_in_bindings\";i:0;}','Ngày sinh','ngay_sinh','publish','closed','closed','','field_671d0463db03f','','','2024-10-26 22:34:17','2024-10-26 15:34:17','',4355,'http://giasuolympia.com/?post_type=acf-field&#038;p=4360',3,'acf-field','',0),(4361,1,'2024-10-26 22:10:46','2024-10-26 15:10:46','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Số CCCD','cccd','publish','closed','closed','','field_671d04a0db040','','','2024-10-26 22:34:18','2024-10-26 15:34:18','',4355,'http://giasuolympia.com/?post_type=acf-field&#038;p=4361',4,'acf-field','',0),(4362,1,'2024-10-26 22:10:46','2024-10-26 15:10:46','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Nơi cấp','noi_cap_cccd','publish','closed','closed','','field_671d04b4db041','','','2024-10-26 22:34:18','2024-10-26 15:34:18','',4355,'http://giasuolympia.com/?post_type=acf-field&#038;p=4362',5,'acf-field','',0),(4363,1,'2024-10-26 22:10:46','2024-10-26 15:10:46','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Địa chỉ','dia_chi','publish','closed','closed','','field_671d04ccdb042','','','2024-10-26 22:34:18','2024-10-26 15:34:18','',4355,'http://giasuolympia.com/?post_type=acf-field&#038;p=4363',6,'acf-field','',0),(4364,1,'2024-10-26 22:10:46','2024-10-26 15:10:46','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Email','emailAddress','publish','closed','closed','','field_671d04f7db043','','','2024-10-26 22:34:18','2024-10-26 15:34:18','',4355,'http://giasuolympia.com/?post_type=acf-field&#038;p=4364',7,'acf-field','',0),(4365,1,'2024-10-26 22:10:46','2024-10-26 15:10:46','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Điện thoại','dien_thoai','publish','closed','closed','','field_671d0541db044','','','2024-10-26 22:34:18','2024-10-26 15:34:18','',4355,'http://giasuolympia.com/?post_type=acf-field&#038;p=4365',8,'acf-field','',0),(4366,1,'2024-10-26 22:10:46','2024-10-26 15:10:46','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Ngành học','nganh_hoc','publish','closed','closed','','field_671d0581db045','','','2024-10-26 22:34:18','2024-10-26 15:34:18','',4355,'http://giasuolympia.com/?post_type=acf-field&#038;p=4366',10,'acf-field','',0),(4367,1,'2024-10-26 22:10:46','2024-10-26 15:10:46','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Năm tốt nghiệp','nam_tot_nghiep','publish','closed','closed','','field_671d05b1db046','','','2024-10-26 22:34:18','2024-10-26 15:34:18','',4355,'http://giasuolympia.com/?post_type=acf-field&#038;p=4367',11,'acf-field','',0),(4368,1,'2024-10-26 22:10:46','2024-10-26 15:10:46','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Yêu cầu khác','yeu_cau_khac','publish','closed','closed','','field_671d05cadb047','','','2024-10-27 15:19:59','2024-10-27 08:19:59','',4355,'http://giasuolympia.com/?post_type=acf-field&#038;p=4368',17,'acf-field','',0),(4369,1,'2024-10-26 22:10:46','2024-10-26 15:10:46','a:15:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:6:\"select\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"choices\";a:7:{i:1;s:1:\"1\";i:2;s:1:\"2\";i:3;s:1:\"3\";i:4;s:1:\"4\";i:5;s:1:\"5\";i:6;s:1:\"6\";i:7;s:1:\"7\";}s:13:\"default_value\";i:1;s:13:\"return_format\";s:5:\"value\";s:8:\"multiple\";i:0;s:10:\"allow_null\";i:0;s:17:\"allow_in_bindings\";i:0;s:2:\"ui\";i:0;s:4:\"ajax\";i:0;s:11:\"placeholder\";s:0:\"\";}','Số buổi dạy','so_buoi_day','publish','closed','closed','','field_671d05f8db048','','','2024-10-27 15:19:59','2024-10-27 08:19:59','',4355,'http://giasuolympia.com/?post_type=acf-field&#038;p=4369',15,'acf-field','',0),(4370,1,'2024-10-26 22:10:46','2024-10-26 15:10:46','a:14:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:6:\"number\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:3:\"min\";i:0;s:3:\"max\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:4:\"step\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Mức lương yêu cầu','muc_luong_yeu_cau','publish','closed','closed','','field_671d0634db049','','','2024-10-27 15:19:59','2024-10-27 08:19:59','',4355,'http://giasuolympia.com/?post_type=acf-field&#038;p=4370',16,'acf-field','',0),(4371,1,'2024-10-26 22:26:36','2024-10-26 15:26:36','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Trường học','truong_học','publish','closed','closed','','field_671d09e51ada8','','','2024-10-26 22:34:18','2024-10-26 15:34:18','',4355,'http://giasuolympia.com/?post_type=acf-field&#038;p=4371',9,'acf-field','',0),(4372,1,'2024-10-26 22:26:36','2024-10-26 15:26:36','a:15:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:6:\"select\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"choices\";a:3:{s:11:\"Giáo viên\";s:11:\"Giáo viên\";s:10:\"Sinh viên\";s:10:\"Sinh viên\";s:19:\"Đã tốt nghiệp\";s:19:\"Đã tốt nghiệp\";}s:13:\"default_value\";s:19:\"Đã tốt nghiệp\";s:13:\"return_format\";s:5:\"value\";s:8:\"multiple\";i:0;s:10:\"allow_null\";i:0;s:17:\"allow_in_bindings\";i:0;s:2:\"ui\";i:0;s:4:\"ajax\";i:0;s:11:\"placeholder\";s:0:\"\";}','Nghề nghiệp','nghe_nghiep','publish','closed','closed','','field_671d09451ada6','','','2024-10-26 22:34:18','2024-10-26 15:34:18','',4355,'http://giasuolympia.com/?post_type=acf-field&#038;p=4372',12,'acf-field','',0),(4373,1,'2024-10-26 22:26:36','2024-10-26 15:26:36','a:15:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:6:\"select\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"choices\";a:7:{s:11:\"Cao đẳng\";s:11:\"Cao đẳng\";s:12:\"Đại học\";s:12:\"Đại học\";s:10:\"Cử nhân\";s:10:\"Cử nhân\";s:10:\"Thạc sĩ\";s:10:\"Thạc sĩ\";s:10:\"Tiến sĩ\";s:10:\"Tiến sĩ\";s:8:\"Kỹ sư\";s:8:\"Kỹ sư\";s:5:\"Khác\";s:5:\"Khác\";}s:13:\"default_value\";s:12:\"Đại học\";s:13:\"return_format\";s:5:\"value\";s:8:\"multiple\";i:0;s:10:\"allow_null\";i:0;s:17:\"allow_in_bindings\";i:0;s:2:\"ui\";i:0;s:4:\"ajax\";i:0;s:11:\"placeholder\";s:0:\"\";}','Trình độ','trinh_do','publish','closed','closed','','field_671d09971ada7','','','2024-10-26 22:34:18','2024-10-26 15:34:18','',4355,'http://giasuolympia.com/?post_type=acf-field&#038;p=4373',13,'acf-field','',0),(4374,1,'2024-10-26 22:33:29','2024-10-26 15:33:29','Có 2 năm kinh nghiệp làm teaching assistant trên ĐH, là nghiên cứu sinh','Ngô Tuấn Khải','','inherit','closed','closed','','110-autosave-v1','','','2024-10-26 22:33:29','2024-10-26 15:33:29','',110,'http://giasuolympia.com/?p=4374',0,'revision','',0),(4375,1,'2024-10-26 22:37:30','2024-10-26 15:37:30','a:15:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:6:\"select\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"choices\";a:7:{s:5:\"Toán\";s:5:\"Toán\";s:3:\"Lý\";s:3:\"Lý\";s:4:\"Hóa\";s:4:\"Hóa\";s:4:\"Sinh\";s:4:\"Sinh\";s:4:\"Văn\";s:4:\"Văn\";s:11:\"Tiếng Anh\";s:11:\"Tiếng Anh\";s:14:\"Tiếng Việt\";s:14:\"Tiếng Việt\";}s:13:\"default_value\";a:0:{}s:13:\"return_format\";s:5:\"value\";s:8:\"multiple\";i:1;s:10:\"allow_null\";i:0;s:17:\"allow_in_bindings\";i:0;s:2:\"ui\";i:0;s:4:\"ajax\";i:0;s:11:\"placeholder\";s:0:\"\";}','Môn dạy','mon_day','publish','closed','closed','','field_671d0c5dd2877','','','2024-10-27 15:19:59','2024-10-27 08:19:59','',4355,'http://giasuolympia.com/?post_type=acf-field&#038;p=4375',14,'acf-field','',0),(4378,1,'2024-10-26 23:15:20','2024-10-26 16:15:20','','Gia sư','','inherit','closed','closed','','3-revision-v1','','','2024-10-26 23:15:20','2024-10-26 16:15:20','',3,'http://giasuolympia.com/?p=4378',0,'revision','',0),(4380,1,'2024-10-26 23:32:53','2024-10-26 16:32:53','','Chính sách bảo mật','','inherit','closed','closed','','3-revision-v1','','','2024-10-26 23:32:53','2024-10-26 16:32:53','',3,'http://giasuolympia.com/?p=4380',0,'revision','',0),(4381,1,'2024-10-27 00:01:13','0000-00-00 00:00:00',' ','','','draft','closed','closed','','','','','2024-10-27 00:01:13','0000-00-00 00:00:00','',289,'http://giasuolympia.com/?p=4381',1,'nav_menu_item','',0),(4383,1,'2024-10-27 10:25:53','2024-10-27 03:25:53','Học sinh chuyên toán','Vũ Tùng Lâm','','inherit','closed','closed','','109-autosave-v1','','','2024-10-27 10:25:53','2024-10-27 03:25:53','',109,'http://giasuolympia.com/?p=4383',0,'revision','',0),(4384,1,'2024-10-27 10:32:54','2024-10-27 03:32:54','Sinh viên chuyên chuyên Toán và Hóa','Trần Thị Minh Anh','','inherit','closed','closed','','108-autosave-v1','','','2024-10-27 10:32:54','2024-10-27 03:32:54','',108,'http://giasuolympia.com/?p=4384',0,'revision','',0),(4385,1,'2024-10-27 10:47:13','2024-10-27 03:47:13','Có 3 năm kinh nghiệm giá sư dạy toán và KHTN cấp 2. Hiện đang học thêm chứng chỉ KHTN nên phụ huynh cứ yên tâm về trình độ và chất lượng dạy học của giáo viên','Nguyễn Thị Phương Loan','','inherit','closed','closed','','106-autosave-v1','','','2024-10-27 10:47:13','2024-10-27 03:47:13','',106,'http://giasuolympia.com/?p=4385',0,'revision','',0),(4386,1,'2024-10-27 13:18:56','2024-10-27 06:18:56','Có 2 năm kinh nghiệm dạy kèm, đang có quỹ thời gian thoải mái','Trần Thành Đạt','','inherit','closed','closed','','105-autosave-v1','','','2024-10-27 13:18:56','2024-10-27 06:18:56','',105,'http://giasuolympia.com/?p=4386',0,'revision','',0),(4387,1,'2024-10-27 13:23:19','2024-10-27 06:23:19','Gia sư đã có 8 năm kinh nghiệm dạy tiếng Anh cho các bé từ lớp 4 đến lớp 10.','Bùi Thị Bích Nhung','','inherit','closed','closed','','104-autosave-v1','','','2024-10-27 13:23:19','2024-10-27 06:23:19','',104,'http://giasuolympia.com/?p=4387',0,'revision','',0),(4388,1,'2024-10-27 13:26:06','2024-10-27 06:26:06','[vc_row css=\".vc_custom_1496847403831{margin-left: 0px !important;padding-bottom: 100px !important;}\"][vc_column css=\".vc_custom_1496056851543{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-right: 7% !important;padding-bottom: 15px !important;padding-left: 7% !important;background-color: #ffffff !important;border-left-color: #e5e5e5 !important;border-left-style: solid !important;border-right-color: #e5e5e5 !important;border-right-style: solid !important;border-top-color: #e5e5e5 !important;border-top-style: solid !important;border-bottom-color: #e5e5e5 !important;border-bottom-style: solid !important;}\" offset=\"vc_col-lg-7 vc_col-md-8\"][vc_column_text]\n<h4>Hello! This is my story.</h4>\n[/vc_column_text][vc_empty_space height=\"23px\"][vc_column_text]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non  mauris vitae erat consequat auctor eu in elit.[/vc_column_text][vc_empty_space height=\"27px\"][vc_column_text]Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum fermentum.[/vc_column_text][vc_empty_space height=\"37px\"][mkdf_image_gallery type=\"grid\" enable_image_shadow=\"no\" number_of_columns=\"three\" space_between_columns=\"normal\" images=\"95,98,96\" image_size=\"full\"][/vc_column][vc_column css=\".vc_custom_1495708322135{margin-top: -27px !important;}\" offset=\"vc_col-lg-5 vc_col-md-4\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0px 0px 0px 10%\" item_padding_768_1024=\"0px 0px 0px 10%\" item_padding_680_768=\"100px 0px 0\" item_padding_680=\"100px 0px 0\" item_padding_1280_1600=\"0px 0px 0px 10%\" item_padding_1024_1280=\"0px 0px 0px 10%\"][mkdf_education_timeline_holder title=\"My Education\"][mkdf_education_timeline_item title=\"Harvard University\" subtitle=\"MBA from Harvard Business School (2007)\"][mkdf_education_timeline_item title=\"Harvard University \" subtitle=\"BBA (2009)\"][mkdf_education_timeline_item title=\"Harvard University\" subtitle=\"Section UX &amp; UI design (2011)\"][/mkdf_education_timeline_holder][mkdf_education_timeline_holder title=\"My Experience\"][mkdf_education_timeline_item title=\"Microsoft\" subtitle=\"Project Manager\"][mkdf_education_timeline_item title=\"Self - employed\" subtitle=\"Professor and Consultant\"][/mkdf_education_timeline_holder][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row]','Nguyễn Hoàng Gia Linh','','inherit','closed','closed','','103-autosave-v1','','','2024-10-27 13:26:06','2024-10-27 06:26:06','',103,'http://giasuolympia.com/?p=4388',0,'revision','',0),(4389,1,'2024-10-27 13:32:05','2024-10-27 06:32:05','- Có kinh nghiệm 3 năm đứng lớp tại trường THPT Trương Vĩnh Ký (tp.HCM)\n- Có kinh nghiệm giảng dạy, cải thiện kết quả học tập cho HS, đặc biệt là HS có học lực trung bình-khá, chậm trong Đọc-hiểu và Làm văn.\n- Có tính kỷ luật cao trong công việc,','Nguyễn Thu Trang','','inherit','closed','closed','','101-autosave-v1','','','2024-10-27 13:32:05','2024-10-27 06:32:05','',101,'http://giasuolympia.com/?p=4389',0,'revision','',0),(4390,1,'2024-10-27 13:35:29','2024-10-27 06:35:29','Có 5 năm kinh nghiệm giảng dạy.','Trần Văn Minh','','inherit','closed','closed','','10-autosave-v1','','','2024-10-27 13:35:29','2024-10-27 06:35:29','',10,'http://giasuolympia.com/?p=4390',0,'revision','',0),(4391,1,'2024-10-27 15:17:33','2024-10-27 08:17:33','a:8:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:9:\"post_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:6:\"course\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";s:12:\"show_in_rest\";i:0;}','Thông tin khóa học','thong-tin-khoa-hoc','publish','closed','closed','','group_671debb5e098e','','','2024-10-27 16:03:48','2024-10-27 09:03:48','',0,'http://giasuolympia.com/?post_type=acf-field-group&#038;p=4391',0,'acf-field-group','',0),(4393,1,'2024-10-27 15:02:11','2024-10-27 08:02:11','Sinh viên Nam, Nữ','Lớp 11','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in.','inherit','closed','closed','','269-autosave-v1','','','2024-10-27 15:02:11','2024-10-27 08:02:11','',269,'http://giasuolympia.com/?p=4393',0,'revision','',0),(4394,1,'2024-10-27 15:17:33','2024-10-27 08:17:33','a:15:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:6:\"select\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"choices\";a:7:{s:5:\"Toán\";s:5:\"Toán\";s:3:\"Lý\";s:3:\"Lý\";s:4:\"Hóa\";s:4:\"Hóa\";s:4:\"Sinh\";s:4:\"Sinh\";s:4:\"Văn\";s:4:\"Văn\";s:11:\"Tiếng Anh\";s:11:\"Tiếng Anh\";s:14:\"Tiếng Việt\";s:14:\"Tiếng Việt\";}s:13:\"default_value\";a:0:{}s:13:\"return_format\";s:5:\"value\";s:8:\"multiple\";i:1;s:10:\"allow_null\";i:0;s:17:\"allow_in_bindings\";i:0;s:2:\"ui\";i:0;s:4:\"ajax\";i:0;s:11:\"placeholder\";s:0:\"\";}','Môn dạy','mon_day','publish','closed','closed','','field_671debb6407ac','','','2024-10-27 16:03:48','2024-10-27 09:03:48','',4391,'http://giasuolympia.com/?post_type=acf-field&#038;p=4394',0,'acf-field','',0),(4395,1,'2024-10-27 15:17:33','2024-10-27 08:17:33','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Địa chỉ','dia_chi','publish','closed','closed','','field_671df5af407ad','','','2024-10-27 15:17:33','2024-10-27 08:17:33','',4391,'http://giasuolympia.com/?post_type=acf-field&p=4395',1,'acf-field','',0),(4396,1,'2024-10-27 15:17:33','2024-10-27 08:17:33','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Tỉnh/thành phố','tinh_thanh','publish','closed','closed','','field_671df5c8407ae','','','2024-10-27 15:17:33','2024-10-27 08:17:33','',4391,'http://giasuolympia.com/?post_type=acf-field&p=4396',2,'acf-field','',0),(4397,1,'2024-10-27 15:17:33','2024-10-27 08:17:33','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Quận/huyện','quan_huyen','publish','closed','closed','','field_671df5e2407af','','','2024-10-27 15:17:33','2024-10-27 08:17:33','',4391,'http://giasuolympia.com/?post_type=acf-field&p=4397',3,'acf-field','',0),(4398,1,'2024-10-27 15:17:33','2024-10-27 08:17:33','a:14:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:6:\"number\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:3:\"min\";i:0;s:3:\"max\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:4:\"step\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Mức lương','muc_luong','publish','closed','closed','','field_671df633407b0','','','2024-10-27 15:25:35','2024-10-27 08:25:35','',4391,'http://giasuolympia.com/?post_type=acf-field&#038;p=4398',4,'acf-field','',0),(4399,1,'2024-10-27 15:17:33','2024-10-27 08:17:33','a:14:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:6:\"number\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";i:1;s:3:\"min\";i:1;s:3:\"max\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:4:\"step\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Số buổi','so_buoi','publish','closed','closed','','field_671df659407b1','','','2024-10-27 15:17:33','2024-10-27 08:17:33','',4391,'http://giasuolympia.com/?post_type=acf-field&p=4399',5,'acf-field','',0),(4400,1,'2024-10-27 15:17:33','2024-10-27 08:17:33','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Thời gian dạy','thoi_gian_day','publish','closed','closed','','field_671df67a407b2','','','2024-10-27 15:17:33','2024-10-27 08:17:33','',4391,'http://giasuolympia.com/?post_type=acf-field&p=4400',6,'acf-field','',0),(4402,1,'2024-10-31 22:19:45','2024-10-31 15:19:45','<p>[vc_row row_content_width=\"grid\" css=\".vc_custom_1730345417201{padding-top: 40px !important;padding-bottom: 20px !important;}\" simple_background_color=\"#ffffff\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0px 20% 0px\" item_padding_768_1024=\"0px 10% 0px\" item_padding_680_768=\"0px 0% 0px\" item_padding_680=\"0px 0% 0px\"][mkdf_section_title type=\"standard\" position=\"center\" title_tag=\"h1\" disable_break_words=\"no\" title=\"Các lớp học trực tuyến phổ biến\" title_color=\"#000000\"][vc_empty_space height=\"30px\"][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_course_slider number_of_columns=\"4\" space_between_items=\"normal\" image_proportions=\"full\" order_by=\"date\" order=\"ASC\" title_tag=\"h5\" enable_price=\"no\" enable_excerpt=\"yes\" enable_students=\"no\" enable_loop=\"yes\" enable_autoplay=\"yes\" enable_navigation=\"no\" enable_pagination=\"yes\" pagination_skin=\"light\" pagination_position=\"below-slider\" excerpt_length=\"56\" number_of_items=\"12\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" content_text_aligment=\"center\" css=\".vc_custom_1730345448501{padding-top: 20px !important;padding-bottom: 10px !important;}\" simple_background_color=\"#ffffff\"][vc_column][mkdf_section_title type=\"standard\" position=\"center\" title_tag=\"h2\" disable_break_words=\"yes\" title=\"Gia sư hàng đầu\"][vc_empty_space height=\"30px\"][mkdf_instructor_list number_of_columns=\"3\" space_between_items=\"normal\" number_of_items=\"9\" order_by=\"date\" order=\"ASC\" instructor_layout=\"simple\" enable_shadow=\"no\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" content_text_aligment=\"center\" css=\".vc_custom_1730345941548{padding-top: 20px !important;padding-bottom: 30px !important;}\"][vc_column][mkdf_section_title type=\"standard\" position=\"center\" title_tag=\"h1\" disable_break_words=\"no\" title=\"Các lớp học trực tuyến\"][vc_empty_space height=\"30px\"][mkdf_course_table order_by=\"date\" order=\"ASC\" enable_students=\"no\" selected_courses=\"18, 174, 229, 269, 274\"][/vc_column][/vc_row]</p>\n','Trang chủ','','inherit','closed','closed','','4124-autosave-v1','','','2024-10-31 22:19:45','2024-10-31 15:19:45','',4124,'http://giasuolympia.com/?p=4402',0,'revision','',0),(4403,1,'2024-10-27 17:02:06','2024-10-27 10:02:06','[vc_row css=\".vc_custom_1495809860309{padding-bottom: 68px !important;}\"][vc_column][mkdf_course_list number_of_columns=\"3\" space_between_items=\"normal\" number_of_items=\"9\" order_by=\"date\" order=\"ASC\" filter=\"yes\"][/vc_column][/vc_row]','Tất cả khóa học','','inherit','closed','closed','','306-revision-v1','','','2024-10-27 17:02:06','2024-10-27 10:02:06','',306,'http://giasuolympia.com/?p=4403',0,'revision','',0),(4404,1,'2024-10-27 17:04:12','2024-10-27 10:04:12','<p>[vc_row css=\".vc_custom_1495809860309{padding-bottom: 68px !important;}\"][vc_column][mkdf_course_list number_of_columns=\"3\" space_between_items=\"normal\" number_of_items=\"9\" order_by=\"date\" order=\"ASC\" pagination_type=\"standard\" filter=\"yes\"][/vc_column][/vc_row]</p>\n','Tất cả khóa học','','inherit','closed','closed','','306-autosave-v1','','','2024-10-27 17:04:12','2024-10-27 10:04:12','',306,'http://giasuolympia.com/?p=4404',0,'revision','',0),(4405,1,'2024-10-27 17:05:01','2024-10-27 10:05:01','[vc_row css=\".vc_custom_1495809860309{padding-bottom: 68px !important;}\"][vc_column][mkdf_course_list number_of_columns=\"3\" space_between_items=\"normal\" number_of_items=\"9\" order_by=\"date\" order=\"ASC\" pagination_type=\"infinite-scroll\" filter=\"yes\"][/vc_column][/vc_row]','Tất cả khóa học','','inherit','closed','closed','','306-revision-v1','','','2024-10-27 17:05:01','2024-10-27 10:05:01','',306,'http://giasuolympia.com/?p=4405',0,'revision','',0),(4407,1,'2024-10-27 18:20:39','2024-10-27 10:15:41',' ','','','publish','closed','closed','','khoa-hoc-moi','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',289,'http://giasuolympia.com/?p=4407',16,'nav_menu_item','',0),(4408,1,'2024-10-27 17:25:22','2024-10-27 10:25:22','<p>[vc_row content_text_aligment=\"center\" css=\".vc_custom_1495807738968{padding-top: 122px !important;padding-bottom: 68px !important;}\"][vc_column][vc_column_text][/vc_column_text][vc_empty_space height=\"86px\"][mkdf_course_list number_of_columns=\"4\" space_between_items=\"normal\" number_of_items=\"12\" order_by=\"date\" order=\"ASC\"][/vc_column][/vc_row]</p>\n','Khóa học mới','','inherit','closed','closed','','291-autosave-v1','','','2024-10-27 17:25:22','2024-10-27 10:25:22','',291,'http://giasuolympia.com/?p=4408',0,'revision','',0),(4409,1,'2024-10-27 17:19:47','2024-10-27 10:19:47','[vc_row content_text_aligment=\"center\" css=\".vc_custom_1495807738968{padding-top: 122px !important;padding-bottom: 68px !important;}\"][vc_column][vc_column_text]\r\n<h4><span style=\"color: #d8a64e; font-size: 20px;\">Online courses</span></h4>\r\n[/vc_column_text][vc_column_text]\r\n<h2>We Found 12 Courses for you</h2>\r\n[/vc_column_text][vc_empty_space height=\"86px\"][mkdf_course_list number_of_columns=\"4\" space_between_items=\"normal\" order_by=\"date\" order=\"ASC\"][/vc_column][/vc_row]','Khóa học mới','','inherit','closed','closed','','291-revision-v1','','','2024-10-27 17:19:47','2024-10-27 10:19:47','',291,'http://giasuolympia.com/?p=4409',0,'revision','',0),(4410,1,'2024-10-27 17:23:05','2024-10-27 10:23:05','[vc_row content_text_aligment=\"center\" css=\".vc_custom_1495807738968{padding-top: 122px !important;padding-bottom: 68px !important;}\"][vc_column][vc_column_text]\r\n<h4><span style=\"color: #d8a64e; font-size: 20px;\">Khóa học mới</span></h4>\r\n[/vc_column_text][vc_column_text][/vc_column_text][vc_empty_space height=\"86px\"][mkdf_course_list number_of_columns=\"4\" space_between_items=\"normal\" number_of_items=\"12\" order_by=\"date\" order=\"ASC\"][/vc_column][/vc_row]','Khóa học mới','','inherit','closed','closed','','291-revision-v1','','','2024-10-27 17:23:05','2024-10-27 10:23:05','',291,'http://giasuolympia.com/?p=4410',0,'revision','',0),(4411,1,'2024-10-27 17:25:39','2024-10-27 10:25:39','[vc_row content_text_aligment=\"center\" css=\".vc_custom_1495807738968{padding-top: 122px !important;padding-bottom: 68px !important;}\"][vc_column][vc_column_text]\r\n<h2><span style=\"color: #000000;\">Khóa học mới</span></h2>\r\n[/vc_column_text][vc_empty_space height=\"86px\"][mkdf_course_list number_of_columns=\"4\" space_between_items=\"normal\" number_of_items=\"12\" order_by=\"date\" order=\"ASC\"][/vc_column][/vc_row]','Khóa học mới','','inherit','closed','closed','','291-revision-v1','','','2024-10-27 17:25:39','2024-10-27 10:25:39','',291,'http://giasuolympia.com/?p=4411',0,'revision','',0),(4412,1,'2024-10-27 18:04:56','2024-10-27 11:04:56','<p>[vc_row][vc_column][mkdf_instructor_list number_of_columns=\"3\" space_between_items=\"normal\" number_of_items=\"9\" order_by=\"date\" order=\"ASC\" instructor_layout=\"info-bellow\"][/vc_column][/vc_row]</p>\r\n','Tất cả gia sư','','publish','closed','closed','','tat-ca-gia-su','','','2024-10-27 18:17:13','2024-10-27 11:17:13','',4416,'http://giasuolympia.com/?page_id=4412',0,'page','',0),(4413,1,'2024-10-27 18:04:56','2024-10-27 11:04:56','<p>[vc_row][vc_column][mkdf_instructor_list number_of_columns=\"3\" space_between_items=\"normal\" number_of_items=\"9\" order_by=\"date\" order=\"ASC\" instructor_layout=\"info-bellow\"][/vc_column][/vc_row]</p>\r\n','Tất cả gia sư','','inherit','closed','closed','','4412-revision-v1','','','2024-10-27 18:04:56','2024-10-27 11:04:56','',4412,'http://giasuolympia.com/?p=4413',0,'revision','',0),(4414,1,'2024-10-27 18:06:39','2024-10-27 11:06:39','<p>[vc_row][vc_column][mkdf_instructor_list number_of_columns=\"3\" space_between_items=\"normal\" number_of_items=\"9\" order_by=\"date\" order=\"ASC\" instructor_layout=\"info-bellow\"][/vc_column][/vc_row][vc_row][vc_column][mkdf_instructor][/vc_column][/vc_row]</p>\r\n','Tất cả gia sư','','inherit','closed','closed','','4412-revision-v1','','','2024-10-27 18:06:39','2024-10-27 11:06:39','',4412,'http://giasuolympia.com/?p=4414',0,'revision','',0),(4415,1,'2024-10-27 18:07:30','2024-10-27 11:07:30','<p>[vc_row][vc_column][mkdf_instructor_list number_of_columns=\"3\" space_between_items=\"normal\" number_of_items=\"9\" order_by=\"date\" order=\"ASC\" instructor_layout=\"info-bellow\"][/vc_column][/vc_row]</p>\r\n','Tất cả gia sư','','inherit','closed','closed','','4412-revision-v1','','','2024-10-27 18:07:30','2024-10-27 11:07:30','',4412,'http://giasuolympia.com/?p=4415',0,'revision','',0),(4416,1,'2024-10-27 18:15:40','2024-10-27 11:15:40','','Gia sư','','publish','closed','closed','','gia-su','','','2024-10-27 18:15:42','2024-10-27 11:15:42','',0,'http://giasuolympia.com/?page_id=4416',0,'page','',0),(4417,1,'2024-10-27 18:15:40','2024-10-27 11:15:40','','Gia sư','','inherit','closed','closed','','4416-revision-v1','','','2024-10-27 18:15:40','2024-10-27 11:15:40','',4416,'http://giasuolympia.com/?p=4417',0,'revision','',0),(4418,1,'2024-10-27 18:20:39','2024-10-27 11:20:39',' ','','','publish','closed','closed','','4418','','','2024-10-27 18:20:39','2024-10-27 11:20:39','',4416,'http://giasuolympia.com/?p=4418',18,'nav_menu_item','',0),(4419,1,'2024-10-27 18:40:41','2024-10-27 11:40:41','<p>[vc_row css=\".vc_custom_1495809860309{padding-bottom: 68px !important;}\"][vc_column][mkdf_course_list number_of_columns=\"3\" space_between_items=\"normal\" number_of_items=\"9\" order_by=\"date\" order=\"ASC\" enable_students=\"no\" enable_category=\"no\" pagination_type=\"infinite-scroll\" filter=\"yes\"][/vc_column][/vc_row]</p>\r\n','Tất cả khóa học','','inherit','closed','closed','','306-revision-v1','','','2024-10-27 18:40:41','2024-10-27 11:40:41','',306,'http://giasuolympia.com/?p=4419',0,'revision','',0),(4420,1,'2024-10-27 18:42:11','2024-10-27 11:42:11','<p>[vc_row css=\".vc_custom_1495809860309{padding-bottom: 68px !important;}\"][vc_column][mkdf_course_list number_of_columns=\"3\" space_between_items=\"normal\" number_of_items=\"9\" order_by=\"date\" order=\"ASC\" enable_instructor=\"no\" enable_students=\"no\" enable_category=\"no\" pagination_type=\"infinite-scroll\" filter=\"yes\"][/vc_column][/vc_row]</p>\r\n','Tất cả khóa học','','inherit','closed','closed','','306-revision-v1','','','2024-10-27 18:42:11','2024-10-27 11:42:11','',306,'http://giasuolympia.com/?p=4420',0,'revision','',0),(4422,1,'2024-10-27 21:31:22','2024-10-27 14:31:22','[vc_row][vc_column][vc_column_text]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. Sed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare.\n\n&nbsp;\n\nSed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. Sed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1495700781665{padding-top: 21px !important;}\"][vc_column][vc_column_text]\n<h4>Other Instructors:</h4>\n[/vc_column_text][vc_empty_space height=\"25px\"][mkdf_instructor_list number_of_columns=\"2\" space_between_items=\"normal\" number_of_items=\"4\" order_by=\"date\" order=\"ASC\" instructor_layout=\"simple\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1495700787120{padding-bottom: 100px !important;}\"][vc_column][vc_column_text]\n<h4>FAQs</h4>\n[/vc_column_text][vc_empty_space height=\"25px\"][mkdf_accordion background_skin=\"white\"][mkdf_accordion_tab title=\"Can I just enroll in a single course? I\'m not interested in the entire Specialization.\"][vc_column_text]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.[/vc_column_text][/mkdf_accordion_tab][mkdf_accordion_tab title=\"What is the refund policy?\"][vc_column_text]Pri ferri lorem ea, ei feugiat democritum mei. Vide veri nec cu. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit.[/vc_column_text][/mkdf_accordion_tab][mkdf_accordion_tab title=\"What background knowledge is necessary?\"][vc_column_text]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.[/vc_column_text][/mkdf_accordion_tab][mkdf_accordion_tab title=\"Do I need to take the courses in a specific order?\"][vc_column_text]Pri ferri lorem ea, ei feugiat democritum mei. Vide veri nec cu. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit.[/vc_column_text][/mkdf_accordion_tab][/mkdf_accordion][/vc_column][/vc_row]','Lớp 10','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in.','inherit','closed','closed','','3011-autosave-v1','','','2024-10-27 21:31:22','2024-10-27 14:31:22','',3011,'http://giasuolympia.com/?p=4422',0,'revision','',0),(4423,1,'2024-10-27 21:33:49','2024-10-27 14:33:49','[vc_row][vc_column][vc_column_text]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. Sed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare.\n\n&nbsp;\n\nSed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. Sed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1495700781665{padding-top: 21px !important;}\"][vc_column][vc_column_text]\n<h4>Other Instructors:</h4>\n[/vc_column_text][vc_empty_space height=\"25px\"][mkdf_instructor_list number_of_columns=\"2\" space_between_items=\"normal\" number_of_items=\"4\" order_by=\"date\" order=\"ASC\" instructor_layout=\"simple\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1495700787120{padding-bottom: 100px !important;}\"][vc_column][vc_column_text]\n<h4>FAQs</h4>\n[/vc_column_text][vc_empty_space height=\"25px\"][mkdf_accordion background_skin=\"white\"][mkdf_accordion_tab title=\"Can I just enroll in a single course? I\'m not interested in the entire Specialization.\"][vc_column_text]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.[/vc_column_text][/mkdf_accordion_tab][mkdf_accordion_tab title=\"What is the refund policy?\"][vc_column_text]Pri ferri lorem ea, ei feugiat democritum mei. Vide veri nec cu. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit.[/vc_column_text][/mkdf_accordion_tab][mkdf_accordion_tab title=\"What background knowledge is necessary?\"][vc_column_text]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.[/vc_column_text][/mkdf_accordion_tab][mkdf_accordion_tab title=\"Do I need to take the courses in a specific order?\"][vc_column_text]Pri ferri lorem ea, ei feugiat democritum mei. Vide veri nec cu. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit.[/vc_column_text][/mkdf_accordion_tab][/mkdf_accordion][/vc_column][/vc_row]','Lớp 8','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in.','inherit','closed','closed','','3010-autosave-v1','','','2024-10-27 21:33:49','2024-10-27 14:33:49','',3010,'http://giasuolympia.com/?p=4423',0,'revision','',0),(4425,1,'2024-10-27 23:49:40','2024-10-27 16:49:40','[vc_row][vc_column][vc_column_text]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. Sed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare.\n\n&nbsp;\n\nSed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. Sed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1495700781665{padding-top: 21px !important;}\"][vc_column][vc_column_text]\n<h4>Other Instructors:</h4>\n[/vc_column_text][vc_empty_space height=\"25px\"][mkdf_instructor_list number_of_columns=\"2\" space_between_items=\"normal\" number_of_items=\"4\" order_by=\"date\" order=\"ASC\" instructor_layout=\"simple\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1495700787120{padding-bottom: 100px !important;}\"][vc_column][vc_column_text]\n<h4>FAQs</h4>\n[/vc_column_text][vc_empty_space height=\"25px\"][mkdf_accordion background_skin=\"white\"][mkdf_accordion_tab title=\"Can I just enroll in a single course? I\'m not interested in the entire Specialization.\"][vc_column_text]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.[/vc_column_text][/mkdf_accordion_tab][mkdf_accordion_tab title=\"What is the refund policy?\"][vc_column_text]Pri ferri lorem ea, ei feugiat democritum mei. Vide veri nec cu. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit.[/vc_column_text][/mkdf_accordion_tab][mkdf_accordion_tab title=\"What background knowledge is necessary?\"][vc_column_text]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.[/vc_column_text][/mkdf_accordion_tab][mkdf_accordion_tab title=\"Do I need to take the courses in a specific order?\"][vc_column_text]Pri ferri lorem ea, ei feugiat democritum mei. Vide veri nec cu. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit.[/vc_column_text][/mkdf_accordion_tab][/mkdf_accordion][/vc_column][/vc_row]','Lớp 12 Toán','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in.','inherit','closed','closed','','3005-autosave-v1','','','2024-10-27 23:49:40','2024-10-27 16:49:40','',3005,'http://giasuolympia.com/?p=4425',0,'revision','',0),(4426,1,'2024-10-27 23:52:02','2024-10-27 16:52:02','[vc_row][vc_column][vc_column_text]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. Sed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare.\n\n&nbsp;\n\nSed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. Sed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1495700781665{padding-top: 21px !important;}\"][vc_column][vc_column_text]\n<h4>Other Instructors:</h4>\n[/vc_column_text][vc_empty_space height=\"25px\"][mkdf_instructor_list number_of_columns=\"2\" space_between_items=\"normal\" number_of_items=\"4\" order_by=\"date\" order=\"ASC\" instructor_layout=\"simple\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1495700787120{padding-bottom: 100px !important;}\"][vc_column][vc_column_text]\n<h4>FAQs</h4>\n[/vc_column_text][vc_empty_space height=\"25px\"][mkdf_accordion background_skin=\"white\"][mkdf_accordion_tab title=\"Can I just enroll in a single course? I\'m not interested in the entire Specialization.\"][vc_column_text]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.[/vc_column_text][/mkdf_accordion_tab][mkdf_accordion_tab title=\"What is the refund policy?\"][vc_column_text]Pri ferri lorem ea, ei feugiat democritum mei. Vide veri nec cu. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit.[/vc_column_text][/mkdf_accordion_tab][mkdf_accordion_tab title=\"What background knowledge is necessary?\"][vc_column_text]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.[/vc_column_text][/mkdf_accordion_tab][mkdf_accordion_tab title=\"Do I need to take the courses in a specific order?\"][vc_column_text]Pri ferri lorem ea, ei feugiat democritum mei. Vide veri nec cu. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit.[/vc_column_text][/mkdf_accordion_tab][/mkdf_accordion][/vc_column][/vc_row]','Lớp 5 - Anh','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in.','inherit','closed','closed','','694-autosave-v1','','','2024-10-27 23:52:02','2024-10-27 16:52:02','',694,'http://giasuolympia.com/?p=4426',0,'revision','',0),(4427,1,'2024-10-28 00:04:24','2024-10-27 17:04:24','Giáo viên Nam, Nữ , khoa Văn','Lớp 9 Văn','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in.','inherit','closed','closed','','692-autosave-v1','','','2024-10-28 00:04:24','2024-10-27 17:04:24','',692,'http://giasuolympia.com/?p=4427',0,'revision','',0),(4428,1,'2024-10-28 00:10:07','2024-10-27 17:10:07','[vc_row][vc_column][vc_column_text]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. Sed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare.\n\n&nbsp;\n\nSed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. Sed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1495700781665{padding-top: 21px !important;}\"][vc_column][vc_column_text]\n<h4>Other Instructors:</h4>\n[/vc_column_text][vc_empty_space height=\"25px\"][mkdf_instructor_list number_of_columns=\"2\" space_between_items=\"normal\" number_of_items=\"4\" order_by=\"date\" order=\"ASC\" instructor_layout=\"simple\" instructor_background=\"#ffffff\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1495700787120{padding-bottom: 100px !important;}\"][vc_column][vc_column_text]\n<h4>FAQs</h4>\n[/vc_column_text][vc_empty_space height=\"25px\"][mkdf_accordion background_skin=\"white\"][mkdf_accordion_tab title=\"Can I just enroll in a single course? I\'m not interested in the entire Specialization.\"][vc_column_text]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.[/vc_column_text][/mkdf_accordion_tab][mkdf_accordion_tab title=\"What is the refund policy?\"][vc_column_text]Pri ferri lorem ea, ei feugiat democritum mei. Vide veri nec cu. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit.[/vc_column_text][/mkdf_accordion_tab][mkdf_accordion_tab title=\"What background knowledge is necessary?\"][vc_column_text]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.[/vc_column_text][/mkdf_accordion_tab][mkdf_accordion_tab title=\"Do I need to take the courses in a specific order?\"][vc_column_text]Pri ferri lorem ea, ei feugiat democritum mei. Vide veri nec cu. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit.[/vc_column_text][/mkdf_accordion_tab][/mkdf_accordion][/vc_column][/vc_row]','Lớp 1 Toán + Tiếng Việt','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in.','inherit','closed','closed','','4062-autosave-v1','','','2024-10-28 00:10:07','2024-10-27 17:10:07','',4062,'http://giasuolympia.com/?p=4428',0,'revision','',0),(4429,1,'2024-10-28 00:12:33','2024-10-27 17:12:33','[vc_row][vc_column][vc_column_text]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. Sed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare.\n\n&nbsp;\n\nSed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. Sed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1495700781665{padding-top: 21px !important;}\"][vc_column][vc_column_text]\n<h4>Other Instructors:</h4>\n[/vc_column_text][vc_empty_space height=\"25px\"][mkdf_instructor_list number_of_columns=\"2\" space_between_items=\"normal\" number_of_items=\"4\" order_by=\"date\" order=\"ASC\" instructor_layout=\"simple\" instructor_background=\"#ffffff\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1495700787120{padding-bottom: 100px !important;}\"][vc_column][vc_column_text]\n<h4>FAQs</h4>\n[/vc_column_text][vc_empty_space height=\"25px\"][mkdf_accordion background_skin=\"white\"][mkdf_accordion_tab title=\"Can I just enroll in a single course? I\'m not interested in the entire Specialization.\"][vc_column_text]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.[/vc_column_text][/mkdf_accordion_tab][mkdf_accordion_tab title=\"What is the refund policy?\"][vc_column_text]Pri ferri lorem ea, ei feugiat democritum mei. Vide veri nec cu. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit.[/vc_column_text][/mkdf_accordion_tab][mkdf_accordion_tab title=\"What background knowledge is necessary?\"][vc_column_text]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.[/vc_column_text][/mkdf_accordion_tab][mkdf_accordion_tab title=\"Do I need to take the courses in a specific order?\"][vc_column_text]Pri ferri lorem ea, ei feugiat democritum mei. Vide veri nec cu. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit.[/vc_column_text][/mkdf_accordion_tab][/mkdf_accordion][/vc_column][/vc_row]','Lớp 6: Tiếng Anh','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in.','inherit','closed','closed','','174-autosave-v1','','','2024-10-28 00:12:33','2024-10-27 17:12:33','',174,'http://giasuolympia.com/?p=4429',0,'revision','',0),(4430,1,'2024-10-28 00:14:16','2024-10-27 17:14:16','[vc_row][vc_column][vc_column_text]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. Sed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare.\n\n&nbsp;\n\nSed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. Sed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1495700781665{padding-top: 21px !important;}\"][vc_column][vc_column_text]\n<h4>Other Instructors:</h4>\n[/vc_column_text][vc_empty_space height=\"25px\"][mkdf_instructor_list number_of_columns=\"2\" space_between_items=\"normal\" number_of_items=\"4\" order_by=\"date\" order=\"ASC\" instructor_layout=\"simple\" instructor_background=\"#ffffff\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1495700787120{padding-bottom: 100px !important;}\"][vc_column][vc_column_text]\n<h4>FAQs</h4>\n[/vc_column_text][vc_empty_space height=\"25px\"][mkdf_accordion background_skin=\"white\"][mkdf_accordion_tab title=\"Can I just enroll in a single course? I\'m not interested in the entire Specialization.\"][vc_column_text]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.[/vc_column_text][/mkdf_accordion_tab][mkdf_accordion_tab title=\"What is the refund policy?\"][vc_column_text]Pri ferri lorem ea, ei feugiat democritum mei. Vide veri nec cu. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit.[/vc_column_text][/mkdf_accordion_tab][mkdf_accordion_tab title=\"What background knowledge is necessary?\"][vc_column_text]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.[/vc_column_text][/mkdf_accordion_tab][mkdf_accordion_tab title=\"Do I need to take the courses in a specific order?\"][vc_column_text]Pri ferri lorem ea, ei feugiat democritum mei. Vide veri nec cu. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit.[/vc_column_text][/mkdf_accordion_tab][/mkdf_accordion][/vc_column][/vc_row]','Lớp 11 Lý','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in.','inherit','closed','closed','','272-autosave-v1','','','2024-10-28 00:14:16','2024-10-27 17:14:16','',272,'http://giasuolympia.com/?p=4430',0,'revision','',0),(4431,1,'2024-10-28 11:49:19','2024-10-28 04:49:19','','logo_olympia_ko','','inherit','open','closed','','logo_olympia_ko','','','2024-10-28 15:04:42','2024-10-28 08:04:42','',0,'http://giasuolympia.com/wp-content/uploads/2024/10/logo_olympia_ko.png',0,'attachment','image/png',0),(4433,1,'2024-10-28 16:28:52','2024-10-28 09:28:52','[vc_row row_content_width=\"grid\" parallax_background_image=\"161\" css=\".vc_custom_1496068196330{padding-top: 110px !important;padding-bottom: 125px !important;}\" simple_background_color=\"#ffffff\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0px 20% 92px\" item_padding_768_1024=\"0px 10% 92px\" item_padding_680_768=\"0px 0% 92px\" item_padding_680=\"0px 0% 92px\"][mkdf_section_title type=\"standard\" position=\"center\" title_tag=\"h1\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" title=\"Popular Online Courses\" title_color=\"#ffffff\" text=\"Lorem ipsum gravida nibh vel velit auctor aliquetnean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit\" text_color=\"#ffffff\" text_font_size=\"17\"][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_course_slider number_of_columns=\"4\" space_between_items=\"normal\" image_proportions=\"full\" order_by=\"date\" order=\"ASC\" title_tag=\"h5\" enable_excerpt=\"yes\" enable_loop=\"yes\" enable_autoplay=\"yes\" enable_navigation=\"no\" enable_pagination=\"yes\" pagination_skin=\"light\" pagination_position=\"below-slider\" excerpt_length=\"56\" number_of_items=\"12\"][/vc_column][/vc_row][vc_row][vc_column][mkdf_separator type=\"full-width\" border_style=\"\" color=\"#ebebeb\" thickness=\"1\" top_margin=\"0px\" bottom_margin=\"0px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" content_text_aligment=\"center\" css=\".vc_custom_1496232790191{padding-top: 115px !important;padding-bottom: 100px !important;}\" simple_background_color=\"#ffffff\"][vc_column][mkdf_section_title type=\"standard\" position=\"center\" title_tag=\"h2\" disable_break_words=\"yes\" text_tag=\"\" text_font_weight=\"\" title=\"Top Tutors in Every Subject.\" text=\"Lorem ipsum gravida nibh vel velit auctor aliquetnean sollicitudin,lorem quis bibendum\" text_font_size=\"17\"][vc_empty_space height=\"90px\"][mkdf_instructor_list number_of_columns=\"3\" space_between_items=\"normal\" number_of_items=\"9\" order_by=\"date\" order=\"ASC\" instructor_layout=\"simple\" enable_shadow=\"no\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" content_text_aligment=\"center\" css=\".vc_custom_1496309608001{padding-top: 110px !important;padding-bottom: 130px !important;}\"][vc_column][mkdf_section_title type=\"standard\" position=\"center\" title_tag=\"h1\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" title=\"Online Courses\" text=\"Lorem ipsum gravida nibh vel velit auctor aliquetnean sollicitudin, lorem quis bibendum\" text_font_size=\"17\"][vc_empty_space height=\"90px\"][mkdf_course_table order_by=\"date\" order=\"ASC\" enable_students=\"no\" selected_courses=\"18, 174, 229, 269, 274\"][/vc_column][/vc_row][vc_row][vc_column][mkdf_separator type=\"full-width\" border_style=\"\" color=\"#ebebeb\" thickness=\"1\" top_margin=\"0px\" bottom_margin=\"0px\"][/vc_column][/vc_row]','Trang chủ','','inherit','closed','closed','','4124-revision-v1','','','2024-10-28 16:28:52','2024-10-28 09:28:52','',4124,'http://giasuolympia.com/?p=4433',0,'revision','',0),(4436,1,'2024-10-28 16:52:42','2024-10-28 09:52:42','[vc_row row_content_width=\"grid\" parallax_background_image=\"161\" css=\".vc_custom_1496068196330{padding-top: 110px !important;padding-bottom: 125px !important;}\" simple_background_color=\"#ffffff\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0px 20% 92px\" item_padding_768_1024=\"0px 10% 92px\" item_padding_680_768=\"0px 0% 92px\" item_padding_680=\"0px 0% 92px\"][mkdf_section_title type=\"standard\" position=\"center\" title_tag=\"h1\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" title=\"Popular Online Courses\" title_color=\"#ffffff\" text=\"Lorem ipsum gravida nibh vel velit auctor aliquetnean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit\" text_color=\"#ffffff\" text_font_size=\"17\"][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_course_slider number_of_columns=\"4\" space_between_items=\"normal\" image_proportions=\"full\" order_by=\"date\" order=\"ASC\" title_tag=\"h5\" enable_price=\"no\" enable_excerpt=\"yes\" enable_students=\"no\" enable_loop=\"yes\" enable_autoplay=\"yes\" enable_navigation=\"no\" enable_pagination=\"yes\" pagination_skin=\"light\" pagination_position=\"below-slider\" excerpt_length=\"56\" number_of_items=\"12\"][/vc_column][/vc_row][vc_row][vc_column][mkdf_separator type=\"full-width\" border_style=\"\" color=\"#ebebeb\" thickness=\"1\" top_margin=\"0px\" bottom_margin=\"0px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" content_text_aligment=\"center\" css=\".vc_custom_1496232790191{padding-top: 115px !important;padding-bottom: 100px !important;}\" simple_background_color=\"#ffffff\"][vc_column][mkdf_section_title type=\"standard\" position=\"center\" title_tag=\"h2\" disable_break_words=\"yes\" text_tag=\"\" text_font_weight=\"\" title=\"Top Tutors in Every Subject.\" text=\"Lorem ipsum gravida nibh vel velit auctor aliquetnean sollicitudin,lorem quis bibendum\" text_font_size=\"17\"][vc_empty_space height=\"90px\"][mkdf_instructor_list number_of_columns=\"3\" space_between_items=\"normal\" number_of_items=\"9\" order_by=\"date\" order=\"ASC\" instructor_layout=\"simple\" enable_shadow=\"no\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" content_text_aligment=\"center\" css=\".vc_custom_1496309608001{padding-top: 110px !important;padding-bottom: 130px !important;}\"][vc_column][mkdf_section_title type=\"standard\" position=\"center\" title_tag=\"h1\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" title=\"Online Courses\" text=\"Lorem ipsum gravida nibh vel velit auctor aliquetnean sollicitudin, lorem quis bibendum\" text_font_size=\"17\"][vc_empty_space height=\"90px\"][mkdf_course_table order_by=\"date\" order=\"ASC\" enable_students=\"no\" selected_courses=\"18, 174, 229, 269, 274\"][/vc_column][/vc_row][vc_row][vc_column][mkdf_separator type=\"full-width\" border_style=\"\" color=\"#ebebeb\" thickness=\"1\" top_margin=\"0px\" bottom_margin=\"0px\"][/vc_column][/vc_row]','Trang chủ','','inherit','closed','closed','','4124-revision-v1','','','2024-10-28 16:52:42','2024-10-28 09:52:42','',4124,'http://giasuolympia.com/?p=4436',0,'revision','',0),(4454,0,'2024-10-29 16:47:59','2024-10-29 09:47:59','{\"fontFamily\":\"Inter, sans-serif\",\"preview\":\"https://s.w.org/images/fonts/17.7/previews/inter/inter.svg\"}','Inter','','publish','closed','closed','','inter','','','2024-10-29 16:47:59','2024-10-29 09:47:59','',0,'http://giasuolympia.com/2024/10/29/inter/',0,'wp_font_family','',0),(4455,0,'2024-10-29 16:47:59','2024-10-29 09:47:59','{\"fontFamily\":\"\\\"Bodoni Moda\\\", serif\",\"preview\":\"https://s.w.org/images/fonts/17.7/previews/bodoni-moda/bodoni-moda.svg\"}','Bodoni Moda','','publish','closed','closed','','bodoni-moda','','','2024-10-29 16:47:59','2024-10-29 09:47:59','',0,'http://giasuolympia.com/2024/10/29/bodoni-moda/',0,'wp_font_family','',0),(4456,0,'2024-10-29 16:47:59','2024-10-29 09:47:59','{\"fontFamily\":\"Overpass, sans-serif\",\"preview\":\"https://s.w.org/images/fonts/17.7/previews/overpass/overpass.svg\"}','Overpass','','publish','closed','closed','','overpass','','','2024-10-29 16:47:59','2024-10-29 09:47:59','',0,'http://giasuolympia.com/2024/10/29/overpass/',0,'wp_font_family','',0),(4457,0,'2024-10-29 16:47:59','2024-10-29 09:47:59','{\"fontFamily\":\"\\\"Albert Sans\\\", sans-serif\",\"preview\":\"https://s.w.org/images/fonts/17.7/previews/albert-sans/albert-sans.svg\"}','Albert Sans','','publish','closed','closed','','albert-sans','','','2024-10-29 16:47:59','2024-10-29 09:47:59','',0,'http://giasuolympia.com/2024/10/29/albert-sans/',0,'wp_font_family','',0),(4458,0,'2024-10-29 16:47:59','2024-10-29 09:47:59','{\"fontFamily\":\"Lora, serif\",\"preview\":\"https://s.w.org/images/fonts/17.7/previews/lora/lora.svg\"}','Lora','','publish','closed','closed','','lora','','','2024-10-29 16:47:59','2024-10-29 09:47:59','',0,'http://giasuolympia.com/2024/10/29/lora/',0,'wp_font_family','',0),(4459,0,'2024-10-29 16:47:59','2024-10-29 09:47:59','{\"fontFamily\":\"Montserrat, sans-serif\",\"preview\":\"https://s.w.org/images/fonts/17.7/previews/montserrat/montserrat.svg\"}','Montserrat','','publish','closed','closed','','montserrat','','','2024-10-29 16:47:59','2024-10-29 09:47:59','',0,'http://giasuolympia.com/2024/10/29/montserrat/',0,'wp_font_family','',0),(4460,0,'2024-10-29 16:47:59','2024-10-29 09:47:59','{\"fontFamily\":\"Arvo, serif\",\"preview\":\"https://s.w.org/images/fonts/17.7/previews/arvo/arvo.svg\"}','Arvo','','publish','closed','closed','','arvo','','','2024-10-29 16:47:59','2024-10-29 09:47:59','',0,'http://giasuolympia.com/2024/10/29/arvo/',0,'wp_font_family','',0),(4461,0,'2024-10-29 16:47:59','2024-10-29 09:47:59','{\"fontFamily\":\"Rubik, sans-serif\",\"preview\":\"https://s.w.org/images/fonts/17.7/previews/rubik/rubik.svg\"}','Rubik','','publish','closed','closed','','rubik','','','2024-10-29 16:47:59','2024-10-29 09:47:59','',0,'http://giasuolympia.com/2024/10/29/rubik/',0,'wp_font_family','',0),(4462,0,'2024-10-29 16:47:59','2024-10-29 09:47:59','{\"fontFamily\":\"Newsreader, serif\",\"preview\":\"https://s.w.org/images/fonts/17.7/previews/newsreader/newsreader.svg\"}','Newsreader','','publish','closed','closed','','newsreader','','','2024-10-29 16:47:59','2024-10-29 09:47:59','',0,'http://giasuolympia.com/2024/10/29/newsreader/',0,'wp_font_family','',0),(4463,0,'2024-10-29 16:47:59','2024-10-29 09:47:59','{\"fontFamily\":\"Cormorant, serif\",\"preview\":\"https://s.w.org/images/fonts/17.7/previews/cormorant/cormorant.svg\"}','Cormorant','','publish','closed','closed','','cormorant','','','2024-10-29 16:47:59','2024-10-29 09:47:59','',0,'http://giasuolympia.com/2024/10/29/cormorant/',0,'wp_font_family','',0),(4464,0,'2024-10-29 16:47:59','2024-10-29 09:47:59','{\"fontFamily\":\"\\\"Work Sans\\\", sans-serif\",\"preview\":\"https://s.w.org/images/fonts/17.7/previews/work-sans/work-sans.svg\"}','Work Sans','','publish','closed','closed','','work-sans','','','2024-10-29 16:47:59','2024-10-29 09:47:59','',0,'http://giasuolympia.com/2024/10/29/work-sans/',0,'wp_font_family','',0),(4465,0,'2024-10-29 16:47:59','2024-10-29 09:47:59','{\"fontFamily\":\"Raleway, sans-serif\",\"preview\":\"https://s.w.org/images/fonts/17.7/previews/raleway/raleway.svg\"}','Raleway','','publish','closed','closed','','raleway','','','2024-10-29 16:47:59','2024-10-29 09:47:59','',0,'http://giasuolympia.com/2024/10/29/raleway/',0,'wp_font_family','',0),(4466,1,'2024-10-29 16:49:23','2024-10-29 09:49:23','<!-- wp:woocommerce/cart -->\n<div class=\"wp-block-woocommerce-cart alignwide is-loading\"><!-- wp:woocommerce/filled-cart-block -->\n<div class=\"wp-block-woocommerce-filled-cart-block\"><!-- wp:woocommerce/cart-items-block -->\n<div class=\"wp-block-woocommerce-cart-items-block\"><!-- wp:woocommerce/cart-line-items-block -->\n<div class=\"wp-block-woocommerce-cart-line-items-block\"></div>\n<!-- /wp:woocommerce/cart-line-items-block -->\n\n<!-- wp:woocommerce/cart-cross-sells-block -->\n<div class=\"wp-block-woocommerce-cart-cross-sells-block\"><!-- wp:heading {\"fontSize\":\"large\"} -->\n<h2 class=\"wp-block-heading has-large-font-size\">You may be interested in…</h2>\n<!-- /wp:heading -->\n\n<!-- wp:woocommerce/cart-cross-sells-products-block -->\n<div class=\"wp-block-woocommerce-cart-cross-sells-products-block\"></div>\n<!-- /wp:woocommerce/cart-cross-sells-products-block --></div>\n<!-- /wp:woocommerce/cart-cross-sells-block --></div>\n<!-- /wp:woocommerce/cart-items-block -->\n\n<!-- wp:woocommerce/cart-totals-block -->\n<div class=\"wp-block-woocommerce-cart-totals-block\"><!-- wp:woocommerce/cart-order-summary-block -->\n<div class=\"wp-block-woocommerce-cart-order-summary-block\"><!-- wp:woocommerce/cart-order-summary-heading-block -->\n<div class=\"wp-block-woocommerce-cart-order-summary-heading-block\"></div>\n<!-- /wp:woocommerce/cart-order-summary-heading-block -->\n\n<!-- wp:woocommerce/cart-order-summary-coupon-form-block -->\n<div class=\"wp-block-woocommerce-cart-order-summary-coupon-form-block\"></div>\n<!-- /wp:woocommerce/cart-order-summary-coupon-form-block -->\n\n<!-- wp:woocommerce/cart-order-summary-subtotal-block -->\n<div class=\"wp-block-woocommerce-cart-order-summary-subtotal-block\"></div>\n<!-- /wp:woocommerce/cart-order-summary-subtotal-block -->\n\n<!-- wp:woocommerce/cart-order-summary-fee-block -->\n<div class=\"wp-block-woocommerce-cart-order-summary-fee-block\"></div>\n<!-- /wp:woocommerce/cart-order-summary-fee-block -->\n\n<!-- wp:woocommerce/cart-order-summary-discount-block -->\n<div class=\"wp-block-woocommerce-cart-order-summary-discount-block\"></div>\n<!-- /wp:woocommerce/cart-order-summary-discount-block -->\n\n<!-- wp:woocommerce/cart-order-summary-shipping-block -->\n<div class=\"wp-block-woocommerce-cart-order-summary-shipping-block\"></div>\n<!-- /wp:woocommerce/cart-order-summary-shipping-block -->\n\n<!-- wp:woocommerce/cart-order-summary-taxes-block -->\n<div class=\"wp-block-woocommerce-cart-order-summary-taxes-block\"></div>\n<!-- /wp:woocommerce/cart-order-summary-taxes-block --></div>\n<!-- /wp:woocommerce/cart-order-summary-block -->\n\n<!-- wp:woocommerce/cart-express-payment-block -->\n<div class=\"wp-block-woocommerce-cart-express-payment-block\"></div>\n<!-- /wp:woocommerce/cart-express-payment-block -->\n\n<!-- wp:woocommerce/proceed-to-checkout-block -->\n<div class=\"wp-block-woocommerce-proceed-to-checkout-block\"></div>\n<!-- /wp:woocommerce/proceed-to-checkout-block -->\n\n<!-- wp:woocommerce/cart-accepted-payment-methods-block -->\n<div class=\"wp-block-woocommerce-cart-accepted-payment-methods-block\"></div>\n<!-- /wp:woocommerce/cart-accepted-payment-methods-block --></div>\n<!-- /wp:woocommerce/cart-totals-block --></div>\n<!-- /wp:woocommerce/filled-cart-block -->\n\n<!-- wp:woocommerce/empty-cart-block -->\n<div class=\"wp-block-woocommerce-empty-cart-block\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"with-empty-cart-icon wc-block-cart__empty-cart__title\"} -->\n<h2 class=\"wp-block-heading has-text-align-center with-empty-cart-icon wc-block-cart__empty-cart__title\">Your cart is currently empty!</h2>\n<!-- /wp:heading -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"textAlign\":\"center\"} -->\n<h2 class=\"wp-block-heading has-text-align-center\">New in store</h2>\n<!-- /wp:heading -->\n\n<!-- wp:woocommerce/product-new {\"columns\":4,\"rows\":1} /--></div>\n<!-- /wp:woocommerce/empty-cart-block --></div>\n<!-- /wp:woocommerce/cart -->','Cart','','inherit','closed','closed','','15-revision-v1','','','2024-10-29 16:49:23','2024-10-29 09:49:23','',15,'http://giasuolympia.com/?p=4466',0,'revision','',0),(4467,1,'2024-10-29 22:01:15','2024-10-29 15:01:15','<p>[vc_row row_content_width=\"grid\" css=\".vc_custom_1497440561376{padding-top: 100px !important;padding-bottom: 80px !important;}\"][vc_column offset=\"vc_col-lg-8\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" background_image=\"2820\" item_padding=\"251px 45%\" item_padding_1024_1280=\"251px 45%\" item_padding_768_1024=\"230px 45%\" item_padding_680_768=\"180px 45%\" item_padding_680=\"130px 35%\"][mkdf_video_button video_link=\"https://vimeo.com/157562616\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column offset=\"vc_col-lg-4\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding_768_1024=\"100px 0 0\" item_padding_680_768=\"100px 0 0\" item_padding_680=\"100px 0 0\"][contact-form-7 id=\"171\" html_class=\"cf7_custom_style_2\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1495720773265{padding-bottom: 70px !important;}\"][vc_column][mkdf_section_title type=\"standard\" position=\"center\" title_tag=\"\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"400\" title=\"Gia sư hàng đầu\" title_color=\"#d8a64e\" text=\"Lorem Ipsn gravida nibh vel velit auctor aliquetnean sollicitudin,lorem quis bibendum\" text_font_size=\"17\"][vc_empty_space height=\"80px\"][mkdf_instructor_list number_of_columns=\"3\" space_between_items=\"normal\" number_of_items=\"9\" order_by=\"date\" order=\"ASC\" instructor_layout=\"simple\" enable_shadow=\"yes\" instructor_background=\"#ffffff\"][/vc_column][/vc_row]</p>\n','Đăng ký làm gia sư','','inherit','closed','closed','','129-autosave-v1','','','2024-10-29 22:01:15','2024-10-29 15:01:15','',129,'http://giasuolympia.com/?p=4467',0,'revision','',0),(4468,1,'2024-10-29 22:01:21','2024-10-29 15:01:21','[vc_row row_content_width=\"grid\" css=\".vc_custom_1497440561376{padding-top: 100px !important;padding-bottom: 80px !important;}\"][vc_column offset=\"vc_col-lg-8\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" background_image=\"2820\" item_padding=\"251px 45%\" item_padding_1024_1280=\"251px 45%\" item_padding_768_1024=\"230px 45%\" item_padding_680_768=\"180px 45%\" item_padding_680=\"130px 35%\"][mkdf_video_button video_link=\"https://vimeo.com/157562616\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column offset=\"vc_col-lg-4\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding_768_1024=\"100px 0 0\" item_padding_680_768=\"100px 0 0\" item_padding_680=\"100px 0 0\"][contact-form-7 id=\"171\" html_class=\"cf7_custom_style_2\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1495720773265{padding-bottom: 70px !important;}\"][vc_column][mkdf_section_title type=\"standard\" position=\"center\" title_tag=\"\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"400\" title=\"Gia sư hàng đầu\" title_color=\"#d8a64e\" text=\"Lorem Ipsn gravida nibh vel velit auctor aliquetnean sollicitudin,lorem quis bibendum\" text_font_size=\"17\"][vc_empty_space height=\"80px\"][mkdf_instructor_list number_of_columns=\"3\" space_between_items=\"normal\" number_of_items=\"9\" order_by=\"date\" order=\"ASC\" instructor_layout=\"simple\" enable_shadow=\"yes\" instructor_background=\"#ffffff\"][/vc_column][/vc_row]','Đăng ký làm gia sư','','inherit','closed','closed','','129-revision-v1','','','2024-10-29 22:01:21','2024-10-29 15:01:21','',129,'http://giasuolympia.com/?p=4468',0,'revision','',0),(4469,1,'2024-10-29 22:01:48','2024-10-29 15:01:48','[vc_row row_content_width=\"grid\" css=\".vc_custom_1497440561376{padding-top: 100px !important;padding-bottom: 80px !important;}\"][vc_column offset=\"vc_col-lg-8\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" background_image=\"2820\" item_padding=\"251px 45%\" item_padding_1024_1280=\"251px 45%\" item_padding_768_1024=\"230px 45%\" item_padding_680_768=\"180px 45%\" item_padding_680=\"130px 35%\"][mkdf_video_button video_link=\"https://vimeo.com/157562616\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column offset=\"vc_col-lg-4\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding_768_1024=\"100px 0 0\" item_padding_680_768=\"100px 0 0\" item_padding_680=\"100px 0 0\"][contact-form-7 id=\"171\" html_class=\"cf7_custom_style_2\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1495720773265{padding-bottom: 70px !important;}\"][vc_column][mkdf_section_title type=\"standard\" position=\"center\" title_tag=\"\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"400\" title=\"Gia sư hàng đầu\" title_color=\"#d8a64e\" text=\"Lorem Ipsn gravida nibh vel velit auctor aliquetnean sollicitudin,lorem quis bibendum\" text_font_size=\"17\"][vc_empty_space height=\"20px\"][mkdf_instructor_list number_of_columns=\"3\" space_between_items=\"normal\" number_of_items=\"9\" order_by=\"date\" order=\"ASC\" instructor_layout=\"simple\" enable_shadow=\"yes\" instructor_background=\"#ffffff\"][/vc_column][/vc_row]','Đăng ký làm gia sư','','inherit','closed','closed','','129-revision-v1','','','2024-10-29 22:01:48','2024-10-29 15:01:48','',129,'http://giasuolympia.com/?p=4469',0,'revision','',0),(4470,1,'2024-10-29 22:06:52','2024-10-29 15:06:52','[vc_row content_text_aligment=\"center\" css=\".vc_custom_1495807738968{padding-top: 122px !important;padding-bottom: 68px !important;}\"][vc_column][vc_column_text]\r\n<h2><span style=\"color: #000000;\">Khóa học mới</span></h2>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][mkdf_course_list number_of_columns=\"4\" space_between_items=\"normal\" number_of_items=\"12\" order_by=\"date\" order=\"ASC\"][/vc_column][/vc_row]','Khóa học mới','','inherit','closed','closed','','291-revision-v1','','','2024-10-29 22:06:52','2024-10-29 15:06:52','',291,'http://giasuolympia.com/?p=4470',0,'revision','',0),(4471,1,'2024-10-29 22:07:31','2024-10-29 15:07:31','[vc_row content_text_aligment=\"center\" css=\".vc_custom_1495807738968{padding-top: 122px !important;padding-bottom: 68px !important;}\"][vc_column][vc_column_text]\r\n<h2><span style=\"color: #000000;\">Khóa học mới</span></h2>\r\n[/vc_column_text][vc_empty_space height=\"30px\"][mkdf_course_list number_of_columns=\"4\" space_between_items=\"normal\" number_of_items=\"12\" order_by=\"date\" order=\"ASC\"][/vc_column][/vc_row]','Khóa học mới','','inherit','closed','closed','','291-revision-v1','','','2024-10-29 22:07:31','2024-10-29 15:07:31','',291,'http://giasuolympia.com/?p=4471',0,'revision','',0),(4472,1,'2024-10-29 22:14:46','2024-10-29 15:14:46','[vc_row row_content_width=\"grid\" parallax_background_image=\"161\" css=\".vc_custom_1496068196330{padding-top: 110px !important;padding-bottom: 125px !important;}\" simple_background_color=\"#ffffff\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0px 20% 92px\" item_padding_768_1024=\"0px 10% 92px\" item_padding_680_768=\"0px 0% 92px\" item_padding_680=\"0px 0% 92px\"][mkdf_section_title type=\"standard\" position=\"center\" title_tag=\"h1\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" title=\"Các khóa học trực tuyến phổ biến\" title_color=\"#ffffff\" text=\"Lorem ipsum gravida nibh vel velit auctor aliquetnean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit\" text_color=\"#ffffff\" text_font_size=\"17\"][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_course_slider number_of_columns=\"4\" space_between_items=\"normal\" image_proportions=\"full\" order_by=\"date\" order=\"ASC\" title_tag=\"h5\" enable_price=\"no\" enable_excerpt=\"yes\" enable_students=\"no\" enable_loop=\"yes\" enable_autoplay=\"yes\" enable_navigation=\"no\" enable_pagination=\"yes\" pagination_skin=\"light\" pagination_position=\"below-slider\" excerpt_length=\"56\" number_of_items=\"12\"][/vc_column][/vc_row][vc_row][vc_column][mkdf_separator type=\"full-width\" border_style=\"\" color=\"#ebebeb\" thickness=\"1\" top_margin=\"0px\" bottom_margin=\"0px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" content_text_aligment=\"center\" css=\".vc_custom_1496232790191{padding-top: 115px !important;padding-bottom: 100px !important;}\" simple_background_color=\"#ffffff\"][vc_column][mkdf_section_title type=\"standard\" position=\"center\" title_tag=\"h2\" disable_break_words=\"yes\" text_tag=\"\" text_font_weight=\"\" title=\"Gia sư hàng đầu\" text=\"Lorem ipsum gravida nibh vel velit auctor aliquetnean sollicitudin,lorem quis bibendum\" text_font_size=\"17\"][vc_empty_space height=\"30px\"][mkdf_instructor_list number_of_columns=\"3\" space_between_items=\"normal\" number_of_items=\"9\" order_by=\"date\" order=\"ASC\" instructor_layout=\"simple\" enable_shadow=\"no\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" content_text_aligment=\"center\" css=\".vc_custom_1496309608001{padding-top: 110px !important;padding-bottom: 130px !important;}\"][vc_column][mkdf_section_title type=\"standard\" position=\"center\" title_tag=\"h1\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" title=\"Khóa học trực tuyến\" text=\"Lorem ipsum gravida nibh vel velit auctor aliquetnean sollicitudin, lorem quis bibendum\" text_font_size=\"17\"][vc_empty_space height=\"30px\"][mkdf_course_table order_by=\"date\" order=\"ASC\" enable_students=\"no\" selected_courses=\"18, 174, 229, 269, 274\"][/vc_column][/vc_row][vc_row][vc_column][mkdf_separator type=\"full-width\" border_style=\"\" color=\"#ebebeb\" thickness=\"1\" top_margin=\"0px\" bottom_margin=\"0px\"][/vc_column][/vc_row]','Trang chủ','','inherit','closed','closed','','4124-revision-v1','','','2024-10-29 22:14:46','2024-10-29 15:14:46','',4124,'http://giasuolympia.com/?p=4472',0,'revision','',0),(4473,1,'2024-10-29 22:18:25','2024-10-29 15:18:25','[vc_row row_content_width=\"grid\" content_text_aligment=\"left\" simple_background_color=\"#ffffff\" css=\".vc_custom_1497446239499{padding-top: 63px !important;padding-bottom: 63px !important;}\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"two-columns\" switch_to_one_column=\"1024\" alignment_one_column=\"left\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0 30% 0 0\" item_padding_1024_1280=\"30px 18% 0 0\" item_padding_1280_1600=\"0 18% 0 0\" item_padding_768_1024=\"0 18% 0 0\" item_padding_680_768=\"0 18% 0 0\" item_padding_680=\"0 0% 0 0\"][mkdf_section_title type=\"standard\" position=\"left\" title_tag=\"\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" title=\"Empowering children to reach their potential.\" text=\"Lorem ipsum dolor sit amet, consectetuer adipiscing elit neani commodo ligula eget dolor. Aenean massa. Cum sociis Theme natoque penatibus et magnis dis.\"][vc_empty_space height=\"30px\"][vc_row_inner][vc_column_inner width=\"1/2\"][mkdf_counter type=\"mkdf-zero-counter\" icon_pack=\"font_awesome\" fa_icon=\"\" title_tag=\"\" title_font_weight=\"\" digit=\"168\" title=\"User Stories\"][/vc_column_inner][vc_column_inner width=\"1/2\"][mkdf_counter type=\"mkdf-zero-counter\" icon_pack=\"font_awesome\" fa_icon=\"\" title_tag=\"\" title_font_weight=\"\" digit=\"347\" title=\"Scheduled Events\"][vc_empty_space height=\"58px\"][/vc_column_inner][/vc_row_inner][/mkdf_elements_holder_item][mkdf_elements_holder_item item_width=\"1-1\" horizontal_alignment=\"center\" item_padding_1024_1280=\"0\" item_padding_768_1024=\"0\" item_padding_680_768=\"0\" item_padding_680=\"0\" item_padding=\"37px 0\" item_padding_1280_1600=\"37px 0\"][mkdf_video_button video_link=\"https://vimeo.com/157562616\" video_image=\"1586\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row][vc_column][mkdf_separator type=\"full-width\" border_style=\"\" color=\"#ebebeb\" thickness=\"1\" top_margin=\"-10px\" bottom_margin=\"-10px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1496402409845{padding-top: 81px !important;padding-bottom: 70px !important;}\"][vc_column][mkdf_section_title type=\"standard\" title_tag=\"\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" title=\"Gia sư hàng đầu\" title_color=\"#d8a64e\" text=\"Lorem Ipsn gravida nibh vel velit auctor aliquetnean sollicitudin,lorem quis bibendum\"][vc_empty_space height=\"85px\"][mkdf_instructor_list number_of_columns=\"3\" space_between_items=\"normal\" number_of_items=\"9\" order_by=\"date\" order=\"ASC\" instructor_layout=\"simple\" enable_shadow=\"yes\" instructor_background=\"#ffffff\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" content_text_aligment=\"center\" parallax_background_image=\"422\" css=\".vc_custom_1496402470103{padding-top: 100px !important;padding-bottom: 95px !important;}\"][vc_column][mkdf_testimonials type=\"standard\" skin=\"light\" slider_loop=\"yes\" slider_autoplay=\"yes\" slider_navigation=\"no\" slider_pagination=\"yes\" slider_padding=\"no\" number=\"3\" category=\"standard-2\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\"][vc_column offset=\"vc_col-lg-6\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding_1024_1280=\"192px 0 0\" item_padding=\"72px 0 0\" item_padding_1280_1600=\"72px 0 0\" item_padding_768_1024=\"0 0\" item_padding_680_768=\"0 0\" item_padding_680=\"0 0\"][mkdf_single_image enable_image_shadow=\"no\" image=\"1827\" image_size=\"full\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column offset=\"vc_col-lg-6\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding_768_1024=\"70px 0 100px\" item_padding_680_768=\"70px 0 100px\" item_padding_680=\"70px 0 100px\" item_padding=\"72px 0 0\" item_padding_1280_1600=\"72px 0 0\" item_padding_1024_1280=\"72px 0 0\"][vc_column_text css=\".vc_custom_1496329986296{padding-bottom: 20px !important;}\"]\r\n<h4>FAQs</h4>\r\n[/vc_column_text][mkdf_accordion][mkdf_accordion_tab title=\"Can I just enroll in a single course?\"][vc_column_text]Lorem ipsum proin gravida velit auctor aliquet. Aenean sollicitu din, lorem auci elit consequat ipsutissem niuis sed odio sit amet a sit amet.[/vc_column_text][/mkdf_accordion_tab][mkdf_accordion_tab title=\"What is the refund policy?\"][vc_column_text]Lorem ipsum proin gravida velit auctor aliquet. Aenean sollicitu din, lorem auci elit consequat ipsutissem niuis sed odio sit amet a sit amet.[/vc_column_text][/mkdf_accordion_tab][mkdf_accordion_tab title=\"What background knowledge is necessary?\"][vc_column_text]Lorem ipsum proin gravida velit auctor aliquet. Aenean sollicitu din, lorem auci elit consequat ipsutissem niuis sed odio sit amet a sit amet.[/vc_column_text][/mkdf_accordion_tab][mkdf_accordion_tab title=\"Do I need to take the courses in a specific order?\"][vc_column_text]Lorem ipsum proin gravida velit auctor aliquet. Aenean sollicitu din, lorem auci elit consequat ipsutissem niuis sed odio sit amet a sit amet.[/vc_column_text][/mkdf_accordion_tab][/mkdf_accordion][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row][vc_column][mkdf_instructor_list space_between_items=\"normal\" order_by=\"date\" order=\"ASC\" instructor_layout=\"info-bellow\"][/vc_column][/vc_row][vc_row][vc_column][mkdf_instructor_slider number_of_columns=\"3\" space_between_items=\"normal\" order_by=\"date\" order=\"ASC\" instructor_layout=\"info-bellow\" slider_navigation=\"yes\" slider_pagination=\"yes\"][/vc_column][/vc_row][vc_row][vc_column][mkdf_instructor_list space_between_items=\"normal\" order_by=\"date\" order=\"ASC\" instructor_layout=\"info-bellow\"][/vc_column][/vc_row]','Về chúng tôi','','inherit','closed','closed','','1580-revision-v1','','','2024-10-29 22:18:25','2024-10-29 15:18:25','',1580,'http://giasuolympia.com/?p=4473',0,'revision','',0),(4474,1,'2024-10-29 22:19:19','2024-10-29 15:19:19','[vc_row row_content_width=\"grid\" css=\".vc_custom_1497440561376{padding-top: 100px !important;padding-bottom: 80px !important;}\"][vc_column offset=\"vc_col-lg-8\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" background_image=\"2820\" item_padding=\"251px 45%\" item_padding_1024_1280=\"251px 45%\" item_padding_768_1024=\"230px 45%\" item_padding_680_768=\"180px 45%\" item_padding_680=\"130px 35%\"][mkdf_video_button video_link=\"https://vimeo.com/157562616\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column offset=\"vc_col-lg-4\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding_768_1024=\"100px 0 0\" item_padding_680_768=\"100px 0 0\" item_padding_680=\"100px 0 0\"][contact-form-7 id=\"171\" html_class=\"cf7_custom_style_2\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1495720773265{padding-bottom: 70px !important;}\"][vc_column][mkdf_section_title type=\"standard\" position=\"center\" title_tag=\"\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"400\" title=\"Gia sư hàng đầu\" title_color=\"#d8a64e\" text=\"Lorem Ipsn gravida nibh vel velit auctor aliquetnean sollicitudin,lorem quis bibendum\" text_font_size=\"17\"][vc_empty_space height=\"30px\"][mkdf_instructor_list number_of_columns=\"3\" space_between_items=\"normal\" number_of_items=\"9\" order_by=\"date\" order=\"ASC\" instructor_layout=\"simple\" enable_shadow=\"yes\" instructor_background=\"#ffffff\"][/vc_column][/vc_row]','Đăng ký làm gia sư','','inherit','closed','closed','','129-revision-v1','','','2024-10-29 22:19:19','2024-10-29 15:19:19','',129,'http://giasuolympia.com/?p=4474',0,'revision','',0),(4475,1,'2024-10-29 22:25:56','2024-10-29 15:25:56','Sinh viên Nam, Nữ','Lớp 8 - Sinh','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in.','inherit','closed','closed','','677-autosave-v1','','','2024-10-29 22:25:56','2024-10-29 15:25:56','',677,'http://giasuolympia.com/?p=4475',0,'revision','',0),(4476,1,'2024-10-29 22:28:02','2024-10-29 15:28:02','[vc_row][vc_column][vc_column_text]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. Sed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare.\n\n&nbsp;\n\nSed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. Sed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1495700781665{padding-top: 21px !important;}\"][vc_column][vc_column_text]\n<h4>Other Instructors:</h4>\n[/vc_column_text][vc_empty_space height=\"25px\"][mkdf_instructor_list number_of_columns=\"2\" space_between_items=\"normal\" number_of_items=\"4\" order_by=\"date\" order=\"ASC\" instructor_layout=\"simple\" instructor_background=\"#ffffff\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1495700787120{padding-bottom: 100px !important;}\"][vc_column][vc_column_text]\n<h4>FAQs</h4>\n[/vc_column_text][vc_empty_space height=\"25px\"][mkdf_accordion background_skin=\"white\"][mkdf_accordion_tab title=\"Can I just enroll in a single course? I\'m not interested in the entire Specialization.\"][vc_column_text]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.[/vc_column_text][/mkdf_accordion_tab][mkdf_accordion_tab title=\"What is the refund policy?\"][vc_column_text]Pri ferri lorem ea, ei feugiat democritum mei. Vide veri nec cu. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit.[/vc_column_text][/mkdf_accordion_tab][mkdf_accordion_tab title=\"What background knowledge is necessary?\"][vc_column_text]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.[/vc_column_text][/mkdf_accordion_tab][mkdf_accordion_tab title=\"Do I need to take the courses in a specific order?\"][vc_column_text]Pri ferri lorem ea, ei feugiat democritum mei. Vide veri nec cu. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit.[/vc_column_text][/mkdf_accordion_tab][/mkdf_accordion][/vc_column][/vc_row]','Lớp 9 - Hóa','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in.','inherit','closed','closed','','274-autosave-v1','','','2024-10-29 22:28:02','2024-10-29 15:28:02','',274,'http://giasuolympia.com/?p=4476',0,'revision','',0),(4477,1,'2024-10-29 22:31:57','2024-10-29 15:31:57','[vc_row][vc_column][vc_column_text]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. Sed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare.\n\n&nbsp;\n\nSed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. Sed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1495700781665{padding-top: 21px !important;}\"][vc_column][vc_column_text]\n<h4>Other Instructors:</h4>\n[/vc_column_text][vc_empty_space height=\"25px\"][mkdf_instructor_list number_of_columns=\"2\" space_between_items=\"normal\" number_of_items=\"4\" order_by=\"date\" order=\"ASC\" instructor_layout=\"simple\" instructor_background=\"#ffffff\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1495700787120{padding-bottom: 100px !important;}\"][vc_column][vc_column_text]\n<h4>FAQs</h4>\n[/vc_column_text][vc_empty_space height=\"25px\"][mkdf_accordion background_skin=\"white\"][mkdf_accordion_tab title=\"Can I just enroll in a single course? I\'m not interested in the entire Specialization.\"][vc_column_text]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.[/vc_column_text][/mkdf_accordion_tab][mkdf_accordion_tab title=\"What is the refund policy?\"][vc_column_text]Pri ferri lorem ea, ei feugiat democritum mei. Vide veri nec cu. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit.[/vc_column_text][/mkdf_accordion_tab][mkdf_accordion_tab title=\"What background knowledge is necessary?\"][vc_column_text]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.[/vc_column_text][/mkdf_accordion_tab][mkdf_accordion_tab title=\"Do I need to take the courses in a specific order?\"][vc_column_text]Pri ferri lorem ea, ei feugiat democritum mei. Vide veri nec cu. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit.[/vc_column_text][/mkdf_accordion_tab][/mkdf_accordion][/vc_column][/vc_row]','Lớp 1: Tiếng Việt','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in.','inherit','closed','closed','','229-autosave-v1','','','2024-10-29 22:31:57','2024-10-29 15:31:57','',229,'http://giasuolympia.com/?p=4477',0,'revision','',0),(4478,1,'2024-10-29 22:36:13','2024-10-29 15:36:13','[vc_row][vc_column][vc_column_text]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. Sed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare.\n\n&nbsp;\n\nSed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. Sed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1495700781665{padding-top: 21px !important;}\"][vc_column][vc_column_text]\n<h4>Other Instructors:</h4>\n[/vc_column_text][vc_empty_space height=\"25px\"][mkdf_instructor_list number_of_columns=\"2\" space_between_items=\"normal\" number_of_items=\"4\" order_by=\"date\" order=\"ASC\" instructor_layout=\"simple\" instructor_background=\"#ffffff\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1495700787120{padding-bottom: 100px !important;}\"][vc_column][vc_column_text]\n<h4>FAQs</h4>\n[/vc_column_text][vc_empty_space height=\"25px\"][mkdf_accordion background_skin=\"white\"][mkdf_accordion_tab title=\"Can I just enroll in a single course? I\'m not interested in the entire Specialization.\"][vc_column_text]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.[/vc_column_text][/mkdf_accordion_tab][mkdf_accordion_tab title=\"What is the refund policy?\"][vc_column_text]Pri ferri lorem ea, ei feugiat democritum mei. Vide veri nec cu. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit.[/vc_column_text][/mkdf_accordion_tab][mkdf_accordion_tab title=\"What background knowledge is necessary?\"][vc_column_text]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.[/vc_column_text][/mkdf_accordion_tab][mkdf_accordion_tab title=\"Do I need to take the courses in a specific order?\"][vc_column_text]Pri ferri lorem ea, ei feugiat democritum mei. Vide veri nec cu. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit.[/vc_column_text][/mkdf_accordion_tab][/mkdf_accordion][/vc_column][/vc_row]','Lớp 3: Tiếng Anh','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in.','inherit','closed','closed','','279-autosave-v1','','','2024-10-29 22:36:13','2024-10-29 15:36:13','',279,'http://giasuolympia.com/?p=4478',0,'revision','',0),(4479,1,'2024-10-29 22:38:15','2024-10-29 15:38:15','[vc_row][vc_column][vc_column_text]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. Sed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare.\n\n&nbsp;\n\nSed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. Sed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1495700781665{padding-top: 21px !important;}\"][vc_column][vc_column_text]\n<h4>Other Instructors:</h4>\n[/vc_column_text][vc_empty_space height=\"25px\"][mkdf_instructor_list number_of_columns=\"2\" space_between_items=\"normal\" number_of_items=\"4\" order_by=\"date\" order=\"ASC\" instructor_layout=\"simple\" instructor_background=\"#ffffff\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1495700787120{padding-bottom: 100px !important;}\"][vc_column][vc_column_text]\n<h4>FAQs</h4>\n[/vc_column_text][vc_empty_space height=\"25px\"][mkdf_accordion background_skin=\"white\"][mkdf_accordion_tab title=\"Can I just enroll in a single course? I\'m not interested in the entire Specialization.\"][vc_column_text]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.[/vc_column_text][/mkdf_accordion_tab][mkdf_accordion_tab title=\"What is the refund policy?\"][vc_column_text]Pri ferri lorem ea, ei feugiat democritum mei. Vide veri nec cu. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit.[/vc_column_text][/mkdf_accordion_tab][mkdf_accordion_tab title=\"What background knowledge is necessary?\"][vc_column_text]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.[/vc_column_text][/mkdf_accordion_tab][mkdf_accordion_tab title=\"Do I need to take the courses in a specific order?\"][vc_column_text]Pri ferri lorem ea, ei feugiat democritum mei. Vide veri nec cu. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit.[/vc_column_text][/mkdf_accordion_tab][/mkdf_accordion][/vc_column][/vc_row]','Lớp 4: Toán','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in.','inherit','closed','closed','','277-autosave-v1','','','2024-10-29 22:38:15','2024-10-29 15:38:15','',277,'http://giasuolympia.com/?p=4479',0,'revision','',0),(4480,1,'2024-10-29 22:40:28','2024-10-29 15:40:28','Sinh viên Nam, Nữ','Lớp 7: Lý','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in.','inherit','closed','closed','','276-autosave-v1','','','2024-10-29 22:40:28','2024-10-29 15:40:28','',276,'http://giasuolympia.com/?p=4480',0,'revision','',0),(4481,1,'2024-10-29 22:42:48','2024-10-29 15:42:48','Sinh viên Nam, Nữ','Lớp 6: Lý','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in.','inherit','closed','closed','','286-autosave-v1','','','2024-10-29 22:42:48','2024-10-29 15:42:48','',286,'http://giasuolympia.com/?p=4481',0,'revision','',0),(4482,1,'2024-10-29 22:45:16','2024-10-29 15:45:16','[vc_row][vc_column][vc_column_text]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. Sed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Lorem Ipsum. Proin gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare.\n\n&nbsp;\n\nSed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. Sed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1495700781665{padding-top: 21px !important;}\"][vc_column][vc_column_text]\n<h4>Other Instructors:</h4>\n[/vc_column_text][vc_empty_space height=\"25px\"][mkdf_instructor_list number_of_columns=\"2\" space_between_items=\"normal\" number_of_items=\"4\" order_by=\"date\" order=\"ASC\" instructor_layout=\"simple\" instructor_background=\"#ffffff\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1495700787120{padding-bottom: 100px !important;}\"][vc_column][vc_column_text]\n<h4>FAQs</h4>\n[/vc_column_text][vc_empty_space height=\"25px\"][mkdf_accordion background_skin=\"white\"][mkdf_accordion_tab title=\"Can I just enroll in a single course? I\'m not interested in the entire Specialization.\"][vc_column_text]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.[/vc_column_text][/mkdf_accordion_tab][mkdf_accordion_tab title=\"What is the refund policy?\"][vc_column_text]Pri ferri lorem ea, ei feugiat democritum mei. Vide veri nec cu. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit.[/vc_column_text][/mkdf_accordion_tab][mkdf_accordion_tab title=\"What background knowledge is necessary?\"][vc_column_text]Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.[/vc_column_text][/mkdf_accordion_tab][mkdf_accordion_tab title=\"Do I need to take the courses in a specific order?\"][vc_column_text]Pri ferri lorem ea, ei feugiat democritum mei. Vide veri nec cu. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Lorem Ipsn gravida nibh vel velit auctor aliquet.Aenean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit.[/vc_column_text][/mkdf_accordion_tab][/mkdf_accordion][/vc_column][/vc_row]','Lớp 2: Tiếng Anh','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in.','inherit','closed','closed','','284-autosave-v1','','','2024-10-29 22:45:16','2024-10-29 15:45:16','',284,'http://giasuolympia.com/?p=4482',0,'revision','',0),(4483,1,'2024-10-29 22:49:36','2024-10-29 15:49:36','Dạy 120 phút/buổi, T2, 4, 6 Tối 6h - 8h(chọn 3b)','Lớp 11: Văn','Lorem ipsum dolor sit amet, te eros consulatu pro, quem labores petentium no sea, atqui posidonium interpretaris pri eu. At soleat maiorum platonem vix, no mei case fierent. Primis quidam ancillae te mei, agam nullam usu ex, eros repudiandae at cum. Quas reformidans eum in.','inherit','closed','closed','','281-autosave-v1','','','2024-10-29 22:49:36','2024-10-29 15:49:36','',281,'http://giasuolympia.com/?p=4483',0,'revision','',0),(4484,1,'2024-10-29 23:14:32','2024-10-29 16:14:32','','logo_olympia_ko','','inherit','open','closed','','logo_olympia_ko-2','','','2024-10-29 23:14:32','2024-10-29 16:14:32','',0,'http://giasuolympia.com/wp-content/uploads/2024/10/logo_olympia_ko.png',0,'attachment','image/png',0),(4486,1,'2024-10-30 17:42:17','2024-10-30 10:42:17','[vc_row row_content_width=\"grid\" parallax_background_image=\"161\" css=\".vc_custom_1496068196330{padding-top: 110px !important;padding-bottom: 125px !important;}\" simple_background_color=\"#ffffff\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0px 20% 92px\" item_padding_768_1024=\"0px 10% 92px\" item_padding_680_768=\"0px 0% 92px\" item_padding_680=\"0px 0% 92px\"][mkdf_section_title type=\"standard\" position=\"center\" title_tag=\"h1\" disable_break_words=\"no\" title=\"Các khóa học trực tuyến phổ biến\" title_color=\"#ffffff\"][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_course_slider number_of_columns=\"4\" space_between_items=\"normal\" image_proportions=\"full\" order_by=\"date\" order=\"ASC\" title_tag=\"h5\" enable_price=\"no\" enable_excerpt=\"yes\" enable_students=\"no\" enable_loop=\"yes\" enable_autoplay=\"yes\" enable_navigation=\"no\" enable_pagination=\"yes\" pagination_skin=\"light\" pagination_position=\"below-slider\" excerpt_length=\"56\" number_of_items=\"12\"][/vc_column][/vc_row][vc_row][vc_column][mkdf_separator type=\"full-width\" border_style=\"\" color=\"#ebebeb\" thickness=\"1\" top_margin=\"0px\" bottom_margin=\"0px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" content_text_aligment=\"center\" css=\".vc_custom_1496232790191{padding-top: 115px !important;padding-bottom: 100px !important;}\" simple_background_color=\"#ffffff\"][vc_column][mkdf_section_title type=\"standard\" position=\"center\" title_tag=\"h2\" disable_break_words=\"yes\" title=\"Gia sư hàng đầu\"][vc_empty_space height=\"30px\"][mkdf_instructor_list number_of_columns=\"3\" space_between_items=\"normal\" number_of_items=\"9\" order_by=\"date\" order=\"ASC\" instructor_layout=\"simple\" enable_shadow=\"no\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" content_text_aligment=\"center\" css=\".vc_custom_1496309608001{padding-top: 110px !important;padding-bottom: 130px !important;}\"][vc_column][mkdf_section_title type=\"standard\" position=\"center\" title_tag=\"h1\" disable_break_words=\"no\" title=\"Khóa học trực tuyến\"][vc_empty_space height=\"30px\"][mkdf_course_table order_by=\"date\" order=\"ASC\" enable_students=\"no\" selected_courses=\"18, 174, 229, 269, 274\"][/vc_column][/vc_row][vc_row][vc_column][mkdf_separator type=\"full-width\" border_style=\"\" color=\"#ebebeb\" thickness=\"1\" top_margin=\"0px\" bottom_margin=\"0px\"][/vc_column][/vc_row]','Trang chủ','','inherit','closed','closed','','4124-revision-v1','','','2024-10-30 17:42:17','2024-10-30 10:42:17','',4124,'http://giasuolympia.com/?p=4486',0,'revision','',0),(4490,1,'2024-10-31 09:39:38','2024-10-31 02:39:38','[vc_row row_content_width=\"grid\" parallax_background_image=\"161\" css=\".vc_custom_1496068196330{padding-top: 110px !important;padding-bottom: 125px !important;}\" simple_background_color=\"#ffffff\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0px 20% 92px\" item_padding_768_1024=\"0px 10% 92px\" item_padding_680_768=\"0px 0% 92px\" item_padding_680=\"0px 0% 92px\"][mkdf_section_title type=\"standard\" position=\"center\" title_tag=\"h1\" disable_break_words=\"no\" title=\"Các khóa học trực tuyến phổ biến\" title_color=\"#ffffff\"][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_course_slider number_of_columns=\"4\" space_between_items=\"normal\" image_proportions=\"full\" order_by=\"date\" order=\"ASC\" title_tag=\"h5\" enable_price=\"no\" enable_excerpt=\"yes\" enable_students=\"no\" enable_loop=\"yes\" enable_autoplay=\"yes\" enable_navigation=\"no\" enable_pagination=\"yes\" pagination_skin=\"light\" pagination_position=\"below-slider\" excerpt_length=\"56\" number_of_items=\"12\"][/vc_column][/vc_row][vc_row][vc_column][mkdf_separator type=\"full-width\" border_style=\"\" color=\"#ebebeb\" thickness=\"1\" top_margin=\"0px\" bottom_margin=\"0px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" content_text_aligment=\"center\" css=\".vc_custom_1496232790191{padding-top: 115px !important;padding-bottom: 100px !important;}\" simple_background_color=\"#ffffff\"][vc_column css=\".vc_custom_1730342373849{padding-top: 30px !important;padding-bottom: 30px !important;}\"][mkdf_section_title type=\"standard\" position=\"center\" title_tag=\"h2\" disable_break_words=\"yes\" title=\"Gia sư hàng đầu\"][vc_empty_space height=\"30px\"][mkdf_instructor_list number_of_columns=\"3\" space_between_items=\"normal\" number_of_items=\"9\" order_by=\"date\" order=\"ASC\" instructor_layout=\"simple\" enable_shadow=\"no\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" content_text_aligment=\"center\" css=\".vc_custom_1496309608001{padding-top: 110px !important;padding-bottom: 130px !important;}\"][vc_column][mkdf_section_title type=\"standard\" position=\"center\" title_tag=\"h1\" disable_break_words=\"no\" title=\"Khóa học trực tuyến\"][vc_empty_space height=\"30px\"][mkdf_course_table order_by=\"date\" order=\"ASC\" enable_students=\"no\" selected_courses=\"18, 174, 229, 269, 274\"][/vc_column][/vc_row][vc_row][vc_column][mkdf_separator type=\"full-width\" border_style=\"\" color=\"#ebebeb\" thickness=\"1\" top_margin=\"0px\" bottom_margin=\"0px\"][/vc_column][/vc_row]','Trang chủ','','inherit','closed','closed','','4124-revision-v1','','','2024-10-31 09:39:38','2024-10-31 02:39:38','',4124,'http://giasuolympia.com/?p=4490',0,'revision','',0),(4491,1,'2024-10-31 09:41:27','2024-10-31 02:41:27','[vc_row row_content_width=\"grid\" parallax_background_image=\"161\" css=\".vc_custom_1496068196330{padding-top: 110px !important;padding-bottom: 125px !important;}\" simple_background_color=\"#ffffff\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0px 20% 92px\" item_padding_768_1024=\"0px 10% 92px\" item_padding_680_768=\"0px 0% 92px\" item_padding_680=\"0px 0% 92px\"][mkdf_section_title type=\"standard\" position=\"center\" title_tag=\"h1\" disable_break_words=\"no\" title=\"Các khóa học trực tuyến phổ biến\" title_color=\"#ffffff\"][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_course_slider number_of_columns=\"4\" space_between_items=\"normal\" image_proportions=\"full\" order_by=\"date\" order=\"ASC\" title_tag=\"h5\" enable_price=\"no\" enable_excerpt=\"yes\" enable_students=\"no\" enable_loop=\"yes\" enable_autoplay=\"yes\" enable_navigation=\"no\" enable_pagination=\"yes\" pagination_skin=\"light\" pagination_position=\"below-slider\" excerpt_length=\"56\" number_of_items=\"12\"][/vc_column][/vc_row][vc_row][vc_column][mkdf_separator type=\"full-width\" border_style=\"\" color=\"#ebebeb\" thickness=\"1\" top_margin=\"0px\" bottom_margin=\"0px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" content_text_aligment=\"center\" css=\".vc_custom_1730342483385{padding-top: 45px !important;padding-bottom: 30px !important;}\" simple_background_color=\"#ffffff\"][vc_column][mkdf_section_title type=\"standard\" position=\"center\" title_tag=\"h2\" disable_break_words=\"yes\" title=\"Gia sư hàng đầu\"][vc_empty_space height=\"30px\"][mkdf_instructor_list number_of_columns=\"3\" space_between_items=\"normal\" number_of_items=\"9\" order_by=\"date\" order=\"ASC\" instructor_layout=\"simple\" enable_shadow=\"no\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" content_text_aligment=\"center\" css=\".vc_custom_1496309608001{padding-top: 110px !important;padding-bottom: 130px !important;}\"][vc_column][mkdf_section_title type=\"standard\" position=\"center\" title_tag=\"h1\" disable_break_words=\"no\" title=\"Khóa học trực tuyến\"][vc_empty_space height=\"30px\"][mkdf_course_table order_by=\"date\" order=\"ASC\" enable_students=\"no\" selected_courses=\"18, 174, 229, 269, 274\"][/vc_column][/vc_row][vc_row][vc_column][mkdf_separator type=\"full-width\" border_style=\"\" color=\"#ebebeb\" thickness=\"1\" top_margin=\"0px\" bottom_margin=\"0px\"][/vc_column][/vc_row]','Trang chủ','','inherit','closed','closed','','4124-revision-v1','','','2024-10-31 09:41:27','2024-10-31 02:41:27','',4124,'http://giasuolympia.com/?p=4491',0,'revision','',0),(4492,1,'2024-10-31 09:53:44','2024-10-31 02:53:44','[vc_row row_content_width=\"grid\" parallax_background_image=\"161\" css=\".vc_custom_1730343221541{padding-top: 40px !important;padding-bottom: 30px !important;}\" simple_background_color=\"#ffffff\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0px 20% 92px\" item_padding_768_1024=\"0px 10% 92px\" item_padding_680_768=\"0px 0% 92px\" item_padding_680=\"0px 0% 92px\"][mkdf_section_title type=\"standard\" position=\"center\" title_tag=\"h1\" disable_break_words=\"no\" title=\"Các khóa học trực tuyến phổ biến\" title_color=\"#ffffff\"][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_course_slider number_of_columns=\"4\" space_between_items=\"normal\" image_proportions=\"full\" order_by=\"date\" order=\"ASC\" title_tag=\"h5\" enable_price=\"no\" enable_excerpt=\"yes\" enable_students=\"no\" enable_loop=\"yes\" enable_autoplay=\"yes\" enable_navigation=\"no\" enable_pagination=\"yes\" pagination_skin=\"light\" pagination_position=\"below-slider\" excerpt_length=\"56\" number_of_items=\"12\"][/vc_column][/vc_row][vc_row][vc_column][mkdf_separator type=\"full-width\" border_style=\"\" color=\"#ebebeb\" thickness=\"1\" top_margin=\"0px\" bottom_margin=\"0px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" content_text_aligment=\"center\" css=\".vc_custom_1730343190361{padding-top: 40px !important;padding-bottom: 30px !important;}\" simple_background_color=\"#ffffff\"][vc_column][mkdf_section_title type=\"standard\" position=\"center\" title_tag=\"h2\" disable_break_words=\"yes\" title=\"Gia sư hàng đầu\"][vc_empty_space height=\"30px\"][mkdf_instructor_list number_of_columns=\"3\" space_between_items=\"normal\" number_of_items=\"9\" order_by=\"date\" order=\"ASC\" instructor_layout=\"simple\" enable_shadow=\"no\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" content_text_aligment=\"center\" css=\".vc_custom_1730343179893{padding-top: 40px !important;padding-bottom: 30px !important;}\"][vc_column][mkdf_section_title type=\"standard\" position=\"center\" title_tag=\"h1\" disable_break_words=\"no\" title=\"Khóa học trực tuyến\"][vc_empty_space height=\"30px\"][mkdf_course_table order_by=\"date\" order=\"ASC\" enable_students=\"no\" selected_courses=\"18, 174, 229, 269, 274\"][/vc_column][/vc_row][vc_row][vc_column][mkdf_separator type=\"full-width\" border_style=\"\" color=\"#ebebeb\" thickness=\"1\" top_margin=\"0px\" bottom_margin=\"0px\"][/vc_column][/vc_row]','Trang chủ','','inherit','closed','closed','','4124-revision-v1','','','2024-10-31 09:53:44','2024-10-31 02:53:44','',4124,'http://giasuolympia.com/?p=4492',0,'revision','',0),(4493,1,'2024-10-31 10:04:44','2024-10-31 03:04:44','[vc_row row_content_width=\"grid\" parallax_background_image=\"161\" css=\".vc_custom_1730343221541{padding-top: 40px !important;padding-bottom: 30px !important;}\" simple_background_color=\"#ffffff\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\" background_color=\"#eeee22\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0px 20% 92px\" item_padding_768_1024=\"0px 10% 92px\" item_padding_680_768=\"0px 0% 92px\" item_padding_680=\"0px 0% 92px\"][mkdf_section_title type=\"standard\" position=\"center\" title_tag=\"h1\" disable_break_words=\"no\" title=\"Các khóa học trực tuyến phổ biến\" title_color=\"#ffffff\"][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_course_slider number_of_columns=\"4\" space_between_items=\"normal\" image_proportions=\"full\" order_by=\"date\" order=\"ASC\" title_tag=\"h5\" enable_price=\"no\" enable_excerpt=\"yes\" enable_students=\"no\" enable_loop=\"yes\" enable_autoplay=\"yes\" enable_navigation=\"no\" enable_pagination=\"yes\" pagination_skin=\"light\" pagination_position=\"below-slider\" excerpt_length=\"56\" number_of_items=\"12\"][/vc_column][/vc_row][vc_row][vc_column][mkdf_separator type=\"full-width\" border_style=\"\" color=\"#ebebeb\" thickness=\"1\" top_margin=\"0px\" bottom_margin=\"0px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" content_text_aligment=\"center\" css=\".vc_custom_1730343190361{padding-top: 40px !important;padding-bottom: 30px !important;}\" simple_background_color=\"#ffffff\"][vc_column][mkdf_section_title type=\"standard\" position=\"center\" title_tag=\"h2\" disable_break_words=\"yes\" title=\"Gia sư hàng đầu\"][vc_empty_space height=\"30px\"][mkdf_instructor_list number_of_columns=\"3\" space_between_items=\"normal\" number_of_items=\"9\" order_by=\"date\" order=\"ASC\" instructor_layout=\"simple\" enable_shadow=\"no\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" content_text_aligment=\"center\" css=\".vc_custom_1730343179893{padding-top: 40px !important;padding-bottom: 30px !important;}\"][vc_column][mkdf_section_title type=\"standard\" position=\"center\" title_tag=\"h1\" disable_break_words=\"no\" title=\"Khóa học trực tuyến\"][vc_empty_space height=\"30px\"][mkdf_course_table order_by=\"date\" order=\"ASC\" enable_students=\"no\" selected_courses=\"18, 174, 229, 269, 274\"][/vc_column][/vc_row][vc_row][vc_column][mkdf_separator type=\"full-width\" border_style=\"\" color=\"#ebebeb\" thickness=\"1\" top_margin=\"0px\" bottom_margin=\"0px\"][/vc_column][/vc_row]','Trang chủ','','inherit','closed','closed','','4124-revision-v1','','','2024-10-31 10:04:44','2024-10-31 03:04:44','',4124,'http://giasuolympia.com/?p=4493',0,'revision','',0),(4494,1,'2024-10-31 10:39:04','2024-10-31 03:39:04','[vc_row row_content_width=\"grid\" css=\".vc_custom_1730345417201{padding-top: 40px !important;padding-bottom: 20px !important;}\" simple_background_color=\"#ffffff\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0px 20% 0px\" item_padding_768_1024=\"0px 10% 0px\" item_padding_680_768=\"0px 0% 0px\" item_padding_680=\"0px 0% 0px\"][mkdf_section_title type=\"standard\" position=\"center\" title_tag=\"h1\" disable_break_words=\"no\" title=\"Các khóa học trực tuyến phổ biến\" title_color=\"#000000\"][vc_empty_space height=\"30px\"][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_course_slider number_of_columns=\"4\" space_between_items=\"normal\" image_proportions=\"full\" order_by=\"date\" order=\"ASC\" title_tag=\"h5\" enable_price=\"no\" enable_excerpt=\"yes\" enable_students=\"no\" enable_loop=\"yes\" enable_autoplay=\"yes\" enable_navigation=\"no\" enable_pagination=\"yes\" pagination_skin=\"light\" pagination_position=\"below-slider\" excerpt_length=\"56\" number_of_items=\"12\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" content_text_aligment=\"center\" css=\".vc_custom_1730345448501{padding-top: 20px !important;padding-bottom: 10px !important;}\" simple_background_color=\"#ffffff\"][vc_column][mkdf_section_title type=\"standard\" position=\"center\" title_tag=\"h2\" disable_break_words=\"yes\" title=\"Gia sư hàng đầu\"][vc_empty_space height=\"30px\"][mkdf_instructor_list number_of_columns=\"3\" space_between_items=\"normal\" number_of_items=\"9\" order_by=\"date\" order=\"ASC\" instructor_layout=\"simple\" enable_shadow=\"no\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" content_text_aligment=\"center\" css=\".vc_custom_1730345941548{padding-top: 20px !important;padding-bottom: 30px !important;}\"][vc_column][mkdf_section_title type=\"standard\" position=\"center\" title_tag=\"h1\" disable_break_words=\"no\" title=\"Khóa học trực tuyến\"][vc_empty_space height=\"30px\"][mkdf_course_table order_by=\"date\" order=\"ASC\" enable_students=\"no\" selected_courses=\"18, 174, 229, 269, 274\"][/vc_column][/vc_row]','Trang chủ','','inherit','closed','closed','','4124-revision-v1','','','2024-10-31 10:39:04','2024-10-31 03:39:04','',4124,'http://giasuolympia.com/?p=4494',0,'revision','',0),(4496,1,'2024-10-31 14:41:08','2024-10-31 07:41:08','','thầy giáo_600x600','','inherit','open','closed','','thay-giao_600x600','','','2024-10-31 14:41:18','2024-10-31 07:41:18','',110,'http://giasuolympia.com/wp-content/uploads/2024/10/thay-giao_600x600.jpg',0,'attachment','image/jpeg',0),(4497,1,'2024-10-31 14:44:04','2024-10-31 07:44:04','','cô giáo_600x600','','inherit','open','closed','','co-giao_600x600','','','2024-10-31 14:44:13','2024-10-31 07:44:13','',108,'http://giasuolympia.com/wp-content/uploads/2017/05/co-giao_600x600.jpg',0,'attachment','image/jpeg',0),(4498,1,'2024-10-31 17:42:35','2024-10-31 10:42:35','[vc_row row_content_width=\"grid\" css=\".vc_custom_1497856003172{padding-top: 100px !important;padding-bottom: 100px !important;}\" simple_background_color=\"#ffffff\"][vc_column][mkdf_image_gallery type=\"grid\" enable_image_shadow=\"no\" image_behavior=\"lightbox\" number_of_columns=\"four\" space_between_columns=\"normal\" images=\"2330,2331,1633,1634,1635,1636,1637,1630,2332,1632,2333,2334\" image_size=\"full\"][/vc_column][/vc_row]','Hình ảnh lớp học','','inherit','closed','closed','','2329-revision-v1','','','2024-10-31 17:42:35','2024-10-31 10:42:35','',2329,'http://giasuolympia.com/?p=4498',0,'revision','',0),(4499,1,'2024-10-31 17:43:40','2024-10-31 10:43:40','[vc_row row_content_width=\"grid\" css=\".vc_custom_1497856003172{padding-top: 100px !important;padding-bottom: 100px !important;}\" simple_background_color=\"#ffffff\"][vc_column][mkdf_image_gallery type=\"grid\" enable_image_shadow=\"no\" image_behavior=\"lightbox\" number_of_columns=\"four\" space_between_columns=\"normal\" images=\"2330,2331,1633,1634,1635,1636,1637,1630,2332,1632,2333,2334\" image_size=\"full\"][/vc_column][/vc_row]','Khóa học','','inherit','closed','closed','','2329-autosave-v1','','','2024-10-31 17:43:40','2024-10-31 10:43:40','',2329,'http://giasuolympia.com/?p=4499',0,'revision','',0),(4500,1,'2024-10-31 17:44:26','2024-10-31 10:44:26','[vc_row row_content_width=\"grid\" css=\".vc_custom_1497856003172{padding-top: 100px !important;padding-bottom: 100px !important;}\" simple_background_color=\"#ffffff\"][vc_column][mkdf_image_gallery type=\"grid\" enable_image_shadow=\"no\" image_behavior=\"lightbox\" number_of_columns=\"four\" space_between_columns=\"normal\" images=\"2330,2331,1633,1634,1635,1636,1637,1630,2332,1632,2333,2334\" image_size=\"full\"][/vc_column][/vc_row]','Khóa học','','inherit','closed','closed','','2329-revision-v1','','','2024-10-31 17:44:26','2024-10-31 10:44:26','',2329,'http://giasuolympia.com/?p=4500',0,'revision','',0),(4501,1,'2024-10-31 17:44:40','2024-10-31 10:44:40','[vc_row row_content_width=\"grid\" css=\".vc_custom_1497856003172{padding-top: 100px !important;padding-bottom: 100px !important;}\" simple_background_color=\"#ffffff\"][vc_column][mkdf_image_gallery type=\"grid\" enable_image_shadow=\"no\" image_behavior=\"lightbox\" number_of_columns=\"four\" space_between_columns=\"normal\" images=\"2330,2331,1633,1634,1635,1636,1637,1630,2332,1632,2333,2334\" image_size=\"full\"][/vc_column][/vc_row]','Hình ảnh lớp học','','inherit','closed','closed','','2329-revision-v1','','','2024-10-31 17:44:40','2024-10-31 10:44:40','',2329,'http://giasuolympia.com/?p=4501',0,'revision','',0),(4502,1,'2024-10-31 17:45:20','2024-10-31 10:45:20','[vc_row content_text_aligment=\"center\" css=\".vc_custom_1495807738968{padding-top: 122px !important;padding-bottom: 68px !important;}\"][vc_column][vc_column_text]\r\n<h2><span style=\"color: #000000;\">Khóa học mới</span></h2>\r\n[/vc_column_text][vc_empty_space height=\"30px\"][mkdf_course_list number_of_columns=\"4\" space_between_items=\"normal\" number_of_items=\"12\" order_by=\"date\" order=\"ASC\"][/vc_column][/vc_row]','Lớp học mới','','inherit','closed','closed','','291-revision-v1','','','2024-10-31 17:45:20','2024-10-31 10:45:20','',291,'http://giasuolympia.com/?p=4502',0,'revision','',0),(4503,1,'2024-10-31 17:45:44','2024-10-31 10:45:44','[vc_row css=\".vc_custom_1495809860309{padding-bottom: 68px !important;}\"][vc_column][mkdf_course_list number_of_columns=\"3\" space_between_items=\"normal\" number_of_items=\"9\" order_by=\"date\" order=\"ASC\" enable_instructor=\"no\" enable_students=\"no\" enable_category=\"no\" pagination_type=\"infinite-scroll\" filter=\"yes\"][/vc_column][/vc_row]','Tất cả lớp học','','inherit','closed','closed','','306-revision-v1','','','2024-10-31 17:45:44','2024-10-31 10:45:44','',306,'http://giasuolympia.com/?p=4503',0,'revision','',0),(4504,1,'2024-10-31 17:46:38','2024-10-31 10:46:38','','Lớp học','','inherit','closed','closed','','289-revision-v1','','','2024-10-31 17:46:38','2024-10-31 10:46:38','',289,'http://giasuolympia.com/?p=4504',0,'revision','',0),(4507,1,'2024-10-31 22:20:04','2024-10-31 15:20:04','[vc_row row_content_width=\"grid\" css=\".vc_custom_1730345417201{padding-top: 40px !important;padding-bottom: 20px !important;}\" simple_background_color=\"#ffffff\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0px 20% 0px\" item_padding_768_1024=\"0px 10% 0px\" item_padding_680_768=\"0px 0% 0px\" item_padding_680=\"0px 0% 0px\"][mkdf_section_title type=\"standard\" position=\"center\" title_tag=\"h1\" disable_break_words=\"no\" title=\"Các lớp học trực tuyến phổ biến\" title_color=\"#000000\"][vc_empty_space height=\"30px\"][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_course_slider number_of_columns=\"4\" space_between_items=\"normal\" image_proportions=\"full\" order_by=\"date\" order=\"ASC\" title_tag=\"h5\" enable_price=\"no\" enable_excerpt=\"yes\" enable_students=\"no\" enable_loop=\"yes\" enable_autoplay=\"yes\" enable_navigation=\"no\" enable_pagination=\"yes\" pagination_skin=\"light\" pagination_position=\"below-slider\" excerpt_length=\"56\" number_of_items=\"12\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" content_text_aligment=\"center\" css=\".vc_custom_1730345448501{padding-top: 20px !important;padding-bottom: 10px !important;}\" simple_background_color=\"#ffffff\"][vc_column][mkdf_section_title type=\"standard\" position=\"center\" title_tag=\"h2\" disable_break_words=\"yes\" title=\"Gia sư hàng đầu\"][vc_empty_space height=\"30px\"][mkdf_instructor_list number_of_columns=\"3\" space_between_items=\"normal\" number_of_items=\"9\" order_by=\"date\" order=\"ASC\" instructor_layout=\"simple\" enable_shadow=\"no\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" content_text_aligment=\"center\" css=\".vc_custom_1730345941548{padding-top: 20px !important;padding-bottom: 30px !important;}\"][vc_column][mkdf_section_title type=\"standard\" position=\"center\" title_tag=\"h1\" disable_break_words=\"no\" title=\"Các lớp học trực tuyến\"][vc_empty_space height=\"30px\"][mkdf_course_table order_by=\"date\" order=\"ASC\" enable_students=\"no\" selected_courses=\"18, 174, 229, 269, 274\"][/vc_column][/vc_row]','Trang chủ','','inherit','closed','closed','','4124-revision-v1','','','2024-10-31 22:20:04','2024-10-31 15:20:04','',4124,'http://giasuolympia.com/?p=4507',0,'revision','',0),(4508,1,'2024-11-04 08:29:26','2024-11-04 01:29:26','[vc_row content_text_aligment=\"center\" css=\".vc_custom_1495807738968{padding-top: 122px !important;padding-bottom: 68px !important;}\"][vc_column][vc_column_text]\r\n<h2><span style=\"color: #000000;\">Khóa học mới</span></h2>\r\n[/vc_column_text][vc_empty_space height=\"30px\"][mkdf_course_list number_of_columns=\"4\" space_between_items=\"normal\" number_of_items=\"12\" order_by=\"date\" order=\"ASC\"][/vc_column][/vc_row]','Lớp học đang mở','','inherit','closed','closed','','291-revision-v1','','','2024-11-04 08:29:26','2024-11-04 01:29:26','',291,'http://giasuolympia.com/?p=4508',0,'revision','',0),(4512,1,'2024-11-11 08:26:01','2024-11-11 01:26:01','<p>[vc_row row_content_width=\"grid\" content_text_aligment=\"center\" css=\".vc_custom_1496236554469{padding-top: 225px !important;padding-bottom: 27px !important;}\"][vc_column][mkdf_clients_carousel number_of_visible_items=\"1\" slider_loop=\"yes\" slider_autoplay=\"yes\" slider_navigation=\"no\" slider_pagination=\"no\" items_hover_animation=\"switch-images\"][/mkdf_clients_carousel][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_width=\"1-1\" item_padding=\"0px 23% 155px\" item_padding_1024_1280=\"10px 18% 200px\" item_padding_768_1024=\"0px 3% 155px\" item_padding_680_768=\"0px 0% 155px\" item_padding_680=\"0px 0% 155px\"][mkdf_section_title type=\"standard\" position=\"center\" title_tag=\"h1\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" title=\"Find the Right Courses for You\" text=\"Lorem Ipsn gravida nibh vel velit auctor aliquetnean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit\" text_font_size=\"17\" title_color=\"#ffffff\" text_color=\"#ffffff\"][vc_empty_space height=\"35px\"][vc_widget_sidebar sidebar_id=\"custom-widget-home-2\"][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_masonry_gallery space_between_items=\"no\" order_by=\"date\" order=\"ASC\" category=\"home-1\"][/vc_column][/vc_row]</p>\n','Home 11','','inherit','closed','closed','','1408-autosave-v1','','','2024-11-11 08:26:01','2024-11-11 01:26:01','',1408,'http://giasuolympia.com/?p=4512',0,'revision','',0);
/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_revslider_css`
--

DROP TABLE IF EXISTS `wp_revslider_css`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_revslider_css` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `handle` text NOT NULL,
  `settings` longtext DEFAULT NULL,
  `hover` longtext DEFAULT NULL,
  `advanced` longtext DEFAULT NULL,
  `params` longtext NOT NULL,
  UNIQUE KEY `id` (`id`),
  KEY `handle_index` (`handle`(64))
) ENGINE=InnoDB AUTO_INCREMENT=110 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_revslider_css`
--

LOCK TABLES `wp_revslider_css` WRITE;
/*!40000 ALTER TABLE `wp_revslider_css` DISABLE KEYS */;
INSERT INTO `wp_revslider_css` VALUES (1,'.tp-caption.medium_grey','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"padding\":\"2px 4px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#888\"}'),(2,'.tp-caption.small_text','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"14px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(3,'.tp-caption.medium_text','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(4,'.tp-caption.large_text','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"40px\",\"line-height\":\"40px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(5,'.tp-caption.very_large_text','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\",\"letter-spacing\":\"-2px\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(6,'.tp-caption.very_big_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\",\"padding-top\":\"1px\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"800\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"padding\":\"0px 4px\",\"background-color\":\"#000\"}'),(7,'.tp-caption.very_big_black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\",\"padding-top\":\"1px\"},\"hover\":\"\"}','{\"color\":\"#000\",\"font-weight\":\"700\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"padding\":\"0px 4px\",\"background-color\":\"#fff\"}'),(8,'.tp-caption.modern_medium_fat','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#000\",\"font-weight\":\"800\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(9,'.tp-caption.modern_medium_fat_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"800\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(10,'.tp-caption.modern_medium_light','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#000\",\"font-weight\":\"300\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(11,'.tp-caption.modern_big_bluebg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"letter-spacing\":\"0\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"800\",\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"padding\":\"3px 10px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#4e5b6c\"}'),(12,'.tp-caption.modern_big_redbg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"padding-top\":\"1px\",\"letter-spacing\":\"0\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"padding\":\"3px 10px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#de543e\"}'),(13,'.tp-caption.modern_small_text_dark','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#555\",\"font-size\":\"14px\",\"line-height\":\"22px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(14,'.tp-caption.boxshadow','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"-moz-box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\",\"-webkit-box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\",\"box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\"},\"hover\":\"\"}','[]'),(15,'.tp-caption.black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"color\":\"#000\"}'),(16,'.tp-caption.noshadow','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','[]'),(17,'.tp-caption.thinheadline_dark','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"color\":\"rgba(0,0,0,0.85)\",\"font-weight\":\"300\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"transparent\"}'),(18,'.tp-caption.thintext_dark','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"color\":\"rgba(0,0,0,0.85)\",\"font-weight\":\"300\",\"font-size\":\"16px\",\"line-height\":\"26px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"transparent\"}'),(19,'.tp-caption.largeblackbg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#000\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}'),(20,'.tp-caption.largepinkbg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#db4360\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}'),(21,'.tp-caption.largewhitebg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}','{\"color\":\"#000\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#fff\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}'),(22,'.tp-caption.largegreenbg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#67ae73\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}'),(23,'.tp-caption.excerpt','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\",\"letter-spacing\":\"-1.5px\",\"width\":\"150px\",\"white-space\":\"normal !important\",\"height\":\"auto\"},\"hover\":\"\"}','{\"font-size\":\"36px\",\"line-height\":\"36px\",\"font-weight\":\"700\",\"font-family\":\"Arial\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"rgba(0, 0, 0, 1)\",\"margin\":\"0px\",\"padding\":\"1px 4px 0px 4px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}'),(24,'.tp-caption.large_bold_grey','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(102, 102, 102)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"margin\":\"0px\",\"padding\":\"1px 4px 0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(25,'.tp-caption.medium_thin_grey','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"font-size\":\"34px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(102, 102, 102)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"1px 4px 0px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(26,'.tp-caption.small_thin_grey','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"font-size\":\"18px\",\"line-height\":\"26px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(117, 117, 117)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"1px 4px 0px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(27,'.tp-caption.lightgrey_divider','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"width\":\"370px\",\"height\":\"3px\",\"background-position\":\"initial initial\",\"background-repeat\":\"initial initial\"},\"hover\":\"\"}','{\"text-decoration\":\"none\",\"background-color\":\"rgba(235, 235, 235, 1)\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),(28,'.tp-caption.large_bold_darkblue','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(52, 73, 94)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(29,'.tp-caption.medium_bg_darkblue','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(52, 73, 94)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(30,'.tp-caption.medium_bold_red','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"24px\",\"line-height\":\"30px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(227, 58, 12)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(31,'.tp-caption.medium_light_red','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"21px\",\"line-height\":\"26px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(227, 58, 12)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(32,'.tp-caption.medium_bg_red','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(227, 58, 12)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(33,'.tp-caption.medium_bold_orange','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"24px\",\"line-height\":\"30px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(243, 156, 18)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(34,'.tp-caption.medium_bg_orange','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(243, 156, 18)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(35,'.tp-caption.grassfloor','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"width\":\"4000px\",\"height\":\"150px\"},\"hover\":\"\"}','{\"text-decoration\":\"none\",\"background-color\":\"rgba(160, 179, 151, 1)\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),(36,'.tp-caption.large_bold_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(37,'.tp-caption.medium_light_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(38,'.tp-caption.mediumlarge_light_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(39,'.tp-caption.mediumlarge_light_white_center','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px 0px 0px 0px\",\"text-align\":\"center\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(40,'.tp-caption.medium_bg_asbestos','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(127, 140, 141)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(41,'.tp-caption.medium_light_black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(42,'.tp-caption.large_bold_black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(43,'.tp-caption.mediumlarge_light_darkblue','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(52, 73, 94)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(44,'.tp-caption.small_light_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"17px\",\"line-height\":\"28px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(45,'.tp-caption.roundedimage','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),(46,'.tp-caption.large_bg_black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"40px\",\"line-height\":\"40px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(0, 0, 0)\",\"padding\":\"10px 20px 15px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(47,'.tp-caption.mediumwhitebg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(255, 255, 255)\",\"padding\":\"5px 15px 10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(0, 0, 0)\",\"border-style\":\"none\"}'),(48,'.tp-caption.MarkerDisplay','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ff0000\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"font-style\":\"normal\",\"font-family\":\"Permanent Marker\",\"padding\":\"0px 0px 0px 0px\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(49,'.tp-caption.Restaurant-Display','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"font-size\":\"120px\",\"line-height\":\"120px\",\"font-weight\":\"700\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(50,'.tp-caption.Restaurant-Cursive','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Nothing you could do\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(51,'.tp-caption.Restaurant-ScrollDownText','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(52,'.tp-caption.Restaurant-Description','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"font-size\":\"20px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(53,'.tp-caption.Restaurant-Price','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(54,'.tp-caption.Restaurant-Menuitem','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"500\",\"easing\":\"power2.inOut\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(55,'.tp-caption.Furniture-LogoText','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"color\":\"#e6cfa3\",\"color-transparency\":\"1\",\"font-size\":\"160px\",\"line-height\":\"150px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(56,'.tp-caption.Furniture-Plus','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0.5\",\"easing\":\"none\"}','{\"idle\":{\"text-shadow\":\"none\",\"box-shadow\":\"rgba(0,0,0,0.1) 0 1px 3px\"},\"hover\":\"\"}','{\"color\":\"#e6cfa3\",\"color-transparency\":\"1\",\"font-size\":\"20\",\"line-height\":\"20px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":[\"6px\",\"7px\",\"4px\",\"7px\"],\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(57,'.tp-caption.Furniture-Title','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"text-shadow\":\"none\",\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"700\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(58,'.tp-caption.Furniture-Subtitle','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"20px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(59,'.tp-caption.Gym-Display','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"80px\",\"line-height\":\"70px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(60,'.tp-caption.Gym-Subline','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"5px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(61,'.tp-caption.Gym-SmallText','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"22\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(62,'.tp-caption.Fashion-SmallText','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"12px\",\"line-height\":\"20px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(63,'.tp-caption.Fashion-BigDisplay','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(64,'.tp-caption.Fashion-TextBlock','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"40px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(65,'.tp-caption.Sports-Display','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"13px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"130px\",\"line-height\":\"130px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(66,'.tp-caption.Sports-DisplayFat','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":[\"\"],\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"130px\",\"line-height\":\"130px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(67,'.tp-caption.Sports-Subline','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"4px\"},\"hover\":\"\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"32px\",\"line-height\":\"32px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(68,'.tp-caption.Instagram-Caption','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(69,'.tp-caption.News-Title','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"70px\",\"line-height\":\"60px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Roboto Slab\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(70,'.tp-caption.News-Subtitle','{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"0.65\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"0px\",\"border-radius\":[\"0\",\"0\",\"0px\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"300\",\"easing\":\"power3.inOut\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"24px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Roboto Slab\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(71,'.tp-caption.Photography-Display','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"5px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"80px\",\"line-height\":\"70px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(72,'.tp-caption.Photography-Subline','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#777777\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(73,'.tp-caption.Photography-ImageHover','{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"0.5\",\"scalex\":\"0.8\",\"scaley\":\"0.8\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"1000\",\"easing\":\"power3.inOut\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20\",\"line-height\":\"22\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(74,'.tp-caption.Photography-Menuitem','{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#00ffde\",\"background-transparency\":\"0.65\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"200\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"3px\",\"5px\",\"3px\",\"8px\"],\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0.65\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(75,'.tp-caption.Photography-Textblock','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(76,'.tp-caption.Photography-Subline-2','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"0.35\",\"font-size\":\"20px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(77,'.tp-caption.Photography-ImageHover2','{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"0.5\",\"scalex\":\"0.8\",\"scaley\":\"0.8\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"500\",\"easing\":\"back.out\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20\",\"line-height\":\"22\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Arial\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(78,'.tp-caption.WebProduct-Title','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#333333\",\"color-transparency\":\"1\",\"font-size\":\"90px\",\"line-height\":\"90px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(79,'.tp-caption.WebProduct-SubTitle','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#999999\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(80,'.tp-caption.WebProduct-Content','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#999999\",\"color-transparency\":\"1\",\"font-size\":\"16px\",\"line-height\":\"24px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(81,'.tp-caption.WebProduct-Menuitem','{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#999999\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"200\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"3px\",\"5px\",\"3px\",\"8px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#333333\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(82,'.tp-caption.WebProduct-Title-Light','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"90px\",\"line-height\":\"90px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(83,'.tp-caption.WebProduct-SubTitle-Light','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"0.35\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"parallax\":\"-\"}'),(84,'.tp-caption.WebProduct-Content-Light','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"0.65\",\"font-size\":\"16px\",\"line-height\":\"24px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"parallax\":\"-\"}'),(85,'.tp-caption.FatRounded','{\"hover\":\"true\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#d3d3d3\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"50px\",\"50px\",\"50px\",\"50px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"none\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"20px\",\"22px\",\"20px\",\"25px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0.5\",\"border-color\":\"#d3d3d3\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"50px\",\"50px\",\"50px\",\"50px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(86,'.tp-caption.NotGeneric-Title','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"[object Object]\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"70px\",\"line-height\":\"70px\",\"font-weight\":\"800\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"10px 0px 10px 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(87,'.tp-caption.NotGeneric-SubTitle','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"4px\",\"text-align\":\"left\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"13px\",\"line-height\":\"20px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(88,'.tp-caption.NotGeneric-CallToAction','{\"hover\":\"true\",\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":\"0px 0px 0px 0px\",\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power3.out\"}','{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"10px 30px 10px 30px\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(89,'.tp-caption.NotGeneric-Icon','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"default\",\"speed\":\"300\",\"easing\":\"power3.out\"}','{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"0px 0px 0px 0px\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"0px\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(90,'.tp-caption.NotGeneric-Menuitem','{\"hover\":\"true\",\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":\"0px 0px 0px 0px\",\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power1.inOut\"}','{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"27px 30px 27px 30px\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.15\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(91,'.tp-caption.MarkerStyle','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"text-align\":\"left\",\"0\":\"\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"30px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"\\\"Permanent Marker\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(92,'.tp-caption.Gym-Menuitem','{\"hover\":\"true\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"200\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"3px\",\"5px\",\"3px\",\"8px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(93,'.tp-caption.Newspaper-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#FFFFFF\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power1.inOut\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"13px\",\"line-height\":\"17px\",\"font-weight\":\"700\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#ffffff\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(94,'.tp-caption.Newspaper-Subtitle','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#a8d8ee\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(95,'.tp-caption.Newspaper-Title','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"50px\",\"line-height\":\"55px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Roboto Slab\\\"\",\"padding\":[\"0\",\"0\",\"10px\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(96,'.tp-caption.Newspaper-Title-Centered','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"50px\",\"line-height\":\"55px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Roboto Slab\\\"\",\"padding\":[\"0\",\"0\",\"10px\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"center\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(97,'.tp-caption.Hero-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power1.inOut\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(98,'.tp-caption.Video-Title','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"5px\",\"5px\",\"5px\",\"5px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"-20%\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(99,'.tp-caption.Video-SubTitle','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"12px\",\"line-height\":\"12px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"5px\",\"5px\",\"5px\",\"5px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0.35\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"-20%\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(100,'.tp-caption.NotGeneric-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power1.inOut\"}','{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(101,'.tp-caption.NotGeneric-BigButton','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power1.inOut\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"27px\",\"30px\",\"27px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.15\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(102,'.tp-caption.WebProduct-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#333333\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"2\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"300\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"1px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"16px\",\"line-height\":\"48px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0px\",\"40px\",\"0px\",\"40px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#333333\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"2\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(103,'.tp-caption.Restaurant-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffe081\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"300\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#0a0a0a\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(104,'.tp-caption.Gym-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#72a800\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power1.inOut\"}','{\"idle\":{\"letter-spacing\":\"1px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"13px\",\"35px\",\"13px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#8bc027\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(105,'.tp-caption.Gym-Button-Light','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#72a800\",\"background-transparency\":\"0\",\"border-color\":\"#8bc027\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power2.inOut\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(106,'.tp-caption.Sports-Button-Light','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"500\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(107,'.tp-caption.Sports-Button-Red','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"500\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#db1c22\",\"background-transparency\":\"1\",\"border-color\":\"#db1c22\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(108,'.tp-caption.Photography-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"300\",\"easing\":\"power3.out\"}','{\"idle\":{\"letter-spacing\":\"1px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"13px\",\"35px\",\"13px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(109,'.tp-caption.Newspaper-Button-2','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}');
/*!40000 ALTER TABLE `wp_revslider_css` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_revslider_css_bkp`
--

DROP TABLE IF EXISTS `wp_revslider_css_bkp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_revslider_css_bkp` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `handle` text NOT NULL,
  `settings` longtext DEFAULT NULL,
  `hover` longtext DEFAULT NULL,
  `advanced` longtext DEFAULT NULL,
  `params` longtext NOT NULL,
  UNIQUE KEY `id` (`id`),
  KEY `handle_index` (`handle`(64))
) ENGINE=InnoDB AUTO_INCREMENT=48 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_revslider_css_bkp`
--

LOCK TABLES `wp_revslider_css_bkp` WRITE;
/*!40000 ALTER TABLE `wp_revslider_css_bkp` DISABLE KEYS */;
INSERT INTO `wp_revslider_css_bkp` VALUES (1,'.tp-caption.medium_grey',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"padding\":\"2px 4px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#888\",\"white-space\":\"nowrap\"}'),(2,'.tp-caption.small_text',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"14px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),(3,'.tp-caption.medium_text',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),(4,'.tp-caption.large_text',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"40px\",\"line-height\":\"40px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),(5,'.tp-caption.very_large_text',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\",\"letter-spacing\":\"-2px\"}'),(6,'.tp-caption.very_big_white',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"800\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\",\"padding\":\"0px 4px\",\"padding-top\":\"1px\",\"background-color\":\"#000\"}'),(7,'.tp-caption.very_big_black',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#000\",\"text-shadow\":\"none\",\"font-weight\":\"700\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\",\"padding\":\"0px 4px\",\"padding-top\":\"1px\",\"background-color\":\"#fff\"}'),(8,'.tp-caption.modern_medium_fat',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#000\",\"text-shadow\":\"none\",\"font-weight\":\"800\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),(9,'.tp-caption.modern_medium_fat_white',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"800\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),(10,'.tp-caption.modern_medium_light',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#000\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),(11,'.tp-caption.modern_big_bluebg',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"800\",\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"padding\":\"3px 10px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#4e5b6c\",\"letter-spacing\":\"0\"}'),(12,'.tp-caption.modern_big_redbg',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"padding\":\"3px 10px\",\"padding-top\":\"1px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#de543e\",\"letter-spacing\":\"0\"}'),(13,'.tp-caption.modern_small_text_dark',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#555\",\"text-shadow\":\"none\",\"font-size\":\"14px\",\"line-height\":\"22px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),(14,'.tp-caption.boxshadow',NULL,NULL,NULL,'{\"-moz-box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\",\"-webkit-box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\",\"box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\"}'),(15,'.tp-caption.black',NULL,NULL,NULL,'{\"color\":\"#000\",\"text-shadow\":\"none\"}'),(16,'.tp-caption.noshadow',NULL,NULL,NULL,'{\"text-shadow\":\"none\"}'),(17,'.tp-caption.thinheadline_dark',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"rgba(0,0,0,0.85)\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"transparent\"}'),(18,'.tp-caption.thintext_dark',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"rgba(0,0,0,0.85)\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"16px\",\"line-height\":\"26px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"transparent\"}'),(19,'.tp-caption.largeblackbg',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#000\",\"padding\":\"0px 20px\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\",\"border-radius\":\"0px\"}'),(20,'.tp-caption.largepinkbg',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#db4360\",\"padding\":\"0px 20px\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\",\"border-radius\":\"0px\"}'),(21,'.tp-caption.largewhitebg',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#000\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#fff\",\"padding\":\"0px 20px\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\",\"border-radius\":\"0px\"}'),(22,'.tp-caption.largegreenbg',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#67ae73\",\"padding\":\"0px 20px\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\",\"border-radius\":\"0px\"}'),(23,'.tp-caption.excerpt',NULL,NULL,NULL,'{\"font-size\":\"36px\",\"line-height\":\"36px\",\"font-weight\":\"700\",\"font-family\":\"Arial\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"rgba(0, 0, 0, 1)\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"letter-spacing\":\"-1.5px\",\"padding\":\"1px 4px 0px 4px\",\"width\":\"150px\",\"white-space\":\"normal !important\",\"height\":\"auto\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}'),(24,'.tp-caption.large_bold_grey',NULL,NULL,NULL,'{\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(102, 102, 102)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"padding\":\"1px 4px 0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(25,'.tp-caption.medium_thin_grey',NULL,NULL,NULL,'{\"font-size\":\"34px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(102, 102, 102)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"1px 4px 0px\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(26,'.tp-caption.small_thin_grey',NULL,NULL,NULL,'{\"font-size\":\"18px\",\"line-height\":\"26px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(117, 117, 117)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"1px 4px 0px\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(27,'.tp-caption.lightgrey_divider',NULL,NULL,NULL,'{\"text-decoration\":\"none\",\"background-color\":\"rgba(235, 235, 235, 1)\",\"width\":\"370px\",\"height\":\"3px\",\"background-position\":\"initial initial\",\"background-repeat\":\"initial initial\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),(28,'.tp-caption.large_bold_darkblue',NULL,NULL,NULL,'{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(52, 73, 94)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(29,'.tp-caption.medium_bg_darkblue',NULL,NULL,NULL,'{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(52, 73, 94)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(30,'.tp-caption.medium_bold_red',NULL,NULL,NULL,'{\"font-size\":\"24px\",\"line-height\":\"30px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(227, 58, 12)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(31,'.tp-caption.medium_light_red',NULL,NULL,NULL,'{\"font-size\":\"21px\",\"line-height\":\"26px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(227, 58, 12)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(32,'.tp-caption.medium_bg_red',NULL,NULL,NULL,'{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(227, 58, 12)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(33,'.tp-caption.medium_bold_orange',NULL,NULL,NULL,'{\"font-size\":\"24px\",\"line-height\":\"30px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(243, 156, 18)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(34,'.tp-caption.medium_bg_orange',NULL,NULL,NULL,'{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(243, 156, 18)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(35,'.tp-caption.grassfloor',NULL,NULL,NULL,'{\"text-decoration\":\"none\",\"background-color\":\"rgba(160, 179, 151, 1)\",\"width\":\"4000px\",\"height\":\"150px\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),(36,'.tp-caption.large_bold_white',NULL,NULL,NULL,'{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(37,'.tp-caption.medium_light_white',NULL,NULL,NULL,'{\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(38,'.tp-caption.mediumlarge_light_white',NULL,NULL,NULL,'{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(39,'.tp-caption.mediumlarge_light_white_center',NULL,NULL,NULL,'{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px 0px 0px 0px\",\"text-align\":\"center\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(40,'.tp-caption.medium_bg_asbestos',NULL,NULL,NULL,'{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(127, 140, 141)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(41,'.tp-caption.medium_light_black',NULL,NULL,NULL,'{\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(42,'.tp-caption.large_bold_black',NULL,NULL,NULL,'{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(43,'.tp-caption.mediumlarge_light_darkblue',NULL,NULL,NULL,'{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(52, 73, 94)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(44,'.tp-caption.small_light_white',NULL,NULL,NULL,'{\"font-size\":\"17px\",\"line-height\":\"28px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(45,'.tp-caption.roundedimage',NULL,NULL,NULL,'{\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),(46,'.tp-caption.large_bg_black',NULL,NULL,NULL,'{\"font-size\":\"40px\",\"line-height\":\"40px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(0, 0, 0)\",\"padding\":\"10px 20px 15px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(47,'.tp-caption.mediumwhitebg',NULL,NULL,NULL,'{\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(255, 255, 255)\",\"padding\":\"5px 15px 10px\",\"text-shadow\":\"none\",\"border-width\":\"0px\",\"border-color\":\"rgb(0, 0, 0)\",\"border-style\":\"none\"}');
/*!40000 ALTER TABLE `wp_revslider_css_bkp` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_revslider_layer_animations`
--

DROP TABLE IF EXISTS `wp_revslider_layer_animations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_revslider_layer_animations` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `handle` text NOT NULL,
  `params` text NOT NULL,
  `settings` text DEFAULT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_revslider_layer_animations`
--

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

--
-- Table structure for table `wp_revslider_layer_animations_bkp`
--

DROP TABLE IF EXISTS `wp_revslider_layer_animations_bkp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_revslider_layer_animations_bkp` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `handle` text NOT NULL,
  `params` text NOT NULL,
  `settings` text DEFAULT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_revslider_layer_animations_bkp`
--

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

--
-- Table structure for table `wp_revslider_navigations`
--

DROP TABLE IF EXISTS `wp_revslider_navigations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_revslider_navigations` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `name` varchar(191) NOT NULL,
  `handle` varchar(191) NOT NULL,
  `type` varchar(191) NOT NULL,
  `css` longtext NOT NULL,
  `markup` longtext NOT NULL,
  `settings` longtext DEFAULT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_revslider_navigations`
--

LOCK TABLES `wp_revslider_navigations` WRITE;
/*!40000 ALTER TABLE `wp_revslider_navigations` DISABLE KEYS */;
INSERT INTO `wp_revslider_navigations` VALUES (1,'white','white','arrows','.white.tparrows {\n  width:##width##px;\n  height:##height##px;\n  background:transparent;\n }\n \n .white.tparrows:before {\n font-family: Linearicons-Free;\n width:##width##px;\n height:##height##px;\n line-height:##height##px;\n color: #fff;\n font-size:60px;\n transition:all 0.3s;\n-webkit-transition:all 0.3s;\n }\n \n .tparrows.tp-leftarrow:before {\n content: \\\'\\\\e875\\\';\n }\n \n .tparrows.tp-rightarrow:before {\n    content: \\\'\\\\e876\\\';\n}\n \n  .white.tparrows.rs-touchhover:before {\n    opacity:0.5;\n  }','','{\"dim\":{\"width\":\"160\",\"height\":\"160\"},\"placeholders\":{\"height\":{\"title\":\"Height\",\"type\":\"custom\",\"data\":\"50\"},\"font-size\":{\"title\":\"Font-Size\",\"type\":\"custom\",\"data\":\"40\"},\"background\":{\"title\":\"BG-Color\",\"type\":\"color-rgba\",\"data\":\"rgba(255,255,255,0)\"},\"width\":{\"title\":\"Width\",\"type\":\"custom\",\"data\":\"50\"}},\"presets\":{\"test\":{\"name\":\"test\",\"values\":{\"ph-uranus-arrows-width\":\"50\",\"ph-uranus-arrows-background\":\"rgba(255,255,255,0)\"}},\"test2\":{\"name\":\"test2\",\"values\":{\"ph-uranus-arrows-width\":\"50\"}}},\"version\":\"6.0.0\"}'),(2,'white','white','bullets','.white .tp-bullet{\n  border-radius: 50%;\n  box-shadow: 0 0 0 2px rgba(##color##, 0);\n  -webkit-transition: box-shadow 0.3s ease;\n  transition: box-shadow 0.3s ease;\n  background:transparent;\n  width:##size##px;\n  height:##size##px;\n}\n.white .tp-bullet.selected,\n.white .tp-bullet.rs-touchhover {\n  box-shadow: 0 0 0 2px rgba(##color##,1);\n  border:none;\n  border-radius: 50%;\n  background:transparent;\n}\n\n.white .tp-bullet-inner {\n  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease;\n  transition: background-color 0.3s ease, transform 0.3s ease;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  outline: none;\n  border-radius: 50%;\n  background-color: rgb(##color##);\n  background-color: rgba(##color##, 0.3);\n  text-indent: -999em;\n  cursor: pointer;\n  position: absolute;\n}\n\n.white .tp-bullet.selected .tp-bullet-inner,\n.white .tp-bullet.rs-touchhover .tp-bullet-inner{\n transform: scale(0.4);\n -webkit-transform: scale(0.4);\n background-color:rgb(##color##);\n}','<span class=\\\"tp-bullet-inner\\\"></span>','{\"dim\":{\"width\":\"160\",\"height\":\"160\"},\"placeholders\":{\"size\":{\"title\":\"Size\",\"type\":\"custom\",\"data\":\"15\"},\"color\":{\"title\":\"Color\",\"type\":\"color\",\"data\":\"#ffffff\"}},\"presets\":{},\"version\":\"6.0.0\"}'),(3,'grey','grey','arrows','.grey.tparrows {\n  width:##width##px;\n  height:##height##px;\n  background:transparent;\n }\n \n .grey.tparrows:before {\n font-family: linearicons-free;\n width:##width##px;\n height:##height##px;\n line-height:##height##px;\n color: #727475;\n font-size:60px;\n transition:all 0.3s;\n-webkit-transition:all 0.3s;\n }\n \n .tparrows.tp-leftarrow:before {\n content: \\\'\\\\e875\\\';\n }\n \n .tparrows.tp-rightarrow:before {\n    content: \\\'\\\\e876\\\';\n}\n \n  .grey.tparrows.rs-touchhover:before {\n    color: #c5c5c5;\n  }','','{\"dim\":{\"width\":\"160\",\"height\":\"160\"},\"placeholders\":{\"height\":{\"title\":\"Height\",\"type\":\"custom\",\"data\":\"50\"},\"font-size\":{\"title\":\"Font-Size\",\"type\":\"custom\",\"data\":\"40\"},\"background\":{\"title\":\"BG-Color\",\"type\":\"color-rgba\",\"data\":\"rgba(255,255,255,0)\"},\"width\":{\"title\":\"Width\",\"type\":\"custom\",\"data\":\"50\"}},\"presets\":{\"test\":{\"name\":\"test\",\"values\":{\"ph-uranus-arrows-width\":\"50\",\"ph-uranus-arrows-background\":\"rgba(255,255,255,0)\"}},\"test2\":{\"name\":\"test2\",\"values\":{\"ph-uranus-arrows-width\":\"50\"}}},\"version\":\"6.0.0\"}'),(4,'grey','grey','bullets','.grey .tp-bullet{\n  border-radius: 50%;\n  box-shadow: 0 0 0 2px rgba(##color##, 0);\n  -webkit-transition: box-shadow 0.3s ease;\n  transition: box-shadow 0.3s ease;\n  background:transparent;\n  width:##size##px;\n  height:##size##px;\n}\n.grey .tp-bullet.selected,\n.grey .tp-bullet.rs-touchhover {\n  box-shadow: 0 0 0 2px rgba(##color##,1);\n  border:none;\n  border-radius: 50%;\n  background:transparent;\n}\n\n.grey .tp-bullet-inner {\n  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease;\n  transition: background-color 0.3s ease, transform 0.3s ease;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  outline: none;\n  border-radius: 50%;\n  background-color: rgb(##color##);\n  background-color: rgba(##color##, 0.3);\n  text-indent: -999em;\n  cursor: pointer;\n  position: absolute;\n}\n\n.grey .tp-bullet.selected .tp-bullet-inner,\n.grey .tp-bullet.rs-touchhover .tp-bullet-inner{\n transform: scale(0.4);\n -webkit-transform: scale(0.4);\n background-color:rgb(##color##);\n}','<span class=\\\"tp-bullet-inner\\\"></span>','{\"dim\":{\"width\":\"160\",\"height\":\"160\"},\"placeholders\":{\"size\":{\"title\":\"Size\",\"type\":\"custom\",\"data\":\"15\"},\"color\":{\"title\":\"Color\",\"type\":\"color\",\"data\":\"#ffffff\"}},\"presets\":{\"\":{\"name\":\"\",\"values\":{\"color\":\"#727475\"}}},\"version\":\"6.0.0\"}');
/*!40000 ALTER TABLE `wp_revslider_navigations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_revslider_navigations_bkp`
--

DROP TABLE IF EXISTS `wp_revslider_navigations_bkp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_revslider_navigations_bkp` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `name` varchar(191) NOT NULL,
  `handle` varchar(191) NOT NULL,
  `type` varchar(191) NOT NULL,
  `css` longtext NOT NULL,
  `markup` longtext NOT NULL,
  `settings` longtext DEFAULT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_revslider_navigations_bkp`
--

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

--
-- Table structure for table `wp_revslider_sliders`
--

DROP TABLE IF EXISTS `wp_revslider_sliders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_revslider_sliders` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `title` tinytext NOT NULL,
  `alias` tinytext DEFAULT NULL,
  `params` longtext NOT NULL,
  `settings` text DEFAULT NULL,
  `type` varchar(191) NOT NULL DEFAULT '',
  UNIQUE KEY `id` (`id`),
  KEY `type_index` (`type`(8))
) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_revslider_sliders`
--

LOCK TABLES `wp_revslider_sliders` WRITE;
/*!40000 ALTER TABLE `wp_revslider_sliders` DISABLE KEYS */;
INSERT INTO `wp_revslider_sliders` VALUES (1,'Home 1','home-1','{\"id\":\"\",\"shortcode\":\"[rev_slider alias=\\\\\\\"home-1\\\\\\\"]\",\"layouttype\":\"fullwidth\",\"type\":\"standard\",\"sourcetype\":\"gallery\",\"googleFont\":[],\"addOns\":[],\"source\":{\"gallery\":[],\"post\":{\"excerptLimit\":\"55\",\"maxPosts\":\"30\",\"fetchType\":\"cat_tag\",\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"post\",\"list\":\"\",\"sortDirection\":\"DESC\",\"subType\":\"post\"},\"woo\":{\"excerptLimit\":\"55\",\"maxProducts\":\"30\",\"featuredOnly\":false,\"inStockOnly\":false,\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"product\",\"sortDirection\":\"DESC\",\"regPriceFrom\":\"\",\"regPriceTo\":\"\",\"salePriceFrom\":\"\",\"salePriceTo\":\"\"},\"instagram\":{\"count\":\"\",\"hashTag\":\"\",\"transient\":\"1200\",\"type\":\"user\",\"userId\":\"\"},\"facebook\":{\"album\":\"\",\"appId\":\"\",\"appSecret\":\"\",\"count\":\"\",\"transient\":\"1200\",\"typeSource\":\"album\"},\"flickr\":{\"apiKey\":\"\",\"count\":\"\",\"galleryURL\":\"\",\"groupURL\":\"\",\"photoSet\":\"\",\"transient\":\"1200\",\"type\":\"publicphotos\",\"userURL\":\"\"},\"twitter\":{\"accessSecret\":\"\",\"accessToken\":\"\",\"consumerKey\":\"\",\"consumerSecret\":\"\",\"count\":\"\",\"excludeReplies\":false,\"imageOnly\":false,\"includeRetweets\":false,\"transient\":\"1200\",\"userId\":\"\"},\"vimeo\":{\"albumId\":\"\",\"channelName\":\"\",\"count\":\"\",\"transient\":\"1200\",\"groupName\":\"\",\"typeSource\":\"user\",\"userName\":\"\"},\"youtube\":{\"api\":\"\",\"channelId\":\"\",\"count\":\"\",\"playList\":\"\",\"transient\":\"1200\",\"typeSource\":\"channel\"}},\"def\":{\"transition\":\"fade\",\"transitionDuration\":\"300\",\"delay\":\"4000\",\"background\":{\"fit\":\"cover\",\"fitX\":\"100\",\"fitY\":\"100\",\"position\":\"center center\",\"positionX\":\"0\",\"positionY\":\"0\",\"repeat\":\"no-repeat\",\"imageSourceType\":\"full\"},\"panZoom\":{\"set\":false,\"blurStart\":\"0\",\"blurEnd\":\"0\",\"duration\":\"\",\"ease\":\"none\",\"fitEnd\":\"100\",\"fitStart\":\"100\",\"xEnd\":\"0\",\"yEnd\":\"0\",\"xStart\":\"0\",\"yStart\":\"0\",\"rotateStart\":\"0\",\"rotateEnd\":\"0\"}},\"size\":{\"respectAspectRatio\":false,\"disableForceFullWidth\":false,\"gridEQModule\":false,\"custom\":{\"d\":true,\"n\":true,\"t\":true,\"m\":true},\"minHeightFullScreen\":\"\",\"minHeight\":\"\",\"fullScreenOffsetContainer\":\"\",\"fullScreenOffset\":\"\",\"width\":{\"d\":1300,\"n\":800,\"t\":600,\"m\":320},\"height\":{\"d\":970,\"n\":677,\"t\":924,\"m\":587},\"overflow\":false,\"maxWidth\":\"\"},\"codes\":{\"css\":\"\",\"javascript\":\"\"},\"carousel\":{\"borderRadius\":\"0\",\"borderRadiusUnit\":\"px\",\"ease\":\"power3.inOut\",\"fadeOut\":true,\"scale\":false,\"horizontal\":\"center\",\"vertical\":\"center\",\"infinity\":false,\"maxItems\":\"3\",\"maxRotation\":\"0\",\"paddingTop\":\"0\",\"paddingBottom\":\"0\",\"rotation\":false,\"scaleDown\":50,\"space\":\"0\",\"speed\":\"800\",\"stretch\":false,\"varyFade\":false,\"varyRotate\":false,\"varyScale\":false,\"showAllLayers\":false},\"hero\":{\"activeSlide\":\"-1\"},\"layout\":{\"bg\":{\"color\":\"transparent\",\"padding\":\"0\",\"dottedOverlay\":\"none\",\"shadow\":\"0\",\"useImage\":false,\"image\":\"http:\\/\\/iacademy.mikado-themes.com\\/wp-content\\/uploads\\/2017\\/06\\/h1-slide-1-background.jpg\",\"fit\":\"cover\",\"position\":\"center center\",\"repeat\":\"no-repeat\"},\"spinner\":{\"color\":\"#FFFFFF\",\"type\":\"-1\"},\"position\":{\"marginTop\":\"0\",\"marginBottom\":\"0\",\"marginLeft\":\"0\",\"marginRight\":\"0\",\"align\":\"center\"}},\"visibility\":{\"hideSelectedLayersUnderLimit\":\"0\",\"hideAllLayersUnderLimit\":\"0\",\"hideSliderUnderLimit\":\"0\"},\"general\":{\"slideshow\":{\"stopOnHover\":false,\"stopSlider\":false,\"stopAfterLoops\":\"0\",\"stopAtSlide\":\"2\",\"shuffle\":false,\"loopSingle\":false,\"viewPort\":false,\"viewPortStart\":\"wait\",\"viewPortArea\":\"20%\",\"presetSliderHeight\":false,\"initDelay\":\"0\",\"waitForInit\":false,\"slideShow\":true},\"progressbar\":{\"set\":false,\"height\":\"5\",\"position\":\"top\",\"color\":\"rgba(0,0,0,0.15)\"},\"firstSlide\":{\"set\":true,\"duration\":\"300\",\"slotAmount\":\"7\",\"type\":\"fade\",\"alternativeFirstSlideSet\":true,\"alternativeFirstSlide\":\"1\"},\"layerSelection\":false,\"lazyLoad\":\"none\",\"nextSlideOnFocus\":false,\"disableFocusListener\":false,\"disableOnMobile\":false,\"autoPlayVideoOnMobile\":true,\"disablePanZoomMobile\":false,\"useWPML\":false},\"nav\":{\"preview\":{\"width\":\"100\",\"height\":\"50\"},\"swipe\":{\"set\":false,\"setOnDesktop\":false,\"blockDragVertical\":false,\"direction\":\"horizontal\",\"minTouch\":\"1\",\"velocity\":\"75\"},\"keyboard\":{\"set\":false,\"direction\":\"horizontal\"},\"mouse\":{\"set\":false,\"reverse\":\"default\"},\"arrows\":{\"set\":true,\"rtl\":false,\"style\":1,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":true,\"hideUnderLimit\":\"1260\",\"left\":{\"horizontal\":\"left\",\"vertical\":\"center\",\"offsetX\":\"20\",\"offsetY\":\"69\",\"align\":\"slider\"},\"right\":{\"horizontal\":\"right\",\"vertical\":\"center\",\"offsetX\":\"20\",\"offsetY\":\"69\",\"align\":\"slider\"}},\"thumbs\":{\"set\":false,\"rtl\":false,\"style\":2000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":\"5\",\"direction\":\"horizontal\",\"height\":\"50\",\"width\":\"100\",\"widthMin\":\"100\",\"innerOuter\":\"inner\",\"offsetX\":\"0\",\"offsetY\":\"20\",\"space\":\"5\",\"align\":\"slider\",\"padding\":\"5\",\"wrapperColor\":\"transparent\"},\"tabs\":{\"set\":false,\"rtl\":false,\"style\":4000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":\"5\",\"direction\":\"horizontal\",\"height\":\"50\",\"width\":\"100\",\"widthMin\":\"100\",\"innerOuter\":\"inner\",\"offsetX\":\"0\",\"offsetY\":\"20\",\"space\":\"5\",\"align\":\"slider\",\"padding\":\"5\",\"wrapperColor\":\"transparent\"},\"bullets\":{\"set\":true,\"rtl\":false,\"style\":2,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"direction\":\"horizontal\",\"offsetX\":\"0\",\"offsetY\":\"20\",\"align\":\"slider\",\"space\":\"5\",\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":true,\"hideOverLimit\":\"1260\",\"hideUnder\":false,\"hideUnderLimit\":\"0\"}},\"troubleshooting\":{\"ignoreHeightChanges\":false,\"ignoreHeightChangesUnderLimit\":\"0\",\"alternateImageType\":\"off\",\"alternateURL\":\"\",\"alternateURLId\":false,\"jsNoConflict\":false,\"jsInBody\":false,\"outPutFilter\":\"none\",\"debugMode\":false,\"simplify_ie8_ios4\":false},\"parallax\":{\"set\":true,\"setDDD\":false,\"disableOnMobile\":false,\"levels\":[\"5\",\"10\",\"15\",\"20\",\"25\",\"30\",\"35\",\"40\",\"45\",\"46\",\"47\",\"48\",\"49\",\"50\",\"51\",\"55\"],\"ddd\":{\"BGFreeze\":false,\"layerOverflow\":false,\"overflow\":false,\"shadow\":false,\"zCorrection\":\"65\"},\"mouse\":{\"speed\":\"400\",\"bgSpeed\":0,\"layersSpeed\":0,\"origo\":\"enterpoint\",\"type\":\"mouse\"}},\"scrolleffects\":{\"set\":false,\"setBlur\":false,\"setFade\":false,\"setGrayScale\":false,\"bg\":false,\"direction\":\"both\",\"maxBlur\":\"10\",\"multiplicator\":\"1.3\",\"multiplicatorLayers\":\"1.3\",\"disableOnMobile\":true,\"tilt\":\"30\",\"layers\":false},\"version\":\"6.4.10\"}','{\"version\":\"6.4.10\"}',''),(2,'Home 3','home-3','{\"id\":\"\",\"shortcode\":\"[rev_slider alias=\\\\\\\"home-3\\\\\\\"]\",\"layouttype\":\"fullwidth\",\"type\":\"standard\",\"sourcetype\":\"gallery\",\"googleFont\":[],\"addOns\":[],\"source\":{\"gallery\":[],\"post\":{\"excerptLimit\":\"55\",\"maxPosts\":\"30\",\"fetchType\":\"cat_tag\",\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"post\",\"list\":\"\",\"sortDirection\":\"DESC\",\"subType\":\"post\"},\"woo\":{\"excerptLimit\":\"55\",\"maxProducts\":\"30\",\"featuredOnly\":false,\"inStockOnly\":false,\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"product\",\"sortDirection\":\"DESC\",\"regPriceFrom\":\"\",\"regPriceTo\":\"\",\"salePriceFrom\":\"\",\"salePriceTo\":\"\"},\"instagram\":{\"count\":\"\",\"hashTag\":\"\",\"transient\":\"1200\",\"type\":\"user\",\"userId\":\"\"},\"facebook\":{\"album\":\"\",\"appId\":\"\",\"appSecret\":\"\",\"count\":\"\",\"transient\":\"1200\",\"typeSource\":\"album\"},\"flickr\":{\"apiKey\":\"\",\"count\":\"\",\"galleryURL\":\"\",\"groupURL\":\"\",\"photoSet\":\"\",\"transient\":\"1200\",\"type\":\"publicphotos\",\"userURL\":\"\"},\"twitter\":{\"accessSecret\":\"\",\"accessToken\":\"\",\"consumerKey\":\"\",\"consumerSecret\":\"\",\"count\":\"\",\"excludeReplies\":false,\"imageOnly\":false,\"includeRetweets\":false,\"transient\":\"1200\",\"userId\":\"\"},\"vimeo\":{\"albumId\":\"\",\"channelName\":\"\",\"count\":\"\",\"transient\":\"1200\",\"groupName\":\"\",\"typeSource\":\"user\",\"userName\":\"\"},\"youtube\":{\"api\":\"\",\"channelId\":\"\",\"count\":\"\",\"playList\":\"\",\"transient\":\"1200\",\"typeSource\":\"channel\"}},\"def\":{\"transition\":\"fade\",\"transitionDuration\":\"300\",\"delay\":\"5000\",\"background\":{\"fit\":\"cover\",\"fitX\":\"100\",\"fitY\":\"100\",\"position\":\"center center\",\"positionX\":\"0\",\"positionY\":\"0\",\"repeat\":\"no-repeat\",\"imageSourceType\":\"full\"},\"panZoom\":{\"set\":false,\"blurStart\":\"0\",\"blurEnd\":\"0\",\"duration\":\"\",\"ease\":\"none\",\"fitEnd\":\"100\",\"fitStart\":\"100\",\"xEnd\":\"0\",\"yEnd\":\"0\",\"xStart\":\"0\",\"yStart\":\"0\",\"rotateStart\":\"0\",\"rotateEnd\":\"0\"}},\"size\":{\"respectAspectRatio\":false,\"disableForceFullWidth\":false,\"gridEQModule\":false,\"custom\":{\"d\":true,\"n\":true,\"t\":true,\"m\":true},\"minHeightFullScreen\":\"\",\"minHeight\":\"\",\"fullScreenOffsetContainer\":\"\",\"fullScreenOffset\":\"\",\"width\":{\"d\":1300,\"n\":800,\"t\":600,\"m\":320},\"height\":{\"d\":800,\"n\":647,\"t\":924,\"m\":587},\"overflow\":false,\"maxWidth\":\"\"},\"codes\":{\"css\":\"\",\"javascript\":\"\"},\"carousel\":{\"borderRadius\":\"0\",\"borderRadiusUnit\":\"px\",\"ease\":\"power3.inOut\",\"fadeOut\":true,\"scale\":false,\"horizontal\":\"center\",\"vertical\":\"center\",\"infinity\":false,\"maxItems\":\"3\",\"maxRotation\":\"0\",\"paddingTop\":\"0\",\"paddingBottom\":\"0\",\"rotation\":false,\"scaleDown\":50,\"space\":\"0\",\"speed\":\"800\",\"stretch\":false,\"varyFade\":false,\"varyRotate\":false,\"varyScale\":false,\"showAllLayers\":false},\"hero\":{\"activeSlide\":\"-1\"},\"layout\":{\"bg\":{\"color\":\"transparent\",\"padding\":\"0\",\"dottedOverlay\":\"none\",\"shadow\":\"0\",\"useImage\":false,\"image\":\"http:\\/\\/iacademy.mikado-themes.com\\/wp-content\\/uploads\\/2017\\/06\\/h3-slide-1-background.jpg\",\"fit\":\"cover\",\"position\":\"center center\",\"repeat\":\"no-repeat\"},\"spinner\":{\"color\":\"#FFFFFF\",\"type\":\"-1\"},\"position\":{\"marginTop\":\"0\",\"marginBottom\":\"0\",\"marginLeft\":\"0\",\"marginRight\":\"0\",\"align\":\"center\"}},\"visibility\":{\"hideSelectedLayersUnderLimit\":\"0\",\"hideAllLayersUnderLimit\":\"0\",\"hideSliderUnderLimit\":\"0\"},\"general\":{\"slideshow\":{\"stopOnHover\":false,\"stopSlider\":false,\"stopAfterLoops\":\"0\",\"stopAtSlide\":\"2\",\"shuffle\":false,\"loopSingle\":false,\"viewPort\":false,\"viewPortStart\":\"wait\",\"viewPortArea\":\"20%\",\"presetSliderHeight\":false,\"initDelay\":\"0\",\"waitForInit\":false,\"slideShow\":true},\"progressbar\":{\"set\":false,\"height\":\"5\",\"position\":\"top\",\"color\":\"rgba(0,0,0,0.15)\"},\"firstSlide\":{\"set\":true,\"duration\":\"300\",\"slotAmount\":\"7\",\"type\":\"fade\",\"alternativeFirstSlideSet\":true,\"alternativeFirstSlide\":\"1\"},\"layerSelection\":false,\"lazyLoad\":\"none\",\"nextSlideOnFocus\":false,\"disableFocusListener\":false,\"disableOnMobile\":false,\"autoPlayVideoOnMobile\":true,\"disablePanZoomMobile\":false,\"useWPML\":false},\"nav\":{\"preview\":{\"width\":\"100\",\"height\":\"50\"},\"swipe\":{\"set\":false,\"setOnDesktop\":false,\"blockDragVertical\":false,\"direction\":\"horizontal\",\"minTouch\":\"1\",\"velocity\":\"75\"},\"keyboard\":{\"set\":false,\"direction\":\"horizontal\"},\"mouse\":{\"set\":false,\"reverse\":\"default\"},\"arrows\":{\"set\":true,\"rtl\":false,\"style\":1,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":true,\"hideUnderLimit\":\"1260\",\"left\":{\"horizontal\":\"left\",\"vertical\":\"center\",\"offsetX\":\"20\",\"offsetY\":\"-32\",\"align\":\"slider\"},\"right\":{\"horizontal\":\"right\",\"vertical\":\"center\",\"offsetX\":\"20\",\"offsetY\":\"-32\",\"align\":\"slider\"}},\"thumbs\":{\"set\":false,\"rtl\":false,\"style\":2000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":\"5\",\"direction\":\"horizontal\",\"height\":\"50\",\"width\":\"100\",\"widthMin\":\"100\",\"innerOuter\":\"inner\",\"offsetX\":\"0\",\"offsetY\":\"20\",\"space\":\"5\",\"align\":\"slider\",\"padding\":\"5\",\"wrapperColor\":\"transparent\"},\"tabs\":{\"set\":false,\"rtl\":false,\"style\":4000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":\"5\",\"direction\":\"horizontal\",\"height\":\"50\",\"width\":\"100\",\"widthMin\":\"100\",\"innerOuter\":\"inner\",\"offsetX\":\"0\",\"offsetY\":\"20\",\"space\":\"5\",\"align\":\"slider\",\"padding\":\"5\",\"wrapperColor\":\"transparent\"},\"bullets\":{\"set\":false,\"rtl\":false,\"style\":3000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"direction\":\"horizontal\",\"offsetX\":\"0\",\"offsetY\":\"20\",\"align\":\"slider\",\"space\":\"5\",\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":true,\"hideOverLimit\":\"1260\",\"hideUnder\":false,\"hideUnderLimit\":\"0\"}},\"troubleshooting\":{\"ignoreHeightChanges\":false,\"ignoreHeightChangesUnderLimit\":\"0\",\"alternateImageType\":\"off\",\"alternateURL\":\"\",\"alternateURLId\":false,\"jsNoConflict\":false,\"jsInBody\":false,\"outPutFilter\":\"none\",\"debugMode\":false,\"simplify_ie8_ios4\":false},\"parallax\":{\"set\":true,\"setDDD\":false,\"disableOnMobile\":false,\"levels\":[\"5\",\"10\",\"15\",\"20\",\"25\",\"30\",\"35\",\"40\",\"45\",\"46\",\"47\",\"48\",\"49\",\"50\",\"51\",\"55\"],\"ddd\":{\"BGFreeze\":false,\"layerOverflow\":false,\"overflow\":false,\"shadow\":false,\"zCorrection\":\"65\"},\"mouse\":{\"speed\":\"400\",\"bgSpeed\":0,\"layersSpeed\":0,\"origo\":\"enterpoint\",\"type\":\"mouse\"}},\"scrolleffects\":{\"set\":false,\"setBlur\":false,\"setFade\":false,\"setGrayScale\":false,\"bg\":false,\"direction\":\"both\",\"maxBlur\":\"10\",\"multiplicator\":\"1.3\",\"multiplicatorLayers\":\"1.3\",\"disableOnMobile\":true,\"tilt\":\"30\",\"layers\":false},\"version\":\"6.4.10\"}','{\"version\":\"6.4.10\"}',''),(3,'Home 5','home-5','{\"id\":\"\",\"shortcode\":\"[rev_slider alias=\\\\\\\"home-5\\\\\\\"]\",\"layouttype\":\"fullwidth\",\"type\":\"standard\",\"sourcetype\":\"gallery\",\"googleFont\":[],\"addOns\":[],\"source\":{\"gallery\":[],\"post\":{\"excerptLimit\":\"55\",\"maxPosts\":\"30\",\"fetchType\":\"cat_tag\",\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"post\",\"list\":\"\",\"sortDirection\":\"DESC\",\"subType\":\"post\"},\"woo\":{\"excerptLimit\":\"55\",\"maxProducts\":\"30\",\"featuredOnly\":false,\"inStockOnly\":false,\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"product\",\"sortDirection\":\"DESC\",\"regPriceFrom\":\"\",\"regPriceTo\":\"\",\"salePriceFrom\":\"\",\"salePriceTo\":\"\"},\"instagram\":{\"count\":\"\",\"hashTag\":\"\",\"transient\":\"1200\",\"type\":\"user\",\"userId\":\"\"},\"facebook\":{\"album\":\"\",\"appId\":\"\",\"appSecret\":\"\",\"count\":\"\",\"transient\":\"1200\",\"typeSource\":\"album\"},\"flickr\":{\"apiKey\":\"\",\"count\":\"\",\"galleryURL\":\"\",\"groupURL\":\"\",\"photoSet\":\"\",\"transient\":\"1200\",\"type\":\"publicphotos\",\"userURL\":\"\"},\"twitter\":{\"accessSecret\":\"\",\"accessToken\":\"\",\"consumerKey\":\"\",\"consumerSecret\":\"\",\"count\":\"\",\"excludeReplies\":false,\"imageOnly\":false,\"includeRetweets\":false,\"transient\":\"1200\",\"userId\":\"\"},\"vimeo\":{\"albumId\":\"\",\"channelName\":\"\",\"count\":\"\",\"transient\":\"1200\",\"groupName\":\"\",\"typeSource\":\"user\",\"userName\":\"\"},\"youtube\":{\"api\":\"\",\"channelId\":\"\",\"count\":\"\",\"playList\":\"\",\"transient\":\"1200\",\"typeSource\":\"channel\"}},\"def\":{\"transition\":\"fade\",\"transitionDuration\":\"300\",\"delay\":\"5000\",\"background\":{\"fit\":\"cover\",\"fitX\":\"100\",\"fitY\":\"100\",\"position\":\"center center\",\"positionX\":\"0\",\"positionY\":\"0\",\"repeat\":\"no-repeat\",\"imageSourceType\":\"full\"},\"panZoom\":{\"set\":false,\"blurStart\":\"0\",\"blurEnd\":\"0\",\"duration\":\"\",\"ease\":\"none\",\"fitEnd\":\"100\",\"fitStart\":\"100\",\"xEnd\":\"0\",\"yEnd\":\"0\",\"xStart\":\"0\",\"yStart\":\"0\",\"rotateStart\":\"0\",\"rotateEnd\":\"0\"}},\"size\":{\"respectAspectRatio\":false,\"disableForceFullWidth\":false,\"gridEQModule\":false,\"custom\":{\"d\":true,\"n\":true,\"t\":true,\"m\":true},\"minHeightFullScreen\":\"\",\"minHeight\":\"\",\"fullScreenOffsetContainer\":\"\",\"fullScreenOffset\":\"\",\"width\":{\"d\":1100,\"n\":800,\"t\":600,\"m\":320},\"height\":{\"d\":870,\"n\":677,\"t\":924,\"m\":587},\"overflow\":false,\"maxWidth\":\"\"},\"codes\":{\"css\":\"\",\"javascript\":\"\"},\"carousel\":{\"borderRadius\":\"0\",\"borderRadiusUnit\":\"px\",\"ease\":\"power3.inOut\",\"fadeOut\":true,\"scale\":false,\"horizontal\":\"center\",\"vertical\":\"center\",\"infinity\":false,\"maxItems\":\"3\",\"maxRotation\":\"0\",\"paddingTop\":\"0\",\"paddingBottom\":\"0\",\"rotation\":false,\"scaleDown\":50,\"space\":\"0\",\"speed\":\"800\",\"stretch\":false,\"varyFade\":false,\"varyRotate\":false,\"varyScale\":false,\"showAllLayers\":false},\"hero\":{\"activeSlide\":\"-1\"},\"layout\":{\"bg\":{\"color\":\"transparent\",\"padding\":\"0\",\"dottedOverlay\":\"none\",\"shadow\":\"0\",\"useImage\":false,\"image\":\"http:\\/\\/iacademy.mikado-themes.com\\/wp-content\\/uploads\\/2017\\/06\\/h5-slide-1-background.jpg\",\"fit\":\"cover\",\"position\":\"center center\",\"repeat\":\"no-repeat\"},\"spinner\":{\"color\":\"#FFFFFF\",\"type\":\"-1\"},\"position\":{\"marginTop\":\"0\",\"marginBottom\":\"0\",\"marginLeft\":\"0\",\"marginRight\":\"0\",\"align\":\"center\"}},\"visibility\":{\"hideSelectedLayersUnderLimit\":\"0\",\"hideAllLayersUnderLimit\":\"0\",\"hideSliderUnderLimit\":\"0\"},\"general\":{\"slideshow\":{\"stopOnHover\":false,\"stopSlider\":false,\"stopAfterLoops\":\"0\",\"stopAtSlide\":\"2\",\"shuffle\":false,\"loopSingle\":false,\"viewPort\":false,\"viewPortStart\":\"wait\",\"viewPortArea\":\"20%\",\"presetSliderHeight\":false,\"initDelay\":\"0\",\"waitForInit\":false,\"slideShow\":true},\"progressbar\":{\"set\":false,\"height\":\"5\",\"position\":\"top\",\"color\":\"rgba(0,0,0,0.15)\"},\"firstSlide\":{\"set\":true,\"duration\":\"300\",\"slotAmount\":\"7\",\"type\":\"fade\",\"alternativeFirstSlideSet\":true,\"alternativeFirstSlide\":\"1\"},\"layerSelection\":false,\"lazyLoad\":\"none\",\"nextSlideOnFocus\":false,\"disableFocusListener\":false,\"disableOnMobile\":false,\"autoPlayVideoOnMobile\":true,\"disablePanZoomMobile\":false,\"useWPML\":false},\"nav\":{\"preview\":{\"width\":\"100\",\"height\":\"50\"},\"swipe\":{\"set\":false,\"setOnDesktop\":false,\"blockDragVertical\":false,\"direction\":\"horizontal\",\"minTouch\":\"1\",\"velocity\":\"75\"},\"keyboard\":{\"set\":false,\"direction\":\"horizontal\"},\"mouse\":{\"set\":false,\"reverse\":\"default\"},\"arrows\":{\"set\":true,\"rtl\":false,\"style\":1,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":true,\"hideUnderLimit\":\"1260\",\"left\":{\"horizontal\":\"left\",\"vertical\":\"center\",\"offsetX\":\"20\",\"offsetY\":\"0\",\"align\":\"slider\"},\"right\":{\"horizontal\":\"right\",\"vertical\":\"center\",\"offsetX\":\"20\",\"offsetY\":\"0\",\"align\":\"slider\"}},\"thumbs\":{\"set\":false,\"rtl\":false,\"style\":2000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":\"5\",\"direction\":\"horizontal\",\"height\":\"50\",\"width\":\"100\",\"widthMin\":\"100\",\"innerOuter\":\"inner\",\"offsetX\":\"0\",\"offsetY\":\"20\",\"space\":\"5\",\"align\":\"slider\",\"padding\":\"5\",\"wrapperColor\":\"transparent\"},\"tabs\":{\"set\":false,\"rtl\":false,\"style\":4000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":\"5\",\"direction\":\"horizontal\",\"height\":\"50\",\"width\":\"100\",\"widthMin\":\"100\",\"innerOuter\":\"inner\",\"offsetX\":\"0\",\"offsetY\":\"20\",\"space\":\"5\",\"align\":\"slider\",\"padding\":\"5\",\"wrapperColor\":\"transparent\"},\"bullets\":{\"set\":true,\"rtl\":false,\"style\":2,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"direction\":\"horizontal\",\"offsetX\":\"0\",\"offsetY\":\"20\",\"align\":\"slider\",\"space\":\"5\",\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":true,\"hideOverLimit\":\"1260\",\"hideUnder\":false,\"hideUnderLimit\":\"0\"}},\"troubleshooting\":{\"ignoreHeightChanges\":false,\"ignoreHeightChangesUnderLimit\":\"0\",\"alternateImageType\":\"off\",\"alternateURL\":\"\",\"alternateURLId\":false,\"jsNoConflict\":false,\"jsInBody\":false,\"outPutFilter\":\"none\",\"debugMode\":false,\"simplify_ie8_ios4\":false},\"parallax\":{\"set\":true,\"setDDD\":false,\"disableOnMobile\":false,\"levels\":[\"5\",\"10\",\"15\",\"20\",\"25\",\"30\",\"35\",\"40\",\"45\",\"46\",\"47\",\"48\",\"49\",\"50\",\"51\",\"55\"],\"ddd\":{\"BGFreeze\":false,\"layerOverflow\":false,\"overflow\":false,\"shadow\":false,\"zCorrection\":\"65\"},\"mouse\":{\"speed\":\"400\",\"bgSpeed\":0,\"layersSpeed\":0,\"origo\":\"enterpoint\",\"type\":\"mouse\"}},\"scrolleffects\":{\"set\":false,\"setBlur\":false,\"setFade\":false,\"setGrayScale\":false,\"bg\":false,\"direction\":\"both\",\"maxBlur\":\"10\",\"multiplicator\":\"1.3\",\"multiplicatorLayers\":\"1.3\",\"disableOnMobile\":true,\"tilt\":\"30\",\"layers\":false},\"version\":\"6.4.10\"}','{\"version\":\"6.4.10\"}',''),(4,'Home 6','home-6','{\"id\":\"\",\"shortcode\":\"[rev_slider alias=\\\\\\\"home-6\\\\\\\"]\",\"layouttype\":\"fullscreen\",\"type\":\"standard\",\"sourcetype\":\"gallery\",\"googleFont\":[],\"addOns\":[],\"source\":{\"gallery\":[],\"post\":{\"excerptLimit\":\"55\",\"maxPosts\":\"30\",\"fetchType\":\"cat_tag\",\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"post\",\"list\":\"\",\"sortDirection\":\"DESC\",\"subType\":\"post\"},\"woo\":{\"excerptLimit\":\"55\",\"maxProducts\":\"30\",\"featuredOnly\":false,\"inStockOnly\":false,\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"product\",\"sortDirection\":\"DESC\",\"regPriceFrom\":\"\",\"regPriceTo\":\"\",\"salePriceFrom\":\"\",\"salePriceTo\":\"\"},\"instagram\":{\"count\":\"\",\"hashTag\":\"\",\"transient\":\"1200\",\"type\":\"user\",\"userId\":\"\"},\"facebook\":{\"album\":\"\",\"appId\":\"\",\"appSecret\":\"\",\"count\":\"\",\"transient\":\"1200\",\"typeSource\":\"album\"},\"flickr\":{\"apiKey\":\"\",\"count\":\"\",\"galleryURL\":\"\",\"groupURL\":\"\",\"photoSet\":\"\",\"transient\":\"1200\",\"type\":\"publicphotos\",\"userURL\":\"\"},\"twitter\":{\"accessSecret\":\"\",\"accessToken\":\"\",\"consumerKey\":\"\",\"consumerSecret\":\"\",\"count\":\"\",\"excludeReplies\":false,\"imageOnly\":false,\"includeRetweets\":false,\"transient\":\"1200\",\"userId\":\"\"},\"vimeo\":{\"albumId\":\"\",\"channelName\":\"\",\"count\":\"\",\"transient\":\"1200\",\"groupName\":\"\",\"typeSource\":\"user\",\"userName\":\"\"},\"youtube\":{\"api\":\"\",\"channelId\":\"\",\"count\":\"\",\"playList\":\"\",\"transient\":\"1200\",\"typeSource\":\"channel\"}},\"def\":{\"transition\":\"fade\",\"transitionDuration\":\"300\",\"delay\":\"4000\",\"background\":{\"fit\":\"cover\",\"fitX\":\"100\",\"fitY\":\"100\",\"position\":\"center center\",\"positionX\":\"0\",\"positionY\":\"0\",\"repeat\":\"no-repeat\",\"imageSourceType\":\"full\"},\"panZoom\":{\"set\":false,\"blurStart\":\"0\",\"blurEnd\":\"0\",\"duration\":\"\",\"ease\":\"none\",\"fitEnd\":\"100\",\"fitStart\":\"100\",\"xEnd\":\"0\",\"yEnd\":\"0\",\"xStart\":\"0\",\"yStart\":\"0\",\"rotateStart\":\"0\",\"rotateEnd\":\"0\"}},\"size\":{\"respectAspectRatio\":false,\"disableForceFullWidth\":false,\"gridEQModule\":false,\"custom\":{\"d\":true,\"n\":true,\"t\":true,\"m\":true},\"minHeightFullScreen\":\"\",\"minHeight\":\"\",\"fullScreenOffsetContainer\":\".touch .mkdf-mobile-header\",\"fullScreenOffset\":\"\",\"width\":{\"d\":1300,\"n\":800,\"t\":600,\"m\":320},\"height\":{\"d\":870,\"n\":550,\"t\":700,\"m\":500},\"overflow\":false,\"maxWidth\":\"\"},\"codes\":{\"css\":\"\",\"javascript\":\"\"},\"carousel\":{\"borderRadius\":\"0\",\"borderRadiusUnit\":\"px\",\"ease\":\"power3.inOut\",\"fadeOut\":true,\"scale\":false,\"horizontal\":\"center\",\"vertical\":\"center\",\"infinity\":false,\"maxItems\":\"3\",\"maxRotation\":\"0\",\"paddingTop\":\"0\",\"paddingBottom\":\"0\",\"rotation\":false,\"scaleDown\":50,\"space\":\"0\",\"speed\":\"800\",\"stretch\":false,\"varyFade\":false,\"varyRotate\":false,\"varyScale\":false,\"showAllLayers\":false},\"hero\":{\"activeSlide\":\"-1\"},\"layout\":{\"bg\":{\"color\":\"transparent\",\"padding\":\"0\",\"dottedOverlay\":\"none\",\"shadow\":\"0\",\"useImage\":false,\"image\":\"http:\\/\\/iacademy.mikado-themes.com\\/wp-content\\/uploads\\/2017\\/06\\/h6-slide-1-background.jpg\",\"fit\":\"cover\",\"position\":\"center center\",\"repeat\":\"no-repeat\"},\"spinner\":{\"color\":\"#FFFFFF\",\"type\":\"-1\"},\"position\":{\"marginTop\":\"0\",\"marginBottom\":\"0\",\"marginLeft\":\"0\",\"marginRight\":\"0\",\"align\":\"center\"}},\"visibility\":{\"hideSelectedLayersUnderLimit\":\"0\",\"hideAllLayersUnderLimit\":\"0\",\"hideSliderUnderLimit\":\"0\"},\"general\":{\"slideshow\":{\"stopOnHover\":false,\"stopSlider\":false,\"stopAfterLoops\":\"0\",\"stopAtSlide\":\"2\",\"shuffle\":false,\"loopSingle\":false,\"viewPort\":false,\"viewPortStart\":\"wait\",\"viewPortArea\":\"20%\",\"presetSliderHeight\":false,\"initDelay\":\"0\",\"waitForInit\":false,\"slideShow\":true},\"progressbar\":{\"set\":false,\"height\":\"5\",\"position\":\"top\",\"color\":\"rgba(0,0,0,0.15)\"},\"firstSlide\":{\"set\":true,\"duration\":\"300\",\"slotAmount\":\"7\",\"type\":\"fade\",\"alternativeFirstSlideSet\":true,\"alternativeFirstSlide\":\"1\"},\"layerSelection\":false,\"lazyLoad\":\"none\",\"nextSlideOnFocus\":false,\"disableFocusListener\":false,\"disableOnMobile\":false,\"autoPlayVideoOnMobile\":true,\"disablePanZoomMobile\":false,\"useWPML\":false},\"nav\":{\"preview\":{\"width\":\"100\",\"height\":\"50\"},\"swipe\":{\"set\":false,\"setOnDesktop\":false,\"blockDragVertical\":false,\"direction\":\"horizontal\",\"minTouch\":\"1\",\"velocity\":\"75\"},\"keyboard\":{\"set\":false,\"direction\":\"horizontal\"},\"mouse\":{\"set\":false,\"reverse\":\"default\"},\"arrows\":{\"set\":true,\"rtl\":false,\"style\":1,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":true,\"hideUnderLimit\":\"1260\",\"left\":{\"horizontal\":\"left\",\"vertical\":\"center\",\"offsetX\":\"20\",\"offsetY\":\"67\",\"align\":\"slider\"},\"right\":{\"horizontal\":\"right\",\"vertical\":\"center\",\"offsetX\":\"20\",\"offsetY\":\"67\",\"align\":\"slider\"}},\"thumbs\":{\"set\":false,\"rtl\":false,\"style\":2000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":\"5\",\"direction\":\"horizontal\",\"height\":\"50\",\"width\":\"100\",\"widthMin\":\"100\",\"innerOuter\":\"inner\",\"offsetX\":\"0\",\"offsetY\":\"20\",\"space\":\"5\",\"align\":\"slider\",\"padding\":\"5\",\"wrapperColor\":\"transparent\"},\"tabs\":{\"set\":false,\"rtl\":false,\"style\":4000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":\"5\",\"direction\":\"horizontal\",\"height\":\"50\",\"width\":\"100\",\"widthMin\":\"100\",\"innerOuter\":\"inner\",\"offsetX\":\"0\",\"offsetY\":\"20\",\"space\":\"5\",\"align\":\"slider\",\"padding\":\"5\",\"wrapperColor\":\"transparent\"},\"bullets\":{\"set\":true,\"rtl\":false,\"style\":2,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"direction\":\"horizontal\",\"offsetX\":\"0\",\"offsetY\":\"20\",\"align\":\"slider\",\"space\":\"5\",\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":true,\"hideOverLimit\":\"1260\",\"hideUnder\":false,\"hideUnderLimit\":\"0\"}},\"troubleshooting\":{\"ignoreHeightChanges\":false,\"ignoreHeightChangesUnderLimit\":\"0\",\"alternateImageType\":\"off\",\"alternateURL\":\"\",\"alternateURLId\":false,\"jsNoConflict\":false,\"jsInBody\":false,\"outPutFilter\":\"none\",\"debugMode\":false,\"simplify_ie8_ios4\":false},\"parallax\":{\"set\":true,\"setDDD\":false,\"disableOnMobile\":false,\"levels\":[\"5\",\"10\",\"15\",\"20\",\"25\",\"30\",\"35\",\"40\",\"45\",\"46\",\"47\",\"48\",\"49\",\"50\",\"51\",\"55\"],\"ddd\":{\"BGFreeze\":false,\"layerOverflow\":false,\"overflow\":false,\"shadow\":false,\"zCorrection\":\"65\"},\"mouse\":{\"speed\":\"400\",\"bgSpeed\":0,\"layersSpeed\":0,\"origo\":\"enterpoint\",\"type\":\"mouse\"}},\"scrolleffects\":{\"set\":false,\"setBlur\":false,\"setFade\":false,\"setGrayScale\":false,\"bg\":false,\"direction\":\"both\",\"maxBlur\":\"10\",\"multiplicator\":\"1.3\",\"multiplicatorLayers\":\"1.3\",\"disableOnMobile\":true,\"tilt\":\"30\",\"layers\":false},\"version\":\"6.4.10\"}','{\"version\":\"6.4.10\"}',''),(5,'Home 7','home-7','{\"id\":\"\",\"shortcode\":\"[rev_slider alias=\\\\\\\"home-7\\\\\\\"]\",\"layouttype\":\"auto\",\"type\":\"standard\",\"sourcetype\":\"gallery\",\"googleFont\":[],\"addOns\":[],\"source\":{\"gallery\":[],\"post\":{\"excerptLimit\":\"55\",\"maxPosts\":\"30\",\"fetchType\":\"cat_tag\",\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"post\",\"list\":\"\",\"sortDirection\":\"DESC\",\"subType\":\"post\"},\"woo\":{\"excerptLimit\":\"55\",\"maxProducts\":\"30\",\"featuredOnly\":false,\"inStockOnly\":false,\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"product\",\"sortDirection\":\"DESC\",\"regPriceFrom\":\"\",\"regPriceTo\":\"\",\"salePriceFrom\":\"\",\"salePriceTo\":\"\"},\"instagram\":{\"count\":\"\",\"hashTag\":\"\",\"transient\":\"1200\",\"type\":\"user\",\"userId\":\"\"},\"facebook\":{\"album\":\"\",\"appId\":\"\",\"appSecret\":\"\",\"count\":\"\",\"transient\":\"1200\",\"typeSource\":\"album\"},\"flickr\":{\"apiKey\":\"\",\"count\":\"\",\"galleryURL\":\"\",\"groupURL\":\"\",\"photoSet\":\"\",\"transient\":\"1200\",\"type\":\"publicphotos\",\"userURL\":\"\"},\"twitter\":{\"accessSecret\":\"\",\"accessToken\":\"\",\"consumerKey\":\"\",\"consumerSecret\":\"\",\"count\":\"\",\"excludeReplies\":false,\"imageOnly\":false,\"includeRetweets\":false,\"transient\":\"1200\",\"userId\":\"\"},\"vimeo\":{\"albumId\":\"\",\"channelName\":\"\",\"count\":\"\",\"transient\":\"1200\",\"groupName\":\"\",\"typeSource\":\"user\",\"userName\":\"\"},\"youtube\":{\"api\":\"\",\"channelId\":\"\",\"count\":\"\",\"playList\":\"\",\"transient\":\"1200\",\"typeSource\":\"channel\"}},\"def\":{\"transition\":\"fade\",\"transitionDuration\":\"300\",\"delay\":\"5000\",\"background\":{\"fit\":\"cover\",\"fitX\":\"100\",\"fitY\":\"100\",\"position\":\"center center\",\"positionX\":\"0\",\"positionY\":\"0\",\"repeat\":\"no-repeat\",\"imageSourceType\":\"full\"},\"panZoom\":{\"set\":false,\"blurStart\":\"0\",\"blurEnd\":\"0\",\"duration\":\"\",\"ease\":\"none\",\"fitEnd\":\"100\",\"fitStart\":\"100\",\"xEnd\":\"0\",\"yEnd\":\"0\",\"xStart\":\"0\",\"yStart\":\"0\",\"rotateStart\":\"0\",\"rotateEnd\":\"0\"}},\"size\":{\"respectAspectRatio\":false,\"disableForceFullWidth\":false,\"gridEQModule\":false,\"custom\":{\"d\":true,\"n\":true,\"t\":true,\"m\":true},\"minHeightFullScreen\":\"\",\"minHeight\":\"\",\"fullScreenOffsetContainer\":\"\",\"fullScreenOffset\":\"\",\"width\":{\"d\":1100,\"n\":800,\"t\":600,\"m\":320},\"height\":{\"d\":700,\"n\":582,\"t\":741,\"m\":450},\"overflow\":false,\"maxWidth\":\"\"},\"codes\":{\"javascript\":\"\",\"css\":\"span.custom {\\n\\ncolor: #ffd52b;\\n\\n\\n}\"},\"carousel\":{\"borderRadius\":\"0\",\"borderRadiusUnit\":\"px\",\"ease\":\"power3.inOut\",\"fadeOut\":true,\"scale\":false,\"horizontal\":\"center\",\"vertical\":\"center\",\"infinity\":false,\"maxItems\":\"3\",\"maxRotation\":\"0\",\"paddingTop\":\"0\",\"paddingBottom\":\"0\",\"rotation\":false,\"scaleDown\":50,\"space\":\"0\",\"speed\":\"800\",\"stretch\":false,\"varyFade\":false,\"varyRotate\":false,\"varyScale\":false,\"showAllLayers\":false},\"hero\":{\"activeSlide\":\"-1\"},\"layout\":{\"bg\":{\"color\":\"transparent\",\"padding\":\"0\",\"dottedOverlay\":\"none\",\"shadow\":\"0\",\"useImage\":true,\"image\":\"http:\\/\\/iacademy.mikado-themes.com\\/wp-content\\/uploads\\/2017\\/06\\/h7-slide-1-background.jpg\",\"fit\":\"cover\",\"position\":\"center center\",\"repeat\":\"no-repeat\"},\"spinner\":{\"color\":\"#FFFFFF\",\"type\":\"-1\"},\"position\":{\"marginTop\":\"0\",\"marginBottom\":\"0\",\"marginLeft\":\"0\",\"marginRight\":\"0\",\"align\":\"center\"}},\"visibility\":{\"hideSelectedLayersUnderLimit\":\"0\",\"hideAllLayersUnderLimit\":\"0\",\"hideSliderUnderLimit\":\"0\"},\"general\":{\"slideshow\":{\"stopOnHover\":false,\"stopSlider\":false,\"stopAfterLoops\":\"0\",\"stopAtSlide\":\"2\",\"shuffle\":false,\"loopSingle\":false,\"viewPort\":false,\"viewPortStart\":\"wait\",\"viewPortArea\":\"20%\",\"presetSliderHeight\":false,\"initDelay\":\"0\",\"waitForInit\":false,\"slideShow\":true},\"progressbar\":{\"set\":false,\"height\":\"5\",\"position\":\"top\",\"color\":\"rgba(0,0,0,0.15)\"},\"firstSlide\":{\"set\":true,\"duration\":\"300\",\"slotAmount\":\"7\",\"type\":\"fade\",\"alternativeFirstSlideSet\":true,\"alternativeFirstSlide\":\"1\"},\"layerSelection\":false,\"lazyLoad\":\"none\",\"nextSlideOnFocus\":false,\"disableFocusListener\":false,\"disableOnMobile\":false,\"autoPlayVideoOnMobile\":true,\"disablePanZoomMobile\":false,\"useWPML\":false},\"nav\":{\"preview\":{\"width\":\"100\",\"height\":\"50\"},\"swipe\":{\"set\":false,\"setOnDesktop\":false,\"blockDragVertical\":false,\"direction\":\"horizontal\",\"minTouch\":\"1\",\"velocity\":\"75\"},\"keyboard\":{\"set\":false,\"direction\":\"horizontal\"},\"mouse\":{\"set\":false,\"reverse\":\"default\"},\"arrows\":{\"set\":true,\"rtl\":false,\"style\":1,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":true,\"hideUnderLimit\":\"1100\",\"left\":{\"horizontal\":\"left\",\"vertical\":\"center\",\"offsetX\":\"20\",\"offsetY\":\"0\",\"align\":\"slider\"},\"right\":{\"horizontal\":\"right\",\"vertical\":\"center\",\"offsetX\":\"20\",\"offsetY\":\"0\",\"align\":\"slider\"}},\"thumbs\":{\"set\":false,\"rtl\":false,\"style\":2000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":\"5\",\"direction\":\"horizontal\",\"height\":\"50\",\"width\":\"100\",\"widthMin\":\"100\",\"innerOuter\":\"inner\",\"offsetX\":\"0\",\"offsetY\":\"20\",\"space\":\"5\",\"align\":\"slider\",\"padding\":\"5\",\"wrapperColor\":\"transparent\"},\"tabs\":{\"set\":false,\"rtl\":false,\"style\":4000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":\"5\",\"direction\":\"horizontal\",\"height\":\"50\",\"width\":\"100\",\"widthMin\":\"100\",\"innerOuter\":\"inner\",\"offsetX\":\"0\",\"offsetY\":\"20\",\"space\":\"5\",\"align\":\"slider\",\"padding\":\"5\",\"wrapperColor\":\"transparent\"},\"bullets\":{\"set\":true,\"rtl\":false,\"style\":2,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"direction\":\"horizontal\",\"offsetX\":\"0\",\"offsetY\":\"20\",\"align\":\"slider\",\"space\":\"12\",\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":true,\"hideOverLimit\":\"1099\",\"hideUnder\":false,\"hideUnderLimit\":\"0\"}},\"troubleshooting\":{\"ignoreHeightChanges\":false,\"ignoreHeightChangesUnderLimit\":\"0\",\"alternateImageType\":\"off\",\"alternateURL\":\"\",\"alternateURLId\":false,\"jsNoConflict\":false,\"jsInBody\":false,\"outPutFilter\":\"none\",\"debugMode\":false,\"simplify_ie8_ios4\":false},\"parallax\":{\"set\":true,\"setDDD\":false,\"disableOnMobile\":false,\"levels\":[\"5\",\"10\",\"15\",\"20\",\"25\",\"30\",\"35\",\"40\",\"45\",\"46\",\"47\",\"48\",\"49\",\"50\",\"51\",\"55\"],\"ddd\":{\"BGFreeze\":false,\"layerOverflow\":false,\"overflow\":false,\"shadow\":false,\"zCorrection\":\"65\"},\"mouse\":{\"speed\":\"400\",\"bgSpeed\":0,\"layersSpeed\":0,\"origo\":\"enterpoint\",\"type\":\"mouse\"}},\"scrolleffects\":{\"set\":false,\"setBlur\":false,\"setFade\":false,\"setGrayScale\":false,\"bg\":false,\"direction\":\"both\",\"maxBlur\":\"10\",\"multiplicator\":\"1.3\",\"multiplicatorLayers\":\"1.3\",\"disableOnMobile\":true,\"tilt\":\"30\",\"layers\":false},\"version\":\"6.4.10\"}','{\"version\":\"6.4.10\"}',''),(6,'Home 8','home-8','{\"id\":\"\",\"shortcode\":\"[rev_slider alias=\\\\\\\"home-8\\\\\\\"]\",\"layouttype\":\"fullwidth\",\"type\":\"standard\",\"sourcetype\":\"gallery\",\"googleFont\":[],\"addOns\":[],\"source\":{\"gallery\":[],\"post\":{\"excerptLimit\":\"55\",\"maxPosts\":\"30\",\"fetchType\":\"cat_tag\",\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"post\",\"list\":\"\",\"sortDirection\":\"DESC\",\"subType\":\"post\"},\"woo\":{\"excerptLimit\":\"55\",\"maxProducts\":\"30\",\"featuredOnly\":false,\"inStockOnly\":false,\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"product\",\"sortDirection\":\"DESC\",\"regPriceFrom\":\"\",\"regPriceTo\":\"\",\"salePriceFrom\":\"\",\"salePriceTo\":\"\"},\"instagram\":{\"count\":\"\",\"hashTag\":\"\",\"transient\":\"1200\",\"type\":\"user\",\"userId\":\"\"},\"facebook\":{\"album\":\"\",\"appId\":\"\",\"appSecret\":\"\",\"count\":\"\",\"transient\":\"1200\",\"typeSource\":\"album\"},\"flickr\":{\"apiKey\":\"\",\"count\":\"\",\"galleryURL\":\"\",\"groupURL\":\"\",\"photoSet\":\"\",\"transient\":\"1200\",\"type\":\"publicphotos\",\"userURL\":\"\"},\"twitter\":{\"accessSecret\":\"\",\"accessToken\":\"\",\"consumerKey\":\"\",\"consumerSecret\":\"\",\"count\":\"\",\"excludeReplies\":false,\"imageOnly\":false,\"includeRetweets\":false,\"transient\":\"1200\",\"userId\":\"\"},\"vimeo\":{\"albumId\":\"\",\"channelName\":\"\",\"count\":\"\",\"transient\":\"1200\",\"groupName\":\"\",\"typeSource\":\"user\",\"userName\":\"\"},\"youtube\":{\"api\":\"\",\"channelId\":\"\",\"count\":\"\",\"playList\":\"\",\"transient\":\"1200\",\"typeSource\":\"channel\"}},\"def\":{\"transition\":\"fade\",\"transitionDuration\":\"300\",\"delay\":\"5000\",\"background\":{\"fit\":\"cover\",\"fitX\":\"100\",\"fitY\":\"100\",\"position\":\"center center\",\"positionX\":\"0\",\"positionY\":\"0\",\"repeat\":\"no-repeat\",\"imageSourceType\":\"full\"},\"panZoom\":{\"set\":false,\"blurStart\":\"0\",\"blurEnd\":\"0\",\"duration\":\"\",\"ease\":\"none\",\"fitEnd\":\"100\",\"fitStart\":\"100\",\"xEnd\":\"0\",\"yEnd\":\"0\",\"xStart\":\"0\",\"yStart\":\"0\",\"rotateStart\":\"0\",\"rotateEnd\":\"0\"}},\"size\":{\"respectAspectRatio\":false,\"disableForceFullWidth\":false,\"gridEQModule\":false,\"custom\":{\"d\":true,\"n\":true,\"t\":true,\"m\":true},\"minHeightFullScreen\":\"\",\"minHeight\":\"\",\"fullScreenOffsetContainer\":\"\",\"fullScreenOffset\":\"\",\"width\":{\"d\":1100,\"n\":800,\"t\":600,\"m\":320},\"height\":{\"d\":800,\"n\":677,\"t\":924,\"m\":587},\"overflow\":false,\"maxWidth\":\"\"},\"codes\":{\"css\":\"\",\"javascript\":\"\"},\"carousel\":{\"borderRadius\":\"0\",\"borderRadiusUnit\":\"px\",\"ease\":\"power3.inOut\",\"fadeOut\":true,\"scale\":false,\"horizontal\":\"center\",\"vertical\":\"center\",\"infinity\":false,\"maxItems\":\"3\",\"maxRotation\":\"0\",\"paddingTop\":\"0\",\"paddingBottom\":\"0\",\"rotation\":false,\"scaleDown\":50,\"space\":\"0\",\"speed\":\"800\",\"stretch\":false,\"varyFade\":false,\"varyRotate\":false,\"varyScale\":false,\"showAllLayers\":false},\"hero\":{\"activeSlide\":\"-1\"},\"layout\":{\"bg\":{\"color\":\"transparent\",\"padding\":\"0\",\"dottedOverlay\":\"none\",\"shadow\":\"0\",\"useImage\":false,\"image\":\"\",\"fit\":\"cover\",\"position\":\"center center\",\"repeat\":\"no-repeat\"},\"spinner\":{\"color\":\"#FFFFFF\",\"type\":\"-1\"},\"position\":{\"marginTop\":\"0\",\"marginBottom\":\"0\",\"marginLeft\":\"0\",\"marginRight\":\"0\",\"align\":\"center\"}},\"visibility\":{\"hideSelectedLayersUnderLimit\":\"0\",\"hideAllLayersUnderLimit\":\"0\",\"hideSliderUnderLimit\":\"0\"},\"general\":{\"slideshow\":{\"stopOnHover\":false,\"stopSlider\":false,\"stopAfterLoops\":\"0\",\"stopAtSlide\":\"2\",\"shuffle\":false,\"loopSingle\":false,\"viewPort\":false,\"viewPortStart\":\"wait\",\"viewPortArea\":\"20%\",\"presetSliderHeight\":false,\"initDelay\":\"0\",\"waitForInit\":false,\"slideShow\":true},\"progressbar\":{\"set\":false,\"height\":\"5\",\"position\":\"top\",\"color\":\"rgba(0,0,0,0.15)\"},\"firstSlide\":{\"set\":true,\"duration\":\"300\",\"slotAmount\":\"7\",\"type\":\"fade\",\"alternativeFirstSlideSet\":true,\"alternativeFirstSlide\":\"1\"},\"layerSelection\":false,\"lazyLoad\":\"none\",\"nextSlideOnFocus\":false,\"disableFocusListener\":false,\"disableOnMobile\":false,\"autoPlayVideoOnMobile\":true,\"disablePanZoomMobile\":false,\"useWPML\":false},\"nav\":{\"preview\":{\"width\":\"100\",\"height\":\"50\"},\"swipe\":{\"set\":false,\"setOnDesktop\":false,\"blockDragVertical\":false,\"direction\":\"horizontal\",\"minTouch\":\"1\",\"velocity\":\"75\"},\"keyboard\":{\"set\":false,\"direction\":\"horizontal\"},\"mouse\":{\"set\":false,\"reverse\":\"default\"},\"arrows\":{\"set\":true,\"rtl\":false,\"style\":3,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":true,\"hideUnderLimit\":\"1260\",\"left\":{\"horizontal\":\"left\",\"vertical\":\"center\",\"offsetX\":\"20\",\"offsetY\":\"46\",\"align\":\"slider\"},\"right\":{\"horizontal\":\"right\",\"vertical\":\"center\",\"offsetX\":\"20\",\"offsetY\":\"46\",\"align\":\"slider\"}},\"thumbs\":{\"set\":false,\"rtl\":false,\"style\":2000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":\"5\",\"direction\":\"horizontal\",\"height\":\"50\",\"width\":\"100\",\"widthMin\":\"100\",\"innerOuter\":\"inner\",\"offsetX\":\"0\",\"offsetY\":\"20\",\"space\":\"5\",\"align\":\"slider\",\"padding\":\"5\",\"wrapperColor\":\"transparent\"},\"tabs\":{\"set\":false,\"rtl\":false,\"style\":4000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":\"5\",\"direction\":\"horizontal\",\"height\":\"50\",\"width\":\"100\",\"widthMin\":\"100\",\"innerOuter\":\"inner\",\"offsetX\":\"0\",\"offsetY\":\"20\",\"space\":\"5\",\"align\":\"slider\",\"padding\":\"5\",\"wrapperColor\":\"transparent\"},\"bullets\":{\"set\":true,\"rtl\":false,\"style\":4,\"preset\":\"custom\",\"presets\":{\"color-def\":true,\"color\":\"#727475\"},\"alwaysOn\":true,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"direction\":\"horizontal\",\"offsetX\":\"0\",\"offsetY\":\"20\",\"align\":\"slider\",\"space\":\"5\",\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":true,\"hideOverLimit\":\"1259\",\"hideUnder\":false,\"hideUnderLimit\":\"0\"}},\"troubleshooting\":{\"ignoreHeightChanges\":false,\"ignoreHeightChangesUnderLimit\":\"0\",\"alternateImageType\":\"off\",\"alternateURL\":\"\",\"alternateURLId\":false,\"jsNoConflict\":false,\"jsInBody\":false,\"outPutFilter\":\"none\",\"debugMode\":false,\"simplify_ie8_ios4\":false},\"parallax\":{\"set\":true,\"setDDD\":false,\"disableOnMobile\":false,\"levels\":[\"5\",\"10\",\"15\",\"20\",\"25\",\"30\",\"35\",\"40\",\"45\",\"46\",\"47\",\"48\",\"49\",\"50\",\"51\",\"55\"],\"ddd\":{\"BGFreeze\":false,\"layerOverflow\":false,\"overflow\":false,\"shadow\":false,\"zCorrection\":\"65\"},\"mouse\":{\"speed\":\"400\",\"bgSpeed\":0,\"layersSpeed\":0,\"origo\":\"enterpoint\",\"type\":\"mouse\"}},\"scrolleffects\":{\"set\":false,\"setBlur\":false,\"setFade\":false,\"setGrayScale\":false,\"bg\":false,\"direction\":\"both\",\"maxBlur\":\"10\",\"multiplicator\":\"1.3\",\"multiplicatorLayers\":\"1.3\",\"disableOnMobile\":true,\"tilt\":\"30\",\"layers\":false},\"version\":\"6.4.10\"}','{\"version\":\"6.4.10\"}',''),(7,'Home 9','home-9','{\"id\":\"\",\"shortcode\":\"[rev_slider alias=\\\\\\\"home-9\\\\\\\"]\",\"layouttype\":\"fullwidth\",\"type\":\"standard\",\"sourcetype\":\"gallery\",\"googleFont\":[],\"addOns\":[],\"source\":{\"gallery\":[],\"post\":{\"excerptLimit\":\"55\",\"maxPosts\":\"30\",\"fetchType\":\"cat_tag\",\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"post\",\"list\":\"\",\"sortDirection\":\"DESC\",\"subType\":\"post\"},\"woo\":{\"excerptLimit\":\"55\",\"maxProducts\":\"30\",\"featuredOnly\":false,\"inStockOnly\":false,\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"product\",\"sortDirection\":\"DESC\",\"regPriceFrom\":\"\",\"regPriceTo\":\"\",\"salePriceFrom\":\"\",\"salePriceTo\":\"\"},\"instagram\":{\"count\":\"\",\"hashTag\":\"\",\"transient\":\"1200\",\"type\":\"user\",\"userId\":\"\"},\"facebook\":{\"album\":\"\",\"appId\":\"\",\"appSecret\":\"\",\"count\":\"\",\"transient\":\"1200\",\"typeSource\":\"album\"},\"flickr\":{\"apiKey\":\"\",\"count\":\"\",\"galleryURL\":\"\",\"groupURL\":\"\",\"photoSet\":\"\",\"transient\":\"1200\",\"type\":\"publicphotos\",\"userURL\":\"\"},\"twitter\":{\"accessSecret\":\"\",\"accessToken\":\"\",\"consumerKey\":\"\",\"consumerSecret\":\"\",\"count\":\"\",\"excludeReplies\":false,\"imageOnly\":false,\"includeRetweets\":false,\"transient\":\"1200\",\"userId\":\"\"},\"vimeo\":{\"albumId\":\"\",\"channelName\":\"\",\"count\":\"\",\"transient\":\"1200\",\"groupName\":\"\",\"typeSource\":\"user\",\"userName\":\"\"},\"youtube\":{\"api\":\"\",\"channelId\":\"\",\"count\":\"\",\"playList\":\"\",\"transient\":\"1200\",\"typeSource\":\"channel\"}},\"def\":{\"transition\":\"fade\",\"transitionDuration\":\"300\",\"delay\":\"5000\",\"background\":{\"fit\":\"cover\",\"fitX\":\"100\",\"fitY\":\"100\",\"position\":\"center center\",\"positionX\":\"0\",\"positionY\":\"0\",\"repeat\":\"no-repeat\",\"imageSourceType\":\"full\"},\"panZoom\":{\"set\":false,\"blurStart\":\"0\",\"blurEnd\":\"0\",\"duration\":\"\",\"ease\":\"none\",\"fitEnd\":\"100\",\"fitStart\":\"100\",\"xEnd\":\"0\",\"yEnd\":\"0\",\"xStart\":\"0\",\"yStart\":\"0\",\"rotateStart\":\"0\",\"rotateEnd\":\"0\"}},\"size\":{\"respectAspectRatio\":false,\"disableForceFullWidth\":false,\"gridEQModule\":false,\"custom\":{\"d\":true,\"n\":true,\"t\":true,\"m\":true},\"minHeightFullScreen\":\"\",\"minHeight\":\"\",\"fullScreenOffsetContainer\":\"\",\"fullScreenOffset\":\"\",\"width\":{\"d\":1300,\"n\":900,\"t\":600,\"m\":320},\"height\":{\"d\":820,\"n\":672,\"t\":960,\"m\":607},\"overflow\":false,\"maxWidth\":\"\"},\"codes\":{\"css\":\"\",\"javascript\":\"\"},\"carousel\":{\"borderRadius\":\"0\",\"borderRadiusUnit\":\"px\",\"ease\":\"power3.inOut\",\"fadeOut\":true,\"scale\":false,\"horizontal\":\"center\",\"vertical\":\"center\",\"infinity\":false,\"maxItems\":\"3\",\"maxRotation\":\"0\",\"paddingTop\":\"0\",\"paddingBottom\":\"0\",\"rotation\":false,\"scaleDown\":50,\"space\":\"0\",\"speed\":\"800\",\"stretch\":false,\"varyFade\":false,\"varyRotate\":false,\"varyScale\":false,\"showAllLayers\":false},\"hero\":{\"activeSlide\":\"-1\"},\"layout\":{\"bg\":{\"color\":\"transparent\",\"padding\":\"0\",\"dottedOverlay\":\"none\",\"shadow\":\"0\",\"useImage\":false,\"image\":\"\",\"fit\":\"cover\",\"position\":\"center center\",\"repeat\":\"no-repeat\"},\"spinner\":{\"color\":\"#FFFFFF\",\"type\":\"-1\"},\"position\":{\"marginTop\":\"0\",\"marginBottom\":\"0\",\"marginLeft\":\"0\",\"marginRight\":\"0\",\"align\":\"center\"}},\"visibility\":{\"hideSelectedLayersUnderLimit\":\"0\",\"hideAllLayersUnderLimit\":\"0\",\"hideSliderUnderLimit\":\"0\"},\"general\":{\"slideshow\":{\"stopOnHover\":false,\"stopSlider\":false,\"stopAfterLoops\":\"0\",\"stopAtSlide\":\"2\",\"shuffle\":false,\"loopSingle\":false,\"viewPort\":false,\"viewPortStart\":\"wait\",\"viewPortArea\":\"20%\",\"presetSliderHeight\":false,\"initDelay\":\"0\",\"waitForInit\":false,\"slideShow\":true},\"progressbar\":{\"set\":false,\"height\":\"5\",\"position\":\"top\",\"color\":\"rgba(0,0,0,0.15)\"},\"firstSlide\":{\"set\":true,\"duration\":\"300\",\"slotAmount\":\"7\",\"type\":\"fade\",\"alternativeFirstSlideSet\":true,\"alternativeFirstSlide\":\"1\"},\"layerSelection\":false,\"lazyLoad\":\"none\",\"nextSlideOnFocus\":false,\"disableFocusListener\":false,\"disableOnMobile\":false,\"autoPlayVideoOnMobile\":true,\"disablePanZoomMobile\":false,\"useWPML\":false},\"nav\":{\"preview\":{\"width\":\"100\",\"height\":\"50\"},\"swipe\":{\"set\":false,\"setOnDesktop\":false,\"blockDragVertical\":false,\"direction\":\"horizontal\",\"minTouch\":\"1\",\"velocity\":\"75\"},\"keyboard\":{\"set\":false,\"direction\":\"horizontal\"},\"mouse\":{\"set\":false,\"reverse\":\"default\"},\"arrows\":{\"set\":true,\"rtl\":false,\"style\":1,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":true,\"hideUnderLimit\":\"1260\",\"left\":{\"horizontal\":\"left\",\"vertical\":\"center\",\"offsetX\":\"20\",\"offsetY\":\"46\",\"align\":\"slider\"},\"right\":{\"horizontal\":\"right\",\"vertical\":\"center\",\"offsetX\":\"20\",\"offsetY\":\"46\",\"align\":\"slider\"}},\"thumbs\":{\"set\":false,\"rtl\":false,\"style\":2000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":\"5\",\"direction\":\"horizontal\",\"height\":\"50\",\"width\":\"100\",\"widthMin\":\"100\",\"innerOuter\":\"inner\",\"offsetX\":\"0\",\"offsetY\":\"20\",\"space\":\"5\",\"align\":\"slider\",\"padding\":\"5\",\"wrapperColor\":\"transparent\"},\"tabs\":{\"set\":false,\"rtl\":false,\"style\":4000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":\"5\",\"direction\":\"horizontal\",\"height\":\"50\",\"width\":\"100\",\"widthMin\":\"100\",\"innerOuter\":\"inner\",\"offsetX\":\"0\",\"offsetY\":\"20\",\"space\":\"5\",\"align\":\"slider\",\"padding\":\"5\",\"wrapperColor\":\"transparent\"},\"bullets\":{\"set\":true,\"rtl\":false,\"style\":2,\"preset\":\"custom\",\"presets\":[],\"alwaysOn\":true,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"direction\":\"horizontal\",\"offsetX\":\"0\",\"offsetY\":\"20\",\"align\":\"slider\",\"space\":\"5\",\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":true,\"hideOverLimit\":\"1259\",\"hideUnder\":false,\"hideUnderLimit\":\"0\"}},\"troubleshooting\":{\"ignoreHeightChanges\":false,\"ignoreHeightChangesUnderLimit\":\"0\",\"alternateImageType\":\"off\",\"alternateURL\":\"\",\"alternateURLId\":false,\"jsNoConflict\":false,\"jsInBody\":false,\"outPutFilter\":\"none\",\"debugMode\":false,\"simplify_ie8_ios4\":false},\"parallax\":{\"set\":true,\"setDDD\":false,\"disableOnMobile\":false,\"levels\":[\"5\",\"10\",\"15\",\"20\",\"25\",\"30\",\"35\",\"40\",\"45\",\"46\",\"47\",\"48\",\"49\",\"50\",\"51\",\"55\"],\"ddd\":{\"BGFreeze\":false,\"layerOverflow\":false,\"overflow\":false,\"shadow\":false,\"zCorrection\":\"65\"},\"mouse\":{\"speed\":\"400\",\"bgSpeed\":0,\"layersSpeed\":0,\"origo\":\"enterpoint\",\"type\":\"mouse\"}},\"scrolleffects\":{\"set\":false,\"setBlur\":false,\"setFade\":false,\"setGrayScale\":false,\"bg\":false,\"direction\":\"both\",\"maxBlur\":\"10\",\"multiplicator\":\"1.3\",\"multiplicatorLayers\":\"1.3\",\"disableOnMobile\":true,\"tilt\":\"30\",\"layers\":false},\"version\":\"6.4.10\"}','{\"version\":\"6.4.10\"}',''),(8,'Home 10','home-10','{\"id\":\"\",\"shortcode\":\"[rev_slider alias=\\\\\\\"home-10\\\\\\\"]\",\"layouttype\":\"fullscreen\",\"type\":\"standard\",\"sourcetype\":\"gallery\",\"googleFont\":[],\"addOns\":[],\"source\":{\"gallery\":[],\"post\":{\"excerptLimit\":\"55\",\"maxPosts\":\"30\",\"fetchType\":\"cat_tag\",\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"post\",\"list\":\"\",\"sortDirection\":\"DESC\",\"subType\":\"post\"},\"woo\":{\"excerptLimit\":\"55\",\"maxProducts\":\"30\",\"featuredOnly\":false,\"inStockOnly\":false,\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"product\",\"sortDirection\":\"DESC\",\"regPriceFrom\":\"\",\"regPriceTo\":\"\",\"salePriceFrom\":\"\",\"salePriceTo\":\"\"},\"instagram\":{\"count\":\"\",\"hashTag\":\"\",\"transient\":\"1200\",\"type\":\"user\",\"userId\":\"\"},\"facebook\":{\"album\":\"\",\"appId\":\"\",\"appSecret\":\"\",\"count\":\"\",\"transient\":\"1200\",\"typeSource\":\"album\"},\"flickr\":{\"apiKey\":\"\",\"count\":\"\",\"galleryURL\":\"\",\"groupURL\":\"\",\"photoSet\":\"\",\"transient\":\"1200\",\"type\":\"publicphotos\",\"userURL\":\"\"},\"twitter\":{\"accessSecret\":\"\",\"accessToken\":\"\",\"consumerKey\":\"\",\"consumerSecret\":\"\",\"count\":\"\",\"excludeReplies\":false,\"imageOnly\":false,\"includeRetweets\":false,\"transient\":\"1200\",\"userId\":\"\"},\"vimeo\":{\"albumId\":\"\",\"channelName\":\"\",\"count\":\"\",\"transient\":\"1200\",\"groupName\":\"\",\"typeSource\":\"user\",\"userName\":\"\"},\"youtube\":{\"api\":\"\",\"channelId\":\"\",\"count\":\"\",\"playList\":\"\",\"transient\":\"1200\",\"typeSource\":\"channel\"}},\"def\":{\"transition\":\"fade\",\"transitionDuration\":\"300\",\"delay\":\"4000\",\"background\":{\"fit\":\"cover\",\"fitX\":\"100\",\"fitY\":\"100\",\"position\":\"center center\",\"positionX\":\"0\",\"positionY\":\"0\",\"repeat\":\"no-repeat\",\"imageSourceType\":\"full\"},\"panZoom\":{\"set\":false,\"blurStart\":\"0\",\"blurEnd\":\"0\",\"duration\":\"\",\"ease\":\"none\",\"fitEnd\":\"100\",\"fitStart\":\"100\",\"xEnd\":\"0\",\"yEnd\":\"0\",\"xStart\":\"0\",\"yStart\":\"0\",\"rotateStart\":\"0\",\"rotateEnd\":\"0\"}},\"size\":{\"respectAspectRatio\":false,\"disableForceFullWidth\":false,\"gridEQModule\":false,\"custom\":{\"d\":true,\"n\":true,\"t\":true,\"m\":true},\"minHeightFullScreen\":\"\",\"minHeight\":\"\",\"fullScreenOffsetContainer\":\"\",\"fullScreenOffset\":\"\",\"width\":{\"d\":1300,\"n\":960,\"t\":600,\"m\":320},\"height\":{\"d\":870,\"n\":677,\"t\":900,\"m\":500},\"overflow\":false,\"maxWidth\":\"\"},\"codes\":{\"css\":\"\",\"javascript\":\"\"},\"carousel\":{\"borderRadius\":\"0\",\"borderRadiusUnit\":\"px\",\"ease\":\"power3.inOut\",\"fadeOut\":true,\"scale\":false,\"horizontal\":\"center\",\"vertical\":\"center\",\"infinity\":false,\"maxItems\":\"3\",\"maxRotation\":\"0\",\"paddingTop\":\"0\",\"paddingBottom\":\"0\",\"rotation\":false,\"scaleDown\":50,\"space\":\"0\",\"speed\":\"800\",\"stretch\":false,\"varyFade\":false,\"varyRotate\":false,\"varyScale\":false,\"showAllLayers\":false},\"hero\":{\"activeSlide\":\"-1\"},\"layout\":{\"bg\":{\"color\":\"transparent\",\"padding\":\"0\",\"dottedOverlay\":\"none\",\"shadow\":\"0\",\"useImage\":false,\"image\":\"\",\"fit\":\"cover\",\"position\":\"center center\",\"repeat\":\"no-repeat\"},\"spinner\":{\"color\":\"#FFFFFF\",\"type\":\"-1\"},\"position\":{\"marginTop\":\"0\",\"marginBottom\":\"0\",\"marginLeft\":\"0\",\"marginRight\":\"0\",\"align\":\"center\"}},\"visibility\":{\"hideSelectedLayersUnderLimit\":\"0\",\"hideAllLayersUnderLimit\":\"0\",\"hideSliderUnderLimit\":\"0\"},\"general\":{\"slideshow\":{\"stopOnHover\":false,\"stopSlider\":false,\"stopAfterLoops\":\"0\",\"stopAtSlide\":\"2\",\"shuffle\":false,\"loopSingle\":false,\"viewPort\":false,\"viewPortStart\":\"wait\",\"viewPortArea\":\"20%\",\"presetSliderHeight\":false,\"initDelay\":\"0\",\"waitForInit\":false,\"slideShow\":true},\"progressbar\":{\"set\":false,\"height\":\"5\",\"position\":\"top\",\"color\":\"rgba(0,0,0,0.15)\"},\"firstSlide\":{\"set\":true,\"duration\":\"300\",\"slotAmount\":\"7\",\"type\":\"fade\",\"alternativeFirstSlideSet\":true,\"alternativeFirstSlide\":\"1\"},\"layerSelection\":false,\"lazyLoad\":\"none\",\"nextSlideOnFocus\":false,\"disableFocusListener\":false,\"disableOnMobile\":false,\"autoPlayVideoOnMobile\":true,\"disablePanZoomMobile\":false,\"useWPML\":false},\"nav\":{\"preview\":{\"width\":\"100\",\"height\":\"50\"},\"swipe\":{\"set\":false,\"setOnDesktop\":false,\"blockDragVertical\":false,\"direction\":\"horizontal\",\"minTouch\":\"1\",\"velocity\":\"75\"},\"keyboard\":{\"set\":false,\"direction\":\"horizontal\"},\"mouse\":{\"set\":false,\"reverse\":\"default\"},\"arrows\":{\"set\":false,\"rtl\":false,\"style\":3,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":true,\"hideUnderLimit\":\"1260\",\"left\":{\"horizontal\":\"left\",\"vertical\":\"center\",\"offsetX\":\"20\",\"offsetY\":\"67\",\"align\":\"slider\"},\"right\":{\"horizontal\":\"right\",\"vertical\":\"center\",\"offsetX\":\"20\",\"offsetY\":\"67\",\"align\":\"slider\"}},\"thumbs\":{\"set\":false,\"rtl\":false,\"style\":2000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":\"5\",\"direction\":\"horizontal\",\"height\":\"50\",\"width\":\"100\",\"widthMin\":\"100\",\"innerOuter\":\"inner\",\"offsetX\":\"0\",\"offsetY\":\"20\",\"space\":\"5\",\"align\":\"slider\",\"padding\":\"5\",\"wrapperColor\":\"transparent\"},\"tabs\":{\"set\":false,\"rtl\":false,\"style\":4000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":\"5\",\"direction\":\"horizontal\",\"height\":\"50\",\"width\":\"100\",\"widthMin\":\"100\",\"innerOuter\":\"inner\",\"offsetX\":\"0\",\"offsetY\":\"20\",\"space\":\"5\",\"align\":\"slider\",\"padding\":\"5\",\"wrapperColor\":\"transparent\"},\"bullets\":{\"set\":true,\"rtl\":false,\"style\":2,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"direction\":\"horizontal\",\"offsetX\":\"0\",\"offsetY\":\"20\",\"align\":\"slider\",\"space\":\"5\",\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":true,\"hideOverLimit\":\"1260\",\"hideUnder\":false,\"hideUnderLimit\":\"0\"}},\"troubleshooting\":{\"ignoreHeightChanges\":false,\"ignoreHeightChangesUnderLimit\":\"0\",\"alternateImageType\":\"off\",\"alternateURL\":\"\",\"alternateURLId\":false,\"jsNoConflict\":false,\"jsInBody\":false,\"outPutFilter\":\"none\",\"debugMode\":false,\"simplify_ie8_ios4\":false},\"parallax\":{\"set\":true,\"setDDD\":false,\"disableOnMobile\":false,\"levels\":[\"5\",\"10\",\"15\",\"20\",\"25\",\"30\",\"35\",\"40\",\"45\",\"46\",\"47\",\"48\",\"49\",\"50\",\"51\",\"55\"],\"ddd\":{\"BGFreeze\":false,\"layerOverflow\":false,\"overflow\":false,\"shadow\":false,\"zCorrection\":\"65\"},\"mouse\":{\"speed\":\"400\",\"bgSpeed\":0,\"layersSpeed\":0,\"origo\":\"enterpoint\",\"type\":\"mouse\"}},\"scrolleffects\":{\"set\":false,\"setBlur\":false,\"setFade\":false,\"setGrayScale\":false,\"bg\":false,\"direction\":\"both\",\"maxBlur\":\"10\",\"multiplicator\":\"1.3\",\"multiplicatorLayers\":\"1.3\",\"disableOnMobile\":true,\"tilt\":\"30\",\"layers\":false},\"version\":\"6.4.10\"}','{\"version\":\"6.4.10\"}',''),(9,'Interactive Map Slider','interactive-map-slider','{\"id\":\"\",\"shortcode\":\"[rev_slider alias=\\\\\\\"interactive-map-slider\\\\\\\"]\",\"layouttype\":\"auto\",\"type\":\"standard\",\"sourcetype\":\"gallery\",\"googleFont\":[],\"addOns\":[],\"source\":{\"gallery\":[],\"post\":{\"excerptLimit\":\"55\",\"maxPosts\":\"30\",\"fetchType\":\"cat_tag\",\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"post\",\"list\":\"\",\"sortDirection\":\"DESC\",\"subType\":\"post\"},\"woo\":{\"excerptLimit\":\"55\",\"maxProducts\":\"30\",\"featuredOnly\":false,\"inStockOnly\":false,\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"product\",\"sortDirection\":\"DESC\",\"regPriceFrom\":\"\",\"regPriceTo\":\"\",\"salePriceFrom\":\"\",\"salePriceTo\":\"\"},\"instagram\":{\"count\":\"\",\"hashTag\":\"\",\"transient\":\"1200\",\"type\":\"user\",\"userId\":\"\"},\"facebook\":{\"album\":\"\",\"appId\":\"\",\"appSecret\":\"\",\"count\":\"\",\"transient\":\"1200\",\"typeSource\":\"album\"},\"flickr\":{\"apiKey\":\"\",\"count\":\"\",\"galleryURL\":\"\",\"groupURL\":\"\",\"photoSet\":\"\",\"transient\":\"1200\",\"type\":\"publicphotos\",\"userURL\":\"\"},\"twitter\":{\"accessSecret\":\"\",\"accessToken\":\"\",\"consumerKey\":\"\",\"consumerSecret\":\"\",\"count\":\"\",\"excludeReplies\":false,\"imageOnly\":false,\"includeRetweets\":false,\"transient\":\"1200\",\"userId\":\"\"},\"vimeo\":{\"albumId\":\"\",\"channelName\":\"\",\"count\":\"\",\"transient\":\"1200\",\"groupName\":\"\",\"typeSource\":\"user\",\"userName\":\"\"},\"youtube\":{\"api\":\"\",\"channelId\":\"\",\"count\":\"\",\"playList\":\"\",\"transient\":\"1200\",\"typeSource\":\"channel\"}},\"def\":{\"transition\":\"fade\",\"transitionDuration\":\"300\",\"delay\":\"5000\",\"background\":{\"fit\":\"cover\",\"fitX\":\"100\",\"fitY\":\"100\",\"position\":\"center center\",\"positionX\":\"0\",\"positionY\":\"0\",\"repeat\":\"no-repeat\",\"imageSourceType\":\"full\"},\"panZoom\":{\"set\":false,\"blurStart\":\"0\",\"blurEnd\":\"0\",\"duration\":\"\",\"ease\":\"none\",\"fitEnd\":\"100\",\"fitStart\":\"100\",\"xEnd\":\"0\",\"yEnd\":\"0\",\"xStart\":\"0\",\"yStart\":\"0\",\"rotateStart\":\"0\",\"rotateEnd\":\"0\"}},\"size\":{\"respectAspectRatio\":false,\"disableForceFullWidth\":false,\"gridEQModule\":false,\"custom\":{\"d\":true,\"n\":true,\"t\":true,\"m\":true},\"minHeightFullScreen\":\"\",\"minHeight\":\"\",\"fullScreenOffsetContainer\":\".touch .mkdf-mobile-header\",\"fullScreenOffset\":\"\",\"width\":{\"d\":1300,\"n\":800,\"t\":600,\"m\":320},\"height\":{\"d\":639,\"n\":460,\"t\":370,\"m\":230},\"overflow\":false,\"maxWidth\":\"\"},\"codes\":{\"javascript\":\"\",\"css\":\".rs-layer.click-class {\\n   cursor: pointer !important;   \\n}\"},\"carousel\":{\"borderRadius\":\"0\",\"borderRadiusUnit\":\"px\",\"ease\":\"power3.inOut\",\"fadeOut\":true,\"scale\":false,\"horizontal\":\"center\",\"vertical\":\"center\",\"infinity\":false,\"maxItems\":\"3\",\"maxRotation\":\"0\",\"paddingTop\":\"0\",\"paddingBottom\":\"0\",\"rotation\":false,\"scaleDown\":50,\"space\":\"0\",\"speed\":\"800\",\"stretch\":false,\"varyFade\":false,\"varyRotate\":false,\"varyScale\":false,\"showAllLayers\":false},\"hero\":{\"activeSlide\":\"-1\"},\"layout\":{\"bg\":{\"color\":\"transparent\",\"padding\":\"0\",\"dottedOverlay\":\"none\",\"shadow\":\"0\",\"useImage\":false,\"image\":\"http:\\/\\/iacademy.mikado-themes.com\\/wp-content\\/uploads\\/2017\\/06\\/h6-slide-1-background.jpg\",\"fit\":\"cover\",\"position\":\"center center\",\"repeat\":\"no-repeat\"},\"spinner\":{\"color\":\"#FFFFFF\",\"type\":\"-1\"},\"position\":{\"marginTop\":\"0\",\"marginBottom\":\"0\",\"marginLeft\":\"0\",\"marginRight\":\"0\",\"align\":\"center\"}},\"visibility\":{\"hideSelectedLayersUnderLimit\":\"0\",\"hideAllLayersUnderLimit\":\"0\",\"hideSliderUnderLimit\":\"0\"},\"general\":{\"slideshow\":{\"stopOnHover\":false,\"stopSlider\":false,\"stopAfterLoops\":\"0\",\"stopAtSlide\":\"2\",\"shuffle\":false,\"loopSingle\":false,\"viewPort\":false,\"viewPortStart\":\"wait\",\"viewPortArea\":\"20%\",\"presetSliderHeight\":false,\"initDelay\":\"0\",\"waitForInit\":false,\"slideShow\":true},\"progressbar\":{\"set\":false,\"height\":\"5\",\"position\":\"top\",\"color\":\"rgba(0,0,0,0.15)\"},\"firstSlide\":{\"set\":true,\"duration\":\"300\",\"slotAmount\":\"7\",\"type\":\"fade\",\"alternativeFirstSlideSet\":true,\"alternativeFirstSlide\":\"1\"},\"layerSelection\":false,\"lazyLoad\":\"none\",\"nextSlideOnFocus\":false,\"disableFocusListener\":false,\"disableOnMobile\":false,\"autoPlayVideoOnMobile\":true,\"disablePanZoomMobile\":false,\"useWPML\":false},\"nav\":{\"preview\":{\"width\":\"100\",\"height\":\"50\"},\"swipe\":{\"set\":false,\"setOnDesktop\":false,\"blockDragVertical\":false,\"direction\":\"horizontal\",\"minTouch\":\"1\",\"velocity\":\"75\"},\"keyboard\":{\"set\":false,\"direction\":\"horizontal\"},\"mouse\":{\"set\":false,\"reverse\":\"default\"},\"arrows\":{\"set\":true,\"rtl\":false,\"style\":1,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":true,\"hideUnderLimit\":\"1260\",\"left\":{\"horizontal\":\"left\",\"vertical\":\"center\",\"offsetX\":\"20\",\"offsetY\":\"67\",\"align\":\"slider\"},\"right\":{\"horizontal\":\"right\",\"vertical\":\"center\",\"offsetX\":\"20\",\"offsetY\":\"67\",\"align\":\"slider\"}},\"thumbs\":{\"set\":false,\"rtl\":false,\"style\":2000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":\"5\",\"direction\":\"horizontal\",\"height\":\"50\",\"width\":\"100\",\"widthMin\":\"100\",\"innerOuter\":\"inner\",\"offsetX\":\"0\",\"offsetY\":\"20\",\"space\":\"5\",\"align\":\"slider\",\"padding\":\"5\",\"wrapperColor\":\"transparent\"},\"tabs\":{\"set\":false,\"rtl\":false,\"style\":4000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":\"5\",\"direction\":\"horizontal\",\"height\":\"50\",\"width\":\"100\",\"widthMin\":\"100\",\"innerOuter\":\"inner\",\"offsetX\":\"0\",\"offsetY\":\"20\",\"space\":\"5\",\"align\":\"slider\",\"padding\":\"5\",\"wrapperColor\":\"transparent\"},\"bullets\":{\"set\":true,\"rtl\":false,\"style\":2,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"direction\":\"horizontal\",\"offsetX\":\"0\",\"offsetY\":\"20\",\"align\":\"slider\",\"space\":\"5\",\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":true,\"hideOverLimit\":\"1260\",\"hideUnder\":false,\"hideUnderLimit\":\"0\"}},\"troubleshooting\":{\"ignoreHeightChanges\":false,\"ignoreHeightChangesUnderLimit\":\"0\",\"alternateImageType\":\"off\",\"alternateURL\":\"\",\"alternateURLId\":false,\"jsNoConflict\":false,\"jsInBody\":false,\"outPutFilter\":\"none\",\"debugMode\":false,\"simplify_ie8_ios4\":false},\"parallax\":{\"set\":true,\"setDDD\":false,\"disableOnMobile\":false,\"levels\":[\"5\",\"10\",\"15\",\"20\",\"25\",\"30\",\"35\",\"40\",\"45\",\"46\",\"47\",\"48\",\"49\",\"50\",\"51\",\"55\"],\"ddd\":{\"BGFreeze\":false,\"layerOverflow\":false,\"overflow\":false,\"shadow\":false,\"zCorrection\":\"65\"},\"mouse\":{\"speed\":\"400\",\"bgSpeed\":0,\"layersSpeed\":0,\"origo\":\"enterpoint\",\"type\":\"mouse\"}},\"scrolleffects\":{\"set\":false,\"setBlur\":false,\"setFade\":false,\"setGrayScale\":false,\"bg\":false,\"direction\":\"both\",\"maxBlur\":\"10\",\"multiplicator\":\"1.3\",\"multiplicatorLayers\":\"1.3\",\"disableOnMobile\":true,\"tilt\":\"30\",\"layers\":false},\"version\":\"6.4.10\"}','{\"version\":\"6.4.10\"}',''),(10,'Landing 1','landing-1','{\"id\":\"\",\"shortcode\":\"[rev_slider alias=\\\\\\\"landing-1\\\\\\\"]\",\"layouttype\":\"fullwidth\",\"type\":\"standard\",\"sourcetype\":\"gallery\",\"googleFont\":[],\"addOns\":[],\"source\":{\"gallery\":[],\"post\":{\"excerptLimit\":\"55\",\"maxPosts\":\"30\",\"fetchType\":\"cat_tag\",\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"post\",\"list\":\"\",\"sortDirection\":\"DESC\",\"subType\":\"post\"},\"woo\":{\"excerptLimit\":\"55\",\"maxProducts\":\"30\",\"featuredOnly\":false,\"inStockOnly\":false,\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"product\",\"sortDirection\":\"DESC\",\"regPriceFrom\":\"\",\"regPriceTo\":\"\",\"salePriceFrom\":\"\",\"salePriceTo\":\"\"},\"instagram\":{\"count\":\"\",\"hashTag\":\"\",\"transient\":\"1200\",\"type\":\"user\",\"userId\":\"\"},\"facebook\":{\"album\":\"\",\"appId\":\"\",\"appSecret\":\"\",\"count\":\"\",\"transient\":\"1200\",\"typeSource\":\"album\"},\"flickr\":{\"apiKey\":\"\",\"count\":\"\",\"galleryURL\":\"\",\"groupURL\":\"\",\"photoSet\":\"\",\"transient\":\"1200\",\"type\":\"publicphotos\",\"userURL\":\"\"},\"twitter\":{\"accessSecret\":\"\",\"accessToken\":\"\",\"consumerKey\":\"\",\"consumerSecret\":\"\",\"count\":\"\",\"excludeReplies\":false,\"imageOnly\":false,\"includeRetweets\":false,\"transient\":\"1200\",\"userId\":\"\"},\"vimeo\":{\"albumId\":\"\",\"channelName\":\"\",\"count\":\"\",\"transient\":\"1200\",\"groupName\":\"\",\"typeSource\":\"user\",\"userName\":\"\"},\"youtube\":{\"api\":\"\",\"channelId\":\"\",\"count\":\"\",\"playList\":\"\",\"transient\":\"1200\",\"typeSource\":\"channel\"}},\"def\":{\"transition\":\"fade\",\"transitionDuration\":\"300\",\"delay\":\"4000\",\"background\":{\"fit\":\"cover\",\"fitX\":\"100\",\"fitY\":\"100\",\"position\":\"center center\",\"positionX\":\"0\",\"positionY\":\"0\",\"repeat\":\"no-repeat\",\"imageSourceType\":\"full\"},\"panZoom\":{\"set\":false,\"blurStart\":\"0\",\"blurEnd\":\"0\",\"duration\":\"\",\"ease\":\"none\",\"fitEnd\":\"100\",\"fitStart\":\"100\",\"xEnd\":\"0\",\"yEnd\":\"0\",\"xStart\":\"0\",\"yStart\":\"0\",\"rotateStart\":\"0\",\"rotateEnd\":\"0\"}},\"size\":{\"respectAspectRatio\":false,\"disableForceFullWidth\":false,\"gridEQModule\":false,\"custom\":{\"d\":true,\"n\":true,\"t\":true,\"m\":true},\"minHeightFullScreen\":\"\",\"minHeight\":\"\",\"fullScreenOffsetContainer\":\"\",\"fullScreenOffset\":\"\",\"width\":{\"d\":1300,\"n\":800,\"t\":600,\"m\":320},\"height\":{\"d\":490,\"n\":400,\"t\":400,\"m\":400},\"overflow\":false,\"maxWidth\":\"\"},\"codes\":{\"css\":\"\",\"javascript\":\"\"},\"carousel\":{\"borderRadius\":\"0\",\"borderRadiusUnit\":\"px\",\"ease\":\"power3.inOut\",\"fadeOut\":true,\"scale\":false,\"horizontal\":\"center\",\"vertical\":\"center\",\"infinity\":false,\"maxItems\":\"3\",\"maxRotation\":\"0\",\"paddingTop\":\"0\",\"paddingBottom\":\"0\",\"rotation\":false,\"scaleDown\":50,\"space\":\"0\",\"speed\":\"800\",\"stretch\":false,\"varyFade\":false,\"varyRotate\":false,\"varyScale\":false,\"showAllLayers\":false},\"hero\":{\"activeSlide\":\"-1\"},\"layout\":{\"bg\":{\"color\":\"transparent\",\"padding\":\"0\",\"dottedOverlay\":\"none\",\"shadow\":\"0\",\"useImage\":false,\"image\":\"http:\\/\\/iacademy.mikado-themes.com\\/wp-content\\/uploads\\/2017\\/06\\/h1-slide-1-background.jpg\",\"fit\":\"cover\",\"position\":\"center center\",\"repeat\":\"no-repeat\"},\"spinner\":{\"color\":\"#FFFFFF\",\"type\":\"-1\"},\"position\":{\"marginTop\":\"0\",\"marginBottom\":\"0\",\"marginLeft\":\"0\",\"marginRight\":\"0\",\"align\":\"center\"}},\"visibility\":{\"hideSelectedLayersUnderLimit\":\"0\",\"hideAllLayersUnderLimit\":\"0\",\"hideSliderUnderLimit\":\"0\"},\"general\":{\"slideshow\":{\"stopOnHover\":false,\"stopSlider\":false,\"stopAfterLoops\":\"0\",\"stopAtSlide\":\"2\",\"shuffle\":false,\"loopSingle\":false,\"viewPort\":false,\"viewPortStart\":\"wait\",\"viewPortArea\":\"20%\",\"presetSliderHeight\":false,\"initDelay\":\"0\",\"waitForInit\":false,\"slideShow\":true},\"progressbar\":{\"set\":false,\"height\":\"5\",\"position\":\"top\",\"color\":\"rgba(0,0,0,0.15)\"},\"firstSlide\":{\"set\":true,\"duration\":\"300\",\"slotAmount\":\"7\",\"type\":\"fade\",\"alternativeFirstSlideSet\":true,\"alternativeFirstSlide\":\"1\"},\"layerSelection\":false,\"lazyLoad\":\"none\",\"nextSlideOnFocus\":false,\"disableFocusListener\":false,\"disableOnMobile\":false,\"autoPlayVideoOnMobile\":true,\"disablePanZoomMobile\":false,\"useWPML\":false},\"nav\":{\"preview\":{\"width\":\"100\",\"height\":\"50\"},\"swipe\":{\"set\":false,\"setOnDesktop\":false,\"blockDragVertical\":false,\"direction\":\"horizontal\",\"minTouch\":\"1\",\"velocity\":\"75\"},\"keyboard\":{\"set\":false,\"direction\":\"horizontal\"},\"mouse\":{\"set\":false,\"reverse\":\"default\"},\"arrows\":{\"set\":false,\"rtl\":false,\"style\":1,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":true,\"hideUnderLimit\":\"1260\",\"left\":{\"horizontal\":\"left\",\"vertical\":\"center\",\"offsetX\":\"20\",\"offsetY\":\"69\",\"align\":\"slider\"},\"right\":{\"horizontal\":\"right\",\"vertical\":\"center\",\"offsetX\":\"20\",\"offsetY\":\"69\",\"align\":\"slider\"}},\"thumbs\":{\"set\":false,\"rtl\":false,\"style\":2000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":\"5\",\"direction\":\"horizontal\",\"height\":\"50\",\"width\":\"100\",\"widthMin\":\"100\",\"innerOuter\":\"inner\",\"offsetX\":\"0\",\"offsetY\":\"20\",\"space\":\"5\",\"align\":\"slider\",\"padding\":\"5\",\"wrapperColor\":\"transparent\"},\"tabs\":{\"set\":false,\"rtl\":false,\"style\":4000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":\"5\",\"direction\":\"horizontal\",\"height\":\"50\",\"width\":\"100\",\"widthMin\":\"100\",\"innerOuter\":\"inner\",\"offsetX\":\"0\",\"offsetY\":\"20\",\"space\":\"5\",\"align\":\"slider\",\"padding\":\"5\",\"wrapperColor\":\"transparent\"},\"bullets\":{\"set\":false,\"rtl\":false,\"style\":2,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"direction\":\"horizontal\",\"offsetX\":\"0\",\"offsetY\":\"20\",\"align\":\"slider\",\"space\":\"5\",\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":true,\"hideOverLimit\":\"1260\",\"hideUnder\":false,\"hideUnderLimit\":\"0\"}},\"troubleshooting\":{\"ignoreHeightChanges\":false,\"ignoreHeightChangesUnderLimit\":\"0\",\"alternateImageType\":\"off\",\"alternateURL\":\"\",\"alternateURLId\":false,\"jsNoConflict\":false,\"jsInBody\":false,\"outPutFilter\":\"none\",\"debugMode\":false,\"simplify_ie8_ios4\":false},\"parallax\":{\"set\":true,\"setDDD\":false,\"disableOnMobile\":false,\"levels\":[\"5\",\"10\",\"15\",\"20\",\"25\",\"30\",\"35\",\"40\",\"45\",\"46\",\"47\",\"48\",\"49\",\"50\",\"51\",\"55\"],\"ddd\":{\"BGFreeze\":false,\"layerOverflow\":false,\"overflow\":false,\"shadow\":false,\"zCorrection\":\"65\"},\"mouse\":{\"speed\":\"400\",\"bgSpeed\":0,\"layersSpeed\":0,\"origo\":\"enterpoint\",\"type\":\"mouse\"}},\"scrolleffects\":{\"set\":false,\"setBlur\":false,\"setFade\":false,\"setGrayScale\":false,\"bg\":false,\"direction\":\"both\",\"maxBlur\":\"10\",\"multiplicator\":\"1.3\",\"multiplicatorLayers\":\"1.3\",\"disableOnMobile\":true,\"tilt\":\"30\",\"layers\":false},\"version\":\"6.4.10\"}','{\"version\":\"6.4.10\"}',''),(11,'Landing 2','landing-2','{\"id\":\"\",\"shortcode\":\"[rev_slider alias=\\\\\\\"landing-2\\\\\\\"]\",\"layouttype\":\"auto\",\"type\":\"standard\",\"sourcetype\":\"gallery\",\"googleFont\":[],\"addOns\":[],\"source\":{\"gallery\":[],\"post\":{\"excerptLimit\":\"55\",\"maxPosts\":\"30\",\"fetchType\":\"cat_tag\",\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"post\",\"list\":\"\",\"sortDirection\":\"DESC\",\"subType\":\"post\"},\"woo\":{\"excerptLimit\":\"55\",\"maxProducts\":\"30\",\"featuredOnly\":false,\"inStockOnly\":false,\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"product\",\"sortDirection\":\"DESC\",\"regPriceFrom\":\"\",\"regPriceTo\":\"\",\"salePriceFrom\":\"\",\"salePriceTo\":\"\"},\"instagram\":{\"count\":\"\",\"hashTag\":\"\",\"transient\":\"1200\",\"type\":\"user\",\"userId\":\"\"},\"facebook\":{\"album\":\"\",\"appId\":\"\",\"appSecret\":\"\",\"count\":\"\",\"transient\":\"1200\",\"typeSource\":\"album\"},\"flickr\":{\"apiKey\":\"\",\"count\":\"\",\"galleryURL\":\"\",\"groupURL\":\"\",\"photoSet\":\"\",\"transient\":\"1200\",\"type\":\"publicphotos\",\"userURL\":\"\"},\"twitter\":{\"accessSecret\":\"\",\"accessToken\":\"\",\"consumerKey\":\"\",\"consumerSecret\":\"\",\"count\":\"\",\"excludeReplies\":false,\"imageOnly\":false,\"includeRetweets\":false,\"transient\":\"1200\",\"userId\":\"\"},\"vimeo\":{\"albumId\":\"\",\"channelName\":\"\",\"count\":\"\",\"transient\":\"1200\",\"groupName\":\"\",\"typeSource\":\"user\",\"userName\":\"\"},\"youtube\":{\"api\":\"\",\"channelId\":\"\",\"count\":\"\",\"playList\":\"\",\"transient\":\"1200\",\"typeSource\":\"channel\"}},\"def\":{\"transition\":\"fade\",\"transitionDuration\":\"300\",\"delay\":\"4000\",\"background\":{\"fit\":\"cover\",\"fitX\":\"100\",\"fitY\":\"100\",\"position\":\"center center\",\"positionX\":\"0\",\"positionY\":\"0\",\"repeat\":\"no-repeat\",\"imageSourceType\":\"full\"},\"panZoom\":{\"set\":false,\"blurStart\":\"0\",\"blurEnd\":\"0\",\"duration\":\"\",\"ease\":\"none\",\"fitEnd\":\"100\",\"fitStart\":\"100\",\"xEnd\":\"0\",\"yEnd\":\"0\",\"xStart\":\"0\",\"yStart\":\"0\",\"rotateStart\":\"0\",\"rotateEnd\":\"0\"}},\"size\":{\"respectAspectRatio\":false,\"disableForceFullWidth\":false,\"gridEQModule\":false,\"custom\":{\"d\":true,\"n\":true,\"t\":true,\"m\":true},\"minHeightFullScreen\":\"\",\"minHeight\":\"\",\"fullScreenOffsetContainer\":\"\",\"fullScreenOffset\":\"\",\"width\":{\"d\":750,\"n\":700,\"t\":600,\"m\":320},\"height\":{\"d\":750,\"n\":530,\"t\":670,\"m\":350},\"overflow\":false,\"maxWidth\":\"\"},\"codes\":{\"css\":\"\",\"javascript\":\"\"},\"carousel\":{\"borderRadius\":\"0\",\"borderRadiusUnit\":\"px\",\"ease\":\"power3.inOut\",\"fadeOut\":true,\"scale\":false,\"horizontal\":\"center\",\"vertical\":\"center\",\"infinity\":false,\"maxItems\":\"3\",\"maxRotation\":\"0\",\"paddingTop\":\"0\",\"paddingBottom\":\"0\",\"rotation\":false,\"scaleDown\":50,\"space\":\"0\",\"speed\":\"800\",\"stretch\":false,\"varyFade\":false,\"varyRotate\":false,\"varyScale\":false,\"showAllLayers\":false},\"hero\":{\"activeSlide\":\"-1\"},\"layout\":{\"bg\":{\"color\":\"transparent\",\"padding\":\"0\",\"dottedOverlay\":\"none\",\"shadow\":\"0\",\"useImage\":false,\"image\":\"http:\\/\\/iacademy.mikado-themes.com\\/wp-content\\/uploads\\/2017\\/06\\/h1-slide-1-background.jpg\",\"fit\":\"cover\",\"position\":\"center center\",\"repeat\":\"no-repeat\"},\"spinner\":{\"color\":\"#FFFFFF\",\"type\":\"-1\"},\"position\":{\"marginTop\":\"0\",\"marginBottom\":\"0\",\"marginLeft\":\"0\",\"marginRight\":\"0\",\"align\":\"center\"}},\"visibility\":{\"hideSelectedLayersUnderLimit\":\"0\",\"hideAllLayersUnderLimit\":\"0\",\"hideSliderUnderLimit\":\"0\"},\"general\":{\"slideshow\":{\"stopOnHover\":false,\"stopSlider\":false,\"stopAfterLoops\":\"0\",\"stopAtSlide\":\"2\",\"shuffle\":false,\"loopSingle\":false,\"viewPort\":true,\"viewPortStart\":\"wait\",\"viewPortArea\":\"20%\",\"presetSliderHeight\":false,\"initDelay\":\"0\",\"waitForInit\":false,\"slideShow\":true},\"progressbar\":{\"set\":false,\"height\":\"5\",\"position\":\"top\",\"color\":\"rgba(0,0,0,0.15)\"},\"firstSlide\":{\"set\":true,\"duration\":\"300\",\"slotAmount\":\"7\",\"type\":\"fade\",\"alternativeFirstSlideSet\":true,\"alternativeFirstSlide\":\"1\"},\"layerSelection\":false,\"lazyLoad\":\"none\",\"nextSlideOnFocus\":false,\"disableFocusListener\":false,\"disableOnMobile\":false,\"autoPlayVideoOnMobile\":true,\"disablePanZoomMobile\":false,\"useWPML\":false},\"nav\":{\"preview\":{\"width\":\"100\",\"height\":\"50\"},\"swipe\":{\"set\":false,\"setOnDesktop\":false,\"blockDragVertical\":false,\"direction\":\"horizontal\",\"minTouch\":\"1\",\"velocity\":\"75\"},\"keyboard\":{\"set\":false,\"direction\":\"horizontal\"},\"mouse\":{\"set\":false,\"reverse\":\"default\"},\"arrows\":{\"set\":false,\"rtl\":false,\"style\":1,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":true,\"hideUnderLimit\":\"1260\",\"left\":{\"horizontal\":\"left\",\"vertical\":\"center\",\"offsetX\":\"20\",\"offsetY\":\"69\",\"align\":\"slider\"},\"right\":{\"horizontal\":\"right\",\"vertical\":\"center\",\"offsetX\":\"20\",\"offsetY\":\"69\",\"align\":\"slider\"}},\"thumbs\":{\"set\":false,\"rtl\":false,\"style\":2000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":\"5\",\"direction\":\"horizontal\",\"height\":\"50\",\"width\":\"100\",\"widthMin\":\"100\",\"innerOuter\":\"inner\",\"offsetX\":\"0\",\"offsetY\":\"20\",\"space\":\"5\",\"align\":\"slider\",\"padding\":\"5\",\"wrapperColor\":\"transparent\"},\"tabs\":{\"set\":false,\"rtl\":false,\"style\":4000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":\"5\",\"direction\":\"horizontal\",\"height\":\"50\",\"width\":\"100\",\"widthMin\":\"100\",\"innerOuter\":\"inner\",\"offsetX\":\"0\",\"offsetY\":\"20\",\"space\":\"5\",\"align\":\"slider\",\"padding\":\"5\",\"wrapperColor\":\"transparent\"},\"bullets\":{\"set\":false,\"rtl\":false,\"style\":2,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"direction\":\"horizontal\",\"offsetX\":\"0\",\"offsetY\":\"20\",\"align\":\"slider\",\"space\":\"5\",\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":true,\"hideOverLimit\":\"1260\",\"hideUnder\":false,\"hideUnderLimit\":\"0\"}},\"troubleshooting\":{\"ignoreHeightChanges\":false,\"ignoreHeightChangesUnderLimit\":\"0\",\"alternateImageType\":\"off\",\"alternateURL\":\"\",\"alternateURLId\":false,\"jsNoConflict\":false,\"jsInBody\":false,\"outPutFilter\":\"none\",\"debugMode\":false,\"simplify_ie8_ios4\":false},\"parallax\":{\"set\":true,\"setDDD\":false,\"disableOnMobile\":false,\"levels\":[\"5\",\"10\",\"15\",\"20\",\"25\",\"30\",\"35\",\"40\",\"45\",\"46\",\"47\",\"48\",\"49\",\"50\",\"51\",\"55\"],\"ddd\":{\"BGFreeze\":false,\"layerOverflow\":false,\"overflow\":false,\"shadow\":false,\"zCorrection\":\"65\"},\"mouse\":{\"speed\":\"400\",\"bgSpeed\":0,\"layersSpeed\":0,\"origo\":\"enterpoint\",\"type\":\"mouse\"}},\"scrolleffects\":{\"set\":false,\"setBlur\":false,\"setFade\":false,\"setGrayScale\":false,\"bg\":false,\"direction\":\"both\",\"maxBlur\":\"10\",\"multiplicator\":\"1.3\",\"multiplicatorLayers\":\"1.3\",\"disableOnMobile\":true,\"tilt\":\"30\",\"layers\":false},\"version\":\"6.4.10\"}','{\"version\":\"6.4.10\"}',''),(12,'Landing 3','landing-3','{\"id\":\"\",\"shortcode\":\"[rev_slider alias=\\\\\\\"landing-3\\\\\\\"]\",\"layouttype\":\"fullwidth\",\"type\":\"standard\",\"sourcetype\":\"gallery\",\"googleFont\":[],\"addOns\":[],\"source\":{\"gallery\":[],\"post\":{\"excerptLimit\":\"55\",\"maxPosts\":\"30\",\"fetchType\":\"cat_tag\",\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"post\",\"list\":\"\",\"sortDirection\":\"DESC\",\"subType\":\"post\"},\"woo\":{\"excerptLimit\":\"55\",\"maxProducts\":\"30\",\"featuredOnly\":false,\"inStockOnly\":false,\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"product\",\"sortDirection\":\"DESC\",\"regPriceFrom\":\"\",\"regPriceTo\":\"\",\"salePriceFrom\":\"\",\"salePriceTo\":\"\"},\"instagram\":{\"count\":\"\",\"hashTag\":\"\",\"transient\":\"1200\",\"type\":\"user\",\"userId\":\"\"},\"facebook\":{\"album\":\"\",\"appId\":\"\",\"appSecret\":\"\",\"count\":\"\",\"transient\":\"1200\",\"typeSource\":\"album\"},\"flickr\":{\"apiKey\":\"\",\"count\":\"\",\"galleryURL\":\"\",\"groupURL\":\"\",\"photoSet\":\"\",\"transient\":\"1200\",\"type\":\"publicphotos\",\"userURL\":\"\"},\"twitter\":{\"accessSecret\":\"\",\"accessToken\":\"\",\"consumerKey\":\"\",\"consumerSecret\":\"\",\"count\":\"\",\"excludeReplies\":false,\"imageOnly\":false,\"includeRetweets\":false,\"transient\":\"1200\",\"userId\":\"\"},\"vimeo\":{\"albumId\":\"\",\"channelName\":\"\",\"count\":\"\",\"transient\":\"1200\",\"groupName\":\"\",\"typeSource\":\"user\",\"userName\":\"\"},\"youtube\":{\"api\":\"\",\"channelId\":\"\",\"count\":\"\",\"playList\":\"\",\"transient\":\"1200\",\"typeSource\":\"channel\"}},\"def\":{\"transition\":\"fade\",\"transitionDuration\":\"300\",\"delay\":\"4000\",\"background\":{\"fit\":\"cover\",\"fitX\":\"100\",\"fitY\":\"100\",\"position\":\"center center\",\"positionX\":\"0\",\"positionY\":\"0\",\"repeat\":\"no-repeat\",\"imageSourceType\":\"full\"},\"panZoom\":{\"set\":false,\"blurStart\":\"0\",\"blurEnd\":\"0\",\"duration\":\"\",\"ease\":\"none\",\"fitEnd\":\"100\",\"fitStart\":\"100\",\"xEnd\":\"0\",\"yEnd\":\"0\",\"xStart\":\"0\",\"yStart\":\"0\",\"rotateStart\":\"0\",\"rotateEnd\":\"0\"}},\"size\":{\"respectAspectRatio\":false,\"disableForceFullWidth\":false,\"gridEQModule\":false,\"custom\":{\"d\":true,\"n\":true,\"t\":true,\"m\":true},\"minHeightFullScreen\":\"\",\"minHeight\":\"\",\"fullScreenOffsetContainer\":\"\",\"fullScreenOffset\":\"\",\"width\":{\"d\":1300,\"n\":800,\"t\":600,\"m\":320},\"height\":{\"d\":650,\"n\":570,\"t\":550,\"m\":560},\"overflow\":false,\"maxWidth\":\"\"},\"codes\":{\"css\":\"\",\"javascript\":\"\"},\"carousel\":{\"borderRadius\":\"0\",\"borderRadiusUnit\":\"px\",\"ease\":\"power3.inOut\",\"fadeOut\":true,\"scale\":false,\"horizontal\":\"center\",\"vertical\":\"center\",\"infinity\":false,\"maxItems\":\"3\",\"maxRotation\":\"0\",\"paddingTop\":\"0\",\"paddingBottom\":\"0\",\"rotation\":false,\"scaleDown\":50,\"space\":\"0\",\"speed\":\"800\",\"stretch\":false,\"varyFade\":false,\"varyRotate\":false,\"varyScale\":false,\"showAllLayers\":false},\"hero\":{\"activeSlide\":\"-1\"},\"layout\":{\"bg\":{\"color\":\"transparent\",\"padding\":\"0\",\"dottedOverlay\":\"none\",\"shadow\":\"0\",\"useImage\":false,\"image\":\"http:\\/\\/iacademy.mikado-themes.com\\/wp-content\\/uploads\\/2017\\/06\\/h1-slide-1-background.jpg\",\"fit\":\"cover\",\"position\":\"center center\",\"repeat\":\"no-repeat\"},\"spinner\":{\"color\":\"#FFFFFF\",\"type\":\"-1\"},\"position\":{\"marginTop\":\"0\",\"marginBottom\":\"0\",\"marginLeft\":\"0\",\"marginRight\":\"0\",\"align\":\"center\"}},\"visibility\":{\"hideSelectedLayersUnderLimit\":\"0\",\"hideAllLayersUnderLimit\":\"0\",\"hideSliderUnderLimit\":\"0\"},\"general\":{\"slideshow\":{\"stopOnHover\":false,\"stopSlider\":false,\"stopAfterLoops\":\"0\",\"stopAtSlide\":\"2\",\"shuffle\":false,\"loopSingle\":false,\"viewPort\":true,\"viewPortStart\":\"wait\",\"viewPortArea\":\"20%\",\"presetSliderHeight\":false,\"initDelay\":\"0\",\"waitForInit\":false,\"slideShow\":true},\"progressbar\":{\"set\":false,\"height\":\"5\",\"position\":\"top\",\"color\":\"rgba(0,0,0,0.15)\"},\"firstSlide\":{\"set\":true,\"duration\":\"300\",\"slotAmount\":\"7\",\"type\":\"fade\",\"alternativeFirstSlideSet\":true,\"alternativeFirstSlide\":\"1\"},\"layerSelection\":false,\"lazyLoad\":\"none\",\"nextSlideOnFocus\":false,\"disableFocusListener\":false,\"disableOnMobile\":false,\"autoPlayVideoOnMobile\":true,\"disablePanZoomMobile\":false,\"useWPML\":false},\"nav\":{\"preview\":{\"width\":\"100\",\"height\":\"50\"},\"swipe\":{\"set\":false,\"setOnDesktop\":false,\"blockDragVertical\":false,\"direction\":\"horizontal\",\"minTouch\":\"1\",\"velocity\":\"75\"},\"keyboard\":{\"set\":false,\"direction\":\"horizontal\"},\"mouse\":{\"set\":false,\"reverse\":\"default\"},\"arrows\":{\"set\":false,\"rtl\":false,\"style\":1,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":true,\"hideUnderLimit\":\"1260\",\"left\":{\"horizontal\":\"left\",\"vertical\":\"center\",\"offsetX\":\"20\",\"offsetY\":\"69\",\"align\":\"slider\"},\"right\":{\"horizontal\":\"right\",\"vertical\":\"center\",\"offsetX\":\"20\",\"offsetY\":\"69\",\"align\":\"slider\"}},\"thumbs\":{\"set\":false,\"rtl\":false,\"style\":2000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":\"5\",\"direction\":\"horizontal\",\"height\":\"50\",\"width\":\"100\",\"widthMin\":\"100\",\"innerOuter\":\"inner\",\"offsetX\":\"0\",\"offsetY\":\"20\",\"space\":\"5\",\"align\":\"slider\",\"padding\":\"5\",\"wrapperColor\":\"transparent\"},\"tabs\":{\"set\":false,\"rtl\":false,\"style\":4000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":\"5\",\"direction\":\"horizontal\",\"height\":\"50\",\"width\":\"100\",\"widthMin\":\"100\",\"innerOuter\":\"inner\",\"offsetX\":\"0\",\"offsetY\":\"20\",\"space\":\"5\",\"align\":\"slider\",\"padding\":\"5\",\"wrapperColor\":\"transparent\"},\"bullets\":{\"set\":false,\"rtl\":false,\"style\":2,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"direction\":\"horizontal\",\"offsetX\":\"0\",\"offsetY\":\"20\",\"align\":\"slider\",\"space\":\"5\",\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":true,\"hideOverLimit\":\"1260\",\"hideUnder\":false,\"hideUnderLimit\":\"0\"}},\"troubleshooting\":{\"ignoreHeightChanges\":false,\"ignoreHeightChangesUnderLimit\":\"0\",\"alternateImageType\":\"off\",\"alternateURL\":\"\",\"alternateURLId\":false,\"jsNoConflict\":false,\"jsInBody\":false,\"outPutFilter\":\"none\",\"debugMode\":false,\"simplify_ie8_ios4\":false},\"parallax\":{\"set\":true,\"setDDD\":false,\"disableOnMobile\":false,\"levels\":[\"5\",\"10\",\"15\",\"20\",\"25\",\"30\",\"35\",\"40\",\"45\",\"46\",\"47\",\"48\",\"49\",\"50\",\"51\",\"55\"],\"ddd\":{\"BGFreeze\":false,\"layerOverflow\":false,\"overflow\":false,\"shadow\":false,\"zCorrection\":\"65\"},\"mouse\":{\"speed\":\"400\",\"bgSpeed\":0,\"layersSpeed\":0,\"origo\":\"enterpoint\",\"type\":\"mouse\"}},\"scrolleffects\":{\"set\":false,\"setBlur\":false,\"setFade\":false,\"setGrayScale\":false,\"bg\":false,\"direction\":\"both\",\"maxBlur\":\"10\",\"multiplicator\":\"1.3\",\"multiplicatorLayers\":\"1.3\",\"disableOnMobile\":true,\"tilt\":\"30\",\"layers\":false},\"version\":\"6.4.10\"}','{\"version\":\"6.4.10\"}','');
/*!40000 ALTER TABLE `wp_revslider_sliders` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_revslider_sliders_bkp`
--

DROP TABLE IF EXISTS `wp_revslider_sliders_bkp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_revslider_sliders_bkp` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `title` tinytext NOT NULL,
  `alias` tinytext DEFAULT NULL,
  `params` longtext NOT NULL,
  `settings` text DEFAULT NULL,
  `type` varchar(191) NOT NULL DEFAULT '',
  UNIQUE KEY `id` (`id`),
  KEY `type_index` (`type`(8))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_revslider_sliders_bkp`
--

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

--
-- Table structure for table `wp_revslider_slides`
--

DROP TABLE IF EXISTS `wp_revslider_slides`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_revslider_slides` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `slider_id` int(9) NOT NULL,
  `slide_order` int(11) NOT NULL,
  `params` longtext NOT NULL,
  `layers` longtext NOT NULL,
  `settings` text NOT NULL DEFAULT '',
  UNIQUE KEY `id` (`id`),
  KEY `slider_id_index` (`slider_id`)
) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_revslider_slides`
--

LOCK TABLES `wp_revslider_slides` WRITE;
/*!40000 ALTER TABLE `wp_revslider_slides` DISABLE KEYS */;
INSERT INTO `wp_revslider_slides` VALUES (1,1,1,'{\"title\":\"Slide\",\"bg\":{\"type\":\"image\",\"color\":\"#E7E7E7\",\"image\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/uploads\\/2017\\/06\\/h1-slide-1-background.jpg\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"volume\":\"\"}},\"thumb\":{\"dimension\":\"slider\"},\"timeline\":{\"slots\":[\"default\"],\"duration\":[600]},\"effects\":{\"parallax\":\"8\"},\"panzoom\":{\"ease\":\"none\"},\"version\":\"6.4.0\"}','{\"1\":{\"text\":\"Prepare for the Future\",\"alias\":\"Prepare for the Futu...\",\"uid\":1,\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"300px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"39px\",\"e\":true},\"n\":{\"v\":\"39px\",\"e\":true},\"t\":{\"v\":\"21px\",\"e\":true},\"m\":{\"v\":\"25px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":5,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":5,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":400},{\"id\":\"frame_999\",\"start\":4000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":400,\"startRelative\":400},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":400,\"startRelative\":400},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":4000,\"startRelative\":3100,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0px\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0px\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0px\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0px\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"10px\",\"30px\",\"17px\",\"30px\"],\"e\":true},\"n\":{\"v\":[\"6px\",\"26px\",\"13px\",\"26px\"],\"e\":true},\"t\":{\"v\":[\"6px\",\"25px\",\"13px\",\"25px\"],\"e\":true},\"m\":{\"v\":[\"8px\",\"0px\",\"15px\",\"0px\"],\"e\":true}},\"fontFamily\":\"Merriweather\",\"fontSize\":{\"d\":{\"v\":\"58px\",\"e\":true},\"n\":{\"v\":\"50px\",\"e\":true},\"t\":{\"v\":\"49px\",\"e\":true},\"m\":{\"v\":\"45px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"68px\",\"e\":true},\"n\":{\"v\":\"68px\",\"e\":true},\"t\":{\"v\":\"68px\",\"e\":true},\"m\":{\"v\":\"60px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"backgroundColor\":\"#d8a64e\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"},\"2\":{\"text\":\"Educate. Being Smart is Great.\",\"alias\":\"Lorem ipsum dolor si...\",\"uid\":2,\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"300px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"117px\",\"e\":true},\"n\":{\"v\":\"112px\",\"e\":true},\"t\":{\"v\":\"94px\",\"e\":true},\"m\":{\"v\":\"121px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":6,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":6,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":700},{\"id\":\"frame_999\",\"start\":4000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":700,\"startRelative\":700},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":700,\"startRelative\":700},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":4000,\"startRelative\":2800,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"10px\",\"25px\",\"15px\",\"25px\"],\"e\":true},\"n\":{\"v\":[\"9px\",\"24px\",\"14px\",\"24px\"],\"e\":true},\"t\":{\"v\":[\"9px\",\"24px\",\"14px\",\"24px\"],\"e\":true},\"m\":{\"v\":[\"9px\",\"0px\",\"12px\",\"0px\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"22px\",\"e\":true},\"n\":{\"v\":\"20px\",\"e\":true},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"18px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"37px\",\"e\":true},\"n\":{\"v\":\"37px\",\"e\":true},\"t\":{\"v\":\"37px\",\"e\":true},\"m\":{\"v\":\"28px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"backgroundColor\":\"#ffd740\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"}}','{\"0\":\"\",\"version\":\"6.4.0\"}'),(2,1,2,'{\"title\":\"Slide\",\"bg\":{\"type\":\"image\",\"color\":\"#E7E7E7\",\"image\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/uploads\\/2017\\/06\\/h1-slide-2-background.jpg\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"volume\":\"\"}},\"thumb\":{\"dimension\":\"slider\"},\"timeline\":{\"slots\":[\"default\"],\"duration\":[600]},\"panzoom\":{\"ease\":\"none\"},\"version\":\"6.4.0\"}','{\"1\":{\"text\":\"Leaders in Learning\",\"alias\":\"Title\",\"uid\":1,\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"595px\",\"e\":true},\"m\":{\"v\":\"320px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"-3px\",\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-40px\",\"e\":true},\"n\":{\"v\":\"-32px\",\"e\":true},\"t\":{\"v\":\"-55px\",\"e\":true},\"m\":{\"v\":\"-60px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":5,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":5,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":400},{\"id\":\"frame_999\",\"start\":4000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":400,\"startRelative\":400},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":400,\"startRelative\":400},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":4000,\"startRelative\":3100,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"fontFamily\":\"Merriweather\",\"fontSize\":{\"d\":{\"v\":\"90px\",\"e\":true},\"n\":{\"v\":\"78px\",\"e\":true},\"t\":{\"v\":\"78px\",\"e\":true},\"m\":{\"v\":\"45px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"96px\",\"e\":true},\"n\":{\"v\":\"96px\",\"e\":true},\"t\":{\"v\":\"88px\",\"e\":true},\"m\":{\"v\":\"60px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"normal\",\"e\":true},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"},\"3\":{\"text\":\"Empowering children to reach their potential.\",\"alias\":\"Empowering children ...\",\"uid\":3,\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"290px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"47px\",\"e\":true},\"n\":{\"v\":\"42px\",\"e\":true},\"t\":{\"v\":\"64px\",\"e\":true},\"m\":{\"v\":\"45px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":6,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":6,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":700},{\"id\":\"frame_999\",\"start\":4000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":700,\"startRelative\":700},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":700,\"startRelative\":700},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":4000,\"startRelative\":2800,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"24px\",\"e\":true},\"n\":{\"v\":\"22px\",\"e\":true},\"t\":{\"v\":\"22px\",\"e\":true},\"m\":{\"v\":\"18px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"34px\",\"e\":true},\"n\":{\"v\":\"34px\",\"e\":true},\"t\":{\"v\":\"34px\",\"e\":true},\"m\":{\"v\":\"28px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"},\"4\":{\"text\":\"[mkdf_video_button video_link=\\\"https:\\/\\/vimeo.com\\/157562616\\\"]\",\"alias\":\"[mkdf_video_button v...\",\"uid\":4,\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"-47px\",\"e\":true},\"n\":{\"v\":\"-46px\",\"e\":true},\"t\":{\"v\":\"-46px\",\"e\":true},\"m\":{\"v\":\"-46px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"152px\",\"e\":true},\"n\":{\"v\":\"141px\",\"e\":true},\"t\":{\"v\":\"163px\",\"e\":true},\"m\":{\"v\":\"151px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":7,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":7,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1000},{\"id\":\"frame_999\",\"start\":4000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":1000,\"startRelative\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":1000,\"startRelative\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":4000,\"startRelative\":2500,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\",\"e\":true},\"t\":{\"v\":\"22\",\"e\":true},\"m\":{\"v\":\"22\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"}}','{\"0\":\"\",\"version\":\"6.4.0\"}'),(3,1,3,'{\"title\":\"Slide\",\"bg\":{\"type\":\"image\",\"color\":\"#E7E7E7\",\"image\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/uploads\\/2017\\/06\\/h1-slide-3-background.jpg\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"volume\":\"\"}},\"thumb\":{\"dimension\":\"slider\"},\"timeline\":{\"slots\":[\"default\"],\"duration\":[600]},\"effects\":{\"parallax\":\"8\"},\"panzoom\":{\"ease\":\"none\"},\"version\":\"6.4.0\"}','{\"1\":{\"text\":\"Start Your Classes Now\",\"alias\":\"Prepare for the Futu...\",\"uid\":1,\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"300px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"39px\",\"e\":true},\"n\":{\"v\":\"39px\",\"e\":true},\"t\":{\"v\":\"21px\",\"e\":true},\"m\":{\"v\":\"25px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":5,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":5,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":400},{\"id\":\"frame_999\",\"start\":4000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":400,\"startRelative\":400},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":400,\"startRelative\":400},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":4000,\"startRelative\":3100,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0px\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0px\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0px\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0px\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"10px\",\"30px\",\"17px\",\"30px\"],\"e\":true},\"n\":{\"v\":[\"6px\",\"26px\",\"13px\",\"26px\"],\"e\":true},\"t\":{\"v\":[\"6px\",\"25px\",\"13px\",\"25px\"],\"e\":true},\"m\":{\"v\":[\"8px\",\"0px\",\"15px\",\"0px\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Merriweather\",\"fontSize\":{\"d\":{\"v\":\"58px\",\"e\":true},\"n\":{\"v\":\"50px\",\"e\":true},\"t\":{\"v\":\"49px\",\"e\":true},\"m\":{\"v\":\"45px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"68px\",\"e\":true},\"n\":{\"v\":\"68px\",\"e\":true},\"t\":{\"v\":\"68px\",\"e\":true},\"m\":{\"v\":\"60px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"backgroundColor\":\"#d8a64e\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"},\"2\":{\"text\":\"Extend Your Knowledgebase.\",\"alias\":\"Lorem ipsum dolor si...\",\"uid\":2,\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"300px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"117px\",\"e\":true},\"n\":{\"v\":\"112px\",\"e\":true},\"t\":{\"v\":\"94px\",\"e\":true},\"m\":{\"v\":\"121px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":6,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":6,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":700},{\"id\":\"frame_999\",\"start\":4000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":700,\"startRelative\":700},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":700,\"startRelative\":700},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":4000,\"startRelative\":2800,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"10px\",\"25px\",\"15px\",\"25px\"],\"e\":true},\"n\":{\"v\":[\"9px\",\"24px\",\"14px\",\"24px\"],\"e\":true},\"t\":{\"v\":[\"9px\",\"24px\",\"14px\",\"24px\"],\"e\":true},\"m\":{\"v\":[\"9px\",\"0px\",\"12px\",\"0px\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"22px\",\"e\":true},\"n\":{\"v\":\"20px\",\"e\":true},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"18px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"37px\",\"e\":true},\"n\":{\"v\":\"37px\",\"e\":true},\"t\":{\"v\":\"37px\",\"e\":true},\"m\":{\"v\":\"28px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"backgroundColor\":\"#ffd740\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"}}','{\"0\":\"\",\"version\":\"6.4.0\"}'),(4,2,1,'{\"title\":\"Slide\",\"bg\":{\"type\":\"image\",\"color\":\"#E7E7E7\",\"image\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/uploads\\/2017\\/06\\/h3-slide-1-background.jpg\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"volume\":\"\"}},\"thumb\":{\"dimension\":\"slider\"},\"timeline\":{\"slots\":[\"default\"],\"duration\":[600]},\"effects\":{\"parallax\":\"8\"},\"panzoom\":{\"ease\":\"none\"},\"version\":\"6.4.0\"}','{\"1\":{\"text\":\"Home Learning\",\"alias\":\"Title\",\"uid\":1,\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"284px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-64px\",\"e\":true},\"n\":{\"v\":\"-63px\",\"e\":true},\"t\":{\"v\":\"-38px\",\"e\":true},\"m\":{\"v\":\"-38px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":5,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":5,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":400},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":400,\"startRelative\":400},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":400,\"startRelative\":400},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":4100,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Merriweather\",\"fontSize\":{\"d\":{\"v\":\"73px\",\"e\":true},\"n\":{\"v\":\"63px\",\"e\":true},\"t\":{\"v\":\"63px\",\"e\":true},\"m\":{\"v\":\"45px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"85px\",\"e\":true},\"n\":{\"v\":\"85px\",\"e\":true},\"t\":{\"v\":\"85px\",\"e\":true},\"m\":{\"v\":\"60px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"},\"2\":{\"text\":\"Classes That Fit Your Schedule.\",\"alias\":\"Subtitle\",\"uid\":2,\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"290px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"7px\",\"e\":true},\"n\":{\"v\":\"4px\",\"e\":true},\"t\":{\"v\":\"28px\",\"e\":true},\"m\":{\"v\":\"51px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":6,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":6,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":700},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":700,\"startRelative\":700},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":700,\"startRelative\":700},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3800,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"24px\",\"e\":true},\"n\":{\"v\":\"22px\",\"e\":true},\"t\":{\"v\":\"22px\",\"e\":true},\"m\":{\"v\":\"18px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"34px\",\"e\":true},\"n\":{\"v\":\"34px\",\"e\":true},\"t\":{\"v\":\"34px\",\"e\":true},\"m\":{\"v\":\"28px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"}}','{\"0\":\"\",\"version\":\"6.4.0\"}'),(5,2,2,'{\"title\":\"Slide\",\"bg\":{\"type\":\"image\",\"color\":\"#E7E7E7\",\"image\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/uploads\\/2017\\/06\\/h3-slide-2-background.jpg\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"volume\":\"\"}},\"thumb\":{\"dimension\":\"slider\"},\"timeline\":{\"slots\":[\"default\"],\"duration\":[600]},\"effects\":{\"parallax\":\"8\"},\"panzoom\":{\"ease\":\"none\"},\"version\":\"6.4.0\"}','{\"1\":{\"text\":\"Strength in Unity.\",\"alias\":\"Title\",\"uid\":1,\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"284px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-64px\",\"e\":true},\"n\":{\"v\":\"-63px\",\"e\":true},\"t\":{\"v\":\"-38px\",\"e\":true},\"m\":{\"v\":\"-38px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":5,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":5,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":400},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":400,\"startRelative\":400},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":400,\"startRelative\":400},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":4100,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Merriweather\",\"fontSize\":{\"d\":{\"v\":\"73px\",\"e\":true},\"n\":{\"v\":\"63px\",\"e\":true},\"t\":{\"v\":\"63px\",\"e\":true},\"m\":{\"v\":\"45px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"85px\",\"e\":true},\"n\":{\"v\":\"85px\",\"e\":true},\"t\":{\"v\":\"85px\",\"e\":true},\"m\":{\"v\":\"60px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"},\"2\":{\"text\":\"Classes That Fit Your Schedule.\",\"alias\":\"Subtitle\",\"uid\":2,\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"290px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"7px\",\"e\":true},\"n\":{\"v\":\"4px\",\"e\":true},\"t\":{\"v\":\"28px\",\"e\":true},\"m\":{\"v\":\"51px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":6,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":6,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":700},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":700,\"startRelative\":700},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":700,\"startRelative\":700},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3800,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"24px\",\"e\":true},\"n\":{\"v\":\"22px\",\"e\":true},\"t\":{\"v\":\"22px\",\"e\":true},\"m\":{\"v\":\"18px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"34px\",\"e\":true},\"n\":{\"v\":\"34px\",\"e\":true},\"t\":{\"v\":\"34px\",\"e\":true},\"m\":{\"v\":\"28px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"}}','{\"0\":\"\",\"version\":\"6.4.0\"}'),(6,2,3,'{\"title\":\"Slide\",\"bg\":{\"type\":\"image\",\"color\":\"#E7E7E7\",\"image\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/uploads\\/2017\\/06\\/h3-slide-3-background.jpg\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"volume\":\"\"}},\"thumb\":{\"dimension\":\"slider\"},\"timeline\":{\"slots\":[\"default\"],\"duration\":[600]},\"effects\":{\"parallax\":\"8\"},\"panzoom\":{\"ease\":\"none\"},\"version\":\"6.4.0\"}','{\"1\":{\"text\":\"Together We Shine.\",\"alias\":\"Title\",\"uid\":1,\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"284px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-64px\",\"e\":true},\"n\":{\"v\":\"-63px\",\"e\":true},\"t\":{\"v\":\"-38px\",\"e\":true},\"m\":{\"v\":\"-38px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":5,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":5,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":400},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":400,\"startRelative\":400},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":400,\"startRelative\":400},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":4100,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Merriweather\",\"fontSize\":{\"d\":{\"v\":\"73px\",\"e\":true},\"n\":{\"v\":\"63px\",\"e\":true},\"t\":{\"v\":\"63px\",\"e\":true},\"m\":{\"v\":\"45px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"85px\",\"e\":true},\"n\":{\"v\":\"85px\",\"e\":true},\"t\":{\"v\":\"85px\",\"e\":true},\"m\":{\"v\":\"60px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"},\"2\":{\"text\":\"Classes That Fit Your Schedule.\",\"alias\":\"Subtitle\",\"uid\":2,\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"290px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"7px\",\"e\":true},\"n\":{\"v\":\"4px\",\"e\":true},\"t\":{\"v\":\"28px\",\"e\":true},\"m\":{\"v\":\"51px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":6,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":6,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":700},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":700,\"startRelative\":700},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":700,\"startRelative\":700},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3800,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"24px\",\"e\":true},\"n\":{\"v\":\"22px\",\"e\":true},\"t\":{\"v\":\"22px\",\"e\":true},\"m\":{\"v\":\"18px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"34px\",\"e\":true},\"n\":{\"v\":\"34px\",\"e\":true},\"t\":{\"v\":\"34px\",\"e\":true},\"m\":{\"v\":\"28px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"}}','{\"0\":\"\",\"version\":\"6.4.0\"}'),(7,3,1,'{\"title\":\"Slide\",\"bg\":{\"type\":\"image\",\"color\":\"#E7E7E7\",\"image\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/uploads\\/2017\\/06\\/h5-slide-1-background.jpg\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"volume\":\"\"}},\"thumb\":{\"dimension\":\"slider\"},\"timeline\":{\"slots\":[\"default\"],\"duration\":[600]},\"panzoom\":{\"ease\":\"none\"},\"version\":\"6.4.0\"}','{\"1\":{\"text\":\"Accelerate Your Career\",\"alias\":\"Title\",\"uid\":1,\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"662px\",\"e\":true},\"m\":{\"v\":\"284px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"145px\",\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-80px\",\"e\":true},\"n\":{\"v\":\"-80px\",\"e\":true},\"t\":{\"v\":\"-73px\",\"e\":true},\"m\":{\"v\":\"-70px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":5,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":5,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":400},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":400,\"startRelative\":400},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":400,\"startRelative\":400},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":4100,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"fontFamily\":\"Merriweather\",\"fontSize\":{\"d\":{\"v\":\"73px\",\"e\":true},\"n\":{\"v\":\"63px\",\"e\":true},\"t\":{\"v\":\"63px\",\"e\":true},\"m\":{\"v\":\"45px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"85px\",\"e\":true},\"n\":{\"v\":\"85px\",\"e\":true},\"t\":{\"v\":\"75px\",\"e\":true},\"m\":{\"v\":\"60px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"normal\",\"e\":true},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"},\"2\":{\"text\":\"Lorem Ipsn gravida nibh vel velit auctor aliquetnean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elited odio sit amet nibcursus a sit amet mauris. \",\"alias\":\"Subtitle\",\"uid\":2,\"size\":{\"width\":{\"d\":{\"v\":\"1000px\",\"e\":true},\"n\":{\"v\":\"837px\",\"e\":true},\"t\":{\"v\":\"601px\",\"e\":true},\"m\":{\"v\":\"306px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"v\":\"81px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"157px\",\"e\":true}},\"originalWidth\":\"1000px\"},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"v\":\"2px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"17px\",\"e\":true},\"n\":{\"v\":\"17px\",\"e\":true},\"t\":{\"v\":\"73px\",\"e\":true},\"m\":{\"v\":\"75px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":6,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":6,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":700},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":700,\"startRelative\":700},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":700,\"startRelative\":700},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3800,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"20px\",\"e\":true},\"t\":{\"v\":\"18px\",\"e\":true},\"m\":{\"v\":\"17px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"36px\",\"e\":true},\"n\":{\"v\":\"36px\",\"e\":true},\"t\":{\"v\":\"31px\",\"e\":true},\"m\":{\"v\":\"26px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"v\":\"normal\",\"e\":true},\"n\":{\"v\":\"normal\",\"e\":true},\"t\":{\"v\":\"normal\",\"e\":true},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"},\"3\":{\"text\":\"[mkdf_button size=\\\"medium\\\" text=\\\"Register Now\\\" target=\\\"_self\\\" icon_pack=\\\"\\\" font_weight=\\\"\\\" link=\\\"#\\\"]\",\"alias\":\"Button\",\"uid\":3,\"size\":{\"width\":{\"d\":{\"v\":\"1200px\",\"e\":true},\"n\":{\"v\":\"1200px\"},\"t\":{\"v\":\"1200px\",\"e\":true},\"m\":{\"v\":\"1200px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"1200px\"},\"position\":{\"x\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"121px\",\"e\":true},\"n\":{\"v\":\"121px\"},\"t\":{\"v\":\"190px\",\"e\":true},\"m\":{\"v\":\"180px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":7,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":7,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1000},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":1000,\"startRelative\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":1000,\"startRelative\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3500,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\",\"e\":true},\"m\":{\"v\":\"22\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"v\":\"normal\",\"e\":true},\"n\":{\"v\":\"normal\"},\"t\":{\"v\":\"normal\",\"e\":true},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"}}','{\"0\":\"\",\"version\":\"6.4.0\"}'),(8,3,2,'{\"title\":\"Slide\",\"bg\":{\"type\":\"image\",\"color\":\"#E7E7E7\",\"image\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/uploads\\/2017\\/06\\/h5-slide-2-background.jpg\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"volume\":\"\"}},\"thumb\":{\"dimension\":\"slider\"},\"timeline\":{\"slots\":[\"default\"],\"duration\":[600]},\"effects\":{\"parallax\":\"8\"},\"panzoom\":{\"ease\":\"none\"},\"version\":\"6.4.0\"}','{\"5\":{\"text\":\"Premium Education\",\"alias\":\"Title\",\"uid\":5,\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"595px\",\"e\":true},\"m\":{\"v\":\"320px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"-3px\",\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-93px\",\"e\":true},\"n\":{\"v\":\"-75px\",\"e\":true},\"t\":{\"v\":\"-55px\",\"e\":true},\"m\":{\"v\":\"-50px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":5,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":5,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":400},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":400,\"startRelative\":400},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":400,\"startRelative\":400},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":4100,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Merriweather\",\"fontSize\":{\"d\":{\"v\":\"90px\",\"e\":true},\"n\":{\"v\":\"78px\",\"e\":true},\"t\":{\"v\":\"78px\",\"e\":true},\"m\":{\"v\":\"45px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"96px\",\"e\":true},\"n\":{\"v\":\"96px\",\"e\":true},\"t\":{\"v\":\"88px\",\"e\":true},\"m\":{\"v\":\"60px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"normal\",\"e\":true},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"},\"6\":{\"text\":\"Lorem Ipsn gravida nibh vel velit auctor aliquetnean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elited odio sit amet nibcursus a sit amet mauris. \",\"alias\":\"Empowering children ...\",\"uid\":6,\"size\":{\"width\":{\"d\":{\"v\":\"1012px\",\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"290px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"83px\",\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"1012px\",\"originalHeight\":\"83px\"},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"14px\",\"e\":true},\"n\":{\"v\":\"-1px\",\"e\":true},\"t\":{\"v\":\"64px\",\"e\":true},\"m\":{\"v\":\"45px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":6,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":6,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":700},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":700,\"startRelative\":700},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":700,\"startRelative\":700},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3800,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"22px\",\"e\":true},\"t\":{\"v\":\"22px\",\"e\":true},\"m\":{\"v\":\"18px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"36px\",\"e\":true},\"n\":{\"v\":\"34px\",\"e\":true},\"t\":{\"v\":\"34px\",\"e\":true},\"m\":{\"v\":\"28px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"v\":\"normal\",\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"},\"7\":{\"text\":\"[mkdf_video_button video_link=\\\"https:\\/\\/vimeo.com\\/157562616\\\"]\",\"alias\":\"[mkdf_video_button v...\",\"uid\":7,\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"-47px\",\"e\":true},\"n\":{\"v\":\"-46px\",\"e\":true},\"t\":{\"v\":\"-46px\",\"e\":true},\"m\":{\"v\":\"-46px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"128px\",\"e\":true},\"n\":{\"v\":\"98px\",\"e\":true},\"t\":{\"v\":\"163px\",\"e\":true},\"m\":{\"v\":\"141px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":7,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":7,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1000},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":1000,\"startRelative\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":1000,\"startRelative\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3500,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\",\"e\":true},\"t\":{\"v\":\"22\",\"e\":true},\"m\":{\"v\":\"22\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"}}','{\"0\":\"\",\"version\":\"6.4.0\"}'),(9,3,3,'{\"title\":\"Slide\",\"bg\":{\"type\":\"image\",\"color\":\"#E7E7E7\",\"image\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/uploads\\/2017\\/06\\/h5-slide-3-background.jpg\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"volume\":\"\"}},\"thumb\":{\"dimension\":\"slider\"},\"timeline\":{\"slots\":[\"default\"],\"duration\":[600]},\"effects\":{\"parallax\":\"8\"},\"panzoom\":{\"ease\":\"none\"},\"version\":\"6.4.0\"}','{\"1\":{\"text\":\"Contemporary Ideas\",\"alias\":\"Title\",\"uid\":1,\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"600px\",\"e\":true},\"m\":{\"v\":\"284px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-80px\",\"e\":true},\"n\":{\"v\":\"-80px\",\"e\":true},\"t\":{\"v\":\"-73px\",\"e\":true},\"m\":{\"v\":\"-70px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":5,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":5,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":400},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":400,\"startRelative\":400},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":400,\"startRelative\":400},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":4100,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Merriweather\",\"fontSize\":{\"d\":{\"v\":\"73px\",\"e\":true},\"n\":{\"v\":\"63px\",\"e\":true},\"t\":{\"v\":\"63px\",\"e\":true},\"m\":{\"v\":\"45px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"85px\",\"e\":true},\"n\":{\"v\":\"85px\",\"e\":true},\"t\":{\"v\":\"75px\",\"e\":true},\"m\":{\"v\":\"60px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"normal\",\"e\":true},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"},\"2\":{\"text\":\"Lorem Ipsn gravida nibh vel velit auctor aliquetnean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elited odio sit amet nibcursus a sit amet mauris. \",\"alias\":\"Subtitle\",\"uid\":2,\"size\":{\"width\":{\"d\":{\"v\":\"1000px\",\"e\":true},\"n\":{\"v\":\"830px\",\"e\":true},\"t\":{\"v\":\"601px\",\"e\":true},\"m\":{\"v\":\"306px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"v\":\"82px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"157px\",\"e\":true}},\"originalWidth\":\"1000px\"},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"17px\",\"e\":true},\"n\":{\"v\":\"17px\",\"e\":true},\"t\":{\"v\":\"73px\",\"e\":true},\"m\":{\"v\":\"75px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":6,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":6,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":700},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":700,\"startRelative\":700},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":700,\"startRelative\":700},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3800,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"20px\",\"e\":true},\"t\":{\"v\":\"18px\",\"e\":true},\"m\":{\"v\":\"17px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"36px\",\"e\":true},\"n\":{\"v\":\"36px\",\"e\":true},\"t\":{\"v\":\"31px\",\"e\":true},\"m\":{\"v\":\"26px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"v\":\"normal\",\"e\":true},\"n\":{\"v\":\"normal\",\"e\":true},\"t\":{\"v\":\"normal\",\"e\":true},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"},\"3\":{\"text\":\"[mkdf_button size=\\\"medium\\\" text=\\\"Register Now\\\" target=\\\"_self\\\" icon_pack=\\\"\\\" font_weight=\\\"\\\" link=\\\"#\\\"]\",\"alias\":\"Button\",\"uid\":3,\"size\":{\"width\":{\"d\":{\"v\":\"1200px\",\"e\":true},\"n\":{\"v\":\"1200px\",\"e\":true},\"t\":{\"v\":\"1200px\",\"e\":true},\"m\":{\"v\":\"1200px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"1200px\"},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"121px\",\"e\":true},\"n\":{\"v\":\"121px\",\"e\":true},\"t\":{\"v\":\"190px\",\"e\":true},\"m\":{\"v\":\"180px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":7,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":7,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1000},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":1000,\"startRelative\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":1000,\"startRelative\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3500,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\",\"e\":true},\"t\":{\"v\":\"22\",\"e\":true},\"m\":{\"v\":\"22\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"v\":\"normal\",\"e\":true},\"n\":{\"v\":\"normal\",\"e\":true},\"t\":{\"v\":\"normal\",\"e\":true},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"}}','{\"0\":\"\",\"version\":\"6.4.0\"}'),(10,4,1,'{\"title\":\"Slide\",\"bg\":{\"type\":\"image\",\"color\":\"#E7E7E7\",\"position\":\"center top\",\"image\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/uploads\\/2017\\/06\\/h6-slide-1-background.jpg\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"volume\":\"\"}},\"thumb\":{\"dimension\":\"slider\"},\"timeline\":{\"slots\":[\"default\"],\"duration\":[600]},\"effects\":{\"parallax\":\"8\"},\"panzoom\":{\"ease\":\"none\"},\"version\":\"6.4.0\"}','{\"1\":{\"text\":\"Learning Meets Fun\",\"alias\":\"Title\",\"uid\":1,\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"595px\",\"e\":true},\"m\":{\"v\":\"320px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"-3px\",\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-40px\",\"e\":true},\"n\":{\"v\":\"-32px\",\"e\":true},\"t\":{\"v\":\"-100px\",\"e\":true},\"m\":{\"v\":\"-99px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":5,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":5,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":400},{\"id\":\"frame_999\",\"start\":4000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":400,\"startRelative\":400},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":400,\"startRelative\":400},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":4000,\"startRelative\":3100,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Merriweather\",\"fontSize\":{\"d\":{\"v\":\"90px\",\"e\":true},\"n\":{\"v\":\"78px\",\"e\":true},\"t\":{\"v\":\"78px\",\"e\":true},\"m\":{\"v\":\"45px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"96px\",\"e\":true},\"n\":{\"v\":\"96px\",\"e\":true},\"t\":{\"v\":\"88px\",\"e\":true},\"m\":{\"v\":\"60px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"normal\",\"e\":true},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"},\"3\":{\"text\":\"Lorem ipsum gravida nibh auctor aliquetnean.\\n\",\"alias\":\"Empowering children ...\",\"uid\":3,\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"260px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"53px\",\"e\":true}}},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"1px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"47px\",\"e\":true},\"n\":{\"v\":\"42px\",\"e\":true},\"t\":{\"v\":\"19px\",\"e\":true},\"m\":{\"v\":\"-6px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":6,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":6,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":700},{\"id\":\"frame_999\",\"start\":4000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":700,\"startRelative\":700},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":700,\"startRelative\":700},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":4000,\"startRelative\":2800,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"24px\",\"e\":true},\"n\":{\"v\":\"22px\",\"e\":true},\"t\":{\"v\":\"22px\",\"e\":true},\"m\":{\"v\":\"17px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"34px\",\"e\":true},\"n\":{\"v\":\"34px\",\"e\":true},\"t\":{\"v\":\"34px\",\"e\":true},\"m\":{\"v\":\"26px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"},\"4\":{\"text\":\"[mkdf_video_button video_link=\\\"https:\\/\\/vimeo.com\\/120996252\\\"]\",\"alias\":\"[mkdf_video_button v...\",\"uid\":4,\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"-47px\",\"e\":true},\"n\":{\"v\":\"-46px\",\"e\":true},\"t\":{\"v\":\"-46px\",\"e\":true},\"m\":{\"v\":\"-46px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"152px\",\"e\":true},\"n\":{\"v\":\"141px\",\"e\":true},\"t\":{\"v\":\"108px\",\"e\":true},\"m\":{\"v\":\"89px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":7,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":7,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1000},{\"id\":\"frame_999\",\"start\":4000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":1000,\"startRelative\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":1000,\"startRelative\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":4000,\"startRelative\":2500,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\",\"e\":true},\"t\":{\"v\":\"22\",\"e\":true},\"m\":{\"v\":\"22\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"}}','{\"0\":\"\",\"version\":\"6.4.0\"}'),(11,4,2,'{\"title\":\"Slide\",\"bg\":{\"type\":\"image\",\"color\":\"#E7E7E7\",\"position\":\"center top\",\"image\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/uploads\\/2017\\/06\\/h6-slide-2-background.jpg\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"volume\":\"\"}},\"thumb\":{\"dimension\":\"slider\"},\"timeline\":{\"slots\":[\"default\"],\"duration\":[600]},\"effects\":{\"parallax\":\"8\"},\"panzoom\":{\"ease\":\"none\"},\"version\":\"6.4.0\"}','{\"1\":{\"text\":\"Top-notch Programs\",\"alias\":\"Title\",\"uid\":1,\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"595px\",\"e\":true},\"m\":{\"v\":\"320px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"-3px\",\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-21px\",\"e\":true},\"n\":{\"v\":\"-14px\",\"e\":true},\"t\":{\"v\":\"-84px\",\"e\":true},\"m\":{\"v\":\"-79px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":5,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":5,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":400},{\"id\":\"frame_999\",\"start\":4000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":400,\"startRelative\":400},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":400,\"startRelative\":400},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":4000,\"startRelative\":3100,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Merriweather\",\"fontSize\":{\"d\":{\"v\":\"90px\",\"e\":true},\"n\":{\"v\":\"78px\",\"e\":true},\"t\":{\"v\":\"78px\",\"e\":true},\"m\":{\"v\":\"45px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"96px\",\"e\":true},\"n\":{\"v\":\"96px\",\"e\":true},\"t\":{\"v\":\"88px\",\"e\":true},\"m\":{\"v\":\"60px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"normal\",\"e\":true},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"},\"3\":{\"text\":\"Lorem ipsum gravida nibh auctor aliquetnean.\",\"alias\":\"Empowering children ...\",\"uid\":3,\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"260px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"53px\",\"e\":true}}},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"1px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"66px\",\"e\":true},\"n\":{\"v\":\"60px\",\"e\":true},\"t\":{\"v\":\"35px\",\"e\":true},\"m\":{\"v\":\"14px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":6,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":6,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":700},{\"id\":\"frame_999\",\"start\":4000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":700,\"startRelative\":700},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":700,\"startRelative\":700},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":4000,\"startRelative\":2800,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"24px\",\"e\":true},\"n\":{\"v\":\"22px\",\"e\":true},\"t\":{\"v\":\"22px\",\"e\":true},\"m\":{\"v\":\"17px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"34px\",\"e\":true},\"n\":{\"v\":\"34px\",\"e\":true},\"t\":{\"v\":\"34px\",\"e\":true},\"m\":{\"v\":\"26px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"},\"5\":{\"text\":\"[mkdf_button size=\\\"medium\\\" text=\\\"Register Now\\\" target=\\\"_self\\\" icon_pack=\\\"\\\" font_weight=\\\"\\\" link=\\\"#\\\"]\",\"alias\":\"Button\",\"uid\":5,\"size\":{\"width\":{\"d\":{\"v\":\"1200px\",\"e\":true},\"n\":{\"v\":\"1200px\",\"e\":true},\"t\":{\"v\":\"1200px\",\"e\":true},\"m\":{\"v\":\"1200px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"1200px\"},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"153px\",\"e\":true},\"n\":{\"v\":\"142px\",\"e\":true},\"t\":{\"v\":\"114px\",\"e\":true},\"m\":{\"v\":\"93px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":7,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":7,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1000},{\"id\":\"frame_999\",\"start\":4000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":1000,\"startRelative\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":1000,\"startRelative\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":4000,\"startRelative\":2500,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\",\"e\":true},\"t\":{\"v\":\"22\",\"e\":true},\"m\":{\"v\":\"22\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"v\":\"normal\",\"e\":true},\"n\":{\"v\":\"normal\",\"e\":true},\"t\":{\"v\":\"normal\",\"e\":true},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"}}','{\"0\":\"\",\"version\":\"6.4.0\"}'),(12,4,3,'{\"title\":\"Slide\",\"bg\":{\"type\":\"image\",\"color\":\"#E7E7E7\",\"image\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/uploads\\/2017\\/06\\/h6-slide-3-background.jpg\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"volume\":\"\"}},\"thumb\":{\"dimension\":\"slider\"},\"timeline\":{\"slots\":[\"default\"],\"duration\":[600]},\"effects\":{\"parallax\":\"8\"},\"panzoom\":{\"ease\":\"none\"},\"version\":\"6.4.0\"}','{\"1\":{\"text\":\"Extracurricular Activities\",\"alias\":\"Title\",\"uid\":1,\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"600px\",\"e\":true},\"m\":{\"v\":\"284px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-37px\",\"e\":true},\"n\":{\"v\":\"-39px\",\"e\":true},\"t\":{\"v\":\"-118px\",\"e\":true},\"m\":{\"v\":\"-119px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":5,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":5,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":400},{\"id\":\"frame_999\",\"start\":4000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":400,\"startRelative\":400},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":400,\"startRelative\":400},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":4000,\"startRelative\":3100,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Merriweather\",\"fontSize\":{\"d\":{\"v\":\"73px\",\"e\":true},\"n\":{\"v\":\"63px\",\"e\":true},\"t\":{\"v\":\"63px\",\"e\":true},\"m\":{\"v\":\"45px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"85px\",\"e\":true},\"n\":{\"v\":\"85px\",\"e\":true},\"t\":{\"v\":\"75px\",\"e\":true},\"m\":{\"v\":\"60px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"normal\",\"e\":true},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"},\"2\":{\"text\":\"Lorem Ipsn gravida nibh vel velit auctor aliquetnean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elited odio sit amet nibcursus a sit amet mauris. \",\"alias\":\"Subtitle\",\"uid\":2,\"size\":{\"width\":{\"d\":{\"v\":\"1000px\",\"e\":true},\"n\":{\"v\":\"900px\",\"e\":true},\"t\":{\"v\":\"601px\",\"e\":true},\"m\":{\"v\":\"306px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"157px\",\"e\":true}},\"originalWidth\":\"1000px\"},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"62px\",\"e\":true},\"n\":{\"v\":\"58px\",\"e\":true},\"t\":{\"v\":\"28px\",\"e\":true},\"m\":{\"v\":\"26px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":6,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":6,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":700},{\"id\":\"frame_999\",\"start\":4000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":700,\"startRelative\":700},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":700,\"startRelative\":700},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":4000,\"startRelative\":2800,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"20px\",\"e\":true},\"t\":{\"v\":\"18px\",\"e\":true},\"m\":{\"v\":\"17px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"36px\",\"e\":true},\"n\":{\"v\":\"36px\",\"e\":true},\"t\":{\"v\":\"31px\",\"e\":true},\"m\":{\"v\":\"26px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"v\":\"normal\",\"e\":true},\"n\":{\"v\":\"normal\",\"e\":true},\"t\":{\"v\":\"normal\",\"e\":true},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"},\"3\":{\"text\":\"[mkdf_button size=\\\"medium\\\" text=\\\"Register Now\\\" target=\\\"_self\\\" icon_pack=\\\"\\\" font_weight=\\\"\\\" link=\\\"#\\\"]\",\"alias\":\"Button\",\"uid\":3,\"size\":{\"width\":{\"d\":{\"v\":\"1200px\",\"e\":true},\"n\":{\"v\":\"1200px\",\"e\":true},\"t\":{\"v\":\"1200px\",\"e\":true},\"m\":{\"v\":\"1200px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"1200px\"},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"167px\",\"e\":true},\"n\":{\"v\":\"163px\",\"e\":true},\"t\":{\"v\":\"145px\",\"e\":true},\"m\":{\"v\":\"131px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":7,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":7,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1000},{\"id\":\"frame_999\",\"start\":4000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":1000,\"startRelative\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":1000,\"startRelative\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":4000,\"startRelative\":2500,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\",\"e\":true},\"t\":{\"v\":\"22\",\"e\":true},\"m\":{\"v\":\"22\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"v\":\"normal\",\"e\":true},\"n\":{\"v\":\"normal\",\"e\":true},\"t\":{\"v\":\"normal\",\"e\":true},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"}}','{\"0\":\"\",\"version\":\"6.4.0\"}'),(13,5,1,'{\"title\":\"Slide\",\"bg\":{\"type\":\"image\",\"color\":\"#E7E7E7\",\"image\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/uploads\\/revslider\\/h7-slide-1-background.jpg\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"volume\":\"\"}},\"thumb\":{\"dimension\":\"slider\"},\"timeline\":{\"slots\":[\"default\"],\"duration\":[600]},\"effects\":{\"parallax\":\"8\"},\"panzoom\":{\"ease\":\"none\"},\"version\":\"6.4.0\"}','[]','{\"0\":\"\",\"version\":\"6.4.0\"}'),(14,5,2,'{\"title\":\"Slide\",\"bg\":{\"type\":\"image\",\"color\":\"#E7E7E7\",\"image\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/uploads\\/2017\\/06\\/h7-slide-2-background.jpg\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"volume\":\"\"}},\"thumb\":{\"dimension\":\"slider\"},\"timeline\":{\"slots\":[\"default\"],\"duration\":[600]},\"panzoom\":{\"ease\":\"none\"},\"version\":\"6.4.0\"}','[]','{\"0\":\"\",\"version\":\"6.4.0\"}'),(15,5,3,'{\"title\":\"Slide\",\"bg\":{\"type\":\"image\",\"color\":\"#E7E7E7\",\"image\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/uploads\\/2017\\/06\\/h7-slide-3-background.jpg\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"volume\":\"\"}},\"thumb\":{\"dimension\":\"slider\"},\"timeline\":{\"slots\":[\"default\"],\"duration\":[600]},\"panzoom\":{\"ease\":\"none\"},\"version\":\"6.4.0\"}','[]','{\"0\":\"\",\"version\":\"6.4.0\"}'),(16,6,1,'{\"title\":\"Slide\",\"bg\":{\"type\":\"solid\",\"color\":\"#f8fbfd\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"volume\":\"\"}},\"thumb\":{\"dimension\":\"slider\"},\"timeline\":{\"slots\":[\"default\"],\"duration\":[600]},\"effects\":{\"parallax\":\"8\"},\"panzoom\":{\"ease\":\"none\"},\"version\":\"6.4.0\"}','{\"7\":{\"text\":\"Image 4\",\"alias\":\"Planet\",\"uid\":7,\"media\":{\"imageUrl\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/uploads\\/2017\\/06\\/h8-slide-1-img.png\",\"imageId\":1904},\"size\":{\"width\":{\"d\":{\"v\":\"614px\",\"e\":true},\"n\":{\"v\":\"514px\",\"e\":true},\"t\":{\"v\":\"415px\",\"e\":true},\"m\":{\"v\":\"281px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"777px\",\"e\":true},\"n\":{\"v\":\"650px\",\"e\":true},\"t\":{\"v\":\"525px\",\"e\":true},\"m\":{\"v\":\"355px\",\"e\":true}},\"originalWidth\":614,\"originalHeight\":777,\"aspectRatio\":{\"d\":{\"v\":0.7902187902187903},\"n\":{\"v\":0.7902187902187903},\"t\":{\"v\":0.7902187902187903},\"m\":{\"v\":0.7902187902187903}}},\"position\":{\"x\":{\"d\":{\"v\":\"300px\",\"e\":true},\"n\":{\"v\":\"320px\",\"e\":true},\"t\":{\"v\":\"218px\",\"e\":true},\"m\":{\"v\":\"97px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-90px\",\"e\":true},\"n\":{\"v\":\"-70px\",\"e\":true},\"t\":{\"v\":\"-21px\",\"e\":true},\"m\":{\"v\":\"-52px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\",\"e\":true},\"t\":{\"v\":\"bottom\",\"e\":true},\"m\":{\"v\":\"bottom\",\"e\":true}},\"zIndex\":5,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":5,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1200},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":1200,\"startRelative\":1200},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":1200,\"startRelative\":1200},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3300,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"fontFamily\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\",\"e\":true},\"t\":{\"v\":\"22\",\"e\":true},\"m\":{\"v\":\"22\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"v\":\"normal\",\"e\":true},\"n\":{\"v\":\"normal\",\"e\":true},\"t\":{\"v\":\"normal\",\"e\":true},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"image\",\"version\":\"6.4.0\"},\"3\":{\"text\":\"45 Years of Excellence in Education.\",\"alias\":\"45 Years of Excellen...\",\"uid\":3,\"size\":{\"width\":{\"d\":{\"v\":\"527px\",\"e\":true},\"n\":{\"v\":\"527px\",\"e\":true},\"t\":{\"v\":\"457px\",\"e\":true},\"m\":{\"v\":\"300px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"185px\",\"e\":true},\"n\":{\"v\":\"185px\",\"e\":true},\"t\":{\"v\":\"186px\",\"e\":true},\"m\":{\"v\":\"185px\",\"e\":true}},\"originalWidth\":\"527px\",\"originalHeight\":\"185px\"},\"position\":{\"x\":{\"d\":{\"v\":\"300px\",\"e\":true},\"n\":{\"v\":\"140px\",\"e\":true},\"t\":{\"v\":\"84px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-25px\",\"e\":true},\"n\":{\"v\":\"-25px\",\"e\":true},\"t\":{\"v\":\"-17px\",\"e\":true},\"m\":{\"v\":\"-10px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":6,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":6,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":300},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":300,\"startRelative\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":300,\"startRelative\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":4200,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"#282727\",\"e\":true},\"n\":{\"v\":\"#282727\",\"e\":true},\"t\":{\"v\":\"#282727\",\"e\":true},\"m\":{\"v\":\"#282727\",\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"fontFamily\":\"Merriweather\",\"fontSize\":{\"d\":{\"v\":\"45px\",\"e\":true},\"n\":{\"v\":\"45px\",\"e\":true},\"t\":{\"v\":\"37px\",\"e\":true},\"m\":{\"v\":\"24px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"900\",\"e\":true},\"n\":{\"v\":\"900\",\"e\":true},\"t\":{\"v\":\"900\",\"e\":true},\"m\":{\"v\":\"900\",\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"60px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"34px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"v\":\"normal\",\"e\":true},\"n\":{\"v\":\"normal\",\"e\":true},\"t\":{\"v\":\"normal\",\"e\":true},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"#282727\",\"e\":true},\"n\":{\"v\":\"#282727\",\"e\":true},\"t\":{\"v\":\"#282727\",\"e\":true},\"m\":{\"v\":\"#282727\",\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"},\"5\":{\"text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur in sapien a nulla porta tincidunt id eu eros. In volutpat sed nulla sed ullamcorper. Integer sed pretium.\",\"alias\":\"Lorem ipsum dolor si...\",\"uid\":5,\"size\":{\"width\":{\"d\":{\"v\":\"544px\",\"e\":true},\"n\":{\"v\":\"544px\",\"e\":true},\"t\":{\"v\":\"544px\",\"e\":true},\"m\":{\"v\":\"257px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"544px\"},\"position\":{\"x\":{\"d\":{\"v\":\"300px\",\"e\":true},\"n\":{\"v\":\"140px\",\"e\":true},\"t\":{\"v\":\"84px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"59px\",\"e\":true},\"n\":{\"v\":\"59px\",\"e\":true},\"t\":{\"v\":\"56px\",\"e\":true},\"m\":{\"v\":\"43px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":7,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":7,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":700},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":700,\"startRelative\":700},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":700,\"startRelative\":700},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3800,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"#595959\",\"e\":true},\"n\":{\"v\":\"#595959\",\"e\":true},\"t\":{\"v\":\"#595959\",\"e\":true},\"m\":{\"v\":\"#595959\",\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"17px\",\"e\":true},\"n\":{\"v\":\"17px\",\"e\":true},\"t\":{\"v\":\"17px\",\"e\":true},\"m\":{\"v\":\"15px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\",\"e\":true},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"26px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"v\":\"normal\",\"e\":true},\"n\":{\"v\":\"normal\",\"e\":true},\"t\":{\"v\":\"normal\",\"e\":true},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"#595959\",\"e\":true},\"n\":{\"v\":\"#595959\",\"e\":true},\"t\":{\"v\":\"#595959\",\"e\":true},\"m\":{\"v\":\"#595959\",\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"},\"6\":{\"text\":\"[mkdf_button size=\\\"medium\\\" text=\\\"Register Now\\\" target=\\\"_self\\\" icon_pack=\\\"\\\" font_weight=\\\"\\\" link=\\\"#\\\"]\",\"alias\":\"Button\",\"uid\":6,\"size\":{\"width\":{\"d\":{\"v\":\"1200px\",\"e\":true},\"n\":{\"v\":\"1200px\",\"e\":true},\"t\":{\"v\":\"1200px\",\"e\":true},\"m\":{\"v\":\"1200px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"1200px\"},\"position\":{\"x\":{\"d\":{\"v\":\"300px\",\"e\":true},\"n\":{\"v\":\"140px\",\"e\":true},\"t\":{\"v\":\"84px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"165px\",\"e\":true},\"n\":{\"v\":\"165px\",\"e\":true},\"t\":{\"v\":\"161px\",\"e\":true},\"m\":{\"v\":\"164px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":8,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":8,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1000},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":1000,\"startRelative\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":1000,\"startRelative\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3500,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\",\"e\":true},\"t\":{\"v\":\"22\",\"e\":true},\"m\":{\"v\":\"22\",\"e\":true}},\"textAlign\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"v\":\"normal\",\"e\":true},\"n\":{\"v\":\"normal\",\"e\":true},\"t\":{\"v\":\"normal\",\"e\":true},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"}}','{\"0\":\"\",\"version\":\"6.4.0\"}'),(17,6,2,'{\"title\":\"Slide\",\"bg\":{\"type\":\"image\",\"color\":\"#f8fbfd\",\"image\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/uploads\\/2017\\/06\\/h8-slide-2-background.jpg\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"volume\":\"\"}},\"thumb\":{\"dimension\":\"slider\"},\"timeline\":{\"slots\":[\"default\"],\"duration\":[600]},\"effects\":{\"parallax\":\"8\"},\"panzoom\":{\"ease\":\"none\"},\"version\":\"6.4.0\"}','{\"3\":{\"text\":\"Prestigious Educational Institution.\",\"alias\":\"45 Years of Excellen...\",\"uid\":3,\"size\":{\"width\":{\"d\":{\"v\":\"556px\",\"e\":true},\"n\":{\"v\":\"571px\",\"e\":true},\"t\":{\"v\":\"457px\",\"e\":true},\"m\":{\"v\":\"300px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"190px\",\"e\":true},\"n\":{\"v\":\"188px\",\"e\":true},\"t\":{\"v\":\"186px\",\"e\":true},\"m\":{\"v\":\"185px\",\"e\":true}},\"originalWidth\":\"556px\",\"originalHeight\":\"190px\"},\"position\":{\"x\":{\"d\":{\"v\":\"300px\",\"e\":true},\"n\":{\"v\":\"140px\",\"e\":true},\"t\":{\"v\":\"84px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-25px\",\"e\":true},\"n\":{\"v\":\"-25px\",\"e\":true},\"t\":{\"v\":\"-17px\",\"e\":true},\"m\":{\"v\":\"-10px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":5,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":5,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":300},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":300,\"startRelative\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":300,\"startRelative\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":4200,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"#282727\",\"e\":true},\"n\":{\"v\":\"#282727\",\"e\":true},\"t\":{\"v\":\"#282727\",\"e\":true},\"m\":{\"v\":\"#282727\",\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"fontFamily\":\"Merriweather\",\"fontSize\":{\"d\":{\"v\":\"45px\",\"e\":true},\"n\":{\"v\":\"45px\",\"e\":true},\"t\":{\"v\":\"37px\",\"e\":true},\"m\":{\"v\":\"24px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"900\",\"e\":true},\"n\":{\"v\":\"900\",\"e\":true},\"t\":{\"v\":\"900\",\"e\":true},\"m\":{\"v\":\"900\",\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"60px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"34px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"v\":\"normal\",\"e\":true},\"n\":{\"v\":\"normal\",\"e\":true},\"t\":{\"v\":\"normal\",\"e\":true},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"#282727\",\"e\":true},\"n\":{\"v\":\"#282727\",\"e\":true},\"t\":{\"v\":\"#282727\",\"e\":true},\"m\":{\"v\":\"#282727\",\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"},\"5\":{\"text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur in sapien a nulla porta tincidunt id eu eros. In volutpat sed nulla sed ullamcorper. Integer sed pretium.\",\"alias\":\"Lorem ipsum dolor si...\",\"uid\":5,\"size\":{\"width\":{\"d\":{\"v\":\"544px\",\"e\":true},\"n\":{\"v\":\"544px\",\"e\":true},\"t\":{\"v\":\"544px\",\"e\":true},\"m\":{\"v\":\"257px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"544px\"},\"position\":{\"x\":{\"d\":{\"v\":\"300px\",\"e\":true},\"n\":{\"v\":\"140px\",\"e\":true},\"t\":{\"v\":\"84px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"59px\",\"e\":true},\"n\":{\"v\":\"59px\",\"e\":true},\"t\":{\"v\":\"56px\",\"e\":true},\"m\":{\"v\":\"43px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":6,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":6,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":700},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":700,\"startRelative\":700},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":700,\"startRelative\":700},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3800,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"#595959\",\"e\":true},\"n\":{\"v\":\"#595959\",\"e\":true},\"t\":{\"v\":\"#595959\",\"e\":true},\"m\":{\"v\":\"#595959\",\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"17px\",\"e\":true},\"n\":{\"v\":\"17px\",\"e\":true},\"t\":{\"v\":\"17px\",\"e\":true},\"m\":{\"v\":\"15px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\",\"e\":true},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"26px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"v\":\"normal\",\"e\":true},\"n\":{\"v\":\"normal\",\"e\":true},\"t\":{\"v\":\"normal\",\"e\":true},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"#595959\",\"e\":true},\"n\":{\"v\":\"#595959\",\"e\":true},\"t\":{\"v\":\"#595959\",\"e\":true},\"m\":{\"v\":\"#595959\",\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"},\"6\":{\"text\":\"[mkdf_button size=\\\"medium\\\" text=\\\"Register Now\\\" target=\\\"_self\\\" icon_pack=\\\"\\\" font_weight=\\\"\\\" link=\\\"#\\\"]\",\"alias\":\"Button\",\"uid\":6,\"size\":{\"width\":{\"d\":{\"v\":\"1200px\",\"e\":true},\"n\":{\"v\":\"1200px\",\"e\":true},\"t\":{\"v\":\"1200px\",\"e\":true},\"m\":{\"v\":\"1200px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"1200px\"},\"position\":{\"x\":{\"d\":{\"v\":\"300px\",\"e\":true},\"n\":{\"v\":\"140px\",\"e\":true},\"t\":{\"v\":\"84px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"165px\",\"e\":true},\"n\":{\"v\":\"165px\",\"e\":true},\"t\":{\"v\":\"161px\",\"e\":true},\"m\":{\"v\":\"164px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":7,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":7,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1000},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":1000,\"startRelative\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":1000,\"startRelative\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3500,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\",\"e\":true},\"t\":{\"v\":\"22\",\"e\":true},\"m\":{\"v\":\"22\",\"e\":true}},\"textAlign\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"v\":\"normal\",\"e\":true},\"n\":{\"v\":\"normal\",\"e\":true},\"t\":{\"v\":\"normal\",\"e\":true},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"}}','{\"0\":\"\",\"version\":\"6.4.0\"}'),(18,7,1,'{\"title\":\"Slide\",\"bg\":{\"type\":\"image\",\"color\":\"#f8fbfd\",\"image\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/uploads\\/2017\\/06\\/h9-slider-background-img-1.jpg\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"volume\":\"\"}},\"thumb\":{\"dimension\":\"slider\"},\"timeline\":{\"slots\":[\"default\"],\"duration\":[600]},\"effects\":{\"parallax\":\"8\"},\"panzoom\":{\"ease\":\"none\"},\"version\":\"6.4.0\"}','{\"3\":{\"text\":\"Learning & Fun \\nfor Everyone.\",\"alias\":\"45 Years of Excellen...\",\"uid\":3,\"size\":{\"width\":{\"d\":{\"v\":\"527px\",\"e\":true},\"n\":{\"v\":\"481px\",\"e\":true},\"t\":{\"v\":\"457px\",\"e\":true},\"m\":{\"v\":\"300px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"185px\",\"e\":true},\"n\":{\"v\":\"189px\",\"e\":true},\"t\":{\"v\":\"186px\",\"e\":true},\"m\":{\"v\":\"185px\",\"e\":true}},\"originalWidth\":\"527px\",\"originalHeight\":\"185px\"},\"position\":{\"x\":{\"d\":{\"v\":\"-385px\",\"e\":true},\"n\":{\"v\":\"-209px\",\"e\":true},\"t\":{\"v\":\"-70px\",\"e\":true},\"m\":{\"v\":\"6px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-23px\",\"e\":true},\"n\":{\"v\":\"-12px\",\"e\":true},\"t\":{\"v\":\"-11px\",\"e\":true},\"m\":{\"v\":\"15px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":5,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":5,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":300},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":300,\"startRelative\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":300,\"startRelative\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":4200,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"fontFamily\":\"Merriweather\",\"fontSize\":{\"d\":{\"v\":\"63px\",\"e\":true},\"n\":{\"v\":\"50px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"33px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"900\",\"e\":true},\"n\":{\"v\":\"900\",\"e\":true},\"t\":{\"v\":\"900\",\"e\":true},\"m\":{\"v\":\"900\",\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"80px\",\"e\":true},\"n\":{\"v\":\"65px\",\"e\":true},\"t\":{\"v\":\"65px\",\"e\":true},\"m\":{\"v\":\"45px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"v\":\"normal\",\"e\":true},\"n\":{\"v\":\"normal\",\"e\":true},\"t\":{\"v\":\"normal\",\"e\":true},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"},\"11\":{\"text\":\"Image 8\",\"alias\":\"Image 8\",\"uid\":11,\"media\":{\"imageUrl\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/uploads\\/2017\\/06\\/h9-slide-img-1.png\",\"imageId\":2246},\"size\":{\"width\":{\"d\":{\"v\":\"931px\",\"e\":true},\"n\":{\"v\":\"627px\",\"e\":true},\"t\":{\"v\":\"575px\",\"e\":true},\"m\":{\"v\":\"323px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"689px\",\"e\":true},\"n\":{\"v\":\"462px\",\"e\":true},\"t\":{\"v\":\"425px\",\"e\":true},\"m\":{\"v\":\"239px\",\"e\":true}},\"originalWidth\":1098,\"originalHeight\":812,\"aspectRatio\":{\"d\":{\"v\":1.3522167487684729},\"n\":{\"v\":1.3522167487684729},\"t\":{\"v\":1.3522167487684729},\"m\":{\"v\":1.3522167487684729}}},\"position\":{\"x\":{\"d\":{\"v\":\"270px\",\"e\":true},\"n\":{\"v\":\"240px\",\"e\":true},\"t\":{\"v\":\"143px\",\"e\":true},\"m\":{\"v\":\"396px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"66px\",\"e\":true},\"n\":{\"v\":\"107px\",\"e\":true},\"t\":{\"v\":\"305px\",\"e\":true},\"m\":{\"v\":\"144px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":6,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":6,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1500},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"0\",\"scaleX\":\"0.9\",\"scaleY\":\"0.9\",\"opacity\":\"0\",\"rotationX\":\"0\",\"rotationY\":\"0\",\"rotationZ\":\"0\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"mask\":{\"x\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"top\"},\"n\":{\"v\":\"top\"},\"t\":{\"v\":\"top\"},\"m\":{\"v\":\"top\"}}},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":1000,\"start\":1500,\"startRelative\":1500},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":1000,\"start\":1500,\"startRelative\":1500},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":2500,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\",\"e\":true},\"t\":{\"v\":\"22\",\"e\":true},\"m\":{\"v\":\"22\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"visibility\":{\"m\":false},\"type\":\"image\",\"version\":\"6.4.0\"},\"5\":{\"text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur in sapien a nulla porta tincidunt id eu eros. \",\"alias\":\"Lorem ipsum dolor si...\",\"uid\":5,\"size\":{\"width\":{\"d\":{\"v\":\"525px\",\"e\":true},\"n\":{\"v\":\"478px\",\"e\":true},\"t\":{\"v\":\"447px\",\"e\":true},\"m\":{\"v\":\"298px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"65px\",\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"113px\",\"e\":true}},\"originalWidth\":\"525px\",\"originalHeight\":\"65px\"},\"position\":{\"x\":{\"d\":{\"v\":\"-387px\",\"e\":true},\"n\":{\"v\":\"-208px\",\"e\":true},\"t\":{\"v\":\"-77px\",\"e\":true},\"m\":{\"v\":\"7px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"96px\",\"e\":true},\"n\":{\"v\":\"86px\",\"e\":true},\"t\":{\"v\":\"79px\",\"e\":true},\"m\":{\"v\":\"86px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":7,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":7,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":700},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":700,\"startRelative\":700},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":700,\"startRelative\":700},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3800,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"17px\",\"e\":true},\"n\":{\"v\":\"17px\",\"e\":true},\"t\":{\"v\":\"17px\",\"e\":true},\"m\":{\"v\":\"15px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\",\"e\":true},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"26px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"v\":\"normal\",\"e\":true},\"n\":{\"v\":\"normal\",\"e\":true},\"t\":{\"v\":\"normal\",\"e\":true},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"},\"8\":{\"text\":\"[mkdf_icon icon_pack=\\\"font_elegant\\\" fe_icon=\\\"social_twitter\\\" type=\\\"mkdf-normal\\\" target=\\\"_blank\\\" custom_size=\\\"18\\\" icon_color=\\\"#ffffff\\\" link=\\\"http:\\/\\/www.twitter.com\\\" hover_icon_color=\\\"rgba(255,255,255,0.5)\\\"]\\n\",\"alias\":\"<i class=\",\"uid\":8,\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"-639px\",\"e\":true},\"n\":{\"v\":\"-442px\",\"e\":true},\"t\":{\"v\":\"-290px\",\"e\":true},\"m\":{\"v\":\"-134px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"173px\",\"e\":true},\"n\":{\"v\":\"167px\",\"e\":true},\"t\":{\"v\":\"157px\",\"e\":true},\"m\":{\"v\":\"149px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":8,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":8,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":900},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":900,\"startRelative\":900},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":900,\"startRelative\":900},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3600,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"17px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\",\"e\":true},\"t\":{\"v\":\"22\",\"e\":true},\"m\":{\"v\":\"19px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"},\"9\":{\"text\":\"[mkdf_icon icon_pack=\\\"font_awesome\\\" fa_icon=\\\"fa-instagram\\\" type=\\\"mkdf-normal\\\" target=\\\"_blank\\\" custom_size=\\\"18\\\" icon_color=\\\"#ffffff\\\" link=\\\"http:\\/\\/www.instagram.com\\\" hover_icon_color=\\\"rgba(255,255,255,0.5)\\\"]\",\"alias\":\"<i class=\",\"uid\":9,\"size\":{\"width\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"-598px\",\"e\":true},\"n\":{\"v\":\"-405px\",\"e\":true},\"t\":{\"v\":\"-253px\",\"e\":true},\"m\":{\"v\":\"-97px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"173px\",\"e\":true},\"n\":{\"v\":\"167px\",\"e\":true},\"t\":{\"v\":\"157px\",\"e\":true},\"m\":{\"v\":\"149px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":9,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":9,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1100},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":1100,\"startRelative\":1100},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":1100,\"startRelative\":1100},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3400,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"18px\",\"e\":true},\"n\":{\"v\":\"18px\"},\"t\":{\"v\":\"18px\",\"e\":true},\"m\":{\"v\":\"17px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\",\"e\":true},\"m\":{\"v\":\"19px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"},\"10\":{\"text\":\"[mkdf_icon icon_pack=\\\"font_elegant\\\" fe_icon=\\\"social_facebook\\\" type=\\\"mkdf-normal\\\" target=\\\"_blank\\\" custom_size=\\\"16\\\" icon_color=\\\"#ffffff\\\" link=\\\"http:\\/\\/www.facebook.com\\\" hover_icon_color=\\\"rgba(255,255,255,0.5)\\\"]\",\"alias\":\"<i class=\",\"uid\":10,\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"-561px\",\"e\":true},\"n\":{\"v\":\"-368px\",\"e\":true},\"t\":{\"v\":\"-216px\",\"e\":true},\"m\":{\"v\":\"-60px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"172px\",\"e\":true},\"n\":{\"v\":\"166px\",\"e\":true},\"t\":{\"v\":\"157px\",\"e\":true},\"m\":{\"v\":\"149px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":10,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":10,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1300},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":1300,\"startRelative\":1300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":1300,\"startRelative\":1300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3200,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"18px\",\"e\":true},\"n\":{\"v\":\"18px\",\"e\":true},\"t\":{\"v\":\"18px\"},\"m\":{\"v\":\"17px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\",\"e\":true},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"19px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"}}','{\"0\":\"\",\"version\":\"6.4.0\"}'),(19,7,2,'{\"title\":\"Slide\",\"bg\":{\"type\":\"image\",\"color\":\"#f8fbfd\",\"image\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/uploads\\/2017\\/06\\/h9-slider-background-img-1.jpg\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"volume\":\"\"}},\"thumb\":{\"dimension\":\"slider\"},\"timeline\":{\"slots\":[\"default\"],\"duration\":[600]},\"effects\":{\"parallax\":\"8\"},\"panzoom\":{\"ease\":\"none\"},\"version\":\"6.4.0\"}','{\"3\":{\"text\":\"Grasp the World of Knowledge\",\"alias\":\"45 Years of Excellen...\",\"uid\":3,\"size\":{\"width\":{\"d\":{\"v\":\"527px\",\"e\":true},\"n\":{\"v\":\"481px\",\"e\":true},\"t\":{\"v\":\"457px\",\"e\":true},\"m\":{\"v\":\"300px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"185px\",\"e\":true},\"n\":{\"v\":\"189px\",\"e\":true},\"t\":{\"v\":\"186px\",\"e\":true},\"m\":{\"v\":\"185px\",\"e\":true}},\"originalWidth\":\"527px\",\"originalHeight\":\"185px\"},\"position\":{\"x\":{\"d\":{\"v\":\"-385px\",\"e\":true},\"n\":{\"v\":\"-209px\",\"e\":true},\"t\":{\"v\":\"-70px\",\"e\":true},\"m\":{\"v\":\"6px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-23px\",\"e\":true},\"n\":{\"v\":\"-12px\",\"e\":true},\"t\":{\"v\":\"-12px\",\"e\":true},\"m\":{\"v\":\"15px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":5,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":5,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":300},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":300,\"startRelative\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":300,\"startRelative\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":4200,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"fontFamily\":\"Merriweather\",\"fontSize\":{\"d\":{\"v\":\"63px\",\"e\":true},\"n\":{\"v\":\"50px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"33px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"900\",\"e\":true},\"n\":{\"v\":\"900\",\"e\":true},\"t\":{\"v\":\"900\",\"e\":true},\"m\":{\"v\":\"900\",\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"80px\",\"e\":true},\"n\":{\"v\":\"65px\",\"e\":true},\"t\":{\"v\":\"65px\",\"e\":true},\"m\":{\"v\":\"45px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"v\":\"normal\",\"e\":true},\"n\":{\"v\":\"normal\",\"e\":true},\"t\":{\"v\":\"normal\",\"e\":true},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"},\"5\":{\"text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur in sapien a nulla porta tincidunt id eu eros. \",\"alias\":\"Lorem ipsum dolor si...\",\"uid\":5,\"size\":{\"width\":{\"d\":{\"v\":\"525px\",\"e\":true},\"n\":{\"v\":\"478px\",\"e\":true},\"t\":{\"v\":\"495px\",\"e\":true},\"m\":{\"v\":\"298px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"65px\",\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"67px\",\"e\":true},\"m\":{\"v\":\"113px\",\"e\":true}},\"originalWidth\":\"525px\",\"originalHeight\":\"65px\"},\"position\":{\"x\":{\"d\":{\"v\":\"-387px\",\"e\":true},\"n\":{\"v\":\"-208px\",\"e\":true},\"t\":{\"v\":\"-50px\",\"e\":true},\"m\":{\"v\":\"7px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"96px\",\"e\":true},\"n\":{\"v\":\"86px\",\"e\":true},\"t\":{\"v\":\"82px\",\"e\":true},\"m\":{\"v\":\"86px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":6,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":6,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":700},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":700,\"startRelative\":700},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":700,\"startRelative\":700},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3800,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"17px\",\"e\":true},\"n\":{\"v\":\"17px\",\"e\":true},\"t\":{\"v\":\"17px\",\"e\":true},\"m\":{\"v\":\"15px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\",\"e\":true},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"26px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"v\":\"normal\",\"e\":true},\"n\":{\"v\":\"normal\",\"e\":true},\"t\":{\"v\":\"normal\",\"e\":true},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"},\"8\":{\"text\":\"[mkdf_icon icon_pack=\\\"font_elegant\\\" fe_icon=\\\"social_twitter\\\" type=\\\"mkdf-normal\\\" target=\\\"_blank\\\" custom_size=\\\"18\\\" icon_color=\\\"#ffffff\\\" link=\\\"http:\\/\\/www.twitter.com\\\" hover_icon_color=\\\"rgba(255,255,255,0.5)\\\"]\",\"alias\":\"<i class=\",\"uid\":8,\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"-640px\",\"e\":true},\"n\":{\"v\":\"-442px\",\"e\":true},\"t\":{\"v\":\"-290px\",\"e\":true},\"m\":{\"v\":\"-134px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"173px\",\"e\":true},\"n\":{\"v\":\"167px\",\"e\":true},\"t\":{\"v\":\"156px\",\"e\":true},\"m\":{\"v\":\"149px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":7,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":7,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":900},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":900,\"startRelative\":900},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":900,\"startRelative\":900},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3600,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"17px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\",\"e\":true},\"t\":{\"v\":\"22\",\"e\":true},\"m\":{\"v\":\"19px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"},\"9\":{\"text\":\"[mkdf_icon icon_pack=\\\"font_awesome\\\" fa_icon=\\\"fa-instagram\\\" type=\\\"mkdf-normal\\\" target=\\\"_blank\\\" custom_size=\\\"18\\\" icon_color=\\\"#ffffff\\\" link=\\\"http:\\/\\/www.instagram.com\\\" hover_icon_color=\\\"rgba(255,255,255,0.5)\\\"]\",\"alias\":\"<i class=\",\"uid\":9,\"size\":{\"width\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"-603px\",\"e\":true},\"n\":{\"v\":\"-405px\",\"e\":true},\"t\":{\"v\":\"-253px\",\"e\":true},\"m\":{\"v\":\"-97px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"173px\",\"e\":true},\"n\":{\"v\":\"167px\",\"e\":true},\"t\":{\"v\":\"156px\",\"e\":true},\"m\":{\"v\":\"149px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":8,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":8,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1100},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":1100,\"startRelative\":1100},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":1100,\"startRelative\":1100},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3400,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"18px\",\"e\":true},\"n\":{\"v\":\"18px\"},\"t\":{\"v\":\"18px\",\"e\":true},\"m\":{\"v\":\"17px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\",\"e\":true},\"m\":{\"v\":\"19px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"},\"10\":{\"text\":\"[mkdf_icon icon_pack=\\\"font_elegant\\\" fe_icon=\\\"social_facebook\\\" type=\\\"mkdf-normal\\\" target=\\\"_blank\\\" custom_size=\\\"16\\\" icon_color=\\\"#ffffff\\\" link=\\\"http:\\/\\/www.facebook.com\\\" hover_icon_color=\\\"rgba(255,255,255,0.5)\\\"]\",\"alias\":\"<i class=\",\"uid\":10,\"size\":{\"width\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"-566px\",\"e\":true},\"n\":{\"v\":\"-368px\",\"e\":true},\"t\":{\"v\":\"-216px\",\"e\":true},\"m\":{\"v\":\"-60px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"173px\",\"e\":true},\"n\":{\"v\":\"167px\",\"e\":true},\"t\":{\"v\":\"156px\",\"e\":true},\"m\":{\"v\":\"149px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":9,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":9,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1300},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":1300,\"startRelative\":1300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":1300,\"startRelative\":1300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3200,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"18px\",\"e\":true},\"n\":{\"v\":\"18px\"},\"t\":{\"v\":\"18px\"},\"m\":{\"v\":\"17px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"19px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"},\"13\":{\"text\":\"Image 7\",\"alias\":\"Image 7\",\"uid\":13,\"media\":{\"imageUrl\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/uploads\\/2017\\/06\\/h9-slide-img-2.png\",\"imageId\":2276},\"size\":{\"width\":{\"d\":{\"v\":\"584px\",\"e\":true},\"n\":{\"v\":\"426px\",\"e\":true},\"t\":{\"v\":\"372px\",\"e\":true},\"m\":{\"v\":\"395px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"758px\",\"e\":true},\"n\":{\"v\":\"553px\",\"e\":true},\"t\":{\"v\":\"484px\",\"e\":true},\"m\":{\"v\":\"513px\",\"e\":true}},\"originalWidth\":666,\"originalHeight\":864,\"aspectRatio\":{\"d\":{\"v\":0.7708333333333334},\"n\":{\"v\":0.7708333333333334},\"t\":{\"v\":0.7708333333333334},\"m\":{\"v\":0.7708333333333334}}},\"position\":{\"x\":{\"d\":{\"v\":\"270px\",\"e\":true},\"n\":{\"v\":\"234px\",\"e\":true},\"t\":{\"v\":\"209px\",\"e\":true},\"m\":{\"v\":\"405px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"53px\",\"e\":true},\"n\":{\"v\":\"67px\",\"e\":true},\"t\":{\"v\":\"275px\",\"e\":true},\"m\":{\"v\":\"70px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":10,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":10,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1500},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"0\",\"scaleX\":\"0.9\",\"scaleY\":\"0.9\",\"opacity\":\"0\",\"rotationX\":\"0\",\"rotationY\":\"0\",\"rotationZ\":\"0\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"mask\":{\"x\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"top\"},\"n\":{\"v\":\"top\"},\"t\":{\"v\":\"top\"},\"m\":{\"v\":\"top\"}}},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":1000,\"start\":1500,\"startRelative\":1500},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":1000,\"start\":1500,\"startRelative\":1500},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":2500,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\",\"e\":true},\"t\":{\"v\":\"22\",\"e\":true},\"m\":{\"v\":\"22\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"visibility\":{\"m\":false},\"type\":\"image\",\"version\":\"6.4.0\"}}','{\"ver_lines\":[\"423px\",\"696px\"],\"version\":\"6.4.0\"}'),(20,8,1,'{\"title\":\"Slide\",\"bg\":{\"type\":\"image\",\"color\":\"#E7E7E7\",\"position\":\"center top\",\"image\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/uploads\\/2017\\/06\\/h10-slide-background-img.jpg\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"volume\":\"\"}},\"thumb\":{\"dimension\":\"slider\"},\"timeline\":{\"slots\":[\"default\"],\"duration\":[600]},\"effects\":{\"parallax\":\"8\"},\"panzoom\":{\"ease\":\"none\"},\"version\":\"6.4.0\"}','{\"1\":{\"text\":\"Helping Students Reach Their Potential.\",\"alias\":\"Title\",\"uid\":1,\"size\":{\"width\":{\"d\":{\"v\":\"557px\",\"e\":true},\"n\":{\"v\":\"522px\",\"e\":true},\"t\":{\"v\":\"488px\",\"e\":true},\"m\":{\"v\":\"345px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"139px\",\"e\":true},\"n\":{\"v\":\"115px\",\"e\":true},\"t\":{\"v\":\"127px\",\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"557px\",\"originalHeight\":\"139px\"},\"position\":{\"x\":{\"d\":{\"v\":\"-492px\",\"e\":true},\"n\":{\"v\":\"-226px\",\"e\":true},\"t\":{\"v\":\"-55px\",\"e\":true},\"m\":{\"v\":\"13px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-62px\",\"e\":true},\"n\":{\"v\":\"-73px\",\"e\":true},\"t\":{\"v\":\"-212px\",\"e\":true},\"m\":{\"v\":\"-143px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":5,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":5,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":400},{\"id\":\"frame_999\",\"start\":4000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":400,\"startRelative\":400},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":400,\"startRelative\":400},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":4000,\"startRelative\":3100,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"#282727\",\"e\":true},\"n\":{\"v\":\"#282727\",\"e\":true},\"t\":{\"v\":\"#282727\",\"e\":true},\"m\":{\"v\":\"#282727\",\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"fontFamily\":\"Merriweather\",\"fontSize\":{\"d\":{\"v\":\"45px\",\"e\":true},\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"35px\",\"e\":true},\"m\":{\"v\":\"29px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"65px\",\"e\":true},\"n\":{\"v\":\"55px\",\"e\":true},\"t\":{\"v\":\"60px\",\"e\":true},\"m\":{\"v\":\"45px\",\"e\":true}},\"textAlign\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"v\":\"normal\",\"e\":true},\"n\":{\"v\":\"normal\",\"e\":true},\"t\":{\"v\":\"normal\",\"e\":true},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"#282727\",\"e\":true},\"n\":{\"v\":\"#282727\",\"e\":true},\"t\":{\"v\":\"#282727\",\"e\":true},\"m\":{\"v\":\"#282727\",\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"},\"5\":{\"text\":\"Lorem Ipsn gravida nibh vel velit auctor aliquetnean sollicitudin, lorem quis bibendum auci elit consequat ipsutis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio.\",\"alias\":\"Lorem Ipsn gravida n...\",\"uid\":5,\"size\":{\"width\":{\"d\":{\"v\":\"566px\",\"e\":true},\"n\":{\"v\":\"418px\",\"e\":true},\"t\":{\"v\":\"529px\",\"e\":true},\"m\":{\"v\":\"331px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"v\":\"159px\",\"e\":true},\"t\":{\"v\":\"190px\",\"e\":true},\"m\":{\"v\":\"161px\",\"e\":true}},\"originalWidth\":\"566px\"},\"position\":{\"x\":{\"d\":{\"v\":\"-485px\",\"e\":true},\"n\":{\"v\":\"-276px\",\"e\":true},\"t\":{\"v\":\"-37px\",\"e\":true},\"m\":{\"v\":\"7px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"86px\",\"e\":true},\"n\":{\"v\":\"76px\",\"e\":true},\"t\":{\"v\":\"-47px\",\"e\":true},\"m\":{\"v\":\"-7px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":6,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":6,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":600},{\"id\":\"frame_999\",\"start\":4000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":600,\"startRelative\":600},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":600,\"startRelative\":600},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":4000,\"startRelative\":2900,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"#595959\",\"e\":true},\"n\":{\"v\":\"#595959\",\"e\":true},\"t\":{\"v\":\"#595959\",\"e\":true},\"m\":{\"v\":\"#595959\",\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"17px\",\"e\":true},\"n\":{\"v\":\"15px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"12px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"34px\",\"e\":true},\"n\":{\"v\":\"30px\",\"e\":true},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"26px\",\"e\":true}},\"textAlign\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"v\":\"normal\",\"e\":true},\"n\":{\"v\":\"normal\",\"e\":true},\"t\":{\"v\":\"normal\",\"e\":true},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"#595959\",\"e\":true},\"n\":{\"v\":\"#595959\",\"e\":true},\"t\":{\"v\":\"#595959\",\"e\":true},\"m\":{\"v\":\"#595959\",\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"},\"6\":{\"text\":\"[mkdf_button type=\\\"simple\\\" text=\\\"Learn more\\\" target=\\\"_blank\\\" icon_pack=\\\"font_awesome\\\" fa_icon=\\\"fa-angle-right\\\" font_weight=\\\"\\\" link=\\\"#\\\"]\",\"alias\":\"[mkdf_button type=\",\"uid\":6,\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"-711px\",\"e\":true},\"n\":{\"v\":\"-436px\",\"e\":true},\"t\":{\"v\":\"-251px\",\"e\":true},\"m\":{\"v\":\"-112px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"197px\",\"e\":true},\"n\":{\"v\":\"185px\",\"e\":true},\"t\":{\"v\":\"22px\",\"e\":true},\"m\":{\"v\":\"70px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":7,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":7,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":800},{\"id\":\"frame_999\",\"start\":4000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":800,\"startRelative\":800},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":800,\"startRelative\":800},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":4000,\"startRelative\":2700,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"#595959\",\"e\":true},\"n\":{\"v\":\"#595959\",\"e\":true},\"t\":{\"v\":\"#595959\",\"e\":true},\"m\":{\"v\":\"#595959\",\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\",\"e\":true},\"t\":{\"v\":\"22\",\"e\":true},\"m\":{\"v\":\"22\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"#595959\",\"e\":true},\"n\":{\"v\":\"#595959\",\"e\":true},\"t\":{\"v\":\"#595959\",\"e\":true},\"m\":{\"v\":\"#595959\",\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"},\"9\":{\"text\":\"Image 8\",\"alias\":\"Image 8\",\"uid\":9,\"media\":{\"imageUrl\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/uploads\\/2017\\/06\\/h10-slide-img-2.png\",\"imageId\":2364},\"size\":{\"width\":{\"d\":{\"v\":\"770px\",\"e\":true},\"n\":{\"v\":\"442px\",\"e\":true},\"t\":{\"v\":\"387px\",\"e\":true},\"m\":{\"v\":\"245px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"771px\",\"e\":true},\"n\":{\"v\":\"443px\",\"e\":true},\"t\":{\"v\":\"388px\",\"e\":true},\"m\":{\"v\":\"246px\",\"e\":true}},\"originalWidth\":755,\"originalHeight\":756,\"aspectRatio\":{\"d\":{\"v\":0.9986772486772487},\"n\":{\"v\":0.9986772486772487},\"t\":{\"v\":0.9986772486772487},\"m\":{\"v\":0.9986772486772487}}},\"position\":{\"x\":{\"d\":{\"v\":\"294px\",\"e\":true},\"n\":{\"v\":\"239px\",\"e\":true},\"t\":{\"v\":\"-5px\",\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"113px\",\"e\":true},\"n\":{\"v\":\"98px\",\"e\":true},\"t\":{\"v\":\"310px\",\"e\":true},\"m\":{\"v\":\"229px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":8,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":8,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1200},{\"id\":\"frame_999\",\"start\":4000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":1200,\"startRelative\":1200},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":1200,\"startRelative\":1200},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":4000,\"startRelative\":2300,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\",\"e\":true},\"t\":{\"v\":\"22\",\"e\":true},\"m\":{\"v\":\"22\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"right\",\"e\":true},\"t\":{\"v\":\"right\",\"e\":true},\"m\":{\"v\":\"right\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"image\",\"version\":\"6.4.0\"},\"7\":{\"text\":\"Image 6\",\"alias\":\"Image 6\",\"uid\":7,\"media\":{\"imageUrl\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/uploads\\/2017\\/06\\/h10-slide-img-1.png\",\"imageId\":2363},\"size\":{\"width\":{\"d\":{\"v\":\"596px\",\"e\":true},\"n\":{\"v\":\"342px\",\"e\":true},\"t\":{\"v\":\"278px\",\"e\":true},\"m\":{\"v\":\"133px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"704px\",\"e\":true},\"n\":{\"v\":\"404px\",\"e\":true},\"t\":{\"v\":\"328px\",\"e\":true},\"m\":{\"v\":\"157px\",\"e\":true}},\"originalWidth\":651,\"originalHeight\":773,\"aspectRatio\":{\"d\":{\"v\":0.8421733505821475},\"n\":{\"v\":0.8421733505821475},\"t\":{\"v\":0.8421733505821475},\"m\":{\"v\":0.8421733505821475}}},\"position\":{\"x\":{\"d\":{\"v\":\"284px\",\"e\":true},\"n\":{\"v\":\"239px\",\"e\":true},\"t\":{\"v\":\"-5px\",\"e\":true},\"m\":{\"v\":\"-1px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"203px\",\"e\":true},\"n\":{\"v\":\"164px\",\"e\":true},\"t\":{\"v\":\"351px\",\"e\":true},\"m\":{\"v\":\"229px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":9,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":9,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1000},{\"id\":\"frame_999\",\"start\":4000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"0\",\"scaleX\":\"0.9\",\"scaleY\":\"0.9\",\"opacity\":\"0\",\"rotationX\":\"0\",\"rotationY\":\"0\",\"rotationZ\":\"0\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"mask\":{\"x\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"top\"},\"n\":{\"v\":\"top\"},\"t\":{\"v\":\"top\"},\"m\":{\"v\":\"top\"}}},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":1000,\"start\":1000,\"startRelative\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":1000,\"start\":1000,\"startRelative\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":4000,\"startRelative\":2000,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\",\"e\":true},\"t\":{\"v\":\"22\",\"e\":true},\"m\":{\"v\":\"22\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"right\",\"e\":true},\"t\":{\"v\":\"right\",\"e\":true},\"m\":{\"v\":\"right\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"image\",\"version\":\"6.4.0\"},\"10\":{\"text\":\"Image 9\",\"alias\":\"Image 9\",\"uid\":10,\"media\":{\"imageUrl\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/uploads\\/2017\\/06\\/h1-slide-img-3.png\",\"imageId\":2365},\"size\":{\"width\":{\"d\":{\"v\":\"121px\",\"e\":true},\"n\":{\"v\":\"83px\",\"e\":true},\"t\":{\"v\":\"73px\",\"e\":true},\"m\":{\"v\":\"73px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"120px\",\"e\":true},\"n\":{\"v\":\"82px\",\"e\":true},\"t\":{\"v\":\"72px\",\"e\":true},\"m\":{\"v\":\"72px\",\"e\":true}},\"originalWidth\":124,\"originalHeight\":123,\"aspectRatio\":{\"d\":{\"v\":1.008130081300813},\"n\":{\"v\":1.008130081300813},\"t\":{\"v\":1.008130081300813},\"m\":{\"v\":1.008130081300813}}},\"position\":{\"x\":{\"d\":{\"v\":\"-64px\",\"e\":true},\"n\":{\"v\":\"22px\",\"e\":true},\"t\":{\"v\":\"-193px\",\"e\":true},\"m\":{\"v\":\"745px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"146px\",\"e\":true},\"n\":{\"v\":\"147px\",\"e\":true},\"t\":{\"v\":\"365px\",\"e\":true},\"m\":{\"v\":\"-135px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":10,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":10,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1400},{\"id\":\"frame_999\",\"start\":4000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":1400,\"startRelative\":1400},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":1400,\"startRelative\":1400},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":4000,\"startRelative\":2100,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"use\":true,\"curved\":true,\"yoyo_scale\":true,\"yoyo_filter\":true,\"frame_0\":{\"xr\":\"5px\",\"yr\":\"5px\"},\"frame_999\":{\"xr\":\"5px\",\"yr\":\"5px\"},\"speed\":3000,\"originX\":50,\"originY\":50}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\",\"e\":true},\"t\":{\"v\":\"22\",\"e\":true},\"m\":{\"v\":\"22\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"visibility\":{\"m\":false},\"type\":\"image\",\"version\":\"6.4.0\"},\"11\":{\"text\":\"Science\",\"alias\":\"Science\",\"uid\":11,\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"-67px\",\"e\":true},\"n\":{\"v\":\"21px\",\"e\":true},\"t\":{\"v\":\"-197px\",\"e\":true},\"m\":{\"v\":\"735px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"226px\",\"e\":true},\"n\":{\"v\":\"209px\",\"e\":true},\"t\":{\"v\":\"416px\",\"e\":true},\"m\":{\"v\":\"-67px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":11,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":11,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1600},{\"id\":\"frame_999\",\"start\":4000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":1600,\"startRelative\":1600},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":1600,\"startRelative\":1600},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":4000,\"startRelative\":1900,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"#6f6f6f\",\"e\":true},\"n\":{\"v\":\"#6f6f6f\",\"e\":true},\"t\":{\"v\":\"#6f6f6f\",\"e\":true},\"m\":{\"v\":\"#6f6f6f\",\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Merriweather\",\"fontSize\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"16px\",\"e\":true},\"t\":{\"v\":\"14px\",\"e\":true},\"m\":{\"v\":\"14px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"20px\",\"e\":true},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"#6f6f6f\",\"e\":true},\"n\":{\"v\":\"#6f6f6f\",\"e\":true},\"t\":{\"v\":\"#6f6f6f\",\"e\":true},\"m\":{\"v\":\"#6f6f6f\",\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"visibility\":{\"m\":false},\"type\":\"text\",\"version\":\"6.4.0\"},\"12\":{\"text\":\"Image 11\",\"alias\":\"Image 11\",\"uid\":12,\"media\":{\"imageUrl\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/uploads\\/2017\\/06\\/h1-slide-img-4.png\",\"imageId\":2366},\"size\":{\"width\":{\"d\":{\"v\":\"124px\",\"e\":true},\"n\":{\"v\":\"86px\",\"e\":true},\"t\":{\"v\":\"73px\",\"e\":true},\"m\":{\"v\":\"73px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"123px\",\"e\":true},\"n\":{\"v\":\"85px\",\"e\":true},\"t\":{\"v\":\"72px\",\"e\":true},\"m\":{\"v\":\"72px\",\"e\":true}},\"originalWidth\":124,\"originalHeight\":123,\"aspectRatio\":{\"d\":{\"v\":1.008130081300813},\"n\":{\"v\":1.008130081300813},\"t\":{\"v\":1.008130081300813},\"m\":{\"v\":1.008130081300813}}},\"position\":{\"x\":{\"d\":{\"v\":\"-16px\",\"e\":true},\"n\":{\"v\":\"52px\",\"e\":true},\"t\":{\"v\":\"-159px\",\"e\":true},\"m\":{\"v\":\"373px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-100px\",\"e\":true},\"n\":{\"v\":\"-32px\",\"e\":true},\"t\":{\"v\":\"209px\",\"e\":true},\"m\":{\"v\":\"-136px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":12,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":12,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1800},{\"id\":\"frame_999\",\"start\":4000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":1800,\"startRelative\":1800},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":1800,\"startRelative\":1800},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":4000,\"startRelative\":1700,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"use\":true,\"curved\":true,\"yoyo_scale\":true,\"yoyo_filter\":true,\"frame_0\":{\"xr\":\"6px\",\"yr\":\"6px\"},\"frame_999\":{\"xr\":\"6px\",\"yr\":\"6px\"},\"speed\":2000,\"originX\":50,\"originY\":50}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\",\"e\":true},\"t\":{\"v\":\"22\",\"e\":true},\"m\":{\"v\":\"22\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"visibility\":{\"m\":false},\"type\":\"image\",\"version\":\"6.4.0\"},\"13\":{\"text\":\"Chemistry\",\"alias\":\"Chemistry\",\"uid\":13,\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"-19px\",\"e\":true},\"n\":{\"v\":\"55px\",\"e\":true},\"t\":{\"v\":\"-159px\",\"e\":true},\"m\":{\"v\":\"372px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-17px\",\"e\":true},\"n\":{\"v\":\"27px\",\"e\":true},\"t\":{\"v\":\"263px\",\"e\":true},\"m\":{\"v\":\"-71px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":13,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":13,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":2000},{\"id\":\"frame_999\",\"start\":4000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":2000,\"startRelative\":2000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":2000,\"startRelative\":2000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":4000,\"startRelative\":1500,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"#6f6f6f\",\"e\":true},\"n\":{\"v\":\"#6f6f6f\",\"e\":true},\"t\":{\"v\":\"#6f6f6f\",\"e\":true},\"m\":{\"v\":\"#6f6f6f\",\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Merriweather\",\"fontSize\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"16px\",\"e\":true},\"t\":{\"v\":\"14px\",\"e\":true},\"m\":{\"v\":\"14px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"20px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"15px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"#6f6f6f\",\"e\":true},\"n\":{\"v\":\"#6f6f6f\",\"e\":true},\"t\":{\"v\":\"#6f6f6f\",\"e\":true},\"m\":{\"v\":\"#6f6f6f\",\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"visibility\":{\"m\":false},\"type\":\"text\",\"version\":\"6.4.0\"},\"14\":{\"text\":\"Image 13\",\"alias\":\"Image 13\",\"uid\":14,\"media\":{\"imageUrl\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/uploads\\/2017\\/06\\/h1-slide-img-5.png\",\"imageId\":2367},\"size\":{\"width\":{\"d\":{\"v\":\"127px\",\"e\":true},\"n\":{\"v\":\"83px\",\"e\":true},\"t\":{\"v\":\"70px\",\"e\":true},\"m\":{\"v\":\"70px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"127px\",\"e\":true},\"n\":{\"v\":\"83px\",\"e\":true},\"t\":{\"v\":\"70px\",\"e\":true},\"m\":{\"v\":\"70px\",\"e\":true}},\"originalWidth\":123,\"originalHeight\":123,\"aspectRatio\":{\"d\":{\"v\":1},\"n\":{\"v\":1},\"t\":{\"v\":1},\"m\":{\"v\":1}}},\"position\":{\"x\":{\"d\":{\"v\":\"288px\",\"e\":true},\"n\":{\"v\":\"227px\",\"e\":true},\"t\":{\"v\":\"-16px\",\"e\":true},\"m\":{\"v\":\"474px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-259px\",\"e\":true},\"n\":{\"v\":\"-120px\",\"e\":true},\"t\":{\"v\":\"118px\",\"e\":true},\"m\":{\"v\":\"-137px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":14,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":14,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":2200},{\"id\":\"frame_999\",\"start\":4000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":2200,\"startRelative\":2200},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":2200,\"startRelative\":2200},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":4000,\"startRelative\":1300,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"use\":true,\"curved\":true,\"yoyo_scale\":true,\"yoyo_filter\":true,\"frame_0\":{\"xr\":\"7px\",\"yr\":\"7px\"},\"frame_999\":{\"xr\":\"7px\",\"yr\":\"7px\"},\"speed\":3000,\"originX\":50,\"originY\":50}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\",\"e\":true},\"t\":{\"v\":\"22\",\"e\":true},\"m\":{\"v\":\"22\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"visibility\":{\"m\":false},\"type\":\"image\",\"version\":\"6.4.0\"},\"15\":{\"text\":\"Languages\",\"alias\":\"Languages\",\"uid\":15,\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"290px\",\"e\":true},\"n\":{\"v\":\"229px\",\"e\":true},\"t\":{\"v\":\"-15px\",\"e\":true},\"m\":{\"v\":\"479px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-175px\",\"e\":true},\"n\":{\"v\":\"-64px\",\"e\":true},\"t\":{\"v\":\"165px\",\"e\":true},\"m\":{\"v\":\"-71px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":15,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":15,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":2400},{\"id\":\"frame_999\",\"start\":4000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":2400,\"startRelative\":2400},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":2400,\"startRelative\":2400},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":4000,\"startRelative\":1100,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"#6f6f6f\",\"e\":true},\"n\":{\"v\":\"#6f6f6f\",\"e\":true},\"t\":{\"v\":\"#6f6f6f\",\"e\":true},\"m\":{\"v\":\"#6f6f6f\",\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Merriweather\",\"fontSize\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"16px\",\"e\":true},\"t\":{\"v\":\"14px\",\"e\":true},\"m\":{\"v\":\"14px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"20px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"15px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"#6f6f6f\",\"e\":true},\"n\":{\"v\":\"#6f6f6f\",\"e\":true},\"t\":{\"v\":\"#6f6f6f\",\"e\":true},\"m\":{\"v\":\"#6f6f6f\",\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"visibility\":{\"m\":false},\"type\":\"text\",\"version\":\"6.4.0\"},\"16\":{\"text\":\"Image 15\",\"alias\":\"Image 15\",\"uid\":16,\"media\":{\"imageUrl\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/uploads\\/2017\\/06\\/h1-slide-img-6.png\",\"imageId\":2368},\"size\":{\"width\":{\"d\":{\"v\":\"125px\",\"e\":true},\"n\":{\"v\":\"84px\",\"e\":true},\"t\":{\"v\":\"72px\",\"e\":true},\"m\":{\"v\":\"72px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"125px\",\"e\":true},\"n\":{\"v\":\"84px\",\"e\":true},\"t\":{\"v\":\"72px\",\"e\":true},\"m\":{\"v\":\"72px\",\"e\":true}},\"originalWidth\":124,\"originalHeight\":124,\"aspectRatio\":{\"d\":{\"v\":1},\"n\":{\"v\":1},\"t\":{\"v\":1},\"m\":{\"v\":1}}},\"position\":{\"x\":{\"d\":{\"v\":\"583px\",\"e\":true},\"n\":{\"v\":\"419px\",\"e\":true},\"t\":{\"v\":\"145px\",\"e\":true},\"m\":{\"v\":\"568px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-99px\",\"e\":true},\"n\":{\"v\":\"-33px\",\"e\":true},\"t\":{\"v\":\"212px\",\"e\":true},\"m\":{\"v\":\"-137px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":16,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":16,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":2600},{\"id\":\"frame_999\",\"start\":4000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":1000,\"start\":2600,\"startRelative\":2600},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":1000,\"start\":2600,\"startRelative\":2600},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":4000,\"startRelative\":400,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"use\":true,\"curved\":true,\"yoyo_scale\":true,\"yoyo_filter\":true,\"frame_0\":{\"xr\":\"5px\",\"yr\":\"5px\"},\"frame_999\":{\"xr\":\"5px\",\"yr\":\"5px\"},\"speed\":3000,\"originX\":50,\"originY\":50}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\",\"e\":true},\"t\":{\"v\":\"22\",\"e\":true},\"m\":{\"v\":\"22\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"visibility\":{\"m\":false},\"type\":\"image\",\"version\":\"6.4.0\"},\"17\":{\"text\":\"DIY & Craft\",\"alias\":\"DIY\",\"uid\":17,\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"586px\",\"e\":true},\"n\":{\"v\":\"422px\",\"e\":true},\"t\":{\"v\":\"144px\",\"e\":true},\"m\":{\"v\":\"574px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-15px\",\"e\":true},\"n\":{\"v\":\"27px\",\"e\":true},\"t\":{\"v\":\"263px\",\"e\":true},\"m\":{\"v\":\"-72px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":17,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":17,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":2800},{\"id\":\"frame_999\",\"start\":4000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":2800,\"startRelative\":2800},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":2800,\"startRelative\":2800},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":4000,\"startRelative\":700,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"#6f6f6f\",\"e\":true},\"n\":{\"v\":\"#6f6f6f\",\"e\":true},\"t\":{\"v\":\"#6f6f6f\",\"e\":true},\"m\":{\"v\":\"#6f6f6f\",\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Merriweather\",\"fontSize\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"16px\",\"e\":true},\"t\":{\"v\":\"14px\",\"e\":true},\"m\":{\"v\":\"14px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22px\",\"e\":true},\"n\":{\"v\":\"20px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"15px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"#6f6f6f\",\"e\":true},\"n\":{\"v\":\"#6f6f6f\",\"e\":true},\"t\":{\"v\":\"#6f6f6f\",\"e\":true},\"m\":{\"v\":\"#6f6f6f\",\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"visibility\":{\"m\":false},\"type\":\"text\",\"version\":\"6.4.0\"},\"19\":{\"text\":\"Image 18\",\"alias\":\"Image 18\",\"uid\":19,\"media\":{\"imageUrl\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/uploads\\/2017\\/06\\/h1-slide-img-7.png\",\"imageId\":2369},\"size\":{\"width\":{\"d\":{\"v\":\"121px\",\"e\":true},\"n\":{\"v\":\"83px\",\"e\":true},\"t\":{\"v\":\"73px\",\"e\":true},\"m\":{\"v\":\"73px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"120px\",\"e\":true},\"n\":{\"v\":\"82px\",\"e\":true},\"t\":{\"v\":\"72px\",\"e\":true},\"m\":{\"v\":\"72px\",\"e\":true}},\"originalWidth\":124,\"originalHeight\":123,\"aspectRatio\":{\"d\":{\"v\":1.008130081300813},\"n\":{\"v\":1.008130081300813},\"t\":{\"v\":1.008130081300813},\"m\":{\"v\":1.008130081300813}}},\"position\":{\"x\":{\"d\":{\"v\":\"660px\",\"e\":true},\"n\":{\"v\":\"439px\",\"e\":true},\"t\":{\"v\":\"178px\",\"e\":true},\"m\":{\"v\":\"657px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"146px\",\"e\":true},\"n\":{\"v\":\"146px\",\"e\":true},\"t\":{\"v\":\"366px\",\"e\":true},\"m\":{\"v\":\"-136px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":18,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":18,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":3000},{\"id\":\"frame_999\",\"start\":4000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":1000,\"start\":3000,\"startRelative\":3000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":1000,\"start\":3000,\"startRelative\":3000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":4000,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"use\":true,\"curved\":true,\"yoyo_scale\":true,\"yoyo_filter\":true,\"frame_0\":{\"xr\":\"6px\",\"yr\":\"6px\"},\"frame_999\":{\"xr\":\"6px\",\"yr\":\"6px\"},\"speed\":2000,\"originX\":50,\"originY\":50}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\",\"e\":true},\"t\":{\"v\":\"22\",\"e\":true},\"m\":{\"v\":\"22\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"visibility\":{\"m\":false},\"type\":\"image\",\"version\":\"6.4.0\"},\"18\":{\"text\":\"Software\",\"alias\":\"Software\",\"uid\":18,\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"665px\",\"e\":true},\"n\":{\"v\":\"442px\",\"e\":true},\"t\":{\"v\":\"181px\",\"e\":true},\"m\":{\"v\":\"661px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"226px\",\"e\":true},\"n\":{\"v\":\"210px\",\"e\":true},\"t\":{\"v\":\"416px\",\"e\":true},\"m\":{\"v\":\"-70px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":19,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":19,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":3200},{\"id\":\"frame_999\",\"start\":4000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":3200,\"startRelative\":3200},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":3200,\"startRelative\":3200},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":4000,\"startRelative\":300,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"#6f6f6f\",\"e\":true},\"n\":{\"v\":\"#6f6f6f\",\"e\":true},\"t\":{\"v\":\"#6f6f6f\",\"e\":true},\"m\":{\"v\":\"#6f6f6f\",\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Merriweather\",\"fontSize\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"16px\",\"e\":true},\"t\":{\"v\":\"14px\",\"e\":true},\"m\":{\"v\":\"14px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22px\",\"e\":true},\"n\":{\"v\":\"20px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"15px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"#6f6f6f\",\"e\":true},\"n\":{\"v\":\"#6f6f6f\",\"e\":true},\"t\":{\"v\":\"#6f6f6f\",\"e\":true},\"m\":{\"v\":\"#6f6f6f\",\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"visibility\":{\"m\":false},\"type\":\"text\",\"version\":\"6.4.0\"}}','{\"ver_lines\":[\"841px\",\"982px\"],\"version\":\"6.4.0\"}'),(21,9,1,'{\"title\":\"Slide\",\"bg\":{\"color\":\"#E7E7E7\",\"position\":\"center top\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"volume\":\"\"}},\"thumb\":{\"dimension\":\"slider\"},\"timeline\":{\"slots\":[\"default\"],\"duration\":[600]},\"panzoom\":{\"ease\":\"none\"},\"version\":\"6.4.0\"}','{\"27\":{\"text\":\"Image 22\",\"alias\":\"Image 22\",\"uid\":27,\"media\":{\"imageUrl\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/uploads\\/2017\\/06\\/interactive-map-slider-img-1.png\",\"imageId\":3320},\"size\":{\"width\":{\"d\":{\"v\":\"1298px\",\"e\":true},\"n\":{\"v\":\"928px\",\"e\":true},\"t\":{\"v\":\"729px\",\"e\":true},\"m\":{\"v\":\"379px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"635px\",\"e\":true},\"n\":{\"v\":\"454px\",\"e\":true},\"t\":{\"v\":\"356px\",\"e\":true},\"m\":{\"v\":\"185px\",\"e\":true}},\"originalWidth\":1306,\"originalHeight\":639,\"aspectRatio\":{\"d\":{\"v\":2.043818466353678},\"n\":{\"v\":2.043818466353678},\"t\":{\"v\":2.043818466353678},\"m\":{\"v\":2.043818466353678}}},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"v\":\"1px\",\"e\":true},\"t\":{\"v\":\"-4px\",\"e\":true},\"m\":{\"v\":\"-5px\",\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"v\":\"5px\",\"e\":true},\"t\":{\"v\":\"-1px\",\"e\":true},\"m\":{\"v\":\"-12px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":5,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":5,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":10},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":10,\"startRelative\":10},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":10,\"startRelative\":10},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":4690,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\",\"e\":true},\"t\":{\"v\":\"22\",\"e\":true},\"m\":{\"v\":\"22\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"image\",\"version\":\"6.4.0\"},\"3\":{\"text\":\"Image 3\",\"alias\":\"Cloud 4\",\"uid\":3,\"media\":{\"imageUrl\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/uploads\\/2017\\/06\\/interactive-map-slider-cloud.png\",\"imageId\":3316},\"size\":{\"width\":{\"d\":{\"v\":\"270px\",\"e\":true},\"n\":{\"v\":\"250px\",\"e\":true},\"t\":{\"v\":\"212px\",\"e\":true},\"m\":{\"v\":\"212px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"93px\",\"e\":true},\"n\":{\"v\":\"86px\",\"e\":true},\"t\":{\"v\":\"73px\",\"e\":true},\"m\":{\"v\":\"73px\",\"e\":true}},\"originalWidth\":270,\"originalHeight\":93,\"aspectRatio\":{\"d\":{\"v\":2.903225806451613},\"n\":{\"v\":2.903225806451613},\"t\":{\"v\":2.903225806451613},\"m\":{\"v\":2.903225806451613}}},\"position\":{\"x\":{\"d\":{\"v\":\"972px\",\"e\":true},\"n\":{\"v\":\"642px\",\"e\":true},\"t\":{\"v\":\"483px\",\"e\":true},\"m\":{\"v\":\"700px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-59px\",\"e\":true},\"n\":{\"v\":\"-42px\",\"e\":true},\"t\":{\"v\":\"-48px\",\"e\":true},\"m\":{\"v\":\"32px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":6,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":6,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":10},{\"id\":\"frame_999\",\"start\":4000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.out\",\"start\":10,\"startRelative\":10},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.out\",\"start\":10,\"startRelative\":10,\"actionTriggered\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.in\",\"start\":4000,\"startRelative\":3690,\"actionTriggered\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\",\"e\":true},\"t\":{\"v\":\"22\",\"e\":true},\"m\":{\"v\":\"22\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"visibility\":{\"m\":false},\"type\":\"image\",\"version\":\"6.4.0\"},\"2\":{\"text\":\"Image 2\",\"alias\":\"Open 4\",\"uid\":2,\"media\":{\"imageUrl\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/uploads\\/2017\\/06\\/interactive-map-slider-icon-close.png\",\"imageId\":3317},\"size\":{\"width\":{\"d\":{\"v\":\"16px\",\"e\":true},\"n\":{\"v\":\"16px\",\"e\":true},\"t\":{\"v\":\"16px\",\"e\":true},\"m\":{\"v\":\"16px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"16px\",\"e\":true},\"n\":{\"v\":\"16px\",\"e\":true},\"t\":{\"v\":\"16px\",\"e\":true},\"m\":{\"v\":\"16px\",\"e\":true}},\"originalWidth\":16,\"originalHeight\":16,\"aspectRatio\":{\"d\":{\"v\":1},\"n\":{\"v\":1},\"t\":{\"v\":1},\"m\":{\"v\":1}}},\"position\":{\"x\":{\"d\":{\"v\":\"307px\",\"e\":true},\"n\":{\"v\":\"225px\",\"e\":true},\"t\":{\"v\":\"165px\",\"e\":true},\"m\":{\"v\":\"508px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-61px\",\"e\":true},\"n\":{\"v\":\"-44px\",\"e\":true},\"t\":{\"v\":\"-47px\",\"e\":true},\"m\":{\"v\":\"45px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":7,\"position\":\"relative\"},\"attributes\":{\"classes\":\"click-class\",\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":7,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":800},{\"id\":\"frame_999\",\"start\":3000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power1.in\",\"start\":800,\"startRelative\":800},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power1.in\",\"start\":800,\"startRelative\":800},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power1.out\",\"start\":3000,\"startRelative\":1900},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"use\":true,\"yoyo_move\":true,\"yoyo_scale\":true,\"yoyo_filter\":true,\"frame_0\":{\"scaleX\":\"1\",\"scaleY\":\"1\"},\"frame_999\":{\"scaleX\":\"1.5\",\"scaleY\":\"1.5\"},\"speed\":3000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\",\"e\":true},\"t\":{\"v\":\"22\",\"e\":true},\"m\":{\"v\":\"22\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"action\":[{\"tooltip_event\":\"click\",\"action\":\"start_in\",\"image_link\":\"\",\"link_open_in\":\"_self\",\"link_follow\":\"follow\",\"jump_to_slide\":\"\",\"scrollunder_offset\":\"\",\"action_easing\":\"none\",\"action_speed\":\"\",\"actioncallback\":\"\",\"layer_target\":\"1\",\"link_type\":\"jquery\",\"action_delay\":\"100\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"},{\"tooltip_event\":\"click\",\"action\":\"start_in\",\"image_link\":\"\",\"link_open_in\":\"_self\",\"link_follow\":\"follow\",\"jump_to_slide\":\"\",\"scrollunder_offset\":\"\",\"action_easing\":\"none\",\"action_speed\":\"\",\"actioncallback\":\"\",\"layer_target\":\"3\",\"link_type\":\"jquery\",\"action_delay\":\"100\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"},{\"tooltip_event\":\"click\",\"action\":\"start_in\",\"image_link\":\"\",\"link_open_in\":\"_self\",\"link_follow\":\"follow\",\"jump_to_slide\":\"\",\"scrollunder_offset\":\"\",\"action_easing\":\"none\",\"action_speed\":\"\",\"actioncallback\":\"\",\"layer_target\":\"4\",\"link_type\":\"jquery\",\"action_delay\":\"300\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"},{\"tooltip_event\":\"click\",\"action\":\"start_in\",\"image_link\":\"\",\"link_open_in\":\"_self\",\"link_follow\":\"follow\",\"jump_to_slide\":\"\",\"scrollunder_offset\":\"\",\"action_easing\":\"none\",\"action_speed\":\"\",\"actioncallback\":\"\",\"layer_target\":\"6\",\"link_type\":\"jquery\",\"action_delay\":\"300\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"},{\"tooltip_event\":\"click\",\"action\":\"start_out\",\"image_link\":\"\",\"link_open_in\":\"_self\",\"link_follow\":\"follow\",\"jump_to_slide\":\"\",\"scrollunder_offset\":\"\",\"action_easing\":\"none\",\"action_speed\":\"\",\"actioncallback\":\"\",\"layer_target\":\"2\",\"link_type\":\"jquery\",\"action_delay\":\"100\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"}],\"triggerMemory\":\"keep\"},\"type\":\"image\",\"version\":\"6.4.0\"},\"1\":{\"text\":\"Image 1\",\"alias\":\"Close 4\",\"uid\":1,\"media\":{\"imageUrl\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/uploads\\/2017\\/06\\/interactive-map-slider-icon-open.png\",\"imageId\":3318},\"size\":{\"width\":{\"d\":{\"v\":\"26px\",\"e\":true},\"n\":{\"v\":\"26px\",\"e\":true},\"t\":{\"v\":\"26px\",\"e\":true},\"m\":{\"v\":\"26px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"26px\",\"e\":true},\"n\":{\"v\":\"26px\",\"e\":true},\"t\":{\"v\":\"26px\",\"e\":true},\"m\":{\"v\":\"26px\",\"e\":true}},\"originalWidth\":26,\"originalHeight\":26,\"aspectRatio\":{\"d\":{\"v\":1},\"n\":{\"v\":1},\"t\":{\"v\":1},\"m\":{\"v\":1}}},\"position\":{\"x\":{\"d\":{\"v\":\"307px\",\"e\":true},\"n\":{\"v\":\"225px\",\"e\":true},\"t\":{\"v\":\"165px\",\"e\":true},\"m\":{\"v\":\"505px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-61px\",\"e\":true},\"n\":{\"v\":\"-44px\",\"e\":true},\"t\":{\"v\":\"-47px\",\"e\":true},\"m\":{\"v\":\"44px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":8,\"position\":\"relative\"},\"attributes\":{\"classes\":\"click-class\",\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":8,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":800},{\"id\":\"frame_999\",\"start\":3000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power1.in\",\"start\":800,\"startRelative\":800},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power1.in\",\"start\":800,\"startRelative\":800,\"actionTriggered\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power1.out\",\"start\":3000,\"startRelative\":1900,\"actionTriggered\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\",\"e\":true},\"t\":{\"v\":\"22\",\"e\":true},\"m\":{\"v\":\"22\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"action\":[{\"tooltip_event\":\"click\",\"action\":\"start_out\",\"image_link\":\"\",\"link_open_in\":\"_self\",\"link_follow\":\"follow\",\"jump_to_slide\":\"\",\"scrollunder_offset\":\"\",\"action_easing\":\"none\",\"action_speed\":\"\",\"actioncallback\":\"\",\"layer_target\":\"1\",\"link_type\":\"jquery\",\"action_delay\":\"100\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"},{\"tooltip_event\":\"click\",\"action\":\"start_out\",\"image_link\":\"\",\"link_open_in\":\"_self\",\"link_follow\":\"follow\",\"jump_to_slide\":\"\",\"scrollunder_offset\":\"\",\"action_easing\":\"none\",\"action_speed\":\"\",\"actioncallback\":\"\",\"layer_target\":\"3\",\"link_type\":\"jquery\",\"action_delay\":\"100\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"},{\"tooltip_event\":\"click\",\"action\":\"start_out\",\"image_link\":\"\",\"link_open_in\":\"_self\",\"link_follow\":\"follow\",\"jump_to_slide\":\"\",\"scrollunder_offset\":\"\",\"action_easing\":\"none\",\"action_speed\":\"\",\"actioncallback\":\"\",\"layer_target\":\"4\",\"link_type\":\"jquery\",\"action_delay\":\"100\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"},{\"tooltip_event\":\"click\",\"action\":\"start_out\",\"image_link\":\"\",\"link_open_in\":\"_self\",\"link_follow\":\"follow\",\"jump_to_slide\":\"\",\"scrollunder_offset\":\"\",\"action_easing\":\"none\",\"action_speed\":\"\",\"actioncallback\":\"\",\"layer_target\":\"6\",\"link_type\":\"jquery\",\"action_delay\":\"100\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"},{\"tooltip_event\":\"click\",\"action\":\"start_in\",\"image_link\":\"\",\"link_open_in\":\"_self\",\"link_follow\":\"follow\",\"jump_to_slide\":\"\",\"scrollunder_offset\":\"\",\"action_easing\":\"none\",\"action_speed\":\"\",\"actioncallback\":\"\",\"layer_target\":\"2\",\"link_type\":\"jquery\",\"action_delay\":\"100\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"}],\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"image\",\"version\":\"6.4.0\"},\"4\":{\"text\":\"Mikado India\",\"alias\":\"Mikado India\",\"uid\":4,\"size\":{\"width\":{\"d\":{\"v\":\"122px\",\"e\":true},\"n\":{\"v\":\"122px\",\"e\":true},\"t\":{\"v\":\"122px\",\"e\":true},\"m\":{\"v\":\"122px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"122px\"},\"position\":{\"x\":{\"d\":{\"v\":\"418px\",\"e\":true},\"n\":{\"v\":\"339px\",\"e\":true},\"t\":{\"v\":\"272px\",\"e\":true},\"m\":{\"v\":\"466px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-75px\",\"e\":true},\"n\":{\"v\":\"-57px\",\"e\":true},\"t\":{\"v\":\"-60px\",\"e\":true},\"m\":{\"v\":\"-186px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":9,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":9,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":10},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.out\",\"start\":10,\"startRelative\":10},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.out\",\"start\":10,\"startRelative\":10,\"actionTriggered\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.in\",\"start\":5000,\"startRelative\":4690,\"endWithSlide\":true,\"actionTriggered\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"#303030\",\"e\":true},\"n\":{\"v\":\"#303030\",\"e\":true},\"t\":{\"v\":\"#303030\",\"e\":true},\"m\":{\"v\":\"#303030\",\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Merriweather\",\"fontSize\":{\"d\":{\"v\":\"16px\",\"e\":true},\"n\":{\"v\":\"14px\",\"e\":true},\"t\":{\"v\":\"13px\",\"e\":true},\"m\":{\"v\":\"13px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"26px\",\"e\":true},\"n\":{\"v\":\"24px\",\"e\":true},\"t\":{\"v\":\"14px\",\"e\":true},\"m\":{\"v\":\"14px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"#303030\",\"e\":true},\"n\":{\"v\":\"#303030\",\"e\":true},\"t\":{\"v\":\"#303030\",\"e\":true},\"m\":{\"v\":\"#303030\",\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"},\"6\":{\"text\":\"7\\/47A, Moti Nagar, New Delhi\",\"alias\":\"7\\/47A, Moti Nagar, N...\",\"uid\":6,\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"453px\",\"e\":true},\"n\":{\"v\":\"360px\",\"e\":true},\"t\":{\"v\":\"286px\",\"e\":true},\"m\":{\"v\":\"504px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-48px\",\"e\":true},\"n\":{\"v\":\"-34px\",\"e\":true},\"t\":{\"v\":\"-40px\",\"e\":true},\"m\":{\"v\":\"-42px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":10,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":10,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":10},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.out\",\"start\":10,\"startRelative\":10},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.out\",\"start\":10,\"startRelative\":10,\"actionTriggered\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.in\",\"start\":5000,\"startRelative\":4690,\"endWithSlide\":true,\"actionTriggered\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"#808080\",\"e\":true},\"n\":{\"v\":\"#808080\",\"e\":true},\"t\":{\"v\":\"#808080\",\"e\":true},\"m\":{\"v\":\"#808080\",\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"14px\",\"e\":true},\"n\":{\"v\":\"12px\",\"e\":true},\"t\":{\"v\":\"11px\",\"e\":true},\"m\":{\"v\":\"11px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"24px\",\"e\":true},\"n\":{\"v\":\"22px\",\"e\":true},\"t\":{\"v\":\"12px\",\"e\":true},\"m\":{\"v\":\"12px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"#808080\",\"e\":true},\"n\":{\"v\":\"#808080\",\"e\":true},\"t\":{\"v\":\"#808080\",\"e\":true},\"m\":{\"v\":\"#808080\",\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"},\"10\":{\"text\":\"Image 3\",\"alias\":\"Cloud 1\",\"uid\":10,\"media\":{\"imageUrl\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/uploads\\/2017\\/06\\/interactive-map-slider-cloud.png\",\"imageId\":3316},\"size\":{\"width\":{\"d\":{\"v\":\"270px\",\"e\":true},\"n\":{\"v\":\"241px\",\"e\":true},\"t\":{\"v\":\"241px\",\"e\":true},\"m\":{\"v\":\"241px\"}},\"height\":{\"d\":{\"v\":\"93px\",\"e\":true},\"n\":{\"v\":\"83px\",\"e\":true},\"t\":{\"v\":\"83px\",\"e\":true},\"m\":{\"v\":\"83px\"}},\"originalWidth\":270,\"originalHeight\":93,\"aspectRatio\":{\"d\":{\"v\":2.903225806451613},\"n\":{\"v\":2.903225806451613},\"t\":{\"v\":2.903225806451613},\"m\":{\"v\":2.903225806451613}}},\"position\":{\"x\":{\"d\":{\"v\":\"683px\",\"e\":true},\"n\":{\"v\":\"439px\",\"e\":true},\"t\":{\"v\":\"812px\",\"e\":true},\"m\":{\"v\":\"812px\"}},\"y\":{\"d\":{\"v\":\"-191px\",\"e\":true},\"n\":{\"v\":\"-135px\",\"e\":true},\"t\":{\"v\":\"-129px\",\"e\":true},\"m\":{\"v\":\"-129px\"}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":11,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":11,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":10},{\"id\":\"frame_999\",\"start\":4000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.out\",\"start\":10,\"startRelative\":10},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.out\",\"start\":10,\"startRelative\":10},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.in\",\"start\":4000,\"startRelative\":3690,\"actionTriggered\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\",\"e\":true},\"t\":{\"v\":\"22\",\"e\":true},\"m\":{\"v\":\"22\"}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"animationoverwrite\":\"waitout\",\"triggerMemory\":\"keep\"},\"type\":\"image\",\"version\":\"6.4.0\"},\"8\":{\"text\":\"Image 2\",\"alias\":\"Open 1\",\"uid\":8,\"media\":{\"imageUrl\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/uploads\\/2017\\/06\\/interactive-map-slider-icon-close.png\",\"imageId\":3317},\"size\":{\"width\":{\"d\":{\"v\":\"16px\",\"e\":true},\"n\":{\"v\":\"16px\",\"e\":true},\"t\":{\"v\":\"16px\",\"e\":true},\"m\":{\"v\":\"16px\"}},\"height\":{\"d\":{\"v\":\"16px\",\"e\":true},\"n\":{\"v\":\"16px\",\"e\":true},\"t\":{\"v\":\"16px\",\"e\":true},\"m\":{\"v\":\"16px\"}},\"originalWidth\":16,\"originalHeight\":16,\"aspectRatio\":{\"d\":{\"v\":1},\"n\":{\"v\":1},\"t\":{\"v\":1},\"m\":{\"v\":1}}},\"position\":{\"x\":{\"d\":{\"v\":\"18px\",\"e\":true},\"n\":{\"v\":\"19px\",\"e\":true},\"t\":{\"v\":\"644px\",\"e\":true},\"m\":{\"v\":\"644px\"}},\"y\":{\"d\":{\"v\":\"-194px\",\"e\":true},\"n\":{\"v\":\"-134px\",\"e\":true},\"t\":{\"v\":\"-48px\",\"e\":true},\"m\":{\"v\":\"-48px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":12,\"position\":\"relative\"},\"attributes\":{\"classes\":\"click-class\",\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":12,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":400},{\"id\":\"frame_999\",\"start\":3000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power1.in\",\"start\":400,\"startRelative\":400},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power1.in\",\"start\":400,\"startRelative\":400},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power1.out\",\"start\":3000,\"startRelative\":2300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"use\":true,\"yoyo_move\":true,\"yoyo_scale\":true,\"yoyo_filter\":true,\"frame_0\":{\"scaleX\":\"1\",\"scaleY\":\"1\"},\"frame_999\":{\"scaleX\":\"1.5\",\"scaleY\":\"1.5\"},\"speed\":3000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\",\"e\":true},\"t\":{\"v\":\"22\",\"e\":true},\"m\":{\"v\":\"22\"}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"action\":[{\"tooltip_event\":\"click\",\"action\":\"start_in\",\"image_link\":\"\",\"link_open_in\":\"_self\",\"link_follow\":\"follow\",\"jump_to_slide\":\"\",\"scrollunder_offset\":\"\",\"action_easing\":\"none\",\"action_speed\":\"\",\"actioncallback\":\"\",\"layer_target\":\"9\",\"link_type\":\"jquery\",\"action_delay\":\"100\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"},{\"tooltip_event\":\"click\",\"action\":\"start_in\",\"image_link\":\"\",\"link_open_in\":\"_self\",\"link_follow\":\"follow\",\"jump_to_slide\":\"\",\"scrollunder_offset\":\"\",\"action_easing\":\"none\",\"action_speed\":\"\",\"actioncallback\":\"\",\"layer_target\":\"10\",\"link_type\":\"jquery\",\"action_delay\":\"100\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"},{\"tooltip_event\":\"click\",\"action\":\"start_in\",\"image_link\":\"\",\"link_open_in\":\"_self\",\"link_follow\":\"follow\",\"jump_to_slide\":\"\",\"scrollunder_offset\":\"\",\"action_easing\":\"none\",\"action_speed\":\"\",\"actioncallback\":\"\",\"layer_target\":\"11\",\"link_type\":\"jquery\",\"action_delay\":\"300\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"},{\"tooltip_event\":\"click\",\"action\":\"start_in\",\"image_link\":\"\",\"link_open_in\":\"_self\",\"link_follow\":\"follow\",\"jump_to_slide\":\"\",\"scrollunder_offset\":\"\",\"action_easing\":\"none\",\"action_speed\":\"\",\"actioncallback\":\"\",\"layer_target\":\"12\",\"link_type\":\"jquery\",\"action_delay\":\"300\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"},{\"tooltip_event\":\"click\",\"action\":\"start_out\",\"image_link\":\"\",\"link_open_in\":\"_self\",\"link_follow\":\"follow\",\"jump_to_slide\":\"\",\"scrollunder_offset\":\"\",\"action_easing\":\"none\",\"action_speed\":\"\",\"actioncallback\":\"\",\"layer_target\":\"8\",\"link_type\":\"jquery\",\"action_delay\":\"100\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"}],\"triggerMemory\":\"keep\"},\"type\":\"image\",\"version\":\"6.4.0\"},\"9\":{\"text\":\"Image 1\",\"alias\":\"Close 1\",\"uid\":9,\"media\":{\"imageUrl\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/uploads\\/2017\\/06\\/interactive-map-slider-icon-open.png\",\"imageId\":3318},\"size\":{\"width\":{\"d\":{\"v\":\"26px\",\"e\":true},\"n\":{\"v\":\"26px\",\"e\":true},\"t\":{\"v\":\"26px\",\"e\":true},\"m\":{\"v\":\"26px\"}},\"height\":{\"d\":{\"v\":\"26px\",\"e\":true},\"n\":{\"v\":\"26px\",\"e\":true},\"t\":{\"v\":\"26px\",\"e\":true},\"m\":{\"v\":\"26px\"}},\"originalWidth\":26,\"originalHeight\":26,\"aspectRatio\":{\"d\":{\"v\":1},\"n\":{\"v\":1},\"t\":{\"v\":1},\"m\":{\"v\":1}}},\"position\":{\"x\":{\"d\":{\"v\":\"18px\",\"e\":true},\"n\":{\"v\":\"19px\",\"e\":true},\"t\":{\"v\":\"644px\",\"e\":true},\"m\":{\"v\":\"644px\"}},\"y\":{\"d\":{\"v\":\"-194px\",\"e\":true},\"n\":{\"v\":\"-134px\",\"e\":true},\"t\":{\"v\":\"-49px\",\"e\":true},\"m\":{\"v\":\"-49px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":13,\"position\":\"relative\"},\"attributes\":{\"classes\":\"click-class\",\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":13,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":400},{\"id\":\"frame_999\",\"start\":2990}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power1.in\",\"start\":400,\"startRelative\":400},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power1.in\",\"start\":400,\"startRelative\":400},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power1.out\",\"start\":2990,\"startRelative\":2290,\"actionTriggered\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\",\"e\":true},\"t\":{\"v\":\"22\",\"e\":true},\"m\":{\"v\":\"22\"}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"action\":[{\"tooltip_event\":\"click\",\"action\":\"start_out\",\"image_link\":\"\",\"link_open_in\":\"_self\",\"link_follow\":\"follow\",\"jump_to_slide\":\"\",\"scrollunder_offset\":\"\",\"action_easing\":\"none\",\"action_speed\":\"\",\"actioncallback\":\"\",\"layer_target\":\"9\",\"link_type\":\"jquery\",\"action_delay\":\"100\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"},{\"tooltip_event\":\"click\",\"action\":\"start_out\",\"image_link\":\"\",\"link_open_in\":\"_self\",\"link_follow\":\"follow\",\"jump_to_slide\":\"\",\"scrollunder_offset\":\"\",\"action_easing\":\"none\",\"action_speed\":\"\",\"actioncallback\":\"\",\"layer_target\":\"10\",\"link_type\":\"jquery\",\"action_delay\":\"100\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"},{\"tooltip_event\":\"click\",\"action\":\"start_out\",\"image_link\":\"\",\"link_open_in\":\"_self\",\"link_follow\":\"follow\",\"jump_to_slide\":\"\",\"scrollunder_offset\":\"\",\"action_easing\":\"none\",\"action_speed\":\"\",\"actioncallback\":\"\",\"layer_target\":\"11\",\"link_type\":\"jquery\",\"action_delay\":\"100\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"},{\"tooltip_event\":\"click\",\"action\":\"start_out\",\"image_link\":\"\",\"link_open_in\":\"_self\",\"link_follow\":\"follow\",\"jump_to_slide\":\"\",\"scrollunder_offset\":\"\",\"action_easing\":\"none\",\"action_speed\":\"\",\"actioncallback\":\"\",\"layer_target\":\"12\",\"link_type\":\"jquery\",\"action_delay\":\"100\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"},{\"tooltip_event\":\"click\",\"action\":\"start_in\",\"image_link\":\"\",\"link_open_in\":\"_self\",\"link_follow\":\"follow\",\"jump_to_slide\":\"\",\"scrollunder_offset\":\"\",\"action_easing\":\"none\",\"action_speed\":\"\",\"actioncallback\":\"\",\"layer_target\":\"8\",\"link_type\":\"jquery\",\"action_delay\":\"100\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"}],\"animationoverwrite\":\"waitout\",\"triggerMemory\":\"keep\"},\"type\":\"image\",\"version\":\"6.4.0\"},\"11\":{\"text\":\"Mikado Europe\",\"alias\":\"Mikado Europe\",\"uid\":11,\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"129px\",\"e\":true},\"n\":{\"v\":\"130px\",\"e\":true},\"t\":{\"v\":\"603px\",\"e\":true},\"m\":{\"v\":\"603px\"}},\"y\":{\"d\":{\"v\":\"-207px\",\"e\":true},\"n\":{\"v\":\"-147px\",\"e\":true},\"t\":{\"v\":\"-141px\",\"e\":true},\"m\":{\"v\":\"-141px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":14,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":14,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":10},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.out\",\"start\":10,\"startRelative\":10},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.out\",\"start\":10,\"startRelative\":10},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.in\",\"start\":5000,\"startRelative\":4690,\"endWithSlide\":true,\"actionTriggered\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"#303030\",\"e\":true},\"n\":{\"v\":\"#303030\",\"e\":true},\"t\":{\"v\":\"#303030\",\"e\":true},\"m\":{\"v\":\"#303030\"}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"Merriweather\",\"fontSize\":{\"d\":{\"v\":\"16px\",\"e\":true},\"n\":{\"v\":\"14px\",\"e\":true},\"t\":{\"v\":\"14px\",\"e\":true},\"m\":{\"v\":\"14px\"}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"26px\",\"e\":true},\"n\":{\"v\":\"24px\",\"e\":true},\"t\":{\"v\":\"24px\",\"e\":true},\"m\":{\"v\":\"24px\"}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"#303030\",\"e\":true},\"n\":{\"v\":\"#303030\",\"e\":true},\"t\":{\"v\":\"#303030\",\"e\":true},\"m\":{\"v\":\"#303030\"}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"waitout\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"},\"12\":{\"text\":\"Genslerstra\\u00dfe 59, Berlin\",\"alias\":\"Genslerstra\\u00dfe 59, Be...\",\"uid\":12,\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"145px\",\"e\":true},\"n\":{\"v\":\"144px\",\"e\":true},\"t\":{\"v\":\"617px\",\"e\":true},\"m\":{\"v\":\"617px\"}},\"y\":{\"d\":{\"v\":\"-183px\",\"e\":true},\"n\":{\"v\":\"-126px\",\"e\":true},\"t\":{\"v\":\"-122px\",\"e\":true},\"m\":{\"v\":\"-122px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":15,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":15,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":10},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.out\",\"start\":10,\"startRelative\":10},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.out\",\"start\":10,\"startRelative\":10},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.in\",\"start\":5000,\"startRelative\":4690,\"endWithSlide\":true,\"actionTriggered\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"#808080\",\"e\":true},\"n\":{\"v\":\"#808080\",\"e\":true},\"t\":{\"v\":\"#808080\",\"e\":true},\"m\":{\"v\":\"#808080\"}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"14px\",\"e\":true},\"n\":{\"v\":\"12px\",\"e\":true},\"t\":{\"v\":\"12px\",\"e\":true},\"m\":{\"v\":\"12px\"}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"24px\",\"e\":true},\"n\":{\"v\":\"22px\",\"e\":true},\"t\":{\"v\":\"22px\",\"e\":true},\"m\":{\"v\":\"22px\"}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"#808080\",\"e\":true},\"n\":{\"v\":\"#808080\",\"e\":true},\"t\":{\"v\":\"#808080\",\"e\":true},\"m\":{\"v\":\"#808080\"}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"waitout\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"},\"18\":{\"text\":\"Image 2\",\"alias\":\"Open 2\",\"uid\":18,\"media\":{\"imageUrl\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/uploads\\/2017\\/06\\/interactive-map-slider-icon-close.png\",\"imageId\":3317},\"size\":{\"width\":{\"d\":{\"v\":\"16px\",\"e\":true},\"n\":{\"v\":\"16px\",\"e\":true},\"t\":{\"v\":\"16px\",\"e\":true},\"m\":{\"v\":\"11px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"16px\",\"e\":true},\"n\":{\"v\":\"16px\",\"e\":true},\"t\":{\"v\":\"16px\",\"e\":true},\"m\":{\"v\":\"11px\",\"e\":true}},\"originalWidth\":16,\"originalHeight\":16,\"aspectRatio\":{\"d\":{\"v\":1},\"n\":{\"v\":1},\"t\":{\"v\":1},\"m\":{\"v\":1}}},\"position\":{\"x\":{\"d\":{\"v\":\"-328px\",\"e\":true},\"n\":{\"v\":\"-242px\",\"e\":true},\"t\":{\"v\":\"-186px\",\"e\":true},\"m\":{\"v\":\"-92px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-129px\",\"e\":true},\"n\":{\"v\":\"-78px\",\"e\":true},\"t\":{\"v\":\"-70px\",\"e\":true},\"m\":{\"v\":\"-51px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":16,\"position\":\"relative\"},\"attributes\":{\"classes\":\"click-class\",\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":16,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":600},{\"id\":\"frame_999\",\"start\":3000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power1.in\",\"start\":600,\"startRelative\":600},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power1.in\",\"start\":600,\"startRelative\":600},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power1.out\",\"start\":3000,\"startRelative\":2100},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"use\":true,\"yoyo_move\":true,\"yoyo_scale\":true,\"yoyo_filter\":true,\"frame_0\":{\"scaleX\":\"1\",\"scaleY\":\"1\"},\"frame_999\":{\"scaleX\":\"1.5\",\"scaleY\":\"1.5\"},\"speed\":3000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\",\"e\":true},\"t\":{\"v\":\"22\",\"e\":true},\"m\":{\"v\":\"22\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"action\":[{\"tooltip_event\":\"click\",\"action\":\"start_in\",\"image_link\":\"\",\"link_open_in\":\"_self\",\"link_follow\":\"follow\",\"jump_to_slide\":\"\",\"scrollunder_offset\":\"\",\"action_easing\":\"none\",\"action_speed\":\"\",\"actioncallback\":\"\",\"layer_target\":\"14\",\"link_type\":\"jquery\",\"action_delay\":\"100\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"},{\"tooltip_event\":\"click\",\"action\":\"start_in\",\"image_link\":\"\",\"link_open_in\":\"_self\",\"link_follow\":\"follow\",\"jump_to_slide\":\"\",\"scrollunder_offset\":\"\",\"action_easing\":\"none\",\"action_speed\":\"\",\"actioncallback\":\"\",\"layer_target\":\"15\",\"link_type\":\"jquery\",\"action_delay\":\"100\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"},{\"tooltip_event\":\"click\",\"action\":\"start_in\",\"image_link\":\"\",\"link_open_in\":\"_self\",\"link_follow\":\"follow\",\"jump_to_slide\":\"\",\"scrollunder_offset\":\"\",\"action_easing\":\"none\",\"action_speed\":\"\",\"actioncallback\":\"\",\"layer_target\":\"16\",\"link_type\":\"jquery\",\"action_delay\":\"300\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"},{\"tooltip_event\":\"click\",\"action\":\"start_in\",\"image_link\":\"\",\"link_open_in\":\"_self\",\"link_follow\":\"follow\",\"jump_to_slide\":\"\",\"scrollunder_offset\":\"\",\"action_easing\":\"none\",\"action_speed\":\"\",\"actioncallback\":\"\",\"layer_target\":\"17\",\"link_type\":\"jquery\",\"action_delay\":\"300\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"},{\"tooltip_event\":\"click\",\"action\":\"start_out\",\"image_link\":\"\",\"link_open_in\":\"_self\",\"link_follow\":\"follow\",\"jump_to_slide\":\"\",\"scrollunder_offset\":\"\",\"action_easing\":\"none\",\"action_speed\":\"\",\"actioncallback\":\"\",\"layer_target\":\"18\",\"link_type\":\"jquery\",\"action_delay\":\"100\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"}],\"triggerMemory\":\"keep\"},\"type\":\"image\",\"version\":\"6.4.0\"},\"14\":{\"text\":\"Image 1\",\"alias\":\"Close 2\",\"uid\":14,\"media\":{\"imageUrl\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/uploads\\/2017\\/06\\/interactive-map-slider-icon-open.png\",\"imageId\":3318},\"size\":{\"width\":{\"d\":{\"v\":\"26px\",\"e\":true},\"n\":{\"v\":\"26px\",\"e\":true},\"t\":{\"v\":\"26px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"26px\",\"e\":true},\"n\":{\"v\":\"26px\",\"e\":true},\"t\":{\"v\":\"26px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"originalWidth\":26,\"originalHeight\":26,\"aspectRatio\":{\"d\":{\"v\":1},\"n\":{\"v\":1},\"t\":{\"v\":1},\"m\":{\"v\":1}}},\"position\":{\"x\":{\"d\":{\"v\":\"-328px\",\"e\":true},\"n\":{\"v\":\"-242px\",\"e\":true},\"t\":{\"v\":\"-187px\",\"e\":true},\"m\":{\"v\":\"-91px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-129px\",\"e\":true},\"n\":{\"v\":\"-78px\",\"e\":true},\"t\":{\"v\":\"-71px\",\"e\":true},\"m\":{\"v\":\"-50px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":17,\"position\":\"relative\"},\"attributes\":{\"classes\":\"click-class\",\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":17,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":600},{\"id\":\"frame_999\",\"start\":2990}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power1.in\",\"start\":600,\"startRelative\":600},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power1.in\",\"start\":600,\"startRelative\":600,\"actionTriggered\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power1.out\",\"start\":2990,\"startRelative\":2090,\"actionTriggered\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\",\"e\":true},\"t\":{\"v\":\"22\",\"e\":true},\"m\":{\"v\":\"22\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"action\":[{\"tooltip_event\":\"click\",\"action\":\"start_out\",\"image_link\":\"\",\"link_open_in\":\"_self\",\"link_follow\":\"follow\",\"jump_to_slide\":\"\",\"scrollunder_offset\":\"\",\"action_easing\":\"none\",\"action_speed\":\"\",\"actioncallback\":\"\",\"layer_target\":\"14\",\"link_type\":\"jquery\",\"action_delay\":\"100\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"},{\"tooltip_event\":\"click\",\"action\":\"start_out\",\"image_link\":\"\",\"link_open_in\":\"_self\",\"link_follow\":\"follow\",\"jump_to_slide\":\"\",\"scrollunder_offset\":\"\",\"action_easing\":\"none\",\"action_speed\":\"\",\"actioncallback\":\"\",\"layer_target\":\"15\",\"link_type\":\"jquery\",\"action_delay\":\"100\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"},{\"tooltip_event\":\"click\",\"action\":\"start_out\",\"image_link\":\"\",\"link_open_in\":\"_self\",\"link_follow\":\"follow\",\"jump_to_slide\":\"\",\"scrollunder_offset\":\"\",\"action_easing\":\"none\",\"action_speed\":\"\",\"actioncallback\":\"\",\"layer_target\":\"16\",\"link_type\":\"jquery\",\"action_delay\":\"100\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"},{\"tooltip_event\":\"click\",\"action\":\"start_out\",\"image_link\":\"\",\"link_open_in\":\"_self\",\"link_follow\":\"follow\",\"jump_to_slide\":\"\",\"scrollunder_offset\":\"\",\"action_easing\":\"none\",\"action_speed\":\"\",\"actioncallback\":\"\",\"layer_target\":\"17\",\"link_type\":\"jquery\",\"action_delay\":\"100\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"},{\"tooltip_event\":\"click\",\"action\":\"start_in\",\"image_link\":\"\",\"link_open_in\":\"_self\",\"link_follow\":\"follow\",\"jump_to_slide\":\"\",\"scrollunder_offset\":\"\",\"action_easing\":\"none\",\"action_speed\":\"\",\"actioncallback\":\"\",\"layer_target\":\"18\",\"link_type\":\"jquery\",\"action_delay\":\"100\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"}],\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"image\",\"version\":\"6.4.0\"},\"15\":{\"text\":\"Image 3\",\"alias\":\"Cloud 2\",\"uid\":15,\"media\":{\"imageUrl\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/uploads\\/2017\\/06\\/interactive-map-slider-cloud.png\",\"imageId\":3316},\"size\":{\"width\":{\"d\":{\"v\":\"270px\",\"e\":true},\"n\":{\"v\":\"248px\",\"e\":true},\"t\":{\"v\":\"211px\",\"e\":true},\"m\":{\"v\":\"174px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"93px\",\"e\":true},\"n\":{\"v\":\"86px\",\"e\":true},\"t\":{\"v\":\"73px\",\"e\":true},\"m\":{\"v\":\"60px\",\"e\":true}},\"originalWidth\":270,\"originalHeight\":93,\"aspectRatio\":{\"d\":{\"v\":2.903225806451613},\"n\":{\"v\":2.903225806451613},\"t\":{\"v\":2.903225806451613},\"m\":{\"v\":2.903225806451613}}},\"position\":{\"x\":{\"d\":{\"v\":\"339px\",\"e\":true},\"n\":{\"v\":\"176px\",\"e\":true},\"t\":{\"v\":\"134px\",\"e\":true},\"m\":{\"v\":\"85px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-124px\",\"e\":true},\"n\":{\"v\":\"-80px\",\"e\":true},\"t\":{\"v\":\"-74px\",\"e\":true},\"m\":{\"v\":\"-49px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":18,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":18,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":10},{\"id\":\"frame_999\",\"start\":4000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.out\",\"start\":10,\"startRelative\":10},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.out\",\"start\":10,\"startRelative\":10,\"actionTriggered\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.in\",\"start\":4000,\"startRelative\":3690,\"actionTriggered\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\",\"e\":true},\"t\":{\"v\":\"22\",\"e\":true},\"m\":{\"v\":\"22\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"image\",\"version\":\"6.4.0\"},\"16\":{\"text\":\"Mikado USA\",\"alias\":\"Mikado USA\",\"uid\":16,\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"-224px\",\"e\":true},\"n\":{\"v\":\"-146px\",\"e\":true},\"t\":{\"v\":\"-97px\",\"e\":true},\"m\":{\"v\":\"-14px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-140px\",\"e\":true},\"n\":{\"v\":\"-94px\",\"e\":true},\"t\":{\"v\":\"-84px\",\"e\":true},\"m\":{\"v\":\"-58px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":19,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":19,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":10},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.out\",\"start\":10,\"startRelative\":10},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.out\",\"start\":10,\"startRelative\":10,\"actionTriggered\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.in\",\"start\":5000,\"startRelative\":4690,\"endWithSlide\":true,\"actionTriggered\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"#303030\",\"e\":true},\"n\":{\"v\":\"#303030\",\"e\":true},\"t\":{\"v\":\"#303030\",\"e\":true},\"m\":{\"v\":\"#303030\",\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Merriweather\",\"fontSize\":{\"d\":{\"v\":\"16px\",\"e\":true},\"n\":{\"v\":\"14px\",\"e\":true},\"t\":{\"v\":\"13px\",\"e\":true},\"m\":{\"v\":\"12px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"26px\",\"e\":true},\"n\":{\"v\":\"24px\",\"e\":true},\"t\":{\"v\":\"14px\",\"e\":true},\"m\":{\"v\":\"14px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"#303030\",\"e\":true},\"n\":{\"v\":\"#303030\",\"e\":true},\"t\":{\"v\":\"#303030\",\"e\":true},\"m\":{\"v\":\"#303030\",\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"},\"17\":{\"text\":\"1134 Williams Avenue, NYC\",\"alias\":\"1134 Williams Avenue...\",\"uid\":17,\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"-186px\",\"e\":true},\"n\":{\"v\":\"-112px\",\"e\":true},\"t\":{\"v\":\"-69px\",\"e\":true},\"m\":{\"v\":\"11px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-113px\",\"e\":true},\"n\":{\"v\":\"-72px\",\"e\":true},\"t\":{\"v\":\"-65px\",\"e\":true},\"m\":{\"v\":\"-42px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":20,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":20,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":10},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.out\",\"start\":10,\"startRelative\":10},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.out\",\"start\":10,\"startRelative\":10,\"actionTriggered\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.in\",\"start\":5000,\"startRelative\":4690,\"endWithSlide\":true,\"actionTriggered\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"#808080\",\"e\":true},\"n\":{\"v\":\"#808080\",\"e\":true},\"t\":{\"v\":\"#808080\",\"e\":true},\"m\":{\"v\":\"#808080\",\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"14px\",\"e\":true},\"n\":{\"v\":\"12px\",\"e\":true},\"t\":{\"v\":\"11px\",\"e\":true},\"m\":{\"v\":\"10px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"24px\",\"e\":true},\"n\":{\"v\":\"24px\",\"e\":true},\"t\":{\"v\":\"12px\",\"e\":true},\"m\":{\"v\":\"12px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"#808080\",\"e\":true},\"n\":{\"v\":\"#808080\",\"e\":true},\"t\":{\"v\":\"#808080\",\"e\":true},\"m\":{\"v\":\"#808080\",\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"},\"24\":{\"text\":\"Image 2\",\"alias\":\"Open 3\",\"uid\":24,\"media\":{\"imageUrl\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/uploads\\/2017\\/06\\/interactive-map-slider-icon-close.png\",\"imageId\":3317},\"size\":{\"width\":{\"d\":{\"v\":\"16px\",\"e\":true},\"n\":{\"v\":\"16px\",\"e\":true},\"t\":{\"v\":\"16px\",\"e\":true},\"m\":{\"v\":\"10px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"16px\",\"e\":true},\"n\":{\"v\":\"16px\",\"e\":true},\"t\":{\"v\":\"16px\",\"e\":true},\"m\":{\"v\":\"10px\",\"e\":true}},\"originalWidth\":16,\"originalHeight\":16,\"aspectRatio\":{\"d\":{\"v\":1},\"n\":{\"v\":1},\"t\":{\"v\":1},\"m\":{\"v\":1}}},\"position\":{\"x\":{\"d\":{\"v\":\"-213px\",\"e\":true},\"n\":{\"v\":\"-154px\",\"e\":true},\"t\":{\"v\":\"-122px\",\"e\":true},\"m\":{\"v\":\"-73px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"169px\",\"e\":true},\"n\":{\"v\":\"133px\",\"e\":true},\"t\":{\"v\":\"98px\",\"e\":true},\"m\":{\"v\":\"40px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":21,\"position\":\"relative\"},\"attributes\":{\"classes\":\"click-class\",\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":21,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":800},{\"id\":\"frame_999\",\"start\":3000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power1.in\",\"start\":800,\"startRelative\":800},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power1.in\",\"start\":800,\"startRelative\":800},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power1.out\",\"start\":3000,\"startRelative\":1900},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"use\":true,\"yoyo_move\":true,\"yoyo_scale\":true,\"yoyo_filter\":true,\"frame_0\":{\"scaleX\":\"1\",\"scaleY\":\"1\"},\"frame_999\":{\"scaleX\":\"1.5\",\"scaleY\":\"1.5\"},\"speed\":3000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\",\"e\":true},\"t\":{\"v\":\"22\",\"e\":true},\"m\":{\"v\":\"22\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"action\":[{\"tooltip_event\":\"click\",\"action\":\"start_in\",\"image_link\":\"\",\"link_open_in\":\"_self\",\"link_follow\":\"follow\",\"jump_to_slide\":\"\",\"scrollunder_offset\":\"\",\"action_easing\":\"none\",\"action_speed\":\"\",\"actioncallback\":\"\",\"layer_target\":\"20\",\"link_type\":\"jquery\",\"action_delay\":\"100\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"},{\"tooltip_event\":\"click\",\"action\":\"start_in\",\"image_link\":\"\",\"link_open_in\":\"_self\",\"link_follow\":\"follow\",\"jump_to_slide\":\"\",\"scrollunder_offset\":\"\",\"action_easing\":\"none\",\"action_speed\":\"\",\"actioncallback\":\"\",\"layer_target\":\"21\",\"link_type\":\"jquery\",\"action_delay\":\"100\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"},{\"tooltip_event\":\"click\",\"action\":\"start_in\",\"image_link\":\"\",\"link_open_in\":\"_self\",\"link_follow\":\"follow\",\"jump_to_slide\":\"\",\"scrollunder_offset\":\"\",\"action_easing\":\"none\",\"action_speed\":\"\",\"actioncallback\":\"\",\"layer_target\":\"22\",\"link_type\":\"jquery\",\"action_delay\":\"300\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"},{\"tooltip_event\":\"click\",\"action\":\"start_in\",\"image_link\":\"\",\"link_open_in\":\"_self\",\"link_follow\":\"follow\",\"jump_to_slide\":\"\",\"scrollunder_offset\":\"\",\"action_easing\":\"none\",\"action_speed\":\"\",\"actioncallback\":\"\",\"layer_target\":\"23\",\"link_type\":\"jquery\",\"action_delay\":\"300\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"},{\"tooltip_event\":\"click\",\"action\":\"start_out\",\"image_link\":\"\",\"link_open_in\":\"_self\",\"link_follow\":\"follow\",\"jump_to_slide\":\"\",\"scrollunder_offset\":\"\",\"action_easing\":\"none\",\"action_speed\":\"\",\"actioncallback\":\"\",\"layer_target\":\"24\",\"link_type\":\"jquery\",\"action_delay\":\"100\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"}],\"triggerMemory\":\"keep\"},\"type\":\"image\",\"version\":\"6.4.0\"},\"20\":{\"text\":\"Image 1\",\"alias\":\"Close 3\",\"uid\":20,\"media\":{\"imageUrl\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/uploads\\/2017\\/06\\/interactive-map-slider-icon-open.png\",\"imageId\":3318},\"size\":{\"width\":{\"d\":{\"v\":\"26px\",\"e\":true},\"n\":{\"v\":\"26px\",\"e\":true},\"t\":{\"v\":\"26px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"26px\",\"e\":true},\"n\":{\"v\":\"26px\",\"e\":true},\"t\":{\"v\":\"26px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"originalWidth\":26,\"originalHeight\":26,\"aspectRatio\":{\"d\":{\"v\":1},\"n\":{\"v\":1},\"t\":{\"v\":1},\"m\":{\"v\":1}}},\"position\":{\"x\":{\"d\":{\"v\":\"-212px\",\"e\":true},\"n\":{\"v\":\"-153px\",\"e\":true},\"t\":{\"v\":\"-123px\",\"e\":true},\"m\":{\"v\":\"-72px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"168px\",\"e\":true},\"n\":{\"v\":\"132px\",\"e\":true},\"t\":{\"v\":\"96px\",\"e\":true},\"m\":{\"v\":\"41px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":22,\"position\":\"relative\"},\"attributes\":{\"classes\":\"click-class\",\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":22,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":800},{\"id\":\"frame_999\",\"start\":2990}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power1.in\",\"start\":800,\"startRelative\":800},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power1.in\",\"start\":800,\"startRelative\":800,\"actionTriggered\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power1.out\",\"start\":2990,\"startRelative\":1890,\"actionTriggered\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\",\"e\":true},\"t\":{\"v\":\"22\",\"e\":true},\"m\":{\"v\":\"22\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"action\":[{\"tooltip_event\":\"click\",\"action\":\"start_out\",\"image_link\":\"\",\"link_open_in\":\"_self\",\"link_follow\":\"follow\",\"jump_to_slide\":\"\",\"scrollunder_offset\":\"\",\"action_easing\":\"none\",\"action_speed\":\"\",\"actioncallback\":\"\",\"layer_target\":\"20\",\"link_type\":\"jquery\",\"action_delay\":\"100\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"},{\"tooltip_event\":\"click\",\"action\":\"start_out\",\"image_link\":\"\",\"link_open_in\":\"_self\",\"link_follow\":\"follow\",\"jump_to_slide\":\"\",\"scrollunder_offset\":\"\",\"action_easing\":\"none\",\"action_speed\":\"\",\"actioncallback\":\"\",\"layer_target\":\"21\",\"link_type\":\"jquery\",\"action_delay\":\"100\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"},{\"tooltip_event\":\"click\",\"action\":\"start_out\",\"image_link\":\"\",\"link_open_in\":\"_self\",\"link_follow\":\"follow\",\"jump_to_slide\":\"\",\"scrollunder_offset\":\"\",\"action_easing\":\"none\",\"action_speed\":\"\",\"actioncallback\":\"\",\"layer_target\":\"22\",\"link_type\":\"jquery\",\"action_delay\":\"100\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"},{\"tooltip_event\":\"click\",\"action\":\"start_out\",\"image_link\":\"\",\"link_open_in\":\"_self\",\"link_follow\":\"follow\",\"jump_to_slide\":\"\",\"scrollunder_offset\":\"\",\"action_easing\":\"none\",\"action_speed\":\"\",\"actioncallback\":\"\",\"layer_target\":\"23\",\"link_type\":\"jquery\",\"action_delay\":\"100\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"},{\"tooltip_event\":\"click\",\"action\":\"start_in\",\"image_link\":\"\",\"link_open_in\":\"_self\",\"link_follow\":\"follow\",\"jump_to_slide\":\"\",\"scrollunder_offset\":\"\",\"action_easing\":\"none\",\"action_speed\":\"\",\"actioncallback\":\"\",\"layer_target\":\"24\",\"link_type\":\"jquery\",\"action_delay\":\"100\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"}],\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"image\",\"version\":\"6.4.0\"},\"21\":{\"text\":\"Image 3\",\"alias\":\"Cloud 3\",\"uid\":21,\"media\":{\"imageUrl\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/uploads\\/2017\\/06\\/interactive-map-slider-cloud.png\",\"imageId\":3316},\"size\":{\"width\":{\"d\":{\"v\":\"270px\",\"e\":true},\"n\":{\"v\":\"250px\",\"e\":true},\"t\":{\"v\":\"206px\",\"e\":true},\"m\":{\"v\":\"162px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"93px\",\"e\":true},\"n\":{\"v\":\"86px\",\"e\":true},\"t\":{\"v\":\"71px\",\"e\":true},\"m\":{\"v\":\"56px\",\"e\":true}},\"originalWidth\":270,\"originalHeight\":93,\"aspectRatio\":{\"d\":{\"v\":2.903225806451613},\"n\":{\"v\":2.903225806451613},\"t\":{\"v\":2.903225806451613},\"m\":{\"v\":2.903225806451613}}},\"position\":{\"x\":{\"d\":{\"v\":\"452px\",\"e\":true},\"n\":{\"v\":\"267px\",\"e\":true},\"t\":{\"v\":\"201px\",\"e\":true},\"m\":{\"v\":\"104px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"171px\",\"e\":true},\"n\":{\"v\":\"131px\",\"e\":true},\"t\":{\"v\":\"96px\",\"e\":true},\"m\":{\"v\":\"42px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":23,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":23,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":10},{\"id\":\"frame_999\",\"start\":4000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.out\",\"start\":10,\"startRelative\":10},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.out\",\"start\":10,\"startRelative\":10,\"actionTriggered\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.in\",\"start\":4000,\"startRelative\":3690,\"actionTriggered\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\",\"e\":true},\"t\":{\"v\":\"22\",\"e\":true},\"m\":{\"v\":\"22\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"image\",\"version\":\"6.4.0\"},\"22\":{\"text\":\"Mikado Brazil\",\"alias\":\"Mikado Brazil\",\"uid\":22,\"size\":{\"width\":{\"d\":{\"v\":\"122px\",\"e\":true},\"n\":{\"v\":\"122px\",\"e\":true},\"t\":{\"v\":\"122px\",\"e\":true},\"m\":{\"v\":\"122px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"122px\"},\"position\":{\"x\":{\"d\":{\"v\":\"-102px\",\"e\":true},\"n\":{\"v\":\"-37px\",\"e\":true},\"t\":{\"v\":\"-10px\",\"e\":true},\"m\":{\"v\":\"25px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"155px\",\"e\":true},\"n\":{\"v\":\"118px\",\"e\":true},\"t\":{\"v\":\"86px\",\"e\":true},\"m\":{\"v\":\"33px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":24,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":24,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":10},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.out\",\"start\":10,\"startRelative\":10},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.out\",\"start\":10,\"startRelative\":10,\"actionTriggered\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.in\",\"start\":5000,\"startRelative\":4690,\"endWithSlide\":true,\"actionTriggered\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"#303030\",\"e\":true},\"n\":{\"v\":\"#303030\",\"e\":true},\"t\":{\"v\":\"#303030\",\"e\":true},\"m\":{\"v\":\"#303030\",\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Merriweather\",\"fontSize\":{\"d\":{\"v\":\"16px\",\"e\":true},\"n\":{\"v\":\"14px\",\"e\":true},\"t\":{\"v\":\"13px\",\"e\":true},\"m\":{\"v\":\"12px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"26px\",\"e\":true},\"n\":{\"v\":\"24px\",\"e\":true},\"t\":{\"v\":\"14px\",\"e\":true},\"m\":{\"v\":\"14px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"#303030\",\"e\":true},\"n\":{\"v\":\"#303030\",\"e\":true},\"t\":{\"v\":\"#303030\",\"e\":true},\"m\":{\"v\":\"#303030\",\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"},\"23\":{\"text\":\"Rua da Paz 137, Sao Paulo\",\"alias\":\"Rua da Paz 137, Sao ...\",\"uid\":23,\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"-78px\",\"e\":true},\"n\":{\"v\":\"-24px\",\"e\":true},\"t\":{\"v\":\"-2px\",\"e\":true},\"m\":{\"v\":\"25px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"182px\",\"e\":true},\"n\":{\"v\":\"139px\",\"e\":true},\"t\":{\"v\":\"104px\",\"e\":true},\"m\":{\"v\":\"48px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":25,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":25,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":10},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.out\",\"start\":10,\"startRelative\":10},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.out\",\"start\":10,\"startRelative\":10,\"actionTriggered\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.in\",\"start\":5000,\"startRelative\":4690,\"endWithSlide\":true,\"actionTriggered\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"#808080\",\"e\":true},\"n\":{\"v\":\"#808080\",\"e\":true},\"t\":{\"v\":\"#808080\",\"e\":true},\"m\":{\"v\":\"#808080\",\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"14px\",\"e\":true},\"n\":{\"v\":\"12px\",\"e\":true},\"t\":{\"v\":\"11px\",\"e\":true},\"m\":{\"v\":\"10px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"24px\",\"e\":true},\"n\":{\"v\":\"22px\",\"e\":true},\"t\":{\"v\":\"12px\",\"e\":true},\"m\":{\"v\":\"12px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"#808080\",\"e\":true},\"n\":{\"v\":\"#808080\",\"e\":true},\"t\":{\"v\":\"#808080\",\"e\":true},\"m\":{\"v\":\"#808080\",\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"}}','{\"0\":\"\",\"version\":\"6.4.0\"}'),(22,10,2,'{\"title\":\"Slide\",\"bg\":{\"color\":\"#E7E7E7\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"volume\":\"\"}},\"thumb\":{\"dimension\":\"slider\"},\"timeline\":{\"slots\":[\"default\"],\"duration\":[600]},\"panzoom\":{\"ease\":\"none\"},\"version\":\"6.4.0\"}','{\"1\":{\"text\":\"iAcademy. Premium Education\",\"alias\":\"Title\",\"uid\":1,\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"595px\",\"e\":true},\"m\":{\"v\":\"320px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"-2px\",\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-31px\",\"e\":true},\"n\":{\"v\":\"-32px\",\"e\":true},\"t\":{\"v\":\"-42px\",\"e\":true},\"m\":{\"v\":\"-55px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":5,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":5,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":400},{\"id\":\"frame_999\",\"start\":4000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":400,\"startRelative\":400},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":400,\"startRelative\":400},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":4000,\"startRelative\":3100,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"#282727\",\"e\":true},\"n\":{\"v\":\"#282727\",\"e\":true},\"t\":{\"v\":\"#282727\",\"e\":true},\"m\":{\"v\":\"#282727\",\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Merriweather\",\"fontSize\":{\"d\":{\"v\":\"45px\",\"e\":true},\"n\":{\"v\":\"36px\",\"e\":true},\"t\":{\"v\":\"28px\",\"e\":true},\"m\":{\"v\":\"24px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"55px\",\"e\":true},\"n\":{\"v\":\"46px\",\"e\":true},\"t\":{\"v\":\"38px\",\"e\":true},\"m\":{\"v\":\"34px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"normal\",\"e\":true},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"#282727\",\"e\":true},\"n\":{\"v\":\"#282727\",\"e\":true},\"t\":{\"v\":\"#282727\",\"e\":true},\"m\":{\"v\":\"#282727\",\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"},\"3\":{\"text\":\"A splendid theme made for all types of online lectures, schools, and educational institutions. Packed with 12 modern homepage layouts which can be easily customized to fit your needs.\",\"alias\":\"Empowering children ...\",\"uid\":3,\"size\":{\"width\":{\"d\":{\"v\":\"812px\",\"e\":true},\"n\":{\"v\":\"739px\",\"e\":true},\"t\":{\"v\":\"478px\",\"e\":true},\"m\":{\"v\":\"320px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"59px\",\"e\":true},\"n\":{\"v\":\"65px\",\"e\":true},\"t\":{\"v\":\"91px\",\"e\":true},\"m\":{\"v\":\"125px\",\"e\":true}},\"originalWidth\":\"812px\",\"originalHeight\":\"59px\"},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"52px\",\"e\":true},\"n\":{\"v\":\"46px\",\"e\":true},\"t\":{\"v\":\"44px\",\"e\":true},\"m\":{\"v\":\"56px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":6,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":6,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":700},{\"id\":\"frame_999\",\"start\":4000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":700,\"startRelative\":700},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":700,\"startRelative\":700},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":4000,\"startRelative\":2800,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"#595959\",\"e\":true},\"n\":{\"v\":\"#595959\",\"e\":true},\"t\":{\"v\":\"#595959\",\"e\":true},\"m\":{\"v\":\"#595959\",\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"17px\",\"e\":true},\"n\":{\"v\":\"17px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"14px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"27px\",\"e\":true},\"n\":{\"v\":\"25px\",\"e\":true},\"t\":{\"v\":\"25px\",\"e\":true},\"m\":{\"v\":\"24px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"v\":\"normal\",\"e\":true},\"n\":{\"v\":\"normal\",\"e\":true},\"t\":{\"v\":\"normal\",\"e\":true},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"#595959\",\"e\":true},\"n\":{\"v\":\"#595959\",\"e\":true},\"t\":{\"v\":\"#595959\",\"e\":true},\"m\":{\"v\":\"#595959\",\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"},\"5\":{\"text\":\"Image 4\",\"alias\":\"Image 4\",\"uid\":5,\"media\":{\"imageUrl\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/uploads\\/2017\\/06\\/landing-slider-1-logo.png\",\"imageId\":2931},\"size\":{\"width\":{\"d\":{\"v\":\"83px\",\"e\":true},\"n\":{\"v\":\"66px\",\"e\":true},\"t\":{\"v\":\"66px\",\"e\":true},\"m\":{\"v\":\"66px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"79px\",\"e\":true},\"n\":{\"v\":\"63px\",\"e\":true},\"t\":{\"v\":\"63px\",\"e\":true},\"m\":{\"v\":\"63px\",\"e\":true}},\"originalWidth\":83,\"originalHeight\":79,\"aspectRatio\":{\"d\":{\"v\":1.0506329113924051},\"n\":{\"v\":1.0506329113924051},\"t\":{\"v\":1.0506329113924051},\"m\":{\"v\":1.0506329113924051}}},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-128px\",\"e\":true},\"n\":{\"v\":\"-120px\",\"e\":true},\"t\":{\"v\":\"-120px\",\"e\":true},\"m\":{\"v\":\"-151px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":7,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":7,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":4000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":0},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":0},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":4000,\"startRelative\":3700,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"fontFamily\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\",\"e\":true},\"t\":{\"v\":\"22\",\"e\":true},\"m\":{\"v\":\"22\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"v\":\"normal\",\"e\":true},\"n\":{\"v\":\"normal\",\"e\":true},\"t\":{\"v\":\"normal\",\"e\":true},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"image\",\"version\":\"6.4.0\"}}','{\"0\":\"\",\"version\":\"6.4.0\"}'),(23,11,2,'{\"title\":\"Slide\",\"bg\":{\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"volume\":\"\"}},\"thumb\":{\"dimension\":\"slider\"},\"timeline\":{\"slots\":[\"default\"],\"duration\":[600]},\"panzoom\":{\"ease\":\"none\"},\"version\":\"6.4.0\"}','{\"7\":{\"text\":\"Image 4\",\"alias\":\"Image 4\",\"uid\":7,\"media\":{\"imageUrl\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/uploads\\/2017\\/06\\/landing-slider-2-img-1.png\",\"imageId\":3439},\"size\":{\"width\":{\"d\":{\"v\":\"620px\",\"e\":true},\"n\":{\"v\":\"435px\",\"e\":true},\"t\":{\"v\":\"435px\"},\"m\":{\"v\":\"284px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"620px\",\"e\":true},\"n\":{\"v\":\"435px\",\"e\":true},\"t\":{\"v\":\"435px\"},\"m\":{\"v\":\"284px\",\"e\":true}},\"originalWidth\":620,\"originalHeight\":620,\"aspectRatio\":{\"d\":{\"v\":1},\"n\":{\"v\":1},\"t\":{\"v\":1},\"m\":{\"v\":1}}},\"position\":{\"x\":{\"d\":{\"v\":\"17px\",\"e\":true},\"n\":{\"v\":\"-3px\",\"e\":true},\"t\":{\"v\":\"-3px\"},\"m\":{\"v\":\"12px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-3px\",\"e\":true},\"n\":{\"v\":\"12px\",\"e\":true},\"t\":{\"v\":\"12px\"},\"m\":{\"v\":\"4px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":5,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":5,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":10},{\"id\":\"frame_999\",\"start\":4000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"0\",\"scaleX\":\"0.9\",\"scaleY\":\"0.9\",\"opacity\":\"0\",\"rotationX\":\"0\",\"rotationY\":\"0\",\"rotationZ\":\"0\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"mask\":{\"x\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"top\"},\"n\":{\"v\":\"top\"},\"t\":{\"v\":\"top\"},\"m\":{\"v\":\"top\"}}},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":800,\"start\":10,\"startRelative\":10},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":800,\"start\":10,\"startRelative\":10},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":4000,\"startRelative\":3190,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"use\":true,\"yoyo_move\":true,\"yoyo_scale\":true,\"yoyo_filter\":true,\"frame_0\":{\"scaleX\":\"1\",\"scaleY\":\"1\"},\"frame_999\":{\"scaleX\":\"1.05\",\"scaleY\":\"1.05\"},\"speed\":4000,\"ease\":\"power2.inOut\"}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\",\"e\":true},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"image\",\"version\":\"6.4.0\"},\"11\":{\"text\":\"Image 8\",\"alias\":\"Image 8\",\"uid\":11,\"media\":{\"imageUrl\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/uploads\\/2017\\/06\\/landing-slider-2-img-2.png\",\"imageId\":3440},\"size\":{\"width\":{\"d\":{\"v\":\"329px\",\"e\":true},\"n\":{\"v\":\"237px\",\"e\":true},\"t\":{\"v\":\"213px\",\"e\":true},\"m\":{\"v\":\"213px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"122px\",\"e\":true},\"n\":{\"v\":\"88px\",\"e\":true},\"t\":{\"v\":\"79px\",\"e\":true},\"m\":{\"v\":\"79px\",\"e\":true}},\"originalWidth\":329,\"originalHeight\":122,\"aspectRatio\":{\"d\":{\"v\":2.69672131147541},\"n\":{\"v\":2.69672131147541},\"t\":{\"v\":2.69672131147541},\"m\":{\"v\":2.69672131147541}}},\"position\":{\"x\":{\"d\":{\"v\":\"155px\",\"e\":true},\"n\":{\"v\":\"-56px\",\"e\":true},\"t\":{\"v\":\"-73px\",\"e\":true},\"m\":{\"v\":\"-392px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"94px\",\"e\":true},\"n\":{\"v\":\"-130px\",\"e\":true},\"t\":{\"v\":\"-133px\",\"e\":true},\"m\":{\"v\":\"-107px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":6,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":6,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":700},{\"id\":\"frame_999\",\"start\":4000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"-100%\"},\"n\":{\"v\":\"-100%\"},\"t\":{\"v\":\"-100%\"},\"m\":{\"v\":\"-100%\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"0\",\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":\"0deg\",\"rotationY\":\"0\",\"rotationZ\":\"0\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"mask\":{\"use\":true,\"x\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":800,\"start\":700,\"startRelative\":700},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"mask\":{\"use\":true},\"timeline\":{\"ease\":\"power2.out\",\"speed\":800,\"start\":700,\"startRelative\":700},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":4000,\"startRelative\":2500,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\",\"e\":true},\"t\":{\"v\":\"22\",\"e\":true},\"m\":{\"v\":\"22\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"action\":[{\"tooltip_event\":\"click\",\"action\":\"link\",\"image_link\":\"http:\\/\\/iacademy.mikado-themes.com\\/instructor\\/kathryn-webb\\/\",\"link_open_in\":\"_blank\",\"link_follow\":\"follow\",\"jump_to_slide\":\"\",\"scrollunder_offset\":\"\",\"action_easing\":\"none\",\"action_speed\":\"\",\"actioncallback\":\"\",\"layer_target\":\"backgroundvideo\",\"link_type\":\"a\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"}],\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"visibility\":{\"m\":false},\"type\":\"image\",\"version\":\"6.4.0\"},\"8\":{\"text\":\"Image 5\",\"alias\":\"Image 5\",\"uid\":8,\"media\":{\"imageUrl\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/uploads\\/2017\\/06\\/landing-slider-2-img-5.png\",\"imageId\":3443},\"size\":{\"width\":{\"d\":{\"v\":\"310px\",\"e\":true},\"n\":{\"v\":\"194px\",\"e\":true},\"t\":{\"v\":\"190px\",\"e\":true},\"m\":{\"v\":\"132px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"566px\",\"e\":true},\"n\":{\"v\":\"356px\",\"e\":true},\"t\":{\"v\":\"347px\",\"e\":true},\"m\":{\"v\":\"243px\",\"e\":true}},\"originalWidth\":310,\"originalHeight\":566,\"aspectRatio\":{\"d\":{\"v\":0.5477031802120141},\"n\":{\"v\":0.5477031802120141},\"t\":{\"v\":0.5477031802120141},\"m\":{\"v\":0.5477031802120141}}},\"position\":{\"x\":{\"d\":{\"v\":\"147px\",\"e\":true},\"n\":{\"v\":\"82px\",\"e\":true},\"t\":{\"v\":\"72px\",\"e\":true},\"m\":{\"v\":\"4px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"27px\",\"e\":true},\"n\":{\"v\":\"25px\",\"e\":true},\"t\":{\"v\":\"13px\",\"e\":true},\"m\":{\"v\":\"13px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":7,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":7,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":400},{\"id\":\"frame_999\",\"start\":4000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"0\",\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":\"0deg\",\"rotationY\":\"0\",\"rotationZ\":\"0\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"mask\":{\"use\":true,\"x\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":800,\"start\":400,\"startRelative\":400},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"mask\":{\"use\":true},\"timeline\":{\"ease\":\"power2.out\",\"speed\":800,\"start\":400,\"startRelative\":400},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":4000,\"startRelative\":2800,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\",\"e\":true},\"t\":{\"v\":\"22\",\"e\":true},\"m\":{\"v\":\"22\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"action\":[{\"tooltip_event\":\"click\",\"action\":\"link\",\"image_link\":\"http:\\/\\/iacademy.mikado-themes.com\\/instructor\\/edward-bowman\\/\",\"link_open_in\":\"_blank\",\"link_follow\":\"follow\",\"jump_to_slide\":\"\",\"scrollunder_offset\":\"\",\"action_easing\":\"none\",\"action_speed\":\"\",\"actioncallback\":\"\",\"layer_target\":\"backgroundvideo\",\"link_type\":\"a\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"}],\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"image\",\"version\":\"6.4.0\"},\"9\":{\"text\":\"Image 6\",\"alias\":\"Image 6\",\"uid\":9,\"media\":{\"imageUrl\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/uploads\\/2017\\/06\\/landing-slider-2-img-4.png\",\"imageId\":3442},\"size\":{\"width\":{\"d\":{\"v\":\"418px\",\"e\":true},\"n\":{\"v\":\"254px\",\"e\":true},\"t\":{\"v\":\"254px\"},\"m\":{\"v\":\"237px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"148px\",\"e\":true},\"n\":{\"v\":\"90px\",\"e\":true},\"t\":{\"v\":\"90px\"},\"m\":{\"v\":\"84px\",\"e\":true}},\"originalWidth\":418,\"originalHeight\":148,\"aspectRatio\":{\"d\":{\"v\":2.824324324324324},\"n\":{\"v\":2.824324324324324},\"t\":{\"v\":2.824324324324324},\"m\":{\"v\":2.824324324324324}}},\"position\":{\"x\":{\"d\":{\"v\":\"-27px\",\"e\":true},\"n\":{\"v\":\"-54px\",\"e\":true},\"t\":{\"v\":\"-54px\"},\"m\":{\"v\":\"-410px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"143px\",\"e\":true},\"n\":{\"v\":\"99px\",\"e\":true},\"t\":{\"v\":\"99px\"},\"m\":{\"v\":\"78px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":8,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":8,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1300},{\"id\":\"frame_999\",\"start\":4000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"-100%\"},\"n\":{\"v\":\"-100%\"},\"t\":{\"v\":\"-100%\"},\"m\":{\"v\":\"-100%\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"0\",\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":\"0deg\",\"rotationY\":\"0\",\"rotationZ\":\"0\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"mask\":{\"use\":true,\"x\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":800,\"start\":1300,\"startRelative\":1300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"mask\":{\"use\":true},\"timeline\":{\"ease\":\"power2.out\",\"speed\":800,\"start\":1300,\"startRelative\":1300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":4000,\"startRelative\":1900,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\",\"e\":true},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"action\":[{\"tooltip_event\":\"click\",\"action\":\"link\",\"image_link\":\"http:\\/\\/iacademy.mikado-themes.com\\/instructor\\/jennifer-powell\\/\",\"link_open_in\":\"_blank\",\"link_follow\":\"follow\",\"jump_to_slide\":\"\",\"scrollunder_offset\":\"\",\"action_easing\":\"none\",\"action_speed\":\"\",\"actioncallback\":\"\",\"layer_target\":\"backgroundvideo\",\"link_type\":\"a\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"}],\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"visibility\":{\"m\":false},\"type\":\"image\",\"version\":\"6.4.0\"},\"10\":{\"text\":\"Image 7\",\"alias\":\"Image 7\",\"uid\":10,\"media\":{\"imageUrl\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/uploads\\/2017\\/06\\/landing-slider-2-img-3.png\",\"imageId\":3441},\"size\":{\"width\":{\"d\":{\"v\":\"446px\",\"e\":true},\"n\":{\"v\":\"273px\",\"e\":true},\"t\":{\"v\":\"273px\"},\"m\":{\"v\":\"245px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"157px\",\"e\":true},\"n\":{\"v\":\"96px\",\"e\":true},\"t\":{\"v\":\"96px\"},\"m\":{\"v\":\"86px\",\"e\":true}},\"originalWidth\":446,\"originalHeight\":157,\"aspectRatio\":{\"d\":{\"v\":2.840764331210191},\"n\":{\"v\":2.840764331210191},\"t\":{\"v\":2.840764331210191},\"m\":{\"v\":2.840764331210191}}},\"position\":{\"x\":{\"d\":{\"v\":\"-108px\",\"e\":true},\"n\":{\"v\":\"-105px\",\"e\":true},\"t\":{\"v\":\"-105px\"},\"m\":{\"v\":\"-411px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-73px\",\"e\":true},\"n\":{\"v\":\"-23px\",\"e\":true},\"t\":{\"v\":\"-23px\"},\"m\":{\"v\":\"-18px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":9,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":9,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1000},{\"id\":\"frame_999\",\"start\":4000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"-100%\"},\"n\":{\"v\":\"-100%\"},\"t\":{\"v\":\"-100%\"},\"m\":{\"v\":\"-100%\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"0\",\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":\"0deg\",\"rotationY\":\"0\",\"rotationZ\":\"0\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"mask\":{\"use\":true,\"x\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":800,\"start\":1000,\"startRelative\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"mask\":{\"use\":true},\"timeline\":{\"ease\":\"power2.out\",\"speed\":800,\"start\":1000,\"startRelative\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":4000,\"startRelative\":2200,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\",\"e\":true},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"action\":[{\"tooltip_event\":\"click\",\"action\":\"link\",\"image_link\":\"http:\\/\\/iacademy.mikado-themes.com\\/instructor\\/dave-robbins\\/\",\"link_open_in\":\"_blank\",\"link_follow\":\"follow\",\"jump_to_slide\":\"\",\"scrollunder_offset\":\"\",\"action_easing\":\"none\",\"action_speed\":\"\",\"actioncallback\":\"\",\"layer_target\":\"backgroundvideo\",\"link_type\":\"a\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"}],\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"visibility\":{\"m\":false},\"type\":\"image\",\"version\":\"6.4.0\"},\"12\":{\"text\":\"Image 9\",\"alias\":\"Image 9\",\"uid\":12,\"media\":{\"imageUrl\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/uploads\\/2017\\/06\\/landing-slider-2-img-7.png\",\"imageId\":3445},\"size\":{\"width\":{\"d\":{\"v\":\"29px\",\"e\":true},\"n\":{\"v\":\"31px\",\"e\":true},\"t\":{\"v\":\"25px\",\"e\":true},\"m\":{\"v\":\"23px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"32px\",\"e\":true},\"t\":{\"v\":\"26px\",\"e\":true},\"m\":{\"v\":\"24px\",\"e\":true}},\"originalWidth\":29,\"originalHeight\":30,\"aspectRatio\":{\"d\":{\"v\":0.9666666666666667},\"n\":{\"v\":0.9666666666666667},\"t\":{\"v\":0.9666666666666667},\"m\":{\"v\":0.9666666666666667}}},\"position\":{\"x\":{\"d\":{\"v\":\"502px\",\"e\":true},\"n\":{\"v\":\"78px\",\"e\":true},\"t\":{\"v\":\"53px\",\"e\":true},\"m\":{\"v\":\"56px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"70px\",\"e\":true},\"n\":{\"v\":\"-192px\",\"e\":true},\"t\":{\"v\":\"-191px\",\"e\":true},\"m\":{\"v\":\"-133px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":10,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":10,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":600},{\"id\":\"frame_999\",\"start\":4000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"0\",\"scaleX\":\"0.9\",\"scaleY\":\"0.9\",\"opacity\":\"0\",\"rotationX\":\"0\",\"rotationY\":\"0\",\"rotationZ\":\"0\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"mask\":{\"x\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"top\"},\"n\":{\"v\":\"top\"},\"t\":{\"v\":\"top\"},\"m\":{\"v\":\"top\"}}},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"start\":600,\"startRelative\":600},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"start\":600,\"startRelative\":600},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":4000,\"startRelative\":3100,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"use\":true,\"curved\":true,\"yoyo_scale\":true,\"yoyo_filter\":true,\"frame_0\":{\"xr\":\"9px\",\"yr\":\"9px\"},\"frame_999\":{\"xr\":\"9px\",\"yr\":\"9px\"},\"speed\":3000,\"originX\":60,\"originY\":50}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\",\"e\":true},\"t\":{\"v\":\"22\",\"e\":true},\"m\":{\"v\":\"22\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"image\",\"version\":\"6.4.0\"},\"13\":{\"text\":\"Image 10\",\"alias\":\"Image 10\",\"uid\":13,\"media\":{\"imageUrl\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/uploads\\/2017\\/06\\/landing-slider-2-img-8.png\",\"imageId\":3446},\"size\":{\"width\":{\"d\":{\"v\":\"42px\",\"e\":true},\"n\":{\"v\":\"35px\",\"e\":true},\"t\":{\"v\":\"35px\"},\"m\":{\"v\":\"30px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"42px\",\"e\":true},\"n\":{\"v\":\"35px\",\"e\":true},\"t\":{\"v\":\"35px\"},\"m\":{\"v\":\"30px\",\"e\":true}},\"originalWidth\":42,\"originalHeight\":42,\"aspectRatio\":{\"d\":{\"v\":1},\"n\":{\"v\":1},\"t\":{\"v\":1},\"m\":{\"v\":1}}},\"position\":{\"x\":{\"d\":{\"v\":\"681px\",\"e\":true},\"n\":{\"v\":\"217px\",\"e\":true},\"t\":{\"v\":\"217px\"},\"m\":{\"v\":\"126px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"341px\",\"e\":true},\"n\":{\"v\":\"18px\",\"e\":true},\"t\":{\"v\":\"18px\"},\"m\":{\"v\":\"8px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":11,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":11,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":800},{\"id\":\"frame_999\",\"start\":4000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"0\",\"scaleX\":\"0.9\",\"scaleY\":\"0.9\",\"opacity\":\"0\",\"rotationX\":\"0\",\"rotationY\":\"0\",\"rotationZ\":\"0\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"mask\":{\"x\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"top\"},\"n\":{\"v\":\"top\"},\"t\":{\"v\":\"top\"},\"m\":{\"v\":\"top\"}}},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"start\":800,\"startRelative\":800},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"start\":800,\"startRelative\":800},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":4000,\"startRelative\":2900,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"use\":true,\"curved\":true,\"yoyo_scale\":true,\"yoyo_filter\":true,\"frame_0\":{\"xr\":\"10\",\"yr\":\"10\"},\"frame_999\":{\"xr\":\"10\",\"yr\":\"10\"},\"speed\":4000,\"originX\":50,\"originY\":50}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\",\"e\":true},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"image\",\"version\":\"6.4.0\"},\"14\":{\"text\":\"Image 11\",\"alias\":\"Image 11\",\"uid\":14,\"media\":{\"imageUrl\":\"http:\\/\\/giasuolympia.com\\/wp-content\\/uploads\\/2017\\/06\\/landing-slider-2-img-6.png\",\"imageId\":3444},\"size\":{\"width\":{\"d\":{\"v\":\"35px\",\"e\":true},\"n\":{\"v\":\"30px\",\"e\":true},\"t\":{\"v\":\"30px\"},\"m\":{\"v\":\"26px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"35px\",\"e\":true},\"n\":{\"v\":\"30px\",\"e\":true},\"t\":{\"v\":\"30px\"},\"m\":{\"v\":\"26px\",\"e\":true}},\"originalWidth\":35,\"originalHeight\":35,\"aspectRatio\":{\"d\":{\"v\":1},\"n\":{\"v\":1},\"t\":{\"v\":1},\"m\":{\"v\":1}}},\"position\":{\"x\":{\"d\":{\"v\":\"76px\",\"e\":true},\"n\":{\"v\":\"-214px\",\"e\":true},\"t\":{\"v\":\"-214px\"},\"m\":{\"v\":\"-102px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"434px\",\"e\":true},\"n\":{\"v\":\"66px\",\"e\":true},\"t\":{\"v\":\"66px\"},\"m\":{\"v\":\"30px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":12,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":12,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1000},{\"id\":\"frame_999\",\"start\":4000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"0\",\"scaleX\":\"0.9\",\"scaleY\":\"0.9\",\"opacity\":\"0\",\"rotationX\":\"0\",\"rotationY\":\"0\",\"rotationZ\":\"0\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"mask\":{\"x\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"top\"},\"n\":{\"v\":\"top\"},\"t\":{\"v\":\"top\"},\"m\":{\"v\":\"top\"}}},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"start\":1000,\"startRelative\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"start\":1000,\"startRelative\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":4000,\"startRelative\":2700,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"use\":true,\"curved\":true,\"yoyo_scale\":true,\"yoyo_filter\":true,\"frame_0\":{\"xr\":\"12px\",\"yr\":\"12px\"},\"frame_999\":{\"xr\":\"12px\",\"yr\":\"12px\"},\"speed\":5000,\"originX\":40,\"originY\":50}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\",\"e\":true},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"image\",\"version\":\"6.4.0\"}}','{\"0\":\"\",\"version\":\"6.4.0\"}'),(24,12,2,'{\"title\":\"Slide\",\"bg\":{\"type\":\"solid\",\"color\":\"#303b79\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"volume\":\"\"}},\"thumb\":{\"dimension\":\"slider\"},\"timeline\":{\"slots\":[\"default\"],\"duration\":[600]},\"panzoom\":{\"ease\":\"none\"},\"version\":\"6.4.0\"}','{\"1\":{\"text\":\"iAcademy is here.\",\"alias\":\"Title\",\"uid\":1,\"size\":{\"width\":{\"d\":{\"v\":\"757px\",\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"595px\",\"e\":true},\"m\":{\"v\":\"320px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"757px\"},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"-2px\",\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-132px\",\"e\":true},\"n\":{\"v\":\"-122px\",\"e\":true},\"t\":{\"v\":\"-121px\",\"e\":true},\"m\":{\"v\":\"-141px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":5,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":5,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":300},{\"id\":\"frame_999\",\"start\":4000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":300,\"startRelative\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":300,\"startRelative\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":4000,\"startRelative\":3200,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"fontFamily\":\"Merriweather\",\"fontSize\":{\"d\":{\"v\":\"45px\",\"e\":true},\"n\":{\"v\":\"36px\",\"e\":true},\"t\":{\"v\":\"28px\",\"e\":true},\"m\":{\"v\":\"24px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"55px\",\"e\":true},\"n\":{\"v\":\"46px\",\"e\":true},\"t\":{\"v\":\"38px\",\"e\":true},\"m\":{\"v\":\"34px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"v\":\"normal\",\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"normal\",\"e\":true},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"},\"3\":{\"text\":\"An astounding theme made specifically for creating websites focused on online lectures, classes, and all types of schools and educational institutions. Get iAcademy now.\",\"alias\":\"Empowering children ...\",\"uid\":3,\"size\":{\"width\":{\"d\":{\"v\":\"812px\",\"e\":true},\"n\":{\"v\":\"739px\",\"e\":true},\"t\":{\"v\":\"478px\",\"e\":true},\"m\":{\"v\":\"307px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"59px\",\"e\":true},\"n\":{\"v\":\"65px\",\"e\":true},\"t\":{\"v\":\"91px\",\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"812px\",\"originalHeight\":\"59px\"},\"position\":{\"x\":{\"d\":{\"v\":\"13px\",\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"16px\",\"e\":true},\"n\":{\"v\":\"14px\",\"e\":true},\"t\":{\"v\":\"9px\",\"e\":true},\"m\":{\"v\":\"12px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":6,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":6,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":900},{\"id\":\"frame_999\",\"start\":4000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":900,\"startRelative\":900},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":900,\"startRelative\":900},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":4000,\"startRelative\":2600,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"17px\",\"e\":true},\"n\":{\"v\":\"17px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"14px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"27px\",\"e\":true},\"n\":{\"v\":\"25px\",\"e\":true},\"t\":{\"v\":\"25px\",\"e\":true},\"m\":{\"v\":\"24px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"v\":\"normal\",\"e\":true},\"n\":{\"v\":\"normal\",\"e\":true},\"t\":{\"v\":\"normal\",\"e\":true},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"},\"8\":{\"text\":\"[mkdf_button text=\\\"PURCHASE\\\" target=\\\"_blank\\\" icon_pack=\\\"\\\" font_weight=\\\"\\\" link=\\\"#\\\"]\",\"alias\":\"[mkdf_button text=\",\"uid\":8,\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"-8px\",\"e\":true},\"n\":{\"v\":\"-8px\",\"e\":true},\"t\":{\"v\":\"-8px\",\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"114px\",\"e\":true},\"n\":{\"v\":\"104px\",\"e\":true},\"t\":{\"v\":\"99px\",\"e\":true},\"m\":{\"v\":\"116px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":7,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":7,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1200},{\"id\":\"frame_999\",\"start\":4000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":1200,\"startRelative\":1200},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":1200,\"startRelative\":1200},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":4000,\"startRelative\":2300,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\",\"e\":true},\"t\":{\"v\":\"22\",\"e\":true},\"m\":{\"v\":\"22\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"},\"10\":{\"text\":\"A Theme in a Class by Itself. \",\"alias\":\"Title\",\"uid\":10,\"size\":{\"width\":{\"d\":{\"v\":\"757px\",\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"595px\",\"e\":true},\"m\":{\"v\":\"248px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"757px\"},\"position\":{\"x\":{\"d\":{\"v\":\"-1px\",\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-69px\",\"e\":true},\"n\":{\"v\":\"-72px\",\"e\":true},\"t\":{\"v\":\"-77px\",\"e\":true},\"m\":{\"v\":\"-87px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":8,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":8,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":600},{\"id\":\"frame_999\",\"start\":4000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":600,\"startRelative\":600},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":500,\"start\":600,\"startRelative\":600},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":4000,\"startRelative\":2900,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"fontFamily\":\"Merriweather\",\"fontSize\":{\"d\":{\"v\":\"45px\",\"e\":true},\"n\":{\"v\":\"36px\",\"e\":true},\"t\":{\"v\":\"28px\",\"e\":true},\"m\":{\"v\":\"24px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"55px\",\"e\":true},\"n\":{\"v\":\"46px\",\"e\":true},\"t\":{\"v\":\"38px\",\"e\":true},\"m\":{\"v\":\"34px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"v\":\"normal\",\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"normal\",\"e\":true},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"}}','{\"0\":\"\",\"version\":\"6.4.0\"}');
/*!40000 ALTER TABLE `wp_revslider_slides` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_revslider_slides_bkp`
--

DROP TABLE IF EXISTS `wp_revslider_slides_bkp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_revslider_slides_bkp` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `slider_id` int(9) NOT NULL,
  `slide_order` int(11) NOT NULL,
  `params` longtext NOT NULL,
  `layers` longtext NOT NULL,
  `settings` text NOT NULL DEFAULT '',
  UNIQUE KEY `id` (`id`),
  KEY `slider_id_index` (`slider_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_revslider_slides_bkp`
--

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

--
-- Table structure for table `wp_revslider_static_slides`
--

DROP TABLE IF EXISTS `wp_revslider_static_slides`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_revslider_static_slides` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `slider_id` int(9) NOT NULL,
  `params` longtext NOT NULL,
  `layers` longtext NOT NULL,
  `settings` text NOT NULL,
  UNIQUE KEY `id` (`id`),
  KEY `slider_id_index` (`slider_id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_revslider_static_slides`
--

LOCK TABLES `wp_revslider_static_slides` WRITE;
/*!40000 ALTER TABLE `wp_revslider_static_slides` DISABLE KEYS */;
INSERT INTO `wp_revslider_static_slides` VALUES (1,5,'{\"static\":{\"overflow\":\"visible\"},\"version\":\"6.4.0\"}','{\"7\":{\"text\":\" \",\"alias\":\"Shape\",\"uid\":7,\"size\":{\"width\":{\"d\":{\"v\":\"453px\",\"e\":true},\"n\":{\"v\":\"453px\",\"e\":true},\"t\":{\"v\":\"453px\",\"e\":true},\"m\":{\"v\":\"280px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"475px\",\"e\":true},\"n\":{\"v\":\"450px\",\"e\":true},\"t\":{\"v\":\"435px\",\"e\":true},\"m\":{\"v\":\"100px\",\"e\":true}},\"originalWidth\":\"453px\",\"originalHeight\":\"475px\"},\"position\":{\"x\":{\"d\":{\"v\":\"110px\",\"e\":true},\"n\":{\"v\":\"79px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"2px\",\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"12px\",\"e\":true},\"m\":{\"v\":\"-12px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"right\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":5,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":5,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":10},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":10,\"startRelative\":10},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":10,\"startRelative\":10},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":4690,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"#ffffff\",\"borderColor\":\"rgba(0, 0, 0, 0)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderStyle\":{\"d\":{\"v\":\"solid\"},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"runtime\":{\"internalClass\":\"tp-shape tp-shapewrapper\"},\"type\":\"shape\",\"version\":\"6.4.0\"},\"8\":{\"text\":\"[contact-form-7 id=\\\"4\\\" html_class=\\\"cf7_custom_style_2\\\"]\",\"alias\":\"Contact Form\",\"uid\":8,\"media\":{\"imageUrl\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"383px\",\"e\":true},\"n\":{\"v\":\"383px\",\"e\":true},\"t\":{\"v\":\"383px\",\"e\":true},\"m\":{\"v\":\"271px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"383px\"},\"position\":{\"x\":{\"d\":{\"v\":\"145px\",\"e\":true},\"n\":{\"v\":\"114px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"233px\",\"e\":true},\"n\":{\"v\":\"163px\",\"e\":true},\"t\":{\"v\":\"40px\",\"e\":true},\"m\":{\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"right\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":6,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":6,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":10},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":10,\"startRelative\":10},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":10,\"startRelative\":10},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":4690,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"#293352\",\"e\":true},\"n\":{\"v\":\"#293352\",\"e\":true},\"t\":{\"v\":\"#293352\",\"e\":true},\"m\":{\"v\":\"#293352\",\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0px\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0px\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0px\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0px\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"12px\",\"e\":true},\"n\":{\"v\":\"12px\",\"e\":true},\"t\":{\"v\":\"12px\",\"e\":true},\"m\":{\"v\":\"12px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"26px\",\"e\":true},\"n\":{\"v\":\"26px\",\"e\":true},\"t\":{\"v\":\"26px\",\"e\":true},\"m\":{\"v\":\"26px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"backgroundColor\":\"rgba(132, 132, 132, 0)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"#293352\",\"e\":true},\"n\":{\"v\":\"#293352\",\"e\":true},\"t\":{\"v\":\"#293352\",\"e\":true},\"m\":{\"v\":\"#293352\",\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"visibility\":{\"m\":false},\"type\":\"text\",\"version\":\"6.4.0\"},\"9\":{\"text\":\"Get Online Courses for <span class=\\\"custom\\\">Free<\\/span>\",\"alias\":\"Title\",\"uid\":9,\"media\":{\"imageUrl\":\"\"},\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"183px\",\"e\":true},\"n\":{\"v\":\"152px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-185px\",\"e\":true},\"n\":{\"v\":\"-177px\",\"e\":true},\"t\":{\"v\":\"-170px\",\"e\":true},\"m\":{\"v\":\"-25px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"right\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":7,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":7,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":10},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":10,\"startRelative\":10},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":10,\"startRelative\":10},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":4690,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"#353535\",\"e\":true},\"n\":{\"v\":\"#353535\",\"e\":true},\"t\":{\"v\":\"#353535\",\"e\":true},\"m\":{\"v\":\"#353535\",\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Merriweather\",\"fontSize\":{\"d\":{\"v\":\"22px\",\"e\":true},\"n\":{\"v\":\"22px\",\"e\":true},\"t\":{\"v\":\"22px\",\"e\":true},\"m\":{\"v\":\"18px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"26px\",\"e\":true},\"n\":{\"v\":\"26px\",\"e\":true},\"t\":{\"v\":\"26px\",\"e\":true},\"m\":{\"v\":\"28px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"#353535\",\"e\":true},\"n\":{\"v\":\"#353535\",\"e\":true},\"t\":{\"v\":\"#353535\",\"e\":true},\"m\":{\"v\":\"#353535\",\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"},\"10\":{\"text\":\"The best tutors in town.\\n\",\"alias\":\"Subtitle\",\"uid\":10,\"media\":{\"imageUrl\":\"\"},\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"256px\",\"e\":true},\"n\":{\"v\":\"225px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-155px\",\"e\":true},\"n\":{\"v\":\"-150px\",\"e\":true},\"t\":{\"v\":\"-140px\",\"e\":true},\"m\":{\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"right\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":8,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":8,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":10},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":10,\"startRelative\":10},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":10,\"startRelative\":10},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":4690,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"#7b7b7b\",\"e\":true},\"n\":{\"v\":\"#7b7b7b\",\"e\":true},\"t\":{\"v\":\"#7b7b7b\",\"e\":true},\"m\":{\"v\":\"#7b7b7b\",\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"14px\",\"e\":true},\"n\":{\"v\":\"14px\",\"e\":true},\"t\":{\"v\":\"14px\",\"e\":true},\"m\":{\"v\":\"14px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"20px\",\"e\":true},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"#7b7b7b\",\"e\":true},\"n\":{\"v\":\"#7b7b7b\",\"e\":true},\"t\":{\"v\":\"#7b7b7b\",\"e\":true},\"m\":{\"v\":\"#7b7b7b\",\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"}}','{\"0\":\"\",\"version\":\"6.4.0\"}'),(2,9,'{\"version\":\"6.4.0\"}','[]','{\"version\":\"6.4.0\"}'),(3,12,'[]','','{\"temp\":true}'),(4,11,'[]','','{\"temp\":true}'),(5,1,'[]','','{\"temp\":true}');
/*!40000 ALTER TABLE `wp_revslider_static_slides` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_revslider_static_slides_bkp`
--

DROP TABLE IF EXISTS `wp_revslider_static_slides_bkp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_revslider_static_slides_bkp` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `slider_id` int(9) NOT NULL,
  `params` longtext NOT NULL,
  `layers` longtext NOT NULL,
  `settings` text NOT NULL,
  UNIQUE KEY `id` (`id`),
  KEY `slider_id_index` (`slider_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_revslider_static_slides_bkp`
--

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

--
-- Table structure for table `wp_tec_events`
--

DROP TABLE IF EXISTS `wp_tec_events`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_tec_events` (
  `event_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint(20) unsigned NOT NULL,
  `start_date` varchar(19) NOT NULL,
  `end_date` varchar(19) DEFAULT NULL,
  `timezone` varchar(30) NOT NULL DEFAULT 'UTC',
  `start_date_utc` varchar(19) NOT NULL,
  `end_date_utc` varchar(19) DEFAULT NULL,
  `duration` mediumint(30) DEFAULT 7200,
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `hash` varchar(40) NOT NULL,
  PRIMARY KEY (`event_id`),
  UNIQUE KEY `post_id` (`post_id`)
) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_tec_events`
--

LOCK TABLES `wp_tec_events` WRITE;
/*!40000 ALTER TABLE `wp_tec_events` DISABLE KEYS */;
INSERT INTO `wp_tec_events` VALUES (1,1830,'2018-06-16 08:00:00','2018-06-16 17:00:00','UTC+0','2018-06-16 08:00:00','2018-06-16 17:00:00',32400,'2024-10-20 14:42:24',''),(2,1888,'2018-06-28 08:00:00','2018-06-28 20:00:00','UTC+0','2018-06-28 08:00:00','2018-06-28 20:00:00',43200,'2024-10-20 14:42:24',''),(3,1890,'2018-07-11 07:00:00','2018-07-11 18:00:00','UTC+0','2018-07-11 07:00:00','2018-07-11 18:00:00',39600,'2024-10-20 14:42:24',''),(5,2777,'2018-06-16 09:00:00','2018-06-16 09:00:00','UTC+0','2018-06-16 09:00:00','2018-06-16 09:00:00',0,'2024-10-20 14:42:24',''),(6,2779,'2018-08-15 07:00:00','2018-08-15 16:00:00','UTC+0','2018-08-15 07:00:00','2018-08-15 16:00:00',32400,'2024-10-20 14:42:24',''),(7,2781,'2018-08-30 08:00:00','2018-08-30 21:00:00','UTC+0','2018-08-30 08:00:00','2018-08-30 21:00:00',46800,'2024-10-20 14:42:24',''),(8,2980,'2018-06-13 10:00:00','2018-06-13 18:00:00','UTC+0','2018-06-13 10:00:00','2018-06-13 18:00:00',28800,'2024-10-20 14:42:24',''),(9,2983,'2018-07-14 08:00:00','2018-07-14 17:00:00','UTC+0','2018-07-14 08:00:00','2018-07-14 17:00:00',32400,'2024-10-20 14:42:24',''),(10,2985,'2018-07-14 07:00:00','2018-07-14 07:00:00','UTC+0','2018-07-14 07:00:00','2018-07-14 07:00:00',0,'2024-10-20 14:42:24',''),(11,2987,'2018-07-03 08:00:00','2018-07-03 09:30:00','UTC+0','2018-07-03 08:00:00','2018-07-03 09:30:00',5400,'2024-10-20 14:42:24',''),(12,2989,'2018-07-11 07:00:00','2018-07-11 19:00:00','UTC+0','2018-07-11 07:00:00','2018-07-11 19:00:00',43200,'2024-10-20 14:42:24',''),(13,2992,'2018-07-19 10:00:00','2018-07-20 20:00:00','UTC+0','2018-07-19 10:00:00','2018-07-20 20:00:00',122400,'2024-10-20 14:42:24',''),(14,2994,'2018-07-28 08:00:00','2018-07-30 21:30:00','UTC+0','2018-07-28 08:00:00','2018-07-30 21:30:00',221400,'2024-10-20 14:42:24','');
/*!40000 ALTER TABLE `wp_tec_events` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_tec_occurrences`
--

DROP TABLE IF EXISTS `wp_tec_occurrences`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_tec_occurrences` (
  `occurrence_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `event_id` bigint(20) unsigned NOT NULL,
  `post_id` bigint(20) unsigned NOT NULL,
  `start_date` varchar(19) NOT NULL,
  `start_date_utc` varchar(19) NOT NULL,
  `end_date` varchar(19) NOT NULL,
  `end_date_utc` varchar(19) NOT NULL,
  `duration` mediumint(30) DEFAULT 7200,
  `hash` varchar(40) NOT NULL,
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`occurrence_id`),
  UNIQUE KEY `hash` (`hash`),
  KEY `event_id` (`event_id`)
) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_tec_occurrences`
--

LOCK TABLES `wp_tec_occurrences` WRITE;
/*!40000 ALTER TABLE `wp_tec_occurrences` DISABLE KEYS */;
INSERT INTO `wp_tec_occurrences` VALUES (1,1,1830,'2018-06-16 08:00:00','2018-06-16 08:00:00','2018-06-16 17:00:00','2018-06-16 17:00:00',32400,'7f8f78467c70da807ab96efe20e16adadca6b249','2024-10-20 07:42:24'),(2,2,1888,'2018-06-28 08:00:00','2018-06-28 08:00:00','2018-06-28 20:00:00','2018-06-28 20:00:00',43200,'c4d10956b67e5b5e28e97607db4f0006a2e4b7da','2024-10-20 07:42:24'),(3,3,1890,'2018-07-11 07:00:00','2018-07-11 07:00:00','2018-07-11 18:00:00','2018-07-11 18:00:00',39600,'2778a6f05766181725164844052af389e353648b','2024-10-20 07:42:24'),(5,5,2777,'2018-06-16 09:00:00','2018-06-16 09:00:00','2018-06-16 09:00:00','2018-06-16 09:00:00',0,'e85f3064ccbf8902a9eeda91a6c20a31d4034c27','2024-10-20 07:42:24'),(6,6,2779,'2018-08-15 07:00:00','2018-08-15 07:00:00','2018-08-15 16:00:00','2018-08-15 16:00:00',32400,'4b265cbf831d5226ad271bc96a8d270bc03fc8ad','2024-10-20 07:42:24'),(7,7,2781,'2018-08-30 08:00:00','2018-08-30 08:00:00','2018-08-30 21:00:00','2018-08-30 21:00:00',46800,'c8ac740d47231d329b1ab9124725c93d3de5ddc6','2024-10-20 07:42:24'),(8,8,2980,'2018-06-13 10:00:00','2018-06-13 10:00:00','2018-06-13 18:00:00','2018-06-13 18:00:00',28800,'8946367df5e5c9bb79ec49d56af2cadc81f2547f','2024-10-20 07:42:24'),(9,9,2983,'2018-07-14 08:00:00','2018-07-14 08:00:00','2018-07-14 17:00:00','2018-07-14 17:00:00',32400,'4a2de191596fd9c838c157e9baff9415c265b9d7','2024-10-20 07:42:24'),(10,10,2985,'2018-07-14 07:00:00','2018-07-14 07:00:00','2018-07-14 07:00:00','2018-07-14 07:00:00',0,'edf383a1d8ab4e70212f0d41870c9e1147485eb4','2024-10-20 07:42:24'),(11,11,2987,'2018-07-03 08:00:00','2018-07-03 08:00:00','2018-07-03 09:30:00','2018-07-03 09:30:00',5400,'cf629bdae35fd11536b505477c64bc8e48aac2e6','2024-10-20 07:42:24'),(12,12,2989,'2018-07-11 07:00:00','2018-07-11 07:00:00','2018-07-11 19:00:00','2018-07-11 19:00:00',43200,'3e6e94ba19245b1729f3270c554dfa46099725bd','2024-10-20 07:42:24'),(13,13,2992,'2018-07-19 10:00:00','2018-07-19 10:00:00','2018-07-20 20:00:00','2018-07-20 20:00:00',122400,'043567216f8d616e33269fba32500c6e4f41597a','2024-10-20 07:42:24'),(14,14,2994,'2018-07-28 08:00:00','2018-07-28 08:00:00','2018-07-30 21:30:00','2018-07-30 21:30:00',221400,'e758ea078cc198ede2ee18c98f711adb5c5034f9','2024-10-20 07:42:24');
/*!40000 ALTER TABLE `wp_tec_occurrences` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_term_relationships`
--

DROP TABLE IF EXISTS `wp_term_relationships`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_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_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_term_relationships`
--

LOCK TABLES `wp_term_relationships` WRITE;
/*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */;
INSERT INTO `wp_term_relationships` VALUES (1,1,0),(143,78,0),(143,98,0),(143,167,0),(148,50,0),(148,84,0),(148,98,0),(148,124,0),(174,203,0),(175,91,0),(181,91,0),(189,91,0),(191,91,0),(193,91,0),(199,91,0),(201,91,0),(205,91,0),(206,91,0),(207,91,0),(229,60,0),(269,185,0),(272,185,0),(274,203,0),(276,203,0),(277,60,0),(279,203,0),(281,185,0),(284,60,0),(286,203,0),(320,68,0),(320,142,0),(325,142,0),(326,68,0),(326,142,0),(413,68,0),(413,147,0),(417,147,0),(677,203,0),(692,203,0),(694,60,0),(741,21,0),(741,29,0),(741,33,0),(1063,71,0),(1064,71,0),(1065,71,0),(1066,71,0),(1067,71,0),(1068,71,0),(1069,71,0),(1070,71,0),(1071,71,0),(1072,71,0),(1163,21,0),(1163,29,0),(1163,33,0),(1189,21,0),(1189,29,0),(1189,33,0),(1189,232,0),(1199,21,0),(1199,29,0),(1199,33,0),(1203,21,0),(1203,29,0),(1203,33,0),(1203,233,0),(1212,18,0),(1212,29,0),(1212,33,0),(1214,18,0),(1214,29,0),(1214,33,0),(1216,18,0),(1216,29,0),(1216,33,0),(1219,18,0),(1219,29,0),(1219,33,0),(1221,18,0),(1221,29,0),(1221,33,0),(1246,21,0),(1246,29,0),(1246,33,0),(1343,23,0),(1343,29,0),(1343,33,0),(1349,23,0),(1349,29,0),(1349,33,0),(1349,232,0),(1351,23,0),(1351,29,0),(1351,33,0),(1354,23,0),(1354,29,0),(1354,33,0),(1357,23,0),(1357,29,0),(1357,33,0),(1365,23,0),(1365,29,0),(1365,33,0),(1365,233,0),(1400,23,0),(1400,29,0),(1400,33,0),(1406,23,0),(1406,29,0),(1406,33,0),(1410,23,0),(1410,29,0),(1410,33,0),(1410,233,0),(1415,23,0),(1415,29,0),(1415,33,0),(1415,232,0),(1419,20,0),(1419,23,0),(1419,29,0),(1419,33,0),(1421,23,0),(1421,29,0),(1421,33,0),(1426,23,0),(1426,29,0),(1426,33,0),(1484,23,0),(1484,29,0),(1484,33,0),(1495,21,0),(1495,29,0),(1495,33,0),(1497,18,0),(1497,29,0),(1497,33,0),(1507,20,0),(1507,23,0),(1507,29,0),(1507,33,0),(1507,235,0),(1511,23,0),(1511,29,0),(1511,33,0),(1511,234,0),(1517,23,0),(1517,29,0),(1517,33,0),(1524,23,0),(1524,29,0),(1524,33,0),(1524,236,0),(1528,23,0),(1528,29,0),(1528,33,0),(1528,235,0),(1536,21,0),(1536,29,0),(1536,33,0),(1536,234,0),(1544,21,0),(1544,29,0),(1544,33,0),(1544,235,0),(1548,18,0),(1548,29,0),(1548,33,0),(1550,18,0),(1550,29,0),(1550,33,0),(1553,18,0),(1553,29,0),(1553,33,0),(1740,2,0),(1740,194,0),(1740,208,0),(1829,4,0),(1829,9,0),(1829,13,0),(1829,194,0),(1829,199,0),(1830,187,0),(1849,2,0),(1849,194,0),(1849,199,0),(1880,5,0),(1880,194,0),(1880,204,0),(1888,187,0),(1890,187,0),(1897,2,0),(1897,194,0),(1897,212,0),(1908,3,0),(1908,194,0),(1908,204,0),(1917,2,0),(1917,9,0),(1917,194,0),(1917,212,0),(1929,2,0),(1929,194,0),(1929,208,0),(1936,2,0),(1936,194,0),(1936,204,0),(1957,2,0),(1957,194,0),(1957,212,0),(2303,147,0),(2309,19,0),(2309,29,0),(2309,33,0),(2314,19,0),(2314,29,0),(2314,33,0),(2420,149,0),(2421,149,0),(2422,149,0),(2777,42,0),(2779,42,0),(2781,42,0),(2980,64,0),(2983,64,0),(2985,64,0),(2987,64,0),(2989,64,0),(2992,64,0),(2994,64,0),(3005,185,0),(3010,203,0),(3011,185,0),(3056,2,0),(3056,9,0),(3056,12,0),(3056,194,0),(3056,212,0),(3058,2,0),(3058,194,0),(3058,212,0),(3060,2,0),(3060,194,0),(3060,212,0),(3062,2,0),(3062,194,0),(3062,212,0),(3255,106,0),(3255,162,0),(3255,173,0),(3255,180,0),(3260,57,0),(3260,106,0),(3260,120,0),(3260,138,0),(3271,77,0),(3271,113,0),(3271,155,0),(3273,57,0),(3273,138,0),(3273,177,0),(3277,55,0),(3277,85,0),(3277,94,0),(3277,191,0),(3278,38,0),(3278,109,0),(3278,170,0),(3283,136,0),(3283,138,0),(3283,158,0),(3284,45,0),(3284,118,0),(3284,170,0),(4062,60,0),(4064,223,0),(4065,223,0),(4066,223,0),(4067,223,0),(4068,223,0),(4069,223,0),(4072,223,0),(4074,223,0),(4075,223,0),(4076,223,0),(4077,216,0),(4078,216,0),(4079,216,0),(4081,216,0),(4082,223,0),(4083,223,0),(4084,220,0),(4087,223,0),(4088,223,0),(4089,223,0),(4090,223,0),(4091,223,0),(4095,228,0),(4096,228,0),(4097,228,0),(4098,228,0),(4099,228,0),(4102,228,0),(4103,228,0),(4104,228,0),(4105,228,0),(4106,228,0),(4107,228,0),(4108,228,0),(4109,228,0),(4110,228,0),(4111,228,0),(4112,228,0),(4113,228,0),(4114,228,0),(4115,228,0),(4116,228,0),(4117,228,0),(4118,228,0),(4119,228,0),(4120,228,0),(4121,228,0),(4130,223,0),(4131,223,0),(4132,223,0),(4133,223,0),(4134,223,0),(4136,223,0),(4138,223,0),(4139,223,0),(4140,223,0),(4141,223,0),(4142,223,0),(4143,216,0),(4144,216,0),(4145,223,0),(4146,223,0),(4147,223,0),(4148,223,0),(4149,223,0),(4150,223,0),(4151,223,0),(4152,216,0),(4153,216,0),(4154,216,0),(4155,216,0),(4156,216,0),(4157,216,0),(4158,216,0),(4159,223,0),(4160,223,0),(4161,223,0),(4162,223,0),(4163,223,0),(4164,223,0),(4165,223,0),(4166,223,0),(4167,223,0),(4168,216,0),(4169,216,0),(4170,216,0),(4171,216,0),(4172,216,0),(4173,216,0),(4174,216,0),(4175,216,0),(4176,223,0),(4177,223,0),(4178,216,0),(4179,216,0),(4180,216,0),(4181,216,0),(4182,216,0),(4183,216,0),(4184,216,0),(4185,216,0),(4186,216,0),(4187,216,0),(4188,216,0),(4189,223,0),(4190,223,0),(4191,223,0),(4192,223,0),(4193,223,0),(4194,223,0),(4195,223,0),(4196,223,0),(4197,223,0),(4198,223,0),(4199,223,0),(4200,223,0),(4201,223,0),(4202,223,0),(4203,223,0),(4204,223,0),(4205,223,0),(4206,223,0),(4207,223,0),(4208,223,0),(4209,223,0),(4210,223,0),(4211,223,0),(4212,223,0),(4214,223,0),(4216,223,0),(4217,223,0),(4218,223,0),(4219,223,0),(4220,223,0),(4221,223,0),(4222,223,0),(4223,223,0),(4224,223,0),(4225,220,0),(4226,220,0),(4227,220,0),(4228,220,0),(4229,223,0),(4230,223,0),(4231,223,0),(4232,223,0),(4233,223,0),(4234,223,0),(4235,223,0),(4236,216,0),(4237,216,0),(4238,216,0),(4239,216,0),(4240,216,0),(4241,216,0),(4242,216,0),(4243,223,0),(4244,223,0),(4245,223,0),(4246,223,0),(4247,223,0),(4248,223,0),(4249,223,0),(4250,228,0),(4251,228,0),(4252,228,0),(4253,228,0),(4254,228,0),(4255,228,0),(4256,228,0),(4257,228,0),(4258,228,0),(4259,228,0),(4260,228,0),(4261,228,0),(4262,228,0),(4263,228,0),(4264,228,0),(4265,228,0),(4266,228,0),(4267,228,0),(4268,228,0),(4269,228,0),(4270,228,0),(4271,228,0),(4272,228,0),(4273,228,0),(4274,228,0),(4275,228,0),(4276,228,0),(4277,228,0),(4278,228,0),(4279,228,0),(4280,228,0),(4282,228,0),(4283,228,0),(4284,228,0),(4285,228,0),(4286,228,0),(4287,228,0),(4288,228,0),(4289,228,0),(4290,228,0),(4291,228,0),(4292,228,0),(4293,228,0),(4294,228,0),(4295,228,0),(4296,228,0),(4297,228,0),(4298,228,0),(4299,228,0),(4300,228,0),(4301,228,0),(4302,228,0),(4303,228,0),(4304,228,0),(4305,228,0),(4306,228,0),(4307,228,0),(4308,228,0),(4309,228,0),(4310,228,0),(4311,228,0),(4312,228,0),(4313,228,0),(4314,228,0),(4315,228,0),(4316,228,0),(4317,228,0),(4318,228,0),(4319,228,0),(4320,228,0),(4321,228,0),(4322,228,0),(4323,228,0),(4324,228,0),(4325,228,0),(4326,228,0),(4327,228,0),(4328,228,0),(4329,228,0),(4330,228,0),(4331,228,0),(4332,223,0),(4407,223,0),(4418,223,0);
/*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_term_taxonomy`
--

DROP TABLE IF EXISTS `wp_term_taxonomy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_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=237 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_term_taxonomy`
--

LOCK TABLES `wp_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','',0,1),(2,2,'product_type','',0,11),(3,3,'product_type','',0,1),(4,4,'product_type','',0,1),(5,5,'product_type','',0,1),(6,6,'product_visibility','',0,0),(7,7,'product_visibility','',0,0),(8,8,'product_visibility','',0,0),(9,9,'product_visibility','',0,3),(10,10,'product_visibility','',0,0),(11,11,'product_visibility','',0,0),(12,12,'product_visibility','',0,1),(13,13,'product_visibility','',0,1),(14,14,'product_visibility','',0,0),(15,15,'product_cat','',0,0),(17,17,'category','',0,0),(18,16,'category','',0,9),(19,19,'category','',0,2),(20,21,'category','',0,2),(21,23,'category','',0,9),(22,24,'category','',0,0),(23,25,'category','',0,19),(26,28,'category','',0,0),(27,30,'category','',0,0),(29,31,'post_tag','',0,39),(33,34,'post_tag','',0,39),(35,35,'post_tag','',0,0),(36,36,'post_tag','',0,0),(38,38,'topic-tag','',0,1),(41,41,'topic-tag','',0,0),(42,42,'tribe_events_cat','',0,3),(43,43,'tribe_events_cat','',0,0),(45,45,'topic-tag','',0,1),(48,48,'topic-tag','',0,0),(49,49,'topic-tag','',0,0),(50,50,'topic-tag','',0,1),(55,53,'topic-tag','',0,1),(57,57,'topic-tag','',0,2),(59,59,'topic-tag','',0,0),(60,60,'course-category','',0,5),(64,64,'tribe_events_cat','',0,7),(68,68,'testimonials-category','',0,3),(70,67,'tribe_events_cat','',0,0),(71,71,'masonry-gallery-category','',0,10),(74,74,'masonry-gallery-category','',0,0),(75,75,'masonry-gallery-category','',0,0),(76,76,'masonry-gallery-category','',0,0),(77,77,'topic-tag','',0,1),(78,78,'topic-tag','',0,1),(84,84,'topic-tag','',0,1),(85,85,'topic-tag','',0,1),(91,91,'masonry-gallery-category','',0,10),(92,92,'masonry-gallery-category','',0,0),(94,93,'topic-tag','',0,1),(98,98,'topic-tag','',0,2),(106,106,'topic-tag','',0,2),(109,109,'topic-tag','',0,1),(113,113,'topic-tag','',0,1),(116,116,'topic-tag','',0,0),(118,117,'topic-tag','',0,1),(120,120,'topic-tag','',0,1),(124,124,'topic-tag','',0,1),(127,127,'topic-tag','',0,0),(136,136,'topic-tag','',0,1),(138,138,'topic-tag','',0,3),(141,141,'topic-tag','',0,0),(142,142,'testimonials-category','',0,3),(147,145,'testimonials-category','',0,3),(149,149,'testimonials-category','',0,3),(154,154,'testimonials-category','',0,0),(155,155,'topic-tag','',0,1),(156,156,'topic-tag','',0,0),(158,158,'topic-tag','',0,1),(162,162,'topic-tag','',0,1),(164,164,'topic-tag','',0,0),(167,166,'topic-tag','',0,1),(170,169,'topic-tag','',0,2),(172,172,'topic-tag','',0,0),(173,173,'topic-tag','',0,1),(177,177,'topic-tag','',0,1),(180,180,'topic-tag','',0,1),(185,184,'course-category','',0,5),(187,187,'tribe_events_cat','',0,3),(191,191,'topic-tag','',0,1),(194,194,'product_cat','',0,14),(198,198,'product_cat','',0,0),(199,199,'product_cat','',194,2),(200,200,'product_cat','',194,0),(202,202,'product_cat','',194,0),(203,203,'course-category','',0,8),(204,204,'product_cat','',194,3),(207,207,'product_cat','',194,0),(208,208,'product_cat','',194,2),(211,211,'product_cat','',194,0),(212,212,'product_cat','',194,7),(216,216,'nav_menu','',0,39),(219,219,'nav_menu','',0,0),(220,220,'nav_menu','',0,5),(223,223,'nav_menu','',0,97),(228,227,'nav_menu','',0,106),(230,230,'nav_menu','',0,0),(231,231,'nav_menu','',0,0),(232,232,'post_format','',0,3),(233,233,'post_format','',0,3),(234,234,'post_format','',0,2),(235,235,'post_format','',0,3),(236,236,'post_format','',0,1);
/*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_termmeta`
--

DROP TABLE IF EXISTS `wp_termmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_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 AUTO_INCREMENT=40 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_termmeta`
--

LOCK TABLES `wp_termmeta` WRITE;
/*!40000 ALTER TABLE `wp_termmeta` DISABLE KEYS */;
INSERT INTO `wp_termmeta` VALUES (1,194,'order','0'),(2,198,'order','0'),(3,199,'order','0'),(4,202,'order','0'),(5,200,'order','0'),(6,207,'order','0'),(7,208,'order','0'),(8,204,'order','0'),(9,211,'order','0'),(10,212,'order','0'),(11,208,'product_count_product_cat','2'),(12,194,'product_count_product_cat','14'),(13,199,'product_count_product_cat','2'),(14,204,'product_count_product_cat','3'),(15,212,'product_count_product_cat','7'),(16,60,'course_category_icon_pack',''),(17,60,'course_category_image',''),(18,60,'course_category_fa_icon',''),(19,60,'course_category_fe_icon',''),(20,60,'course_category_ion_icon',''),(21,60,'course_category_linea_icon',''),(22,60,'course_category_linear_icon',''),(23,60,'course_category_simple_line_icon',''),(24,203,'course_category_icon_pack',''),(25,203,'course_category_image',''),(26,203,'course_category_fa_icon',''),(27,203,'course_category_fe_icon',''),(28,203,'course_category_ion_icon',''),(29,203,'course_category_linea_icon',''),(30,203,'course_category_linear_icon',''),(31,203,'course_category_simple_line_icon',''),(32,184,'course_category_icon_pack',''),(33,184,'course_category_image',''),(34,184,'course_category_fa_icon',''),(35,184,'course_category_fe_icon',''),(36,184,'course_category_ion_icon',''),(37,184,'course_category_linea_icon',''),(38,184,'course_category_linear_icon',''),(39,184,'course_category_simple_line_icon','');
/*!40000 ALTER TABLE `wp_termmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_terms`
--

DROP TABLE IF EXISTS `wp_terms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_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=237 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_terms`
--

LOCK TABLES `wp_terms` WRITE;
/*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */;
INSERT INTO `wp_terms` VALUES (1,'Chưa phân loại','khong-phan-loai',0),(2,'simple','simple',0),(3,'grouped','grouped',0),(4,'variable','variable',0),(5,'external','external',0),(6,'exclude-from-search','exclude-from-search',0),(7,'exclude-from-catalog','exclude-from-catalog',0),(8,'featured','featured',0),(9,'outofstock','outofstock',0),(10,'rated-1','rated-1',0),(11,'rated-2','rated-2',0),(12,'rated-3','rated-3',0),(13,'rated-4','rated-4',0),(14,'rated-5','rated-5',0),(15,'Uncategorized','uncategorized',0),(16,'Business','business',0),(17,'Business','business',0),(19,'Culture','culture',0),(21,'Economy','economy',0),(23,'Education','education',0),(24,'Education','education-2',0),(25,'Motivation','motivation',0),(28,'Uncategorized','uncategorized',0),(30,'Uncategorized','uncategorized-2',0),(31,'ART','art',0),(34,'DESIGN','design',0),(35,'DESIGN','design-2',0),(36,'LANGUAGES','languages',0),(38,'Budget','budget',0),(41,'Budget','budget-2',0),(42,'Business','business',0),(43,'Business','business-2',0),(45,'Business','business',0),(48,'Business','business-3',0),(49,'Business','business-4',0),(50,'Certificate','certificate',0),(53,'Design','design',0),(57,'Digital','digital',0),(59,'Digital','digital-2',0),(60,'Lớp cấp 1','lop_cap_1',0),(64,'Education','education',0),(67,'Education','education-3',0),(68,'Elements','elements',0),(71,'Elements','elements',0),(74,'Elements','elements-2',0),(75,'Elements','elements-3',0),(76,'Elements','elements-4',0),(77,'Finance','finance',0),(78,'Foreign','foreign',0),(84,'Free','free',0),(85,'Friendly','friendly',0),(91,'Home 1','home-1',0),(92,'Home 1','home-1-2',0),(93,'Interface','interface',0),(98,'Language','language',0),(106,'Learning','learning',0),(109,'Management','management',0),(113,'Managment','managment',0),(116,'Managment','managment-2',0),(117,'Networking','networking',0),(120,'Online','online',0),(124,'Participants','participants',0),(127,'Principles','principles',0),(136,'Responsive','responsive',0),(138,'Software','software',0),(141,'Software','software-2',0),(142,'Standard','standard',0),(145,'Standard 2','standard-2',0),(149,'Standard 3','standard-3',0),(154,'Standard 3','standard-3-2',0),(155,'Stock','stock',0),(156,'Stock','stock-2',0),(158,'Store','store',0),(162,'Strategies','strategies',0),(164,'Strategies','strategies-2',0),(166,'Study','study',0),(169,'Success','success',0),(172,'Success','success-2',0),(173,'Successful','successful',0),(177,'Tech','tech',0),(180,'Tips','tips',0),(184,'Lớp cấp 3','lop_cap_3',0),(187,'Tutoring','tutoring',0),(191,'User','user',0),(194,'Education','education',0),(198,'Education','education-4',0),(199,'Language','language',0),(200,'Language','language-education',0),(202,'Language','language-education-2',0),(203,'Lớp cấp 2','lop_cap_2',0),(204,'Business','business',0),(207,'Business','business-education',0),(208,'Coding','coding',0),(211,'Coding','coding-education',0),(212,'Economy','economy',0),(216,'Elements Menu','elements-menu',0),(219,'Elements Menu','elements-menu-2',0),(220,'Footer Custom Menu','footer-custom-menu',0),(223,'Main Menu','main-menu',0),(227,'Mobile Menu','mobile-menu',0),(230,'Mobile Menu','mobile-menu-2',0),(231,'Mobile Menu','mobile-menu-3',0),(232,'Link','post-format-link',0),(233,'Quote','post-format-quote',0),(234,'Gallery','post-format-gallery',0),(235,'Audio','post-format-audio',0),(236,'Video','post-format-video',0);
/*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_usermeta`
--

DROP TABLE IF EXISTS `wp_usermeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_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=95 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_usermeta`
--

LOCK TABLES `wp_usermeta` WRITE;
/*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */;
INSERT INTO `wp_usermeta` VALUES (1,1,'nickname','Quản trị viên'),(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','en_US'),(12,1,'wp_capabilities','a:2:{s:13:\"administrator\";b:1;s:13:\"bbp_keymaster\";b:1;}'),(13,1,'wp_user_level','10'),(14,1,'dismissed_wp_pointers','vc_pointers_backend_editor,theme_editor_notice'),(15,1,'show_welcome_panel','1'),(17,1,'wp_user-settings','post_dfw=off&editor=tinymce&posts_list_mode=list&edit_element_vcUIPanelWidth=650&edit_element_vcUIPanelLeft=760px&edit_element_vcUIPanelTop=95px&libraryContent=browse'),(18,1,'wp_user-settings-time','1730345940'),(19,1,'wp_dashboard_quick_press_last_post_id','4509'),(20,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\";}'),(21,1,'metaboxhidden_nav-menus','a:9:{i:0;s:20:\"add-post-type-course\";i:1;s:24:\"add-post-type-instructor\";i:2;s:12:\"add-post_tag\";i:3;s:15:\"add-post_format\";i:4;s:28:\"add-masonry-gallery-category\";i:5;s:25:\"add-testimonials-category\";i:6;s:19:\"add-course-category\";i:7;s:14:\"add-course-tag\";i:8;s:23:\"add-instructor-category\";}'),(23,1,'_woocommerce_tracks_anon_id','woo:CvwEcbIyZ0RwtVJUFBdKMW6g'),(24,1,'wc_last_active','1731283200'),(25,1,'nav_menu_recently_edited','223'),(26,1,'tribe_setDefaultNavMenuBoxes','1'),(27,1,'meta-box-order_product','a:3:{s:4:\"side\";s:84:\"submitdiv,postimagediv,woocommerce-product-images,product_catdiv,tagsdiv-product_tag\";s:6:\"normal\";s:55:\"woocommerce-product-data,postcustom,slugdiv,postexcerpt\";s:8:\"advanced\";s:0:\"\";}'),(28,1,'position',''),(29,1,'facebook',''),(30,1,'twitter',''),(31,1,'linkedin',''),(32,1,'instagram',''),(33,1,'pinterest',''),(34,1,'tumblr',''),(35,1,'last_update','1730371186'),(36,1,'wp_persisted_preferences','a:5:{s:17:\"core/edit-widgets\";a:2:{s:26:\"isComplementaryAreaVisible\";b:1;s:12:\"welcomeGuide\";b:0;}s:9:\"_modified\";s:24:\"2024-10-30T10:58:54.841Z\";s:14:\"core/edit-post\";a:1:{s:12:\"welcomeGuide\";b:0;}s:4:\"core\";a:1:{s:26:\"isComplementaryAreaVisible\";b:1;}s:22:\"core/customize-widgets\";a:2:{s:12:\"welcomeGuide\";b:0;s:20:\"keepCaretInsideBlock\";b:0;}}'),(39,1,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:0:{}}'),(41,1,'billing_first_name',''),(42,1,'billing_last_name',''),(43,1,'billing_company',''),(44,1,'billing_address_1',''),(45,1,'billing_address_2',''),(46,1,'billing_city',''),(47,1,'billing_postcode',''),(48,1,'billing_country',''),(49,1,'billing_state',''),(50,1,'billing_phone',''),(51,1,'billing_email','ductai2982@gmail.com'),(52,1,'shipping_first_name',''),(53,1,'shipping_last_name',''),(54,1,'shipping_company',''),(55,1,'shipping_address_1',''),(56,1,'shipping_address_2',''),(57,1,'shipping_city',''),(58,1,'shipping_postcode',''),(59,1,'shipping_country',''),(60,1,'shipping_state',''),(61,1,'shipping_phone',''),(62,1,'manageedit-acf-post-typecolumnshidden','a:1:{i:0;s:7:\"acf-key\";}'),(63,1,'acf_user_settings','a:1:{s:19:\"post-type-first-run\";b:1;}'),(64,1,'closedpostboxes_instructor','a:0:{}'),(65,1,'metaboxhidden_instructor','a:1:{i:0;s:7:\"slugdiv\";}'),(66,1,'meta-box-order_course','a:4:{s:15:\"acf_after_title\";s:23:\"acf-group_671debb5e098e\";s:4:\"side\";s:74:\"submitdiv,course-categorydiv,tagsdiv-course-tag,pageparentdiv,postimagediv\";s:6:\"normal\";s:58:\"postexcerpt,commentstatusdiv,commentsdiv,slugdiv,authordiv\";s:8:\"advanced\";s:268:\"mkdf-meta-box-course_settings_meta_box,mkdf-meta-box-course_curriculum_meta_box,mkdf-meta-box-general_meta,mkdf-meta-box-sidebar_meta,mkdf-meta-box-logo_meta,mkdf-meta-box-header_meta,mkdf-meta-box-title_meta,mkdf-meta-box-footer_meta,mkdf-meta-box-content_bottom_meta\";}'),(67,1,'screen_layout_course','2'),(68,1,'closedpostboxes_course','a:0:{}'),(69,1,'metaboxhidden_course','a:1:{i:0;s:7:\"slugdiv\";}'),(70,1,'meta-box-order_page','a:4:{s:15:\"acf_after_title\";s:0:\"\";s:4:\"side\";s:62:\"submitdiv,pageparentdiv,slider_revolution_metabox,postimagediv\";s:6:\"normal\";s:79:\"revisionsdiv,commentstatusdiv,commentsdiv,slugdiv,authordiv,wpb_visual_composer\";s:8:\"advanced\";s:212:\"mkdf-meta-box-general_meta,mkdf-meta-box-blog_meta,mkdf-meta-box-sidebar_meta,mkdf-meta-box-logo_meta,mkdf-meta-box-header_meta,mkdf-meta-box-title_meta,mkdf-meta-box-footer_meta,mkdf-meta-box-content_bottom_meta\";}'),(71,1,'screen_layout_page','2'),(72,1,'closedpostboxes_page','a:0:{}'),(73,1,'metaboxhidden_page','a:5:{i:0;s:12:\"revisionsdiv\";i:1;s:16:\"commentstatusdiv\";i:2;s:11:\"commentsdiv\";i:3;s:7:\"slugdiv\";i:4;s:9:\"authordiv\";}'),(74,1,'meta-box-order_instructor','a:4:{s:15:\"acf_after_title\";s:23:\"acf-group_671d014aac69d\";s:4:\"side\";s:59:\"submitdiv,instructor-categorydiv,pageparentdiv,postimagediv\";s:6:\"normal\";s:58:\"postexcerpt,commentstatusdiv,commentsdiv,slugdiv,authordiv\";s:8:\"advanced\";s:218:\"mkdf-meta-box-general_meta,mkdf-meta-box-sidebar_meta,mkdf-meta-box-instructor_meta,mkdf-meta-box-logo_meta,mkdf-meta-box-header_meta,mkdf-meta-box-title_meta,mkdf-meta-box-footer_meta,mkdf-meta-box-content_bottom_meta\";}'),(75,1,'screen_layout_instructor','2'),(77,1,'community-events-location','a:1:{s:2:\"ip\";s:13:\"171.242.192.0\";}'),(88,1,'woocommerce_admin_task_list_tracked_started_tasks','{\"payments\":1,\"tax\":3,\"launch-your-store\":2}'),(91,1,'_new_email','a:2:{s:4:\"hash\";s:32:\"71b1b64e53c819279f0e4cb4175ebb7b\";s:8:\"newemail\";s:20:\"ductai2982@gmail.com\";}'),(92,1,'session_tokens','a:2:{s:64:\"d8cc79ef40fb31dc3d970a65542e8d0ffd727f55ce15ff9bd4d35bd979ae398b\";a:4:{s:10:\"expiration\";i:1731419247;s:2:\"ip\";s:15:\"171.255.162.250\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36\";s:5:\"login\";i:1731246447;}s:64:\"cc2c18bb43c5249d32c37c010b509b92f0c770d74917f42d1cacbe25435f03b9\";a:4:{s:10:\"expiration\";i:1731460354;s:2:\"ip\";s:14:\"171.242.192.35\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36\";s:5:\"login\";i:1731287554;}}');
/*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_users`
--

DROP TABLE IF EXISTS `wp_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_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_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_users`
--

LOCK TABLES `wp_users` WRITE;
/*!40000 ALTER TABLE `wp_users` DISABLE KEYS */;
INSERT INTO `wp_users` VALUES (1,'tutor@123','$P$B.C8iCDABCvaqRMTNl1WcqDla8l7Ha/','tutor123','ductai2982@gmail.com','http://giasuolympia.com','2024-10-20 12:18:04','',0,'Admin');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wc_admin_note_actions`
--

DROP TABLE IF EXISTS `wp_wc_admin_note_actions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_admin_note_actions` (
  `action_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `note_id` bigint(20) unsigned NOT NULL,
  `name` varchar(255) NOT NULL,
  `label` varchar(255) NOT NULL,
  `query` longtext NOT NULL,
  `status` varchar(255) NOT NULL,
  `actioned_text` varchar(255) NOT NULL,
  `nonce_action` varchar(255) DEFAULT NULL,
  `nonce_name` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`action_id`),
  KEY `note_id` (`note_id`)
) ENGINE=InnoDB AUTO_INCREMENT=16769 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_admin_note_actions`
--

LOCK TABLES `wp_wc_admin_note_actions` WRITE;
/*!40000 ALTER TABLE `wp_wc_admin_note_actions` DISABLE KEYS */;
INSERT INTO `wp_wc_admin_note_actions` VALUES (1,1,'notify-refund-returns-page','Edit page','http://giasuolympia.com/wp-admin/post.php?post=18&action=edit','actioned','',NULL,NULL),(84,57,'visit-the-theme-marketplace','Visit the theme marketplace','https://woocommerce.com/product-category/themes/?utm_source=inbox&utm_medium=product','actioned','',NULL,NULL),(85,58,'day-after-first-product','Learn more','https://woocommerce.com/document/woocommerce-customizer/?utm_source=inbox&utm_medium=product','actioned','',NULL,NULL),(86,59,'learn-more','Learn more','https://woocommerce.com/mobile/?utm_medium=product','actioned','',NULL,NULL),(251,60,'view-payment-gateways','Learn more','https://woocommerce.com/product-category/woocommerce-extensions/payment-gateways/?utm_medium=product','actioned','',NULL,NULL),(416,61,'tracking-opt-in','Activate usage tracking','','actioned','',NULL,NULL),(417,62,'learn-more','Learn more','https://woocommerce.com/payments/?utm_medium=product','unactioned','',NULL,NULL),(418,62,'get-started','Get started','http://giasuolympia.com/wp-admin/admin.php?page=wc-admin&action=setup-woocommerce-payments','actioned','','setup-woocommerce-payments',''),(583,63,'learn-more','Learn more','https://woocommerce.com/posts/pre-launch-checklist-the-essentials/?utm_source=inbox&utm_medium=product','actioned','',NULL,NULL),(748,64,'install-jp-and-wcs-plugins','Install plugins','','actioned','',NULL,NULL),(1325,66,'paypal_cta_q3_2024_v2','Get PayPal Payments','https://woocommerce.com/products/woocommerce-paypal-payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=paypal_cta_q3_2024_v2','unactioned','',NULL,NULL),(1489,65,'mollie_q4_2024','Get paid with Mollie','https://woocommerce.com/products/mollie-payments-for-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=mollie_q4_2024','unactioned','',NULL,NULL),(1976,56,'stripe_securityupdate_q4_2024_click','Review and update','https://woocommerce.com/document/stripe/admin-experience/updated-requirements-for-stripe-plugin-mid-2024/?utm_source=inbox_note&utm_medium=product&utm_campaign=stripe_securityupdate_q4_2024_click','unactioned','',NULL,NULL),(2706,67,'Renewal_notification_emails_Woosubscriptions_button_Nov2024','Set up automatic subscription reminders','https://woocommerce.com/document/subscriptions/subscriptions-notifications/?utm_source=inbox_note&utm_medium=product&utm_campaign=Renewal_notification_emails_Woosubscriptions_button_Nov2024','unactioned','',NULL,NULL),(3600,68,'paypal_promo_Q4_2024','Add PayPal today','https://woocommerce.com/products/woocommerce-paypal-payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=paypal_promo_Q4_2024','unactioned','',NULL,NULL),(4858,71,'Announce-UPS-WCShipping-button-Dec2024','Ship with UPS on WooCommerce','https://woocommerce.com/ups-and-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=Announce-UPS-WCShipping-button-Dec2024','unactioned','',NULL,NULL),(5110,70,'usps-mail-service-to-canada-suspended-dec-2024','Stay up to date','https://about.usps.com/newsroom/service-alerts/international/canada-suspension.htm','unactioned','',NULL,NULL),(5362,72,'account-creation-after-checkout-button-dec2024','Enable it today','https://woocommerce.com/document/woocommerce-store-editing/customizing-order-confirmation-page/?utm_source=inbox_note&utm_medium=product&utm_campaign=account-creation-after-checkout-button-dec2024','unactioned','',NULL,NULL),(7714,74,'learn-more','Learn more','https://woocommerce.com/mobile/?utm_source=inbox&utm_medium=product','actioned','',NULL,NULL),(9156,75,'affirm_promo_Q1_2025','Save with Affirm','https://woocommerce.com/products/woocommerce-gateway-affirm/?utm_source=inbox_note&utm_medium=product&utm_campaign=affirm_promo_Q1_2025','unactioned','',NULL,NULL),(9495,76,'new-woo-brand-announcement-feb4-2025-button','Read the blog','https://woocommerce.com/posts/introducing-the-new-woo-brand/?utm_source=inbox_note&utm_medium=product&utm_campaign=new-woo-brand-announcement-feb4-2025-button','unactioned','',NULL,NULL),(10087,77,'paypal_bnpl_au_promo_Q1_2025_button','Enable “Pay in 4” now','https://woocommerce.com/document/woocommerce-paypal-payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=paypal_bnpl_au_promo_Q1_2025_button#pay-later-tab','unactioned','',NULL,NULL),(10848,78,'stripe_stripetax_q1_2025_click','Automate my taxes with Stripe','https://woocommerce.com/products/stripe-tax/?utm_source=inbox_note&utm_medium=product&utm_campaign=stripe_stripetax_q1_2025_click','unactioned','',NULL,NULL),(11527,79,'printful_promo_q1_2025','Get started for free','https://woocommerce.com/products/printful/?utm_source=inbox_note&utm_medium=product&utm_campaign=printful_promo_q1_2025','unactioned','',NULL,NULL),(13403,81,'woo-marketplace-two-year-subscriptions-rin-2025-03-17','Browse the Marketplace','https://woocommerce.com/products/?utm_source=inbox_note&utm_medium=product&utm_campaign=woo-marketplace-two-year-subscriptions-rin-2025-03-17','actioned','',NULL,NULL),(14521,82,'viva_wallet_migration_q1_2025_click','Get Viva.com Smart Checkout','https://woocommerce.com/it/products/viva-com-smart-for-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=viva_wallet_migration_q1_2025_click','actioned','',NULL,NULL),(15211,84,'learn-more','Learn more','https://woocommerce.com/mobile/?utm_source=inbox&utm_medium=product','actioned','',NULL,NULL),(15735,83,'stripe_nocapture_q2_2025_click','Update now','https://woocommerce.com/products/woocommerce-order-status-manager/?utm_source=inbox_note&utm_medium=product&utm_campaign=stripe_nocapture_q2_2025_click','unactioned','',NULL,NULL),(15910,85,'WooCommerce-Stripe-Gateway-Update-April-2025','See available updates','http://giasuolympia.com/wp-admin/update-core.php?','actioned','',NULL,NULL),(15911,86,'WooCommerce-Stripe-Gateway-Update-Info-April-2025','Dismiss','#','actioned','',NULL,NULL),(16682,2,'wayflyer_bnpl_q4_2021','Level up with funding','https://woocommerce.com/products/wayflyer/?utm_source=inbox_note&utm_medium=product&utm_campaign=wayflyer_bnpl_q4_2021','actioned','',NULL,NULL),(16683,3,'wc_shipping_mobile_app_usps_q4_2021','Get WooCommerce Shipping','https://woocommerce.com/woocommerce-shipping/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc_shipping_mobile_app_usps_q4_2021','actioned','',NULL,NULL),(16684,4,'learn-more','Learn more','https://woocommerce.com/posts/ecommerce-shipping-solutions-guide/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','actioned','',NULL,NULL),(16685,5,'optimizing-the-checkout-flow','Learn more','https://woocommerce.com/posts/optimizing-woocommerce-checkout?utm_source=inbox_note&utm_medium=product&utm_campaign=optimizing-the-checkout-flow','actioned','',NULL,NULL),(16686,6,'qualitative-feedback-from-new-users','Share feedback','https://automattic.survey.fm/woopayments-new-user-feedback','actioned','',NULL,NULL),(16687,7,'share-feedback','Share feedback','http://automattic.survey.fm/paypal-feedback','unactioned','',NULL,NULL),(16688,8,'get-started','Get started','https://woocommerce.com/products/google-listings-and-ads?utm_source=inbox_note&utm_medium=product&utm_campaign=get-started','actioned','',NULL,NULL),(16689,9,'update-wc-subscriptions-3-0-15','View latest version','http://giasuolympia.com/wp-admin/&page=wc-addons&section=helper','actioned','',NULL,NULL),(16690,10,'update-wc-core-5-4-0','How to update WooCommerce','https://docs.woocommerce.com/document/how-to-update-woocommerce/','actioned','',NULL,NULL),(16691,13,'ppxo-pps-install-paypal-payments-1','View upgrade guide','https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/','actioned','',NULL,NULL),(16692,14,'ppxo-pps-install-paypal-payments-2','View upgrade guide','https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/','actioned','',NULL,NULL),(16693,15,'learn-more','Learn more','https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','unactioned','',NULL,NULL),(16694,15,'dismiss','Dismiss','','actioned','',NULL,NULL),(16695,16,'learn-more','Learn more','https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','unactioned','',NULL,NULL),(16696,16,'dismiss','Dismiss','','actioned','',NULL,NULL),(16697,17,'learn-more','Learn more','https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','unactioned','',NULL,NULL),(16698,17,'dismiss','Dismiss','','actioned','',NULL,NULL),(16699,18,'learn-more','Learn more','https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','unactioned','',NULL,NULL),(16700,18,'dismiss','Dismiss','','actioned','',NULL,NULL),(16701,19,'share-feedback','Share feedback','https://automattic.survey.fm/store-management','unactioned','',NULL,NULL),(16702,20,'learn-more','Learn more','https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/','unactioned','',NULL,NULL),(16703,20,'woocommerce-core-paypal-march-2022-dismiss','Dismiss','','actioned','',NULL,NULL),(16704,21,'learn-more','Learn more','https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/','unactioned','',NULL,NULL),(16705,21,'dismiss','Dismiss','','actioned','',NULL,NULL),(16706,22,'pinterest_03_2022_update','Update Instructions','https://woocommerce.com/document/pinterest-for-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=pinterest_03_2022_update#section-3','actioned','',NULL,NULL),(16707,23,'store_setup_survey_survey_q2_2022_share_your_thoughts','Tell us how it’s going','https://automattic.survey.fm/store-setup-survey-2022','actioned','',NULL,NULL),(16708,24,'needs-update-eway-payment-gateway-rin-action-button-2022-12-20','See available updates','http://giasuolympia.com/wp-admin/update-core.php','unactioned','',NULL,NULL),(16709,24,'needs-update-eway-payment-gateway-rin-dismiss-button-2022-12-20','Dismiss','#','actioned','',NULL,NULL),(16710,25,'updated-eway-payment-gateway-rin-action-button-2022-12-20','See all updates','http://giasuolympia.com/wp-admin/update-core.php','unactioned','',NULL,NULL),(16711,25,'updated-eway-payment-gateway-rin-dismiss-button-2022-12-20','Dismiss','#','actioned','',NULL,NULL),(16712,26,'share-navigation-survey-feedback','Share feedback','https://automattic.survey.fm/new-ecommerce-plan-navigation','actioned','',NULL,NULL),(16713,27,'woopay-beta-merchantrecruitment-activate-04MAY23','Activate WooPay','http://giasuolympia.com/wp-admin/admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout','actioned','',NULL,NULL),(16714,27,'woopay-beta-merchantrecruitment-activate-learnmore-04MAY23','Learn More','https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-activate-learnmore-04MAY23','unactioned','',NULL,NULL),(16715,28,'woocommerce-wcpay-march-2023-update-needed-button','See Blog Post','https://developer.woocommerce.com/2023/03/23/critical-vulnerability-detected-in-woocommerce-payments-what-you-need-to-know','unactioned','',NULL,NULL),(16716,28,'woocommerce-wcpay-march-2023-update-needed-dismiss-button','Dismiss','#','actioned','',NULL,NULL),(16717,29,'tap_to_pay_iphone_q2_2023_no_wcpay','Simplify my payments','https://woocommerce.com/products/woocommerce-payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=tap_to_pay_iphone_q2_2023_no_wcpay','actioned','',NULL,NULL),(16718,30,'extension-settings','See available updates','http://giasuolympia.com/wp-admin/update-core.php','unactioned','',NULL,NULL),(16719,30,'dismiss','Dismiss','#','actioned','',NULL,NULL),(16720,31,'woopay-beta-merchantrecruitment-update-WCPay-04MAY23','Update WooCommerce Payments','http://giasuolympia.com/wp-admin/plugins.php?plugin_status=all','unactioned','',NULL,NULL),(16721,31,'woopay-beta-merchantrecruitment-update-activate-04MAY23','Activate WooPay','http://giasuolympia.com/wp-admin/admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout','actioned','',NULL,NULL),(16722,32,'woopay-beta-existingmerchants-noaction-documentation-27APR23','Documentation','https://woocommerce.com/document/woopay-merchant-documentation/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-existingmerchants-noaction-documentation-27APR23','actioned','',NULL,NULL),(16723,33,'woopay-beta-existingmerchants-update-WCPay-27APR23','Update WooCommerce Payments','http://giasuolympia.com/wp-admin/plugins.php?plugin_status=all','actioned','',NULL,NULL),(16724,34,'woopay-beta-merchantrecruitment-short-activate-04MAY23','Activate WooPay','http://giasuolympia.com/wp-admin/admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout','actioned','',NULL,NULL),(16725,34,'woopay-beta-merchantrecruitment-short-activate-learnmore-04MAY23','Learn More','https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-04MAY23','actioned','',NULL,NULL),(16726,35,'woopay-beta-merchantrecruitment-short-update-WCPay-04MAY23','Update WooCommerce Payments','http://giasuolympia.com/wp-admin/plugins.php?plugin_status=all','unactioned','',NULL,NULL),(16727,35,'woopay-beta-merchantrecruitment-short-update-activate-04MAY23','Activate WooPay','http://giasuolympia.com/wp-admin/admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout','actioned','',NULL,NULL),(16728,36,'woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTA','Activate WooPay Test A','http://giasuolympia.com/wp-admin/admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout','unactioned','',NULL,NULL),(16729,36,'woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA','Learn More','https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA','unactioned','',NULL,NULL),(16730,37,'woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTB','Activate WooPay Test B','http://giasuolympia.com/wp-admin/admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout','unactioned','',NULL,NULL),(16731,37,'woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA','Learn More','https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA','unactioned','',NULL,NULL),(16732,38,'woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTC','Activate WooPay Test C','http://giasuolympia.com/wp-admin/admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout','unactioned','',NULL,NULL),(16733,38,'woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTC','Learn More','https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTC','unactioned','',NULL,NULL),(16734,39,'woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTD','Activate WooPay Test D','http://giasuolympia.com/wp-admin/admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout','unactioned','',NULL,NULL),(16735,39,'woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTD','Learn More','https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTD','unactioned','',NULL,NULL),(16736,40,'woopay-beta-merchantrecruitment-short-activate-button-09MAY23','Activate WooPay','http://giasuolympia.com/wp-admin/admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout','unactioned','',NULL,NULL),(16737,40,'woopay-beta-merchantrecruitment-short-activate-learnmore-button2-09MAY23','Learn More','https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-button2-09MAY23','unactioned','',NULL,NULL),(16738,41,'woopay-beta-merchantrecruitment-short-update-WCPay-09MAY23','Update WooCommerce Payments','http://giasuolympia.com/wp-admin/plugins.php?plugin_status=all','unactioned','',NULL,NULL),(16739,41,'woopay-beta-merchantrecruitment-short-update-activate-09MAY23','Activate WooPay','http://giasuolympia.com/wp-admin/admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout','unactioned','',NULL,NULL),(16740,42,'woocommerce-WCSubscriptions-June-2023-updated-needed-Plugin-Settings','See available updates','http://giasuolympia.com/wp-admin/plugins.php?plugin_status=all','unactioned','',NULL,NULL),(16741,42,'woocommerce-WCSubscriptions-June-2023-updated-needed-dismiss','Dismiss','#','actioned','',NULL,NULL),(16742,43,'woocommerce-WCReturnsWarranty-June-2023-updated-needed','See available updates','http://giasuolympia.com/wp-admin/plugins.php?plugin_status=all','unactioned','',NULL,NULL),(16743,43,'woocommerce-WCReturnsWarranty-June-2023-updated-needed','Dismiss','#','actioned','',NULL,NULL),(16744,44,'woocommerce-WCOPC-June-2023-updated-needed','See available updates','http://giasuolympia.com/wp-admin/plugins.php?plugin_status=all','actioned','',NULL,NULL),(16745,44,'woocommerce-WCOPC-June-2023-updated-needed','Dismiss','http://giasuolympia.com/wp-admin/#','actioned','',NULL,NULL),(16746,45,'woocommerce-WCGC-July-2023-update-needed','See available updates','http://giasuolympia.com/wp-admin/plugins.php?plugin_status=all','unactioned','',NULL,NULL),(16747,45,'woocommerce-WCGC-July-2023-update-needed','Dismiss','#','actioned','',NULL,NULL),(16748,46,'learn-more','Learn more','https://woocommerce.com/document/fedex/?utm_medium=product&utm_source=inbox_note&utm_campaign=learn-more#july-2023-api-outage','unactioned','',NULL,NULL),(16749,47,'plugin-list','See available updates','http://giasuolympia.com/wp-admin/plugins.php?plugin_status=all','unactioned','',NULL,NULL),(16750,47,'dismiss','Dismiss','http://giasuolympia.com/wp-admin/admin.php?page=wc-admin','actioned','',NULL,NULL),(16751,48,'woocommerce-WCStripe-Aug-2023-update-needed','See available updates','http://giasuolympia.com/wp-admin/update-core.php?','unactioned','',NULL,NULL),(16752,48,'dismiss','Dismiss','#','actioned','',NULL,NULL),(16753,49,'dismiss','Dismiss','#','actioned','',NULL,NULL),(16754,50,'dismiss','Dismiss','#','actioned','',NULL,NULL),(16755,51,'avalara_q3-2023_noAvaTax','Automate my sales tax','https://woocommerce.com/products/woocommerce-avatax/?utm_source=inbox_note&utm_medium=product&utm_campaign=avalara_q3-2023_noAvaTax','unactioned','',NULL,NULL),(16756,52,'woocommerce-usermeta-Sept2023-productvendors','See available updates','http://giasuolympia.com/wp-admin/plugins.php','unactioned','',NULL,NULL),(16757,52,'dismiss','Dismiss','http://giasuolympia.com/wp-admin/#','actioned','',NULL,NULL),(16758,53,'woocommerce-STRIPE-Oct-2023-update-needed','See available updates','http://giasuolympia.com/wp-admin/update-core.php','unactioned','',NULL,NULL),(16759,53,'dismiss','Dismiss','#','actioned','',NULL,NULL),(16760,54,'amazon-mcf-review-button-2023-12-07','Leave a review','https://woocommerce.com/products/woocommerce-amazon-fulfillment/?review&utm_source=inbox_note&utm_medium=product&utm_campaign=amazon-mcf-review-button-2023-12-07','actioned','',NULL,NULL),(16761,54,'amazon-mcf-support-button-2023-12-07','Request support','https://woocommerce.com/my-account/contact-support/?utm_source=inbox_note&utm_medium=product&utm_campaign=amazon-mcf-support-button-2023-12-07','actioned','',NULL,NULL),(16762,55,'view_docs','Learn about Deposit schedules','https://woocommerce.com/document/woopayments/deposits/deposit-schedule/?utm_source=inbox_note&utm_medium=product&utm_campaign=view_docs#available-funds','unactioned','',NULL,NULL),(16763,87,'klaviyo_q2_2025','Try Klaviyo today','https://woocommerce.com/products/klaviyo-for-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=klaviyo_q2_2025','actioned','',NULL,NULL),(16764,69,'sirt-woo-2024-11-xss-admin','See available updates','http://giasuolympia.com/wp-admin/update-core.php?','unactioned','',NULL,NULL),(16765,69,'sirt-woo-2024-11-xss-admin','Dismiss','#','actioned','',NULL,NULL),(16766,73,'woocommerce-analytics-order-attribution-promotions-december-2024-find-out-more','Find out more','https://wordpress.org/plugins/woocommerce-analytics','actioned','',NULL,NULL),(16767,80,'paypal-braintree-sdk-depreciation-2025-02-20-button','Upgrade now','http://giasuolympia.com/wp-admin/wp-admin/plugins.php','actioned','',NULL,NULL),(16768,88,'uk-vat-notice-button-2025-04-30','Learn more about this extension','https://wordpress.org/plugins/eu-vat-for-woocommerce/','actioned','',NULL,NULL);
/*!40000 ALTER TABLE `wp_wc_admin_note_actions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wc_admin_notes`
--

DROP TABLE IF EXISTS `wp_wc_admin_notes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_admin_notes` (
  `note_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `type` varchar(20) NOT NULL,
  `locale` varchar(20) NOT NULL,
  `title` longtext NOT NULL,
  `content` longtext NOT NULL,
  `content_data` longtext DEFAULT NULL,
  `status` varchar(200) NOT NULL,
  `source` varchar(200) NOT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_reminder` datetime DEFAULT NULL,
  `is_snoozable` tinyint(1) NOT NULL DEFAULT 0,
  `layout` varchar(20) NOT NULL DEFAULT '',
  `image` varchar(200) DEFAULT NULL,
  `is_deleted` tinyint(1) NOT NULL DEFAULT 0,
  `is_read` tinyint(1) NOT NULL DEFAULT 0,
  `icon` varchar(200) NOT NULL DEFAULT 'info',
  PRIMARY KEY (`note_id`)
) ENGINE=InnoDB AUTO_INCREMENT=89 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_admin_notes`
--

LOCK TABLES `wp_wc_admin_notes` WRITE;
/*!40000 ALTER TABLE `wp_wc_admin_notes` DISABLE KEYS */;
INSERT INTO `wp_wc_admin_notes` VALUES (1,'wc-refund-returns-page','info','en_US','Setup a Refund and Returns Policy page to boost your store\'s credibility.','We have created a sample draft Refund and Returns Policy page for you. Please have a look and update it to fit your store.','{}','unactioned','woocommerce-core','2024-10-20 12:41:39',NULL,0,'plain','',0,0,'info'),(2,'wayflyer_bnpl_q4_2021','marketing','en_US','Grow your business with funding through Wayflyer','Fast, flexible financing to boost cash flow and help your business grow – one fee, no interest rates, penalties, equity, or personal guarantees. Based on your store’s performance, Wayflyer provides funding and analytical insights to invest in your business.','{}','pending','woocommerce.com','2024-10-20 12:41:41',NULL,0,'plain','',0,0,'info'),(3,'wc_shipping_mobile_app_usps_q4_2021','marketing','en_US','Print and manage your shipping labels with WooCommerce Shipping and the WooCommerce Mobile App','Save time by printing, purchasing, refunding, and tracking shipping labels generated by <a href=\"https://woocommerce.com/woocommerce-shipping/\">WooCommerce Shipping</a> – all directly from your mobile device!','{}','pending','woocommerce.com','2024-10-20 12:41:41',NULL,0,'plain','',0,0,'info'),(4,'your-first-product','info','en_US','Your first product','That’s huge! You’re well on your way to building a successful online store — now it’s time to think about how you’ll fulfill your orders.<br /><br />Read our shipping guide to learn best practices and options for putting together your shipping strategy. And for WooCommerce stores in the United States, you can print discounted shipping labels via USPS with <a href=\"https://href.li/?https://woocommerce.com/shipping\" target=\"_blank\">WooCommerce Shipping</a>.','{}','pending','woocommerce.com','2024-10-20 12:41:41',NULL,0,'plain','',0,0,'info'),(5,'wc-admin-optimizing-the-checkout-flow','info','en_US','Optimizing the checkout flow','It’s crucial to get your store’s checkout as smooth as possible to avoid losing sales. Let’s take a look at how you can optimize the checkout experience for your shoppers.','{}','unactioned','woocommerce.com','2024-10-29 12:51:37',NULL,0,'plain','',0,1,'info'),(6,'wc-payments-qualitative-feedback','info','en_US','WooPayments setup - let us know what you think','Congrats on enabling WooPayments for your store. Please share your feedback in this 2 minute survey to help us improve the setup process.','{}','pending','woocommerce.com','2024-10-20 12:41:41',NULL,0,'plain','',0,0,'info'),(7,'share-your-feedback-on-paypal','info','en_US','Share your feedback on PayPal','Share your feedback in this 2 minute survey about how we can make the process of accepting payments more useful for your store.','{}','pending','woocommerce.com','2024-10-20 12:41:41',NULL,0,'plain','',0,0,'info'),(8,'google_listings_and_ads_install','marketing','en_US','Drive traffic and sales with Google','Reach online shoppers to drive traffic and sales for your store by showcasing products across Google, for free or with ads.','{}','pending','woocommerce.com','2024-10-20 12:41:41',NULL,0,'plain','',0,0,'info'),(9,'wc-subscriptions-security-update-3-0-15','info','en_US','WooCommerce Subscriptions security update!','We recently released an important security update to WooCommerce Subscriptions. To ensure your site’s data is protected, please upgrade <strong>WooCommerce Subscriptions to version 3.0.15</strong> or later.<br /><br />Click the button below to view and update to the latest Subscriptions version, or log in to <a href=\"https://woocommerce.com/my-dashboard\">WooCommerce.com Dashboard</a> and navigate to your <strong>Downloads</strong> page.<br /><br />We recommend always using the latest version of WooCommerce Subscriptions, and other software running on your site, to ensure maximum security.<br /><br />If you have any questions we are here to help — just <a href=\"https://woocommerce.com/my-account/create-a-ticket/\">open a ticket</a>.','{}','pending','woocommerce.com','2024-10-20 12:41:41',NULL,0,'plain','',0,0,'info'),(10,'woocommerce-core-update-5-4-0','info','en_US','Update to WooCommerce 5.4.1 now','WooCommerce 5.4.1 addresses a checkout issue discovered in WooCommerce 5.4. We recommend upgrading to WooCommerce 5.4.1 as soon as possible.','{}','pending','woocommerce.com','2024-10-20 12:41:41',NULL,0,'plain','',0,0,'info'),(11,'wcpay-promo-2020-11','marketing','en_US','wcpay-promo-2020-11','wcpay-promo-2020-11','{}','pending','woocommerce.com','2024-10-20 12:41:41',NULL,0,'plain','',0,0,'info'),(12,'wcpay-promo-2020-12','marketing','en_US','wcpay-promo-2020-12','wcpay-promo-2020-12','{}','pending','woocommerce.com','2024-10-20 12:41:41',NULL,0,'plain','',0,0,'info'),(13,'ppxo-pps-upgrade-paypal-payments-1','info','en_US','Get the latest PayPal extension for WooCommerce','Heads up! There’s a new PayPal on the block!<br /><br />Now is a great time to upgrade to our latest <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal extension</a> to continue to receive support and updates with PayPal.<br /><br />Get access to a full suite of PayPal payment methods, extensive currency and country coverage, and pay later options with the all-new PayPal extension for WooCommerce.','{}','pending','woocommerce.com','2024-10-20 12:41:41',NULL,0,'plain','',0,0,'info'),(14,'ppxo-pps-upgrade-paypal-payments-2','info','en_US','Upgrade your PayPal experience!','Get access to a full suite of PayPal payment methods, extensive currency and country coverage, offer subscription and recurring payments, and the new PayPal pay later options.<br /><br />Start using our <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">latest PayPal today</a> to continue to receive support and updates.','{}','pending','woocommerce.com','2024-10-20 12:41:41',NULL,0,'plain','',0,0,'info'),(15,'woocommerce-core-sqli-july-2021-need-to-update','update','en_US','Action required: Critical vulnerabilities in WooCommerce','In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br />Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br /><br />For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.','{}','pending','woocommerce.com','2024-10-20 12:41:41',NULL,0,'plain','',0,0,'info'),(16,'woocommerce-blocks-sqli-july-2021-need-to-update','update','en_US','Action required: Critical vulnerabilities in WooCommerce Blocks','In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br />Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br /><br />For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.','{}','pending','woocommerce.com','2024-10-20 12:41:41',NULL,0,'plain','',0,0,'info'),(17,'woocommerce-core-sqli-july-2021-store-patched','update','en_US','Solved: Critical vulnerabilities patched in WooCommerce','In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br /><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.','{}','pending','woocommerce.com','2024-10-20 12:41:41',NULL,0,'plain','',0,0,'info'),(18,'woocommerce-blocks-sqli-july-2021-store-patched','update','en_US','Solved: Critical vulnerabilities patched in WooCommerce Blocks','In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br /><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.','{}','pending','woocommerce.com','2024-10-20 12:41:41',NULL,0,'plain','',0,0,'info'),(19,'habit-moment-survey','marketing','en_US','We’re all ears! Share your experience so far with WooCommerce','We’d love your input to shape the future of WooCommerce together. Feel free to share any feedback, ideas or suggestions that you have.','{}','pending','woocommerce.com','2024-10-20 12:41:41',NULL,0,'plain','',0,0,'info'),(20,'woocommerce-core-paypal-march-2022-updated','update','en_US','Security auto-update of WooCommerce','<strong>Your store has been updated to the latest secure version of WooCommerce</strong>. We worked with WordPress to deploy PayPal Standard security updates for stores running WooCommerce (version 3.5 to 6.3). It’s recommended to disable PayPal Standard, and use <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal Payments</a> to accept PayPal.','{}','pending','woocommerce.com','2024-10-20 12:41:41',NULL,0,'plain','',0,0,'info'),(21,'woocommerce-core-paypal-march-2022-updated-nopp','update','en_US','Security auto-update of WooCommerce','<strong>Your store has been updated to the latest secure version of WooCommerce</strong>. We worked with WordPress to deploy security updates related to PayPal Standard payment gateway for stores running WooCommerce (version 3.5 to 6.3).','{}','pending','woocommerce.com','2024-10-20 12:41:41',NULL,0,'plain','',0,0,'info'),(22,'pinterest_03_2022_update','marketing','en_US','Your Pinterest for WooCommerce plugin is out of date!','Update to the latest version of Pinterest for WooCommerce to continue using this plugin and keep your store connected with Pinterest. To update, visit <strong>Plugins &gt; Installed Plugins</strong>, and click on “update now” under Pinterest for WooCommerce.','{}','pending','woocommerce.com','2024-10-20 12:41:41',NULL,0,'plain','',0,0,'info'),(23,'store_setup_survey_survey_q2_2022','survey','en_US','How is your store setup going?','Our goal is to make sure you have all the right tools to start setting up your store in the smoothest way possible.\r\nWe’d love to know if we hit our mark and how we can improve. To collect your thoughts, we made a 2-minute survey.','{}','unactioned','woocommerce.com','2024-10-27 14:28:04',NULL,0,'plain','',0,1,'info'),(24,'needs-update-eway-payment-gateway-rin-2022-12-20','update','en_US','Security vulnerability patched in WooCommerce Eway Gateway','In response to a potential vulnerability identified in WooCommerce Eway Gateway versions 3.1.0 to 3.5.0, we’ve worked to deploy security fixes and have released an updated version.\r\nNo external exploits have been detected, but we recommend you update to your latest supported version 3.1.26, 3.2.3, 3.3.1, 3.4.6, or 3.5.1','{}','pending','woocommerce.com','2024-10-20 12:41:41',NULL,0,'plain','',0,0,'info'),(25,'updated-eway-payment-gateway-rin-2022-12-20','update','en_US','WooCommerce Eway Gateway has been automatically updated','Your store is now running the latest secure version of WooCommerce Eway Gateway. We worked with the WordPress Plugins team to deploy a software update to stores running WooCommerce Eway Gateway (versions 3.1.0 to 3.5.0) in response to a security vulnerability that was discovered.','{}','pending','woocommerce.com','2024-10-20 12:41:41',NULL,0,'plain','',0,0,'info'),(26,'ecomm-wc-navigation-survey-2023','info','en_US','Navigating WooCommerce on WordPress.com','We are improving the WooCommerce navigation on WordPress.com and would love your help to make it better! Please share your experience with us in this 2-minute survey.','{}','pending','woocommerce.com','2024-10-20 12:41:41',NULL,0,'plain','',0,0,'info'),(27,'woopay-beta-merchantrecruitment-04MAY23','info','en_US','Increase conversions with WooPay — our fastest checkout yet','WooPay, a new express checkout feature built into WooCommerce Payments, is now available —and we’re inviting you to be one of the first to try it. \r\n<br><br>\r\nBoost conversions by offering your customers a simple, secure way to pay with a single click.\r\n<br><br>\r\nGet started in seconds.','{}','pending','woocommerce.com','2024-10-20 12:41:41',NULL,0,'plain','',0,0,'info'),(28,'woocommerce-wcpay-march-2023-update-needed','update','en_US','Action required: Security update for WooCommerce Payments','<strong>Your store requires a security update for WooCommerce Payments</strong>. Please update to the latest version of WooCommerce Payments immediately to address a potential vulnerability discovered on March 22. For more information on how to update, visit this WooCommerce Developer Blog Post.','{}','pending','woocommerce.com','2024-10-20 12:41:41',NULL,0,'plain','',0,0,'info'),(29,'tap_to_pay_iphone_q2_2023_no_wcpay','marketing','en_US','Accept in-person contactless payments on your iPhone','Tap to Pay on iPhone and WooCommerce Payments is quick, secure, and simple to set up — no extra terminals or card readers are needed. Accept contactless debit and credit cards, Apple Pay, and other NFC digital wallets in person.','{}','pending','woocommerce.com','2024-10-20 12:41:41',NULL,0,'plain','',0,0,'info'),(30,'woocommerce-WCPreOrders-april-2023-update-needed','update','en_US','Action required: Security update of WooCommerce Pre-Orders extension','<strong>Your store requires a security update for the WooCommerce Pre-Orders extension</strong>. Please update the WooCommerce Pre-Orders extension immediately to address a potential vulnerability discovered on April 11.','{}','pending','woocommerce.com','2024-10-20 12:41:41',NULL,0,'plain','',0,0,'info'),(31,'woopay-beta-merchantrecruitment-update-04MAY23','info','en_US','Increase conversions with WooPay — our fastest checkout yet','WooPay, a new express checkout feature built into WooCommerce Payments, is now available — and you’re invited to try it. \r\n<br /><br />\r\nBoost conversions by offering your customers a simple, secure way to pay with a single click.\r\n<br /><br />\r\nUpdate WooCommerce Payments to get started.','{}','pending','woocommerce.com','2024-10-20 12:41:41',NULL,0,'plain','',0,0,'info'),(32,'woopay-beta-existingmerchants-noaction-27APR23','info','en_US','WooPay is back!','Thanks for previously trying WooPay, the express checkout feature built into WooCommerce Payments. We’re excited to announce that WooPay availability has resumed. No action is required on your part.\r\n<br /><br />\r\nYou can now continue boosting conversions by offering your customers a simple, secure way to pay with a single click.','{}','pending','woocommerce.com','2024-10-20 12:41:41',NULL,0,'plain','',0,0,'info'),(33,'woopay-beta-existingmerchants-update-27APR23','info','en_US','WooPay is back!','Thanks for previously trying WooPay, the express checkout feature built into WooCommerce Payments. We’re excited to announce that WooPay availability has resumed.\r\n<br /><br />\r\n\r\nUpdate to the latest WooCommerce Payments version to continue boosting conversions by offering your customers a simple, secure way to pay with a single click.','{}','pending','woocommerce.com','2024-10-20 12:41:41',NULL,0,'plain','',0,0,'info'),(34,'woopay-beta-merchantrecruitment-short-04MAY23','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\nBoost conversions by letting customers pay with a single click.','{}','pending','woocommerce.com','2024-10-20 12:41:41',NULL,0,'plain','',0,0,'info'),(35,'woopay-beta-merchantrecruitment-short-update-04MAY23','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, our new express checkout feature. <br>Boost conversions by letting customers pay with a single click. <br><br>Update to the latest version of WooCommerce Payments to get started.','{}','pending','woocommerce.com','2024-10-20 12:41:41',NULL,0,'plain','',0,0,'info'),(36,'woopay-beta-merchantrecruitment-short-06MAY23-TESTA','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\nBoost conversions by letting customers pay with a single click.','{}','pending','woocommerce.com','2024-10-20 12:41:41',NULL,0,'plain','',0,0,'info'),(37,'woopay-beta-merchantrecruitment-short-06MAY23-TESTB','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\nBoost conversions by letting customers pay with a single click.','{}','pending','woocommerce.com','2024-10-20 12:41:41',NULL,0,'plain','',0,0,'info'),(38,'woopay-beta-merchantrecruitment-short-06MAY23-TESTC','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\nBoost conversions by letting customers pay with a single click.','{}','pending','woocommerce.com','2024-10-20 12:41:41',NULL,0,'plain','',0,0,'info'),(39,'woopay-beta-merchantrecruitment-short-06MAY23-TESTD','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\nBoost conversions by letting customers pay with a single click.','{}','pending','woocommerce.com','2024-10-20 12:41:41',NULL,0,'plain','',0,0,'info'),(40,'woopay-beta-merchantrecruitment-short-09MAY23','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\nBoost conversions by letting customers pay with a single click.','{}','pending','woocommerce.com','2024-10-20 12:41:41',NULL,0,'plain','',0,0,'info'),(41,'woopay-beta-merchantrecruitment-short-update-09MAY23','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, our new express checkout feature. <br>Boost conversions by letting customers pay with a single click. <br><br>Update to the latest version of WooCommerce Payments to get started.','{}','pending','woocommerce.com','2024-10-20 12:41:41',NULL,0,'plain','',0,0,'info'),(42,'woocommerce-WCSubscriptions-June-2023-updated-needed','marketing','en_US','Action required: Security update of WooCommerce Subscriptions','<strong>Your store requires a security update for the WooCommerce Subscriptions plugin</strong>. Please update the WooCommerce Subscriptions plugin immediately to address a potential vulnerability.','{}','pending','woocommerce.com','2024-10-20 12:41:41',NULL,0,'plain','',0,0,'info'),(43,'woocommerce-WCReturnsWarranty-June-2023-updated-needed','update','en_US','Action required: Security update of WooCommerce Returns and Warranty Requests extension','<strong>Your store requires a security update for the Returns and Warranty Requests extension</strong>.  Please update to the latest version of the WooCommerce Returns and Warranty Requests extension immediately to address a potential vulnerability discovered on May 31.','{}','pending','woocommerce.com','2024-10-20 12:41:41',NULL,0,'plain','',0,0,'info'),(44,'woocommerce-WCOPC-June-2023-updated-needed','update','en_US','Action required: Security update of WooCommerce One Page Checkout','<strong>Your shop requires a security update to address a vulnerability in the WooCommerce One Page Checkout extension</strong>. The fix for this vulnerability was released for this extension on June 13th. Please update immediately.','{}','pending','woocommerce.com','2024-10-20 12:41:41',NULL,0,'plain','',0,0,'info'),(45,'woocommerce-WCGC-July-2023-update-needed','update','en_US','Action required: Security update of WooCommerce GoCardless Extension','<strong>Your shop requires a security update to address a vulnerability in the WooCommerce GoCardless extension</strong>. The fix for this vulnerability was released on July 4th. Please update immediately.','{}','pending','woocommerce.com','2024-10-20 12:41:41',NULL,0,'plain','',0,0,'info'),(46,'woocommerce-shipping-fedex-api-outage-2023-07-16','warning','en_US','Scheduled FedEx API outage — July 2023','On July 16 there will be a full outage of the FedEx API from 04:00 to 08:00 AM UTC. Due to planned maintenance by FedEx, you\'ll be unable to provide FedEx shipping rates during this time. Follow the link below for more information and recommendations on how to minimize impact.','{}','pending','woocommerce.com','2024-10-20 12:41:41',NULL,0,'plain','',0,0,'info'),(47,'wcship-2023-07-hazmat-update-needed','update','en_US','Action required: USPS HAZMAT compliance update for WooCommerce Shipping & Tax extension','<strong>Your store requires an update for the WooCommerce Shipping extension</strong>. Please update to the latest version of the WooCommerce Shipping &amp; Tax extension immediately to ensure compliance with new USPS HAZMAT rules currently in effect.','{}','pending','woocommerce.com','2024-10-20 12:41:41',NULL,0,'plain','',0,0,'info'),(48,'woocommerce-WCStripe-Aug-2023-update-needed','update','en_US','Action required: Security update for WooCommerce Stripe plugin','<strong>Your shop requires an important security update for the  WooCommerce Stripe plugin</strong>. The fix for this vulnerability was released on July 31. Please update immediately.','{}','pending','woocommerce.com','2024-10-20 12:41:41',NULL,0,'plain','',0,0,'info'),(49,'woocommerce-WCStripe-Aug-2023-security-updated','update','en_US','Security update of WooCommerce Stripe plugin','<strong>Your store has been updated to the latest secure version of the WooCommerce Stripe plugin</strong>. This update was released on July 31.','{}','pending','woocommerce.com','2024-10-20 12:41:41',NULL,0,'plain','',0,0,'info'),(50,'woocommerce-WooPayments-Aug-2023-security-updated','update','en_US','Security update of WooPayments (WooCommerce Payments) plugin','<strong>Your store has been updated to the more secure version of WooPayments (WooCommerce Payments)</strong>. This update was released on July 31.','{}','pending','woocommerce.com','2024-10-20 12:41:41',NULL,0,'plain','',0,0,'info'),(51,'avalara_q3-2023_noAvaTax','marketing','en_US','Automatically calculate VAT in real time','Take the effort out of determining tax rates and sell confidently across borders with automated tax management from Avalara AvaTax— including built-in VAT calculation when you sell into or across the EU and UK. Save time and stay compliant when you let Avalara do the heavy lifting.','{}','pending','woocommerce.com','2024-10-20 12:41:41',NULL,0,'plain','',0,0,'info'),(52,'woocommerce-usermeta-Sept2023-productvendors','update','en_US','Your store requires a security update','<strong>Your shop needs an update to address a vulnerability in WooCommerce.</strong> The fix was released on Sept 15. Please update WooCommerce to the latest version immediately. <a href=\"https://developer.woocommerce.com/2023/09/16/woocommerce-vulnerability-reintroduced-from-7-0-1/\" />Read our developer update</a> for more information.','{}','pending','woocommerce.com','2024-10-20 12:41:41',NULL,0,'plain','',0,0,'info'),(53,'woocommerce-STRIPE-Oct-2023-update-needed','update','en_US','Action required: Security update for WooCommerce Stripe Gateway','<strong>Your shop requires a security update to address a vulnerability in the WooCommerce Stripe Gateway</strong>. The fix for this vulnerability was released on October 17. Please update immediately.','{}','pending','woocommerce.com','2024-10-20 12:41:41',NULL,0,'plain','',0,0,'info'),(54,'amazon-mcf-reviews-2023-12-07','marketing','en_US','Enjoying Amazon MCF for WooCommerce?','We\'re Never Settle, the developers behind Amazon MCF for WooCommerce, and would be deeply honored to have your review. Reviews help immensely as other users can learn how MCF can solve their needs too! Not happy or need help? Please reach out for support and we’d love to make things right!','{}','pending','woocommerce.com','2024-10-20 12:41:41',NULL,0,'plain','',0,0,'info'),(55,'remove_estimated_deposits_2024','marketing','en_US','Estimated deposits are going away','To provide more accurate deposit information and support the expansion of instant deposits, estimated deposit details will no longer be available in WooPayments. We recommend upgrading to the latest version of WooPayments for more detailed balance status information.','{}','pending','woocommerce.com','2024-10-20 12:41:41',NULL,0,'plain','',0,0,'info'),(56,'stripe_securityupdate_q3_2024','update','en_US','Security update required for your Stripe extension','To continue securely accepting payments, you must update your Stripe extension to at least version 8.6, re-authenticate, and turn on the new checkout experience. Review the documentation for instructions on how to make the necessary changes from your WooCommerce dashboard.','{}','pending','woocommerce.com','2024-10-20 12:41:41',NULL,0,'plain','',0,0,'info'),(57,'wc-admin-choosing-a-theme','marketing','en_US','Choosing a theme?','Check out the themes that are compatible with WooCommerce and choose one aligned with your brand and business needs.','{}','unactioned','woocommerce-admin','2024-10-23 03:16:01',NULL,0,'plain','',0,0,'info'),(58,'wc-admin-customizing-product-catalog','info','en_US','How to customize your product catalog','You want your product catalog and images to look great and align with your brand. This guide will give you all the tips you need to get your products looking great in your store.','{}','unactioned','woocommerce-admin','2024-10-23 03:16:01',NULL,0,'plain','',0,0,'info'),(59,'wc-admin-mobile-app','info','en_US','Install Woo mobile app','Install the WooCommerce mobile app to manage orders, receive sales notifications, and view key metrics — wherever you are.','{}','unactioned','woocommerce-admin','2024-10-23 03:16:01',NULL,0,'plain','',0,0,'info'),(60,'wc-admin-onboarding-payments-reminder','info','en_US','Start accepting payments on your store!','Take payments with the provider that’s right for you - choose from 100+ payment gateways for WooCommerce.','{}','unactioned','woocommerce-admin','2024-10-25 16:20:49',NULL,0,'plain','',0,0,'info'),(61,'wc-admin-usage-tracking-opt-in','info','en_US','Help WooCommerce improve with usage tracking','Gathering usage data allows us to improve WooCommerce. Your store will be considered as we evaluate new features, judge the quality of an update, or determine if an improvement makes sense. You can always visit the <a href=\"http://giasuolympia.com/wp-admin/admin.php?page=wc-settings&#038;tab=advanced&#038;section=woocommerce_com\" target=\"_blank\">Settings</a> and choose to stop sharing data. <a href=\"https://woocommerce.com/usage-tracking?utm_medium=product\" target=\"_blank\">Read more</a> about what data we collect.','{}','unactioned','woocommerce-admin','2024-10-27 14:28:04',NULL,0,'plain','',0,0,'info'),(62,'wc-admin-woocommerce-payments','marketing','en_US','Try the new way to get paid','Securely accept credit and debit cards on your site. Manage transactions without leaving your WordPress dashboard. Only with <strong>WooPayments</strong>.<br><br>By clicking \"Get started\", you agree to our <a href=\"https://wordpress.com/tos/\" target=\"_blank\">Terms of Service</a>','{}','unactioned','woocommerce-admin','2024-10-27 14:28:04',NULL,0,'plain','',0,0,'info'),(63,'wc-admin-launch-checklist','info','en_US','Ready to launch your store?','To make sure you never get that sinking \"what did I forget\" feeling, we\'ve put together the essential pre-launch checklist.','{}','unactioned','woocommerce-admin','2024-10-28 12:56:12',NULL,0,'plain','',0,1,'info'),(64,'wc-admin-install-jp-and-wcs-plugins','info','en_US','Uh oh... There was a problem during the Jetpack and WooCommerce Shipping & Tax install. Please try again.','We noticed that there was a problem during the Jetpack and WooCommerce Shipping &amp; Tax install. Please try again and enjoy all the advantages of having the plugins connected to your store! Sorry for the inconvenience. The \"Jetpack\" and \"WooCommerce Shipping &amp; Tax\" plugins will be installed &amp; activated for free.','{}','unactioned','woocommerce-admin','2024-10-29 09:48:55',NULL,0,'plain','',0,1,'info'),(65,'mollie_q4_2024','marketing','en_US','Special offer: Zero transaction fees for your first month with Mollie','With seamless checkout, flexible financing, and 30+ local and global payment methods, Mollie is the all-in-one payment solution that enhances the customer experience and helps your business grow. Start your account today and enjoy ZERO transaction fees for the first month. Ts&amp;Cs apply.','{}','pending','woocommerce.com','2024-10-31 12:46:40',NULL,0,'plain','',0,0,'info'),(66,'paypal_migration_Q3_2024_v2','marketing','en_US','You’re using an outdated version of PayPal','Don\'t miss out on potential sales this holiday season — upgrade your store\'s checkout experience by switching to the all-in-one PayPal Payments extension. Enable customers to pay using Venmo and Pay Later (where available), credit and debit cards, Apple Pay, Google Pay, and country-specific options.','{}','pending','woocommerce.com','2024-10-31 12:46:40',NULL,0,'plain','',0,0,'info'),(67,'Renewal_notification_emails_Woosubscriptions_Nov2024','marketing','en_US','WooCommerce Subscriptions just got even better','You can now send automatic email reminders to customers before their subscriptions renew or expire. To enable this for your store, update to the latest version of WooCommerce Subscriptions (don\'t forget to make a backup first) and follow the steps linked below.','{}','pending','woocommerce.com','2024-11-19 12:57:48',NULL,0,'plain','',0,0,'info'),(68,'paypal_promo_Q4_2024','marketing','en_US','Add PayPal to your existing checkout this holiday season','Drive conversion and give customers more confidence to buy when you complement your checkout with PayPal, Venmo, Pay Later, and more. Attract new shoppers and give them a streamlined buying experience with Fastlane, PayPal’s fast and simple guest checkout.','{}','pending','woocommerce.com','2024-11-28 12:40:34',NULL,0,'plain','',0,0,'info'),(69,'sirt-woo-2024-11-xss-admin','update','en_US','An important update is required for WooCommerce','This update addresses a security vulnerability that could allow unauthorized access to administrative privileges on your site. <a href=\"https://developer.woocommerce.com/2024/12/03/woocommerce-9-4-3-and-woocommerce-9-3-4-available-now/\">Learn more</a>.\r\n<br><br>\r\n<strong>Please ensure your site is updated to the latest version to stay secure.</strong>','{}','pending','woocommerce.com','2024-12-04 12:42:06',NULL,0,'plain','',0,0,'info'),(70,'usps-mail-service-to-canada-suspended-dec-2024','update','en_US','Please note: USPS Mail Service to Canada Suspended','The United States Postal Service has temporarily suspended mail service to Canada due to the ongoing Canadian postal workers\' strike. USPS is asking users to refrain from mailing items to Canada at this time.','{}','pending','woocommerce.com','2024-12-05 12:43:13',NULL,0,'plain','',0,0,'info'),(71,'Announce-UPS-WCShipping-Dec2024','marketing','en_US','WooCommerce Shipping now supports select UPS services','Give customers the power and reliability of UPS, directly from your dashboard. Access discounted rates, convenient shipping options, and fast, on-time delivery with UPS on WooCommerce Shipping — and stay tuned for UPS® Ground Saver rates coming in 2025.','{}','pending','woocommerce.com','2024-12-13 13:35:32',NULL,0,'plain','',0,0,'info'),(72,'account-creation-after-checkout-dec2024','marketing','en_US','Offer account creation after checkout','Your customers can now create accounts after they check out on block-based themes. Enable the new “After checkout” block in your account settings and enjoy smoother guest checkout, better conversion, and more repeat business.','{}','pending','woocommerce.com','2024-12-19 12:41:56',NULL,0,'plain','',0,0,'info'),(73,'woocommerce-analytics-order-attribution-promotions-december-2024','marketing','en_US','Discover what drives your sales','Use our powerful <strong>Order Attribution</strong> extension to understand what truly drives your revenue. Track your sales journey, identify your most effective marketing channels, and optimize your sales strategy.','{}','pending','woocommerce.com','2024-12-23 12:40:59',NULL,0,'plain','',0,0,'info'),(74,'wc-admin-real-time-order-alerts','info','en_US','Get real-time order alerts anywhere','Get notifications about store activity, including new orders and product reviews directly on your mobile devices with the Woo app.','{}','unactioned','woocommerce-admin','2025-01-18 22:12:54',NULL,0,'plain','',0,0,'info'),(75,'affirm_promo_Q1_2025','marketing','en_US','Save up to 50% on merchant fees with Affirm','Kickstart the year with buy now, pay later and get merchant rates as low as 2.9% + 30¢ per transaction for 30 days. Download the extension and complete your application from your WooCommerce dashboard by February 19, 2025 to claim the offer. Terms and conditions apply.','{}','pending','woocommerce.com','2025-01-21 12:43:05',NULL,0,'plain','',0,0,'info'),(76,'new-woo-brand-announcement-feb4-2025','marketing','en_US','Meet the new Woo','WooCommerce has a new look, but underneath, we’re still the same customizable, open-source ecommerce platform you know and love. Plus, we’ve got some major improvements to our platform and product on the way.','{}','pending','woocommerce.com','2025-02-05 12:48:14',NULL,0,'plain','',0,0,'info'),(77,'paypal_bnpl_au_promo_Q1_2025','marketing','en_US','Australian shoppers can Pay in 4 with PayPal','Enable Pay in 4 messaging to let Australian customers know that they can pay over time while you get paid up front and in full. Pay in 4 is included in PayPal Payments at no additional cost. Eligible buyers can pay in four interest-free payments for purchases of $30 to $2,000 AUD. Terms apply.','{}','pending','woocommerce.com','2025-02-12 13:22:06',NULL,0,'plain','',0,0,'info'),(78,'stripe_stripetax_q1_2025','marketing','en_US','Say goodbye to your tax woes','Stripe Tax automatically applies the correct sales tax, VAT, or GST, saving time while keeping you compliant. And with simple automatic filing, you can stop stressing at tax time and focus on growing instead.','{}','pending','woocommerce.com','2025-02-20 12:42:17',NULL,0,'plain','',0,0,'info'),(79,'printful_promo_q1_2025','marketing','en_US','New: sell print-on-demand products, risk-free','Expand your product line with Printful, now available in the WooCommerce Marketplace. Sell custom products with no upfront costs or inventory. This trusted supplier prints, packages, and ships for you, so you can focus on growing your store — and your next big idea.','{}','pending','woocommerce.com','2025-02-26 12:47:24',NULL,0,'plain','',0,0,'info'),(80,'paypal-braintree-sdk-depreciation-2025-02-20','update','en_US','Update required for your PayPal Braintree extension','To continue securely accepting payments, you must update your PayPal Braintree extension to version 3.2.4 or newer before June 30, 2025. Your current extension version will not support payment processing after this date due to an SSL certificate update.','{}','pending','woocommerce.com','2025-03-04 12:42:24',NULL,0,'plain','',0,0,'info'),(81,'woo-marketplace-two-year-subscriptions-rin-2025-03-17','marketing','en_US','Save 20% on new two-year subscriptions','We’ve introduced 20% off two-year subscriptions for all products* in the WooCommerce Marketplace. Lock in long-term savings and make sure your store never misses a beat. \r\n\r\n*Some exclusions apply. New purchases only.','{}','pending','woocommerce.com','2025-03-17 12:52:00',NULL,0,'plain','',0,0,'info'),(82,'viva_wallet_migration_q1_2025','update','en_US','Switch to the new Viva.com Smart Checkout','The Viva Wallet extension is no longer being updated and improved. To get the best Viva.com experience, move to the new Smart Checkout. It’s fast, secure, and fully compatible with the latest WooCommerce features.','{}','pending','woocommerce.com','2025-04-03 12:45:05',NULL,0,'plain','',0,0,'info'),(83,'stripe_orderstatus_bug_q2_2025','update','en_US','Action Required: Update Order Status Manager','Update to the latest Order Status Manager (v1.15.5+) to ensure payments are captured. Your version of WooCommerce Order Status Manager can interfere with order processing for payment gateways (including WooCommerce Stripe Gateway v9.2.0+), which may cause orders to process without capturing payment.','{}','pending','woocommerce.com','2025-04-03 12:45:05',NULL,0,'plain','',0,0,'info'),(84,'wc-admin-manage-orders-on-the-go','info','en_US','Manage your orders on the go','Look for orders, customer info, and process refunds in one click with the Woo app.','{}','unactioned','woocommerce-admin','2025-04-18 12:57:18',NULL,0,'plain','',0,0,'info'),(85,'WooCommerce-Stripe-Gateway-Update-April-2025','update','en_US','Action required: Update WooCommerce Stripe Gateway to v9.4.1','<strong>An important update for WooCommerce Stripe Payment Gateway has been released</strong>. Version 9.4.1 addresses performance issues and payment method visibility problems that occurred in version 9.4.0. Please update as soon as possible for optimal store performance. Please read <a href=\"https://developer.woocommerce.com/2025/04/18/https://developer.woocommerce.com/2025/04/18/developer-advisory-stripe-payment-gateway-9-4-1-release/\" /> this advisory</a> for more information.','{}','pending','woocommerce.com','2025-04-19 12:41:46',NULL,0,'plain','',0,0,'info'),(86,'WooCommerce-Stripe-Gateway-Update-Info-April-2025','update','en_US','WooCommerce Stripe Gateway has been updated to v9.4.1','<strong>WooCommerce Stripe Payment Gateway was recently updated</strong>. Version 9.4.1 addresses performance issues and payment method visibility problems that occurred in version 9.4.0. No further action is required. Please read <a href=\"https://developer.woocommerce.com/2025/04/18/https://developer.woocommerce.com/2025/04/18/developer-advisory-stripe-payment-gateway-9-4-1-release/\" /> this advisory post </a>for more information.','{}','pending','woocommerce.com','2025-04-19 12:41:46',NULL,0,'plain','',0,0,'info'),(87,'klaviyo_q2_2025','marketing','en_US','Tailor your marketing with data-driven automation','Deliver personalized experiences at scale, simplify your stack, and make your data work for you using Klaviyo’s best-in-class marketing extension for Woo. With advanced segmentation based on actual customer behavior, you can send email and SMS messages that drive revenue and increase loyalty — without adding complexity','{}','pending','woocommerce.com','2025-04-30 13:00:42',NULL,0,'plain','',0,0,'info'),(88,'uk-vat-notice-2025-04-30','warning','en_US','UK VAT numbers are no longer supported','Due to recent HM Revenue &amp; Customs (HMRC) VAT API changes, your EU VAT Number for WooCommerce extension can no longer validate UK VAT numbers. HMRC now requires merchants to register an API key, which this extension does not currently support. We recommend EU/UK VAT Validation Manager for WooCommerce as a replacement','{}','pending','woocommerce.com','2025-05-05 13:03:03',NULL,0,'plain','',0,0,'info');
/*!40000 ALTER TABLE `wp_wc_admin_notes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wc_category_lookup`
--

DROP TABLE IF EXISTS `wp_wc_category_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_category_lookup` (
  `category_tree_id` bigint(20) unsigned NOT NULL,
  `category_id` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`category_tree_id`,`category_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_category_lookup`
--

LOCK TABLES `wp_wc_category_lookup` WRITE;
/*!40000 ALTER TABLE `wp_wc_category_lookup` DISABLE KEYS */;
INSERT INTO `wp_wc_category_lookup` VALUES (15,15),(194,194),(194,199),(194,200),(194,202),(194,204),(194,207),(194,208),(194,211),(194,212),(198,198),(199,199),(200,200),(202,202),(204,204),(207,207),(208,208),(211,211),(212,212);
/*!40000 ALTER TABLE `wp_wc_category_lookup` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wc_customer_lookup`
--

DROP TABLE IF EXISTS `wp_wc_customer_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_customer_lookup` (
  `customer_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `username` varchar(60) NOT NULL DEFAULT '',
  `first_name` varchar(255) NOT NULL,
  `last_name` varchar(255) NOT NULL,
  `email` varchar(100) DEFAULT NULL,
  `date_last_active` timestamp NULL DEFAULT NULL,
  `date_registered` timestamp NULL DEFAULT NULL,
  `country` char(2) NOT NULL DEFAULT '',
  `postcode` varchar(20) NOT NULL DEFAULT '',
  `city` varchar(100) NOT NULL DEFAULT '',
  `state` varchar(100) NOT NULL DEFAULT '',
  PRIMARY KEY (`customer_id`),
  UNIQUE KEY `user_id` (`user_id`),
  KEY `email` (`email`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_customer_lookup`
--

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

--
-- Table structure for table `wp_wc_download_log`
--

DROP TABLE IF EXISTS `wp_wc_download_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_download_log` (
  `download_log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `timestamp` datetime NOT NULL,
  `permission_id` bigint(20) unsigned NOT NULL,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `user_ip_address` varchar(100) DEFAULT '',
  PRIMARY KEY (`download_log_id`),
  KEY `permission_id` (`permission_id`),
  KEY `timestamp` (`timestamp`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_download_log`
--

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

--
-- Table structure for table `wp_wc_order_addresses`
--

DROP TABLE IF EXISTS `wp_wc_order_addresses`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_order_addresses` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_id` bigint(20) unsigned NOT NULL,
  `address_type` varchar(20) DEFAULT NULL,
  `first_name` text DEFAULT NULL,
  `last_name` text DEFAULT NULL,
  `company` text DEFAULT NULL,
  `address_1` text DEFAULT NULL,
  `address_2` text DEFAULT NULL,
  `city` text DEFAULT NULL,
  `state` text DEFAULT NULL,
  `postcode` text DEFAULT NULL,
  `country` text DEFAULT NULL,
  `email` varchar(320) DEFAULT NULL,
  `phone` varchar(100) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `address_type_order_id` (`address_type`,`order_id`),
  KEY `order_id` (`order_id`),
  KEY `email` (`email`(191)),
  KEY `phone` (`phone`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_order_addresses`
--

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

--
-- Table structure for table `wp_wc_order_coupon_lookup`
--

DROP TABLE IF EXISTS `wp_wc_order_coupon_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_order_coupon_lookup` (
  `order_id` bigint(20) unsigned NOT NULL,
  `coupon_id` bigint(20) NOT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `discount_amount` double NOT NULL DEFAULT 0,
  PRIMARY KEY (`order_id`,`coupon_id`),
  KEY `coupon_id` (`coupon_id`),
  KEY `date_created` (`date_created`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_order_coupon_lookup`
--

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

--
-- Table structure for table `wp_wc_order_operational_data`
--

DROP TABLE IF EXISTS `wp_wc_order_operational_data`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_order_operational_data` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_id` bigint(20) unsigned DEFAULT NULL,
  `created_via` varchar(100) DEFAULT NULL,
  `woocommerce_version` varchar(20) DEFAULT NULL,
  `prices_include_tax` tinyint(1) DEFAULT NULL,
  `coupon_usages_are_counted` tinyint(1) DEFAULT NULL,
  `download_permission_granted` tinyint(1) DEFAULT NULL,
  `cart_hash` varchar(100) DEFAULT NULL,
  `new_order_email_sent` tinyint(1) DEFAULT NULL,
  `order_key` varchar(100) DEFAULT NULL,
  `order_stock_reduced` tinyint(1) DEFAULT NULL,
  `date_paid_gmt` datetime DEFAULT NULL,
  `date_completed_gmt` datetime DEFAULT NULL,
  `shipping_tax_amount` decimal(26,8) DEFAULT NULL,
  `shipping_total_amount` decimal(26,8) DEFAULT NULL,
  `discount_tax_amount` decimal(26,8) DEFAULT NULL,
  `discount_total_amount` decimal(26,8) DEFAULT NULL,
  `recorded_sales` tinyint(1) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `order_id` (`order_id`),
  KEY `order_key` (`order_key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_order_operational_data`
--

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

--
-- Table structure for table `wp_wc_order_product_lookup`
--

DROP TABLE IF EXISTS `wp_wc_order_product_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_order_product_lookup` (
  `order_item_id` bigint(20) unsigned NOT NULL,
  `order_id` bigint(20) unsigned NOT NULL,
  `product_id` bigint(20) unsigned NOT NULL,
  `variation_id` bigint(20) unsigned NOT NULL,
  `customer_id` bigint(20) unsigned DEFAULT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `product_qty` int(11) NOT NULL,
  `product_net_revenue` double NOT NULL DEFAULT 0,
  `product_gross_revenue` double NOT NULL DEFAULT 0,
  `coupon_amount` double NOT NULL DEFAULT 0,
  `tax_amount` double NOT NULL DEFAULT 0,
  `shipping_amount` double NOT NULL DEFAULT 0,
  `shipping_tax_amount` double NOT NULL DEFAULT 0,
  PRIMARY KEY (`order_item_id`),
  KEY `order_id` (`order_id`),
  KEY `product_id` (`product_id`),
  KEY `customer_id` (`customer_id`),
  KEY `date_created` (`date_created`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_order_product_lookup`
--

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

--
-- Table structure for table `wp_wc_order_stats`
--

DROP TABLE IF EXISTS `wp_wc_order_stats`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_order_stats` (
  `order_id` bigint(20) unsigned NOT NULL,
  `parent_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_paid` datetime DEFAULT '0000-00-00 00:00:00',
  `date_completed` datetime DEFAULT '0000-00-00 00:00:00',
  `num_items_sold` int(11) NOT NULL DEFAULT 0,
  `total_sales` double NOT NULL DEFAULT 0,
  `tax_total` double NOT NULL DEFAULT 0,
  `shipping_total` double NOT NULL DEFAULT 0,
  `net_total` double NOT NULL DEFAULT 0,
  `returning_customer` tinyint(1) DEFAULT NULL,
  `status` varchar(200) NOT NULL,
  `customer_id` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`order_id`),
  KEY `date_created` (`date_created`),
  KEY `customer_id` (`customer_id`),
  KEY `status` (`status`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_order_stats`
--

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

--
-- Table structure for table `wp_wc_order_tax_lookup`
--

DROP TABLE IF EXISTS `wp_wc_order_tax_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_order_tax_lookup` (
  `order_id` bigint(20) unsigned NOT NULL,
  `tax_rate_id` bigint(20) unsigned NOT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `shipping_tax` double NOT NULL DEFAULT 0,
  `order_tax` double NOT NULL DEFAULT 0,
  `total_tax` double NOT NULL DEFAULT 0,
  PRIMARY KEY (`order_id`,`tax_rate_id`),
  KEY `tax_rate_id` (`tax_rate_id`),
  KEY `date_created` (`date_created`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_order_tax_lookup`
--

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

--
-- Table structure for table `wp_wc_orders`
--

DROP TABLE IF EXISTS `wp_wc_orders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_orders` (
  `id` bigint(20) unsigned NOT NULL,
  `status` varchar(20) DEFAULT NULL,
  `currency` varchar(10) DEFAULT NULL,
  `type` varchar(20) DEFAULT NULL,
  `tax_amount` decimal(26,8) DEFAULT NULL,
  `total_amount` decimal(26,8) DEFAULT NULL,
  `customer_id` bigint(20) unsigned DEFAULT NULL,
  `billing_email` varchar(320) DEFAULT NULL,
  `date_created_gmt` datetime DEFAULT NULL,
  `date_updated_gmt` datetime DEFAULT NULL,
  `parent_order_id` bigint(20) unsigned DEFAULT NULL,
  `payment_method` varchar(100) DEFAULT NULL,
  `payment_method_title` text DEFAULT NULL,
  `transaction_id` varchar(100) DEFAULT NULL,
  `ip_address` varchar(100) DEFAULT NULL,
  `user_agent` text DEFAULT NULL,
  `customer_note` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `status` (`status`),
  KEY `date_created` (`date_created_gmt`),
  KEY `customer_id_billing_email` (`customer_id`,`billing_email`(171)),
  KEY `billing_email` (`billing_email`(191)),
  KEY `type_status_date` (`type`,`status`,`date_created_gmt`),
  KEY `parent_order_id` (`parent_order_id`),
  KEY `date_updated` (`date_updated_gmt`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_orders`
--

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

--
-- Table structure for table `wp_wc_orders_meta`
--

DROP TABLE IF EXISTS `wp_wc_orders_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_orders_meta` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_id` bigint(20) unsigned DEFAULT NULL,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `meta_key_value` (`meta_key`(100),`meta_value`(82)),
  KEY `order_id_meta_key_meta_value` (`order_id`,`meta_key`(100),`meta_value`(82))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_orders_meta`
--

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

--
-- Table structure for table `wp_wc_product_attributes_lookup`
--

DROP TABLE IF EXISTS `wp_wc_product_attributes_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_product_attributes_lookup` (
  `product_id` bigint(20) NOT NULL,
  `product_or_parent_id` bigint(20) NOT NULL,
  `taxonomy` varchar(32) NOT NULL,
  `term_id` bigint(20) NOT NULL,
  `is_variation_attribute` tinyint(1) NOT NULL,
  `in_stock` tinyint(1) NOT NULL,
  PRIMARY KEY (`product_or_parent_id`,`term_id`,`product_id`,`taxonomy`),
  KEY `is_variation_attribute_term_id` (`is_variation_attribute`,`term_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_product_attributes_lookup`
--

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

--
-- Table structure for table `wp_wc_product_download_directories`
--

DROP TABLE IF EXISTS `wp_wc_product_download_directories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_product_download_directories` (
  `url_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `url` varchar(256) NOT NULL,
  `enabled` tinyint(1) NOT NULL DEFAULT 0,
  PRIMARY KEY (`url_id`),
  KEY `url` (`url`(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 `wp_wc_product_download_directories`
--

LOCK TABLES `wp_wc_product_download_directories` WRITE;
/*!40000 ALTER TABLE `wp_wc_product_download_directories` DISABLE KEYS */;
INSERT INTO `wp_wc_product_download_directories` VALUES (1,'file://D:/zinisoft/BE/trung-tam-gia-su/wp-content/uploads/woocommerce_uploads/',1),(2,'http://giasuolympia.com/wp-content/uploads/woocommerce_uploads/',1);
/*!40000 ALTER TABLE `wp_wc_product_download_directories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wc_product_meta_lookup`
--

DROP TABLE IF EXISTS `wp_wc_product_meta_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_product_meta_lookup` (
  `product_id` bigint(20) NOT NULL,
  `sku` varchar(100) DEFAULT '',
  `global_unique_id` varchar(100) DEFAULT '',
  `virtual` tinyint(1) DEFAULT 0,
  `downloadable` tinyint(1) DEFAULT 0,
  `min_price` decimal(19,4) DEFAULT NULL,
  `max_price` decimal(19,4) DEFAULT NULL,
  `onsale` tinyint(1) DEFAULT 0,
  `stock_quantity` double DEFAULT NULL,
  `stock_status` varchar(100) DEFAULT 'instock',
  `rating_count` bigint(20) DEFAULT 0,
  `average_rating` decimal(3,2) DEFAULT 0.00,
  `total_sales` bigint(20) DEFAULT 0,
  `tax_status` varchar(100) DEFAULT 'taxable',
  `tax_class` varchar(100) DEFAULT '',
  PRIMARY KEY (`product_id`),
  KEY `virtual` (`virtual`),
  KEY `downloadable` (`downloadable`),
  KEY `stock_status` (`stock_status`),
  KEY `stock_quantity` (`stock_quantity`),
  KEY `onsale` (`onsale`),
  KEY `min_max_price` (`min_price`,`max_price`),
  KEY `sku` (`sku`(50))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_product_meta_lookup`
--

LOCK TABLES `wp_wc_product_meta_lookup` WRITE;
/*!40000 ALTER TABLE `wp_wc_product_meta_lookup` DISABLE KEYS */;
INSERT INTO `wp_wc_product_meta_lookup` VALUES (1829,'009','',0,0,22.9900,29.9900,0,NULL,'outofstock',1,4.00,0,'taxable','');
/*!40000 ALTER TABLE `wp_wc_product_meta_lookup` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wc_rate_limits`
--

DROP TABLE IF EXISTS `wp_wc_rate_limits`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_rate_limits` (
  `rate_limit_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `rate_limit_key` varchar(200) NOT NULL,
  `rate_limit_expiry` bigint(20) unsigned NOT NULL,
  `rate_limit_remaining` smallint(10) NOT NULL DEFAULT 0,
  PRIMARY KEY (`rate_limit_id`),
  UNIQUE KEY `rate_limit_key` (`rate_limit_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_rate_limits`
--

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

--
-- Table structure for table `wp_wc_reserved_stock`
--

DROP TABLE IF EXISTS `wp_wc_reserved_stock`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_reserved_stock` (
  `order_id` bigint(20) NOT NULL,
  `product_id` bigint(20) NOT NULL,
  `stock_quantity` double NOT NULL DEFAULT 0,
  `timestamp` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `expires` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`order_id`,`product_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_reserved_stock`
--

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

--
-- Table structure for table `wp_wc_tax_rate_classes`
--

DROP TABLE IF EXISTS `wp_wc_tax_rate_classes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_tax_rate_classes` (
  `tax_rate_class_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) NOT NULL DEFAULT '',
  `slug` varchar(200) NOT NULL DEFAULT '',
  PRIMARY KEY (`tax_rate_class_id`),
  UNIQUE 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 `wp_wc_tax_rate_classes`
--

LOCK TABLES `wp_wc_tax_rate_classes` WRITE;
/*!40000 ALTER TABLE `wp_wc_tax_rate_classes` DISABLE KEYS */;
INSERT INTO `wp_wc_tax_rate_classes` VALUES (1,'Reduced rate','reduced-rate'),(2,'Zero rate','zero-rate');
/*!40000 ALTER TABLE `wp_wc_tax_rate_classes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wc_webhooks`
--

DROP TABLE IF EXISTS `wp_wc_webhooks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_webhooks` (
  `webhook_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `status` varchar(200) NOT NULL,
  `name` text NOT NULL,
  `user_id` bigint(20) unsigned NOT NULL,
  `delivery_url` text NOT NULL,
  `secret` text NOT NULL,
  `topic` varchar(200) NOT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `api_version` smallint(4) NOT NULL,
  `failure_count` smallint(10) NOT NULL DEFAULT 0,
  `pending_delivery` tinyint(1) NOT NULL DEFAULT 0,
  PRIMARY KEY (`webhook_id`),
  KEY `user_id` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_webhooks`
--

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

--
-- Table structure for table `wp_woocommerce_api_keys`
--

DROP TABLE IF EXISTS `wp_woocommerce_api_keys`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_api_keys` (
  `key_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL,
  `description` varchar(200) DEFAULT NULL,
  `permissions` varchar(10) NOT NULL,
  `consumer_key` char(64) NOT NULL,
  `consumer_secret` char(43) NOT NULL,
  `nonces` longtext DEFAULT NULL,
  `truncated_key` char(7) NOT NULL,
  `last_access` datetime DEFAULT NULL,
  PRIMARY KEY (`key_id`),
  KEY `consumer_key` (`consumer_key`),
  KEY `consumer_secret` (`consumer_secret`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_api_keys`
--

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

--
-- Table structure for table `wp_woocommerce_attribute_taxonomies`
--

DROP TABLE IF EXISTS `wp_woocommerce_attribute_taxonomies`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_attribute_taxonomies` (
  `attribute_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `attribute_name` varchar(200) NOT NULL,
  `attribute_label` varchar(200) DEFAULT NULL,
  `attribute_type` varchar(20) NOT NULL,
  `attribute_orderby` varchar(20) NOT NULL,
  `attribute_public` int(1) NOT NULL DEFAULT 1,
  PRIMARY KEY (`attribute_id`),
  KEY `attribute_name` (`attribute_name`(20))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_attribute_taxonomies`
--

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

--
-- Table structure for table `wp_woocommerce_downloadable_product_permissions`
--

DROP TABLE IF EXISTS `wp_woocommerce_downloadable_product_permissions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_downloadable_product_permissions` (
  `permission_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `download_id` varchar(36) NOT NULL,
  `product_id` bigint(20) unsigned NOT NULL,
  `order_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `order_key` varchar(200) NOT NULL,
  `user_email` varchar(200) NOT NULL,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `downloads_remaining` varchar(9) DEFAULT NULL,
  `access_granted` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `access_expires` datetime DEFAULT NULL,
  `download_count` bigint(20) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`permission_id`),
  KEY `download_order_key_product` (`product_id`,`order_id`,`order_key`(16),`download_id`),
  KEY `download_order_product` (`download_id`,`order_id`,`product_id`),
  KEY `order_id` (`order_id`),
  KEY `user_order_remaining_expires` (`user_id`,`order_id`,`downloads_remaining`,`access_expires`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_downloadable_product_permissions`
--

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

--
-- Table structure for table `wp_woocommerce_log`
--

DROP TABLE IF EXISTS `wp_woocommerce_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_log` (
  `log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `timestamp` datetime NOT NULL,
  `level` smallint(4) NOT NULL,
  `source` varchar(200) NOT NULL,
  `message` longtext NOT NULL,
  `context` longtext DEFAULT NULL,
  PRIMARY KEY (`log_id`),
  KEY `level` (`level`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_log`
--

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

--
-- Table structure for table `wp_woocommerce_order_itemmeta`
--

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

--
-- Dumping data for table `wp_woocommerce_order_itemmeta`
--

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

--
-- Table structure for table `wp_woocommerce_order_items`
--

DROP TABLE IF EXISTS `wp_woocommerce_order_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_order_items` (
  `order_item_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_item_name` text NOT NULL,
  `order_item_type` varchar(200) NOT NULL DEFAULT '',
  `order_id` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`order_item_id`),
  KEY `order_id` (`order_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_order_items`
--

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

--
-- Table structure for table `wp_woocommerce_payment_tokenmeta`
--

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

--
-- Dumping data for table `wp_woocommerce_payment_tokenmeta`
--

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

--
-- Table structure for table `wp_woocommerce_payment_tokens`
--

DROP TABLE IF EXISTS `wp_woocommerce_payment_tokens`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_payment_tokens` (
  `token_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `gateway_id` varchar(200) NOT NULL,
  `token` text NOT NULL,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `type` varchar(200) NOT NULL,
  `is_default` tinyint(1) NOT NULL DEFAULT 0,
  PRIMARY KEY (`token_id`),
  KEY `user_id` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_payment_tokens`
--

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

--
-- Table structure for table `wp_woocommerce_sessions`
--

DROP TABLE IF EXISTS `wp_woocommerce_sessions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_sessions` (
  `session_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `session_key` char(32) NOT NULL,
  `session_value` longtext NOT NULL,
  `session_expiry` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`session_id`),
  UNIQUE KEY `session_key` (`session_key`)
) ENGINE=InnoDB AUTO_INCREMENT=59 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_sessions`
--

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

--
-- Table structure for table `wp_woocommerce_shipping_zone_locations`
--

DROP TABLE IF EXISTS `wp_woocommerce_shipping_zone_locations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_shipping_zone_locations` (
  `location_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `zone_id` bigint(20) unsigned NOT NULL,
  `location_code` varchar(200) NOT NULL,
  `location_type` varchar(40) NOT NULL,
  PRIMARY KEY (`location_id`),
  KEY `zone_id` (`zone_id`),
  KEY `location_type_code` (`location_type`(10),`location_code`(20))
) 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 `wp_woocommerce_shipping_zone_locations`
--

LOCK TABLES `wp_woocommerce_shipping_zone_locations` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_shipping_zone_locations` DISABLE KEYS */;
INSERT INTO `wp_woocommerce_shipping_zone_locations` VALUES (1,1,'VN','country');
/*!40000 ALTER TABLE `wp_woocommerce_shipping_zone_locations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_woocommerce_shipping_zone_methods`
--

DROP TABLE IF EXISTS `wp_woocommerce_shipping_zone_methods`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_shipping_zone_methods` (
  `zone_id` bigint(20) unsigned NOT NULL,
  `instance_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `method_id` varchar(200) NOT NULL,
  `method_order` bigint(20) unsigned NOT NULL,
  `is_enabled` tinyint(1) NOT NULL DEFAULT 1,
  PRIMARY KEY (`instance_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 `wp_woocommerce_shipping_zone_methods`
--

LOCK TABLES `wp_woocommerce_shipping_zone_methods` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_shipping_zone_methods` DISABLE KEYS */;
INSERT INTO `wp_woocommerce_shipping_zone_methods` VALUES (1,1,'free_shipping',1,1);
/*!40000 ALTER TABLE `wp_woocommerce_shipping_zone_methods` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_woocommerce_shipping_zones`
--

DROP TABLE IF EXISTS `wp_woocommerce_shipping_zones`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_shipping_zones` (
  `zone_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `zone_name` varchar(200) NOT NULL,
  `zone_order` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`zone_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 `wp_woocommerce_shipping_zones`
--

LOCK TABLES `wp_woocommerce_shipping_zones` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_shipping_zones` DISABLE KEYS */;
INSERT INTO `wp_woocommerce_shipping_zones` VALUES (1,'Vietnam',0);
/*!40000 ALTER TABLE `wp_woocommerce_shipping_zones` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_woocommerce_tax_rate_locations`
--

DROP TABLE IF EXISTS `wp_woocommerce_tax_rate_locations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_tax_rate_locations` (
  `location_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `location_code` varchar(200) NOT NULL,
  `tax_rate_id` bigint(20) unsigned NOT NULL,
  `location_type` varchar(40) NOT NULL,
  PRIMARY KEY (`location_id`),
  KEY `tax_rate_id` (`tax_rate_id`),
  KEY `location_type_code` (`location_type`(10),`location_code`(20))
) 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 `wp_woocommerce_tax_rate_locations`
--

LOCK TABLES `wp_woocommerce_tax_rate_locations` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_tax_rate_locations` DISABLE KEYS */;
INSERT INTO `wp_woocommerce_tax_rate_locations` VALUES (1,'567',1,'postcode'),(2,'HCM',1,'city');
/*!40000 ALTER TABLE `wp_woocommerce_tax_rate_locations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_woocommerce_tax_rates`
--

DROP TABLE IF EXISTS `wp_woocommerce_tax_rates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_tax_rates` (
  `tax_rate_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `tax_rate_country` varchar(2) NOT NULL DEFAULT '',
  `tax_rate_state` varchar(200) NOT NULL DEFAULT '',
  `tax_rate` varchar(8) NOT NULL DEFAULT '',
  `tax_rate_name` varchar(200) NOT NULL DEFAULT '',
  `tax_rate_priority` bigint(20) unsigned NOT NULL,
  `tax_rate_compound` int(1) NOT NULL DEFAULT 0,
  `tax_rate_shipping` int(1) NOT NULL DEFAULT 1,
  `tax_rate_order` bigint(20) unsigned NOT NULL,
  `tax_rate_class` varchar(200) NOT NULL DEFAULT '',
  PRIMARY KEY (`tax_rate_id`),
  KEY `tax_rate_country` (`tax_rate_country`),
  KEY `tax_rate_state` (`tax_rate_state`(2)),
  KEY `tax_rate_class` (`tax_rate_class`(10)),
  KEY `tax_rate_priority` (`tax_rate_priority`)
) 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 `wp_woocommerce_tax_rates`
--

LOCK TABLES `wp_woocommerce_tax_rates` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_tax_rates` DISABLE KEYS */;
INSERT INTO `wp_woocommerce_tax_rates` VALUES (1,'VN','5674','0.0000','Tax',1,0,1,0,'');
/*!40000 ALTER TABLE `wp_woocommerce_tax_rates` 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 2025-05-06  8:10:14

Youez - 2016 - github.com/yon3zu
LinuXploit